--
-- PostgreSQL database dump
--

-- Dumped from database version 10.16
-- Dumped by pg_dump version 10.16
-- Server details: PostgresPro (standard) 10.16.1 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 7.2.1 20180116 (Red Hat 7.2.1-7), 64-bit, edition: standard

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: 
--

CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;


--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';


--
-- Name: create_or_update_sec_permissi(character varying, character varying, integer, integer); Type: FUNCTION; Schema: public; Owner: cuba
--

CREATE FUNCTION public.create_or_update_sec_permissi(character varying, character varying, integer, integer) RETURNS character varying
    LANGUAGE plpgsql
    AS $_$
DECLARE
     r_name alias for $1;
     p_target alias for $2;
     p_type alias for $3;
     p_value alias for $4;

     p_id uuid;
BEGIN
    p_id = NULL;
    select p.id from SEC_PERMISSION p
        join SEC_ROLE r on r.id = p.role_id
        where r.name = r_name and p.target = p_target and p.delete_ts is null limit 1 into p_id;
--   return p_id;
   if  p_id is not null  then
        update SEC_PERMISSION set  PERMISSION_TYPE = p_type, value_ = p_value
        where id = p_id;
        return 'SEC_PERMISSION record was updated';
    else
        insert into SEC_PERMISSION (
          id,
          create_ts,
          created_by,
          version,
          PERMISSION_TYPE,
          target,
          value_,
          role_id
        ) values (
          newid(),
          now(),
          USER,
          1,
          p_type,
          p_target,
          p_value,
          (select id from sec_role where name=r_name)
        );
        return 'SEC_PERMISSION record was created';
    end if;
END;
$_$;


ALTER FUNCTION public.create_or_update_sec_permissi(character varying, character varying, integer, integer) OWNER TO cuba;

--
-- Name: newid(); Type: FUNCTION; Schema: public; Owner: cuba
--

CREATE FUNCTION public.newid() RETURNS uuid
    LANGUAGE sql
    AS $$select md5(random()::text || clock_timestamp()::text)::uuid$$;


ALTER FUNCTION public.newid() OWNER TO cuba;

SET default_tablespace = '';

SET default_with_oids = false;

--
-- Name: eademo_account; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_account (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    num character varying(255) NOT NULL,
    code character varying(255),
    client_id character varying(255),
    bank_id uuid NOT NULL,
    currency_id uuid NOT NULL
);


ALTER TABLE public.eademo_account OWNER TO cuba;

--
-- Name: eademo_acl; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_acl (
    id uuid NOT NULL,
    entity_id uuid NOT NULL,
    user_id uuid NOT NULL,
    role_id character varying(255)
);


ALTER TABLE public.eademo_acl OWNER TO cuba;

--
-- Name: eademo_applicaton_json_config; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_applicaton_json_config (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    code character varying(255) NOT NULL,
    name character varying(255),
    json text NOT NULL
);


ALTER TABLE public.eademo_applicaton_json_config OWNER TO cuba;

--
-- Name: eademo_attachment_type; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_attachment_type (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(255) NOT NULL
);


ALTER TABLE public.eademo_attachment_type OWNER TO cuba;

--
-- Name: eademo_attribute_assignment_data; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_attribute_assignment_data (
    id uuid NOT NULL,
    initiator_id uuid,
    contractor_id uuid,
    operation_type_id uuid,
    supplier_id uuid,
    recipient_id uuid,
    custom_id uuid
);


ALTER TABLE public.eademo_attribute_assignment_data OWNER TO cuba;

--
-- Name: eademo_attribute_assignment_signer_form; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_attribute_assignment_signer_form (
    id uuid NOT NULL,
    signer_type_id uuid,
    employee_id uuid,
    attribute_assignment_data_id uuid
);


ALTER TABLE public.eademo_attribute_assignment_signer_form OWNER TO cuba;

--
-- Name: eademo_attribute_assignment_task; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_attribute_assignment_task (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    need_process_after boolean,
    data_id uuid,
    replace_values boolean,
    add_values boolean,
    user_id uuid,
    package_type_id uuid,
    department_id uuid,
    errors text,
    last_status_change timestamp without time zone,
    status character varying(50)
);


ALTER TABLE public.eademo_attribute_assignment_task OWNER TO cuba;

--
-- Name: eademo_attribute_assignment_task_doc_package_model_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_attribute_assignment_task_doc_package_model_link (
    attribute_assignment_task_id uuid NOT NULL,
    doc_package_model_id uuid NOT NULL
);


ALTER TABLE public.eademo_attribute_assignment_task_doc_package_model_link OWNER TO cuba;

--
-- Name: eademo_bank; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_bank (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(255),
    bic character varying(255),
    cor_account character varying(255),
    swift character varying(255)
);


ALTER TABLE public.eademo_bank OWNER TO cuba;

--
-- Name: eademo_employee; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_employee (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    user_id uuid NOT NULL,
    barcode character varying(255),
    use_warrant boolean,
    name character varying(255),
    login character varying(255),
    tab_number character varying(255),
    main_department_id uuid
);


ALTER TABLE public.eademo_employee OWNER TO cuba;

--
-- Name: eademo_package_attachment; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_package_attachment (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    type_id uuid,
    paper_document_id uuid,
    diadoc_link character varying(255),
    check_sum text,
    amount numeric(19,2),
    number_ character varying(255),
    date_ date,
    file_id uuid,
    barcode character varying(128),
    has_original boolean,
    archiving_status character varying(50),
    status character varying(50),
    doc_package_model_id uuid NOT NULL,
    description text
);


ALTER TABLE public.eademo_package_attachment OWNER TO cuba;

--
-- Name: eademo_paper_location; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_paper_location (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    barcode character varying(255),
    storage_id uuid,
    name character varying(255),
    type_ character varying(50)
);


ALTER TABLE public.eademo_paper_location OWNER TO cuba;

--
-- Name: eademo_barcodes; Type: VIEW; Schema: public; Owner: cuba
--

CREATE VIEW public.eademo_barcodes AS
 SELECT DISTINCT t.id,
    t.class_name,
    t.barcode
   FROM ( SELECT e.id,
            e.barcode,
            'eademo_Employee'::text AS class_name
           FROM public.eademo_employee e
        UNION ALL
         SELECT pl.id,
            pl.barcode,
            'eademo_PaperLocation'::text AS class_name
           FROM public.eademo_paper_location pl
        UNION ALL
         SELECT pa.id,
            pa.barcode,
            'eademo_PackageAttachment'::text AS class_name
           FROM public.eademo_package_attachment pa) t;


ALTER TABLE public.eademo_barcodes OWNER TO cuba;

--
-- Name: eademo_basket; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_basket (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    status character varying(50) NOT NULL,
    number character varying(255) NOT NULL,
    demand_date date NOT NULL,
    demand_number character varying(255),
    demand_author character varying(255) NOT NULL,
    demand_type text,
    tax_type_id uuid,
    audited_period character varying(255),
    contractor_id uuid,
    description character varying(255),
    request_date date,
    response_date_planned date,
    response_date date,
    initiator_id uuid NOT NULL,
    dispatcher_id uuid
);


ALTER TABLE public.eademo_basket OWNER TO cuba;

--
-- Name: eademo_basket_attachment; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_basket_attachment (
    id uuid NOT NULL,
    basket_id uuid NOT NULL,
    attachment_id uuid NOT NULL,
    added_by character varying(255) NOT NULL
);


ALTER TABLE public.eademo_basket_attachment OWNER TO cuba;

--
-- Name: eademo_basket_employee_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_basket_employee_link (
    basket_id uuid NOT NULL,
    employee_id uuid NOT NULL
);


ALTER TABLE public.eademo_basket_employee_link OWNER TO cuba;

--
-- Name: eademo_comment; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_comment (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    sender_id uuid NOT NULL,
    parent_id uuid,
    comment_text character varying(10000) NOT NULL,
    doc_id uuid NOT NULL,
    relative_object_name character varying(255)
);


ALTER TABLE public.eademo_comment OWNER TO cuba;

--
-- Name: eademo_comment_user_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_comment_user_link (
    comment_id uuid NOT NULL,
    user_id uuid NOT NULL
);


ALTER TABLE public.eademo_comment_user_link OWNER TO cuba;

--
-- Name: eademo_contract_type; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_contract_type (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(255) NOT NULL,
    parent_id uuid
);


ALTER TABLE public.eademo_contract_type OWNER TO cuba;

--
-- Name: eademo_contractor; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_contractor (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    country character varying(5),
    id_diadoc text,
    inn character varying(255),
    kpp character varying(255),
    ogrn character varying(255),
    name_full character varying(255),
    name_en character varying(255),
    sap_supplier_code character varying(255),
    custom_code character varying(255),
    sap_recipient_code character varying(255)
);


ALTER TABLE public.eademo_contractor OWNER TO cuba;

--
-- Name: eademo_currency; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_currency (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    short_name character varying(255),
    code character varying(255) NOT NULL
);


ALTER TABLE public.eademo_currency OWNER TO cuba;

--
-- Name: eademo_department; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_department (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(255) NOT NULL,
    parent_id uuid,
    top_department_id uuid
);


ALTER TABLE public.eademo_department OWNER TO cuba;

--
-- Name: eademo_department_contract_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_department_contract_type_link (
    department_id uuid NOT NULL,
    contract_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_department_contract_type_link OWNER TO cuba;

--
-- Name: eademo_department_hierarchy; Type: VIEW; Schema: public; Owner: cuba
--

CREATE VIEW public.eademo_department_hierarchy AS
 WITH RECURSIVE hdep(department_id, code, parent_id, level, top_department_id) AS (
         SELECT eademo_department.id AS department_id,
            eademo_department.code,
            eademo_department.parent_id,
            0 AS level,
            eademo_department.id AS top_department_id
           FROM public.eademo_department
        UNION ALL
         SELECT d1.id AS department_id,
            d1.code,
            d1.parent_id,
            (d2.level + 1),
            d2.top_department_id
           FROM (public.eademo_department d1
             JOIN hdep d2 ON ((d1.parent_id = d2.department_id)))
        )
 SELECT DISTINCT NULL::uuid AS id,
    hdep.department_id,
    hdep.code,
    hdep.parent_id,
    hdep.level,
    hdep.top_department_id
   FROM hdep;


ALTER TABLE public.eademo_department_hierarchy OWNER TO cuba;

--
-- Name: eademo_employee_department; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_employee_department (
    id uuid NOT NULL,
    department_id uuid NOT NULL,
    chief boolean NOT NULL,
    main boolean,
    employee_id uuid NOT NULL
);


ALTER TABLE public.eademo_employee_department OWNER TO cuba;

--
-- Name: eademo_department_membership; Type: VIEW; Schema: public; Owner: cuba
--

CREATE VIEW public.eademo_department_membership AS
 SELECT DISTINCT NULL::uuid AS id,
    e.user_id,
    e.login,
    h.department_id,
    h.code
   FROM ((public.eademo_department_hierarchy h
     JOIN public.eademo_employee_department ed ON ((ed.department_id = h.top_department_id)))
     JOIN public.eademo_employee e ON (((ed.employee_id = e.id) AND ((h.top_department_id = h.department_id) OR (ed.chief = true)))));


ALTER TABLE public.eademo_department_membership OWNER TO cuba;

--
-- Name: eademo_department_operation_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_department_operation_type_link (
    department_id uuid NOT NULL,
    operation_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_department_operation_type_link OWNER TO cuba;

--
-- Name: eademo_department_package_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_department_package_type_link (
    department_id uuid NOT NULL,
    package_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_department_package_type_link OWNER TO cuba;

--
-- Name: eademo_diadoc_entity; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_diadoc_entity (
    id uuid NOT NULL,
    file_name text,
    last_status_sync_date timestamp without time zone,
    title character varying(1000),
    last_sync_date timestamp without time zone,
    last_enhanced_date timestamp without time zone,
    parent_entity_id character varying(255),
    parent_id uuid,
    status_title character varying(255),
    entity_type character varying(255),
    attachment_type character varying(255),
    entity_id character varying(255),
    status character varying(50),
    diadoc_message_id uuid,
    signature character varying(255),
    raw_creation_date bigint
);


ALTER TABLE public.eademo_diadoc_entity OWNER TO cuba;

--
-- Name: eademo_diadoc_entity_doc_package_model_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_diadoc_entity_doc_package_model_link (
    diadoc_entity_id uuid NOT NULL,
    doc_package_model_id uuid NOT NULL
);


ALTER TABLE public.eademo_diadoc_entity_doc_package_model_link OWNER TO cuba;

--
-- Name: eademo_diadoc_entity_file_descriptor_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_diadoc_entity_file_descriptor_link (
    diadoc_entity_id uuid NOT NULL,
    file_descriptor_id uuid NOT NULL
);


ALTER TABLE public.eademo_diadoc_entity_file_descriptor_link OWNER TO cuba;

--
-- Name: eademo_diadoc_history; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_diadoc_history (
    id uuid NOT NULL,
    last_event_id character varying(50) NOT NULL,
    box_id character varying(255),
    update_date timestamp without time zone
);


ALTER TABLE public.eademo_diadoc_history OWNER TO cuba;

--
-- Name: eademo_diadoc_message; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_diadoc_message (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    message_id character varying(255),
    last_patch_time timestamp without time zone,
    comment_ text,
    box_id character varying(255),
    status character varying(50),
    from_title text,
    last_sync_date timestamp without time zone,
    last_doc_status_sync_date timestamp without time zone,
    to_title text
);


ALTER TABLE public.eademo_diadoc_message OWNER TO cuba;

--
-- Name: eademo_diadoc_message_doc_package_model_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_diadoc_message_doc_package_model_link (
    diadoc_message_id uuid NOT NULL,
    doc_package_model_id uuid NOT NULL
);


ALTER TABLE public.eademo_diadoc_message_doc_package_model_link OWNER TO cuba;

--
-- Name: eademo_diadoc_rule_record; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_diadoc_rule_record (
    id uuid NOT NULL,
    code character varying(255),
    name character varying(255) NOT NULL,
    ordering integer,
    criteria text,
    disabled boolean,
    script text,
    system_rule boolean
);


ALTER TABLE public.eademo_diadoc_rule_record OWNER TO cuba;

--
-- Name: eademo_doc_attribute; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_doc_attribute (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    copy_to_child boolean
);


ALTER TABLE public.eademo_doc_attribute OWNER TO cuba;

--
-- Name: eademo_doc_attribute_package_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_doc_attribute_package_type_link (
    doc_attribute_id uuid NOT NULL,
    package_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_doc_attribute_package_type_link OWNER TO cuba;

--
-- Name: eademo_doc_package_attribute_value; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_doc_package_attribute_value (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    pkg_id_id uuid NOT NULL,
    attr_id_id uuid NOT NULL,
    attr_value character varying(255) NOT NULL
);


ALTER TABLE public.eademo_doc_package_attribute_value OWNER TO cuba;

--
-- Name: eademo_doc_package_model; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_doc_package_model (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    pkg_type_id uuid NOT NULL,
    end_date timestamp without time zone,
    amount numeric,
    currency_id uuid,
    process_transition character varying(255),
    tax_control_status character varying(50),
    bank_id uuid,
    po character varying(255),
    recipient_id uuid,
    supplier_id uuid,
    has_sap boolean,
    custom_id uuid,
    lot character varying(255),
    mm_docs text,
    accomp_docs text,
    sap_contract character varying(255),
    contractor_text text,
    account_id uuid,
    report_period text,
    contract_type_id uuid,
    unk character varying(255),
    main_contract boolean,
    operation_type_id uuid,
    department_id uuid,
    initiator_id uuid,
    status character varying(50) NOT NULL,
    pkg_num character varying(255),
    pkg_date date,
    diadoc_link character varying(255),
    contractor_id uuid,
    parent_package_id uuid,
    main_document_num character varying(255),
    rfa character varying(1000)
);


ALTER TABLE public.eademo_doc_package_model OWNER TO cuba;

--
-- Name: eademo_doc_package_model_fixed_asset_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_doc_package_model_fixed_asset_link (
    doc_package_model_id uuid NOT NULL,
    fixed_asset_id uuid NOT NULL
);


ALTER TABLE public.eademo_doc_package_model_fixed_asset_link OWNER TO cuba;

--
-- Name: eademo_doc_package_status_record; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_doc_package_status_record (
    id uuid NOT NULL,
    doc_package_model_id uuid NOT NULL,
    substituted_user_id uuid,
    user_id uuid NOT NULL,
    event_ts timestamp without time zone NOT NULL,
    description text,
    status character varying(50) NOT NULL
);


ALTER TABLE public.eademo_doc_package_status_record OWNER TO cuba;

--
-- Name: eademo_entity_user_info; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_entity_user_info (
    id uuid NOT NULL,
    important boolean,
    entity_name character varying(255) NOT NULL,
    entity_id uuid NOT NULL,
    user_id uuid NOT NULL
);


ALTER TABLE public.eademo_entity_user_info OWNER TO cuba;

--
-- Name: eademo_fixed_asset; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_fixed_asset (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    num character varying(255) NOT NULL,
    name character varying(255),
    parent_id uuid
);


ALTER TABLE public.eademo_fixed_asset OWNER TO cuba;

--
-- Name: eademo_notification; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_notification (
    id uuid NOT NULL,
    message_type character varying(50) NOT NULL,
    title character varying(255) NOT NULL,
    body_ text NOT NULL,
    recipient_id uuid NOT NULL,
    created timestamp without time zone NOT NULL,
    related_object_name character varying(255),
    related_object uuid NOT NULL
);


ALTER TABLE public.eademo_notification OWNER TO cuba;

--
-- Name: eademo_operation_type; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_operation_type (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(100) NOT NULL
);


ALTER TABLE public.eademo_operation_type OWNER TO cuba;

--
-- Name: eademo_package_relation; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_package_relation (
    id uuid NOT NULL,
    parent_id uuid NOT NULL,
    is_free boolean,
    mandatory boolean,
    plural boolean,
    child_id uuid,
    relation_type_id uuid,
    head boolean,
    can_be_head boolean
);


ALTER TABLE public.eademo_package_relation OWNER TO cuba;

--
-- Name: eademo_package_type; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_package_type (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    attribtes_json text,
    code character varying(255) NOT NULL
);


ALTER TABLE public.eademo_package_type OWNER TO cuba;

--
-- Name: eademo_package_type_allowed_attachment_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_package_type_allowed_attachment_type_link (
    package_type_id uuid NOT NULL,
    attachment_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_package_type_allowed_attachment_type_link OWNER TO cuba;

--
-- Name: eademo_package_type_attachment_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_package_type_attachment_type_link (
    package_type_id uuid NOT NULL,
    attachment_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_package_type_attachment_type_link OWNER TO cuba;

--
-- Name: eademo_package_type_operation_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_package_type_operation_type_link (
    package_type_id uuid NOT NULL,
    operation_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_package_type_operation_type_link OWNER TO cuba;

--
-- Name: eademo_paper_document; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_paper_document (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    paper_location_id uuid,
    paper_receiver_id uuid,
    paper_sender_id uuid,
    paper_date timestamp without time zone,
    status character varying(50),
    status_change_date timestamp without time zone
);


ALTER TABLE public.eademo_paper_document OWNER TO cuba;

--
-- Name: eademo_relation_option; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_relation_option (
    id uuid NOT NULL,
    relation_type_id uuid NOT NULL,
    copied boolean NOT NULL,
    package_type_id uuid NOT NULL,
    mandatory boolean NOT NULL,
    plural boolean NOT NULL,
    can_be_head boolean
);


ALTER TABLE public.eademo_relation_option OWNER TO cuba;

--
-- Name: eademo_releated_attachment_relation; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_releated_attachment_relation (
    id uuid NOT NULL,
    related_package_id uuid NOT NULL,
    releated_attachment_id uuid NOT NULL
);


ALTER TABLE public.eademo_releated_attachment_relation OWNER TO cuba;

--
-- Name: eademo_sap_document; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_sap_document (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    sap_doc_number character varying(255) NOT NULL,
    doc_package_model_id uuid NOT NULL,
    sap_doc_date date,
    status character varying(50)
);


ALTER TABLE public.eademo_sap_document OWNER TO cuba;

--
-- Name: eademo_sap_payment; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_sap_payment (
    id uuid NOT NULL,
    gl_account character varying(255),
    package_id uuid,
    document_type character varying(255),
    document_number character varying(255),
    posting_date date,
    year_ integer,
    vendor_customer character varying(255),
    reference character varying(255),
    reversed_with character varying(255),
    amount numeric(19,2),
    entry_date date
);


ALTER TABLE public.eademo_sap_payment OWNER TO cuba;

--
-- Name: eademo_security_warrant; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant (
    id uuid NOT NULL,
    name character varying(255) NOT NULL,
    warrant_doc_desc text,
    start_date date,
    end_date date,
    canceled boolean
);


ALTER TABLE public.eademo_security_warrant OWNER TO cuba;

--
-- Name: eademo_security_warrant_contract_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant_contract_type_link (
    security_warrant_id uuid NOT NULL,
    contract_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_security_warrant_contract_type_link OWNER TO cuba;

--
-- Name: eademo_security_warrant_department_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant_department_link (
    security_warrant_id uuid NOT NULL,
    department_id uuid NOT NULL
);


ALTER TABLE public.eademo_security_warrant_department_link OWNER TO cuba;

--
-- Name: eademo_security_warrant_employee_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant_employee_link (
    security_warrant_id uuid NOT NULL,
    employee_id uuid NOT NULL
);


ALTER TABLE public.eademo_security_warrant_employee_link OWNER TO cuba;

--
-- Name: eademo_security_warrant_operation_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant_operation_type_link (
    security_warrant_id uuid NOT NULL,
    operation_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_security_warrant_operation_type_link OWNER TO cuba;

--
-- Name: eademo_security_warrant_package_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant_package_type_link (
    security_warrant_id uuid NOT NULL,
    package_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_security_warrant_package_type_link OWNER TO cuba;

--
-- Name: eademo_security_warrant_system_user_role_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant_system_user_role_link (
    security_warrant_id uuid NOT NULL,
    system_user_role_id uuid NOT NULL
);


ALTER TABLE public.eademo_security_warrant_system_user_role_link OWNER TO cuba;

--
-- Name: eademo_system_user_role; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_system_user_role (
    id uuid NOT NULL,
    name character varying(255) NOT NULL,
    title character varying(255) NOT NULL
);


ALTER TABLE public.eademo_system_user_role OWNER TO cuba;

--
-- Name: eademo_security_warrant_roles; Type: VIEW; Schema: public; Owner: cuba
--

CREATE VIEW public.eademo_security_warrant_roles AS
 SELECT NULL::uuid AS id,
        CASE
            WHEN (r.name IS NULL) THEN '_all_'::character varying
            ELSE r.name
        END AS role_name,
    w.name AS warrant_name,
    w.id AS warrant_id,
    w.start_date,
    w.end_date,
    we.employee_id,
    wd.department_id,
    wpt.package_type_id,
    wot.operation_type_id,
    wct.contract_type_id
   FROM (((((((public.eademo_security_warrant_system_user_role_link wr
     RIGHT JOIN public.eademo_security_warrant w ON ((w.id = wr.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_employee_link we ON ((w.id = we.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_department_link wd ON ((w.id = wd.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_package_type_link wpt ON ((w.id = wpt.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_operation_type_link wot ON ((w.id = wot.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_contract_type_link wct ON ((w.id = wct.security_warrant_id)))
     LEFT JOIN public.eademo_system_user_role r ON ((wr.system_user_role_id = r.id)))
  WHERE (w.canceled <> true);


ALTER TABLE public.eademo_security_warrant_roles OWNER TO cuba;

--
-- Name: eademo_security_warrant_signer_type_link; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_security_warrant_signer_type_link (
    security_warrant_id uuid NOT NULL,
    signer_type_id uuid NOT NULL
);


ALTER TABLE public.eademo_security_warrant_signer_type_link OWNER TO cuba;

--
-- Name: eademo_security_warrant_signer_types; Type: VIEW; Schema: public; Owner: cuba
--

CREATE VIEW public.eademo_security_warrant_signer_types AS
 SELECT NULL::uuid AS id,
    wst.signer_type_id,
    w.name AS warrant_name,
    w.id AS warrant_id,
    w.start_date,
    w.end_date,
    we.employee_id,
    wd.department_id,
    wpt.package_type_id,
    wot.operation_type_id,
    wct.contract_type_id
   FROM ((((((public.eademo_security_warrant_signer_type_link wst
     RIGHT JOIN public.eademo_security_warrant w ON ((w.id = wst.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_employee_link we ON ((w.id = we.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_department_link wd ON ((w.id = wd.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_package_type_link wpt ON ((w.id = wpt.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_operation_type_link wot ON ((w.id = wot.security_warrant_id)))
     LEFT JOIN public.eademo_security_warrant_contract_type_link wct ON ((w.id = wct.security_warrant_id)))
  WHERE (w.canceled <> true);


ALTER TABLE public.eademo_security_warrant_signer_types OWNER TO cuba;

--
-- Name: eademo_signatory; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_signatory (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    date_ timestamp without time zone,
    signer_type_id uuid NOT NULL,
    employee_id uuid,
    status character varying(50) NOT NULL,
    comment_ text,
    latest boolean,
    doc_package_model_id uuid NOT NULL,
    can_be_copied boolean
);


ALTER TABLE public.eademo_signatory OWNER TO cuba;

--
-- Name: eademo_signer_relation; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_signer_relation (
    id uuid NOT NULL,
    package_type_id uuid NOT NULL,
    signer_type_id uuid NOT NULL,
    employee_id uuid,
    fill_employee_from_package boolean
);


ALTER TABLE public.eademo_signer_relation OWNER TO cuba;

--
-- Name: eademo_signer_type; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_signer_type (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(255) NOT NULL
);


ALTER TABLE public.eademo_signer_type OWNER TO cuba;

--
-- Name: eademo_tax; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.eademo_tax (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(255)
);


ALTER TABLE public.eademo_tax OWNER TO cuba;

--
-- Name: report_group; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.report_group (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    title character varying(255) NOT NULL,
    code character varying(255),
    locale_names text
);


ALTER TABLE public.report_group OWNER TO cuba;

--
-- Name: report_report; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.report_report (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    code character varying(255),
    description character varying(500),
    locale_names text,
    group_id uuid NOT NULL,
    report_type integer,
    default_template_id uuid,
    xml text,
    roles_idx character varying(1000),
    screens_idx character varying(1000),
    input_entity_types_idx character varying(1000),
    rest_access boolean DEFAULT false,
    is_system boolean DEFAULT false
);


ALTER TABLE public.report_report OWNER TO cuba;

--
-- Name: report_template; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.report_template (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    report_id uuid NOT NULL,
    code character varying(50),
    output_type integer DEFAULT 0 NOT NULL,
    is_default boolean DEFAULT false,
    is_custom boolean DEFAULT false,
    is_alterable_output boolean DEFAULT false,
    is_groovy boolean DEFAULT false,
    custom_defined_by integer DEFAULT 100,
    custom_class character varying,
    output_name_pattern character varying(255),
    name character varying(500),
    content bytea
);


ALTER TABLE public.report_template OWNER TO cuba;

--
-- Name: sec_constraint; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_constraint (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    code character varying(255),
    check_type character varying(50) DEFAULT 'db'::character varying,
    operation_type character varying(50) DEFAULT 'read'::character varying,
    entity_name character varying(255) NOT NULL,
    join_clause character varying(500),
    where_clause character varying(1000),
    groovy_script text,
    filter_xml text,
    is_active boolean DEFAULT true,
    group_id uuid
);


ALTER TABLE public.sec_constraint OWNER TO cuba;

--
-- Name: sec_entity_log; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_entity_log (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    event_ts timestamp without time zone,
    user_id uuid,
    change_type character(1),
    entity character varying(100),
    entity_instance_name character varying(1000),
    entity_id uuid,
    string_entity_id character varying(255),
    int_entity_id integer,
    long_entity_id bigint,
    changes text
);


ALTER TABLE public.sec_entity_log OWNER TO cuba;

--
-- Name: sec_filter; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_filter (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    component character varying(200),
    name character varying(255),
    code character varying(200),
    xml text,
    user_id uuid,
    global_default boolean
);


ALTER TABLE public.sec_filter OWNER TO cuba;

--
-- Name: sec_group; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_group (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    parent_id uuid
);


ALTER TABLE public.sec_group OWNER TO cuba;

--
-- Name: sec_group_hierarchy; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_group_hierarchy (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    group_id uuid,
    parent_id uuid,
    hierarchy_level integer
);


ALTER TABLE public.sec_group_hierarchy OWNER TO cuba;

--
-- Name: sec_localized_constraint_msg; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_localized_constraint_msg (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    entity_name character varying(255) NOT NULL,
    operation_type character varying(50) NOT NULL,
    values_ text
);


ALTER TABLE public.sec_localized_constraint_msg OWNER TO cuba;

--
-- Name: sec_logged_attr; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_logged_attr (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    entity_id uuid,
    name character varying(50)
);


ALTER TABLE public.sec_logged_attr OWNER TO cuba;

--
-- Name: sec_logged_entity; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_logged_entity (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    name character varying(100),
    auto boolean,
    manual boolean
);


ALTER TABLE public.sec_logged_entity OWNER TO cuba;

--
-- Name: sec_permission; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_permission (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    permission_type integer,
    target character varying(100),
    value_ integer,
    role_id uuid
);


ALTER TABLE public.sec_permission OWNER TO cuba;

--
-- Name: sec_presentation; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_presentation (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    component character varying(200),
    name character varying(255),
    xml character varying(7000),
    user_id uuid,
    is_auto_save boolean
);


ALTER TABLE public.sec_presentation OWNER TO cuba;

--
-- Name: sec_remember_me; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_remember_me (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    user_id uuid NOT NULL,
    token character varying(32) NOT NULL
);


ALTER TABLE public.sec_remember_me OWNER TO cuba;

--
-- Name: sec_role; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_role (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    loc_name character varying(255),
    description character varying(1000),
    is_default_role boolean,
    role_type integer
);


ALTER TABLE public.sec_role OWNER TO cuba;

--
-- Name: sec_screen_history; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_screen_history (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    user_id uuid,
    caption character varying(255),
    url text,
    entity_id uuid,
    string_entity_id character varying(255),
    int_entity_id integer,
    long_entity_id bigint,
    substituted_user_id uuid
);


ALTER TABLE public.sec_screen_history OWNER TO cuba;

--
-- Name: sec_search_folder; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_search_folder (
    folder_id uuid NOT NULL,
    filter_component character varying(200),
    filter_xml character varying(7000),
    user_id uuid,
    presentation_id uuid,
    apply_default boolean,
    is_set boolean,
    entity_type character varying(50)
);


ALTER TABLE public.sec_search_folder OWNER TO cuba;

--
-- Name: sec_session_attr; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_session_attr (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(50),
    str_value character varying(1000),
    datatype character varying(20),
    group_id uuid
);


ALTER TABLE public.sec_session_attr OWNER TO cuba;

--
-- Name: sec_session_log; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_session_log (
    id uuid NOT NULL,
    version integer NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    session_id uuid NOT NULL,
    user_id uuid NOT NULL,
    substituted_user_id uuid,
    user_data text,
    last_action integer NOT NULL,
    client_info character varying(512),
    client_type character varying(10),
    address character varying(255),
    started_ts timestamp without time zone,
    finished_ts timestamp without time zone,
    server_id character varying(128)
);


ALTER TABLE public.sec_session_log OWNER TO cuba;

--
-- Name: sec_user; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_user (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    login character varying(50) NOT NULL,
    login_lc character varying(50) NOT NULL,
    password character varying(255),
    password_encryption character varying(50),
    name character varying(255),
    first_name character varying(255),
    last_name character varying(255),
    middle_name character varying(255),
    position_ character varying(255),
    email character varying(100),
    language_ character varying(20),
    time_zone character varying(50),
    time_zone_auto boolean,
    active boolean,
    group_id uuid NOT NULL,
    ip_mask character varying(200),
    change_password_at_logon boolean
);


ALTER TABLE public.sec_user OWNER TO cuba;

--
-- Name: sec_user_role; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_user_role (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    user_id uuid,
    role_id uuid
);


ALTER TABLE public.sec_user_role OWNER TO cuba;

--
-- Name: sec_user_setting; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_user_setting (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    user_id uuid,
    client_type character(1),
    name character varying(255),
    value_ text
);


ALTER TABLE public.sec_user_setting OWNER TO cuba;

--
-- Name: sec_user_substitution; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sec_user_substitution (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    user_id uuid NOT NULL,
    substituted_user_id uuid NOT NULL,
    start_date timestamp without time zone,
    end_date timestamp without time zone
);


ALTER TABLE public.sec_user_substitution OWNER TO cuba;

--
-- Name: seq_un_40e37ad2d6a72dad9ba98e07c5c5e7f3; Type: SEQUENCE; Schema: public; Owner: cuba
--

CREATE SEQUENCE public.seq_un_40e37ad2d6a72dad9ba98e07c5c5e7f3
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.seq_un_40e37ad2d6a72dad9ba98e07c5c5e7f3 OWNER TO cuba;

--
-- Name: seq_un_ba493c0c0b22dd0c0045dc37d66dfa74; Type: SEQUENCE; Schema: public; Owner: cuba
--

CREATE SEQUENCE public.seq_un_ba493c0c0b22dd0c0045dc37d66dfa74
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.seq_un_ba493c0c0b22dd0c0045dc37d66dfa74 OWNER TO cuba;

--
-- Name: seq_un_basket202105; Type: SEQUENCE; Schema: public; Owner: cuba
--

CREATE SEQUENCE public.seq_un_basket202105
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.seq_un_basket202105 OWNER TO cuba;

--
-- Name: seq_un_e51be1c57cbc2ce3c22d927b5af7919f; Type: SEQUENCE; Schema: public; Owner: cuba
--

CREATE SEQUENCE public.seq_un_e51be1c57cbc2ce3c22d927b5af7919f
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.seq_un_e51be1c57cbc2ce3c22d927b5af7919f OWNER TO cuba;

--
-- Name: sys_app_folder; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_app_folder (
    folder_id uuid NOT NULL,
    filter_component character varying(200),
    filter_xml character varying(7000),
    visibility_script text,
    quantity_script text,
    apply_default boolean
);


ALTER TABLE public.sys_app_folder OWNER TO cuba;

--
-- Name: sys_attr_value; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_attr_value (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    category_attr_id uuid NOT NULL,
    code character varying(100) NOT NULL,
    entity_id uuid,
    string_entity_id character varying(255),
    int_entity_id integer,
    long_entity_id bigint,
    string_value character varying,
    integer_value integer,
    double_value numeric(36,6),
    decimal_value numeric(36,10),
    date_value timestamp without time zone,
    date_wo_time_value date,
    boolean_value boolean,
    entity_value uuid,
    string_entity_value character varying(255),
    int_entity_value integer,
    long_entity_value bigint,
    parent_id uuid
);


ALTER TABLE public.sys_attr_value OWNER TO cuba;

--
-- Name: sys_category; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_category (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(255) NOT NULL,
    special character varying(50),
    entity_type character varying(100) NOT NULL,
    is_default boolean,
    discriminator integer,
    locale_names character varying(1000)
);


ALTER TABLE public.sys_category OWNER TO cuba;

--
-- Name: sys_category_attr; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_category_attr (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    category_entity_type character varying(4000),
    name character varying(255),
    code character varying(100) NOT NULL,
    description character varying(1000),
    category_id uuid NOT NULL,
    entity_class character varying(500),
    data_type character varying(200),
    default_string character varying,
    default_int integer,
    default_double numeric(36,6),
    default_decimal numeric(36,10),
    default_date timestamp without time zone,
    default_date_wo_time date,
    default_date_is_current boolean,
    default_boolean boolean,
    default_entity_value uuid,
    default_str_entity_value character varying(255),
    default_int_entity_value integer,
    default_long_entity_value bigint,
    enumeration character varying(500),
    order_no integer,
    screen character varying(255),
    required boolean,
    lookup boolean,
    target_screens character varying(4000),
    width character varying(20),
    rows_count integer,
    is_collection boolean,
    join_clause character varying(4000),
    where_clause character varying(4000),
    filter_xml text,
    locale_names character varying(1000),
    locale_descriptions character varying(4000),
    enumeration_locales character varying(5000),
    attribute_configuration_json text
);


ALTER TABLE public.sys_category_attr OWNER TO cuba;

--
-- Name: sys_config; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_config (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    name character varying(255) NOT NULL,
    value_ text NOT NULL
);


ALTER TABLE public.sys_config OWNER TO cuba;

--
-- Name: sys_db_changelog; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_db_changelog (
    script_name character varying(300) NOT NULL,
    create_ts timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    is_init integer DEFAULT 0
);


ALTER TABLE public.sys_db_changelog OWNER TO cuba;

--
-- Name: sys_entity_snapshot; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_entity_snapshot (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    entity_meta_class character varying(50) NOT NULL,
    entity_id uuid,
    string_entity_id character varying(255),
    int_entity_id integer,
    long_entity_id bigint,
    author_id uuid NOT NULL,
    view_xml text NOT NULL,
    snapshot_xml text NOT NULL,
    snapshot_date timestamp without time zone NOT NULL
);


ALTER TABLE public.sys_entity_snapshot OWNER TO cuba;

--
-- Name: sys_entity_statistics; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_entity_statistics (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    name character varying(50),
    instance_count bigint,
    fetch_ui integer,
    max_fetch_ui integer,
    lazy_collection_threshold integer,
    lookup_screen_threshold integer
);


ALTER TABLE public.sys_entity_statistics OWNER TO cuba;

--
-- Name: sys_file; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_file (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    name character varying(500) NOT NULL,
    ext character varying(20),
    file_size bigint,
    create_date timestamp without time zone
);


ALTER TABLE public.sys_file OWNER TO cuba;

--
-- Name: sys_folder; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_folder (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    folder_type character(1),
    parent_id uuid,
    name character varying(100),
    tab_name character varying(100),
    sort_order integer
);


ALTER TABLE public.sys_folder OWNER TO cuba;

--
-- Name: sys_fts_queue; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_fts_queue (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    entity_id uuid,
    string_entity_id character varying(255),
    int_entity_id integer,
    long_entity_id bigint,
    entity_name character varying(200),
    change_type character(1),
    source_host character varying(255),
    indexing_host character varying(255),
    fake boolean
);


ALTER TABLE public.sys_fts_queue OWNER TO cuba;

--
-- Name: sys_jmx_instance; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_jmx_instance (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    node_name character varying(255),
    address character varying(500) NOT NULL,
    login character varying(50) NOT NULL,
    password character varying(255) NOT NULL
);


ALTER TABLE public.sys_jmx_instance OWNER TO cuba;

--
-- Name: sys_lock_config; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_lock_config (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    name character varying(100),
    timeout_sec integer
);


ALTER TABLE public.sys_lock_config OWNER TO cuba;

--
-- Name: sys_query_result_seq; Type: SEQUENCE; Schema: public; Owner: cuba
--

CREATE SEQUENCE public.sys_query_result_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sys_query_result_seq OWNER TO cuba;

--
-- Name: sys_query_result; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_query_result (
    id bigint DEFAULT nextval('public.sys_query_result_seq'::regclass) NOT NULL,
    session_id uuid NOT NULL,
    query_key integer NOT NULL,
    entity_id uuid,
    string_entity_id character varying(255),
    int_entity_id integer,
    long_entity_id bigint
);


ALTER TABLE public.sys_query_result OWNER TO cuba;

--
-- Name: sys_scheduled_execution; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_scheduled_execution (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    task_id uuid,
    server character varying(512),
    start_time timestamp with time zone,
    finish_time timestamp with time zone,
    result text
);


ALTER TABLE public.sys_scheduled_execution OWNER TO cuba;

--
-- Name: sys_scheduled_task; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_scheduled_task (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    defined_by character varying(1) DEFAULT 'B'::character varying,
    class_name character varying(500),
    script_name character varying(500),
    bean_name character varying(50),
    method_name character varying(50),
    method_params character varying(1000),
    user_name character varying(50),
    is_singleton boolean,
    is_active boolean,
    period_ integer,
    timeout integer,
    start_date timestamp without time zone,
    time_frame integer,
    start_delay integer,
    permitted_servers character varying(4096),
    log_start boolean,
    log_finish boolean,
    last_start_time timestamp with time zone,
    last_start_server character varying(512),
    description character varying(1000),
    cron character varying(100),
    scheduling_type character varying(1) DEFAULT 'P'::character varying
);


ALTER TABLE public.sys_scheduled_task OWNER TO cuba;

--
-- Name: sys_sending_attachment; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_sending_attachment (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp without time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    message_id uuid,
    content bytea,
    content_file_id uuid,
    content_id character varying(50),
    name character varying(500),
    disposition character varying(50),
    text_encoding character varying(50)
);


ALTER TABLE public.sys_sending_attachment OWNER TO cuba;

--
-- Name: sys_sending_message; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_sending_message (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    version integer,
    update_ts timestamp with time zone,
    updated_by character varying(50),
    delete_ts timestamp without time zone,
    deleted_by character varying(50),
    address_to text,
    address_cc text,
    address_bcc text,
    address_from character varying(100),
    caption character varying(500),
    email_headers character varying(500),
    content_text text,
    content_text_file_id uuid,
    deadline timestamp with time zone,
    status integer,
    date_sent timestamp without time zone,
    attempts_count integer,
    attempts_made integer,
    attachments_name text,
    body_content_type character varying(50)
);


ALTER TABLE public.sys_sending_message OWNER TO cuba;

--
-- Name: sys_server; Type: TABLE; Schema: public; Owner: cuba
--

CREATE TABLE public.sys_server (
    id uuid NOT NULL,
    create_ts timestamp without time zone,
    created_by character varying(50),
    update_ts timestamp without time zone,
    updated_by character varying(50),
    name character varying(255),
    is_running boolean,
    data text
);


ALTER TABLE public.sys_server OWNER TO cuba;

--
-- Data for Name: eademo_account; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_account (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, num, code, client_id, bank_id, currency_id) FROM stdin;
e3d79e89-452b-4577-fd06-f45e656033af	2	2021-05-19 18:42:54.07	admin	2021-05-19 18:42:54.07	\N	2021-05-19 18:53:35.252	admin	40702840800790307003	003	790307	57b0fe4f-7c51-e9e3-a0ad-b7542d7878c2	b5a572ce-5226-c07e-24f1-e6b82023943f
eb0903ce-3a61-9884-138f-dd5248a9f74a	2	2021-05-19 18:42:54.07	admin	2021-05-19 18:42:54.07	\N	2021-05-19 18:53:35.25	admin	40702810900790310001	001	790307	57b0fe4f-7c51-e9e3-a0ad-b7542d7878c2	f8c6ad35-e7d0-d1b0-edad-69714e30edab
764c57cc-3569-024d-aefc-f94bf0bbff52	2	2021-05-19 18:42:54.07	admin	2021-05-19 18:42:54.07	\N	2021-05-19 18:53:35.254	admin	40702978700790307004	004	790307	57b0fe4f-7c51-e9e3-a0ad-b7542d7878c2	8f151e3a-50bc-07dd-0cc3-0767039ebbd9
7d1e6c4e-8067-5336-c773-25f341fe09b7	2	2021-05-19 18:42:54.07	admin	2021-05-19 18:42:54.07	\N	2021-05-19 18:53:35.251	admin	40702840500790307002	002	790307	57b0fe4f-7c51-e9e3-a0ad-b7542d7878c2	b5a572ce-5226-c07e-24f1-e6b82023943f
\.


--
-- Data for Name: eademo_acl; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_acl (id, entity_id, user_id, role_id) FROM stdin;
798369f2-8365-1f38-2e8b-ac69e5ae1ea7	6819091a-1350-bdec-fb28-445a5547e2c7	99f45003-a8b5-f733-ec33-717f492a0e0d	BasketDispatcher
e5fdfecd-3d64-89c3-8776-2f1a2b4e0aba	6819091a-1350-bdec-fb28-445a5547e2c7	99f45003-a8b5-f733-ec33-717f492a0e0d	BasketInitiator
14f180a3-3f99-28fa-53c4-c017d8f90e69	ca1cafb8-d0ed-adb3-9cff-ee19312091ce	99f45003-a8b5-f733-ec33-717f492a0e0d	BasketDispatcher
ef0e3600-2191-ab15-d8c1-660a3daf6d24	ca1cafb8-d0ed-adb3-9cff-ee19312091ce	99f45003-a8b5-f733-ec33-717f492a0e0d	BasketInitiator
86c100b2-3138-26da-2004-16693d6ad781	ca1cafb8-d0ed-adb3-9cff-ee19312091ce	025b044b-3118-a272-35ef-869619f193e1	BasketWorkGroup
\.


--
-- Data for Name: eademo_applicaton_json_config; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_applicaton_json_config (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, code, name, json) FROM stdin;
274f42e8-d000-6824-1c9d-24c448e72f71	1	2021-05-19 18:45:11.564	admin	2021-05-19 18:45:11.564	\N	\N	\N	appMappingConfigCode	Application mapping configuration	{\n  "common": {\n    "systemDepartmentCode": "system",\n    "financeDepartmentCode": "finance",\n    "financeTreasuryDepartmentCode": "financeTreasury",\n    "systemMainBankCode": "citibank",\n    "userForAutomatisationLogin": "admin",\n    "RUBAccountCodes": "001,002"\n  },\n  "packageType": {\n    "bankAccountBalancePackageType": "tr.01",\n    "incomingPaymentPackageType": "tr.04",\n    "outgoingPaymentPackageType": "tr.02",\n    "advicePackageType": "TR.03",\n    "internationalTransferPackageType": "TR.05",\n    "bankClientIncorrectPackageType" : "06",\n    "barcodeProblemPackageType" : "barcode"\n  },\n  "operationType": {\n    "bankAccountBalance": "01",\n    "incomingPayment": "04",\n    "outgoingPayment": "02",\n    "advice": "03",\n    "internationalTransfer": "05",\n    "bankClientIncorrect": "06",\n    "barcodeProblem" : "barcode"\n  },\n  "attachmentType": {\n    "incomingPayment": "incoming",\n    "outgoingPayment": "outgoing",\n    "outgoingIncPayment": "outgoinginc",\n    "advice": "advice",\n    "internationalTransfer" : "international_transfer",\n    "invoice" : "invoice",\n    "bankClientIncorrect" : "bankClientIncorrect",\n    "bankClientCommon" : "bankClientCommon",\n    "barcodeProblem" : "barcode",\n    "forScan" : "forScan"\n  },\n  "diadoc": {\n    "protocolAttachment" : "diadocProtocol",\n    "archiveAttachment" : "diadocArchive",\n    "printFormAttachment" : "diadocArchive",\n    "unknownAttachment" : "diadocProtocol"\n  }\n}
984d9edd-a707-db8d-114f-a7b822b0c47f	1	2021-05-19 18:45:36.59	admin	2021-05-19 18:45:36.59	\N	\N	\N	sapPaymentsMappingConfig	Sap payments mapping config	[{\n  "packageType" : "TR.02",\n  "currencyCode" :"643",\n  "glAccount" : "51010101",\n  "referencePrefix" : "П/П",\n  "reversedWith" : false,\n  "documentType" : "DZ",\n  "amountInLocalCurrency" : ">",\n  "postingDate" : "",\n  "addContractor" : false\n},\n  {\n    "packageType" : "TR.04",\n    "currencyCode" : "643",\n    "glAccount" : "51010101",\n    "referencePrefix" : "П/П",\n    "reversedWith" : false,\n    "documentType" :"KZ",\n    "amountInLocalCurrency" :"<",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.05",\n    "currencyCode" :"978",\n    "glAccount" : "52010102",\n    "referencePrefix" : "П/П",\n    "reversedWith" : false,\n    "documentType" : "KZ",\n    "amountInLocalCurrency" :"<",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.05",\n    "currencyCode" :"840",\n    "glAccount" : "52010103",\n    "referencePrefix" : "П/П",\n    "reversedWith" : false,\n    "documentType" : "KZ",\n    "amountInLocalCurrency" :"<",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.03",\n    "currencyCode" :"978",\n    "glAccount" : "52010102",\n    "referencePrefix" : "П/П",\n    "reversedWith" : false,\n    "documentType" : "DZ",\n    "amountInLocalCurrency" :">",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.03",\n    "currencyCode" :"840",\n    "glAccount" : "52010103",\n    "referencePrefix" : "П/П",\n    "reversedWith" : false,\n    "documentType" : "DZ",\n    "amountInLocalCurrency" :">",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.02",\n    "currencyCode" :"643",\n    "glAccount" : "51010101",\n    "referencePrefix" : "",\n    "reversedWith" : false,\n    "documentType" : "DZ",\n    "amountInLocalCurrency" : ">",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.04",\n    "currencyCode" : "643",\n    "glAccount" : "51010101",\n    "referencePrefix" : "",\n    "reversedWith" : false,\n    "documentType" :"KZ",\n    "amountInLocalCurrency" :"<",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.05",\n    "currencyCode" :"978",\n    "glAccount" : "52010102",\n    "referencePrefix" : "",\n    "reversedWith" : false,\n    "documentType" : "KZ",\n    "amountInLocalCurrency" :"<",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.05",\n    "currencyCode" :"840",\n    "glAccount" : "52010103",\n    "referencePrefix" : "",\n    "reversedWith" : false,\n    "documentType" : "KZ",\n    "amountInLocalCurrency" :"<",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.03",\n    "currencyCode" :"978",\n    "glAccount" : "52010102",\n    "referencePrefix" : "",\n    "reversedWith" : false,\n    "documentType" : "DZ",\n    "amountInLocalCurrency" :">",\n    "postingDate" : "",\n    "addContractor" : false\n  },\n  {\n    "packageType" : "TR.03",\n    "currencyCode" :"840",\n    "glAccount" : "52010103",\n    "referencePrefix" : "",\n    "reversedWith" : false,\n    "documentType" : "DZ",\n    "amountInLocalCurrency" :">",\n    "postingDate" : "",\n    "addContractor" : false\n  }]
\.


--
-- Data for Name: eademo_attachment_type; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_attachment_type (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, code) FROM stdin;
e2ec1ba7-3b44-35b4-54c1-ed910d9fe73d	2	2021-05-19 18:28:12.296	admin	2021-05-19 18:28:12.296	\N	2021-05-19 18:28:18.214	admin	вложение	1
f563bef4-6e45-6d9d-7707-5cf9f3899296	2	2021-05-24 11:44:01.055	admin	2021-05-24 18:20:47.359	admin	\N	\N	Счет за услуги	1
23c958e2-57e4-debf-c2ba-4ea0f83889ae	1	2021-05-24 18:21:30.956	admin	2021-05-24 18:21:30.956	\N	\N	\N	Накладная	6
f9ab4bc2-8787-0c46-3f73-bd3c9ce1c7a7	1	2021-05-24 18:21:46.34	admin	2021-05-24 18:21:46.34	\N	\N	\N	Платежное поручение входящее	incoming
b6d0d69c-bfee-e9d8-f128-642cf9aebf60	2	2021-05-24 18:23:36.999	admin	2021-05-24 18:23:45.375	admin	\N	\N	Заказ на закупку	7
a5932e06-ec86-4934-a2fb-686d437d624b	1	2021-05-24 18:24:46.018	admin	2021-05-24 18:24:46.018	\N	\N	\N	Акт выполненных работ/ оказанных услуг от поставщика	10
93b5c090-7d26-9a66-3df2-8699f3a9d382	2	2021-05-19 18:38:17.154	admin	2021-05-19 18:38:17.154	admin	2021-05-19 18:46:32.566	admin	RFA	1002
f74e8060-04f4-dbe0-efe2-5393d14ea560	1	2021-05-24 18:21:00.082	admin	2021-05-24 18:21:00.082	\N	\N	\N	Счет от поставщика	5
b1dd2a9c-be64-4119-ece3-9c143e797095	1	2021-05-24 18:21:16.1	admin	2021-05-24 18:21:16.1	\N	\N	\N	Счет поставщику	4
6538ed77-bdf8-70ea-9f25-c5d77447fcb2	1	2021-05-24 18:22:04.395	admin	2021-05-24 18:22:04.395	\N	\N	\N	Платежное поручение исходящее	outgoing
a9b8cde7-2f84-3562-1838-5a2e912379aa	2	2021-05-24 11:44:14.687	admin	2021-05-24 18:22:29.146	admin	\N	\N	Пояснительная записка	2
158ce886-81f4-3767-79d0-e470200064eb	1	2021-05-24 18:22:53.044	admin	2021-05-24 18:22:53.044	\N	\N	\N	Счёт-фактура от поставщика	IncomingInvoice
fc2fa8b4-1d61-b92f-cc2b-2913ebda45c6	1	2021-05-24 18:24:08.725	admin	2021-05-24 18:24:08.725	\N	\N	\N	Выписка по банковскому счёту	8
fa2810fc-48c6-1272-eede-f73be8cf3488	1	2021-05-24 18:24:30.858	admin	2021-05-24 18:24:30.858	\N	\N	\N	Акт выполненных работ	9
a982c9ce-97a1-f09e-f00e-f723ce75771f	2	2021-05-24 14:31:59.464	admin	2021-05-24 14:31:59.464	\N	2021-05-25 14:45:23.132	admin	Платежное поручение исходящее	3
81c01cda-2dfd-4e22-a01d-a4213372fb37	2	2021-05-19 18:38:17.154	admin	2021-05-19 18:38:17.154	\N	2021-05-19 18:46:32.59	admin	Проблемный штрих-код	barcodeProblem
83365718-f67d-c181-b59e-0a9197a3c6e1	2	2021-05-19 18:38:17.154	admin	2021-05-19 18:38:17.154	admin	2021-05-19 18:46:32.565	admin	Счет-фактура входящий	1
86ee34ff-2766-5c43-49d9-8344bd37b707	2	2021-05-19 18:38:17.154	admin	2021-05-19 18:38:17.154	\N	2021-05-19 18:46:32.561	admin	Дебетовое авизо	123456
95f53143-206b-a967-c0ed-0d7536ef259e	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.597	admin	тест	100-100
9aa97251-ae8b-2eab-8f1d-89d8ed86db01	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.561	admin	Дефектная ведомость	WH216-d
a101715d-0f9b-a5ca-09a1-756a13d33225	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.581	admin	Счет1	2С
a24cdb6f-ad1c-ac3d-110a-162b9d7cc1a4	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	admin	2021-05-19 18:46:32.609	admin	ТОРГ-12 покупателю	1003
a2e757f9-8bf3-af81-7e74-d55515784d5c	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.603	admin	Вид на жительство	9003
a3bb2f2c-a328-92da-e25b-62474bf519e3	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.605	admin	Архив ДиаДок	diadocArchive
a423b5cb-4f02-3d44-e284-dc551f18bf52	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.584	admin	УПД Поставщика	IncomingUniversalTransferDocument
a8df5b0d-68af-9b19-32d5-4e0361b3a6ed	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.604	admin	atestt	tt
af984c43-d429-dfdb-ecd3-1614c554acab	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.558	admin	На сканирование шк	forScan
ba17e197-18de-bb50-cab1-2a0a5eab3c31	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.579	admin	Счет	invoice
ba356eb4-2e9e-6824-ee0e-6a9c19d68d23	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.599	admin	atest	atest
bd6be575-cf27-e193-b7e5-cfc4e9401a0b	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.59	admin	Накладная	N01
c647ccbf-c5a6-1892-0369-59c4e465fb57	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.596	admin	Пояснительная записка	WH217-d
c6a2ce34-7900-bbdf-0e91-c9b8dffd576b	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.608	admin	Счёт-фактура покупателю	AR152-d
c9485392-bfd7-043c-cd34-8bda14a31818	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	admin	2021-05-19 18:46:32.602	admin	Выписка по банковскому счёту	1004
c99f0139-68c9-f06d-2f9f-316b422c1dd3	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.556	admin	Инвойс покупателю	AR117-d
d164c7ba-57be-1925-6738-e2615926a5f0	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	admin	2021-05-19 18:46:32.593	admin	Платежное поручение исходящее	outgoing
dea40f35-5a18-2ab2-912f-f4d7139d1715	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	admin	2021-05-19 18:46:32.594	admin	Счёт покупателю	1006
debb977c-e47e-055b-e6f7-b455939a8473	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.569	admin	Страховой полис	Gen107-d
e1eb14a2-e6d8-19ad-9a75-c83c7fe864b5	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.567	admin	Протокол ДиаДок	diadocProtocol
e2b499cb-c0ca-0297-13f8-f3b505249c30	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.609	admin	Заказ	10112-05
e2ed4c5e-54c0-4d99-eed1-781a3dd3d2f0	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	admin	2021-05-19 18:46:32.554	admin	Транспортный документ (Коносамент/ CMR/ авианакладная/ жд накладная)	1015
ec6339d6-994a-7ebc-0d01-fbd177c09d30	2	2021-05-19 18:38:17.155	admin	2021-05-19 18:38:17.155	\N	2021-05-19 18:46:32.601	admin	Тест	test01
ecdbbac4-8b26-3023-ba1b-9c80bef7ee22	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.597	admin	bankClientIncorrect	bankClientIncorrect
ed8ae4f6-c90d-e970-1dd6-e319103174d0	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.579	admin	Поручение на международный перевод	1007
ef157185-6557-9873-1ae5-40a30fb4699c	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.598	admin	Счёт-фактура покупателю	1008
f0194352-89b0-8876-bd2e-0bc1e5b0991e	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.594	admin	Счет-фактура исходящий	1000
fb278c20-2392-8f82-c72c-fa46eaa088d4	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.556	admin	Св-во о постановке на учет в МВД	9004
02c88925-3d84-2229-89d1-fa7bf2f58754	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.594	admin	Кредитовое авизо	1234
032f1951-573c-4585-ba81-476013817cfb	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.599	admin	Декларация на товары (импорт)	CC108-d
05fa8adc-951f-81fe-41db-8cdcc21c10be	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.601	admin	Заказ/заказ на закупку	10112-04
06c13965-b6e4-24af-5a60-0dc77220eeda	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.583	admin	Акт выполненных работ	1009
076ec52f-5174-e9a2-9a98-1643c0b045be	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.591	admin	bankClientCommon	bankClientCommon
0aa3b25f-cdba-3de8-7037-04301ce40a53	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.564	admin	Подтверждение конверсионной операции	1432
0d291b6c-acb9-dd69-5579-c39d4f29d388	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.595	admin	ТОРГ-12 покупателю	AR151-d
0ef5b3c9-f68f-57c4-56a3-7d9d913c42ba	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.595	admin	Транспортный документ (Коносамент/ CMR/ авианакладная/ жд накладная)	Log104-d
0fcdd9de-9df4-7abc-549c-b3e670c558e4	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.552	admin	Кредитовое авизо	1014
131dbd54-b201-e4ab-1472-5018fbc26b89	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.591	admin	ДТС	CC110-d
1841965e-e29d-16cf-46bf-b01a7f2b4447	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.555	admin	Уведомление об исполнении документарного инкассо + вексель	1243
1b22bbdb-e02f-81c8-df70-b14fcae24630	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.606	admin	Разрешение на работу	1233
1fad05d4-3053-9848-a231-84e8b7285f4c	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.6	admin	Заявление о ввозе и уплате косвенных налогов (от покупателя)	2
1fb4228b-3e93-c1ab-32e3-23e666ece774	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.563	admin	ТОРГ-12 от поставщика	IncomingTorg12
203a8539-8f5d-f747-b9d5-9c6049e09994	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.598	admin	Постоянные реквизиты	001-1
2375bb86-9082-ec3a-7acd-12ecfdbad25c	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.557	admin	Протокол	diadoc_protocol
284f0267-6478-5b34-f1b2-309735f57c8f	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.585	admin	Договор	1012
2a2bc689-a0f9-f69c-c47e-8bf8608270a6	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.602	admin	Счёт-фактура от поставщика	IncomingInvoice
2aad3af2-36bf-03a3-732c-5ede82a9058e	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	\N	2021-05-19 18:46:32.559	admin	Архив	diadoc_archive
32c477ba-1cc3-c848-46a4-6f1bf548d9ab	2	2021-05-19 18:38:17.156	admin	2021-05-19 18:38:17.156	admin	2021-05-19 18:46:32.568	admin	Входящий неформализованный документ	IncomingForwardingReceipt
34c89307-d968-e0ba-a8cd-7fa1bb085915	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.605	admin	Накладная на отпуск материалов на сторону (М-15)	WH199-d
35da9953-3027-6c19-d59a-e239b869a1da	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	admin	2021-05-19 18:46:32.566	admin	Чек о списании таможенных платежей	CC112-d
36b74cc0-5309-0eb8-c8a6-3178a6609daa	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.596	admin	Счет	CH.3
3da19ca2-8a55-d426-4249-effa4ae238a1	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.551	admin	Акт передачи готовой продукции в места хранения	OutgoingAcceptanceCertificate
3e57c812-2a78-15bb-d0b0-e40de6664e3c	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	admin	2021-05-19 18:46:32.6	admin	Поручение экспедитору	OutgoingOrderForwarder
3f1d2820-6a83-314a-0131-4ba9f99cdb41	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.583	admin	Тип А	a1
4426de78-1310-e114-7203-dbdee5151eae	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.589	admin	Тип Б	b1
4494e669-1beb-4caa-b8d4-405f49bee2d6	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.6	admin	Паспорт иностранного гражданина	9001
44ac96f7-3061-65eb-4e43-a1e5d5617f16	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.553	admin	Приходный ордер М-4	03-001
47c77f20-6217-f7cc-e81c-d8a51216a989	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.562	admin	УПД покупателю	AR160-d
5117c47b-e9c4-c54d-c0c3-d5a18156974f	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.564	admin	Сопроводительное письмо	Pis123
571a5e75-b2a3-e52b-b8b6-162c19408e88	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	admin	2021-05-19 18:46:32.584	admin	Уведомление об окончании проверки таможенной декларации	CC119-d
587314af-ba7e-cf6f-545f-db1931a43584	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.577	admin	Счет	123
5b1f2977-bddb-e8be-cb68-0368c8f0a155	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	admin	2021-05-19 18:46:32.567	admin	Счет входящий	IncomingProformaInvoice
5c22e912-7e97-3a83-7d90-1363fe7cbb4c	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.603	admin	Требование-накладная (М-11)	WH185-d
5ca3e39a-d639-0fa0-705e-5d2792478224	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.584	admin	Св-во о браке	9005
5d78f1b8-8e59-28a1-7c5c-df2ceb3d040d	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.608	admin	Виза	9002
605a8df9-ee3b-b03a-6e2f-50020cfa6db3	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.593	admin	Инкассовое поручение	outgoinginc
65f18032-dbd6-a5d2-dd59-b25a02318d1e	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.604	admin	Служебные отметки	CC120-d
69123ba5-80fc-05ef-e90f-9f4825a6abf9	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.586	admin	Упаковочный лист	Log153-d
6992e6f9-79f3-3b91-7b45-0c492fcc0b3c	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	admin	2021-05-19 18:46:32.607	admin	Документ ДиаДок	diadocDocument
6cf40fbe-b487-961e-0949-33e04650f630	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.563	admin	Административное сообщение	1543
6db2a2dd-87e9-f6a0-abe0-1b207bceaf38	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	\N	2021-05-19 18:46:32.558	admin	Акт выполненных работ/ оказанных услуг от поставщика	IncomingAcceptanceCertificate
75b93d24-ac75-1929-c84d-9b51ef059e9e	2	2021-05-19 18:38:17.157	admin	2021-05-19 18:38:17.157	admin	2021-05-19 18:46:32.592	admin	УПД покупателю	OutgoingUniversalTransferDocument
7a291f88-a60b-d3b2-d650-9e100c950609	2	2021-05-19 18:38:17.158	admin	2021-05-19 18:38:17.158	\N	2021-05-19 18:46:32.592	admin	Упаковочный лист покупателю	sdf12434
7bbbe18b-6900-3a61-0780-8874e4f8da6c	2	2021-05-19 18:38:17.158	admin	2021-05-19 18:38:17.158	\N	2021-05-19 18:46:32.582	admin	Инвойс от поставщика	AP102-d
7d73dc2a-6a5d-9dab-cf2a-287c5f167079	2	2021-05-19 18:38:17.158	admin	2021-05-19 18:38:17.158	admin	2021-05-19 18:46:32.56	admin	Платежное поручение входящее	incoming
1424e3a4-7896-3162-e75b-779b6788a658	1	2021-05-25 14:32:43.223	admin	2021-05-25 14:32:43.223	\N	\N	\N	Справка	12
\.


--
-- Data for Name: eademo_attribute_assignment_data; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_attribute_assignment_data (id, initiator_id, contractor_id, operation_type_id, supplier_id, recipient_id, custom_id) FROM stdin;
\.


--
-- Data for Name: eademo_attribute_assignment_signer_form; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_attribute_assignment_signer_form (id, signer_type_id, employee_id, attribute_assignment_data_id) FROM stdin;
\.


--
-- Data for Name: eademo_attribute_assignment_task; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_attribute_assignment_task (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, need_process_after, data_id, replace_values, add_values, user_id, package_type_id, department_id, errors, last_status_change, status) FROM stdin;
\.


--
-- Data for Name: eademo_attribute_assignment_task_doc_package_model_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_attribute_assignment_task_doc_package_model_link (attribute_assignment_task_id, doc_package_model_id) FROM stdin;
\.


--
-- Data for Name: eademo_bank; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_bank (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, code, bic, cor_account, swift) FROM stdin;
57b0fe4f-7c51-e9e3-a0ad-b7542d7878c2	2	2021-05-19 18:40:50.582	admin	2021-05-19 18:40:50.582	admin	2021-05-19 18:53:18.974	admin	ФИЛИАЛ АО КБ "СИТИБАНК" В Г.САНКТ-ПЕТЕРБУРГЕ	citibank	044030765	30101810100000000765	\N
a7f16361-585a-dc1d-86fc-fc8186721a6c	2	2021-05-24 12:56:41.307	admin	2021-05-24 12:57:10.52	admin	\N	\N	Банк №1	0001	000525187	30101810700000000187	\N
\.


--
-- Data for Name: eademo_basket; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_basket (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, status, number, demand_date, demand_number, demand_author, demand_type, tax_type_id, audited_period, contractor_id, description, request_date, response_date_planned, response_date, initiator_id, dispatcher_id) FROM stdin;
6819091a-1350-bdec-fb28-445a5547e2c7	1	2021-05-24 13:31:54.664	annen	2021-05-24 13:31:54.664	\N	\N	\N	FINAL	basket-202105-0001	2021-05-24	1	ФНС №15	\N	\N	\N	4056900c-5fa5-6f5f-d1af-dece7dad840c	\N	2021-05-24	2021-05-25	\N	aba1ee98-ee0a-e6e8-e66f-f7604c5fd88a	aba1ee98-ee0a-e6e8-e66f-f7604c5fd88a
ca1cafb8-d0ed-adb3-9cff-ee19312091ce	3	2021-05-25 17:48:09.66	olegov	2021-05-25 18:41:15.05	olegov	\N	\N	FINAL	basket-202105-0002	2021-05-24	2	ФНС	Запрос	c76ba0c5-696c-3ac4-6503-997bdc70c76b	\N	4056900c-5fa5-6f5f-d1af-dece7dad840c	\N	2021-05-25	\N	\N	aba1ee98-ee0a-e6e8-e66f-f7604c5fd88a	aba1ee98-ee0a-e6e8-e66f-f7604c5fd88a
\.


--
-- Data for Name: eademo_basket_attachment; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_basket_attachment (id, basket_id, attachment_id, added_by) FROM stdin;
ba784cb8-67db-a2c1-ad75-4a06399a0b77	6819091a-1350-bdec-fb28-445a5547e2c7	f80200c4-9ff9-d90e-2cef-30e584a34f88	annen
6294f159-80f6-98d0-ae11-153658b4ed17	6819091a-1350-bdec-fb28-445a5547e2c7	83b58dfb-4fff-5748-cd9d-5cc835840660	annen
1d3c8643-dff8-e9bb-aa84-600a5f31e7cb	6819091a-1350-bdec-fb28-445a5547e2c7	509e9afc-cebc-3c70-fe94-273e8015b852	annen
dd2a6e20-d47a-7ebf-fd27-714abe08116f	6819091a-1350-bdec-fb28-445a5547e2c7	b9459ccd-d80d-b404-a72e-d804c847c3d6	annen
b20af5e0-0a98-e901-27b6-aef2d9126f9f	ca1cafb8-d0ed-adb3-9cff-ee19312091ce	e653c744-c517-4498-bc36-e91eb14a42cf	olegov
77f4ba2b-d1ca-6b62-608c-8e3624b40a79	ca1cafb8-d0ed-adb3-9cff-ee19312091ce	dc4a713c-1d38-e2dc-9fb2-3b5c41a9236f	olegov
\.


--
-- Data for Name: eademo_basket_employee_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_basket_employee_link (basket_id, employee_id) FROM stdin;
ca1cafb8-d0ed-adb3-9cff-ee19312091ce	e303b9a9-53eb-5abf-8044-71a0aa30d3dd
\.


--
-- Data for Name: eademo_comment; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_comment (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, sender_id, parent_id, comment_text, doc_id, relative_object_name) FROM stdin;
\.


--
-- Data for Name: eademo_comment_user_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_comment_user_link (comment_id, user_id) FROM stdin;
\.


--
-- Data for Name: eademo_contract_type; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_contract_type (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, code, parent_id) FROM stdin;
2f1b4cb3-7f2d-b0fc-b4d3-c6b52ce68ef8	1	2021-05-24 12:59:51.266	admin	2021-05-24 12:59:51.266	\N	\N	\N	УСЛУГИ	1	\N
d6d54347-2fa5-0598-2ae0-e493f6368444	1	2021-05-24 13:00:23.57	admin	2021-05-24 13:00:23.57	\N	\N	\N	Услуги по ремонту орг. техники	1-1	2f1b4cb3-7f2d-b0fc-b4d3-c6b52ce68ef8
ef7ae1cc-15ba-9c90-e997-465e7eac25d6	3	2021-05-24 18:27:47.345	admin	2021-05-24 18:28:19.097	admin	\N	\N	ИТ услуги	1-2	2f1b4cb3-7f2d-b0fc-b4d3-c6b52ce68ef8
\.


--
-- Data for Name: eademo_contractor; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_contractor (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, country, id_diadoc, inn, kpp, ogrn, name_full, name_en, sap_supplier_code, custom_code, sap_recipient_code) FROM stdin;
4056900c-5fa5-6f5f-d1af-dece7dad840c	1	2021-05-24 12:55:06.736	admin	2021-05-24 12:55:06.736	\N	\N	\N	ООО "Цветы"	RF	\N	0018008609	001800010	0076318000548	ОБЩЕСТВО С ОГРАНИЧЕННОЙ ОТВЕТСТВЕННОСТЬЮ "ЦВЕТЫ"	\N	\N	6318	\N
c9b196d4-b8f5-cbf7-1401-064989ac7ec1	2	2021-05-26 17:30:28.065	admin	2021-05-26 17:30:28.065	\N	2021-05-27 18:34:03.286	admin	Тестовая организация №4926087	\N	\N	9649260872	\N	\N	\N	\N	\N	\N	\N
\.


--
-- Data for Name: eademo_currency; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_currency (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, short_name, code) FROM stdin;
8f151e3a-50bc-07dd-0cc3-0767039ebbd9	2	2021-05-19 18:41:28.203	admin	2021-05-19 18:41:28.203	\N	2021-05-19 18:53:27.167	admin	Евро	EUR	978
b5a572ce-5226-c07e-24f1-e6b82023943f	2	2021-05-19 18:41:28.203	admin	2021-05-19 18:41:28.203	\N	2021-05-19 18:53:27.166	admin	Доллар США	USD	840
f8c6ad35-e7d0-d1b0-edad-69714e30edab	2	2021-05-19 18:41:28.203	admin	2021-05-19 18:41:28.203	admin	2021-05-19 18:53:27.165	admin	Рубль РФ	Руб.	643
d5ed9efa-b14c-f54a-5187-5cd9add65e34	1	2021-05-24 12:58:40.574	admin	2021-05-24 12:58:40.574	\N	\N	\N	Рубль	RUB	643
\.


--
-- Data for Name: eademo_department; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_department (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, code, parent_id, top_department_id) FROM stdin;
3d556130-9299-f237-ec4e-01c31c73282d	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:52:44.66	admin	Департамент гарантии качества	QA	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
455294c2-e3ef-eada-3612-2f4a177122fc	2	2021-05-19 17:30:28.431	admin	2021-05-19 17:30:28.431	\N	2021-05-19 17:35:58.971	admin	департамент	001	\N	\N
60f77d84-3eea-3701-5ca6-a45d9b90f183	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:53:01.133	admin	ООО "ХММР"	ГП	\N	\N
84c2a50d-e622-a076-edf2-4ffe1f90a512	2	2021-05-24 11:58:48.75	admin	2021-05-24 11:58:48.757	admin	\N	\N	Департамент по работе с персоналом	ДУП	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
255821e6-0862-2a9a-5c85-483758999718	5	2021-05-24 12:33:21.4	admin	2021-05-24 18:28:49.602	admin	\N	\N	Отдел ИТ инженеров	ДИТ-01	010c4433-da0e-8008-7c15-fb5bceebd11e	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	3	2021-05-24 11:58:06.971	admin	2021-05-25 12:51:01.954	admin	\N	\N	ООО "Ромашка"	ГО	\N	\N
2e0bd75b-96c6-2010-b512-665e4d4d612c	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:49:15.237	admin	HR	HR	\N	\N
0c918552-3ceb-0bc5-c5f9-45b5c7397104	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:49:41.023	admin	Treasury	financeTreasury	eb79f3d3-dfaa-138b-f500-551d6d0b1df8	eb79f3d3-dfaa-138b-f500-551d6d0b1df8
eb79f3d3-dfaa-138b-f500-551d6d0b1df8	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:49:44.725	admin	Finance	finance	\N	\N
88544d3a-0677-ef21-c72a-41209a2dc5d8	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:50:06.373	admin	Континент Экспресс	КЭ	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
b96002a7-99ea-2aa0-f14f-9541213ee003	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:50:25.183	admin	Отдел трудовых отношений	H2110.01	fb827fcc-f749-8c7d-0b1e-2a20c17bcf7e	60f77d84-3eea-3701-5ca6-a45d9b90f183
44519a75-bb68-67bc-a41f-60d1d769696c	2	2021-05-19 18:39:18.658	admin	2021-05-19 18:39:18.658	admin	2021-05-19 18:50:25.184	admin	Цех сборки	H5400	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
fb827fcc-f749-8c7d-0b1e-2a20c17bcf7e	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:50:35.046	admin	Департамент трудовых отношений и развития персонала	ER&HRD	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
6d11d2f5-9409-72e6-1ebc-cdaf14a1278c	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:50:35.045	admin	Инженерный отдел цеха штамповки	H5100.02	78a254e7-d81a-18c2-ded9-1ad4c55d9b9f	60f77d84-3eea-3701-5ca6-a45d9b90f183
f1441ac7-3964-21bb-f365-0fc454a98e7b	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:50:45.475	admin	Отдел внутреннего контроля	H3100.02	aa8ce010-e078-f8aa-8bcd-49bf00b8f691	60f77d84-3eea-3701-5ca6-a45d9b90f183
78a254e7-d81a-18c2-ded9-1ad4c55d9b9f	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:50:45.476	admin	Цех штамповки	H5100	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
aa8ce010-e078-f8aa-8bcd-49bf00b8f691	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:50:57.646	admin	Департамент юридического сопровождения	H3100	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
0a8a0e02-9604-198c-5d3e-814ccefd679d	2	2021-05-19 18:39:18.658	admin	2021-05-19 18:39:18.658	admin	2021-05-19 18:50:57.645	admin	Департамент производственного инжиниринга и охраны труда	PE&S	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
da3f8d7e-9d50-8f4f-096b-7889c71446ef	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:51:14.75	admin	Отдел административной поддержки	H2200.01	c725396c-f0b8-6271-69f3-0660927ad8c8	60f77d84-3eea-3701-5ca6-a45d9b90f183
e349e7ee-bef0-7e76-6b1e-52d42937b325	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:51:14.753	admin	Департамент закупок	H7200	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
c725396c-f0b8-6271-69f3-0660927ad8c8	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:51:22.487	admin	Административный департамент	GA	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
6e120f6f-7587-efee-c317-8f2e9672e9e1	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:51:22.485	admin	Отдел расчетов с персоналом	H2100.02	e14fe2e7-bddf-1a6d-e7e4-be34680df7b4	60f77d84-3eea-3701-5ca6-a45d9b90f183
e14fe2e7-bddf-1a6d-e7e4-be34680df7b4	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:51:29.825	admin	Департамент управления персоналом	ДУП	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
0da0b3b2-9683-6402-83ce-eb39bf698ff9	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:29.824	admin	Инженерный отдел цеха окраски	H5300.02	995ccc9a-a2da-4e6a-6929-bea80dbcfe78	60f77d84-3eea-3701-5ca6-a45d9b90f183
995ccc9a-a2da-4e6a-6929-bea80dbcfe78	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:51:36.658	admin	Цех окраски	H5300	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
be6f74f4-6908-4d98-5d68-16227ad78977	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:51:45.064	admin	Департамент обслуживания технологического оборудования	H6102	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
5a56e520-df92-6dfc-c995-b4e1bb001c6a	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:51:45.062	admin	Отдел ценообразования и анализа качества автокомпонентов	H7100.01	fa408510-f06e-24ff-a8f0-1dbe836fd42d	60f77d84-3eea-3701-5ca6-a45d9b90f183
8b92bb1f-ad56-2570-6ebb-743c91d57011	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:54.564	admin	Отдел учета инвестиций и услуг	H4100.05	4052c391-6a0c-6833-2a16-18e7003171c2	60f77d84-3eea-3701-5ca6-a45d9b90f183
fa408510-f06e-24ff-a8f0-1dbe836fd42d	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:51:54.567	admin	Департамент закупок автокомпонентов	H7100	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
b7bedcd1-546e-61ab-4406-13f4d18de0ce	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:52:02.839	admin	Отдел охраны труда, промышленной безопасности и экологии	H6101.01	a4c63427-434c-a70f-1431-9762357ec888	60f77d84-3eea-3701-5ca6-a45d9b90f183
273bcb20-85ba-84ae-bb53-c5d68fc30308	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:52:02.839	admin	Отдел главного механика	H6101.03	a4c63427-434c-a70f-1431-9762357ec888	60f77d84-3eea-3701-5ca6-a45d9b90f183
4052c391-6a0c-6833-2a16-18e7003171c2	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:52:02.841	admin	Финансовый  департамент	ФД	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
a4c63427-434c-a70f-1431-9762357ec888	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:52:10.002	admin	Департамент производственного инжиниринга и охраны  труда	H6101	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
b6dde6ce-ffd8-1c97-d941-4953323d301f	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:52:20.469	admin	Отдел качества автокомпонентов	H6300.03	ca968cfb-6913-9250-82a1-a119a7c26e1f	60f77d84-3eea-3701-5ca6-a45d9b90f183
088b8c1a-47d4-c4ba-6d0f-81e8ea5c0c6d	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:52:20.471	admin	Столовая	Столовая	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
5d26959f-af17-c9af-b11d-c552b7870180	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:52:20.47	admin	Отдел качества сварки и окраски	H6300.02	ca968cfb-6913-9250-82a1-a119a7c26e1f	60f77d84-3eea-3701-5ca6-a45d9b90f183
64857fe7-7879-4a72-29a5-97ab0a4ea952	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:52:20.472	admin	Цех  сварки	H5200	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
ca968cfb-6913-9250-82a1-a119a7c26e1f	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:52:28.251	admin	Департамент контроля качества	QC	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
f6bc0a76-57e4-bfc1-8962-5acac793700c	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:52:28.25	admin	Отдел управления материально-техническим обеспечением	MC	6ba42ec2-b7ec-dfcc-c44f-797db4fb1181	60f77d84-3eea-3701-5ca6-a45d9b90f183
c376d3ae-1b8b-9725-5637-6abcd1a885a0	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:52:36.477	admin	Отдел информационной поддержки качества	H6400.01	3d556130-9299-f237-ec4e-01c31c73282d	60f77d84-3eea-3701-5ca6-a45d9b90f183
6ba42ec2-b7ec-dfcc-c44f-797db4fb1181	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:52:36.479	admin	Департамент производственного управления	PMD	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
010c4433-da0e-8008-7c15-fb5bceebd11e	3	2021-05-24 12:32:45.771	admin	2021-05-24 19:03:34.648	admin	\N	\N	ИТ департамент	ДИТ	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	3	2021-05-24 11:59:42.997	admin	2021-05-25 13:17:17.442	admin	\N	\N	Отдел расчетов с персоналом	ДУП-01	84c2a50d-e622-a076-edf2-4ffe1f90a512	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
418218a4-f072-3d42-3e56-b62ec9f0437d	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	\N	2021-05-19 18:49:15.236	admin	Системный департамент	system	\N	\N
58aabce1-6d39-5147-4247-ee551e09c120	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:49:24.393	admin	Департамент таможни	D1CUST	3b9ff659-9f39-00ce-edb2-024eafa50afc	3b9ff659-9f39-00ce-edb2-024eafa50afc
333137ef-eb8f-95fc-bbfd-6f3fc52bd91f	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:49:28.657	admin	Департамент внутренних поставок	LOG1RUS	3b9ff659-9f39-00ce-edb2-024eafa50afc	3b9ff659-9f39-00ce-edb2-024eafa50afc
3b9ff659-9f39-00ce-edb2-024eafa50afc	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	\N	2021-05-19 18:49:32.905	admin	Управление поставок	LOGIST	\N	\N
d862d396-b1ba-be42-c013-73d27928f688	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:49:41.024	admin	AR	AR	eb79f3d3-dfaa-138b-f500-551d6d0b1df8	eb79f3d3-dfaa-138b-f500-551d6d0b1df8
bd3d6b63-abf6-149c-4b9e-8b508283a2e2	2	2021-05-19 18:39:18.658	admin	2021-05-19 18:39:18.658	admin	2021-05-19 18:49:59.285	admin	Департамент информационных технологий	H2300	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
d9749ee4-964b-5f24-3d61-5d748d6a2025	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:49:59.286	admin	Департамент поддержки продаж	Sales	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
a5918db5-a115-623f-6093-35b27f226db7	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:50:16.541	admin	Производственный отдел цеха сборки	H5400.01	44519a75-bb68-67bc-a41f-60d1d769696c	60f77d84-3eea-3701-5ca6-a45d9b90f183
7946d6f8-b168-5eff-1cb8-2f30d7804d1a	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:50:16.54	admin	Инженерный отдел цеха сборки	H5400.02	44519a75-bb68-67bc-a41f-60d1d769696c	60f77d84-3eea-3701-5ca6-a45d9b90f183
15f15279-4ae0-d9de-161d-112f90f148f2	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:50:25.184	admin	Отдел развития персонала	H2110.02	fb827fcc-f749-8c7d-0b1e-2a20c17bcf7e	60f77d84-3eea-3701-5ca6-a45d9b90f183
08e01682-dd22-6009-35a8-19d215b3c8c5	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:50:35.046	admin	Производственный отдел цеха штамповки	H5100.01	78a254e7-d81a-18c2-ded9-1ad4c55d9b9f	60f77d84-3eea-3701-5ca6-a45d9b90f183
8cb54990-cff8-d4a2-1132-935adbcf90cf	2	2021-05-19 18:39:18.658	admin	2021-05-19 18:39:18.658	admin	2021-05-19 18:50:57.645	admin	Отдел закупок	H7200.01	e349e7ee-bef0-7e76-6b1e-52d42937b325	60f77d84-3eea-3701-5ca6-a45d9b90f183
f36271f4-f32d-78c5-629a-38154d3bc882	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:50:57.644	admin	Отдел таможенного оформления и логистики	ОТОиЛ	e349e7ee-bef0-7e76-6b1e-52d42937b325	60f77d84-3eea-3701-5ca6-a45d9b90f183
505471e1-2595-5b61-73f6-ea9c91cffb5a	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:50:57.644	admin	Отдел закупок производственных материалов	H7200.03	e349e7ee-bef0-7e76-6b1e-52d42937b325	60f77d84-3eea-3701-5ca6-a45d9b90f183
b88b096d-b4e7-813b-7126-41275e21e3fe	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:14.75	admin	Отдел внешних связей и планирования	H2200.04	c725396c-f0b8-6271-69f3-0660927ad8c8	60f77d84-3eea-3701-5ca6-a45d9b90f183
ffdbadbf-4e03-ee4f-2e81-1d55c36221b2	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:51:14.752	admin	Отдел безопасности	ОБ	c725396c-f0b8-6271-69f3-0660927ad8c8	60f77d84-3eea-3701-5ca6-a45d9b90f183
38deb291-2d84-26e9-f0aa-6284c201b32d	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:51:14.751	admin	Отдел связей с общественностью	PR	c725396c-f0b8-6271-69f3-0660927ad8c8	60f77d84-3eea-3701-5ca6-a45d9b90f183
6f0583db-3871-2a9a-3b4e-3d03524011d9	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:51:14.752	admin	Отдел социального обеспечения	H2200.03	c725396c-f0b8-6271-69f3-0660927ad8c8	60f77d84-3eea-3701-5ca6-a45d9b90f183
1ecd84f4-41ae-16bf-0cbe-ccfc8a25dd90	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:22.486	admin	Отдел управления персоналом	ОУП	e14fe2e7-bddf-1a6d-e7e4-be34680df7b4	60f77d84-3eea-3701-5ca6-a45d9b90f183
1946bdfc-1ae5-aee3-0540-1e3648321105	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:51:29.825	admin	Производственный отдел цеха окраски	H5300.01	995ccc9a-a2da-4e6a-6929-bea80dbcfe78	60f77d84-3eea-3701-5ca6-a45d9b90f183
bb6eb5c0-ca0e-8b6e-d1e3-7028b8ce9dbf	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:51:36.657	admin	Отдел обслуживания технологического оборудования сварки	H6102.03	be6f74f4-6908-4d98-5d68-16227ad78977	60f77d84-3eea-3701-5ca6-a45d9b90f183
d8ea2e75-ac00-9086-ae6a-9b26f6442fa4	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:36.657	admin	Отдел обслуживания технологического оборудования штамповки	H6102.02	be6f74f4-6908-4d98-5d68-16227ad78977	60f77d84-3eea-3701-5ca6-a45d9b90f183
fbb7ddd7-8ce1-c442-c236-1209fc715d0d	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:45.063	admin	Отдел развития автокомпонентов электрики, интерьера и экстерьера	H7100.02	fa408510-f06e-24ff-a8f0-1dbe836fd42d	60f77d84-3eea-3701-5ca6-a45d9b90f183
4b98557c-bba5-8a3d-2e2c-6eb692705966	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:51:45.064	admin	Отдел развития автокомпонентов кузова	H7100.04	fa408510-f06e-24ff-a8f0-1dbe836fd42d	60f77d84-3eea-3701-5ca6-a45d9b90f183
0b6c65e6-d9d6-c905-508a-cabe8454a1e3	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:54.565	admin	Отдел бухгалтерского учета	H4100.02	4052c391-6a0c-6833-2a16-18e7003171c2	60f77d84-3eea-3701-5ca6-a45d9b90f183
2431b663-35fd-a4b1-f8cb-1ed63f0ff09c	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:51:54.566	admin	Отдел управленческого учета	H4100.03	4052c391-6a0c-6833-2a16-18e7003171c2	60f77d84-3eea-3701-5ca6-a45d9b90f183
bba4f23e-29f5-2da1-7e87-dde0f4a9b3cd	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:52:02.841	admin	Отдел главного энергетика	H6101.02	a4c63427-434c-a70f-1431-9762357ec888	60f77d84-3eea-3701-5ca6-a45d9b90f183
0cc189f1-a160-fffd-f3ec-452c78728f97	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:52:02.84	admin	Отдел производственного строительства	H6101.04	a4c63427-434c-a70f-1431-9762357ec888	60f77d84-3eea-3701-5ca6-a45d9b90f183
12bcb1bc-228f-696b-3a95-e139874416ad	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:52:10.001	admin	Инженерный отдел цеха сварки	H5200.02	64857fe7-7879-4a72-29a5-97ab0a4ea952	60f77d84-3eea-3701-5ca6-a45d9b90f183
46d4a483-cc99-5234-0e7a-30a19894d805	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:52:10	admin	Производственный отдел цеха сварки	H5200.01	64857fe7-7879-4a72-29a5-97ab0a4ea952	60f77d84-3eea-3701-5ca6-a45d9b90f183
697f1d6e-8fb3-48c1-b25e-8c4c8f34e6c2	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:52:20.471	admin	Отдел качества сборки	H6300.01	ca968cfb-6913-9250-82a1-a119a7c26e1f	60f77d84-3eea-3701-5ca6-a45d9b90f183
8d0e5643-19f9-a0bd-585c-aec6efdbbcb3	2	2021-05-19 18:39:18.656	admin	2021-05-19 18:39:18.656	admin	2021-05-19 18:52:28.251	admin	Отдел управления производственным процессом	H6200.01	6ba42ec2-b7ec-dfcc-c44f-797db4fb1181	60f77d84-3eea-3701-5ca6-a45d9b90f183
f2574c7d-4271-e004-9217-95fa6dcbad6b	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:52:28.25	admin	Отдел контроля спецификаций	H6200.02	6ba42ec2-b7ec-dfcc-c44f-797db4fb1181	60f77d84-3eea-3701-5ca6-a45d9b90f183
a9aab237-0e37-9d3b-78dc-3824c97d98df	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:52:36.479	admin	Отдел улучшения качества	H6400.02	3d556130-9299-f237-ec4e-01c31c73282d	60f77d84-3eea-3701-5ca6-a45d9b90f183
50a4f127-f9e7-2998-2ad5-f6f2223affe1	2	2021-05-19 18:39:18.658	admin	2021-05-19 18:39:18.658	admin	2021-05-19 18:52:36.478	admin	Отдел проверки качества	H6400.03	3d556130-9299-f237-ec4e-01c31c73282d	60f77d84-3eea-3701-5ca6-a45d9b90f183
76064fde-abf9-f89e-c85b-06a278085f6d	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:52:36.478	admin	Отдел гарантии и технической поддержки	H6400.04	3d556130-9299-f237-ec4e-01c31c73282d	60f77d84-3eea-3701-5ca6-a45d9b90f183
5ff86b86-8067-5bf4-44db-81bf144940bf	3	2021-05-24 12:43:04.168	admin	2021-05-24 12:44:06.282	admin	\N	\N	Финансовый департамент	ФД	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
454a872b-e357-85d3-474d-88622aa11faa	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:49:15.236	admin	Управление бухучета	BUH1	\N	\N
6f5e70e7-a8cf-014f-51b5-93618c0b5ea7	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	aivanova	2021-05-19 18:49:15.238	admin	General contracts	generalContracts	\N	\N
2599cf38-81d2-777a-076e-30f6d5fb147f	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:49:24.393	admin	Отдел охраны складских площадей	Sec123wrh	333137ef-eb8f-95fc-bbfd-6f3fc52bd91f	3b9ff659-9f39-00ce-edb2-024eafa50afc
0505ac9f-92ec-f8f5-eb4f-bdeaacf44683	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:49:41.024	admin	AP-Департамент	financeDepartmentCode	eb79f3d3-dfaa-138b-f500-551d6d0b1df8	eb79f3d3-dfaa-138b-f500-551d6d0b1df8
3f62859c-b74a-7abf-5648-2e775531bede	2	2021-05-19 18:39:18.658	admin	2021-05-19 18:39:18.658	admin	2021-05-19 18:49:41.023	admin	Customs	cuuuuuust	eb79f3d3-dfaa-138b-f500-551d6d0b1df8	eb79f3d3-dfaa-138b-f500-551d6d0b1df8
57eee01d-ca96-2f22-824d-8fad8487f3bc	2	2021-05-19 18:39:18.655	admin	2021-05-19 18:39:18.655	admin	2021-05-19 18:49:59.288	admin	Департамент исследований и разработок	H6500	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
629eab2d-afef-01b0-701c-206de99fdac5	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:49:59.288	admin	Производственное управление	H5000	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
78726871-1585-b9fe-1f2f-0c234d29efc6	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:49:59.287	admin	Производственный дивизион	H1000	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
e82219bf-dd17-2e2f-6921-86ad65e34ead	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:50:06.374	admin	Дивизион закупок	H7000	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
572aef58-aa1c-f7b6-562f-ef58fe4839bb	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:50:06.375	admin	Административный дивизион	H2000	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
6af58be3-a289-2d9c-17d4-237a2083d395	2	2021-05-19 18:39:18.654	admin	2021-05-19 18:39:18.654	admin	2021-05-19 18:50:06.376	admin	Цех штамповки (сталь)	ЦШ(С)	60f77d84-3eea-3701-5ca6-a45d9b90f183	60f77d84-3eea-3701-5ca6-a45d9b90f183
06890a6f-1e98-abe9-444b-4dca581f4ff2	2	2021-05-19 18:39:18.658	admin	2021-05-19 18:39:18.658	admin	2021-05-19 18:50:45.476	admin	Юридический отдел	H3100.01	aa8ce010-e078-f8aa-8bcd-49bf00b8f691	60f77d84-3eea-3701-5ca6-a45d9b90f183
3f74896d-f92e-e19c-756b-409442f0bd14	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:36.656	admin	Отдел обслуживания технологического оборудования окраски и сборки	H6102.01	be6f74f4-6908-4d98-5d68-16227ad78977	60f77d84-3eea-3701-5ca6-a45d9b90f183
72bfa70a-95b4-ecd3-7a60-ca75d950d5b6	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:45.061	admin	Отдел развития автокомпонентов шасси и силового агрегата	H7100.03	fa408510-f06e-24ff-a8f0-1dbe836fd42d	60f77d84-3eea-3701-5ca6-a45d9b90f183
d084b491-3933-ea21-6324-30e4ebbbaa60	2	2021-05-19 18:39:18.653	admin	2021-05-19 18:39:18.653	admin	2021-05-19 18:51:54.567	admin	Отдел налогового учета	H4100.01	4052c391-6a0c-6833-2a16-18e7003171c2	60f77d84-3eea-3701-5ca6-a45d9b90f183
f5cfcd8e-dc97-3d5a-2833-a69daebda67b	2	2021-05-19 18:39:18.657	admin	2021-05-19 18:39:18.657	admin	2021-05-19 18:51:54.566	admin	Отдел казначейских операций и анализа	H4100.04	4052c391-6a0c-6833-2a16-18e7003171c2	60f77d84-3eea-3701-5ca6-a45d9b90f183
8700e684-3c1a-b199-f4de-807b7ced53cb	4	2021-05-24 12:44:27.821	admin	2021-05-24 18:51:39.658	admin	\N	\N	Бухгалтерия	ФД-01	5ff86b86-8067-5bf4-44db-81bf144940bf	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
35157a31-8942-1884-2756-8e009bd66864	4	2021-05-24 18:26:36.85	admin	2021-05-24 19:04:22.845	admin	\N	\N	Отдел по ремонту орг. техники	ДИТ-02	010c4433-da0e-8008-7c15-fb5bceebd11e	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
\.


--
-- Data for Name: eademo_department_contract_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_department_contract_type_link (department_id, contract_type_id) FROM stdin;
35157a31-8942-1884-2756-8e009bd66864	d6d54347-2fa5-0598-2ae0-e493f6368444
255821e6-0862-2a9a-5c85-483758999718	ef7ae1cc-15ba-9c90-e997-465e7eac25d6
010c4433-da0e-8008-7c15-fb5bceebd11e	d6d54347-2fa5-0598-2ae0-e493f6368444
010c4433-da0e-8008-7c15-fb5bceebd11e	ef7ae1cc-15ba-9c90-e997-465e7eac25d6
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	ef7ae1cc-15ba-9c90-e997-465e7eac25d6
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	d6d54347-2fa5-0598-2ae0-e493f6368444
\.


--
-- Data for Name: eademo_department_operation_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_department_operation_type_link (department_id, operation_type_id) FROM stdin;
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	c8d533e4-74ac-4414-4b4b-99fdafb9641d
010c4433-da0e-8008-7c15-fb5bceebd11e	c8d533e4-74ac-4414-4b4b-99fdafb9641d
255821e6-0862-2a9a-5c85-483758999718	c8d533e4-74ac-4414-4b4b-99fdafb9641d
8700e684-3c1a-b199-f4de-807b7ced53cb	c8d533e4-74ac-4414-4b4b-99fdafb9641d
35157a31-8942-1884-2756-8e009bd66864	cbd47aa7-4df8-d6ea-5483-c1ab2aaa9221
35157a31-8942-1884-2756-8e009bd66864	58a569d7-474e-445c-e88b-093ef3272e64
35157a31-8942-1884-2756-8e009bd66864	6ff9ef99-0aff-2a1a-6df0-69a0fe5d8f7e
255821e6-0862-2a9a-5c85-483758999718	6ff9ef99-0aff-2a1a-6df0-69a0fe5d8f7e
255821e6-0862-2a9a-5c85-483758999718	cbd47aa7-4df8-d6ea-5483-c1ab2aaa9221
255821e6-0862-2a9a-5c85-483758999718	58a569d7-474e-445c-e88b-093ef3272e64
8700e684-3c1a-b199-f4de-807b7ced53cb	c4ec056f-ee2a-82fa-bd34-7e2c519aaf46
8700e684-3c1a-b199-f4de-807b7ced53cb	eca15b35-a8cd-27f4-5c9c-0b7d91ebfb06
8700e684-3c1a-b199-f4de-807b7ced53cb	ad66739d-08c6-4e6d-2919-c63d004bcf03
8700e684-3c1a-b199-f4de-807b7ced53cb	93ef0f4d-0a64-d2d9-b1e5-338ef409daf8
8700e684-3c1a-b199-f4de-807b7ced53cb	a5f4e90e-1fe4-9d1c-613c-f73a854e4c97
8700e684-3c1a-b199-f4de-807b7ced53cb	261c599c-00ab-91fa-f0f6-24a8ace2d902
8700e684-3c1a-b199-f4de-807b7ced53cb	130c5ee5-4641-88e4-4417-0f0647107d27
010c4433-da0e-8008-7c15-fb5bceebd11e	58a569d7-474e-445c-e88b-093ef3272e64
010c4433-da0e-8008-7c15-fb5bceebd11e	cbd47aa7-4df8-d6ea-5483-c1ab2aaa9221
010c4433-da0e-8008-7c15-fb5bceebd11e	6ff9ef99-0aff-2a1a-6df0-69a0fe5d8f7e
35157a31-8942-1884-2756-8e009bd66864	c8d533e4-74ac-4414-4b4b-99fdafb9641d
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	cbd47aa7-4df8-d6ea-5483-c1ab2aaa9221
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	c4ec056f-ee2a-82fa-bd34-7e2c519aaf46
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	c8d533e4-74ac-4414-4b4b-99fdafb9641d
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	a5f4e90e-1fe4-9d1c-613c-f73a854e4c97
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	6ff9ef99-0aff-2a1a-6df0-69a0fe5d8f7e
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	58a569d7-474e-445c-e88b-093ef3272e64
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	130c5ee5-4641-88e4-4417-0f0647107d27
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	37909a4a-a3a9-596f-0599-11e34a72f5bc
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	261c599c-00ab-91fa-f0f6-24a8ace2d902
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	eca15b35-a8cd-27f4-5c9c-0b7d91ebfb06
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	ad66739d-08c6-4e6d-2919-c63d004bcf03
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	93ef0f4d-0a64-d2d9-b1e5-338ef409daf8
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	cbd47aa7-4df8-d6ea-5483-c1ab2aaa9221
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	130c5ee5-4641-88e4-4417-0f0647107d27
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	6ff9ef99-0aff-2a1a-6df0-69a0fe5d8f7e
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	93ef0f4d-0a64-d2d9-b1e5-338ef409daf8
\.


--
-- Data for Name: eademo_department_package_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_department_package_type_link (department_id, package_type_id) FROM stdin;
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9
010c4433-da0e-8008-7c15-fb5bceebd11e	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9
255821e6-0862-2a9a-5c85-483758999718	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9
8700e684-3c1a-b199-f4de-807b7ced53cb	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9
35157a31-8942-1884-2756-8e009bd66864	2372a557-81fe-e324-a474-fdd3f502a899
35157a31-8942-1884-2756-8e009bd66864	08246e7e-3bfb-ef2b-0f85-24f65fa42d19
255821e6-0862-2a9a-5c85-483758999718	2372a557-81fe-e324-a474-fdd3f502a899
255821e6-0862-2a9a-5c85-483758999718	08246e7e-3bfb-ef2b-0f85-24f65fa42d19
8700e684-3c1a-b199-f4de-807b7ced53cb	17ea8e8d-6c55-4503-0545-6b12050ec6e6
8700e684-3c1a-b199-f4de-807b7ced53cb	eee49cf1-d3d0-ac28-4420-61a2dc3b4923
8700e684-3c1a-b199-f4de-807b7ced53cb	2b37291a-c9d4-35e7-5c9a-1c1191dbd295
8700e684-3c1a-b199-f4de-807b7ced53cb	77183c46-4853-db91-6721-82612c4217e5
8700e684-3c1a-b199-f4de-807b7ced53cb	8a65b6a6-0479-051b-02ea-59ac1a41e237
010c4433-da0e-8008-7c15-fb5bceebd11e	08246e7e-3bfb-ef2b-0f85-24f65fa42d19
010c4433-da0e-8008-7c15-fb5bceebd11e	2372a557-81fe-e324-a474-fdd3f502a899
35157a31-8942-1884-2756-8e009bd66864	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	eee49cf1-d3d0-ac28-4420-61a2dc3b4923
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	4f4531f7-0a57-ff38-293d-48496a91d833
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	8a65b6a6-0479-051b-02ea-59ac1a41e237
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	17ea8e8d-6c55-4503-0545-6b12050ec6e6
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	08246e7e-3bfb-ef2b-0f85-24f65fa42d19
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	2372a557-81fe-e324-a474-fdd3f502a899
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	77183c46-4853-db91-6721-82612c4217e5
98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	2b37291a-c9d4-35e7-5c9a-1c1191dbd295
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	2372a557-81fe-e324-a474-fdd3f502a899
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	17ea8e8d-6c55-4503-0545-6b12050ec6e6
f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	08246e7e-3bfb-ef2b-0f85-24f65fa42d19
\.


--
-- Data for Name: eademo_diadoc_entity; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_diadoc_entity (id, file_name, last_status_sync_date, title, last_sync_date, last_enhanced_date, parent_entity_id, parent_id, status_title, entity_type, attachment_type, entity_id, status, diadoc_message_id, signature, raw_creation_date) FROM stdin;
24f98b66-6197-c7e2-bea4-772321ce3a2c	ON_NSCHFDOPPR_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200428_16116be6-363e-4ce7-89c1-a66e3d0ed07d.xml	2021-05-27 18:29:12.033	Акт №121212 от 22.04.20	2021-05-27 18:29:11.943	2021-05-26 17:25:43.004		\N	Подписан	Attachment	XmlAcceptanceCertificate	5cd1cd68-6dc4-477f-b28c-ff3b5bb3df23	Finished	bc7ea7da-9d39-b6f3-0b56-e76fc894b77b	\N	\N
1d1d268d-1913-7eb7-e32e-158ac9fed357	DP_IZVPOL_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200428_2bcc7600-a5b6-4eac-b1c2-3011dbf25bdd.xml	\N	\N	2021-05-27 10:14:38.394	\N	2002c79f-3c3e-4e4f-9904-b9834137b37c	9473dc62-28a0-59b2-2bf2-4f961df0ad9d	\N	Attachment	InvoiceReceipt	e420ea78-d90a-4b1b-af37-77e7f91b94b3	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	\N	\N
4c2a6f3b-9597-c819-1427-fe0c4e51611a	DP_PDOTPR_2BM-9692752461-969201000-202001100715559282681_2BM_20200428_85893f78-33f6-4c44-a695-7b96c4287159.xml	\N	\N	2021-05-27 10:14:38.395	\N	e420ea78-d90a-4b1b-af37-77e7f91b94b3	1d1d268d-1913-7eb7-e32e-158ac9fed357	\N	Attachment	InvoiceConfirmation	85893f78-33f6-4c44-a695-7b96c4287159	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	\N	\N
f6e45e28-d37f-fae9-8bb9-37a7f14e4600	DP_IZVPOL_2BM_2BM-9692752461-969201000-202001100715559282681_20200428_082db178-cb22-46ed-82fb-644151262c07.xml	\N	\N	2021-05-27 10:14:38.395	\N	85893f78-33f6-4c44-a695-7b96c4287159	4c2a6f3b-9597-c819-1427-fe0c4e51611a	\N	Attachment	InvoiceReceipt	53d6c7a6-b325-411e-a930-75d7ca678e09	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	\N	\N
013c4057-50ff-b256-f966-f647d1d3fe63	\N	\N	\N	2021-05-27 10:14:38.395	\N	53d6c7a6-b325-411e-a930-75d7ca678e09	f6e45e28-d37f-fae9-8bb9-37a7f14e4600	\N	Signature	Nonformalized	df47ba15-88a2-4953-97a3-fcd1ab36387b	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	3b44d46ac492460e825f96c200597c79	637236671380623744
ef6afff7-63eb-762d-c0de-16ad97adf088	DP_PDOTPR_2BM-9692752461-969201000-202001100715559282681_2BM_20200428_8bde576e-bd4b-4ef3-8f63-85e10991980e.xml	\N	\N	2021-05-27 10:14:38.393	\N	2002c79f-3c3e-4e4f-9904-b9834137b37c	9473dc62-28a0-59b2-2bf2-4f961df0ad9d	\N	Attachment	InvoiceConfirmation	8bde576e-bd4b-4ef3-8f63-85e10991980e	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	\N	\N
cfa3ed09-d9b2-c808-a7e3-2966c19bdf26	DP_IZVPOL_2BM_2BM-9692752461-969201000-202001100715559282681_20200428_f1f26a2e-299d-451e-a348-5351b54128e6.xml	\N	\N	2021-05-27 10:14:38.393	\N	8bde576e-bd4b-4ef3-8f63-85e10991980e	ef6afff7-63eb-762d-c0de-16ad97adf088	\N	Attachment	InvoiceReceipt	fa52761a-b2f3-4c57-9959-41d3c26c608b	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	\N	\N
74067a80-68b0-de0f-8fda-9dc005b6b004	\N	\N	\N	2021-05-27 10:14:38.395	\N	85893f78-33f6-4c44-a695-7b96c4287159	4c2a6f3b-9597-c819-1427-fe0c4e51611a	\N	Signature	Nonformalized	f8eb2cdc-d3ed-4e39-b424-11fa4a87c96d	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	00000000000000000000000000000000	637236671243790464
2801bca5-30d2-c840-7c25-a2f9dab4234e	ON_NSCHFDOPPOK_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200428_1b6b9883-47c9-4760-a755-1e11b68d6a29.xml	\N	\N	2021-05-27 10:14:38.394	\N	2002c79f-3c3e-4e4f-9904-b9834137b37c	9473dc62-28a0-59b2-2bf2-4f961df0ad9d	\N	Attachment	UniversalTransferDocumentBuyerTitle	65d05507-33f3-44c3-be2f-5ea981b667ce	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	\N	\N
3b26840b-0483-2243-d34d-d008a0550999	\N	\N	\N	2021-05-27 10:14:38.394	\N	65d05507-33f3-44c3-be2f-5ea981b667ce	2801bca5-30d2-c840-7c25-a2f9dab4234e	\N	Signature	Nonformalized	42a1c861-64e3-4ccc-8659-3c5509df5c2f	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	3b44d46ac492460e825f96c200597c79	637236671547274752
bd2d20b4-a36e-6adb-cd94-cf7e2bcd27f8	\N	\N	\N	2021-05-27 10:14:38.394	\N	e420ea78-d90a-4b1b-af37-77e7f91b94b3	1d1d268d-1913-7eb7-e32e-158ac9fed357	\N	Signature	Nonformalized	7fbe9e37-fdd3-436d-ad49-53d09462daf8	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	3b44d46ac492460e825f96c200597c79	637236671243790464
fac0d94d-adf2-3814-a7dd-0cfe575b8667	\N	\N	\N	2021-05-27 10:14:38.393	\N	8bde576e-bd4b-4ef3-8f63-85e10991980e	ef6afff7-63eb-762d-c0de-16ad97adf088	\N	Signature	Nonformalized	5fe57d9a-b9f7-4a33-bb10-05ecd6acf306	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	00000000000000000000000000000000	637236667100169728
6816c792-0fed-4e32-d505-d549970420a7	\N	\N	\N	2021-05-27 10:14:38.392	\N	2002c79f-3c3e-4e4f-9904-b9834137b37c	9473dc62-28a0-59b2-2bf2-4f961df0ad9d	\N	Signature	Nonformalized	4d049a7c-1954-4a9e-933a-1ffa981c8753	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	43adea11980b49cbb7e1914337f6bc0d	637236667100169728
639782b3-8221-a260-6138-003019f54c16	\N	\N	\N	2021-05-27 10:14:38.393	\N	fa52761a-b2f3-4c57-9959-41d3c26c608b	cfa3ed09-d9b2-c808-a7e3-2966c19bdf26	\N	Signature	Nonformalized	107b9bb0-8903-4497-8057-d34eedb71f82	\N	0e94006a-602c-aba6-a27b-abdc10fcc8b2	3b44d46ac492460e825f96c200597c79	637236671240792064
c5461c87-01a9-d729-8e1b-ab79fe062907	\N	\N	\N	2021-05-27 18:29:11.944	\N	ce9e1089-66e0-4aec-a8c0-9a789fe58bb1	1d1bf88a-bced-383d-5308-d89dfa90117a	\N	Signature	Nonformalized	23e492f8-7568-4fb2-9a45-698154693829	\N	bc7ea7da-9d39-b6f3-0b56-e76fc894b77b	3b44d46ac492460e825f96c200597c79	637236672037222528
9473dc62-28a0-59b2-2bf2-4f961df0ad9d	ON_NSCHFDOPPR_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200428_0e5cee14-949a-4cae-b21c-bc61538a0b65.xml	2021-05-27 10:14:38.535	УПД №1111111 от 21.04.20	2021-05-27 10:14:38.392	2021-05-27 10:14:38.967		\N	Подписан	Attachment	UniversalTransferDocument	2002c79f-3c3e-4e4f-9904-b9834137b37c	Finished	0e94006a-602c-aba6-a27b-abdc10fcc8b2	\N	\N
2d56eeda-c938-0dbf-765e-73b7eef3a8c9	ON_NSCHFDOPPOK_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200428_387dcf46-2ad3-4d31-b5d8-8969c1b529ab.xml	\N	\N	2021-05-27 18:25:00.477	\N	94faf696-9f7e-42b6-9e35-97f772ba4c2a	b2ee7f84-8fbc-70df-934e-161cc71dc9d2	\N	Attachment	XmlAcceptanceCertificateBuyerTitle	a905ab5d-3fb6-41fb-b050-42335f644c7e	\N	4dc1d5fd-1fd1-9fcd-8598-98b55e0185bf	\N	\N
00b438b7-ed78-f6c7-5d92-ce60fa41cb44	\N	\N	\N	2021-05-27 18:25:00.477	\N	a905ab5d-3fb6-41fb-b050-42335f644c7e	2d56eeda-c938-0dbf-765e-73b7eef3a8c9	\N	Signature	Nonformalized	aa93682d-25ff-4a68-a4c2-08e052234860	\N	4dc1d5fd-1fd1-9fcd-8598-98b55e0185bf	3b44d46ac492460e825f96c200597c79	637236698709190144
da39f135-b37b-e442-6616-3900bb43c05a	\N	\N	\N	2021-05-27 18:25:00.477	\N	94faf696-9f7e-42b6-9e35-97f772ba4c2a	b2ee7f84-8fbc-70df-934e-161cc71dc9d2	\N	Signature	Nonformalized	bcb958ce-ebea-49a6-ad81-39c3bf399ae3	\N	4dc1d5fd-1fd1-9fcd-8598-98b55e0185bf	43adea11980b49cbb7e1914337f6bc0d	637236698307486592
1d1bf88a-bced-383d-5308-d89dfa90117a	ON_NSCHFDOPPOK_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200428_1a5c2977-d9b9-41ce-893d-f825cc6e5c95.xml	\N	\N	2021-05-27 18:29:11.944	\N	5cd1cd68-6dc4-477f-b28c-ff3b5bb3df23	24f98b66-6197-c7e2-bea4-772321ce3a2c	\N	Attachment	XmlAcceptanceCertificateBuyerTitle	ce9e1089-66e0-4aec-a8c0-9a789fe58bb1	\N	bc7ea7da-9d39-b6f3-0b56-e76fc894b77b	\N	\N
b2ee7f84-8fbc-70df-934e-161cc71dc9d2	ON_NSCHFDOPPR_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200428_340c8a53-d28e-4018-9f88-fa6f7749f11c.xml	2021-05-27 18:25:00.571	Акт №23421342 от 22.04.20	2021-05-27 18:25:00.477	2021-05-27 18:25:04.057		\N	Подписан	Attachment	XmlAcceptanceCertificate	94faf696-9f7e-42b6-9e35-97f772ba4c2a	Finished	4dc1d5fd-1fd1-9fcd-8598-98b55e0185bf	\N	\N
1da04f5b-feb0-cddd-f1cf-511fb2d75c79	\N	\N	\N	2021-05-27 18:29:11.944	\N	5cd1cd68-6dc4-477f-b28c-ff3b5bb3df23	24f98b66-6197-c7e2-bea4-772321ce3a2c	\N	Signature	Nonformalized	1a144fa0-0341-42aa-a4d2-53738e5511e5	\N	bc7ea7da-9d39-b6f3-0b56-e76fc894b77b	43adea11980b49cbb7e1914337f6bc0d	637236668510653952
1d3b7755-4526-6c43-08a4-ec2a22cf1f29	\N	\N	\N	2021-05-27 18:30:42.081	\N	a2dd1405-32ac-4511-a41d-36e19afcf979	0e5bddf8-1508-d821-800f-e4f4dc31a85f	\N	Signature	Nonformalized	2599a79b-6d02-4dd2-a48f-4b474a82b2a8	\N	31db1e88-1f51-15fd-ce65-8aa55e132bd3	43adea11980b49cbb7e1914337f6bc0d	637226693851245952
790c43e8-1e5d-5461-b602-9b81e0c4b03c	ON_NSCHFDOPPOK_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200416_667767a4-90f6-408c-bf0c-508c420b76ec.xml	\N	\N	2021-05-27 18:30:42.081	\N	a2dd1405-32ac-4511-a41d-36e19afcf979	0e5bddf8-1508-d821-800f-e4f4dc31a85f	\N	Attachment	XmlAcceptanceCertificateBuyerTitle	467a90ca-c5b8-4138-acd4-2620ea63b8fa	\N	31db1e88-1f51-15fd-ce65-8aa55e132bd3	\N	\N
61595e82-548b-0cbd-4dba-5d6bdaac8315	\N	\N	\N	2021-05-27 18:30:42.081	\N	467a90ca-c5b8-4138-acd4-2620ea63b8fa	790c43e8-1e5d-5461-b602-9b81e0c4b03c	\N	Signature	Nonformalized	f609094d-01f1-42b8-a757-9447a0f8b875	\N	31db1e88-1f51-15fd-ce65-8aa55e132bd3	3b44d46ac492460e825f96c200597c79	637226700052975744
0e5bddf8-1508-d821-800f-e4f4dc31a85f	ON_NSCHFDOPPR_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200416_d36e5467-8a5d-4faa-9c78-8fccb88e03a0.xml	2021-05-27 18:30:42.213	Акт №111111 от 17.04.20	2021-05-27 18:30:42.08	2021-05-27 18:30:45.689		\N	Подписан	Attachment	XmlAcceptanceCertificate	a2dd1405-32ac-4511-a41d-36e19afcf979	Finished	31db1e88-1f51-15fd-ce65-8aa55e132bd3	\N	\N
dceb82ab-97e5-d366-0ab2-0a765871703e	DP_PDPOL_2BM-9692752461-969201000-202001100715559282681_2BM_20200525_8943d26c-d05b-4e64-8e1d-c49bb3b0771d.xml	\N	\N	2021-05-27 18:31:39.376	\N	e5b6282e-dc19-419e-afcf-8ccee83e780a	b26a236b-512f-a098-c609-07c9c21e7a94	\N	Attachment	InvoiceConfirmation	8943d26c-d05b-4e64-8e1d-c49bb3b0771d	\N	9285754a-d719-e21e-0000-7de782eb8a89	\N	\N
b3ed0cca-6761-89ee-0da8-c14accbbab2e	DP_IZVPOL_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200525_303b380f-b176-4a96-bbe4-ae711aac188d.xml	\N	\N	2021-05-27 18:31:39.377	\N	e5b6282e-dc19-419e-afcf-8ccee83e780a	b26a236b-512f-a098-c609-07c9c21e7a94	\N	Attachment	InvoiceReceipt	ed922f3b-e80a-48d4-a2f6-8a966a8b1773	\N	9285754a-d719-e21e-0000-7de782eb8a89	\N	\N
9cff6c05-ad71-5557-8ae6-fb9a17b7f971	\N	\N	\N	2021-05-27 18:31:39.376	\N	8943d26c-d05b-4e64-8e1d-c49bb3b0771d	dceb82ab-97e5-d366-0ab2-0a765871703e	\N	Signature	Nonformalized	9e0d2ecf-323a-43a7-a402-874e90a09f89	\N	9285754a-d719-e21e-0000-7de782eb8a89	00000000000000000000000000000000	637259835458068480
b4b97e21-4776-b138-600c-217b45494955	ON_NSCHFDOPPOK_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200525_d0ff3d3e-c9a2-41de-b4a0-030597573923.xml	\N	\N	2021-05-27 18:31:39.377	\N	e5b6282e-dc19-419e-afcf-8ccee83e780a	b26a236b-512f-a098-c609-07c9c21e7a94	\N	Attachment	UniversalTransferDocumentBuyerTitle	2c8c8c4c-a9b6-49a9-9c89-7c5e9df9db58	\N	9285754a-d719-e21e-0000-7de782eb8a89	\N	\N
3b2ee5c0-9ee8-c345-2f04-30af6d38d781	\N	\N	\N	2021-05-27 18:31:39.377	\N	2c8c8c4c-a9b6-49a9-9c89-7c5e9df9db58	b4b97e21-4776-b138-600c-217b45494955	\N	Signature	Nonformalized	da77c398-701f-4e0a-8a5b-a0455297d6f4	\N	9285754a-d719-e21e-0000-7de782eb8a89	43adea11980b49cbb7e1914337f6bc0d	637259835888254208
a40ededa-bddc-9266-8683-e1291bf49ea6	\N	\N	\N	2021-05-27 18:31:39.375	\N	e5b6282e-dc19-419e-afcf-8ccee83e780a	b26a236b-512f-a098-c609-07c9c21e7a94	\N	Signature	Nonformalized	691da5e0-3808-442b-a93b-d63c6d3b9c57	\N	9285754a-d719-e21e-0000-7de782eb8a89	3b44d46ac492460e825f96c200597c79	637259835458068480
058c50e3-9ed3-b1d2-ebe8-8bee062029c5	DP_IZVPOL_2BM_2BM-9692752461-969201000-202001100715559282681_20200525_0c63778e-fca0-4887-ad9d-00c65fb30b44.xml	\N	\N	2021-05-27 18:31:39.376	\N	8943d26c-d05b-4e64-8e1d-c49bb3b0771d	dceb82ab-97e5-d366-0ab2-0a765871703e	\N	Attachment	InvoiceReceipt	9440f8b3-4e1c-447a-948c-93ab0e1f321c	\N	9285754a-d719-e21e-0000-7de782eb8a89	\N	\N
f169d9af-20ae-8079-62e2-14a53961059e	\N	\N	\N	2021-05-27 18:31:39.377	\N	ed922f3b-e80a-48d4-a2f6-8a966a8b1773	b3ed0cca-6761-89ee-0da8-c14accbbab2e	\N	Signature	Nonformalized	d4505efa-41cf-4ad4-a80e-46e2b738e302	\N	9285754a-d719-e21e-0000-7de782eb8a89	43adea11980b49cbb7e1914337f6bc0d	637259835668305792
fb48263f-1c82-8cd0-5a40-9c8d4491549d	\N	\N	\N	2021-05-27 18:31:39.376	\N	9440f8b3-4e1c-447a-948c-93ab0e1f321c	058c50e3-9ed3-b1d2-ebe8-8bee062029c5	\N	Signature	Nonformalized	58ba0bb0-3fe2-4dff-a0db-03d6dd96d67e	\N	9285754a-d719-e21e-0000-7de782eb8a89	3b44d46ac492460e825f96c200597c79	637259835571914112
c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	ON_NSCHFDOPPR_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200420_285ac55c-7a6a-444e-b7bf-a5bf708aa3b9.xml	2021-05-27 18:32:17.106	УПД №1234 от 20.04.20	2021-05-27 18:32:17.048	2021-05-27 18:32:20.452		\N	Подписан контрагентом	Attachment	UniversalTransferDocument	a9413a82-2049-4be1-b511-b2843c1927d9	Finished	a46fdf94-c8e0-f901-a9f1-2878b354ed54	\N	\N
b26a236b-512f-a098-c609-07c9c21e7a94	ON_NSCHFDOPPR_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200525_b779898c-e8a4-422b-898b-c0b66dd7a65c.xml	2021-05-27 18:31:39.457	УПД №12345 от 18.05.20	2021-05-27 18:31:39.375	2021-05-27 18:31:42.937		\N	Подписан контрагентом	Attachment	UniversalTransferDocument	e5b6282e-dc19-419e-afcf-8ccee83e780a	Finished	9285754a-d719-e21e-0000-7de782eb8a89	\N	\N
7bd778df-8a58-dda6-f0d3-f25eabb4aa67	DP_PDPOL_2BM-9692752461-969201000-202001100715559282681_2BM_20200420_bf8d47da-c1e9-439d-b566-3ba3ef44df9b.xml	\N	\N	2021-05-27 18:32:17.048	\N	a9413a82-2049-4be1-b511-b2843c1927d9	c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	\N	Attachment	InvoiceConfirmation	bf8d47da-c1e9-439d-b566-3ba3ef44df9b	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	\N	\N
57fe6be4-c528-6989-616b-eca668106c2d	DP_IZVPOL_2BM_2BM-9692752461-969201000-202001100715559282681_20200420_9a50a4d0-eecc-4384-a7a7-02fa3497552f.xml	\N	\N	2021-05-27 18:32:17.049	\N	bf8d47da-c1e9-439d-b566-3ba3ef44df9b	7bd778df-8a58-dda6-f0d3-f25eabb4aa67	\N	Attachment	InvoiceReceipt	4e759851-b8e6-432b-b595-b8d42649f761	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	\N	\N
243af623-fdf0-00d3-4d0a-e0f22a230497	\N	\N	\N	2021-05-27 18:32:17.049	\N	4e759851-b8e6-432b-b595-b8d42649f761	57fe6be4-c528-6989-616b-eca668106c2d	\N	Signature	Nonformalized	3a32c6d7-4132-4aa7-a34d-c8125364c869	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	3b44d46ac492460e825f96c200597c79	637230015289660160
56f15593-767a-3169-7784-89c4fa566b27	ON_NSCHFDOPPOK_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200420_a92413bd-ee93-4694-b7a1-ba4204cceefb.xml	\N	\N	2021-05-27 18:32:17.049	\N	a9413a82-2049-4be1-b511-b2843c1927d9	c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	\N	Attachment	UniversalTransferDocumentBuyerTitle	9f7ae9d5-432f-42c3-878f-3ed19cc40f65	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	\N	\N
8b5d2cf7-685b-3eb7-d13d-c077e8258792	\N	\N	\N	2021-05-27 18:32:17.05	\N	9f7ae9d5-432f-42c3-878f-3ed19cc40f65	56f15593-767a-3169-7784-89c4fa566b27	\N	Signature	Nonformalized	c9469f23-670f-4e3b-b4da-03f509a0ad49	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	43adea11980b49cbb7e1914337f6bc0d	637230015742559616
c7306897-9e5e-e017-8be6-1257a3ceebad	\N	\N	\N	2021-05-27 18:32:17.048	\N	a9413a82-2049-4be1-b511-b2843c1927d9	c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	\N	Signature	Nonformalized	46d91300-94ab-4ee3-af3b-c6792d2271b6	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	3b44d46ac492460e825f96c200597c79	637230015209584768
2c45c944-f225-3e33-dfec-4e2605f8b213	\N	\N	\N	2021-05-27 18:32:17.049	\N	bf8d47da-c1e9-439d-b566-3ba3ef44df9b	7bd778df-8a58-dda6-f0d3-f25eabb4aa67	\N	Signature	Nonformalized	8ba4e2e6-45a8-43c0-b646-fdcbcefa115f	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	00000000000000000000000000000000	637230015209584768
3ec16270-cf3f-66f0-49ae-ed658b12b31a	DP_PDPOL_2BM-9692752461-969201000-202001100715559282681_2BM_20210527_c1877e15-b45c-47ff-a456-22b97ed94f17.xml	\N	\N	2021-05-27 19:01:56.583	\N	be7fd830-f40f-4501-af73-d3982468dfe8	17ee2133-20e2-9e96-b390-f2ac8300b0cd	\N	Attachment	InvoiceConfirmation	c1877e15-b45c-47ff-a456-22b97ed94f17	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	\N	\N
255fd447-a5ca-755c-6c0d-7e723bd1765b	DP_IZVPOL_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200420_8fd74eeb-9502-4580-b3db-86b720768923.xml	\N	\N	2021-05-27 18:32:17.05	\N	a9413a82-2049-4be1-b511-b2843c1927d9	c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	\N	Attachment	InvoiceReceipt	ba8b5a07-bc8c-42de-8cce-2d19411632d5	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	\N	\N
0fddbbb4-8708-9ebb-e588-2ea6f9d8a605	\N	\N	\N	2021-05-27 18:32:17.05	\N	ba8b5a07-bc8c-42de-8cce-2d19411632d5	255fd447-a5ca-755c-6c0d-7e723bd1765b	\N	Signature	Nonformalized	3d24afe6-652a-4b8c-b911-5f4806641040	\N	a46fdf94-c8e0-f901-a9f1-2878b354ed54	43adea11980b49cbb7e1914337f6bc0d	637230015464095872
7d160fb7-7df6-784a-c8d9-e45d8601d99a	DP_PDPOL_2BM-9692752461-969201000-202001100715559282681_2BM_20200420_a986511f-0580-4f9d-887a-57d17ccf24a4.xml	\N	\N	2021-05-27 18:32:42.791	\N	520390fa-1c74-4099-ac35-305f2b5b4c6e	46beebeb-37bd-2937-366e-7740e1fbc874	\N	Attachment	InvoiceConfirmation	a986511f-0580-4f9d-887a-57d17ccf24a4	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	\N	\N
41677431-081a-3035-72b3-9b70146aeb32	DP_IZVPOL_2BM_2BM-9692752461-969201000-202001100715559282681_20200420_544d773a-1d0d-4403-a76b-5b6a57d7dc5c.xml	\N	\N	2021-05-27 18:32:42.792	\N	a986511f-0580-4f9d-887a-57d17ccf24a4	7d160fb7-7df6-784a-c8d9-e45d8601d99a	\N	Attachment	InvoiceReceipt	e9a7ac70-9aa0-41f1-a674-74e43b904b44	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	\N	\N
01754b76-7f66-0eef-c2e5-30a43d23fcf7	\N	\N	\N	2021-05-27 18:32:42.792	\N	e9a7ac70-9aa0-41f1-a674-74e43b904b44	41677431-081a-3035-72b3-9b70146aeb32	\N	Signature	Nonformalized	d35ea4c1-814c-4c2f-bd94-0179cd4677a0	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	3b44d46ac492460e825f96c200597c79	637230001714104576
2eeb218e-62c3-95ba-92ab-38ea54e2cd6e	\N	\N	\N	2021-05-27 18:32:42.791	\N	a986511f-0580-4f9d-887a-57d17ccf24a4	7d160fb7-7df6-784a-c8d9-e45d8601d99a	\N	Signature	Nonformalized	a2b62dde-6f08-4ca6-8599-39f3e2add740	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	00000000000000000000000000000000	637230001673834624
2f56beed-1566-e4b5-7f3d-5cbce1dbd18e	ON_NSCHFDOPPOK_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200420_85ae1791-30b1-46e7-b3ae-3abaa5c01a51.xml	\N	\N	2021-05-27 18:32:42.792	\N	520390fa-1c74-4099-ac35-305f2b5b4c6e	46beebeb-37bd-2937-366e-7740e1fbc874	\N	Attachment	UniversalTransferDocumentBuyerTitle	1e970c79-d0c0-415f-9078-0210426eb33c	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	\N	\N
17e19f8b-f528-2e80-1b22-59672cb01a30	DP_IZVPOL_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20200420_3e31c4c9-5c5d-4388-8c4c-5111c9f7011e.xml	\N	\N	2021-05-27 18:32:42.793	\N	520390fa-1c74-4099-ac35-305f2b5b4c6e	46beebeb-37bd-2937-366e-7740e1fbc874	\N	Attachment	InvoiceReceipt	c640700d-629d-4dbb-a057-336ebecd88fe	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	\N	\N
f2bb38b9-d961-c3c1-757a-10c7a8f9387a	\N	\N	\N	2021-05-27 18:32:42.791	\N	520390fa-1c74-4099-ac35-305f2b5b4c6e	46beebeb-37bd-2937-366e-7740e1fbc874	\N	Signature	Nonformalized	24bd5847-dc2f-4e57-a66a-5d87784e74d0	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	3b44d46ac492460e825f96c200597c79	637230001673834624
c0eb6ae0-9cb2-26c4-bcda-f409bc60fcf0	\N	\N	\N	2021-05-27 18:32:42.793	\N	c640700d-629d-4dbb-a057-336ebecd88fe	17e19f8b-f528-2e80-1b22-59672cb01a30	\N	Signature	Nonformalized	052c59f1-6026-4640-a1f1-dc268536dd46	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	43adea11980b49cbb7e1914337f6bc0d	637230001854045184
8c604082-f4ea-f50b-e928-dd5e0dce0237	\N	\N	\N	2021-05-27 18:32:42.793	\N	1e970c79-d0c0-415f-9078-0210426eb33c	2f56beed-1566-e4b5-7f3d-5cbce1dbd18e	\N	Signature	Nonformalized	93490491-2da9-44f4-95d9-a126224c2ad8	\N	501df5eb-49c3-4814-cd61-33d96c5f75da	43adea11980b49cbb7e1914337f6bc0d	637230002031315072
46beebeb-37bd-2937-366e-7740e1fbc874	ON_NSCHFDOPPR_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20200420_51e6ae6b-85ed-47ac-9913-82bc337795a4.xml	2021-05-27 18:32:42.853	УПД №123 от 20.04.20	2021-05-27 18:32:42.79	2021-05-27 18:32:46.28		\N	Подписан контрагентом	Attachment	UniversalTransferDocument	520390fa-1c74-4099-ac35-305f2b5b4c6e	Finished	501df5eb-49c3-4814-cd61-33d96c5f75da	\N	\N
3793fd3a-3625-8d7c-0a90-40ed40568deb	\N	\N	\N	2021-05-27 19:01:56.584	\N	c1877e15-b45c-47ff-a456-22b97ed94f17	3ec16270-cf3f-66f0-49ae-ed658b12b31a	\N	Signature	Nonformalized	71075511-3884-470a-8d72-82c55334c4ba	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	00000000000000000000000000000000	637577280404713344
3d97d473-01c4-cf2a-c0a0-34c4cff8b524	DP_IZVPOL_2BM_2BM-9692752461-969201000-202001100715559282681_20210527_d7528e2b-9cf3-43a6-ae6b-5c85acc6e280.xml	\N	\N	2021-05-27 19:01:56.584	\N	c1877e15-b45c-47ff-a456-22b97ed94f17	3ec16270-cf3f-66f0-49ae-ed658b12b31a	\N	Attachment	InvoiceReceipt	e29d0c61-2af1-48f4-86c3-8ff7db64e1f9	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	\N	\N
08190627-f354-0b65-63a7-1e5c83eb6612	DP_IZVPOL_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20210527_0932d2f7-7739-4169-9941-744f92406877.xml	\N	\N	2021-05-27 19:01:56.585	\N	be7fd830-f40f-4501-af73-d3982468dfe8	17ee2133-20e2-9e96-b390-f2ac8300b0cd	\N	Attachment	InvoiceReceipt	6effe791-1506-4435-a59f-936e19225b3b	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	\N	\N
74cb13b2-0bf2-78bb-b169-5f1016a5b4f5	\N	\N	\N	2021-05-27 19:01:56.585	\N	6effe791-1506-4435-a59f-936e19225b3b	08190627-f354-0b65-63a7-1e5c83eb6612	\N	Signature	Nonformalized	da49d42d-599a-4796-b6c0-6f514971a65f	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	43adea11980b49cbb7e1914337f6bc0d	637577280612170368
ad1e9c78-f8c3-866d-d622-d1d717197314	ON_NSCHFDOPPOK_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20210527_1d8ca008-1fd3-4567-bb23-26747e0967b0.xml	\N	\N	2021-05-27 19:01:56.584	\N	be7fd830-f40f-4501-af73-d3982468dfe8	17ee2133-20e2-9e96-b390-f2ac8300b0cd	\N	Attachment	UniversalTransferDocumentBuyerTitle	c1bc43cd-53c4-4725-b526-22c069d7e2c7	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	\N	\N
d63c4e77-46e6-e36e-074c-433ea6a67309	\N	\N	\N	2021-05-27 19:01:56.583	\N	be7fd830-f40f-4501-af73-d3982468dfe8	17ee2133-20e2-9e96-b390-f2ac8300b0cd	\N	Signature	Nonformalized	f129eb51-7c5c-410a-8265-0d2fb25d72d1	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	3b44d46ac492460e825f96c200597c79	637577280404713344
b2b7d9dd-322b-2892-b88f-378f690d71b6	\N	\N	\N	2021-05-27 19:01:56.584	\N	c1bc43cd-53c4-4725-b526-22c069d7e2c7	ad1e9c78-f8c3-866d-d622-d1d717197314	\N	Signature	Nonformalized	edbc1d90-d0d2-4076-aa79-35a18208fd40	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	43adea11980b49cbb7e1914337f6bc0d	637577280884897536
d9e35524-7689-1f1d-85bb-fc9843a8fd69	\N	\N	\N	2021-05-27 19:01:56.584	\N	e29d0c61-2af1-48f4-86c3-8ff7db64e1f9	3d97d473-01c4-cf2a-c0a0-34c4cff8b524	\N	Signature	Nonformalized	74a28d17-5630-4a90-8662-24dd3b22cc4e	\N	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	3b44d46ac492460e825f96c200597c79	637577280861258368
17ee2133-20e2-9e96-b390-f2ac8300b0cd	ON_NSCHFDOPPR_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20210527_25429589-5d36-4f02-95fd-fa6613480b64.xml	2021-05-27 19:01:56.985	УПД №4000232111 от 13.05.21	2021-05-27 19:01:56.583	2021-05-27 19:02:00.361		\N	Подписан контрагентом	Attachment	UniversalTransferDocument	be7fd830-f40f-4501-af73-d3982468dfe8	Finished	539e1a56-c471-57e7-e47e-a1a0ca6a71a2	\N	\N
3c91ca0a-4546-6fd2-5329-c71f6da6b0df	DP_PDPOL_2BM-9692752461-969201000-202001100715559282681_2BM_20210527_f4c13fdb-38af-416c-acb1-fb74270e5bf4.xml	\N	\N	2021-05-27 19:10:01.386	\N	8a24a595-b2ad-4ba3-8810-6d53ddd6316f	a1f913ee-111f-5467-ae1b-e211caf4d504	\N	Attachment	InvoiceConfirmation	f4c13fdb-38af-416c-acb1-fb74270e5bf4	\N	96844db0-4006-c537-e009-fe6bca001e8b	\N	\N
6fdf6527-b667-4fe7-fb17-2fcc19c4b33f	ON_NSCHFDOPPOK_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20210527_85cd5c6d-dbbd-4629-940f-97b3f4913982.xml	\N	\N	2021-05-27 19:10:01.386	\N	8a24a595-b2ad-4ba3-8810-6d53ddd6316f	a1f913ee-111f-5467-ae1b-e211caf4d504	\N	Attachment	UniversalTransferDocumentBuyerTitle	2f02e7f0-121c-45e1-8b68-cfd0414e2fce	\N	96844db0-4006-c537-e009-fe6bca001e8b	\N	\N
c1000805-7618-1850-2b6c-f0893db0b97a	DP_IZVPOL_2BM-9692752461-969201000-202001100715559282681_2BM-9649260872-964901000-202002141006182446496_20210527_cf625f55-acb1-45d2-a0bd-a6a9f9f36a3c.xml	\N	\N	2021-05-27 19:10:01.387	\N	8a24a595-b2ad-4ba3-8810-6d53ddd6316f	a1f913ee-111f-5467-ae1b-e211caf4d504	\N	Attachment	InvoiceReceipt	87c943d5-834e-4f1f-8dff-c3443d9bf0e1	\N	96844db0-4006-c537-e009-fe6bca001e8b	\N	\N
c1158ec3-686c-db81-1493-7e7d6f0cc790	\N	\N	\N	2021-05-27 19:10:01.387	\N	87c943d5-834e-4f1f-8dff-c3443d9bf0e1	c1000805-7618-1850-2b6c-f0893db0b97a	\N	Signature	Nonformalized	f3b8f4b6-1b19-4f30-89f2-159450af2327	\N	96844db0-4006-c537-e009-fe6bca001e8b	43adea11980b49cbb7e1914337f6bc0d	637577284847391872
e93a991b-4cf0-ff75-9a06-5348d8bfbf5c	DP_IZVPOL_2BM_2BM-9692752461-969201000-202001100715559282681_20210527_52693a1d-2f63-4e77-9ace-7e8799b6911a.xml	\N	\N	2021-05-27 19:10:01.386	\N	f4c13fdb-38af-416c-acb1-fb74270e5bf4	3c91ca0a-4546-6fd2-5329-c71f6da6b0df	\N	Attachment	InvoiceReceipt	38bbc4fd-9112-4f7c-bbc7-2de5a8cdf789	\N	96844db0-4006-c537-e009-fe6bca001e8b	\N	\N
58a65ce0-16db-6ab1-09e9-be7d0cc590f6	\N	\N	\N	2021-05-27 19:10:01.386	\N	38bbc4fd-9112-4f7c-bbc7-2de5a8cdf789	e93a991b-4cf0-ff75-9a06-5348d8bfbf5c	\N	Signature	Nonformalized	c853518d-a767-4038-bd57-e6a647ace34f	\N	96844db0-4006-c537-e009-fe6bca001e8b	3b44d46ac492460e825f96c200597c79	637577284671601280
9416c4a0-d72d-5f8c-e7ca-d03c39b6a9f3	\N	\N	\N	2021-05-27 19:10:01.386	\N	f4c13fdb-38af-416c-acb1-fb74270e5bf4	3c91ca0a-4546-6fd2-5329-c71f6da6b0df	\N	Signature	Nonformalized	30167564-c04f-4ceb-bd24-81ab3446ccef	\N	96844db0-4006-c537-e009-fe6bca001e8b	00000000000000000000000000000000	637577284624435584
84994dc8-61a5-52f9-7616-4145c833544c	\N	\N	\N	2021-05-27 19:10:01.387	\N	2f02e7f0-121c-45e1-8b68-cfd0414e2fce	6fdf6527-b667-4fe7-fb17-2fcc19c4b33f	\N	Signature	Nonformalized	4e4d67cb-6635-4a5c-b6de-ed73bc53652c	\N	96844db0-4006-c537-e009-fe6bca001e8b	43adea11980b49cbb7e1914337f6bc0d	637577285521888640
259a638c-7772-fb55-80fd-5d7a9cebcf14	\N	\N	\N	2021-05-27 19:10:01.385	\N	8a24a595-b2ad-4ba3-8810-6d53ddd6316f	a1f913ee-111f-5467-ae1b-e211caf4d504	\N	Signature	Nonformalized	7fade70e-413e-4e56-8320-c8d2f5e1cbb4	\N	96844db0-4006-c537-e009-fe6bca001e8b	3b44d46ac492460e825f96c200597c79	637577284624435584
a1f913ee-111f-5467-ae1b-e211caf4d504	ON_NSCHFDOPPR_2BM-9649260872-964901000-202002141006182446496_2BM-9692752461-969201000-202001100715559282681_20210527_78c18c47-5c05-4a0e-b411-0bbfb404a3b8.xml	2021-05-27 19:10:01.451	УПД №4000232113 от 23.05.19	2021-05-27 19:10:01.385	2021-05-27 19:10:04.761		\N	Подписан контрагентом	Attachment	UniversalTransferDocument	8a24a595-b2ad-4ba3-8810-6d53ddd6316f	Finished	96844db0-4006-c537-e009-fe6bca001e8b	\N	\N
\.


--
-- Data for Name: eademo_diadoc_entity_doc_package_model_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_diadoc_entity_doc_package_model_link (diadoc_entity_id, doc_package_model_id) FROM stdin;
24f98b66-6197-c7e2-bea4-772321ce3a2c	35c71334-fdba-2993-f8af-15fd883c00e7
9473dc62-28a0-59b2-2bf2-4f961df0ad9d	d9be9e33-e0bb-42d4-6948-333fb46115e5
\.


--
-- Data for Name: eademo_diadoc_entity_file_descriptor_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_diadoc_entity_file_descriptor_link (diadoc_entity_id, file_descriptor_id) FROM stdin;
24f98b66-6197-c7e2-bea4-772321ce3a2c	f8a13011-f638-37f1-6234-292092b22060
24f98b66-6197-c7e2-bea4-772321ce3a2c	c598d839-693f-87b8-79ec-92b28c3fd2e5
24f98b66-6197-c7e2-bea4-772321ce3a2c	cc1a1534-1883-e8fa-2ba5-75c962603b3c
9473dc62-28a0-59b2-2bf2-4f961df0ad9d	16401599-e52e-c870-bf37-20a4358528c5
9473dc62-28a0-59b2-2bf2-4f961df0ad9d	c707a0c2-5fef-9472-e4c9-6d8785531383
9473dc62-28a0-59b2-2bf2-4f961df0ad9d	fd6a30cd-176c-d9bd-3a3d-2ac74f24af70
b2ee7f84-8fbc-70df-934e-161cc71dc9d2	71042c41-fe2b-dd24-41e1-dc379feefa3a
b2ee7f84-8fbc-70df-934e-161cc71dc9d2	67c67ebf-52c3-84e4-aa5e-b61b9dfd982a
b2ee7f84-8fbc-70df-934e-161cc71dc9d2	306b8759-0067-ede8-de11-2744ebf45ec4
0e5bddf8-1508-d821-800f-e4f4dc31a85f	06b6c9df-11f1-c694-3b92-0ad32b4f879b
0e5bddf8-1508-d821-800f-e4f4dc31a85f	a825efc7-d18d-c5c5-b383-6a0e15e3035a
0e5bddf8-1508-d821-800f-e4f4dc31a85f	ae918504-f3c6-037b-4911-f60d9a7bb098
b26a236b-512f-a098-c609-07c9c21e7a94	ec04e56e-22bb-b7a8-6a7f-0f8e219b9849
b26a236b-512f-a098-c609-07c9c21e7a94	bdc083a2-ae9e-a242-b11e-037e625c5558
b26a236b-512f-a098-c609-07c9c21e7a94	f2660cdc-4506-a491-ffa5-3333dcbdeef0
c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	84c8d185-470e-191c-dc01-db37297667d7
c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	dbdfaf55-4900-dd8d-cff9-ca0f05118664
c3dbbaad-07e6-7e6d-ff4c-f3d1525131bd	631623ff-398b-11b6-82a2-b8eeed4e382a
46beebeb-37bd-2937-366e-7740e1fbc874	583d8948-11c8-ed2c-61b4-9d4e79fadf25
46beebeb-37bd-2937-366e-7740e1fbc874	175555cf-4cbd-c6c1-2c8d-8f632e58e197
46beebeb-37bd-2937-366e-7740e1fbc874	43e7259e-c13b-d861-d193-9541340bbbc9
17ee2133-20e2-9e96-b390-f2ac8300b0cd	3948a541-5a29-4954-b9ac-b7ac6b14d984
17ee2133-20e2-9e96-b390-f2ac8300b0cd	ca13d5c2-697d-328c-58eb-6f0f14b3ec17
17ee2133-20e2-9e96-b390-f2ac8300b0cd	eb3eebee-9702-e0e0-381a-ff22c8197429
a1f913ee-111f-5467-ae1b-e211caf4d504	d1bf6e30-29f3-a4a3-08c4-f790cfbd1968
a1f913ee-111f-5467-ae1b-e211caf4d504	d4350ed2-6d4b-0ae6-3bbb-688e8a59af9e
a1f913ee-111f-5467-ae1b-e211caf4d504	f1ae344d-7e71-1a53-ec5b-c57f0231e9a0
\.


--
-- Data for Name: eademo_diadoc_history; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_diadoc_history (id, last_event_id, box_id, update_date) FROM stdin;
\.


--
-- Data for Name: eademo_diadoc_message; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_diadoc_message (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, message_id, last_patch_time, comment_, box_id, status, from_title, last_sync_date, last_doc_status_sync_date, to_title) FROM stdin;
31db1e88-1f51-15fd-ce65-8aa55e132bd3	3	2021-05-27 18:30:42.08	admin	2021-05-27 18:34:27.351	admin	\N	\N	21fc41d9-7527-456c-9929-74a9f7017b35	2020-04-17 00:40:05.297	Применено правило: AP.07 Закупка работ/ услуг	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №4926087	2021-05-27 18:30:42.082	2021-05-27 18:30:42.213	Тестовая организация №9275246
4dc1d5fd-1fd1-9fcd-8598-98b55e0185bf	3	2021-05-27 18:25:00.476	admin	2021-05-27 18:34:27.351	admin	\N	\N	3e630c94-9ed0-4954-acec-09509b762699	2020-04-28 14:24:30.919	Применено правило: AP.07 Закупка работ/ услуг	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №4926087	2021-05-27 18:25:00.478	2021-05-27 18:25:00.571	Тестовая организация №9275246
bc7ea7da-9d39-b6f3-0b56-e76fc894b77b	11	2021-05-26 17:25:38.626	admin	2021-05-27 18:29:12.034	admin	\N	\N	0919fc10-d5b5-4986-97a9-96bed6a36970	2020-04-28 13:40:03.722	Применено правило: AP.07 Закупка работ/ услуг	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №4926087	2021-05-27 18:29:11.944	2021-05-27 18:29:12.033	Тестовая организация №9275246
3fc4678c-58c8-ac2b-e641-42921eb973f9	3	2021-05-26 17:23:39.366	admin	2021-05-26 17:23:39.496	admin	2021-05-26 17:26:35.899	admin	4158d1bb-f68d-4d70-ab0b-8b8089bbb645	2020-04-28 13:40:29.186	\N	3b44d46a-c492-460e-825f-96c200597c79	Ready for import	Тестовая организация №4926087	2021-05-26 17:23:39.372	2021-05-26 17:23:39.496	Тестовая организация №9275246
a46fdf94-c8e0-f901-a9f1-2878b354ed54	7	2021-05-27 18:32:17.047	admin	2021-05-27 18:43:10.891	admin	\N	\N	4313e5e3-d824-46e6-a617-cc16027bad57	2020-04-20 20:46:14.255	Применено правило: AR.01 Основная реализация автомобилей на внутренний рынок	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №9275246	2021-05-27 18:32:17.05	2021-05-27 18:32:17.106	Тестовая организация №4926087
938c6ffe-d7fa-0479-5901-1b9fc0cc6eb1	6	2021-05-26 17:20:24.266	admin	2021-05-27 10:09:01.292	admin	2021-05-27 10:12:17.523	admin	9d2e1c10-35c7-4002-91bd-6544f3ee617b	2020-04-28 13:39:14.727	\N	3b44d46a-c492-460e-825f-96c200597c79	Ready for import	Тестовая организация №4926087	2021-05-26 17:20:24.276	2021-05-26 17:20:24.463	Тестовая организация №9275246
539e1a56-c471-57e7-e47e-a1a0ca6a71a2	3	2021-05-27 19:01:56.583	admin	2021-05-27 19:10:45.303	admin	\N	\N	bfb9a463-b357-4611-b2d4-d6eda1a9d73b	2021-05-27 19:01:28.489	Применено правило: AR.07 Прочая реализация на внутренний рынок	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №9275246	2021-05-27 19:01:56.585	2021-05-27 19:01:56.985	Тестовая организация №4926087
9285754a-d719-e21e-0000-7de782eb8a89	7	2021-05-27 18:31:39.374	admin	2021-05-27 18:43:10.891	admin	\N	\N	f05ec765-b08a-4e0a-8205-50e453a42612	2020-05-25 09:06:28.825	Применено правило: AR.01 Основная реализация автомобилей на внутренний рынок	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №9275246	2021-05-27 18:31:39.378	2021-05-27 18:31:39.457	Тестовая организация №4926087
501df5eb-49c3-4814-cd61-33d96c5f75da	9	2021-05-27 18:32:42.79	admin	2021-05-27 18:43:10.891	admin	\N	\N	c8897bdb-1cb2-4db7-b719-09250bfab151	2020-04-20 20:23:23.131	Применено правило: AR.01 Основная реализация автомобилей на внутренний рынок	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №9275246	2021-05-27 18:32:42.794	2021-05-27 18:32:42.853	Тестовая организация №4926087
0e94006a-602c-aba6-a27b-abdc10fcc8b2	4	2021-05-27 10:14:38.392	admin	2021-05-27 19:01:07.939	diadoc	\N	\N	9d2e1c10-35c7-4002-91bd-6544f3ee617b	2020-04-28 13:39:14.727	Применено правило: AP.05 Закупка локальных автокомпонентов и стали	3b44d46a-c492-460e-825f-96c200597c79	On control	Тестовая организация №4926087	2021-05-27 10:14:38.396	2021-05-27 10:14:38.535	Тестовая организация №9275246
6f475250-fbd3-5846-7e16-aec092d8e801	12	2021-05-27 18:30:11.381	admin	2021-05-27 18:52:00.613	admin	2021-05-27 19:05:14.33	admin	4158d1bb-f68d-4d70-ab0b-8b8089bbb645	2020-04-28 13:40:29.186	Применено правило: AP.99 Закупка работ/ услуг/материалов Диадок\nNo signature of method: ru.digitalleague.ecm.eademo.service.diadoc.DiadocRuleTool.getMainDocument() is applicable for argument types: (ArrayList, String, String, String) values: [[ru.digitalleague.ecm.eademo.entity.diadoc.DiadocEntity-1797e7d5-df85-cb60-55b6-a8683c3f93c2 [managed]], ...]\nPossible solutions: getMainDocument(java.util.List, java.lang.String, java.lang.String), getMainDocument(java.util.List, java.lang.String)	3b44d46a-c492-460e-825f-96c200597c79	Ready for import	Тестовая организация №4926087	2021-05-27 18:45:16.693	2021-05-27 18:45:16.753	Тестовая организация №9275246
96844db0-4006-c537-e009-fe6bca001e8b	3	2021-05-27 19:10:01.385	admin	2021-05-27 19:10:45.303	admin	\N	\N	06851b8e-f26c-46bb-8a2c-4c67b9b9512d	2021-05-27 19:09:12.188	Применено правило: AR.07 Прочая реализация на внутренний рынок	3b44d46a-c492-460e-825f-96c200597c79	Manual process	Тестовая организация №9275246	2021-05-27 19:10:01.388	2021-05-27 19:10:01.451	Тестовая организация №4926087
\.


--
-- Data for Name: eademo_diadoc_message_doc_package_model_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_diadoc_message_doc_package_model_link (diadoc_message_id, doc_package_model_id) FROM stdin;
938c6ffe-d7fa-0479-5901-1b9fc0cc6eb1	d8511ea3-d13e-44f1-4454-36210b34c595
bc7ea7da-9d39-b6f3-0b56-e76fc894b77b	35c71334-fdba-2993-f8af-15fd883c00e7
0e94006a-602c-aba6-a27b-abdc10fcc8b2	d9be9e33-e0bb-42d4-6948-333fb46115e5
\.


--
-- Data for Name: eademo_diadoc_rule_record; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_diadoc_rule_record (id, code, name, ordering, criteria, disabled, script, system_rule) FROM stdin;
865029e1-92aa-cd18-4fe7-6d808eefa089	000	Проверка контента	0	println("Checking rule: Проверка на загрузку контента")\ndef entities = message.getEntities();\ndef allSync = ruleTool.checkAllDocumentsSynchronized(entities)\nreturn !allSync	f	return "Не весь контент загружен"	t
a30ffad3-e3fc-73be-4f59-7e45733b1be6	AP.11	AP.11 Счёт от поставщика на оплату	2	println("Checking criterion: AP.11")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\t\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\ndef docs = ruleTool.getDocuments(message)\ndef invoices = ruleTool.getDocuments(message, "ProformaInvoice")\nreturn isMessageIncoming && docs.size() == 1 && invoices.size() == 1	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\ndef documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", docs.get(0).getEntityId()))\ndef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "AP.11")\n// Получить инициатора по должности, если такого нет, вернуть ошибку\ndef initiator = ruleTool.findEmployeeByPosition("Бухгалтер GA")\nif (initiator == null) return "Сотрудник с должностью \\"Бухгалтер GA\\" отсутствует"\ndef counteragentId = jsonPath.read(documentInfo, "\\$.CounteragentBoxId")\ndef conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n// Получить поставщика по ИНН, если такого нет - на ручной разбор\ndef supplier = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\nif (supplier == null) return "MANUAL"\ndef operationType = ruleTool.getDictionaryItemByCode("eademo_OperationType", "031")\ndef department = ruleTool.getDictionaryItemByCode("eademo_Department", "ФД")\ndef pkgDate = jsonPath.read(documentInfo, "\\$.DocumentDate")\ndef mainDocumentNum = jsonPath.read(documentInfo, "\\$.DocumentNumber")\ndef amount = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='TotalSum')].Value")\namount = amount.size() == 1 ? amount.get(0) : null\ndef currencyCode = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='CurrencyCode')].Value")\ncurrencyCode = currencyCode.size() == 1 ? currencyCode.get(0) : ruleTool.getDictionaryItemByCode("eademo_Currency", "643")\n// Если он есть - смотрим в справочнике\ndef currency = null\nif (currencyCode != null) {\n    currency = ruleTool.getDictionaryItemByCode("eademo_Currency", currencyCode)\n}\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef messageType = ruleTool.getMessageType(message, toBoxId)\ndef pkg = ruleTool.preparePackage(docs, pkgType, messageType, "DRAFT")\npkg.setOperationType(operationType)\npkg.setInitiator(initiator)\npkg.setDepartment(department)\npkg.setPkgDate(ruleTool.getDateFromString(pkgDate))\npkg.setMainDocumentNum(mainDocumentNum)\npkg.setAmount(new BigDecimal(amount))\npkg.setCurrency(currency)\npkg.setSupplier(supplier)\npkgList.add(pkg)\n\nreturn pkgList	t
63bf47c0-ec1c-6cf5-2d66-5ab6a7851651	AP.07	AP.07 Закупка работ/ услуг	3	println("Checking criterion: AP.07")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\t\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (!isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message)\ndef hasSignedAct = ruleTool.hasSignedEntity(docs, "XmlAcceptanceCertificate")\nreturn hasSignedAct	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\n// Получить основной документ, если такого нет - на ручной разбор\ndef mainDocument = ruleTool.getMainDocument(docs, "XmlAcceptanceCertificate")\nif (mainDocument == null) return "MANUAL"\ndef documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", mainDocument.getEntityId()))\ndef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "AP.07")\ndef counteragentId = jsonPath.read(documentInfo, "\\$.CounteragentBoxId")\ndef conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n// Получить данные поставщика, если в системе такого нет - на ручной разбор\ndef supplier = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\nif (supplier == null) return "MANUAL"\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef pkgDate = jsonPath.read(documentInfo, "\\$.DocumentDate")\ndef mainDocumentNum = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n// Получить подпись и по ней определить инициатора\ndef initiatorSignature = ruleTool.getInitiatorSignature(message, mainDocument, toBoxId)\nif (initiatorSignature == null) return "Не найдена подпись"\ndef signatureInfo = diadocClient.doGetRequest("/GetSignatureInfo", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", initiatorSignature.getEntityId()));\ndef firstName = jsonPath.read(signatureInfo,"\\$.FirstName");\ndef lastName = jsonPath.read(signatureInfo,"\\$.Surname");\n// Получить инициатора, если такого нет - на ручной разбор\ndef initiator = ruleTool.findEmployee(firstName, lastName)\nif (initiator == null) return "MANUAL"\ndef department = ruleTool.getDepartmentByInitiator(initiator)\ndef amount = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='TotalSum')].Value")\namount = amount.size() == 1 ? amount.get(0) : null\ndef currencyCode = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='CurrencyCode')].Value")\ncurrencyCode = currencyCode.size() == 1 ? currencyCode.get(0) : null\ndef currency = null\n// Если currencyCode есть - смотрим в справочнике валют\nif (currencyCode != null) {\n    currency = ruleTool.getDictionaryItemByCode("eademo_Currency", currencyCode.toString())\n}\ndef sapContract = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='Grounds')].Value")\nsapContract = sapContract.size() == 1 ? sapContract.get(0) : null\ndef messageType = ruleTool.getMessageType(message, toBoxId)\ndef pkg = ruleTool.preparePackage(docs, pkgType, messageType, "DRAFT")\npkg.setInitiator(initiator)\npkg.setDepartment(department)\npkg.setPkgDate(ruleTool.getDateFromString(pkgDate))\npkg.setMainDocumentNum(mainDocumentNum)\npkg.setAmount(new BigDecimal(amount))\npkg.setCurrency(currency)\npkg.setSupplier(supplier)\npkg.setSapContract(sapContract)\npkgList.add(pkg)\n\nreturn pkgList;	t
07b23772-fe1c-5a37-aeb7-730ae07038b9	GC.06	GC.06 Экспедиторская расписка	5	println("Checking criterion: GC.06")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\t\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (!isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message)\n// Проверить, что все документы неформализованные\ndef allDocsAreNonformalized = ruleTool.allDocumentTypesAreEqual(docs, "Nonformalized")\nif (!allDocsAreNonformalized) return false\n// Получить все департаменты\ndef departmentsInfo = diadocClient.doGetRequest("/admin/GetDepartments", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId()))\n// ОТОиЛ    \ndef allowedDepartmentOTOIL = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='ОТОиЛ')].Id").get(0)\nfor (doc in docs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", doc.getEntityId()))\n    def toDepartment = jsonPath.read(documentInfo, "\\$.DepartmentId")\n    if (!toDepartment.equals(allowedDepartmentOTOIL)) return false\n}\nreturn true	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\n// Общая информация\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\nlong pkgDate = jsonPath.read(messageInfo, "\\$.TimestampTicks")\ndef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "GC.06")\n// Константа - админ\ndef initiator = ruleTool.findEmployee("admin")\n// Константа - департамент таможни\ndef department = ruleTool.getDictionaryItemByCode("eademo_Department", "ОТОиЛ")\nfor (doc in docs) {\n    def docInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n            .addParam("boxId", message.getBoxId())\n            .addParam("messageId", message.getMessageId())\n            .addParam("entityId", doc.getEntityId()))\n    def fileName = jsonPath.read(docInfo, "\\$.FileName")\n    def mainDocumentNum = ruleTool.getFileNameWithoutExtension(fileName)\n    def counteragentId = jsonPath.read(messageInfo, "\\$.FromBoxId")\n    def conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n    // Получить данные поставщика, если в системе такого нет - на ручной разбор\n    def supplier = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\n    if (supplier == null) return "MANUAL"\n    def messageType = ruleTool.getMessageType(message, toBoxId)\n    def pkg = ruleTool.preparePackage(docs, pkgType, messageType, "VERIFIED")\n    pkg.setInitiator(initiator)\n    pkg.setDepartment(department)\n    pkg.setPkgDate(ruleTool.getDateFromTicks(pkgDate))\n    pkg.setSupplier(supplier)\n    pkg.setMainDocumentNum(mainDocumentNum)\n    pkgList.add(pkg)\n}\n\nreturn pkgList;	t
0b75fabe-70d3-b5ef-2a83-4d99739d186f	AP.05	AP.05 Закупка локальных автокомпонентов и стали	1	println("Checking criterion: AP.05")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\t\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (!isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message, "UniversalTransferDocument")\n// Получить все подписанные УПД\ndef signedUTDs = ruleTool.getSignedEntities(docs, "UniversalTransferDocument")\nif (signedUTDs.size() == 0) return false\n// Получить все департаменты\ndef departmentsInfo = diadocClient.doGetRequest("/admin/GetDepartments", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId()))\n// Цех штамповки        \ndef allowedDepartmentC = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='ЦШ(С)')].Id").get(0)\n// Отдел управления МТО\ndef allowedDepartmentMC = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='MC')].Id").get(0)\nfor (doc in signedUTDs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", doc.getEntityId()))\n    def toDepartment = jsonPath.read(documentInfo, "\\$.DepartmentId")\n    if (toDepartment.equals(allowedDepartmentC) || toDepartment.equals(allowedDepartmentMC)) return true\n}\nreturn false	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\n// Получить все департаменты\ndef departmentsInfo = diadocClient.doGetRequest("/admin/GetDepartments", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId()))\n// Цех штамповки\ndef allowedDepartmentC = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='ЦШ(С)')].Id").get(0)\n// Отдел управления МТО\ndef allowedDepartmentMC = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='MC')].Id").get(0)\n// Получить основной документ, если такого нет - на ручной разбор\ndef signedUTDs = ruleTool.getSignedEntities(docs, "UniversalTransferDocument")\ndef mainDocument = null\ndef documentInfo\nfor (doc in signedUTDs) {\n    def docInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n            .addParam("boxId", message.getBoxId())\n            .addParam("messageId", message.getMessageId())\n            .addParam("entityId", doc.getEntityId()))\n    def toDepartmentId = jsonPath.read(docInfo, "\\$.DepartmentId")\n    // Если УПД для ЦШ(С) или МС\n    if (toDepartmentId.equals(allowedDepartmentC) || toDepartmentId.equals(allowedDepartmentMC)) {\n        mainDocument = doc\n        documentInfo = docInfo\n    }\n}\n// Если не нашелся УПД в статусе "Подписан" и для ЦШ(С) или МС\nif (mainDocument == null) return "MANUAL"\ndef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "AP.05")\ndef operationType = ruleTool.getDictionaryItemByCode("eademo_OperationType", "005")\ndef counteragentId = jsonPath.read(documentInfo, "\\$.CounteragentBoxId")\ndef conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n// Получить данные поставщика, если в системе такого нет - на ручной разбор\ndef supplier = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\nif (supplier == null) {\n    println("Ошибка - нет поставщика с ИНН \\"" + jsonPath.read(conteragentInfo, "\\$.Inn") + "\\"")\n    return "MANUAL"\n}\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef pkgDate = jsonPath.read(documentInfo, "\\$.DocumentDate")\ndef mainDocumentNum = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n// Получить подпись и по ней определить инициатора\ndef initiatorSignature = ruleTool.getInitiatorSignature(message, mainDocument, toBoxId)\nif (initiatorSignature == null) return "Не найдена подпись"\ndef signatureInfo = diadocClient.doGetRequest("/GetSignatureInfo", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", initiatorSignature.getEntityId()));\ndef firstName = jsonPath.read(signatureInfo,"\\$.FirstName");\ndef lastName = jsonPath.read(signatureInfo,"\\$.Surname");\n// Получить инициатора, если такого нет или больше одного - на ручной разбор\ndef initiator = ruleTool.findEmployee(firstName, lastName)\nif (initiator == null) {\n    return "MANUAL"\n}\ndef department = ruleTool.getDepartmentByInitiator(initiator)\ndef amount = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='TotalSum')].Value")\namount = amount.size() == 1 ? amount.get(0) : null\ndef currencyCode = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='CurrencyCode')].Value")\ncurrencyCode = currencyCode.size() == 1 ? currencyCode.get(0) : null\ndef currency = null\n// Если currencyCode есть - смотрим в справочнике валют\nif (currencyCode != null) {\n    currency = ruleTool.getDictionaryItemByCode("eademo_Currency", currencyCode.toString())\n}\ndef sapContract = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='Grounds')].Value")\nsapContract = sapContract.size() == 1 ? sapContract.get(0) : null\ndef messageType = ruleTool.getMessageType(message, toBoxId)\ndef pkg = ruleTool.preparePackage(docs, pkgType, messageType, "REVIEW")\npkg.setInitiator(initiator)\npkg.setDepartment(department)\npkg.setOperationType(operationType)\npkg.setPkgDate(ruleTool.getDateFromString(pkgDate))\npkg.setMainDocumentNum(mainDocumentNum)\npkg.setAmount(new BigDecimal(amount))\npkg.setCurrency(currency)\npkg.setSupplier(supplier)\npkg.setSapContract(sapContract)\npkgList.add(pkg)\n\nreturn pkgList;	t
e6e4f979-7d3d-8da9-334c-24b125bf0862	WH.04	WH.04 Передача готовой продукции в места хранения	6	println("Checking criterion: WH.04")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\t\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message)\ndef hasSignedActs = ruleTool.hasSignedEntity(docs, "AcceptanceCertificate")\n// Если подписанных актов нет\nif (!hasSignedActs) return false\n// Получить все департаменты\ndef departmentsInfo = diadocClient.doGetRequest("/admin/GetDepartments", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId()))\n// PMD     \ndef allowedDepartmentPMD = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='PMD')].Id").get(0)\nfor (doc in docs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", doc.getEntityId()))\n    def toDepartment = jsonPath.read(documentInfo, "\\$.FromDepartmentId")\n    // Если хоть какой-то документ не из департамента PMD\n    if (!toDepartment.equals(allowedDepartmentPMD)) return false\n}\nreturn true	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message, "AcceptanceCertificate")\n// Общая информация\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "WH.04")\ndef operationType = ruleTool.getDictionaryItemByCode("eademo_OperationType", "170")\nfor (doc in docs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n            .addParam("boxId", message.getBoxId())\n            .addParam("messageId", message.getMessageId())\n            .addParam("entityId", doc.getEntityId()))\n    def counteragentId = jsonPath.read(documentInfo, "\\$.CounteragentBoxId")\n    def conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n    def initiatorSignature = ruleTool.getInitiatorSignature(message, doc, toBoxId)\n    if (initiatorSignature == null) return "Не найдена подпись"\n    def signatureInfo = diadocClient.doGetRequest("/GetSignatureInfo", diadocClient.createUrlParams()\n            .addParam("boxId", message.getBoxId())\n            .addParam("messageId", message.getMessageId())\n            .addParam("entityId", initiatorSignature.getEntityId()));\n    def firstName = jsonPath.read(signatureInfo,"\\$.FirstName");\n    def lastName = jsonPath.read(signatureInfo,"\\$.Surname");\n    // Получить инициатора, если такого нет - на ручной разбор\n    def initiator = ruleTool.findEmployee(firstName, lastName)\n    if (initiator == null) return "MANUAL"\n    def department = ruleTool.getDepartmentByInitiator(initiator)\n    // Получить данные поставщика, если в системе такого нет - на ручной разбор\n    def supplier = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\n    if (supplier == null) return "MANUAL"\n    def mainDocumentNum = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n    def pkgDate = jsonPath.read(documentInfo, "\\$.DocumentDate")\n    def amount = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='TotalSum')].Value")\n    amount = amount.size() == 1 ? amount.get(0) : null\n    def currencyCode = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='CurrencyCode')].Value")\n    currencyCode = currencyCode.size() == 1 ? currencyCode.get(0) : "643"\n    def currency = null\n    // Если currencyCode есть - смотрим в справочнике валют\n    if (currencyCode != null) {\n        currency = ruleTool.getDictionaryItemByCode("eademo_Currency", currencyCode.toString())\n    }\n    def messageType = ruleTool.getMessageType(message, toBoxId)\n    def pkg = ruleTool.preparePackage(docs, pkgType, messageType, "VERIFIED")\n    pkg.setInitiator(initiator)\n    pkg.setOperationType(operationType)\n    pkg.setDepartment(department)\n    pkg.setPkgDate(ruleTool.getDateFromString(pkgDate))\n    pkg.setCurrency(currency)\n    pkg.setMainDocumentNum(mainDocumentNum)\n    pkg.setAmount(new BigDecimal(amount))\n    pkg.setSupplier(supplier)\n    pkgList.add(pkg)\n}\nreturn pkgList;	t
fe02996f-81df-c314-27af-c5f647cc8ee6	AR.01	AR.01 Основная реализация автомобилей на внутренний рынок	7	println("Checking criterion: AR.01")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message, "UniversalTransferDocument")\ndef hasSignedActs = ruleTool.hasSignedEntity(docs, "UniversalTransferDocument")\ndef UTDs = []\nfor (doc in docs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", doc.getEntityId()))\n    def number = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n    String regex = /^([1-9]?([0-9]){1,4})$/\n    if (number ==~ regex) {\n    \tUTDs.add(doc)\n    }\n}\nreturn UTDs.size() != 0	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\n// Информация по мессаджу\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\n// Получить основной документ, если такого нет - на ручной разбор\ndef signedUTDs = ruleTool.getSignedEntities(docs, "UniversalTransferDocument")\ndef mainDocument = null\ndef documentInfo\nfor (doc in signedUTDs) {\n    def docInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n            .addParam("boxId", message.getBoxId())\n            .addParam("messageId", message.getMessageId())\n            .addParam("entityId", doc.getEntityId()))\n    def number = jsonPath.read(docInfo, "\\$.DocumentNumber")\n    // Если номер УПД от 1 до 99999\n    String regex = /^([1-9]?([0-9]){1,4})$/\n    if (number ==~ regex) {\n        mainDocument = doc\n        documentInfo = docInfo\n    }\n}\n// Если не нашелся УПД с номером от 1 до 99999\nif (mainDocument == null) return "MANUAL"\ndef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "AR.01")\ndef operationType = ruleTool.getDictionaryItemByCode("eademo_OperationType", "040")\ndef counteragentId = jsonPath.read(documentInfo, "\\$.CounteragentBoxId")\ndef conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n// Получить данные покупателя, если в системе такого нет - на ручной разбор\ndef recipient = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\nif (recipient == null) return "MANUAL"\ndef pkgDate = jsonPath.read(documentInfo, "\\$.DocumentDate")\ndef mainDocumentNum = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n// Получить подпись и по ней определить инициатора\ndef initiatorSignature = ruleTool.getInitiatorSignature(message, mainDocument, toBoxId)\nif (initiatorSignature == null) return "Не найдена подпись"\ndef signatureInfo = diadocClient.doGetRequest("/GetSignatureInfo", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", initiatorSignature.getEntityId()))\ndef firstName = jsonPath.read(signatureInfo,"\\$.FirstName")\ndef lastName = jsonPath.read(signatureInfo,"\\$.Surname")\n// Получить инициатора, если такого нет - на ручной разбор\ndef initiator = ruleTool.findEmployee(firstName, lastName)\nif (initiator == null) return "MANUAL"\ndef department = ruleTool.getDepartmentByInitiator(initiator)\ndef amount = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='TotalSum')].Value")\namount = amount.size() == 1 ? amount.get(0) : null\ndef currencyCode = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='CurrencyCode')].Value")\ncurrencyCode = currencyCode.size() == 1 ? currencyCode.get(0) : null\ndef currency = null\n// Если currencyCode есть - смотрим в справочнике валют\nif (currencyCode != null) {\n    currency = ruleTool.getDictionaryItemByCode("eademo_Currency", currencyCode.toString())\n}\ndef sapContract = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='Grounds')].Value")\nsapContract = sapContract.size() == 1 ? sapContract.get(0) : null\n// Получить контент - xml документа\ndef entityContent = diadocClient.doGetRequest("/V4/GetEntityContent", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", mainDocument.getEntityId()), byte[].class)\ndef xmlDoc = xPathTool.parseXml(entityContent.getBody())\ndef numberFI = xPathTool.readAttribute(xmlDoc, "/Файл/Документ/СвСчФакт/ИнфПолФХЖ1/ТекстИнф/@Значен")\ndef messageType = ruleTool.getMessageType(message, toBoxId)\ndef pkg = ruleTool.preparePackage(docs, pkgType, messageType, "VERIFIED")\npkg.setInitiator(initiator)\npkg.setDepartment(department)\npkg.setOperationType(operationType)\npkg.setPkgDate(ruleTool.getDateFromString(pkgDate))\npkg.setMainDocumentNum(mainDocumentNum)\npkg.setAmount(new BigDecimal(amount))\npkg.setCurrency(currency)\npkg.setRecipient(recipient)\npkg.setSapContract(sapContract)\nif (numberFI.length() != 0) {\n    ruleTool.addSapDocument(pkg, numberFI, ruleTool.getDateFromString(pkgDate))\n}\npkgList.add(pkg)\n\nreturn pkgList;	t
0acead04-67f1-5111-a39f-bfc91bd2fa61	AR.07	AR.07 Прочая реализация на внутренний рынок	8	println("Checking criterion: AR.07")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\t\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message, "UniversalTransferDocument")\ndef hasSignedActs = ruleTool.hasSignedEntity(docs, "UniversalTransferDocument")\ndef UTDs = []\nfor (doc in docs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", doc.getEntityId()))\n    def number = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n    String regex = /^4000([0-9]){6}$/\n    if (number ==~ regex) {\n    \tUTDs.add(doc)\n    }\n}\nreturn UTDs.size() != 0	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\n// Получить основной документ, если такого нет - на ручной разбор\ndef signedUTDs = ruleTool.getSignedEntities(docs, "UniversalTransferDocument")\ndef mainDocument = null\ndef documentInfo\nfor (doc in signedUTDs) {\n    def docInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n            .addParam("boxId", message.getBoxId())\n            .addParam("messageId", message.getMessageId())\n            .addParam("entityId", doc.getEntityId()))\n    def number = jsonPath.read(docInfo, "\\$.DocumentNumber")\n    // Если номер УПД формата 4000xxxxxx\n    String regex = /^4000([0-9]){6}$/\n    if (number ==~ regex) {\n        mainDocument = doc\n        documentInfo = docInfo\n    }\n}\n// Если не нашелся УПД с номером формата 4000xxxxxx\nif (mainDocument == null) return "MANUAL"\ndef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "AR.07")\ndef operationType = ruleTool.getDictionaryItemByCode("eademo_OperationType", "048")\ndef counteragentId = jsonPath.read(documentInfo, "\\$.CounteragentBoxId")\ndef conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n// Получить данные покупателя, если в системе такого нет - на ручной разбор\ndef recipient = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\nif (recipient == null) return "MANUAL"\n\ndef pkgDate = jsonPath.read(documentInfo, "\\$.DocumentDate")\ndef mainDocumentNum = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n// Получить подпись и по ней определить инициатора\ndef initiatorSignature = ruleTool.getInitiatorSignature(message, mainDocument, toBoxId)\nif (initiatorSignature == null) return "Не найдена подпись"\ndef signatureInfo = diadocClient.doGetRequest("/GetSignatureInfo", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", initiatorSignature.getEntityId()));\ndef firstName = jsonPath.read(signatureInfo,"\\$.FirstName");\ndef lastName = jsonPath.read(signatureInfo,"\\$.Surname");\n// Получить инициатора, если такого нет - на ручной разбор\ndef initiator = ruleTool.findEmployee(firstName, lastName)\nif (initiator == null) return "MANUAL"\ndef department = ruleTool.getDepartmentByInitiator(initiator)\ndef amount = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='TotalSum')].Value")\namount = amount.size() == 1 ? amount.get(0) : null\ndef currencyCode = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='CurrencyCode')].Value")\ncurrencyCode = currencyCode.size() == 1 ? currencyCode.get(0) : null\ndef currency = null\n// Если currencyCode есть - смотрим в справочнике валют\nif (currencyCode != null) {\n    currency = ruleTool.getDictionaryItemByCode("eademo_Currency", currencyCode.toString())\n}\ndef sapContract = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='Grounds')].Value")\nsapContract = sapContract.size() == 1 ? sapContract.get(0) : null\n\n// Получить контент - xml документа\ndef entityContent = diadocClient.doGetRequest("/V4/GetEntityContent", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", mainDocument.getEntityId()), byte[].class)\ndef xmlDoc = xPathTool.parseXml(entityContent.getBody())\ndef numberFI = xPathTool.readAttribute(xmlDoc, "/Файл/Документ/СвСчФакт/ИнфПолФХЖ1/ТекстИнф/@Значен")\ndef messageType = ruleTool.getMessageType(message, toBoxId)\ndef pkg = ruleTool.preparePackage(docs, pkgType, messageType, "VERIFIED")\npkg.setInitiator(initiator)\npkg.setDepartment(department)\npkg.setOperationType(operationType)\npkg.setPkgDate(ruleTool.getDateFromString(pkgDate))\npkg.setMainDocumentNum(mainDocumentNum)\npkg.setAmount(new BigDecimal(amount))\npkg.setCurrency(currency)\npkg.setRecipient(recipient)\npkg.setSapContract(sapContract)\nif (numberFI.length() != 0) {\n    ruleTool.addSapDocument(pkg, numberFI, ruleTool.getDateFromString(pkgDate))\n}\npkgList.add(pkg)\n\nreturn pkgList;	t
23bebfd6-ffe8-120a-72e1-ac4adb2484a4	GC.05	GC.05 Поручение экспедитору	9	println("Checking criterion: GC.05")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\t\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message)\n// Проверить, что все документы неформализованные\ndef allDocsAreNonformalized = ruleTool.allDocumentTypesAreEqual(docs, "Nonformalized")\nif (!allDocsAreNonformalized) return false\n// Получить все департаменты\ndef departmentsInfo = diadocClient.doGetRequest("/admin/GetDepartments", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId()))\n// ОТОиЛ    \ndef allowedDepartmentOTOIL = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='ОТОиЛ')].Id").get(0)\nfor (doc in docs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", doc.getEntityId()))\n    def toDepartment = jsonPath.read(documentInfo, "\\$.FromDepartmentId")\n    if (!toDepartment.equals(allowedDepartmentOTOIL)) return false\n}\nreturn true	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\n// Общая информация\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\nlong pkgDate = jsonPath.read(messageInfo, "\\$.TimestampTicks")\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef messageType = ruleTool.getMessageType(message, toBoxId)\n// Константа - админ\ndef initiator = ruleTool.findEmployee("admin")\n// Константа - департамент таможни\ndef department = ruleTool.getDictionaryItemByCode("eademo_Department","ОТОиЛ")\nfor (doc in docs) {\n\tdef docInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", doc.getEntityId()))\n\tdef pkgType = ruleTool.getDictionaryItemByCode("eademo_PackageType", "GC.05")\n\tdef fileName = jsonPath.read(docInfo, "\\$.FileName")\n\tdef mainDocumentNum = ruleTool.getFileNameWithoutExtension(fileName)\n\tdef counteragentId = jsonPath.read(messageInfo, "\\$.ToBoxId")\n\tdef conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n\t// Получить данные покупателя, если в системе такого нет - на ручной разбор\n\tdef recipient = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\n\tif (recipient == null) return "MANUAL"\n\tdef pkg = ruleTool.preparePackage(docs, pkgType, messageType, "VERIFIED")\n\tpkg.setInitiator(initiator)\n\tpkg.setDepartment(department)\n\tpkg.setPkgDate(ruleTool.getDateFromTicks(pkgDate))\n\tpkg.setRecipient(recipient)\n\tpkg.setMainDocumentNum(mainDocumentNum)\n\tpkgList.add(pkg)\n}\n\nreturn pkgList;	t
066af58b-6888-513f-5ff3-a39beb8f347a	AP.99	AP.99 Закупка работ/ услуг/материалов Диадок	4	println("Checking criterion: AP.99")\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef isMessageIncoming = ruleTool.isMessageIncoming(message, toBoxId)\nif (!isMessageIncoming) return false\ndef docs = ruleTool.getDocuments(message)\n// Хотя бы один УПД подписан\ndef hasSignedUTD = ruleTool.hasSignedEntity(docs, "UniversalTransferDocument")\n// Хотя бы одна накладная подписана\ndef hasSignedTorg = ruleTool.hasSignedEntity(docs, "Torg12") || ruleTool.hasSignedEntity(docs, "XmlTorg12");\n// Есть хотя бы один подписанный\ndef hasOneSigned = hasSignedUTD || hasSignedTorg\nif (!hasOneSigned) return false\n\n// Получить все департаменты\ndef departmentsInfo = diadocClient.doGetRequest("/admin/GetDepartments", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId()))\n// Цех штамповки\ndef allowedDepartmentC = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='ЦШ(С)')].Id").get(0)\n// Отдел управления МТО\ndef allowedDepartmentMC = jsonPath.read(departmentsInfo, "\\$.Departments[?(@.Abbreviation=='MC')].Id").get(0)\nfor (doc in docs) {\n    def documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n            .addParam("boxId", message.getBoxId())\n            .addParam("messageId", message.getMessageId())\n            .addParam("entityId", doc.getEntityId()))\n    def toDepartment = jsonPath.read(documentInfo, "\\$.DepartmentId")\n    // Если хоть какой-то документ для цеха штамповки или отдела управления МТО, правила не соблюдаются\n    if (toDepartment.equals(allowedDepartmentC) || toDepartment.equals(allowedDepartmentMC)) return false\n}\nreturn true	f	def pkgList = ruleTool.preparePackagesList()\ndef docs = ruleTool.getDocuments(message)\n// Получить основной документ, если такого нет - на ручной разбор\n// Основным документом считать документ типа UniversalTransferDocument или Torg12, который имеет статус "Подписан"\ndef mainDocument = ruleTool.getMainDocument(docs, "UniversalTransferDocument", "Torg12", "XmlTorg12")\nif (mainDocument == null) return "MANUAL"\ndef documentInfo = diadocClient.doGetRequest("/V3/GetDocument", diadocClient.createUrlParams()\n        .addParam("boxId", message.getBoxId())\n        .addParam("messageId", message.getMessageId())\n        .addParam("entityId", mainDocument.getEntityId()))\ndef pkgType = ruleTool.getDictionaryItemByCode("pwchyundai_PackageType", "AP.99")\ndef counteragentId = jsonPath.read(documentInfo, "\\$.CounteragentBoxId")\ndef conteragentInfo = diadocClient.doGetRequest("/GetOrganization", diadocClient.createUrlParams().addParam("boxId", counteragentId))\n// Получить данные поставщика, если в системе такого нет - на ручной разбор\ndef supplier = ruleTool.getContractor(jsonPath.read(conteragentInfo, "\\$.Inn"))\nif (supplier == null) return "MANUAL"\ndef messageInfo = diadocClient.doGetRequest("/V5/GetMessage", diadocClient.createUrlParams()\n\t.addParam("boxId", message.getBoxId())\n\t.addParam("messageId", message.getMessageId()))\ndef toBoxId = jsonPath.read(messageInfo, "\\$.ToBoxId")\ndef pkgDate = jsonPath.read(documentInfo, "\\$.DocumentDate")\ndef mainDocumentNum = jsonPath.read(documentInfo, "\\$.DocumentNumber")\n// Получить подпись и по ней определить инициатора\ndef initiatorSignature = ruleTool.getInitiatorSignature(message, mainDocument, toBoxId)\nif (initiatorSignature == null) return "Не найдена подпись со стороны ХММР"\ndef signatureInfo = diadocClient.doGetRequest("/GetSignatureInfo", diadocClient.createUrlParams()\n                    .addParam("boxId", message.getBoxId())\n                    .addParam("messageId", message.getMessageId())\n                    .addParam("entityId", initiatorSignature.getEntityId()));\ndef firstName = jsonPath.read(signatureInfo,"\\$.FirstName");\ndef lastName = jsonPath.read(signatureInfo,"\\$.Surname");\n// Получить инициатора, если такого нет - на ручной разбор\ndef initiator = ruleTool.findEmployee(firstName, lastName)\nif (initiator == null) return "MANUAL"\ndef department = ruleTool.getDepartmentByInitiator(initiator)\ndef amount = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='TotalSum')].Value")\namount = amount.size() == 1 ? amount.get(0) : null\ndef currencyCode = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='CurrencyCode')].Value")\ncurrencyCode = currencyCode.size() == 1 ? currencyCode.get(0) : null\ndef currency = null\n// Если currencyCode есть - смотрим в справочнике валют\nif (currencyCode != null) {\n\tcurrency = ruleTool.getDictionaryItemByCode("pwchyundai_Currency", currencyCode.toString())\n}\ndef sapContract = jsonPath.read(documentInfo, "\\$.Metadata[?(@.Key=='Grounds')].Value")\nsapContract = sapContract.size() == 1 ? sapContract.get(0) : null\ndef messageType = ruleTool.getMessageType(message, toBoxId)\ndef pkg = ruleTool.preparePackage(docs, pkgType, messageType, "DRAFT")\npkg.setInitiator(initiator)\npkg.setDepartment(department)\npkg.setPkgDate(ruleTool.getDateFromString(pkgDate))\npkg.setMainDocumentNum(mainDocumentNum)\npkg.setAmount(new BigDecimal(amount))\npkg.setCurrency(currency)\npkg.setSupplier(supplier)\npkg.setSapContract(sapContract)\npkgList.add(pkg)\n\nreturn pkgList;	t
\.


--
-- Data for Name: eademo_doc_attribute; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_doc_attribute (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, copy_to_child) FROM stdin;
8b35962a-393d-e234-0467-1a3d1ec2dfb2	1	2021-05-24 11:52:43.799	admin	2021-05-24 11:52:43.799	\N	\N	\N	Комментарий инициатора	t
\.


--
-- Data for Name: eademo_doc_attribute_package_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_doc_attribute_package_type_link (doc_attribute_id, package_type_id) FROM stdin;
8b35962a-393d-e234-0467-1a3d1ec2dfb2	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9
\.


--
-- Data for Name: eademo_doc_package_attribute_value; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_doc_package_attribute_value (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, pkg_id_id, attr_id_id, attr_value) FROM stdin;
\.


--
-- Data for Name: eademo_doc_package_model; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_doc_package_model (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, pkg_type_id, end_date, amount, currency_id, process_transition, tax_control_status, bank_id, po, recipient_id, supplier_id, has_sap, custom_id, lot, mm_docs, accomp_docs, sap_contract, contractor_text, account_id, report_period, contract_type_id, unk, main_contract, operation_type_id, department_id, initiator_id, status, pkg_num, pkg_date, diadoc_link, contractor_id, parent_package_id, main_document_num, rfa) FROM stdin;
3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	4	2021-05-25 17:43:31.522	semenov	2021-05-25 17:43:49.83	semenov	\N	\N	8a65b6a6-0479-051b-02ea-59ac1a41e237	\N	\N	\N	toVerified	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	ad66739d-08c6-4e6d-2919-c63d004bcf03	8700e684-3c1a-b199-f4de-807b7ced53cb	632fb0bf-ecb0-228f-b751-c79bbb8350c7	VERIFIED	ФД-01P.10-202105-0002	2021-05-20	\N	\N	\N	\N	\N
d8511ea3-d13e-44f1-4454-36210b34c595	2	2021-05-27 10:09:01.287	admin	2021-05-27 10:09:01.287	\N	2021-05-27 10:12:24.659	admin	17156ead-cfb3-89cf-8608-af35faf08d95	\N	1110.00	d5ed9efa-b14c-f54a-5187-5cd9add65e34	\N	\N	\N	\N	\N	c9b196d4-b8f5-cbf7-1401-064989ac7ec1	\N	\N	\N	\N	\N	Без документа-основания	\N	\N	\N	\N	\N	\N	1c342e39-66fc-e152-0337-8f3c6007ba54	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	2ce3ea8c-d497-9f33-63c6-b57819b1a4a5	REVIEW	\N	2020-04-21	\N	\N	\N	1111111	\N
0c5e8576-0051-518b-b830-6ecb7ac2a9cb	5	2021-05-26 12:19:04.021	ivanov	2021-05-26 12:22:51.833	yakovlev	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	250	d5ed9efa-b14c-f54a-5187-5cd9add65e34	toVerified	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	Гостиница	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0006	2021-05-26	\N	\N	\N	\N	\N
8821657d-b2ff-8722-55df-c3bfc572ce60	7	2021-05-24 13:07:28.563	ivanov	2021-05-24 13:27:29.874	fedorov	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	\N	\N	\N	yes	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0001	2021-05-24	\N	\N	\N	\N	\N
0f100017-a81f-266a-4521-26d416f53351	8	2021-05-24 13:19:16.664	ivanov	2021-05-24 13:27:52.042	fedorov	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	\N	\N	\N	yes	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0002	2021-05-24	\N	\N	\N	\N	\N
484869c4-a9fc-15c6-3f22-d6156565ba15	5	2021-05-24 18:53:46.885	ivanov	2021-05-24 18:55:34.456	fedorov	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	500	d5ed9efa-b14c-f54a-5187-5cd9add65e34	\N	yes	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	Гостиница "Золотое кольцо"	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0003	2021-05-19	\N	\N	\N	\N	\N
029a3654-a876-c87c-a3d7-ea8c28459bfc	4	2021-05-25 14:12:35.319	ivanov	2021-05-25 14:17:16.932	ivanov	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	100	d5ed9efa-b14c-f54a-5187-5cd9add65e34	\N	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	Гостиница "Золотое кольцо"	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNING	ДИТ-01P.01-202105-0004	2021-05-25	\N	\N	\N	\N	\N
35c71334-fdba-2993-f8af-15fd883c00e7	3	2021-05-27 16:40:41.963	admin	2021-05-27 18:26:55.321	admin	\N	\N	eee49cf1-d3d0-ac28-4420-61a2dc3b4923	\N	\N	\N	annulation	\N	a7f16361-585a-dc1d-86fc-fc8186721a6c	\N	\N	\N	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	a5f4e90e-1fe4-9d1c-613c-f73a854e4c97	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	240f69fd-0295-79ac-5b73-d76966b6497a	ANNULLED	ГОP.07-202105-0001	2021-05-27	\N	\N	\N	\N	\N
694d14a7-56bc-b52e-7130-f519021169c9	5	2021-05-26 13:30:17.25	ivanov	2021-05-26 13:31:49.58	yakovlev	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	\N	\N	toVerified	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	Гостиница "Рабочий и колхозница"	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0007	2021-05-26	\N	\N	\N	\N	\N
97d0c1ae-9338-ef26-0733-fa29e876fb25	5	2021-05-25 15:21:29.01	ivanov	2021-05-25 17:28:16.67	yakovlev	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	250	d5ed9efa-b14c-f54a-5187-5cd9add65e34	toVerified	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	Гостиница "Колос"	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0005	2021-05-25	\N	\N	\N	\N	\N
878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	4	2021-05-25 17:40:16.356	semenov	2021-05-25 17:42:54.626	semenov	\N	\N	8a65b6a6-0479-051b-02ea-59ac1a41e237	\N	\N	\N	toVerified	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	eca15b35-a8cd-27f4-5c9c-0b7d91ebfb06	8700e684-3c1a-b199-f4de-807b7ced53cb	632fb0bf-ecb0-228f-b751-c79bbb8350c7	VERIFIED	ФД-01P.10-202105-0001	2021-05-17	\N	\N	\N	\N	\N
dcdf45d9-d927-7aff-f7e0-6f04fec60107	2	2021-05-27 18:27:51.585	admin	2021-05-27 18:27:51.595	admin	\N	\N	eee49cf1-d3d0-ac28-4420-61a2dc3b4923	\N	\N	\N	\N	\N	a7f16361-585a-dc1d-86fc-fc8186721a6c	\N	\N	\N	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	a5f4e90e-1fe4-9d1c-613c-f73a854e4c97	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	240f69fd-0295-79ac-5b73-d76966b6497a	DRAFT	ГОP.07-202105-0002	2021-05-27	\N	\N	\N	\N	\N
f364049e-d1da-ae92-03b8-f9f13a1a686c	5	2021-05-26 14:26:34.195	ivanov	2021-05-26 14:30:09.672	yakovlev	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	250	d5ed9efa-b14c-f54a-5187-5cd9add65e34	toVerified	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	Гостиница	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0008	2021-05-26	\N	\N	\N	\N	\N
d9be9e33-e0bb-42d4-6948-333fb46115e5	2	2021-05-27 19:01:07.907	diadoc	2021-05-27 19:01:07.957	diadoc	\N	\N	eee49cf1-d3d0-ac28-4420-61a2dc3b4923	\N	\N	\N	finishDraft	\N	a7f16361-585a-dc1d-86fc-fc8186721a6c	\N	\N	\N	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	a5f4e90e-1fe4-9d1c-613c-f73a854e4c97	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	2ce3ea8c-d497-9f33-63c6-b57819b1a4a5	REVIEW	ГОP.07-202105-0003	2021-05-27	\N	\N	\N	\N	\N
30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	5	2021-05-26 14:44:37.413	ivanov	2021-05-26 14:54:01.144	yakovlev	\N	\N	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	\N	500	d5ed9efa-b14c-f54a-5187-5cd9add65e34	toVerified	\N	\N	\N	\N	\N	f	\N	\N	\N	\N	\N	Гостиница	\N	\N	\N	\N	\N	c8d533e4-74ac-4414-4b4b-99fdafb9641d	255821e6-0862-2a9a-5c85-483758999718	751e8f7b-9573-fb06-3331-e2491424d82f	VERIFIED	ДИТ-01P.01-202105-0009	2021-05-26	\N	\N	\N	\N	\N
\.


--
-- Data for Name: eademo_doc_package_model_fixed_asset_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_doc_package_model_fixed_asset_link (doc_package_model_id, fixed_asset_id) FROM stdin;
\.


--
-- Data for Name: eademo_doc_package_status_record; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_doc_package_status_record (id, doc_package_model_id, substituted_user_id, user_id, event_ts, description, status) FROM stdin;
984b5275-75e4-a948-ebb8-61a16a876a08	8821657d-b2ff-8722-55df-c3bfc572ce60	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-24 13:07:28.658	\N	DRAFT
6632dc48-86b6-6099-6e7d-77d373e32b18	0f100017-a81f-266a-4521-26d416f53351	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-24 13:19:16.685	\N	DRAFT
2a5b7ac0-f879-e070-4778-a4b9e5938b4b	0f100017-a81f-266a-4521-26d416f53351	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-24 13:20:53.671	\N	SIGNING
ada86ab1-2ebc-3131-1c62-29f90f92cf2a	8821657d-b2ff-8722-55df-c3bfc572ce60	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-24 13:20:58.76	\N	SIGNING
d2a36cc1-17bf-b90b-7e6b-55e210836cac	0f100017-a81f-266a-4521-26d416f53351	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-24 13:22:51.954	\N	REVIEW
69573437-64c3-7036-a5c7-cd8c00d296b5	8821657d-b2ff-8722-55df-c3bfc572ce60	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-24 13:22:58.857	\N	REVIEW
a0163d17-98c5-e67c-15a2-eed6a64ebdc7	0f100017-a81f-266a-4521-26d416f53351	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-24 13:23:58.167	\N	VERIFIED
00dd334f-fc7e-34c7-e55b-17c90752c6bb	8821657d-b2ff-8722-55df-c3bfc572ce60	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-24 13:24:09.209	\N	VERIFIED
bf8a6202-2879-86cf-3845-97c05522e5e1	484869c4-a9fc-15c6-3f22-d6156565ba15	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-24 18:53:46.923	\N	SIGNING
48735175-b9c9-91b9-f82d-71410f48d4b7	484869c4-a9fc-15c6-3f22-d6156565ba15	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	2021-05-24 18:54:23.755	\N	REVIEW
3f7fb72c-1410-8021-54fb-b66317c7dfc1	484869c4-a9fc-15c6-3f22-d6156565ba15	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-24 18:54:51.176	\N	VERIFIED
d6703ca1-0194-9092-428f-802129c5e307	029a3654-a876-c87c-a3d7-ea8c28459bfc	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-25 14:12:35.341	\N	DRAFT
b45563dd-41ce-f5c6-d886-2334f0ca50e6	029a3654-a876-c87c-a3d7-ea8c28459bfc	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-25 14:17:06.89	\N	SIGNING
bec5d19c-76ae-6c64-b61a-3f4945f410e2	97d0c1ae-9338-ef26-0733-fa29e876fb25	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-25 15:21:29.032	\N	SIGNING
e1831cb9-0692-423a-5267-a84bf107aeba	97d0c1ae-9338-ef26-0733-fa29e876fb25	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-25 17:13:50.125	\N	REVIEW
2c923755-361a-c35a-0aed-5e174e38de8d	97d0c1ae-9338-ef26-0733-fa29e876fb25	\N	025b044b-3118-a272-35ef-869619f193e1	2021-05-25 17:28:16.67	\N	VERIFIED
36f774bf-0721-384b-8a3c-9be6b945b484	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-25 17:40:16.379	\N	SIGNING
427d7724-a06f-7764-ed84-fb9f97542f1f	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-25 17:42:23.661	\N	REVIEW
44c06832-e842-d266-a827-66be9dbd503f	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-25 17:42:54.625	\N	VERIFIED
e80937d8-ff2f-8758-9fe1-e268fe11462e	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-25 17:43:31.539	\N	SIGNING
94c450eb-13d9-c7e0-275f-f9ebc37057a3	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-25 17:43:40.934	\N	REVIEW
089207b4-6156-7b0a-06e1-f28ed849a917	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-25 17:43:49.83	\N	VERIFIED
45a64cac-18ef-7f2d-807f-7e840244bc9f	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-26 12:19:04.212	\N	SIGNING
c7c486d5-2c48-8b8d-6bc2-e68305f8c2d8	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	\N	0668cb56-bed5-3032-20bc-96779e763230	2021-05-26 12:22:20.811	\N	REVIEW
3e309fd9-84a9-8e85-9381-1aa92de20a82	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	\N	025b044b-3118-a272-35ef-869619f193e1	2021-05-26 12:22:51.833	\N	VERIFIED
a67fc631-9373-6870-ec1d-3ca4f7f89287	694d14a7-56bc-b52e-7130-f519021169c9	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-26 13:30:17.271	\N	SIGNING
3bfe17e1-2e5a-3fcb-82e8-6605de86d1a1	694d14a7-56bc-b52e-7130-f519021169c9	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-26 13:31:26.592	\N	REVIEW
f434478e-f28d-6719-8ba2-0b057b47a658	694d14a7-56bc-b52e-7130-f519021169c9	\N	025b044b-3118-a272-35ef-869619f193e1	2021-05-26 13:31:49.579	\N	VERIFIED
9d9eba13-38cb-f20c-5af0-4b736c781191	f364049e-d1da-ae92-03b8-f9f13a1a686c	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-26 14:26:34.231	\N	SIGNING
b0e518ed-b6e9-d4eb-6392-2491bcc622ec	f364049e-d1da-ae92-03b8-f9f13a1a686c	\N	0668cb56-bed5-3032-20bc-96779e763230	2021-05-26 14:27:31.232	\N	REVIEW
ee08f449-48f4-e4aa-5f9b-dfca06379319	f364049e-d1da-ae92-03b8-f9f13a1a686c	\N	025b044b-3118-a272-35ef-869619f193e1	2021-05-26 14:30:09.671	\N	VERIFIED
dec4f37f-cbe2-9271-4276-334997df8540	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-26 14:44:37.441	\N	SIGNING
26da3764-4fe0-36d6-848f-0b1cfcfa750f	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-26 14:53:29.379	\N	REVIEW
bdf4e047-4389-0e17-8529-690eb14bb12c	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	\N	025b044b-3118-a272-35ef-869619f193e1	2021-05-26 14:54:01.143	\N	VERIFIED
ad8facd3-ddd9-5afa-a22c-76a3436aa3a5	35c71334-fdba-2993-f8af-15fd883c00e7	\N	60885987-1b61-4247-94c7-dff348347f93	2021-05-27 16:40:42.255	\N	DRAFT
42e32b98-e789-7a35-833b-a717fb531343	35c71334-fdba-2993-f8af-15fd883c00e7	\N	60885987-1b61-4247-94c7-dff348347f93	2021-05-27 18:26:55.321	у	ANNULLED
f44719fc-7532-48a3-2a67-a5094c0ef7a5	dcdf45d9-d927-7aff-f7e0-6f04fec60107	\N	60885987-1b61-4247-94c7-dff348347f93	2021-05-27 18:27:51.594	\N	DRAFT
8d0ac26b-5d58-70f8-8314-c39141189bf8	d9be9e33-e0bb-42d4-6948-333fb46115e5	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	2021-05-27 19:01:07.957	\N	REVIEW
\.


--
-- Data for Name: eademo_employee; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_employee (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, user_id, barcode, use_warrant, name, login, tab_number, main_department_id) FROM stdin;
abfc7a8f-afec-b95e-1f1a-366b84ed2928	3	2021-05-19 18:43:57.721	admin	2021-05-19 18:43:57.728	admin	2021-05-19 18:52:56.421	admin	60885987-1b61-4247-94c7-dff348347f93	\N	f	Administrator	admin	\N	60f77d84-3eea-3701-5ca6-a45d9b90f183
aba1ee98-ee0a-e6e8-e66f-f7604c5fd88a	5	2021-05-24 13:30:48.601	admin	2021-05-26 12:30:50.502	admin	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	105	f	Олегов Олег Олегович	olegov	105	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
e303b9a9-53eb-5abf-8044-71a0aa30d3dd	5	2021-05-25 12:50:15.32	admin	2021-05-26 12:30:55.222	admin	\N	\N	025b044b-3118-a272-35ef-869619f193e1	106	f	Яковлев Яков Яковлевич	yakovlev	106	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
aa55a955-239a-d215-9636-69da7938787e	6	2021-05-25 13:21:08.091	admin	2021-05-26 12:31:00.509	admin	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	107	f	Сидоров Сидор Сидорович	sidorov	107	f9c3c4b1-7d1e-2725-f970-8ff039e9ee76
240f69fd-0295-79ac-5b73-d76966b6497a	2	2021-05-27 10:21:55.858	admin	2021-05-27 10:21:55.862	admin	\N	\N	60885987-1b61-4247-94c7-dff348347f93	\N	f	Administrator	admin	\N	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
1f701a08-75e4-2ef6-ec3d-3dccce2df9c1	4	2021-05-26 12:02:35.982	admin	2021-05-26 12:06:59.103	admin	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	108	f	Сергеев Сергей Сергеевич	sergeev	108	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
507fe753-9418-74b8-55ae-30d743a736c5	4	2021-05-26 12:01:37.537	admin	2021-05-26 12:07:06.176	admin	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	109	f	Антонов Антон Антонович	antonov	109	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
751e8f7b-9573-fb06-3331-e2491424d82f	3	2021-05-24 12:46:39.333	admin	2021-05-26 12:30:29.72	admin	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	101	f	Иванов Иван Иванович	ivanov	101	255821e6-0862-2a9a-5c85-483758999718
48360e62-8161-6870-1a8b-12974fd39779	5	2021-05-24 12:48:47.426	admin	2021-05-26 12:30:35.982	admin	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	102	f	Петров Петр Петрович	petrov	102	010c4433-da0e-8008-7c15-fb5bceebd11e
632fb0bf-ecb0-228f-b751-c79bbb8350c7	5	2021-05-24 12:49:31.905	admin	2021-05-26 12:30:41.256	admin	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	103	f	Семенов Семен Семенович	semenov	103	8700e684-3c1a-b199-f4de-807b7ced53cb
6b1d596a-bf57-8be5-2131-fc4cedcbb98b	4	2021-05-24 13:25:49.891	admin	2021-05-26 12:30:45.836	admin	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	104	f	Федоров Федор Федорович	fedorov	104	35157a31-8942-1884-2756-8e009bd66864
2ce3ea8c-d497-9f33-63c6-b57819b1a4a5	5	2021-05-27 10:08:04.79	admin	2021-05-27 18:55:39.552	diadoc	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	111	f	Диадоков Диадок Диадокович	diadoc	111	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc
\.


--
-- Data for Name: eademo_employee_department; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_employee_department (id, department_id, chief, main, employee_id) FROM stdin;
85f4b4a2-4d07-e761-9152-45493dd3d2e6	255821e6-0862-2a9a-5c85-483758999718	f	t	751e8f7b-9573-fb06-3331-e2491424d82f
0856c55d-4aab-e00b-4ebf-4005e5ea86c4	8700e684-3c1a-b199-f4de-807b7ced53cb	f	t	632fb0bf-ecb0-228f-b751-c79bbb8350c7
ccf952b5-60b0-9ad6-6819-db4d3d408f45	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	t	t	aba1ee98-ee0a-e6e8-e66f-f7604c5fd88a
b8db54c4-78d7-f707-f519-3ca800e1b39c	35157a31-8942-1884-2756-8e009bd66864	f	t	6b1d596a-bf57-8be5-2131-fc4cedcbb98b
94e957a7-2157-3c30-28f8-affd7f9bfd40	f9c3c4b1-7d1e-2725-f970-8ff039e9ee76	f	t	aa55a955-239a-d215-9636-69da7938787e
c2f9f5e2-8d97-f233-3ab2-660fce60f208	35157a31-8942-1884-2756-8e009bd66864	f	f	aa55a955-239a-d215-9636-69da7938787e
4967a6fb-d914-264d-fd8f-cbd6b8dbe3c4	255821e6-0862-2a9a-5c85-483758999718	f	f	aa55a955-239a-d215-9636-69da7938787e
d11fed42-3d4c-e826-e2bf-48128722721c	010c4433-da0e-8008-7c15-fb5bceebd11e	t	t	48360e62-8161-6870-1a8b-12974fd39779
0dff100d-9ba5-6a9f-6600-7ff73c93bd26	010c4433-da0e-8008-7c15-fb5bceebd11e	t	f	632fb0bf-ecb0-228f-b751-c79bbb8350c7
2a890b70-3885-887b-2f20-a9ed0652659f	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	t	t	e303b9a9-53eb-5abf-8044-71a0aa30d3dd
6497f44d-0d25-ff65-ab58-a434986e0e3e	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	t	t	507fe753-9418-74b8-55ae-30d743a736c5
ff7fe52d-cc81-6300-e2cc-67f1270b7bdc	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	t	t	1f701a08-75e4-2ef6-ec3d-3dccce2df9c1
e4a27900-ba28-11f7-abaf-b52135bd6827	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	f	t	240f69fd-0295-79ac-5b73-d76966b6497a
6b341bb6-432e-f1da-42e6-a9db9c8667c0	98e2bc42-3ab2-0cfe-4142-b496d00b1ecc	t	t	2ce3ea8c-d497-9f33-63c6-b57819b1a4a5
\.


--
-- Data for Name: eademo_entity_user_info; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_entity_user_info (id, important, entity_name, entity_id, user_id) FROM stdin;
b100b1c7-25de-2ef2-5777-e445b042978b	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	61580b7f-4803-3267-e46a-d62f7dde9ed3
9c933c60-12a9-1344-f9f1-a1c8062b48fe	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	60885987-1b61-4247-94c7-dff348347f93
3dc040ea-07c5-1bbb-d599-e2461ea2659f	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	61580b7f-4803-3267-e46a-d62f7dde9ed3
79ac7e00-be61-c863-4bd5-862dc75292af	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	6b4485d0-7457-285f-0fa2-911ade8cd040
ed2927ae-bec9-0874-003e-b14f4550def3	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	6b4485d0-7457-285f-0fa2-911ade8cd040
e479e8bb-ca77-0581-9ded-09ebacb8cc5e	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	b3c9058e-ac4d-258a-1173-b0dde3c42aec
e0e76e9b-1fd4-f04f-86d5-41a56e58e8e5	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	b3c9058e-ac4d-258a-1173-b0dde3c42aec
b2b97d22-5ab1-497c-384b-3c4dc701744d	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	7ab5b85e-e82a-8d7f-9287-2cb1062a6279
0a660978-eb4a-2ba6-7d90-ea5d634abb49	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	7ab5b85e-e82a-8d7f-9287-2cb1062a6279
ef143f68-b9a0-87cc-020b-ba6e3d9a03ed	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	61580b7f-4803-3267-e46a-d62f7dde9ed3
17bd880a-6e2e-c36a-649b-f15128fd46b7	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	6b4485d0-7457-285f-0fa2-911ade8cd040
3d34118b-4de2-a39f-f78c-6bb3c37556a1	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	b3c9058e-ac4d-258a-1173-b0dde3c42aec
ebf60c8a-6959-d226-9eb0-e2698c249402	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	7ab5b85e-e82a-8d7f-9287-2cb1062a6279
c16bd64e-331b-6f40-364c-d07b25409a1c	\N	eademo_DocPackageModel	029a3654-a876-c87c-a3d7-ea8c28459bfc	61580b7f-4803-3267-e46a-d62f7dde9ed3
2ec865f5-03f5-acfe-8d7a-493c90f76006	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	61580b7f-4803-3267-e46a-d62f7dde9ed3
58a71427-d6bc-b737-0104-168e9c80bb01	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	6b4485d0-7457-285f-0fa2-911ade8cd040
75e6ab9a-196d-2409-567b-d8ec0ecc872d	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	0668cb56-bed5-3032-20bc-96779e763230
58914dc5-05e4-f02b-3bba-670f43d31352	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	b3c9058e-ac4d-258a-1173-b0dde3c42aec
c338828f-1933-7e10-ab1c-8528fd95eac0	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	60885987-1b61-4247-94c7-dff348347f93
7017a55f-91f5-6afd-4ab7-7936574319bb	\N	eademo_DocPackageModel	029a3654-a876-c87c-a3d7-ea8c28459bfc	60885987-1b61-4247-94c7-dff348347f93
663f5721-3cf6-289d-5bc0-ce2d1ca1bf5a	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	60885987-1b61-4247-94c7-dff348347f93
022aeb4c-b19e-acdc-7a3c-dd6a083da3e9	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	60885987-1b61-4247-94c7-dff348347f93
525bd751-8576-db62-b03d-5afe617a868e	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	025b044b-3118-a272-35ef-869619f193e1
525f20b0-186d-2645-d5eb-e22acf11572b	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	025b044b-3118-a272-35ef-869619f193e1
8f67ea27-60c6-fe87-00c7-ee593d391d72	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	025b044b-3118-a272-35ef-869619f193e1
f3988b12-eef5-bb01-7f3d-22dde234967f	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	025b044b-3118-a272-35ef-869619f193e1
8b3ef548-0f38-8fc3-a652-bfa2d933ea3a	\N	eademo_DocPackageModel	029a3654-a876-c87c-a3d7-ea8c28459bfc	025b044b-3118-a272-35ef-869619f193e1
6307cc3b-467e-1328-ea56-6910135bd1ac	\N	eademo_DocPackageModel	029a3654-a876-c87c-a3d7-ea8c28459bfc	b3c9058e-ac4d-258a-1173-b0dde3c42aec
a1e6622f-ad4f-0f28-0c68-8c8848ab0532	\N	eademo_DocPackageModel	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	b3c9058e-ac4d-258a-1173-b0dde3c42aec
679aa0f5-0d62-0142-321d-7cad1b3c0ced	\N	eademo_DocPackageModel	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	b3c9058e-ac4d-258a-1173-b0dde3c42aec
04a521b3-36b2-19cf-c8d7-a86068e5e268	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	99f45003-a8b5-f733-ec33-717f492a0e0d
a58e9204-410a-ef3f-1ae2-92a2b02a5d4a	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	99f45003-a8b5-f733-ec33-717f492a0e0d
2fcc9f49-9c95-4ce0-bc1d-edfce5d3c339	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	99f45003-a8b5-f733-ec33-717f492a0e0d
b0951860-50c5-f0ea-c30e-037cf3cd30da	\N	eademo_DocPackageModel	029a3654-a876-c87c-a3d7-ea8c28459bfc	99f45003-a8b5-f733-ec33-717f492a0e0d
b5604129-82a4-3ef8-1d2d-04479195a69c	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	99f45003-a8b5-f733-ec33-717f492a0e0d
3b42886e-6b42-2aa7-d180-af8b4e56b3b5	\N	eademo_DocPackageModel	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	99f45003-a8b5-f733-ec33-717f492a0e0d
22f639aa-89fd-750b-5f27-c6941412e9bf	\N	eademo_DocPackageModel	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	99f45003-a8b5-f733-ec33-717f492a0e0d
ff675c60-37b3-17ed-0ed8-f11816dccd02	\N	eademo_DocPackageModel	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	61580b7f-4803-3267-e46a-d62f7dde9ed3
9f1127e7-d2fd-9d98-d120-41f74156f508	\N	eademo_DocPackageModel	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	6b4485d0-7457-285f-0fa2-911ade8cd040
78affaff-eaa1-bb7b-4529-f73eb8deb8c8	\N	eademo_DocPackageModel	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	b3c9058e-ac4d-258a-1173-b0dde3c42aec
c1708313-ed7a-4fff-5624-a515e1ff34eb	\N	eademo_DocPackageModel	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	0668cb56-bed5-3032-20bc-96779e763230
0b19147e-6547-1081-8497-d8d6b575d52f	\N	eademo_DocPackageModel	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	025b044b-3118-a272-35ef-869619f193e1
887e567c-88e6-80d2-e02a-131c3a19c1f1	\N	eademo_DocPackageModel	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	025b044b-3118-a272-35ef-869619f193e1
821fdf0c-b257-fd12-5389-56b33415c3d4	\N	eademo_DocPackageModel	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	025b044b-3118-a272-35ef-869619f193e1
d58807d2-e9c8-0cd8-8dc4-63149c5769ac	\N	eademo_DocPackageModel	97d0c1ae-9338-ef26-0733-fa29e876fb25	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
0c406afb-694e-8556-c93f-11bbff46e60c	\N	eademo_DocPackageModel	694d14a7-56bc-b52e-7130-f519021169c9	61580b7f-4803-3267-e46a-d62f7dde9ed3
8831ad8c-d1de-630c-ae9c-29699639c856	\N	eademo_DocPackageModel	694d14a7-56bc-b52e-7130-f519021169c9	6b4485d0-7457-285f-0fa2-911ade8cd040
b5d10b6f-d3fb-891b-2900-635ee7bd67c7	\N	eademo_DocPackageModel	694d14a7-56bc-b52e-7130-f519021169c9	0668cb56-bed5-3032-20bc-96779e763230
1941a4d7-62b4-7c36-0237-6f5a0a44dd3c	\N	eademo_DocPackageModel	694d14a7-56bc-b52e-7130-f519021169c9	b3c9058e-ac4d-258a-1173-b0dde3c42aec
d9ac723b-5a86-507e-747b-2e2edda57d0b	\N	eademo_DocPackageModel	694d14a7-56bc-b52e-7130-f519021169c9	025b044b-3118-a272-35ef-869619f193e1
93b93338-99f6-05a4-2d38-7190bb7f70ac	\N	eademo_DocPackageModel	8821657d-b2ff-8722-55df-c3bfc572ce60	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
0901db1d-d938-8fc5-45b6-c2b607e7b93a	\N	eademo_DocPackageModel	0f100017-a81f-266a-4521-26d416f53351	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
f22b14ee-a8d3-1c09-ac48-60219aa5f6ee	\N	eademo_DocPackageModel	484869c4-a9fc-15c6-3f22-d6156565ba15	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
c697dad8-9d74-309f-19e1-30069e3c9507	\N	eademo_DocPackageModel	029a3654-a876-c87c-a3d7-ea8c28459bfc	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
ef87e343-df1a-e887-c1ba-8ef0d58641f7	\N	eademo_DocPackageModel	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
fce6239c-7e59-c523-46eb-ea8440967038	\N	eademo_DocPackageModel	694d14a7-56bc-b52e-7130-f519021169c9	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
12be186c-c360-3529-c587-14056faf527e	\N	eademo_DocPackageModel	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
2359d136-aad9-64ed-44ed-19c2d846cd8c	\N	eademo_DocPackageModel	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
14d2dcdf-70e3-765b-a50f-302c11badf6f	\N	eademo_DocPackageModel	694d14a7-56bc-b52e-7130-f519021169c9	60885987-1b61-4247-94c7-dff348347f93
ae429e85-1d37-dd2b-fbce-6cbeecb42bec	\N	eademo_DocPackageModel	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	60885987-1b61-4247-94c7-dff348347f93
d766730e-7cd9-1931-c37c-08d577312063	\N	eademo_DocPackageModel	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	60885987-1b61-4247-94c7-dff348347f93
7f3839bc-9651-ce89-1b2d-2b7ee58aa1d0	\N	eademo_DocPackageModel	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	60885987-1b61-4247-94c7-dff348347f93
65b96550-59b0-c727-310c-cfb620196d8b	\N	eademo_DocPackageModel	f364049e-d1da-ae92-03b8-f9f13a1a686c	61580b7f-4803-3267-e46a-d62f7dde9ed3
74dbb96a-4871-e18d-c7d5-1ba55fe2ce0f	\N	eademo_DocPackageModel	f364049e-d1da-ae92-03b8-f9f13a1a686c	6b4485d0-7457-285f-0fa2-911ade8cd040
f4039801-5a03-9ee8-4624-492998fe9db9	\N	eademo_DocPackageModel	f364049e-d1da-ae92-03b8-f9f13a1a686c	b3c9058e-ac4d-258a-1173-b0dde3c42aec
c1ed5c17-0205-e098-4ab1-1eb6126d32dc	\N	eademo_DocPackageModel	f364049e-d1da-ae92-03b8-f9f13a1a686c	0668cb56-bed5-3032-20bc-96779e763230
9624316f-c478-38b1-5824-f5741c0b287c	\N	eademo_DocPackageModel	f364049e-d1da-ae92-03b8-f9f13a1a686c	025b044b-3118-a272-35ef-869619f193e1
40618369-b8a3-82ba-b765-70ebf8d58741	\N	eademo_DocPackageModel	f364049e-d1da-ae92-03b8-f9f13a1a686c	d079f5fd-b964-c39e-a1b6-4ffc099c13d6
90fad700-1604-7456-4892-4aa0477b394c	\N	eademo_DocPackageModel	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	61580b7f-4803-3267-e46a-d62f7dde9ed3
f6036060-848f-98e5-c7b0-e5b5217fe114	\N	eademo_DocPackageModel	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	6b4485d0-7457-285f-0fa2-911ade8cd040
9e30039c-214e-9cd4-5537-5ff75d84df2f	\N	eademo_DocPackageModel	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	0668cb56-bed5-3032-20bc-96779e763230
343a7f38-e641-21ab-a95f-caadcfb5aea8	\N	eademo_DocPackageModel	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	b3c9058e-ac4d-258a-1173-b0dde3c42aec
90161594-9e0d-f11a-77e2-a8f71de9ee39	\N	eademo_DocPackageModel	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	025b044b-3118-a272-35ef-869619f193e1
709929db-bfd3-2eb2-cdc1-5e10a418257a	\N	eademo_DocPackageModel	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	60885987-1b61-4247-94c7-dff348347f93
35a54fe6-4034-82ff-6cc3-845c9241c689	\N	eademo_DocPackageModel	f364049e-d1da-ae92-03b8-f9f13a1a686c	60885987-1b61-4247-94c7-dff348347f93
0c5f68c8-e3ac-0d82-1f1a-21d01ba78020	\N	eademo_DocPackageModel	35c71334-fdba-2993-f8af-15fd883c00e7	60885987-1b61-4247-94c7-dff348347f93
c11860f3-8586-af5c-3301-e98f9c723f78	\N	eademo_DocPackageModel	dcdf45d9-d927-7aff-f7e0-6f04fec60107	60885987-1b61-4247-94c7-dff348347f93
cb34799e-f372-744e-7be9-575103187e0b	\N	eademo_DocPackageModel	35c71334-fdba-2993-f8af-15fd883c00e7	4749b08a-0141-ce93-ef4e-efcedc87d28c
\.


--
-- Data for Name: eademo_fixed_asset; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_fixed_asset (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, num, name, parent_id) FROM stdin;
\.


--
-- Data for Name: eademo_notification; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_notification (id, message_type, title, body_, recipient_id, created, related_object_name, related_object) FROM stdin;
\.


--
-- Data for Name: eademo_operation_type; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_operation_type (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, code) FROM stdin;
f198dfc0-4fee-942b-6a84-6dd583299da1	2	2021-05-19 18:29:37.5	admin	2021-05-19 18:29:37.5	\N	2021-05-19 18:29:42.869	admin	1	1
6ff9ef99-0aff-2a1a-6df0-69a0fe5d8f7e	1	2021-05-24 18:06:26.051	admin	2021-05-24 18:06:26.051	\N	\N	\N	Претензия поставщику	4
c8d533e4-74ac-4414-4b4b-99fdafb9641d	2	2021-05-24 11:39:32.711	admin	2021-05-24 18:07:08.989	admin	\N	\N	Авансовый отчет на командировку	1
cbd47aa7-4df8-d6ea-5483-c1ab2aaa9221	3	2021-05-24 18:05:48.754	admin	2021-05-24 18:07:13.456	admin	\N	\N	Договор	3
93ef0f4d-0a64-d2d9-b1e5-338ef409daf8	2	2021-05-24 14:31:13.073	admin	2021-05-24 18:07:21.821	admin	\N	\N	Платежи контрагентам в рублях	2
130c5ee5-4641-88e4-4417-0f0647107d27	1	2021-05-24 18:07:43.989	admin	2021-05-24 18:07:43.989	\N	\N	\N	Авансовый отчёт	6
a5f4e90e-1fe4-9d1c-613c-f73a854e4c97	1	2021-05-24 18:08:08.808	admin	2021-05-24 18:08:08.808	\N	\N	\N	Выписка по банковскому счёту	7
37909a4a-a3a9-596f-0599-11e34a72f5bc	1	2021-05-24 18:09:04.995	admin	2021-05-24 18:09:04.995	\N	\N	\N	Аренда	9
eca15b35-a8cd-27f4-5c9c-0b7d91ebfb06	1	2021-05-24 18:09:29.651	admin	2021-05-24 18:09:29.651	\N	\N	\N	Бухгалтерская справка	10
1c342e39-66fc-e152-0337-8f3c6007ba54	1	2021-05-26 17:22:28.318	admin	2021-05-26 17:22:28.318	\N	\N	\N	Закупка локальных автокомпонентов и стали	005
07a72920-71fc-1561-d39f-7a636d7f5102	1	2021-05-27 18:43:01.945	admin	2021-05-27 18:43:01.945	\N	\N	\N	Основная реализация автомобилей на внутренний рынок	040
688a1ece-74cb-8706-ec49-abde81145cf4	1	2021-05-27 19:03:56.403	admin	2021-05-27 19:03:56.403	\N	\N	\N	Прочая реализация на внутренний рынок (кроме аренды и ОС)	048
80fd2dfd-e412-b697-9e33-c04e501eb50c	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.64	admin	atest	atest
826da538-583e-e299-2531-ad3cd4a296fe	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.699	admin	ОСАГО	072
ad66739d-08c6-4e6d-2919-c63d004bcf03	1	2021-05-24 18:06:55.324	admin	2021-05-24 18:06:55.324	\N	\N	\N	Иные бухгалтерские справки	5
261c599c-00ab-91fa-f0f6-24a8ace2d902	1	2021-05-24 18:08:32.007	admin	2021-05-24 18:08:32.007	\N	\N	\N	Поступление от контрагентов в рублях	8
58a569d7-474e-445c-e88b-093ef3272e64	1	2021-05-24 18:18:05.852	admin	2021-05-24 18:18:05.852	\N	\N	\N	Претензия от поставщика	11
c4ec056f-ee2a-82fa-bd34-7e2c519aaf46	1	2021-05-24 18:19:07.971	admin	2021-05-24 18:19:07.971	\N	\N	\N	Налоговые платежи	12
94fa05f4-b9d1-6b3d-40ff-90de872c24c5	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.593	admin	Закупка НМА	095
8464ae9c-63fd-4385-534e-3be5827bbaf2	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.62	admin	Работы по разукомплектованию	171
874378ba-eba2-e857-fcbe-fb22ea26df5e	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.639	admin	Прочая реализация (ОС, услуги, труд. книжки)	AR136-d
89bb3e00-6d21-8713-4f40-d1a614138a72	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.648	admin	Страхование ОПО	077
8b8604a0-a2d8-fbab-e876-f5d339e72394	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.677	admin	Списание ОС	094
8c3ef340-85a2-f3ce-986d-4f222d8fc90f	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.631	admin	Сводный реестр подарков	063
8db1e9fb-a791-bf57-8735-87951ba79c3e	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.701	admin	Перевыставление административных штрафов	045
8f1d1ff0-f709-9850-84d6-e11ec183e9c8	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.597	admin	Прочая реализация на внутренний рынок (кроме аренды и ОС)	048
902cb41a-89f1-5b69-701f-4863a823c313	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.714	admin	Реализация автомобилей на экспорт	042
909a09a1-1625-1d18-d849-8478aecc24b1	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.601	admin	Акт взаимозачета	083
95022f58-7df0-0985-7b12-a498889689cc	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.646	admin	Бухгалтерская отчетность	120
96664120-77f5-53c1-04ef-84bb42e4c287	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.657	admin	Работы инвестиционного характера	010
99259291-523b-1c70-285b-c325bd9252a8	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.703	admin	нг	78
9bc8bb19-2ae7-437e-2405-940db72cf13b	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.659	admin	Бухгалтерская отчетность	GA152-d
9bf8f18b-c342-d2c1-34bd-21c1bb32a08d	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.654	admin	Обеспечение условий труда для сотрудников (перевозка, спецодежда, питание, медицинские услуги)	022
9c9dae56-a4bc-5fca-1b3d-9858b891f278	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.596	admin	Списание основных средств	IA144-d
9d6c2323-60f2-e467-f529-fb0fa3a02ebf	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.714	admin	Приходный ордер М-4 (закупка локальных и импортных автокомпонентов)	009-4
9ef0c782-8ce5-1e10-a8ac-80e4c499ce40	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.65	admin	Инвентаризация	WH168-d
a0501f34-b186-52d6-d899-32606c2eb253	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.624	admin	1	1
a0eb9536-5b08-2dc9-b170-396f71ff36b8	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.6	admin	Перевыставление расхода на поставщиков	AR135-d
a30e6c9e-8377-ff36-cd9e-cabc2a36913f	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.722	admin	11111	11111
a342733f-14d6-e0c4-3a4a-fe1d04b69c38	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.625	admin	Выдача подарков неперсонифицированная	181
a4452ce0-264f-9a9e-979b-aaf6431df365	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.661	admin	Отпуск зап.частей дороже 40 т.р.за ед. в производство	166
a49e1f42-4279-f8a1-6f39-82c977ec9a29	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.653	admin	Приходный ордер М-4 (краска КСС)	009-2
a532685d-63a7-a0fc-5dd9-8524e0140857	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.616	admin	Операция 1	oper1
a7404888-d092-fab2-38bf-502e5fa9daf7	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.593	admin	Годовая инвентаризация ОС	100
a78d17d5-ed5a-4c0c-0467-0cf9587122c6	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.651	admin	Личная карточка учета выдачи СИЗ/форменной одежды	WH166-d
a8b93fd5-942f-e4b3-4400-97c111093c68	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.658	admin	Прочее перевыставление расходов	044
a97e0bd6-028f-70cc-1e70-b0e9e8f09c78	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.645	admin	вв	23
a9be67a2-cce0-58dd-da16-cd8f5847835e	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.62	admin	Прочая реализация на экспорт	049
ab445fbd-59a8-b531-1925-970227843c4a	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.683	admin	Прочие услуги (ЗСД, сертификация, комиссии банкам, охрана, аренда газовой станции, хранение документов, обращение с отходами)	023
ac1abaa8-0635-07ae-44a3-de237a8fb81f	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.656	admin	Авансовый отчет на командировку	156
ac98cb51-20dc-83c9-d440-0fa49c408f0b	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.61	admin	ДОСАГО	073
ae70da36-916c-7e7d-9a7d-34ae4ec8e911	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.605	admin	Поступление материалов	009
af4127b2-46fb-61a4-cfd5-f38b868b271d	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.607	admin	Поступление от контрагентов в валюте	152
af681361-b40d-2fb1-c5d4-a1ebb35e7154	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.674	admin	КАСКО	074
afeeb5e0-f0a2-5e3d-369b-78a17aaec565	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.661	admin	Прочая реализация услуг и аренды	AR128-d
b01eb518-ea2b-cb1c-bf86-6c62aa234bec	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.591	admin	Налог на прибыль	110
b07a7815-d6e6-ba96-6735-2b2c9529bda8	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.614	admin	Транспортный налог	114
b0df21ab-7fa4-a98f-4526-9eebf0533638	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.644	admin	Закупка прочих импортных материалов	004
b1193fc6-1107-b072-59e5-8681575b9dd0	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.6	admin	Импорт комплектующих (KD)	AP100-d
b2d2b8c3-84a3-c73b-92ef-15413487838f	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.653	admin	Бухгалтерская справка	060
b3d7fc20-c0a7-c032-496c-25a86263c3c8	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.589	admin	ДМС	075
b5d32181-eec1-ec52-9e25-a968806d35da	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.598	admin	Страхование от НС	AP117-d
b6aeb566-813f-9d48-44df-0ea9ded7bf40	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.605	admin	Возврат товара поставщику	039
b9e08a78-bae2-4c38-f19e-b0966aa97b93	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.67	admin	Импорт прочих материалов	AP102-d
bcc6438f-faea-f531-ca25-dc06d0950685	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.619	admin	Брак, уничтожение непрямых материалов	163
c0c9949c-3953-44b9-d433-247db3ea39a0	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.702	admin	Расчет	Р.01
c1b561c7-15dc-ceda-fe95-ccce00657a1f	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.659	admin	Продажа автомобилей на экспорт	AR125-d
c5333a2f-4e51-8865-2a17-288f17f02958	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.65	admin	Транспортный документ (DKD экспорт)	086
cb2f0d32-58da-3ab3-333c-bc00abc4e6eb	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.608	admin	Торговые знаки Royalty, выпуск ПТС	024
cc139193-893a-5e08-9b25-33c7bb0531df	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.616	admin	Налог на имущество организаций	113
cd1d90f4-68c5-5e06-7c78-51e979e1410e	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.604	admin	Организация мероприятий	026
cd545a6a-4a9e-dfd3-8b4d-3d642bd72e70	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.724	admin	Переписка с государственными органами	GA153-d
cdb2153d-5721-0bd5-9890-df75b0dec612	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.658	admin	Статистическая отчетность	130
ce32ea0d-5c4c-8582-01da-9c5f3fa5b456	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.678	admin	Статистическая отченость	GA151-d
ce33e072-cc2f-18d3-f862-a28e7a3a72c7	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.624	admin	003-1	003-1
cf70e4b5-b4c6-2517-f896-921a8a8f7b6b	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.673	admin	Закупка услуг брокера за таможенное оформление	AP109-d
d1664f6e-06d8-510c-6426-8c1084afde89	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.705	admin	Почтовые услуги	014
d2d110dc-85e3-1854-8233-5a3732c43c84	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.725	admin	Годовая инвентаризация МПЗ	101
d453ca98-8b82-0934-2ae8-db1a4fc2b2c9	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.613	admin	Услуги по ТО, диагностике, уборка, ремонту зданий, оборудования, автомобилей	011
d50956e1-b851-dfa1-087e-b860cec92b9a	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.659	admin	Входящая претензия от покупателя	064
d56d1a0d-6366-79b2-aba7-f5be3fbb7015	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.588	admin	Возврат товара от покупателя	051
d60f8ec9-0259-c554-4beb-f7641dc6cc5b	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	admin	2021-05-19 18:47:02.63	admin	Проблемный штрих-код	barcodeProblem
d629fba5-7035-c334-820e-b3ddcbf09e4e	4	2020-08-17 09:46:59.004	admin	2021-05-19 18:37:29.122	admin	2021-05-19 18:47:02.637	admin	WH.17	173
d7396102-8ba4-1b09-b225-097dd4024aac	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.661	admin	Приходный ордер М-4 (прочие закупки)	009-3
d8416672-b4ef-2c2a-6e6e-5ed7489c4ddc	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.648	admin	НДС	111
dd1f712a-b458-ca79-c694-cbe006521bbb	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.615	admin	Счёт от поставщика на предоплату	033
de6ff3e5-322e-b8eb-6fb1-b7c6c6c5d099	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.663	admin	Выдача подарков	WH172-d
e36ca266-36af-b1b9-86fc-d88d2e944325	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.71	admin	Списание с 15 счета на затраты дополнительных расходов, связанных с приобретением материалов	GA139-d
e450ded4-3970-6c91-d3ce-3b7927157e46	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.612	admin	Командировочные расходы (билеты, проживание, визы)	012
e5c48e1b-dd25-b12b-b3bd-3453e7a0956c	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.642	admin	Списание ГСМ	167
e5daad3b-7892-37d9-d63b-3ed20092dbab	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.611	admin	Гарантийный ремонт	027
ea1128f4-38b2-8a98-70cb-62f44c658592	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.647	admin	Исходящая претензия	030
ec458829-2e11-5daf-11b2-5eaf88336c9e	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.606	admin	Годовая инвентаризация средств в расчётах	102
edfa07fc-5eaf-487f-42fe-c6ad8d9510b4	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.7	admin	Новая операция (тест)	19032020
ee3b438c-cd7b-b7eb-408e-866436cd5512	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.59	admin	Поступление от контрагентов в рублях	151
f23b8f39-9ccc-70fb-6a43-b5cd68dd0500	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.667	admin	Акциз	112
f2844cab-d298-5083-49c1-86f65757f37c	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.652	admin	Проверка благонадежности контрагентов	TR154-d
f28a1cea-2226-8dad-7443-a153d40ea673	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.614	admin	Субсидии	159
f3f0139c-45c0-bbf5-41cb-8fdc371dd5f9	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.623	admin	Прочая реализация на экспорт	AR127-d
f62ece96-9de4-967e-b872-6e2ca5ec202c	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.627	admin	Спецодежда, спецобувь и СИЗ	161
f6eb68a9-f725-752c-5fa9-25a4df8ce7ad	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.608	admin	WH.14	168
f8cae781-51c9-762f-8bc3-06efc4532013	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.703	admin	Выдача подарков персонифицированная	180
fb0470e9-8724-4620-03da-3dc57da0228d	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.708	admin	Безвозмездное получение материалов	003
fcaa6d51-60ce-3607-4e12-b54f0b60793f	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.595	admin	Возврат СИЗ	WH167-d
fda4633a-847d-d2ef-b558-126acb1dbeed	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.629	admin	Закупка импортных автокомпонентов (KD)	001
fddb5b07-2ff1-3a14-9f50-4dddaeadd718	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.587	admin	Отпуск непрямых материалов в производство кроме зап.частей дороже 40 т.р.за ед.	165
0019e02d-5b35-fe9b-baa3-8c86f33d2c0e	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.616	admin	Бухгалтерские регистры	141
02088470-46c0-8f5b-ae8f-ca5c0299f26d	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.704	admin	Закупка прочих работ/ услуг	AP111-d
024702e4-9c59-3a76-87f3-39d2bf7af256	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.675	admin	Передача готовой продукции в места хранения	170
03747bb1-7876-1a32-2874-656bc44c3b21	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.643	admin	Страхование от НС	076
06418f53-5ccc-31cb-5758-2a83dfd9f4dc	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.628	admin	Страхование	061
09e572f5-2c9f-ecf3-f2c7-2d6ae833476f	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.689	admin	Административный штраф	032
0b17e0f5-0d3f-a0c8-83bf-94b0bcfbf650	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.7	admin	Консервация ОС	091
0ccb6676-dd91-ef70-82d3-9b5571386a05	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.638	admin	Земельный налог	115
0d5585ad-0b5e-5b71-f009-0e618a4cb651	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.621	admin	Прочая реализация ТМЦ	AR126-d
0d6ee553-9c41-71bc-ea02-ed81d69b971f	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.704	admin	Закупка оборудования	AP.060
0e811baa-111c-064d-13dc-6440cfa6bcd7	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.617	admin	Закупка прочих локальных материалов (кроме автокомпонентов)	006
0f8222c2-4b9d-8c0c-e884-2dabdd1df61d	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.645	admin	Сверка взаиморасчётов	GA161-d
0ff3dfff-3ea7-8e59-9595-68cbb3956d7a	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.656	admin	WH.15	169
112da74d-6389-c1ab-8643-1d28e9f821c2	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.649	admin	Услуги по транспортировке грузов	019
13f3e9db-9a22-0e8f-f8b6-aec1721eb461	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.617	admin	Услуги по газу, воде и электроэнергии	015
14ec0872-1bde-de1c-de5d-68cbb3fd1184	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.701	admin	Закупка локальных материалов	AP.050
15e6b4aa-1fef-0afd-b7a1-76e8bb3cfe2f	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.589	admin	Основная реализация автомобилей на внутренний рынок	040
16fa6f89-d660-fd26-b746-be396a4c1148	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.603	admin	Авансовый отчет на прочие расходы	157
17b9abb9-6c50-8057-1058-099ddf78f9be	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	admin	2021-05-19 18:47:02.646	admin	TR_Поступление от контрагентов в рублях	02
17df910d-ded9-4e1e-4989-41ed4b02a246	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.655	admin	Услуги по предоставлению персонала	013
1bd2ebd1-db3d-a5c3-56b8-e7103ffaece6	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.601	admin	Возврат имущества из аренды	047
1df30f9d-12e8-fad0-4bd2-71fb60cbae28	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	admin	2021-05-19 18:47:02.618	admin	TR_Платежи контрагентам в рублях	04
1e8c19f9-6ecf-c493-6e2a-97cc4baa7d89	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.641	admin	Расходы будущих периодов	062
21c52a59-2a80-40ae-c636-5512ef5e7411	2	2021-05-19 18:37:29.104	admin	2021-05-19 18:37:29.104	lprivoz	2021-05-19 18:47:02.707	admin	AP_Безвозмездная поставка/оприходование материалов ( Россия)	AP11
21c52a59-2a80-40ae-c636-5512ef5e7412	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.708	admin	AP_Безвозмездная поставка/оприходование материлов ( без таможенной очистки)	AP12
21c52a59-2a80-40ae-c636-5512ef5e7413	2	2021-05-19 18:37:29.104	admin	2021-05-19 18:37:29.104	lprivoz	2021-05-19 18:47:02.709	admin	AP_ДМС	AP13
21c52a59-2a80-40ae-c636-5512ef5e7414	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.709	admin	AP_ДОСАГО	AP14
21c52a59-2a80-40ae-c636-5512ef5e7415	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.71	admin	AP_Закупка услуг по разукомплектованию	AP15
21c52a59-2a80-40ae-c636-5512ef5e7416	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.711	admin	AP_Закупка услуг по транспортировке автокомпонентов	AP16
21c52a59-2a80-40ae-c636-5512ef5e7417	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.711	admin	AP_Закупка услуг по транспортировке ГП и DKD на экспорт	AP17
21c52a59-2a80-40ae-c636-5512ef5e7418	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.706	admin	AP_Закупка услуг по транспортировке для анализа/теста продукции	AP18
21c52a59-2a80-40ae-c636-5512ef5e7419	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.706	admin	AP_Закупка/оприходование локальных автокомпонентов	AP19
21c52a59-2a80-40ae-c636-5512ef5e7420	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.715	admin	AP_Закупка/оприходование локальных материалов (кроме автокомпонентов)	AP20
21c52a59-2a80-40ae-c636-5512ef5e7421	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.716	admin	AP_Импорт комплектующих (KD)	AP21
21c52a59-2a80-40ae-c636-5512ef5e7422	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.716	admin	AP_Импорт краски от KCC	AP22
21c52a59-2a80-40ae-c636-5512ef5e7423	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.717	admin	AP_КАСКО	AP23
21c52a59-2a80-40ae-c636-5512ef5e7424	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.718	admin	AP_ОСАГО	AP24
21c52a59-2a80-40ae-c636-5512ef5e7425	2	2021-05-19 18:37:29.105	admin	2021-05-19 18:37:29.105	lprivoz	2021-05-19 18:47:02.718	admin	AP_Претензия поставщику	AP25
21c52a59-2a80-40ae-c636-5512ef5e7426	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.719	admin	AP_Страхование от НС	AP26
21c52a59-2a80-40ae-c636-5512ef5e7427	2	2021-05-19 18:37:29.104	admin	2021-05-19 18:37:29.104	lprivoz	2021-05-19 18:47:02.719	admin	AR_Developer fee	AR27
21c52a59-2a80-40ae-c636-5512ef5e7428	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.712	admin	AR_Генерация пара котельной	AR28
21c52a59-2a80-40ae-c636-5512ef5e7429	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.713	admin	AR_Перевыставление расхода на поставщиков	AR29
21c52a59-2a80-40ae-c636-5512ef5e7430	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.721	admin	AR_Продажа автомобилей на внутрненний рынок	AR30
21c52a59-2a80-40ae-c636-5512ef5e7431	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.721	admin	AR_Продажа автомобилей на экспорт	AR31
21c52a59-2a80-40ae-c636-5512ef5e7432	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.722	admin	AR_Продажа отходов	AR32
21c52a59-2a80-40ae-c636-5512ef5e7433	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.723	admin	AR_Прочая реализация (ОС, услуги, труд. книжки)	AR33
21c52a59-2a80-40ae-c636-5512ef5e7434	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.723	admin	AR_Реализация бланков	AR34
21c52a59-2a80-40ae-c636-5512ef5e7435	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.725	admin	AR_Сдача автомобиля в аренду	AR35
21c52a59-2a80-40ae-c636-5512ef5e7436	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.726	admin	AR_Субконтрактинг	AR36
21c52a59-2a80-40ae-c636-5512ef5e7437	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.726	admin	GA_Иные бухгалтерские справки	GA37
21c52a59-2a80-40ae-c636-5512ef5e7438	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.719	admin	GA_Отчёт о работе транспорта	GA38
21c52a59-2a80-40ae-c636-5512ef5e7439	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.72	admin	GA_Расчет RAS себестоимости	GA39
21c52a59-2a80-40ae-c636-5512ef5e7440	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.68	admin	GA_Списание с 15 счета на затраты дополнительных расходов, связанных с приобретением материалов	GA40
21c52a59-2a80-40ae-c636-5512ef5e7441	2	2021-05-19 18:37:29.106	admin	2021-05-19 18:37:29.106	lprivoz	2021-05-19 18:47:02.686	admin	GA_Списание с 16 счета нераспределенных сумм отклонений	GA41
21c52a59-2a80-40ae-c636-5512ef5e7442	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.687	admin	TR_Авансовый отчёт	TR42
21c52a59-2a80-40ae-c636-5512ef5e7443	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.688	admin	TR_Банковская выписка	TR43
21c52a59-2a80-40ae-c636-5512ef5e7444	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.688	admin	TR_Ведение договоров	TR44
21c52a59-2a80-40ae-c636-5512ef5e7445	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.689	admin	TR_Заявление о постановке на учёт внешнеэкономического контракта	TR45
21c52a59-2a80-40ae-c636-5512ef5e7446	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.69	admin	TR_Проверка благонадежности контрагентов	TR46
21c52a59-2a80-40ae-c636-5512ef5e7447	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.691	admin	WH_Выдача подарков	WH47
21c52a59-2a80-40ae-c636-5512ef5e7449	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.676	admin	WH_Инвентаризация	WH49
21c52a59-2a80-40ae-c636-5512ef5e7450	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.692	admin	WH_Отпуск запасных частей для ремонта ОС	WH50
21c52a59-2a80-40ae-c636-5512ef5e7451	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.693	admin	WH_Отпуск материалов в производство	WH51
21c52a59-2a80-40ae-c636-5512ef5e7452	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.693	admin	WH_Передача готовой продукции в места хранения	WH52
21c52a59-2a80-40ae-c636-5512ef5e7453	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.694	admin	WH_Приём автокомпонентов после выполнения работ по разукомплектованию	WH53
21c52a59-2a80-40ae-c636-5512ef5e7454	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.695	admin	WH_Признание брака	WH54
21c52a59-2a80-40ae-c636-5512ef5e7455	2	2021-05-19 18:37:29.107	admin	2021-05-19 18:37:29.107	lprivoz	2021-05-19 18:47:02.696	admin	WH_Тестирование полуфабрикатов, материалов, кузовов	WH55
21c52a59-2a80-40ae-c636-5512ef5e7456	2	2021-05-19 18:37:29.104	admin	2021-05-19 18:37:29.104	\N	2021-05-19 18:47:02.698	admin	WH_Уничтожение покупных полуфабрикатов, материалов, кузовов	WH-56
2268254f-9bc2-c4fa-e0d1-b7f89a83e188	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.599	admin	Безвозмездное поступление	AP.990
24440668-d142-aecf-be24-7156984ad48d	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.591	admin	Генерация пара котельной	AR134-d
24fccf3c-071a-ab73-50b8-bfef1b08d98f	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.611	admin	Выписка по банковскому счёту	150
267a84fe-e420-c54d-4a42-e3f7cc8c54be	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	admin	2021-05-19 18:47:02.61	admin	TR_Поступление от контрагентов в валюте	TR59
2f281b93-a16a-4c37-eb05-7cd97453fff7	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.698	admin	Акциз	GA150-d
2f67de7d-ed90-676c-0f34-68a9f74bb2d2	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.713	admin	Заявка на оплату	158
2f802e1f-c8e7-452d-2e29-b9926cbad5bf	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.64	admin	Консервация ОС	IA142-d
31b33362-4c92-a5eb-786c-1a30fc137537	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.629	admin	Developer fee	AR133-d
33a98643-bb7d-117b-8aa5-268305ca9e89	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.615	admin	Платежи контрагентам в валюте	154
38b62e4d-6b87-31bf-dc20-ce348cd34131	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.655	admin	Услуги по обучению и консультационные	016
39405a42-d315-9d96-6d30-08f19ae0aa0a	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.622	admin	Закупка средств маркировки документов	ZZZ.123.123
3a176b66-39f0-0c92-a5b8-00c1cf041adc	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.624	admin	ДМС	AP116-d
3c128d66-0aaf-ac9e-3e7c-a7202c03256c	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.672	admin	Передача имущества в аренду	046
3d9fe983-b6bf-b0ed-d98d-67eba41f07dc	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.717	admin	Реализация металлолома и отходов	052
3df8e51e-9662-ed03-7009-47795a6e2cb8	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.592	admin	Отпуск прямых материалов в производство (ВД 291/292,309)	160
3e356037-61be-8d33-f520-7d460b78ebaa	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.598	admin	Поступление от контрагентов в рублях	TR157-d
402b815d-6f22-9727-8a29-976453d32235	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.707	admin	Аренда	a12
4148249d-1c87-87c8-5fe3-11dcdb78bc5e	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	admin	2021-05-19 18:47:02.676	admin	TR_Выписка по банковскому счёту	01
41d3c2d8-5a1f-cb50-51a4-0211f22eb576	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.622	admin	Приходный ордер М-4 (сталь)	009-1
43afdd49-f43e-0ac8-599a-971eafafd3d5	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.641	admin	Брак, тестирование, уничтожение прямых материалов и п/ф собственного производства	162
44b66dc5-76cf-4fda-9f6c-7c7a5436362a	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.669	admin	Закупка работ/ услуг/материалов Диадок	199
44c983f4-5656-0ff5-e3c6-4a4a2c26342a	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.651	admin	PWC-документ УПД	bankAccountBalance
46624ed1-08ec-5a32-61ef-b9eb26310096	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.628	admin	Сверка взаиморасчётов	082
4731c0d9-2a1c-9080-6309-e0f50b9319a7	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.626	admin	WH.16	172
477e25a8-0044-7ba1-b17b-02d50934687b	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.706	admin	Разукомплектование транспортных средств	AP108-d
490c1ca6-0787-4e4d-9594-e88bdff630d5	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.604	admin	Тестирование, выбраковка и уничтожение материалов, товаров и полуфабрикатов собственного производства	WH171-d
49f98896-fa13-a11e-fbf8-a11d579f0746	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.606	admin	Закупка материалов через Авансовый отчет	AP122-d
4a3f253a-db69-b959-f074-527dd1728f04	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.657	admin	Тестирование, выбраковка и уничтожение покупных полуфабрикатов и деталей в сборе	WH169-d
4a7fb54c-bc1d-87d2-2b01-5b2f355541e4	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.607	admin	Ведение пакета мигранта	9001
4a7fe7e3-14f4-323c-0371-b1b92ad91529	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.609	admin	Закупка основных средств от локальных поставщиков	IA145-d
4aa33922-9694-3ef0-d364-790ad17ced00	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.72	admin	Заявка на создание карточки по основным средствам	IA147-d
4cb65e06-2f7c-7fac-1e46-482d4650b7cb	2	2021-05-19 18:37:29.109	admin	2021-05-19 18:37:29.109	\N	2021-05-19 18:47:02.692	admin	Закупка услуг по транспортировке ГП и DKD на экспорт	AP105-d
4dd1208b-d637-32c7-b8e9-23c74175398d	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.612	admin	Постановка ОС на учёт / модернизация	090
4e32a167-51de-39a5-db4a-03c621512fab	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.66	admin	Проверка благонадежности контрагентов	070
4e7c16aa-bd2b-a65f-1ad6-c4020e01c07d	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.647	admin	Администрирование системы - импорт данных	PWCMANADM
4ed31e31-d183-caf3-f7e8-32c602e3c084	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.631	admin	ПродажаКомиссия	diad274
54886ed4-48f4-e3f4-d397-fc9fdd926c22	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.715	admin	Счёт от поставщика на пост-оплату	031
54c556dd-214a-cf2f-246a-014ef12b3239	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.602	admin	Прочие запросы	140
558f1064-55eb-f1d9-e090-7da3b78e4994	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	admin	2021-05-19 18:47:02.642	admin	TR_Платежи контрагентам в валюте	TR61
56689b5b-e710-fe5d-84bf-4f19b2ff6cec	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.705	admin	Инвентаризация денежных средств	103
579fa562-1931-1519-3c08-2543b8e7351e	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.609	admin	Выставление счёта на оплату	041
57aa398d-fa02-9361-be2d-d9318bb31683	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.668	admin	ро	98
58661c87-5cc2-821c-2dc4-80d504982b7d	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.627	admin	006-1	006-1
5aad203d-3abb-0b54-3953-7d91fdd4fff7	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.697	admin	тест	тест
5c2372f3-90d4-049d-cae7-5962883849d2	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.644	admin	Отпуск непрямых материалов в производство	WH163-d
5d8aee81-a8fa-8867-2ab3-4fc7b902c75c	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.626	admin	Экспедиторская расписка	085
5fda27c4-a181-7563-cf22-c1585e7ff188	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.672	admin	Ведомость банковского контроля	155
616c500e-f013-8164-7ba8-98f998aa993b	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.63	admin	Реализация ОС	093
624b9aae-62de-7a55-cc52-4e39342e1e26	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.589	admin	Платежи контрагентам в рублях	153
6253a312-e3ad-7988-487f-634ee5486731	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.594	admin	Закупка локальных автокомпонентов и стали	005
64697ea2-619c-c3d9-48a2-72219e99f7fe	2	2021-05-19 18:37:29.11	admin	2021-05-19 18:37:29.11	\N	2021-05-19 18:47:02.669	admin	Закупка/оприходование локальных материалов (кроме автокомпонентов)	AP104-d
6a95dee1-57c5-39bc-6cb7-b73f1caa5b7f	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.603	admin	Закупка краски KCC	002
6cec69cb-86c7-f8ef-7f2c-dff1bd6c18fc	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.599	admin	Договор	071
6de263be-ce2f-83f4-9af0-a1ac5b0aaa5e	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.691	admin	Поручение экспедитору	084
6f8ea5c8-7002-fecd-0c64-7a58659bd3ac	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.613	admin	Услуги водителей	025
7230d05d-2650-af56-1cd0-949c32ff59f6	2	2021-05-19 18:37:29.108	admin	2021-05-19 18:37:29.108	\N	2021-05-19 18:47:02.595	admin	Закупка услуг по транспортировке для анализа/теста продукции	AP107-d
74ddc456-c3b2-e322-41b6-196cfcb16301	2	2021-05-19 18:37:29.118	admin	2021-05-19 18:37:29.118	\N	2021-05-19 18:47:02.671	admin	Закупка импортного оборудования	004-1
75bdc1af-3e49-1e5a-b3cf-c2b5ccbfda71	2	2021-05-19 18:37:29.117	admin	2021-05-19 18:37:29.117	\N	2021-05-19 18:47:02.702	admin	PWCCONS_ARCHIVE-216	PWCCONS_ARCHIVE-216
75da37ee-d7e0-1de8-8d9a-3d3f30e8d4eb	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.618	admin	Перевыставление расходов на водоотведение	043
75fdc5f0-2b69-74c7-b874-4b4d5f0ad00f	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.699	admin	Учет судебных расходов	017
76825677-e931-36cd-c8ca-5f9bbc0d56b2	2	2021-05-19 18:37:29.113	admin	2021-05-19 18:37:29.113	\N	2021-05-19 18:47:02.639	admin	Подтверждение экспорта	050
76964974-8ef1-a6a1-1fa9-ed98b624ef8c	2	2021-05-19 18:37:29.114	admin	2021-05-19 18:37:29.114	\N	2021-05-19 18:47:02.593	admin	Управление тестовыми (пилотными) автомобилями/кузовами	164
77042e70-8add-2dc3-2942-0544043c3b63	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.654	admin	Закупка услуг по транспортировке автокомпонентов	AP106-d
771418ff-fbf8-851f-e2d8-10a0612c3f70	2	2021-05-19 18:37:29.111	admin	2021-05-19 18:37:29.111	\N	2021-05-19 18:47:02.652	admin	Реализация бланков	AR132-d
7b34b015-1c38-8a3f-be28-26ce2bed1c18	2	2021-05-19 18:37:29.116	admin	2021-05-19 18:37:29.116	\N	2021-05-19 18:47:02.596	admin	Услуги таможенного брокера	020
7bfdec7e-d0ce-81a7-12e5-d26088de5015	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.621	admin	Входящая претензия от поставщика	065
7d1b4ad4-054d-d570-4eaf-51b012891e7a	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.592	admin	Услуги Гловис Рус по поддержке производства (VPC, СС, DKD разукомплектование)	021
7d480ef4-05fd-47b1-9498-6b2fb206754b	2	2021-05-19 18:37:29.115	admin	2021-05-19 18:37:29.115	\N	2021-05-19 18:47:02.648	admin	Услуги связи, информационная, сервисная поддержка	018
7e9c8f78-704e-1270-6726-52c113c85d6a	2	2021-05-19 18:37:29.112	admin	2021-05-19 18:37:29.112	\N	2021-05-19 18:47:02.619	admin	Расконсервация ОС	092
\.


--
-- Data for Name: eademo_package_attachment; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_package_attachment (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, type_id, paper_document_id, diadoc_link, check_sum, amount, number_, date_, file_id, barcode, has_original, archiving_status, status, doc_package_model_id, description) FROM stdin;
83b58dfb-4fff-5748-cd9d-5cc835840660	2	2021-05-24 13:19:16.664	ivanov	2021-05-24 13:23:58.168	semenov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	\N	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	bea83cd8-3fbe-71c4-1323-3af92118d0d6	\N	\N	no	verified	0f100017-a81f-266a-4521-26d416f53351	\N
b9459ccd-d80d-b404-a72e-d804c847c3d6	2	2021-05-24 13:19:16.665	ivanov	2021-05-24 13:23:58.168	semenov	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	\N	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	3a7d4fcf-c12e-ffaf-b65b-2edfba4bda9d	\N	\N	no	verified	0f100017-a81f-266a-4521-26d416f53351	\N
f80200c4-9ff9-d90e-2cef-30e584a34f88	2	2021-05-24 13:07:28.562	ivanov	2021-05-24 13:24:09.209	semenov	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	\N	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	16494b14-6a65-4c85-d710-eadaba60434d	\N	\N	no	verified	8821657d-b2ff-8722-55df-c3bfc572ce60	\N
509e9afc-cebc-3c70-fe94-273e8015b852	2	2021-05-24 13:07:28.563	ivanov	2021-05-24 13:24:09.209	semenov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	\N	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	6e8fa644-2ea1-1673-4bf8-2ab6dfb16233	\N	\N	no	verified	8821657d-b2ff-8722-55df-c3bfc572ce60	\N
b20f1184-ecaa-aeaa-8b2a-37ae4a05ba55	2	2021-05-24 18:53:46.885	ivanov	2021-05-24 18:54:51.176	semenov	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	\N	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	2dd84396-fe1b-15d8-af3a-d2f23633ac2d	\N	\N	no	verified	484869c4-a9fc-15c6-3f22-d6156565ba15	\N
2eaf963e-bf7e-0882-aab5-25b513a2ef9d	2	2021-05-24 18:53:46.885	ivanov	2021-05-24 18:54:51.176	semenov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	\N	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	398379a3-b0be-2ef1-b7ed-567d07eb4a30	\N	\N	no	verified	484869c4-a9fc-15c6-3f22-d6156565ba15	\N
f8467448-8f15-5058-e2ab-4e29d731a564	2	2021-05-25 14:12:35.318	ivanov	2021-05-25 14:14:57.61	ivanov	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	\N	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	dd7b2c64-b300-6b01-8805-ccb650c6a327	\N	\N	no	draft	029a3654-a876-c87c-a3d7-ea8c28459bfc	\N
305f1635-e2d4-3569-ac61-6128414e162f	2	2021-05-25 14:12:35.319	ivanov	2021-05-25 14:14:57.61	ivanov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	\N	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	cc93ea13-bea6-5219-85e1-2bd5d17e4135	\N	\N	no	draft	029a3654-a876-c87c-a3d7-ea8c28459bfc	\N
067d8786-367c-ae3a-adbf-35ca0597daac	2	2021-05-25 15:21:29.01	ivanov	2021-05-25 17:28:16.67	yakovlev	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	\N	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	1ea0747d-a07a-227c-db36-89f88f627e01	\N	\N	no	verified	97d0c1ae-9338-ef26-0733-fa29e876fb25	\N
1d9a693e-0c74-7b75-19ab-49253af159fe	2	2021-05-25 15:21:29.01	ivanov	2021-05-25 17:28:16.67	yakovlev	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	\N	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	efe9b057-5ea5-37f7-c032-7a3f2fdeb858	\N	\N	no	verified	97d0c1ae-9338-ef26-0733-fa29e876fb25	\N
dc4a713c-1d38-e2dc-9fb2-3b5c41a9236f	2	2021-05-25 17:40:16.356	semenov	2021-05-25 17:42:54.626	semenov	\N	\N	1424e3a4-7896-3162-e75b-779b6788a658	\N	\N	99875e8e0f074254d29375f8a326dcfda72c319e	\N	\N	\N	a359acf1-ade3-0aad-b17e-ba10a827dea0	\N	\N	no	verified	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	\N
e653c744-c517-4498-bc36-e91eb14a42cf	2	2021-05-25 17:43:31.522	semenov	2021-05-25 17:43:49.83	semenov	\N	\N	1424e3a4-7896-3162-e75b-779b6788a658	\N	\N	99875e8e0f074254d29375f8a326dcfda72c319e	\N	\N	\N	9497ba22-d3a0-b5ef-ef94-cd9e71c323bc	\N	\N	no	verified	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	\N
15c4713a-168f-f5f8-96d1-f654e772a64c	2	2021-05-26 12:19:04.022	ivanov	2021-05-26 12:22:51.833	yakovlev	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	\N	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	01bbf7bb-36b9-09a1-459c-e953ab32ffec	h25896328620	\N	no	verified	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	\N
3f6e50a2-9468-c29e-1ae8-154f68e6b70f	3	2021-05-26 12:19:04.022	ivanov	2021-05-26 12:36:21.66	antonov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	eeb40f32-89f4-4660-d4cd-d26da167dbc8	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	33b48083-a9ef-4b6d-be0e-80c34e6ca314	h10000019692	\N	no	verified	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	\N
0a734590-5784-725e-4777-bf19f701e24c	3	2021-05-26 14:26:34.195	ivanov	2021-05-26 14:31:26.968	antonov	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	2591edf0-ab82-1403-2ae0-4d4364004158	h10000040115	\N	no	verified	f364049e-d1da-ae92-03b8-f9f13a1a686c	\N
e9956f6e-81bb-4a54-61f5-2cffaf67b1f1	3	2021-05-26 14:26:34.195	ivanov	2021-05-26 14:31:34.562	antonov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	331496b7-ef2a-4f71-d270-13a702686157	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	2c608f69-0244-0859-74f2-4eb89a6b8c85	h10000059b52	\N	no	verified	f364049e-d1da-ae92-03b8-f9f13a1a686c	\N
bf33b9ad-eb0e-9269-8670-1c4776b57b10	3	2021-05-26 13:30:17.25	ivanov	2021-05-26 13:48:00.249	antonov	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	afca49d1-68fe-79eb-9fe6-0649ffc4b1d4	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	975c37bb-207b-cd97-7da6-fd3080284b82	h1000002f88e	\N	no	verified	694d14a7-56bc-b52e-7130-f519021169c9	\N
23bacc9a-8a34-80fa-e799-126710180095	3	2021-05-26 13:30:17.25	ivanov	2021-05-26 13:53:11.161	antonov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	05a62cc2-861a-dcdc-f8eb-dd6d613a51a3	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	7f62a096-f152-a0fe-6c33-aec9f23e2525	h10000032993	\N	no	verified	694d14a7-56bc-b52e-7130-f519021169c9	\N
0972df6c-aacf-04de-bcf6-2ddec0fdca8a	3	2021-05-26 14:44:37.412	ivanov	2021-05-26 14:56:52.039	antonov	\N	\N	f563bef4-6e45-6d9d-7707-5cf9f3899296	cea464f2-4f7a-d222-13c0-128aaf630074	\N	0bed820dd7d17e66fbd3d85ece552e826c3665fd	\N	\N	\N	d5e00c53-a97e-55ec-2a2f-a3c8b31457de	h10000062392	\N	no	verified	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	\N
e51d9cc1-0f94-8b16-ec3c-4a4ab5a9332f	3	2021-05-26 14:44:37.413	ivanov	2021-05-26 14:56:59.474	antonov	\N	\N	a9b8cde7-2f84-3562-1838-5a2e912379aa	8d342541-c3a2-f213-4733-cce55729b7b8	\N	c832c05545b950e47af1e9cf56dfcbd732740f99	\N	\N	\N	70d46c39-e056-6ec8-b723-d8eddaefc07a	h1000007d06e	\N	no	verified	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	\N
dfff0380-27e7-1b87-01c3-d8833f28d30f	2	2021-05-27 10:09:01.287	admin	2021-05-27 10:09:01.287	\N	2021-05-27 10:12:24.67	admin	\N	\N	3b44d46a-c492-460e-825f-96c200597c79;9d2e1c10-35c7-4002-91bd-6544f3ee617b;2002c79f-3c3e-4e4f-9904-b9834137b37c	\N	\N	\N	\N	de3cfbd6-43d1-c1b6-6830-921d2233cf22	\N	t	no	verified	d8511ea3-d13e-44f1-4454-36210b34c595	\N
fea0bdf3-159f-51bf-365e-2a7f2530929b	2	2021-05-27 10:09:01.285	admin	2021-05-27 10:09:01.285	\N	2021-05-27 10:12:24.67	admin	\N	\N	3b44d46a-c492-460e-825f-96c200597c79;9d2e1c10-35c7-4002-91bd-6544f3ee617b;2002c79f-3c3e-4e4f-9904-b9834137b37c	\N	\N	\N	\N	47bf74bf-058e-b87c-b551-adf261c25a1e	\N	t	no	verified	d8511ea3-d13e-44f1-4454-36210b34c595	\N
076f4c66-4544-8823-0cb3-55e835d56791	2	2021-05-27 10:09:01.286	admin	2021-05-27 10:09:01.286	\N	2021-05-27 10:12:24.67	admin	\N	\N	3b44d46a-c492-460e-825f-96c200597c79;9d2e1c10-35c7-4002-91bd-6544f3ee617b;2002c79f-3c3e-4e4f-9904-b9834137b37c	\N	\N	\N	\N	f5c6d160-d718-8a16-6813-26bef3acd04f	\N	t	no	verified	d8511ea3-d13e-44f1-4454-36210b34c595	\N
50b0b12b-099d-56da-f734-3e72fa6a39ef	1	2021-05-27 16:40:41.963	admin	2021-05-27 16:40:41.963	\N	\N	\N	\N	\N	3b44d46a-c492-460e-825f-96c200597c79;0919fc10-d5b5-4986-97a9-96bed6a36970;5cd1cd68-6dc4-477f-b28c-ff3b5bb3df23	fc83f516ac376423a6f8cb069c661828096175f5	\N	\N	\N	cc1a1534-1883-e8fa-2ba5-75c962603b3c	\N	t	no	verified	35c71334-fdba-2993-f8af-15fd883c00e7	\N
d2d47e91-3ec8-dc97-1341-242affcb2c25	1	2021-05-27 16:40:41.963	admin	2021-05-27 16:40:41.963	\N	\N	\N	\N	\N	3b44d46a-c492-460e-825f-96c200597c79;0919fc10-d5b5-4986-97a9-96bed6a36970;5cd1cd68-6dc4-477f-b28c-ff3b5bb3df23	7ece6c0dff9df6822b7387e266aeb291e7595c0d	\N	\N	\N	c598d839-693f-87b8-79ec-92b28c3fd2e5	\N	t	no	verified	35c71334-fdba-2993-f8af-15fd883c00e7	\N
92173a72-136f-76b1-d4a4-f75ba84fb70a	1	2021-05-27 16:40:41.963	admin	2021-05-27 16:40:41.963	\N	\N	\N	\N	\N	3b44d46a-c492-460e-825f-96c200597c79;0919fc10-d5b5-4986-97a9-96bed6a36970;5cd1cd68-6dc4-477f-b28c-ff3b5bb3df23	2827892418bfd920aa416375931957d49751c783	\N	\N	\N	f8a13011-f638-37f1-6234-292092b22060	\N	t	no	verified	35c71334-fdba-2993-f8af-15fd883c00e7	\N
c0f87fba-7e4b-68f7-46fe-1cbfa5082ec3	1	2021-05-27 19:01:07.907	diadoc	2021-05-27 19:01:07.907	\N	\N	\N	f9ab4bc2-8787-0c46-3f73-bd3c9ce1c7a7	\N	3b44d46a-c492-460e-825f-96c200597c79;9d2e1c10-35c7-4002-91bd-6544f3ee617b;2002c79f-3c3e-4e4f-9904-b9834137b37c	eb16ce2572d14de7020feb46ab99ae3470cab870	\N	\N	\N	16401599-e52e-c870-bf37-20a4358528c5	\N	t	no	verified	d9be9e33-e0bb-42d4-6948-333fb46115e5	\N
fa10c647-33ae-8bc5-b9d8-f90264f3c359	1	2021-05-27 19:01:07.908	diadoc	2021-05-27 19:01:07.908	\N	\N	\N	f74e8060-04f4-dbe0-efe2-5393d14ea560	\N	3b44d46a-c492-460e-825f-96c200597c79;9d2e1c10-35c7-4002-91bd-6544f3ee617b;2002c79f-3c3e-4e4f-9904-b9834137b37c	dc5e11cae5dde75cb9fbb67cfc39617fa85563e3	\N	\N	\N	c707a0c2-5fef-9472-e4c9-6d8785531383	\N	t	no	verified	d9be9e33-e0bb-42d4-6948-333fb46115e5	\N
1384774e-e3db-a441-417c-86098c6b5b76	1	2021-05-27 19:01:07.907	diadoc	2021-05-27 19:01:07.907	\N	\N	\N	fc2fa8b4-1d61-b92f-cc2b-2913ebda45c6	\N	3b44d46a-c492-460e-825f-96c200597c79;9d2e1c10-35c7-4002-91bd-6544f3ee617b;2002c79f-3c3e-4e4f-9904-b9834137b37c	d1bab944d8e4051811cded8652585572f064e97e	\N	\N	\N	fd6a30cd-176c-d9bd-3a3d-2ac74f24af70	\N	t	no	verified	d9be9e33-e0bb-42d4-6948-333fb46115e5	\N
\.


--
-- Data for Name: eademo_package_relation; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_package_relation (id, parent_id, is_free, mandatory, plural, child_id, relation_type_id, head, can_be_head) FROM stdin;
7b32bee7-ba0a-971d-4116-06beab5dff99	484869c4-a9fc-15c6-3f22-d6156565ba15	t	f	t	8821657d-b2ff-8722-55df-c3bfc572ce60	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	f	f
\.


--
-- Data for Name: eademo_package_type; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_package_type (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, attribtes_json, code) FROM stdin;
87905197-e9fd-73c2-a35c-fa0fbeac2399	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.138	admin	Договор	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":true,"required":true,"plural":false,"enabled":true,"copied":true,"isTable":false,"isButton":false},{"name":"recipient","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":true,"required":true,"plural":false,"enabled":true,"copied":true,"isTable":false,"isButton":false},{"name":"unk","visible":true,"required":false,"plural":false,"enabled":true,"copied":true,"isTable":false,"isButton":false},{"name":"supplier","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	GC.02
8aceb76f-84d2-4c31-b33a-a134de5065c1	3	2021-05-19 18:35:29.686	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.136	admin	WH.14	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	WH.14
967b939d-a146-379f-2efc-cd95456c2655	3	2021-05-19 18:35:29.686	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.128	admin	Отпуск зап.частей дороже 40 т.р.за ед. в производство	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	WH.09
b2f4ee58-de4c-8509-3ec0-92dc20403b21	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.132	admin	Реализация автомобилей на экспорт	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AR.03
c6237ff0-1dac-3bc7-3c4f-7a6d85124049	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.124	admin	Платежи контрагентам в рублях	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":true,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	TR.04
d3b3e01d-6184-fb52-02ac-5d0bb8a697dd	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.126	admin	Отпуск прямых материалов в производство (ВД 291/292,309)	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	WH.01
ec3fb67b-2f1b-f1cf-9e1e-5288fea65aca	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.127	admin	Ручной разбор клиент-банка	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	PWCMANCB
015a486b-f1f3-6b63-6b61-cbd30a4daf2f	3	2021-05-19 18:35:29.684	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.129	admin	Выписка по банковскому счёту	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	TR.01
7fa3108f-7ce3-200a-e4b7-694d3bd43411	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.135	admin	Поступление от контрагентов в валюте	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	TR.03
0298676e-1243-8155-cecf-60b5764fb98b	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.138	admin	Отпуск непрямых материалов в производство кроме зап.частей дороже 40 т.р.за ед.	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	WH.08
1255c2a0-d575-45a9-0dd1-d703f5947c11	3	2021-05-19 18:35:29.686	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.139	admin	WH.16	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	WH.16
174ac76b-68c3-e1ee-bb5c-2f3c60580427	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.13	admin	Ручной разбор штрих-кода	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	barcodeProblem
21554d66-bf34-d617-0cca-a393a4ecd325	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.123	admin	Прочая реализация на внутренний рынок (кроме аренда и ОС)	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AR.07
2cd5afb4-54c4-d07c-2228-8e951d3fe2e2	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.133	admin	Счёт от поставщика на оплату	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AP.11
38b0c1f3-60b0-47bb-9aa1-dd1d31c4c0f5	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.126	admin	Поступления от контрагентов в рублях	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":true,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	TR.02
4dafd88d-4bb2-03c9-420a-800daa92b510	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.135	admin	Декларация на импорт (CIP и CIF)	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AP.15
4fa17004-a470-249b-c633-76272a799802	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.125	admin	Платежи контрагентам в валюте	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":true,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	TR.05
598646b2-e605-8221-9bdc-8623f1be0560	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.13	admin	Поступление материалов на склад	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AP.08
5c142d24-97af-f0e4-f3c5-79ec4a144f3c	3	2021-05-19 18:35:29.686	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.134	admin	WH.17	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	WH.17
6e5ed81d-9312-21be-2fd9-2daae4b8df7a	3	2021-05-19 18:35:29.685	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.14	admin	Реализация металлолома и отходов	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AR.13
6f52e341-5039-de2b-ac52-fc943f20495a	3	2021-05-19 18:35:29.686	admin	2021-05-19 18:44:27.414	admin	2021-05-19 18:46:15.137	admin	WH.15	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	WH.15
6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	8	2021-05-24 11:37:51.599	admin	2021-05-25 14:11:42.193	admin	\N	\N	Авансовый отчет на командировку	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.01
d058b3a4-7347-a9a0-5a95-924066352560	2	2021-05-26 17:28:00.756	admin	2021-05-26 19:03:11.865	admin	\N	\N	Закупка работ/ услуг	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AP.07
4f4531f7-0a57-ff38-293d-48496a91d833	1	2021-05-24 18:15:12.602	admin	2021-05-24 18:15:12.602	\N	\N	\N	Договоры аренды	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.09
2372a557-81fe-e324-a474-fdd3f502a899	1	2021-05-24 18:17:01.391	admin	2021-05-24 18:17:01.391	\N	\N	\N	Договоры по основной деятельности	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.07
b7b1480a-9eac-b5c1-3ec9-aa04f0f60ee1	2	2021-05-27 18:40:10.627	admin	2021-05-27 18:41:47.316	admin	\N	\N	Основная реализация автомобилей на внутренний рынок	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AR.01
08246e7e-3bfb-ef2b-0f85-24f65fa42d19	1	2021-05-24 18:18:12.957	admin	2021-05-24 18:18:12.957	\N	\N	\N	Претензии	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.04
17ea8e8d-6c55-4503-0545-6b12050ec6e6	1	2021-05-24 18:19:20.251	admin	2021-05-24 18:19:20.251	\N	\N	\N	Платежи	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.02
2b37291a-c9d4-35e7-5c9a-1c1191dbd295	1	2021-05-24 18:19:45.472	admin	2021-05-24 18:19:45.472	\N	\N	\N	Поступления	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.08
17156ead-cfb3-89cf-8608-af35faf08d95	3	2021-05-26 17:21:37.236	admin	2021-05-27 10:18:22.677	admin	\N	\N	Закупка локальных автокомпонентов и стали	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AP.05
986af15e-c962-fc2e-f608-605cc54aa453	1	2021-05-27 19:03:07.181	admin	2021-05-27 19:03:07.181	\N	\N	\N	Прочая реализация на внутренний рынок	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	AR.07
77183c46-4853-db91-6721-82612c4217e5	4	2021-05-24 18:12:37.519	admin	2021-05-25 13:24:32.462	admin	\N	\N	Авансовый отчёт	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false}]	P.06
8a65b6a6-0479-051b-02ea-59ac1a41e237	6	2021-05-24 18:11:39.961	admin	2021-05-25 14:34:16.449	admin	\N	\N	Бухгалтерская справка	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.10
eee49cf1-d3d0-ac28-4420-61a2dc3b4923	5	2021-05-24 18:16:12.579	admin	2021-05-27 18:59:44.385	diadoc	\N	\N	Банковские выписки	[{"name":"initiator","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"operationType","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"department","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"pkgDate","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"endDate","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"po","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"currency","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"amount","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"contractor","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractorText","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"recipient","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"custom","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"lot","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"account","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mainContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"contractType","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"reportPeriod","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"unk","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"supplier","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"attributes","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":true,"isButton":false},{"name":"sapContract","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"bank","visible":true,"required":true,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"mainDocumentNum","visible":true,"required":false,"plural":false,"enabled":true,"copied":false,"isTable":false,"isButton":false},{"name":"rfa","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"mmDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false},{"name":"accompDocs","visible":false,"required":false,"plural":false,"enabled":false,"copied":false,"isTable":false,"isButton":false}]	P.07
\.


--
-- Data for Name: eademo_package_type_allowed_attachment_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_package_type_allowed_attachment_type_link (package_type_id, attachment_type_id) FROM stdin;
\.


--
-- Data for Name: eademo_package_type_attachment_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_package_type_attachment_type_link (package_type_id, attachment_type_id) FROM stdin;
6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	f563bef4-6e45-6d9d-7707-5cf9f3899296
6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	a9b8cde7-2f84-3562-1838-5a2e912379aa
8a65b6a6-0479-051b-02ea-59ac1a41e237	1424e3a4-7896-3162-e75b-779b6788a658
eee49cf1-d3d0-ac28-4420-61a2dc3b4923	fc2fa8b4-1d61-b92f-cc2b-2913ebda45c6
eee49cf1-d3d0-ac28-4420-61a2dc3b4923	f74e8060-04f4-dbe0-efe2-5393d14ea560
eee49cf1-d3d0-ac28-4420-61a2dc3b4923	158ce886-81f4-3767-79d0-e470200064eb
eee49cf1-d3d0-ac28-4420-61a2dc3b4923	f9ab4bc2-8787-0c46-3f73-bd3c9ce1c7a7
eee49cf1-d3d0-ac28-4420-61a2dc3b4923	f563bef4-6e45-6d9d-7707-5cf9f3899296
\.


--
-- Data for Name: eademo_package_type_operation_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_package_type_operation_type_link (package_type_id, operation_type_id) FROM stdin;
6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	c8d533e4-74ac-4414-4b4b-99fdafb9641d
8a65b6a6-0479-051b-02ea-59ac1a41e237	eca15b35-a8cd-27f4-5c9c-0b7d91ebfb06
77183c46-4853-db91-6721-82612c4217e5	130c5ee5-4641-88e4-4417-0f0647107d27
4f4531f7-0a57-ff38-293d-48496a91d833	37909a4a-a3a9-596f-0599-11e34a72f5bc
eee49cf1-d3d0-ac28-4420-61a2dc3b4923	a5f4e90e-1fe4-9d1c-613c-f73a854e4c97
2372a557-81fe-e324-a474-fdd3f502a899	cbd47aa7-4df8-d6ea-5483-c1ab2aaa9221
8a65b6a6-0479-051b-02ea-59ac1a41e237	ad66739d-08c6-4e6d-2919-c63d004bcf03
08246e7e-3bfb-ef2b-0f85-24f65fa42d19	6ff9ef99-0aff-2a1a-6df0-69a0fe5d8f7e
08246e7e-3bfb-ef2b-0f85-24f65fa42d19	58a569d7-474e-445c-e88b-093ef3272e64
17ea8e8d-6c55-4503-0545-6b12050ec6e6	93ef0f4d-0a64-d2d9-b1e5-338ef409daf8
17ea8e8d-6c55-4503-0545-6b12050ec6e6	c4ec056f-ee2a-82fa-bd34-7e2c519aaf46
2b37291a-c9d4-35e7-5c9a-1c1191dbd295	261c599c-00ab-91fa-f0f6-24a8ace2d902
\.


--
-- Data for Name: eademo_paper_document; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_paper_document (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, paper_location_id, paper_receiver_id, paper_sender_id, paper_date, status, status_change_date) FROM stdin;
eeb40f32-89f4-4660-d4cd-d26da167dbc8	2	2021-05-26 12:36:21.602	antonov	2021-05-26 12:40:06.486	antonov	\N	\N	712cebf1-c069-e76e-c819-4f3713ca8373	507fe753-9418-74b8-55ae-30d743a736c5	751e8f7b-9573-fb06-3331-e2491424d82f	2021-05-26 12:35:41.895	ON_SCAN	2021-05-26 12:40:06.463
afca49d1-68fe-79eb-9fe6-0649ffc4b1d4	4	2021-05-26 13:48:00.231	antonov	2021-05-26 14:38:12.085	antonov	\N	\N	5e33cf2e-aa2c-3fd5-7c30-4e2919a0db48	507fe753-9418-74b8-55ae-30d743a736c5	751e8f7b-9573-fb06-3331-e2491424d82f	2021-05-26 13:47:20.152	SCANNED	2021-05-26 14:38:12.079
05a62cc2-861a-dcdc-f8eb-dd6d613a51a3	3	2021-05-26 13:53:11.146	antonov	2021-05-26 14:38:12.099	antonov	\N	\N	5e33cf2e-aa2c-3fd5-7c30-4e2919a0db48	507fe753-9418-74b8-55ae-30d743a736c5	751e8f7b-9573-fb06-3331-e2491424d82f	2021-05-26 13:52:57.606	SCANNED	2021-05-26 14:38:12.092
5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	6	2021-05-26 14:31:26.95	antonov	2021-05-26 14:40:59.626	antonov	\N	\N	ef42900b-1f91-7e4c-1122-5a1ec301ee75	1f701a08-75e4-2ef6-ec3d-3dccce2df9c1	507fe753-9418-74b8-55ae-30d743a736c5	2021-05-26 14:31:02.27	IN_ARCHIVE	2021-05-26 14:40:59.617
331496b7-ef2a-4f71-d270-13a702686157	6	2021-05-26 14:31:34.544	antonov	2021-05-26 14:40:59.651	antonov	\N	\N	ef42900b-1f91-7e4c-1122-5a1ec301ee75	1f701a08-75e4-2ef6-ec3d-3dccce2df9c1	507fe753-9418-74b8-55ae-30d743a736c5	2021-05-26 14:31:02.27	IN_ARCHIVE	2021-05-26 14:40:59.642
cea464f2-4f7a-d222-13c0-128aaf630074	12	2021-05-26 14:56:52.025	antonov	2021-05-26 17:04:29.745	antonov	\N	\N	6ec82959-3da9-8570-dbef-749dcc889bd3	1f701a08-75e4-2ef6-ec3d-3dccce2df9c1	507fe753-9418-74b8-55ae-30d743a736c5	2021-05-26 14:56:09.752	IN_ARCHIVE	2021-05-26 17:04:29.737
8d342541-c3a2-f213-4733-cce55729b7b8	10	2021-05-26 14:56:59.157	antonov	2021-05-26 17:04:29.756	antonov	\N	\N	6ec82959-3da9-8570-dbef-749dcc889bd3	1f701a08-75e4-2ef6-ec3d-3dccce2df9c1	507fe753-9418-74b8-55ae-30d743a736c5	2021-05-26 14:56:09.752	IN_ARCHIVE	2021-05-26 17:04:29.749
\.


--
-- Data for Name: eademo_paper_location; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_paper_location (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, barcode, storage_id, name, type_) FROM stdin;
712cebf1-c069-e76e-c819-4f3713ca8373	2	2021-05-24 13:35:21.975	admin	2021-05-26 12:28:22.361	admin	\N	\N	Лоток_1	\N	Лоток №1	TRAY
198b2607-7d06-1155-93b5-925b22592f40	3	2021-05-24 13:34:57.369	admin	2021-05-26 12:28:28.552	admin	\N	\N	Коробка_1	\N	Коробка №1	BOX
a4b287f2-123a-4970-e4ee-d40192c9a2a2	3	2021-05-24 18:34:45.882	admin	2021-05-26 12:28:34.91	admin	\N	\N	Склад_1	\N	Москва, улица Измайловский Вал, 30	STORAGE
5e33cf2e-aa2c-3fd5-7c30-4e2919a0db48	1	2021-05-26 13:45:48.015	admin	2021-05-26 13:45:48.015	\N	\N	\N	Лоток_2	\N	Лоток №2	TRAY
e15d6ceb-c34f-0217-0450-0bd247366ea5	1	2021-05-26 14:23:49.504	antonov	2021-05-26 14:23:49.504	\N	\N	\N	Склад_2	\N	Склад №2	STORAGE
ef42900b-1f91-7e4c-1122-5a1ec301ee75	1	2021-05-26 14:24:11.252	antonov	2021-05-26 14:24:11.252	\N	\N	\N	Коробка_4	\N	Коробка №4	BOX
f0c98451-14c3-fcf3-e919-73dc189d4f45	1	2021-05-26 14:24:27.568	antonov	2021-05-26 14:24:27.568	\N	\N	\N	Лоток_4	\N	Лоток №4	TRAY
c20d1fe0-b54f-db9b-4df8-fc740a976d41	1	2021-05-26 14:55:46.765	antonov	2021-05-26 14:55:46.765	\N	\N	\N	Лоток_5	\N	Лоток_5	TRAY
6ec82959-3da9-8570-dbef-749dcc889bd3	3	2021-05-26 14:55:33.788	antonov	2021-05-26 15:52:26.978	antonov	\N	\N	Коробка_5	\N	Коробка_5	BOX
\.


--
-- Data for Name: eademo_relation_option; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_relation_option (id, relation_type_id, copied, package_type_id, mandatory, plural, can_be_head) FROM stdin;
\.


--
-- Data for Name: eademo_releated_attachment_relation; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_releated_attachment_relation (id, related_package_id, releated_attachment_id) FROM stdin;
\.


--
-- Data for Name: eademo_sap_document; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_sap_document (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, sap_doc_number, doc_package_model_id, sap_doc_date, status) FROM stdin;
\.


--
-- Data for Name: eademo_sap_payment; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_sap_payment (id, gl_account, package_id, document_type, document_number, posting_date, year_, vendor_customer, reference, reversed_with, amount, entry_date) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant (id, name, warrant_doc_desc, start_date, end_date, canceled) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant_contract_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant_contract_type_link (security_warrant_id, contract_type_id) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant_department_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant_department_link (security_warrant_id, department_id) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant_employee_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant_employee_link (security_warrant_id, employee_id) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant_operation_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant_operation_type_link (security_warrant_id, operation_type_id) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant_package_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant_package_type_link (security_warrant_id, package_type_id) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant_signer_type_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant_signer_type_link (security_warrant_id, signer_type_id) FROM stdin;
\.


--
-- Data for Name: eademo_security_warrant_system_user_role_link; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_security_warrant_system_user_role_link (security_warrant_id, system_user_role_id) FROM stdin;
\.


--
-- Data for Name: eademo_signatory; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_signatory (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, date_, signer_type_id, employee_id, status, comment_, latest, doc_package_model_id, can_be_copied) FROM stdin;
c2f7a2e1-9fd0-0061-ed77-de3faf1d5248	3	2021-05-24 13:07:28.563	ivanov	2021-05-24 13:21:38.693	petrov	\N	\N	2021-05-24 13:21:25.942	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Ведущий менеджер) Петров Петр Петрович, 2021-05-24 13:21:25	t	8821657d-b2ff-8722-55df-c3bfc572ce60	f
876ff63f-4dde-a070-8a97-d490810de340	2	2021-05-24 13:19:16.664	ivanov	2021-05-24 13:21:59.115	petrov	\N	\N	2021-05-24 13:21:57.148	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Ведущий менеджер) Петров Петр Петрович, 2021-05-24 13:21:57	t	0f100017-a81f-266a-4521-26d416f53351	f
665ad627-1fce-a54b-80fe-6cbb1448b211	2	2021-05-24 13:07:28.563	ivanov	2021-05-24 13:22:16.956	ivanov	\N	\N	2021-05-24 13:22:13.433	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-24 13:22:13	t	8821657d-b2ff-8722-55df-c3bfc572ce60	t
fba20d1f-cd63-841f-9040-290f22a74262	2	2021-05-24 13:19:16.665	ivanov	2021-05-24 13:22:25.168	ivanov	\N	\N	2021-05-24 13:22:23.684	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-24 13:22:23	t	0f100017-a81f-266a-4521-26d416f53351	t
ad8bf6e9-1a34-ec08-ec86-1f8f7d413aa2	2	2021-05-24 13:19:16.664	ivanov	2021-05-24 13:22:51.955	semenov	\N	\N	2021-05-24 13:22:50.749	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-24 13:22:50	t	0f100017-a81f-266a-4521-26d416f53351	f
17360fc1-6c66-472c-a0a8-0a58a20b0707	3	2021-05-24 13:07:28.563	ivanov	2021-05-24 13:22:58.857	semenov	\N	\N	2021-05-24 13:22:57.654	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-24 13:22:57	t	8821657d-b2ff-8722-55df-c3bfc572ce60	f
3dace0ac-f538-8f2d-a7ca-4f75c08c9959	2	2021-05-24 18:53:46.885	ivanov	2021-05-24 18:54:23.755	petrov	\N	\N	2021-05-24 18:54:18.03	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Руководитель подразделения) Петров Петр Петрович, 2021-05-24 18:54:18	t	484869c4-a9fc-15c6-3f22-d6156565ba15	f
7aae08e3-3b80-7861-05f4-74b69d05e001	1	2021-05-25 14:12:35.319	ivanov	2021-05-25 14:12:35.319	\N	\N	\N	\N	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	UNSIGNED	\N	t	029a3654-a876-c87c-a3d7-ea8c28459bfc	f
ebd79618-14b7-5678-014a-85d4b6027785	1	2021-05-25 14:12:35.319	ivanov	2021-05-25 14:12:35.319	\N	\N	\N	\N	e6fffe06-8534-e86e-af8c-3aaf5f54b093	aa55a955-239a-d215-9636-69da7938787e	UNSIGNED	\N	t	029a3654-a876-c87c-a3d7-ea8c28459bfc	f
653db0ba-203d-2dc6-e47e-3bdd12da6b18	2	2021-05-25 14:12:35.319	ivanov	2021-05-25 14:17:16.932	ivanov	\N	\N	2021-05-25 14:17:14.989	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-25 14:17:14	t	029a3654-a876-c87c-a3d7-ea8c28459bfc	t
92896a3f-818e-2ce9-e720-f3ac5e2c2fde	2	2021-05-25 15:21:29.01	ivanov	2021-05-25 17:05:22.606	ivanov	\N	\N	2021-05-25 17:04:37.758	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-25 17:04:37	t	97d0c1ae-9338-ef26-0733-fa29e876fb25	t
306e5bcc-cb03-b060-a138-97b58223d3e7	2	2021-05-25 15:21:29.01	ivanov	2021-05-25 17:10:18.295	petrov	\N	\N	2021-05-25 17:10:12.638	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Руководитель подразделения) Петров Петр Петрович, 2021-05-25 17:10:12	t	97d0c1ae-9338-ef26-0733-fa29e876fb25	f
62e22c3a-27b3-0494-dd2d-e68de0df8dc9	2	2021-05-25 15:21:29.01	ivanov	2021-05-25 17:10:39.067	sidorov	\N	\N	2021-05-25 17:10:34.341	e6fffe06-8534-e86e-af8c-3aaf5f54b093	aa55a955-239a-d215-9636-69da7938787e	SIGNED	Подписан (Специалист (ДУП)) Сидоров Сидор Сидорович, 2021-05-25 17:10:34	t	97d0c1ae-9338-ef26-0733-fa29e876fb25	f
287d7318-95aa-d8b1-3f24-536dd46d31f5	2	2021-05-25 15:21:29.01	ivanov	2021-05-25 17:13:50.125	semenov	\N	\N	2021-05-25 17:13:46.515	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-25 17:13:46	t	97d0c1ae-9338-ef26-0733-fa29e876fb25	f
6aa11ca9-ae5f-86ce-5cef-fe9e8918c940	2	2021-05-25 17:40:16.356	semenov	2021-05-25 17:42:23.662	semenov	\N	\N	2021-05-25 17:42:21.762	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-25 17:42:21	t	878f116e-be67-04b4-a0c3-fbb9fc9f7c1f	t
6ea9d847-5341-b186-d85f-1792f2e63859	2	2021-05-25 14:12:35.319	ivanov	2021-05-25 17:42:41.098	semenov	\N	\N	2021-05-25 17:42:39.585	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-25 17:42:39	t	029a3654-a876-c87c-a3d7-ea8c28459bfc	f
dfa4d2f4-fbf6-deae-e2d5-9061e5a6f957	2	2021-05-25 17:43:31.522	semenov	2021-05-25 17:43:40.935	semenov	\N	\N	2021-05-25 17:43:39.299	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-25 17:43:39	t	3b5c55cf-051b-abb5-6405-b9bfe2e5fc9e	t
c4f55645-a509-11d2-2546-09c8535df031	2	2021-05-26 12:19:04.022	ivanov	2021-05-26 12:19:18.225	ivanov	\N	\N	2021-05-26 12:19:16.684	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-26 12:19:16	t	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	t
3e2141af-902e-33ee-8fcc-3d9be1d10f69	2	2021-05-26 12:19:04.022	ivanov	2021-05-26 12:21:45.517	petrov	\N	\N	2021-05-26 12:21:44.397	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Руководитель подразделения) Петров Петр Петрович, 2021-05-26 12:21:44	t	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	f
2976ddf7-abae-60c8-69eb-126f0db216ba	2	2021-05-26 12:19:04.023	ivanov	2021-05-26 12:22:04.436	semenov	\N	\N	2021-05-26 12:22:02.892	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-26 12:22:02	t	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	f
53e2fbd3-0ee1-b12d-dba4-1e6e53c87ea5	2	2021-05-26 12:19:04.022	ivanov	2021-05-26 12:22:20.811	sidorov	\N	\N	2021-05-26 12:22:16.646	e6fffe06-8534-e86e-af8c-3aaf5f54b093	aa55a955-239a-d215-9636-69da7938787e	SIGNED	Подписан (Специалист (ДУП)) Сидоров Сидор Сидорович, 2021-05-26 12:22:16	t	0c5e8576-0051-518b-b830-6ecb7ac2a9cb	f
0153c0ba-cd80-250e-d8b1-53eebdca385b	2	2021-05-26 13:30:17.25	ivanov	2021-05-26 13:30:43.537	ivanov	\N	\N	2021-05-26 13:30:42.053	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-26 13:30:42	t	694d14a7-56bc-b52e-7130-f519021169c9	t
bfe9a365-86f9-6834-0afd-4df43fc9569f	2	2021-05-26 13:30:17.25	ivanov	2021-05-26 13:30:58.31	petrov	\N	\N	2021-05-26 13:30:57.199	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Руководитель подразделения) Петров Петр Петрович, 2021-05-26 13:30:57	t	694d14a7-56bc-b52e-7130-f519021169c9	f
c0e3822b-a01e-d8eb-4072-0710993b62a0	2	2021-05-26 13:30:17.249	ivanov	2021-05-26 13:31:13.68	sidorov	\N	\N	2021-05-26 13:31:12.405	e6fffe06-8534-e86e-af8c-3aaf5f54b093	aa55a955-239a-d215-9636-69da7938787e	SIGNED	Подписан (Специалист (ДУП)) Сидоров Сидор Сидорович, 2021-05-26 13:31:12	t	694d14a7-56bc-b52e-7130-f519021169c9	f
bf360e1a-db0e-fcad-893e-d4a9d9c14a11	2	2021-05-26 13:30:17.25	ivanov	2021-05-26 13:31:26.593	semenov	\N	\N	2021-05-26 13:31:25.589	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-26 13:31:25	t	694d14a7-56bc-b52e-7130-f519021169c9	f
9ee96c36-0b87-50b5-b4a1-7b54ba8d4a85	2	2021-05-26 14:26:34.195	ivanov	2021-05-26 14:26:46.601	ivanov	\N	\N	2021-05-26 14:26:45.856	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-26 14:26:45	t	f364049e-d1da-ae92-03b8-f9f13a1a686c	t
4e53ae1d-9354-85c1-8215-6bf4f9204f12	2	2021-05-26 14:26:34.195	ivanov	2021-05-26 14:27:04.191	petrov	\N	\N	2021-05-26 14:27:02.794	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Руководитель подразделения) Петров Петр Петрович, 2021-05-26 14:27:02	t	f364049e-d1da-ae92-03b8-f9f13a1a686c	f
9768d849-232a-c90e-a651-da6bd43299f4	2	2021-05-26 14:26:34.195	ivanov	2021-05-26 14:27:19.521	semenov	\N	\N	2021-05-26 14:27:18.277	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-26 14:27:18	t	f364049e-d1da-ae92-03b8-f9f13a1a686c	f
7747ebae-9c47-c319-d168-4d246476a8be	2	2021-05-26 14:26:34.195	ivanov	2021-05-26 14:27:31.232	sidorov	\N	\N	2021-05-26 14:27:30.044	e6fffe06-8534-e86e-af8c-3aaf5f54b093	aa55a955-239a-d215-9636-69da7938787e	SIGNED	Подписан (Специалист (ДУП)) Сидоров Сидор Сидорович, 2021-05-26 14:27:30	t	f364049e-d1da-ae92-03b8-f9f13a1a686c	f
d2148f7c-93a5-271e-8a8f-5ecc4f849930	2	2021-05-26 14:44:37.412	ivanov	2021-05-26 14:44:48.19	ivanov	\N	\N	2021-05-26 14:44:47.351	f4646d06-cd79-c0a2-cfbd-28b9eced4569	751e8f7b-9573-fb06-3331-e2491424d82f	SIGNED	Подписан (Подотчетное лицо) Иванов Иван Иванович, 2021-05-26 14:44:47	t	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	t
7af783a3-8658-5657-0bca-d7f1fa7eaacb	2	2021-05-26 14:44:37.413	ivanov	2021-05-26 14:53:01.045	petrov	\N	\N	2021-05-26 14:52:59.911	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	SIGNED	Подписан (Руководитель подразделения) Петров Петр Петрович, 2021-05-26 14:52:59	t	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	f
4bd2687d-1a10-98fd-25dc-0d14633b0ada	2	2021-05-26 14:44:37.413	ivanov	2021-05-26 14:53:13.715	sidorov	\N	\N	2021-05-26 14:53:12.979	e6fffe06-8534-e86e-af8c-3aaf5f54b093	aa55a955-239a-d215-9636-69da7938787e	SIGNED	Подписан (Специалист (ДУП)) Сидоров Сидор Сидорович, 2021-05-26 14:53:12	t	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	f
06b2178e-787e-20c8-5ec6-dfa8b1af36a6	1	2021-05-27 16:40:41.963	admin	2021-05-27 16:40:41.963	\N	\N	\N	\N	e370290e-6ad5-6f64-c089-1e19559ca5b2	\N	UNSIGNED	\N	t	35c71334-fdba-2993-f8af-15fd883c00e7	f
d603fff8-f8b5-5ec0-1964-1d8a2bd6ec42	1	2021-05-27 18:27:51.585	admin	2021-05-27 18:27:51.585	\N	\N	\N	\N	e370290e-6ad5-6f64-c089-1e19559ca5b2	\N	UNSIGNED	\N	t	dcdf45d9-d927-7aff-f7e0-6f04fec60107	f
47fc4a0c-fd92-14ee-0a55-3924001c0b17	2	2021-05-26 14:44:37.413	ivanov	2021-05-26 14:53:29.379	semenov	\N	\N	2021-05-26 14:53:27.676	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	SIGNED	Подписан (Специалист (Бухгалтер)) Семенов Семен Семенович, 2021-05-26 14:53:27	t	30b7e8f1-47c8-e3f7-a1ee-cf863ba643d1	f
e9aeb90f-c67f-db66-0034-c5b2fb9690d0	1	2021-05-27 19:01:07.907	diadoc	2021-05-27 19:01:07.907	\N	\N	\N	\N	e370290e-6ad5-6f64-c089-1e19559ca5b2	\N	UNSIGNED	\N	t	d9be9e33-e0bb-42d4-6948-333fb46115e5	f
\.


--
-- Data for Name: eademo_signer_relation; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_signer_relation (id, package_type_id, signer_type_id, employee_id, fill_employee_from_package) FROM stdin;
c9c0e42a-afd1-bad0-c7f6-508fd9fba1cc	eee49cf1-d3d0-ac28-4420-61a2dc3b4923	e370290e-6ad5-6f64-c089-1e19559ca5b2	\N	f
a9ea0367-096d-975b-deef-9d458040705c	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	f4646d06-cd79-c0a2-cfbd-28b9eced4569	\N	t
2369e9cc-49ae-a16d-dacb-cfcc6192c35d	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	f
2a2ba97a-4230-ea56-ef3f-334be67ada09	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	21d1ba25-ce84-200d-fcee-dce6ac76fd8d	48360e62-8161-6870-1a8b-12974fd39779	f
0a5fc669-284f-b490-2c68-fcbca3f70864	6f09f3fb-089b-c980-184b-ff8ee2bb1dd9	e6fffe06-8534-e86e-af8c-3aaf5f54b093	aa55a955-239a-d215-9636-69da7938787e	f
3431771c-513b-e7ed-b36d-ef1041c4c585	77183c46-4853-db91-6721-82612c4217e5	f4646d06-cd79-c0a2-cfbd-28b9eced4569	\N	t
9a46aeb3-0990-8732-f6a9-0c0867078513	77183c46-4853-db91-6721-82612c4217e5	e370290e-6ad5-6f64-c089-1e19559ca5b2	632fb0bf-ecb0-228f-b751-c79bbb8350c7	f
085dcb1d-2d2e-ab2f-251f-056cea027cf7	8a65b6a6-0479-051b-02ea-59ac1a41e237	e370290e-6ad5-6f64-c089-1e19559ca5b2	\N	t
\.


--
-- Data for Name: eademo_signer_type; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_signer_type (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, code) FROM stdin;
e370290e-6ad5-6f64-c089-1e19559ca5b2	1	2021-05-24 11:29:33.297	admin	2021-05-24 11:29:33.297	\N	\N	\N	Специалист (Бухгалтер)	3
f4646d06-cd79-c0a2-cfbd-28b9eced4569	1	2021-05-24 11:29:43.174	admin	2021-05-24 11:29:43.174	\N	\N	\N	Подотчетное лицо	2
21d1ba25-ce84-200d-fcee-dce6ac76fd8d	2	2021-05-24 11:29:52.223	admin	2021-05-24 18:29:59.414	admin	\N	\N	Руководитель подразделения	1
e6fffe06-8534-e86e-af8c-3aaf5f54b093	2	2021-05-24 18:30:10.575	admin	2021-05-25 13:18:45.154	admin	\N	\N	Специалист (ДУП)	4
904b75fe-af9a-3993-99f3-c7e9cef6324c	2	2021-05-24 18:30:23.821	admin	2021-05-24 18:30:23.821	\N	2021-05-25 14:26:39.696	admin	Юрист	5
17d6a731-51c9-95a9-afa9-92ffcc0ed9b6	2	2021-05-24 18:49:52.79	admin	2021-05-25 14:26:44.288	admin	\N	\N	Главный бухгалтер	5
\.


--
-- Data for Name: eademo_system_user_role; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_system_user_role (id, name, title) FROM stdin;
9044afb3-dc44-0abd-16c6-a9e11bcccdfc	BasketWorkGroup	Член рабочей группы
dcb150e5-8ecc-10d4-07af-334d9be1798f	TaxSpecialist	Налоговый специалист
8097224b-fcf0-04f7-cde7-6337512a0f7e	SecurityAdmin	Администратор безопасности
11914ff5-1998-ae03-9a30-f4717d042714	BasketDispatcher	Диспетчер
ca61da4a-5bd0-7291-1c58-266d5e92da98	BasketReader	Участник обработки запросов
cfe24fdd-823b-caed-d025-50d281b4c24b	Accountant	Бухгалтер
b86c15cc-31d9-75ba-ad0e-78c07844a172	Archivist	Архивариус
5fa0a9a8-cf8d-15e8-208e-6e48ff6f1b53	BusinessAdmin	Бизнес-администратор
7c8532eb-ec6d-9f4e-143d-a295913f84b5	Signer	Подписант
650a26d8-201c-c863-4798-34db2b89ceef	Initiator	Инициатор
e98001e8-c822-fa66-dac3-36c6359291af	BasketInitiator	Инициатор корзины
0616861e-3a8f-677a-eee5-961e1b56d48a	ProcessAdmin	Администратор процессов
\.


--
-- Data for Name: eademo_tax; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.eademo_tax (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, name, code) FROM stdin;
2f2712ee-0774-3cab-71a6-fd4336202b02	2	2021-05-24 18:32:10.339	admin	2021-05-24 18:32:10.339	\N	2021-05-24 18:33:35.533	admin	Принятие к вычету сумм налога на добавленную стоимость, уплаченных или подлежащих уплате в случаях, предусмотренных пунктом 14 статьи 171 Налогового кодекса Российской Федерации	32
9f1e85dc-ecf7-a097-edd8-e3897190bed4	2	2021-05-24 18:31:37.468	admin	2021-05-24 18:31:37.468	\N	2021-05-24 18:33:38.137	admin	Отгрузка (передача) товаров (выполнение работ, оказание услуг), имущественных прав на безвозмездной основе	10
765234f8-8c22-ec90-14dd-74865b6f81d0	2	2021-05-24 18:32:47.313	admin	2021-05-24 18:33:44.814	admin	\N	\N	Налог на добавленную стоимость	01
c76ba0c5-696c-3ac4-6503-997bdc70c76b	2	2021-05-24 18:32:27.624	admin	2021-05-24 18:34:00.276	admin	\N	\N	Налог на прибыль организаций	02
\.


--
-- Data for Name: report_group; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.report_group (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, title, code, locale_names) FROM stdin;
4e083530-0b9c-11e1-9b41-6bdaa41bff94	2021-05-19 17:09:48.778665	admin	0	\N	\N	\N	\N	General	ReportGroup.default	en=General\nru=Общие
\.


--
-- Data for Name: report_report; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.report_report (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, name, code, description, locale_names, group_id, report_type, default_template_id, xml, roles_idx, screens_idx, input_entity_types_idx, rest_access, is_system) FROM stdin;
b229178f-86ca-866a-df89-010e5cf54930	2021-05-19 18:44:27.668	admin	2	2021-05-19 18:44:27.701	admin	\N	\N	Опись	basket_protocol	Генерирует опись для вложений корзины	\N	4e083530-0b9c-11e1-9b41-6bdaa41bff94	10	77a28279-af50-f9a2-77e0-c3182d13ab22	{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930","code":"basket_protocol","roles":[],"defaultTemplate":{"metaClass":"report$ReportTemplate","id":"77a28279-af50-f9a2-77e0-c3182d13ab22","code":"DEFAULT","customDefinedBy":"100","custom":"false","version":"1","outputNamePattern":"Опись.docx","reportOutputType":"40","groovy":"false","customDefinition":"","report":{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930"},"name":"attachments_template.docx","alterable":"false"},"description":"Генерирует опись для вложений корзины","bands":[{"metaClass":"report$BandDefinition","id":"16882c89-96a3-4b44-21f9-0fafe2484300","orientation":"0","childrenBandDefinitions":[],"name":"Basket","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"d00fc139-ab33-f92a-b5af-b18e3ebf85ee","orientation":"","childrenBandDefinitions":[{"metaClass":"report$BandDefinition","id":"16882c89-96a3-4b44-21f9-0fafe2484300"},{"metaClass":"report$BandDefinition","id":"b2a905df-4ac9-f2d3-0a06-806d6148121a","orientation":"0","childrenBandDefinitions":[],"name":"Attachments","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"d00fc139-ab33-f92a-b5af-b18e3ebf85ee"},"report":{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930"},"dataSets":[{"metaClass":"report$DataSet","id":"1efde1ba-3b9b-07c2-4b08-5d9fb48260f4","type":"20","jsonSourceType":"10","name":"Attachments","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"b2a905df-4ac9-f2d3-0a06-806d6148121a"},"text":"select \\na.type as type,\\nf.name as name,\\nf.size as size,\\na.number as number,\\na.date as date,\\na.barcode as barcode,\\na.status as status,\\ndpm.amount as amount,\\ndpm.pkgNum as pNum,\\ndpm.pkgDate as pDate,\\ndpm.pkgType as pType,\\ndpm.operationType as pOpertationType,\\ndpm.status as pStatus,\\ndpm.initiator.name as initiator,\\ndpm.department.name as department \\nfrom eademo_BasketAttachment ba \\nleft join ba.attachment a \\nleft join a.docPackageModel dpm, sys$FileDescriptor f \\nwhere ba.basket.id \\u003d ${entity} and a.file \\u003d f","view":"null"}],"position":"1"},{"metaClass":"report$BandDefinition","id":"82beeafa-a929-3e27-2ee9-ba18d396fd80","orientation":"0","childrenBandDefinitions":[],"name":"TimeSource","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"d00fc139-ab33-f92a-b5af-b18e3ebf85ee"},"report":{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930"},"dataSets":[{"metaClass":"report$DataSet","id":"a784788d-d0ac-c7e7-b8b0-9e6a7265da62","type":"30","jsonSourceType":"10","name":"Now","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"82beeafa-a929-3e27-2ee9-ba18d396fd80"},"text":"import com.haulmont.cuba.core.global.AppBeans\\nimport com.haulmont.cuba.core.global.TimeSource;\\n\\ndef time \\u003d String.valueOf(AppBeans.get(TimeSource.class).now());\\nreturn [[\\"time\\" : time]]","view":"null"}],"position":"2"}],"name":"Root","report":{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930"},"dataSets":[],"position":"0"},"report":{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930"},"dataSets":[{"metaClass":"report$DataSet","id":"36f5e143-d0ab-527f-6e10-afecbb9dc778","entityParamName":"entity","type":"40","jsonSourceType":"10","name":"Набор данных","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"16882c89-96a3-4b44-21f9-0fafe2484300"},"text":"return [[:]]","view":"null"}],"position":"0"},{"metaClass":"report$BandDefinition","id":"b2a905df-4ac9-f2d3-0a06-806d6148121a"},{"metaClass":"report$BandDefinition","id":"82beeafa-a929-3e27-2ee9-ba18d396fd80"},{"metaClass":"report$BandDefinition","id":"d00fc139-ab33-f92a-b5af-b18e3ebf85ee"}],"inputParameters":[{"metaClass":"report$ReportInputParameter","id":"8a102c81-568f-45b5-d408-0a9965c853e9","lookup":"false","entityMetaClass":"eademo_Basket","parameterClassName":"ru.digitalleague.ecm.eademo.entity.Basket","predefinedTransformation":"","type":"30","required":"true","validationOn":"false","defaultDateIsCurrent":"false","report":{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930"},"name":"Корзина","alias":"entity","position":"0"}],"validationOn":"false","reportType":"10","reportScreens":[{"metaClass":"report$ReportScreen","id":"b15f6b8c-f56d-4037-9259-6ffd28066339","screenId":"eademo_Basket.edit","report":{"metaClass":"report$Report","id":"b229178f-86ca-866a-df89-010e5cf54930"}}],"screensIdx":",eademo_Basket.edit,","group":{"metaClass":"report$ReportGroup","id":"4e083530-0b9c-11e1-9b41-6bdaa41bff94","localeNames":"en\\u003dGeneral\\nru\\u003dОбщие","code":"ReportGroup.default","title":"General","version":"0"},"inputEntityTypesIdx":",eademo_Basket,","valuesFormats":[],"templates":[{"metaClass":"report$ReportTemplate","id":"77a28279-af50-f9a2-77e0-c3182d13ab22"}],"version":"2","system":"false","name":"Опись"}	\N	,eademo_Basket.edit,	,eademo_Basket,	\N	f
55f7cbcc-8df2-20b2-4240-de22ec0d1835	2021-05-19 18:44:27.78	admin	2	2021-05-19 18:44:27.791	admin	\N	\N	Протокол подписания	signing_protocol	Forms a signing protocol	\N	4e083530-0b9c-11e1-9b41-6bdaa41bff94	10	ec483397-76e3-33fb-bbe5-a84dc3102667	{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835","code":"signing_protocol","roles":[],"defaultTemplate":{"metaClass":"report$ReportTemplate","id":"ec483397-76e3-33fb-bbe5-a84dc3102667","code":"DEFAULT","customDefinedBy":"100","custom":"false","version":"1","reportOutputType":"20","groovy":"false","customDefinition":"","report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"name":"protocol_template.docx","alterable":"false"},"description":"Forms a signing protocol","bands":[{"metaClass":"report$BandDefinition","id":"a4508fee-7f14-f3bf-7150-f37636e71424","orientation":"","childrenBandDefinitions":[{"metaClass":"report$BandDefinition","id":"c8405160-514f-db83-0fff-be7ca175cdfd","orientation":"0","childrenBandDefinitions":[],"name":"DocPackageModel","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"a4508fee-7f14-f3bf-7150-f37636e71424"},"report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"dataSets":[{"metaClass":"report$DataSet","id":"625b678d-2e2b-bd89-3e09-a26afaf9a28f","entityParamName":"entity","type":"40","jsonSourceType":"10","name":"DocPackageModel","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"c8405160-514f-db83-0fff-be7ca175cdfd"},"text":"return [[:]]","view":"null"}],"position":"0"},{"metaClass":"report$BandDefinition","id":"8c496f0c-9c41-fdc4-7054-c4efb3aaed1d","orientation":"0","childrenBandDefinitions":[],"name":"Attachments","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"a4508fee-7f14-f3bf-7150-f37636e71424"},"report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"dataSets":[{"metaClass":"report$DataSet","id":"9da30a46-3571-ccd3-24aa-93ebab1dc674","type":"20","jsonSourceType":"10","name":"Attachments","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"8c496f0c-9c41-fdc4-7054-c4efb3aaed1d"},"text":"select f.name as name,\\nf.size as size,\\na.checkSum as checkSum,\\na.type as type,\\na.number as number,\\na.date as date,\\na.barcode as barcode\\nfrom eademo_PackageAttachment a, sys$FileDescriptor f \\nwhere a.docPackageModel.id \\u003d ${entity} and a.file \\u003d f","view":"null"}],"position":"1"},{"metaClass":"report$BandDefinition","id":"b595cc00-f996-2baa-3588-e417b22fec8b","orientation":"0","childrenBandDefinitions":[],"name":"TimeSource","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"a4508fee-7f14-f3bf-7150-f37636e71424"},"report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"dataSets":[{"metaClass":"report$DataSet","id":"cdb35996-305f-6263-04a7-39fb92759fcc","type":"30","jsonSourceType":"10","name":"Now","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"b595cc00-f996-2baa-3588-e417b22fec8b"},"text":"import com.haulmont.cuba.core.global.AppBeans\\nimport com.haulmont.cuba.core.global.TimeSource;\\n\\ndef time \\u003d String.valueOf(AppBeans.get(TimeSource.class).now());\\nreturn [[\\"time\\" : time]]","view":"null"}],"position":"2"},{"metaClass":"report$BandDefinition","id":"d4f68141-f6ea-481b-28a1-48f78366d0cc","orientation":"0","childrenBandDefinitions":[],"name":"Signers","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"a4508fee-7f14-f3bf-7150-f37636e71424"},"report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"dataSets":[{"metaClass":"report$DataSet","id":"540644d0-470b-0eb2-6b4d-e2db5fd5784f","type":"20","jsonSourceType":"10","name":"Signers","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"d4f68141-f6ea-481b-28a1-48f78366d0cc"},"text":"select s.signerType as type,\\ne.user.position as position,\\ne.name as userName,\\ne.tabNumber as tabNumber,\\ns.date as date,\\ns.status as status,\\ns.comment as comment\\nfrom eademo_Signatory s, eademo_Employee e where \\ns.employee \\u003d e and s.docPackageModel.id \\u003d ${entity} and s.latest \\u003d true","view":"null"}],"position":"3"},{"metaClass":"report$BandDefinition","id":"c783a1f3-5856-3917-247c-f4392f32e4a7","orientation":"0","childrenBandDefinitions":[],"name":"CurrentEmployee","parentBandDefinition":{"metaClass":"report$BandDefinition","id":"a4508fee-7f14-f3bf-7150-f37636e71424"},"report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"dataSets":[{"metaClass":"report$DataSet","id":"a56dd16b-39ad-31c8-653c-8bf66e378f15","type":"30","jsonSourceType":"10","name":"CurrentEmployee","useExistingView":"false","bandDefinition":{"metaClass":"report$BandDefinition","id":"c783a1f3-5856-3917-247c-f4392f32e4a7"},"text":"import com.haulmont.cuba.core.global.AppBeans\\r\\nimport com.haulmont.cuba.core.global.DataManager\\r\\nimport com.haulmont.cuba.core.global.UserSessionSource\\r\\nimport ru.digitalleague.ecm.eademo.entity.Employee\\r\\n\\r\\n\\r\\ndef user \\u003d AppBeans.get(UserSessionSource.class).getUserSession().getCurrentOrSubstitutedUser();\\r\\ndef employee \\u003d AppBeans.get(DataManager.class).load(Employee.class)\\r\\n        .query(\\"select e from eademo_Employee e where e.user.id \\u003d :id\\")\\r\\n        .parameter(\\"id\\", user.getId())\\r\\n        .one();\\r\\n\\r\\nreturn [[\\"position\\":user.getPosition(),\\r\\n\\"name\\":employee.getName(),\\r\\n\\"tabNumber\\":employee.getTabNumber()]];","view":"null"}],"position":"4"}],"name":"Root","report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"dataSets":[],"position":"0"},{"metaClass":"report$BandDefinition","id":"c783a1f3-5856-3917-247c-f4392f32e4a7"},{"metaClass":"report$BandDefinition","id":"b595cc00-f996-2baa-3588-e417b22fec8b"},{"metaClass":"report$BandDefinition","id":"d4f68141-f6ea-481b-28a1-48f78366d0cc"},{"metaClass":"report$BandDefinition","id":"8c496f0c-9c41-fdc4-7054-c4efb3aaed1d"},{"metaClass":"report$BandDefinition","id":"c8405160-514f-db83-0fff-be7ca175cdfd"}],"inputParameters":[{"metaClass":"report$ReportInputParameter","id":"8afb30f3-67a1-0b77-4c40-42f26d495c2c","lookup":"false","entityMetaClass":"eademo_DocPackageModel","parameterClassName":"ru.digitalleague.ecm.eademo.entity.DocPackageModel","predefinedTransformation":"","type":"30","required":"false","validationOn":"false","defaultDateIsCurrent":"false","report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"},"name":"Пакет","alias":"entity","position":"0"}],"validationOn":"false","reportType":"10","reportScreens":[{"metaClass":"report$ReportScreen","id":"6bf9d23d-161f-8551-7c05-b448c57c8171","screenId":"eademo_DocPackageModel.edit","report":{"metaClass":"report$Report","id":"55f7cbcc-8df2-20b2-4240-de22ec0d1835"}}],"group":{"metaClass":"report$ReportGroup","id":"4e083530-0b9c-11e1-9b41-6bdaa41bff94","localeNames":"en\\u003dGeneral\\nru\\u003dОбщие","code":"ReportGroup.default","title":"General","version":"0"},"inputEntityTypesIdx":",eademo_DocPackageModel,","valuesFormats":[],"templates":[{"metaClass":"report$ReportTemplate","id":"ec483397-76e3-33fb-bbe5-a84dc3102667"}],"version":"2","system":"false","name":"Протокол подписания"}	\N	,eademo_DocPackageModel.edit,	,eademo_DocPackageModel,	\N	f
\.


--
-- Data for Name: report_template; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.report_template (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, report_id, code, output_type, is_default, is_custom, is_alterable_output, is_groovy, custom_defined_by, custom_class, output_name_pattern, name, content) FROM stdin;
77a28279-af50-f9a2-77e0-c3182d13ab22	2021-05-19 18:44:27.672	admin	1	2021-05-19 18:44:27.672	\N	\N	\N	b229178f-86ca-866a-df89-010e5cf54930	DEFAULT	40	f	f	f	f	100		Опись.docx	attachments_template.docx	\\x504b0304140008080800676487500000000000000000000000000b0000005f72656c732f2e72656c73add2c14a03311006e07b9f62997b77b6554464b3bd88d09b487d8090ccee069b4c48a65adfde500aba5056c11e33f9e7e723a4dd1cfdbe7aa7941d0705abba818a8261ebc2a0e075f7b4bc874db7685f68afa544f2e862aeca4ec80a4691f88098cd485ee79a238572d373f25aca310d18b579d303e1ba69ee30fdec806ed2596dad82b4b52ba8769f91fed78d9e445b2d1a0d275ac654b69338caa55ca781448165f35cc6f994a84b33e065d0faef20ee7b67e891cdc153904b2e3a0a054b769ea4639c13dd5c53640e59d8fff244a7cc1ce9f69aa469e2dbf3c1c9a23d8fcf9a458b939fd97d01504b0708e572f644e8000000d0020000504b0304140008080800676487500000000000000000000000001e000000637573746f6d586d6c2f5f72656c732f6974656d312e786d6c2e72656c738d8fcd0ac2301084ef3e45d8bb4deb41444c7b11a137910a5e43ba4d83cd0fc956f4ed0d9e2c78f0b8b333df3087e66927f6c0988c7702aaa204864ef9de382de0da9dd63b68ead5e18293a46c49a30989e58c4b0246a2b0e73ca911ad4c850fe8f267f0d14aca67d43c4875971af9a62cb73c7e33a05e3059db0b886d5f01eb5e01ff61fb61300a8f5ecd161dfda8e06a4ee4edcd4ee7e87323eb64d448020ca1fd48559199c0f33ebe1858bf01504b0708b262b677ae00000017010000504b03041400080808006764875000000000000000000000000013000000637573746f6d586d6c2f6974656d312e786d6cad90cb0e82301045f77e45337b29ba2086500989ba1413d4951b280334e983b4c5c0df5b35fe81cbc93df72477b27c56923cd13a6134834d140341cd4d2b74cfe0763dad7790ef5759935666b21c1d09bc7669c360f07e4c29757c4055bbc88ca843d619ab6a1f4edb53d37582e3c1f049a1f6741bc7096d442385e96d3d0e0b7c65ff515528917b6c2bbf4864f0282e4525663f1c5be1c3b6f22328b5141aa3d9c9507883e75a0538b040eebf272440f72f504b07083b6940d7b200000018010000504b03041400080808006764875000000000000000000000000018000000637573746f6d586d6c2f6974656d50726f7073312e786d6c9d90c16e83301044effd0ab477c7d425d4444004a19172ad5a2957c72c6009dbc83651abaaff5e473d35c71e6747fb6634e5fe43cfc9159d57d654f0b8492141236dafcc58c1fbdb9170d8d70f65ef77bd08c207ebf0145027f1cdc49baf600a61d951eae5845af88d5dd04473b04e8b10a51ba91d0625b1b372d5680265699a53b946963eeb1992c8561179ea2af86a72d61eb38213b6dd3292a56d4edaae79262c7b39f08c37052f9ebea1bef5f90d7cc5c1ff9537deead47f8b5dd46556767462993e81d625bd8ba2f753d43f504b07085a49cab3ce00000044010000504b03041400080808006764875000000000000000000000000013000000646f6350726f70732f637573746f6d2e786d6cb5d34d6fc2201807f0fb3e45c3bd42ab556bda1a6d353becb0c4973ba3d492b54000dd9a65df7d74b57a34d994d3c34bfe3f2010cd3febca3951a599e031f0060838941391337e88c16ebb76a7c0d106f31c5782d31834548379f214bd2a21a9328c6ac726701d83d2183983509392d6580fec34b73385503536b6ab0e501405233413e458536ea08fd01892a336a276e5250e7479b393f96b642e48bb3bbddf36d2e625d139bc718adab03c065f599066598002d75f85a9eb216fe986c370e2a22942fed24fd7e162f50d1cd92ef681c3716d4fbe9072dfdd938d3c9959253fb45189170c906d11bc0e45b017ff690f7bdb1e7043c95131d374381b251d698bbb71a39e7bb617a72ac6df755a627ea07987be09519dd9dff26e70d0c32fadb9935b9161431f8c8e7b74437045531bf5607072014bacda377bdb83d76f96fc00504b07083def8e2540010000ab030000504b03041400080808006764875000000000000000000000000011000000646f6350726f70732f636f72652e786d6c8552cb4ee33014ddf31591f7a99d845264b5411a102b901014cd889d712ec5903896ed52ba65c3861d3b76fc0142331212af5f70ff689cb4c93050097973efb9c7e73efb1b97451e5c8036a294031475080a40f2321372344087c3ed701d05c63299b1bc943040533068235de9734579a9614f970ab41560022f240de56a804ead551463c34fa160a6e319d2074f4a5d30eb5d3dc28af17336021c13b2860bb02c6396e14a3054ad225a4866bc9554639dd70219c7904301d21a1c7522fc8f6b411766e9873af28159083b55b094da045bf6a5112d7132997426494df5f547f8d7eece41dd6a2864352a0e28ed2f0aa15c03b390055e80ced335919fc9e6d6701ba5318949489290c4c3a847931e25e4a88f3ffdaf04e776a953773fbb727fdcbb7b70afeecd3d06eece3dbb27f712b85b8fbffaf7e07ecf6ebcfde89e66d7955afbb912cac0702d94f53b4febe07f80f773264763bfa0548fc3fdc39ad242d5ea7366ecae3f921301d98fa9d75882351d140becdb11ac86a4378cba34e9d2a8fb61048d409d59c385a86e358dbb75d6d6afca36e3e333e076de53eb78db0a9bc31c6ecc2f079cfe05504b07087a83098ba90100000c030000504b03041400080808006764875000000000000000000000000010000000646f6350726f70732f6170702e786d6c9d91cb6ec3201045f7fd0a0b651b431ea5698489fa5057511ba96ed35d4461625399878044c9df973492e5757773b9c3b9c3c05627d3154708513b5ba149495001563aa56d53a18ffa65bc40454cc22ad1390b153a43442b7ec336c1790849432c32c1c60ab529f925c651b660442cb36db3b377c188946568b0dbefb58467270f066cc2534228865302ab408d7d0f4457e2f298fe0b554e5ee68b9ff5d9671e673518df8904fcf572b32b954b86e1fe94d52e89aed606f8e276928d5eb207ef3b2d45caebe16bfd1de0ed2f0fd3929477e56cb4d6f670da7d2de88ece8b41c32ebfe70764c28418327a3ce84e8d670c0f716c231a883ce75d0bb67541453e270c5f2bf6d48a2064cabfc3299d333cd0036fab53fbee85cc087a3f19760d9c1c164413846f73e2f412d9cb2cfaddf35f504b070854bb91743001000011020000504b0304140008080800676487500000000000000000000000001c000000776f72642f5f72656c732f646f63756d656e742e786d6c2e72656c73ad93cd6ac3301084ef790aa17b253b6d4329967329855c8b0bbd2af2da16b17e90d6a579fb8aa6b51d08a6071f77a49df9b48b8afd97e9c92784a89d15346719256095abb56d057daf5eef9ee8bedc146fd04b4c5762a77d24a9c746413b44ffcc79541d181999f360d349e3829198cad0722fd549b6c0b759b6e361ee41cb2b4f72a8050d873aa7a43a7bf88fb76b1aade0c5a9c180c51b113ce2b987981c65680105bdd42cf9507e3b7ebb66bc1dcc11421ae444304a4b10f76b4234ce62258f3d4c10a3b404f1b0ea2200313d7abe8a5f6509e1714d044cbdb319fc9417315f62d8adc9a08688ce7ca4b49183b149e51ac1fcd16c0a7ef5e7ca6f504b0708b40e95ecfc000000aa030000504b0304140008080800676487500000000000000000000000000f000000776f72642f7374796c65732e786d6cd55dcd72dbc811bee729503c25072f4502fa73ad76cb92adc8bbb2566bcaebf310188a58811806002dcba7642bb7e4944beec90b6c6d762ba9fd7b06fa8d32180024c0c68c66066d312997ca12c8fed0335f7f3dd38301f0f1a76f6791f3862669c8e2a3dee0a39d9e43639f05617c7dd47b7575fae8a0e7a419890312b1981ef5ee68dafbf493df7c7cfb38cdee229a3adc3e4e1fdf1ef5a659367fdcefa7fe94ce48fa119bd3987f3661c98c64fccfe4ba7fcb92609e309fa629879f45fde1cece5e7f46c2b857c10c3c00340bfd84a56c927de4b3599f4d26a14f0514371fec88df66510530f3751c9991e466317fc4f1e6240bc761146677c2999e33f31f3fbf8e5942c6116f2df7a7f7096f6bc0fca77442165196e67f269749f967f997f8ef94c559eadc3e26a91f8647bd131285e324ecf123d32771da3c42499a3d4943d238e8a747bd5e0570c5bde71ecc42eecc596e5f7c23ab1d3e0e830658ab893837fca49fbb9cbe3bc91d7e43a2a3de70581c8b487c5d1d4b168f5ebe6aba4be347af46f9a1313ff9518f248f464f72c37ed90ffdcdde996ffe25be53fb7ff5691ff47344321a67a322d0f8a77472cefc1b1a8c32fec1516fa7571c7cf5fc320959c2493cea1d1e96074774169e854140e3da17e36918d0d7531abf4a69b03efee5a9088ef280cf1631ffdddd1f08eea33478f6d6a7f38c2b847f1a93bc272f728328fff6225c9f5c98ffa1021b941dda663fa524979833d88438348618b642a4b5e61727d968fbc0f844ee439dc87ba813ed3ed489f61eea44fb0f75a283873ad1e1873e511807f46d21440dd4fb708648382e128e8784b38b84b38784b38f84738084a31b95729c8cf97038707170c11881840b8604245c300220e182848f840bf23b122e48e748b8207b23e182648d805b4cb59ce75c6671d6196dc25816b38c3a197ddb1d8dc41c8b88432878f9a04713944622c01499ad1c883ba3f944fc0d22447764d11dcfb3bc7473d8c49984d78b8497ab5d1da7f11b1af12ad22141c0f11001139a2d92182fa6133aa1092fdf296660e38146614c9d78311b23c4e69c5ca361d13840eebe0a112529ac029a2cb269ae9a1021a867c44f1842ce2768f9e13c4cbbf7550ee21c2fa28822615de08498c0ea5e1b0898eea58180e95e190898ee85418d33ac2e2ad1907aaa4443eab0120da9df8af8c4eab7120da9df4a34a47e2bd1baf7db55984574731a32d05fbb3b89588a91f046e1754cf804a0fb7053ae993a972421d709994f9d7c2d1a34b1f3798e5970e75c618c692b24ac79bd089113deea305e74efd0061a96b8567848f25ae121096c85d75d622ff834399fa09de1d433a3c5386b15ad7e553022d1a298d076571bc9ba47d85a00a76192a2c9a01d1621822ff2e9ec19d2546fed6577c7d658dd65b5999550dd2b2111bc8c987f839386cfeee634e165d94d67a4531645ec96067888a32c6145acd5253f1c6a4bfed96c3e2569980208fda1fe29f317b39cb51764deb941971109631cde9e3d9a913072f0661067572fce9d2b36cfcbccbc6370008f5996b1191a66b912f8dbd774fc3b1c079ff02238be436aed13a4e521017612220c3205120b9090f834338c43943154e07d4eefc68c24010eda65428b3d1e1945421c91d93cc2d216cf8bb73cff20cc8604de572409f375212c515da180d5960dd3c5f86bea774f7517cc415919fa629189f54731d5ed5e0a35e0ba4f131a70dda708824d3e3ce4f18bd0d8065cf7c636e0b01a7b1291340d7db4d6567858cdadf0b0dbdbbdf82bf158c492c922c2ebc00a10ad072b40b42e64d16216a7982d1678880d1678d8ed450c198187b02427f07e9f84011a19020c8b090186458300c3e24080a112d07d874e0dacfb369d1a58f7bd3a0518d214a006861567a8c33fd2559e1a18569c0930ac381360587126c0b0e2cc7dead0c9844f82f186981a2456ccd520f1069a38a3b3394b48728704f92ca2d7046181b440bb4cd824bf0b81c5c5266e8ce9ec629c614eb60b382c925fd3319a6b3916a65f082ba2248a18435a5b5b0f38c2b2b999ed3e3371a34567172e23e2d3298b029a48daa4ac974773e28770e954ff62c979783dcd9cd174b5da5f87d9dbb9d7b22ad81b66f79fb0adcff7860ab317340817b3ca51b87b76cfd537065b64f7bcfb8dd7338986e5aea6253ce7defd96eb5972c3725fd3129ef340d3126cf6dd53e9e129496e5a03615f153fab1a4f127cfbca0bf39571eb695581b4b26c0bc17d551435a4e23cf1fdfc6a0164474f33727b3df1c8ed4d5424473191931c455b57720895c05ed23761daba467dcff5efd5ee0990f73dedccf9e58265e032f550ffa6aee77ce214a7d469c571f52f5c35b28cbc1fb5d38d1c423befc821b413901c422b1349cd8d52921c453b37c921b493941cc2385bc111c12c5b417bb36c05ed6db21544b1c9561d66017208ede9801cc258a810c258a81d660a720823a102732ba1421463a1420863a1420863a1c209989950a1bd9950a1bd8d50218a8d50218ab1502184b1502184b1502184b1502184b1502de7f652732ba1421463a1420863a1420863a182db170d850aedcd840aed6d840a516c840a518c850a218c850a218c850a218c850a218c850a218c840accad840a518c850a218c850a218c850aee0736142ab437132ab4b7112a44b1112a4431162a8430162a8430162a8430162a8430162a8430122a30b7122a4431162a8430162a8430162ab8c1de50a8d0de4ca8d0de46a810c546a810c558a810c258a810c258a810c258a810c258a810c248a8c0dc4aa810c558a810c258a81042159fe5254ad936fb81f9aaa774c7bec17d3e85532febb77237d650f5a12aafe458faf7221c3376e3b4de78e8bafa20e1380a9958a2be0330083b20be38a9dfe163f5180fdda694f742886ba66009d3d3b5046b2a9e2ae4eb96a0c8f354915eb704b34e4f957deb966018f4544957e8b2da94c2872360ac4a3335e381c45c95ad6be6b08b5539ba66087b5895996b86b08355f9b866b8ebe4c979d37a57b39ff656fb4b01822a1c6b08fb7204555842aea46bfbdaa4c91174d99323e8d2284730e2530a634eac1cca986139941dd55066a654db0b558e604a3544b0a21ac0d8530da1aca986507654c3c4684a354430a5da3e39cb11aca80630f65443286baa21941dd5702833a51a2298520d114ca9ee38204b61eca98650d65443283baae1e4ce946a88604a354430a51a2258510d60eca98650d65443283baa41956c4c354430a51a2298520d11aca80630f65443286baa21948a6ab18a625f2dd5cccd26613543b301b96668969c6b8616d552cddab25aaa2158564b902bbb6aa94e9a5db55467cfae5aaad368572d013eedaaa55662edaaa55686edaa2539d566d5521bd5f642b5ab96daa836ab96a4549b554b4aaacdaa2525d566d5929c6ab36aa98d6ab36aa98d6afbe46c572d49a936ab9694549b554b4aaacdaa2539d566d5521bd566d5521bd566d5521bd51d0764bb6a4949b559b5a4a4daac5a92536d562db5516d562db5516d562db5516d562d49a936ab9694549b554b4aaacdaa2539d566d5521bd566d5521bd566d5521bd566d592946ab36a4949b559b5a4a45a522df56f1b2f60cab1c53bbff897b3bb39cd9fc15dbb61467cf43ca8bf1a29281e4b9a5f09cc8d734f9cf2cd52e59784c3e50543f1fbbc7897d66d18b0dbfc2ee28445e278feb6a9cab6ecb2b4b8cb911fcd9f9cf37291bfaf8b2c32f150ebfcc8516fb82b2e5b8ef3e742d1f2ed4c6492d1847b54ed1ff9daaf60233ac9ca66975efcffbed8cbcf19ae1a263a451cbea149bcd98bef9c8d17807d98978289f08021e44f790cf9d553b1aa102a9f67bbba21ab7a9aad22a0248fc015deaf43bbfa762995f505ede27b8dcbd920366bef37336f92d050f936b9badfcbbfbdffcbf2fbe50fcb9ff8cf2fcbff2c7f285c1b13eec217f146f39a3d2269dc7007ea2a49c360c5fc8e7b3874abed3a659087e28ff024ed405b9e64cec99846909ed547cea0c5b90d9de57239618b24a48973416fbb44d2eabc43854bc3edb8e42a5c72b7e3128ccfb54b9e9e4ba3bbd99895997d8ce1d3aec2a7dded74d39ec2a53d3d975ef3a12bdf6993a238b4af7068df94b7cede1c28bc39d80e63870a970eb7c1d860479523db32f887e56ca0ccd95b4ada0355d61e68a66d64de54597ba099b6d17364cbc4a2e69566e646674f95b9079aa91b993d55e61e68a66e4cd5a912f7403373a3f3a6cadf03cd048ecc9b2a7f0f341338226f4355f66e9d7f3fc4145795c2879a291c97b7a172daad99c0d1b3e55095c3875b9a7a0f55297ca899c291d95325f0a16602c7549d2a7b0f35b3373a6faa143ed44ce1c8bca912f850338163f2a6cade43cdec8d5e7dab52b8ab99c27179735509dcd54ce0e8d9d255e570775b6b27cac513cd148ecc9e2a81bbc6ab27ddfd51656f774b2b27ae2a85bb5b593b715509dc7df8d5135795bddd2dad9fb8aa14ee6e6505c5532570cf780505295b7aaa1cee6d691dc553a5706f2beb289e2a817bc6eb28ddfd512e7d6f6905c553a5706f2b2b289e2a817b0fbf82e2a9b2b7b7a515144f95c2bd0fb382d27e317e94ffd2b210b7fcfbf2dbe5bf96bf2e7fe23fdff19f1f5b2f3bd62fd3c7f94beccae3056c0bdbe595f31b4ae717b5ef67c9826e5eb5af2ecb0fbdc685f962f5e4de8bf0e7e19826c59b8646244e6b17e35b3e595fa9be601913879d93cf3e774627d5d5f973360d33e7297d4362724d92105c1c3f68b9387ed09d19a8a6f53b56ef23a4ec208d7d10fb7bd27d105e5b77776b53bb225b9bd388a379794a09f1329aba390b957a42c4d6997bbbbf25ecd3c57c9ebf02ee9c777bf1bae25412f483a151d0cb43b47eddbe11b05e4bc07addfb0bce0397ff5cfec893c9bf97dfbeff26dfc7f0feaf785df770d19087e8fa01c06d015c7b3ef07ded837b325aebbfc69e8cc3fd5d77e740a26ce516a630ce61f2ed4bf9333fc457a624bee696ab5d3e7efe4286b7d98244e5b3e19135dfb21ebefc070f861fdfffe9fd37cef23b270f8fe5f7fce717feefd7e5cfcefb3f2f7f7dffc7e5cf45d458458cb2778c4791172c66eda348f5c97a1469f950c4e3c6e14d49eeb44872472f68632189eaddbb55df5f3091599d7bb6da39ebfc0b23f3b02cde4cf642c9fdccf22d861b0ed53d26b2ad80e50b083b3b998da3826afecb73218cdb32300a0783b7a4577df18446d10b527c9bcde55fcda5557c3ad83968f97c5cbce6546a9f88fdb052807ed399feaa111addbcee58584fd55e64d1262f329026abb2b79b096a8778fbc14492a056aa5b4f3abcd51fb53949439475ae8e5912f09cbfe6429c35e5e84543c58ec6f5c4267d77d42b5e6dc45da0ab3c57326565bb62d1cabae2d8ca38e42927a067ddccbfb233ef37bbdf32fa60f50c9e5f631683d5028ec120f95031787c9aff1332ce77df9e1447c7c4bfb94ed8220e06b601da05f89ee8ed02ad0eed2ec8f7c57d776cb928ecb151140305d37cc894a15abc87578b98f8bd64b7c7240e46e1bb553b06abf1557c83776ceb37fa2d6897c9aac7266192661cbd579bbd8d8b4e69ec512e515680258e0435221f0054b8ca9b89ef2a3ae8983331f88a2659af6ec97ff3cbf098aec2c78f28495a06914918f14f4f87f9bf957a4ec5c10df1ac3ec99f7598f75375574971366d7fcf58f2ee7fcfdfb5d8abdfd24ffe0b504b0708eefb3e21f70f00004e9f0000504b03041400080808006764875000000000000000000000000012000000776f72642f6e756d626572696e672e786d6cd5584b6edb3010ddf71402f70e65f90b217250b430d02e82024dd135455136017e0c92b2936d2fd323f458bd42a98f1dd16e6b59092c654568e60d67e6c98f1cebf6ee91336f4b94a652446078e3038f082c132a5611f8f6b01ccc81a70d1209625290083c110dee16ef6e77a1c8784c94c579760ba1c35d04d6c66c4208355e138ef48ddc10617da9541c19fba856702755b2511213ad6d246730f0fd29e4880a506d2323902911567b0c38c54a6a999a01963c94694a31a9967d846a92b80cf92871c68930655a451832b66fbda61bbddf6dfbbffc5bcec0c2f68e626d14c2e63ee39ef3f429b1241610b665d645ed1201bfb0581a95b1b62d6239082e4a1297fc608c33c688293d36f0813c1e5cbf7ffc3ad83fe3bd9591b4826fbea87ca122b1bedc1c8159605fe62e5c23b12adee668eae7587800ab6a594a6174de87c69446e0eb138f252b42df0bed18b076dc54d834094951c6aa3262e8ec58c397998b94b0e8e298a4e1cb49929752341c8fdb71f441668a12e5dd935d8da8236bdefd31f0943287ac3afc2c63c16bfcac7e5eca59309cb6e3ecbb45e7e78aae31e6d872025cd019b69ec167b91a7522c1603ebfbe065ba96fdc81fa2c196f587d934ed4371eb53cd53b55dfb413f54dfc96a7fbd5d537eb407d9359cb73bc17ea9b77a2bee9b8e5797e65f54167283d3bb106ad275661ff1494769da5e9b3d5d8f2577f65fd52ca5dbe1db65f3647f6b0f4a6035d0f4b6f3a5ff5b0f4a6a34f0f4b6f3a83f4b0f4a623410f4b6f7a5bf7b0f4a6d7662f4a3fbdc544717b89fa7716e72a737a8205f2242cf87758500f83b54f5c8b3f504b0708b63a9c0d5402000028130000504b03041400080808006764875000000000000000000000000011000000776f72642f73657474696e67732e786d6cb593c16ec2300c86ef7b8a2a776837691b4214c4a5daa6b149031e20342e584ae22a71e9e0e967cad0d026ed82b825f96dff9f6c6734f97436d94288483e57b7fd4c25e04b32e8d7b95a2e8ade402591b537da92875ced20aac9f866d40e23304b544ca4828fc336571be67a98a6b1dc80d3b14f3578d12a0a4eb35cc33a6d29983a5009314aaab3e95d963da44ea3576329b92772493bac2194e05970b24ca507c140a51bcb0bbd9a33d512b2d536578fd9e02897e46acd3fa7f9114de2bc76027d7cc5155ae4dd8c0c28919a807f901d96812255dc979494aa0a4be8a0d5c9f3f6fedcf2b7114927031a10500b73de5928c8f31cf730f5e6a5898c525148c85f40f01f00f883f3bb747eb1aba100cd4d90895dc7ccd01b7161b19e6108149ebd91a95dcd0cab0a8218a06698c93260a0b6ebf31368230b7ca16f7abe462ca9dde85e7587d08585a6f7b13c24818e3c8da87375b8add088e97789d3a7187f01504b0708d19581df6001000059030000504b03041400080808006764875000000000000000000000000011000000776f72642f646f63756d656e742e786d6ced1bdb6edb36f47d5f21a87dd880259693b44b8c3a439aa017a0ed823aed1e0b5aa26dae922890949db42890a6bb6068b70e4331ec69fd85346dd6a297f417a45fd897ec9094e47bead473aa76366049e421cf8de71c9287d299af373dd76862c609f5cb6671d6320decdbd4217ebd6c5edb3837b3681a5c20df412ef571d9dcc2dcfc7af9b333ad9243edd0c3be300083cf4bb46c86cc2f71bb813dc4673c6233ca694dccd8d42bd15a8dd838b999490f56361b4204a54221e9344b03ec03ac469987041459bda0bbac25b40a739675bac0b08b04f0cb1b24e029b6e661f49b9e9bb66b8d42b5459913306a63ce41119eabe97a88f8199aa23582c0124fd6231885b2c350ab836437236b1ad8c6c8fb50666ccc021b89f61416c057b47af0551a28c06d6cf5f1b09d67340c526c9e3d8ab41e6237c3406a2c8011ad1297882d25789ba9e2c2785cf5eaecfdf049fbf1ecd2c5ba4f19aabae00880c890dc99cbe00b55ea6cc97ba02eeb4cdd2a62cbc546abd4446ed9bc22a576cd8284f000d9c012805ce2e3aba144874241cda4a66cce2d58b250c5a02c28aa02aa09cce4b3c2f19d9d6266a4de10ba9269caec1cf505975db84d48d95c61044843b9b1e2f3ceb2cdd382e6eb568ab3783aad59e5dd7585844a2193930da2dcc6fc2e368e4cb95512cbd1a36837de89768de88511edc5dbd17ef43a7e68c477a383f8ae04447bd12ba87c13bd80eae82db43880ea83e825fc5f45bb1299d028b528d3c13bbec13b79bb4bfdc7c7040c105223a7eab03f73add2cbdb06f1708586ccc61f88c74e6666f3ab27017aca8186ee8ce1c863f9db243ca903e791856947141b96499875883869a79f1f3052f3fd11fbafe82d04e3bbf1834f71c894848f614eda86a9e775b41fefc4dbf17d434e3750f53c7a11bd89ef97c6957cd2233967f58fa4ae1b38f74a21618e7d0253ea1e88ade6da9231e1e83e9cc711a2d659c46f62f181f83bbec83e968e1c5812fbce1a12938defa3e969ecf89e1397f90d16a93b32164c9d660ca7d1a6b9128a06659f8a65fca94ce047982176b5854c8d613463203e110409ca721c4b7d34e155f2ff2b8a3e920b485846cae5d54f709dfacaa88193f00009bb81a7ce327967c9e3fe24579edfe5d3bf776d92a27d95c38b9e49ef8efe9673226c1955624fa6f39ec5f7e25fe39fa1e5bea1327c07d026c9f20dde5d89aa9bdc128a55b74be0052d2b547f0b55adb2b934672d49a6c55680cba6b3897af7d72eae89acd345dfd1ddac017d007e96320733aef8e92caad22a76ddcb48b34583e17824450d2d5a8b03e0552a04f586f75739c6e1080a7dcc54dd4b94de34a4cf727195a6686b8425c5a2990057a91b7a7e273cad514d94c2ac05a4c03ebd7016966f49639f5ed7a5629b876c88ce33e2c8c73adc0161c7c8646dd32642f7490ccaf66b5dc35bb4dabf2122f4c8d725519f88d471ae7708819bd8ef2c03f8420fb8b39c523fd74728855cea259870d8df2301747748b4937a97adaf69e9700bef559d651587a8ce7a87ea065b47fe552775d4e5b07687bff286a388b96e3bddaff36d2e462cd57ca2ebe101f612e1621d315467286868a27ee8e996c46dba99f633d8452733e6844ad6e1bf388ab02182e34d1122b7a2b14d7ad557d5d755fe5eb3f389131358221c9da51196335530de5cf0dac9547925172c8d72c02090dd9047fe3c171c77b0260f9295eb8143050c73cc9ad85c9ecc4e64bcd196113e774cddb991434d4d68ef31aea672c7d2c9db9cdcc272086112aa62269f1c24544d15319b3aea910b24422e9f9047435fc8a7e04ae8a9fb5ad23ed800f3540fdf0498a9177ab29a4a86204bf3285238404cc8a830689756d04b9e825e1416b2c5ff74eff641b336d9c19f7c53e37ef434de8eefa9ddde2b032ecf8df817b5b77ba932e307b0997b03d7a7d181218fd3e21fa0cd9e7cd1e3ad7c73237e003d55e63cde813e509e668046ca00e55747eddcd4544f87e929e4530d1daea180722267911c68e9ce342c7de4c6340d4ba3e9292f59fb2f0df5dae793d97fbeff63ea7b1fb74d4d7d6fc41c09aa5e51dbb01ca8697a6c9608d3220e6dad0255465dbdd7260e491ba6aa7c77e2f6d4d2b0c46df174df5be4ed33a9e339b47bac8ee8b26ddde0add943e346ffcff87c40e5517e5f0cb4338e6d9170b71564c3e2e34db18eea58ab26a857a44dcbb39fe292fcc2048494da5c9c5f4c1b5c46ccd0e76d00f8ca520719eaf4ac6c2e9e5263d0c0c8d1d973439dda4964f30bea1c82529141f4915c1b580f4567d23da883df6e684e6b1e6077b04d320b921fc8ac332a52316ac8e5890c3255bf4618480bebdc6cf4d94655831d6acb7331233bdcc13514ba2235ab75024155be9cab78b41b8855741a73c15a4a5fd84d3559483f6a29b4bff45afe17504b0708e8669f70c40600002e360000504b03041400080808006764875000000000000000000000000015000000776f72642f7468656d652f7468656d65312e786d6ced59dd8e133714beef538ce63ecc7f26599145c92481161610bb5071e94c9c19b39e71643bbb1b2124b45c566a559556bd2852db9b5e546d5782aa37f00ee119b6a56aa9c42bd433931f4fe294a52c125549a4c43efecef1e773ec63cff8ecb983046b7b903244d2866e9d31750da621e9a3346ae8d777ba959a7e6ef3bdb36083c730819a40a76c0334f498f3e18661b05088013b438630156d034213c0459546469f827d6125c1866d9a55230128d5b51424b0a14fbe9dfc3c793c39d2ae0c062884fae6cc7e078b9f94b34c1062ba1de69d4e95be797a38399a3c993c9a1c3dbd2bca4fc4ff27b96e7fd7cafed89805986a7b003774d1759fecefc003ae6b18302e1a1aba997f7463f3ac3157c27c8daea4d7cd3f53bda9427fd7cef568d49b2bbaaee7569b73fb76617f15d7f13bd54e756e2f0780301423b756b05eabde6a7b53ac042a8a0adb6dbfed5825bc64df59c137bdec5bc23b0bbcbb82ef7683850f255051f4143ef1edc02de1bd05beba82f7cd66dbf54bf81c146394eeaea04dafea04b3d1ce2103822f28e175cfedfaf614be4019d26c2bf4537ed2b997805b847685421e6cc051aaf1f1100e4028f40280518f22ed128a6231118720254c884ddbec9a8ef8cdbe6e5eca3d04362090b40b51c85644193f8d85140d7943ff4058d525c88bc73fbc78fc503b3e7c747cf8cbf1bd7bc7873f29b42e803492b59e7ff7e95f0fee6a7f3efcfaf9fdcfd57826e37ffbf1a35f9f7ca6067219f8ec8ba3df1f1d3dfbf2e33fbebfaf803729e8c9f01d9440a65d86fbda35928881293a803dfa6a1a3b3140b246338d184841a6a34077785c425f1e030c14b8162c7bf006156943053c3fba5522bc1dd311470ae0c5382901b708c12d429563ba98f5257b619446eacee948c65d03604fd577b014dfce6828e63f52990c6258a279158b908308a6906b591bd98550a17613a1925fb75048092303aedd445a0b20a54b76508fab952ea044c465ac2228e25df2cdd60dad45b0ca7c1bee9591625500ac320971c98de7c1888344c9182458465e023c5691dc1ed3b0e470c645a4238889d6e943c6543a57e8b844f7a2482feab06fe1715246528e7655c84b801019d926bb410c92a192334a6319fb3edb155314685709579220e51592d5451c40ba36dc3710e4afb6b6af8bccaa9e2059cb88aa960424e5f538c60300d3e9ae50cae7094a5f9adc97d2baf766d3ba48a4cfbe7af01f4ae84d8a942b6a398dafc32d27ef80d03e7afb73771b8cd2ab502c9777a9fb5deafe3fa6ee75ebf9f413f622471bf2d13d37939cf81c3f40186ff3318697589eed99186ebf2b84792537327f8c18c6a238edbe848b28c8cb1a25fc43c4e3ed180c45b756de43c4a6a623a60d0913fb85bed676bedf8c922dd22fa496357b72150a802fe462bf99c9c5eec40b69d55f3ca2cdcde7b588c904bcdce8c949489d9549380a12be73321296795a2cea0a1635eb9f58185254c47ad440f6d6c3730b4662fe010cfb599c0afd59744f3dd2eb9c591eb6ad185edd3db548974848d3ad4c429a8631e8c365f129c7ba5e5787da56d2f06b6f22d6c66a6ec069b9a6ed8b35e778c24c08860d7d204e8aa2980c853d96e55180a3b4a1877ceae87f93598694f136607101cb9b8af1278843aa619488b92e8701a70b6e96ed9b6f2fb9baf9f679ce580e321c0c60c8d7481655d1561851b6be2638ab909120bd1df7f7b51e1ed16b4038caf3adcc817dc4f8dc9b7d44a5c9bdf0e252ba9a2ec5d21bb5c51205781883e98e2227f3029e97e774a471e44c974765a85cd88bbaa7b1ebbe5c692969aed940fcb559eccd6df2122b47cdca53e6ba7acdfce75de2f53704895a4d4dcd51535bb7779ce28140eaaebac66ff6da68bee66eb03c6b0de99c99d756ae3248ef9698f96d717c1d61ce8a370207e2992198bd742e32412e9d659703ae8d286ae8b74dafe906b61754cc9ad7a9b88e6b566a5ed3a9343dcfb13a9e65b65bf61de1141e279657f4dd15cf37783cbdacc9e52b1736c9ecd87d26248941f27b182357ce2f6c2cbb746153dcd3683b59bbae21e199db55bb5b77eaad6aa5ee34bb15b7ddaa55ea41b555695703bfdd6d075eaddebda36b7b39d86d3a815bedd42a552b082a6ed5cce8d7ea15dfb5eda6eb376b1db77967ea6b31f2d9ffccbd39afcdbf01504b0708b5c25fdd15060000ac1a0000504b03041400080808006764875000000000000000000000000012000000776f72642f666f6e745461626c652e786d6cbd94cb4ec3301045f77c45e43d75da054251d30a15b1822e6811eb4932692cf911799c86fe3d4eda4a151854aad09ded19cfb973fd98ce3f948cb66849189db2f1286611eadc14426f52f6b67ebabd671139d00548a331653b24369fdd4cdba434da51e4b76b4ada9455ced509e79457a88046a646ed63a5b10a9c9fda0d6f8d2d6a6b7224f2d595e49338bee30a84668732f69c32a62c458e8f266f146ab72f625182f31d50256a62b383baa84d34282f7a2d1452b4c4367a350a749f90576009bb9c2dc894c531e3fd3e5042ee8eabb64fef03b57079755cdf82159049ec427c0ffb065ded5466649035199af5e053c2a8605bd40aa20b51cf2243db9b1dadd08ab2a782744b1f3dd6f9ea370f291b0f6dc202a4c8ac08da3038ecd406d01472617f28d7e9fd44ce8bd1262467611a2bd076c77225513fdfcac1517f7d6cd038134015584223ddafb7ecc4c6b35bbb1cf7eebfcaee33a67fe9ed30a0d927504b0708b4beff305f01000008060000504b030414000808080067648750000000000000000000000000130000005b436f6e74656e745f54797065735d2e786d6cbd953f6fc23010c5773e45e4b54a0c1daaaa4a60a8d4b165a052b7cad817b01aff917d50f8f6bd8434aa2a44a050164b96efbddf3bdb71f2c9c654c91a42d4ce166c940d5902563aa5eda260afb3a7f49e4dc6837cb6f51013aab5b1604b44ffc079944b302266ce83a595d2052390a661c1bd901f6201fc7638bce3d259048b29d61e6c9cbf102e6805c954047c16060ac6df03549167f5c892c79da066164c785f692990f2f1b555bf68694baa954d4d5c6a1f6fa880f1fd24b98ae8cc9ba95aa64630a38c04d78577d803c4a38da6c1f9d8e7b627bf2b4b2d4139b93224c93ad3da0f026a38d80ce91a701be642f8d49f0877014e477f9f5cad3e9548d667f70a1b522a5047b23f5d50ed7ded2cae74651b74c46d05f1ecae6b2f6a58428cf4be50fe9d6f2fdeaecc1c02492e9fa0b3eedf0340a4baffd885d6b937c2cfb3bf6c846ec5086d7b73203dfcb01bcf7f751a9b5e6449809998577ff8d6fb7aefacdb10839c37bfbbf117504b07087893b45c6a0100001d070000504b0102140014000808080067648750e572f644e8000000d00200000b00000000000000000000000000000000005f72656c732f2e72656c73504b0102140014000808080067648750b262b677ae000000170100001e0000000000000000000000000021010000637573746f6d586d6c2f5f72656c732f6974656d312e786d6c2e72656c73504b01021400140008080800676487503b6940d7b20000001801000013000000000000000000000000001b020000637573746f6d586d6c2f6974656d312e786d6c504b01021400140008080800676487505a49cab3ce0000004401000018000000000000000000000000000e030000637573746f6d586d6c2f6974656d50726f7073312e786d6c504b01021400140008080800676487503def8e2540010000ab030000130000000000000000000000000022040000646f6350726f70732f637573746f6d2e786d6c504b01021400140008080800676487507a83098ba90100000c0300001100000000000000000000000000a3050000646f6350726f70732f636f72652e786d6c504b010214001400080808006764875054bb9174300100001102000010000000000000000000000000008b070000646f6350726f70732f6170702e786d6c504b0102140014000808080067648750b40e95ecfc000000aa0300001c00000000000000000000000000f9080000776f72642f5f72656c732f646f63756d656e742e786d6c2e72656c73504b0102140014000808080067648750eefb3e21f70f00004e9f00000f000000000000000000000000003f0a0000776f72642f7374796c65732e786d6c504b0102140014000808080067648750b63a9c0d54020000281300001200000000000000000000000000731a0000776f72642f6e756d626572696e672e786d6c504b0102140014000808080067648750d19581df60010000590300001100000000000000000000000000071d0000776f72642f73657474696e67732e786d6c504b0102140014000808080067648750e8669f70c40600002e3600001100000000000000000000000000a61e0000776f72642f646f63756d656e742e786d6c504b0102140014000808080067648750b5c25fdd15060000ac1a00001500000000000000000000000000a9250000776f72642f7468656d652f7468656d65312e786d6c504b0102140014000808080067648750b4beff305f010000080600001200000000000000000000000000012c0000776f72642f666f6e745461626c652e786d6c504b01021400140008080800676487507893b45c6a0100001d0700001300000000000000000000000000a02d00005b436f6e74656e745f54797065735d2e786d6c504b0506000000000f000f00d30300004b2f00000000
ec483397-76e3-33fb-bbe5-a84dc3102667	2021-05-19 18:44:27.781	admin	1	2021-05-19 18:44:27.781	\N	\N	\N	55f7cbcc-8df2-20b2-4240-de22ec0d1835	DEFAULT	20	f	f	f	f	100		\N	protocol_template.docx	\\x504b030414000600080000002100e424894c7d01000029060000130008025b436f6e74656e745f54797065735d2e786d6c20a2040228a000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b494cb6ac3301045f785fe83d1b6c44aba28a5c4c9a28f651b680add2af23811d50b699cc7df77ec24a614272e4db231c833f7dea301cd70bc363a594288cad98c0dd23e4bc04a972b3bcfd8c7f4a577cf9288c2e6423b0b19db4064e3d1f5d570baf1101352db98b105a27fe03cca05181153e7c152a570c108a46398732fe4979803bfedf7efb87416c1620f2b0f361a3e41214a8dc9f39a7e6f4902e8c892c76d63959531e1bd565220d5f9d2e6bf527abb849494754f5c281f6fa881f1d684aa723860a77ba3d10495433211015f85a12ebe7221e7b993a521657adca685d3158592d0e82b371f9c841869e646a74dc50865f7fc6d1cb28ce8cca7d15c219849703e0e4ec6694c2b3f08a8a099e1c159d8d2cc2010fdf987d158774244dc6888e727d8fa76c70322092e01b073ee4458c1ecfd62143fcc3b410aca9d8a9986f36334d69d1048ab08b6dfd35f456d732c923aeb0748ab2dfce3dafbdd55a97bfe4f2faf4924eb93ef07d55acc216fc9e6f5a21f7d030000ffff0300504b0304140006000800000021001e911ab7ef0000004e0200000b0008025f72656c732f2e72656c7320a2040228a000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ac92c16ac3300c40ef83fd83d1bd51dac118a34e2f63d0db18d907085b494c13dbd86ad7fefd3cd8d8025de96147cbd2d393d07a739c4675e0945df01a96550d8abd09d6f95ec35bfbbc78009585bca53178d670e20c9be6f666fdca234929ca838b59158acf1a0691f88898cdc013e52a44f6e5a70b692229cfd46324b3a39e7155d7f7987e33a09931d5d66a485b7b07aa3d45be861dbace197e0a663fb197332d908fc2deb25dc454ea93b8328d6a29f52c1a6c302f259c9162ac0a1af0bcd1ea7aa3bfa7c589852c09a109892ffb7c665c125afee78ae6193f36ef2159b45fe16f1b9c5d41f3010000ffff0300504b030414000600080000002100d7e6089e1b010000440400001c000801776f72642f5f72656c732f646f63756d656e742e786d6c2e72656c7320a2040128a0000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ac93cd4ec3301084ef48bc83b577e2a44041a84e2f08a95708125737d9fc88d88eec0d90b7c7a26a928a2aeac1c71d6b673e7bbd9bed8f6ad9175ad7182d20896260a8735334ba12f09ebddc3c02732475215ba351c0800eb6e9f5d5e6155b49bec9d54de79877d14e404dd43d71eef21a957491e950fb93d25825c997b6e29dcc3f65857c15c76b6ee71e909e78b25d21c0ee8a5b60d9d0e125dea62c9b1c9f4dde2bd47426823b1a5a7f0196495b210938d491f7017e3efe21643cf95e9cd2ffca83982c31ac4232e85eedd1faf14e1ca3b404918484c87b47467df8b411228a269537846af149d621694aa32993fb76369a515a82b80f09f18dfb3724f25398fdcf99b80472177447fe511c9523023fd9fdf4170000ffff0300504b0304140006000800000021008914c3b2340a0000bb77000011000000776f72642f646f63756d656e742e786d6cec1d6b6fdbd6f5fb80fd0742dd8716682c4ab69ea85cd8969d066803234eb78f014552126792972029bbee102089d31543bb16288a61df8aed17788ebdba4ee2fc05f22fec97ec9c7b49899428997ad8a41c3a8824dec7b9e77d0feff3934fbfd254ee40362d85e88d5c6185cf71b22e1249d13b8ddc978f77ee55739c650bba24a844971bb923d9ca7dbafefbdf7d72589788d8d364dde600846ed50f0db191ebdab651cfe72db12b6b82b5a229a2492cd2b65744a2e549bbad8872fe909852bec81778facb3089285b16b4b725e8078295f3c069a3d08821eb90d926a626d8f06876f29a60eef78c7b00dd106ca5a5a88a7d04b0f9b20f8634723d53af7b20eef511c22a758690f7e5d730e3b4cbaa343d0ed016f3a6ac020e44b7ba8a312063566890d9f5811c4c22e24053fd728746616d3e19344de110be0600e3a02fb14a9aca309f0cb1c0c7900882e8d7888342b84d1f134d50f441c333b126c0dc42693a00c5610046673ee1dc3749cf184053e683f640dfefc342cb9e029627e42069d67cc8ec7505032c5013eb0f3a3a3185960a1881c838e03a876a9d5b078fd322d2117e1bdc611d3c96f4a891e3f98d6ab958037bf7929a725be8a936e6ac964b6bcd6d3f6737509802d935f1cb32041110804242db96c1f879aca02ac892e25affe1510f31127a36c9e5b1da9f45c83810d446ce543a5d9b259a0ca4b94374db428896a88094364c455011507743b782cfa2e53fd0ead6d73ecc42d94fd9423881b4bcd74abe4f80e953be8bc8f3abb5e26a9951788be81cd6ed75e767e7c47de19c70ce05e79cbacf9c73e78dfb23e73e77aedce798e19c3aaf21f1ad7301c9ce3b287105c957ce25fc7fed9c20309b8164f48d88ba542c968a03518708cee49fb4fcfff097900401419390f6b68908da4706b0cf326455ddb305d3e75750b8ab357ea7528c16ee2d5103a216a82ad03459bff7e5de30918f154dde233d53946311bbad4b43a4262da59521bc13452c06c36d60789a500ee2f6f47a9715f641b3b82c2f8942f6c89b87ca6107121feb393bda81c71421c895cd05bbccd50889b1b4445ce6f5e8d02ef3977027384ed123d8cf502f974bb5422d01d431f0a37d27783ac3942dd93c9073eb5c0c029260f33b60ee197c5e403072c20290cc7413c23aa01521e416d61033ac61893be71072c2cf4be79c06a9ff7bf98f390296c5621ea31b6c12715710f7858efc0591643516e2e3828f9b60f87058315decc76fac559a3bd14a7b1bdc35f63b0f7b5aea98fa94c3ce819b33b04e9ab999eadeb0ea36057bbeb7911bd1dd1046f1bbaae5ec60bd382c11ac83f150911f8d8758da306d37a604d3a1433beb7f43f7fc2ed43dd7e7757a9bd5ca46b37a63661987c425758dd3cb6f3e075a6b162a3ba5b44b0adcec63a065492534ab334ef2bd61f9ddda4fe0d6ce208403c7760eeff927ee5f21e122736d4b6438b3bbb6a43127866cd2e9e8cc6d656e6b2ab7f52f0cc0dc17eeb1fb7cb131d972f4f48b715c29a177922f5b42d958b660f7ac717464eeea7d7457ffa4e3f9185ae1ea832bf759e6a7c6529c05588bc35cd1155b116c62663d448aac4217ae5b2eb07cfdc3f8c1c5b04cb2fe21aa7ff8d939c728d67d4697a0bdc10568ee8bfa244d6f6e169ab5e121fd9b98698f45c19899f639fbb8481aef702c9e2e994ef6b4cb211b493640b570c1faf2d8d25de0fba41e2e851c7fbfe601d38475402f42c82dac21dabdfe141c233aa7abbd9d333adefd5f3a8af49c2d01c785df67eeb1fb83fb37b61607d7825f41196f3d78b843f6196eb754efcb6baf051dda912afbeab6c6341092ff044987402422cb3a83c15a6dc8fe9c907dbf12bfb6418bb515d3b21f11a855c04755f09e06995b44ed69b82dcacff71368119d7cb629e852ffe98feca9e0b12888f47d5391f06707be0106c3b556e46b83b27e113b64cc9566a552a3f0c72ad9639a56a896373c03b73de1887a3bc4ac023ff89b8e7eb60a7e987e22491ec9f4513e90f5e0336407f983d9c167bff59d9186fc9ccf871bf4301cade165842b789cf53555649fd1ac01fe8d614d107e7cd5483f6b90179ecd503de47cb391be127cd679cc0a79bd48852c6df0db5b035718f07ae1e2cceb55cb5bfc56d0eb1921590825869fded358b6a21ea0c53041f5f31e487e9a6f70fd0ab7d8c38df5b51e4b6e191d74a11f7c302e3a4802b318014d0b343f4d2807716b2c192f376c5b10bb18948f1d254f94a1332c1bf7fc455a3462e4bd3b6dc82e64902c39fe86df1786d85bae95cafcf0186472b83e99846be47b585af53605c8c699fe53be9efed53753e53bafca0b18fa4c9dae8b5d59dcdf9b795342660e99675f226d475dce3cfbedaa727af536ad61734f6bc9c3d3fda96167e65e33f73a4e73a5d11d62997bcd54791955b92598229196579bf3746a0b5344f6c5d2bc99ae3b302f5a2b56b6b73787b09e6a7f6440548b59c2d49a5a6e3e8501cd0ab17f61ac44cd707ef12750712e35746e817f4c169e9f75e5fcc6b97fa733a997ee0b4c76dec23f4c0e5673bf777f780f6753abe5229d386265a367532355d3d3362f91cda606a49ccda666b3a9d3cca6523de47cb3b96636755a5f19f2fdccc30f34359db3a9ada1c616e285935bce740767579363e6b2cdaeee291d5d36afd97f94fa85c269e7f2a4b1c0a435f6e9c7cbc74f83580a6e044e2d4fe759cb9e529ef7c0fa1e8eceb24fb72b2b659e04743f4d9a1f6437dddaf19fb42af8ca22ce9a4b9f9b165a0fa306c49744c797d2954f1ac7cdf8393d3fe3ec27cf383a0d4745a24dda1294384b4388e5a7188b0d0fbbcef2a69efc1e95ec64816974c53b9c995e5d809b5846875e31393cf4cac1c74b3c84c079030958ee941e3f7bc2b9c7ce25fcfc953ebe75bfc3021c40c4a30b705bea058504d5f1de8433daea29547fc3d1a1606ce4b5fb3d54f721b23b1470a30ddd72034dd00200d9fd86c383a7d8465728f7129e2ebdd3a728deb4887bec7e4bf7ec7835103136ec7cee0f28071ac4bd3d94fcdfb80fe9c69d57000cc79e4f3fa2d73d8c4584eebc455858f763cefd1607b23da65112d94ea133a885e3df80ec09b2187f8c7211698e31028e085dd181f373ca0676e904e5b9cf7160ec4a842b18329fe25a697435ef5062c0a6c239e9b1a938ae21646c99bf98c35ff40f73c74b50be735e815d1c83195d60c285f36bb402bf42a3c03deadf409953bc4325d200c1c1ccb9f8f176bbde1801c356cf342160d8d60c951cc9b3be3047f4c689bff58d8b8152298678834469393b63889b91c15962b8decc810d99e166863bcb7100e9b20d7ca76583759183624ba5f12be346c05a84ece3c594d49401a2d25fd500b26ae49edc279b82b8cf1af5cb8265f44b8e5a48da841822381f3bbcccce749817eb805e84905b58432c900dbdd28e09457fe49e8cfe711f46244ef3f751a46a59b268ef862d6282a428f33b7ba8d4b81ca750c3eb60817ebcc2abba5a651a6e74be1010a24d0c2cb3ba4661e15d7e8d5cb544cdb5456c9b68835c556e4366a1c2d3652a5d59906468b6c2d3b398db84d0eb03bdc74ecff66e13a4ad8944459178510196a1c9121171a512c256747957b1c52ede5fe41b1c239bfe64575fe607b7eeaeff1f0000ffff0300504b030414000600080000002100863ae0a74b060000be1a000015000000776f72642f7468656d652f7468656d65312e786d6cec59dd8a1b3714be2ff41dc4dc3bfe9bf1cf126fb0c776d3663709d94d4a2ee519794659cdc848f26e4c0884cd65a1a5342dbd68a0ed4d2f4adb85a4f4267907e719b64d6953c82b54a3f1d8235b669366034b890d1efd7ce7e8d339d2a719cff90bb72302f611e398c62dab7cae6401147bd4c771d0b2aeeff60b0d0b7001631f121aa3963541dcbab0f9fe7be7e18608518480b48ff9066c59a110a38d62917bb219f273748462d937a42c8242565950f4193c907e2352ac944ab56204716c811846d2edf4fbe9afd327d323706538c41eb23633ff3d227f62c193068fb09dc43bca8cbe7b76383d9a3e9d3e9e1e3dbb27cb4fe5f53365ebef95930b9f709730b00f49cb9243fbf46017dd161620900bd9d1b24aea631537cf17e74644acb1cdd9f5d567663733f0f72aca8e0583b9a16d3b76ad3df7af0044ace27af55ead579bfb5300e87972e629973cd6e9343b5d6786cd81d2a2c177b7dead96357cce7f7505df7692af8657a0b468afe0fb7d7711c31c282d3a8698d42baeade115282dd656f0f552bb6bd735bc028504c77b2be89253abbad96ce7902125178df0a663f7eb95197c812ae6565b6a1f8b575d7b11bc45595f1aa86443816320262334849eb47321c10386c1160e42b9104730a65c36972aa57ea92a7f93afad4a2a427003c19c75dae4f195a6841fe01ec323d1b23e925ead1ce4e5939f5e3e79048e0f1f1f1ffe767cfffef1e12f06ab8b300ef2562f7ef8fc9f87f7c0df8fbe7df1e04b339ee7f17ffcfcc9ef4fbf3003451ef8fcaba33f1f1f3dfffad3bf7e7c6080b7191ce4e1bb38421c5c4607e01a8de4c40c03a0017b3d8bdd10e2bc453b0e388c61626340f744a8a12f4f2081065c07e911bcc1a46c98801f8c6f698477423616d800bc14461a709b52d2a1cc38a74bc958f9288ce3c03c381be771d720dc378ded2ee5b7371ec9f58f4d2edd106934af12997218a0180990f4d13d840c663731d6e2ba8d3d46391d0a7013830ec4c690ece281b69a1646177124f332311194f9d662b37d03742831b9efa27d1d297705242697886861fc008e058c8c8c6144f2c82d284213c99d09f3b4807321331d204241cf479c9b6caeb08946f792941773dab7c924d2914ce03d13720b529a4776e99e1bc26864e48ce3308ffd90efc9250ac1552a8c24a8be4392bacc038cd7a6fb06465aba4fdedbd7a5b29a1748d23366a62d81a8be1f27640891725e5cd2f308c7278afb92ac3b6f57d6a5903effe6a15977cfa4a0b71936eea865195f875b166f97321f9f7dedeec2717c15c9ed6280be93ee77d2fdbf97ee75fbf9f4057ba1d1eaa63ebb75576ea257be8f1f624276c484a02daed49ecbe9fa7dd9a82acac9fc316214cae26c780d1730a8ca8051f13116e14e084772d8b21a21e033d7010723cae579a19a8dbe930e328eb6a99fb696cbd993ab348062d12ecf9bac5d9e4e226dadd5178f6873f7aa16a847eb8c4062fb3a247283e924aa0612f5acf104126a66a7c2a26960d148dcaf65a12eb3acc8fd0860f23f8863a78ce4fa8304f9499e52fb2cbba79ee975c1d4a75d314caf99703d9d4c6b2472cb4d27915b8621f4d172f329e7bab948a9462f09c52a8d7ae36de43a1195256d20b15e030772cf551de9c683a3963594778ab2188da43f9ee8282441dcb23c310bf47f519611e3a20b7998c254573aff080bc400c1915cebf9349078c1ad5ca927733ca3e49aa5b3173975c927190d87c8136b5a1655d9973a31f6be2138a9d0b124bd13fa076040c6ec1a948172eae524803ee6621e4d1fb3dce25e447149ae665b51fb476db1452119857076a2e4c53c85abf29c4e6e1e8ae9f2acf4fa6c32832049d21b9fba271b251d39d15c738024a7a6593fdede219f63b5d07d8d552addcb5ad7ccb46edd29f1e607428eda62308d5ac2d8406dd1aa533bc51b82dc70f3a5b9ee8c38edd36079d5260744769fa96a2baf32e8e0965cf95d79fb3a26822baae8b67c6670b33f9d532550ad99badc1660cc70cbba5372dab65b71dc42a9e1f40a76d52e151a4ebb5a683b4eb5dc73caa56ea7725706458451d949c7eecbe71b3299bdac51ed2b2f6ca2ecb6fb9c47a32255ef618aca58bdb02957b41736e97b1ab09bf45b00cbc8dca955facd6ab3532b34abed7ec1ee761a85a65beb14ba35b7deed775da7d1ecdfb5c0be02dbedaa6bd77a8d42adecba05bb564ae8379a85ba5da9b4ed7abbd1b3db7767b19633cfae597815afcd7f010000ffff0300504b0304140006000800000021000d157e265a0400006b0c000011000000776f72642f73657474696e67732e786d6cb457db8edb36107d2fd07f30f45caf75bf35de40b6ac66837553ac371f4049b44d2c290a2465af53f4df3bba706d6f9460db204fa6e6cc9dc399f1bbf7cf8c4e0e5848c2abb961dd98c60457052f49b59b1b9f1fb369684ca442558928aff0dc386169bcbffdf59777c75862a5804d4e4045256356cc8dbd52753c9bc9628f199237bcc615805b2e1852f029763386c453534f0bce6aa4484e2851a7996d9abe31a8e173a311553ca8983252082ef956b52231df6e4981871f2d21de62b7174979d1305ca9cee24c600a3ef04aee492db536f67fb501b8d74a0edf0be2c0a8e63b5ae61bc23d7251be48bcc5bd56a016bcc052c20531aa1d24d5d9b0fb95a217db37607b08b15305e296d99d2e3df7fe9b02fb950249df12490fdd935c20d1d7c910062be2bb5dc505ca2954258433018f8c5b28cb2f9cb3c931aeb128e06ea0a623d398b50064846f370a290cb0ac31a55d9117142350788c770231284f4de9644abc450d558f28df285e03d30181df8119f670b14702150a8b4d8d0ad0b6e495129c6abe92ffc9d5124a5dc04d0c125de19f4f9bfe11814485184472f530d6bcc4ad678d206f4f762bd059877c5c987c6d88c3a317a4c48f6d0637ea447106ce6fc8179c54e5c7462a021abbe7f1031e7ccf015cb5963fc19d3f9e6a9c61a41a48d34f32d6dd444649bd264270715795501b3fcd18d96eb10003046a6d0de543043f7679fe805109bdf607edce2ecb083a7729f5e18173a5594dd3b36dcff67b4f5bf48c98891ba4d918625966980c85f30a09fdc48a46919563fba3766cd75b9acb5104de90336ac7f13d375d8d22a1ff0d6d4e6466813d8ed8ceb86fdfce8e9798abe5a807beef45e339f023cf3747e309d220d02de81a094d7bb51ab5132efd2c1d8d34b283d56a318ab84e188de6200a3c4777ac57486a05d9a8d789e939a9338a84be1d8de66d1106493a6a07cc58e3f1a4816759e3320b2b8d466b344da1468717788d64899b859db6d9cbcb60713b99ff12fad4b6b909eb259688e582a0c9ba9dddb39623174f0b52693cc7308cf025b269720d4ea73d2019a2348339a081eeb2595c1259a778db9de91a89dd59efc02146a930733ebee86a6718167f08ded43d7a14a8eedb9766b15c77902495ba274cd365936fb45405e3f3026aaaf2d34174793aa7e7182b6843dd18b8475d3beb7845337df8dc27bba062d3b62abc4675dd77bc7c67cd0d4a767b65b54d4ac157092b5ef791efec01b33bcceeb1ee03156d64c03d1cce345bd32ef81c4d73ce3457d3dc33cdd334ef4cf335cd6f697b98350206ff13345f7d6ce95b4e293fe2f2c319ff8ad42741ee518dd37e2f80f2e23d615814e4e410e367d83a7049146cce3529197a863b32fb5633705374e28dbae26db196b9bed650228574dbbf12ee4afc952fedbe521028c7cd89e5e735e4b7de714a248caa1a3616c585c67eef30cbeb5619f50855fc0417fb80b70b24713960252feeca76c1ea65fe4e3ce85cb66b4f9d45124cdd6c994c133b0ba641b24883c83157919dfc33bc42fd2fe1f65f000000ffff0300504b030414000600080000002100ddda86f5d70c0000697b00000f000000776f72642f7374796c65732e786d6ccc9d5973db3812c7dfb76abf034b4fb30f8e25cb47921a67ca76e2b56b73782227798648c8c29a22b43c623b9f7e0110a4283741b1c11ed7541e6289ea1f8eee3f8006afdfff785cc5c14f9e664226a7a3c9abf128e049282391dc9d8ebedd5eeebd1e0559ce9288c532e1a7a3279e8dfe78f7cf7ffcfef036cb9f629e050a90646f57e1e96899e7ebb7fbfb59b8e42b96bd926b9ea8830b99ae58ae3ea677fb2b96de17ebbd50aed62c1773118bfc69ff603c3e1e594cda8722170b11f2f7322c563cc98dfd7eca63459449b614ebaca23df4a13dc8345aa732e459a61abd8a4bde8a89a4c64c0e016825c254667291bf528db1353228653e199bbf56f1067084031cd48055f8f6fa2e91299bc7aaf7554d02051bbd53dd1fc9f03d5fb022ce33fd31bd49ed47fbc9fc7729933c0b1edeb22c14e25695ac202ba1785767492646ea0867597e9609d67a70a9ff683d126679e3eb731189d1be2e31fba50efe64f1e9e8e0a0fae642d760ebbb982577d57769b1f7f55bb326a7239eec7d9be9afe68a7b3a62e9deec4c1beedb8695ff379abb7efec914bc66a130e5b045ce55644d8ec71a1a0b1dc807476faa0f5f0bddb7acc8a52dc400caff6bec3ee87115702afc66a50ad451bef828c37b1ecd7275e07464ca525f7ebbbe49854c55a49f8ede9832d59733be1257228a78d2f861b21411ffb1e4c9b78c479befffbc34d16abf086591a8bfa72713130571167d780cf95ac7be3a9a30ed93cfda20d6bf2ec4a67063febf0a36b19e68b35f72a6078060f21c61aa8f421c688bacd1da7666f1acede657a882a62f55d0e14b1574f452051dbf5441272f55d0eb972ac860feca824412f1c75288b01840ddc571a811cd71880dcd716809cd714805cd712801cd71043a9ae3886334c711a6084e2e43571436827dea88f66eeeee39c28fbb7b4af0e3ee9e01fcb8bb077c3feeeef1dd8fbb7b38f7e3ee1ebdfdb8bb076b3cb75c6a05d74a66493e58650b29f344e63cc8f9e3701a4b14cb6445343c3de9f194a49104987264b313f1605ac8cce7dd116244ea3f9fe73a910be4225888bb2255c9f4d08af3e4278f555a1bb028523c4260caf32275f4884f4ca77cc1539e849c32b0e9a03a130c9262352788cd35bb2363f12422eebe8a483228d401adf2e7a516892008ea150b5339bc6a92918d0f1f4536bcaf3424382fe29813b13ed38498610dcf0d0c66786a6030c3330383199e18347c46d5459646d4539646d4619646d46f657c52f59ba511f59ba511f59ba50defb75b91c766886fae3a26fdf7ee2e62a9f7b107d76326ee12a61600c3a71bbb671adcb094dda56cbd0cf4ae743bb6d9666c39e7327a0a6e29e6b49a44b5ae372172a15a2d926278876ed1a8c455f388e455f3880456f3864bec935a26eb05da154d3e332be679ab680da99768672c2eca05ed70b5b17c78846d047029d28c4c06ed588208feac97b3da9d1423dfa696c32bb6610d97d5f35189b47a164950cb5886f734c3f0d5d39aa72a2dbb1f4cba94712c1f7844479ce5a92c63ad29f903e3925e92ffb05a2f59264caeb485e83fd55767c0834f6c3db841373113098ddf3eecad988803ba15c4d5eda78fc1ad5ceb3453770c0df05ce6b95c9131ed4ee06f3ff8fc5f34153c534970f244d4da33a2ed2103bb1004934c49921111492d33452248e650c3fb0f7f9a4b964634b49b9497179de49c883863ab75b9e820d0961a171fd4f843b01a32bcef2c157a5f884a54b724b0c6b66156ccffcbc3e143dd671990ec0c7d2972b3ff6896bac69a0e377c99b0851bbe4430de54d3838e5f82c66ee18637760b47d5d88b986599709e42f5e65135b7e251b77778f267793296e9a288e93ab00292f5600524eb421917ab24a36cb1e11136d8f0a8db4b18328647b0256778ff4e4544e60c03a3f2848151b9c1c0a87c6060a40e187e854e0336fc329d066cf8b53a258c6809d08051c519e9f44f7496a701a38a3303a38a3303a38a3303a38ab3e9fb802f166a114c37c534905431d740d24d3449ce576b99b2f48908f921e6778c6083b4a4dda472a1ef4690497911370152ef51c7848bed1247e5e41f7c4e5635cda2ac17c18e288b632989f6d636138eb1dcbe766d9799b9936370156e6216f2a58c239e3adae4b655f9f2acbc2de379f54d357a6d7b7e1477cb3c982debddfe26e678bcd3b24ad8b7cc7617d8d6e7c7d5fd2c6d669f78248a5555517833c5f1b4bfb189e82de3c3ddc69b95c496e5514f4b58e6f16ecbcd2a79cbf2a4a7252cf3754f4ba3d32dcb2e3dbc67e97d6b209c74c54f9de33982efa42b8a6ae3d662bb02a9b66c0bc193ae28da924a701686fa6c01f44e3fcdb8edfb89c76d8f51919b8291939bd25b576e4497c0bef29f42cfec9841d394575f3d01c67db388ee3572fe59c872df7eeb8453ff9bbaaed5c229c978d0ca99f63f71b535cab8fbb1f770e346f41e77dc88de03901bd16b24729aa3862437a5f7d8e446f41ea4dc08f468056704dc6805ed71a315b4f719ad20c567b41ab00a70237a2f07dc08b45021022dd4012b053702255460ee255448410b1522d0428508b450e1020c2754688f132ab4f7112aa4f8081552d0428508b45021022d5488400b1522d042f55cdb3bcdbd840a2968a142045aa8108116aa592f0e102ab4c70915dafb0815527c840a2968a142045aa81081162a44a0850a1168a142044aa8c0dc4ba89082162a44a0850a1168a196b71afa0b15dae3840aed7d840a293e428514b45021022d5488400b1522d0428508b4502102255460ee255448410b1522d0428508b450cdc9c2014285f638a1427b1fa1428a8f5021052d5488400b1522d0428508b45021022d5488400915987b091552d0428508b45021a22b3eed294ad765f613fcaea7f38afdfea7ae6ca5be366fe56ea2a6fd5155addcacfef7229c4b791fb4de783835f9463f8898c7429a2d6ac769f526d75c12813af1f9e5a2fb0e9f267de04397ecbd10e69c29801ff6b5047b2a875d21dfb40449de6157a4372dc1aaf3b06bf46d5a8269f0b06bd035baac2e4a51d31130ee1a661ac6138779d768dd30875ddc3546370c610f778dcc0d43d8c15de371c3f028d083f373eba39efd745c5f5f0a085de1d8209cb8095d61097d550dc750187d9de626f4f59e9bd0d78d6e02ca9f4e0cdeb16e14dac36e949faba1ccb0aef617aa9b8075352478b91a60fc5d0d51deae86283f57c38111eb6a48c0bada7f707613bc5c0d30feae86286f5743949fabe15486753524605d0d0958570f9c909d187f574394b7ab21cacfd5707187753524605d0d095857438297ab01c6dfd510e5ed6a88f27335c892d1ae8604acab2101eb6a48f07235c0f8bb1aa2bc5d0d515dae36bb285bae4679b8618e5b84350c711372c3103738370c3db2a586b567b6d42078664bd05795cf71d952d3696e425fefb9097ddde826a0fce9c4e01deb46a13dec46f9b91a972db5b9da5fa86e02d6d5b86cc9e96a5cb6d4e96a5cb6d4e96a5cb6e476352e5b6a73352e5b6a73b5ffe0ec2678b91a972d75ba1a972d75ba1a972db95d8dcb96da5c8dcb96da5c8dcb96da5c3d70427662fc5d8dcb963a5d8dcb96dcaec6654b6daec6654b6daec6654b6daec6654b4e57e3b2a54e57e3b2a54e57e3b225b7ab71d9529bab71d9529bab71d9529bab71d992d3d5b86ca9d3d5b86ca9d3d58e6c69ff61eb054c9a6d5e48a67e9c3fadb97e0677e38699a87c06a93d09687e781d9d8e98798792ae4460df46655f9d64ea6acf159685191b584ab854c584f6c149ae52c6a018c733514db19bb656bfb67db739e759fe6eebfc66672d73ddb75d352c5f26053ba2f48aab5e6f6c98edaa98aac63c2e5fcaa5feb84e220578b02fa42a2b183db212a58e5ff038fec4ca5fcbb5fba7315fe4e5d1c9d8dc14ffecf8bc7cbe9bd33e35038113b0bf5d99f2a37d3198a39bcb27bedb33d4aeae3e68e96a73a9c4d05eeee1fe4d2da6a016a5fef4c685ed3ea6b05fb448cd61668310d6afbaf138cd8476acf96e3c1e9f1d9ebcbf2c8fb85ec8d67c1ddb61fda1fd756cdb31742ed388a746f5658c9852f5838f6d437fa941d0fca1cae4f5abd3d4c8b221d711e4655b47979775157b5ec622513dcdaf86997ff7332f6550777f1f55b444df2188bec68659b9c7858bc1ea7a83ed187c7372341ddbc9f4ef1583e797fa9f1973f43df966ce3b1dcd59787f97ca2289cc98610ee94bb1b836f00d59efa27c22dcbb300f417897e5a59f81a521e5e6591a893aa138b7af30422ad31abca432cd92f0ab7c3867493413bfea76d84a56bf50bddafa8b4db76d7e7b93d63db6d0cfae5674d34df645abf3b2532eb2d2bc7a4be9c6dac18a1919ca544b3589aa5a44a8b9eae1c9779ee60666fab5744268ddbeacc3228c3933ebe8e69ca33e2e44ac8e5e1ee87f75dc5f9a2fdb14a18f58555c56a942595aeffa5ec9f4d7dfafbe6e116fe53a9b69b67c517053c926d3da3c4aa055ca2e254fad923769510f550bb3d8d7b396bee4d7ced2a17e02d3635eb0d83e0ca6a1e49ea9d6a691c7a091f585baadcdb37580edab6ae76edff4cdc1b4ba90dcca42980fe2b92c6c13aabfb277ff070000ffff0300504b030414000600080000002100743f397ac2000000280100001e000801637573746f6d586d6c2f5f72656c732f6974656d312e786d6c2e72656c7320a2040128a00001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008ccfb18ac3300c06e0fde0dec1686f9cdc50ca11a74b29743b4a0eba1a47494c63cb586a69dfbee6a62b74e82889fffb51bbbd85455d31b3a768a0a96a50181d0d3e4e067efbfd6a038ac5c6c12e14d1c01d19b6dde7477bc4c54a09f1ec13aba24436308ba46fadd9cd182c57943096cb48395829639e74b2ee6c27d45f75bdd6f9bf01dd93a90e83817c181a50fd3de13b368da377b823770918e545857617160aa7b0fc642a8daab7794231e005c3dfaaa98a09ba6bf5d37fdd030000ffff0300504b0304140006000800000021002b6ad68beb020000ec0f000012000000776f72642f6e756d626572696e672e786d6ccc56496edb3014dd17e81d04ed1349b63c54881338838b146d502029baa625da26c2092425c7db5ca647e8b172857e6ab21d038125a7ad37a6f587a7c747bd0f9e5d3c31ea64586922f8c80d4e7dd7c13c1609e1f391fbe3617232741d6d104f10151c8fdc15d6eec5f9c70f67cb88a76c8a15143a80c175b494f1c85d182323cfd3f10233a44f198995d062664e63c13c319b91187b4ba112afe3077efe4f2a1163ad01e70af10c69b78463bb6842620ec999500c197854738f21f598ca134097c89029a1c4ac00dbef573062e4a68a4725c4494dc8b64405a172a93ad43eef2d5aae459c32cc4dfe464f610a1c04d70b22d7db688b06c9450592bdb5898cd1aa6e2983f0b033b8566809cb1a701ffa49d1c468c1fc6dc4c0dfe3442c44ddb10f85ed77564c18227cfde256d26c881bf49a01745e03c8f96187f3598954aed1c86168b7fcb1c6b2d66e80551ef2e6d6f46164ee17488203591cddceb950684a81111c9903aa3bf6b376cf61e4a0a9360ac5e62e65ced6d36d327261744171a430cc2b6583c5741acf0c56970aa3475b6251b82609b46788c2c41b8cbb83f124703d9b612935e42bce307d58495cd52c565345926f36476daea8354cd2aaa27f330e6f8697e32243339b20b014a42223290c333f0c3ef9be1fe41c728e3589a20f06ea84d5c1694a293635e2037eaa532fcfbfebf897b88a523c2bcbe5776517c2ed366d78e40e3a399305e2f37cb477fbbeadf5ea62552e13c18db6e2ea98c00776bf625341f3d631e8b615201c80133c43a04c0996a37839b1d74a043b4a74f3080c3c989a19b615072b239aea1284613b61ae44aa0856ce1d5e6ea8f32a1aebddc266aa757654ebbdbf6a2fcfbf9aead609faed74fb09d5f676a13754db8e3513a8f888b60df617046a6cb8ce70f8bf1d171ea5e34087a3765ce1afe3735cd86d39c2dfdb71fd23755ccf6f39cadfcf7183a3745c6fd07256ff23c70d8fd471fdb0e5083fdc71ded6edb6dca893ffdaab6ea1c7d6fdb7da51c590dbb6622deec1e77f000000ffff0300504b0304140006000800000021000cff8071e00000005501000018002800637573746f6d586d6c2f6974656d50726f7073312e786d6c20a2240028a0200000000000000000000000000000000000000000000000000000000000000000009c90c16ac3300c86ef83be43d0ddb55342ea9438656b5ae8756cb0abeb388921b682ed8c8db1779fc34edd7127f14948df8feae3879db277ed83412720df32c8b453d8193708787db9100e5988d2757242a705388463b379a8bb70e8649421a2d7d7a86d961a26d56b2be0eb52b07c7f3ee7a4656d498ac727462a567252547975da71ce0bb6ff862ca95d3a13048c31ce074a831ab595618bb37669d8a3b73226f403c5be374ab7a816ab5da43bc64aaa96a4b76f768266cdf3bbfdacfb708f6bb4c59bff5a6ee636191cbc9cc74fa04d4dffa856be7b45f3030000ffff0300504b030414000600080000002100dc9e74d1a00100003703000011000801646f6350726f70732f636f72652e786d6c20a2040128a00001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c92bd4ec33010c77724de21f29eda0d1282284d25404c202151046233f6d11a12c7b20da12b0b0b1b1b1b6f801048487cbd82fb4638499b52c184bcdcc7ff7e3edf39e95fe5597009da8842f650b743500092155cc8610f1d0cb6c33514184b25a75921a187c660503f5d5e4a988a59a1614f170ab41560024f922666aa8746d6aa1863c3469053d3f10ae993a785cea9f5ae1e6245d9391d028e0859c53958caa9a5b80286aa25a22992b316a92e74560338c390410ed21adced74f15c6b41e7e6cf823af343990b3b56f0a774966cd55746b4c2b22c3be54a2df5fd77f1d1eece7efdd450c86a560c509a70165b613348133c37bd652e4ece80d926dc3ade661aa82d74ea1e26d7eec57db947f7e13edd53e0eedd9b7b75ef81bbf3f10f7f1eddf3e4d6db4fee7572538366c5d55ace615c169a1b7fc582e7651c0cd34259bfeca68185805767d4d85dbffd53017c63fc8f5e7e332aac864b51fdb034aa15ad9b4cd7d5f40f3cf0638e9ba5cc32872b9b5b836d9446242221590dc9fa80acc5d17a4cc871f58485fa39309f36f06fe20cd04c71f1aba7df000000ffff0300504b03041400060008000000210035651858a4000000fe00000013002800637573746f6d586d6c2f6974656d312e786d6c20a2240028a020000000000000000000000000000000000000000000000000000000000000000000accf4d0a83301086e17da177083980912e5c880a42ddd642a0ab6e92389a407e2419416fdf20a527e872f81e5e9846d63c6c5141221c2c288489e361a1a5effed973b3a31e268326f8719e8d82d15be3a1d893a5e4840fe132ce969217c494614b2b4a76677daa654b35e25a3396940627521156f0799b437402f3191716cef03da8cd8147762bcb8a4923ad094b14ab3ebeb1bfa4ba86fd1eeeae970f000000ffff0300504b03041400060008000000210068417dd91f0200001509000012000000776f72642f666f6e745461626c652e786d6cdc945d6fd3301486ef91f80f91efd73869fab16ae9b4955542425cc010d78eeb2416fe887cdc66fdf79c7c74a3b445ad0443102b8a738efde6e4d17b7c73fba455b0110ea4352989069404c270bb92a648c997c7e5d59404e0995931658d48c95600b99dbf7d7353cf726b3c04b8dfc04cf39494de57b330045e0acd60602b6130995ba799c75757849ab96febea8a5b5d312f33a9a4df8631a563d2cbb873546c9e4b2ede59bed6c2f8767fe88442456ba09415ecd4ea73d46aeb5695b35c00e03f6bd5e96926cdb34c941c0869c99d059bfb01fe4c5f512b85db23daceb47a11185d26103f0b683e7b5f18eb58a6103e5612a01899f7f4837a6698c6c4e7adceac6ae31533164484a90d5329a1231c116daa9ad0313e477442c266212f9903d168740be32e9c332dd57617755633d3252ae979b98b6f98934d4d5d0a64818935641475fa8b7491084db51f890fd60cf723bcd599ee47a21fd6e037c30ec0018847a905041f451d7c6a2b3f4624c631a6432491e01de32c394a64b1f83d441eb0e6f861b97c21b2c0c8643aba3f2072fd2b22ed6bd4e99c4f6461d74e0ad7303941638204ae5b2a0d8de4221adaae843b8623974f62753e8b64f81a2cbe628737271b9ce89483eb824e616b6fffa14659302533274f5862d95aa119099a23bec812504b80cb1be4ee6753c4c9e4551ae40ecb3a7e74c6f41e0f8aa427d1d2f8f31cfede41d13922f8208bd29ff445e386ffd417fd04e6df010000ffff0300504b03041400060008000000210089995f537d0100009203000014000000776f72642f77656253657474696e67732e786d6c9493dd6ec2300c85ef27ed1daadc435b600c5514248498264dd3b4b10748d3b48d96c45112e8e0e9675afe36760157718e7dbed8723b9e7e2b19acb97502744ae26e4402ae19e4429729f95c2e3a2312384f754e25689e920d77643ab9bf1bd749cdb30fee3d56ba0029da258aa5a4f2de2461e858c515755d305c63b200aba8c7ab2d4345edd7ca74182843bdc884147e13f6a26848f6187b0d058a42303e07b6525cfbc61f5a2e9108da55c2b803adbe865683cd8d05c69dc379946c798a0a7dc4c4830b9012cc8283c27771987d470d0aed71d4444a9e000fb7017a478062c973a9c1d24ce20ab093006164823bc8c5daedcfa04e448e2b1c0cfb51ff71348a9b820cf2cdbc49aea9c42c09772aaee08517fea04647f55d94d53ff212cca53803ef41fdd1b191596e77913f79347e3a042f6ebbabdb058632be8f1948c08dd395871621cf3abbcd99fdeae836af3d9ffc166b781aba0d0f67b318305e28b1e50bb0330bb5e3b6798d4a09f5dbeb53eb3ffb93263f000000ffff0300504b0304140006000800000021006bd2ccc5f4010000e803000010000801646f6350726f70732f6170702e786d6c20a2040128a00001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c53cd6e133110be23f10e2bdf1b6fa242d3c8718552a11e8046cab63d1bef6c62e1b52ddb8d1ade85774048082ebcc33e12e35db238c0893dacbef9c633fee6c7eceaa9d5c51e7c50d62cc9745292028cb4b532db25b9ab5e9fcd4911a230b5d0d6c0921c20902bfefc195b7bebc04705a1c014262cc92e46b7a034c81db4224cd06dd0d358df8a88a6df52db344ac2b5958f2d98486765f992c2530453437de6c68464c8b8d8c7ff4d5a5b99f485fbeae0301f6715b44e8b08fc5d8ad493dac696d19165958d4257aa055e223d1a6c2db610f894d101b007eb6bb42f9019205bed8417326207f9e5c525a399cd5e39a79514117bcbdf2ae96db04d2c6e7bc1458a67343fc2b0880dc847afe221e9c84df646191430677400a8cc8bad176e17f82cc91b2db69142c30acbe78dd00118fd4db01b1069b46ba192be7d5cec4146eb8ba03ee27067a4782f02a4a62dc95e78254c24c3b1c1e8b176217ade7dea3e77dfba2ff8ffd17defbe323aba7a9847e4589da7760ee0f4606ff472109f0aad54d4106e1b2c33fe43f734d7dd6b185467727265c73bfec8bab2ad13065b4d4784bdfe10ee5c65afd396fc6ae729992dc0838abb8d13326dccf47c9eef42e6621b64a1c6e18ef31909768325789d2ec058b385fa78e66f47daaefbe1e1f2e98b49895fbf4e470e97627c51fc27000000ffff0300504b01022d0014000600080000002100e424894c7d010000290600001300000000000000000000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d00140006000800000021001e911ab7ef0000004e0200000b00000000000000000000000000b60300005f72656c732f2e72656c73504b01022d0014000600080000002100d7e6089e1b010000440400001c00000000000000000000000000d6060000776f72642f5f72656c732f646f63756d656e742e786d6c2e72656c73504b01022d00140006000800000021008914c3b2340a0000bb770000110000000000000000000000000033090000776f72642f646f63756d656e742e786d6c504b01022d0014000600080000002100863ae0a74b060000be1a0000150000000000000000000000000096130000776f72642f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000d157e265a0400006b0c00001100000000000000000000000000141a0000776f72642f73657474696e67732e786d6c504b01022d0014000600080000002100ddda86f5d70c0000697b00000f000000000000000000000000009d1e0000776f72642f7374796c65732e786d6c504b01022d0014000600080000002100743f397ac2000000280100001e00000000000000000000000000a12b0000637573746f6d586d6c2f5f72656c732f6974656d312e786d6c2e72656c73504b01022d00140006000800000021002b6ad68beb020000ec0f00001200000000000000000000000000a72d0000776f72642f6e756d626572696e672e786d6c504b01022d00140006000800000021000cff8071e0000000550100001800000000000000000000000000c2300000637573746f6d586d6c2f6974656d50726f7073312e786d6c504b01022d0014000600080000002100dc9e74d1a001000037030000110000000000000000000000000000320000646f6350726f70732f636f72652e786d6c504b01022d001400060008000000210035651858a4000000fe0000001300000000000000000000000000d7340000637573746f6d586d6c2f6974656d312e786d6c504b01022d001400060008000000210068417dd91f020000150900001200000000000000000000000000d4350000776f72642f666f6e745461626c652e786d6c504b01022d001400060008000000210089995f537d01000092030000140000000000000000000000000023380000776f72642f77656253657474696e67732e786d6c504b01022d00140006000800000021006bd2ccc5f4010000e80300001000000000000000000000000000d2390000646f6350726f70732f6170702e786d6c504b0506000000000f000f00d4030000fc3c00000000
\.


--
-- Data for Name: sec_constraint; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_constraint (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, code, check_type, operation_type, entity_name, join_clause, where_clause, groovy_script, filter_xml, is_active, group_id) FROM stdin;
dee5d8be-ac39-991b-3916-c5ff4aadae55	2021-05-19 17:09:52.241047	admin	1	2021-05-19 17:09:52.241047	admin	\N	\N	\N	db	read	eademo_DocPackageModel	\N	({E}.department.id in :session$departmentIds and {E}.pkgType.id in :session$pkgTypeIds and {E}.operationType.id in :session$operationTypeIds and ({E}.contractType is null or {E}.contractType.id in :session$contractTypeIds)) or exists (select a from eademo_Acl a where a.entityId={E}.id and a.user.id=:session$userId)	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
48c7f5da-26c9-4818-8dc1-276d38584b11	2021-05-19 17:09:52.243188	admin	1	2021-05-19 17:09:52.243188	admin	\N	\N	\N	db	read	eademo_Basket	\N	(exists (select a from eademo_Acl a where a.entityId={E}.id and a.user.id=:session$userId))	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
9cad380e-c0ef-4911-b63f-9dfc902265df	2021-05-19 17:09:52.24532	admin	1	2021-05-19 17:09:52.24532	admin	\N	\N	\N	db	read	eademo_Department	\N	{E}.id in :session$departmentIds	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
7bd61a56-30e8-4080-8639-ab24e21175ec	2021-05-19 17:09:52.247156	admin	1	2021-05-19 17:09:52.247156	admin	\N	\N	\N	db	read	eademo_PackageAttachment	\N	{E}.docPackageModel.department.id in :session$departmentIds and {E}.docPackageModel.pkgType.id in :session$pkgTypeIds and {E}.docPackageModel.operationType.id in :session$operationTypeIds and ({E}.docPackageModel.contractType is null or {E}.docPackageModel.contractType.id in :session$contractTypeIds)) or exists (select a from eademo_Acl a where a.entityId={E}.docPackageModel.id and a.user.id=:session$userId)	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
132c177e-3e02-44df-a9d0-21a55f63f197	2021-05-19 17:09:52.248944	admin	1	2021-05-19 17:09:52.248944	admin	\N	\N	\N	db	read	eademo_PackageType	\N	{E}.id in :session$pkgTypeIds	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
dd0d9312-6fb8-4e4e-a115-044ed33c010f	2021-05-19 17:09:52.250617	admin	1	2021-05-19 17:09:52.250617	admin	\N	\N	\N	db	read	eademo_OperationType	\N	{E}.id in :session$operationTypeIds	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
c55b320f-388d-46af-8087-e58dae836b19	2021-05-19 17:09:52.252412	admin	1	2021-05-19 17:09:52.252412	admin	\N	\N	\N	db	read	eademo_ContractType	\N	{E}.id in :session$contractTypeIds	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
5f8a6568-8797-4bc4-ac4e-3edd88f0ca67	2021-05-19 17:09:52.253991	admin	1	2021-05-19 17:09:52.253991	admin	\N	\N	\N	db	read	eademo_AttributeAssignmentTask	\N	{E}.user.id=:session$userId	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9
\.


--
-- Data for Name: sec_entity_log; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_entity_log (id, create_ts, created_by, event_ts, user_id, change_type, entity, entity_instance_name, entity_id, string_entity_id, int_entity_id, long_entity_id, changes) FROM stdin;
e3d2e136-4ec4-8ad4-a822-46fcf1349b46	2021-05-26 12:36:21.624	antonov	2021-05-26 12:36:21.611	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	C	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-eeb40f32-89f4-4660-d4cd-d26da167dbc8 [new,managed]	eeb40f32-89f4-4660-d4cd-d26da167dbc8	\N	\N	\N	location=\nstatus=NEW\nsender=\nreceiver=\n
a02f5121-b174-5037-8d90-909f2309825a	2021-05-26 12:40:06.486	antonov	2021-05-26 12:40:06.478	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-eeb40f32-89f4-4660-d4cd-d26da167dbc8 [managed]	eeb40f32-89f4-4660-d4cd-d26da167dbc8	\N	\N	\N	receiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVl=\nlocation-oldVl=\nstatus=ON_SCAN\nsender=Иванов Иван Иванович [ivanov]\nsender-oldVl=\nsender-id=751e8f7b-9573-fb06-3331-e2491424d82f\nlocation-id=712cebf1-c069-e76e-c819-4f3713ca8373\nlocation=Лоток №1\nstatus-oldVl=NEW\n
f025c2e6-719d-61a0-a44f-f57afbeef5f7	2021-05-26 13:48:00.234	antonov	2021-05-26 13:48:00.232	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	C	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-afca49d1-68fe-79eb-9fe6-0649ffc4b1d4 [new,managed]	afca49d1-68fe-79eb-9fe6-0649ffc4b1d4	\N	\N	\N	status=NEW\nlocation=\nsender=\nreceiver=\n
3ef2bf7e-5d4b-5801-c965-b44f119fd300	2021-05-26 13:48:24.048	antonov	2021-05-26 13:48:24.046	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-afca49d1-68fe-79eb-9fe6-0649ffc4b1d4 [managed]	afca49d1-68fe-79eb-9fe6-0649ffc4b1d4	\N	\N	\N	receiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVl=\nlocation-oldVl=\nstatus=ON_SCAN\nsender=Иванов Иван Иванович [ivanov]\nsender-oldVl=\nsender-id=751e8f7b-9573-fb06-3331-e2491424d82f\nlocation-id=5e33cf2e-aa2c-3fd5-7c30-4e2919a0db48\nlocation=Лоток №2\nstatus-oldVl=NEW\n
28b194ca-17cb-fc38-2f80-f5c00d11cdaf	2021-05-26 13:52:51.046	antonov	2021-05-26 13:52:51.045	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-afca49d1-68fe-79eb-9fe6-0649ffc4b1d4 [managed]	afca49d1-68fe-79eb-9fe6-0649ffc4b1d4	\N	\N	\N	status-oldVl=ON_SCAN\nstatus=SCANNED\n
17985bfb-704e-13a2-4ec6-fef4a37917bf	2021-05-26 13:53:11.148	antonov	2021-05-26 13:53:11.147	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	C	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-05a62cc2-861a-dcdc-f8eb-dd6d613a51a3 [new,managed]	05a62cc2-861a-dcdc-f8eb-dd6d613a51a3	\N	\N	\N	status=NEW\nlocation=\nsender=\nreceiver=\n
8d4bc39f-2699-3065-5bab-74c461e9ee33	2021-05-26 13:53:22.851	antonov	2021-05-26 13:53:22.85	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-05a62cc2-861a-dcdc-f8eb-dd6d613a51a3 [managed]	05a62cc2-861a-dcdc-f8eb-dd6d613a51a3	\N	\N	\N	receiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVl=\nlocation-oldVl=\nstatus=ON_SCAN\nsender=Иванов Иван Иванович [ivanov]\nsender-oldVl=\nsender-id=751e8f7b-9573-fb06-3331-e2491424d82f\nlocation-id=5e33cf2e-aa2c-3fd5-7c30-4e2919a0db48\nlocation=Лоток №2\nstatus-oldVl=NEW\n
f2461eca-1a07-3af0-350e-afd30aef3254	2021-05-26 14:31:26.953	antonov	2021-05-26 14:31:26.952	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	C	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-5555e9db-d1ee-84f5-a4a3-e55d5c5b1478 [new,managed]	5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	\N	\N	\N	status=NEW\nlocation=\nsender=\nreceiver=\n
a19b1e01-8d4d-aa0f-198b-9b359a16373c	2021-05-26 14:31:34.546	antonov	2021-05-26 14:31:34.545	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	C	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-331496b7-ef2a-4f71-d270-13a702686157 [new,managed]	331496b7-ef2a-4f71-d270-13a702686157	\N	\N	\N	status=NEW\nlocation=\nsender=\nreceiver=\n
89e22601-9847-8e0a-7576-08d783fced2a	2021-05-26 14:32:02.678	antonov	2021-05-26 14:32:02.677	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-5555e9db-d1ee-84f5-a4a3-e55d5c5b1478 [managed]	5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	\N	\N	\N	receiver-oldVl=\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver=Антонов Антон Антонович [antonov]\nlocation-oldVl=\nstatus=ON_SCAN\nsender=Антонов Антон Антонович [antonov]\nsender-oldVl=\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nlocation-id=f0c98451-14c3-fcf3-e919-73dc189d4f45\nlocation=Лоток №4\nstatus-oldVl=NEW\n
33b63efd-9360-11b3-6b44-c51071a3ecca	2021-05-26 14:32:02.709	antonov	2021-05-26 14:32:02.708	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-331496b7-ef2a-4f71-d270-13a702686157 [managed]	331496b7-ef2a-4f71-d270-13a702686157	\N	\N	\N	receiver-oldVl=\nreceiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nlocation-oldVl=\nstatus=ON_SCAN\nsender=Антонов Антон Антонович [antonov]\nsender-oldVl=\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nlocation-id=f0c98451-14c3-fcf3-e919-73dc189d4f45\nlocation=Лоток №4\nstatus-oldVl=NEW\n
2c195db7-c20e-9d00-2a54-33440d80dd79	2021-05-26 14:38:12.099	antonov	2021-05-26 14:38:12.098	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-05a62cc2-861a-dcdc-f8eb-dd6d613a51a3 [managed]	05a62cc2-861a-dcdc-f8eb-dd6d613a51a3	\N	\N	\N	status-oldVl=ON_SCAN\nstatus=SCANNED\n
a8ed852e-1096-00ab-1904-f4147e3992d2	2021-05-26 14:39:35.289	antonov	2021-05-26 14:39:35.288	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-5555e9db-d1ee-84f5-a4a3-e55d5c5b1478 [managed]	5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	\N	\N	\N	status-oldVl=ON_SCAN\nstatus=SCANNED\n
c58e1744-0f8b-759e-a534-155adefdc8ca	2021-05-26 14:39:35.301	antonov	2021-05-26 14:39:35.301	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-331496b7-ef2a-4f71-d270-13a702686157 [managed]	331496b7-ef2a-4f71-d270-13a702686157	\N	\N	\N	status-oldVl=ON_SCAN\nstatus=SCANNED\n
6f8f24e8-5bb0-ca47-b5e1-aa40c98cf697	2021-05-26 14:40:14.527	antonov	2021-05-26 14:40:14.526	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-5555e9db-d1ee-84f5-a4a3-e55d5c5b1478 [managed]	5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	\N	\N	\N	location-id=ef42900b-1f91-7e4c-1122-5a1ec301ee75\nstatus-oldVl=SCANNED\nstatus=IN_BOX_CONTROL\nlocation-oldVlId=f0c98451-14c3-fcf3-e919-73dc189d4f45\nlocation=Коробка №4\nlocation-oldVl=Лоток №4\n
ba7e9906-fd66-fdcf-619e-0fc637b75159	2021-05-26 14:40:14.544	antonov	2021-05-26 14:40:14.543	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-331496b7-ef2a-4f71-d270-13a702686157 [managed]	331496b7-ef2a-4f71-d270-13a702686157	\N	\N	\N	location-id=ef42900b-1f91-7e4c-1122-5a1ec301ee75\nlocation-oldVlId=f0c98451-14c3-fcf3-e919-73dc189d4f45\nlocation=Коробка №4\nstatus-oldVl=SCANNED\nstatus=IN_BOX_CONTROL\nlocation-oldVl=Лоток №4\n
fb6e0e70-3612-e84b-37cf-086f1fbb9bcc	2021-05-26 14:40:32.601	antonov	2021-05-26 14:40:32.6	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-5555e9db-d1ee-84f5-a4a3-e55d5c5b1478 [managed]	5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	\N	\N	\N	status-oldVl=IN_BOX_CONTROL\nstatus=IN_BOX\n
4ad666f8-b330-24ee-da31-7ba763c1c5fe	2021-05-26 14:40:32.613	antonov	2021-05-26 14:40:32.613	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-331496b7-ef2a-4f71-d270-13a702686157 [managed]	331496b7-ef2a-4f71-d270-13a702686157	\N	\N	\N	status-oldVl=IN_BOX_CONTROL\nstatus=IN_BOX\n
020aa339-6a43-d801-ee08-06b76a4ca15f	2021-05-26 14:40:59.626	antonov	2021-05-26 14:40:59.625	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-5555e9db-d1ee-84f5-a4a3-e55d5c5b1478 [managed]	5555e9db-d1ee-84f5-a4a3-e55d5c5b1478	\N	\N	\N	status-oldVl=IN_BOX\nstatus=IN_ARCHIVE\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\n
00cc7c75-fb0e-68cb-4ae1-c1d7cfa32bd4	2021-05-26 14:40:59.651	antonov	2021-05-26 14:40:59.65	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-331496b7-ef2a-4f71-d270-13a702686157 [managed]	331496b7-ef2a-4f71-d270-13a702686157	\N	\N	\N	status-oldVl=IN_BOX\nstatus=IN_ARCHIVE\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\n
69b442e3-2ecc-418b-c415-f94102f41f37	2021-05-26 14:56:52.026	antonov	2021-05-26 14:56:52.026	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	C	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [new,managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	status=NEW\nlocation=\nsender=\nreceiver=\n
c5d31d46-e2b7-2c7c-f704-99932455dbd0	2021-05-26 14:57:12.63	antonov	2021-05-26 14:57:12.629	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	receiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVl=\nlocation-oldVl=\nstatus=ON_SCAN\nsender=Антонов Антон Антонович [antonov]\nsender-oldVl=\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nlocation-id=c20d1fe0-b54f-db9b-4df8-fc740a976d41\nlocation=Лоток_5\nstatus-oldVl=NEW\n
31f65af0-b797-fd64-994c-f6b72286dfe3	2021-05-26 14:57:12.656	antonov	2021-05-26 14:57:12.655	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	receiver-oldVl=\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver=Антонов Антон Антонович [antonov]\nlocation-oldVl=\nstatus=ON_SCAN\nsender=Антонов Антон Антонович [antonov]\nsender-oldVl=\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nlocation-id=c20d1fe0-b54f-db9b-4df8-fc740a976d41\nlocation=Лоток_5\nstatus-oldVl=NEW\n
4e9bdb1c-045e-17a8-9525-bedf5178f70d	2021-05-26 14:58:27.38	antonov	2021-05-26 14:58:27.379	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	status-oldVl=ON_SCAN\nstatus=SCANNED\n
6ccde81d-6d86-b9ef-a3f1-10a2c703f006	2021-05-26 14:58:27.394	antonov	2021-05-26 14:58:27.393	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	status-oldVl=ON_SCAN\nstatus=SCANNED\n
66bb8881-5306-94a5-74d7-d1a657bc7b34	2021-05-26 15:06:47.474	antonov	2021-05-26 15:06:47.473	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	status-oldVl=IN_BOX_CONTROL\nstatus=IN_BOX\n
e0fc4621-290c-644d-a8c8-c7ed6d5d9498	2021-05-26 15:06:47.498	antonov	2021-05-26 15:06:47.498	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	status-oldVl=IN_BOX_CONTROL\nstatus=IN_BOX\n
5e464d7c-06f8-10e5-fecc-f768120495c9	2021-05-26 15:52:26.971	antonov	2021-05-26 15:52:26.97	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	receiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVl=Сергеев Сергей Сергеевич [sergeev]\nstatus=ISSUED_FROM_ARCHIVE\nsender=Сергеев Сергей Сергеевич [sergeev]\nsender-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\nsender-oldVl=Антонов Антон Антонович [antonov]\nsender-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nstatus-oldVl=IN_ARCHIVE\n
086c1e46-2836-3174-a84d-3cab2c55b2b7	2021-05-26 15:54:12.191	antonov	2021-05-26 15:54:12.19	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	receiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nstatus=IN_ARCHIVE\nsender=Антонов Антон Антонович [antonov]\nsender-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nsender-oldVl=Сергеев Сергей Сергеевич [sergeev]\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\nstatus-oldVl=ISSUED_FROM_ARCHIVE\n
cbfee803-3f6e-4b84-dd49-ab07abe6bd44	2021-05-26 15:54:12.204	antonov	2021-05-26 15:54:12.203	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	receiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nstatus=IN_ARCHIVE\nsender=Антонов Антон Антонович [antonov]\nsender-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nsender-oldVl=Сергеев Сергей Сергеевич [sergeev]\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\nstatus-oldVl=ISSUED_FROM_ARCHIVE\n
636aeb07-4738-d261-ac44-521f23439960	2021-05-26 15:59:58.384	antonov	2021-05-26 15:59:58.383	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	receiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVl=Сергеев Сергей Сергеевич [sergeev]\nstatus=ISSUED_FROM_ARCHIVE\nsender=Сергеев Сергей Сергеевич [sergeev]\nsender-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\nsender-oldVl=Антонов Антон Антонович [antonov]\nsender-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nstatus-oldVl=IN_ARCHIVE\n
38f92d63-5296-b766-9240-82e8c08fa253	2021-05-26 15:59:58.401	antonov	2021-05-26 15:59:58.4	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	receiver-oldVl=Сергеев Сергей Сергеевич [sergeev]\nreceiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nstatus=ISSUED_FROM_ARCHIVE\nsender=Сергеев Сергей Сергеевич [sergeev]\nsender-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\nsender-oldVl=Антонов Антон Антонович [antonov]\nsender-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nstatus-oldVl=IN_ARCHIVE\n
e0b88d80-475f-d2c0-8334-721fd8f42bdd	2021-05-26 17:03:30.632	antonov	2021-05-26 17:03:30.632	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	location-id=6ec82959-3da9-8570-dbef-749dcc889bd3\nstatus-oldVl=ON_HAND\nstatus=ISSUED_FROM_ARCHIVE\nlocation=Коробка_5\nlocation-oldVl=\n
45d29abf-a571-3390-8c07-2e6aaeeca7b8	2021-05-26 14:56:59.159	antonov	2021-05-26 14:56:59.158	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	C	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [new,managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	status=NEW\nlocation=\nsender=\nreceiver=\n
e97f2cde-0631-569b-5320-057513d1d3f6	2021-05-26 15:02:30.639	antonov	2021-05-26 15:02:30.638	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	location-id=6ec82959-3da9-8570-dbef-749dcc889bd3\nstatus-oldVl=SCANNED\nstatus=IN_BOX_CONTROL\nlocation-oldVlId=c20d1fe0-b54f-db9b-4df8-fc740a976d41\nlocation=Коробка_5\nlocation-oldVl=Лоток_5\n
4aa9a19a-1729-ec06-428e-ac0532d18c3f	2021-05-26 15:02:30.655	antonov	2021-05-26 15:02:30.654	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	location-id=6ec82959-3da9-8570-dbef-749dcc889bd3\nlocation-oldVlId=c20d1fe0-b54f-db9b-4df8-fc740a976d41\nlocation=Коробка_5\nstatus-oldVl=SCANNED\nstatus=IN_BOX_CONTROL\nlocation-oldVl=Лоток_5\n
f8cf083c-9e0d-b080-e62c-a8502e8409b5	2021-05-26 15:11:35.227	antonov	2021-05-26 15:11:35.226	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	status-oldVl=IN_BOX\nstatus=IN_ARCHIVE\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\n
7ec832e4-467b-e208-c950-54f0525cf261	2021-05-26 15:11:35.26	antonov	2021-05-26 15:11:35.259	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	status-oldVl=IN_BOX\nstatus=IN_ARCHIVE\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\n
73e65dfd-4044-6249-5547-81c8694d65fd	2021-05-26 15:52:26.942	antonov	2021-05-26 15:52:26.941	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	receiver=Антонов Антон Антонович [antonov]\nreceiver-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVl=Сергеев Сергей Сергеевич [sergeev]\nstatus=ISSUED_FROM_ARCHIVE\nsender=Сергеев Сергей Сергеевич [sergeev]\nsender-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\nsender-oldVl=Антонов Антон Антонович [antonov]\nsender-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nstatus-oldVl=IN_ARCHIVE\n
9ebd27e0-071e-d038-cf38-6da36619eb04	2021-05-26 16:25:54.243	antonov	2021-05-26 16:25:54.242	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	location-oldVl=Коробка_5\nstatus=ON_HAND\nsender=Антонов Антон Антонович [antonov]\nsender-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nsender-oldVl=Сергеев Сергей Сергеевич [sergeev]\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nlocation-oldVlId=6ec82959-3da9-8570-dbef-749dcc889bd3\nlocation=\nstatus-oldVl=ISSUED_FROM_ARCHIVE\n
e2b453c1-7103-cbf3-e526-0bc4aa8f89f2	2021-05-26 17:04:29.745	antonov	2021-05-26 17:04:29.744	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-cea464f2-4f7a-d222-13c0-128aaf630074 [managed]	cea464f2-4f7a-d222-13c0-128aaf630074	\N	\N	\N	status-oldVl=ISSUED_FROM_ARCHIVE\nstatus=IN_ARCHIVE\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\n
35e5a7df-92bc-fd17-343c-8a6e1ecd7789	2021-05-26 17:04:29.756	antonov	2021-05-26 17:04:29.755	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	M	eademo_PaperDocument	ru.digitalleague.ecm.eademo.entity.PaperDocument-8d342541-c3a2-f213-4733-cce55729b7b8 [managed]	8d342541-c3a2-f213-4733-cce55729b7b8	\N	\N	\N	receiver=Сергеев Сергей Сергеевич [sergeev]\nreceiver-id=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nreceiver-oldVl=Антонов Антон Антонович [antonov]\nstatus=IN_ARCHIVE\nsender=Антонов Антон Антонович [antonov]\nsender-oldVlId=1f701a08-75e4-2ef6-ec3d-3dccce2df9c1\nsender-oldVl=Сергеев Сергей Сергеевич [sergeev]\nsender-id=507fe753-9418-74b8-55ae-30d743a736c5\nreceiver-oldVlId=507fe753-9418-74b8-55ae-30d743a736c5\nstatus-oldVl=ISSUED_FROM_ARCHIVE\n
\.


--
-- Data for Name: sec_filter; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_filter (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, component, name, code, xml, user_id, global_default) FROM stdin;
b61d18cb-e79a-46f3-b16d-eaf4aebb10dd	2021-05-19 17:09:48.345723	admin	0	\N	\N	\N	\N	[sec$User.browse].genericFilter	Search by role	\N	<?xml version="1.0" encoding="UTF-8"?><filter><and><c name="UrMxpkfMGn" class="com.haulmont.cuba.security.entity.Role" type="CUSTOM" locCaption="Role" entityAlias="u" join="join u.userRoles ur">ur.role.id = :component$genericFilter.UrMxpkfMGn32565<param name="component$genericFilter.UrMxpkfMGn32565">NULL</param></c></and></filter>	60885987-1b61-4247-94c7-dff348347f93	f
6377f1fb-8ca1-2ee8-ac28-d57f1220a3e9	2021-05-19 17:09:52.820972	admin	1	\N	\N	\N	\N	[eademo_DocPackageModel.browse].filter	Нефиксированные атрибуты	\N	<?xml version="1.0" encoding="UTF-8"?>\n\n <filter>\n   <and>\n     <and name="group" unary="true" width="1">\n       <c name="attrId" class="ru.digitalleague.ecm.eademo.entity.DocAttribute" caption="Наименование атрибута" required="true" width="1" type="CUSTOM" entityAlias="e"><![CDATA[a.attrId.id=:component$filter.attrId63713]]>\n         <param name="component$filter.attrId63713" javaClass="ru.digitalleague.ecm.eademo.entity.DocAttribute">NULL</param>\n         <join><![CDATA[join {E}.attributes a]]></join>\n       </c>\n       <c name="attributeValue" class="java.lang.String" caption="Значение атрибута" width="1" type="CUSTOM" entityAlias="e"><![CDATA[a.attrValue like :component$filter.attributeValue99219]]>\n         <param name="component$filter.attributeValue99219" javaClass="java.lang.String">NULL</param>\n         <join><![CDATA[{E}.attributes a]]></join>\n       </c>\n     </and>\n   </and>\n </filter>\n 	\N	f
\.


--
-- Data for Name: sec_group; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_group (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, name, parent_id) FROM stdin;
0fa2b1a5-1d68-4d69-9fbd-dff348347f93	2021-05-19 17:09:52.218542	\N	1	2021-05-19 17:09:52.218542	admin	\N	\N	Администрирование	\N
63da73b0-6c3b-9dc6-1b41-5fea053d03b4	2021-05-19 17:09:52.235568	admin	1	2021-05-19 17:09:52.235568	admin	\N	\N	Генеральные полномочия	\N
126c560c-c08b-a170-a78f-ae72d28929f9	2021-05-19 17:09:52.238954	admin	1	2021-05-19 17:09:52.238954	admin	\N	\N	Организационная единица	\N
\.


--
-- Data for Name: sec_group_hierarchy; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_group_hierarchy (id, create_ts, created_by, group_id, parent_id, hierarchy_level) FROM stdin;
\.


--
-- Data for Name: sec_localized_constraint_msg; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_localized_constraint_msg (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, entity_name, operation_type, values_) FROM stdin;
\.


--
-- Data for Name: sec_logged_attr; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_logged_attr (id, create_ts, created_by, entity_id, name) FROM stdin;
2dc08ccd-32e8-93e3-f6c8-1f760293feeb	2021-05-19 17:09:52.820972	admin	fae10afa-eb37-963a-395f-a9785f66b84a	location
e7606ca6-4ffa-6718-74a0-7f36542325a7	2021-05-19 17:09:52.820972	admin	fae10afa-eb37-963a-395f-a9785f66b84a	receiver
3717436e-85a0-e2c1-da68-dab02ee2ed3f	2021-05-19 17:09:52.820972	admin	fae10afa-eb37-963a-395f-a9785f66b84a	sender
002d406c-87bd-6850-8dc8-730f6bbfd7ea	2021-05-19 17:09:52.820972	admin	fae10afa-eb37-963a-395f-a9785f66b84a	status
\.


--
-- Data for Name: sec_logged_entity; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_logged_entity (id, create_ts, created_by, name, auto, manual) FROM stdin;
fae10afa-eb37-963a-395f-a9785f66b84a	2021-05-19 17:09:52.820972	admin	eademo_PaperDocument	t	t
\.


--
-- Data for Name: sec_permission; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_permission (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, permission_type, target, value_, role_id) FROM stdin;
1fc6b700-7a35-453e-34a6-460a5254aa35	2021-05-19 17:09:52.309344	cuba	1	\N	\N	\N	\N	10	sec$User.changePassword	1	fcf9d6e7-135b-26b5-89be-2e75d24504af
ccbc823b-7611-85a8-0299-69701acdf10f	2021-05-19 17:09:52.313959	cuba	1	\N	\N	\N	\N	40	cuba.gui.filter.customConditions	1	41be28fa-7439-0172-f8c9-c59a1381f65c
23f1cfdf-4b50-aaad-06ca-9f9d8ec5666d	2021-05-19 17:09:52.315824	cuba	1	\N	\N	\N	\N	40	cuba.gui.filter.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
b11a3a53-9a41-54de-ca67-b9826936401c	2021-05-19 17:09:52.317709	cuba	1	\N	\N	\N	\N	40	cuba.gui.filter.maxResults	1	41be28fa-7439-0172-f8c9-c59a1381f65c
f38c7d6b-1a8a-ea9b-154d-c7aa76d417f5	2021-05-19 17:09:52.321991	cuba	1	\N	\N	\N	\N	10	date-interval-editor	1	41be28fa-7439-0172-f8c9-c59a1381f65c
018b8486-fd46-ee3d-b0d6-fa7934a1e8c0	2021-05-19 17:09:52.325038	cuba	1	\N	\N	\N	\N	20	sec$SearchFolder:create	1	41be28fa-7439-0172-f8c9-c59a1381f65c
997a811c-3ad4-7c02-e9c6-2f9b5ba0dae4	2021-05-19 17:09:52.326985	cuba	1	\N	\N	\N	\N	20	sec$SearchFolder:update	1	41be28fa-7439-0172-f8c9-c59a1381f65c
9994f99b-6441-4ff2-5401-6473c29cbe6a	2021-05-19 17:09:52.328535	cuba	1	\N	\N	\N	\N	20	sec$SearchFolder:delete	1	41be28fa-7439-0172-f8c9-c59a1381f65c
4d3e54ae-f592-6f55-d1b5-833bb46cc3ea	2021-05-19 17:09:52.330034	cuba	1	\N	\N	\N	\N	10	packages-eademo	1	41be28fa-7439-0172-f8c9-c59a1381f65c
31e7c67a-c7f6-bbbd-e4cc-59d5f30e62ac	2021-05-19 17:09:52.331569	cuba	1	\N	\N	\N	\N	10	eademo_DiscussionScreen	1	41be28fa-7439-0172-f8c9-c59a1381f65c
7a44370d-85d6-6989-ef73-43344762805b	2021-05-19 17:09:52.33359	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageModel.sign	1	41be28fa-7439-0172-f8c9-c59a1381f65c
0c4559a6-7db6-58a0-167a-e84e1d35e750	2021-05-19 17:09:52.335171	cuba	1	\N	\N	\N	\N	10	eademo_ImportantBrowse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
38183a6a-7cf6-508b-f0d3-51da2d0c9a79	2021-05-19 17:09:52.336718	cuba	1	\N	\N	\N	\N	20	eademo_SecurityWarrant:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
3ee7f59a-8540-278f-be4a-7466a6855d3c	2021-05-19 17:09:52.338165	cuba	1	\N	\N	\N	\N	20	eademo_SystemUserRole:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
bb729c03-74aa-2b4d-66b6-e136a0a898e8	2021-05-19 17:09:52.339886	cuba	1	\N	\N	\N	\N	20	eademo_Comment:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
f7dcc578-3d66-4b45-ce85-9555ffff023f	2021-05-19 17:09:52.341576	cuba	1	\N	\N	\N	\N	20	eademo_Comment:create	1	41be28fa-7439-0172-f8c9-c59a1381f65c
83b9bfa7-c554-5ace-91b0-0aed11772c81	2021-05-19 17:09:52.343012	cuba	1	\N	\N	\N	\N	20	eademo_Comment:update	1	41be28fa-7439-0172-f8c9-c59a1381f65c
93bbb443-9212-6346-466e-057d921f7444	2021-05-19 17:09:52.345185	cuba	1	\N	\N	\N	\N	20	eademo_Comment:delete	1	41be28fa-7439-0172-f8c9-c59a1381f65c
63d90afe-40c9-d62d-be3a-35608f556a7a	2021-05-19 17:09:52.347285	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageModel.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
12770d5f-8e93-dfe6-03da-7555d5144c69	2021-05-19 17:09:52.348906	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageModel.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
0cb1698b-d8e8-f4c3-b8a1-7f1d7d33e436	2021-05-19 17:09:52.350339	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageModel:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
ee6b943a-6beb-fc52-1478-6d0b0f5797b0	2021-05-19 17:09:52.351831	cuba	1	\N	\N	\N	\N	10	eademo_Currency.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
7c94ba20-f843-46d9-df2e-be69f8fdc5c7	2021-05-19 17:09:52.353333	cuba	1	\N	\N	\N	\N	10	eademo_Currency.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
896cc65e-ff72-34e9-bc31-25b7f470f864	2021-05-19 17:09:52.355256	cuba	1	\N	\N	\N	\N	20	eademo_Currency:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
87a0d7b9-e87b-cc37-3712-0bea5a6429af	2021-05-19 17:09:52.356943	cuba	1	\N	\N	\N	\N	10	eademo_PackageAttachment.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
4791723c-947e-dac0-faaf-6ba848ba883c	2021-05-19 17:09:52.358533	cuba	1	\N	\N	\N	\N	10	eademo_PackageAttachmentFTS.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
da491725-63df-4187-b7aa-85541f4464a2	2021-05-19 17:09:52.360331	cuba	1	\N	\N	\N	\N	10	eademo_PackageAttachment.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
1feec457-9a8c-29ac-42b0-279a890abee4	2021-05-19 17:09:52.362086	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
4043c43e-2e77-ea1a-205b-f1054e16d88b	2021-05-19 17:09:52.364634	cuba	1	\N	\N	\N	\N	20	eademo_RelatedAttachmentRelation:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
3cb6f2e4-15cd-8bd3-2de0-638e304a3d31	2021-05-19 17:09:52.366281	cuba	1	\N	\N	\N	\N	10	eademo_PackageType.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
39fb0556-3cbd-3cd8-b510-dfbd0e34c3c5	2021-05-19 17:09:52.36807	cuba	1	\N	\N	\N	\N	10	eademo_PackageType.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
deb50ef2-8c48-c4e9-fa83-0a0b68aa4bb2	2021-05-19 17:09:52.369634	cuba	1	\N	\N	\N	\N	20	eademo_PackageType:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
f63a1dc5-4b03-d6fc-8be3-3f53c1929db8	2021-05-19 17:09:52.371082	cuba	1	\N	\N	\N	\N	10	eademo_Bank.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
8cfe9c64-fac7-950e-0d8a-adbbe4e26a3f	2021-05-19 17:09:52.372496	cuba	1	\N	\N	\N	\N	10	eademo_Bank.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
cb322417-82f5-bc19-526c-577470e08870	2021-05-19 17:09:52.373896	cuba	1	\N	\N	\N	\N	20	eademo_Bank:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
aa3c2cb8-b687-5746-7569-6061accffe9e	2021-05-19 17:09:52.375307	cuba	1	\N	\N	\N	\N	10	eademo_PackageRelation.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
3d69f4aa-0350-c7aa-1199-f28df417a823	2021-05-19 17:09:52.376842	cuba	1	\N	\N	\N	\N	10	eademo_PackageRelation.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
194121a1-eaac-2a3a-bf4f-aa34ef3a9a88	2021-05-19 17:09:52.378227	cuba	1	\N	\N	\N	\N	20	eademo_PackageRelation:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
c1ff077a-44b5-6d70-f270-893ed05615cf	2021-05-19 17:09:52.379774	cuba	1	\N	\N	\N	\N	10	eademo_SignerRelation.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
5af9d523-be6c-035b-6614-759992306802	2021-05-19 17:09:52.381187	cuba	1	\N	\N	\N	\N	10	eademo_SignerRelation.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
e90fc15a-9811-66cd-800c-5e15ea50e693	2021-05-19 17:09:52.382564	cuba	1	\N	\N	\N	\N	20	eademo_SignerRelation:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
ce3eac6f-8251-5de4-197a-61ecf658a918	2021-05-19 17:09:52.384175	cuba	1	\N	\N	\N	\N	10	eademo_Contractor.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
d28b02fe-51e7-eb22-78b8-81e1120b9235	2021-05-19 17:09:52.385873	cuba	1	\N	\N	\N	\N	10	eademo_Contractor.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
afbfa248-e65a-f92f-9db5-fe14da453afe	2021-05-19 17:09:52.387485	cuba	1	\N	\N	\N	\N	20	eademo_Contractor:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
f553775a-c34a-ae7d-9f42-f7c41df9900c	2021-05-19 17:09:52.389253	cuba	1	\N	\N	\N	\N	10	eademo_Account.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
1eea7d7d-01a5-429c-8033-c680da422e33	2021-05-19 17:09:52.390691	cuba	1	\N	\N	\N	\N	10	eademo_Account.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
49867a92-474d-09f5-debc-b2400f5a20ff	2021-05-19 17:09:52.392507	cuba	1	\N	\N	\N	\N	20	eademo_Account:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
14eda3be-c75c-e124-7d53-24a5de835206	2021-05-19 17:09:52.394865	cuba	1	\N	\N	\N	\N	10	eademo_FixedAsset.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
c5121e17-b437-3a56-d72c-69ac71526c54	2021-05-19 17:09:52.396402	cuba	1	\N	\N	\N	\N	10	eademo_FixedAsset.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
65de2b9f-cd2e-119f-5562-b0baac0a196c	2021-05-19 17:09:52.398289	cuba	1	\N	\N	\N	\N	20	eademo_FixedAsset:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
7c063cc0-56d3-d79b-e114-b001f2d4b19e	2021-05-19 17:09:52.399594	cuba	1	\N	\N	\N	\N	10	eademo_ContractType.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
9ca01962-e95e-2420-75d7-32c12d72c84b	2021-05-19 17:09:52.401139	cuba	1	\N	\N	\N	\N	10	eademo_ContractType.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
aea25106-a531-f007-625a-aeb8f9fcb6b2	2021-05-19 17:09:52.402976	cuba	1	\N	\N	\N	\N	20	eademo_ContractType:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
e3cb68f6-f858-d8ac-9272-a32cf3f69da3	2021-05-19 17:09:52.404373	cuba	1	\N	\N	\N	\N	10	eademo_OperationType.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
db09c346-2486-489c-ca2a-c4923cbf68c4	2021-05-19 17:09:52.405969	cuba	1	\N	\N	\N	\N	10	eademo_OperationType.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
a4d2b3b5-65ea-c95c-0b62-1b56951f493d	2021-05-19 17:09:52.407361	cuba	1	\N	\N	\N	\N	20	eademo_OperationType:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
a44d3915-a68a-2c6a-18c2-e17507f51c3c	2021-05-19 17:09:52.408894	cuba	1	\N	\N	\N	\N	10	eademo_Department.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
4cb38c3a-8908-38eb-9ff5-ed4ce5f4d39f	2021-05-19 17:09:52.410264	cuba	1	\N	\N	\N	\N	10	eademo_Department.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
36393c1e-c3e3-be6c-d58a-a3d7d9d25816	2021-05-19 17:09:52.411721	cuba	1	\N	\N	\N	\N	20	eademo_Department:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
972addac-5fd6-49dd-4c51-2bf00cd5c2fe	2021-05-19 17:09:52.413099	cuba	1	\N	\N	\N	\N	10	eademo_Employee.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
8a3a2c23-5ec5-32ea-1d4b-d95b121288b2	2021-05-19 17:09:52.414564	cuba	1	\N	\N	\N	\N	10	eademo_Employee.browseForSigner	1	41be28fa-7439-0172-f8c9-c59a1381f65c
d49705c9-59f0-aea1-2897-d7072a846123	2021-05-19 17:09:52.415946	cuba	1	\N	\N	\N	\N	10	eademo_Employee.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
32896af3-789e-1a83-6f5f-3501d6aac06a	2021-05-19 17:09:52.419837	cuba	1	\N	\N	\N	\N	20	eademo_Employee:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
293201b6-751d-b76f-b50e-ad3e18871e6c	2021-05-19 17:09:52.421182	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageAttributeValue.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
ca54fac0-a27f-0e95-3c4f-38aa94272c6e	2021-05-19 17:09:52.422866	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageAttributeValue.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
1bbc051a-e3b1-68de-135c-0829d5842d35	2021-05-19 17:09:52.424321	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageAttributeValue:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
6c52e00f-7838-5f15-0747-3b59a45e960c	2021-05-19 17:09:52.426257	cuba	1	\N	\N	\N	\N	10	eademo_SapDocument.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
58a79783-e0b5-af0d-4726-d87a38712525	2021-05-19 17:09:52.427758	cuba	1	\N	\N	\N	\N	10	eademo_SapDocument.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
6b2b21fa-1a63-59d3-b6e4-9a8742852d9c	2021-05-19 17:09:52.429249	cuba	1	\N	\N	\N	\N	20	eademo_SapDocument:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
0e768ff4-1742-885a-1b6b-496797f04b16	2021-05-19 17:09:52.430664	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageStatusRecord.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
c339e140-e4f3-5931-3816-49075afae04a	2021-05-19 17:09:52.43223	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageStatusRecord.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
bb52f4f4-2517-17d2-52bf-d116a16a31fb	2021-05-19 17:09:52.433769	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageStatusRecord:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
db02c8e4-3a85-1790-3b75-4a09eff34529	2021-05-19 17:09:52.435553	cuba	1	\N	\N	\N	\N	10	eademo_Signatory.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
b62eadfa-c2a5-d168-9f50-acc4745166b1	2021-05-19 17:09:52.437453	cuba	1	\N	\N	\N	\N	10	eademo_Signatory.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
5c7e1ef2-c0fe-e3fc-b87a-74539c96d357	2021-05-19 17:09:52.439027	cuba	1	\N	\N	\N	\N	20	eademo_Signatory:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
a5a4115f-09be-921e-2976-295175700dd8	2021-05-19 17:09:52.440527	cuba	1	\N	\N	\N	\N	10	eademo_SignerType.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
0ca32f9f-7bf9-07f3-8def-4c98e7d7003f	2021-05-19 17:09:52.442077	cuba	1	\N	\N	\N	\N	10	eademo_SignerType.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
530f44ec-9bc2-e040-f6f1-815eef1e0f0d	2021-05-19 17:09:52.443542	cuba	1	\N	\N	\N	\N	20	eademo_SignerType:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
6c21a8f2-fc45-667f-41a5-0d932254c5e3	2021-05-19 17:09:52.444971	cuba	1	\N	\N	\N	\N	10	eademo_AttachmentType.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
b0f47ddb-49e2-d915-b821-346f91ccedc1	2021-05-19 17:09:52.446272	cuba	1	\N	\N	\N	\N	10	eademo_AttachmentType.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
a7b02fdd-6507-c62b-3b70-263f3dee8c83	2021-05-19 17:09:52.447625	cuba	1	\N	\N	\N	\N	20	eademo_AttachmentType:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
7ff4a3e1-5f14-a357-ee27-2d2d10f2cd58	2021-05-19 17:09:52.449115	cuba	1	\N	\N	\N	\N	10	eademo_DocAttribute.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
f64b6f0e-a25b-185f-0431-97213aad642f	2021-05-19 17:09:52.450507	cuba	1	\N	\N	\N	\N	10	eademo_DocAttribute.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
812e30b5-13ca-6fda-fe42-6d662c1281d0	2021-05-19 17:09:52.451921	cuba	1	\N	\N	\N	\N	20	eademo_DocAttribute:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
6d80f5a5-acd2-17ab-b52f-a4b953348d4b	2021-05-19 17:09:52.453448	cuba	1	\N	\N	\N	\N	20	eademo_EntityUserInfo:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
3e89e008-c4d1-5a16-71b7-6f1d8065f568	2021-05-19 17:09:52.454911	cuba	1	\N	\N	\N	\N	20	eademo_EntityUserInfo:update	1	41be28fa-7439-0172-f8c9-c59a1381f65c
e8c98a95-9794-26cb-8b47-6dcb2f24b672	2021-05-19 17:09:52.456309	cuba	1	\N	\N	\N	\N	20	eademo_EntityUserInfo:create	1	41be28fa-7439-0172-f8c9-c59a1381f65c
2760547a-590b-b4c2-ca86-ad08e49e9076	2021-05-19 17:09:52.457992	cuba	1	\N	\N	\N	\N	20	eademo_EntityUserInfo:delete	1	41be28fa-7439-0172-f8c9-c59a1381f65c
35f7c821-88c4-1d3c-6ba8-b916eb78a0ef	2021-05-19 17:09:52.459556	cuba	1	\N	\N	\N	\N	10	eademo_Tax.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
57b8b5e9-f0b8-d757-01be-caa723e0faf3	2021-05-19 17:09:52.460947	cuba	1	\N	\N	\N	\N	10	eademo_Tax.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
141ab646-885e-4202-6897-e45da66b9592	2021-05-19 17:09:52.462267	cuba	1	\N	\N	\N	\N	20	eademo_Tax:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
ee5abe10-743b-9bc3-7918-2873ff2a87d9	2021-05-19 17:09:52.463834	cuba	1	\N	\N	\N	\N	20	eademo_RelationOption:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
027c99bc-5480-fa17-670d-9b3c8aae901f	2021-05-19 17:09:52.465501	cuba	1	\N	\N	\N	\N	20	sys$FileDescriptor:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
86063abc-41bd-d92b-8a4f-be120d51d5c8	2021-05-19 17:09:52.467261	cuba	1	\N	\N	\N	\N	20	eademo_Notification:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
f194ea21-4d94-407f-6e85-2b5344e2739b	2021-05-19 17:09:52.468684	cuba	1	\N	\N	\N	\N	20	eademo_Notification:update	1	41be28fa-7439-0172-f8c9-c59a1381f65c
9c28c902-7abb-45d4-270e-16f0994bc463	2021-05-19 17:09:52.470014	cuba	1	\N	\N	\N	\N	20	eademo_Notification:create	1	41be28fa-7439-0172-f8c9-c59a1381f65c
7be10e5c-eef8-2b51-15fc-a5b318a523e2	2021-05-19 17:09:52.471427	cuba	1	\N	\N	\N	\N	20	eademo_Notification:delete	1	41be28fa-7439-0172-f8c9-c59a1381f65c
360de2de-448f-e6fa-b2d4-cd6e747f8eac	2021-05-19 17:09:52.480043	cuba	1	\N	\N	\N	\N	20	eademo_PaperDocument:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
bdb6c0fb-25a2-2655-6c92-a23ec4a3aa1b	2021-05-19 17:09:52.481578	cuba	1	\N	\N	\N	\N	20	eademo_PaperDocument:create	1	41be28fa-7439-0172-f8c9-c59a1381f65c
c84ce790-9c6e-0fc6-e9da-abc090862305	2021-05-19 17:09:52.482848	cuba	1	\N	\N	\N	\N	20	eademo_PaperDocument:update	1	41be28fa-7439-0172-f8c9-c59a1381f65c
bcb7684b-b15a-1f87-36b1-62535def60b9	2021-05-19 17:09:52.484267	cuba	1	\N	\N	\N	\N	20	eademo_PaperDocument:delete	1	41be28fa-7439-0172-f8c9-c59a1381f65c
8ee11d5b-215c-e9c6-8b8d-703999ed7240	2021-05-19 17:09:52.485686	cuba	1	\N	\N	\N	\N	20	eademo_PaperLocation:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
bcf3d18d-f7fc-9054-76b7-f890aec12c04	2021-05-19 17:09:52.487112	cuba	1	\N	\N	\N	\N	10	eademo_PaperLocation.edit	1	41be28fa-7439-0172-f8c9-c59a1381f65c
51ebfd5e-e6d2-d949-8a5b-104a387cc5a9	2021-05-19 17:09:52.488536	cuba	1	\N	\N	\N	\N	20	sec$EntityLogAttr:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
aa8ec214-b9af-cd40-f437-3e005d794925	2021-05-19 17:09:52.490426	cuba	1	\N	\N	\N	\N	20	sec$EntityLog:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
f31821d2-3892-8d09-7e8e-495ca26804e3	2021-05-19 17:09:52.49218	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageModelContract.browse	1	41be28fa-7439-0172-f8c9-c59a1381f65c
5e7ec9b3-d6cc-0c94-6085-c3fa3d840b1f	2021-05-19 17:09:52.493643	cuba	1	\N	\N	\N	\N	20	report$Report:read	1	41be28fa-7439-0172-f8c9-c59a1381f65c
42630d6f-4298-3505-0721-fa712e7b0932	2021-05-19 17:09:52.495778	cuba	1	\N	\N	\N	\N	10	dictionaries-eademo	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
418ba823-93ec-8fb0-9f03-b19a5fcc715e	2021-05-19 17:09:52.497614	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageModel:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
0370e0d0-e17f-8815-dd47-d9994b6549f6	2021-05-19 17:09:52.499293	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageModel:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
b697c678-7d89-c7fd-daef-2899522a9720	2021-05-19 17:09:52.501008	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
d8af46fe-ca64-0fea-0331-6aa769575acd	2021-05-19 17:09:52.50286	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
7fa2b3c0-a02b-4fb3-a6b2-e3f5795f57fe	2021-05-19 17:09:52.504722	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:delete	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
940acbd0-2cea-0b3c-eb75-2918e79e5a1b	2021-05-19 17:09:52.506325	cuba	1	\N	\N	\N	\N	20	eademo_Signatory:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
9a8b2898-8bff-1b35-0a6e-5b017701215a	2021-05-19 17:09:52.508065	cuba	1	\N	\N	\N	\N	20	eademo_Signatory:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
b4467d6b-8b57-922c-f3f5-f0cf4a936f65	2021-05-19 17:09:52.509697	cuba	1	\N	\N	\N	\N	20	eademo_Signatory:delete	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
99dc123c-473b-0f20-1f98-985e48b2b487	2021-05-19 17:09:52.511262	cuba	1	\N	\N	\N	\N	20	eademo_SapDocument:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
703f600d-9d45-edaa-a599-72d5ae9bc805	2021-05-19 17:09:52.512819	cuba	1	\N	\N	\N	\N	20	eademo_SapDocument:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
7ffbb1f6-ab33-94e2-74b9-6744b28cd93d	2021-05-19 17:09:52.514807	cuba	1	\N	\N	\N	\N	20	eademo_SapDocument:delete	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
5504dde4-d9b3-fda4-201e-b6ecc1d7d2e2	2021-05-19 17:09:52.516569	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageAttributeValue:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
a2ce0396-ed3f-fc75-f29a-67e7bdad1bed	2021-05-19 17:09:52.51817	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageAttributeValue:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
ed193f8d-bb09-16a8-01e5-386c6bf0e1a2	2021-05-19 17:09:52.519816	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageAttributeValue:delete	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
6dfd01d8-fc53-3e27-8613-b923d3a0c4c7	2021-05-19 17:09:52.521415	cuba	1	\N	\N	\N	\N	20	eademo_PackageRelation:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
61b04481-7cec-8b25-b710-f75cb77ae515	2021-05-19 17:09:52.523097	cuba	1	\N	\N	\N	\N	20	eademo_PackageRelation:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
b22388c2-bb7a-8711-920f-9887ed739d38	2021-05-19 17:09:52.527434	cuba	1	\N	\N	\N	\N	20	eademo_PackageRelation:delete	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
f1d3f2e3-958c-420a-ad8e-a27f47cacadd	2021-05-19 17:09:52.531036	cuba	1	\N	\N	\N	\N	20	eademo_RelatedAttachmentRelation:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
b01ada2b-b5f9-a171-fe6e-34ec4c5b5a54	2021-05-19 17:09:52.533194	cuba	1	\N	\N	\N	\N	20	eademo_RelatedAttachmentRelation:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
08f44994-4b35-ffb2-c973-67d164625ebb	2021-05-19 17:09:52.534624	cuba	1	\N	\N	\N	\N	20	eademo_RelatedAttachmentRelation:delete	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
fa9bac3b-0ee4-ae86-f2d0-ef3679812aa7	2021-05-19 17:09:52.536107	cuba	1	\N	\N	\N	\N	20	sys$FileDescriptor:create	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
463f4532-bd52-3e89-0b00-97f4797a9c42	2021-05-19 17:09:52.537505	cuba	1	\N	\N	\N	\N	20	sys$FileDescriptor:update	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
59b6bb45-8fd3-a73b-5ed3-7772efc7c431	2021-05-19 17:09:52.539103	cuba	1	\N	\N	\N	\N	20	sys$FileDescriptor:delete	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
e61f319a-ee1e-31be-39f7-c21f7f0c8b43	2021-05-19 17:09:52.540617	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageAttributeValue.multipleCreate	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
19f24b0e-5150-05ff-7bb4-0ddd9708dab7	2021-05-19 17:09:52.542517	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageMulipteAttributeCreate	1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
6655c148-fdce-ae64-d8c7-3bb8c1606b00	2021-05-19 17:09:52.544092	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageModel:update	1	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
ec051b29-6d29-91c3-293a-a36d5b91557a	2021-05-19 17:09:52.545583	cuba	1	\N	\N	\N	\N	20	eademo_Signatory:update	1	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
ffe319fd-0422-61af-5cdc-4fea0f43f5a8	2021-05-19 17:09:52.54761	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageModel:update	1	042e9907-9b40-425d-8148-d72bd93b2198
a88044a7-aa16-0afd-9f01-2396087e5a0c	2021-05-19 17:09:52.549343	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:update	1	042e9907-9b40-425d-8148-d72bd93b2198
6867c486-68fd-2703-06d6-33c5a5247b6f	2021-05-19 17:09:52.551401	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageModel:update	1	05f697fe-040b-47a3-bdc1-8bc34356e7c3
225f2e26-f43a-8d27-3eeb-c556e103efef	2021-05-19 17:09:52.553098	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:update	1	05f697fe-040b-47a3-bdc1-8bc34356e7c3
78cb3d46-51d9-89e2-dfc5-a213f57f48c9	2021-05-19 17:09:52.554538	cuba	1	\N	\N	\N	\N	10	paperProcessing	1	05f697fe-040b-47a3-bdc1-8bc34356e7c3
55c6de57-d16b-c7db-fde1-5b0e7005bf8a	2021-05-19 17:09:52.556	cuba	1	\N	\N	\N	\N	10	eademo_ArchivistAwp	1	05f697fe-040b-47a3-bdc1-8bc34356e7c3
2a8864ae-ad7a-5739-ae31-0b9721007b9e	2021-05-19 17:09:52.557462	cuba	1	\N	\N	\N	\N	10	eademo_BoxArchivist.browse	1	05f697fe-040b-47a3-bdc1-8bc34356e7c3
5de9143e-cfdb-cdc3-9514-a117aa10f888	2021-05-19 17:09:52.558998	cuba	1	\N	\N	\N	\N	10	eademo_BoxStorageAccommodation	1	05f697fe-040b-47a3-bdc1-8bc34356e7c3
b748b373-0c4a-7da3-7fc3-42121a2de63f	2021-05-19 17:09:52.560488	cuba	1	\N	\N	\N	\N	20	eademo_DocPackageModel:update	1	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
f7fdb498-27f8-adb0-f085-c8b3ee4ca940	2021-05-19 17:09:52.561921	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageModelTaxControl.browse	1	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
df05cd3e-7b90-86d3-82a5-b6882ce9725a	2021-05-19 17:09:52.563549	cuba	1	\N	\N	\N	\N	10	eademo_SecurityWarrant.browse	1	03502aad-393a-46c1-875d-5dc047efa99b
d3fb730d-34e1-f7a7-0bf8-7b995aede3a1	2021-05-19 17:09:52.565014	cuba	1	\N	\N	\N	\N	10	eademo_SecurityWarrant.edit	1	03502aad-393a-46c1-875d-5dc047efa99b
ce5c2123-f206-c122-7cad-ff38f646fe98	2021-05-19 17:09:52.566372	cuba	1	\N	\N	\N	\N	10	eademo_SystemUserRole.browse	1	03502aad-393a-46c1-875d-5dc047efa99b
407a3c3b-59e3-6401-514d-b154249a8ace	2021-05-19 17:09:52.567769	cuba	1	\N	\N	\N	\N	20	eademo_SecurityWarrant:create	1	03502aad-393a-46c1-875d-5dc047efa99b
a77e839d-f288-a183-1368-178992f0707b	2021-05-19 17:09:52.56909	cuba	1	\N	\N	\N	\N	20	eademo_SecurityWarrant:update	1	03502aad-393a-46c1-875d-5dc047efa99b
50d79898-8650-fd76-41f1-9706d8abd811	2021-05-19 17:09:52.570432	cuba	1	\N	\N	\N	\N	20	eademo_SecurityWarrant:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
94cef6d5-608a-c538-f37e-aa72d7dec376	2021-05-19 17:09:52.571791	cuba	1	\N	\N	\N	\N	20	eademo_SignerType:create	1	03502aad-393a-46c1-875d-5dc047efa99b
e665470a-d83f-3d0b-747d-ea2fc0786a13	2021-05-19 17:09:52.573178	cuba	1	\N	\N	\N	\N	20	eademo_SignerType:update	1	03502aad-393a-46c1-875d-5dc047efa99b
710d0df6-c412-b154-611b-8680ca2e13ce	2021-05-19 17:09:52.574561	cuba	1	\N	\N	\N	\N	20	eademo_SignerType:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
5a977c24-1959-1813-cc39-d38493fbc33b	2021-05-19 17:09:52.57604	cuba	1	\N	\N	\N	\N	20	eademo_AttachmentType:create	1	03502aad-393a-46c1-875d-5dc047efa99b
8a812a8b-8fe1-911d-8908-ac783ca5018a	2021-05-19 17:09:52.577659	cuba	1	\N	\N	\N	\N	20	eademo_AttachmentType:update	1	03502aad-393a-46c1-875d-5dc047efa99b
e39aeeb4-a2ae-3ff9-47f1-30751e9b8088	2021-05-19 17:09:52.579609	cuba	1	\N	\N	\N	\N	20	eademo_AttachmentType:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
01bfb1d8-08fc-18d0-7c8a-f67055a79d0d	2021-05-19 17:09:52.580952	cuba	1	\N	\N	\N	\N	20	eademo_DocAttribute:create	1	03502aad-393a-46c1-875d-5dc047efa99b
47c0c9e3-9d1d-15cb-afcb-83da1620f363	2021-05-19 17:09:52.582352	cuba	1	\N	\N	\N	\N	20	eademo_DocAttribute:update	1	03502aad-393a-46c1-875d-5dc047efa99b
47eed50b-d498-2d05-c713-c0879053255e	2021-05-19 17:09:52.58382	cuba	1	\N	\N	\N	\N	20	eademo_DocAttribute:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
5abea6d2-827f-e56a-7331-263b85099ea9	2021-05-19 17:09:52.585263	cuba	1	\N	\N	\N	\N	20	eademo_Employee:create	1	03502aad-393a-46c1-875d-5dc047efa99b
dc7a0bdd-3fbb-7136-7ff4-547a676afdd7	2021-05-19 17:09:52.58656	cuba	1	\N	\N	\N	\N	20	eademo_Employee:update	1	03502aad-393a-46c1-875d-5dc047efa99b
6e4db523-aace-5b15-6437-08a65d618518	2021-05-19 17:09:52.587992	cuba	1	\N	\N	\N	\N	20	eademo_Employee:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
5a1b7039-6bca-27a4-cd42-e3e2c6ce8acf	2021-05-19 17:09:52.590037	cuba	1	\N	\N	\N	\N	20	eademo_Department:create	1	03502aad-393a-46c1-875d-5dc047efa99b
562b764e-6f7a-0183-0371-20f072904521	2021-05-19 17:09:52.591663	cuba	1	\N	\N	\N	\N	20	eademo_Department:update	1	03502aad-393a-46c1-875d-5dc047efa99b
10a4e032-dcf6-0c24-5302-47ce1f54d4a8	2021-05-19 17:09:52.593188	cuba	1	\N	\N	\N	\N	20	eademo_Department:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
e7dd77f8-840f-0834-cc2b-fbb7ee406990	2021-05-19 17:09:52.594743	cuba	1	\N	\N	\N	\N	20	eademo_OperationType:create	1	03502aad-393a-46c1-875d-5dc047efa99b
14c76129-f56f-8c96-679d-ede729539880	2021-05-19 17:09:52.596493	cuba	1	\N	\N	\N	\N	20	eademo_OperationType:update	1	03502aad-393a-46c1-875d-5dc047efa99b
b5ba80dd-5ee7-8117-2987-4fcb11eee8af	2021-05-19 17:09:52.597941	cuba	1	\N	\N	\N	\N	20	eademo_OperationType:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
52f392c0-858f-4602-55e5-a3fa226c0e11	2021-05-19 17:09:52.599667	cuba	1	\N	\N	\N	\N	20	eademo_ContractType:create	1	03502aad-393a-46c1-875d-5dc047efa99b
f326a5be-3f05-5976-0881-210a6a250c39	2021-05-19 17:09:52.605191	cuba	1	\N	\N	\N	\N	20	eademo_ContractType:update	1	03502aad-393a-46c1-875d-5dc047efa99b
4d7868a9-e049-4447-b0c2-cd179951f1a3	2021-05-19 17:09:52.607261	cuba	1	\N	\N	\N	\N	20	eademo_ContractType:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
4363a498-06bf-2f80-c2f5-fcb302ee54a8	2021-05-19 17:09:52.608973	cuba	1	\N	\N	\N	\N	20	eademo_FixedAsset:create	1	03502aad-393a-46c1-875d-5dc047efa99b
302e979b-7327-a7a9-2f2c-e071cd903661	2021-05-19 17:09:52.610209	cuba	1	\N	\N	\N	\N	20	eademo_FixedAsset:update	1	03502aad-393a-46c1-875d-5dc047efa99b
d306992d-d917-b9f7-2177-246b2c486f44	2021-05-19 17:09:52.611864	cuba	1	\N	\N	\N	\N	20	eademo_FixedAsset:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
a4e92a54-ba20-ba22-4cb8-1e1b8eb7af75	2021-05-19 17:09:52.613247	cuba	1	\N	\N	\N	\N	20	eademo_Account:create	1	03502aad-393a-46c1-875d-5dc047efa99b
6c6ed51c-1908-37ec-0013-9e3c7b74dd83	2021-05-19 17:09:52.614503	cuba	1	\N	\N	\N	\N	20	eademo_Account:update	1	03502aad-393a-46c1-875d-5dc047efa99b
7b1b3514-bb36-dbf2-9e66-97c1bba9e27d	2021-05-19 17:09:52.616136	cuba	1	\N	\N	\N	\N	20	eademo_Account:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
4aa248b2-ab36-60d4-4d24-c6a275770ac8	2021-05-19 17:09:52.617891	cuba	1	\N	\N	\N	\N	20	eademo_Contractor:create	1	03502aad-393a-46c1-875d-5dc047efa99b
d92d3788-bb1a-6e0b-d62b-95101b333a54	2021-05-19 17:09:52.619395	cuba	1	\N	\N	\N	\N	20	eademo_Contractor:update	1	03502aad-393a-46c1-875d-5dc047efa99b
39a66748-8146-7728-91de-998df66a4a02	2021-05-19 17:09:52.621797	cuba	1	\N	\N	\N	\N	20	eademo_Contractor:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
6345994f-8e6e-88fb-c26c-4ac635249d52	2021-05-19 17:09:52.625279	cuba	1	\N	\N	\N	\N	20	eademo_Bank:create	1	03502aad-393a-46c1-875d-5dc047efa99b
6231816a-7d51-10bf-a6aa-b8570533948e	2021-05-19 17:09:52.629222	cuba	1	\N	\N	\N	\N	20	eademo_Bank:update	1	03502aad-393a-46c1-875d-5dc047efa99b
66b93ac3-e11a-a424-e991-155ba63c4646	2021-05-19 17:09:52.630909	cuba	1	\N	\N	\N	\N	20	eademo_Bank:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
ab384691-b2cc-5821-096b-bd4d4c6e675d	2021-05-19 17:09:52.633999	cuba	1	\N	\N	\N	\N	20	eademo_Tax:create	1	03502aad-393a-46c1-875d-5dc047efa99b
7fba73c8-dcb0-2c3e-4bb7-86f84ea5cd60	2021-05-19 17:09:52.636379	cuba	1	\N	\N	\N	\N	20	eademo_Tax:update	1	03502aad-393a-46c1-875d-5dc047efa99b
c03239b9-177d-666f-c76a-0bee56b3cc34	2021-05-19 17:09:52.638442	cuba	1	\N	\N	\N	\N	20	eademo_Tax:delete	1	03502aad-393a-46c1-875d-5dc047efa99b
d5091e28-376b-08c6-c94e-ee1839005cd8	2021-05-19 17:09:52.63996	cuba	1	\N	\N	\N	\N	20	eademo_DiadocMessage:read	1	03502aad-393a-46c1-875d-5dc047efa99b
101c1f10-8849-ced8-65cf-5869cb0566b6	2021-05-19 17:09:52.641409	cuba	1	\N	\N	\N	\N	20	eademo_DiadocMessage:update	1	03502aad-393a-46c1-875d-5dc047efa99b
9ecbbfa1-e37f-b151-9cbf-c08fc225d322	2021-05-19 17:09:52.643168	cuba	1	\N	\N	\N	\N	20	eademo_DiadocEntity:read	1	03502aad-393a-46c1-875d-5dc047efa99b
e9fd786e-771a-cd3e-8f2e-d1c5fac60aac	2021-05-19 17:09:52.645602	cuba	1	\N	\N	\N	\N	20	eademo_DiadocEntity:update	1	03502aad-393a-46c1-875d-5dc047efa99b
e1d1aed6-9d41-9387-041e-98590154434a	2021-05-19 17:09:52.646904	cuba	1	\N	\N	\N	\N	10	diadoc-eademo	1	03502aad-393a-46c1-875d-5dc047efa99b
9fff14bf-0271-fa78-95b9-0f4bfb1843a7	2021-05-19 17:09:52.648413	cuba	1	\N	\N	\N	\N	10	eademo_DiadocMessage.manualBrowse	1	03502aad-393a-46c1-875d-5dc047efa99b
008c2009-6f6b-243c-7935-e82ccba4068e	2021-05-19 17:09:52.649814	cuba	1	\N	\N	\N	\N	10	eademo_DiadocMessage.edit	1	03502aad-393a-46c1-875d-5dc047efa99b
31f6403d-fcef-3315-f649-14698da1aec5	2021-05-19 17:09:52.651398	cuba	1	\N	\N	\N	\N	10	eademo_DiadocEntity.edit	1	03502aad-393a-46c1-875d-5dc047efa99b
3d629b97-1ea0-34a8-9044-e90ae8fc21d9	2021-05-19 17:09:52.652991	cuba	1	\N	\N	\N	\N	20	eademo_PackageType:create	1	08699644-95ec-4800-81a4-a37769d71b99
b4dabb32-9835-8364-8992-da0fb3c6e377	2021-05-19 17:09:52.654474	cuba	1	\N	\N	\N	\N	20	eademo_PackageType:update	1	08699644-95ec-4800-81a4-a37769d71b99
e9b2e95f-1dec-f5a4-0dc7-9bd01edd8e10	2021-05-19 17:09:52.655912	cuba	1	\N	\N	\N	\N	20	eademo_PackageType:delete	1	08699644-95ec-4800-81a4-a37769d71b99
80174bd0-88a8-90c5-91a8-2c9574643736	2021-05-19 17:09:52.657655	cuba	1	\N	\N	\N	\N	20	eademo_PackageRelation:create	1	08699644-95ec-4800-81a4-a37769d71b99
a7f7e950-dad7-b887-9534-bf99c711ddc7	2021-05-19 17:09:52.659091	cuba	1	\N	\N	\N	\N	20	eademo_PackageRelation:update	1	08699644-95ec-4800-81a4-a37769d71b99
7c9a55ec-fbab-8a79-f1e0-1ebc2b084973	2021-05-19 17:09:52.660533	cuba	1	\N	\N	\N	\N	20	eademo_PackageRelation:delete	1	08699644-95ec-4800-81a4-a37769d71b99
bde8c579-d1d5-d685-5e85-10dd7e425c51	2021-05-19 17:09:52.661916	cuba	1	\N	\N	\N	\N	20	eademo_SignerRelation:create	1	08699644-95ec-4800-81a4-a37769d71b99
9fe81abf-1909-5436-3607-dca734b6af62	2021-05-19 17:09:52.663306	cuba	1	\N	\N	\N	\N	20	eademo_SignerRelation:update	1	08699644-95ec-4800-81a4-a37769d71b99
c1c2dac9-7ab5-3142-ea02-ac81d9c50afb	2021-05-19 17:09:52.664703	cuba	1	\N	\N	\N	\N	20	eademo_SignerRelation:delete	1	08699644-95ec-4800-81a4-a37769d71b99
419d338e-a911-229e-ee2f-bfd5d07c8fcd	2021-05-19 17:09:52.666181	cuba	1	\N	\N	\N	\N	20	eademo_Acl:read	1	2273d84a-00f9-4bd2-9dac-401a819a2267
f8173a78-01fc-09fa-4746-2c8ca5ffba3a	2021-05-19 17:09:52.667748	cuba	1	\N	\N	\N	\N	20	eademo_Acl:create	1	2273d84a-00f9-4bd2-9dac-401a819a2267
71ea99cf-b2ea-6324-46eb-c65ee718bdd7	2021-05-19 17:09:52.669046	cuba	1	\N	\N	\N	\N	20	eademo_Acl:update	1	2273d84a-00f9-4bd2-9dac-401a819a2267
89df6bef-4286-9499-1ac8-72b3ed534f44	2021-05-19 17:09:52.670451	cuba	1	\N	\N	\N	\N	20	eademo_Acl:delete	1	2273d84a-00f9-4bd2-9dac-401a819a2267
17abb071-8a1b-d18a-c112-6fca6c8a6977	2021-05-19 17:09:52.671853	cuba	1	\N	\N	\N	\N	10	eademo_Acl.edit	1	2273d84a-00f9-4bd2-9dac-401a819a2267
83b981d2-286e-0dc1-1f05-5a8cd5956e2f	2021-05-19 17:09:52.673215	cuba	1	\N	\N	\N	\N	10	sec$User.browse	1	2273d84a-00f9-4bd2-9dac-401a819a2267
445e195d-8bcc-1679-123a-ad97b8f627c3	2021-05-19 17:09:52.674627	cuba	1	\N	\N	\N	\N	10	sec$User.lookup	1	2273d84a-00f9-4bd2-9dac-401a819a2267
08657f87-7379-b473-5df6-513516acc635	2021-05-19 17:09:52.675997	cuba	1	\N	\N	\N	\N	20	sec$User:read	1	2273d84a-00f9-4bd2-9dac-401a819a2267
906db3e6-2b6b-2fa4-a7eb-c27132a1421a	2021-05-19 17:09:52.678198	cuba	1	\N	\N	\N	\N	10	baskets-eademo	1	1b47b33c-4a34-4125-93dd-8ae4519246a8
d2e1b8f7-8d6a-ab63-4cb0-7c179623171d	2021-05-19 17:09:52.679721	cuba	1	\N	\N	\N	\N	10	eademo_PackageAttachmentFTS.browse	1	1b47b33c-4a34-4125-93dd-8ae4519246a8
7307bff2-205e-3b9c-813e-7b37270a5680	2021-05-19 17:09:52.681265	cuba	1	\N	\N	\N	\N	10	eademo_Basket.browse	1	1b47b33c-4a34-4125-93dd-8ae4519246a8
d19ac0cd-cde2-dbd0-c5ad-a7400e8d63ff	2021-05-19 17:09:52.682726	cuba	1	\N	\N	\N	\N	10	eademo_Basket.edit	1	1b47b33c-4a34-4125-93dd-8ae4519246a8
72e9cc8c-457c-98b0-279c-7f09fc993c03	2021-05-19 17:09:52.684443	cuba	1	\N	\N	\N	\N	20	eademo_Basket:read	1	1b47b33c-4a34-4125-93dd-8ae4519246a8
95ee7f42-1de8-f683-5d33-85650ea4e1b0	2021-05-19 17:09:52.686222	cuba	1	\N	\N	\N	\N	20	eademo_BasketAttachment:read	1	1b47b33c-4a34-4125-93dd-8ae4519246a8
79f3f4a6-98c1-2abb-d399-97e0ce6376a1	2021-05-19 17:09:52.687693	cuba	1	\N	\N	\N	\N	20	eademo_Basket:create	1	c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64
6cd6ec97-ea8a-1357-de33-e7185784e853	2021-05-19 17:09:52.68958	cuba	1	\N	\N	\N	\N	20	eademo_Basket:update	1	c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64
9f7548bb-5b0d-288a-4d4b-13bdf51c5414	2021-05-19 17:09:52.691293	cuba	1	\N	\N	\N	\N	20	eademo_Basket:delete	1	b62fadeb-d4d4-43ad-a52a-48c5439ff0e2
66fdad14-c2c4-a1f4-7dfa-c033a4091168	2021-05-19 17:09:52.6927	cuba	1	\N	\N	\N	\N	20	eademo_BasketAttachment:create	1	b62fadeb-d4d4-43ad-a52a-48c5439ff0e2
df1f3251-1099-e705-6cd4-5003bc954994	2021-05-19 17:09:52.694286	cuba	1	\N	\N	\N	\N	20	eademo_BasketAttachment:update	1	b62fadeb-d4d4-43ad-a52a-48c5439ff0e2
6590a45c-ea40-4352-c083-3f334e4e6360	2021-05-19 17:09:52.695739	cuba	1	\N	\N	\N	\N	20	eademo_BasketAttachment:delete	1	b62fadeb-d4d4-43ad-a52a-48c5439ff0e2
22befc88-858f-312d-23e5-4937ebe606b0	2021-05-19 17:09:52.697147	cuba	1	\N	\N	\N	\N	20	eademo_Basket:update	1	a2bb8763-4f0f-4bf7-be49-1a41f33a8aaf
18ec922e-5d36-d693-c135-be65d050fe3b	2021-05-19 17:09:52.698948	cuba	1	\N	\N	\N	\N	20	eademo_BasketAttachment:create	1	a2bb8763-4f0f-4bf7-be49-1a41f33a8aaf
fedde71c-ffe4-92a4-f1ab-87e6784450e9	2021-05-19 17:09:52.703031	cuba	1	\N	\N	\N	\N	20	eademo_BasketAttachment:update	1	a2bb8763-4f0f-4bf7-be49-1a41f33a8aaf
c0b5eb6c-f3c5-d929-9764-0d64d519e1fb	2021-05-19 17:09:52.706988	cuba	1	\N	\N	\N	\N	20	eademo_BasketAttachment:delete	1	a2bb8763-4f0f-4bf7-be49-1a41f33a8aaf
95399b71-2c40-d90c-7602-78652fb8b677	2021-05-19 17:09:52.708706	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:read	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
424ba0da-eb6c-54dc-ec16-992f85b947e3	2021-05-19 17:09:52.710211	cuba	1	\N	\N	\N	\N	20	eademo_PackageAttachment:update	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
8d8dc9e4-02a6-586d-f8ed-e06895465f63	2021-05-19 17:09:52.711765	cuba	1	\N	\N	\N	\N	20	sys$FileDescriptor:read	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
2f824222-08ae-8ebd-94cc-e2b61b840229	2021-05-19 17:09:52.713286	cuba	1	\N	\N	\N	\N	10	dictionaries-eademo	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
e36c5d57-c1e6-733f-7bd4-4f1067af5533	2021-05-19 17:09:52.714701	cuba	1	\N	\N	\N	\N	20	eademo_PaperDocument:read	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
e6cd9de2-7c60-a78e-ba7e-420c3599bde1	2021-05-19 17:09:52.716279	cuba	1	\N	\N	\N	\N	20	eademo_PaperDocument:update	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
5dd925fb-4688-00aa-cae6-6509d52f496b	2021-05-19 17:09:52.717708	cuba	1	\N	\N	\N	\N	20	eademo_PaperDocument:create	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
c66e915a-c939-aaba-a1c6-495637be227e	2021-05-19 17:09:52.720528	cuba	1	\N	\N	\N	\N	10	paperProcessing	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
f607abf4-a259-acc5-3880-453146e3d69e	2021-05-19 17:09:52.721955	cuba	1	\N	\N	\N	\N	10	eademo_ScanHubAwp	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
abd39c45-162f-0fe3-0fc0-2c9e3a99ec1e	2021-05-19 17:09:52.723539	cuba	1	\N	\N	\N	\N	10	eademo_DocumentTransferAwp	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
dfa4316e-e90e-5b35-ab77-50b453518a1a	2021-05-19 17:09:52.725159	cuba	1	\N	\N	\N	\N	10	eademo_DocumentTransfer	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
87b6ccc2-c9d1-9745-4625-f5d628875758	2021-05-19 17:09:52.726802	cuba	1	\N	\N	\N	\N	10	eademo_ScanReception	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
8522b34a-672a-d99f-e4de-e92b60e6d718	2021-05-19 17:09:52.728636	cuba	1	\N	\N	\N	\N	10	eademo_ScanApply	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
536cf087-b2b1-81bb-5b5c-6bb07e6822a9	2021-05-19 17:09:52.730426	cuba	1	\N	\N	\N	\N	10	eademo_BoxFormation	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
af34ac5b-1686-43e8-84d0-417f3d2c7904	2021-05-19 17:09:52.732014	cuba	1	\N	\N	\N	\N	10	eademo_BoxOperator.browse	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
4ecd8906-7e1a-f335-68ce-8fc727b2af67	2021-05-19 17:09:52.719233	cuba	1	\N	\N	\N	\N	10	eademo_PaperDocument.browse	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
567a7e26-8933-0d62-7fae-fbf225519ae7	2021-05-19 17:09:52.735114	cuba	1	\N	\N	\N	\N	10	eademo_TransferToArchive	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
82c5601f-c8bc-395d-fa8a-1281c78072c2	2021-05-19 17:09:52.736738	cuba	1	\N	\N	\N	\N	10	eademo_BoxTransfer	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
e17bd348-4fe8-329d-ddf8-8e6bfe1c25a6	2021-05-19 17:09:52.738436	cuba	1	\N	\N	\N	\N	10	eademo_BoxTransferAwp	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
9e95880b-fcf2-9965-8aba-60c8eda6f5e2	2021-05-19 17:09:52.740207	cuba	1	\N	\N	\N	\N	20	eademo_PaperLocation:read	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
f4030e0a-0285-3fd4-28f4-ff020ce6a17b	2021-05-19 17:09:52.741871	cuba	1	\N	\N	\N	\N	20	eademo_PaperLocation:update	0	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
64783e47-5375-284f-e1ab-f8c2a14cc6d2	2021-05-19 17:09:52.74352	cuba	1	\N	\N	\N	\N	20	eademo_PaperLocation:create	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
8c0db8bb-b90e-6e9b-ad1a-f8c92c0e29b4	2021-05-19 17:09:52.745174	cuba	1	\N	\N	\N	\N	10	eademo_PaperLocation.edit	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
549a48c4-74b2-cf75-7168-54ef0b2c19a7	2021-05-19 17:09:52.74721	cuba	1	\N	\N	\N	\N	10	eademo_PaperLocation.browse	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
1934803e-1265-7e60-f2b2-2b7c618ad0f1	2021-05-19 17:09:52.749297	cuba	1	\N	\N	\N	\N	10	eademo_Employee.browse	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
b8c9eb0b-cdae-1307-2c90-1e8d01dc9fc9	2021-05-19 17:09:52.75105	cuba	1	\N	\N	\N	\N	10	eademo_Employee.edit	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
7c96a76b-9913-c9b4-a284-a6aed644a1ae	2021-05-19 17:09:52.752588	cuba	1	\N	\N	\N	\N	20	eademo_Employee:read	1	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
af2ccb79-2ab2-fc16-c9a5-81c98d21da17	2021-05-19 17:09:52.756977	cuba	1	\N	\N	\N	\N	10	attribute-assignment	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
a2c00283-81b7-96a1-657b-dbede58d84f7	2021-05-19 17:09:52.754042	cuba	1	\N	\N	\N	\N	10	eademo_AttributeAssignmentTask.browse	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
5397b952-0bad-8d8d-7314-044546012d79	2021-05-19 17:09:52.755479	cuba	1	\N	\N	\N	\N	10	eademo_AttributeAssignmentTask.edit	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
c84f7f3e-995a-cc40-b46b-c4d0a17bb48a	2021-05-19 17:09:52.758513	cuba	1	\N	\N	\N	\N	10	eademo_DocPackageModelAttrAssignment.browse	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
eabcba7a-4cd6-5383-7042-191f327b5261	2021-05-19 17:09:52.762085	cuba	1	\N	\N	\N	\N	10	eademo_EmployeeByDepartment.browse	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
0c7580a6-b776-04c3-76c7-81845c06af01	2021-05-19 17:09:52.760192	cuba	1	\N	\N	\N	\N	10	eademo_AttributeAssignmentSignerForm.edit	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
1335a1ea-01ba-c70f-4812-68a4abfb5ae1	2021-05-19 17:09:52.763646	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentTask:read	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
43977a41-3721-8cf8-1764-9d5f8bfc761f	2021-05-19 17:09:52.765166	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentTask:create	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
84661455-c6d7-3250-589b-4fb162b4bad8	2021-05-19 17:09:52.766738	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentTask:update	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
694d87bd-e247-94f8-01d0-24e50f1214b6	2021-05-19 17:09:52.768561	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentTask:delete	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
cd0e36e4-38c7-5482-03fa-4b9bfe3eda70	2021-05-19 17:09:52.770187	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentData:create	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
608767c6-c97f-fcb5-9350-76d2c1081fc2	2021-05-19 17:09:52.771448	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentData:update	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
0a476912-72c6-428b-b8f1-ae72ae94086a	2021-05-19 17:09:52.77323	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentData:delete	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
ad1bed79-7383-e489-0b84-3514c28b53c1	2021-05-19 17:09:52.775548	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentData:read	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
c197c7c1-d169-5ddc-ccec-dc7082bd30f2	2021-05-19 17:09:52.777795	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentSignerForm:read	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
3a1908a8-161a-3777-a89f-e4d9f2dadd05	2021-05-19 17:09:52.77956	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentSignerForm:update	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
384dc942-6de1-39d5-1d86-23ae3794e653	2021-05-19 17:09:52.780996	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentSignerForm:delete	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
597e9cf1-d1e2-8b6f-24c7-4e4f4dda2920	2021-05-19 17:09:52.782373	cuba	1	\N	\N	\N	\N	20	eademo_AttributeAssignmentSignerForm:create	1	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
f833325a-2df8-bc54-a148-86ee7a49e082	2021-05-19 17:09:52.814828	cuba	1	\N	\N	\N	\N	10	help	1	fcf9d6e7-135b-26b5-89be-2e75d24504af
f398ab0f-8b62-3da6-b49d-6caf18b23405	2021-05-19 17:09:52.816728	cuba	1	\N	\N	\N	\N	10	aboutWindow	1	fcf9d6e7-135b-26b5-89be-2e75d24504af
dca0bd6e-73f3-fcfc-56c4-c3f1f6d6b6b3	2021-05-19 17:09:52.818957	cuba	1	\N	\N	\N	\N	10	settings	1	fcf9d6e7-135b-26b5-89be-2e75d24504af
d4346307-d441-19ba-9924-ede1c522af03	2021-05-19 17:09:52.860458	cuba	1	\N	\N	\N	\N	10	reports	0	042e9907-9b40-425d-8148-d72bd93b2198
a7590695-e88e-f59c-af33-28fad4016f83	2021-05-19 17:09:52.863027	cuba	1	\N	\N	\N	\N	20	report$Report:read	0	042e9907-9b40-425d-8148-d72bd93b2198
2ef30244-39d5-419f-2843-44bade171bbe	2021-05-19 17:09:52.864495	cuba	1	\N	\N	\N	\N	20	report$Report:create	0	042e9907-9b40-425d-8148-d72bd93b2198
027671a2-a9cf-fdf7-4664-d88156d85eea	2021-05-19 17:09:52.865825	cuba	1	\N	\N	\N	\N	20	report$Report:update	0	042e9907-9b40-425d-8148-d72bd93b2198
b6a95da2-b251-afad-572e-8f086b588811	2021-05-19 17:09:52.867294	cuba	1	\N	\N	\N	\N	20	report$Report:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
82cd47f4-5f7f-56eb-0a9b-35b25a6ec0e3	2021-05-19 17:09:52.868479	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:read	0	042e9907-9b40-425d-8148-d72bd93b2198
61e66331-4b34-1483-8629-cff8158b3489	2021-05-19 17:09:52.8699	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:create	0	042e9907-9b40-425d-8148-d72bd93b2198
b814fc4c-0aa6-f4f1-4cd3-19041bb3e7d9	2021-05-19 17:09:52.871301	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:update	0	042e9907-9b40-425d-8148-d72bd93b2198
19aad7a7-ee1d-55a6-ab74-ab49e788f1b7	2021-05-19 17:09:52.872664	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
a1cb4dc3-9163-3743-c0b1-c11e73c24c10	2021-05-19 17:09:52.874086	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:read	0	042e9907-9b40-425d-8148-d72bd93b2198
4e91af31-8350-942a-ff56-b48eaff7649d	2021-05-19 17:09:52.87547	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:create	0	042e9907-9b40-425d-8148-d72bd93b2198
b3621d12-144f-cc55-c5ee-0d44386f8b80	2021-05-19 17:09:52.876994	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:update	0	042e9907-9b40-425d-8148-d72bd93b2198
1e62680f-8980-b34e-9064-4ea2b4626b46	2021-05-19 17:09:52.880056	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
6599bf25-2b6a-593d-c428-92a97559de61	2021-05-19 17:09:52.881472	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:read	0	042e9907-9b40-425d-8148-d72bd93b2198
b46b104c-102e-2b59-6fc4-246e9cadcc09	2021-05-19 17:09:52.882838	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:create	0	042e9907-9b40-425d-8148-d72bd93b2198
55ded305-b35a-7531-4067-3680e9b3a74f	2021-05-19 17:09:52.884227	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:update	0	042e9907-9b40-425d-8148-d72bd93b2198
975dd050-8457-6c62-a73f-0f1352839593	2021-05-19 17:09:52.886087	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
db6b6619-db6b-3bd6-e9da-34a787c561f9	2021-05-19 17:09:52.887876	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:read	0	042e9907-9b40-425d-8148-d72bd93b2198
5ce82152-0288-f5d0-0de7-869feff7deb7	2021-05-19 17:09:52.890751	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:create	0	042e9907-9b40-425d-8148-d72bd93b2198
aab6a5b6-c1ba-e7ea-6552-337dc7d4d608	2021-05-19 17:09:52.892609	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:update	0	042e9907-9b40-425d-8148-d72bd93b2198
33cca165-60c6-38e2-0fc9-81fdcff10ef0	2021-05-19 17:09:52.894237	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
ec7154e3-91ea-c770-b50c-979c4bb8a95e	2021-05-19 17:09:52.941443	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:update	0	042e9907-9b40-425d-8148-d72bd93b2198
601e68f0-c537-d453-81da-fc7b2761e51a	2021-05-19 17:09:52.942979	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
4992fbc6-d633-c3d2-6b6b-74b38e6628c1	2021-05-19 17:09:52.950138	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:read	0	042e9907-9b40-425d-8148-d72bd93b2198
4af2fdc2-b95d-97fc-7965-71014c516dba	2021-05-19 17:09:52.938292	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:read	0	042e9907-9b40-425d-8148-d72bd93b2198
ad34a7b9-d696-3694-d192-0a254b348df8	2021-05-19 17:09:52.896783	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:read	0	042e9907-9b40-425d-8148-d72bd93b2198
928b51db-6ef2-784f-fea3-6dcec549d875	2021-05-19 17:09:52.899201	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:create	0	042e9907-9b40-425d-8148-d72bd93b2198
f45ab5c2-146a-e55a-2aee-a70fdca9231a	2021-05-19 17:09:52.90151	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:update	0	042e9907-9b40-425d-8148-d72bd93b2198
1b8ae47e-665a-735e-9493-17024547f25e	2021-05-19 17:09:52.903396	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
b2dca114-bbe6-f8c9-c12c-b0fc6c564cf2	2021-05-19 17:09:52.904678	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:read	0	042e9907-9b40-425d-8148-d72bd93b2198
6e13f886-e51b-a373-d426-30d4444ba753	2021-05-19 17:09:52.906877	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:create	0	042e9907-9b40-425d-8148-d72bd93b2198
67cdf681-dd08-5df0-efab-593fb55b0a46	2021-05-19 17:09:52.909056	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:update	0	042e9907-9b40-425d-8148-d72bd93b2198
5773760a-f322-d63e-c299-d55a028c2a28	2021-05-19 17:09:52.910476	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
f3f319b9-291e-b80a-26a4-41a68eb62532	2021-05-19 17:09:52.911942	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:read	0	042e9907-9b40-425d-8148-d72bd93b2198
6e38cb96-4555-a6c3-3a97-fdfd109b4ae1	2021-05-19 17:09:52.913307	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:create	0	042e9907-9b40-425d-8148-d72bd93b2198
46365050-7261-8df4-d156-97d1bd497974	2021-05-19 17:09:52.914823	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:update	0	042e9907-9b40-425d-8148-d72bd93b2198
f750b1ca-c050-541d-8643-ea4bcce83485	2021-05-19 17:09:52.916731	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
2ff25b9d-772f-4f00-efdc-40539c49ff7d	2021-05-19 17:09:52.918203	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:read	0	042e9907-9b40-425d-8148-d72bd93b2198
45a08c9a-cfff-8e79-d418-cd17f9a4bf9f	2021-05-19 17:09:52.919584	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:create	0	042e9907-9b40-425d-8148-d72bd93b2198
0899d0f6-b94f-438f-c1a1-98d3d6330bc0	2021-05-19 17:09:52.921315	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:update	0	042e9907-9b40-425d-8148-d72bd93b2198
62d64944-009c-7e48-b5f5-d3fcbd012c3d	2021-05-19 17:09:52.923241	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
85aca0d0-48fe-1889-98a0-69d185b4e81f	2021-05-19 17:09:52.924582	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:read	0	042e9907-9b40-425d-8148-d72bd93b2198
3c9ca38c-7dc2-1ecb-e127-f84908c54722	2021-05-19 17:09:52.926017	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:create	0	042e9907-9b40-425d-8148-d72bd93b2198
8e86e8f1-c206-a5c5-a56b-033694b65648	2021-05-19 17:09:52.927391	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:update	0	042e9907-9b40-425d-8148-d72bd93b2198
a3630773-6ecf-48f1-f3d8-d51cb9fdcad5	2021-05-19 17:09:52.928814	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
eeee12e7-b640-8ea2-728e-926aaeedecd0	2021-05-19 17:09:52.930221	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:read	0	042e9907-9b40-425d-8148-d72bd93b2198
44b10936-7a86-204c-3fad-3b137896631a	2021-05-19 17:09:52.93164	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:create	0	042e9907-9b40-425d-8148-d72bd93b2198
fdae301a-c740-e687-d15c-0ac7d56aeab7	2021-05-19 17:09:52.933353	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:update	0	042e9907-9b40-425d-8148-d72bd93b2198
7787f8c2-5cae-f44b-b433-2ce0b8aad204	2021-05-19 17:09:52.934839	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
325c2916-f159-7dd3-fae8-7d2287cc3ad3	2021-05-19 17:09:52.939761	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:create	0	042e9907-9b40-425d-8148-d72bd93b2198
7fa0769e-f2c0-8d15-c5b5-c0f27ab558fc	2021-05-19 17:09:52.951529	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:create	0	042e9907-9b40-425d-8148-d72bd93b2198
f3252780-574e-f602-e8e6-6625ee5d3471	2021-05-19 17:09:52.9529	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:update	0	042e9907-9b40-425d-8148-d72bd93b2198
cdb0fc1d-e28a-a1a9-5b8f-49bd5f30c6a9	2021-05-19 17:09:52.954772	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
e35e9a05-ce1a-57d1-dc60-d9adf7307176	2021-05-19 17:09:52.956369	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:read	0	042e9907-9b40-425d-8148-d72bd93b2198
a4835cf2-bd1e-6ecd-cba6-7d2e16ddd46a	2021-05-19 17:09:52.95804	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:create	0	042e9907-9b40-425d-8148-d72bd93b2198
83d41c5e-4539-6fb9-6055-897618d12a47	2021-05-19 17:09:52.961758	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:update	0	042e9907-9b40-425d-8148-d72bd93b2198
485416a6-7c32-64bf-c1a3-c551259d8e52	2021-05-19 17:09:52.963885	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
be1fee71-16bf-097e-c7a2-6afd9a4368e4	2021-05-19 17:09:52.966374	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:read	0	042e9907-9b40-425d-8148-d72bd93b2198
65cd18fd-9771-8c51-989f-529980712e02	2021-05-19 17:09:52.969822	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:create	0	042e9907-9b40-425d-8148-d72bd93b2198
409f58e2-2d5c-4413-3c4f-9d75a9b45236	2021-05-19 17:09:52.973289	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:update	0	042e9907-9b40-425d-8148-d72bd93b2198
bae86b45-10f4-ad7e-ba29-596e07ab135e	2021-05-19 17:09:52.979195	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
3079f190-66fc-4650-63a7-e8f20bae59a4	2021-05-19 17:09:52.980683	cuba	1	\N	\N	\N	\N	20	report$DataSet:read	0	042e9907-9b40-425d-8148-d72bd93b2198
17c47e9e-68d6-c041-ba4e-6b3bc69ff957	2021-05-19 17:09:52.982037	cuba	1	\N	\N	\N	\N	20	report$DataSet:create	0	042e9907-9b40-425d-8148-d72bd93b2198
866fccb6-20d8-942a-b54d-7d28561a0a19	2021-05-19 17:09:52.983999	cuba	1	\N	\N	\N	\N	20	report$DataSet:update	0	042e9907-9b40-425d-8148-d72bd93b2198
00bf6e27-319a-6dbd-7153-6dc927b02109	2021-05-19 17:09:52.985427	cuba	1	\N	\N	\N	\N	20	report$DataSet:delete	0	042e9907-9b40-425d-8148-d72bd93b2198
359877ab-667a-4689-f558-1dc5ece6ffcf	2021-05-19 17:09:52.986946	cuba	1	\N	\N	\N	\N	10	report$Report.run	0	042e9907-9b40-425d-8148-d72bd93b2198
6041cd46-6503-8031-dcbd-c465f8b39b13	2021-05-19 17:09:52.988395	cuba	1	\N	\N	\N	\N	10	report$Report.browse	0	042e9907-9b40-425d-8148-d72bd93b2198
b3c311d6-070b-dabd-1c2a-46af0f2184ca	2021-05-19 17:09:52.989803	cuba	1	\N	\N	\N	\N	10	report$showChart	0	042e9907-9b40-425d-8148-d72bd93b2198
4c08aced-2be1-b088-480d-d48a8dfae0fd	2021-05-19 17:09:52.991451	cuba	1	\N	\N	\N	\N	10	report$showReportTable	0	042e9907-9b40-425d-8148-d72bd93b2198
3760f5b4-25b3-26c2-366f-9127db54ff91	2021-05-19 17:09:52.993719	cuba	1	\N	\N	\N	\N	10	report$showPivotTable	0	042e9907-9b40-425d-8148-d72bd93b2198
34b6448d-8223-0dfa-09c5-bae7719a5d71	2021-05-19 17:09:52.995258	cuba	1	\N	\N	\N	\N	10	report$Report.wizard	0	042e9907-9b40-425d-8148-d72bd93b2198
a5132d3e-a1ca-1e63-f692-f692aa2433ce	2021-05-19 17:09:52.996763	cuba	1	\N	\N	\N	\N	10	report$Report.regionEditor	0	042e9907-9b40-425d-8148-d72bd93b2198
9a6e0526-57eb-ce4a-eb06-c82dd7248d51	2021-05-19 17:09:52.998291	cuba	1	\N	\N	\N	\N	10	commonLookup	0	042e9907-9b40-425d-8148-d72bd93b2198
aeac477b-55d4-054d-9f1c-273139a2109a	2021-05-19 17:09:52.999925	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.browse	0	042e9907-9b40-425d-8148-d72bd93b2198
986d5574-0df0-b9bb-7748-376e28514ce0	2021-05-19 17:09:53.001509	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.edit	0	042e9907-9b40-425d-8148-d72bd93b2198
a047dedd-46cb-a455-f8a3-fdc0952313a2	2021-05-19 17:09:53.002936	cuba	1	\N	\N	\N	\N	10	report$ReportValueFormat.edit	0	042e9907-9b40-425d-8148-d72bd93b2198
64c31919-0a8a-dd62-5994-5d2b1abd7a6d	2021-05-19 17:09:53.005688	cuba	1	\N	\N	\N	\N	10	report$ReportTemplate.edit	0	042e9907-9b40-425d-8148-d72bd93b2198
9ded9d7e-cdd8-093b-ee4a-7d56af4450a7	2021-05-19 17:09:53.008755	cuba	1	\N	\N	\N	\N	10	report$Report.importDialog	0	042e9907-9b40-425d-8148-d72bd93b2198
69737f60-ef65-c74c-6d56-06fd1cdcee71	2021-05-19 17:09:53.010346	cuba	1	\N	\N	\N	\N	10	report$Report.edit	0	042e9907-9b40-425d-8148-d72bd93b2198
c3dc497d-a6fa-7824-c588-d5afd83ad0f5	2021-05-19 17:09:53.168503	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
3109ea50-2733-f56f-2135-27c91ccb265f	2021-05-19 17:09:53.169907	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
e9719378-eb85-e0c4-a58a-850c40d63099	2021-05-19 17:09:53.177234	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
695c985a-12d7-6e71-c3de-2400b6b1f98a	2021-05-19 17:09:53.165764	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
979c87e3-dd4a-133b-ed2c-b2ede51486a1	2021-05-19 17:09:53.011764	cuba	1	\N	\N	\N	\N	10	report$ReportGroup.browse	0	042e9907-9b40-425d-8148-d72bd93b2198
ccc1ff34-f8ca-9b9c-236f-3b55060846f0	2021-05-19 17:09:53.01325	cuba	1	\N	\N	\N	\N	10	reports	0	16340150-6049-4d32-9d17-4770eb8b6b7e
e0cb476f-afc3-4e55-0504-f51c821a3777	2021-05-19 17:09:53.017137	cuba	1	\N	\N	\N	\N	20	report$Report:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
c8f619f5-2ced-422b-d685-b98c9164ef87	2021-05-19 17:09:53.018986	cuba	1	\N	\N	\N	\N	20	report$Report:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
f12be750-122c-1f3a-20f5-3ad1f4051379	2021-05-19 17:09:53.021286	cuba	1	\N	\N	\N	\N	20	report$Report:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
bca81fa1-7c77-f00c-3272-4852cc7bf15a	2021-05-19 17:09:53.023253	cuba	1	\N	\N	\N	\N	20	report$Report:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
e5fa5566-86b3-f857-1814-a558738b1f91	2021-05-19 17:09:53.024737	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
d690c261-ce34-00b9-0033-8d873fb52fc8	2021-05-19 17:09:53.027416	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
6c642541-92fb-c24b-3449-053ae9bd436f	2021-05-19 17:09:53.0293	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
f79f3761-6113-26fb-daa4-f1b153b58d01	2021-05-19 17:09:53.030728	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
a3e1f5ec-dc9d-a4ef-ec02-c7b5c1d00ae1	2021-05-19 17:09:53.032246	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
6e2ecc0d-5b29-10ed-90f0-03e8feee7ee6	2021-05-19 17:09:53.033474	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
f83eab48-d2e9-83aa-56b8-c55b3b8d36f4	2021-05-19 17:09:53.034856	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
b2a2c2f5-0e35-4289-0676-32ceeb61b9fe	2021-05-19 17:09:53.036256	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
c9a302b2-42b3-7f22-e111-7caa7998aa96	2021-05-19 17:09:53.037747	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
cf2818b5-ff30-8b1f-2aff-1d5294bec6e2	2021-05-19 17:09:53.041974	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
a2726fb1-ba1a-b850-dcec-6716cf4c6fb3	2021-05-19 17:09:53.043399	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
b407c815-597e-1862-0c79-6b82b171613f	2021-05-19 17:09:53.044799	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
0b5a7677-25b0-a986-f612-9aab11f44ff0	2021-05-19 17:09:53.051797	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
71868373-4ef2-f9a6-e62b-88757d677150	2021-05-19 17:09:53.057335	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
c5c4f14e-b4bf-aa70-695c-6343e3bcba43	2021-05-19 17:09:53.065936	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
f0bd294a-f240-2ceb-15b8-a913a6b02ca1	2021-05-19 17:09:53.07305	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
00131f4a-8674-9525-c8ea-765bac64262d	2021-05-19 17:09:53.080985	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
09f6c3be-1876-950f-9545-01681f5baf8d	2021-05-19 17:09:53.088613	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
c33c4a31-653d-aebc-6069-cf2b98630a13	2021-05-19 17:09:53.097185	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
629afd7f-d1d9-90f2-ccb2-8bb509733061	2021-05-19 17:09:53.102897	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
e46a4590-17a0-3a40-e8f9-11af80cc3249	2021-05-19 17:09:53.109907	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
4090ceb8-3a47-9c5c-5ea1-ef9eb9955b5b	2021-05-19 17:09:53.119137	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
f67903c7-28fa-51a4-818b-6a5ca9f4be92	2021-05-19 17:09:53.128998	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
9152dce0-d7a2-8581-37ad-4c68aa658ecd	2021-05-19 17:09:53.135838	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
6d66685c-faf8-977e-e0cd-785824f28ec0	2021-05-19 17:09:53.137995	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
2242dc19-04b8-3dda-e3de-e6856f463967	2021-05-19 17:09:53.140022	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
9b5433dd-dbce-e4b1-c5ab-a29ed849e562	2021-05-19 17:09:53.141744	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
0c0ebb2e-c3c4-e2e3-3f14-4ca5a1cafa27	2021-05-19 17:09:53.143791	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
593cf859-e481-b35f-4a92-993d153e2c04	2021-05-19 17:09:53.146374	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
c226eb21-b924-8deb-754d-0df26b481f02	2021-05-19 17:09:53.148162	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
3fb08443-19b2-f5f7-03d7-e6c07ff66cf4	2021-05-19 17:09:53.149933	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
57fbbd35-5713-6b1a-808e-e55c96d19c35	2021-05-19 17:09:53.151502	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
1ab64ac8-e4be-b266-3c4e-8236621ee8cc	2021-05-19 17:09:53.153465	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
1107c34b-a468-c195-152e-864ef236648b	2021-05-19 17:09:53.155083	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
03b63990-0c08-620c-9ecd-bc7132721aba	2021-05-19 17:09:53.156502	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
428785ec-f25e-6693-0852-c621704f0059	2021-05-19 17:09:53.15796	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
4fdd213f-6ae2-93fa-a2ae-8c850e8de255	2021-05-19 17:09:53.159482	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
1039be52-1cdd-b181-be4f-e0dbc1a126e5	2021-05-19 17:09:53.161077	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
5074b54d-da49-4b96-52a8-6cd96076d460	2021-05-19 17:09:53.162691	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
67dd7790-e670-4ce3-8efa-56905c9441bb	2021-05-19 17:09:53.164357	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
5d28759e-f84f-be59-42ef-395990be2829	2021-05-19 17:09:53.167261	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
7f794243-0452-d75b-0e01-38a8e7f2a429	2021-05-19 17:09:53.178697	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
f535cd93-06be-161a-895e-3b341e499ade	2021-05-19 17:09:53.180165	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
b6ca70c1-47c9-9251-8326-4b5f8ddcaf76	2021-05-19 17:09:53.181732	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
30d7f24c-b9e8-283e-4922-489e222032e3	2021-05-19 17:09:53.183456	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
ffd2db9f-49bc-2f58-8bac-65aabc509c41	2021-05-19 17:09:53.184836	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
a66fc431-cff7-0000-571a-ee9d8e1c038d	2021-05-19 17:09:53.186225	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
8e20c8cf-fd29-7bc4-aa19-3156df7f4cf9	2021-05-19 17:09:53.187662	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
064108f4-3640-c330-4e63-c0eae8a8bbce	2021-05-19 17:09:53.191195	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
ff030294-94a5-4021-a0a5-a718ce42bfae	2021-05-19 17:09:53.192924	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
234c998a-08e7-868d-672f-bada66637a25	2021-05-19 17:09:53.194405	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
5fe03af7-67e1-26e9-b25e-99c266ec0322	2021-05-19 17:09:53.196408	cuba	1	\N	\N	\N	\N	20	report$DataSet:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
94b0d8ba-e24d-9e90-c518-988651de6db5	2021-05-19 17:09:53.197873	cuba	1	\N	\N	\N	\N	20	report$DataSet:create	0	16340150-6049-4d32-9d17-4770eb8b6b7e
55e0842f-17f3-378d-dbf1-92c4f6aa3a4f	2021-05-19 17:09:53.19937	cuba	1	\N	\N	\N	\N	20	report$DataSet:update	0	16340150-6049-4d32-9d17-4770eb8b6b7e
2d8e464b-f861-8cc9-8daf-7e49512ada1f	2021-05-19 17:09:53.202308	cuba	1	\N	\N	\N	\N	10	report$Report.run	0	16340150-6049-4d32-9d17-4770eb8b6b7e
d4de3a30-5a0c-c12a-54e2-db832505cd74	2021-05-19 17:09:53.203837	cuba	1	\N	\N	\N	\N	10	report$Report.browse	0	16340150-6049-4d32-9d17-4770eb8b6b7e
e58de5c8-ab22-a141-af66-c4cdffbfa425	2021-05-19 17:09:53.205597	cuba	1	\N	\N	\N	\N	10	report$showChart	0	16340150-6049-4d32-9d17-4770eb8b6b7e
77cc4ceb-6fa5-2472-f572-38bc9dd7b69f	2021-05-19 17:09:53.207121	cuba	1	\N	\N	\N	\N	10	report$showReportTable	0	16340150-6049-4d32-9d17-4770eb8b6b7e
e9283906-1595-583b-8c3b-6a5a745adb9e	2021-05-19 17:09:53.208574	cuba	1	\N	\N	\N	\N	10	report$showPivotTable	0	16340150-6049-4d32-9d17-4770eb8b6b7e
227fa8da-c582-42cc-5613-2a498f1e6cfd	2021-05-19 17:09:53.210573	cuba	1	\N	\N	\N	\N	10	report$Report.wizard	0	16340150-6049-4d32-9d17-4770eb8b6b7e
853d49ea-1bbc-3b0b-01d9-54fd7526c41d	2021-05-19 17:09:53.2123	cuba	1	\N	\N	\N	\N	10	report$Report.regionEditor	0	16340150-6049-4d32-9d17-4770eb8b6b7e
6d0f0c5d-117b-8b80-a98e-0980ebe515d7	2021-05-19 17:09:53.213588	cuba	1	\N	\N	\N	\N	10	commonLookup	0	16340150-6049-4d32-9d17-4770eb8b6b7e
7df7dc12-a199-57fb-4b0f-63e593a17db4	2021-05-19 17:09:53.218404	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.browse	0	16340150-6049-4d32-9d17-4770eb8b6b7e
a614b726-6319-f6b4-43eb-a744d82e27b0	2021-05-19 17:09:53.22223	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.edit	0	16340150-6049-4d32-9d17-4770eb8b6b7e
1784437b-425a-31b5-61fb-e1339f590695	2021-05-19 17:09:53.224122	cuba	1	\N	\N	\N	\N	10	report$ReportValueFormat.edit	0	16340150-6049-4d32-9d17-4770eb8b6b7e
cf918897-2404-1d0c-ff2d-3e385b86e0e1	2021-05-19 17:09:53.225568	cuba	1	\N	\N	\N	\N	10	report$ReportTemplate.edit	0	16340150-6049-4d32-9d17-4770eb8b6b7e
d15b440f-cbb7-429a-b41b-57b483a03cb3	2021-05-19 17:09:53.227562	cuba	1	\N	\N	\N	\N	10	report$Report.importDialog	0	16340150-6049-4d32-9d17-4770eb8b6b7e
c39dca1e-3f28-8cba-cf16-b4b05f239536	2021-05-19 17:09:53.229082	cuba	1	\N	\N	\N	\N	10	report$Report.edit	0	16340150-6049-4d32-9d17-4770eb8b6b7e
28a6cc60-ff8d-8cc8-386f-fdcb08236f42	2021-05-19 17:09:53.230508	cuba	1	\N	\N	\N	\N	10	report$ReportGroup.browse	0	16340150-6049-4d32-9d17-4770eb8b6b7e
7c0af24f-b378-466a-6111-326074a3d7ce	2021-05-19 17:09:53.232101	cuba	1	\N	\N	\N	\N	10	reports	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
0264a833-ccb5-650b-094d-cceaf29b72b4	2021-05-19 17:09:53.23398	cuba	1	\N	\N	\N	\N	20	report$Report:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
dba0c57a-98ab-b96c-f82a-f77921499516	2021-05-19 17:09:53.235389	cuba	1	\N	\N	\N	\N	20	report$Report:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
c4d01604-1d38-93df-63c4-0f58cc27288b	2021-05-19 17:09:53.237567	cuba	1	\N	\N	\N	\N	20	report$Report:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
68ae12b2-c77e-6d7d-c2af-2b3efd067a58	2021-05-19 17:09:53.239964	cuba	1	\N	\N	\N	\N	20	report$Report:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
c09c5233-a448-544d-1f41-7373c4b6d1d8	2021-05-19 17:09:53.24276	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
5c72ef69-0a3e-e319-47cf-4d236a62f5ef	2021-05-19 17:09:53.244194	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
bad3a571-b287-db83-75cd-4d201a0d923c	2021-05-19 17:09:53.245763	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
12921db3-0edc-ac33-912c-4c73da41e628	2021-05-19 17:09:53.248724	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
37221afe-d93e-e79c-91e9-6fe70af4dd05	2021-05-19 17:09:53.253293	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
f7cb4c2d-c449-762e-512c-71a5ae0d7105	2021-05-19 17:09:53.255323	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
21596b24-a42a-d03c-987a-0f1c96089039	2021-05-19 17:09:53.258926	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
aad53ecd-e3eb-c4e7-8b65-8954f1a2ade0	2021-05-19 17:09:53.262903	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
5e1310c5-92e1-bea8-f2b4-5b2a59dca518	2021-05-19 17:09:53.267532	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
02795b74-530c-2d23-fe09-4844cf7b1821	2021-05-19 17:09:53.269019	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
637070e3-054c-5b7c-6c16-04c0a1a5c4c0	2021-05-19 17:09:53.271825	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
f70ac401-cf3b-66f5-42ef-6b7549a3e7a9	2021-05-19 17:09:53.273446	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
c4cd95b2-cc98-3c04-344c-9515303b8e5d	2021-05-19 17:09:53.275097	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
af5715f5-89be-2f1b-c977-fd485d04186e	2021-05-19 17:09:53.276794	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
5983f725-a225-f93b-0871-34439292fef4	2021-05-19 17:09:53.278381	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
72a125fe-964a-9629-3d3b-64b8d5f6e571	2021-05-19 17:09:53.279855	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
a8c9e2dc-6b6e-e4c2-ff7e-de2f885eaf3f	2021-05-19 17:09:53.281499	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
40b9171a-1c4b-ec9b-cd48-c26215f4aefb	2021-05-19 17:09:53.282941	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
568ee4e9-0da4-d0a0-fc64-779d2d7d45b6	2021-05-19 17:09:53.284756	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
fef4bccf-bf74-e0fa-7b61-0e552f2df3e6	2021-05-19 17:09:53.288803	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
6e086624-5d6f-1f1e-0eac-00ef1b68943c	2021-05-19 17:09:53.295177	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
4f366055-c443-9dad-804b-ca915394380a	2021-05-19 17:09:53.298698	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
d958e49b-e47e-61a5-8fb1-b226fa88d5d8	2021-05-19 17:09:53.300717	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
4b734dbb-49f2-22b9-07ec-5a4a55cfd861	2021-05-19 17:09:53.302257	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
ccf148f2-f166-3096-fdf0-3a95db6dcba2	2021-05-19 17:09:53.303859	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
00d13f3e-3824-3847-5f30-1faf44a82cfa	2021-05-19 17:09:53.305608	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
177ff767-c447-d2ab-a494-86fc42f5afc0	2021-05-19 17:09:53.3072	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
30e8d024-e4be-d186-abaf-7914fd1d1009	2021-05-19 17:09:53.309307	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
907f1f20-0df8-e77e-c111-6a7b8b088cd9	2021-05-19 17:09:53.31096	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
78921bbd-d644-9604-d060-a8d9361daf47	2021-05-19 17:09:53.312615	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
8884b2ae-bd0b-d440-bd58-0177badcf4a3	2021-05-19 17:09:53.314062	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
f7c39f90-532a-3881-6428-5e04146e85bf	2021-05-19 17:09:53.315441	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
b313566d-814e-0018-2373-7eed3c024b07	2021-05-19 17:09:53.316916	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
b340448c-99a4-72cb-afcf-36f443026204	2021-05-19 17:09:53.318503	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
766e201d-122a-8535-fc56-598db33d8e84	2021-05-19 17:09:53.320349	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
292a0deb-574d-bcc9-0192-a46c0ab2c88b	2021-05-19 17:09:53.335978	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
260cd010-749f-5c77-faf2-eef63c26d414	2021-05-19 17:09:53.343055	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
58e9e5f9-ca1e-e843-6633-e53b84445198	2021-05-19 17:09:53.372311	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
33996e9f-5caa-007d-ea05-7412aeec76e6	2021-05-19 17:09:53.328549	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
3089414e-8077-efca-9876-9e4e04170a70	2021-05-19 17:09:53.448063	cuba	1	\N	\N	\N	\N	10	reports	1	6840bfa4-0007-4208-a427-8315dfb0384e
e8199d67-196d-4133-2401-8a00321702cc	2021-05-19 17:09:53.450601	cuba	1	\N	\N	\N	\N	10	reports	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
8ed8cbb0-058d-6988-abcb-50a095c61a07	2021-05-19 17:09:53.453775	cuba	1	\N	\N	\N	\N	20	report$Report:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
312f1a9c-c9ff-d914-a8a6-44c28cafb81c	2021-05-19 17:09:53.456817	cuba	1	\N	\N	\N	\N	20	report$Report:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
8657ffba-c9ff-f7d1-54c8-252f2dae74f4	2021-05-19 17:09:53.460248	cuba	1	\N	\N	\N	\N	20	report$Report:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
0b9627e4-0c59-67ab-2c30-4d5e592f39e4	2021-05-19 17:09:53.463038	cuba	1	\N	\N	\N	\N	20	report$Report:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
e8ec66f5-f556-0604-ab08-4f8486751c00	2021-05-19 17:09:53.46673	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
fc785457-71a5-8d35-8125-9c29f2e34d23	2021-05-19 17:09:53.468399	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
d2c27eb2-0c7d-6e22-a42e-d90fbbd539d3	2021-05-19 17:09:53.470984	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
5db68c68-af79-3fc0-d361-85b25e6fec4e	2021-05-19 17:09:53.473263	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
22abbe85-87d6-2b00-5a1f-11052523ca8b	2021-05-19 17:09:53.475165	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
477253fd-b59f-cbc4-dca6-4dfc631f65de	2021-05-19 17:09:53.476846	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
3bdfc7d8-d7f0-de2b-252e-0a1e1ffbf5b9	2021-05-19 17:09:53.478562	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
63dfcbb4-df0c-bd8d-0099-24ddcaa39624	2021-05-19 17:09:53.480579	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
e508e3d8-ff1e-2c33-6b61-56cf61ad05e2	2021-05-19 17:09:53.482408	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
eee93ed8-c9b8-95f8-783c-5f8ff6ca66d6	2021-05-19 17:09:53.48408	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
5a8ae2cb-a42e-7d9f-9436-9a5081a1b016	2021-05-19 17:09:53.48557	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
e3f314df-a76f-c8d8-1339-051c3f7a2627	2021-05-19 17:09:53.487449	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
85c3324c-1a53-4e3b-e8d0-e4dbdf914ce9	2021-05-19 17:09:53.489938	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
e69f87a8-e561-3d15-a23c-6acf09702575	2021-05-19 17:09:53.493747	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
8483e039-e6ad-06ac-e17e-7b06ccc92740	2021-05-19 17:09:53.497085	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
51e593d9-3b8e-de92-9237-56f1cad39ed7	2021-05-19 17:09:53.32209	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
4f774eb2-23de-a072-3bd4-fe89bba6e68f	2021-05-19 17:09:53.323877	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
8750accb-7a7d-3683-49bb-6eb56b033891	2021-05-19 17:09:53.325442	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
e60fcc7c-b086-fd45-2b3f-aebc5caf48c7	2021-05-19 17:09:53.326952	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
c632a500-10ba-783f-9ffb-7d3c270552f2	2021-05-19 17:09:53.33002	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
f6b3a630-48e9-6da0-a55c-2096621949a5	2021-05-19 17:09:53.373768	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
0a6b7e50-95a3-d322-179e-c90d27d57be0	2021-05-19 17:09:53.375175	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
36de9e8c-1ff8-7579-42bb-b8abcc7b46b4	2021-05-19 17:09:53.376647	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
e382efe3-3a5c-e599-4d7f-360c8561a3ef	2021-05-19 17:09:53.37809	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
fe0b7d74-478f-82bb-8ef5-6d1f8e4854cb	2021-05-19 17:09:53.379679	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
7755b93c-3a54-3b77-1711-fcb5a904d958	2021-05-19 17:09:53.381304	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
926b7635-fad8-c5c1-6a46-f2fb4248e720	2021-05-19 17:09:53.382745	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
8944053d-6594-ddd6-b62e-f01b9b29fb0a	2021-05-19 17:09:53.384185	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
daf28ab0-6df2-5eeb-240e-3da18cafd1ea	2021-05-19 17:09:53.385596	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
a537950b-8617-4ec1-82ba-65e6e6dcc549	2021-05-19 17:09:53.387535	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
36e030fe-36a4-8b5c-a428-37a2cea40188	2021-05-19 17:09:53.391104	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
12cbd7d6-4ae1-f79d-2ddf-88abdfc5a3db	2021-05-19 17:09:53.392829	cuba	1	\N	\N	\N	\N	20	report$DataSet:read	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
e95a2784-365d-2a66-d2ba-f2eef4cadb15	2021-05-19 17:09:53.394708	cuba	1	\N	\N	\N	\N	20	report$DataSet:create	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
90a30681-770e-3125-1a52-1825772fbac3	2021-05-19 17:09:53.396435	cuba	1	\N	\N	\N	\N	20	report$DataSet:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
0173601a-862a-9d1e-86d3-e6fb368f2ee3	2021-05-19 17:09:53.398936	cuba	1	\N	\N	\N	\N	20	report$DataSet:delete	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
3b279da3-1a24-5f6f-b19c-e59024f928f1	2021-05-19 17:09:53.40085	cuba	1	\N	\N	\N	\N	10	report$Report.run	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
5af88188-f89f-ccdf-32d7-c33a9c835433	2021-05-19 17:09:53.403157	cuba	1	\N	\N	\N	\N	10	report$Report.browse	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
93d538de-140e-61ba-99e0-2b17585ef9ab	2021-05-19 17:09:53.404951	cuba	1	\N	\N	\N	\N	10	report$showChart	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
59c5ffe5-f130-5a0d-52b6-63a7d33362bf	2021-05-19 17:09:53.40682	cuba	1	\N	\N	\N	\N	10	report$showReportTable	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
e23fd06b-6f6e-6760-409b-3f19803718fb	2021-05-19 17:09:53.409264	cuba	1	\N	\N	\N	\N	10	report$showPivotTable	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
db3ffab4-707a-40f5-784f-ab71af84cd13	2021-05-19 17:09:53.411491	cuba	1	\N	\N	\N	\N	10	report$Report.wizard	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
904e9b05-36e7-f736-9fea-0970bd2caeff	2021-05-19 17:09:53.413168	cuba	1	\N	\N	\N	\N	10	report$Report.regionEditor	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
ea94561a-bee2-5fd0-418e-32ae52f838a9	2021-05-19 17:09:53.417959	cuba	1	\N	\N	\N	\N	10	commonLookup	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
420306fd-5609-3f72-f3a1-3cc99c0a4e1c	2021-05-19 17:09:53.422912	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.browse	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
fc01deaf-a84d-93d1-3fd1-c37130e0a61b	2021-05-19 17:09:53.427255	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.edit	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
6e8b0d7a-8f5c-0810-06e1-24975027eaf8	2021-05-19 17:09:53.429785	cuba	1	\N	\N	\N	\N	10	report$ReportValueFormat.edit	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
1f0055fb-c118-d628-217d-9c591bbb215a	2021-05-19 17:09:53.435022	cuba	1	\N	\N	\N	\N	10	report$ReportTemplate.edit	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
cee2d634-5ecd-25bf-94a0-ad817d2cb132	2021-05-19 17:09:53.439305	cuba	1	\N	\N	\N	\N	10	report$Report.importDialog	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
f09d28a4-d378-f3d3-ff33-12eaa96f97bc	2021-05-19 17:09:53.441415	cuba	1	\N	\N	\N	\N	10	report$Report.edit	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
f2c76d1c-0cd4-2160-64ba-7b03a099a07b	2021-05-19 17:09:53.443722	cuba	1	\N	\N	\N	\N	10	report$ReportGroup.browse	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
653fcb7a-e8bf-b6a9-c9fd-cab5a70ee8b6	2021-05-19 17:09:53.503275	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
89adaaac-e2cc-a325-83bc-962a49e0f55f	2021-05-19 17:09:53.506951	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
22ee808e-9a70-3d43-a444-824edf3d0a79	2021-05-19 17:09:53.511221	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
9467e3f6-dff4-655a-b05c-d618d5f77ece	2021-05-19 17:09:53.513592	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
59d7ef2b-331c-f335-7000-968369b1fa54	2021-05-19 17:09:53.517154	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
90c07081-d447-f8cc-074e-645a562126d1	2021-05-19 17:09:53.519246	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
afe3e3f1-6f91-a699-2de3-e3ba1943fc9f	2021-05-19 17:09:53.522158	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
3d8d76e5-6e63-a221-dc9d-b752a6d31ce7	2021-05-19 17:09:53.5239	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
5ad476b4-70dd-f2d1-472b-6c45a630a941	2021-05-19 17:09:53.529514	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
8e5ab5d3-274b-0ee0-e80e-61ab21b08925	2021-05-19 17:09:53.533275	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
c04f41f7-f2a1-caa1-5724-6d4462539396	2021-05-19 17:09:53.542115	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
b2133a3d-97fd-1926-7fcc-d2770ee58381	2021-05-19 17:09:53.549493	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
82cdaed6-681e-9f45-dbcd-ab124b986c86	2021-05-19 17:09:53.555878	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
6b6adb1c-ff05-20ca-1c00-08594d7e5700	2021-05-19 17:09:53.562919	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
e26d7d27-95a9-fba2-180b-21c3242e95ec	2021-05-19 17:09:53.572074	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
c7f76233-bdaf-4700-6713-9e2f0a7ddb36	2021-05-19 17:09:53.581832	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
a3418fda-15ad-2127-58dd-c9436955a043	2021-05-19 17:09:53.586009	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
15bc88f0-03c0-e0e1-d9a7-add1b6ec6fc3	2021-05-19 17:09:53.589789	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
1d0581d5-7152-8a66-347b-1e7e6e15860a	2021-05-19 17:09:53.593084	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
0c72f46b-09ab-fae7-a675-00f4a4c85825	2021-05-19 17:09:53.600434	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
ada364ed-2726-bef6-859d-c0c2b1888d04	2021-05-19 17:09:53.609878	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
50ab6552-8d35-1468-06f2-6e70bb6397e7	2021-05-19 17:09:53.618931	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
47dd1e0c-5570-7566-02ef-81ef039acff7	2021-05-19 17:09:53.62589	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
c32cb0e2-c5ab-814e-e7b8-f51567e20ef8	2021-05-19 17:09:53.63291	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
019db5a7-ef8c-bc50-0318-7a704510816b	2021-05-19 17:09:53.641978	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
a312b3a2-ad71-ca5c-2796-cb63ea3d9202	2021-05-19 17:09:53.651936	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
943524b5-6fbc-26bd-3a3c-15cfb6c155cf	2021-05-19 17:09:53.661517	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
0f0322cf-f408-ab31-9bbf-c738307d03e7	2021-05-19 17:09:53.668942	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
fc2a04d9-2a1f-c3e1-4a92-90d1fb5c485c	2021-05-19 17:09:53.670903	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
e319139f-6844-7ca7-32ba-46ff41109ada	2021-05-19 17:09:53.680293	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
3a819a12-eb55-c116-99c6-94e1c25d329d	2021-05-19 17:09:53.682029	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
70fba5a1-9f54-48fc-f88a-eb8bd9061d4f	2021-05-19 17:09:53.683844	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
8c4eef60-b63c-b089-6982-571ded3254d0	2021-05-19 17:09:53.685454	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
56e932be-975c-e60d-bead-672f954ad16b	2021-05-19 17:09:53.692309	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
91685cf3-e3be-ce98-38d7-a18f7d6dd42f	2021-05-19 17:09:53.699252	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
87891596-a1dd-e37f-dfc8-20f4e5d78715	2021-05-19 17:09:53.703241	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
5c195a8b-5f73-41d1-6b04-5b4c49a08f99	2021-05-19 17:09:53.710231	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
ad21727e-b8ca-70a9-f7f9-75d9a1d72bdd	2021-05-19 17:09:53.716371	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
0c69a8f9-d249-d38d-4715-a7aad4d95a3c	2021-05-19 17:09:53.719802	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
80299acf-0437-6893-93f5-a036e533e5cc	2021-05-19 17:09:53.721663	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
3421e0e0-ee58-5919-81eb-c1fd10330dc3	2021-05-19 17:09:53.723171	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
9859009d-9eb4-1e0a-34eb-15c18f6ce8ed	2021-05-19 17:09:53.724567	cuba	1	\N	\N	\N	\N	20	report$DataSet:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
187282af-f7e7-3b09-ba9b-3bc64dbe6f75	2021-05-19 17:09:53.726397	cuba	1	\N	\N	\N	\N	20	report$DataSet:create	1	6840bfa4-0007-4208-a427-8315dfb0384e
0d71fe0b-d245-0045-9737-6f759b056e0e	2021-05-19 17:09:53.728613	cuba	1	\N	\N	\N	\N	20	report$DataSet:update	1	6840bfa4-0007-4208-a427-8315dfb0384e
9c4fea2a-92b5-0c1d-1a2d-d0d5bdbd7e5a	2021-05-19 17:09:53.730175	cuba	1	\N	\N	\N	\N	20	report$DataSet:delete	1	6840bfa4-0007-4208-a427-8315dfb0384e
e7c49c5e-9e41-1fba-ec06-c6b1d60f03c7	2021-05-19 17:09:53.731994	cuba	1	\N	\N	\N	\N	20	report$Report:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
48fba6a1-d21b-bf7c-94b6-08dfa1df8e51	2021-05-19 17:09:53.733388	cuba	1	\N	\N	\N	\N	20	report$ReportInputParameter:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
3cc46949-31ac-80b2-f593-69a01e09e0bd	2021-05-19 17:09:53.734902	cuba	1	\N	\N	\N	\N	20	report$ReportGroup:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
aa1fb811-d29b-3b1a-5638-a02c01d7bfd5	2021-05-19 17:09:53.738458	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
788a928e-5f10-d346-a6b5-b33522944c71	2021-05-19 17:09:53.740055	cuba	1	\N	\N	\N	\N	20	report$PivotTableAggregation:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
9cd24dd6-68b5-3723-c963-e002c4fff37d	2021-05-19 17:09:53.745398	cuba	1	\N	\N	\N	\N	20	report$AbstractChartDescription:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
a7696592-84fe-fba4-ac7a-49b2cfff48f8	2021-05-19 17:09:53.751821	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegion:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
1236fd11-d56b-e87e-ae15-bda70cca7e1e	2021-05-19 17:09:53.760264	cuba	1	\N	\N	\N	\N	20	report$PieChartDescriptor:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
ccc43aeb-9985-3cc2-8b98-3f5ad0a2031a	2021-05-19 17:09:53.766074	cuba	1	\N	\N	\N	\N	20	report$ReportValueFormat:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
f37bb52f-8086-aa18-d27c-84f2f54324c9	2021-05-19 17:09:53.77289	cuba	1	\N	\N	\N	\N	20	report$ChartSeries:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
0cfddb32-eb05-4758-5bd4-669164c80114	2021-05-19 17:09:53.781747	cuba	1	\N	\N	\N	\N	20	report$SerialChartDescription:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
6537ec32-0f0d-a103-4b34-46afb0d4c01c	2021-05-19 17:09:53.792057	cuba	1	\N	\N	\N	\N	20	report$WizardReportData:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
cb8aa62b-3ed9-c7a0-e80c-8bbe3b90463f	2021-05-19 17:09:53.81206	cuba	1	\N	\N	\N	\N	20	report$WizardReportRegionProperty:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
75a9881f-b059-f3e1-b7a5-3bc560dec1b1	2021-05-19 17:09:53.822116	cuba	1	\N	\N	\N	\N	20	report$ReportTemplate:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
32aa36bb-f6d3-070b-1484-fbf484fcdf48	2021-05-19 17:09:53.831101	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
0729b7b0-3308-1cc3-f39f-59002e07156d	2021-05-19 17:09:53.839021	cuba	1	\N	\N	\N	\N	20	report$DataSet:read	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
23ced25f-87dc-d99c-c7ec-1458e7e94321	2021-05-19 17:09:53.848944	cuba	1	\N	\N	\N	\N	10	report$Report.run	1	6840bfa4-0007-4208-a427-8315dfb0384e
01039c81-936b-bf4c-419c-dcfdac1eed9a	2021-05-19 17:09:53.856201	cuba	1	\N	\N	\N	\N	10	report$Report.browse	1	6840bfa4-0007-4208-a427-8315dfb0384e
98549d02-5654-7a84-4e4b-cbf3e07dc061	2021-05-19 17:09:53.862869	cuba	1	\N	\N	\N	\N	10	report$showChart	1	6840bfa4-0007-4208-a427-8315dfb0384e
b42dffae-ce99-664b-beb0-532e1a069ae5	2021-05-19 17:09:53.872095	cuba	1	\N	\N	\N	\N	10	report$showReportTable	1	6840bfa4-0007-4208-a427-8315dfb0384e
56233ced-51a6-c04e-0c0e-dcc6fd8d6b6c	2021-05-19 17:09:53.88299	cuba	1	\N	\N	\N	\N	10	report$showPivotTable	1	6840bfa4-0007-4208-a427-8315dfb0384e
b422b20c-6db3-aa6c-206b-b57fbf81247d	2021-05-19 17:09:53.889291	cuba	1	\N	\N	\N	\N	10	report$Report.wizard	1	6840bfa4-0007-4208-a427-8315dfb0384e
911b06d5-ad14-06b4-388b-b9afd16280f7	2021-05-19 17:09:53.896049	cuba	1	\N	\N	\N	\N	10	report$Report.regionEditor	1	6840bfa4-0007-4208-a427-8315dfb0384e
3e3a2b5d-2bfa-7a79-81fc-563fc851b82a	2021-05-19 17:09:53.905374	cuba	1	\N	\N	\N	\N	10	commonLookup	1	6840bfa4-0007-4208-a427-8315dfb0384e
17fe5364-c608-71c0-5713-e11ec804dfd8	2021-05-19 17:09:53.91281	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.browse	1	6840bfa4-0007-4208-a427-8315dfb0384e
f047dea9-801e-6a74-b0e9-2aea7bd97ca4	2021-05-19 17:09:53.922044	cuba	1	\N	\N	\N	\N	10	report$ReportInputParameter.edit	1	6840bfa4-0007-4208-a427-8315dfb0384e
3c425688-6aed-5734-acf0-e62deaf65ed4	2021-05-19 17:09:53.932304	cuba	1	\N	\N	\N	\N	10	report$ReportValueFormat.edit	1	6840bfa4-0007-4208-a427-8315dfb0384e
e46391d3-b259-41c0-0860-bcfdc7c2eaaf	2021-05-19 17:09:53.94195	cuba	1	\N	\N	\N	\N	10	report$ReportTemplate.edit	1	6840bfa4-0007-4208-a427-8315dfb0384e
b791cf20-0fe9-1433-d5c1-599a77a37662	2021-05-19 17:09:53.949607	cuba	1	\N	\N	\N	\N	10	report$Report.importDialog	1	6840bfa4-0007-4208-a427-8315dfb0384e
c096d4a3-da72-326b-f606-84b73e03ff17	2021-05-19 17:09:53.952513	cuba	1	\N	\N	\N	\N	10	report$Report.edit	1	6840bfa4-0007-4208-a427-8315dfb0384e
07f77be3-0f64-f847-bd04-35b72030ad10	2021-05-19 17:09:53.955002	cuba	1	\N	\N	\N	\N	10	report$ReportGroup.browse	1	6840bfa4-0007-4208-a427-8315dfb0384e
45c0c7cd-793c-96eb-9db5-2e631802d049	2021-05-19 17:09:53.957501	cuba	1	\N	\N	\N	\N	10	report$inputParameters	1	6840bfa4-0007-4208-a427-8315dfb0384e
55259d61-349a-8f24-92fe-ec986499fb9d	2021-05-19 17:09:53.962627	cuba	1	\N	\N	\N	\N	10	sec$Role.lookup	1	6840bfa4-0007-4208-a427-8315dfb0384e
d5b2e579-b163-b632-59d4-3180330eb01b	2021-05-19 17:09:53.97005	cuba	1	\N	\N	\N	\N	10	sec$Role.browse	1	6840bfa4-0007-4208-a427-8315dfb0384e
e1d4e2b9-28fa-ca07-3ccc-4e5e28909ae2	2021-05-19 17:09:53.979098	cuba	1	\N	\N	\N	\N	20	sec$Role:read	1	6840bfa4-0007-4208-a427-8315dfb0384e
91e37158-8efd-6c87-4eb0-36a5c3d4c415	2021-05-19 17:09:53.989078	cuba	1	\N	\N	\N	\N	10	report$Report.run	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
8d2fb05c-9458-d8e1-47c2-735b77b9feba	2021-05-19 17:09:53.995993	cuba	1	\N	\N	\N	\N	10	report$inputParameters	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
1286d961-c9de-5b1f-47de-23640b07f5e3	2021-05-19 17:09:54.003174	cuba	1	\N	\N	\N	\N	10	commonLookup	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
b13220c5-d596-5a45-d952-4ddc5f87417f	2021-05-19 17:09:54.01013	cuba	1	\N	\N	\N	\N	10	report$showChart	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
e90f3e60-b6d5-5ee9-c030-823df2984dfb	2021-05-19 17:09:54.019149	cuba	1	\N	\N	\N	\N	10	report$showReportTable	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
3d825662-928b-9891-24b5-0e448e94d1d5	2021-05-19 17:09:54.023995	cuba	1	\N	\N	\N	\N	10	report$showPivotTable	1	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
17b40b03-b137-561d-705e-5c674035cc1e	2021-05-19 17:09:53.189106	cuba	1	\N	\N	\N	\N	20	report$BandDefinition:read	0	16340150-6049-4d32-9d17-4770eb8b6b7e
70830729-60fe-b902-0410-8ddefd59fed6	2021-05-19 17:09:53.2008	cuba	1	\N	\N	\N	\N	20	report$DataSet:delete	0	16340150-6049-4d32-9d17-4770eb8b6b7e
d11875a3-0740-4933-3335-5530affcee3c	2021-05-19 17:09:53.270439	cuba	1	\N	\N	\N	\N	20	report$ReportScreen:update	0	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
\.


--
-- Data for Name: sec_presentation; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_presentation (id, create_ts, created_by, update_ts, updated_by, component, name, xml, user_id, is_auto_save) FROM stdin;
\.


--
-- Data for Name: sec_remember_me; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_remember_me (id, create_ts, created_by, version, user_id, token) FROM stdin;
6836e4e2-2ac3-5903-c5a8-b6aa61afe95a	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	ODNZBWavRqCWM1iWey4vPeCmbCtPA3ag
9baad3d8-b38d-73d0-1a6e-acc7bb27eae2	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	4kzcsBwiGEKo3aTY7p06NLXuUFSVS1vP
a2d6e657-8201-e725-b276-6b3875749fbe	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	X4D86qZOaxnllZ8a21cCUWgOFGmrqWrv
abd8876b-0a0c-d0b2-6c6a-9995b7bf3e40	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	52xZv0S48aeIS5vPOM9pZ9sdDINDHnmp
636552a0-358a-c2d8-564e-71288336252d	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	WmMeMu4uK2jQq10PFjFiXrRbZWKgxBAT
3cabf1a9-2e06-b247-5312-9a406a08bf6d	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	LLtahimTGGjnikigbVLRX2BIojHDWVyx
dde19440-ac53-6f6a-dc7a-a8d1e07d93a6	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	e2yxNPZW4A47M2oI1c7l9006z5oWC5xQ
d799e3b3-e361-c085-25c2-23e0fc9d0fba	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	Ns1Kjc6508WmPcFFjfKSt7EGBV9Y1sR5
7d3d46bf-15b7-5883-fa0a-6f3810c8f777	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	1LWl0WZ6X9cN3fovtafCbSzya0Mx9OmL
d4e2bff3-7179-390e-327d-98c9db6dd2cb	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	vhYE0KMGeneLOcsFGbGJkXAB3uzIHXRN
d3cf8ee6-e2ff-b934-a514-e16692b2d684	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	C40AJrMEjUCdzsZTJ0lTbtYHsi9jZsAd
99046d64-762c-409f-4cec-f04629818dec	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	yCFGIre9YOxtnEjwzhocAoAdC2NN0buE
d02401bc-25e4-471a-de8f-b9e0f4be6f56	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	u5bv9gvfZxQF3M5PXkAW7pIIEnRaa3b0
0b5183ec-c270-8cdb-aa52-9b03685e3dd8	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	5FaS1pFSqRYhN4mNUH8UrFLzUJecHfDj
8e27af7b-f3ff-52cc-45bc-d3d00d15c955	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	5pPgnCsCbAc6bmiA91lZs57u5w5Tz8bk
113f42c7-a594-d9d7-d093-ebf2a6b51050	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	8odwnxMCos5A3ZiQkiBwVmDMBT2xilLC
cfe32097-84dc-c6a7-3cc3-c8f9893862d5	\N	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	4gkuGfb0cbsSDwh8fsiuz6yRXLdAchDn
e62c2547-865e-c0b0-876b-b172a76fef15	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	shHYHZq7bJBiUwHZms61YrxlOJVdH6h2
eb55df33-973f-bd01-bf79-30f1227bbe18	\N	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	6cJMqdCwaV2oGlX2LuhfqtFmyu1UT1BU
8c86f63b-6f61-5fd1-2ece-10f47616d891	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	YEp3SXjJ8Sp817xvZnsT5isKbOEKjG5I
4940e6f9-be0a-673f-cc89-3c5a54bd15da	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	HyhsE5IqxhWLPzC6X261NOAX7nE5uGaJ
4a701a69-2d9f-0630-f602-41d5a2fe9ac5	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	iJQWP7J2ijd7P7GJ327uRuZhpofL5Dsh
57c24cdc-9eca-cb91-03c1-0216dd6762a6	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	czqVERLbLHXwuWs4JyKSIy1vSb6fVwJN
ae5c4808-3e3e-9f93-4558-7371cbe98136	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	1KpyLInCP8BJt4RPa9Mh9pizWSCorxuK
75df1e20-4998-ca4f-e6b1-54364e979cb6	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	iVXtqdXgF8A4hJX1HWN0QCTkxsaPsaV3
bd394fa8-9f28-fbe9-90b9-5b466a096e67	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	XwVKXPAUIXbVoegRkv99ZyE3Npg07ZaQ
39cfcd5b-b5de-ca42-163e-e1bce2518984	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	YKQrCElxTn6AAT3dJ9mRvEUf4iPgsXrW
7ca32a5a-0b05-756c-6341-68e91c683299	\N	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	NxyfiPNtU56XuLL1YL3kMCm57j6G8C8Q
31fce619-43cf-09d7-b91c-ea0ea450d91a	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	mhnUI2KZbIzuWdmVZX53FvnwKibyPNOD
6874459d-69a0-c70f-ac22-25307e5bf7ff	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	6FyLnNnXDd4cpQOnli7PbJtHmnIF54ed
2a55b7aa-e63f-cf8f-3c5e-6333add492d7	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	zXgmwOKzfgvReViJWuuqV7lFm1zYiI2L
61bb6b0e-7ef1-15e8-8bb6-995bd2ce428e	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	Me9pYZXe1Bw3UQTlkQu0qY6e5JeC008D
18e90446-14a0-ef98-7aaf-482e5ce10691	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	fwPjtrjzUGXwwPiXcwKnwc9vnq8TawwS
a280fb46-0bd3-a348-d48f-8789b0ad336c	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	pnrjqZ7NaoIvq4N9MeH3ct9jjT26MBV7
205dd6e9-b54b-d8c8-8106-0d43882cea58	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	YV6yLOF7ggVHWjKaMiLkBgpjS2yBYqPT
643af8f1-eb6c-1dd4-ea04-bcf5d938f09c	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	k35fF9H0SEp88ZhTZ8pwvW56EHqmrJ1X
e5369822-f57a-a832-b441-3c085f2040b6	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	mC2Pj9f7eRN6y2cYHz7dt3wv5gXbZs1v
3e6a54e5-748f-c2a0-8828-e970ea96d283	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	Q4MkDqw4TI9dGgUHhdASo8Q66KU2GGXO
e3887605-0b9b-869e-9436-c6bdf1651c2b	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	Guz7nLO4rLvFassEA7bekVYzZxZudxlb
b498e504-5759-be81-de84-28ea9a31e043	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	gdHO9o0ATRbJ3xO6D16V67IcnrSEXCiM
17f2f833-a056-f277-ab72-d14a1ae78a98	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	TxW9qQOJJ96YEn2zpd8BwnXooRW04GcO
4719a067-9621-1528-9dd7-6840c97ce512	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	B6QTuURnCUianR1UnmYyiEUTGkAb2Rae
bec6f5c8-909f-eabf-5872-7f486383c7ce	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	hSNOcLy0Z8H23DnNlYGog05hDJB8eq77
d4686545-7bf7-5844-f137-69886ad4807f	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	G53k1ETYkBSYnVCnFoL4xMr3fXVB2wMH
71c6064e-c3eb-5e7a-bd71-9d7ffddcadbf	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	zumVJfHSsFaLSdBOswqfyu6sP8DGFvIc
0c992be7-8205-6112-00fd-bdd9ad34d89b	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	eEv6w8DrcnVg5SOcX4rr9LdZLAoMY39z
63aa0d7c-1394-e9ec-cb94-9bce8d35bed0	\N	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	QrMmOYJxks1GbTCgXLjvYXc7NQ3yedpj
ac8e008a-d3f5-8656-c8ea-3a7533e9e3c6	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	sXHwXZGb0lTW6yKvK3i07wCFtoZ3pgti
ccd60eaa-a6ea-1249-2506-b147bc1e1ba6	\N	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	v4qw28FRL59OKwxsbqRLM9P94FSZsWwa
c0ef9ded-192f-6222-3334-23c6edd0ba67	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	WWHGozroC3WKm7j9LScNmGWqx5OTpV71
79df2133-926f-9492-e5a4-c65cc6a66753	\N	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	29RtMEmxUl9Y3g3g7BHzoXRMtJZJIxaP
26d0bbdc-ed21-23f1-b6af-8cf2bb967d13	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	TSkrpYzk8fDy1m9LdNMT1gVo7hzLbvCm
b23b2d9f-ac4b-0819-1737-c9b047272723	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	2IZGYwGhyLW8iLlRgNp7kp5FwjbGMMJm
47a596c0-fd01-215a-6b2a-e86bdbf54397	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	lOvesPYNp2ZbZVmxX9ceTfitPvWKiCf6
0792bd27-3d95-40b2-102a-a42d1ea30bb9	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	XQhoXWt2uyhgVrQloQnd95wymvvpovif
d1023ad3-f646-b1bc-702b-70e49bc70239	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	2kNpToRgtGSYeaSTRRpNULhsNlTFpiVJ
a8698a09-fd7f-5703-06d4-46785c170bb2	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	OtqHmP8tNSgeyJ7bW7r6QUUaVEugPbom
2edc4c82-d0b2-6a49-e2e3-20c77f089234	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	NTyAcXqcItzJ2sI7vvtHnGbnWK6Qb58U
c3eab578-3b5e-62f9-2828-d10836afe038	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	vp6sn4l5vTZ0Ky9witFRIBoI59Fi52lx
8e2d3cc5-d1cc-577e-0ce9-be4bb630f055	\N	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	9CKlwv2CXaOsfj2MQJiAtzLXJrdfGUr3
67e91bd8-98f2-8524-1428-8dadbc3898f4	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	LgqLPYLDh83q41EokXIkhsVwWpwxXckA
bf0af780-d682-0fcb-b7cd-9d3431fde9a8	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	P73Q2xQOrNw042KzhddWZl3pMDCcMRFu
dfeb4c8c-051d-8c5d-bff2-71353e4e78e6	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	qWWnxGzB7ZUNAJi9T1ErNacAW5QAAMi6
05cecb95-9543-0d7c-2dd9-3fcee2c96e35	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	sO9gWjLh3UcN0uLePgg0G9ILwem9R9QQ
3c4d2c43-5d85-9a7c-d317-511c534f0540	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	IA34vGAjY3kc5bv9hd1kIxqKrP3Z9bB5
a68c76d4-141c-c510-ba74-5383af30f86c	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	5hvbbCjDjXSfyvG4LER5GIwd1atH8bR4
93fe04fd-ec32-cc75-7250-5962aabfc7a2	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	5VSRiFmfx2GJNqKbXdGDsMaoLI2El5Uq
4d8512ea-082d-8846-5314-cfa33b0245ef	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	k2Gsht3ww4WmahXd92pF305WOTAVMkGf
ad63e9e2-03cd-be67-fa3e-4fd51282fddb	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	h1OzR7ykjkZ0ZgsOn1hljwP9dsMM5Rea
03482561-0c67-fea4-148c-e98a5749954b	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	BWnTIHTbl9XFLJNBdVVfyS7RqxiFJPDA
bf5ba458-5eca-4dcc-837f-fc8b119811ee	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	mNaAshO10JPtfAyFpRnQE4IWGQTUNDUB
2cc9c2d7-b5c5-4e1e-7b8f-00acb095b838	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	1d52wQDmgzwdFxhzc3T4Lqlyj03SAccY
91d8c669-3074-3d7b-7364-a569a2a6087c	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	856NoUUnVwIbf6YNtV8RoR50ROf4HkKP
7bb69333-8fb8-33b4-00b8-0f020a4f0228	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	aIbUQLvCGlzxv32cqxh8AiCLjjFK0QHK
7c4fde59-4b26-e955-3213-45afbcf0c6ec	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	Zq2MO2mRA1ctohpo4mWd5haFAifcozRc
6a4e9303-8d88-11c1-fa92-0533b104872f	\N	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	qCt2OxmCGoO6eKTUwYROmDc6G5l1YIqY
ce79a441-bbf5-d208-8d0a-cd32f82af047	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	AxE1gMmKXPWAL3rIkrHAwq0ec73Xw5qH
06711abb-8dd9-a498-9f8b-21e495305080	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	OMQxGo0fyDaZfyjbM5sFsmJLeocBWUVG
9c3a3e0b-a9ca-7fc6-688d-b61503862e14	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	wV92AqlKRYPEbv1ESJfNBtTgj2Hz1UM4
8445b0f2-c322-f1cc-6891-0a88ca7fa232	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	2WapEDAr4vG0NjM5byp17bgXkvXnAEJ9
6209092d-a09c-665b-45fd-e59e5a00bb0a	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	pO8vEkt0XBeV2MHUOxEWZZOC91SanzVA
688e59dc-fb14-320b-a15f-ed2ece6137d6	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	paZzfkSHmjbWiQMp5MbtjC4z70ovKFmS
6b43ea3b-1a36-9c8c-1868-efa16d966629	\N	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	mDKUllnf2QnHjvu91i7bhhKukXGJ9Cc5
9cf00b08-d13e-51ce-603a-ea6054b9724b	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	M1ByVfmv9Qo1JtyXls1qEwqNzrmRkYrG
3d904260-afd8-a5e8-48d7-7c8b161979d9	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	QCAhGxbSV9OmBaabyjgZ2NoWaymPo0gZ
ccb38efd-833a-68a2-1518-261f978eb9bd	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	6yWq4uryfwtipKdIp5LGDVQ45EZF4Gf5
514cf058-4aba-28bf-6ca8-afc1a3688d1c	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	a0rCn0B0BTwYec4YEcx8gw8iaxwyATjC
bff51968-b64b-4bb9-2c5a-5b373c058349	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	7ooysr1qpDODiHrAJo2v99xdJsgwqy1n
32295080-1b3d-7180-f060-707da27b8374	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	Hun858GWAy2vpK8laANa7biihari7QOp
78a34b14-9063-3f25-550e-6b8746cad04a	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	N9jNjDlnLxmjuQ8IjRw9wh7rfMzUgLBW
d36c3f92-b8fa-be84-b7f8-44003489a8b3	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	heFTMb3cjld0EwwHVrdk4AVYXhsb4ogd
b692ab63-bbfa-6b93-1014-814319eef522	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	f1tMk5dmDHczvdmn6NZ9sxBWiTU0Vvmz
fb00e6a4-5d63-0309-695e-2804dca3ff6e	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	3n4LHSfrBbXTrx8frffQdN5dyXZbMcDd
e2dc8ccf-b705-8ee8-dec8-61e628030191	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	3j2U94twBBn5v9an4ryQbCKetP3Z3iQR
1052f83a-2c7d-841b-0b36-24f206c4574a	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	KO84JrZ4P8Z1ZYXmxUX9ToZmeQPBnYGf
1958509c-3e3a-4a9b-2161-775175164a3d	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	shL9hjrayPpWCYaG6QkyIyHoRNrlYBji
8a6477b4-b3de-a82f-a73e-942b43ff87f7	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	wEKeZ6Er4b0txA1yYrzul2V4jgVsBkt8
c5831f6b-c98a-ae24-2e3e-e9f8e4159a9f	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	aPPpbFTveXaxhuWM0KZ2MxbO2gOhQoUN
bfcc2da7-38aa-33e9-cb2c-ba2fd35b8dd4	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	6l4QdxMrVViS4FMr4Wjmm998scklizxB
52dec1c7-1b3e-6b8e-d3b1-be03b08b82bd	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	VLIdbVNzdulz8xhTuZ4hzr3xYPjXZFqo
23cbf514-6892-6efc-c215-d4838a7846bf	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	kDgsG1YdWWuY2p1e0MepEiHul2Mi8xOQ
eee71016-22d1-8b70-a31d-7bb27d59845a	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	MconN4DzZtEyZOD5Vf9m8hTlP7lrz6m6
3f9192da-0c84-be6f-0ed1-1c506f8f074a	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	RrYDzxo27woKbZ5RC7wJVuHBD6FRWbdT
004e8ff8-bdea-02dc-0548-3746d09a8cd1	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	b5bzLyxyK8jV1Vuv6FyMnV6qfOyxDHlk
\.


--
-- Data for Name: sec_role; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_role (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, name, loc_name, description, is_default_role, role_type) FROM stdin;
0c018061-b26f-4de2-a5be-dff348347f93	2021-05-19 17:09:48.330931	\N	0	\N	\N	\N	\N	Administrators	\N	\N	\N	10
cd541dd4-eeb7-cd5b-847e-d32236552fa9	2021-05-19 17:09:48.333913	\N	0	\N	\N	\N	\N	Anonymous	\N	\N	\N	30
21e8bd11-b435-48ab-a0a2-3200fdcf418c	2021-05-19 17:09:52.260555	admin	1	2021-05-19 17:09:52.260555	\N	\N	\N	Auto	Автоматический пользователь	Роль для выполнения автоматических задач	f	0
fcf9d6e7-135b-26b5-89be-2e75d24504af	2021-05-19 17:09:52.264319	admin	1	2021-05-19 17:09:52.264319	\N	\N	\N	SimpleUser	Простой пользователь	Запрещающая роль сотрудника	t	30
41be28fa-7439-0172-f8c9-c59a1381f65c	2021-05-19 17:09:52.268636	admin	1	2021-05-19 17:09:52.268636	\N	\N	\N	Reader	Читатель	Видит пакеты и может участвовать в обсуждениях	t	0
6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f	2021-05-19 17:09:52.283113	admin	1	2021-05-19 17:09:52.283113	\N	\N	\N	Signer	Подписант	Подписывает пакеты	f	0
042e9907-9b40-425d-8148-d72bd93b2198	2021-05-19 17:09:52.285982	admin	1	2021-05-19 17:09:52.285982	\N	\N	\N	Accountant	Бухгалтер	Валидирует пакеты	f	0
05f697fe-040b-47a3-bdc1-8bc34356e7c3	2021-05-19 17:09:52.287392	admin	1	2021-05-19 17:09:52.287392	\N	\N	\N	Archivist	Архивариус	Архивирует пакеты	f	0
2f66bcac-69dc-4471-9c1f-8db0aedcb2fb	2021-05-19 17:09:52.288791	admin	1	2021-05-19 17:09:52.288791	\N	\N	\N	TaxSpecialist	Налоговый специалист	Проводит налоговый контроль	f	0
03502aad-393a-46c1-875d-5dc047efa99b	2021-05-19 17:09:52.290991	admin	1	2021-05-19 17:09:52.290991	\N	\N	\N	BusinessAdmin	Бизнес-администратор	Обеспечивает бизнес-функциональность	f	0
08699644-95ec-4800-81a4-a37769d71b99	2021-05-19 17:09:52.292809	admin	1	2021-05-19 17:09:52.292809	\N	\N	\N	ProcessAdmin	Администратор процессов	Обеспечивает юизнес-процессы	f	0
2273d84a-00f9-4bd2-9dac-401a819a2267	2021-05-19 17:09:52.294309	admin	1	2021-05-19 17:09:52.294309	\N	\N	\N	SecurityAdmin	Администратор безопасности	Управляет правами к данным	f	0
ec987b5a-a658-4aaa-ab0b-80269c9c5366	2021-05-19 17:09:52.295975	admin	1	2021-05-19 17:09:52.295975	\N	\N	\N	PackageControl	Работа с пакетами	Даёт возможность работать с пакетами	f	0
1b47b33c-4a34-4125-93dd-8ae4519246a8	2021-05-19 17:09:52.297521	admin	1	2021-05-19 17:09:52.297521	\N	\N	\N	BasketReader	Участник обработки запросов	Видит корзины	f	0
c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64	2021-05-19 17:09:52.298958	admin	1	2021-05-19 17:09:52.298958	\N	\N	\N	BasketInitiator	Инициатор корзины	Может создавать корзины	f	0
b62fadeb-d4d4-43ad-a52a-48c5439ff0e2	2021-05-19 17:09:52.300345	admin	1	2021-05-19 17:09:52.300345	\N	\N	\N	BasketDispatcher	Диспетчер	Ведет все работы с корзиной	f	0
a2bb8763-4f0f-4bf7-be49-1a41f33a8aaf	2021-05-19 17:09:52.301742	admin	1	2021-05-19 17:09:52.301742	\N	\N	\N	BasketWorkGroup	Член рабочей группы	Может добавлять и удалять (свои) вложения корзины	f	0
e9e022b5-6d1a-41ed-a004-f9ace2a0fb79	2021-05-19 17:09:52.303194	admin	1	2021-05-19 17:09:52.303194	\N	\N	\N	ScanHubWorker	Оператор скан-хаба	Возможность использовать АРМ скан-хаб	f	0
321ed530-f9dd-4fbb-aadf-20ed4aa6108b	2021-05-19 17:09:52.304698	admin	1	2021-05-19 17:09:52.304698	\N	\N	\N	AttributeAssignment	Массовое назначение атрибутов	Возможность использования массовой замены или назначения атрибутов пакетам	f	0
6840bfa4-0007-4208-a427-8315dfb0384e	2021-05-19 17:09:52.306276	admin	1	2021-05-19 17:09:52.306276	\N	\N	\N	ReportAdmin	Администратор отчетов	Может создавать и настраивать отчеты	f	0
5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9	2021-05-19 17:09:52.307641	admin	1	2021-05-19 17:09:52.307641	\N	\N	\N	ReportAccess	Работа с отчетами	Может запускать отчеты	f	0
16340150-6049-4d32-9d17-4770eb8b6b7e	2021-05-19 17:09:52.275337	admin	3	2021-05-20 10:58:09.637	admin	\N	\N	Initiator	Инициатор	Создаёт пакеты	f	0
\.


--
-- Data for Name: sec_screen_history; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_screen_history (id, create_ts, created_by, user_id, caption, url, entity_id, string_entity_id, int_entity_id, long_entity_id, substituted_user_id) FROM stdin;
7a24eab4-35b5-4a75-dbdf-311ef13c7363	2021-05-24 10:29:34.158	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279&params=item:sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	\N	\N	\N	\N
dc9c4ced-4a6e-86db-cdc3-c8389b2fc5a1	2021-05-24 11:10:05.885	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'turgenev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279&params=item:sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	\N	\N	\N	\N
57406ddf-83e3-9649-db49-47e2d973e51a	2021-05-24 11:10:39.484	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'turgenev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279&params=item:sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	\N	\N	\N	\N
f349296b-53af-63ff-805f-0a365ed31dd7	2021-05-24 11:11:33.796	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d&params=item:sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d	99f45003-a8b5-f733-ec33-717f492a0e0d	\N	\N	\N	\N
d345e24f-e578-bf90-c121-ff70400d4e5d	2021-05-24 11:12:41.247	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
5ea178aa-b1ae-b588-ab7e-96a83ddce747	2021-05-24 11:13:10.034	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
9b7da868-2784-0993-e121-192cf16da791	2021-05-24 11:13:45.851	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
454d7010-d5f9-640f-0f3a-6b439ea35bb3	2021-05-24 11:13:57.488	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
e6278817-5f35-d0a3-60c2-9053e4d91883	2021-05-24 11:14:42.964	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
56f911b6-b69f-e456-766b-f1c5cd16fd8a	2021-05-24 11:21:57.635	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
5e4d44e2-346f-9d56-6990-d121eae08d8f	2021-05-24 12:19:54.616	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
04a9f16e-eb19-d454-b10c-8628dfb7d063	2021-05-24 12:21:14.299	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
7e572757-dcae-bfdb-1979-e984102ae098	2021-05-24 12:22:29.278	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
ad28c194-4763-736c-f105-cad10072842c	2021-05-24 12:22:48.929	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
69b80e3d-56f4-a2bf-6c77-20505a8f0aed	2021-05-24 12:28:41.871	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
9b372cb2-e18c-5486-a897-f6bc24822b7c	2021-05-24 12:29:04.747	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
59ff6cb9-ccbf-f347-06a4-2e7cb0aca47c	2021-05-24 12:30:13.715	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
507362f4-48ff-1678-e40d-333b67dfe8c6	2021-05-24 12:30:33.313	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
c38e55bd-5128-1d6f-edfd-b69a4afe04de	2021-05-24 12:31:16.604	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
bc83d8b9-6137-cd16-6dbb-9713b203ca9e	2021-05-24 12:35:55.364	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'Accountant'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-042e9907-9b40-425d-8148-d72bd93b2198&params=item:sec$Role-042e9907-9b40-425d-8148-d72bd93b2198	042e9907-9b40-425d-8148-d72bd93b2198	\N	\N	\N	\N
b229afd7-a88c-73d5-72e8-76e4b7c9067d	2021-05-24 12:36:01.528	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
2e871e63-9847-403b-05af-397e8769339b	2021-05-24 12:40:19.536	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'turgenev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279&params=item:sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	\N	\N	\N	\N
9542d045-5a2d-2b58-f90c-a1a2c5e6c210	2021-05-24 12:40:55.271	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'turgenev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279&params=item:sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	\N	\N	\N	\N
ed752f54-37d2-1e33-6f31-fb39e2f7ce47	2021-05-24 13:02:20.679	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
d9aa4646-a7ae-7c4c-ffa5-3f49eb32f70e	2021-05-24 13:02:32.168	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
c7aa5b63-40ce-2095-17b6-ac1777987ad6	2021-05-24 13:02:35.049	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
0ef10a44-167b-392b-8182-207ec6ea9fd8	2021-05-24 13:09:30.883	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
4aed8316-5f2f-4b64-f202-586afb1a7baf	2021-05-24 13:09:44.114	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
b3a6f83e-2e16-bf5d-e51d-dfe3e33afdf2	2021-05-24 13:09:55.278	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
e3ac4bae-1264-7718-afae-46ba84ce7955	2021-05-24 13:11:26.489	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
7325594a-6767-7a35-5f92-5a116e3b0dac	2021-05-24 13:11:43.089	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
aa54d869-134b-c119-18e8-03de4bdd8e4f	2021-05-24 13:12:01.641	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
3708e8ce-446f-4ff5-e3f3-59e9d736812f	2021-05-24 13:17:41.364	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
4cffadea-ba9d-08fa-6f27-ccd0269f73e2	2021-05-24 13:18:10.723	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
34f4df87-7d26-3613-5a12-892da465ceb2	2021-05-24 13:29:15.725	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'annen'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d&params=item:sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d	99f45003-a8b5-f733-ec33-717f492a0e0d	\N	\N	\N	\N
cbbbc8d3-92c8-e368-fa04-d032d94d4d23	2021-05-24 18:41:49.955	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
a3c5da18-a0ea-a35c-d607-bafc302a6aa8	2021-05-24 13:11:32.403	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
0d2b3db1-34fd-c0aa-d24e-bf122f61aff0	2021-05-24 13:11:55.365	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
4d64b58b-4441-cb95-bc47-2ed0ceec4b90	2021-05-24 13:17:54.769	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
84e245f9-a3be-4c1d-3c16-dd7cae4b9b89	2021-05-24 13:26:45.326	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'fedorov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279&params=item:sec$User-7ab5b85e-e82a-8d7f-9287-2cb1062a6279	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	\N	\N	\N	\N
14a6a45c-d54a-558f-9108-2a0625da2247	2021-05-24 18:35:51.535	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'annen'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d&params=item:sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d	99f45003-a8b5-f733-ec33-717f492a0e0d	\N	\N	\N	\N
1b89be1d-8249-9487-95a7-a9dc85959bb8	2021-05-24 18:40:40.53	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
e6b0788f-c616-62f1-2b9b-8202e95e5818	2021-05-24 18:42:27.978	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
9f8b76d5-866a-4ee9-7d9b-f5bcfc5e9376	2021-05-24 18:43:01.53	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
01faba9a-7956-5619-90dc-f5558c80a0e1	2021-05-24 18:43:28.289	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
0b161aec-c7f5-db4b-fe35-c1841f45089e	2021-05-24 18:52:08.362	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
d282c83b-9d2d-f722-652f-2a3750243cfe	2021-05-25 11:30:20.452	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'Administrators'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-0c018061-b26f-4de2-a5be-dff348347f93&params=item:sec$Role-0c018061-b26f-4de2-a5be-dff348347f93	0c018061-b26f-4de2-a5be-dff348347f93	\N	\N	\N	\N
c6b852c9-193d-6461-c0b0-e4f65dcdf7ca	2021-05-25 11:30:31.808	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'ProcessAdmin'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-08699644-95ec-4800-81a4-a37769d71b99&params=item:sec$Role-08699644-95ec-4800-81a4-a37769d71b99	08699644-95ec-4800-81a4-a37769d71b99	\N	\N	\N	\N
66e492cb-e575-53d9-11ce-fec8268ee772	2021-05-25 11:30:37.918	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'SecurityAdmin'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-2273d84a-00f9-4bd2-9dac-401a819a2267&params=item:sec$Role-2273d84a-00f9-4bd2-9dac-401a819a2267	2273d84a-00f9-4bd2-9dac-401a819a2267	\N	\N	\N	\N
ef15c2e2-93ce-e8db-a3e5-b40ca2a9cf33	2021-05-25 11:31:03.299	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
911fb5b9-b518-bf30-939a-d81ad50ff56d	2021-05-25 11:45:14.968	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
b18b1ccc-fb77-255a-8ff4-62fcd9314c6a	2021-05-25 11:45:37.815	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
6182fc98-8d61-e78c-75d9-8b3a07b573f1	2021-05-25 11:52:19.784	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'BasketReader'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-1b47b33c-4a34-4125-93dd-8ae4519246a8&params=item:sec$Role-1b47b33c-4a34-4125-93dd-8ae4519246a8	1b47b33c-4a34-4125-93dd-8ae4519246a8	\N	\N	\N	\N
9bcd21cf-d592-1320-3a5e-da3a54322ef3	2021-05-25 11:52:41.807	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'BasketDispatcher'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-b62fadeb-d4d4-43ad-a52a-48c5439ff0e2&params=item:sec$Role-b62fadeb-d4d4-43ad-a52a-48c5439ff0e2	b62fadeb-d4d4-43ad-a52a-48c5439ff0e2	\N	\N	\N	\N
c286d9aa-6982-5b60-47ad-32d20bb017df	2021-05-25 11:52:53.559	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'BasketInitiator'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64&params=item:sec$Role-c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64	c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64	\N	\N	\N	\N
e88d66b0-559a-305a-d321-20720dc617de	2021-05-25 11:53:50.2	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'olegov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d&params=item:sec$User-99f45003-a8b5-f733-ec33-717f492a0e0d	99f45003-a8b5-f733-ec33-717f492a0e0d	\N	\N	\N	\N
635e25b6-5510-f35c-f94b-50b8625506b2	2021-05-25 11:53:55.826	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
ff7c2d95-a749-e560-4d95-c6fab287a91e	2021-05-25 12:19:57.705	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
b2b62fc0-6e7d-2682-9541-670b34a5aaf1	2021-05-25 12:31:02.13	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
99012b5c-919b-2211-047f-90399e3e6e24	2021-05-25 12:49:21.36	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-025b044b-3118-a272-35ef-869619f193e1&params=item:sec$User-025b044b-3118-a272-35ef-869619f193e1	025b044b-3118-a272-35ef-869619f193e1	\N	\N	\N	\N
9bfe2c81-5b1b-ba04-27e2-d0e5a38fa11c	2021-05-25 12:49:39.618	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'yakovlev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-025b044b-3118-a272-35ef-869619f193e1&params=item:sec$User-025b044b-3118-a272-35ef-869619f193e1	025b044b-3118-a272-35ef-869619f193e1	\N	\N	\N	\N
e054f626-1d48-fa81-7873-f6c21aabe6f2	2021-05-25 12:54:46.903	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'petrov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040&params=item:sec$User-6b4485d0-7457-285f-0fa2-911ade8cd040	6b4485d0-7457-285f-0fa2-911ade8cd040	\N	\N	\N	\N
ed49ba74-8ae1-457d-2fd1-f1355fb5a717	2021-05-25 13:14:18.449	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-0668cb56-bed5-3032-20bc-96779e763230&params=item:sec$User-0668cb56-bed5-3032-20bc-96779e763230	0668cb56-bed5-3032-20bc-96779e763230	\N	\N	\N	\N
15944ce6-19e6-5033-d65c-9f2b2faa86b0	2021-05-25 14:15:12.033	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'sidorov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-0668cb56-bed5-3032-20bc-96779e763230&params=item:sec$User-0668cb56-bed5-3032-20bc-96779e763230	0668cb56-bed5-3032-20bc-96779e763230	\N	\N	\N	\N
606cc4b2-2edd-cb65-e007-26b75af06dc0	2021-05-25 14:15:19.347	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'semenov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec&params=item:sec$User-b3c9058e-ac4d-258a-1173-b0dde3c42aec	b3c9058e-ac4d-258a-1173-b0dde3c42aec	\N	\N	\N	\N
4c287594-a396-9ce7-4d9e-1eb67923b808	2021-05-25 14:49:43.2	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'ivanov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3&params=item:sec$User-61580b7f-4803-3267-e46a-d62f7dde9ed3	61580b7f-4803-3267-e46a-d62f7dde9ed3	\N	\N	\N	\N
3ba3b78c-8f30-2aac-6353-07acb7a10494	2021-05-25 17:52:02.17	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'yakovlev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-025b044b-3118-a272-35ef-869619f193e1&params=item:sec$User-025b044b-3118-a272-35ef-869619f193e1	025b044b-3118-a272-35ef-869619f193e1	\N	\N	\N	\N
8620773a-b00f-287d-0260-fd2ab610994f	2021-05-25 18:53:36.253	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
8e74117c-8d35-c0c5-5ec5-a92a5d70e310	2021-05-26 09:05:32.391	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb&params=item:sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb	e1911add-6fd0-9e69-c655-6bc39fc06fdb	\N	\N	\N	\N
543aae51-44b1-d5a4-162a-ec3fbe7ecffc	2021-05-26 09:06:18.779	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'sergeev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb&params=item:sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb	e1911add-6fd0-9e69-c655-6bc39fc06fdb	\N	\N	\N	\N
dc5d3839-adb1-a51a-47bc-0bbb76ca18d3	2021-05-26 11:36:59.165	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'sergeev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb&params=item:sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb	e1911add-6fd0-9e69-c655-6bc39fc06fdb	\N	\N	\N	\N
aa8da0cf-6a7e-6bfe-c303-0b9cc1657e3c	2021-05-26 11:37:29.356	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'Archivist'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-05f697fe-040b-47a3-bdc1-8bc34356e7c3&params=item:sec$Role-05f697fe-040b-47a3-bdc1-8bc34356e7c3	05f697fe-040b-47a3-bdc1-8bc34356e7c3	\N	\N	\N	\N
b2eb7d86-21cd-a312-87a9-c4270164aa20	2021-05-26 11:37:30.91	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'sergeev'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb&params=item:sec$User-e1911add-6fd0-9e69-c655-6bc39fc06fdb	e1911add-6fd0-9e69-c655-6bc39fc06fdb	\N	\N	\N	\N
fef4d3a4-126b-5281-d26c-b493d29d8dd7	2021-05-26 12:00:20.277	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-d079f5fd-b964-c39e-a1b6-4ffc099c13d6&params=item:sec$User-d079f5fd-b964-c39e-a1b6-4ffc099c13d6	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	\N	\N	\N	\N
58b81490-032c-6e7c-e1af-2d902834627e	2021-05-26 12:02:52.583	admin	60885987-1b61-4247-94c7-dff348347f93	Роль 'ScanHubWorker'	http://localhost:8080/app/open?screen=sec$Role.edit&item=sec$Role-e9e022b5-6d1a-41ed-a004-f9ace2a0fb79&params=item:sec$Role-e9e022b5-6d1a-41ed-a004-f9ace2a0fb79	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79	\N	\N	\N	\N
8c51e769-9802-832f-dcd2-8d88c6319d08	2021-05-26 12:05:20.828	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'antonov'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-d079f5fd-b964-c39e-a1b6-4ffc099c13d6&params=item:sec$User-d079f5fd-b964-c39e-a1b6-4ffc099c13d6	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	\N	\N	\N	\N
3690ad94-c31a-d3a4-c750-746b2fb3ff4a	2021-05-26 17:47:43.886	admin	60885987-1b61-4247-94c7-dff348347f93	Новый пользователь	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
c54b9766-a429-9904-6ce1-ccce3edc8e97	2021-05-26 17:54:52.649	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
274385b4-ac8b-f488-53c6-1b8dbe8c51a2	2021-05-26 17:57:12.863	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
00b8b44f-66c6-77c7-5797-347567148cc7	2021-05-27 10:19:53.107	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
bbda7caa-1a81-1f2f-1c66-4866894f1d4f	2021-05-27 10:20:34.656	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
32c5d57d-df83-d62a-30a6-3797900ab9fd	2021-05-27 18:04:31.327	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
c9903901-51ab-d768-0cea-469047c265b5	2021-05-27 18:18:40.893	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
71acd444-d456-752a-0798-36366f4cc0f4	2021-05-27 18:20:21.469	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
3699938f-b662-f307-687b-eff9e855a3df	2021-05-27 18:29:08.263	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
2902a8a7-acbe-0b0a-0410-034b31d6bcfe	2021-05-27 18:30:27.061	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
c7da5a19-6cd9-05f5-6263-41b90e45ba8b	2021-05-27 18:31:21.007	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
f9ef0fca-5aeb-759b-e5e5-e3be63ff465b	2021-05-27 18:31:31.725	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
fa1cf423-624b-53e4-f97d-fa40d041f58a	2021-05-27 18:54:11.744	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'admin'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-60885987-1b61-4247-94c7-dff348347f93&params=item:sec$User-60885987-1b61-4247-94c7-dff348347f93	60885987-1b61-4247-94c7-dff348347f93	\N	\N	\N	\N
8a4a0621-e735-a6ff-cd73-aaf1fb622bcd	2021-05-27 18:56:34.454	admin	60885987-1b61-4247-94c7-dff348347f93	Пользователь 'diadoc'	http://localhost:8080/app/open?screen=sec$User.edit&item=sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c&params=item:sec$User-4749b08a-0141-ce93-ef4e-efcedc87d28c	4749b08a-0141-ce93-ef4e-efcedc87d28c	\N	\N	\N	\N
\.


--
-- Data for Name: sec_search_folder; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_search_folder (folder_id, filter_component, filter_xml, user_id, presentation_id, apply_default, is_set, entity_type) FROM stdin;
\.


--
-- Data for Name: sec_session_attr; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_session_attr (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, name, str_value, datatype, group_id) FROM stdin;
\.


--
-- Data for Name: sec_session_log; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_session_log (id, version, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, session_id, user_id, substituted_user_id, user_data, last_action, client_info, client_type, address, started_ts, finished_ts, server_id) FROM stdin;
\.


--
-- Data for Name: sec_user; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_user (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, login, login_lc, password, password_encryption, name, first_name, last_name, middle_name, position_, email, language_, time_zone, time_zone_auto, active, group_id, ip_mask, change_password_at_logon) FROM stdin;
a405db59-e674-4f63-8afe-269dda788fe8	2021-05-19 17:09:48.326558	\N	0	\N	\N	\N	\N	anonymous	anonymous	\N	\N	Anonymous	\N	\N	\N	\N	\N	\N	\N	\N	t	0fa2b1a5-1d68-4d69-9fbd-dff348347f93	\N	\N
7ab5b85e-e82a-8d7f-9287-2cb1062a6279	2021-05-24 10:29:34.133	admin	7	2021-05-24 13:26:45.319	admin	\N	\N	fedorov	fedorov	$2a$10$TPcSO3ja7xAQnxpcyiFXdOCTOJ3ugL7OKXiDifBRvABqUNnldotTS	bcrypt	Федоров Федор Федорович	Федор	Федоров	Федорович	Налоговый специалист	fedorov@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
d079f5fd-b964-c39e-a1b6-4ffc099c13d6	2021-05-26 12:00:20.251	admin	1	2021-05-26 12:00:20.251	\N	\N	\N	antonov	antonov	$2a$10$FmnpDgzrXFJzSlw.72AjYeZeKjbY0OQpP.v7WLYIgurZRmP0qua6q	bcrypt	Антонов Антон Антонович	Антон	Антонов	Антонович	Оператор	antonov@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
99f45003-a8b5-f733-ec33-717f492a0e0d	2021-05-24 11:11:33.78	admin	4	2021-05-24 18:36:08.749	admin	\N	\N	olegov	olegov	$2a$10$YcKKE9d4mI9Hwo831HnXBO8GSz7WM0QE5oLylHWE4.dgLoOhVAlrm	bcrypt	Олегов Олег Олегович	Олег	Олегов	Олегович	Специалист по работе с гос органами	olegov@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
60885987-1b61-4247-94c7-dff348347f93	2021-05-19 17:09:48.321118	\N	8	2021-05-27 10:19:53.044	admin	\N	\N	admin	admin	$2a$10$vQx8b8B7jzZ0rQmtuK4YDOKp7nkmUCFjPx6DMT.voPtetNHFOsaOu	bcrypt	Administrator	\N	\N	\N	Администратор	\N	ru	\N	f	t	0fa2b1a5-1d68-4d69-9fbd-dff348347f93	\N	\N
b3c9058e-ac4d-258a-1173-b0dde3c42aec	2021-05-24 11:14:42.954	admin	5	2021-05-24 18:52:08.355	admin	\N	\N	semenov	semenov	$2a$10$M4kPjd1QuDiXrM/C9oVOaetFqk7mh5OWsQHP8.hm/hW8r3lRnthKa	bcrypt	Семенов Семен Семенович	Семен	Семенов	Семенович	Бухгалтер	semenov@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
4749b08a-0141-ce93-ef4e-efcedc87d28c	2021-05-26 17:47:43.864	admin	7	2021-05-27 18:56:34.444	admin	\N	\N	diadoc	diadoc	$2a$10$FokF/qjK5ia9297thq8ohORIGA0hLKeuhB11y5BMcnTAmdejc3FB2	bcrypt	Диадоков Диадок Диадокович	Диадок	Диадоков	Диадокович	Оператор Диадок	\N	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
61580b7f-4803-3267-e46a-d62f7dde9ed3	2021-05-24 11:12:41.236	admin	6	2021-05-24 13:17:41.356	admin	\N	\N	ivanov	ivanov	$2a$10$HmZr1cDuHHetJ4VFRTSv6ucC2Q2NmkECbf9Hte8PKfHaryPQy6cmy	bcrypt	Иванов Иван Иванович	Иван	Иванов	Иванович	Специалист	ivanov@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
6b4485d0-7457-285f-0fa2-911ade8cd040	2021-05-24 11:13:45.842	admin	5	2021-05-25 12:54:46.89	admin	\N	\N	petrov	petrov	$2a$10$Cb6HzAeuScPZSWfOui29luI2rscQ2mp9suoNZCI0Nz3SPPvLLkLjC	bcrypt	Петров Петр Петрович	Петр	Петров	Петрович	Начальник департамента	petrov@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
0668cb56-bed5-3032-20bc-96779e763230	2021-05-25 13:14:18.431	admin	1	2021-05-25 13:14:18.431	\N	\N	\N	sidorov	sidorov	$2a$10$g9vFqAH4zwDkdEz15IRx/ucsbkBcTYpQbCmaK3EIQi9wTnvZU1nye	bcrypt	Сидоров Сидор Сидорович	Сидор	Сидоров	Сидорович	Ведущий специалист	sidorov@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
025b044b-3118-a272-35ef-869619f193e1	2021-05-25 12:49:21.331	admin	3	2021-05-25 17:52:02.155	admin	\N	\N	yakovlev	yakovlev	$2a$10$jlKrNF6vpySi4MlQm0/fw.94hmCz9pDb3odoaWlzMXWTQXmAcXUxe	bcrypt	Яковлев Яков Яковлевич	Яков	Яковлев	Яковлевич	Главный бухгалтер	yakovlev@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
e1911add-6fd0-9e69-c655-6bc39fc06fdb	2021-05-26 09:05:32.38	admin	2	2021-05-26 09:06:18.771	admin	\N	\N	sergeev	sergeev	$2a$10$W8mwDDSPYWEKVQf5RGYCm.GT2.agnDLJkxOdv5a1YJomAv.oFuxA.	bcrypt	Сергеев Сергей Сергеевич	Сергей	Сергеев	Сергеевич	Архивариус	sergeev@gmail.com	ru	\N	\N	t	126c560c-c08b-a170-a78f-ae72d28929f9	\N	f
\.


--
-- Data for Name: sec_user_role; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_user_role (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, user_id, role_id) FROM stdin;
c838be0a-96d0-4ef4-a7c0-dff348347f93	2021-05-19 17:09:48.336031	\N	0	\N	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	0c018061-b26f-4de2-a5be-dff348347f93
f01fb532-c2f0-dc18-b86c-450cf8a8d8c5	2021-05-19 17:09:48.339315	\N	0	\N	\N	\N	\N	a405db59-e674-4f63-8afe-269dda788fe8	cd541dd4-eeb7-cd5b-847e-d32236552fa9
344cb30b-4d0f-fe7c-60fe-87497770b39a	2021-05-24 10:29:34.134	admin	1	2021-05-24 10:29:34.134	\N	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	fcf9d6e7-135b-26b5-89be-2e75d24504af
e3b8a964-14f6-a7b5-bde2-ba5316320eb8	2021-05-24 10:29:34.134	admin	1	2021-05-24 10:29:34.134	\N	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	41be28fa-7439-0172-f8c9-c59a1381f65c
3fe0430c-5945-cd2c-2d71-8192c1ab8433	2021-05-24 11:11:33.781	admin	1	2021-05-24 11:11:33.781	\N	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	fcf9d6e7-135b-26b5-89be-2e75d24504af
7a4c0a4d-68b0-822f-354a-9c8bafb732d5	2021-05-24 11:11:33.781	admin	1	2021-05-24 11:11:33.781	\N	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	41be28fa-7439-0172-f8c9-c59a1381f65c
c85c34dd-0678-16fb-b91d-3d99a0a7e412	2021-05-24 11:12:41.236	admin	1	2021-05-24 11:12:41.236	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	fcf9d6e7-135b-26b5-89be-2e75d24504af
a0d72e40-6a59-acd1-26df-d50d4869178d	2021-05-24 11:12:41.236	admin	1	2021-05-24 11:12:41.236	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	41be28fa-7439-0172-f8c9-c59a1381f65c
873f73fc-4efb-f2c3-8706-2dfc7711b9d5	2021-05-24 11:13:45.842	admin	1	2021-05-24 11:13:45.842	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	fcf9d6e7-135b-26b5-89be-2e75d24504af
721ebfce-8432-321d-1a66-806fb0e9928f	2021-05-24 11:13:45.842	admin	1	2021-05-24 11:13:45.842	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	41be28fa-7439-0172-f8c9-c59a1381f65c
5967ef59-90aa-1869-6e93-72baad88bac1	2021-05-24 11:14:42.954	admin	1	2021-05-24 11:14:42.954	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	fcf9d6e7-135b-26b5-89be-2e75d24504af
bad1ba7c-7b51-f100-e86c-81a6bf149c75	2021-05-24 11:14:42.954	admin	1	2021-05-24 11:14:42.954	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	41be28fa-7439-0172-f8c9-c59a1381f65c
65f04590-cceb-9a53-c00a-3b08072e612a	2021-05-24 12:19:54.603	admin	1	2021-05-24 12:19:54.603	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	16340150-6049-4d32-9d17-4770eb8b6b7e
08a5bddb-335e-20de-dfdc-40e55aa88bee	2021-05-24 12:30:13.702	admin	1	2021-05-24 12:30:13.702	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
b0659d02-19c8-e990-320d-f85a36468a5b	2021-05-24 12:21:14.281	admin	2	2021-05-24 12:21:14.281	\N	2021-05-24 12:31:16.598	admin	61580b7f-4803-3267-e46a-d62f7dde9ed3	ec987b5a-a658-4aaa-ab0b-80269c9c5366
a6f148cf-ab57-ade4-3793-99a3c0c5741c	2021-05-24 12:36:01.513	admin	1	2021-05-24 12:36:01.513	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	042e9907-9b40-425d-8148-d72bd93b2198
521a32fc-495d-a5e6-07af-6a8bb6a3c252	2021-05-24 12:40:19.521	admin	1	2021-05-24 12:40:19.521	\N	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
b6fabcd7-7db0-cf6e-8341-d7ecba734e17	2021-05-24 13:02:20.616	admin	1	2021-05-24 13:02:20.616	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	ec987b5a-a658-4aaa-ab0b-80269c9c5366
078a28f9-ad23-98a0-a7bf-a127ee398dac	2021-05-24 13:09:30.869	admin	1	2021-05-24 13:09:30.869	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	ec987b5a-a658-4aaa-ab0b-80269c9c5366
0430eee1-6659-ede1-cd0f-4e2d78d2392e	2021-05-24 13:09:55.261	admin	1	2021-05-24 13:09:55.261	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
e998ebda-c042-fd9b-3611-b57ed9d1a456	2021-05-24 13:11:26.472	admin	2	2021-05-24 13:11:26.472	\N	2021-05-24 13:11:43.083	admin	61580b7f-4803-3267-e46a-d62f7dde9ed3	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
e94937fb-7cd3-d787-3dfe-a7e8e08815f6	2021-05-24 13:11:55.342	admin	1	2021-05-24 13:11:55.342	\N	\N	\N	6b4485d0-7457-285f-0fa2-911ade8cd040	ec987b5a-a658-4aaa-ab0b-80269c9c5366
1ba207dd-f7e6-c4e1-dddc-3c11630d5adc	2021-05-24 13:17:41.35	admin	1	2021-05-24 13:17:41.35	\N	\N	\N	61580b7f-4803-3267-e46a-d62f7dde9ed3	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
f4c322e0-e652-5177-f15a-4b6cf738082f	2021-05-24 13:26:45.313	admin	1	2021-05-24 13:26:45.313	\N	\N	\N	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	ec987b5a-a658-4aaa-ab0b-80269c9c5366
ec261c7f-288e-7537-3f55-bfb0a71d7ceb	2021-05-24 13:29:15.71	admin	1	2021-05-24 13:29:15.71	\N	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	b62fadeb-d4d4-43ad-a52a-48c5439ff0e2
10b84908-523a-5d86-9155-a0e965c11532	2021-05-24 13:29:15.71	admin	1	2021-05-24 13:29:15.71	\N	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64
6bc2ef17-7421-48c5-820f-435b446b1cf4	2021-05-24 13:29:15.71	admin	1	2021-05-24 13:29:15.71	\N	\N	\N	99f45003-a8b5-f733-ec33-717f492a0e0d	1b47b33c-4a34-4125-93dd-8ae4519246a8
64076a67-6775-8ff2-4a0d-d3f00253cfc0	2021-05-24 18:42:27.965	admin	1	2021-05-24 18:42:27.965	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	2273d84a-00f9-4bd2-9dac-401a819a2267
0311e335-6702-d48f-4301-e9fbcca5813c	2021-05-24 18:42:27.965	admin	1	2021-05-24 18:42:27.965	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	08699644-95ec-4800-81a4-a37769d71b99
4816608f-b7c9-be90-88a7-d90dd5ff42fb	2021-05-24 18:41:49.944	admin	2	2021-05-24 18:41:49.944	\N	2021-05-24 18:43:01.524	admin	60885987-1b61-4247-94c7-dff348347f93	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
67921444-c7ed-8364-ea88-bfcf9537d2b2	2021-05-24 18:40:40.52	admin	2	2021-05-24 18:40:40.52	\N	2021-05-24 18:43:01.523	admin	60885987-1b61-4247-94c7-dff348347f93	03502aad-393a-46c1-875d-5dc047efa99b
b20905f0-765d-29ee-c380-35c971ad882f	2021-05-24 18:52:08.349	admin	1	2021-05-24 18:52:08.349	\N	\N	\N	b3c9058e-ac4d-258a-1173-b0dde3c42aec	16340150-6049-4d32-9d17-4770eb8b6b7e
2639c010-856a-ba9d-31a7-93e1466d2d7f	2021-05-25 12:49:21.332	admin	1	2021-05-25 12:49:21.332	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	ec987b5a-a658-4aaa-ab0b-80269c9c5366
e9d142cf-e0f6-7747-3d04-75b598880a35	2021-05-25 12:49:21.331	admin	1	2021-05-25 12:49:21.331	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	16340150-6049-4d32-9d17-4770eb8b6b7e
f7409014-0b32-0dac-61a1-c77b8231e6d5	2021-05-25 12:49:21.331	admin	1	2021-05-25 12:49:21.331	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	fcf9d6e7-135b-26b5-89be-2e75d24504af
50c4930c-f362-dcc8-76d9-cf44d2e54bf5	2021-05-25 12:49:21.332	admin	1	2021-05-25 12:49:21.332	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
d8e81c21-8d9f-ec75-c69c-24fc0d5dcd34	2021-05-25 12:49:21.331	admin	1	2021-05-25 12:49:21.331	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	042e9907-9b40-425d-8148-d72bd93b2198
67885630-3c77-1fac-9d1b-42381d1ab5f5	2021-05-25 12:49:21.332	admin	1	2021-05-25 12:49:21.332	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	41be28fa-7439-0172-f8c9-c59a1381f65c
4fe4d9c6-649c-94da-0926-25cc0331ae26	2021-05-25 13:14:18.432	admin	1	2021-05-25 13:14:18.432	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	fcf9d6e7-135b-26b5-89be-2e75d24504af
f2135ac6-b36f-da4a-181b-36c02ce18ca8	2021-05-25 13:14:18.431	admin	1	2021-05-25 13:14:18.431	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
c362197a-14b6-c8f4-42f1-c42ec53f00e6	2021-05-25 13:14:18.432	admin	1	2021-05-25 13:14:18.432	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	ec987b5a-a658-4aaa-ab0b-80269c9c5366
47a3c5de-f6be-a243-1ca7-2c618911b08f	2021-05-25 13:14:18.432	admin	1	2021-05-25 13:14:18.432	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	16340150-6049-4d32-9d17-4770eb8b6b7e
badee9c4-f5c7-c0f2-bfc9-50e9ef39a917	2021-05-25 13:14:18.431	admin	1	2021-05-25 13:14:18.431	\N	\N	\N	0668cb56-bed5-3032-20bc-96779e763230	41be28fa-7439-0172-f8c9-c59a1381f65c
230e2ee5-c6df-3a8e-ce58-10802c244cfb	2021-05-25 17:52:02.146	admin	1	2021-05-25 17:52:02.146	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	a2bb8763-4f0f-4bf7-be49-1a41f33a8aaf
3514825f-3ee8-7c14-c8cf-20538cbb0e30	2021-05-25 17:52:02.146	admin	1	2021-05-25 17:52:02.146	\N	\N	\N	025b044b-3118-a272-35ef-869619f193e1	1b47b33c-4a34-4125-93dd-8ae4519246a8
9713a0c1-748e-6846-5467-c2e8584d253b	2021-05-25 18:53:36.238	admin	1	2021-05-25 18:53:36.238	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	6840bfa4-0007-4208-a427-8315dfb0384e
f45bedb5-b56f-e16d-b331-250a691c7f3f	2021-05-25 18:53:36.238	admin	1	2021-05-25 18:53:36.238	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	21e8bd11-b435-48ab-a0a2-3200fdcf418c
78f07ff7-6c16-3088-8be1-1796a54c55e5	2021-05-26 09:05:32.381	admin	1	2021-05-26 09:05:32.381	\N	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	41be28fa-7439-0172-f8c9-c59a1381f65c
d1c73137-ad53-e182-61b5-bd2511c1e28b	2021-05-26 09:05:32.381	admin	1	2021-05-26 09:05:32.381	\N	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	fcf9d6e7-135b-26b5-89be-2e75d24504af
80933cc5-df7a-0f4c-7659-32ec7cd01fee	2021-05-26 09:06:18.765	admin	1	2021-05-26 09:06:18.765	\N	\N	\N	e1911add-6fd0-9e69-c655-6bc39fc06fdb	05f697fe-040b-47a3-bdc1-8bc34356e7c3
4c83add4-810f-827c-8a75-eeb48680f3eb	2021-05-26 09:06:18.765	admin	2	2021-05-26 09:06:18.765	\N	2021-05-26 11:36:59.115	admin	e1911add-6fd0-9e69-c655-6bc39fc06fdb	08699644-95ec-4800-81a4-a37769d71b99
925b8d47-0ed5-be1b-9ded-f48e95e64ef9	2021-05-26 12:00:20.253	admin	1	2021-05-26 12:00:20.253	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	41be28fa-7439-0172-f8c9-c59a1381f65c
518abbda-3b55-9cb6-8f86-3f6b61482cf6	2021-05-26 12:00:20.252	admin	1	2021-05-26 12:00:20.252	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	fcf9d6e7-135b-26b5-89be-2e75d24504af
669328d2-9afa-bf4b-5978-b0a319d56d76	2021-05-26 12:00:20.252	admin	1	2021-05-26 12:00:20.252	\N	\N	\N	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
57e1156a-5e01-2272-4eac-18388d25a047	2021-05-26 17:47:43.864	admin	1	2021-05-26 17:47:43.864	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	16340150-6049-4d32-9d17-4770eb8b6b7e
8ece75ee-ce1f-7ad1-0068-12d0dabe95f5	2021-05-26 17:47:43.864	admin	1	2021-05-26 17:47:43.864	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	ec987b5a-a658-4aaa-ab0b-80269c9c5366
fefd1a9d-6914-c9b2-48cf-d91f590275ac	2021-05-26 17:47:43.864	admin	1	2021-05-26 17:47:43.864	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	fcf9d6e7-135b-26b5-89be-2e75d24504af
e59a484d-b1cb-78b0-8c88-76ebdc4067e0	2021-05-26 17:47:43.864	admin	1	2021-05-26 17:47:43.864	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	41be28fa-7439-0172-f8c9-c59a1381f65c
bfefe587-f05e-3a4f-c74f-adc791e9849b	2021-05-27 10:19:53.016	admin	1	2021-05-27 10:19:53.016	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	e9e022b5-6d1a-41ed-a004-f9ace2a0fb79
02e149a8-280f-6d1a-aa07-889f829535a7	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	05f697fe-040b-47a3-bdc1-8bc34356e7c3
1176f69a-e0e3-e82a-275b-d281bb66dc14	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	1b47b33c-4a34-4125-93dd-8ae4519246a8
902a16f6-47b5-6778-a785-14a78b45a88b	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	6ebd3c50-9e59-4400-b0fc-9570bbd5ac7f
ddf73b02-dc23-0301-d738-7c3e9492a6ce	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	ec987b5a-a658-4aaa-ab0b-80269c9c5366
e521e47f-9a5c-e913-8bc8-40612b926702	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	a2bb8763-4f0f-4bf7-be49-1a41f33a8aaf
ed341711-1b50-5c25-ba7a-d3d15a605475	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	2f66bcac-69dc-4471-9c1f-8db0aedcb2fb
6254571b-eb76-25df-04d2-8f6077ce9afe	2021-05-27 10:19:53.016	admin	1	2021-05-27 10:19:53.016	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	b62fadeb-d4d4-43ad-a52a-48c5439ff0e2
f3cd08b5-615e-35a9-a4a7-d4050503fe9e	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	5dc8b018-e4a5-4cbd-807d-f1ae5eb0c1e9
6cf3faa1-18ca-9e26-ea20-42d14b4119c0	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	03502aad-393a-46c1-875d-5dc047efa99b
ccea2ea2-dbea-dcf9-cc33-169c2d1029f0	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	16340150-6049-4d32-9d17-4770eb8b6b7e
ea1d5153-fa86-6be7-e2a8-60df82bb3e21	2021-05-27 10:19:53.016	admin	1	2021-05-27 10:19:53.016	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	c2ffa33c-2a8e-4ff8-b414-b3dcd41b9f64
94a4ad58-de49-f94c-9e79-a201f9c8fa81	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	042e9907-9b40-425d-8148-d72bd93b2198
ddeb6d07-3596-558e-d189-bcbe68404b07	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	321ed530-f9dd-4fbb-aadf-20ed4aa6108b
ec499a86-e4aa-e991-4bd7-4173e5eb33de	2021-05-27 10:19:53.017	admin	1	2021-05-27 10:19:53.017	\N	\N	\N	60885987-1b61-4247-94c7-dff348347f93	41be28fa-7439-0172-f8c9-c59a1381f65c
6ab225f0-0b56-6689-3b94-256849383fac	2021-05-27 10:19:53.017	admin	2	2021-05-27 10:19:53.017	\N	2021-05-27 10:20:34.648	admin	60885987-1b61-4247-94c7-dff348347f93	fcf9d6e7-135b-26b5-89be-2e75d24504af
19cab398-c413-174f-9f5f-6df70b5feb4e	2021-05-27 18:30:27.043	admin	1	2021-05-27 18:30:27.043	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	21e8bd11-b435-48ab-a0a2-3200fdcf418c
fee5732b-1649-9f4e-c463-8fc254bfacfa	2021-05-27 18:31:31.704	admin	1	2021-05-27 18:31:31.704	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	0c018061-b26f-4de2-a5be-dff348347f93
4f43fb59-6825-d8f3-18f3-97be9e4a22d8	2021-05-27 18:56:34.437	admin	1	2021-05-27 18:56:34.437	\N	\N	\N	4749b08a-0141-ce93-ef4e-efcedc87d28c	08699644-95ec-4800-81a4-a37769d71b99
\.


--
-- Data for Name: sec_user_setting; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_user_setting (id, create_ts, created_by, user_id, client_type, name, value_) FROM stdin;
2b1bf69f-5992-4ef5-e7ba-e46fc2a4efe5	2021-05-19 17:21:24.405	admin	60885987-1b61-4247-94c7-dff348347f93	W	appWindowTheme	havana
a8b14da7-4411-2260-2721-7019c3fd97c1	2021-05-19 17:21:24.413	admin	60885987-1b61-4247-94c7-dff348347f93	W	appWindowMode	TABBED
e87f1f6b-06bf-8ee6-b349-ff6452e6e960	2021-05-19 17:21:24.44	admin	60885987-1b61-4247-94c7-dff348347f93	W	userDefaultScreen	\N
485c813d-3858-45be-ab15-810a24159ac8	2021-05-19 17:11:59.666	admin	60885987-1b61-4247-94c7-dff348347f93	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"> \n      <position value="200.0" unit="px"/> \n    </component>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
38b51737-9d8d-4e0d-87ea-298687e9b8a8	2021-05-19 17:23:11.124	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_ApplicatonJsonConfig.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="applicatonJsonConfigsTable">\n      <columns sortProperty="code" sortAscending="true">\n        <columns id="code" visible="true"/>\n        <columns id="name" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
a799891c-ca5a-e5a9-28de-1e8c60d76e41	2021-05-19 18:43:03.207	admin	60885987-1b61-4247-94c7-dff348347f93	W	entityInspector.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n  </components>\n</settings>\n
f53ae0cd-8bc6-57de-142e-1bcbe9c8c879	2021-05-19 19:12:37.654	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Contractor.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="contractorsTable"/>\n  </components>\n</settings>\n
9b1da716-e873-0c1e-3c29-7082b6c49b57	2021-05-19 19:12:42.569	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Bank.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="banksTable"/>\n  </components>\n</settings>\n
7be9e4f9-a84c-57e2-cde2-10cf6abaefa3	2021-05-19 19:12:44.9	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Currency.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="currenciesTable"/>\n  </components>\n</settings>\n
8de1d28e-c0fb-1495-8711-f2ba72b224db	2021-05-19 19:12:47.418	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Account.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="accountsTable"/>\n  </components>\n</settings>\n
e9f93511-f191-f26c-af65-f1019405e324	2021-05-20 10:57:54.021	admin	60885987-1b61-4247-94c7-dff348347f93	W	sec$Role.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filterWithoutId">\n      <defaultFilter/>\n    </component>\n    <component name="rolesTable"/>\n  </components>\n</settings>\n
80a1117e-a77f-a846-8067-025dedd882dc	2021-05-19 18:25:46.475	admin	60885987-1b61-4247-94c7-dff348347f93	W	serverLog	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="logFieldBox"/> \n  </components>  \n  <window/> \n</settings>\n
6ef629d8-50ee-ca24-1b40-05b89ee27e34	2021-05-24 11:22:53.438	admin	60885987-1b61-4247-94c7-dff348347f93	W	sec$User.lookup	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="genericFilter">\n      <defaultFilter/>\n    </component>\n    <component name="usersTable"/>\n  </components>\n</settings>\n
ec3fd230-4731-2037-2ddb-a205b9e46bfe	2021-05-24 11:34:06.652	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_SignerType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="signerTypesTable"/>\n  </components>\n</settings>\n
a80e3da6-3a6e-12b7-7b9d-f55124e5fb2b	2021-05-24 11:52:46.415	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_DocAttribute.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="docAttributesTable"/>\n  </components>\n</settings>\n
9cea06f1-dc9f-f580-0782-e2c17be28492	2021-05-24 12:17:25.303	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Employee.edit	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="departmentsGroupBox"/>\n    <component name="departmentsTable">\n      <columns sortProperty="department" sortAscending="true">\n        <columns id="department" visible="true"/>\n        <columns id="chief" visible="true"/>\n        <columns id="main" visible="true"/>\n      </columns>\n    </component>\n  </components>\n</settings>\n
d7ad961d-33e2-77c5-32dd-310b3f73ec4d	2021-05-19 17:31:37.814	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Department.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="departmentsTable">\n      <columns sortProperty="" sortAscending="true">\n        <columns id="name" width="275" visible="true"/>\n        <columns id="code" width="96" visible="true"/>\n        <columns id="parent" width="481" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
b078fba8-236d-ff26-ce87-5802638a64c4	2021-05-24 13:02:48.13	ivanov	61580b7f-4803-3267-e46a-d62f7dde9ed3	W	eademo_PackageType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageTypesTable"/>\n  </components>\n</settings>\n
ed26b192-88ef-2dd9-18b0-d34cadf3152e	2021-05-24 11:44:16.492	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_AttachmentType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="attachmentTypesTable">\n      <columns sortProperty="name" sortAscending="true">\n        <columns id="name" visible="true"/>\n        <columns id="code" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
66a8a6ca-39f8-b2de-d15f-c407c9519865	2021-05-19 18:43:03.192	admin	60885987-1b61-4247-94c7-dff348347f93	W	sys$ScheduledTask.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="tasksFilter"> \n      <defaultFilter/> \n    </component>  \n    <component name="tasksTable" presentation=""/> \n  </components> \n</settings>\n
54ecc112-c0ee-7c17-0264-39b825c0aaba	2021-05-19 18:43:03.202	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_DiadocRuleRecord.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="diadocRuleRecordsTable">\n      <columns sortProperty="ordering" sortAscending="true">\n        <columns id="name" visible="true"/>\n        <columns id="ordering" visible="true"/>\n        <columns id="disabled" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
f97d7e12-9f72-e571-7d43-8ec01ffddfe4	2021-05-24 12:19:40.203	admin	60885987-1b61-4247-94c7-dff348347f93	W	sec$Role.lookup	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filterWithoutId">\n      <defaultFilter/>\n    </component>\n    <component name="rolesTable"/>\n  </components>\n</settings>\n
5fa7216f-f51e-516c-3bbd-7222bac0ad02	2021-05-24 12:59:49.903	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_ContractType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="contractTypesTable"/>\n  </components>\n</settings>\n
48427d2a-847a-fbd4-54ae-3eb12099c586	2021-05-24 13:32:59.116	annen	99f45003-a8b5-f733-ec33-717f492a0e0d	W	eademo_Basket.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n      <maxResults>50</maxResults>\n    </component>\n    <component name="basketsTable"/>\n  </components>\n</settings>\n
2c0939f1-af57-a672-0504-d68f2ebe8083	2021-05-24 13:33:42.653	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_PaperDocument.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageAttachmentsTable"/>\n  </components>\n</settings>\n
6b8e55e9-1f62-f42f-282b-170a315b6385	2021-05-24 13:22:01.212	petrov	6b4485d0-7457-285f-0fa2-911ade8cd040	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
afe654e0-d1a4-dad6-6f4f-e4ac0505c132	2021-05-24 13:22:01.215	petrov	6b4485d0-7457-285f-0fa2-911ade8cd040	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/>  \n      <maxResults>50</maxResults> \n    </component>  \n    <component name="docPackageModelsTable"/> \n  </components> \n</settings>\n
bebb69ae-fb7a-fe2f-1dd5-ec4219f83970	2021-05-24 13:01:59.154	ivanov	61580b7f-4803-3267-e46a-d62f7dde9ed3	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="67.98623"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
989963b2-bfde-3c8e-f7b7-2aa604e72deb	2021-05-24 13:01:59.244	ivanov	61580b7f-4803-3267-e46a-d62f7dde9ed3	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/>  \n      <maxResults>50</maxResults> \n    </component>  \n    <component name="docPackageModelsTable"/> \n  </components> \n</settings>\n
a4696820-5f3c-114d-ef1c-fd4bb0c7d8c1	2021-05-24 13:18:14.207	admin	60885987-1b61-4247-94c7-dff348347f93	W	sec$Group.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="split"/>\n    <component name="filterWithoutId">\n      <defaultFilter/>\n    </component>\n    <component name="usersTable"/>\n  </components>\n</settings>\n
7db4c3be-b2ef-f67d-3e13-c89aa8780dd4	2021-05-24 13:25:04.491	fedorov	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="docPackageModelsTable"/>\n  </components>\n</settings>\n
4158c733-0df4-e79f-1870-5a6181237b2a	2021-05-24 13:25:04.487	fedorov	7ab5b85e-e82a-8d7f-9287-2cb1062a6279	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
5ce173e2-8b8d-5eee-48a0-2553ebc82856	2021-05-24 13:31:19.816	annen	99f45003-a8b5-f733-ec33-717f492a0e0d	W	eademo_Tax.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="taxesTable"/>\n  </components>\n</settings>\n
f41795d7-9ac5-4737-b5a3-b9ddfda61a58	2021-05-24 13:31:25.163	annen	99f45003-a8b5-f733-ec33-717f492a0e0d	W	eademo_Contractor.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="contractorsTable"/>\n  </components>\n</settings>\n
f393e2ea-5872-6b4f-b53b-6399ee035b61	2021-05-24 13:31:46.032	annen	99f45003-a8b5-f733-ec33-717f492a0e0d	W	eademo_PackageAttachmentFTS.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageAttachmentsSBox"/>\n    <component name="packageAttachmentsTable"/>\n    <component name="attachmentPreview"/>\n  </components>\n</settings>\n
3a91ca58-49f0-2fc4-8c8f-01cef2ed0cb5	2021-05-24 13:29:38.913	annen	99f45003-a8b5-f733-ec33-717f492a0e0d	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
2ee010b3-45fc-b179-dde1-7efa65254a17	2021-05-24 13:43:12.908	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_BoxOperator.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="paperLocationsTable"/>\n  </components>\n</settings>\n
a7d87e7b-639b-ae24-1f64-627ebf2cfd26	2021-05-24 13:43:14.187	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_PaperLocation.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="paperLocationsTable"/>\n  </components>\n</settings>\n
657f0944-c08b-3a98-2779-4da9d2265efc	2021-05-24 11:40:33.24	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_OperationType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="operationTypesTable">\n      <columns sortProperty="name" sortAscending="true">\n        <columns id="name" visible="true"/>\n        <columns id="code" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
cf27a89e-9277-63c2-726b-092770d87bc4	2021-05-24 11:48:50.466	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_PackageType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="packageTypesTable">\n      <columns sortProperty="name" sortAscending="true">\n        <columns id="name" visible="true"/>\n        <columns id="code" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
d12a197a-4e66-674c-8fdf-cd0ee07bff0c	2021-05-24 18:44:46.312	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Tax.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="taxesTable"/>\n  </components>\n</settings>\n
33cea41f-6f52-0b21-a240-04f69afe2d7c	2021-05-19 18:44:03.176	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Employee.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="employeesTable">\n      <columns sortProperty="tabNumber" sortAscending="true">\n        <columns id="user" visible="true"/>\n        <columns id="tabNumber" visible="true"/>\n        <columns id="mainDepartment" visible="true"/>\n        <columns id="useWarrant" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
0a89e46e-68ad-e902-0eb8-2dcd45f03043	2021-05-24 18:49:22.541	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_PackageType.edit	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="defaultAttachmentTypesTable"/>\n    <component name="allowedAttachmentTypesTable"/>\n    <component name="defaultSignerTypesTable"/>\n    <component name="attributeOptionTable">\n      <columns sortProperty="label" sortAscending="true">\n        <columns id="label" visible="true"/>\n        <columns id="visible" visible="true"/>\n        <columns id="required" visible="true"/>\n        <columns id="plural" visible="true"/>\n        <columns id="enabled" visible="true"/>\n        <columns id="copied" visible="true"/>\n      </columns>\n    </component>\n    <component name="relationOptionsTable"/>\n    <component name="allowedOperationTypesTable"/>\n  </components>\n</settings>\n
106cf790-3a5d-852d-8332-e60f43e736c0	2021-05-24 18:52:50.555	ivanov	61580b7f-4803-3267-e46a-d62f7dde9ed3	W	eademo_Currency.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="currenciesTable"/>\n  </components>\n</settings>\n
f56ae65c-ea8e-a7f3-9cc8-14d767bb1fed	2021-05-24 13:24:17.442	semenov	b3c9058e-ac4d-258a-1173-b0dde3c42aec	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
291b2c35-3ea9-8b7d-7bad-d8fb91678f7a	2021-05-24 19:04:33.145	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_Basket.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="basketsTable"/>\n  </components>\n</settings>\n
370dcc43-20a5-292c-2120-ceab7f077f27	2021-05-24 13:24:17.447	semenov	b3c9058e-ac4d-258a-1173-b0dde3c42aec	W	eademo_DocPackageModel.sign	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/>  \n      <maxResults>50</maxResults> \n    </component>  \n    <component name="docPackageModelsTable"/> \n  </components> \n</settings>\n
bc4cb3de-ee6e-7caa-8dc1-b1179b507716	2021-05-24 19:04:36.231	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_BoxArchivist.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="paperLocationsTable"/>\n  </components>\n</settings>\n
cd7a033f-3858-3fb0-0a35-0f362ada69a9	2021-05-25 12:46:17.363	admin	60885987-1b61-4247-94c7-dff348347f93	W	sys$Category.edit	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="localizedGroupBox">\n      <groupBox expanded="false"/>\n    </component>\n    <component name="categoryAttrsFrame.categoryAttrsTable" presentation=""/>\n    <component name="attributesLocationFrame.sourceDataGrid"/>\n  </components>\n</settings>\n
28626f7d-68c6-af54-63d6-912b5f6685f3	2021-05-25 12:46:17.377	admin	60885987-1b61-4247-94c7-dff348347f93	W	sys$Category.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="categoriesFilter">\n      <defaultFilter/>\n    </component>\n    <component name="split"/>\n    <component name="categoryTable"/>\n    <component name="attributesTable"/>\n  </components>\n</settings>\n
aee9a982-9240-81fe-6672-224a22fa523e	2021-05-19 18:43:03.186	admin	60885987-1b61-4247-94c7-dff348347f93	W	sec$User.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="genericFilter"> \n      <defaultFilter/> \n    </component>  \n    <component name="usersTable" presentation=""> \n      <columns sortProperty="name" sortAscending="true"> \n        <columns id="login" visible="true"/>  \n        <columns id="name" visible="true"/>  \n        <columns id="position" visible="true"/>  \n        <columns id="group" visible="true"/>  \n        <columns id="email" visible="true"/>  \n        <columns id="timeZone" visible="true"/>  \n        <columns id="active" visible="true"/>  \n        <columns id="changePasswordAtNextLogon" visible="true"/> \n      </columns> \n    </component> \n  </components> \n</settings>\n
b2ac678c-ddf6-d8ae-d4c3-0040e73ef116	2021-05-25 17:07:15.526	ivanov	61580b7f-4803-3267-e46a-d62f7dde9ed3	W	eademo_DocPackageModel.sign	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n      <maxResults>50</maxResults>\n    </component>\n    <component name="docPackageModelsTable"/>\n  </components>\n</settings>\n
fb5afe69-5ee3-19d7-5733-14b685b54f51	2021-05-25 17:18:12.873	yakovlev	025b044b-3118-a272-35ef-869619f193e1	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/>  \n      <maxResults>50</maxResults> \n    </component>  \n    <component name="docPackageModelsTable"/> \n  </components> \n</settings>\n
efe2d28f-88c7-c026-a064-cc6af7b4f427	2021-05-25 17:30:15.586	yakovlev	025b044b-3118-a272-35ef-869619f193e1	W	eademo_ImportantBrowse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n      <maxResults>50</maxResults>\n    </component>\n    <component name="importantTable"/>\n  </components>\n</settings>\n
df75fcc3-bc27-5c66-0a38-1093b466dec6	2021-05-25 17:30:16.76	yakovlev	025b044b-3118-a272-35ef-869619f193e1	W	eademo_DocPackageModel.sign	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n      <maxResults>50</maxResults>\n    </component>\n    <component name="docPackageModelsTable"/>\n  </components>\n</settings>\n
b20cbb43-16e1-ca7c-884d-248c074a26d1	2021-05-25 17:18:12.87	yakovlev	025b044b-3118-a272-35ef-869619f193e1	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
f7581ccd-614b-5151-9baa-9ecf2aa86440	2021-05-25 17:36:27.228	semenov	b3c9058e-ac4d-258a-1173-b0dde3c42aec	W	eademo_PackageType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageTypesTable"/>\n  </components>\n</settings>\n
5bbf187f-6520-c24e-e539-6c41cd69df6a	2021-05-25 17:36:34.979	semenov	b3c9058e-ac4d-258a-1173-b0dde3c42aec	W	eademo_OperationType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="operationTypesTable"/>\n  </components>\n</settings>\n
9257af01-ad75-86c6-6957-d3c2d05b19d1	2021-05-24 18:54:58.699	semenov	b3c9058e-ac4d-258a-1173-b0dde3c42aec	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/>  \n      <maxResults>50</maxResults> \n    </component>  \n    <component name="docPackageModelsTable"/> \n  </components> \n</settings>\n
fbc8f83a-3f55-9610-85e9-c4c1eaf33086	2021-05-25 17:51:08.931	olegov	99f45003-a8b5-f733-ec33-717f492a0e0d	W	eademo_Employee.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="employeesTable"/>\n  </components>\n</settings>\n
bb2582c4-8cb3-2745-e5f4-51002523f559	2021-05-25 17:51:22.108	olegov	99f45003-a8b5-f733-ec33-717f492a0e0d	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n      <maxResults>50</maxResults>\n    </component>\n    <component name="docPackageModelsTable"/>\n  </components>\n</settings>\n
94cc25f3-67e9-f27d-5841-46ddf6ee71f8	2021-05-25 18:51:07.308	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_DiadocMessage.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="diadocMessagesTable"/>\n  </components>\n</settings>\n
78a14168-3a29-f74d-6c8f-b674fcb8c1bb	2021-05-25 18:51:10.022	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_DiadocMessage.manualBrowse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="diadocMessagesTable"/>\n  </components>\n</settings>\n
9732fa6e-45b0-112e-7505-28d607f35a74	2021-05-26 12:13:25.541	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_PackageAttachmentFTS.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageAttachmentsSBox"/>\n    <component name="packageAttachmentsTable"/>\n    <component name="attachmentPreview"/>\n  </components>\n</settings>\n
84f9ffcc-d970-a0b5-8542-974d58bf0bd0	2021-05-26 11:36:38.182	sergeev	e1911add-6fd0-9e69-c655-6bc39fc06fdb	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
07deeb25-7d4f-868d-a104-1966ccb9c009	2021-05-25 17:20:10.672	admin	60885987-1b61-4247-94c7-dff348347f93	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/>  \n      <maxResults>50</maxResults> \n    </component>  \n    <component name="docPackageModelsTable"/> \n  </components> \n</settings>\n
01daf2b7-f5dc-4ef2-6ee5-9c5ae8f7ae63	2021-05-26 12:15:36.859	ivanov	61580b7f-4803-3267-e46a-d62f7dde9ed3	W	eademo_PackageAttachmentFTS.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageAttachmentsSBox"/>\n    <component name="packageAttachmentsTable"/>\n    <component name="attachmentPreview"/>\n  </components>\n</settings>\n
21b080ee-b9ed-59bc-ff0f-2c47d946742b	2021-05-26 12:27:32.927	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
c82cbeca-cda5-e4c0-3d01-1f45af04addd	2021-05-26 14:33:45.913	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_PaperDocument.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="packageAttachmentsTable">\n      <columns sortProperty="" sortAscending="true">\n        <columns id="paperDocument.statusChangeDate" width="122" visible="true"/>\n        <columns id="type" width="161" visible="true"/>\n        <columns id="file.name" width="243" visible="true"/>\n        <columns id="barcode" width="104" visible="true"/>\n        <columns id="paperDocument.status" width="180" visible="true"/>\n        <columns id="paperDocument.location.name" width="106" visible="true"/>\n        <columns id="paperDocument.receiver" width="242" visible="true"/>\n        <columns id="paperDocument.sender" width="239" visible="true"/>\n        <columns id="docPackageModel.pkgNum" width="171" visible="true"/>\n      </columns>\n    </component> \n  </components> \n</settings>\n
e24b9318-c0cc-5d8e-22ac-5fe2d04bcdfe	2021-05-27 18:29:47.766	diadoc	4749b08a-0141-ce93-ef4e-efcedc87d28c	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
a78c9461-7cbd-9e76-e392-d87640ac5705	2021-05-27 18:31:20.999	admin	60885987-1b61-4247-94c7-dff348347f93	W	sec$User.edit	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="propertiesBox"/>\n    <component name="split"/>\n    <component name="rolesTable">\n      <columns sortProperty="role.name" sortAscending="true">\n        <columns id="role.name" visible="true"/>\n        <columns id="role.locName" visible="true"/>\n      </columns>\n    </component>\n    <component name="substTable"/>\n  </components>\n</settings>\n
3f28071c-a042-f936-704d-af3577a40d08	2021-05-27 18:35:52.056	diadoc	4749b08a-0141-ce93-ef4e-efcedc87d28c	W	eademo_DiadocMessage.manualBrowse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="diadocMessagesTable"/>\n  </components>\n</settings>\n
9b00fb25-62d5-e72a-8239-e8d7c8f38352	2021-05-27 18:58:20.016	diadoc	4749b08a-0141-ce93-ef4e-efcedc87d28c	W	eademo_AttachmentType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="attachmentTypesTable"/>\n  </components>\n</settings>\n
060616a9-0a58-0020-4387-993e122eb746	2021-05-25 17:13:31.841	sidorov	0668cb56-bed5-3032-20bc-96779e763230	W	extMainScreen	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="foldersSplit"/>  \n    <component name="foldersPane" splitPosition="50.0"/>  \n    <component name="eademo_StartWindowFragment.myPackagesDg"/>  \n    <component name="eademo_StartWindowFragment.forSigningDg"/>  \n    <component name="eademo_StartWindowFragment.notificationDg"/> \n  </components> \n</settings>\n
508dc36f-c6de-5144-0bc7-bcf5f2330296	2021-05-26 12:29:55.508	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_Employee.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="employeesTable"/>\n  </components>\n</settings>\n
985769b8-069d-17fc-f671-b8cacf00a002	2021-05-26 12:45:46.341	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_PackageAttachmentFTS.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="filter"> \n      <defaultFilter/> \n    </component>  \n    <component name="packageAttachmentsSBox"/>  \n    <component name="packageAttachmentsTable">\n      <columns sortProperty="" sortAscending="true">\n        <columns id="type" width="161" visible="true"/>\n        <columns id="file.name" width="243" visible="true"/>\n        <columns id="fileStringSize" width="102" visible="true"/>\n        <columns id="number" width="54" visible="true"/>\n        <columns id="date" width="44" visible="true"/>\n        <columns id="docPackageModel.amount" width="55" visible="true"/>\n        <columns id="barcode" width="121" visible="true"/>\n        <columns id="status" width="58" visible="true"/>\n        <columns id="description" width="91" visible="true"/>\n        <columns id="docPackageModel.pkgNum" width="171" visible="true"/>\n        <columns id="docPackageModel.pkgDate" width="143" visible="true"/>\n        <columns id="docPackageModel.pkgType" width="231" visible="true"/>\n        <columns id="docPackageModel.operationType" width="231" visible="true"/>\n        <columns id="docPackageModel.status" width="102" visible="true"/>\n        <columns id="docPackageModel.initiator" width="250" visible="true"/>\n        <columns id="docPackageModel.department" width="144" visible="true"/>\n      </columns>\n    </component>  \n    <component name="attachmentPreview"/> \n  </components> \n</settings>\n
bd16639e-a3f2-bb81-4ea5-4c08454f84ac	2021-05-26 13:41:11.776	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_PaperLocation.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="paperLocationsTable"/>\n  </components>\n</settings>\n
89f3bf23-7826-500a-efd8-3fa9c965203a	2021-05-26 13:42:29.929	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_OperationType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="operationTypesTable"/>\n  </components>\n</settings>\n
e8346a5a-7241-2b4f-7ec7-836b9b6e75e5	2021-05-26 13:42:52.184	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_PackageType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageTypesTable"/>\n  </components>\n</settings>\n
c3242d43-6fa5-9eac-a7be-bdaf1f5c101e	2021-05-26 13:42:54.454	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_DocPackageModel.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="docPackageModelsTable"/>\n  </components>\n</settings>\n
0635207f-de2b-12be-c6e2-61ca7b70445d	2021-05-26 14:42:48.003	antonov	d079f5fd-b964-c39e-a1b6-4ffc099c13d6	W	eademo_BoxOperator.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="paperLocationsTable"/>\n  </components>\n</settings>\n
3b619c56-7343-028c-8f28-385871592cd1	2021-05-26 15:35:53.53	sergeev	e1911add-6fd0-9e69-c655-6bc39fc06fdb	W	eademo_BoxArchivist.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="paperLocationsTable"/>\n  </components>\n</settings>\n
ab6483d8-a0ca-e579-27b0-630b6d5e2f5e	2021-05-26 17:16:35.57	admin	60885987-1b61-4247-94c7-dff348347f93	W	appProperties	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings> \n  <components> \n    <component name="paramsTable"> \n      <columns sortProperty="name" sortAscending="true">\n        <columns id="name" width="182" visible="true"/>\n        <columns id="displayedCurrentValue" width="334" visible="true"/>\n        <columns id="updateTs" width="312" visible="true"/>\n        <columns id="updatedBy" width="282" visible="true"/>\n      </columns>\n    </component>  \n    <component name="hintBox"/> \n  </components> \n</settings>\n
53d55fd7-1420-9400-0250-c265f988684a	2021-05-27 18:55:21.54	diadoc	4749b08a-0141-ce93-ef4e-efcedc87d28c	W	eademo_PackageType.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="packageTypesTable"/>\n  </components>\n</settings>\n
e2d31afb-0960-fd10-4d28-4fa65347b2de	2021-05-27 18:56:03.077	diadoc	4749b08a-0141-ce93-ef4e-efcedc87d28c	W	eademo_Employee.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="employeesTable"/>\n  </components>\n</settings>\n
c4debf2a-9836-5c98-a05c-b55a8dc402cf	2021-05-27 18:57:26.163	diadoc	4749b08a-0141-ce93-ef4e-efcedc87d28c	W	eademo_Bank.browse	<?xml version="1.0" encoding="UTF-8"?>\n\n<settings>\n  <components>\n    <component name="filter">\n      <defaultFilter/>\n    </component>\n    <component name="banksTable"/>\n  </components>\n</settings>\n
\.


--
-- Data for Name: sec_user_substitution; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sec_user_substitution (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, user_id, substituted_user_id, start_date, end_date) FROM stdin;
\.


--
-- Data for Name: sys_app_folder; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_app_folder (folder_id, filter_component, filter_xml, visibility_script, quantity_script, apply_default) FROM stdin;
eafb764d-1939-7939-4b09-23dd2a6be010	[eademo_DocPackageModel.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.DocPackageState"\n           inExpr="true"\n           operatorType="IN"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status in :component$filter.status30855]]>\n            <param name="component$filter.status30855" javaClass="ru.digitalleague.ecm.eademo.entity.DocPackageState">REJECTED,DRAFT,SIGNING,REVIEW</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.inwork\n\n	package ru.digitalleague.ecm.eademo.appfolders.inwork\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.status IN ('DRAFT', 'REJECTED', 'REVIEW', 'SIGNING')", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
28bfd13f-2491-a48f-feb1-1b2b2d772e8d	[eademo_DocPackageModel.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.DocPackageState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09204]]>\n            <param name="component$filter.status09204" javaClass="ru.digitalleague.ecm.eademo.entity.DocPackageState">DRAFT</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.draft\n\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.draft\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.status = 'DRAFT'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count\n	t
f4739793-aa88-0603-0c67-03c545cf6e4a	[eademo_DocPackageModel.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.DocPackageState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09204]]>\n            <param name="component$filter.status09207" javaClass="ru.digitalleague.ecm.eademo.entity.DocPackageState">SIGNING</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.signing\n\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.signing\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.status = 'SIGNING'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
6f734e5e-7e34-cfb3-f612-45980c3276df	[eademo_DocPackageModel.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.DocPackageState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09206]]>\n            <param name="component$filter.status09206" javaClass="ru.digitalleague.ecm.eademo.entity.DocPackageState">REVIEW</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.review\n\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.review\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.status = 'REVIEW'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
a3a88c38-5f32-428a-5ab5-680b2e9b088f	[eademo_DocPackageModel.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.DocPackageState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09205]]>\n            <param name="component$filter.status09205" javaClass="ru.digitalleague.ecm.eademo.entity.DocPackageState">REJECTED</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.rejected\n\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.rejected\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.status = 'REJECTED'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
9bf40f43-f6a3-a848-4e42-c1b5286426ed	[eademo_DocPackageModel.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.DocPackageState"\n           inExpr="true"\n           operatorType="IN"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status in :component$filter.status30855]]>\n            <param name="component$filter.status30855" javaClass="ru.digitalleague.ecm.eademo.entity.DocPackageState">REJECTED,DRAFT,INCOMPLETE</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.watchlist\n\n	package ru.digitalleague.ecm.eademo.appfolders.inwork.watchlist\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.status IN ('DRAFT', 'REJECTED', 'INCOMPLETE')", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
24015803-d2e7-bc2c-cb48-6c1879b15587	[eademo_DocPackageModel.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="initiator"\n           hidden="true"\n           type="CUSTOM"><![CDATA[e.initiator.user.id = :session$userId]]>\n            <param name="component$filter.initiator30855">true</param>\n        </c>\n    </and>\n</filter>	package ru.digitalleague.ecm.eademo.appfolders.mypackages\n\n	package ru.digitalleague.ecm.eademo.appfolders.mypackages\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\nimport com.haulmont.cuba.core.global.UserSessionSource\n\ndef dm = AppBeans.get(DataManager.class)\nUUID userId = AppBeans.get(UserSessionSource.class).currentOrSubstitutedUserId()\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.initiator.user.id = :userId", Integer.class).parameter("userId", userId).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
9e1789e4-0ecf-dfb3-0852-f16be823f4b3	[eademo_DocPackageModel.sign].filter		package ru.digitalleague.ecm.eademo.appfolders.forsigning\n\n	package ru.digitalleague.ecm.eademo.appfolders.forsigning\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\nimport com.haulmont.cuba.core.global.UserSessionSource\n\ndef dm = AppBeans.get(DataManager.class)\nUUID userId = AppBeans.get(UserSessionSource.class).currentOrSubstitutedUserId()\ndef count = dm.loadValue("select distinct count(e) from eademo_DocPackageModel e where e.status = 'SIGNING' and exists (select s from eademo_Signatory s where s.docPackageModel.id = e.id and s.employee.user.id = :userId and s.status = 'UNSIGNED' and s member of e.signatories)", Integer.class).parameter("userId", userId).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
5a659a10-e2f7-9ac0-6603-08061b2fbf63	[eademo_ImportantBrowse].filter	\N	\N	style = null	t
89b0269e-1ce8-c8c5-9136-9981c2e87abe	[eademo_DocPackageModelContract.browse].filter	\N	\N	import com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(d) from eademo_DocPackageModel d where d.contractType is not null", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
9e0d5011-61f4-e72b-2c2e-69061fc4850c	[eademo_Basket.browse].filter	\N	\N	package ru.digitalleague.ecm.eademo.appfolders.baskets\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(b) from eademo_Basket b", Integer.class)\n        .one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count	t
71b6beae-2a9e-fd79-0485-32a14e8dd99f	\N	\N	\N	\N	t
19b98f47-d930-05e2-93d1-d92550ec6848	[eademo_AttributeAssignmentTask.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09204]]>\n            <param name="component$filter.status09204" javaClass="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState">DRAFT</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.draft\n\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.draft\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(e) from eademo_AttributeAssignmentTask e where e.status = 'DRAFT'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count\n	t
1928edb1-cdbc-0ff7-cc36-721b7be0a865	[eademo_AttributeAssignmentTask.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09204]]>\n            <param name="component$filter.status09204" javaClass="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState">WAIT</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.wait\n\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.wait\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(e) from eademo_AttributeAssignmentTask e where e.status = 'WAIT'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count\n	t
f47130dd-d2ff-fadf-b2e1-958f9eb09fc6	[eademo_AttributeAssignmentTask.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09204]]>\n            <param name="component$filter.status09204" javaClass="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState">FINISHED</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.finished\n\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.finished\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(e) from eademo_AttributeAssignmentTask e where e.status = 'FINISHED'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count\n	t
84c527dd-edcb-cd18-e13e-280c0d2f65e3	[eademo_AttributeAssignmentTask.browse].filter	<?xml version="1.0" encoding="UTF-8"?>\n<filter>\n    <and>\n        <c name="status"\n           class="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState"\n           operatorType="EQUAL"\n           width="1"\n           type="PROPERTY">\n            <![CDATA[e.status = :component$filter.status09204]]>\n            <param name="component$filter.status09204" javaClass="ru.digitalleague.ecm.eademo.entity.AttributeAssignmentsState">ERROR</param>\n        </c>\n    </and>\n</filter>\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.error\n\n	package ru.digitalleague.ecm.eademo.appfolders.attrassignment.error\n\nimport com.haulmont.cuba.core.global.AppBeans\nimport com.haulmont.cuba.core.global.DataManager\n\ndef dm = AppBeans.get(DataManager.class)\ndef count = dm.loadValue("select count(e) from eademo_AttributeAssignmentTask e where e.status = 'ERROR'", Integer.class).one()\n\nstyle = count > 0 ? 'emphasized' : null\nreturn count\n	t
\.


--
-- Data for Name: sys_attr_value; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_attr_value (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, category_attr_id, code, entity_id, string_entity_id, int_entity_id, long_entity_id, string_value, integer_value, double_value, decimal_value, date_value, date_wo_time_value, boolean_value, entity_value, string_entity_value, int_entity_value, long_entity_value, parent_id) FROM stdin;
\.


--
-- Data for Name: sys_category; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_category (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, name, special, entity_type, is_default, discriminator, locale_names) FROM stdin;
\.


--
-- Data for Name: sys_category_attr; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_category_attr (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, category_entity_type, name, code, description, category_id, entity_class, data_type, default_string, default_int, default_double, default_decimal, default_date, default_date_wo_time, default_date_is_current, default_boolean, default_entity_value, default_str_entity_value, default_int_entity_value, default_long_entity_value, enumeration, order_no, screen, required, lookup, target_screens, width, rows_count, is_collection, join_clause, where_clause, filter_xml, locale_names, locale_descriptions, enumeration_locales, attribute_configuration_json) FROM stdin;
\.


--
-- Data for Name: sys_config; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_config (id, create_ts, created_by, version, update_ts, updated_by, name, value_) FROM stdin;
4384463a-149b-082f-c6ed-6f7c63892a6d	2021-05-26 17:15:02.653	admin	1	2021-05-26 17:15:02.653	\N	eademo.diadoc.login	trser80@list.ru
2b90d153-bf4b-54dc-abb5-6859ce3abc16	2021-05-26 17:15:11.602	admin	1	2021-05-26 17:15:11.602	\N	eademo.diadoc.password	1234Еуые
093af9a2-59bd-b8ed-6315-ecffcd668744	2021-05-26 17:18:36.172	admin	1	2021-05-26 17:18:36.172	\N	eademo.diadoc.url	https://diadoc-api.kontur.ru
d5940fcc-0a1d-d6e0-8d83-c1910f375d3c	2021-05-26 17:19:33.949	admin	1	2021-05-26 17:19:33.949	\N	eademo.diadoc.clientId	dfs-32631db0ee954b22ad8d09c3fb6b9bf4
\.


--
-- Data for Name: sys_db_changelog; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_db_changelog (script_name, create_ts, is_init) FROM stdin;
10-cuba/init/postgres/create-db.sql	2021-05-19 17:09:48.351136	1
20-reports/init/postgres/create-db.sql	2021-05-19 17:09:48.78595	1
50-eademo/init/postgres/10.create-db.sql	2021-05-19 17:09:50.224054	1
50-eademo/init/postgres/20.create-db.sql	2021-05-19 17:09:52.212649	1
50-eademo/init/postgres/30.create-db.sql	2021-05-19 17:09:52.825134	1
50-eademo/init/postgres/createDiadocScheduledTask.create-db.sql	2021-05-19 17:09:52.82982	1
50-eademo/init/postgres/createEmailSenderScheduledTask.create-db.sql	2021-05-19 17:09:52.833603	1
50-eademo/init/postgres/createSapCleanTask.create-db.sql	2021-05-19 17:09:52.837529	1
50-eademo/init/postgres/createSapPaymentsUploadScheduledTask.create-db.sql	2021-05-19 17:09:52.842475	1
50-eademo/init/postgres/createSapUnloadTask.create-db.sql	2021-05-19 17:09:52.846004	1
50-eademo/init/postgres/createSapUploadTask.create-db.sql	2021-05-19 17:09:52.849442	1
50-eademo/init/postgres/createScanScheduledTask.create-db.sql	2021-05-19 17:09:52.852686	1
50-eademo/init/postgres/createUploadProcessingScheduledTask.create-db.sql	2021-05-19 17:09:52.855957	1
50-eademo/init/postgres/updateRolesForReportModule.create-db.sql	2021-05-19 17:09:55.1467	1
10-cuba/update/postgres/01/01-010-addValueIdToEntityLog.sql	2021-05-19 17:09:55.318183	1
10-cuba/update/postgres/01/01-020-dropDbUpdatePKey.sql	2021-05-19 17:09:55.319664	1
10-cuba/update/postgres/01/01-030-add_EntityLogAttr_messagesPack.sql	2021-05-19 17:09:55.320934	1
10-cuba/update/postgres/01/01-040-renameUserPosition.sql	2021-05-19 17:09:55.322156	1
10-cuba/update/postgres/01/01-050-addUserLanguage.sql	2021-05-19 17:09:55.323463	1
10-cuba/update/postgres/01/01-050-sysFtsQueue.sql	2021-05-19 17:09:55.325181	1
10-cuba/update/postgres/01/01-055-createReportTables.sql	2021-05-19 17:09:55.326297	1
10-cuba/update/postgres/01/01-060-addReportParameterPosition.sql	2021-05-19 17:09:55.327583	1
10-cuba/update/postgres/01/01-070-addCodeInFolder.sql	2021-05-19 17:09:55.328842	1
10-cuba/update/postgres/01/01-080-SessionAttributes.sql	2021-05-19 17:09:55.330098	1
10-cuba/update/postgres/01/01-090-ChangeReportKeys.sql	2021-05-19 17:09:55.331385	1
10-cuba/update/postgres/01/01-100-EntityStatistics.sql	2021-05-19 17:09:55.332684	1
10-cuba/update/postgres/01/01-100-addPresentations.sql	2021-05-19 17:09:55.334513	1
10-cuba/update/postgres/01/01-110-AddFieldInSysFolder.sql	2021-05-19 17:09:55.335877	1
10-cuba/update/postgres/01/01-120-AddCodeFieldInSecFilter.sql	2021-05-19 17:09:55.337232	1
10-cuba/update/postgres/01/01-130-createReportValueFormatTable.sql	2021-05-19 17:09:55.338512	1
10-cuba/update/postgres/01/01-140-AddTabHistory.sql	2021-05-19 17:09:55.339937	1
10-cuba/update/postgres/01/01-150-CreateIndexes.sql	2021-05-19 17:09:55.341259	1
10-cuba/update/postgres/01/01-160-screenHistory.sql	2021-05-19 17:09:55.342485	1
10-cuba/update/postgres/01/01-170-entityStatisticsFetchUI.sql	2021-05-19 17:09:55.343728	1
10-cuba/update/postgres/01/01-180-changeAppFoldersScriptsLength.sql	2021-05-19 17:09:55.34513	1
10-cuba/update/postgres/01/01-190-renameDoubleNameInSysFolder.sql	2021-05-19 17:09:55.346335	1
10-cuba/update/postgres/01/01-200-deleteCodeInSysFolders.sql	2021-05-19 17:09:55.34761	1
10-cuba/update/postgres/01/01-210-updateTabNameInSysFolder.sql	2021-05-19 17:09:55.348825	1
10-cuba/update/postgres/01/01-220-reportTablesChangeColumns.sql	2021-05-19 17:09:55.35028	1
10-cuba/update/postgres/01/01-230-reportParameterAddEnumClass.sql	2021-05-19 17:09:55.35149	1
10-cuba/update/postgres/01/01-240-userIpMask.sql	2021-05-19 17:09:55.35283	1
10-cuba/update/postgres/01/01-250-entityStatLookupScreenThreshold.sql	2021-05-19 17:09:55.354214	1
10-cuba/update/postgres/01/01-260-reportTemplatesTable.sql	2021-05-19 17:09:55.355522	1
10-cuba/update/postgres/01/01-270-sendingMessagesHistory.sql	2021-05-19 17:09:55.356739	1
10-cuba/update/postgres/01/01-280-addApplyDefault.sql	2021-05-19 17:09:55.357923	1
10-cuba/update/postgres/01/01-290-addIsSetToSearchFolder.sql	2021-05-19 17:09:55.359174	1
10-cuba/update/postgres/01/01-300-addEntitySnapshotTable.sql	2021-05-19 17:09:55.360373	1
10-cuba/update/postgres/01/01-310-RuntimePropertiesTables.sql	2021-05-19 17:09:55.36157	1
10-cuba/update/postgres/01/01-320-RuntimePropertiesRework.sql	2021-05-19 17:09:55.363156	1
10-cuba/update/postgres/01/01-330-CategoryAttrAlterType.sql	2021-05-19 17:09:55.364403	1
10-cuba/update/postgres/01/01-340-CategoryDiscriminator.sql	2021-05-19 17:09:55.365782	1
10-cuba/update/postgres/01/01-350-categoryAttrOrderNo.sql	2021-05-19 17:09:55.366985	1
10-cuba/update/postgres/01/01-360-CategoryAttrScreen.sql	2021-05-19 17:09:55.368191	1
10-cuba/update/postgres/01/01-370-CategoryAttrRequired.sql	2021-05-19 17:09:55.369483	1
10-cuba/update/postgres/01/01-380-AlterTypeColumnUrlInScreenHistory.sql	2021-05-19 17:09:55.370785	1
10-cuba/update/postgres/01/01-390-AlterTableSysCategoryAttr.sql	2021-05-19 17:09:55.372038	1
10-cuba/update/postgres/01/01-400-AlterTableSysAttrValue.sql	2021-05-19 17:09:55.374332	1
10-cuba/update/postgres/01/01-410-addDataSetParams.sql	2021-05-19 17:09:55.375645	1
10-cuba/update/postgres/01/01-410-addStartDateToUserSubstitution.sql	2021-05-19 17:09:55.376876	1
10-cuba/update/postgres/01/01-420-addEntityIdToScreenHistory.sql	2021-05-19 17:09:55.378766	1
10-cuba/update/postgres/01/01-440-addDropdownToCategoryAttribute.sql	2021-05-19 17:09:55.379982	1
10-cuba/update/postgres/01/01-450-alterSecConstraint.sql	2021-05-19 17:09:55.3812	1
10-cuba/update/postgres/02/02-010-addScheduledTasks.sql	2021-05-19 17:09:55.382446	1
10-cuba/update/postgres/02/02-020-alterDoubleValueColumnInSysAttrValueTable.sql	2021-05-19 17:09:55.383756	1
10-cuba/update/postgres/02/02-030-addReportGroup.sql	2021-05-19 17:09:55.385162	1
10-cuba/update/postgres/02/02-040-addReportRefToBand.sql	2021-05-19 17:09:55.387432	1
10-cuba/update/postgres/02/02-050-reportLocales.sql	2021-05-19 17:09:55.389465	1
10-cuba/update/postgres/02/02-060-reportCode.sql	2021-05-19 17:09:55.392579	1
10-cuba/update/postgres/02/02-070-addRoleType.sql	2021-05-19 17:09:55.39478	1
10-cuba/update/postgres/02/02-080-addSnapshotDate.sql	2021-05-19 17:09:55.39622	1
10-cuba/update/postgres/02/02-090-schedulingDaylightSaving.sql	2021-05-19 17:09:55.400737	1
10-cuba/update/postgres/02/02-100-entitySnapshotAuthor.sql	2021-05-19 17:09:55.403927	1
10-cuba/update/postgres/02/02-110-addDefaultDateIsCurrent.sql	2021-05-19 17:09:55.405492	1
10-cuba/update/postgres/02/02-120-addUserDescriminator.sql	2021-05-19 17:09:55.407067	1
10-cuba/update/postgres/02/02-130-alterSecConstraint.sql	2021-05-19 17:09:55.408574	1
10-cuba/update/postgres/02/02-130-queryResults.sql	2021-05-19 17:09:55.409799	1
10-cuba/update/postgres/02/02-140-entityLogChanges.sql	2021-05-19 17:09:55.411209	1
10-cuba/update/postgres/02/02-150-alterSysScheduledTask.sql	2021-05-19 17:09:55.413115	1
10-cuba/update/postgres/12/121002-updateScreenPermissions.sql	2021-05-19 17:09:55.4142	1
10-cuba/update/postgres/12/121003-addCodeToCategoryAttribute.sql	2021-05-19 17:09:55.415441	1
10-cuba/update/postgres/12/121004-addFieldsToScheduledTasks.sql	2021-05-19 17:09:55.416687	1
10-cuba/update/postgres/12/121020-addLoginConstraintsForUser.sql	2021-05-19 17:09:55.418008	1
10-cuba/update/postgres/12/121024-addEncryptionParamsToUser.sql	2021-05-19 17:09:55.419195	1
10-cuba/update/postgres/12/121031-dropPasswordColumnFromScheduledTask.sql	2021-05-19 17:09:55.4204	1
10-cuba/update/postgres/12/121102-dropSaltColumn.sql	2021-05-19 17:09:55.421667	1
10-cuba/update/postgres/12/121114-addDescriptionToScheduledTask.sql	2021-05-19 17:09:55.422911	1
10-cuba/update/postgres/12/121228-addJmxInstance.sql	2021-05-19 17:09:55.424135	1
10-cuba/update/postgres/13/130110-removeJmxInstanceDescription.sql	2021-05-19 17:09:55.425551	1
10-cuba/update/postgres/13/130311-renameColumnsForOracle.sql	2021-05-19 17:09:55.42683	1
10-cuba/update/postgres/13/130731-changeServerEntity.sql	2021-05-19 17:09:55.428322	1
10-cuba/update/postgres/13/130918-email-attachment-options.sql	2021-05-19 17:09:55.429534	1
10-cuba/update/postgres/13/130920-email-file-storage.sql	2021-05-19 17:09:55.430884	1
10-cuba/update/postgres/13/130923-permissionsToRenamedScreens.sql	2021-05-19 17:09:55.432222	1
10-cuba/update/postgres/13/131108-sending-message-timeshift.sql	2021-05-19 17:09:55.433434	1
10-cuba/update/postgres/13/131112-scheduled-task-cron.sql	2021-05-19 17:09:55.434722	1
10-cuba/update/postgres/14/140313-ftsQueueIndexingHost.sql	2021-05-19 17:09:55.435965	1
10-cuba/update/postgres/14/140405-changeTypeForSysConfigValue.sql	2021-05-19 17:09:55.437189	1
10-cuba/update/postgres/14/140708-addRememberMeTable.sql	2021-05-19 17:09:55.438558	1
10-cuba/update/postgres/14/140716-changeSysFileSizeType.sql	2021-05-19 17:09:55.439738	1
10-cuba/update/postgres/14/141203-setNotNullSysFileName.sql	2021-05-19 17:09:55.441025	1
10-cuba/update/postgres/15/150203-sendingMessageEmailHeaders.sql	2021-05-19 17:09:55.442331	1
10-cuba/update/postgres/15/150203-userTimeZone.sql	2021-05-19 17:09:55.443604	1
10-cuba/update/postgres/15/150205-addSubstituteUserInScreenHistory.sql	2021-05-19 17:09:55.444945	1
10-cuba/update/postgres/15/150226-addIndexInScreenHistory.sql	2021-05-19 17:09:55.446048	1
10-cuba/update/postgres/15/150310-alterFilterXml.sql	2021-05-19 17:09:55.447389	1
10-cuba/update/postgres/15/150417-runtimePropertiesChanges.sql	2021-05-19 17:09:55.448721	1
10-cuba/update/postgres/15/150514-categoryEntityTypeInAttribute.sql	2021-05-19 17:09:55.44999	1
10-cuba/update/postgres/15/150630-entityClassToCategoryAttribute.sql	2021-05-19 17:09:55.451286	1
10-cuba/update/postgres/15/150805-fakeFtsQueue.sql	2021-05-19 17:09:55.452757	1
10-cuba/update/postgres/15/151106-extendScheduledTaskFields.sql	2021-05-19 17:09:55.454288	1
10-cuba/update/postgres/15/151116-rowLevelSecurity.sql	2021-05-19 17:09:55.455595	1
10-cuba/update/postgres/15/151228-sendingMessagesExtendFields.sql	2021-05-19 17:09:55.456865	1
10-cuba/update/postgres/15/1512282-addIsActiveToConstraint.sql	2021-05-19 17:09:55.458187	1
10-cuba/update/postgres/16/160322-dropUniqSysScheduledTaskBeanMethodConstraint.sql	2021-05-19 17:09:55.459844	1
10-cuba/update/postgres/16/160405-createUniqSysCategory.sql	2021-05-19 17:09:55.461249	1
10-cuba/update/postgres/16/160420-createUpdateTsIndexOnSysSendingMessage.sql	2021-05-19 17:09:55.462512	1
10-cuba/update/postgres/16/160616-addSizeCategoryAttribute.sql	2021-05-19 17:09:55.463879	1
10-cuba/update/postgres/16/160626-createIndexOnFinishTimeScheduledExecution.sql	2021-05-19 17:09:55.465118	1
10-cuba/update/postgres/16/160725-anonymousLogin.sql	2021-05-19 17:09:55.466328	1
10-cuba/update/postgres/16/160916-addEntityIdToFtsQueue.sql	2021-05-19 17:09:55.467752	1
10-cuba/update/postgres/16/161024-collectionDynamicAttributes.sql	2021-05-19 17:09:55.468961	1
10-cuba/update/postgres/16/161025-sysAttrValueParentConstraint.sql	2021-05-19 17:09:55.470146	1
10-cuba/update/postgres/16/161102-setIsCollectionForExistingCategoryAttrs.sql	2021-05-19 17:09:55.471979	1
10-cuba/update/postgres/16/161124-FilterXmlInCategoryAttr.sql	2021-05-19 17:09:55.473264	1
10-cuba/update/postgres/16/161124-joinAndWhereInCategoryAttr.sql	2021-05-19 17:09:55.474536	1
10-cuba/update/postgres/16/270916-addEntityIdToQueryResult.sql	2021-05-19 17:09:55.475809	1
10-cuba/update/postgres/17/170214-addEntityIdToSnapshot.sql	2021-05-19 17:09:55.477955	1
10-cuba/update/postgres/17/170215-addEntityIdToEntityLog.sql	2021-05-19 17:09:55.479472	1
10-cuba/update/postgres/17/170221-addEntityIdToAttributeValue.sql	2021-05-19 17:09:55.48139	1
10-cuba/update/postgres/17/170228-createRestApiTokenTable.sql	2021-05-19 17:09:55.4827	1
10-cuba/update/postgres/17/170502-createSessionHistoryTable.sql	2021-05-19 17:09:55.483986	1
10-cuba/update/postgres/17/170620-alterConstraints.sql	2021-05-19 17:09:55.485335	1
10-cuba/update/postgres/17/170712-createLocalizedConstraintMessageTable.sql	2021-05-19 17:09:55.486729	1
10-cuba/update/postgres/17/170829-addLocaleNameColumnToCategory.sql	2021-05-19 17:09:55.488078	1
10-cuba/update/postgres/17/171002-addUserLoginToRestApiToken.sql	2021-05-19 17:09:55.489454	1
10-cuba/update/postgres/17/171116-addGlobalDefaultToFilterEntity.sql	2021-05-19 17:09:55.490788	1
10-cuba/update/postgres/17/171121-addLocaleToRestApiToken.sql	2021-05-19 17:09:55.493481	1
10-cuba/update/postgres/17/1712011000-createRestApiRefreshTokenTable.sql	2021-05-19 17:09:55.494972	1
10-cuba/update/postgres/17/1712011010-renameRestApiTokenColumns.sql	2021-05-19 17:09:55.496595	1
10-cuba/update/postgres/17/1712011010-renameRestApiTokenTable.sql	2021-05-19 17:09:55.498344	1
10-cuba/update/postgres/17/171227-createIndexStartedTsDescToSessionLog.sql	2021-05-19 17:09:55.499648	1
10-cuba/update/postgres/17/171229-addRefreshTokenColumnToAccessTokenTable.sql	2021-05-19 17:09:55.503413	1
10-cuba/update/postgres/18/180112-alterDynamicAttributeDoubleType.sql	2021-05-19 17:09:55.504527	1
10-cuba/update/postgres/18/180312-renameColumns.sql	2021-05-19 17:09:55.505773	1
10-cuba/update/postgres/18/180321-addContentBodyTypeColumnToSendingMessage.sql	2021-05-19 17:09:55.508036	1
10-cuba/update/postgres/18/180331-truncateQueryResultTable.sql	2021-05-19 17:09:55.51017	1
10-cuba/update/postgres/18/180704-addNotNullForConfig.sql	2021-05-19 17:09:55.511938	1
10-cuba/update/postgres/18/181024-addCcAndBccToSendingMessage.sql	2021-05-19 17:09:55.513419	1
10-cuba/update/postgres/18/181210-addUserPasswordEncryption.sql	2021-05-19 17:09:55.515937	1
10-cuba/update/postgres/18/181227-addScreenHistorySupportedIdTypes.sql	2021-05-19 17:09:55.517087	1
10-cuba/update/postgres/19/190321-addEntityLogInstanceName.sql	2021-05-19 17:09:55.518639	1
10-cuba/update/postgres/19/190326-renameScheduledTaskColumns.sql	2021-05-19 17:09:55.520725	1
10-cuba/update/postgres/19/190408-addNewDynamicAttrType.sql	2021-05-19 17:09:55.522041	1
10-cuba/update/postgres/19/190410-addDescriptionFieldForDynamicAttributes.sql	2021-05-19 17:09:55.523584	1
10-cuba/update/postgres/19/190627-dynamicAttributesImprovements.sql	2021-05-19 17:09:55.524965	1
20-reports/update/postgres/02-150-removeReportRootDefinitionId.sql	2021-05-19 17:09:55.526681	1
20-reports/update/postgres/02-170-reportingNotNullConstraints.sql	2021-05-19 17:09:55.528448	1
20-reports/update/postgres/13/130311-renameColumnsForOracle.sql	2021-05-19 17:09:55.530251	1
20-reports/update/postgres/13/130606-addOutputNamePattern.sql	2021-05-19 17:09:55.53205	1
20-reports/update/postgres/13/130828-addDefaultTemplate.sql	2021-05-19 17:09:55.534602	1
20-reports/update/postgres/13/130830-newStructure.sql	2021-05-19 17:09:55.537107	1
20-reports/update/postgres/13/130903-migrateReports.groovy	2021-05-19 17:09:55.538568	1
20-reports/update/postgres/13/130912-reportConstraints.sql	2021-05-19 17:09:55.540006	1
20-reports/update/postgres/14/141105-customDefinedByField.sql	2021-05-19 17:09:55.541437	1
20-reports/update/postgres/16/160427-reportDescriptionField.sql	2021-05-19 17:09:55.542732	1
20-reports/update/postgres/17/170131-addFieldsForAvailableReports.sql	2021-05-19 17:09:55.544837	1
20-reports/update/postgres/17/170201-migrateSecurityIndex.upgrade.groovy	2021-05-19 17:09:55.546174	1
20-reports/update/postgres/17/170825-addSoftDeleteColumns.sql	2021-05-19 17:09:55.547795	1
20-reports/update/postgres/17/170927-addAlterableOutputType.sql	2021-05-19 17:09:55.549139	1
20-reports/update/postgres/17/171102-setDefaultValueForAlterableOutput.sql	2021-05-19 17:09:55.550477	1
20-reports/update/postgres/18/180718-addRestAccessToReport.sql	2021-05-19 17:09:55.551779	1
20-reports/update/postgres/18/180730-addSystemToReport.sql	2021-05-19 17:09:55.55308	1
20-reports/update/postgres/18/181031-addGroovyToReportTemplate.sql	2021-05-19 17:09:55.554423	1
\.


--
-- Data for Name: sys_entity_snapshot; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_entity_snapshot (id, create_ts, created_by, entity_meta_class, entity_id, string_entity_id, int_entity_id, long_entity_id, author_id, view_xml, snapshot_xml, snapshot_date) FROM stdin;
\.


--
-- Data for Name: sys_entity_statistics; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_entity_statistics (id, create_ts, created_by, update_ts, updated_by, name, instance_count, fetch_ui, max_fetch_ui, lazy_collection_threshold, lookup_screen_threshold) FROM stdin;
\.


--
-- Data for Name: sys_file; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_file (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, name, ext, file_size, create_date) FROM stdin;
16494b14-6a65-4c85-d710-eadaba60434d	2021-05-24 13:05:11.679	ivanov	1	2021-05-24 13:05:11.679	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-24 13:05:11.372
6e8fa644-2ea1-1673-4bf8-2ab6dfb16233	2021-05-24 13:07:05.387	ivanov	1	2021-05-24 13:07:05.387	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-24 13:07:05.382
3a7d4fcf-c12e-ffaf-b65b-2edfba4bda9d	2021-05-24 13:18:52.696	ivanov	1	2021-05-24 13:18:52.696	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-24 13:18:52.684
bea83cd8-3fbe-71c4-1323-3af92118d0d6	2021-05-24 13:19:02.46	ivanov	1	2021-05-24 13:19:02.46	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-24 13:19:02.451
2dd84396-fe1b-15d8-af3a-d2f23633ac2d	2021-05-24 18:53:19.603	ivanov	1	2021-05-24 18:53:19.603	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-24 18:53:19.596
398379a3-b0be-2ef1-b7ed-567d07eb4a30	2021-05-24 18:53:28.201	ivanov	1	2021-05-24 18:53:28.201	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-24 18:53:28.183
cc93ea13-bea6-5219-85e1-2bd5d17e4135	2021-05-25 14:14:37.58	ivanov	1	2021-05-25 14:14:37.58	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-25 14:14:37.573
dd7b2c64-b300-6b01-8805-ccb650c6a327	2021-05-25 14:14:44.358	ivanov	1	2021-05-25 14:14:44.358	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-25 14:14:44.354
1ea0747d-a07a-227c-db36-89f88f627e01	2021-05-25 15:19:50.641	ivanov	1	2021-05-25 15:19:50.641	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-25 15:19:50.629
efe9b057-5ea5-37f7-c032-7a3f2fdeb858	2021-05-25 15:20:26.456	ivanov	1	2021-05-25 15:20:26.456	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-25 15:20:26.441
a359acf1-ade3-0aad-b17e-ba10a827dea0	2021-05-25 17:40:12.207	semenov	1	2021-05-25 17:40:12.207	\N	\N	\N	Бухгалтерская справка.doc	doc	30208	2021-05-25 17:40:12.196
9497ba22-d3a0-b5ef-ef94-cd9e71c323bc	2021-05-25 17:43:26.532	semenov	1	2021-05-25 17:43:26.532	\N	\N	\N	Бухгалтерская справка.doc	doc	30208	2021-05-25 17:43:26.527
01bbf7bb-36b9-09a1-459c-e953ab32ffec	2021-05-26 12:18:18.417	ivanov	1	2021-05-26 12:18:18.417	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-26 12:18:18.375
33b48083-a9ef-4b6d-be0e-80c34e6ca314	2021-05-26 12:18:59.878	ivanov	1	2021-05-26 12:18:59.878	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-26 12:18:59.867
975c37bb-207b-cd97-7da6-fd3080284b82	2021-05-26 13:29:55.342	ivanov	1	2021-05-26 13:29:55.342	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-26 13:29:55.323
7f62a096-f152-a0fe-6c33-aec9f23e2525	2021-05-26 13:30:08.27	ivanov	1	2021-05-26 13:30:08.27	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-26 13:30:08.265
2591edf0-ab82-1403-2ae0-4d4364004158	2021-05-26 14:26:08.231	ivanov	1	2021-05-26 14:26:08.231	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-26 14:26:08.221
2c608f69-0244-0859-74f2-4eb89a6b8c85	2021-05-26 14:26:21.459	ivanov	1	2021-05-26 14:26:21.459	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-26 14:26:21.453
d5e00c53-a97e-55ec-2a2f-a3c8b31457de	2021-05-26 14:44:17.529	ivanov	1	2021-05-26 14:44:17.529	\N	\N	\N	Счет за гостиницу.jpg	jpg	35986	2021-05-26 14:44:17.521
70d46c39-e056-6ec8-b723-d8eddaefc07a	2021-05-26 14:44:33.007	ivanov	1	2021-05-26 14:44:33.007	\N	\N	\N	Пояснительная записки к счету.docx	docx	11521	2021-05-26 14:44:33.002
47bf74bf-058e-b87c-b551-adf261c25a1e	2021-05-26 17:20:28.951	admin	1	2021-05-26 17:20:28.951	\N	\N	\N	УПД №1111111 от 21.04.20.zip	zip	239436	2021-05-26 17:20:28.95
f5c6d160-d718-8a16-6813-26bef3acd04f	2021-05-26 17:20:28.951	admin	1	2021-05-26 17:20:28.951	\N	\N	\N	Протокол.pdf	pdf	79318	2021-05-26 17:20:28.948
de3cfbd6-43d1-c1b6-6830-921d2233cf22	2021-05-26 17:20:28.951	admin	1	2021-05-26 17:20:28.951	\N	\N	\N	Печатная форма УПД №1111111 от 21.04.20.pdf	pdf	121487	2021-05-26 17:20:28.949
b5bdc0b1-9259-2f0a-5426-876f0c823197	2021-05-26 17:23:42.888	admin	1	2021-05-26 17:23:42.888	\N	\N	\N	Протокол.pdf	pdf	79311	2021-05-26 17:23:42.887
2fcd655c-806a-faf8-4e68-4a7705ccc22e	2021-05-26 17:23:42.888	admin	1	2021-05-26 17:23:42.888	\N	\N	\N	Печатная форма УПД №1121 от 23.04.20.pdf	pdf	122057	2021-05-26 17:23:42.887
5b2e2905-003a-63ae-b852-64e16fcab502	2021-05-26 17:23:42.888	admin	1	2021-05-26 17:23:42.888	\N	\N	\N	УПД №1121 от 23.04.20.zip	zip	239838	2021-05-26 17:23:42.887
f8a13011-f638-37f1-6234-292092b22060	2021-05-26 17:25:43.004	admin	1	2021-05-26 17:25:43.004	\N	\N	\N	Акт №121212 от 22.04.20.zip	zip	184062	2021-05-26 17:25:43.004
c598d839-693f-87b8-79ec-92b28c3fd2e5	2021-05-26 17:25:43.004	admin	1	2021-05-26 17:25:43.004	\N	\N	\N	Протокол.pdf	pdf	77276	2021-05-26 17:25:43.003
cc1a1534-1883-e8fa-2ba5-75c962603b3c	2021-05-26 17:25:43.004	admin	1	2021-05-26 17:25:43.004	\N	\N	\N	Печатная форма Акт №121212 от 22.04.20.pdf	pdf	99126	2021-05-26 17:25:43.003
fd6a30cd-176c-d9bd-3a3d-2ac74f24af70	2021-05-27 10:14:38.967	admin	1	2021-05-27 10:14:38.967	\N	\N	\N	Печатная форма УПД №1111111 от 21.04.20.pdf	pdf	121487	2021-05-27 10:14:38.966
16401599-e52e-c870-bf37-20a4358528c5	2021-05-27 10:14:38.967	admin	1	2021-05-27 10:14:38.967	\N	\N	\N	УПД №1111111 от 21.04.20.zip	zip	239436	2021-05-27 10:14:38.966
c707a0c2-5fef-9472-e4c9-6d8785531383	2021-05-27 10:14:38.967	admin	1	2021-05-27 10:14:38.967	\N	\N	\N	Протокол.pdf	pdf	79318	2021-05-27 10:14:38.965
71042c41-fe2b-dd24-41e1-dc379feefa3a	2021-05-27 18:25:04.057	admin	1	2021-05-27 18:25:04.057	\N	\N	\N	Печатная форма Акт №23421342 от 22.04.20.pdf	pdf	99926	2021-05-27 18:25:04.056
306b8759-0067-ede8-de11-2744ebf45ec4	2021-05-27 18:25:04.058	admin	1	2021-05-27 18:25:04.058	\N	\N	\N	Акт №23421342 от 22.04.20.zip	zip	184872	2021-05-27 18:25:04.056
67c67ebf-52c3-84e4-aa5e-b61b9dfd982a	2021-05-27 18:25:04.057	admin	1	2021-05-27 18:25:04.057	\N	\N	\N	Протокол.pdf	pdf	77273	2021-05-27 18:25:04.055
4d3a89d5-07c1-76cd-d21b-5049df44a619	2021-05-27 18:30:11.834	admin	1	2021-05-27 18:30:11.834	\N	\N	\N	УПД №1121 от 23.04.20.zip	zip	239838	2021-05-27 18:30:11.833
4357de11-a504-779d-369e-3a1a49f7cecd	2021-05-27 18:30:11.834	admin	1	2021-05-27 18:30:11.834	\N	\N	\N	Протокол.pdf	pdf	79311	2021-05-27 18:30:11.832
62b153cc-7aa1-a9c8-0add-891f82f79250	2021-05-27 18:30:11.834	admin	1	2021-05-27 18:30:11.834	\N	\N	\N	Печатная форма УПД №1121 от 23.04.20.pdf	pdf	122057	2021-05-27 18:30:11.832
a825efc7-d18d-c5c5-b383-6a0e15e3035a	2021-05-27 18:30:45.689	admin	1	2021-05-27 18:30:45.689	\N	\N	\N	Протокол.pdf	pdf	77274	2021-05-27 18:30:45.688
06b6c9df-11f1-c694-3b92-0ad32b4f879b	2021-05-27 18:30:45.689	admin	1	2021-05-27 18:30:45.689	\N	\N	\N	Акт №111111 от 17.04.20.zip	zip	184626	2021-05-27 18:30:45.689
ae918504-f3c6-037b-4911-f60d9a7bb098	2021-05-27 18:30:45.689	admin	1	2021-05-27 18:30:45.689	\N	\N	\N	Печатная форма Акт №111111 от 17.04.20.pdf	pdf	99643	2021-05-27 18:30:45.688
ec04e56e-22bb-b7a8-6a7f-0f8e219b9849	2021-05-27 18:31:42.937	admin	1	2021-05-27 18:31:42.937	\N	\N	\N	Печатная форма УПД №12345 от 18.05.20.pdf	pdf	122509	2021-05-27 18:31:42.936
bdc083a2-ae9e-a242-b11e-037e625c5558	2021-05-27 18:31:42.937	admin	1	2021-05-27 18:31:42.937	\N	\N	\N	УПД №12345 от 18.05.20.zip	zip	227503	2021-05-27 18:31:42.937
f2660cdc-4506-a491-ffa5-3333dcbdeef0	2021-05-27 18:31:42.937	admin	1	2021-05-27 18:31:42.937	\N	\N	\N	Протокол.pdf	pdf	79139	2021-05-27 18:31:42.936
84c8d185-470e-191c-dc01-db37297667d7	2021-05-27 18:32:20.452	admin	1	2021-05-27 18:32:20.452	\N	\N	\N	УПД №1234 от 20.04.20.zip	zip	226834	2021-05-27 18:32:20.451
dbdfaf55-4900-dd8d-cff9-ca0f05118664	2021-05-27 18:32:20.452	admin	1	2021-05-27 18:32:20.452	\N	\N	\N	Печатная форма УПД №1234 от 20.04.20.pdf	pdf	122016	2021-05-27 18:32:20.45
631623ff-398b-11b6-82a2-b8eeed4e382a	2021-05-27 18:32:20.452	admin	1	2021-05-27 18:32:20.452	\N	\N	\N	Протокол.pdf	pdf	79130	2021-05-27 18:32:20.45
175555cf-4cbd-c6c1-2c8d-8f632e58e197	2021-05-27 18:32:46.28	admin	1	2021-05-27 18:32:46.28	\N	\N	\N	УПД №123 от 20.04.20.zip	zip	226709	2021-05-27 18:32:46.279
583d8948-11c8-ed2c-61b4-9d4e79fadf25	2021-05-27 18:32:46.28	admin	1	2021-05-27 18:32:46.28	\N	\N	\N	Печатная форма УПД №123 от 20.04.20.pdf	pdf	121760	2021-05-27 18:32:46.278
43e7259e-c13b-d861-d193-9541340bbbc9	2021-05-27 18:32:46.28	admin	1	2021-05-27 18:32:46.28	\N	\N	\N	Протокол.pdf	pdf	79127	2021-05-27 18:32:46.277
c8f6cf7f-a0f0-0a26-7d5f-b0e72940b554	2021-05-27 18:45:17.008	admin	1	2021-05-27 18:45:17.008	\N	\N	\N	Печатная форма УПД №1121 от 23.04.20.pdf	pdf	122057	2021-05-27 18:45:17.007
8e0e14df-f247-61b4-2848-24158d7ccc7d	2021-05-27 18:45:17.008	admin	1	2021-05-27 18:45:17.008	\N	\N	\N	УПД №1121 от 23.04.20.zip	zip	239838	2021-05-27 18:45:17.007
29f0a22d-bd17-b7a7-61cd-a7bd6009225c	2021-05-27 18:45:17.008	admin	1	2021-05-27 18:45:17.008	\N	\N	\N	Протокол.pdf	pdf	79311	2021-05-27 18:45:17.006
3948a541-5a29-4954-b9ac-b7ac6b14d984	2021-05-27 19:02:00.361	admin	1	2021-05-27 19:02:00.361	\N	\N	\N	Протокол.pdf	pdf	79122	2021-05-27 19:02:00.359
ca13d5c2-697d-328c-58eb-6f0f14b3ec17	2021-05-27 19:02:00.361	admin	1	2021-05-27 19:02:00.361	\N	\N	\N	Печатная форма УПД №4000232111 от 13.05.21.pdf	pdf	122469	2021-05-27 19:02:00.36
eb3eebee-9702-e0e0-381a-ff22c8197429	2021-05-27 19:02:00.361	admin	1	2021-05-27 19:02:00.361	\N	\N	\N	УПД №4000232111 от 13.05.21.zip	zip	227651	2021-05-27 19:02:00.36
f1ae344d-7e71-1a53-ec5b-c57f0231e9a0	2021-05-27 19:10:04.761	admin	1	2021-05-27 19:10:04.761	\N	\N	\N	Печатная форма УПД №4000232113 от 23.05.19.pdf	pdf	122616	2021-05-27 19:10:04.76
d1bf6e30-29f3-a4a3-08c4-f790cfbd1968	2021-05-27 19:10:04.761	admin	1	2021-05-27 19:10:04.761	\N	\N	\N	УПД №4000232113 от 23.05.19.zip	zip	227800	2021-05-27 19:10:04.76
d4350ed2-6d4b-0ae6-3bbb-688e8a59af9e	2021-05-27 19:10:04.761	admin	1	2021-05-27 19:10:04.761	\N	\N	\N	Протокол.pdf	pdf	79138	2021-05-27 19:10:04.759
\.


--
-- Data for Name: sys_folder; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_folder (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, folder_type, parent_id, name, tab_name, sort_order) FROM stdin;
eafb764d-1939-7939-4b09-23dd2a6be010	2021-05-19 17:11:44.579	admin	1	2021-05-19 17:11:44.579	\N	\N	\N	A	\N	AppFolder.inWork	AppFolder.inWork	1
28bfd13f-2491-a48f-feb1-1b2b2d772e8d	2021-05-19 17:11:44.591	admin	1	2021-05-19 17:11:44.591	\N	\N	\N	A	eafb764d-1939-7939-4b09-23dd2a6be010	AppFolder.inWork.draft	AppFolder.inWork.draft	1
f4739793-aa88-0603-0c67-03c545cf6e4a	2021-05-19 17:11:44.598	admin	1	2021-05-19 17:11:44.598	\N	\N	\N	A	eafb764d-1939-7939-4b09-23dd2a6be010	AppFolder.inWork.signing	AppFolder.inWork.signing	2
6f734e5e-7e34-cfb3-f612-45980c3276df	2021-05-19 17:11:44.606	admin	1	2021-05-19 17:11:44.606	\N	\N	\N	A	eafb764d-1939-7939-4b09-23dd2a6be010	AppFolder.inWork.review	AppFolder.inWork.review	3
a3a88c38-5f32-428a-5ab5-680b2e9b088f	2021-05-19 17:11:44.613	admin	1	2021-05-19 17:11:44.613	\N	\N	\N	A	eafb764d-1939-7939-4b09-23dd2a6be010	AppFolder.inWork.rejected	AppFolder.inWork.rejected	4
9bf40f43-f6a3-a848-4e42-c1b5286426ed	2021-05-19 17:11:44.62	admin	1	2021-05-19 17:11:44.62	\N	\N	\N	A	eafb764d-1939-7939-4b09-23dd2a6be010	AppFolder.inWork.watchlist	AppFolder.inWork.watchlist	5
24015803-d2e7-bc2c-cb48-6c1879b15587	2021-05-19 17:11:44.627	admin	1	2021-05-19 17:11:44.627	\N	\N	\N	A	\N	AppFolder.myPackages	AppFolder.myPackages	3
9e1789e4-0ecf-dfb3-0852-f16be823f4b3	2021-05-19 17:11:44.632	admin	1	2021-05-19 17:11:44.632	\N	\N	\N	A	\N	AppFolder.forSigning	AppFolder.forSigning	4
5a659a10-e2f7-9ac0-6603-08061b2fbf63	2021-05-19 17:11:44.637	admin	1	2021-05-19 17:11:44.637	\N	\N	\N	A	\N	AppFolder.importants	AppFolder.importants	5
89b0269e-1ce8-c8c5-9136-9981c2e87abe	2021-05-19 17:11:44.641	admin	1	2021-05-19 17:11:44.641	\N	\N	\N	A	\N	AppFolder.contracts	AppFolder.contracts	6
9e0d5011-61f4-e72b-2c2e-69061fc4850c	2021-05-19 17:11:44.647	admin	1	2021-05-19 17:11:44.647	\N	\N	\N	A	\N	AppFolder.baskets	AppFolder.baskets	9
71b6beae-2a9e-fd79-0485-32a14e8dd99f	2021-05-19 17:11:44.651	admin	1	2021-05-19 17:11:44.651	\N	\N	\N	A	\N	AppFolder.attr-assignment	\N	11
19b98f47-d930-05e2-93d1-d92550ec6848	2021-05-19 17:11:44.656	admin	1	2021-05-19 17:11:44.656	\N	\N	\N	A	71b6beae-2a9e-fd79-0485-32a14e8dd99f	AppFolder.attr-assignment.draft	AppFolder.attr-assignment.draft	1
1928edb1-cdbc-0ff7-cc36-721b7be0a865	2021-05-19 17:11:44.663	admin	1	2021-05-19 17:11:44.663	\N	\N	\N	A	71b6beae-2a9e-fd79-0485-32a14e8dd99f	AppFolder.attr-assignment.wait	AppFolder.attr-assignment.wait	2
f47130dd-d2ff-fadf-b2e1-958f9eb09fc6	2021-05-19 17:11:44.669	admin	1	2021-05-19 17:11:44.669	\N	\N	\N	A	71b6beae-2a9e-fd79-0485-32a14e8dd99f	AppFolder.attr-assignment.finished	AppFolder.attr-assignment.finished	3
84c527dd-edcb-cd18-e13e-280c0d2f65e3	2021-05-19 17:11:44.675	admin	1	2021-05-19 17:11:44.675	\N	\N	\N	A	71b6beae-2a9e-fd79-0485-32a14e8dd99f	AppFolder.attr-assignment.error	AppFolder.attr-assignment.error	4
\.


--
-- Data for Name: sys_fts_queue; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_fts_queue (id, create_ts, created_by, entity_id, string_entity_id, int_entity_id, long_entity_id, entity_name, change_type, source_host, indexing_host, fake) FROM stdin;
\.


--
-- Data for Name: sys_jmx_instance; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_jmx_instance (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, node_name, address, login, password) FROM stdin;
\.


--
-- Data for Name: sys_lock_config; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_lock_config (id, create_ts, created_by, name, timeout_sec) FROM stdin;
\.


--
-- Data for Name: sys_query_result; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_query_result (id, session_id, query_key, entity_id, string_entity_id, int_entity_id, long_entity_id) FROM stdin;
\.


--
-- Data for Name: sys_scheduled_execution; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_scheduled_execution (id, create_ts, created_by, task_id, server, start_time, finish_time, result) FROM stdin;
59a4f95f-00b1-d530-c1ed-90214b8aab1f	2021-05-19 17:09:57.116	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:09:57.07+03	2021-05-19 17:09:57.457+03	
fce8a22e-e81b-4b2c-aa2e-15e7fe480dbf	2021-05-19 17:19:44.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:19:44.854+03	2021-05-19 17:19:44.872+03	
e9c1a282-2a81-5039-d953-e9cb84373f59	2021-05-19 17:10:00.92	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 17:10:00.863+03	2021-05-19 17:10:00.959+03	ERROR
38956c3a-3929-0696-7cf8-fb52a6fda546	2021-05-19 17:10:07.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:10:07.856+03	2021-05-19 17:10:07.886+03	
fd4ee451-acd0-cdfa-b84e-4b048119f092	2021-05-19 17:19:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:19:54.854+03	2021-05-19 17:19:54.867+03	
fe4be3d0-7922-1123-c6ec-831dfb67eb64	2021-05-19 17:10:17.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:10:17.856+03	2021-05-19 17:10:18.066+03	
fa2c4d16-6c57-ba8f-8923-8de430c7fd45	2021-05-19 17:10:27.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:10:27.857+03	2021-05-19 17:10:27.9+03	
5d4cbfd8-648a-0b48-2bfd-eedbf649debb	2021-05-19 17:20:00.855	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 17:20:00.854+03	2021-05-19 17:20:00.887+03	ERROR
efabe207-eb11-8f6f-93f5-7de5d8352834	2021-05-19 17:10:38.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:10:38.855+03	2021-05-19 17:10:38.883+03	
7ca49668-0fcf-3cfe-c1f9-e0a67c244806	2021-05-19 17:10:48.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:10:48.856+03	2021-05-19 17:10:48.881+03	
fc1612f3-b466-783f-db5c-0f67fa9490d9	2021-05-19 17:20:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:20:05.853+03	2021-05-19 17:20:05.871+03	
8d94c8c6-0b20-51d4-1f11-bbd1c1861282	2021-05-19 17:10:58.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:10:58.858+03	2021-05-19 17:10:58.9+03	
81f0bfec-fe04-4ee1-b444-1386cca7bba9	2021-05-19 17:11:09.865	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:11:09.858+03	2021-05-19 17:11:09.889+03	
ea3a0912-c6ed-46a9-03de-dee3e96f0472	2021-05-19 17:20:15.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:20:15.854+03	2021-05-19 17:20:15.868+03	
3d69c260-e3a3-caae-87b2-b0a31cab1707	2021-05-19 17:11:20.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:11:20.855+03	2021-05-19 17:11:20.879+03	
aa59d45f-2de9-fc6a-a36a-5e2ea60f4f6f	2021-05-19 17:11:30.867	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:11:30.866+03	2021-05-19 17:11:30.905+03	
3e7800fa-b455-c886-6e4f-6b97955ddfe3	2021-05-19 17:11:41.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:11:41.86+03	2021-05-19 17:11:41.888+03	
182a3b28-82de-0063-4cee-7e63c8fa83b5	2021-05-19 17:11:51.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:11:51.861+03	2021-05-19 17:11:51.898+03	
6fd1a89a-a5a6-985a-490e-d753c8be6e4f	2021-05-19 17:12:02.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:12:02.854+03	2021-05-19 17:12:02.871+03	
0cc82fa0-7933-f553-0100-d6b265dd97e6	2021-05-19 17:12:12.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:12:12.854+03	2021-05-19 17:12:12.88+03	
3cb5e60a-0748-66bf-167c-bda693b35197	2021-05-19 17:12:22.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:12:22.855+03	2021-05-19 17:12:22.884+03	
d92fb767-ad5c-4b06-7416-a615404d9824	2021-05-19 17:12:32.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:12:32.857+03	2021-05-19 17:12:32.882+03	
f5809c28-e503-4f93-1ccc-c85373499170	2021-05-19 17:12:43.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:12:43.855+03	2021-05-19 17:12:43.888+03	
ea4f4fd2-c203-007c-a4ea-7f268523918b	2021-05-19 17:12:53.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:12:53.856+03	2021-05-19 17:12:53.873+03	
9b299a7c-d3e9-c04b-a2ab-93eebc1081b6	2021-05-19 17:13:04.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:13:04.854+03	2021-05-19 17:13:04.872+03	
65eb4e38-d1dd-5cb0-b6f5-b42ae0db3e2c	2021-05-19 17:13:14.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:13:14.854+03	2021-05-19 17:13:14.87+03	
1869752f-66b9-2f9a-672d-ba9ec35d23a1	2021-05-19 17:13:24.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:13:24.854+03	2021-05-19 17:13:24.873+03	
ca38ef55-a51b-edb5-a3ae-05225d207fb2	2021-05-19 17:13:34.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:13:34.854+03	2021-05-19 17:13:34.884+03	
b0c73570-002f-29a9-5559-ac84bbbf1e8f	2021-05-19 17:13:44.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:13:44.855+03	2021-05-19 17:13:44.882+03	
141a9f45-858a-ba97-273c-dc0e879285fc	2021-05-19 17:13:55.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:13:55.855+03	2021-05-19 17:13:55.879+03	
94abdc3b-391b-77bc-e196-7e5bd15f4ff3	2021-05-19 17:14:06.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:14:06.858+03	2021-05-19 17:14:06.877+03	
d6e10c8f-2124-140c-54c0-c272052d8fff	2021-05-19 17:14:17.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:14:17.854+03	2021-05-19 17:14:17.868+03	
4bf1ed72-9f37-9fc7-baa3-248efe5e3419	2021-05-19 17:14:27.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:14:27.854+03	2021-05-19 17:14:27.868+03	
ec82f252-c4dc-8392-770a-406ad18b9202	2021-05-19 17:14:37.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:14:37.86+03	2021-05-19 17:14:37.877+03	
ae2ee838-b97b-e7d7-b059-af99390ca49c	2021-05-19 17:14:48.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:14:48.854+03	2021-05-19 17:14:48.873+03	
cda016c4-e24b-9a21-8262-02cbe973d8f7	2021-05-19 17:14:58.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:14:58.854+03	2021-05-19 17:14:58.872+03	
2e3ad720-5d64-c0e5-4b5f-7cb0fbf914f3	2021-05-19 17:15:08.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:15:08.855+03	2021-05-19 17:15:08.884+03	
1f0a13d6-62f4-f4cf-d591-974254213763	2021-05-19 17:15:19.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:15:19.854+03	2021-05-19 17:15:19.868+03	
7bc00029-843d-cc59-6ed1-44b1f1a93265	2021-05-19 17:15:29.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:15:29.854+03	2021-05-19 17:15:29.866+03	
8d144306-1d7a-d1d5-a023-9426f2a757a3	2021-05-19 17:15:39.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:15:39.854+03	2021-05-19 17:15:39.871+03	
9e1e94b5-bab4-5491-6bfa-2812b9ec02b5	2021-05-19 17:15:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:15:50.853+03	2021-05-19 17:15:50.872+03	
c1389500-4eb8-13af-9d69-70cc2467cd57	2021-05-19 17:16:00.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:16:00.854+03	2021-05-19 17:16:00.896+03	
72062281-15f3-78f8-a6b6-943b82fe0b64	2021-05-19 17:16:10.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:16:10.854+03	2021-05-19 17:16:10.889+03	
64909810-1d6d-58b8-8432-29df04fef3ec	2021-05-19 17:16:20.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:16:20.854+03	2021-05-19 17:16:20.87+03	
73c9e396-645b-5570-d1c6-70c56b5ce912	2021-05-19 17:16:30.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:16:30.854+03	2021-05-19 17:16:30.877+03	
2916d84d-5dfd-9136-de22-38014bc12360	2021-05-19 17:16:40.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:16:40.854+03	2021-05-19 17:16:40.87+03	
c52cee5c-25ee-9305-09e5-af9c2d868a38	2021-05-19 17:16:50.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:16:50.854+03	2021-05-19 17:16:50.872+03	
38022776-f28e-e7cf-a450-b34926dcc47e	2021-05-19 17:17:00.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:17:00.854+03	2021-05-19 17:17:00.882+03	
ed1edc21-4501-05b9-e367-9b984dfd1e11	2021-05-19 17:17:10.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:17:10.854+03	2021-05-19 17:17:10.888+03	
ad62af83-9f7e-1400-1348-020d95cdaaac	2021-05-19 17:17:20.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:17:20.854+03	2021-05-19 17:17:20.87+03	
06eeccad-0bef-8a40-b293-2376f70e0f2c	2021-05-19 17:17:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:17:30.854+03	2021-05-19 17:17:30.879+03	
a35938ed-6dd4-00c9-c046-dfed8595d0f5	2021-05-19 17:17:41.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:17:41.853+03	2021-05-19 17:17:41.871+03	
d8d5daeb-43aa-9ef4-fa18-829b724f6e6b	2021-05-19 17:17:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:17:51.854+03	2021-05-19 17:17:51.867+03	
85a827f2-7050-6f1d-3400-32f88b6e63a6	2021-05-19 17:18:01.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:18:01.855+03	2021-05-19 17:18:01.869+03	
203c9e28-a1c1-f7df-a7aa-1db4b11e6a4f	2021-05-19 17:18:12.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:18:12.854+03	2021-05-19 17:18:12.869+03	
8f65aab7-0cd5-bbc8-a180-c359d1a28d27	2021-05-19 17:18:22.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:18:22.854+03	2021-05-19 17:18:22.867+03	
b605c8e5-3380-628b-d18e-d27c693a161c	2021-05-19 17:18:32.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:18:32.854+03	2021-05-19 17:18:32.876+03	
9a84af81-f95d-8c34-c41d-8b1de0f819ce	2021-05-19 17:18:42.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:18:42.856+03	2021-05-19 17:18:42.874+03	
ceecea73-c5a0-a20d-81f1-0f462d0d2ca5	2021-05-19 17:18:53.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:18:53.853+03	2021-05-19 17:18:53.866+03	
b68efbb0-5fdc-95f0-36f0-6ec340f9c80f	2021-05-19 17:19:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:19:03.853+03	2021-05-19 17:19:03.871+03	
67266acc-3a1f-b162-6afc-12121d43ad7a	2021-05-19 17:19:13.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:19:13.853+03	2021-05-19 17:19:13.866+03	
5ba0a993-7d8c-a05d-8ff2-a10edee48209	2021-05-19 17:19:23.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:19:23.854+03	2021-05-19 17:19:23.867+03	
8d23543b-9f19-ae18-c606-585a890ab08c	2021-05-19 17:19:33.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:19:33.855+03	2021-05-19 17:19:33.875+03	
2b64df86-20be-4dbd-f761-18bb9500303b	2021-05-19 17:32:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:32:39.853+03	2021-05-19 17:32:39.864+03	
2f1aa381-1cc5-3197-1969-f3f603b676c2	2021-05-19 17:20:25.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:20:25.855+03	2021-05-19 17:20:25.872+03	
349ad8b9-b7e9-5973-41c9-3c952028bd95	2021-05-19 17:47:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:47:37.853+03	2021-05-19 17:47:37.863+03	
11a8119c-c8a3-b8d8-74e6-ffda732cc44b	2021-05-19 17:20:46.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:20:46.855+03	2021-05-19 17:20:46.867+03	
8a3198a6-fbcf-a041-f1db-e6b17d60d506	2021-05-19 17:32:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:32:59.853+03	2021-05-19 17:32:59.871+03	
8bbdc6ca-b1e3-40fd-f480-91f620b90a47	2021-05-19 17:21:07.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:21:07.854+03	2021-05-19 17:21:07.878+03	
d5b0428c-754e-22a3-9455-48ca16c0d42a	2021-05-19 17:21:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:21:29.853+03	2021-05-19 17:21:29.866+03	
8b7474ec-1dbb-8282-49bb-2bab70dd3a4d	2021-05-19 17:33:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:33:19.853+03	2021-05-19 17:33:19.864+03	
ef69f7f5-dd38-803e-22a7-4f8b5f3750fb	2021-05-19 17:21:39.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:21:39.854+03	2021-05-19 17:21:39.88+03	
c95da5a4-efca-3d44-af9d-14e966c210f4	2021-05-19 17:22:00.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:22:00.853+03	2021-05-19 17:22:00.881+03	
b1a056b3-c63b-b2b7-e381-8009c1bd8f29	2021-05-19 17:33:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:33:39.853+03	2021-05-19 17:33:39.864+03	
bc07f1a0-d2e1-bbd5-c8ae-70a15f96f7d9	2021-05-19 17:22:20.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:22:20.853+03	2021-05-19 17:22:20.866+03	
9ec758ee-9903-0b1b-2259-7bd8dd9a693c	2021-05-19 17:33:49.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:33:49.856+03	2021-05-19 17:33:49.869+03	
aa1c11dc-36dd-2e7d-a91f-f8a553cae504	2021-05-19 17:22:40.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:22:40.859+03	2021-05-19 17:22:40.873+03	
ddd0a905-6a99-54c9-4f22-63e3ed9ca2c1	2021-05-19 17:23:01.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:23:01.855+03	2021-05-19 17:23:01.869+03	
4c9d287e-5abf-15b7-ad57-b5a083c18075	2021-05-19 17:34:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:34:00.853+03	2021-05-19 17:34:00.863+03	
44bbcfc8-e772-3e38-d93b-14ed9d3aafbd	2021-05-19 17:23:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:23:22.853+03	2021-05-19 17:23:22.871+03	
9b992ffb-3cbd-3dae-8e85-59444b9622b4	2021-05-19 17:23:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:23:42.853+03	2021-05-19 17:23:42.864+03	
5d966ba6-f19f-658a-d3db-142a396314cb	2021-05-19 17:34:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:34:10.853+03	2021-05-19 17:34:10.865+03	
849082c0-816a-3c60-8a0b-42110f8235c0	2021-05-19 17:24:03.88	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:24:03.879+03	2021-05-19 17:24:03.895+03	
842a31cd-cae0-192a-246f-cac184ca803d	2021-05-19 17:24:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:24:14.853+03	2021-05-19 17:24:14.864+03	
2d8c8f29-efa2-f138-5485-bb067222fcca	2021-05-19 17:34:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:34:20.853+03	2021-05-19 17:34:20.861+03	
1c4ab468-010f-2bf4-dca6-d3f966778f28	2021-05-19 17:34:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:34:30.853+03	2021-05-19 17:34:30.865+03	
71d18c9e-f1e7-27b4-2b20-a11735702cf3	2021-05-19 17:34:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:34:40.853+03	2021-05-19 17:34:40.864+03	
800e4f17-15f8-6c79-e37e-85dfab739729	2021-05-19 17:34:50.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:34:50.853+03	2021-05-19 17:34:50.864+03	
f0166d34-11ec-bcbe-13a8-c02ff04a3c9f	2021-05-19 17:35:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:35:00.853+03	2021-05-19 17:35:00.863+03	
1731f031-23e6-c3c8-28cb-335dbcef6b17	2021-05-19 17:35:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:35:10.853+03	2021-05-19 17:35:10.869+03	
8faf8681-2b94-cbb0-84f4-c38e5334f746	2021-05-19 17:35:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:35:20.853+03	2021-05-19 17:35:20.868+03	
2debf39b-cedf-3dda-7875-4100dab3c647	2021-05-19 17:35:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:35:30.853+03	2021-05-19 17:35:30.864+03	
e6892d58-cf07-c2d2-f083-b88000ac1720	2021-05-19 17:35:40.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:35:40.854+03	2021-05-19 17:35:40.87+03	
85e0ce34-18c6-92dc-d537-526a652f3a53	2021-05-19 17:35:51.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:35:51.855+03	2021-05-19 17:35:51.865+03	
b9032f78-09ba-d5a5-2743-5ca81d26f904	2021-05-19 17:36:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:36:02.853+03	2021-05-19 17:36:02.887+03	
46687b37-235d-687f-8f5e-321708038720	2021-05-19 17:36:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:36:12.854+03	2021-05-19 17:36:12.863+03	
63245063-9011-5357-8a6f-11ddbd02dde9	2021-05-19 17:36:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:36:23.853+03	2021-05-19 17:36:23.864+03	
189ba32a-a884-8d7e-53aa-358d5d8cb0d2	2021-05-19 17:36:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:36:33.853+03	2021-05-19 17:36:33.865+03	
a324c977-0633-c313-2021-a06eaede6426	2021-05-19 17:36:43.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:36:43.854+03	2021-05-19 17:36:43.868+03	
5f0396be-cee2-e588-fe6a-c9e944016bab	2021-05-19 17:36:54.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:36:54.853+03	2021-05-19 17:36:54.865+03	
40852ec6-54ba-885f-2a9b-5613acc8fda2	2021-05-19 17:37:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:37:04.853+03	2021-05-19 17:37:04.863+03	
77218d70-af43-f192-e7ad-e9be70e189fd	2021-05-19 17:37:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:37:14.853+03	2021-05-19 17:37:14.863+03	
2e9ed0e3-ba2e-f475-aa98-48a80248f5fc	2021-05-19 17:37:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:37:24.853+03	2021-05-19 17:37:24.893+03	
6b654a5d-2dd9-274a-279e-756ab3b30bf1	2021-05-19 17:37:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:37:34.853+03	2021-05-19 17:37:34.863+03	
ae3f8342-d0fd-2008-af3b-d46e1d47adea	2021-05-19 17:37:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:37:44.853+03	2021-05-19 17:37:44.864+03	
19554108-6400-df28-d6d2-03cb709912d7	2021-05-19 17:37:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:37:54.853+03	2021-05-19 17:37:55.223+03	
6c3b441e-da9c-178f-f8ec-699c8eb0716c	2021-05-19 17:38:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:38:04.853+03	2021-05-19 17:38:04.878+03	
1eac430b-d118-2587-c8ca-62c7551a5d22	2021-05-19 17:38:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:38:14.853+03	2021-05-19 17:38:14.863+03	
27111e23-80b9-1cd4-c70a-8cdf1b9fd01c	2021-05-19 17:38:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:38:24.853+03	2021-05-19 17:38:24.863+03	
e74a94c8-5b62-5809-6e1d-1872c41e5707	2021-05-19 17:38:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:38:34.853+03	2021-05-19 17:38:34.863+03	
ca116f37-4e0f-84fb-d884-c41819559c13	2021-05-19 17:38:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:38:44.853+03	2021-05-19 17:38:44.864+03	
83a5146e-7acb-844d-b0ee-b2bc9238f039	2021-05-19 17:38:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:38:54.853+03	2021-05-19 17:38:54.863+03	
07a0a41c-2fab-122b-c4b0-6cd34522f321	2021-05-19 17:39:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:39:04.853+03	2021-05-19 17:39:04.863+03	
4c4ace18-0932-13f2-9d79-dd9eaeb54883	2021-05-19 17:39:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:39:14.853+03	2021-05-19 17:39:14.863+03	
4c41b5fe-9823-7d48-8631-ca18f71dafa8	2021-05-19 17:39:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:39:24.853+03	2021-05-19 17:39:24.863+03	
b1ac69e3-3d19-ccc2-ed99-58c8b67bb126	2021-05-19 17:39:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:39:34.853+03	2021-05-19 17:39:34.862+03	
b5f51ebb-d65f-94f9-b7d0-4ec303d6c790	2021-05-19 17:39:44.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:39:44.853+03	2021-05-19 17:39:44.864+03	
2998a905-4507-aff9-15cd-4af2ee9b452a	2021-05-19 17:39:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:39:54.853+03	2021-05-19 17:39:54.863+03	
8cfec395-012e-2c31-ab57-99b0a12751a7	2021-05-19 17:40:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 17:40:00.853+03	2021-05-19 17:40:00.863+03	ERROR
0231c489-6d7c-bdee-4ffe-b95797cc1f8e	2021-05-19 17:40:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:40:04.853+03	2021-05-19 17:40:04.863+03	
c44fde98-e648-2ed5-4907-159ad14752c4	2021-05-19 17:40:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:40:14.853+03	2021-05-19 17:40:14.873+03	
3cad06af-0a1c-8d00-484f-c49434e903ef	2021-05-19 17:40:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:40:24.853+03	2021-05-19 17:40:24.864+03	
c8903ae3-c8f7-1911-cc51-fb8c57668ca5	2021-05-19 17:40:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:40:34.853+03	2021-05-19 17:40:34.866+03	
83df7381-1e2f-92c8-66d7-e9a2215b3141	2021-05-19 17:40:44.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:40:44.854+03	2021-05-19 17:40:44.866+03	
8bd4d4a4-7ba6-b37c-a93d-aab3d6b1e067	2021-05-19 17:40:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:40:55.853+03	2021-05-19 17:40:55.864+03	
ee407a0b-648d-82f5-688d-ffd9ead7929d	2021-05-19 17:41:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:41:05.853+03	2021-05-19 17:41:05.862+03	
99ffdb5d-87dd-4ff1-e443-a2e8dded3b81	2021-05-19 17:41:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:41:15.853+03	2021-05-19 17:41:15.865+03	
f58b7326-d3b6-1ee6-9b94-53d05b4a3389	2021-05-19 17:20:36.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:20:36.855+03	2021-05-19 17:20:36.873+03	
5137a51e-2a54-7d9e-bbce-d3dbc380e0bf	2021-05-19 18:06:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:06:44.853+03	2021-05-19 18:06:44.862+03	
44b31430-8456-3689-cdaf-e50095e29ca9	2021-05-19 17:20:56.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:20:56.855+03	2021-05-19 17:20:56.877+03	
8e7b2b2f-ffd1-dcc5-fbfd-3b6621fe46a0	2021-05-19 17:32:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:32:49.853+03	2021-05-19 17:32:49.863+03	
8929d470-f474-0121-08b4-aa745be2418b	2021-05-19 17:21:18.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:21:18.859+03	2021-05-19 17:21:18.878+03	
1c8d2325-0228-d6eb-0d21-d5b3e56ce4e6	2021-05-19 17:21:50.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:21:50.853+03	2021-05-19 17:21:50.879+03	
3ebce85c-2401-5fd0-94b8-93eb8ad49b20	2021-05-19 17:33:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:33:09.853+03	2021-05-19 17:33:09.863+03	
6b047aff-0ffe-2584-3bf7-efa3b253000d	2021-05-19 17:22:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:22:10.853+03	2021-05-19 17:22:10.875+03	
a3354f1f-1d01-fad5-761f-74e7b7714347	2021-05-19 17:22:30.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:22:30.853+03	2021-05-19 17:22:30.887+03	
356889db-bb7a-418a-4d74-b11fe272fe7c	2021-05-19 17:33:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:33:29.853+03	2021-05-19 17:33:29.863+03	
986d27dc-2be5-059f-dcc9-2b555cf1090d	2021-05-19 17:22:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:22:51.853+03	2021-05-19 17:22:51.878+03	
01e38a58-180b-e9be-dcdd-6091a97ce3ae	2021-05-19 17:23:12.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:23:12.853+03	2021-05-19 17:23:12.877+03	
745c2355-dcf3-cc97-c875-ca65d8073f85	2021-05-19 17:23:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:23:32.853+03	2021-05-19 17:23:32.868+03	
7ddbb50a-2044-d8da-cfa5-750754c2108d	2021-05-19 17:23:52.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:23:52.859+03	2021-05-19 17:23:52.873+03	
e407ace2-3bf7-4ae4-f389-f670b4e5c470	2021-05-19 17:24:24.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:24:24.858+03	2021-05-19 17:24:24.874+03	
ed0b38fe-c8cf-9851-83c0-9a6ebb49c337	2021-05-19 17:24:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:24:35.853+03	2021-05-19 17:24:35.866+03	
6cf56e39-7a39-8a50-a019-7c8bce0b8e78	2021-05-19 17:24:45.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:24:45.853+03	2021-05-19 17:24:45.865+03	
cd5930d6-6a39-6fea-7871-9f6c4a14bd08	2021-05-19 17:24:55.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:24:55.853+03	2021-05-19 17:24:55.878+03	
5aae733a-46fb-12a8-63c4-4b396e9fae99	2021-05-19 17:25:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:25:05.853+03	2021-05-19 17:25:05.868+03	
588b6b0e-88e0-76e9-c881-10ebb0a8a50e	2021-05-19 17:25:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:25:15.853+03	2021-05-19 17:25:15.865+03	
1fadf665-9c87-aca3-2577-d434233885d8	2021-05-19 17:25:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:25:25.853+03	2021-05-19 17:25:25.868+03	
ae02190f-bed0-bb87-3a78-3a5f2ddda5c8	2021-05-19 17:25:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:25:35.853+03	2021-05-19 17:25:35.873+03	
de4f47ac-bffe-aab6-d9dd-2b39e1f1b2e6	2021-05-19 17:25:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:25:45.853+03	2021-05-19 17:25:45.864+03	
3338f95c-3739-b5c6-c5b0-d82e25034d70	2021-05-19 17:25:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:25:55.853+03	2021-05-19 17:25:55.874+03	
65357f3d-e684-664b-5360-8817d92f745c	2021-05-19 17:26:05.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:26:05.853+03	2021-05-19 17:26:05.868+03	
cffde01f-7f4b-15e1-956f-00a35cdd2148	2021-05-19 17:26:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:26:15.853+03	2021-05-19 17:26:15.864+03	
c2c48691-9a6d-4d84-d7d8-7056a7529d08	2021-05-19 17:26:25.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:26:25.854+03	2021-05-19 17:26:25.866+03	
c5902273-ff8c-f89c-5013-d2d54f3a2424	2021-05-19 17:26:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:26:36.853+03	2021-05-19 17:26:36.864+03	
70cfbe29-5541-e22a-2da9-e91eb54cfde1	2021-05-19 17:26:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:26:46.853+03	2021-05-19 17:26:46.864+03	
8df449c6-5f5e-00dd-6767-d01beb1d9126	2021-05-19 17:26:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:26:56.853+03	2021-05-19 17:26:56.864+03	
f4ea6e90-b01c-1adf-1ae6-cf3b84d3e4ab	2021-05-19 17:27:06.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:27:06.855+03	2021-05-19 17:27:06.87+03	
1fed3f97-72ed-f969-f5ef-17b6df717e6d	2021-05-19 17:27:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:27:17.853+03	2021-05-19 17:27:17.865+03	
4f2cb680-dff0-f5f4-441d-435d93bcfbc1	2021-05-19 17:27:27.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:27:27.853+03	2021-05-19 17:27:27.87+03	
1f31f465-fb62-52db-051c-aa107143878b	2021-05-19 17:27:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:27:37.853+03	2021-05-19 17:27:37.865+03	
2489822d-aab4-78e9-a975-bcb6946e7839	2021-05-19 17:27:47.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:27:47.853+03	2021-05-19 17:27:47.872+03	
effa3bb0-49a7-01b4-19e4-0681db1d1b0c	2021-05-19 17:27:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:27:57.853+03	2021-05-19 17:27:57.864+03	
2eeea7ca-f163-7b53-ed02-933cd4b48030	2021-05-19 17:28:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:28:07.853+03	2021-05-19 17:28:07.867+03	
3cf16e65-e551-d67f-0632-20319e8f480b	2021-05-19 17:28:17.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:28:17.856+03	2021-05-19 17:28:17.867+03	
160c2a5a-6988-c215-47c3-b688d010b344	2021-05-19 17:28:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:28:28.853+03	2021-05-19 17:28:28.864+03	
21a8fcf5-2c26-7e70-5a1c-069f492de62e	2021-05-19 17:28:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:28:38.853+03	2021-05-19 17:28:38.863+03	
08f0141a-009d-81ed-257c-9b45a7c76db9	2021-05-19 17:28:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:28:48.853+03	2021-05-19 17:28:48.865+03	
ea090cda-a1c9-b745-8dc3-bcdca1194e2c	2021-05-19 17:28:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:28:58.853+03	2021-05-19 17:28:58.864+03	
44dc960e-3187-5a8e-cb5e-406f20dac9fe	2021-05-19 17:29:08.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:29:08.859+03	2021-05-19 17:29:08.873+03	
8b2438ae-cf70-d3bf-272b-c42fadb0e5fc	2021-05-19 17:29:19.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:29:19.853+03	2021-05-19 17:29:19.866+03	
9b644f30-3baa-18a2-d06a-e6123ef0fc23	2021-05-19 17:29:29.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:29:29.853+03	2021-05-19 17:29:29.866+03	
e41e2803-3220-b117-1838-a1146dede03d	2021-05-19 17:29:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:29:39.853+03	2021-05-19 17:29:39.87+03	
a434039e-effa-aecf-f9a6-62a04e5823f6	2021-05-19 17:29:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:29:49.853+03	2021-05-19 17:29:49.864+03	
8dedfcee-a1f0-6f75-27bd-4fc31caf8689	2021-05-19 17:29:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:29:59.853+03	2021-05-19 17:29:59.867+03	
2df12869-fe1b-4d56-36fe-50c16a557923	2021-05-19 17:30:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 17:30:00.853+03	2021-05-19 17:30:00.873+03	ERROR
aee9d5c7-7bc5-837f-4103-5283ca6e490c	2021-05-19 17:30:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:30:09.853+03	2021-05-19 17:30:09.863+03	
bbcab343-eb08-8a27-dd68-9c519b710294	2021-05-19 17:30:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:30:19.853+03	2021-05-19 17:30:19.864+03	
ad3d27d1-d132-fd05-5cbe-e5a389652127	2021-05-19 17:30:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:30:29.853+03	2021-05-19 17:30:29.868+03	
c6cd9277-b220-1537-2409-6c961df985a3	2021-05-19 17:30:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:30:39.853+03	2021-05-19 17:30:39.88+03	
5c679193-3d55-4d42-fe98-766f8cd2544b	2021-05-19 17:30:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:30:49.853+03	2021-05-19 17:30:49.867+03	
16780270-daae-5fbc-3581-b525b1ef90bf	2021-05-19 17:30:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:30:59.853+03	2021-05-19 17:30:59.866+03	
f51097dd-2f22-2db2-49ea-a1c76e32fb99	2021-05-19 17:31:09.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:31:09.853+03	2021-05-19 17:31:09.868+03	
4d10a7f9-8411-5be0-c94a-2d45b29e20ec	2021-05-19 17:31:19.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:31:19.853+03	2021-05-19 17:31:19.868+03	
69f718bd-9017-cd4a-1435-33d99ed04120	2021-05-19 17:31:29.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:31:29.853+03	2021-05-19 17:31:29.863+03	
625e6e62-5e8f-75df-b431-35932833cca9	2021-05-19 17:31:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:31:39.853+03	2021-05-19 17:31:39.864+03	
83c7aa34-5ee3-c64c-84f7-ee2648b0c555	2021-05-19 17:31:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:31:49.853+03	2021-05-19 17:31:49.865+03	
6ed28225-7d0c-563c-8c82-38aa26565710	2021-05-19 17:31:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:31:59.853+03	2021-05-19 17:31:59.866+03	
4b1d3cb1-1960-f803-eb41-a37c16962c12	2021-05-19 17:32:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:32:09.853+03	2021-05-19 17:32:09.904+03	
629e8037-2e71-e7e0-71ed-748cb19ccbd8	2021-05-19 17:32:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:32:19.853+03	2021-05-19 17:32:19.863+03	
7fe0d10d-f412-1946-3a9e-53880de17f7f	2021-05-19 17:32:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:32:29.853+03	2021-05-19 17:32:29.869+03	
af3e663b-3fce-3119-0214-bfc51975d2ae	2021-05-19 17:47:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:47:47.853+03	2021-05-19 17:47:47.863+03	
6a8ec61f-0c07-4707-0abc-ecad20be062d	2021-05-19 17:41:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:41:25.853+03	2021-05-19 17:41:25.884+03	
f0c22057-02ba-17e4-8dfc-2a7b0a8c8762	2021-05-19 17:41:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:41:35.853+03	2021-05-19 17:41:35.868+03	
e40340b5-1bb3-9f46-eb50-e9020953eefd	2021-05-19 17:47:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:47:57.853+03	2021-05-19 17:47:57.862+03	
ea80ac16-162d-c13a-fa98-4503bbb7960d	2021-05-19 17:41:45.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:41:45.853+03	2021-05-19 17:41:45.864+03	
ee6f3e1a-7606-0404-a590-6f2fc8f947de	2021-05-19 17:41:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:41:55.853+03	2021-05-19 17:41:55.864+03	
cee00d69-786c-8f10-e253-5761befd87be	2021-05-19 17:48:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:48:07.853+03	2021-05-19 17:48:07.869+03	
5246a719-8f97-611a-73d8-c4c4374a3ea2	2021-05-19 17:42:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:42:05.853+03	2021-05-19 17:42:05.864+03	
3555125f-de8e-7b72-5dd0-ccffa2231e19	2021-05-19 17:42:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:42:15.853+03	2021-05-19 17:42:15.868+03	
cb479cad-cfe5-319d-536c-3381b058c319	2021-05-19 17:48:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:48:17.853+03	2021-05-19 17:48:17.863+03	
da7b784b-cfc2-03e6-2e67-1aeee973de4d	2021-05-19 17:42:25.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:42:25.853+03	2021-05-19 17:42:25.866+03	
2aa84503-3340-00e3-dbcc-e983508afa6f	2021-05-19 17:42:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:42:35.853+03	2021-05-19 17:42:35.864+03	
b3d18996-0872-0d56-b596-73f2f62e722c	2021-05-19 17:48:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:48:27.853+03	2021-05-19 17:48:27.863+03	
0b2d76cd-5f29-ed01-06ab-662eac3aea50	2021-05-19 17:42:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:42:45.853+03	2021-05-19 17:42:45.862+03	
7800415a-b78c-9510-2466-f968b468ca2f	2021-05-19 17:42:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:42:55.853+03	2021-05-19 17:42:55.861+03	
9036dc9b-dfc8-63a3-0dab-876cc09e64fc	2021-05-19 17:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:48:37.853+03	2021-05-19 17:48:37.864+03	
9be86c45-95d5-5cab-9d2a-4eeb0cd21ed3	2021-05-19 17:43:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:43:05.853+03	2021-05-19 17:43:05.862+03	
495fc2b1-9326-f4c5-b2e3-22e06d8c9e21	2021-05-19 17:43:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:43:15.853+03	2021-05-19 17:43:15.862+03	
397a623e-661f-e3f6-3853-e5ad6c64666b	2021-05-19 17:48:47.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:48:47.854+03	2021-05-19 17:48:47.864+03	
6c3a9644-b296-1042-84b5-c1cf3b027cfb	2021-05-19 17:43:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:43:25.853+03	2021-05-19 17:43:25.861+03	
6921ba78-6465-d7ed-eab3-41b6e1d8686b	2021-05-19 17:43:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:43:35.853+03	2021-05-19 17:43:35.862+03	
2a900be7-42ba-685b-190e-b9b1fd143ca3	2021-05-19 17:48:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:48:58.853+03	2021-05-19 17:48:58.863+03	
cc8e990b-fa3e-7d5c-a836-1ebd692b6721	2021-05-19 17:43:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:43:45.853+03	2021-05-19 17:43:45.863+03	
72a8d1e0-5014-580b-454d-53f7107b9279	2021-05-19 17:43:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:43:55.853+03	2021-05-19 17:43:55.862+03	
622c34a2-304f-3e28-1cb2-8006f4e8355a	2021-05-19 17:49:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:49:08.853+03	2021-05-19 17:49:08.873+03	
b166b932-3965-b2cc-4c58-814e0e75951b	2021-05-19 17:44:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:44:05.853+03	2021-05-19 17:44:05.863+03	
afeb3877-1f50-03af-b0a9-811bb11d4303	2021-05-19 17:44:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:44:15.853+03	2021-05-19 17:44:15.879+03	
ce3cbc42-1098-bedf-09e7-154ce2170ca7	2021-05-19 17:49:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:49:18.853+03	2021-05-19 17:49:18.868+03	
cad646a0-8036-87ea-8675-af83e0e329ea	2021-05-19 17:44:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:44:25.853+03	2021-05-19 17:44:25.862+03	
ccf7239d-4b64-00bf-e8dd-5a9ed9531feb	2021-05-19 17:44:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:44:35.853+03	2021-05-19 17:44:35.865+03	
06b6eacb-c9b0-f105-1082-b4c25a4c3517	2021-05-19 17:49:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:49:28.853+03	2021-05-19 17:49:28.863+03	
09d58cb2-f02e-1197-4ac0-3da339dc34df	2021-05-19 17:44:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:44:45.853+03	2021-05-19 17:44:45.867+03	
605cbcae-2fbe-9237-f554-4eb697e52dbe	2021-05-19 17:44:55.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:44:55.853+03	2021-05-19 17:44:55.865+03	
3a425d39-df64-2831-2ba0-5551cdead9a7	2021-05-19 17:49:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:49:38.853+03	2021-05-19 17:49:38.862+03	
58c1d97f-4796-d2c2-90b7-038468791983	2021-05-19 17:45:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:45:05.853+03	2021-05-19 17:45:05.862+03	
892c5bcb-61d2-25e9-f84a-65d2d9f64153	2021-05-19 17:45:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:45:15.853+03	2021-05-19 17:45:15.866+03	
0b747dd3-5ce5-11fc-8deb-d44bd34943d4	2021-05-19 17:49:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:49:48.853+03	2021-05-19 17:49:48.862+03	
20175113-0003-3876-37f3-f66011893f97	2021-05-19 17:45:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:45:25.853+03	2021-05-19 17:45:25.862+03	
25444f78-b38a-9f86-5bed-a4daf0f85255	2021-05-19 17:45:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:45:35.853+03	2021-05-19 17:45:35.879+03	
989cd47c-f675-e745-52d2-aa03905d62c1	2021-05-19 17:49:58.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:49:58.853+03	2021-05-19 17:49:58.865+03	
abdc7ff4-57c2-1f80-b2c0-9beb1ba99a37	2021-05-19 17:45:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:45:45.853+03	2021-05-19 17:45:45.863+03	
eb0b1f6c-ac8a-e1fa-f45c-24783b4d9afa	2021-05-19 17:45:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:45:55.853+03	2021-05-19 17:45:55.863+03	
76da3430-79af-9734-9559-17749eb689d9	2021-05-19 17:50:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 17:50:00.853+03	2021-05-19 17:50:00.859+03	ERROR
709287ca-3a24-30c4-bd96-9b246d39d566	2021-05-19 17:46:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:46:05.853+03	2021-05-19 17:46:05.865+03	
1e42b80b-7aa2-8e57-f047-defd5949a9c8	2021-05-19 17:46:15.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:46:15.854+03	2021-05-19 17:46:15.866+03	
fc1d57d5-1d25-35ac-7d9c-7e46733053a7	2021-05-19 17:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:50:08.853+03	2021-05-19 17:50:08.873+03	
ab1b6377-48c2-b0b4-58e3-08c8c6c24b5d	2021-05-19 17:46:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:46:26.853+03	2021-05-19 17:46:26.866+03	
ef711557-a712-9126-97cb-b14788ced22d	2021-05-19 17:46:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:46:36.853+03	2021-05-19 17:46:36.863+03	
8581dfcd-5929-41e8-8a1b-abdd1481d5a6	2021-05-19 17:50:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:50:18.853+03	2021-05-19 17:50:18.863+03	
81bedced-1197-e81c-b006-efde94decd21	2021-05-19 17:46:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:46:46.853+03	2021-05-19 17:46:46.862+03	
53410fa5-5b3d-2f50-af68-7018dda9cdb3	2021-05-19 17:46:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:46:56.854+03	2021-05-19 17:46:56.863+03	
809fd66d-7b13-0aaf-e16e-0a3737abc26c	2021-05-19 17:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:50:28.853+03	2021-05-19 17:50:28.862+03	
a51dbf1f-7c89-8ce2-7664-8373d0580b6c	2021-05-19 17:47:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:47:07.853+03	2021-05-19 17:47:07.87+03	
dcc43890-995c-1c7f-0b7b-1b79f995708b	2021-05-19 17:47:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:47:17.853+03	2021-05-19 17:47:17.866+03	
7e4365a1-4cda-cb1c-bb75-695027923ac2	2021-05-19 17:50:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:50:38.853+03	2021-05-19 17:50:38.861+03	
90c566ea-bffe-13fb-7238-ef27a3516f5d	2021-05-19 17:47:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:47:27.853+03	2021-05-19 17:47:27.867+03	
9c25373f-5623-9785-ac7c-54f1c58cd25d	2021-05-19 17:50:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:50:48.853+03	2021-05-19 17:50:48.869+03	
1f96397e-4ad1-9f9f-ce0a-b4421930b46a	2021-05-19 17:50:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:50:58.853+03	2021-05-19 17:50:58.867+03	
de35ce4d-7292-4bdf-8dc2-53bb5130065c	2021-05-19 17:51:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:51:08.853+03	2021-05-19 17:51:08.881+03	
afe3a6fd-a307-55c9-3b9b-8ade08f75dab	2021-05-19 17:51:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:51:18.853+03	2021-05-19 17:51:18.866+03	
5bc86cf6-7898-e17f-6888-1bfd7f97e19a	2021-05-19 17:51:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:51:28.853+03	2021-05-19 17:51:28.863+03	
af62e6c1-e0b8-89a0-b617-b95d2c0625a5	2021-05-19 17:51:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:51:38.853+03	2021-05-19 17:51:38.863+03	
9a9e2511-54f4-f5a4-9f0d-a844162a25c5	2021-05-19 17:51:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:51:48.853+03	2021-05-19 17:51:48.868+03	
241491a2-c547-bf9a-9b43-204fe6eba930	2021-05-19 17:51:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:51:58.853+03	2021-05-19 17:51:58.87+03	
bc797ae6-72e1-dd85-b25b-3adab5389f92	2021-05-19 17:52:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:52:08.853+03	2021-05-19 17:52:08.871+03	
0a256cb8-2d70-d71a-a752-f0b2bc2c5fa4	2021-05-19 18:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:06:55.853+03	2021-05-19 18:06:55.861+03	
2bba0b12-63de-653a-ca37-188b0762f70e	2021-05-19 17:52:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:52:28.853+03	2021-05-19 17:52:28.865+03	
cee0112e-1122-f36f-b216-94ecd7805147	2021-05-19 17:52:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:52:48.853+03	2021-05-19 17:52:48.865+03	
24be11ae-33ca-04e3-e638-4bdedc5a60ea	2021-05-19 18:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:08:37.853+03	2021-05-19 18:08:37.873+03	
44893205-ac51-8f4f-dd3d-1bf17731c2a7	2021-05-19 17:53:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:53:08.853+03	2021-05-19 17:53:08.862+03	
909a0fc6-a673-63f8-f7c4-bf3033a30e3f	2021-05-19 17:53:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:53:28.853+03	2021-05-19 17:53:28.864+03	
705e6fdc-e672-0d67-2300-7b15c017596e	2021-05-19 18:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:08:57.853+03	2021-05-19 18:08:57.861+03	
bbb8bffa-c6b3-fbb2-8181-55a1be97e93f	2021-05-19 18:09:28.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:09:28.863+03	2021-05-19 18:09:28.89+03	
2103ff03-809a-3171-f7ae-1a76b2ebb03e	2021-05-19 18:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:10:00.853+03	2021-05-19 18:10:00.863+03	
ecadcd88-7bab-af14-5b7a-5e6c4141d1b4	2021-05-19 18:10:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 18:10:00.853+03	2021-05-19 18:10:00.875+03	ERROR
53c64f54-a863-c5f4-5e45-c05732c8fcbe	2021-05-19 18:10:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:10:20.853+03	2021-05-19 18:10:20.863+03	
7c89c51f-7ec3-2e9d-5693-bc52ea852f0e	2021-05-19 18:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:10:40.853+03	2021-05-19 18:10:40.864+03	
e9fb3b6c-1146-b060-75c4-734c5bfffde2	2021-05-19 18:11:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:11:00.853+03	2021-05-19 18:11:00.871+03	
40b3a7f3-2d75-3e9f-48a1-9c5fe1e72fc1	2021-05-19 18:11:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:11:20.853+03	2021-05-19 18:11:20.871+03	
4af7b7a0-0d45-1fbf-e176-3a7a4a3304a0	2021-05-19 18:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:12:00.853+03	2021-05-19 18:12:00.861+03	
6f5cf72b-5b05-3a42-ee83-e5965fe5a0a4	2021-05-19 18:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:12:20.853+03	2021-05-19 18:12:20.873+03	
86ebd691-4522-870c-ef82-c0e5e577e9f9	2021-05-19 18:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:12:41.854+03	2021-05-19 18:12:41.862+03	
d44294b0-9636-3344-08f5-eb13fd629ac4	2021-05-19 18:13:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:13:02.853+03	2021-05-19 18:13:02.88+03	
9ce9077c-56b0-0fe9-dc69-7c1bf9370336	2021-05-19 18:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:13:22.853+03	2021-05-19 18:13:22.862+03	
8270dc05-6538-853f-dbdf-f0bb51fab980	2021-05-19 18:13:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:13:33.853+03	2021-05-19 18:13:33.864+03	
1d8eccdb-6e57-eb20-6a5e-c73650518020	2021-05-19 18:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:13:44.853+03	2021-05-19 18:13:44.865+03	
9d2495ab-f714-6c25-fdbe-04e554354bc8	2021-05-19 18:14:25.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:14:25.855+03	2021-05-19 18:14:25.915+03	
94d5a115-2b01-5158-072d-ce07754e0e15	2021-05-19 18:14:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:14:56.853+03	2021-05-19 18:14:56.861+03	
cba0433a-77b6-5927-5005-cf86093db09b	2021-05-19 18:15:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:15:16.854+03	2021-05-19 18:15:16.861+03	
6d94e3a4-7f5b-6fef-d4fc-6ca16cdae45d	2021-05-19 18:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:15:47.853+03	2021-05-19 18:15:47.862+03	
21389217-1ae2-4bdc-75c1-8a52b53a5c4b	2021-05-19 18:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:16:07.853+03	2021-05-19 18:16:07.864+03	
0449a6b2-180b-a964-d29f-0752d79adca0	2021-05-19 18:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:16:17.853+03	2021-05-19 18:16:17.862+03	
c06e6125-3412-2798-b94e-10851ec0cfd9	2021-05-19 18:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:16:27.853+03	2021-05-19 18:16:27.863+03	
f20b0866-2fe4-a219-38a6-1f2723479441	2021-05-19 18:16:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:16:47.853+03	2021-05-19 18:16:47.86+03	
9ab47cfa-41b5-84a0-422c-c766a222c104	2021-05-19 18:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:17:07.853+03	2021-05-19 18:17:07.86+03	
b6b1c6e6-a133-7afe-ff99-2b5b6eb10621	2021-05-19 18:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:17:27.853+03	2021-05-19 18:17:27.922+03	
fafd010c-0dca-b787-b802-30f5e8643007	2021-05-19 18:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:17:47.853+03	2021-05-19 18:17:47.86+03	
b8d8f598-ffc8-3bd9-aa42-fb1dc8cff18d	2021-05-19 18:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:18:27.853+03	2021-05-19 18:18:27.861+03	
9bd90ce6-2349-d131-6eeb-f7bc9f3660af	2021-05-19 18:18:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:18:47.853+03	2021-05-19 18:18:47.861+03	
7678c159-0759-7ab6-6079-3002a61465d8	2021-05-19 18:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:19:08.853+03	2021-05-19 18:19:08.86+03	
af774622-d887-0779-172a-6a59d093aeb4	2021-05-19 18:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:19:29.853+03	2021-05-19 18:19:29.862+03	
7d4e8f28-20fa-e97e-c27b-b9a7a56c9364	2021-05-19 18:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:19:49.853+03	2021-05-19 18:19:49.86+03	
9c629592-47ba-e3f2-6f64-6288b5c9f24d	2021-05-19 18:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:20:19.853+03	2021-05-19 18:20:19.86+03	
a6d51806-25d3-0c0d-9ce0-cbb6b688122a	2021-05-19 18:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:20:39.853+03	2021-05-19 18:20:39.875+03	
87d3c797-30cb-82ee-3cde-aa4241bcb8a9	2021-05-19 18:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:21:10.852+03	2021-05-19 18:21:10.861+03	
1a075b70-4356-b088-8c44-b9b2394b3870	2021-05-19 18:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:21:30.853+03	2021-05-19 18:21:30.864+03	
41818618-ddc1-8cec-ea8d-f63377dfc5d3	2021-05-19 18:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:22:00.853+03	2021-05-19 18:22:00.861+03	
eb12c4ee-54ef-bae8-385a-b419d4c68ce9	2021-05-19 18:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:22:20.853+03	2021-05-19 18:22:20.872+03	
98de076b-d302-4a09-76d7-502b0af45474	2021-05-19 18:22:40.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:22:40.854+03	2021-05-19 18:22:40.864+03	
c9070607-655f-7abd-071d-f55e5a41f742	2021-05-19 18:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:24:52.853+03	2021-05-19 18:24:52.865+03	
8d80fc4c-26ee-a665-baaf-20e8693e803c	2021-05-19 18:25:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:25:14.853+03	2021-05-19 18:25:14.862+03	
8a71c5f8-8bd8-6b96-53f3-2896812b6d50	2021-05-19 18:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:25:34.853+03	2021-05-19 18:25:34.864+03	
d954aff4-3df5-9008-bd8f-a71fc0846fe7	2021-05-19 18:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:25:54.853+03	2021-05-19 18:25:54.864+03	
4caa4da4-c665-ece9-6f06-1e5688d6a8de	2021-05-19 18:26:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:26:14.853+03	2021-05-19 18:26:14.861+03	
a8734efe-1220-27f3-e9e3-1e884859ac2b	2021-05-19 18:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:26:34.853+03	2021-05-19 18:26:34.861+03	
ce3b5b17-1579-9895-d976-7013ab8c0093	2021-05-19 18:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:26:55.853+03	2021-05-19 18:26:55.86+03	
b5623ad3-e1ea-ad75-978c-b4e579764016	2021-05-19 18:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:27:15.853+03	2021-05-19 18:27:15.871+03	
785414c8-98ff-ffc2-0ed8-4c44900d8b0c	2021-05-19 18:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:27:35.853+03	2021-05-19 18:27:35.861+03	
d208ad43-51ba-c4ba-447c-7c9b69c9554a	2021-05-19 18:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:27:55.853+03	2021-05-19 18:27:55.859+03	
b43d65cc-2be7-4276-46a5-5139257f5c3b	2021-05-19 18:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:28:15.853+03	2021-05-19 18:28:15.862+03	
49e70b9c-659b-9695-00a7-19a529f3ea1b	2021-05-19 18:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:28:35.853+03	2021-05-19 18:28:35.861+03	
20beb16d-564b-bb10-e481-75ba8b6a1918	2021-05-19 18:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:28:55.853+03	2021-05-19 18:28:55.86+03	
47e8d9c1-7cb7-6afa-b581-582e7b252c59	2021-05-19 18:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:29:05.853+03	2021-05-19 18:29:05.862+03	
a22fea0d-09ba-f833-6134-d9c0c5126c67	2021-05-19 18:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:29:15.853+03	2021-05-19 18:29:15.873+03	
a4bc9ef1-4f94-dd24-9019-be0facbdefeb	2021-05-19 18:29:25.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:29:25.861+03	2021-05-19 18:29:25.869+03	
a763dcb1-2300-6419-d08d-f391e0e0ba43	2021-05-19 18:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:29:57.853+03	2021-05-19 18:29:57.861+03	
55989dcb-63b7-02d0-6d06-e071e4494a97	2021-05-19 18:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:30:07.853+03	2021-05-19 18:30:07.863+03	
055d4052-6250-9a0b-3fd1-43ff0e94de8e	2021-05-19 17:52:18.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:52:18.853+03	2021-05-19 17:52:18.864+03	
3ed48cff-230b-0b21-8f48-ca1da034b13b	2021-05-19 17:52:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:52:38.853+03	2021-05-19 17:52:39.408+03	
25e36e95-d3a4-7dec-912b-48b672d2e447	2021-05-19 17:52:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:52:58.853+03	2021-05-19 17:52:58.862+03	
ae77608a-99bc-56ef-0a86-0da280056c71	2021-05-19 17:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:53:18.853+03	2021-05-19 17:53:18.867+03	
63733da5-6dce-cc28-b006-99a87251dba1	2021-05-19 17:53:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:53:38.853+03	2021-05-19 17:53:38.869+03	
00b0b8b4-e8dd-b2d8-1905-ba7c20223728	2021-05-19 17:53:48.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:53:48.853+03	2021-05-19 17:53:48.908+03	
875569e4-64bb-c986-9e39-077010396354	2021-05-19 17:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:53:58.853+03	2021-05-19 17:53:58.865+03	
fc289959-18f0-d086-7798-4f219e769f77	2021-05-19 17:54:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:54:08.853+03	2021-05-19 17:54:08.877+03	
4a78c192-f1e0-d824-1293-f2cd6139a9fe	2021-05-19 17:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:54:18.853+03	2021-05-19 17:54:18.861+03	
7fed352b-c47d-bd39-328c-3b999483168f	2021-05-19 17:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:54:28.853+03	2021-05-19 17:54:28.861+03	
b2aa073b-d04a-4a0c-0c12-3c1e54ffbbb1	2021-05-19 17:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:54:38.853+03	2021-05-19 17:54:38.861+03	
75ab364f-f4cc-8881-4721-89389252d274	2021-05-19 17:54:48.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:54:48.853+03	2021-05-19 17:54:48.865+03	
81afe0c6-3843-57a1-2573-80dacb3a86fc	2021-05-19 17:54:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:54:58.853+03	2021-05-19 17:54:58.863+03	
e38f3db6-0d56-71b6-7aa9-1055b3c85d8f	2021-05-19 17:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:55:08.853+03	2021-05-19 17:55:08.872+03	
8813f57e-8347-9ef0-d60b-c0fc715bc030	2021-05-19 17:55:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:55:18.853+03	2021-05-19 17:55:18.863+03	
dfd6beff-0292-26eb-0ae1-6c2f83e905bf	2021-05-19 17:55:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:55:28.853+03	2021-05-19 17:55:28.864+03	
a8f8955e-5f14-897d-355f-251562255855	2021-05-19 17:55:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:55:38.853+03	2021-05-19 17:55:38.865+03	
70f13fac-1464-6c8e-73d8-87f0ae40044e	2021-05-19 17:55:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:55:48.853+03	2021-05-19 17:55:48.863+03	
f22a00a3-3212-be0e-2a40-8bc5c888cc3b	2021-05-19 17:55:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:55:58.853+03	2021-05-19 17:55:58.865+03	
5d49cac8-47d9-b47d-4f78-70c239121384	2021-05-19 17:56:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:56:08.853+03	2021-05-19 17:56:09.14+03	
44b6319b-fbe7-ef25-2f1f-4f2049d4557c	2021-05-19 17:56:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:56:18.853+03	2021-05-19 17:56:18.862+03	
93669953-3694-e9c5-9c07-7fa9d3ce922f	2021-05-19 17:56:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:56:28.853+03	2021-05-19 17:56:28.864+03	
c8667213-72d8-10a5-02a0-4944bfbd9398	2021-05-19 17:56:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:56:38.853+03	2021-05-19 17:56:38.876+03	
f86ceb9f-a24c-961c-f275-8142d337e79e	2021-05-19 17:56:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:56:48.853+03	2021-05-19 17:56:48.864+03	
264350b8-f771-286a-0c46-e07935b021bc	2021-05-19 17:56:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:56:58.853+03	2021-05-19 17:56:58.865+03	
723c95ee-fef6-545e-aea3-0bb5e13940c8	2021-05-19 17:57:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:57:08.853+03	2021-05-19 17:57:08.863+03	
e04e0531-1cca-9716-56ff-7f1da718db59	2021-05-19 17:57:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:57:18.853+03	2021-05-19 17:57:18.862+03	
36c014a6-d354-e106-838a-40482366d617	2021-05-19 17:57:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:57:28.853+03	2021-05-19 17:57:28.863+03	
5ea3e51e-0eb7-eb77-cc2f-4560d231b65b	2021-05-19 17:57:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:57:38.853+03	2021-05-19 17:57:38.874+03	
e07a661e-c2e4-152b-446c-0ae98cebad1c	2021-05-19 17:57:48.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:57:48.853+03	2021-05-19 17:57:48.865+03	
7fe95367-1d35-d88c-8332-7f2a1fe1a4ed	2021-05-19 17:57:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:57:58.853+03	2021-05-19 17:57:58.862+03	
962a5869-7025-7aff-ee6f-da59efe9cf58	2021-05-19 17:58:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:58:08.853+03	2021-05-19 17:58:08.864+03	
c1633ba8-8bea-a74c-cf35-804b25226389	2021-05-19 17:58:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:58:18.853+03	2021-05-19 17:58:18.864+03	
cb95a133-bc2a-5cde-4d56-5b27301ebb85	2021-05-19 17:58:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:58:28.853+03	2021-05-19 17:58:28.864+03	
8948c5c8-7117-7836-8094-afb5b1cc1acd	2021-05-19 17:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:58:38.853+03	2021-05-19 17:58:38.863+03	
0a60a483-fdf8-96bd-f80f-743419bc6fe0	2021-05-19 17:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:58:48.853+03	2021-05-19 17:58:48.863+03	
140bfb6b-c853-9aba-37ef-9dd767bb983e	2021-05-19 17:58:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:58:58.853+03	2021-05-19 17:58:58.862+03	
4a33c32a-a62f-0015-58c8-e5a2609b6722	2021-05-19 17:59:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:59:08.853+03	2021-05-19 17:59:08.863+03	
48cecfe6-3d93-f793-774f-bc3c8a6e887c	2021-05-19 17:59:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:59:18.853+03	2021-05-19 17:59:18.875+03	
674614af-4fcd-6a0e-21d1-acbac543e67c	2021-05-19 17:59:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:59:28.853+03	2021-05-19 17:59:28.863+03	
a4d179af-d81d-8f56-fe00-972e5707bb7d	2021-05-19 17:59:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:59:38.853+03	2021-05-19 17:59:38.863+03	
6241bae6-89ad-1e3e-e677-07a39f94abc1	2021-05-19 17:59:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:59:48.853+03	2021-05-19 17:59:48.861+03	
1e4f8a3f-0982-25b8-4278-7d8ae0426528	2021-05-19 17:59:58.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 17:59:58.857+03	2021-05-19 17:59:58.87+03	
9e6e0d7d-80ab-56be-4036-152edff2dfdb	2021-05-19 18:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 18:00:00.853+03	2021-05-19 18:00:00.89+03	ERROR
2f3e21eb-f998-1135-ae6a-4f05db8f1e4b	2021-05-19 18:00:09.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:00:09.853+03	2021-05-19 18:00:09.881+03	
1205a2bd-68c1-7de6-154a-f828bb1638c4	2021-05-19 18:00:19.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:00:19.853+03	2021-05-19 18:00:20.2+03	
95013b71-8cec-d7b3-3b4b-8d916f939b67	2021-05-19 18:00:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:00:29.853+03	2021-05-19 18:00:29.896+03	
a7852b29-0b53-eb35-213c-9f3e7d5463ac	2021-05-19 18:00:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:00:39.853+03	2021-05-19 18:00:39.882+03	
cdb11401-c4e8-090e-6cbc-61012ebc979f	2021-05-19 18:00:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:00:49.853+03	2021-05-19 18:00:49.865+03	
9218b218-d82c-219c-57fa-5ea7b83acbee	2021-05-19 18:00:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:00:59.853+03	2021-05-19 18:00:59.862+03	
7ddfbc35-641f-94b4-7322-c924d8fd6c6e	2021-05-19 18:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:01:09.853+03	2021-05-19 18:01:09.877+03	
8891339f-7c7e-e344-a386-3942accd24b7	2021-05-19 18:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:01:19.853+03	2021-05-19 18:01:19.865+03	
9e83d051-8b72-b13c-b49b-d74e4527bc35	2021-05-19 18:01:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:01:29.853+03	2021-05-19 18:01:29.865+03	
b74275ba-c720-03fb-af6d-21e29c700df1	2021-05-19 18:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:01:39.853+03	2021-05-19 18:01:39.862+03	
c3c1d560-d2c0-8cd3-a3cc-c2b8e4df5fbb	2021-05-19 18:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:01:49.853+03	2021-05-19 18:01:49.861+03	
c4dd9772-ea4e-4189-ab7b-897a8b49952d	2021-05-19 18:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:01:59.853+03	2021-05-19 18:02:00.008+03	
9d83003e-af09-330e-0e3e-3564370a59ca	2021-05-19 18:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:02:09.853+03	2021-05-19 18:02:09.866+03	
c321a7fc-7287-05d7-919b-591d81a7c97d	2021-05-19 18:02:19.883	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:02:19.882+03	2021-05-19 18:02:19.967+03	
489dd58b-7f2f-232d-f750-bb75603ea827	2021-05-19 18:02:30.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:02:30.855+03	2021-05-19 18:02:30.906+03	
04188a22-49ba-2f5b-9b3f-d965baa6d874	2021-05-19 18:02:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:02:41.854+03	2021-05-19 18:02:41.88+03	
ffdaa208-2ace-c951-99d7-88bd3e41dca5	2021-05-19 18:02:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:02:52.853+03	2021-05-19 18:02:52.889+03	
74c5e930-4ed0-db53-1fac-05072bbfb3eb	2021-05-19 18:03:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:03:02.853+03	2021-05-19 18:03:02.863+03	
2075d7cd-9658-796c-0a44-2e8b604fc65a	2021-05-19 18:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:03:12.853+03	2021-05-19 18:03:12.861+03	
21dceed7-d8c6-51c8-1fee-05c064653baf	2021-05-19 18:30:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:30:37.853+03	2021-05-19 18:30:37.862+03	
540b9234-250c-1255-518e-33f10e5aba40	2021-05-19 18:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:03:22.853+03	2021-05-19 18:03:22.876+03	
70ec9cd4-694a-f3d8-de4e-b8939bfdf443	2021-05-19 18:07:05.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:07:05.854+03	2021-05-19 18:07:05.886+03	
1144a292-0fbf-6517-a139-46eaecd43fdc	2021-05-19 18:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:03:42.853+03	2021-05-19 18:03:42.868+03	
1a392523-3e0b-a4d8-3887-9e3718794057	2021-05-19 18:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:59:40.853+03	2021-05-19 18:59:40.861+03	
1b9e222a-850c-435a-a810-04725ec1307f	2021-05-19 18:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:04:02.853+03	2021-05-19 18:04:02.863+03	
904b6aa3-617e-e63c-451e-9af982dc8357	2021-05-19 18:07:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:07:26.853+03	2021-05-19 18:07:26.866+03	
e89a8129-67b2-eb06-626b-2277bf87d047	2021-05-19 18:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:04:22.853+03	2021-05-19 18:04:22.878+03	
36b56ca8-3c18-42b2-776f-426670e54e55	2021-05-19 18:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:30:47.853+03	2021-05-19 18:30:47.864+03	
b47d27cf-7444-da3f-8374-0ca24b22e32a	2021-05-19 18:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:04:32.853+03	2021-05-19 18:04:32.863+03	
3115b96d-1403-fe4f-5559-c1ba6ac0735c	2021-05-19 18:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:07:57.853+03	2021-05-19 18:07:57.862+03	
e375af14-f490-9d8d-19bc-a8b74ae6b8f2	2021-05-19 18:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:05:14.853+03	2021-05-19 18:05:14.862+03	
2a2cb3e5-a4a4-cbb8-3883-220cded7f930	2021-05-19 18:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:05:34.853+03	2021-05-19 18:05:34.876+03	
354685be-a9e8-4008-671d-10495ed0d6b7	2021-05-19 18:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:08:17.853+03	2021-05-19 18:08:17.865+03	
8a6fb396-6b2f-c358-4512-88c247b73425	2021-05-19 18:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:05:54.853+03	2021-05-19 18:05:54.861+03	
c8ec8aca-3cc6-17ed-c31d-b6f284cb1e19	2021-05-19 18:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:30:57.853+03	2021-05-19 18:30:57.865+03	
e0f588fb-b9c6-af24-df1e-f5cadddbad01	2021-05-19 18:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:06:14.853+03	2021-05-19 18:06:14.866+03	
6a544dd3-931c-52dc-17b9-da877f886c80	2021-05-19 18:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:08:47.853+03	2021-05-19 18:08:47.86+03	
ea830919-97f5-e2fd-ef02-676650eb556a	2021-05-19 18:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:06:34.853+03	2021-05-19 18:06:34.867+03	
03afe6ee-dcd1-37a4-aa44-232e09d4f590	2021-05-19 18:09:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:09:07.853+03	2021-05-19 18:09:07.872+03	
b6e46469-1827-2d0c-7d16-681457688edf	2021-05-19 18:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:31:18.853+03	2021-05-19 18:31:18.864+03	
23bd6791-0f1d-0eab-4750-9c9f484d8ff4	2021-05-19 18:09:39.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:09:39.855+03	2021-05-19 18:09:39.913+03	
fbad4b52-87dc-c6ae-9b2c-a3162b53ab57	2021-05-19 18:11:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:11:40.853+03	2021-05-19 18:11:40.893+03	
0fe77062-e29d-610c-d743-c34115b0d772	2021-05-19 18:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:31:38.853+03	2021-05-19 18:31:38.861+03	
0995cbe4-17a6-1b2b-f81a-605b1ad52271	2021-05-19 18:14:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:14:36.852+03	2021-05-19 18:14:36.887+03	
d0035b31-3d5f-c936-0b37-4f6f9c66eecc	2021-05-19 18:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:16:57.853+03	2021-05-19 18:16:57.861+03	
bcf966db-58f1-4c77-6584-59a6385bba29	2021-05-19 18:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:31:58.853+03	2021-05-19 18:31:58.86+03	
5d1e1685-f827-c365-0007-96d04c8b2a32	2021-05-19 18:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:17:17.853+03	2021-05-19 18:17:17.86+03	
1483e554-f91e-f121-b03e-edeadc4489f1	2021-05-19 18:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:17:37.853+03	2021-05-19 18:17:37.861+03	
4b13e933-534e-1e1c-20ef-d68b73d6ad2e	2021-05-19 18:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:32:09.853+03	2021-05-19 18:32:09.86+03	
8f33e54b-4a69-5ccd-5c6d-4e4de981ad73	2021-05-19 18:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:17:57.853+03	2021-05-19 18:17:57.871+03	
a07616d6-3f32-a16c-b61b-a3e12c28b3f5	2021-05-19 18:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:18:07.853+03	2021-05-19 18:18:07.86+03	
ffda682d-641c-6138-92b0-faa7f08ed56d	2021-05-19 18:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:32:30.853+03	2021-05-19 18:32:30.868+03	
f8881e1f-423c-f354-62bf-abc9176f7e17	2021-05-19 18:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:18:17.853+03	2021-05-19 18:18:17.86+03	
7bcee721-5213-1db9-8811-1d10ae2a5025	2021-05-19 18:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:18:37.853+03	2021-05-19 18:18:37.872+03	
6a34c84e-d329-a5f5-9118-68d3148b7996	2021-05-19 18:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:32:40.853+03	2021-05-19 18:32:40.871+03	
4e4f77e7-6e7c-e0a5-9048-fb1c503c8057	2021-05-19 18:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:18:57.853+03	2021-05-19 18:18:57.863+03	
5f26d015-9659-a9ce-f345-15f8ad7c9e5d	2021-05-19 18:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:19:19.853+03	2021-05-19 18:19:19.87+03	
2a930f12-0285-6185-7317-2bb979a22362	2021-05-19 18:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:32:50.853+03	2021-05-19 18:32:50.87+03	
a2fc9d8d-efb7-f8f7-7983-b3e069abd3cf	2021-05-19 18:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:19:39.853+03	2021-05-19 18:19:39.872+03	
dc213724-5695-98d4-4977-4a84087ab279	2021-05-19 18:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:19:59.853+03	2021-05-19 18:19:59.864+03	
ebeafdc4-8a93-95d6-9a0c-0510673c621d	2021-05-19 18:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:20:09.853+03	2021-05-19 18:20:09.86+03	
97542e43-5f4d-2c2d-2eb5-3c5b23080344	2021-05-19 18:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:20:29.853+03	2021-05-19 18:20:29.86+03	
26f35f2b-5c30-035e-ac93-c240bc9d9a61	2021-05-19 18:20:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:20:49.853+03	2021-05-19 18:20:49.861+03	
4055e622-757d-88fe-bcb7-1c1d6ed6df3a	2021-05-19 18:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:20:59.853+03	2021-05-19 18:20:59.86+03	
25ceb89c-ddb3-bf7a-48ac-e65c678b9ed4	2021-05-19 18:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:21:20.852+03	2021-05-19 18:21:20.862+03	
3585ae68-2d36-bc3d-ca87-a6bb54e49174	2021-05-19 18:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:21:40.853+03	2021-05-19 18:21:40.883+03	
2a4825b8-47c7-a5a8-4de6-0773509d62c9	2021-05-19 18:21:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:21:50.853+03	2021-05-19 18:21:50.863+03	
8ffb894e-13a6-6b86-e073-a97bbfe7facb	2021-05-19 18:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:22:10.853+03	2021-05-19 18:22:10.864+03	
33dcb056-052b-78e2-a75d-67ccd1bf8ef0	2021-05-19 18:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:22:30.853+03	2021-05-19 18:22:30.877+03	
732c1441-0627-834d-4c04-2b85f008d6a1	2021-05-19 18:22:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:22:51.852+03	2021-05-19 18:22:51.889+03	
9e9ab5d9-812f-ef7c-5151-6764bc945e88	2021-05-19 18:23:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:23:01.853+03	2021-05-19 18:23:01.9+03	
27be6f5c-699b-ccfb-857b-6aeafffe73ed	2021-05-19 18:23:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:23:11.854+03	2021-05-19 18:23:11.862+03	
51126c17-3659-0066-8237-b391891ad8d6	2021-05-19 18:23:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:23:21.854+03	2021-05-19 18:23:21.862+03	
4df8d7dd-15f5-4048-3175-d940403644a0	2021-05-19 18:23:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:23:31.854+03	2021-05-19 18:23:31.874+03	
a2be3da2-7855-c541-f59d-9ca93d099d43	2021-05-19 18:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:23:42.852+03	2021-05-19 18:23:42.874+03	
c4210750-4ce9-bf57-7c22-d8b30948650e	2021-05-19 18:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:23:52.853+03	2021-05-19 18:23:52.862+03	
8ad3db17-4201-600a-87d9-a1230c3076c2	2021-05-19 18:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:24:02.853+03	2021-05-19 18:24:02.861+03	
ff5e1718-368b-cd0b-4f70-7ad3a8c3a957	2021-05-19 18:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:24:12.853+03	2021-05-19 18:24:12.865+03	
7b1594b9-a9f6-7b3b-6d76-332acf1f2b4e	2021-05-19 18:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:24:22.853+03	2021-05-19 18:24:22.864+03	
65b55a1b-8bff-e4d8-c49e-812df6fd6b46	2021-05-19 18:24:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:24:32.853+03	2021-05-19 18:24:32.919+03	
821824b0-ab62-b376-51d4-0dc24f7fe4f0	2021-05-19 18:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:27:25.853+03	2021-05-19 18:27:26.162+03	
e3132075-a6d8-1df0-10a8-ddba8a429f5d	2021-05-19 18:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:30:17.853+03	2021-05-19 18:30:17.86+03	
1df6dfea-8d5a-b85c-0b95-f1c741163fcb	2021-05-19 18:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:30:27.853+03	2021-05-19 18:30:27.86+03	
14099929-a6e6-1107-539c-49ce6f2ab87f	2021-05-19 18:03:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:03:32.853+03	2021-05-19 18:03:32.864+03	
68ceb7ec-f8f2-5a45-6032-b931b3cc30be	2021-05-19 18:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:07:16.853+03	2021-05-19 18:07:16.864+03	
45a465bc-1839-a8b9-1a64-0e40035433d2	2021-05-19 18:03:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:03:52.853+03	2021-05-19 18:03:52.863+03	
292d811d-455c-93b4-600c-8cc07009017d	2021-05-19 18:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:31:08.852+03	2021-05-19 18:31:08.86+03	
b465f612-f8cb-d974-2213-b5ff9b464f92	2021-05-19 18:04:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:04:12.853+03	2021-05-19 18:04:12.872+03	
78706de3-70ea-8f3b-001b-bbc3348fb2d6	2021-05-19 18:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:07:37.853+03	2021-05-19 18:07:37.861+03	
1db78bdb-ae3e-dd94-5da0-d29b1877e44c	2021-05-19 18:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:04:43.852+03	2021-05-19 18:04:43.862+03	
b9543f62-fa81-61eb-61fb-d7636d2b4568	2021-05-19 18:04:53.867	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:04:53.859+03	2021-05-19 18:04:53.901+03	
7337bd68-e0bf-3cb1-0917-0f02e167d506	2021-05-19 18:07:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:07:47.853+03	2021-05-19 18:07:47.861+03	
aec0f47e-4212-986a-b154-38b71842d023	2021-05-19 18:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:05:04.853+03	2021-05-19 18:05:04.88+03	
6a41dd42-fde6-4942-70ba-4f379ffc6d1f	2021-05-19 18:31:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:31:28.853+03	2021-05-19 18:31:28.867+03	
8a810eea-9326-cd48-75ba-c5d33192f278	2021-05-19 18:05:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:05:24.853+03	2021-05-19 18:05:24.863+03	
9c2e55e0-bd2c-54e8-87ef-ed42ac3bf0bf	2021-05-19 18:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:08:07.853+03	2021-05-19 18:08:07.861+03	
c51e3460-73e0-a01a-42f8-6169e0d6c6db	2021-05-19 18:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:05:44.853+03	2021-05-19 18:05:44.863+03	
198419e5-dfb0-eeb9-b9ac-2ecf015c32db	2021-05-19 18:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:06:04.853+03	2021-05-19 18:06:04.863+03	
cc4f23bd-688e-81d5-f7fb-45d7f106b465	2021-05-19 18:08:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:08:27.853+03	2021-05-19 18:08:27.86+03	
f8ecc617-2604-25c0-0643-da98b4b32188	2021-05-19 18:06:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:06:24.853+03	2021-05-19 18:06:24.862+03	
2b588973-06d8-b695-5f90-957a6a5f1c72	2021-05-19 18:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:31:48.853+03	2021-05-19 18:31:48.861+03	
e56a70c2-9eae-ef1e-97e8-4d1fed64a9e6	2021-05-19 18:09:17.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:09:17.856+03	2021-05-19 18:09:17.881+03	
d44cd98a-48bb-8836-eb77-c76fc7ae72d2	2021-05-19 18:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:09:50.852+03	2021-05-19 18:09:50.875+03	
cc1b66a9-637d-7f5c-25ec-492e3ce8d292	2021-05-19 18:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:32:20.852+03	2021-05-19 18:32:20.86+03	
fd1c65c0-5021-e770-4a45-83d7fcb547bd	2021-05-19 18:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:10:10.853+03	2021-05-19 18:10:10.868+03	
7b40aa03-fda2-1624-80f1-e34a61069110	2021-05-19 18:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:10:30.853+03	2021-05-19 18:10:30.862+03	
c1f41e89-124c-4b20-8be3-94456612afdb	2021-05-19 18:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:33:00.853+03	2021-05-19 18:33:00.861+03	
7ae3a8fd-021c-8802-87b9-be2000c6c8f0	2021-05-19 18:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:10:50.853+03	2021-05-19 18:10:50.862+03	
b3cb272b-61d2-e06f-b6fd-5c8dc2f41f90	2021-05-19 18:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:33:10.853+03	2021-05-19 18:33:10.864+03	
c6097f2a-d2fc-530a-b74d-a859ab9db183	2021-05-19 18:11:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:11:10.853+03	2021-05-19 18:11:10.874+03	
3b111c6f-dc46-c982-669a-5a82b210df07	2021-05-19 18:11:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:11:30.853+03	2021-05-19 18:11:30.863+03	
47c07f8a-42c9-319c-9e1c-2363e6c71e11	2021-05-19 18:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:33:20.853+03	2021-05-19 18:33:20.861+03	
ab24f5f2-ce30-4c39-6859-314cc1627689	2021-05-19 18:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:11:50.853+03	2021-05-19 18:11:50.873+03	
f3e5a1ad-3f1f-4062-2852-fe9d26e124c1	2021-05-19 18:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:12:10.853+03	2021-05-19 18:12:10.86+03	
b2face49-4223-70e9-a573-2c6777142484	2021-05-19 18:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:33:30.853+03	2021-05-19 18:33:30.86+03	
48a5a1e5-6f6e-dad9-77da-1c52c82c1ab0	2021-05-19 18:12:30.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:12:30.859+03	2021-05-19 18:12:30.884+03	
ab1a1d29-9be0-8f2e-aaa2-d8b244478b12	2021-05-19 18:12:51.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:12:51.855+03	2021-05-19 18:12:51.864+03	
08909ae4-d461-c4d3-326e-1e7c39901bac	2021-05-19 18:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:33:40.853+03	2021-05-19 18:33:40.861+03	
aafa50f5-d95b-61ca-8fe5-428b3e1c7aa8	2021-05-19 18:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:13:12.853+03	2021-05-19 18:13:12.861+03	
a46743e6-5e60-ce52-b9e1-5ecb32f64787	2021-05-19 18:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:13:54.853+03	2021-05-19 18:13:54.861+03	
6e270008-ff21-3e07-263c-78f6a957af88	2021-05-19 18:33:50.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:33:50.853+03	2021-05-19 18:33:50.865+03	
f1843939-6764-b210-da0f-2730d9192755	2021-05-19 18:14:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:14:04.853+03	2021-05-19 18:14:04.861+03	
79f6da2c-50c8-94a5-ff69-8cbdd79d5ce7	2021-05-19 18:14:14.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:14:14.861+03	2021-05-19 18:14:14.885+03	
80a928a0-49a0-75e3-013b-08a59687d318	2021-05-19 18:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:34:00.853+03	2021-05-19 18:34:00.869+03	
788cd9ed-dfa6-5ea9-e6e8-d133adda31ab	2021-05-19 18:14:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:14:46.852+03	2021-05-19 18:14:46.861+03	
4b5d20af-39e4-5c45-a338-7297df4c5e29	2021-05-19 18:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:15:06.853+03	2021-05-19 18:15:06.861+03	
ed18dfb1-ae4f-680f-1b81-3ace615d95ba	2021-05-19 18:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:34:10.853+03	2021-05-19 18:34:10.865+03	
a6b3eaa2-a70f-aeb7-8b61-c2878fd851fc	2021-05-19 18:15:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:15:27.853+03	2021-05-19 18:15:27.864+03	
98c2f15d-af83-5b97-d9ab-d1dc45878b27	2021-05-19 18:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:15:37.853+03	2021-05-19 18:15:37.863+03	
dbc99936-3aa2-884e-7218-4d1d05b76460	2021-05-19 18:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:15:57.853+03	2021-05-19 18:15:57.861+03	
afe8cae5-b9cf-12d9-363c-a2c0347bb90e	2021-05-19 18:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:16:37.853+03	2021-05-19 18:16:37.896+03	
3c6dabd8-86b8-d017-2156-bd40231e5a32	2021-05-19 18:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 18:20:00.853+03	2021-05-19 18:20:00.902+03	ERROR
14c6232f-5f9b-95f4-ec47-afa52be7f0f2	2021-05-19 18:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:24:42.853+03	2021-05-19 18:24:42.862+03	
5ea0c0d4-afb9-93a7-3712-a8935e4a5f66	2021-05-19 18:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:25:03.853+03	2021-05-19 18:25:03.86+03	
6c8cf4f2-c51b-299f-5b22-95a19f6c088c	2021-05-19 18:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:25:24.853+03	2021-05-19 18:25:24.862+03	
4c67d743-4f9c-7ec0-1a88-a82f794a754c	2021-05-19 18:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:25:44.853+03	2021-05-19 18:25:44.865+03	
194a95b3-e1f6-de8d-0769-b2d885c4bd4a	2021-05-19 18:26:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:26:04.853+03	2021-05-19 18:26:04.86+03	
0c3e2364-57b3-ce90-8fa9-6bf44242cfc4	2021-05-19 18:26:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:26:24.853+03	2021-05-19 18:26:24.861+03	
bcb50a48-1fee-0a9f-ce92-070ce30a17df	2021-05-19 18:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:26:44.853+03	2021-05-19 18:26:44.86+03	
f31004b8-53c6-07c4-745d-e123f40fdbd7	2021-05-19 18:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:27:05.853+03	2021-05-19 18:27:05.86+03	
608677c4-cb11-b876-19c8-694d0c629f04	2021-05-19 18:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:27:45.853+03	2021-05-19 18:27:45.861+03	
6ef2c3a9-fba8-afa2-8469-0834eafead83	2021-05-19 18:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:28:05.853+03	2021-05-19 18:28:05.862+03	
0fb5afc3-19e4-cf88-b31a-02e75eed3680	2021-05-19 18:28:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:28:25.853+03	2021-05-19 18:28:25.881+03	
e7ff1782-2426-36cb-4fbe-5f80974f12c4	2021-05-19 18:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:28:45.853+03	2021-05-19 18:28:45.862+03	
404f42b3-b153-1cf2-20e2-e455547144a9	2021-05-19 18:29:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:29:36.853+03	2021-05-19 18:29:36.862+03	
df9b1e1a-05ad-b7de-f2d0-06d240bc0a22	2021-05-19 18:29:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:29:46.854+03	2021-05-19 18:29:46.874+03	
b69bed10-b176-ccca-f112-d546e6b5a82d	2021-05-19 18:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 18:30:00.853+03	2021-05-19 18:30:00.858+03	ERROR
1dfc9f53-c06c-fd2f-f51a-6a6579ce461e	2021-05-19 19:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:37:44.853+03	2021-05-19 19:37:44.862+03	
6c9499a3-22e1-351b-0b26-b0c598d729e0	2021-05-19 18:34:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:34:20.854+03	2021-05-19 18:34:20.869+03	
b80fa111-76cf-9b95-22ab-984bbeba2c92	2021-05-19 18:59:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:59:50.853+03	2021-05-19 18:59:50.861+03	
a5688672-457e-a6ee-1ee8-e8691e1ce50f	2021-05-19 18:34:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:34:31.854+03	2021-05-19 18:34:31.863+03	
890ebca3-bac9-020e-f8d2-fd8d06e3f7ad	2021-05-19 18:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:34:42.853+03	2021-05-19 18:34:42.875+03	
14f10c1a-fb45-7cac-8e40-597c52925032	2021-05-19 19:00:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:00:10.853+03	2021-05-19 19:00:10.864+03	
baaa05f3-ac24-b73b-b578-26b80fec20b2	2021-05-19 18:34:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:34:52.853+03	2021-05-19 18:34:52.862+03	
68b45427-12d2-9b59-0e25-fa9447d7012f	2021-05-19 18:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:35:12.853+03	2021-05-19 18:35:12.86+03	
6db63e05-a921-2dbb-29eb-312b5522df14	2021-05-19 19:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:00:30.853+03	2021-05-19 19:00:30.862+03	
5391e879-4a10-1a81-117a-799d03eb907e	2021-05-19 18:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:35:32.853+03	2021-05-19 18:35:32.862+03	
0919acf8-f9d2-c1d5-6def-f9d2db1b380c	2021-05-19 18:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:35:52.853+03	2021-05-19 18:35:52.861+03	
d0c73485-12a4-2b58-4332-a0f128176c27	2021-05-19 19:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:00:50.853+03	2021-05-19 19:00:50.869+03	
089051b6-7192-b631-1f6c-d1777496bb24	2021-05-19 18:36:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:36:12.853+03	2021-05-19 18:36:13.439+03	
0352d4ad-67ef-99a9-be2a-3979927eae63	2021-05-19 18:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:36:32.853+03	2021-05-19 18:36:32.869+03	
06177b7b-60cb-13a5-4709-3b34a904d98b	2021-05-19 19:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:01:10.853+03	2021-05-19 19:01:10.86+03	
dd290fb1-4ce2-892c-4cc8-55f30108fec1	2021-05-19 18:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:37:03.852+03	2021-05-19 18:37:03.872+03	
1b3b8277-a7e2-d52b-3a40-c905276bccc4	2021-05-19 18:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:37:23.853+03	2021-05-19 18:37:23.861+03	
b64ca83e-f8c6-f743-9d41-20b0d5de2222	2021-05-19 19:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:01:30.853+03	2021-05-19 19:01:30.861+03	
70de8968-fd04-8888-e99f-8ae748c64d5a	2021-05-19 18:37:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:37:33.853+03	2021-05-19 18:37:33.863+03	
44b993d2-d8e2-ff87-7c46-3e36502a03c0	2021-05-19 18:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:37:53.853+03	2021-05-19 18:37:53.861+03	
2472e94e-9636-21d7-a48b-e6ab13b59d74	2021-05-19 19:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:01:40.853+03	2021-05-19 19:01:40.862+03	
adc2c434-6e0a-bbdb-4c06-97dbd51e29d6	2021-05-19 18:38:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:38:13.853+03	2021-05-19 18:38:13.864+03	
d8b9cb3d-9fc4-e1eb-ae9f-c5a146d40c09	2021-05-19 18:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:38:34.853+03	2021-05-19 18:38:34.864+03	
73034eb7-f91d-dcf4-13bb-80b0ce5183e4	2021-05-19 19:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:02:00.853+03	2021-05-19 19:02:00.861+03	
9acb1db5-4099-c8ef-b9a0-25fe73d782fa	2021-05-19 18:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:38:55.852+03	2021-05-19 18:38:55.957+03	
08d6f85c-e029-21f7-f403-a4a5995e34d2	2021-05-19 18:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:39:15.853+03	2021-05-19 18:39:15.86+03	
0cf1652f-179a-d1b6-c8bc-39ef5fb21448	2021-05-19 19:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:02:20.853+03	2021-05-19 19:02:20.862+03	
9e842187-6c47-ad7b-9072-3f7614fa1e93	2021-05-19 18:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:39:25.853+03	2021-05-19 18:39:25.861+03	
248481a8-4b39-7de9-f319-844b98387e24	2021-05-19 18:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:39:45.853+03	2021-05-19 18:39:45.87+03	
dc5fbb18-1167-63cc-93ac-fe1b0b6d7a93	2021-05-19 19:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:02:41.853+03	2021-05-19 19:02:41.865+03	
b7fe385f-08f2-e760-5318-2174f1b3d2b3	2021-05-19 18:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 18:40:00.853+03	2021-05-19 18:40:00.862+03	ERROR
11c777d9-0d03-7c04-a138-aff3e6272557	2021-05-19 18:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:40:15.853+03	2021-05-19 18:40:15.862+03	
1e9a04df-79fe-c08a-176a-0b7b75e961d2	2021-05-19 19:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:03:02.852+03	2021-05-19 19:03:02.871+03	
9f31fde0-7de1-ce10-c36f-1f46a1abfb35	2021-05-19 18:40:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:40:25.853+03	2021-05-19 18:40:25.862+03	
a6858428-0c75-f160-e8d0-1d1663a5383f	2021-05-19 18:40:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:40:45.853+03	2021-05-19 18:40:45.863+03	
b0bd16d0-83fa-aed7-1c12-c73de73a462a	2021-05-19 19:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:03:22.853+03	2021-05-19 19:03:22.861+03	
64ad201e-37dd-7f1c-6f3c-5487b8b4c5c6	2021-05-19 18:41:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:41:05.853+03	2021-05-19 18:41:05.861+03	
e7ad5dc5-dc4e-08bc-022e-af910ec62ba2	2021-05-19 19:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:03:44.853+03	2021-05-19 19:03:44.867+03	
a6b9484c-b914-1bbe-9fbd-0a53c641037f	2021-05-19 19:04:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:04:05.853+03	2021-05-19 19:04:05.863+03	
a881f3ca-03f7-a11e-2ca1-bdd79a1361da	2021-05-19 19:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:04:25.853+03	2021-05-19 19:04:25.861+03	
879d4839-16eb-0cd5-0f13-88dfa575b353	2021-05-19 19:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:04:45.853+03	2021-05-19 19:04:45.867+03	
5bae82d5-4be7-7d46-e3ce-b84683d72f5c	2021-05-19 19:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:05:05.853+03	2021-05-19 19:05:05.861+03	
a276cc3f-279b-8218-120c-20b368060696	2021-05-19 19:05:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:05:26.854+03	2021-05-19 19:05:26.864+03	
86af1c6f-872c-7a7d-9caf-99ccd12da5b7	2021-05-19 19:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:05:47.853+03	2021-05-19 19:05:47.86+03	
56a7f67b-38db-579c-5679-47607dc76171	2021-05-19 19:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:06:07.853+03	2021-05-19 19:06:07.86+03	
7c7b82c3-b42a-4257-2a0e-448e5f71266f	2021-05-19 19:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:06:27.853+03	2021-05-19 19:06:27.868+03	
bdfc71f2-df8f-9fa0-0196-9a1ffc4aabe6	2021-05-19 19:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:06:48.853+03	2021-05-19 19:06:48.861+03	
e3cb2e1d-1ace-eed5-e3e1-a5a785c70854	2021-05-19 19:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:07:09.853+03	2021-05-19 19:07:09.86+03	
5f2f0eb4-71f5-667a-420b-30b8f4cf5ddb	2021-05-19 19:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:07:30.853+03	2021-05-19 19:07:30.861+03	
0cf99d66-d4d8-8915-9b98-81ab95cd8463	2021-05-19 19:07:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:07:50.853+03	2021-05-19 19:07:50.865+03	
9fca4f85-8beb-12b4-6ab5-b52395998b8f	2021-05-19 19:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:08:10.853+03	2021-05-19 19:08:10.866+03	
5d8086a3-c895-f9c7-7dfc-5a26af47b887	2021-05-19 19:08:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:08:31.853+03	2021-05-19 19:08:31.871+03	
7491203a-704b-0304-102e-409f67cd9114	2021-05-19 19:08:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:08:51.854+03	2021-05-19 19:08:51.863+03	
36f9a8d7-e933-cd29-dd04-2f52fa9fb59e	2021-05-19 19:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:09:12.853+03	2021-05-19 19:09:12.862+03	
c0c7fe86-c1fb-83fa-4dc0-01f1d9b25aae	2021-05-19 19:09:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:09:32.853+03	2021-05-19 19:09:32.862+03	
3047a14a-016d-fa3c-88d7-c2f72c4b4a78	2021-05-19 19:10:00.855	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 19:10:00.854+03	2021-05-19 19:10:00.869+03	ERROR
9a4fd419-f4f9-a2b8-33ff-11185f282264	2021-05-19 19:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:10:13.853+03	2021-05-19 19:10:13.861+03	
e6fe8339-0754-5caa-690a-85a36da2a771	2021-05-19 19:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:10:34.853+03	2021-05-19 19:10:34.86+03	
f8d0e7af-8b66-9b2a-4eb3-584d277632e1	2021-05-19 19:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:10:55.853+03	2021-05-19 19:10:55.862+03	
4147cea6-8094-8ba4-cee7-7eac56757da4	2021-05-19 19:11:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:11:15.853+03	2021-05-19 19:11:15.864+03	
7dee4c95-3373-7a71-bea3-8f7962a13e1d	2021-05-19 19:11:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:11:35.853+03	2021-05-19 19:11:35.861+03	
45034526-baf7-1d42-6307-15c09e9dc74d	2021-05-19 19:11:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:11:56.854+03	2021-05-19 19:11:56.862+03	
60256df5-c07b-d77d-942e-5bf35961d535	2021-05-19 19:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:12:17.853+03	2021-05-19 19:12:17.862+03	
1d706f14-babd-208e-329a-2cd7e6818211	2021-05-19 19:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:12:37.853+03	2021-05-19 19:12:37.863+03	
947df762-a89c-d02e-0bc4-aa22f7074290	2021-05-19 18:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:35:02.853+03	2021-05-19 18:35:02.86+03	
7bfe2a0b-af8d-eebb-7138-dca863b67e5f	2021-05-19 18:35:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:35:22.853+03	2021-05-19 18:35:22.861+03	
e96e41eb-f4f9-3d37-44c3-52ddd39389a9	2021-05-19 18:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:35:42.853+03	2021-05-19 18:35:42.873+03	
28431d5e-a006-44e3-e5ed-52e59581c18c	2021-05-19 18:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:36:02.853+03	2021-05-19 18:36:02.868+03	
761c6409-ac23-1ad8-0f8e-8a87da4a936a	2021-05-19 18:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:36:22.853+03	2021-05-19 18:36:22.86+03	
f9497891-93ad-9c31-5ae7-4f1f38f73db3	2021-05-19 18:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:36:42.853+03	2021-05-19 18:36:42.861+03	
e8db8c1f-bc07-48fa-8dad-6e5bebdf0412	2021-05-19 18:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:36:52.853+03	2021-05-19 18:36:52.861+03	
c594de20-59e3-01d8-6c61-c6b92d15cc7d	2021-05-19 18:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:37:13.853+03	2021-05-19 18:37:13.861+03	
13b5e5c7-bc90-8264-dd45-1ae06914fc13	2021-05-19 18:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:37:43.853+03	2021-05-19 18:37:43.861+03	
91631247-517d-6d42-0cd4-01077dba53ef	2021-05-19 18:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:38:03.853+03	2021-05-19 18:38:03.865+03	
fb4be5f1-7211-f60c-220b-3ca189286e02	2021-05-19 18:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:38:24.853+03	2021-05-19 18:38:24.861+03	
a872f841-1f3c-685e-a2a4-25b84ac96749	2021-05-19 18:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:38:44.853+03	2021-05-19 18:38:44.868+03	
663f7290-2e72-f7fa-c54f-d85f43cb0925	2021-05-19 18:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:39:05.853+03	2021-05-19 18:39:05.863+03	
d807243e-a1c6-8932-1982-12052b07e894	2021-05-19 18:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:39:35.853+03	2021-05-19 18:39:35.862+03	
dfe598ea-877d-d7ff-d64d-e3e641444bc1	2021-05-19 18:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:39:55.853+03	2021-05-19 18:39:56.366+03	
a4eac30c-5982-aa32-f458-13e78921df7e	2021-05-19 18:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:40:05.853+03	2021-05-19 18:40:05.862+03	
118c46fe-f53b-cc84-089c-c820da346413	2021-05-19 18:40:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:40:35.853+03	2021-05-19 18:40:35.866+03	
fab89f54-8c25-5e65-1f01-825fa0964b85	2021-05-19 18:40:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:40:55.853+03	2021-05-19 18:40:55.862+03	
42ef4676-af87-ad82-f1c1-8c7cb0f335b0	2021-05-19 18:41:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:41:16.852+03	2021-05-19 18:41:16.883+03	
e8b2fcf6-609c-5976-5a32-613bb48874bf	2021-05-19 18:41:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:41:26.853+03	2021-05-19 18:41:26.862+03	
50c5649e-3ca6-148b-fdde-36aa37efdf67	2021-05-19 18:41:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:41:36.853+03	2021-05-19 18:41:36.863+03	
1015ea9d-08d1-7878-65a7-82e48a46cb70	2021-05-19 18:41:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:41:46.853+03	2021-05-19 18:41:46.862+03	
c09935ff-f19f-42ec-baf3-6db68c24e6de	2021-05-19 18:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:41:57.853+03	2021-05-19 18:41:57.863+03	
8f63b745-720c-e0c5-9b40-d67271861192	2021-05-19 18:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:42:08.853+03	2021-05-19 18:42:08.863+03	
2a69a41b-352d-043b-a5be-a78a08ecd73e	2021-05-19 18:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:42:19.852+03	2021-05-19 18:42:19.862+03	
2ec2e4ca-5fe1-7c0d-322c-b818582d4542	2021-05-19 18:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:42:29.853+03	2021-05-19 18:42:29.865+03	
bfa1b3be-1bcc-dfba-eaef-2c66a8193f8e	2021-05-19 18:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:42:39.853+03	2021-05-19 18:42:39.862+03	
8e717aad-f018-f74c-a8e8-332edef3abdc	2021-05-19 18:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:42:49.853+03	2021-05-19 18:42:49.867+03	
403db16b-620e-3342-f3b5-fabcb4a8e68f	2021-05-19 18:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:42:59.853+03	2021-05-19 18:42:59.861+03	
909fb4c2-bbd8-dc58-50e6-9a7714781084	2021-05-19 18:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:43:09.853+03	2021-05-19 18:43:09.864+03	
974b7711-005b-8a35-9fc1-5922d299969f	2021-05-19 18:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:43:19.853+03	2021-05-19 18:43:19.862+03	
76aea097-0f41-6e50-fcd7-8906b813d558	2021-05-19 18:43:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:43:29.853+03	2021-05-19 18:43:29.861+03	
a366b6ad-7246-7069-0db6-3ddfe5bb3f32	2021-05-19 18:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:43:39.853+03	2021-05-19 18:43:39.862+03	
d3bd03a9-a2a5-fecf-4580-b7674e7a4165	2021-05-19 18:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:43:49.853+03	2021-05-19 18:43:50.376+03	
3b524f23-aa69-3903-535a-27fe6f3459d0	2021-05-19 18:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:44:00.852+03	2021-05-19 18:44:00.87+03	
19743720-d880-0e25-e2c0-0224012c6c69	2021-05-19 18:44:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:44:10.853+03	2021-05-19 18:44:10.862+03	
44dcd6b9-dd34-0539-1e87-70d8367dfe35	2021-05-19 18:44:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:44:20.853+03	2021-05-19 18:44:20.867+03	
92749e48-28ff-078b-97ec-b9cc75ed11ea	2021-05-19 18:44:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:44:30.853+03	2021-05-19 18:44:30.866+03	
2d7c20f6-6a18-af99-390c-da533d6ba83d	2021-05-19 18:44:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:44:41.854+03	2021-05-19 18:44:41.864+03	
81ec12ad-7da3-e751-eca6-075928330d22	2021-05-19 18:44:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:44:51.854+03	2021-05-19 18:44:51.863+03	
235bfd1c-9c93-0028-99dd-f237c8bd411c	2021-05-19 18:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:45:02.853+03	2021-05-19 18:45:02.873+03	
de9e3f2e-0d14-a253-9f44-bd3a1ea10003	2021-05-19 18:45:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:45:12.853+03	2021-05-19 18:45:12.861+03	
957863f1-c671-ec8c-162a-5e70a1439eab	2021-05-19 18:45:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:45:22.853+03	2021-05-19 18:45:22.862+03	
0442fd59-286e-9a46-8053-c6e26407c21c	2021-05-19 18:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:45:32.853+03	2021-05-19 18:45:32.861+03	
da433b5d-9361-94d7-c3ca-390f3786853d	2021-05-19 18:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:45:42.853+03	2021-05-19 18:45:42.86+03	
fa8e157a-7226-a5ed-3b57-ea9878378569	2021-05-19 18:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:45:52.853+03	2021-05-19 18:45:52.86+03	
5e99c479-bc9d-476e-71f4-2513c848cd2b	2021-05-19 18:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:46:02.853+03	2021-05-19 18:46:02.876+03	
35d76878-ce8f-5de5-8138-e50ec8e755b2	2021-05-19 18:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:46:12.853+03	2021-05-19 18:46:12.896+03	
b0e8f4ab-bd77-0ea5-920c-25fe1a02c613	2021-05-19 18:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:46:22.853+03	2021-05-19 18:46:22.86+03	
de7b763b-98e4-3543-6b19-a5fe20f7c61a	2021-05-19 18:46:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:46:32.853+03	2021-05-19 18:46:32.87+03	
367bf120-e9f4-1367-e065-c5ed4dff5739	2021-05-19 18:46:42.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:46:42.855+03	2021-05-19 18:46:42.863+03	
7c05b023-c6de-9e98-5503-4ab85a24881e	2021-05-19 18:46:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:46:53.853+03	2021-05-19 18:46:53.867+03	
da9e38b5-4d03-4a73-f8e7-dbde9692dfb7	2021-05-19 18:47:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:47:03.853+03	2021-05-19 18:47:03.862+03	
a8be8b78-b736-5beb-dfbb-f5f77698ec28	2021-05-19 18:47:13.864	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:47:13.863+03	2021-05-19 18:47:13.897+03	
5ea4bdea-36d8-3fc8-ace8-0ef8e1a182a1	2021-05-19 18:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:47:24.853+03	2021-05-19 18:47:24.863+03	
4ac33e51-b335-4ac7-4e9c-4696e898471c	2021-05-19 18:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:47:34.853+03	2021-05-19 18:47:34.86+03	
ed9d6464-6add-b671-dfae-584ac0d15f22	2021-05-19 18:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:47:45.853+03	2021-05-19 18:47:45.862+03	
c94ec935-75c5-2745-96e9-ad17789871a5	2021-05-19 18:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:47:55.853+03	2021-05-19 18:47:55.864+03	
a4faf183-01f4-f521-b2a4-cf5ed8a2046f	2021-05-19 18:48:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:48:05.853+03	2021-05-19 18:48:05.87+03	
68e5d270-79ad-39e5-5a66-52a9aa6c778a	2021-05-19 18:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:48:15.853+03	2021-05-19 18:48:15.861+03	
806f9505-5841-1055-fc45-b19897d2bf4f	2021-05-19 18:48:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:48:25.853+03	2021-05-19 18:48:25.862+03	
0d5e0135-fc31-12d8-fa2e-17f5e729657b	2021-05-19 18:48:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:48:35.853+03	2021-05-19 18:48:35.879+03	
ccee12f9-1ce5-0432-fab2-772608f1b507	2021-05-19 18:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:48:45.853+03	2021-05-19 18:48:45.861+03	
83150a0f-b505-7e32-298e-21945503c590	2021-05-19 20:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:23:39.853+03	2021-05-19 20:23:39.861+03	
65ea08e4-3ac5-6ba1-d2cd-356258372815	2021-05-19 18:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:48:55.853+03	2021-05-19 18:48:55.866+03	
d11f250f-a838-1504-09ee-ee7547ae2ca6	2021-05-19 19:00:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:00:00.853+03	2021-05-19 19:00:00.864+03	
9a5f7a9c-65a2-8dbb-fe92-a31fea202f8e	2021-05-19 18:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:49:16.852+03	2021-05-19 18:49:16.861+03	
1e2458a7-f324-e273-f7b2-ced5bc7d9b08	2021-05-19 18:49:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:49:36.853+03	2021-05-19 18:49:36.86+03	
648295dd-cfc0-3348-ba62-b80ceeb4bb05	2021-05-19 19:00:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:00:20.853+03	2021-05-19 19:00:20.879+03	
fd23dd5e-f975-c0f2-f380-7dbfd5c07da9	2021-05-19 18:50:00.86	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 18:50:00.859+03	2021-05-19 18:50:00.867+03	ERROR
107c22e5-4176-2748-c82c-6a198d2fa7d2	2021-05-19 18:50:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:50:17.853+03	2021-05-19 18:50:17.861+03	
a4c38c2b-fcc6-dd89-b66e-f033d31477a7	2021-05-19 19:00:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:00:40.853+03	2021-05-19 19:00:40.875+03	
3d6405ff-b97a-0ca4-5111-20f0cf14d2ba	2021-05-19 18:50:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:50:37.853+03	2021-05-19 18:50:37.861+03	
f1fe72fc-1589-4bff-9895-a103a537d284	2021-05-19 18:50:58.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:50:58.855+03	2021-05-19 18:50:58.863+03	
ef95065b-6731-a333-a95f-f8c9cc7d18ea	2021-05-19 19:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:01:00.853+03	2021-05-19 19:01:00.861+03	
a05db85f-1cbd-a883-e86d-d3a8737c11af	2021-05-19 18:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:51:19.853+03	2021-05-19 18:51:19.866+03	
b669e671-81bd-1861-d059-53674190e7dd	2021-05-19 19:01:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:01:20.853+03	2021-05-19 19:01:20.872+03	
fe5173cb-7f4f-0563-609a-0ae33b20950a	2021-05-19 19:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:01:50.853+03	2021-05-19 19:01:50.87+03	
fba19388-ffab-d081-d84e-ba756d74a0ec	2021-05-19 19:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:02:10.853+03	2021-05-19 19:02:10.866+03	
ef7f59d6-4204-b150-b1ab-43ddec3335ec	2021-05-19 19:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:02:30.853+03	2021-05-19 19:02:30.873+03	
cebe4836-3b29-bf19-f54d-da003e94cc45	2021-05-19 19:02:51.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:02:51.858+03	2021-05-19 19:02:51.954+03	
d23a7d95-f2b4-993a-1b32-9b7dd4620284	2021-05-19 19:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:03:12.852+03	2021-05-19 19:03:12.86+03	
c3dfb766-5df3-3cfe-9be1-5fa3e9123e09	2021-05-19 19:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:03:33.853+03	2021-05-19 19:03:33.861+03	
4f8a673e-5ee6-0b25-12a0-8a8bc702b145	2021-05-19 19:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:03:54.853+03	2021-05-19 19:03:54.869+03	
57f1d31e-f584-60fa-c21f-4ef2dcd0b2ad	2021-05-19 19:04:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:04:15.853+03	2021-05-19 19:04:15.865+03	
949d91e7-08ef-32ba-7c92-7e8eab54cff5	2021-05-19 19:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:04:35.853+03	2021-05-19 19:04:35.868+03	
788e708f-6697-bb29-8076-bd1a0686f466	2021-05-19 19:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:04:55.853+03	2021-05-19 19:04:55.861+03	
0b76a52c-c38c-5d16-785d-679f1e9e77ae	2021-05-19 19:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:05:15.853+03	2021-05-19 19:05:15.86+03	
ca669fe8-2157-34c1-dba0-aec1da7636a6	2021-05-19 19:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:05:37.853+03	2021-05-19 19:05:37.867+03	
fd3cf42a-a8fe-bed2-0b3b-b99b0e5e9a8e	2021-05-19 19:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:05:57.853+03	2021-05-19 19:05:57.861+03	
2fba1741-2b4c-4c05-6c1c-cb6375234361	2021-05-19 19:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:06:17.853+03	2021-05-19 19:06:17.861+03	
c9c2d838-7d44-1059-c96c-d5e2604dce80	2021-05-19 19:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:06:37.853+03	2021-05-19 19:06:37.865+03	
8c7cde65-9709-37e9-a8f0-76d0c45ed368	2021-05-19 19:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:06:58.853+03	2021-05-19 19:06:58.861+03	
05da0b3d-5891-7256-359f-63add7199d9e	2021-05-19 19:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:07:20.853+03	2021-05-19 19:07:20.861+03	
4c11e7a2-603d-37e7-23f8-76a6813afa83	2021-05-19 19:07:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:07:40.853+03	2021-05-19 19:07:40.862+03	
f5ef4bf0-0307-e44a-bb92-3170e99ca2fe	2021-05-19 19:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:08:00.853+03	2021-05-19 19:08:00.865+03	
80b1a4d7-72ed-1ec1-1abd-0ac94487e2ac	2021-05-19 19:08:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:08:21.853+03	2021-05-19 19:08:21.864+03	
eb5c0196-e4d2-eeb8-12ae-81986311bb7f	2021-05-19 19:08:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:08:41.854+03	2021-05-19 19:08:41.862+03	
406e58b9-bb50-2e76-9e3f-660081b9ebd1	2021-05-19 19:09:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:09:01.854+03	2021-05-19 19:09:01.864+03	
1a6f41c1-be60-6a6c-fc54-7220b58f41e0	2021-05-19 19:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:09:22.853+03	2021-05-19 19:09:22.863+03	
cc2d0fa4-b053-caa7-28d0-e9703fb0f32b	2021-05-19 19:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:09:43.852+03	2021-05-19 19:09:43.862+03	
aaa50845-b354-04db-a929-6a667d730f0b	2021-05-19 19:09:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:09:53.853+03	2021-05-19 19:09:53.864+03	
01a07419-7cbc-8e71-e121-ca655477d396	2021-05-19 19:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:10:03.853+03	2021-05-19 19:10:03.863+03	
da10e0da-ad0e-ed24-0776-fc4b2ed6724c	2021-05-19 19:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:10:24.852+03	2021-05-19 19:10:24.862+03	
6635ba55-6101-706e-109b-de304c9cdb64	2021-05-19 19:10:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:10:44.853+03	2021-05-19 19:10:44.861+03	
90f22f4c-8d8b-5332-b9a5-79e41853a918	2021-05-19 19:11:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:11:05.853+03	2021-05-19 19:11:05.876+03	
3ee3dcd8-0fd2-8dea-1f3c-aa477b7823af	2021-05-19 19:11:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:11:25.853+03	2021-05-19 19:11:25.861+03	
d2f90968-f230-72b2-85a8-a5ae936c57ae	2021-05-19 19:12:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:12:57.853+03	2021-05-19 19:12:57.862+03	
1c486f65-4dac-1691-c0d6-1cf6c1565b23	2021-05-19 19:13:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:13:17.853+03	2021-05-19 19:13:17.862+03	
9639cf9c-47cc-de78-c2c5-f2d6932f763c	2021-05-19 19:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:13:38.852+03	2021-05-19 19:13:38.86+03	
9fe6187c-028e-f6da-0de7-8ddcdcc58d44	2021-05-19 19:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:13:48.853+03	2021-05-19 19:13:48.861+03	
9f4b705d-103b-f564-eca2-3f2424dedb15	2021-05-19 19:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:13:58.853+03	2021-05-19 19:13:58.86+03	
a58eb949-4689-d7fe-d3f1-066bfb6165b6	2021-05-19 19:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:14:08.853+03	2021-05-19 19:14:08.86+03	
ec2a271e-52b8-9909-8b31-7adbd6f8d2c7	2021-05-19 19:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:14:19.853+03	2021-05-19 19:14:19.861+03	
7b9757d7-ba73-c3d2-a2d1-a90a4876a869	2021-05-19 19:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:14:29.853+03	2021-05-19 19:14:29.86+03	
d13c9b31-7b0c-fe34-b8e6-b5fca539ce26	2021-05-19 19:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:14:39.853+03	2021-05-19 19:14:39.862+03	
24657479-4020-84c3-3f4d-0eeea3aef707	2021-05-19 19:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:14:49.853+03	2021-05-19 19:14:49.861+03	
ea7c1620-06ab-298f-b3b8-9f94721acdb0	2021-05-19 19:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:14:59.853+03	2021-05-19 19:14:59.86+03	
df788f7b-1de2-5878-accf-954fe211f793	2021-05-19 19:15:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:15:09.853+03	2021-05-19 19:15:09.862+03	
69909708-992a-907f-d3c3-d8af937110f2	2021-05-19 19:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:15:19.853+03	2021-05-19 19:15:19.861+03	
5e856a4c-e3b2-b614-75dc-df860602f764	2021-05-19 19:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:15:30.853+03	2021-05-19 19:15:30.865+03	
5ef4e3fe-7ddb-2d61-d12c-a79bc2fb9d19	2021-05-19 19:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:15:40.853+03	2021-05-19 19:15:40.864+03	
7be8e6ee-adc7-ce05-fb27-50676398f84e	2021-05-19 19:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:15:50.853+03	2021-05-19 19:15:50.87+03	
8c9a336d-1a7c-f4cc-b0e8-9923566d324a	2021-05-19 19:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:16:00.853+03	2021-05-19 19:16:00.864+03	
8f3b55e9-ca8a-0ecc-0188-6d2afb450172	2021-05-19 19:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:16:10.853+03	2021-05-19 19:16:10.861+03	
79863af6-5db8-4b59-bd54-da19d308f5c1	2021-05-19 19:16:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:16:20.853+03	2021-05-19 19:16:20.868+03	
10e3e9ab-a2f2-cc1a-030e-7b36597a1427	2021-05-19 19:16:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:16:31.853+03	2021-05-19 19:16:31.865+03	
b645c43a-0154-c4dd-7260-565f57317c3d	2021-05-19 19:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:37:55.853+03	2021-05-19 19:37:55.871+03	
0e3f7348-2e2e-da2a-9ae9-a077b7917989	2021-05-19 18:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:49:05.853+03	2021-05-19 18:49:05.861+03	
37b16d59-eb3a-b260-b142-4dab6454edfd	2021-05-19 19:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 19:00:00.853+03	2021-05-19 19:00:00.885+03	ERROR
70b0ac4a-ae83-e8e6-6731-54da184fd7c8	2021-05-19 18:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:49:26.852+03	2021-05-19 18:49:26.862+03	
c4375dd2-e7aa-e7f7-4e74-16b6ecdf3070	2021-05-19 18:49:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:49:46.853+03	2021-05-19 18:49:46.873+03	
358a32ca-723c-82b2-4343-d269cb7c3505	2021-05-19 19:11:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:11:45.854+03	2021-05-19 19:11:45.865+03	
cf40ddd2-e668-e412-ef1d-869d0829d4ca	2021-05-19 18:49:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:49:56.854+03	2021-05-19 18:49:56.862+03	
481a1740-9da4-4291-e66d-2c1c759964da	2021-05-19 18:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:50:07.853+03	2021-05-19 18:50:07.862+03	
3eb0a976-5709-ca8c-1231-8f73c3337f76	2021-05-19 19:12:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:12:06.855+03	2021-05-19 19:12:06.863+03	
6fbf4fd7-8f64-0382-9064-fa71e010824d	2021-05-19 18:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:50:27.853+03	2021-05-19 18:50:27.874+03	
0eaf182e-e22c-2bd1-7d03-5ba51592fc7f	2021-05-19 18:50:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:50:47.853+03	2021-05-19 18:50:47.861+03	
4e9cde66-02b3-41fb-c498-d7bacc6fcedf	2021-05-19 19:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:12:27.853+03	2021-05-19 19:12:27.861+03	
373bee6a-d272-d5d0-a4c4-55019b942191	2021-05-19 18:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:51:09.853+03	2021-05-19 18:51:09.861+03	
4b762025-47ac-ef9b-6762-d8f9deae4e76	2021-05-19 18:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:51:30.852+03	2021-05-19 18:51:30.874+03	
bca3a8c0-f6d6-ab8b-01b0-705c69238ef3	2021-05-19 19:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:12:47.853+03	2021-05-19 19:12:47.861+03	
bade956e-5a20-4f55-f099-d9436b4d4372	2021-05-19 18:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:51:40.853+03	2021-05-19 18:51:40.861+03	
5c1e2162-3921-f442-1d79-9de771e0de05	2021-05-19 18:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:51:50.853+03	2021-05-19 18:51:50.862+03	
6ac84756-f968-fa9f-a433-2c99734f751a	2021-05-19 19:13:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:13:07.853+03	2021-05-19 19:13:07.862+03	
1de2355a-7aa3-1c95-2589-99eb2d399d79	2021-05-19 18:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:52:00.853+03	2021-05-19 18:52:00.861+03	
f6471f8a-a2d9-9ead-b47a-f8d1875bc6d2	2021-05-19 18:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:52:10.853+03	2021-05-19 18:52:10.873+03	
0aca3cec-9494-0327-d994-2ecf0b1d2314	2021-05-19 19:13:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:13:27.854+03	2021-05-19 19:13:27.862+03	
b84769b1-35fb-cb21-48af-6f8ba002819c	2021-05-19 18:52:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:52:21.854+03	2021-05-19 18:52:21.863+03	
2ce41fb7-d45f-926c-f783-1df6f5d8dc3a	2021-05-19 18:52:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:52:31.854+03	2021-05-19 18:52:31.868+03	
f7db96cd-0a19-e1a7-3f7f-76f3f0960787	2021-05-19 18:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:52:42.853+03	2021-05-19 18:52:42.864+03	
aeac38bc-ba85-7593-ad1e-3a5d84421aa2	2021-05-19 18:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:52:53.853+03	2021-05-19 18:52:53.863+03	
ee956418-1fb6-f7d2-1d1a-d837a9cf129a	2021-05-19 18:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:53:04.853+03	2021-05-19 18:53:04.861+03	
b3785982-3d68-4538-9c7b-be0584f5a8cd	2021-05-19 18:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:53:14.853+03	2021-05-19 18:53:14.86+03	
25828d36-7495-377f-690a-3e3c6dccd0bc	2021-05-19 18:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:53:24.853+03	2021-05-19 18:53:24.86+03	
cac72ecf-d0dc-a231-b862-f3d1f3a6d05a	2021-05-19 18:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:53:35.853+03	2021-05-19 18:53:35.861+03	
7e6ee6ce-103c-ee58-080b-3332d1e76a8c	2021-05-19 18:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:53:45.853+03	2021-05-19 18:53:45.868+03	
58eee0b7-6d1e-bbb3-d7bb-829ef80cc76a	2021-05-19 18:53:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:53:55.853+03	2021-05-19 18:53:55.862+03	
b1d21018-e955-70cc-1576-b05b8d844d3b	2021-05-19 18:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:54:05.853+03	2021-05-19 18:54:05.863+03	
92af6949-892f-c8d5-97ac-b93475991aa1	2021-05-19 18:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:54:15.853+03	2021-05-19 18:54:15.871+03	
3cbe5de2-7ea1-98b5-b5ee-07b47e892ad6	2021-05-19 18:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:54:25.853+03	2021-05-19 18:54:25.869+03	
b8997eed-b1de-8462-9a74-940536a73c8f	2021-05-19 18:54:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:54:35.853+03	2021-05-19 18:54:35.865+03	
feae00f0-d2ec-dd65-5d12-0cf4d68ffafa	2021-05-19 18:54:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:54:45.853+03	2021-05-19 18:54:45.864+03	
3a062951-fbf8-b2d5-5b83-2c4ec3b30c9c	2021-05-19 18:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:54:55.853+03	2021-05-19 18:54:55.86+03	
7666db35-a526-e5e8-af40-d4353a2ec76b	2021-05-19 18:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:55:05.853+03	2021-05-19 18:55:05.861+03	
1d67469f-5d8e-b2ee-6b53-505539c35e17	2021-05-19 18:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:55:15.853+03	2021-05-19 18:55:15.861+03	
2fb8b2f0-6f1f-1afd-d79f-95caac469fce	2021-05-19 18:55:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:55:26.852+03	2021-05-19 18:55:26.864+03	
70cd49ef-83c5-d164-1ffe-464c01bd1629	2021-05-19 18:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:55:36.853+03	2021-05-19 18:55:36.862+03	
67002242-f734-2a19-c270-65acb9322c3d	2021-05-19 18:55:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:55:46.854+03	2021-05-19 18:55:46.862+03	
a9899d5d-93bc-9424-903c-a5f45ab389d9	2021-05-19 18:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:55:57.853+03	2021-05-19 18:55:57.86+03	
88d191c3-c836-ef85-511a-cfe8ff4fdd21	2021-05-19 18:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:56:07.853+03	2021-05-19 18:56:07.86+03	
64628f35-7c9f-d322-99b2-7e0488aa5d4e	2021-05-19 18:56:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:56:17.853+03	2021-05-19 18:56:17.863+03	
adf2a8ae-292d-ceff-72de-259f30f0ded5	2021-05-19 18:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:56:27.853+03	2021-05-19 18:56:27.861+03	
d31a0e2b-cea9-7e56-114f-e40df1c98d85	2021-05-19 18:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:56:37.853+03	2021-05-19 18:56:37.861+03	
90d6b81b-8f89-57d2-f461-d9ea6e535454	2021-05-19 18:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:56:47.853+03	2021-05-19 18:56:47.863+03	
e9f80d75-d768-2120-3638-63b858dfb674	2021-05-19 18:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:56:57.853+03	2021-05-19 18:56:57.86+03	
e464e9b1-386b-73a3-1b6a-80fcdf5d890b	2021-05-19 18:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:57:08.853+03	2021-05-19 18:57:08.863+03	
d0804410-86dd-d394-1efe-d59fb63981f6	2021-05-19 18:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:57:18.853+03	2021-05-19 18:57:18.86+03	
282559e9-4709-56d8-5242-bbb26c6042ad	2021-05-19 18:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:57:28.853+03	2021-05-19 18:57:28.861+03	
f587696b-674c-696a-c451-449969ee3d8d	2021-05-19 18:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:57:38.853+03	2021-05-19 18:57:38.862+03	
bc386542-8d08-67cc-7925-d098361a138e	2021-05-19 18:57:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:57:48.853+03	2021-05-19 18:57:48.864+03	
896efbca-38d1-6023-28f9-f6a9a7c162aa	2021-05-19 18:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:57:58.853+03	2021-05-19 18:57:58.862+03	
8fab2ad4-5704-2925-d544-1144133eec2f	2021-05-19 18:58:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:58:08.853+03	2021-05-19 18:58:08.861+03	
f879a254-b91e-5a73-5686-224c8fa75ef6	2021-05-19 18:58:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:58:18.853+03	2021-05-19 18:58:18.863+03	
8e28e652-7263-f43c-a59b-ad97858c8262	2021-05-19 18:58:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:58:28.853+03	2021-05-19 18:58:28.868+03	
20a93650-c3c5-62f4-bc20-8641f7bbb8e4	2021-05-19 18:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:58:39.853+03	2021-05-19 18:58:39.86+03	
9b6f2dc6-c291-4ca7-166e-258809c9fbb9	2021-05-19 18:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:58:50.852+03	2021-05-19 18:58:50.86+03	
601d6bca-6f94-6269-ce0e-cc4fb56b05a9	2021-05-19 18:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:59:00.853+03	2021-05-19 18:59:00.862+03	
76869517-8fd2-5086-aec4-8923c3cbe202	2021-05-19 18:59:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:59:10.853+03	2021-05-19 18:59:10.862+03	
8522fcf1-e45f-c31b-763f-1187e1141090	2021-05-19 18:59:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:59:20.853+03	2021-05-19 18:59:20.864+03	
8ff4f373-841b-e807-4352-ebc656de6a96	2021-05-19 18:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 18:59:30.853+03	2021-05-19 18:59:30.861+03	
b7d03c33-bf37-e439-4de0-d992a22a3e8c	2021-05-19 21:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:20:42.853+03	2021-05-19 21:20:42.861+03	
c5a67c35-929e-3ddb-050d-c9ba411ff030	2021-05-19 19:16:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:16:41.853+03	2021-05-19 19:16:41.872+03	
ac55ce75-9a89-f666-a719-47fece0e740b	2021-05-19 19:38:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:38:06.854+03	2021-05-19 19:38:06.863+03	
65f93b77-7c0a-758e-ee9f-9a89f601388a	2021-05-19 19:17:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:17:01.854+03	2021-05-19 19:17:01.866+03	
e6856d60-62ef-5c70-0396-c59622e858c4	2021-05-19 19:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:17:22.853+03	2021-05-19 19:17:22.866+03	
69a37d3e-1d54-5647-4e7d-79c809d1d7d9	2021-05-19 19:38:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:38:26.854+03	2021-05-19 19:38:26.863+03	
0c8c1151-328f-df71-145f-fbe9939955ea	2021-05-19 19:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:17:43.852+03	2021-05-19 19:17:43.861+03	
e474fedd-52c0-96c3-9255-73f9e5da10f1	2021-05-19 19:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:18:03.853+03	2021-05-19 19:18:03.861+03	
f90e82ee-022c-048d-9eef-4cea0e48f0c9	2021-05-19 19:38:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:38:46.854+03	2021-05-19 19:38:46.861+03	
3ff07cb4-671e-897a-1316-c535e0d0c718	2021-05-19 19:18:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:18:23.853+03	2021-05-19 19:18:23.862+03	
c36df232-8df3-8066-c8ce-7180565bd38a	2021-05-19 19:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:18:44.853+03	2021-05-19 19:18:44.86+03	
812ca4b9-8750-b582-2376-cdea752ace22	2021-05-19 19:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:39:07.852+03	2021-05-19 19:39:07.86+03	
dcdab286-0fa4-a333-1e44-b2dd27722ed6	2021-05-19 19:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:19:04.853+03	2021-05-19 19:19:04.861+03	
182e424e-7899-fdcb-370f-dd8cd75ba597	2021-05-19 19:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:19:24.853+03	2021-05-19 19:19:24.86+03	
d44b1a84-984c-348e-8e7d-eab6af3e6ecb	2021-05-19 19:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:39:27.853+03	2021-05-19 19:39:27.861+03	
3f791bfd-7bb1-01ae-9e20-8fce56fd0b1d	2021-05-19 19:19:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:19:45.853+03	2021-05-19 19:19:45.86+03	
d1128b96-d7c4-215c-7c30-2c3d010476ee	2021-05-19 19:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:19:56.852+03	2021-05-19 19:19:56.869+03	
42df8f2e-5963-0805-607e-063a169bd575	2021-05-19 19:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:39:48.853+03	2021-05-19 19:39:48.862+03	
8e985baa-8b36-7227-f38f-6cc3548cd13f	2021-05-19 19:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:20:06.853+03	2021-05-19 19:20:06.862+03	
3ffa0697-8e54-45dd-821d-46a1b0873fdb	2021-05-19 19:20:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:20:27.853+03	2021-05-19 19:20:27.861+03	
7b1a1bb4-0ff4-f690-dd42-ac32bd7fbc14	2021-05-19 19:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 19:40:00.853+03	2021-05-19 19:40:00.865+03	ERROR
899126c5-f8e6-eef9-7f00-f0ad94c81ff3	2021-05-19 19:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:20:48.852+03	2021-05-19 19:20:48.86+03	
d2673ba4-2741-3a6a-a4bf-da0c427dee97	2021-05-19 19:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:21:08.853+03	2021-05-19 19:21:08.86+03	
f41f1ded-47d3-476a-b1ac-69e16b5c9e00	2021-05-19 19:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:40:19.853+03	2021-05-19 19:40:19.867+03	
3d890fa8-f706-f14e-91c7-82d0385a4040	2021-05-19 19:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:21:29.852+03	2021-05-19 19:21:29.859+03	
67fa0a79-95d1-27c9-ae78-5e1ca4337452	2021-05-19 19:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:21:49.853+03	2021-05-19 19:21:49.86+03	
d2a216a1-9ba5-45a1-9ab0-fe559c55c7d9	2021-05-19 19:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:40:39.853+03	2021-05-19 19:40:39.861+03	
1d097658-1ed6-b8ff-496c-414a4631bc87	2021-05-19 19:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:22:09.853+03	2021-05-19 19:22:09.861+03	
7da49a88-5609-4631-3e24-79002d32fb00	2021-05-19 19:22:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:22:29.853+03	2021-05-19 19:22:29.861+03	
86c9a4aa-6653-4acc-9db4-0078d2ac531b	2021-05-19 19:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:41:00.853+03	2021-05-19 19:41:00.865+03	
e96aca83-f515-5655-bf66-74db5b75c959	2021-05-19 19:41:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:41:21.853+03	2021-05-19 19:41:21.86+03	
a444d4cd-83be-3fa1-855a-73b2f14474ee	2021-05-19 19:41:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:41:41.854+03	2021-05-19 19:41:41.861+03	
8edf9038-22a3-76f5-3818-f40b74342aa0	2021-05-19 19:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:41:52.852+03	2021-05-19 19:41:52.86+03	
0353d20a-e58a-ae93-06c8-a995cded9d2e	2021-05-19 19:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:42:12.853+03	2021-05-19 19:42:12.862+03	
48908067-ff00-8b67-bcbf-9e66cb77d03c	2021-05-19 19:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:42:33.852+03	2021-05-19 19:42:33.862+03	
1bdfdb4d-3057-e6b2-b74b-790d3321097e	2021-05-19 19:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:42:53.852+03	2021-05-19 19:42:53.869+03	
34f27e87-0f76-2e76-f647-eb8f47c04b18	2021-05-19 19:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:43:13.853+03	2021-05-19 19:43:13.873+03	
ceca6af3-01a6-4f2e-fcdc-7c7044d19290	2021-05-19 19:43:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:43:33.853+03	2021-05-19 19:43:33.864+03	
01f05d9b-bd4f-fc89-7fb6-13a8d4c3e3d7	2021-05-19 19:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:43:54.853+03	2021-05-19 19:43:54.862+03	
37580869-588d-1092-f215-75e47d3a6c2b	2021-05-19 19:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:44:15.853+03	2021-05-19 19:44:15.863+03	
53065e92-f37c-9345-e5c6-8f828775cf1e	2021-05-19 19:44:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:44:36.854+03	2021-05-19 19:44:36.861+03	
c189f9c8-0d87-7c1c-cf2e-dd950cdef7f8	2021-05-19 19:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:44:57.853+03	2021-05-19 19:44:57.859+03	
86b7df5f-1bf2-20d9-154d-957a6d95c943	2021-05-19 19:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:45:18.852+03	2021-05-19 19:45:18.859+03	
408f0679-f743-b122-b941-029594db361f	2021-05-19 19:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:45:49.853+03	2021-05-19 19:45:49.867+03	
33d6aa78-c6a1-c2c5-b704-6d2deb983564	2021-05-19 19:46:10.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:46:10.853+03	2021-05-19 19:46:10.862+03	
c8a24dbe-963c-8860-b589-f2d2103fdf45	2021-05-19 19:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:46:42.852+03	2021-05-19 19:46:42.862+03	
116c3ea0-2430-8fce-a6bf-b0b0cfcdc18c	2021-05-19 19:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:47:02.853+03	2021-05-19 19:47:02.868+03	
3d976e82-d5f2-bb5e-bf5d-06e540aef924	2021-05-19 19:47:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:47:22.853+03	2021-05-19 19:47:22.862+03	
0f2feec0-a924-1ecd-ddc6-a6bd3d209420	2021-05-19 19:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:47:42.853+03	2021-05-19 19:47:42.861+03	
9100ac3f-3774-650c-16c3-35a2131502d1	2021-05-19 19:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:48:03.852+03	2021-05-19 19:48:03.86+03	
a6468d0d-46f2-1cc7-032e-f5d818015a68	2021-05-19 19:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:48:23.853+03	2021-05-19 19:48:23.862+03	
1a3af8ac-8810-3262-58a4-b9cbaa1f7985	2021-05-19 19:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:48:44.853+03	2021-05-19 19:48:44.871+03	
e1c3a962-68d3-9b83-5ca3-b038fd884ce5	2021-05-19 19:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:49:05.853+03	2021-05-19 19:49:05.863+03	
8fa2b8c4-28d9-9241-dd7a-689c797e5b9e	2021-05-19 19:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:49:26.853+03	2021-05-19 19:49:26.862+03	
248bf000-d56b-7ccc-b397-d62524c91d0f	2021-05-19 19:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:49:47.853+03	2021-05-19 19:49:47.859+03	
40530959-caae-8949-0b68-b528e45ca2e1	2021-05-19 19:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 19:50:00.853+03	2021-05-19 19:50:00.858+03	ERROR
36ad8105-432d-779b-5ecc-294d89ce8f66	2021-05-19 19:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:50:17.853+03	2021-05-19 19:50:17.859+03	
ef978ddd-e255-b0b4-174d-e45596b001d1	2021-05-19 19:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:50:38.852+03	2021-05-19 19:50:38.861+03	
2fd036ac-1753-e407-7ce6-64b5a2a11fdb	2021-05-19 19:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:50:58.853+03	2021-05-19 19:50:58.86+03	
1eaf2a8f-9f13-367a-c642-a3dba355435d	2021-05-19 19:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:51:19.853+03	2021-05-19 19:51:19.86+03	
f7531fe3-6077-fbfa-ce41-026eb084cca9	2021-05-19 19:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:51:40.852+03	2021-05-19 19:51:40.859+03	
d719f7e1-ef6a-567d-2838-257d3be97d29	2021-05-19 19:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:52:00.852+03	2021-05-19 19:52:00.86+03	
f910ff16-f61f-4e2b-f955-b0c35ea66b8c	2021-05-19 19:52:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:52:21.852+03	2021-05-19 19:52:21.86+03	
4168f0eb-bade-75ee-90d4-e4edc6ec788f	2021-05-19 19:52:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:52:41.853+03	2021-05-19 19:52:41.859+03	
d04c50f2-b84f-e67e-be47-338018f0bacb	2021-05-19 19:16:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:16:51.854+03	2021-05-19 19:16:51.864+03	
d6bdbf3f-7792-e8fc-f009-33c44cc4b30f	2021-05-19 19:17:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:17:11.854+03	2021-05-19 19:17:11.871+03	
2e03e76a-3bc2-ac9e-1b75-9fd2ecc9646e	2021-05-19 19:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:17:32.853+03	2021-05-19 19:17:32.861+03	
1994f0e7-35c4-8543-81d3-683076cb24ba	2021-05-19 19:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:17:53.852+03	2021-05-19 19:17:53.862+03	
5c38dd64-640e-9a39-dec9-9f117a94e0dd	2021-05-19 19:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:18:13.853+03	2021-05-19 19:18:13.863+03	
292d6a71-cc6f-f00f-9673-d2317c172268	2021-05-19 19:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:18:33.853+03	2021-05-19 19:18:33.862+03	
37894cd4-f306-10ea-1adf-a22088fdc524	2021-05-19 19:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:18:54.853+03	2021-05-19 19:18:54.925+03	
d1e44bc2-4463-8a42-443c-e41644404ca8	2021-05-19 19:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:19:14.853+03	2021-05-19 19:19:14.861+03	
1fd97049-b8aa-f9e7-fc73-85c7391a8651	2021-05-19 19:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:19:35.852+03	2021-05-19 19:19:35.86+03	
de89ad22-c142-adf5-e531-6b6533bcf06f	2021-05-19 19:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 19:20:00.853+03	2021-05-19 19:20:00.859+03	ERROR
172447e0-0a9e-e5cd-3898-dea7a76712c4	2021-05-19 19:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:20:17.853+03	2021-05-19 19:20:17.86+03	
560b9b11-43e1-620a-13ce-0f93bf0e7ba6	2021-05-19 19:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:20:37.853+03	2021-05-19 19:20:37.86+03	
a3280cd7-59f8-6879-077d-547da0fdf3bb	2021-05-19 19:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:20:58.852+03	2021-05-19 19:20:58.86+03	
c7b2a5d0-0a90-1985-6802-10c22a92ee24	2021-05-19 19:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:21:18.853+03	2021-05-19 19:21:18.86+03	
8f4f42bc-b229-a750-414e-7c4e48680e16	2021-05-19 19:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:21:39.853+03	2021-05-19 19:21:39.859+03	
339d7423-ad39-8c10-ad33-852cd6d532b4	2021-05-19 19:21:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:21:59.853+03	2021-05-19 19:21:59.875+03	
53000634-4211-4edf-c8d4-c465f03c46d3	2021-05-19 19:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:22:19.853+03	2021-05-19 19:22:19.861+03	
0f83daae-25c0-8e99-6c88-ea00f189cb38	2021-05-19 19:22:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:22:39.853+03	2021-05-19 19:22:39.861+03	
1c6869a7-7a76-4f3b-da48-3ec2bc2caffe	2021-05-19 19:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:22:49.853+03	2021-05-19 19:22:49.861+03	
94def83e-64dc-834e-c9d9-9b5aff265bc4	2021-05-19 19:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:22:59.853+03	2021-05-19 19:22:59.86+03	
6408cc68-3ba8-e70f-ca1f-f2c8ef4062ff	2021-05-19 19:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:23:09.853+03	2021-05-19 19:23:09.863+03	
d2217db7-d4be-b602-817e-3c4349a67647	2021-05-19 19:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:23:19.853+03	2021-05-19 19:23:19.863+03	
cd0948e4-3766-b4bf-00cb-f39e160f45d0	2021-05-19 19:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:23:29.853+03	2021-05-19 19:23:29.859+03	
6146fea9-65d3-8a64-090e-c3e302393dc7	2021-05-19 19:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:23:39.853+03	2021-05-19 19:23:39.859+03	
5dcfdf65-8e59-1a9c-a97f-12416fa9e714	2021-05-19 19:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:23:50.852+03	2021-05-19 19:23:50.872+03	
b32296d0-d871-0a3e-c814-4154c8ce38ff	2021-05-19 19:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:24:00.853+03	2021-05-19 19:24:00.862+03	
37199c91-4a78-5eb4-2e14-0f6af05b7c98	2021-05-19 19:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:24:10.853+03	2021-05-19 19:24:10.86+03	
254c29cd-9400-7f1b-2de5-e1dee00beb89	2021-05-19 19:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:24:20.853+03	2021-05-19 19:24:20.864+03	
174f255e-5ed4-6bb6-8cb4-82c88089d5ab	2021-05-19 19:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:24:30.853+03	2021-05-19 19:24:30.861+03	
eea29ffb-dcf8-f683-b9a9-be45390bdfde	2021-05-19 19:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:24:40.853+03	2021-05-19 19:24:40.86+03	
9d1b2ebf-2c02-b56b-fa4f-96d865a51d8d	2021-05-19 19:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:24:50.853+03	2021-05-19 19:24:50.862+03	
3b81096d-537d-d757-921a-a45c0cdafef8	2021-05-19 19:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:25:00.853+03	2021-05-19 19:25:00.873+03	
8fb3a86c-bfb7-fb12-2c92-033e582ecad6	2021-05-19 19:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:25:10.853+03	2021-05-19 19:25:10.862+03	
02c59bef-5ce0-1e63-b819-4b9af94238b9	2021-05-19 19:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:25:20.853+03	2021-05-19 19:25:20.861+03	
c4b129b9-3f58-0c46-9474-53d7f5fa0fc8	2021-05-19 19:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:25:30.853+03	2021-05-19 19:25:30.862+03	
de516d36-2dfc-7d42-78b8-04400cedbcd6	2021-05-19 19:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:25:40.853+03	2021-05-19 19:25:40.859+03	
21f276bb-fce1-eb14-0ac3-9e04e635d959	2021-05-19 19:25:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:25:50.853+03	2021-05-19 19:25:50.86+03	
001776a1-722f-31ef-80f3-155303dc250e	2021-05-19 19:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:26:00.853+03	2021-05-19 19:26:00.861+03	
c20bd9b8-4177-55ff-ee51-1b0c679c97b4	2021-05-19 19:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:26:10.853+03	2021-05-19 19:26:10.862+03	
b810ab79-c6dd-6ff4-07fd-69bf9b4b139a	2021-05-19 19:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:26:20.853+03	2021-05-19 19:26:20.871+03	
6cfebb48-714b-c186-bfec-8aebdbd4a0f4	2021-05-19 19:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:26:30.853+03	2021-05-19 19:26:30.86+03	
96715b7d-13c1-dc92-fbac-c7f72a9ec1f4	2021-05-19 19:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:26:40.853+03	2021-05-19 19:26:40.86+03	
06b43abd-222d-a66a-b119-1d08df44719c	2021-05-19 19:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:26:50.853+03	2021-05-19 19:26:50.86+03	
072506c3-e97c-a359-3944-46902a8784e9	2021-05-19 19:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:27:00.853+03	2021-05-19 19:27:00.86+03	
462b412d-5196-6c70-8970-b97f5cc12467	2021-05-19 19:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:27:10.853+03	2021-05-19 19:27:10.864+03	
15eadaa7-0ca7-369f-3b52-05966699fa3e	2021-05-19 19:27:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:27:20.853+03	2021-05-19 19:27:20.861+03	
3fec221a-4a8f-c0f1-cc22-f3f54d6f817b	2021-05-19 19:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:27:30.853+03	2021-05-19 19:27:30.862+03	
6ebd7061-20f9-980a-033e-333162eb870e	2021-05-19 19:27:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:27:41.852+03	2021-05-19 19:27:41.859+03	
994b4780-5614-aec8-2c01-fabef782e4fd	2021-05-19 19:27:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:27:51.853+03	2021-05-19 19:27:51.86+03	
08dfee07-e733-231b-ae4f-eeacca58824b	2021-05-19 19:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:28:02.853+03	2021-05-19 19:28:02.865+03	
0ad3d3bc-dff2-9f36-d3ce-c3ca1a2b1e5b	2021-05-19 19:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:28:12.853+03	2021-05-19 19:28:12.864+03	
b6edd8df-356c-0cb4-bbcd-066296b5f241	2021-05-19 19:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:28:22.853+03	2021-05-19 19:28:22.874+03	
a1a19c43-1364-a533-5fd8-37d44cf12d73	2021-05-19 19:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:28:32.853+03	2021-05-19 19:28:32.861+03	
85b457d3-9083-9719-fffb-2eef25b79b12	2021-05-19 19:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:28:42.853+03	2021-05-19 19:28:42.867+03	
14c4f9ae-fd52-8a6d-655a-11eb6f69903c	2021-05-19 19:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:28:53.853+03	2021-05-19 19:28:53.86+03	
c66ca7a9-cd4c-9d7c-4d8f-af1a9fe4512e	2021-05-19 19:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:29:04.853+03	2021-05-19 19:29:04.862+03	
ed9ffb17-f7d2-4207-0b8b-64dbf7590cb9	2021-05-19 19:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:29:15.853+03	2021-05-19 19:29:15.865+03	
3c9804c8-d808-0c1e-35ef-cd70f7d1147a	2021-05-19 19:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:29:25.853+03	2021-05-19 19:29:25.86+03	
b88c6197-8a03-79ac-a395-3aefce799c3c	2021-05-19 19:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:29:35.853+03	2021-05-19 19:29:35.86+03	
6ca8fc7f-d5f7-e7f0-33a1-f2f35f89cdc1	2021-05-19 19:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:29:45.853+03	2021-05-19 19:29:45.86+03	
ccd10adc-383b-5336-cbd9-9287840adfcb	2021-05-19 19:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:29:55.853+03	2021-05-19 19:29:55.863+03	
046bc7b7-d301-f094-f2cf-71b23f0d2f37	2021-05-19 19:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 19:30:00.852+03	2021-05-19 19:30:00.858+03	ERROR
385acd91-fb48-b1ca-8b64-34bce14b2643	2021-05-19 19:30:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:30:06.854+03	2021-05-19 19:30:06.862+03	
0f4e61fd-9281-ff5e-1e75-78707ef5a54d	2021-05-19 20:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:23:49.853+03	2021-05-19 20:23:49.86+03	
656d4b7e-9797-56b4-1801-5ab1cd91247c	2021-05-19 19:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:30:17.853+03	2021-05-19 19:30:17.88+03	
c81ecd1a-ff1d-1d0d-36ce-8ca0240b614c	2021-05-19 19:38:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:38:16.854+03	2021-05-19 19:38:16.863+03	
dd3c3649-5959-722c-4534-2423a902a458	2021-05-19 19:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:30:37.853+03	2021-05-19 19:30:37.86+03	
c793d118-ea90-d2c4-3069-e01fef37a3cc	2021-05-19 19:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:30:57.853+03	2021-05-19 19:30:57.86+03	
3d101f9e-93a0-d5ac-ecc2-93854edb90d6	2021-05-19 19:38:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:38:36.854+03	2021-05-19 19:38:36.862+03	
13532bfb-43ec-b1aa-48f5-1e80ad2d1df2	2021-05-19 19:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:31:17.853+03	2021-05-19 19:31:17.862+03	
6685c1b1-0108-2f47-005e-19118a8ba2da	2021-05-19 19:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:31:37.853+03	2021-05-19 19:31:37.86+03	
ffc6bfe8-9411-d368-282d-1c7c10bd2092	2021-05-19 19:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:38:57.852+03	2021-05-19 19:38:57.863+03	
0a703a8d-9f0a-8b50-a641-c51a9a7fa7ff	2021-05-19 19:31:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:31:57.853+03	2021-05-19 19:31:57.867+03	
90188d5e-5053-295f-4299-1e12ff0db448	2021-05-19 19:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:32:17.853+03	2021-05-19 19:32:17.86+03	
69951a7b-6e42-6a88-83f7-1f2468e6d464	2021-05-19 19:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:39:17.853+03	2021-05-19 19:39:17.865+03	
bf096d45-ae80-dc94-eedb-8c95265b51c7	2021-05-19 19:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:32:37.853+03	2021-05-19 19:32:37.86+03	
f7b43c53-fbff-89ca-1834-47574501a3ab	2021-05-19 19:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:32:57.853+03	2021-05-19 19:32:57.86+03	
3b446f68-5d29-69f9-c9f7-88156cc52a57	2021-05-19 19:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:39:38.852+03	2021-05-19 19:39:38.861+03	
a47340ac-a20c-c93b-16a1-ece8c58f8faf	2021-05-19 19:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:33:18.853+03	2021-05-19 19:33:18.861+03	
f7780a81-4fb8-04db-61b7-802bd94f9e5c	2021-05-19 19:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:39:59.853+03	2021-05-19 19:39:59.86+03	
ba32beda-07f5-83df-67f9-44f523e1b4a2	2021-05-19 19:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:40:09.853+03	2021-05-19 19:40:09.861+03	
dab1fe76-f689-65ad-af40-73d658cbce75	2021-05-19 19:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:40:29.853+03	2021-05-19 19:40:29.86+03	
609f15ad-e728-4388-2974-797aab1824b2	2021-05-19 19:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:40:50.853+03	2021-05-19 19:40:50.864+03	
98eeda45-c209-4247-5726-c6c53e4f0a64	2021-05-19 19:41:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:41:11.853+03	2021-05-19 19:41:11.864+03	
196d42f6-7d8f-f60f-7902-c954be502d9b	2021-05-19 19:41:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:41:31.854+03	2021-05-19 19:41:31.863+03	
cc131a12-30cf-f051-cf8f-0738a608ab30	2021-05-19 19:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:42:02.852+03	2021-05-19 19:42:02.861+03	
9dc48786-b9a9-0514-b701-808e03d2c458	2021-05-19 19:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:42:22.853+03	2021-05-19 19:42:22.905+03	
7020d71f-382b-2777-bede-cdbd2c96a731	2021-05-19 19:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:42:43.852+03	2021-05-19 19:42:43.863+03	
9a2a7a1b-78c9-6809-6223-1ceb8941b55e	2021-05-19 19:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:43:03.853+03	2021-05-19 19:43:03.873+03	
3b8cacc7-0c20-c14b-2e0d-7cddb9cafcff	2021-05-19 19:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:43:23.853+03	2021-05-19 19:43:23.862+03	
0575fa45-328b-7431-15fc-0460f4feadf8	2021-05-19 19:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:43:44.853+03	2021-05-19 19:43:44.86+03	
cde11f6d-cc34-8df9-60a4-8d2b28e7aeb7	2021-05-19 19:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:44:04.853+03	2021-05-19 19:44:04.911+03	
5c4b22e0-635a-8343-04ee-5294055b99c4	2021-05-19 19:44:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:44:25.853+03	2021-05-19 19:44:25.861+03	
4c58b952-58ac-e536-3c40-5c480eb812cd	2021-05-19 19:44:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:44:46.854+03	2021-05-19 19:44:46.864+03	
0c8c3444-f746-6f53-884a-5265c0e3d184	2021-05-19 19:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:45:08.852+03	2021-05-19 19:45:08.859+03	
1c01efc9-9f0e-645f-c7aa-693b96aff395	2021-05-19 19:45:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:45:28.853+03	2021-05-19 19:45:28.862+03	
162f8562-c29e-f4f9-8b0a-447af9318ea6	2021-05-19 19:53:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:53:01.854+03	2021-05-19 19:53:01.868+03	
2bd31b6c-0ad4-0586-c9af-ae738892d0fd	2021-05-19 19:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:53:22.853+03	2021-05-19 19:53:22.861+03	
7da6cf2b-2d89-effe-b03a-f5f166721d27	2021-05-19 19:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:53:42.853+03	2021-05-19 19:53:42.859+03	
d6a66c2e-b9e2-5914-2993-f8d0330710d1	2021-05-19 19:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:54:23.853+03	2021-05-19 19:54:24.167+03	
ca6147ce-ae70-fcb4-f033-ebdc0f681aa5	2021-05-19 19:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:54:44.853+03	2021-05-19 19:54:44.862+03	
a3c8f03c-49f6-d773-3a48-2dda1ff50df6	2021-05-19 19:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:55:04.853+03	2021-05-19 19:55:04.865+03	
b28ef28a-7968-36cb-896d-4dc25347f4f1	2021-05-19 19:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:55:14.853+03	2021-05-19 19:55:14.863+03	
271896d5-6ec5-5b53-b2b0-984e52212006	2021-05-19 19:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:55:24.853+03	2021-05-19 19:55:24.86+03	
694bdce7-d222-15b5-7347-422f6e7f343a	2021-05-19 19:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:55:34.853+03	2021-05-19 19:55:34.861+03	
edfbf769-f81d-0b9d-e651-270aa71583c1	2021-05-19 19:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:55:45.852+03	2021-05-19 19:55:46.096+03	
3a7ad320-c06a-3df0-1119-19d954a52d78	2021-05-19 19:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:55:55.853+03	2021-05-19 19:55:55.861+03	
3255caa8-f72e-2ad6-517d-8e922e78ea29	2021-05-19 19:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:56:05.853+03	2021-05-19 19:56:05.86+03	
6d241d54-545b-d504-ca29-a0b4b6644987	2021-05-19 19:56:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:56:16.852+03	2021-05-19 19:56:16.859+03	
975283cf-9032-8616-4c67-5f69898a9c31	2021-05-19 19:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:56:26.852+03	2021-05-19 19:56:26.861+03	
857d5013-5b49-e67d-e955-ca4f4869507f	2021-05-19 19:56:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:56:36.854+03	2021-05-19 19:56:36.861+03	
521f3b34-0f7a-543b-2c69-cb1e37466d58	2021-05-19 19:56:46.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:56:46.855+03	2021-05-19 19:56:46.863+03	
9ea65d9e-9b63-c634-d373-85f6efd292d5	2021-05-19 19:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:56:57.853+03	2021-05-19 19:56:57.863+03	
be1a85ec-8983-740b-1f0c-ab8bcebe7800	2021-05-19 19:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:57:07.853+03	2021-05-19 19:57:07.879+03	
a21f2f01-cdbf-f563-6f60-1e56ff1f1261	2021-05-19 19:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:57:18.852+03	2021-05-19 19:57:18.86+03	
d3b38483-3496-b63d-2000-569dafcc84d4	2021-05-19 19:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:57:28.852+03	2021-05-19 19:57:28.86+03	
bf89d459-d2bb-f32e-e5cd-c3548ece2a7c	2021-05-19 19:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:57:38.852+03	2021-05-19 19:57:38.858+03	
3a46879a-b773-7ac7-754b-156657c714b6	2021-05-19 19:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:57:48.853+03	2021-05-19 19:57:48.862+03	
c3fde878-bbff-96fc-28de-1fe4d7d701a0	2021-05-19 19:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:57:59.852+03	2021-05-19 19:57:59.859+03	
c172bd29-ed4f-d65f-6487-8eed4c463dd1	2021-05-19 19:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:58:09.853+03	2021-05-19 19:58:09.865+03	
f889d862-2283-15c9-5988-ddd293f7a14a	2021-05-19 19:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:58:20.853+03	2021-05-19 19:58:20.87+03	
aba34d05-809e-44a5-d8ca-2f0196c8077f	2021-05-19 19:58:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:58:31.852+03	2021-05-19 19:58:31.86+03	
1c80ee09-e0c2-b1ec-dbe8-e655d5bf65de	2021-05-19 19:58:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:58:41.852+03	2021-05-19 19:58:41.86+03	
f89518ae-1eba-9ed6-ee07-e31bf4a5439f	2021-05-19 19:58:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:58:51.854+03	2021-05-19 19:58:51.862+03	
9e5a6b0b-f169-b5ea-d77c-596f1d79acaf	2021-05-19 19:59:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:59:01.854+03	2021-05-19 19:59:01.871+03	
2229add2-23a2-4fcf-df59-f470875acd93	2021-05-19 19:59:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:59:11.854+03	2021-05-19 19:59:11.861+03	
48bd0f75-ba56-9ec3-9dcc-50da3c063cb7	2021-05-19 19:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:59:22.852+03	2021-05-19 19:59:22.86+03	
ea94bccb-f07e-23f3-7123-e3c6382d4f09	2021-05-19 19:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:30:27.853+03	2021-05-19 19:30:27.862+03	
62288007-4347-0026-6a2c-d1fb68c48472	2021-05-19 19:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:45:39.853+03	2021-05-19 19:45:39.86+03	
ec5ada88-71db-6af9-e119-3fb90091ef69	2021-05-19 19:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:30:47.853+03	2021-05-19 19:30:47.861+03	
27ef4930-f6f5-621e-9d95-9b7a3352f311	2021-05-19 19:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:31:07.853+03	2021-05-19 19:31:07.86+03	
add274c7-c30c-22db-aaeb-1e3388ed9eb3	2021-05-19 19:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:46:00.853+03	2021-05-19 19:46:00.86+03	
9f0363de-25ec-bf22-0963-bcfcd76671b7	2021-05-19 19:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:31:27.853+03	2021-05-19 19:31:27.862+03	
31cb7097-6aa5-e95d-8d24-9b5406b097c2	2021-05-19 19:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:31:47.853+03	2021-05-19 19:31:47.87+03	
371b2b5d-1709-566c-6461-2316b1c630b8	2021-05-19 19:46:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:46:21.852+03	2021-05-19 19:46:21.859+03	
d98cd1c0-c677-afce-acef-c41b6ece00e6	2021-05-19 19:32:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:32:07.853+03	2021-05-19 19:32:07.861+03	
6ce27f4a-ebfe-0f57-3b1d-53e5f0fd0514	2021-05-19 19:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:32:27.853+03	2021-05-19 19:32:27.861+03	
4add4d87-e7af-9b25-26a5-eacb31035ecc	2021-05-19 19:46:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:46:31.853+03	2021-05-19 19:46:31.861+03	
0abc2332-9a65-5298-f211-f0cf5274939b	2021-05-19 19:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:32:47.853+03	2021-05-19 19:32:47.862+03	
ead23785-cf35-ddd1-cf01-ea9f9a0754dd	2021-05-19 19:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:33:08.853+03	2021-05-19 19:33:08.861+03	
04553fb5-8bfc-b9a9-f3b9-f4de770230e0	2021-05-19 19:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:46:52.853+03	2021-05-19 19:46:52.861+03	
83d69187-a0d9-9f44-9867-997097dd6f14	2021-05-19 19:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:33:28.853+03	2021-05-19 19:33:28.862+03	
4c470244-9a3d-cbac-6d42-1bd2b5da0065	2021-05-19 19:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:33:39.852+03	2021-05-19 19:33:39.861+03	
6ebe9c1c-e4ba-beff-511a-4c91b34cd9c8	2021-05-19 19:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:47:12.853+03	2021-05-19 19:47:12.86+03	
3487b650-cecb-2a82-1da1-33bc9bd49d05	2021-05-19 19:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:33:49.853+03	2021-05-19 19:33:49.865+03	
cc29df87-bacf-5b70-02bc-34e04e7f77fc	2021-05-19 19:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:33:59.853+03	2021-05-19 19:33:59.863+03	
bf2ae245-8162-fa32-4e35-b9184a02ea26	2021-05-19 19:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:47:32.853+03	2021-05-19 19:47:32.861+03	
9987c0f0-743a-54f2-d22d-8ed97cc3a682	2021-05-19 19:34:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:34:09.853+03	2021-05-19 19:34:09.869+03	
31325b33-184d-4e58-f72e-d7dd84060ee9	2021-05-19 19:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:34:19.853+03	2021-05-19 19:34:19.86+03	
f4942dad-e417-fab0-6c2b-1406482de7cf	2021-05-19 19:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:47:53.852+03	2021-05-19 19:47:53.86+03	
ef08374b-1a97-3e7c-319a-fb3bae30ad5b	2021-05-19 19:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:34:30.853+03	2021-05-19 19:34:30.859+03	
201eb067-e25d-70d0-f99a-2dc323d1de90	2021-05-19 19:34:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:34:41.853+03	2021-05-19 19:34:41.861+03	
daf773a3-7630-fb8b-109b-c2f5944afc8c	2021-05-19 19:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:48:13.853+03	2021-05-19 19:48:13.867+03	
e00b3e13-de8c-037c-9628-f8a93b4db3ab	2021-05-19 19:34:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:34:51.853+03	2021-05-19 19:34:51.864+03	
da96604c-1a7b-c23a-c0a7-a1d32c205ff5	2021-05-19 19:35:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:35:01.854+03	2021-05-19 19:35:01.865+03	
e024c211-7707-4c65-2307-af9794639e06	2021-05-19 19:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:48:34.853+03	2021-05-19 19:48:34.861+03	
6170e093-caa4-f8fb-8698-a8637d3453bb	2021-05-19 19:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:35:12.852+03	2021-05-19 19:35:12.861+03	
15578e0d-86c7-6e33-c505-588461ea7a94	2021-05-19 19:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:35:22.853+03	2021-05-19 19:35:22.862+03	
98dbf22a-b8a8-6f51-d5c9-b74b683b86c1	2021-05-19 19:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:48:54.853+03	2021-05-19 19:48:54.863+03	
b0cab890-3010-9f77-01b6-8629a6a31696	2021-05-19 19:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:35:32.853+03	2021-05-19 19:35:32.863+03	
d5ce1fff-44b2-5f56-58b8-c99915ed66ef	2021-05-19 19:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:35:42.853+03	2021-05-19 19:35:42.86+03	
95ddfc6f-8062-80ff-2ea7-6d2a55f85749	2021-05-19 19:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:49:15.853+03	2021-05-19 19:49:15.86+03	
ca65e897-0f44-4135-000b-86596dbf03fd	2021-05-19 19:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:35:53.852+03	2021-05-19 19:35:53.863+03	
eeec90bd-68f6-6c22-14e5-a8fcd89492c7	2021-05-19 19:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:36:03.852+03	2021-05-19 19:36:03.86+03	
61023bef-e47c-08c4-4698-cd1825e8ffb8	2021-05-19 19:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:49:37.853+03	2021-05-19 19:49:37.862+03	
3b495c6c-1eb2-e01f-4a7d-4b52f615b775	2021-05-19 19:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:36:13.852+03	2021-05-19 19:36:13.86+03	
972bdf7f-762e-1c19-4e0e-c3c876dc7e0c	2021-05-19 19:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:36:23.853+03	2021-05-19 19:36:23.861+03	
db5e91d4-7277-3002-040a-455dddcde1c0	2021-05-19 19:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:49:57.853+03	2021-05-19 19:49:57.86+03	
66e0a944-8d55-c4ce-7995-7584cf851ee7	2021-05-19 19:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:36:33.853+03	2021-05-19 19:36:33.861+03	
ea696885-0fce-7f6d-0cb9-47a3c2b5f5a0	2021-05-19 19:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:36:43.853+03	2021-05-19 19:36:43.864+03	
1d2bb05c-c768-75b0-e87b-10c7ded6f198	2021-05-19 19:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:50:07.853+03	2021-05-19 19:50:07.86+03	
24d33af4-6462-e1ea-6803-3591a40af624	2021-05-19 19:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:36:53.853+03	2021-05-19 19:36:53.862+03	
1a6aecc1-947d-2c95-10ab-4b06f9a3b76e	2021-05-19 19:37:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:37:03.853+03	2021-05-19 19:37:03.862+03	
71c713ec-46ac-496a-6894-8234ddfe38a9	2021-05-19 19:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:50:28.852+03	2021-05-19 19:50:28.861+03	
1bbdb9fd-bda1-2b89-2621-bc1a25f17d25	2021-05-19 19:37:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:37:13.853+03	2021-05-19 19:37:13.863+03	
1b7c310a-4c46-2a06-bb21-8e5cffa86377	2021-05-19 19:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:37:23.853+03	2021-05-19 19:37:23.86+03	
1dd84cf6-d323-477f-bfad-9d9a15dcead1	2021-05-19 19:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:50:48.853+03	2021-05-19 19:50:48.86+03	
e1180322-4f0b-559b-b4e6-050ec14324fa	2021-05-19 19:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:37:34.852+03	2021-05-19 19:37:34.878+03	
da46a15d-c2fd-1c33-05f0-19a40d110d8e	2021-05-19 19:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:51:09.853+03	2021-05-19 19:51:09.861+03	
7bce8bf5-118b-44a8-689c-813aa8ce8578	2021-05-19 19:51:29.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:51:29.858+03	2021-05-19 19:51:29.882+03	
47df2d72-a806-ecdb-4f24-d9de475be5d8	2021-05-19 19:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:51:50.852+03	2021-05-19 19:51:50.86+03	
1a18f2f0-8f9e-3b08-f0ba-37f60c795a9b	2021-05-19 19:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:52:10.853+03	2021-05-19 19:52:10.859+03	
e3bb1fa2-0006-efa0-8eba-f018299c5030	2021-05-19 19:52:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:52:31.852+03	2021-05-19 19:52:31.859+03	
3f847e8f-f750-3a33-2268-66f9251c1bcb	2021-05-19 19:52:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:52:51.853+03	2021-05-19 19:52:51.86+03	
29a89dfa-65ae-4a3f-b59a-14271ef734e3	2021-05-19 19:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:53:12.853+03	2021-05-19 19:53:12.863+03	
bddbe499-cc94-ce86-7dc0-14e9ee8a9d40	2021-05-19 19:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:53:32.853+03	2021-05-19 19:53:32.863+03	
b7a845a3-755f-ad4c-4068-c2f1b3e636eb	2021-05-19 19:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:53:52.853+03	2021-05-19 19:53:52.863+03	
f7e3635a-e3f3-79b3-f04d-16477d5f043e	2021-05-19 19:54:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:54:02.853+03	2021-05-19 19:54:02.911+03	
1e2adb19-21d8-dd1f-7e46-05f8106f08c5	2021-05-19 19:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:54:13.852+03	2021-05-19 19:54:13.858+03	
8f5afd04-353a-51fa-19e7-19179eb4e61e	2021-05-19 19:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:54:34.853+03	2021-05-19 19:54:34.863+03	
92416b16-8758-1d1a-adef-b5f7b74c82df	2021-05-19 19:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:54:54.853+03	2021-05-19 19:54:54.86+03	
62e2ce2c-eb87-24d0-0293-4261a56076d1	2021-05-19 19:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:59:32.852+03	2021-05-19 19:59:32.86+03	
a20bedf1-14c5-ff36-d219-8c4b36f95a15	2021-05-19 20:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:24:00.853+03	2021-05-19 20:24:00.861+03	
2575c3de-cb7d-5711-fd92-d261d8480514	2021-05-19 19:59:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:59:52.853+03	2021-05-19 19:59:52.862+03	
5f5b69d5-7eda-64cc-3c56-9a7a85039d41	2021-05-19 20:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:00:02.853+03	2021-05-19 20:00:02.873+03	
33f43840-75ea-bc8c-2dc3-2fb677b1689e	2021-05-19 20:24:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:24:21.852+03	2021-05-19 20:24:21.86+03	
a292af44-f839-2bdf-3ffe-0ea118953637	2021-05-19 20:00:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:00:22.853+03	2021-05-19 20:00:22.864+03	
9a7aba2e-573f-c56e-b7cb-49ddecdce859	2021-05-19 20:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:00:42.853+03	2021-05-19 20:00:42.861+03	
28e5b43b-98cc-40d3-7ca4-4b6852ab65ce	2021-05-19 20:24:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:24:41.852+03	2021-05-19 20:24:41.863+03	
b9c7640a-e63f-f6dd-88d1-f142c3c8f7b1	2021-05-19 20:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:01:03.853+03	2021-05-19 20:01:03.86+03	
c1c108c6-5835-522e-4a64-0fefb0782ee5	2021-05-19 20:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:01:23.853+03	2021-05-19 20:01:23.865+03	
8c267d7e-51b7-b5be-14b1-e08b527a126f	2021-05-19 20:25:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:25:01.853+03	2021-05-19 20:25:01.859+03	
939d7ad3-eea3-4c6a-e969-b5171d97efe9	2021-05-19 20:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:01:44.853+03	2021-05-19 20:01:44.861+03	
e689882b-f23d-730a-ea90-c6c495f9b8ca	2021-05-19 20:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:02:04.853+03	2021-05-19 20:02:04.86+03	
7eefad85-9ba4-8cdc-0a79-1f9d6fdb8142	2021-05-19 20:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:25:22.853+03	2021-05-19 20:25:22.86+03	
e30dfa3a-986c-5884-137e-ea0bb65273bd	2021-05-19 20:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:02:25.852+03	2021-05-19 20:02:25.903+03	
86f4d955-dd27-6a71-1045-5fa6cf0f94aa	2021-05-19 20:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:02:45.853+03	2021-05-19 20:02:45.865+03	
77ff7f54-c8c5-6a4f-255e-286aab1c62c4	2021-05-19 20:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:25:42.853+03	2021-05-19 20:25:42.861+03	
a3874d37-f6de-9cbb-8563-c7148a54d03a	2021-05-19 20:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:03:07.853+03	2021-05-19 20:03:07.861+03	
b25cd209-07df-6224-d82d-a70060ff70f5	2021-05-19 20:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:03:28.853+03	2021-05-19 20:03:28.86+03	
2b29c359-3956-ea18-2c01-6586b26e6e65	2021-05-19 20:26:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:26:02.853+03	2021-05-19 20:26:02.869+03	
4d84af6a-102e-6fe6-ab97-e4335ce9e222	2021-05-19 20:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:03:49.852+03	2021-05-19 20:03:49.859+03	
979a45cb-37b1-0220-87cb-dbf7c27232df	2021-05-19 20:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:04:09.853+03	2021-05-19 20:04:09.859+03	
2264b463-b1a3-89c8-a854-c5316a26f41a	2021-05-19 20:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:26:22.853+03	2021-05-19 20:26:22.86+03	
541d8d1e-ef4a-ed4e-d942-14fcb7cedb7c	2021-05-19 20:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:04:29.853+03	2021-05-19 20:04:29.86+03	
1045ab1b-832d-cd2e-d9f9-67d6c385976a	2021-05-19 20:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:04:50.853+03	2021-05-19 20:04:50.86+03	
3336e255-87d8-7b0d-e5f1-ecf4f11786ff	2021-05-19 20:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:26:53.853+03	2021-05-19 20:26:53.86+03	
8f3f92a7-67b8-8002-1e42-62ddf8837886	2021-05-19 20:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:05:10.853+03	2021-05-19 20:05:10.861+03	
dc855e2b-5a01-60a0-9dec-93a86752225c	2021-05-19 20:05:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:05:31.853+03	2021-05-19 20:05:31.859+03	
fe095e25-d17f-c854-e9cb-6a49f7357702	2021-05-19 20:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:27:14.853+03	2021-05-19 20:27:14.865+03	
b762f111-b194-06a0-720c-a5364315013d	2021-05-19 20:05:41.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:05:41.854+03	2021-05-19 20:05:41.868+03	
767990ea-b6c0-89b2-624f-498bcc0c5672	2021-05-19 20:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:06:02.853+03	2021-05-19 20:06:02.861+03	
09165002-c5e2-a22f-ee83-aa4d0916d8d9	2021-05-19 20:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:27:34.853+03	2021-05-19 20:27:34.869+03	
04abf407-f731-3a4f-98e2-a27c1acd11ce	2021-05-19 20:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:06:22.853+03	2021-05-19 20:06:22.86+03	
10f4e107-3dfc-92b5-8123-fe59b32edfbe	2021-05-19 20:06:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:06:42.853+03	2021-05-19 20:06:42.861+03	
c115af4f-30c2-6062-e742-ed34415ff578	2021-05-19 20:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:27:54.853+03	2021-05-19 20:27:54.861+03	
4662bbfc-8ce5-6341-c94c-1a4858b10902	2021-05-19 20:07:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:07:02.853+03	2021-05-19 20:07:02.86+03	
23c389e5-fba9-ac0a-8a59-70a2b8a038d9	2021-05-19 20:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:07:23.852+03	2021-05-19 20:07:23.865+03	
35d9a191-dcbe-026c-feff-3e29b4f096eb	2021-05-19 20:28:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:28:14.853+03	2021-05-19 20:28:14.86+03	
7b874fc3-ee66-fd81-94d5-2086c5fe9c99	2021-05-19 20:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:07:43.852+03	2021-05-19 20:07:43.86+03	
a9a3c712-21d0-95d3-02da-75de2ed43095	2021-05-19 20:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:08:03.853+03	2021-05-19 20:08:03.861+03	
c50fe1c4-d2a1-bcc2-ad77-7acda10d0914	2021-05-19 20:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:28:35.853+03	2021-05-19 20:28:35.862+03	
5cabce27-dd91-0166-d1e4-09132c1a169b	2021-05-19 20:08:23.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:08:23.855+03	2021-05-19 20:08:23.863+03	
7e82775d-392b-e487-d70c-cd899848ad3a	2021-05-19 20:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:08:44.852+03	2021-05-19 20:08:44.859+03	
d217e651-5939-fbc6-63f0-d8ce8fabc8eb	2021-05-19 20:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:28:56.852+03	2021-05-19 20:28:56.859+03	
5b078c59-2191-1006-dc88-50ca945e22df	2021-05-19 20:09:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:09:04.853+03	2021-05-19 20:09:04.861+03	
8d41244d-d79d-bcc5-de80-a667fc047ff7	2021-05-19 20:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:09:25.852+03	2021-05-19 20:09:25.86+03	
de064d09-32c6-716e-920c-39a50244cef4	2021-05-19 20:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:29:17.852+03	2021-05-19 20:29:17.859+03	
89fdb866-bbae-6eef-8151-47df76a9dde5	2021-05-19 20:09:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:09:45.853+03	2021-05-19 20:09:45.861+03	
6c6d1deb-3600-3f69-7582-18edcb9a8db1	2021-05-19 20:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 20:10:00.853+03	2021-05-19 20:10:00.86+03	ERROR
0209d434-c4c5-e833-a8a0-930a12a86683	2021-05-19 20:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:29:38.852+03	2021-05-19 20:29:38.86+03	
d13e5b8f-ac18-db71-e8d5-5c90096a28fc	2021-05-19 20:10:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:10:17.852+03	2021-05-19 20:10:17.859+03	
fde12517-611f-eb2b-0fd0-63c1f30b43b0	2021-05-19 20:10:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:10:37.853+03	2021-05-19 20:10:37.86+03	
cf67104b-92f0-57fc-c3f5-dc057c2e5ea5	2021-05-19 20:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:29:59.853+03	2021-05-19 20:29:59.86+03	
49426a5f-1492-4602-3c88-caf7deec3dab	2021-05-19 20:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:10:59.853+03	2021-05-19 20:10:59.861+03	
ac2e0435-1cb4-1771-d87c-278b0bd237ab	2021-05-19 20:11:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:11:20.852+03	2021-05-19 20:11:20.865+03	
d5d2b4eb-8c98-c4b7-7ccc-a38b4dd263e2	2021-05-19 20:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:30:09.853+03	2021-05-19 20:30:09.867+03	
7a081db7-4eb7-031d-f4d0-f762d08cc929	2021-05-19 20:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:30:30.852+03	2021-05-19 20:30:30.859+03	
8309bb8c-039a-8ca5-8b33-bb100758e77f	2021-05-19 20:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:30:50.853+03	2021-05-19 20:30:50.869+03	
a26a1ad4-7deb-aaad-8743-e23a3c5736d4	2021-05-19 20:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:31:10.853+03	2021-05-19 20:31:10.86+03	
4e9c7187-a61a-6770-2138-a2d6bed9c55f	2021-05-19 20:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:31:30.853+03	2021-05-19 20:31:30.864+03	
dd1b98e8-c83b-ff09-8a2b-25a9282bdc4e	2021-05-19 20:31:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:31:51.852+03	2021-05-19 20:31:51.859+03	
54f9cf3f-90ca-9bc1-97b6-917247d5f413	2021-05-19 20:32:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:32:11.854+03	2021-05-19 20:32:11.864+03	
bf334cfd-692f-31d0-6d19-0878b9f0e889	2021-05-19 20:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:32:32.853+03	2021-05-19 20:32:32.861+03	
e4bb4b57-7097-cc4d-2f20-c7378b7c560b	2021-05-19 20:32:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:32:52.853+03	2021-05-19 20:32:52.861+03	
e03d8827-5240-5b60-ac90-89a8703c7ac5	2021-05-19 19:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 19:59:42.853+03	2021-05-19 19:59:42.861+03	
e50dc0cd-dd45-41f4-ca26-fc376a94e5cf	2021-05-19 20:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 20:00:00.852+03	2021-05-19 20:00:00.893+03	ERROR
09a51ae8-6ac6-a454-76b2-f78bac7797e4	2021-05-19 20:00:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:00:12.853+03	2021-05-19 20:00:12.87+03	
c0a81cf0-2240-78f1-e7f7-e19fc63fb0ec	2021-05-19 20:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:00:32.853+03	2021-05-19 20:00:32.861+03	
3a855326-ef50-b134-b4f6-a9164a32bf3d	2021-05-19 20:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:00:53.852+03	2021-05-19 20:00:53.859+03	
710bfe18-a48b-ba96-a0c1-72e6e5a3be92	2021-05-19 20:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:01:13.853+03	2021-05-19 20:01:13.861+03	
bfca8603-e0bb-4c11-0e88-22ea10aec96c	2021-05-19 20:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:01:34.853+03	2021-05-19 20:01:34.867+03	
d489ec45-7a1e-bdab-5cec-248572bfea55	2021-05-19 20:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:01:54.853+03	2021-05-19 20:01:54.86+03	
bdce93af-391a-52ee-dda4-c7fec50caea2	2021-05-19 20:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:02:14.853+03	2021-05-19 20:02:14.86+03	
9816bfd7-ebe0-a6e3-20c6-1dfee2b01cad	2021-05-19 20:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:02:35.853+03	2021-05-19 20:02:35.86+03	
cbed29d3-8ac9-0dc6-32b9-b5177f8e6839	2021-05-19 20:02:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:02:56.853+03	2021-05-19 20:02:56.861+03	
9d89f555-38b6-0037-52f5-735a6a59b045	2021-05-19 20:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:03:17.853+03	2021-05-19 20:03:17.864+03	
d2aae1c5-9cdb-39e9-23c5-f060208f5055	2021-05-19 20:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:03:38.853+03	2021-05-19 20:03:38.86+03	
dab23da5-933b-4a69-846c-b326dafd4b9b	2021-05-19 20:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:03:59.853+03	2021-05-19 20:03:59.858+03	
0f7c534d-28a5-8883-d7c8-c6bb3bb4707d	2021-05-19 20:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:04:19.853+03	2021-05-19 20:04:19.86+03	
1528fbfa-facb-2a7c-7140-e150b646c6a3	2021-05-19 20:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:04:40.853+03	2021-05-19 20:04:40.86+03	
aea7da6e-56e4-e74f-8337-e0d8d5744420	2021-05-19 20:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:05:00.853+03	2021-05-19 20:05:00.862+03	
b1f7a023-e0de-ea52-0777-4d831438ab5a	2021-05-19 20:05:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:05:21.853+03	2021-05-19 20:05:21.86+03	
2ecd6f8c-4142-ad62-a48c-53ea40f9ae79	2021-05-19 20:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:05:52.853+03	2021-05-19 20:05:52.861+03	
b9a7b30f-d943-9aec-ebec-e5a0472b6830	2021-05-19 20:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:06:12.853+03	2021-05-19 20:06:12.859+03	
054d3d19-d1e1-5b2f-096f-d36a7979203b	2021-05-19 20:06:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:06:32.853+03	2021-05-19 20:06:32.86+03	
e170b6aa-b9d6-def1-ba4e-3ce3c679558d	2021-05-19 20:06:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:06:52.853+03	2021-05-19 20:06:52.866+03	
db2daa25-4c9c-c402-aa1f-3e9646412ecf	2021-05-19 20:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:07:13.852+03	2021-05-19 20:07:13.861+03	
95d0dce5-2a03-39f6-fdfd-34e0949a041a	2021-05-19 20:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:07:33.852+03	2021-05-19 20:07:33.861+03	
e4231186-a85b-6d95-5a2b-1cee2f6bd7a9	2021-05-19 20:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:07:53.853+03	2021-05-19 20:07:53.868+03	
f46f57cd-aa0f-e868-ddf8-7f33fd3d3369	2021-05-19 20:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:08:13.853+03	2021-05-19 20:08:13.863+03	
f10a246f-a35a-ca59-9488-d5eea08517ac	2021-05-19 20:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:08:34.852+03	2021-05-19 20:08:34.864+03	
b21cd7b9-eb82-4ce9-078a-e739ba9cf13c	2021-05-19 20:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:08:54.853+03	2021-05-19 20:08:54.859+03	
4e6525a5-9c76-0f96-187c-f063197c01a3	2021-05-19 20:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:09:14.853+03	2021-05-19 20:09:14.86+03	
b2e09a3d-6467-507c-5b58-7df6b228207e	2021-05-19 20:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:09:35.852+03	2021-05-19 20:09:35.86+03	
1fb70055-c598-4fb4-409e-ddb2f481cee6	2021-05-19 20:09:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:09:56.854+03	2021-05-19 20:09:56.861+03	
e9480709-d6d3-f5ee-92a7-3a0d503cf92f	2021-05-19 20:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:10:07.852+03	2021-05-19 20:10:07.86+03	
ba1e657e-efe9-0db8-c0d7-23c57b2d5207	2021-05-19 20:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:10:27.853+03	2021-05-19 20:10:27.861+03	
c23a2c59-b96f-4bee-a7f4-ff7a31889de8	2021-05-19 20:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:10:48.853+03	2021-05-19 20:10:48.86+03	
42c2c144-ca4b-7f77-84de-94f18e21c7cf	2021-05-19 20:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:11:09.853+03	2021-05-19 20:11:09.861+03	
da4a0395-f717-8345-790f-5260657ecd7e	2021-05-19 20:11:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:11:30.852+03	2021-05-19 20:11:30.859+03	
e4c7a0a7-a26a-2044-5fa1-8f528d234392	2021-05-19 20:11:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:11:40.852+03	2021-05-19 20:11:40.859+03	
61b14836-cb3d-0ec3-5d4a-c448bdcaf8d7	2021-05-19 20:11:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:11:50.853+03	2021-05-19 20:11:50.871+03	
4d932610-5116-1b77-ad57-7bbcfcba4c0b	2021-05-19 20:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:12:00.853+03	2021-05-19 20:12:00.873+03	
cfe7bd28-cb83-8289-67f5-91ed04b01c1d	2021-05-19 20:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:12:10.853+03	2021-05-19 20:12:10.861+03	
75943a18-d0c2-9b21-67b6-71f75ed1d1f8	2021-05-19 20:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:12:20.853+03	2021-05-19 20:12:20.86+03	
45206ce5-afdd-452f-1f21-65a13c6411ab	2021-05-19 20:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:12:31.852+03	2021-05-19 20:12:31.861+03	
116678c5-aa1f-1029-255e-e1768d444a34	2021-05-19 20:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:12:41.852+03	2021-05-19 20:12:41.86+03	
69917450-52a3-640f-47a1-7a9f99e5f3de	2021-05-19 20:12:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:12:51.852+03	2021-05-19 20:12:51.865+03	
acb5d4c1-661c-4442-b865-3914e702bc9e	2021-05-19 20:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:13:01.854+03	2021-05-19 20:13:01.861+03	
d63f5f61-5ed7-d5ec-6bfd-e1fc6fd6f48e	2021-05-19 20:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:13:12.853+03	2021-05-19 20:13:12.86+03	
27825840-98a0-1733-324e-ce6e5048c182	2021-05-19 20:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:13:23.852+03	2021-05-19 20:13:23.861+03	
e403fd71-7628-494d-f527-527a3d937c3d	2021-05-19 20:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:13:33.852+03	2021-05-19 20:13:33.86+03	
bcc7180c-cfa9-f295-8389-b9374d550471	2021-05-19 20:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:13:43.853+03	2021-05-19 20:13:43.862+03	
c616fe5a-0326-d08f-38a0-485fc3964a65	2021-05-19 20:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:13:54.853+03	2021-05-19 20:13:54.859+03	
5fda53bf-3c89-e99b-8488-6bf8ad346a5a	2021-05-19 20:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:14:04.853+03	2021-05-19 20:14:04.862+03	
d877c87c-c620-d7a5-3fba-9aa9aa5102bc	2021-05-19 20:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:14:14.853+03	2021-05-19 20:14:14.86+03	
73173edd-2aba-40d8-2510-fc2159727d09	2021-05-19 20:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:14:25.853+03	2021-05-19 20:14:25.868+03	
7bd0dd5e-a9e5-78b9-f63b-ef9e04faa0c4	2021-05-19 20:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:14:35.853+03	2021-05-19 20:14:35.859+03	
09dd9318-6ec0-3c03-4470-2acb063dff2e	2021-05-19 20:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:14:45.853+03	2021-05-19 20:14:45.859+03	
0df120a6-733e-22ed-4574-ec2ff1348f9a	2021-05-19 20:14:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:14:56.854+03	2021-05-19 20:14:56.861+03	
f966d19f-c72c-d678-92fe-d43d3c4092c7	2021-05-19 20:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:15:07.853+03	2021-05-19 20:15:07.862+03	
1a0f2151-43b2-81cd-915e-1d0ce5428747	2021-05-19 20:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:15:18.853+03	2021-05-19 20:15:18.862+03	
1696db7c-dc95-b358-ad3f-28294c536036	2021-05-19 20:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:15:28.853+03	2021-05-19 20:15:28.861+03	
5fae4d3b-7619-1aee-62d3-3c6e7e496fd2	2021-05-19 20:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:15:38.853+03	2021-05-19 20:15:38.859+03	
1d08c351-5c7b-adb9-2a2e-e519c6ee0704	2021-05-19 20:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:15:48.853+03	2021-05-19 20:15:48.86+03	
3f25a146-c982-f641-68e6-cbb45c348113	2021-05-19 20:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:15:58.853+03	2021-05-19 20:15:58.864+03	
04b4436a-bc10-0ad7-4e0a-caae84038725	2021-05-19 20:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:16:09.852+03	2021-05-19 20:16:09.86+03	
ec2d4967-d1b9-fef0-2cb1-426e20630615	2021-05-19 22:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:32:43.853+03	2021-05-19 22:32:43.86+03	
932985ac-c4c0-4107-90e2-58bf35cacba4	2021-05-19 20:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:16:19.853+03	2021-05-19 20:16:19.86+03	
952b9742-d088-9cae-2a93-3cb9cc15dbe9	2021-05-19 20:24:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:24:11.852+03	2021-05-19 20:24:11.861+03	
932d11b1-e4c8-952a-bd5b-f2335a2023c0	2021-05-19 20:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:16:40.853+03	2021-05-19 20:16:40.861+03	
6fefedf6-73e1-d4aa-c71a-9fe421b3b5d8	2021-05-19 20:17:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:17:01.853+03	2021-05-19 20:17:01.86+03	
8800d21d-7bcc-da49-3d7e-a1305680e623	2021-05-19 20:24:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:24:31.852+03	2021-05-19 20:24:31.859+03	
d5ce870c-cacf-ec86-b2ce-6b17d500c959	2021-05-19 20:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:17:22.853+03	2021-05-19 20:17:22.859+03	
87fbc230-b42c-6ad0-ec56-50f064a97fdf	2021-05-19 20:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:17:42.853+03	2021-05-19 20:17:43.036+03	
65bd341e-df09-b0dc-cda6-e2896389277d	2021-05-19 20:24:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:24:51.852+03	2021-05-19 20:24:51.861+03	
8a0ff65f-21a9-a30f-3623-0efbb1bc8c35	2021-05-19 20:18:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:18:02.853+03	2021-05-19 20:18:02.862+03	
7e9f35b1-cfe3-4469-7cb1-c1c3b5c6b0a0	2021-05-19 20:18:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:18:22.853+03	2021-05-19 20:18:22.86+03	
830e909b-ce59-a57d-fae8-67cd936805d1	2021-05-19 20:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:25:12.852+03	2021-05-19 20:25:12.862+03	
fad34bc2-d36b-a4c5-d7d6-25089c8e0af1	2021-05-19 20:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:18:43.852+03	2021-05-19 20:18:43.861+03	
040aac17-0aaf-040e-0dc5-e52abef33734	2021-05-19 20:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:19:04.853+03	2021-05-19 20:19:04.861+03	
f1bca48b-528c-7362-8021-30012c32e0d2	2021-05-19 20:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:25:32.853+03	2021-05-19 20:25:32.863+03	
33c3e4ca-eeb2-5e82-bb73-a7e22f602c91	2021-05-19 20:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:19:25.852+03	2021-05-19 20:19:25.863+03	
5e635700-c21b-16ee-73ec-e818eb00ae98	2021-05-19 20:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:19:45.853+03	2021-05-19 20:19:45.86+03	
cc4ee010-3018-ea85-c58a-0675ab16d1a3	2021-05-19 20:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:25:52.853+03	2021-05-19 20:25:52.861+03	
7bce570a-a9a0-3b29-63d5-c395ea61de0e	2021-05-19 20:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 20:20:00.853+03	2021-05-19 20:20:00.883+03	ERROR
41186330-d517-a088-7c59-0cbfaf1a81d8	2021-05-19 20:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:20:16.853+03	2021-05-19 20:20:16.864+03	
2418f792-b1ad-907a-8bf3-5c1fd787de14	2021-05-19 20:26:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:26:12.853+03	2021-05-19 20:26:12.86+03	
9415027d-e898-15c1-782e-c23bf4332ad7	2021-05-19 20:20:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:20:37.853+03	2021-05-19 20:20:37.862+03	
0f219b94-d5bc-1d07-14b9-89a2188cfd4f	2021-05-19 20:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:20:57.853+03	2021-05-19 20:20:57.86+03	
3c98514f-c9f7-f47e-21b9-93cd5c3bb0a6	2021-05-19 20:26:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:26:32.853+03	2021-05-19 20:26:32.861+03	
cb7d7b52-526b-8365-be6f-75397d71e752	2021-05-19 20:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:21:17.853+03	2021-05-19 20:21:17.86+03	
b5e7eb1f-5e79-2218-1c2b-9732210d106e	2021-05-19 20:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:21:37.853+03	2021-05-19 20:21:37.862+03	
073d83cc-95c1-a31e-f0de-a75494511adb	2021-05-19 20:33:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:33:12.853+03	2021-05-19 20:33:12.862+03	
bf69bc2d-a978-e0e7-3cc6-371d393c6850	2021-05-19 20:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:21:58.852+03	2021-05-19 20:21:58.859+03	
4652297e-c8c7-4923-011c-8d175dd14cbe	2021-05-19 20:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:22:18.853+03	2021-05-19 20:22:18.875+03	
952dcbc6-6952-dd50-92b8-e8dc816b6bc8	2021-05-19 20:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:33:32.853+03	2021-05-19 20:33:32.861+03	
d3509dba-1dc5-1cac-c3fb-c0ad41380e97	2021-05-19 20:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:22:38.853+03	2021-05-19 20:22:38.861+03	
0f138653-c1f7-df86-138f-e539c6d875d9	2021-05-19 20:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:22:58.853+03	2021-05-19 20:22:58.86+03	
41fea7fd-809c-7a74-2fdf-7e193914ebbf	2021-05-19 20:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:33:53.853+03	2021-05-19 20:33:53.86+03	
d25f52e4-36ed-8251-54d6-1c883c5d0226	2021-05-19 20:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:23:18.853+03	2021-05-19 20:23:18.861+03	
4536298a-98f8-0740-1f54-504f0d5f9aea	2021-05-19 20:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:34:13.853+03	2021-05-19 20:34:13.861+03	
4a381bb9-b881-b81c-28f2-e953c7a531d0	2021-05-19 20:34:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:34:34.853+03	2021-05-19 20:34:34.87+03	
32c5965e-b2eb-0874-0bbd-cdda2564ca14	2021-05-19 20:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:34:55.852+03	2021-05-19 20:34:55.859+03	
f58b977f-8c01-143a-d8fd-dd62ccfc8981	2021-05-19 20:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:35:15.853+03	2021-05-19 20:35:15.86+03	
e7a0c297-a0ea-c581-37e0-0c8733c4c34d	2021-05-19 20:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:35:35.853+03	2021-05-19 20:35:35.86+03	
90ba9f5f-eec9-3860-0d97-9a4e843dbe69	2021-05-19 20:35:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:35:56.855+03	2021-05-19 20:35:56.862+03	
971bae2c-8d27-e8dc-ea37-338193a3cb32	2021-05-19 20:36:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:36:17.853+03	2021-05-19 20:36:17.859+03	
4f32b81c-c53c-9e09-3c2e-d499c963c750	2021-05-19 20:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:36:37.853+03	2021-05-19 20:36:37.86+03	
9843fa06-1907-0f93-8d1e-d76df6768544	2021-05-19 20:36:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:36:57.853+03	2021-05-19 20:36:57.861+03	
7c95dffd-eb3d-0691-004d-84b324568f50	2021-05-19 20:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:37:18.852+03	2021-05-19 20:37:18.859+03	
5f457ceb-566b-4fb3-7c2b-a1348aaeb920	2021-05-19 20:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:37:38.852+03	2021-05-19 20:37:38.859+03	
24a70207-3875-99a3-349b-be1a5c4e94df	2021-05-19 20:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:37:58.852+03	2021-05-19 20:37:58.86+03	
204856bf-1189-b1f9-1f84-2c42e4ffe093	2021-05-19 20:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:38:18.853+03	2021-05-19 20:38:18.868+03	
8ee34f0c-3d84-63e8-2d9c-c9961d972cc2	2021-05-19 20:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:38:38.853+03	2021-05-19 20:38:38.859+03	
29a24230-e007-7a07-1f03-0d764a220e86	2021-05-19 20:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:38:58.853+03	2021-05-19 20:38:58.859+03	
35bcc476-3905-029c-b1ac-186803d7b6b0	2021-05-19 20:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:39:18.853+03	2021-05-19 20:39:18.86+03	
94c40175-ff1d-5823-e93f-301de9c718e6	2021-05-19 20:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:39:39.852+03	2021-05-19 20:39:39.859+03	
ca801e33-2ebf-6f3c-1059-dceb69968462	2021-05-19 20:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:39:59.853+03	2021-05-19 20:39:59.864+03	
50d43834-28ff-e399-7d64-32ed8e685c35	2021-05-19 20:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:40:09.853+03	2021-05-19 20:40:09.86+03	
4c958eca-9621-094a-5dad-7b34a29b3ce1	2021-05-19 20:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:40:19.853+03	2021-05-19 20:40:19.86+03	
833c2f87-79e0-2990-7fab-034a60651ae3	2021-05-19 20:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:40:29.853+03	2021-05-19 20:40:29.86+03	
a9fab381-e014-0c24-fec4-df435cc61e79	2021-05-19 20:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:40:39.853+03	2021-05-19 20:40:39.862+03	
b6d10aa3-26a0-a29a-fb17-2c5c5c0ae0d6	2021-05-19 20:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:40:49.853+03	2021-05-19 20:40:49.862+03	
9664e460-d14a-eee5-6374-53a6746605e7	2021-05-19 20:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:41:00.852+03	2021-05-19 20:41:00.862+03	
c806be13-bdd1-f548-4b32-e1719022fea0	2021-05-19 20:41:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:41:10.853+03	2021-05-19 20:41:10.86+03	
d89a73cc-1516-09c9-664e-50b5eb40a901	2021-05-19 20:41:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:41:20.853+03	2021-05-19 20:41:20.867+03	
270c7ab9-9916-6b4a-8e23-b5475d785ebf	2021-05-19 20:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:41:31.852+03	2021-05-19 20:41:31.86+03	
2ca27cca-d6b4-02c3-6c86-e2d7d5c1196e	2021-05-19 20:41:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:41:41.854+03	2021-05-19 20:41:41.862+03	
462d561d-fbc2-3f44-f0bd-4f2fa7f71f41	2021-05-19 20:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:41:52.853+03	2021-05-19 20:41:52.862+03	
1cdbcc05-c967-1da1-aaab-286d07448981	2021-05-19 20:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:42:02.853+03	2021-05-19 20:42:02.862+03	
8f469884-cce0-d134-b0a6-a8ff80da995f	2021-05-19 21:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:20:52.853+03	2021-05-19 21:20:52.862+03	
826ea4fc-d890-36ca-c03e-6923af1c558b	2021-05-19 20:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:16:30.853+03	2021-05-19 20:16:30.861+03	
1c41bd82-de0c-f17e-9a2c-5a8478c1bedc	2021-05-19 20:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:26:42.853+03	2021-05-19 20:26:42.86+03	
4f02b205-8c28-848c-ac90-15c57405c9f0	2021-05-19 20:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:16:50.853+03	2021-05-19 20:16:50.86+03	
10c94b11-2a9b-356d-d643-4029c29bdf4d	2021-05-19 20:17:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:17:11.853+03	2021-05-19 20:17:11.861+03	
ea18a662-5060-038c-9936-b843e05437ac	2021-05-19 20:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:27:04.853+03	2021-05-19 20:27:04.861+03	
44771718-6067-cddc-9c9a-338038958b31	2021-05-19 20:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:17:32.853+03	2021-05-19 20:17:32.86+03	
c155edee-6590-9cc2-126d-1d342c15a983	2021-05-19 20:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:17:52.853+03	2021-05-19 20:17:52.86+03	
76de0ca6-2715-b206-9891-6a689a9a6f24	2021-05-19 20:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:27:24.853+03	2021-05-19 20:27:24.861+03	
34adb6b7-aab1-a98a-daa7-ffd128e9bea3	2021-05-19 20:18:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:18:12.853+03	2021-05-19 20:18:12.861+03	
7b968f8f-d24c-bf77-06e3-d7e9a2fe36a6	2021-05-19 20:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:18:32.853+03	2021-05-19 20:18:32.86+03	
9f7119c0-173d-dff6-c9f5-d858aa297f84	2021-05-19 20:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:27:44.853+03	2021-05-19 20:27:44.86+03	
257f6536-5521-e1f1-0b15-e18438749cab	2021-05-19 20:18:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:18:53.853+03	2021-05-19 20:18:53.862+03	
8aebc574-6350-a952-751f-4474cf86a70b	2021-05-19 20:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:19:14.853+03	2021-05-19 20:19:14.87+03	
e0fc1bf9-2c19-01ea-92e3-e0cc241a24d3	2021-05-19 20:28:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:28:04.853+03	2021-05-19 20:28:04.86+03	
9379bd36-4404-902e-e83c-78147632961e	2021-05-19 20:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:19:35.852+03	2021-05-19 20:19:35.86+03	
fa599ae1-7012-2083-6485-f7cd09ffc27f	2021-05-19 20:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:19:55.853+03	2021-05-19 20:19:55.86+03	
284a7661-5435-785a-5157-d82a6e13de82	2021-05-19 20:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:28:24.853+03	2021-05-19 20:28:24.86+03	
8916d673-3dcf-d237-a3ad-8df0c3a70426	2021-05-19 20:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:20:06.853+03	2021-05-19 20:20:06.859+03	
a137bc95-cedf-889e-f113-5d7315758736	2021-05-19 20:20:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:20:27.853+03	2021-05-19 20:20:27.861+03	
8aef0b0f-8945-cb82-d69c-bed63054e289	2021-05-19 20:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:28:45.853+03	2021-05-19 20:28:45.859+03	
ca9bf8e3-c90b-ce33-a968-6762f4651665	2021-05-19 20:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:20:47.853+03	2021-05-19 20:20:47.862+03	
fa173d1f-eeba-b3fb-512e-7d7b22f59e4b	2021-05-19 20:21:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:21:07.853+03	2021-05-19 20:21:07.878+03	
dbcfef1b-e0d8-5832-8054-b0d453994999	2021-05-19 20:29:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:29:06.853+03	2021-05-19 20:29:06.861+03	
e3b91867-66dd-6ea6-06a4-ba64462d06b5	2021-05-19 20:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:21:27.853+03	2021-05-19 20:21:27.86+03	
dde96b10-cef1-59e1-1c34-a8462d2381b2	2021-05-19 20:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:21:47.853+03	2021-05-19 20:21:47.86+03	
80ce4ea9-1329-d38b-c736-21889aad417f	2021-05-19 20:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:29:27.853+03	2021-05-19 20:29:27.86+03	
9264e7bd-9eb9-2e38-26b9-f15448cc74ae	2021-05-19 20:22:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:22:08.853+03	2021-05-19 20:22:08.87+03	
9bf92d67-b783-f3ae-cd01-804291bedda4	2021-05-19 20:22:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:22:28.853+03	2021-05-19 20:22:28.86+03	
3bcb1278-3698-5689-5c01-dd0fefb5eeba	2021-05-19 20:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:29:48.853+03	2021-05-19 20:29:48.859+03	
cd682b0c-b9ca-536a-d955-e6fdde0f1c14	2021-05-19 20:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:22:48.853+03	2021-05-19 20:22:48.86+03	
81f7274d-8875-cc3d-4b15-186759fd4abc	2021-05-19 20:23:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:23:08.853+03	2021-05-19 20:23:08.861+03	
d522a2ce-ceee-57c2-009f-f06bb120862a	2021-05-19 20:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 20:30:00.852+03	2021-05-19 20:30:00.857+03	ERROR
e5660248-9b9f-950a-3e45-29643b6cc0b5	2021-05-19 20:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:23:29.852+03	2021-05-19 20:23:29.87+03	
a4da7aec-678d-2344-4109-8215ea7fd304	2021-05-19 20:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:30:19.853+03	2021-05-19 20:30:19.86+03	
08b39acc-0040-b3dc-e27d-bf859e2916b0	2021-05-19 20:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:30:40.852+03	2021-05-19 20:30:40.862+03	
ad79a86d-2820-2ea9-36d9-370752035662	2021-05-19 20:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:31:00.853+03	2021-05-19 20:31:00.865+03	
f780f477-c767-2b90-9289-04e038c4d4c4	2021-05-19 20:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:31:20.853+03	2021-05-19 20:31:20.861+03	
0c77d4c3-3152-3597-005c-9a3d60bf2752	2021-05-19 20:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:31:40.853+03	2021-05-19 20:31:40.86+03	
2b2c3bec-96e2-f9bb-da3c-053a687637a9	2021-05-19 20:32:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:32:01.853+03	2021-05-19 20:32:01.863+03	
2e698398-3544-4b37-1ffb-e790a9917d6b	2021-05-19 20:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:32:22.853+03	2021-05-19 20:32:22.859+03	
93d06386-9bf3-7d9e-ffd4-523832481de0	2021-05-19 20:32:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:32:42.853+03	2021-05-19 20:32:42.86+03	
a58893be-77b9-b16d-f8dd-cd73363d0192	2021-05-19 20:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:33:02.853+03	2021-05-19 20:33:02.861+03	
9a9476dd-805b-fe77-ac39-f348b50d7d83	2021-05-19 20:33:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:33:22.853+03	2021-05-19 20:33:22.86+03	
1a1bf160-5110-f0a0-4492-b11d9f374162	2021-05-19 20:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:33:43.852+03	2021-05-19 20:33:43.86+03	
9ae25a94-ea07-31f9-cc40-6a6be8964533	2021-05-19 20:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:34:03.853+03	2021-05-19 20:34:03.859+03	
dcad2a0f-dcbd-b82b-b239-8de70f4fdd25	2021-05-19 20:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:34:24.852+03	2021-05-19 20:34:24.859+03	
09a7da8e-1682-ee35-3482-69ebc187a5c9	2021-05-19 20:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:34:44.853+03	2021-05-19 20:34:44.86+03	
049803bd-162b-2dcd-8104-220543c6db79	2021-05-19 20:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:35:05.853+03	2021-05-19 20:35:05.86+03	
1dc6e0dd-ac8f-6a99-fe61-2fe2267f2600	2021-05-19 20:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:35:25.853+03	2021-05-19 20:35:25.862+03	
72f420c6-3a2b-f935-97b9-4c1f7beefcc5	2021-05-19 20:35:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:35:46.852+03	2021-05-19 20:35:46.859+03	
58362792-6faf-24ec-9e57-73baaa21d595	2021-05-19 20:36:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:36:07.853+03	2021-05-19 20:36:07.861+03	
8c57310a-3824-a85a-9701-838ea8788d6f	2021-05-19 20:36:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:36:27.853+03	2021-05-19 20:36:27.862+03	
ba8e68a5-a381-36c9-9604-8668512e73f1	2021-05-19 20:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:36:47.853+03	2021-05-19 20:36:47.861+03	
f796f063-2fbe-60e3-5107-3b3cf58e355c	2021-05-19 20:37:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:37:07.853+03	2021-05-19 20:37:07.86+03	
6275b11c-9222-e5d6-9c1a-76c322bf6fef	2021-05-19 20:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:37:28.852+03	2021-05-19 20:37:28.861+03	
7a946d7b-8261-cde5-3aa9-69d74c098bfb	2021-05-19 20:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:37:48.852+03	2021-05-19 20:37:48.859+03	
b53bd6e4-c13a-ded4-7772-a86a8a8e3667	2021-05-19 20:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:38:08.853+03	2021-05-19 20:38:08.86+03	
7f7d8c46-6354-b59f-4d35-b58fb58cc9b7	2021-05-19 20:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:38:28.853+03	2021-05-19 20:38:28.86+03	
eddb7ccb-c198-d0ab-6337-52b00fb5283b	2021-05-19 20:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:38:48.853+03	2021-05-19 20:38:48.86+03	
d158285e-bc5f-dc66-a741-8e72df635502	2021-05-19 20:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:39:08.853+03	2021-05-19 20:39:08.862+03	
b85826f5-28ce-5300-41fa-c7d3f42a6d10	2021-05-19 20:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:39:28.853+03	2021-05-19 20:39:28.861+03	
4d574fc8-18be-1e0f-511e-84c9f1f58dd9	2021-05-19 20:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:39:49.852+03	2021-05-19 20:39:49.86+03	
735d8c88-f5a8-2e26-5696-0a6c064db798	2021-05-19 20:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 20:40:00.853+03	2021-05-19 20:40:00.858+03	ERROR
a8af940f-a4a4-6ec1-ae02-5f8491602dfa	2021-05-20 00:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:03:19.853+03	2021-05-20 00:03:19.867+03	
2f0620ba-848d-ea7a-7630-6f76ef1dbb9c	2021-05-19 20:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:42:12.853+03	2021-05-19 20:42:12.861+03	
a747a7bb-cf52-f787-fc31-baf5cd6b6e46	2021-05-19 21:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:21:02.853+03	2021-05-19 21:21:02.86+03	
f05a2e4b-f892-17b6-4e53-12160dc5e80f	2021-05-19 20:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:42:34.852+03	2021-05-19 20:42:34.86+03	
c5d6d007-a073-52e8-63ec-911bf9f336dd	2021-05-19 20:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:42:54.853+03	2021-05-19 20:42:54.869+03	
f7f9ca8c-06cd-5bed-ba67-7a164d653b4f	2021-05-19 21:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:21:22.853+03	2021-05-19 21:21:22.862+03	
6ae86cdb-7945-d725-1183-55fc950cbc6e	2021-05-19 20:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:43:14.853+03	2021-05-19 20:43:14.861+03	
14df7226-8b9c-5e91-0c0a-3b9cf9b7e46c	2021-05-19 20:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:43:35.852+03	2021-05-19 20:43:35.861+03	
b01e2b53-2a8f-f11f-d2fc-09b941867f30	2021-05-19 21:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:21:44.853+03	2021-05-19 21:21:44.86+03	
31435184-2548-8055-af4a-09e39bedf9e9	2021-05-19 20:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:43:55.853+03	2021-05-19 20:43:55.86+03	
060e59b6-0814-691d-3a21-d7c48e533409	2021-05-19 20:44:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:44:16.853+03	2021-05-19 20:44:16.86+03	
2c1700fd-3c16-4889-72f9-c98cb605c968	2021-05-19 21:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:22:04.853+03	2021-05-19 21:22:04.864+03	
2cca2916-b968-30c8-d1d7-3d59c6c03d99	2021-05-19 20:44:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:44:36.853+03	2021-05-19 20:44:36.859+03	
4a0da82c-98a3-fcfe-16df-ffe9b8228765	2021-05-19 20:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:44:57.852+03	2021-05-19 20:44:57.86+03	
47760adb-00e5-5803-4f55-713842b48b59	2021-05-19 21:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:22:24.853+03	2021-05-19 21:22:24.86+03	
79564316-5ada-5675-30dd-6d73d0450013	2021-05-19 20:45:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:45:17.853+03	2021-05-19 20:45:17.86+03	
7a993315-5675-2e7c-81f4-29d7e2ab05f6	2021-05-19 20:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:45:37.853+03	2021-05-19 20:45:37.86+03	
ed743efb-d300-7146-c9d1-76f82fa8bfff	2021-05-19 21:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:22:45.852+03	2021-05-19 21:22:45.876+03	
06d31cc1-cb2e-4f93-2857-fe156a0bacc5	2021-05-19 20:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:45:59.852+03	2021-05-19 20:45:59.859+03	
0bcf73f2-4624-d3f9-ee41-48bcaa71aee7	2021-05-19 20:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:46:19.853+03	2021-05-19 20:46:19.86+03	
7343f6ae-2ff4-1888-e11d-a14ed65b8b13	2021-05-19 21:23:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:23:06.852+03	2021-05-19 21:23:06.861+03	
e885941e-5eca-5fde-5b67-e9c3a9d5c3cf	2021-05-19 20:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:46:39.853+03	2021-05-19 20:46:39.862+03	
ed8a1b40-c614-cfc3-555d-6b822f6305ff	2021-05-19 20:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:47:00.853+03	2021-05-19 20:47:00.861+03	
9751ecf3-f99f-aa8a-a5f0-e5a30e0fcb1a	2021-05-19 21:23:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:23:26.854+03	2021-05-19 21:23:26.895+03	
63faa535-36c5-4537-97d7-8b63197afc59	2021-05-19 20:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:47:20.853+03	2021-05-19 20:47:20.859+03	
17fefe3e-9227-56ac-5fee-51d3e30f8be2	2021-05-19 20:47:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:47:41.854+03	2021-05-19 20:47:41.861+03	
8416eb66-5669-7342-9eb8-5536a3a83991	2021-05-19 21:23:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:23:47.853+03	2021-05-19 21:23:47.86+03	
ef4c40d0-fcbe-3ba0-d35f-935b23336e22	2021-05-19 20:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:48:02.853+03	2021-05-19 20:48:02.861+03	
5fcd7223-ad56-623c-7829-592810207e1a	2021-05-19 20:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:48:22.853+03	2021-05-19 20:48:22.871+03	
9ef564a9-8118-297b-9b3b-acad6cc33415	2021-05-19 21:24:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:24:07.853+03	2021-05-19 21:24:07.861+03	
dc4970f2-3952-11ba-e232-b65a7823dc97	2021-05-19 20:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:48:42.853+03	2021-05-19 20:48:42.859+03	
78dda44f-e003-0119-008c-d6323e479b24	2021-05-19 20:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:49:03.852+03	2021-05-19 20:49:03.86+03	
fcc084b8-0135-9938-8ea1-98283ddf9326	2021-05-19 21:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:24:27.853+03	2021-05-19 21:24:27.86+03	
a8b011c2-a1c1-92ad-04fa-09b87f61cbaa	2021-05-19 20:49:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:49:23.853+03	2021-05-19 20:49:23.862+03	
052f00eb-ef9c-6868-e4f1-1b099afbbfd2	2021-05-19 20:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:49:43.853+03	2021-05-19 20:49:43.865+03	
f62e8e71-5bf1-0572-698d-4cb945d943f6	2021-05-19 21:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:24:47.853+03	2021-05-19 21:24:47.86+03	
96ab11cc-f0b4-b7b8-78d7-e8ea84e67214	2021-05-19 20:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:49:53.853+03	2021-05-19 20:49:53.862+03	
5757ac2b-7b57-c698-9291-e55148ee2108	2021-05-19 20:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:50:03.853+03	2021-05-19 20:50:03.861+03	
e634c472-dd36-e0c5-9466-477351052c7d	2021-05-19 21:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:25:08.853+03	2021-05-19 21:25:08.86+03	
5f99aad8-70b6-3ee4-fd21-03085a551c4d	2021-05-19 20:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:50:24.852+03	2021-05-19 20:50:24.86+03	
14312693-5ae5-1f35-38e9-1a948f245192	2021-05-19 20:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:50:44.853+03	2021-05-19 20:50:44.86+03	
452407f9-2a33-1be0-dd57-2214743618d9	2021-05-19 21:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:25:28.853+03	2021-05-19 21:25:28.861+03	
850cc509-2810-bf7a-49bb-523421209a27	2021-05-19 20:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:51:04.853+03	2021-05-19 20:51:04.86+03	
46f20033-817f-e5b9-9f22-9d55b2183edf	2021-05-19 20:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:51:24.853+03	2021-05-19 20:51:24.861+03	
2916e0b3-ebe7-30cb-db68-e32a61dcb9b8	2021-05-19 21:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:25:48.853+03	2021-05-19 21:25:48.864+03	
62ab7463-1a9b-694d-1517-c7c5c95a88b5	2021-05-19 20:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:51:44.853+03	2021-05-19 20:51:44.86+03	
da5c714f-20ca-56e4-b7e9-f5d28a94f55f	2021-05-19 20:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:52:05.853+03	2021-05-19 20:52:05.86+03	
744a7610-66cd-0f9b-d66d-28d40d5bb264	2021-05-19 21:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:26:08.853+03	2021-05-19 21:26:08.86+03	
6bc710d3-0dcd-2203-419a-9da3717b3a8a	2021-05-19 20:52:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:52:26.853+03	2021-05-19 20:52:26.86+03	
94128f67-d267-da75-2d03-b3b8caed7c39	2021-05-19 20:52:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:52:46.853+03	2021-05-19 20:52:46.867+03	
702806e1-8660-b58b-21bd-cabbfdd25ed6	2021-05-19 21:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:26:28.853+03	2021-05-19 21:26:28.869+03	
d9d1fc3a-2953-7fa0-9916-30c79b7c0bce	2021-05-19 20:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:53:07.853+03	2021-05-19 20:53:07.861+03	
f0f09d2c-5995-4055-8104-1d23707ebae8	2021-05-19 20:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:53:27.853+03	2021-05-19 20:53:27.862+03	
f30502b9-8ccf-b98c-28fe-dd5d73b1dcd9	2021-05-19 21:26:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:26:48.853+03	2021-05-19 21:26:48.861+03	
b2a588ff-a2f7-7442-f239-114116e951c3	2021-05-19 20:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:53:48.853+03	2021-05-19 20:53:48.859+03	
113bbc3b-dbce-d71c-a205-5fcb11bb82de	2021-05-19 20:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:54:08.853+03	2021-05-19 20:54:08.862+03	
f1f5a832-ba22-d504-e5ba-d0237b537fd6	2021-05-19 21:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:27:08.853+03	2021-05-19 21:27:08.861+03	
64fe99fc-23bf-f53f-a446-fa41dcb25eca	2021-05-19 20:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:54:28.853+03	2021-05-19 20:54:28.86+03	
7a0608d3-62ae-4b00-552c-95f1e154f7c6	2021-05-19 20:54:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:54:49.853+03	2021-05-19 20:54:49.86+03	
204853cd-f0e9-76bd-35dc-cf79446019a1	2021-05-19 21:27:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:27:28.853+03	2021-05-19 21:27:28.863+03	
225666c6-a7b4-2c89-68ae-c2ad61918c43	2021-05-19 20:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:55:10.852+03	2021-05-19 20:55:10.859+03	
ad23f791-41c7-3a93-b5e7-80a619261f46	2021-05-19 20:55:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:55:31.855+03	2021-05-19 20:55:31.863+03	
5cdc2f0d-4add-d6f3-4af8-45ce539f284d	2021-05-19 21:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:27:48.853+03	2021-05-19 21:27:48.862+03	
c864da12-3c1e-0108-6e3c-35a1ac0d44f4	2021-05-19 21:28:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:28:08.853+03	2021-05-19 21:28:08.866+03	
8faeb4fb-d22f-1d22-5d1c-9c893b1c517e	2021-05-19 21:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:28:28.853+03	2021-05-19 21:28:28.86+03	
164f9769-3a36-74a2-c412-87f8b6495d10	2021-05-19 20:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:42:23.853+03	2021-05-19 20:42:23.866+03	
69607d20-3fd6-3fb5-cdee-13faf4e852e7	2021-05-19 20:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:42:44.853+03	2021-05-19 20:42:44.86+03	
65b8515a-a348-4d46-0f30-070c77a544b6	2021-05-19 20:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:43:04.853+03	2021-05-19 20:43:04.862+03	
014779fe-c4a7-8f86-c201-c6ec945c4d0e	2021-05-19 20:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:43:24.853+03	2021-05-19 20:43:24.86+03	
4a6315b3-0c80-db00-dfa5-0c4cf08e5234	2021-05-19 20:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:43:45.853+03	2021-05-19 20:43:45.86+03	
575f8482-f350-b569-7664-da9f8041c023	2021-05-19 20:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:44:05.853+03	2021-05-19 20:44:05.859+03	
5e733fd0-f234-e33c-0a85-d37a553dfde8	2021-05-19 20:44:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:44:26.853+03	2021-05-19 20:44:26.86+03	
8a5ab69f-4318-a748-1379-b2debbfe9e78	2021-05-19 20:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:44:47.852+03	2021-05-19 20:44:47.868+03	
a859fa95-0c31-f0d8-d756-434fa66fa6f5	2021-05-19 20:45:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:45:07.853+03	2021-05-19 20:45:07.861+03	
30a53523-2d93-1822-e64b-fe902c42b799	2021-05-19 20:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:45:27.853+03	2021-05-19 20:45:27.861+03	
5b8856fc-efff-eb50-32e0-833544e7e534	2021-05-19 20:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:45:48.853+03	2021-05-19 20:45:48.859+03	
1e364cd5-8a70-075f-5b7b-1bfa286d9f03	2021-05-19 20:46:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:46:09.853+03	2021-05-19 20:46:09.872+03	
6a20bb38-642f-7fbe-6bd1-10ca2fdd9963	2021-05-19 20:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:46:29.853+03	2021-05-19 20:46:29.859+03	
b4f60f27-bfaa-b0c0-be1c-7eb95e361805	2021-05-19 20:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:46:50.853+03	2021-05-19 20:46:50.861+03	
7efdd385-6eb2-250e-4fec-5a1a02d097e9	2021-05-19 20:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:47:10.853+03	2021-05-19 20:47:10.86+03	
1f951f8f-38ea-a7cd-8f84-531977fd72ac	2021-05-19 20:47:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:47:31.852+03	2021-05-19 20:47:31.86+03	
95e7361b-c8e1-e480-5eca-51c596571a53	2021-05-19 20:47:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:47:51.854+03	2021-05-19 20:47:51.861+03	
a71ce7e6-aa01-843d-94b2-6f8d00d3f404	2021-05-19 20:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:48:12.853+03	2021-05-19 20:48:12.861+03	
33b548cf-9d1e-f04d-e9f7-9dc51854ad32	2021-05-19 20:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:48:32.853+03	2021-05-19 20:48:32.861+03	
bae03898-db10-d0e4-ebda-7df710112cf2	2021-05-19 20:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:48:52.853+03	2021-05-19 20:48:52.86+03	
ebe86724-a7a3-40a2-a547-0888c90379db	2021-05-19 20:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:49:13.853+03	2021-05-19 20:49:13.861+03	
dd64d2c9-d229-a472-8615-ebd3848a42fd	2021-05-19 20:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:49:33.853+03	2021-05-19 20:49:33.861+03	
42971272-33cf-5b2a-6b7f-ed0b685fdf00	2021-05-19 20:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 20:50:00.852+03	2021-05-19 20:50:00.877+03	ERROR
61185f27-7cbd-4185-8a17-bbc25952f36d	2021-05-19 20:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:50:13.853+03	2021-05-19 20:50:13.861+03	
117d9f59-99ff-ed19-37a0-526892c41ab9	2021-05-19 20:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:50:34.852+03	2021-05-19 20:50:34.859+03	
3fc9a747-d863-7fb0-cd6c-e356527e9523	2021-05-19 20:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:50:54.853+03	2021-05-19 20:50:54.86+03	
1abddd69-e062-583f-3f8f-43880349e7f6	2021-05-19 20:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:51:14.853+03	2021-05-19 20:51:14.876+03	
c64e338e-4b9e-725b-ca11-bcb4ad122253	2021-05-19 20:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:51:34.853+03	2021-05-19 20:51:34.861+03	
41a5def7-fff4-69a4-c49c-5e37217ab50e	2021-05-19 20:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:51:54.853+03	2021-05-19 20:51:54.864+03	
ba3accf0-7075-2951-c4cf-3e5a2833a086	2021-05-19 20:52:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:52:16.853+03	2021-05-19 20:52:16.86+03	
4dca68d4-0984-2509-94e8-7558e19cf7be	2021-05-19 20:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:52:36.853+03	2021-05-19 20:52:36.861+03	
4dcdb1c7-6fdc-7b1e-9aac-92978b985690	2021-05-19 20:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:52:57.853+03	2021-05-19 20:52:57.859+03	
2cbd4948-99df-45a5-d660-8681ce3a627f	2021-05-19 20:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:53:17.853+03	2021-05-19 20:53:17.865+03	
5c06c6e4-9807-a836-8734-68e50efc3dc1	2021-05-19 20:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:53:37.853+03	2021-05-19 20:53:37.872+03	
f2425528-7b78-4ab6-35d3-8049764b23c7	2021-05-19 20:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:53:58.853+03	2021-05-19 20:53:58.861+03	
37470dbe-5e8f-272c-2ac5-b443843eb6c6	2021-05-19 20:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:54:18.853+03	2021-05-19 20:54:18.861+03	
89446da9-c1b7-ec1f-991f-beb8bddc6223	2021-05-19 20:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:54:38.853+03	2021-05-19 20:54:38.872+03	
7e0cf5e3-55f4-861c-5831-c45742ebcf5e	2021-05-19 20:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:54:59.853+03	2021-05-19 20:54:59.859+03	
a64f70d1-811d-49f5-ea7e-7d5c7b9407e2	2021-05-19 20:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:55:20.853+03	2021-05-19 20:55:20.859+03	
95383233-e66c-802f-7786-35051aaa5b0e	2021-05-19 20:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:55:42.852+03	2021-05-19 20:55:42.86+03	
68f1ef77-1f70-c227-ef4a-b47b71b5c6d6	2021-05-19 20:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:55:52.853+03	2021-05-19 20:55:52.869+03	
69113854-05f0-51f1-3ec2-6f5346fe2d34	2021-05-19 20:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:56:02.853+03	2021-05-19 20:56:02.861+03	
330d927e-3296-da41-da00-4307b55c4faf	2021-05-19 20:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:56:12.853+03	2021-05-19 20:56:12.864+03	
bfda15d7-02e1-c349-947f-305f2178a7cc	2021-05-19 20:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:56:23.852+03	2021-05-19 20:56:23.86+03	
1b717f2d-91f7-07ad-93e8-1dc0a33d4650	2021-05-19 20:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:56:33.852+03	2021-05-19 20:56:33.859+03	
5b05ca1f-38b8-b3ee-ca76-e3e3cbba1c0c	2021-05-19 20:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:56:43.852+03	2021-05-19 20:56:43.866+03	
3fe7d874-4a82-b7f0-5c39-cf76e947f22d	2021-05-19 20:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:56:53.852+03	2021-05-19 20:56:53.859+03	
ac1f0f7d-8c7c-b1ce-a585-25ee1b4fa9e8	2021-05-19 20:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:57:03.853+03	2021-05-19 20:57:03.86+03	
f2972e98-30fb-8687-fc6c-32eb425c4212	2021-05-19 20:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:57:13.853+03	2021-05-19 20:57:13.86+03	
63cbacbc-e0e7-f508-37da-25df8c36d397	2021-05-19 20:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:57:23.853+03	2021-05-19 20:57:23.861+03	
02b148a2-bc74-e09c-f1b4-929e8f5a9d3a	2021-05-19 20:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:57:33.853+03	2021-05-19 20:57:33.86+03	
6c901bc9-12b7-55e6-9600-407438c4be5b	2021-05-19 20:57:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:57:43.853+03	2021-05-19 20:57:43.863+03	
cb56eb74-6406-21c5-ee55-946edcd4b8bf	2021-05-19 20:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:57:53.853+03	2021-05-19 20:57:53.865+03	
3446cf4d-13c8-bd9d-33ab-d471534012ec	2021-05-19 20:58:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:58:03.853+03	2021-05-19 20:58:03.864+03	
64d2f4fd-e26f-224a-e7e4-dc1c29eccc1f	2021-05-19 20:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:58:13.853+03	2021-05-19 20:58:13.859+03	
e6230d04-22c5-8a4d-2c9e-a4e8521a426a	2021-05-19 20:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:58:23.853+03	2021-05-19 20:58:23.859+03	
e6a07e54-9085-d414-36b9-d9dc07261bf0	2021-05-19 20:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:58:33.853+03	2021-05-19 20:58:33.86+03	
82623e27-17db-2371-e8fa-289f0096aefe	2021-05-19 20:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:58:44.852+03	2021-05-19 20:58:44.861+03	
9a4cd6c6-0573-f3de-e43d-c43bdc33d1b8	2021-05-19 20:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:58:54.853+03	2021-05-19 20:58:54.86+03	
9c442de3-0e1c-435a-362f-82a7b8c47677	2021-05-19 20:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:59:04.853+03	2021-05-19 20:59:04.861+03	
578933b0-1d18-fc03-2366-dbcc7676c844	2021-05-19 20:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:59:14.853+03	2021-05-19 20:59:14.861+03	
2161b620-b90f-8ae1-b5e3-ddb0d06b9bed	2021-05-19 20:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:59:25.852+03	2021-05-19 20:59:25.86+03	
b62b1b53-206c-44fa-6ee6-012c406bafae	2021-05-19 20:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:59:35.853+03	2021-05-19 20:59:35.86+03	
3190fa68-c7a2-8ae4-1294-f445bd86ce28	2021-05-19 20:59:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:59:46.853+03	2021-05-19 20:59:46.872+03	
68bc8605-f40d-f9b9-1e9e-d12885c7fcb4	2021-05-19 21:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:21:12.853+03	2021-05-19 21:21:12.861+03	
5cc2e8e8-705e-d5b1-3c0d-219946dba9a8	2021-05-19 21:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:21:33.853+03	2021-05-19 21:21:33.86+03	
abe0bd3e-e364-f49a-3942-520f1d31b2a9	2021-05-19 21:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:21:54.853+03	2021-05-19 21:21:54.861+03	
f93f9b5b-e756-c4c0-6726-d8db203676d5	2021-05-19 21:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:22:14.853+03	2021-05-19 21:22:14.86+03	
2b79d914-c96d-3d78-86c9-9fa7ce45736f	2021-05-19 21:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:22:34.853+03	2021-05-19 21:22:34.873+03	
4e747035-a3b6-eb7a-b009-fccc56cb640c	2021-05-19 21:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:22:55.853+03	2021-05-19 21:22:55.862+03	
63979bb4-6a6e-3382-0654-e858b456c7d0	2021-05-19 21:23:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:23:16.852+03	2021-05-19 21:23:16.861+03	
e669babc-f582-c994-784b-25084bc8aa23	2021-05-19 21:23:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:23:36.855+03	2021-05-19 21:23:36.863+03	
05cd9067-c63d-071d-a015-c8ae2b16b81b	2021-05-19 21:23:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:23:57.853+03	2021-05-19 21:23:57.863+03	
98ba7f8d-73a5-43f6-3ab8-3c973f509f1c	2021-05-19 21:24:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:24:17.853+03	2021-05-19 21:24:17.864+03	
4aacdc97-4d3b-43d1-84cb-5ee1dc6963af	2021-05-19 21:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:24:37.853+03	2021-05-19 21:24:37.86+03	
6f52f4f7-3b8e-b083-8c25-51a1d4d62919	2021-05-19 21:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:24:58.853+03	2021-05-19 21:24:58.862+03	
12c46e01-a73c-7ee3-6acd-6fafe2513a61	2021-05-19 21:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:25:18.853+03	2021-05-19 21:25:18.861+03	
15e35300-191c-ca65-579f-2f8d47c2d170	2021-05-19 21:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:25:38.853+03	2021-05-19 21:25:38.862+03	
ae3edc43-25e6-8f03-6563-8992ab407944	2021-05-19 21:25:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:25:58.853+03	2021-05-19 21:25:58.861+03	
13589d2e-93ae-4623-54a8-e12b27d62ed0	2021-05-19 21:26:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:26:18.853+03	2021-05-19 21:26:18.86+03	
8027434a-423d-b930-4c14-28bfd2e4c0f7	2021-05-19 21:26:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:26:38.853+03	2021-05-19 21:26:38.86+03	
94f7b3f7-008c-6099-ac41-743ee364d25a	2021-05-19 21:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:26:58.853+03	2021-05-19 21:26:58.862+03	
b923c81e-dde3-05f5-62b3-7ab343c5a681	2021-05-19 21:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:27:18.853+03	2021-05-19 21:27:18.864+03	
e8796fb8-b1e1-cb12-a207-9d872a6b0107	2021-05-19 21:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:27:38.853+03	2021-05-19 21:27:38.861+03	
d3bff426-d180-e302-0792-e25be3189c6b	2021-05-19 21:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:27:58.853+03	2021-05-19 21:27:58.864+03	
29ba08ba-7e99-a43f-a76d-c71aa75f786a	2021-05-19 21:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:28:18.853+03	2021-05-19 21:28:18.886+03	
54e66c8f-98ae-569b-88df-e89b0f53c5e2	2021-05-19 21:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:28:38.853+03	2021-05-19 21:28:38.861+03	
282bc8f0-353c-3512-c51a-b60d475f5bbe	2021-05-19 21:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:45:39.853+03	2021-05-19 21:45:39.859+03	
857a4ea1-dd3d-9c3d-a69e-e40d22ff0664	2021-05-19 21:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:46:00.852+03	2021-05-19 21:46:00.86+03	
c561add6-6042-e2f9-f8c2-d8a02de848c4	2021-05-19 21:46:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:46:20.853+03	2021-05-19 21:46:20.859+03	
5e0efe9e-5836-7726-64f4-4699b1f882c5	2021-05-19 21:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:46:50.853+03	2021-05-19 21:46:50.863+03	
e1d4c7cf-038f-6717-74a0-acd2066cf339	2021-05-19 21:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:47:10.853+03	2021-05-19 21:47:10.898+03	
127e7bc2-2d69-cc40-ff68-18fe8b5d5a17	2021-05-19 21:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:47:30.853+03	2021-05-19 21:47:30.86+03	
3a2a3d93-0f11-5836-cbbc-f90aa9144d48	2021-05-19 21:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:47:50.853+03	2021-05-19 21:47:50.86+03	
3ef0212a-3729-f027-78b6-8529d728bf63	2021-05-19 21:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:48:12.853+03	2021-05-19 21:48:12.86+03	
5b6c1432-4d6e-7f94-5491-606150b3d8c9	2021-05-19 21:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:48:32.853+03	2021-05-19 21:48:32.862+03	
0d2fbed5-447e-b288-6a0b-b0da7fccf9ca	2021-05-19 21:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:48:53.853+03	2021-05-19 21:48:53.859+03	
f109ff35-d937-eaf2-58f2-2e147dc50b19	2021-05-19 21:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:49:15.852+03	2021-05-19 21:49:15.861+03	
ddb7f5f8-cfd4-201d-e9ab-cc644abae486	2021-05-19 21:49:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:49:36.854+03	2021-05-19 21:49:36.871+03	
9d1af09b-6272-47fb-6e60-61ba053adabd	2021-05-19 21:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:49:57.853+03	2021-05-19 21:49:57.86+03	
6ce5f6bf-d311-cbca-ba20-5cf5ec04583e	2021-05-19 21:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:50:08.852+03	2021-05-19 21:50:08.859+03	
0c93b599-e9d4-e9e3-f931-082ff2db6ea7	2021-05-19 21:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:50:28.852+03	2021-05-19 21:50:28.86+03	
6e390237-8f35-1f6d-98c3-6ad9255b09ab	2021-05-19 21:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:50:48.853+03	2021-05-19 21:50:48.863+03	
63f2c3f1-d1be-7f90-1220-7b3197c778cc	2021-05-19 21:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:51:08.853+03	2021-05-19 21:51:08.86+03	
7c8b5901-61f7-182b-60c2-6ff33ea8fe28	2021-05-19 21:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:51:29.852+03	2021-05-19 21:51:29.858+03	
19c81a25-62c8-ddfb-dedd-20222c5e3dc7	2021-05-19 21:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:51:50.853+03	2021-05-19 21:51:50.86+03	
2dc774ba-55d7-578e-3e07-8aa631c2b865	2021-05-19 21:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:52:10.853+03	2021-05-19 21:52:10.86+03	
83d32ca1-3f90-1e7a-f565-9e92e0380001	2021-05-19 21:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:52:32.853+03	2021-05-19 21:52:32.862+03	
66f204c4-60c9-2981-f252-82f8e09625d5	2021-05-19 21:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:52:53.852+03	2021-05-19 21:52:53.86+03	
88d370d2-ffdc-1dd8-3d33-80c4ae14b933	2021-05-19 21:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:53:13.853+03	2021-05-19 21:53:13.866+03	
1b2e2e03-b40f-3f3e-c705-2915bbcba04f	2021-05-19 21:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:53:34.852+03	2021-05-19 21:53:34.859+03	
1bb1dd8e-ac07-6d4c-4c68-fe3e11b28991	2021-05-19 21:53:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:53:55.852+03	2021-05-19 21:53:55.86+03	
60a42ef5-1809-da0e-9724-0c4c0069cc5b	2021-05-19 21:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:54:15.853+03	2021-05-19 21:54:15.86+03	
cdb6185a-0de5-2053-2cb5-b740fe2e4b7f	2021-05-19 21:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:54:35.853+03	2021-05-19 21:54:35.86+03	
93504f72-3ff4-26e1-2352-617d9bcaf400	2021-05-19 21:54:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:54:46.854+03	2021-05-19 21:54:46.861+03	
5c2ef9df-e72d-2bce-8452-35e409a5fdfe	2021-05-19 21:54:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:54:56.854+03	2021-05-19 21:54:56.862+03	
4052c85e-3bbf-db48-a9bb-3e45ffae1800	2021-05-19 21:55:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:55:06.854+03	2021-05-19 21:55:06.861+03	
f4605ca8-b294-01bc-e97b-9614bd3c25c4	2021-05-19 21:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:55:17.853+03	2021-05-19 21:55:17.86+03	
12fb2cfd-530e-099c-2fc5-bf4e7d651a90	2021-05-19 21:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:55:28.852+03	2021-05-19 21:55:28.86+03	
6e5389ff-1516-bf90-6f1d-895fd980a3d5	2021-05-19 21:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:55:38.853+03	2021-05-19 21:55:38.86+03	
d46bb6dd-0156-fbfb-ad93-d5f5cc1a4b9a	2021-05-19 21:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:55:48.853+03	2021-05-19 21:55:48.861+03	
7d6785bd-55cb-27f5-e872-405734bca280	2021-05-19 21:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:55:58.853+03	2021-05-19 21:55:58.859+03	
78502e8f-99d5-47e9-ac85-83c96c431f22	2021-05-19 21:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:56:08.853+03	2021-05-19 21:56:08.86+03	
a59c35fc-328c-c7fd-5a05-5e7261d0be4b	2021-05-19 21:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:56:19.853+03	2021-05-19 21:56:19.86+03	
70550fba-155e-8e69-2fdf-897be3979b1a	2021-05-19 21:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:56:29.853+03	2021-05-19 21:56:29.86+03	
b8d7291c-6a06-427f-64c7-0d93902e52c8	2021-05-19 21:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:56:39.853+03	2021-05-19 21:56:39.861+03	
6807e884-dc2a-8ed3-c085-9aedee59e2b0	2021-05-19 20:59:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 20:59:56.853+03	2021-05-19 20:59:56.86+03	
9da2d1f1-4410-6e72-45fe-5205630b6003	2021-05-19 21:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:28:49.852+03	2021-05-19 21:28:49.871+03	
a7ca0967-0108-becb-8044-001d047d9660	2021-05-19 21:00:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:00:06.854+03	2021-05-19 21:00:06.862+03	
a1341b97-9f0c-cd4a-62f1-6a8853d6737c	2021-05-19 21:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:00:27.853+03	2021-05-19 21:00:27.861+03	
c85478af-c854-c24f-462e-1d35f96d8391	2021-05-19 21:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:29:09.853+03	2021-05-19 21:29:09.86+03	
abcf7270-69ea-a026-82d2-5b2d19f942e8	2021-05-19 21:00:47.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:00:47.855+03	2021-05-19 21:00:47.878+03	
19cf03ce-9ba7-0cc3-0b7b-b55aedcebe4b	2021-05-19 21:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:01:08.852+03	2021-05-19 21:01:08.86+03	
258c8009-3205-16a3-d7c0-a7398044a5f3	2021-05-19 21:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:29:29.853+03	2021-05-19 21:29:29.861+03	
6d24e78d-fb4b-fa4f-9568-41c9191cfcfa	2021-05-19 21:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:01:28.852+03	2021-05-19 21:01:28.859+03	
00b8ebcf-6bb8-1d13-009f-32b9917d891a	2021-05-19 21:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:01:48.853+03	2021-05-19 21:01:48.86+03	
cba863f2-f61f-c617-d6d9-8cf24a0a3059	2021-05-19 21:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:29:49.853+03	2021-05-19 21:29:49.861+03	
84a925ad-2e2d-1b75-8b48-2489deec0be5	2021-05-19 21:02:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:02:08.853+03	2021-05-19 21:02:08.861+03	
36ae8963-b968-b133-9e1f-b807e75cd4e9	2021-05-19 21:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:02:28.853+03	2021-05-19 21:02:28.862+03	
93ec5d1a-afb2-d036-81e9-1b2901e098e1	2021-05-19 21:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 21:30:00.853+03	2021-05-19 21:30:00.86+03	ERROR
34e1f2da-6604-fe21-1992-900e87246f37	2021-05-19 21:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:02:48.853+03	2021-05-19 21:02:48.86+03	
21fa11c5-125c-bf45-db79-7d30c95f6751	2021-05-19 21:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:03:08.853+03	2021-05-19 21:03:08.861+03	
0835fec6-283e-fddc-d1e2-35633fc19553	2021-05-19 21:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:30:19.853+03	2021-05-19 21:30:19.859+03	
696660d8-e268-cf8d-2f89-4fce165c6cab	2021-05-19 21:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:03:29.853+03	2021-05-19 21:03:29.86+03	
f39f211b-fd0c-8c30-aac3-df29bfcd3ebd	2021-05-19 21:03:49.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:03:49.854+03	2021-05-19 21:03:49.863+03	
bba03195-5275-76a7-a673-ba053349c2c1	2021-05-19 21:30:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:30:39.853+03	2021-05-19 21:30:39.861+03	
c984504a-151d-d1e0-6037-4e64d87333a3	2021-05-19 21:04:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:04:11.853+03	2021-05-19 21:04:11.861+03	
19880cdd-5705-0e07-1775-382b303bafee	2021-05-19 21:04:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:04:31.853+03	2021-05-19 21:04:31.865+03	
fba8dc6d-b20d-8bf6-e02e-e514b86fa199	2021-05-19 21:30:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:30:59.853+03	2021-05-19 21:30:59.863+03	
aa6ff5ab-371d-da90-e36d-1b6113700d39	2021-05-19 21:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:04:52.852+03	2021-05-19 21:04:52.864+03	
1b43c081-9a75-791b-ae37-ff554d55fd4d	2021-05-19 21:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:05:12.853+03	2021-05-19 21:05:12.86+03	
89dc816c-e224-0867-67c4-2d73c4386e36	2021-05-19 21:31:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:31:19.853+03	2021-05-19 21:31:19.86+03	
f3545221-306b-0cb2-db70-89b65f77e08d	2021-05-19 21:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:05:34.853+03	2021-05-19 21:05:34.859+03	
f946b7e4-262f-92ff-8eeb-aa213eb9dbf2	2021-05-19 21:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:05:55.853+03	2021-05-19 21:05:55.861+03	
b2fd52fc-1583-1357-d150-b2bcd884f816	2021-05-19 21:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:31:40.852+03	2021-05-19 21:31:40.86+03	
82b08ff3-743c-4d22-5b0f-ced853c2b813	2021-05-19 21:06:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:06:16.853+03	2021-05-19 21:06:16.862+03	
6af0c375-bb6f-3660-372c-d1fc119006e1	2021-05-19 21:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:06:37.853+03	2021-05-19 21:06:37.869+03	
8e277711-d530-59cf-008e-abafc084839a	2021-05-19 21:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:32:00.853+03	2021-05-19 21:32:00.86+03	
b1a050ba-c42e-d1af-1e6e-7fd3c0c5d5d7	2021-05-19 21:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:06:58.852+03	2021-05-19 21:06:58.859+03	
110c930d-946b-67c0-6c48-f47de8ec4250	2021-05-19 21:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:07:18.852+03	2021-05-19 21:07:18.86+03	
345c0719-bc83-63f8-7741-d1df2b2f2b96	2021-05-19 21:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:32:20.853+03	2021-05-19 21:32:20.861+03	
bbe8b971-6843-100b-08c4-411f8af978f2	2021-05-19 21:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:07:38.852+03	2021-05-19 21:07:38.859+03	
71fcbe04-0b3e-642a-1524-3aead192535a	2021-05-19 21:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:07:58.853+03	2021-05-19 21:07:58.866+03	
1e4ef7f5-2d64-1e3f-cb46-002c797b0ebe	2021-05-19 21:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:32:40.853+03	2021-05-19 21:32:40.86+03	
4242822d-4481-a881-9f91-51fb5eb3a6e7	2021-05-19 21:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:08:19.853+03	2021-05-19 21:08:19.861+03	
dc99126d-1e1f-2497-cc9e-0a25b3db5181	2021-05-19 21:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:08:39.853+03	2021-05-19 21:08:39.868+03	
960d4618-e836-2c6d-e5d8-414d427d9b96	2021-05-19 21:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:33:00.853+03	2021-05-19 21:33:00.863+03	
516cc58a-cf75-460f-16b0-73913fbe4c5a	2021-05-19 21:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:08:59.853+03	2021-05-19 21:08:59.859+03	
557e1239-b5c9-5891-a1c5-5bf357592c82	2021-05-19 21:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:09:20.852+03	2021-05-19 21:09:20.859+03	
cb3726e9-e544-a499-4236-8bd9211dacef	2021-05-19 21:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:33:20.853+03	2021-05-19 21:33:20.859+03	
0aa3e36a-bab7-d5e8-8538-d4ef59594266	2021-05-19 21:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:09:40.853+03	2021-05-19 21:09:40.86+03	
8005f2df-0931-16e7-a9ef-770189c5046f	2021-05-19 21:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:10:00.853+03	2021-05-19 21:10:00.862+03	
e7f8d889-51e1-809a-ae88-5c6706757ac5	2021-05-19 21:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:33:41.854+03	2021-05-19 21:33:41.865+03	
4eca52cb-4033-ea57-2c8f-dfea9873e4e9	2021-05-19 21:10:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:10:21.854+03	2021-05-19 21:10:21.867+03	
9e26a2bf-7d43-febc-96ab-9585426e7c0f	2021-05-19 21:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:10:42.853+03	2021-05-19 21:10:42.86+03	
96b8388c-f612-3277-e10f-aeae9c7b38c0	2021-05-19 21:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:34:02.853+03	2021-05-19 21:34:02.86+03	
33d04e53-2d0b-8122-0bfd-90324b3d1a59	2021-05-19 21:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:11:02.853+03	2021-05-19 21:11:02.89+03	
cad3a9ea-2cba-0208-461d-5b4675ffd4ee	2021-05-19 21:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:11:22.853+03	2021-05-19 21:11:22.871+03	
8f77e141-f505-11b0-1a67-213ea0904c3e	2021-05-19 21:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:34:22.853+03	2021-05-19 21:34:22.86+03	
95a9ff38-176d-c8b8-b61e-44f023b41606	2021-05-19 21:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:34:42.853+03	2021-05-19 21:34:42.86+03	
95945439-46dc-d68b-551e-ede35ef2f1d5	2021-05-19 21:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:35:03.852+03	2021-05-19 21:35:03.859+03	
2dfad2b6-9d11-375a-982a-81cfa291fe47	2021-05-19 21:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:35:23.853+03	2021-05-19 21:35:23.86+03	
9e22c69e-8600-e75d-e0fd-c0a9f1a6e387	2021-05-19 21:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:35:44.853+03	2021-05-19 21:35:44.859+03	
9dec8ed9-80ed-7ba8-4662-ee52f69abc60	2021-05-19 21:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:36:04.853+03	2021-05-19 21:36:04.861+03	
575c59a2-591c-732e-d35b-ce0604106c2c	2021-05-19 21:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:36:25.853+03	2021-05-19 21:36:25.86+03	
2cf89940-2fe9-d98a-7551-7c4a7d5a3048	2021-05-19 21:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:36:45.853+03	2021-05-19 21:36:45.859+03	
ce03b9d3-7f76-aef0-cd04-c46fd6574f34	2021-05-19 21:37:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:37:06.853+03	2021-05-19 21:37:06.862+03	
f5fe008f-2a06-1eb8-c56a-6a2fdc010d2b	2021-05-19 21:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:37:27.853+03	2021-05-19 21:37:27.862+03	
96c66fa2-dc69-c1d5-764c-a550d7fbe643	2021-05-19 21:37:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:37:48.853+03	2021-05-19 21:37:48.862+03	
495ea8d3-8825-17d9-763c-579d3a6bc9ca	2021-05-19 21:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:38:08.853+03	2021-05-19 21:38:08.864+03	
02a45d2d-8a08-501c-2257-0a369665de47	2021-05-19 21:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 21:00:00.852+03	2021-05-19 21:00:00.857+03	ERROR
3b6b3939-cb21-1e8b-2fcd-b2c7c273ecc9	2021-05-19 21:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:00:17.853+03	2021-05-19 21:00:17.866+03	
6246402e-515f-b6a5-abb8-36fac744aab6	2021-05-19 21:00:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:00:37.853+03	2021-05-19 21:00:37.872+03	
07c3f0bc-b442-c69e-151f-270358d111a1	2021-05-19 21:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:00:58.852+03	2021-05-19 21:00:58.858+03	
3e68fedc-b830-0a7c-63d7-f85034a1d694	2021-05-19 21:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:01:18.852+03	2021-05-19 21:01:18.86+03	
061c464d-dd43-9182-fa49-00ea207e9893	2021-05-19 21:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:01:38.853+03	2021-05-19 21:01:38.862+03	
0fcdf3a9-c9fe-611a-e4b9-feae56a40139	2021-05-19 21:01:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:01:58.853+03	2021-05-19 21:01:58.861+03	
4ca14fe2-48a4-4931-8bc9-e320c32ac4fe	2021-05-19 21:02:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:02:18.853+03	2021-05-19 21:02:18.859+03	
425c44b1-bed8-346c-2952-990ae4206fe7	2021-05-19 21:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:02:38.853+03	2021-05-19 21:02:38.859+03	
645f89b4-3a6e-efb4-5b80-ff6653b2e909	2021-05-19 21:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:02:58.853+03	2021-05-19 21:02:58.86+03	
13e17976-d7ee-3b9f-c024-d8da49106e6b	2021-05-19 21:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:03:19.852+03	2021-05-19 21:03:19.86+03	
967c9de9-656d-4d2d-b0a4-8f1548e744b7	2021-05-19 21:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:03:39.853+03	2021-05-19 21:03:39.86+03	
ad8f0a49-e1cf-5778-f04f-fd808576bf80	2021-05-19 21:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:04:00.853+03	2021-05-19 21:04:00.86+03	
74280dd7-6c15-9994-8ce4-b6af2e26bf44	2021-05-19 21:04:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:04:21.853+03	2021-05-19 21:04:21.863+03	
b04919b2-0643-f85d-54fb-3b86aceae3bb	2021-05-19 21:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:04:42.852+03	2021-05-19 21:04:42.859+03	
b5d830d7-e366-2270-4143-b20a39c96555	2021-05-19 21:05:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:05:02.853+03	2021-05-19 21:05:02.861+03	
1a172840-6936-2556-de20-86fb4ea6813d	2021-05-19 21:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:05:23.853+03	2021-05-19 21:05:23.86+03	
1b03063a-ea51-d47d-f3b0-43c05ae9abfe	2021-05-19 21:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:05:44.853+03	2021-05-19 21:05:44.861+03	
f1a30e45-dd94-921c-0989-9cdf055a824b	2021-05-19 21:06:05.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:06:05.855+03	2021-05-19 21:06:05.862+03	
cf3ee83d-5881-2cc8-5fc7-be129075fd12	2021-05-19 21:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:06:27.853+03	2021-05-19 21:06:27.861+03	
65a66118-a5fe-8ca0-a1e2-7ab96b42e2cd	2021-05-19 21:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:06:48.852+03	2021-05-19 21:06:48.861+03	
c6feeb0f-4625-adba-85b0-595c9af518ce	2021-05-19 21:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:07:08.852+03	2021-05-19 21:07:08.859+03	
8cf75557-0485-fcdb-4556-1c4726294b2e	2021-05-19 21:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:07:28.852+03	2021-05-19 21:07:28.871+03	
e2c1e8fa-6189-746f-bcd5-23b0c9b57c1c	2021-05-19 21:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:07:48.852+03	2021-05-19 21:07:48.86+03	
42227f2b-4c56-e02c-f0ee-98bb6a9b3ed4	2021-05-19 21:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:08:09.853+03	2021-05-19 21:08:09.862+03	
7dda12f2-889f-5989-1f10-8e701a12e759	2021-05-19 21:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:08:29.853+03	2021-05-19 21:08:29.86+03	
c5aeb477-c802-f0e6-0f22-0b1e5312ec95	2021-05-19 21:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:08:49.853+03	2021-05-19 21:08:49.86+03	
47ce86d8-51f9-bf92-b3f0-44e9c2a050a0	2021-05-19 21:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:09:09.853+03	2021-05-19 21:09:09.862+03	
6b114667-7a8f-7b23-3791-9cf0f5232d8c	2021-05-19 21:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:09:30.853+03	2021-05-19 21:09:30.86+03	
91535405-c4bf-1d82-95d9-a7384ef96ec5	2021-05-19 21:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:09:50.853+03	2021-05-19 21:09:50.86+03	
14b6c2e1-dbc5-eef9-1c3f-4c36ecfb3143	2021-05-19 21:10:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 21:10:00.853+03	2021-05-19 21:10:00.872+03	ERROR
1dfe80a5-ce0a-0765-e5a5-7d3ee8d45583	2021-05-19 21:10:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:10:11.853+03	2021-05-19 21:10:11.86+03	
2c80fead-ae31-43ec-0251-2796d439c172	2021-05-19 21:10:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:10:31.854+03	2021-05-19 21:10:31.862+03	
9d7b3be1-c5f3-1fe3-932b-a1db8ee82a4f	2021-05-19 21:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:10:52.853+03	2021-05-19 21:10:52.862+03	
d9cba5ac-b056-f3a7-fafa-cd01ee3ab0c2	2021-05-19 21:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:11:12.853+03	2021-05-19 21:11:12.862+03	
8b59190e-ff79-d259-974d-25d01d75f231	2021-05-19 21:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:11:32.853+03	2021-05-19 21:11:32.865+03	
d2fcdc59-65a9-db80-d8d9-3a004ccb252d	2021-05-19 21:11:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:11:43.852+03	2021-05-19 21:11:43.86+03	
3b4e5669-a0ba-9a6a-2de1-4c44c89e6e4d	2021-05-19 21:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:11:53.852+03	2021-05-19 21:11:53.861+03	
2dbe75da-f4ae-7b6c-8370-c82390f9fd6b	2021-05-19 21:12:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:12:03.852+03	2021-05-19 21:12:03.86+03	
33158c93-aa13-2597-e547-38f1e17cd761	2021-05-19 21:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:12:13.852+03	2021-05-19 21:12:13.861+03	
b36035c3-f2c9-fa55-6433-5f82ba5c6e56	2021-05-19 21:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:12:23.852+03	2021-05-19 21:12:23.862+03	
464f39e0-7234-944c-4a7c-3935278bbe42	2021-05-19 21:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:12:33.853+03	2021-05-19 21:12:33.861+03	
00e6f1d8-fba1-67af-7acf-57b1b1a3f38e	2021-05-19 21:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:12:44.852+03	2021-05-19 21:12:44.862+03	
0e6547bd-9f5c-68d4-85a6-03fa1f17430f	2021-05-19 21:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:12:54.853+03	2021-05-19 21:12:54.861+03	
d6a00215-8037-c0a0-64a2-8b1002a712ca	2021-05-19 21:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:13:04.853+03	2021-05-19 21:13:04.86+03	
c33e7054-695a-a248-1fa3-80fc825be33b	2021-05-19 21:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:13:15.852+03	2021-05-19 21:13:15.859+03	
69734cc8-b6e3-512d-dbc9-bdba7ddca423	2021-05-19 21:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:13:25.853+03	2021-05-19 21:13:25.86+03	
d223f027-5af0-c8d3-7809-6c84f666ed17	2021-05-19 21:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:13:35.853+03	2021-05-19 21:13:35.862+03	
24d3fd1d-5bfc-4c5f-0431-db85f4d14759	2021-05-19 21:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:13:45.853+03	2021-05-19 21:13:45.862+03	
10ae0b22-fe96-bb07-4404-98c516394a25	2021-05-19 21:13:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:13:55.853+03	2021-05-19 21:13:55.862+03	
81f23762-69cb-5bea-ce53-4335f40a202e	2021-05-19 21:14:05.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:14:05.855+03	2021-05-19 21:14:05.87+03	
1306c525-8b5a-b24e-ba5c-e104e9c679d0	2021-05-19 21:14:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:14:16.853+03	2021-05-19 21:14:16.867+03	
d9a3e777-0e72-9d7b-92d3-cd69d572281d	2021-05-19 21:14:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:14:26.853+03	2021-05-19 21:14:26.861+03	
7fdfc4a4-446c-08ae-3ff0-1a751d71a153	2021-05-19 21:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:14:37.852+03	2021-05-19 21:14:37.859+03	
0687ee40-2147-f74e-5331-1be6c36ed0d5	2021-05-19 21:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:14:47.853+03	2021-05-19 21:14:47.86+03	
39dcf4e2-8645-9332-3b46-2e95b2ec2a4d	2021-05-19 21:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:14:57.853+03	2021-05-19 21:14:57.86+03	
9eede6a0-71ec-62ee-f4d9-2abae4190ea3	2021-05-19 21:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:15:07.853+03	2021-05-19 21:15:07.86+03	
1462c83f-5368-f3e5-cdf9-f8d9c05827aa	2021-05-19 21:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:15:18.853+03	2021-05-19 21:15:18.86+03	
7e254621-9d56-f885-36a7-73525e2e5466	2021-05-19 21:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:15:28.853+03	2021-05-19 21:15:28.859+03	
4038a2a7-d04c-2f44-f39c-4a6f0c4003ad	2021-05-19 21:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:15:38.853+03	2021-05-19 21:15:38.877+03	
ee9d5cbe-b4d9-9e68-20f8-75156f9ef15f	2021-05-19 21:15:48.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:15:48.856+03	2021-05-19 21:15:48.863+03	
c33e8c12-b7b0-b884-7344-ec8919f476dd	2021-05-19 21:15:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:15:59.853+03	2021-05-19 21:15:59.863+03	
09ef3f5f-3ce3-e3e0-5233-c6cc9435d149	2021-05-19 21:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:16:09.853+03	2021-05-19 21:16:09.862+03	
e96fa032-e120-fec0-2972-ddfe196d1215	2021-05-19 22:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:32:54.852+03	2021-05-19 22:32:54.86+03	
20f18fd8-1727-9857-eb65-2e1e1f9aaf64	2021-05-19 21:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:16:19.853+03	2021-05-19 21:16:19.86+03	
670ff55a-aeb1-867d-4716-c66c2fe23b03	2021-05-19 21:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:28:59.853+03	2021-05-19 21:28:59.86+03	
8b6e05b5-9647-99a7-f015-06a65116f523	2021-05-19 21:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:16:39.853+03	2021-05-19 21:16:39.86+03	
8d1f1bfa-7838-ba07-97a9-e8343cefcbeb	2021-05-19 21:16:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:16:59.853+03	2021-05-19 21:16:59.872+03	
a37596c0-e2da-5ed5-4629-c7565821f1cb	2021-05-19 21:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:29:19.853+03	2021-05-19 21:29:19.86+03	
aac10eed-eef2-03f7-b96e-138888267f59	2021-05-19 21:17:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:17:19.853+03	2021-05-19 21:17:19.871+03	
c8983d76-d1b0-3f41-2d0f-3867441151b0	2021-05-19 21:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:17:39.853+03	2021-05-19 21:17:39.873+03	
d54ad58f-f543-5a46-4a5d-2377f2b6d03a	2021-05-19 21:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:29:39.853+03	2021-05-19 21:29:39.863+03	
f86fb684-714b-d56d-65cf-6557c232071f	2021-05-19 21:17:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:17:59.853+03	2021-05-19 21:17:59.862+03	
daa49302-76b8-c758-406c-1810bd816c8f	2021-05-19 21:18:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:18:19.853+03	2021-05-19 21:18:19.873+03	
d677a435-be87-748a-370f-de31ea84d88a	2021-05-19 21:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:29:59.853+03	2021-05-19 21:29:59.86+03	
1d819fed-58e3-7633-9b51-225ee9371117	2021-05-19 21:18:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:18:39.853+03	2021-05-19 21:18:39.86+03	
7955893f-d28f-bc81-da40-d61972adb003	2021-05-19 21:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:18:59.853+03	2021-05-19 21:18:59.864+03	
e88cb8a4-f730-f789-fea7-d840eb267808	2021-05-19 21:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:30:09.853+03	2021-05-19 21:30:09.86+03	
dc448c5c-71ed-4774-2a87-03cc7e366ffa	2021-05-19 21:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:19:19.853+03	2021-05-19 21:19:19.868+03	
d0d72078-6d16-e50e-5371-2dc37488ef88	2021-05-19 21:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:19:40.853+03	2021-05-19 21:19:40.861+03	
669d3ac8-1a7e-4079-ae81-d2dab4b58ec0	2021-05-19 21:30:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:30:29.853+03	2021-05-19 21:30:29.86+03	
f124dc37-7f38-3997-9eb7-7dbb1b6a4ad0	2021-05-19 21:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:20:00.853+03	2021-05-19 21:20:00.862+03	
ac782ab2-c080-54dd-16a1-f0db1e83ee72	2021-05-19 21:20:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:20:21.853+03	2021-05-19 21:20:21.86+03	
bd01d352-a6c9-db26-f829-2fb71763b1e5	2021-05-19 21:30:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:30:49.853+03	2021-05-19 21:30:49.86+03	
dd385939-4deb-4a95-6580-6fc88f26682f	2021-05-19 21:31:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:31:09.853+03	2021-05-19 21:31:09.86+03	
2128841b-6b47-da81-e1d8-3e980fbabdfa	2021-05-19 21:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:31:29.853+03	2021-05-19 21:31:29.862+03	
9cb94f53-128c-e15f-d833-428f1d31ea18	2021-05-19 21:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:31:50.853+03	2021-05-19 21:31:50.86+03	
b8c51757-9fab-efe0-20fd-94be77195151	2021-05-19 21:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:32:10.853+03	2021-05-19 21:32:10.86+03	
cc8ca507-8eb9-6fba-c88d-550a4367efe1	2021-05-19 21:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:32:30.853+03	2021-05-19 21:32:30.862+03	
20ab3d23-7d81-5877-0306-3d6f349c76a1	2021-05-19 21:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:32:50.853+03	2021-05-19 21:32:50.861+03	
8e5bc358-cacd-a0a2-9506-d9f34b899063	2021-05-19 21:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:33:10.853+03	2021-05-19 21:33:10.867+03	
0f9cd053-6c34-8a6d-245f-50121e976845	2021-05-19 21:33:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:33:31.852+03	2021-05-19 21:33:31.862+03	
35cc80eb-3898-1ffa-9752-ae5250af1f2d	2021-05-19 21:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:33:52.852+03	2021-05-19 21:33:52.869+03	
282c1ec2-86e8-5c5f-0d70-9b52fdecedf6	2021-05-19 21:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:34:12.853+03	2021-05-19 21:34:12.859+03	
0059cdc4-02f8-51ca-1622-8e2db1305c23	2021-05-19 21:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:34:32.853+03	2021-05-19 21:34:32.86+03	
b8a9a998-451a-7bd9-113f-0c4ed7600d69	2021-05-19 21:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:34:53.852+03	2021-05-19 21:34:53.86+03	
ab5f0adf-6b37-8fe1-5f10-c43db1b1cadd	2021-05-19 21:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:35:13.852+03	2021-05-19 21:35:13.86+03	
345e0e63-7f86-c9b5-e755-8f315abddebf	2021-05-19 21:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:35:34.853+03	2021-05-19 21:35:34.859+03	
883190fe-8457-9394-03bc-a6b2254732e5	2021-05-19 21:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:35:54.853+03	2021-05-19 21:35:54.86+03	
caa3abe6-68bc-0699-88d2-d4a92bfc5038	2021-05-19 21:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:36:15.853+03	2021-05-19 21:36:15.86+03	
04226dba-1ba9-0818-4fa8-120a2b4fb7c3	2021-05-19 21:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:36:35.853+03	2021-05-19 21:36:35.86+03	
bad8610f-bc34-18cf-8678-4ede40b86b04	2021-05-19 21:36:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:36:56.852+03	2021-05-19 21:36:56.859+03	
bea4e68f-cf05-63eb-9864-0eefcfd45ac2	2021-05-19 21:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:37:17.853+03	2021-05-19 21:37:17.859+03	
a342c077-5b3c-a2da-379b-f91280fce7c2	2021-05-19 21:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:37:38.852+03	2021-05-19 21:37:38.861+03	
9023ac6a-58f7-2746-7d92-b3c7185bc560	2021-05-19 21:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:37:58.853+03	2021-05-19 21:37:58.86+03	
440606e6-7742-5013-ef02-af53db5e95a2	2021-05-19 21:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:38:19.852+03	2021-05-19 21:38:19.859+03	
75f524df-ffb0-201e-d7ef-d14617145fc4	2021-05-19 21:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:38:39.853+03	2021-05-19 21:38:39.86+03	
a21af945-4926-39a3-b3be-ee6e2c1c5282	2021-05-19 21:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:38:59.853+03	2021-05-19 21:38:59.862+03	
c1c80a1e-ee8a-0d6f-60b8-adc7850cf55c	2021-05-19 21:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:39:20.853+03	2021-05-19 21:39:20.86+03	
2734147b-4ace-bc1a-da36-6db20d626d1c	2021-05-19 21:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:39:41.852+03	2021-05-19 21:39:41.865+03	
c148a19d-66ad-46ba-04ed-cb5906fdab75	2021-05-19 21:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 21:40:00.853+03	2021-05-19 21:40:00.877+03	ERROR
8acc306e-2431-9959-e17b-d059ac9cff5e	2021-05-19 21:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:40:11.854+03	2021-05-19 21:40:11.863+03	
8db186e9-78da-24ba-742f-320f258fee19	2021-05-19 21:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:40:32.853+03	2021-05-19 21:40:32.872+03	
6cef19fb-4c0c-37da-e29b-fb6e16f1a665	2021-05-19 21:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:40:52.853+03	2021-05-19 21:40:52.859+03	
f34346a0-ec67-62dd-ceff-aae601ec5fa4	2021-05-19 21:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:41:12.853+03	2021-05-19 21:41:12.86+03	
d053413f-6b9e-9e70-90fd-b64645848ad9	2021-05-19 21:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:41:32.853+03	2021-05-19 21:41:32.86+03	
c97f73a3-561f-0d70-bedd-4e84b00b9a58	2021-05-19 21:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:41:52.853+03	2021-05-19 21:41:52.863+03	
8cd64887-5cd2-f064-5aea-3f960bb8b9f5	2021-05-19 21:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:42:12.853+03	2021-05-19 21:42:12.859+03	
fdaa5064-d999-9908-1c8f-958311fbdc80	2021-05-19 21:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:42:33.853+03	2021-05-19 21:42:33.862+03	
715fc63e-1dfd-dc72-1c5b-138b34cffff1	2021-05-19 21:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:42:54.852+03	2021-05-19 21:42:54.86+03	
2505ae0a-034d-5e6f-5d35-46be4cadc40c	2021-05-19 21:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:43:14.853+03	2021-05-19 21:43:14.861+03	
aaed4142-7f11-890c-0999-8ff92990252f	2021-05-19 21:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:43:36.852+03	2021-05-19 21:43:36.86+03	
4ce2c325-1eab-51ea-4175-13033d056e0d	2021-05-19 21:43:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:43:56.854+03	2021-05-19 21:43:56.862+03	
e37dc13b-efaa-88eb-4901-e068c9aee9cb	2021-05-19 21:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:44:17.852+03	2021-05-19 21:44:17.863+03	
3e517e1e-c42b-03c1-93c5-daa399f99f63	2021-05-19 21:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:44:37.853+03	2021-05-19 21:44:37.871+03	
bb52336e-cc1f-4f9c-bc3a-0f03d5180932	2021-05-19 21:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:44:58.853+03	2021-05-19 21:44:58.861+03	
d0f562f7-146c-00f7-033b-18b7789a608e	2021-05-19 21:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:45:19.853+03	2021-05-19 21:45:19.861+03	
546bc95f-b3e6-88c3-72da-068c0ce2b6ee	2021-05-20 01:54:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:54:46.854+03	2021-05-20 01:54:46.864+03	
0697b32c-c5e2-bb85-b5e2-08db9944621d	2021-05-19 21:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:16:29.853+03	2021-05-19 21:16:29.861+03	
ca27cefd-7741-5303-3060-da187a64c51e	2021-05-19 21:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:38:29.853+03	2021-05-19 21:38:29.861+03	
0c9c5e56-8e44-7192-3053-1bd41c3e667d	2021-05-19 21:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:16:49.853+03	2021-05-19 21:16:49.86+03	
87638d97-03f6-bb48-f995-593c8f2c85c7	2021-05-19 21:17:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:17:09.853+03	2021-05-19 21:17:09.87+03	
99e50cf9-4790-dcdd-f9c1-cdfef5845685	2021-05-19 21:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:38:49.853+03	2021-05-19 21:38:49.862+03	
bd77a12b-c3ab-63ec-400a-8ef29608adec	2021-05-19 21:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:17:29.853+03	2021-05-19 21:17:29.87+03	
ff81b943-f338-a758-b7f5-a3f90e4dd762	2021-05-19 21:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:17:49.853+03	2021-05-19 21:17:49.862+03	
a5558d69-754f-d886-fa04-2a88c2b2665f	2021-05-19 21:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:39:10.852+03	2021-05-19 21:39:10.866+03	
ad2fdfb5-580c-568a-708f-dd22871d9283	2021-05-19 21:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:18:09.853+03	2021-05-19 21:18:09.862+03	
4f2aa979-bd99-0658-2eee-b8daa1dcde79	2021-05-19 21:18:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:18:29.853+03	2021-05-19 21:18:29.861+03	
102ede4f-ef0c-9c3b-53e0-04a3ecaaf8e4	2021-05-19 21:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:39:30.853+03	2021-05-19 21:39:30.862+03	
f17f87a3-5384-3708-cfb1-6a35c68ab281	2021-05-19 21:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:18:49.853+03	2021-05-19 21:18:49.861+03	
d0d7fa27-4eef-c801-8865-cc9118f2a9b9	2021-05-19 21:19:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:19:09.853+03	2021-05-19 21:19:09.861+03	
e62b14fd-7d42-ebab-569d-f6c237092dfa	2021-05-19 21:39:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:39:51.852+03	2021-05-19 21:39:51.86+03	
f7a332c8-232e-3225-abb6-7692b0870171	2021-05-19 21:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:19:30.852+03	2021-05-19 21:19:30.861+03	
86242b75-e6b2-5875-8cd3-22680b45dac0	2021-05-19 21:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:19:50.853+03	2021-05-19 21:19:50.862+03	
04e4953c-74f9-e640-3d39-d27ebcc9358e	2021-05-19 21:40:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:40:01.854+03	2021-05-19 21:40:01.881+03	
88f2dd18-1861-31cb-914c-10f6d73f549b	2021-05-19 21:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 21:20:00.853+03	2021-05-19 21:20:00.874+03	ERROR
a769663a-6c56-5f39-52e0-229b48df8b57	2021-05-19 21:20:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:20:11.853+03	2021-05-19 21:20:11.86+03	
756cb942-14a2-f538-66a8-fa3c840dd59d	2021-05-19 21:40:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:40:22.853+03	2021-05-19 21:40:22.86+03	
2cc7ba2d-46e3-c97a-087a-8e3a10897864	2021-05-19 21:20:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:20:32.853+03	2021-05-19 21:20:32.862+03	
b0df1bd2-701a-f39a-ad1c-626b06b6911b	2021-05-19 21:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:40:42.853+03	2021-05-19 21:40:42.86+03	
75827e10-0769-3319-7f54-e8c7934e712f	2021-05-19 21:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:41:02.853+03	2021-05-19 21:41:02.859+03	
6ea3b9fc-1020-0c4c-4289-3463e6ece9cb	2021-05-19 21:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:41:22.853+03	2021-05-19 21:41:22.859+03	
06aa62a7-340f-198f-b5ff-fcbaa35087b1	2021-05-19 21:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:41:42.853+03	2021-05-19 21:41:42.86+03	
a951dd53-eca6-2fc5-e09a-1c5358521d61	2021-05-19 21:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:42:02.853+03	2021-05-19 21:42:02.86+03	
658b5b36-a869-1d22-f913-360adcd77938	2021-05-19 21:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:42:22.853+03	2021-05-19 21:42:22.861+03	
2618ef21-1cfe-48a8-9c6b-537bf219f512	2021-05-19 21:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:42:43.853+03	2021-05-19 21:42:43.862+03	
c9733320-df07-3791-9342-28d011fa9552	2021-05-19 21:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:43:04.852+03	2021-05-19 21:43:04.859+03	
30765597-2fa5-caa7-5fea-1bcc3a0c8c4c	2021-05-19 21:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:43:25.853+03	2021-05-19 21:43:25.88+03	
5fcf73d4-43f5-c6c3-7815-b6f899049ec1	2021-05-19 21:43:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:43:46.852+03	2021-05-19 21:43:46.862+03	
a0a7ab4f-e816-b30a-d19e-cd71b5505d08	2021-05-19 21:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:44:07.852+03	2021-05-19 21:44:07.859+03	
cf107d09-dd00-6421-354a-3c31acdb99b9	2021-05-19 21:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:44:27.852+03	2021-05-19 21:44:27.867+03	
b72daabe-360a-a9a0-e2cb-267c2a3599e1	2021-05-19 21:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:44:47.853+03	2021-05-19 21:44:47.861+03	
4853743a-4988-9e32-8767-10215cd22ed7	2021-05-19 21:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:45:08.853+03	2021-05-19 21:45:08.859+03	
d9af4ae3-806d-a6d6-94de-958549b9d986	2021-05-19 21:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:45:29.853+03	2021-05-19 21:45:29.86+03	
04c8ab92-c2f1-4f22-3c64-679b749783bd	2021-05-19 21:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:45:50.852+03	2021-05-19 21:45:50.86+03	
1108ae62-26b4-099a-7b89-05ae38551b03	2021-05-19 21:46:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:46:10.853+03	2021-05-19 21:46:10.861+03	
593b1a2f-f640-55c9-4916-312ae78153fb	2021-05-19 21:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:46:30.853+03	2021-05-19 21:46:30.86+03	
a09e5d25-9b6f-ff27-9de1-dbdf773f6b7c	2021-05-19 21:46:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:46:40.853+03	2021-05-19 21:46:40.862+03	
5fb08a6e-eaa5-f09e-434f-88aa16734ef4	2021-05-19 21:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:47:00.853+03	2021-05-19 21:47:00.866+03	
d92cfe09-3081-40ae-3fb5-667cc00bd114	2021-05-19 21:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:47:20.853+03	2021-05-19 21:47:20.859+03	
3b351db6-20ed-f972-6649-9cf092e31ca2	2021-05-19 21:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:47:40.853+03	2021-05-19 21:47:40.859+03	
55e42068-806c-5be2-b240-e67a43241431	2021-05-19 21:48:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:48:01.854+03	2021-05-19 21:48:01.867+03	
dc904150-b0b5-625f-c701-3fd7ac1e72c6	2021-05-19 21:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:48:22.853+03	2021-05-19 21:48:22.86+03	
eed2f04a-fc22-63e2-b18f-bcbf28039ca4	2021-05-19 21:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:48:42.853+03	2021-05-19 21:48:42.86+03	
cd9552fe-a314-8c40-75da-4320c47a1a83	2021-05-19 21:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:49:04.853+03	2021-05-19 21:49:04.861+03	
4e72fd59-aa15-773c-714d-33ea5caf71b2	2021-05-19 21:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:49:25.853+03	2021-05-19 21:49:25.861+03	
655dae52-d393-1590-88df-443f0ffb1a2d	2021-05-19 21:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:49:47.852+03	2021-05-19 21:49:47.858+03	
ee83cd45-e6d5-ebaf-7592-21b9af33d06d	2021-05-19 21:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 21:50:00.853+03	2021-05-19 21:50:00.859+03	ERROR
b4238b3a-7ef4-bc1d-5047-e7b45b4fd540	2021-05-19 21:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:50:18.852+03	2021-05-19 21:50:18.861+03	
e97eeb4e-c2b7-8611-953b-97bfba9dd757	2021-05-19 21:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:50:38.853+03	2021-05-19 21:50:38.861+03	
2eb26744-f186-f57e-7bea-6f6784fda5eb	2021-05-19 21:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:50:58.853+03	2021-05-19 21:50:58.859+03	
d3268142-2dcf-d1f5-fc35-0eb217deb4c0	2021-05-19 21:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:51:18.853+03	2021-05-19 21:51:18.859+03	
651616db-ff87-22a6-400c-e3396a625efb	2021-05-19 21:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:51:39.853+03	2021-05-19 21:51:39.86+03	
28bec899-8ad2-6aa4-2bcf-817dd8efda7b	2021-05-19 21:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:52:00.853+03	2021-05-19 21:52:00.859+03	
68179451-6b0e-7ff6-df55-8b5d5867c928	2021-05-19 21:52:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:52:21.854+03	2021-05-19 21:52:21.861+03	
cbaf9d88-5f43-825c-1f36-63644797c4fc	2021-05-19 21:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:52:43.852+03	2021-05-19 21:52:43.859+03	
65a589f0-ee0f-7e45-4e79-fe2383072f2a	2021-05-19 21:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:53:03.853+03	2021-05-19 21:53:03.86+03	
992c08af-3fea-2c85-5677-95e71cdfe1ee	2021-05-19 21:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:53:23.853+03	2021-05-19 21:53:23.872+03	
a8ecf226-e634-571a-a22b-3212dbe833c1	2021-05-19 21:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:53:44.853+03	2021-05-19 21:53:44.863+03	
769d1a7d-af23-3756-cfd9-f5b1a3c0058c	2021-05-19 21:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:54:05.852+03	2021-05-19 21:54:05.86+03	
b43d14b5-212c-8133-efd8-c874e35c8a01	2021-05-19 21:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:54:25.853+03	2021-05-19 21:54:25.864+03	
3e84953c-36d2-1346-ad6c-91c60a4adee9	2021-05-19 22:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:33:04.853+03	2021-05-19 22:33:04.86+03	
a11a63f1-56ee-7fe8-3138-1e7287f681fc	2021-05-19 21:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:56:49.853+03	2021-05-19 21:56:49.86+03	
abe1b135-e01c-0f39-72c2-d496fdc3ac2c	2021-05-20 00:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:03:29.853+03	2021-05-20 00:03:29.872+03	
2186074b-0047-f680-023b-2d34e09710be	2021-05-19 21:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:57:09.853+03	2021-05-19 21:57:09.859+03	
75b48394-d399-5f13-7774-bc2a0d6baa97	2021-05-19 22:33:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:33:26.853+03	2021-05-19 22:33:26.86+03	
d65b3c65-3403-4b49-0adc-3d81659e6a2e	2021-05-19 21:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:57:30.853+03	2021-05-19 21:57:30.86+03	
14404585-9152-7dc7-04c3-99976e17b611	2021-05-19 21:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:57:50.853+03	2021-05-19 21:57:50.862+03	
72d992bd-af6f-89c8-e366-208c764e8f78	2021-05-19 22:33:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:33:46.854+03	2021-05-19 22:33:46.861+03	
0a5e8043-9904-8ea6-b574-28665eb8bc84	2021-05-19 21:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:58:10.853+03	2021-05-19 21:58:10.86+03	
45762848-3161-7545-0714-bed9ebe5a4eb	2021-05-19 21:58:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:58:31.853+03	2021-05-19 21:58:31.863+03	
a2f6c7f3-6106-8607-e6f7-7420cb39bd73	2021-05-19 22:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:34:08.852+03	2021-05-19 22:34:08.86+03	
7354fe4d-be13-56f1-45ed-df820296cd26	2021-05-19 21:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:58:53.852+03	2021-05-19 21:58:53.859+03	
2822c8a6-caee-8ffe-6d85-96b73e94645f	2021-05-19 21:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:59:13.853+03	2021-05-19 21:59:13.86+03	
1d3cca5f-2786-b03c-4eac-c00e6f963a31	2021-05-19 22:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:34:28.852+03	2021-05-19 22:34:28.859+03	
4224d1dc-6c27-1134-8a08-4868aa2ad385	2021-05-19 21:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:59:34.853+03	2021-05-19 21:59:34.859+03	
332fe7b7-59a4-0393-f73e-c52c324b88c6	2021-05-19 21:59:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:59:56.852+03	2021-05-19 21:59:56.858+03	
5db830bb-bbb8-5ec9-c6ce-627a0913ded1	2021-05-19 22:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:34:48.853+03	2021-05-19 22:34:48.861+03	
9fcc8c95-094a-bb16-574c-1c45ef93bd67	2021-05-19 22:00:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:00:06.854+03	2021-05-19 22:00:06.863+03	
18c0d543-29a8-8674-92a3-4fbdb4afd805	2021-05-19 22:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:00:27.853+03	2021-05-19 22:00:27.862+03	
fa48fd29-69a7-72de-1ff5-5aa801253071	2021-05-19 22:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:35:09.852+03	2021-05-19 22:35:09.863+03	
ca4a4ddb-30fd-8825-3c99-55da0c02076a	2021-05-19 22:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:00:47.853+03	2021-05-19 22:00:47.861+03	
c2b1cc71-e524-aed4-e760-80b670caff4e	2021-05-19 22:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:01:08.853+03	2021-05-19 22:01:08.865+03	
5dd9c153-8669-b72f-4944-f2bde2b0b529	2021-05-19 22:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:35:30.853+03	2021-05-19 22:35:30.86+03	
a3abaa15-75fd-b4f8-be40-e31da2d50932	2021-05-19 22:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:01:29.853+03	2021-05-19 22:01:29.86+03	
fc4e2de2-5fb3-a81e-9331-0382b38ce156	2021-05-19 22:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:01:49.853+03	2021-05-19 22:01:49.859+03	
afb76847-6765-2ebe-1c37-2861cdae7dc2	2021-05-19 22:35:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:35:51.854+03	2021-05-19 22:35:51.86+03	
d45d625f-28a9-94ff-bb3e-a2d554a4a3a1	2021-05-19 22:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:02:10.853+03	2021-05-19 22:02:10.861+03	
01d04d6a-2466-12ad-9e72-05563908767b	2021-05-19 22:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:02:31.853+03	2021-05-19 22:02:31.861+03	
fb94bdcf-fe91-bd15-d189-28c98a86d79f	2021-05-19 22:36:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:36:12.853+03	2021-05-19 22:36:12.876+03	
4b98902a-34d6-c52e-60ac-bd963b24cce5	2021-05-19 22:02:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:02:51.854+03	2021-05-19 22:02:51.861+03	
c6e1f178-4a6c-3282-a38c-30196a255461	2021-05-19 22:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:03:13.852+03	2021-05-19 22:03:13.872+03	
29dca23f-d074-9e2b-fb1c-2cb128284b64	2021-05-19 22:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:36:33.853+03	2021-05-19 22:36:33.86+03	
ed60ca3c-cc9b-5672-7c6a-1949c51cdd64	2021-05-19 22:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:03:33.853+03	2021-05-19 22:03:33.86+03	
976d5112-442c-53e2-dd8c-f59e1cd4b954	2021-05-19 22:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:03:54.853+03	2021-05-19 22:03:54.86+03	
00a59f6e-ebbd-394a-dbe5-9f20bb7670a1	2021-05-19 22:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:36:55.853+03	2021-05-19 22:36:55.859+03	
80265118-02ad-8f8a-8fb2-350ecd88feb1	2021-05-19 22:04:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:04:15.853+03	2021-05-19 22:04:16.181+03	
1c32a5d0-e33a-4a3e-599e-a9af2876979b	2021-05-19 22:04:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:04:36.853+03	2021-05-19 22:04:36.859+03	
2ad083d0-bbd7-902f-a975-a4700f5ce6e0	2021-05-19 22:37:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:37:16.853+03	2021-05-19 22:37:16.863+03	
d2013090-2417-aa84-10ac-8b1b08be395d	2021-05-19 22:04:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:04:56.853+03	2021-05-19 22:04:56.861+03	
e16813dd-4bdd-7141-0bfe-09b1abb5ee2a	2021-05-19 22:05:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:05:17.853+03	2021-05-19 22:05:17.859+03	
8d6558bc-e3c4-f813-0370-f2109fef5222	2021-05-19 22:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:37:38.852+03	2021-05-19 22:37:38.861+03	
96e1dd70-089c-3399-9a04-b876037d9012	2021-05-19 22:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:05:38.853+03	2021-05-19 22:05:38.86+03	
bf592c5c-623f-6c5b-b4aa-e1db79615655	2021-05-19 22:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:37:58.853+03	2021-05-19 22:37:58.862+03	
3b7ceb18-1e13-390b-8bc9-8c090ac4a338	2021-05-19 22:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:38:19.852+03	2021-05-19 22:38:19.86+03	
1fbfe2d6-86b8-d6fe-8ea1-3c5eaa0def8f	2021-05-19 22:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:38:39.852+03	2021-05-19 22:38:39.86+03	
d448c1fc-6511-a00c-428e-7b667865cb85	2021-05-19 22:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:38:59.853+03	2021-05-19 22:38:59.861+03	
d25fe748-843a-6b06-3cc7-13a97325dccc	2021-05-19 22:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:39:19.853+03	2021-05-19 22:39:19.859+03	
3c028a1d-55a2-6da4-5ced-047e1b4acce8	2021-05-19 22:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:39:39.853+03	2021-05-19 22:39:39.862+03	
b2b2aa5a-0b0f-37e3-3d29-24aed829e046	2021-05-19 22:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:40:00.853+03	2021-05-19 22:40:00.86+03	
1f33a4e0-1d3f-7d2c-b2c1-7d7f723f1321	2021-05-19 22:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:40:22.853+03	2021-05-19 22:40:22.862+03	
769899a8-2e64-fcf6-229f-848cec31f7e1	2021-05-19 22:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:40:44.852+03	2021-05-19 22:40:44.86+03	
04b5b512-fd32-7258-1294-ce145d59ed7a	2021-05-19 22:41:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:41:05.852+03	2021-05-19 22:41:05.859+03	
45d655f8-32d0-f855-24dc-08dccaeeed14	2021-05-19 22:41:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:41:26.854+03	2021-05-19 22:41:26.861+03	
a95b9dca-baa5-86f4-3fc3-b84c95db3cdc	2021-05-19 22:41:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:41:47.853+03	2021-05-19 22:41:47.861+03	
4acf7715-691c-c564-a9aa-076f94005c04	2021-05-19 22:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:42:08.852+03	2021-05-19 22:42:08.86+03	
6758cc93-291d-38b9-88b9-e161fd8da9f2	2021-05-19 22:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:42:28.853+03	2021-05-19 22:42:28.863+03	
0bea1b02-fb99-17f4-fee1-dbe6ca07c368	2021-05-19 22:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:42:48.853+03	2021-05-19 22:42:48.862+03	
ab5c02d0-8044-fa60-c007-9c1ca0c41853	2021-05-19 22:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:43:08.853+03	2021-05-19 22:43:08.86+03	
890d835f-fc50-22a2-4e22-c920a5837a0e	2021-05-19 22:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:43:28.853+03	2021-05-19 22:43:28.864+03	
414cb01d-0fe2-7cb7-9679-a4cc656cddc3	2021-05-19 22:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:43:49.852+03	2021-05-19 22:43:49.859+03	
094818a6-a06b-8588-a4cb-77f87bd6e0c6	2021-05-19 22:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:44:09.853+03	2021-05-19 22:44:09.859+03	
0cd709cd-bec8-62a7-a083-26f4c301d384	2021-05-19 22:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:44:29.853+03	2021-05-19 22:44:29.861+03	
452adfe4-8afc-c18d-41c8-393d064dab91	2021-05-19 22:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:44:50.853+03	2021-05-19 22:44:50.861+03	
3b6a544d-fbe4-9dd0-7e31-83230d0b720b	2021-05-19 22:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:45:10.853+03	2021-05-19 22:45:10.86+03	
26a083ec-9a44-722a-a76e-15a6cf498dc2	2021-05-19 21:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:56:59.853+03	2021-05-19 21:56:59.867+03	
44b9098f-810a-3050-ea34-c8e5cc6cb8e9	2021-05-19 21:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:57:20.853+03	2021-05-19 21:57:20.86+03	
50bc86fb-7184-4f80-0ea7-56f40f38eade	2021-05-19 21:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:57:40.853+03	2021-05-19 21:57:40.859+03	
2273e6e5-304e-31fe-6fb2-220ab538b6d8	2021-05-19 21:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:58:00.853+03	2021-05-19 21:58:00.86+03	
536bdf47-db6b-aed5-3e69-1113ddde4937	2021-05-19 21:58:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:58:21.853+03	2021-05-19 21:58:21.864+03	
b26caed4-9d41-fd6d-c3b7-6b298e8abaab	2021-05-19 21:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:58:42.853+03	2021-05-19 21:58:42.86+03	
27d440e6-9da5-bb3c-5099-fcd3860ce4b4	2021-05-19 21:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:59:03.853+03	2021-05-19 21:59:03.86+03	
ee18b807-ed92-0859-c42e-85507c6d6c0e	2021-05-19 21:59:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:59:24.852+03	2021-05-19 21:59:24.861+03	
41898e9e-af3b-c1e1-8fe1-70a82cacc2a8	2021-05-19 21:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 21:59:45.853+03	2021-05-19 21:59:45.902+03	
c81d00c5-02ed-fc62-a3cb-065209a1a334	2021-05-19 22:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 22:00:00.853+03	2021-05-19 22:00:00.878+03	ERROR
e9d589c7-86f2-3fa2-457f-330787de5853	2021-05-19 22:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:00:17.853+03	2021-05-19 22:00:17.861+03	
5b83826b-2e48-05c0-60d7-e49c6fcafd23	2021-05-19 22:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:00:37.853+03	2021-05-19 22:00:37.86+03	
17539d1b-035f-b129-0abb-85539deb6c38	2021-05-19 22:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:00:57.853+03	2021-05-19 22:00:57.86+03	
0dfb3aae-4395-58c1-08ac-0e452cccc0fe	2021-05-19 22:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:01:18.853+03	2021-05-19 22:01:18.861+03	
c7a7bfad-c367-7434-17cc-38cf40dd7db4	2021-05-19 22:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:01:39.853+03	2021-05-19 22:01:39.86+03	
e96133d2-2d22-5390-ca02-3a204c2fbf6c	2021-05-19 22:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:02:00.852+03	2021-05-19 22:02:00.861+03	
c25d163f-00c8-7ae0-93f5-7628dca23531	2021-05-19 22:02:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:02:21.852+03	2021-05-19 22:02:21.861+03	
fa63e296-6d26-da45-6a62-74f44a19b04c	2021-05-19 22:02:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:02:41.854+03	2021-05-19 22:02:41.867+03	
9fb0dfb2-1a3c-c448-666b-48a6f389b074	2021-05-19 22:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:03:02.853+03	2021-05-19 22:03:02.859+03	
98652b25-c877-8ae1-7d2a-44a9f54c3051	2021-05-19 22:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:03:23.853+03	2021-05-19 22:03:23.864+03	
3bf01d47-dcb2-a897-b13e-f035ae6b662b	2021-05-19 22:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:03:44.852+03	2021-05-19 22:03:44.861+03	
6db8ac06-ba50-1f02-bfe2-3e8705e984a8	2021-05-19 22:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:04:04.853+03	2021-05-19 22:04:04.86+03	
670d0da1-069f-90a6-050f-fbb25fc6221b	2021-05-19 22:04:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:04:26.853+03	2021-05-19 22:04:26.867+03	
c4fb4624-7a35-b681-ecc3-39e25f039f62	2021-05-19 22:04:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:04:46.853+03	2021-05-19 22:04:46.86+03	
24e9d6b2-f994-13b1-487d-d6e9ed921bdc	2021-05-19 22:05:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:05:06.854+03	2021-05-19 22:05:06.862+03	
a0c85a51-003b-3a8f-399e-ec1f50f7a168	2021-05-19 22:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:05:28.852+03	2021-05-19 22:05:28.86+03	
788e80d8-3e28-a5a5-1cef-a373a654b29d	2021-05-19 22:05:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:05:48.853+03	2021-05-19 22:05:48.862+03	
05ab96b2-3fcb-6adc-9cfb-275c2dc20239	2021-05-19 22:05:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:05:58.853+03	2021-05-19 22:05:58.863+03	
76d735e9-a114-f972-3c2d-6951ac5315b8	2021-05-19 22:06:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:06:08.853+03	2021-05-19 22:06:08.859+03	
79da9e53-d5dd-32d7-4ad3-5e388161a488	2021-05-19 22:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:06:18.853+03	2021-05-19 22:06:18.859+03	
9a0d604a-1aca-b8c0-9159-d3d30ae165f1	2021-05-19 22:06:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:06:28.853+03	2021-05-19 22:06:28.86+03	
9d1933c5-2f9b-8bb3-c2cd-96ef24124484	2021-05-19 22:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:06:38.853+03	2021-05-19 22:06:38.859+03	
2b3a9c65-c99a-4557-ebe8-887e437f8501	2021-05-19 22:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:06:48.853+03	2021-05-19 22:06:48.859+03	
2102aaad-636e-e167-de3e-970690f8952b	2021-05-19 22:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:06:59.852+03	2021-05-19 22:06:59.86+03	
76fa7770-bc61-d440-795d-4e4e50059ac2	2021-05-19 22:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:07:09.853+03	2021-05-19 22:07:09.859+03	
16048caf-e835-b402-b5f6-8ed0a3225f70	2021-05-19 22:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:07:19.853+03	2021-05-19 22:07:19.859+03	
cba3d222-922a-209e-27a5-43dc206515c0	2021-05-19 22:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:07:29.853+03	2021-05-19 22:07:29.864+03	
d85e26cf-e787-5c69-2d73-a5ac461fbb1a	2021-05-19 22:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:07:39.853+03	2021-05-19 22:07:39.86+03	
793e0c34-9e6e-8e43-343f-95aed6f2686f	2021-05-19 22:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:07:49.853+03	2021-05-19 22:07:49.861+03	
3842624a-5903-a6ce-80c6-ad5db9df6d23	2021-05-19 22:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:07:59.853+03	2021-05-19 22:07:59.861+03	
5e5426e6-18ab-51b1-bb5a-6204d123ffa5	2021-05-19 22:08:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:08:09.853+03	2021-05-19 22:08:09.86+03	
a672d8b5-8ddf-9829-ae60-35b641b62fc8	2021-05-19 22:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:08:20.853+03	2021-05-19 22:08:20.861+03	
ea25abce-7016-a24a-1288-926fd430bec7	2021-05-19 22:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:08:30.853+03	2021-05-19 22:08:30.86+03	
2517ac69-3be7-cd19-fe0f-c592596125dd	2021-05-19 22:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:08:40.853+03	2021-05-19 22:08:40.86+03	
34535f98-108e-0e23-b514-f2112334d9c6	2021-05-19 22:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:08:50.853+03	2021-05-19 22:08:50.863+03	
83370633-9425-b7c2-1aee-90c8d965595a	2021-05-19 22:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:09:00.853+03	2021-05-19 22:09:00.859+03	
304ee19b-24eb-0797-4094-0bb90aab3f55	2021-05-19 22:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:09:10.853+03	2021-05-19 22:09:10.862+03	
98f51e9c-68b4-2a9e-9e3c-c518d10c0c4c	2021-05-19 22:09:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:09:21.853+03	2021-05-19 22:09:21.862+03	
6df38990-8317-cadc-4abb-4e1ecc62366e	2021-05-19 22:09:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:09:31.854+03	2021-05-19 22:09:31.861+03	
59bb204f-4d98-f511-dd30-cd1a038a2cb9	2021-05-19 22:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:09:42.853+03	2021-05-19 22:09:42.861+03	
2c51f1c9-6d4f-985b-f977-4dd2f9e6685e	2021-05-19 22:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:09:52.853+03	2021-05-19 22:09:52.859+03	
787e25cf-ef71-cf4b-b6b9-9074aaed9099	2021-05-19 22:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 22:10:00.853+03	2021-05-19 22:10:00.886+03	ERROR
e6f5c1ec-5b5c-0be1-4688-91143246cf11	2021-05-19 22:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:10:02.853+03	2021-05-19 22:10:02.86+03	
9d53d3ee-3089-236b-e57c-a4781b473e1e	2021-05-19 22:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:10:13.853+03	2021-05-19 22:10:13.859+03	
3dccd571-b76d-d744-303c-55f5e61c8ffb	2021-05-19 22:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:10:24.853+03	2021-05-19 22:10:24.863+03	
ab45d56b-22f5-5f05-c935-9688270583af	2021-05-19 22:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:10:35.853+03	2021-05-19 22:10:35.86+03	
a3ec6b45-f6aa-2ba5-67f1-b360812f6af9	2021-05-19 22:10:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:10:46.852+03	2021-05-19 22:10:46.86+03	
c88ca4f0-9cbd-7c17-a636-235824608af4	2021-05-19 22:10:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:10:56.854+03	2021-05-19 22:10:56.862+03	
987a2d4d-a5ec-5374-4b45-a93172ba9e34	2021-05-19 22:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:11:07.852+03	2021-05-19 22:11:07.859+03	
c8024976-c22c-3e44-6f05-b53086388d60	2021-05-19 22:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:11:17.852+03	2021-05-19 22:11:17.86+03	
0409e736-3f68-5cfb-56a3-5034b3394a58	2021-05-19 22:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:11:27.852+03	2021-05-19 22:11:27.859+03	
3bebe39b-7b76-d267-0e61-8c38cfcedbe9	2021-05-19 22:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:11:37.852+03	2021-05-19 22:11:37.86+03	
99e91910-0421-c585-448a-7ccb16522a56	2021-05-19 22:11:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:11:47.853+03	2021-05-19 22:11:47.861+03	
2ae3a911-ace5-b3da-618d-a6bb3fa5f593	2021-05-20 04:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:12:53.853+03	2021-05-20 04:12:53.865+03	
438dd38d-12e6-3597-4532-202427b0e3cc	2021-05-19 22:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:11:57.853+03	2021-05-19 22:11:57.867+03	
677e619f-3a77-dbbd-31ca-2245aa484465	2021-05-19 22:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:33:15.853+03	2021-05-19 22:33:15.86+03	
82514fd5-0ee5-2762-8705-650ae41202f4	2021-05-19 22:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:12:19.853+03	2021-05-19 22:12:19.86+03	
eb5b0d0e-8d50-b3d5-79be-ce50f1213cf6	2021-05-19 22:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:12:41.853+03	2021-05-19 22:12:41.86+03	
d847b246-d90d-ddf1-a404-12b2d35fe0fa	2021-05-19 22:33:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:33:36.854+03	2021-05-19 22:33:36.862+03	
97b8587a-be6b-ce66-21d6-44c3aaf22a41	2021-05-19 22:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:13:01.854+03	2021-05-19 22:13:01.876+03	
fb03fd6d-1747-969f-aa05-c502af36caac	2021-05-19 22:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:13:22.853+03	2021-05-19 22:13:22.868+03	
ec3de1e0-7645-6b08-b01c-2de61d2c5214	2021-05-19 22:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:33:57.853+03	2021-05-19 22:33:57.861+03	
919605d4-010d-c6ef-e70f-cc4dff040e82	2021-05-19 22:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:13:43.853+03	2021-05-19 22:13:43.86+03	
b84108ec-cd3b-f3d0-1ac7-94267eb62b2e	2021-05-19 22:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:14:04.853+03	2021-05-19 22:14:04.863+03	
8e2140e4-b6f7-898a-9f79-59096f16d3c4	2021-05-19 22:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:34:18.852+03	2021-05-19 22:34:18.859+03	
aa77cdb3-a130-3ef6-8bdc-d58dc2b6888f	2021-05-19 22:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:14:24.853+03	2021-05-19 22:14:24.861+03	
02faebc2-9b29-f481-eb87-dbab0cdf69cc	2021-05-19 22:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:14:44.853+03	2021-05-19 22:14:44.873+03	
7851e735-a0e7-082e-5ac8-169d7bebc801	2021-05-19 22:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:34:38.852+03	2021-05-19 22:34:38.859+03	
9489b983-a6dd-a3db-527b-2734915039ba	2021-05-19 22:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:15:04.853+03	2021-05-19 22:15:04.862+03	
6700ba7a-852e-ca6b-258b-4aa6a6dff50a	2021-05-19 22:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:15:24.853+03	2021-05-19 22:15:24.86+03	
8e80f895-2a8c-28b3-dde9-f4adebfbf101	2021-05-19 22:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:34:59.852+03	2021-05-19 22:34:59.861+03	
1a494efd-c4d1-d844-3797-4c19485a11fc	2021-05-19 22:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:15:45.852+03	2021-05-19 22:15:45.86+03	
945fe292-3522-06ca-6368-450a3ea763d4	2021-05-19 22:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:16:05.853+03	2021-05-19 22:16:05.874+03	
955019b8-b72f-e4dd-c5a0-3f8b41bc9d2e	2021-05-19 22:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:35:19.853+03	2021-05-19 22:35:19.859+03	
155f567e-5b06-1a19-c38f-6d577bf21c7e	2021-05-19 22:16:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:16:26.854+03	2021-05-19 22:16:26.863+03	
08139687-2139-0172-658c-cb584c3c4fac	2021-05-19 22:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:16:47.853+03	2021-05-19 22:16:47.86+03	
39ba1b9c-5a53-2544-0567-fc646394caf4	2021-05-19 22:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:35:40.853+03	2021-05-19 22:35:40.86+03	
00438325-eb04-aae2-d5c2-92bcff54d644	2021-05-19 22:17:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:17:09.852+03	2021-05-19 22:17:09.864+03	
c27c5cb2-3aa0-7be0-5869-b54b137e205f	2021-05-19 22:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:17:30.853+03	2021-05-19 22:17:30.86+03	
08cabdfa-1f63-534d-e351-eba5e0ea9b86	2021-05-19 22:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:36:02.853+03	2021-05-19 22:36:02.86+03	
e333e2d8-afee-788a-22d1-b1e517537591	2021-05-19 22:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:17:50.853+03	2021-05-19 22:17:50.86+03	
6d4facd6-6b1c-754c-f952-4307111a12d1	2021-05-19 22:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:18:11.852+03	2021-05-19 22:18:11.859+03	
703c8f69-c812-75d3-c319-f686eaa98946	2021-05-19 22:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:36:23.853+03	2021-05-19 22:36:23.861+03	
b6ce180e-609f-f859-7eb5-1c6a481249bf	2021-05-19 22:18:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:18:31.852+03	2021-05-19 22:18:31.859+03	
7c4c3732-2d6d-deb6-953f-c77324c389d5	2021-05-19 22:18:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:18:51.852+03	2021-05-19 22:18:51.86+03	
e193a715-c4e2-9dc9-2de7-9b1836e104f4	2021-05-19 22:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:36:44.853+03	2021-05-19 22:36:44.86+03	
fb52d673-3651-978f-293b-a4da356e6757	2021-05-19 22:19:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:19:11.853+03	2021-05-19 22:19:11.859+03	
282a027c-e08d-59f2-c5d8-04999b032489	2021-05-19 22:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:19:32.852+03	2021-05-19 22:19:32.859+03	
6a1d1232-5a54-2aee-21ed-9cebcea0c232	2021-05-19 22:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:37:05.853+03	2021-05-19 22:37:05.86+03	
74dca242-fcea-1761-13cd-f9c0c2c6852c	2021-05-19 22:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:19:52.853+03	2021-05-19 22:19:52.86+03	
6387acf0-153d-29e9-2445-5cd38c0f9e14	2021-05-19 22:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:20:02.853+03	2021-05-19 22:20:02.861+03	
af2c0d06-04e5-08a9-2906-ee2526d836c9	2021-05-19 22:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:37:27.853+03	2021-05-19 22:37:27.865+03	
eee2a287-8d83-0fa0-59b3-257c96d67a43	2021-05-19 22:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:20:22.853+03	2021-05-19 22:20:22.86+03	
66103072-3b73-e7fe-3018-5ee80d56d865	2021-05-19 22:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:20:43.852+03	2021-05-19 22:20:43.86+03	
b330afe9-1a44-55a9-7fee-a5107591dd96	2021-05-19 22:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:37:48.853+03	2021-05-19 22:37:48.86+03	
71e95052-1786-9e5c-c2e8-345c4e5d0ad8	2021-05-19 22:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:21:03.853+03	2021-05-19 22:21:03.86+03	
609599c7-2a4a-b5e1-e1d1-a0162afdcc40	2021-05-19 22:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:21:23.853+03	2021-05-19 22:21:23.86+03	
02dd16f1-25cc-574c-baf0-348327abdff9	2021-05-19 22:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:38:08.853+03	2021-05-19 22:38:08.859+03	
de2a308c-d998-03ae-fa2d-7fde4deb8e46	2021-05-19 22:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:21:45.853+03	2021-05-19 22:21:45.86+03	
adebde5d-9afc-24a8-07b7-2c24a8b17120	2021-05-19 22:22:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:22:06.852+03	2021-05-19 22:22:06.86+03	
416a093e-42c8-9a5f-6d3e-76faa6870ca2	2021-05-19 22:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:38:29.852+03	2021-05-19 22:38:29.859+03	
2ce5e784-2d42-cc0f-bb22-51b2c03d5bff	2021-05-19 22:22:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:22:26.854+03	2021-05-19 22:22:26.86+03	
880e1d1b-406b-1070-2385-a7de17e9b1ed	2021-05-19 22:22:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:22:48.853+03	2021-05-19 22:22:48.862+03	
dca2cbca-72d5-3110-ef78-136cb8a41e37	2021-05-19 22:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:38:49.852+03	2021-05-19 22:38:49.86+03	
e25a29ff-35e8-0f46-ac3d-09c3477a6056	2021-05-19 22:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:23:09.853+03	2021-05-19 22:23:09.86+03	
1b9c54bc-69a1-52c0-f786-f842cdcaf86d	2021-05-19 22:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:23:30.853+03	2021-05-19 22:23:30.859+03	
fac771a1-e8e7-f7d9-f4b5-02a1f7e3b518	2021-05-19 22:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:39:09.853+03	2021-05-19 22:39:09.862+03	
7dd76d65-4a92-dd60-fff9-73c8934a0343	2021-05-19 22:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:23:50.853+03	2021-05-19 22:23:50.86+03	
cf44b252-808c-ef6f-8425-ae521ac1ef52	2021-05-19 22:24:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:24:11.854+03	2021-05-19 22:24:11.861+03	
a20e8701-9afb-a760-7ca8-c7dc04e80ce9	2021-05-19 22:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:39:29.853+03	2021-05-19 22:39:29.863+03	
67f0b5b1-5ff8-4c8f-0f91-1d6bfaa88b76	2021-05-19 22:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:24:32.853+03	2021-05-19 22:24:32.859+03	
a7a82231-ca56-f6c3-ba23-d1ef6a1c07a8	2021-05-19 22:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:24:53.852+03	2021-05-19 22:24:53.859+03	
5e5733de-a3b2-865f-3cd8-b47594b03da6	2021-05-19 22:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:39:49.853+03	2021-05-19 22:39:49.861+03	
c2bc2e0c-5791-1429-bce4-fac1b8c52dae	2021-05-19 22:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:25:13.852+03	2021-05-19 22:25:13.858+03	
db1e7f71-fda9-6946-9f80-9c9799a1356b	2021-05-19 22:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:25:33.853+03	2021-05-19 22:25:33.861+03	
1c781683-df8a-4315-e5e6-a6c6a2d1b596	2021-05-19 22:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:40:11.854+03	2021-05-19 22:40:11.863+03	
183daa3d-ecdd-caa0-01d1-ac5cf873cacc	2021-05-19 22:40:33.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:40:33.855+03	2021-05-19 22:40:33.863+03	
22831b19-d770-b45b-700f-1ba012751df7	2021-05-19 22:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:40:54.853+03	2021-05-19 22:40:54.859+03	
6a44a41e-89f3-befe-13ba-98885f4e96c8	2021-05-19 22:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:12:08.853+03	2021-05-19 22:12:08.86+03	
b4f923e4-368c-7c5c-0c58-f7dca27128d6	2021-05-19 22:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:12:30.853+03	2021-05-19 22:12:30.863+03	
8c346440-c8fe-fe43-30fa-dd4487481f94	2021-05-19 22:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:12:51.853+03	2021-05-19 22:12:51.869+03	
93d9f148-99ff-061d-9269-cd210cede61c	2021-05-19 22:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:13:12.853+03	2021-05-19 22:13:12.86+03	
e9707fa5-33b4-875c-0b8e-c33c00e23c1c	2021-05-19 22:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:13:32.853+03	2021-05-19 22:13:32.86+03	
eea8cfca-df95-81d2-889c-ea9719e2aca1	2021-05-19 22:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:13:53.853+03	2021-05-19 22:13:53.861+03	
88fc7609-9dde-2d31-94d9-b4878872df28	2021-05-19 22:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:14:14.853+03	2021-05-19 22:14:14.861+03	
f37ab32b-c1c1-9c0e-cd1f-08f170e95c3c	2021-05-19 22:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:14:34.853+03	2021-05-19 22:14:34.863+03	
81928d9c-c654-58cb-4ad1-b547ca7382a9	2021-05-19 22:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:14:54.853+03	2021-05-19 22:14:54.9+03	
1ffd3b27-64f1-a3c1-dbe8-9caee8911ffc	2021-05-19 22:15:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:15:14.853+03	2021-05-19 22:15:14.862+03	
dd4f9b3d-b0bb-76f9-0836-3b37fd4dfd0e	2021-05-19 22:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:15:34.853+03	2021-05-19 22:15:34.859+03	
cda339be-f940-7b86-160f-59c362cb0fb4	2021-05-19 22:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:15:55.853+03	2021-05-19 22:15:55.862+03	
850ffa52-a495-e8a2-cd0f-b24055124471	2021-05-19 22:16:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:16:16.852+03	2021-05-19 22:16:16.876+03	
c3fb88a9-ddaf-19ba-32d3-98612b13dbe6	2021-05-19 22:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:16:37.853+03	2021-05-19 22:16:37.86+03	
89f6fa9d-0e0a-1308-43b5-b5ab9bcb2b9c	2021-05-19 22:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:16:58.853+03	2021-05-19 22:16:58.862+03	
d9f5b645-3823-e7dc-d734-e1678280c560	2021-05-19 22:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:17:19.853+03	2021-05-19 22:17:19.862+03	
85230c23-4898-ce36-ec15-f0780ecba6a5	2021-05-19 22:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:17:40.853+03	2021-05-19 22:17:40.86+03	
9e54eb8e-aa82-af27-b39c-7d92003038e0	2021-05-19 22:18:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:18:01.852+03	2021-05-19 22:18:01.874+03	
e26d3c18-efdd-b5dc-2321-657d60665ed9	2021-05-19 22:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:18:21.852+03	2021-05-19 22:18:21.859+03	
ff949800-4477-e187-2c9d-ad9987e1ec70	2021-05-19 22:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:18:41.852+03	2021-05-19 22:18:41.859+03	
c58e6c60-0500-7e1e-6488-5e58fa54c9da	2021-05-19 22:19:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:19:01.852+03	2021-05-19 22:19:01.873+03	
8adc23e9-7e16-f2be-1023-3f721e3faccc	2021-05-19 22:19:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:19:21.853+03	2021-05-19 22:19:21.862+03	
9d5a0dd2-7840-3ac7-6d8f-62cd0d807ac7	2021-05-19 22:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:19:42.852+03	2021-05-19 22:19:42.86+03	
a2f6ce90-e7aa-70c3-3af1-540de6533954	2021-05-19 22:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 22:20:00.853+03	2021-05-19 22:20:00.884+03	ERROR
ce725b82-ee6a-f3ea-2c0e-e1a985b3efc0	2021-05-19 22:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:20:12.853+03	2021-05-19 22:20:12.86+03	
b2c2765a-6576-1f7d-ae73-e4d89f51b660	2021-05-19 22:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:20:33.852+03	2021-05-19 22:20:33.86+03	
66893501-6d0f-a9b2-ac7b-78a50acc9124	2021-05-19 22:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:20:53.852+03	2021-05-19 22:20:53.86+03	
3398cb65-ffd0-f4cd-3205-a62025039b75	2021-05-19 22:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:21:13.853+03	2021-05-19 22:21:13.859+03	
932af6c2-4ca2-cb27-070e-f677151d89e1	2021-05-19 22:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:21:34.853+03	2021-05-19 22:21:34.86+03	
594c4042-b1db-d76d-8953-eaa41fe26bf0	2021-05-19 22:21:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:21:56.852+03	2021-05-19 22:21:56.859+03	
f374cddd-b4ec-64d1-f533-17cf40e3931a	2021-05-19 22:22:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:22:16.852+03	2021-05-19 22:22:16.86+03	
7b588c2a-0895-7cc8-20d3-8bf3304d4c3d	2021-05-19 22:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:22:37.853+03	2021-05-19 22:22:38.1+03	
1a0c5f05-b024-42cb-abd9-9c8aa90f469a	2021-05-19 22:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:22:59.852+03	2021-05-19 22:22:59.86+03	
8065d69b-901b-76c4-aec8-30a4a5a73257	2021-05-19 22:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:23:19.853+03	2021-05-19 22:23:19.872+03	
e9832407-e861-664a-691b-be7777878d5f	2021-05-19 22:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:23:40.853+03	2021-05-19 22:23:40.873+03	
2edfef63-d159-d308-09c2-a09392cde833	2021-05-19 22:24:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:24:01.854+03	2021-05-19 22:24:01.887+03	
5415f8fd-6ea2-330a-cea6-90dd4d420e94	2021-05-19 22:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:24:22.853+03	2021-05-19 22:24:22.861+03	
cc995075-3b5b-8176-f66b-76664d801594	2021-05-19 22:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:24:42.853+03	2021-05-19 22:24:42.859+03	
707a6a11-4145-bdea-21f0-e9da6cfecc22	2021-05-19 22:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:25:03.852+03	2021-05-19 22:25:03.859+03	
c81565b0-c2d2-7746-9a81-d4f7e7f49843	2021-05-19 22:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:25:23.852+03	2021-05-19 22:25:23.861+03	
3c1cee50-687c-c1bb-8dc7-a84e2d181ab2	2021-05-19 22:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:25:43.853+03	2021-05-19 22:25:43.86+03	
f9878890-a3da-8074-82b3-d22c5a60b1b6	2021-05-19 22:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:25:53.853+03	2021-05-19 22:25:53.862+03	
6c355614-86cb-6010-79f9-2f499d27bcc3	2021-05-19 22:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:26:03.853+03	2021-05-19 22:26:03.86+03	
d15c418d-a658-af9a-4811-632360ddfcf5	2021-05-19 22:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:26:13.853+03	2021-05-19 22:26:13.86+03	
642c6dfb-2bdf-3df4-33ab-2bab3a55406e	2021-05-19 22:26:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:26:24.852+03	2021-05-19 22:26:24.859+03	
cf46e6b4-8c82-61ca-c908-e3d416c9d59f	2021-05-19 22:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:26:34.852+03	2021-05-19 22:26:34.859+03	
44847af1-f414-fe5a-4f06-35f5d76362ef	2021-05-19 22:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:26:44.852+03	2021-05-19 22:26:44.859+03	
052cc195-9952-b171-405d-1d227c87215c	2021-05-19 22:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:26:54.852+03	2021-05-19 22:26:54.859+03	
36e2f2c0-e53a-1fcf-f79f-d8b24ffa61e8	2021-05-19 22:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:27:04.853+03	2021-05-19 22:27:04.865+03	
42f900ad-9eae-489e-f65a-4ae5aeed3194	2021-05-19 22:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:27:14.853+03	2021-05-19 22:27:14.861+03	
a9f84b69-44d1-8094-e1c8-b33f0f4b92f1	2021-05-19 22:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:27:24.853+03	2021-05-19 22:27:24.86+03	
14f427d8-7838-ee7b-bdef-cb64aa3dae75	2021-05-19 22:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:27:34.853+03	2021-05-19 22:27:34.86+03	
4af8e6f2-368d-2cec-487c-438ac0f473d4	2021-05-19 22:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:27:44.853+03	2021-05-19 22:27:44.859+03	
eb0e1c0a-cc48-4cc0-9640-98cc6cdadb60	2021-05-19 22:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:27:55.852+03	2021-05-19 22:27:55.859+03	
27c41786-8739-5912-965c-cb19c583db52	2021-05-19 22:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:28:05.853+03	2021-05-19 22:28:05.863+03	
0d2bc7b7-dfd3-7ae1-ef75-3270c0a670ed	2021-05-19 22:28:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:28:16.852+03	2021-05-19 22:28:16.86+03	
3fa74844-a440-c550-53d0-c9b1ca71e7cc	2021-05-19 22:28:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:28:26.852+03	2021-05-19 22:28:26.859+03	
12b89161-5e89-a742-f3b0-3c6edcff16a2	2021-05-19 22:28:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:28:36.852+03	2021-05-19 22:28:36.859+03	
8427a2ca-2bfe-10f2-9849-a7a3d1bf95b7	2021-05-19 22:28:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:28:46.852+03	2021-05-19 22:28:46.861+03	
0d1ccac0-c014-0ee2-8269-5a4d987f96d0	2021-05-19 22:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:28:56.853+03	2021-05-19 22:28:56.859+03	
e5bffa29-b5b0-ca37-7fee-087dc4231d2e	2021-05-19 22:29:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:29:06.854+03	2021-05-19 22:29:06.86+03	
62d51508-cdd5-4316-fcc9-bafc62dc46d2	2021-05-19 22:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:29:17.853+03	2021-05-19 22:29:17.859+03	
96e11cf1-3fe0-7730-89cd-078796a2cb1f	2021-05-19 22:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:29:27.853+03	2021-05-19 22:29:27.859+03	
dfead229-eee2-1bd0-6fd8-5e89a7f41a1f	2021-05-20 00:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:03:40.853+03	2021-05-20 00:03:40.859+03	
c4e87638-c422-0ae6-5a93-c54ae5dec0a8	2021-05-19 22:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:29:37.853+03	2021-05-19 22:29:37.86+03	
412ba412-d92f-9f9b-f259-f6b79ff88cbd	2021-05-19 22:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 22:40:00.853+03	2021-05-19 22:40:00.868+03	ERROR
4d746ca2-920a-b0f3-e5ab-12609cd0a8c7	2021-05-19 22:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:29:59.852+03	2021-05-19 22:29:59.858+03	
b5bd3ca8-039a-5d1d-a3fa-fbb3e79201b0	2021-05-19 22:45:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:45:31.854+03	2021-05-19 22:45:31.866+03	
d2854964-4c2b-27c6-0503-2dc487741f58	2021-05-19 22:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:30:09.852+03	2021-05-19 22:30:09.859+03	
24465f24-9ecd-af38-9e23-efa11b3b49a3	2021-05-19 22:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:30:30.853+03	2021-05-19 22:30:30.86+03	
c6ef7226-e9c4-d177-56f7-e399d604b640	2021-05-19 22:45:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:45:51.854+03	2021-05-19 22:45:51.874+03	
a515443a-5d26-0b1a-54b4-89a192f3b2c6	2021-05-19 22:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:30:50.853+03	2021-05-19 22:30:50.861+03	
597ee176-821e-96e4-e086-367bf6b18a58	2021-05-19 22:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:31:10.853+03	2021-05-19 22:31:10.86+03	
bd013eb4-5c5d-6ecd-ddec-8138714c290b	2021-05-19 22:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:46:12.853+03	2021-05-19 22:46:12.86+03	
d918f241-580f-6b29-c698-ed43a134b143	2021-05-19 22:31:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:31:31.852+03	2021-05-19 22:31:31.868+03	
97779597-37de-fae3-2b06-ba284e2cfcdc	2021-05-19 22:31:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:31:51.853+03	2021-05-19 22:31:51.864+03	
d68d413b-b512-d650-0320-9556f9b8a664	2021-05-19 22:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:46:34.852+03	2021-05-19 22:46:34.862+03	
b8c6fe66-52c9-2bf7-eabd-13040fda977d	2021-05-19 22:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:32:12.853+03	2021-05-19 22:32:12.871+03	
111878af-5b1c-ff4b-476e-914671841727	2021-05-19 22:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:32:33.853+03	2021-05-19 22:32:33.86+03	
17236050-9a69-04f0-99a5-bbcd57edc2b1	2021-05-19 22:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:46:54.853+03	2021-05-19 22:46:54.873+03	
045ec190-49ce-fe72-fd71-fb98deb278dc	2021-05-19 22:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:47:14.853+03	2021-05-19 22:47:14.86+03	
bcfd746d-c7c4-7bb5-ce56-940c192b4227	2021-05-19 22:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:47:35.852+03	2021-05-19 22:47:35.873+03	
f5291141-31d4-57ac-9ee0-a8fbd04cc12b	2021-05-19 22:47:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:47:56.853+03	2021-05-19 22:47:56.86+03	
518297a7-dd65-5cf2-a179-d221975f20d6	2021-05-19 22:48:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:48:16.854+03	2021-05-19 22:48:16.861+03	
05b279ab-adc3-390b-3df8-1445983db5fa	2021-05-19 22:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:48:37.853+03	2021-05-19 22:48:37.862+03	
ed50f355-5c83-64aa-9479-1050ffe3ade5	2021-05-19 22:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:48:57.853+03	2021-05-19 22:48:57.86+03	
7115aa97-5a70-2b64-46a3-703e5343fe79	2021-05-19 22:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:49:18.852+03	2021-05-19 22:49:18.859+03	
1edc0f78-c544-0505-c579-6c66da725e82	2021-05-19 22:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:49:38.852+03	2021-05-19 22:49:38.86+03	
f51e30ca-7bed-c6b9-2d9f-9f7ea55429de	2021-05-19 22:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:49:59.852+03	2021-05-19 22:49:59.859+03	
792aa469-865a-792a-1046-a825ce290e02	2021-05-19 22:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:50:09.853+03	2021-05-19 22:50:09.861+03	
e5941563-75c7-8392-68b9-38001b01546a	2021-05-19 22:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:50:29.853+03	2021-05-19 22:50:29.862+03	
6da82017-6548-5733-3ccf-4cb4c3c4cbe3	2021-05-19 22:50:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:50:50.852+03	2021-05-19 22:50:50.86+03	
cab4dc6e-4be3-0761-509d-550a279c6c22	2021-05-19 22:51:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:51:10.852+03	2021-05-19 22:51:10.859+03	
8651b9a0-e820-43a4-d1cc-1f7c4e888367	2021-05-19 22:51:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:51:31.852+03	2021-05-19 22:51:31.873+03	
0be5830f-ea68-ae0b-67be-d02287d9214e	2021-05-19 22:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:51:52.853+03	2021-05-19 22:51:52.862+03	
f3515529-4f48-29b3-3a30-aa94e57dfe53	2021-05-19 22:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:52:13.853+03	2021-05-19 22:52:13.859+03	
9a2fdb55-85c1-0008-4204-8909278e6e91	2021-05-19 22:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:52:34.853+03	2021-05-19 22:52:34.861+03	
e58ca02c-9f74-c959-4e1d-8a4517dfc704	2021-05-19 22:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:52:54.853+03	2021-05-19 22:52:54.872+03	
7dba4f31-8957-d229-9c5e-3d702669e04b	2021-05-19 22:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:53:14.853+03	2021-05-19 22:53:14.86+03	
1f8e2614-49ff-82c3-2fa8-8a842da4ce72	2021-05-19 22:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:53:35.853+03	2021-05-19 22:53:35.859+03	
d3891711-7da7-063f-eb44-0a7d64758062	2021-05-19 22:53:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:53:56.852+03	2021-05-19 22:53:56.859+03	
18ca3f28-13a7-1df9-dcf5-e1803690ac23	2021-05-19 22:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:54:17.853+03	2021-05-19 22:54:17.861+03	
03aa3933-2a07-54b6-4c5e-2176f7a58e18	2021-05-19 22:54:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:54:39.853+03	2021-05-19 22:54:39.861+03	
1b4e42ce-1404-a9a9-0e4c-9111096815da	2021-05-19 22:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:55:00.853+03	2021-05-19 22:55:00.86+03	
6ced93de-63ea-c496-9f02-7fca11b31d87	2021-05-19 22:55:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:55:21.854+03	2021-05-19 22:55:21.861+03	
07678175-a406-4d7f-bb84-2969ef1bf6fa	2021-05-19 22:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:55:42.852+03	2021-05-19 22:55:42.859+03	
f13de0d6-6dfb-5ddd-a9be-293e1ec70c18	2021-05-19 22:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:56:02.852+03	2021-05-19 22:56:02.86+03	
5eb337eb-51ee-555b-691f-03aa6cec667f	2021-05-19 22:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:56:23.853+03	2021-05-19 22:56:23.861+03	
04bad914-2b00-b36b-2881-3f5bc4b30057	2021-05-19 22:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:56:44.853+03	2021-05-19 22:56:44.86+03	
4e3079eb-dac5-2a35-b027-81b3f12cc6c2	2021-05-19 22:57:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:57:06.853+03	2021-05-19 22:57:06.859+03	
fed1cc1c-4179-fd6c-2c0d-00edc463e757	2021-05-19 22:57:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:57:26.853+03	2021-05-19 22:57:26.861+03	
5547080a-01d7-90be-3907-f53376f68766	2021-05-19 22:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:57:47.853+03	2021-05-19 22:57:47.86+03	
8f860062-26bb-d02d-e2ac-948629b4f293	2021-05-19 22:58:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:58:08.853+03	2021-05-19 22:58:08.859+03	
672703f2-0509-528a-995c-9991cbe2e58d	2021-05-19 22:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:58:29.853+03	2021-05-19 22:58:29.861+03	
0e4f9af4-9716-1721-03f9-f52a61992c8d	2021-05-19 22:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:58:50.853+03	2021-05-19 22:58:50.861+03	
06136a2f-ffaa-a9c4-4eea-0f8a893a4dd0	2021-05-19 22:59:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:59:11.854+03	2021-05-19 22:59:11.861+03	
ca364155-1794-fe11-ba3f-a44f35d5529a	2021-05-19 22:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:59:32.853+03	2021-05-19 22:59:32.865+03	
e01e6b01-e263-790b-c76a-fa0393e8d625	2021-05-19 22:59:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:59:42.853+03	2021-05-19 22:59:42.862+03	
dbbaa625-e22a-52f6-f006-0b5ef593901b	2021-05-19 22:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:59:52.853+03	2021-05-19 22:59:52.86+03	
9e390b2e-1dd8-30a2-4f0a-a89385dc290e	2021-05-19 23:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 23:00:00.853+03	2021-05-19 23:00:00.871+03	ERROR
5ad6633c-d220-b7cc-62ad-d13aa5eaa91d	2021-05-19 23:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:00:02.853+03	2021-05-19 23:00:02.864+03	
1ade9b85-f74a-e71c-045d-b1c4273ed43a	2021-05-19 23:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:00:12.853+03	2021-05-19 23:00:12.874+03	
64506687-1bf8-2f62-9a01-065375748d3a	2021-05-19 23:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:00:22.853+03	2021-05-19 23:00:22.879+03	
c5da820d-7c5d-a776-cf89-ddf3270d7ce8	2021-05-19 23:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:00:32.853+03	2021-05-19 23:00:32.865+03	
80030c8b-785d-efcd-f17d-861fe30bec97	2021-05-19 23:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:00:42.853+03	2021-05-19 23:00:42.864+03	
c7367ea6-5b49-41e7-f46e-1e46855030a2	2021-05-19 23:00:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:00:52.853+03	2021-05-19 23:00:52.861+03	
f95a6228-a59c-3c13-c861-6b2715cc7b61	2021-05-19 23:01:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:01:02.853+03	2021-05-19 23:01:02.864+03	
b42bc425-7002-ddd0-74f8-57e5210dbf59	2021-05-20 01:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:54:57.853+03	2021-05-20 01:54:57.864+03	
cf166bdd-4fa6-5608-a0e1-5bc401aa39ac	2021-05-19 22:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:29:48.853+03	2021-05-19 22:29:48.86+03	
3f8cca34-6010-ad3c-4808-5dc5eb3a4c50	2021-05-19 22:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:41:15.853+03	2021-05-19 22:41:15.861+03	
b83cb2fa-f159-a9cc-0dfe-c2a73121341c	2021-05-19 22:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 22:30:00.853+03	2021-05-19 22:30:00.857+03	ERROR
29f3d4df-c25b-840f-f810-e80294a2bc48	2021-05-19 22:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:30:19.853+03	2021-05-19 22:30:19.859+03	
449fc445-15fe-b17c-3c78-d513af3aa3bf	2021-05-19 22:41:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:41:37.853+03	2021-05-19 22:41:37.861+03	
8e79dfd9-31de-68ba-cb63-6f1430e6d94d	2021-05-19 22:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:30:40.853+03	2021-05-19 22:30:40.86+03	
94e2f2fe-d069-931f-832a-ce5a314e3ac1	2021-05-19 22:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:31:00.853+03	2021-05-19 22:31:00.86+03	
b42b204f-413d-7b7d-3410-0b343ff69c94	2021-05-19 22:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:41:57.853+03	2021-05-19 22:41:57.86+03	
8f7763a3-ac11-6d04-92db-6c9cf2cbd527	2021-05-19 22:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:31:20.853+03	2021-05-19 22:31:20.859+03	
b4886713-4012-757b-1b0b-04f16820fac6	2021-05-19 22:31:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:31:41.853+03	2021-05-19 22:31:41.859+03	
baf12e16-141f-4060-0516-8c8efb012949	2021-05-19 22:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:42:18.852+03	2021-05-19 22:42:18.859+03	
18470869-35cd-9421-fcc0-bba14a541d7a	2021-05-19 22:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:32:02.853+03	2021-05-19 22:32:02.863+03	
76327fd4-0c54-6ade-5daf-14a2ac966e3a	2021-05-19 22:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:32:23.853+03	2021-05-19 22:32:23.86+03	
e8fdd38f-0baf-6e38-1cd6-0d5ef8f9bdf0	2021-05-19 22:42:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:42:38.853+03	2021-05-19 22:42:38.863+03	
aba90834-3de5-b9e3-17f7-e40580973490	2021-05-19 22:42:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:42:58.853+03	2021-05-19 22:42:58.86+03	
dcab251b-409d-b15e-00b0-7d44ebf86785	2021-05-19 22:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:43:18.853+03	2021-05-19 22:43:18.862+03	
ed085897-270c-7acf-5104-240873930eec	2021-05-19 22:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:43:39.852+03	2021-05-19 22:43:39.872+03	
04333645-dbf0-67da-886c-f5b3e2629850	2021-05-19 22:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:43:59.852+03	2021-05-19 22:43:59.859+03	
49ab6929-d338-b786-0cb0-fdf493ce5222	2021-05-19 22:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:44:19.853+03	2021-05-19 22:44:19.859+03	
8f27989f-77c4-dfb8-4937-5e781885d884	2021-05-19 22:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:44:40.853+03	2021-05-19 22:44:40.86+03	
35beded3-f934-52c2-5517-540cd37d9544	2021-05-19 22:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:45:00.853+03	2021-05-19 22:45:00.86+03	
95a84af0-1af5-6211-5a75-6eeb0b6e0261	2021-05-19 22:45:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:45:21.852+03	2021-05-19 22:45:21.86+03	
642f024a-e4ec-38f0-8238-485eddb81980	2021-05-19 22:45:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:45:41.854+03	2021-05-19 22:45:41.861+03	
a5058866-05f0-d3b9-0cd0-0f9286ed2a8b	2021-05-19 22:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:46:02.853+03	2021-05-19 22:46:02.863+03	
38fbd87c-800b-8994-71dd-33ea34fe74dd	2021-05-19 22:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:46:23.853+03	2021-05-19 22:46:23.86+03	
3f334774-eb34-82e5-849e-257a6e35c7db	2021-05-19 22:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:46:44.852+03	2021-05-19 22:46:44.859+03	
94511543-ad15-7c30-db7e-344b1652528c	2021-05-19 22:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:47:04.853+03	2021-05-19 22:47:04.861+03	
e01c064a-d24b-4629-249c-014a3acbfaaa	2021-05-19 22:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:47:24.853+03	2021-05-19 22:47:24.861+03	
7529bbbe-dbcf-e85b-ef4b-f7eaf44c3396	2021-05-19 22:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:47:45.853+03	2021-05-19 22:47:45.861+03	
5b51e1d3-9c0a-af78-b5c4-5ea129029f58	2021-05-19 22:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:48:06.853+03	2021-05-19 22:48:06.864+03	
2097908e-c2bd-e3e8-3c06-a60665299834	2021-05-19 22:48:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:48:26.854+03	2021-05-19 22:48:26.875+03	
55e000ae-e90a-46ca-3a4c-33c95db2587f	2021-05-19 22:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:48:47.853+03	2021-05-19 22:48:47.861+03	
ef2b4dc1-d3cc-caf3-2079-efc20d195e13	2021-05-19 22:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:49:07.853+03	2021-05-19 22:49:07.862+03	
a21b4436-7b05-9e29-d93b-268e214a2321	2021-05-19 22:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:49:28.852+03	2021-05-19 22:49:28.859+03	
764f3532-db9c-76c0-b03b-d42f8c1a1d3d	2021-05-19 22:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:49:48.853+03	2021-05-19 22:49:48.861+03	
7432ea08-c160-9ff6-74a9-905774477587	2021-05-19 22:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 22:50:00.853+03	2021-05-19 22:50:00.858+03	ERROR
de78141f-5029-dc42-9331-09bf70ace346	2021-05-19 22:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:50:19.853+03	2021-05-19 22:50:19.863+03	
822558e1-4fbe-d52a-aea2-27e7be728d35	2021-05-19 22:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:50:39.853+03	2021-05-19 22:50:39.861+03	
fe0809b2-f605-a3b9-36e1-b56365f60bcc	2021-05-19 22:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:51:00.852+03	2021-05-19 22:51:00.874+03	
870ee0f4-68e0-ed86-0184-cae5d0103929	2021-05-19 22:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:51:20.853+03	2021-05-19 22:51:20.859+03	
243d5097-cedf-8fbc-d50d-16837e6956c0	2021-05-19 22:51:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:51:41.854+03	2021-05-19 22:51:41.861+03	
a36058a2-44d2-32a2-4763-3a540201a0fd	2021-05-19 22:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:52:02.853+03	2021-05-19 22:52:02.906+03	
90e1812a-7d99-7880-da7f-3ae05f0e9313	2021-05-19 22:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:52:24.853+03	2021-05-19 22:52:24.87+03	
f2c9efc6-f3ec-226c-ec85-111866704f13	2021-05-19 22:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:52:44.853+03	2021-05-19 22:52:44.86+03	
7dc2245f-6dbd-4284-4ff2-4dd2f38e5397	2021-05-19 22:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:53:04.853+03	2021-05-19 22:53:04.863+03	
fe2be83c-3b64-ac6f-e274-456c5e9a45f1	2021-05-19 22:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:53:25.852+03	2021-05-19 22:53:25.859+03	
f469352c-fc0e-08ff-3aee-80e3e73f9a4c	2021-05-19 22:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:53:45.853+03	2021-05-19 22:53:45.859+03	
a8cf3674-29fb-6038-0bcc-6d0ccfd93674	2021-05-19 22:54:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:54:06.854+03	2021-05-19 22:54:06.862+03	
82400ecf-4847-ca71-41cf-e53dc8aeabe9	2021-05-19 22:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:54:28.853+03	2021-05-19 22:54:28.859+03	
9cf0b5a6-6916-8ead-d68d-f6f9d6f4cfaa	2021-05-19 22:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:54:50.853+03	2021-05-19 22:54:50.867+03	
8fe58261-b119-90fb-a996-20890e855501	2021-05-19 22:55:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:55:11.852+03	2021-05-19 22:55:11.871+03	
75f96696-bff1-7b41-db0c-3d0e9711329b	2021-05-19 22:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:55:32.852+03	2021-05-19 22:55:32.871+03	
222b4ab2-f16f-be26-0e09-1de5ab8e735f	2021-05-19 22:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:55:52.852+03	2021-05-19 22:55:52.86+03	
6e71430b-fa6d-e5d1-a2fc-638cc6c11682	2021-05-19 22:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:56:12.853+03	2021-05-19 22:56:12.861+03	
0e892481-58c2-9c9d-002b-479151b74c02	2021-05-19 22:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:56:33.853+03	2021-05-19 22:56:33.86+03	
268b2bdc-df2b-2f3d-1775-f84b4158946d	2021-05-19 22:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:56:55.853+03	2021-05-19 22:56:55.859+03	
59af44de-5636-9073-9687-c69d416765be	2021-05-19 22:57:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:57:16.853+03	2021-05-19 22:57:16.873+03	
c36737fa-f177-2d55-b60f-a1a3368b2d6f	2021-05-19 22:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:57:37.852+03	2021-05-19 22:57:37.86+03	
42b1a4a5-4f09-4c0f-35f4-8996e580a556	2021-05-19 22:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:57:58.852+03	2021-05-19 22:57:58.859+03	
708f409f-dda9-02b6-8000-75f397b11fc1	2021-05-19 22:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:58:19.853+03	2021-05-19 22:58:19.861+03	
05cf2a06-4e60-3024-4b3e-1c12c52d2511	2021-05-19 22:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:58:39.853+03	2021-05-19 22:58:39.861+03	
5e8eaa12-4876-4e33-a827-0e5e3f2511ca	2021-05-19 22:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:59:00.853+03	2021-05-19 22:59:00.86+03	
dadb877b-5d0c-c2b4-2ee2-9fa40ba72e0c	2021-05-19 22:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 22:59:22.852+03	2021-05-19 22:59:22.859+03	
f147e0cc-3bbe-447b-d16e-749b6300b83d	2021-05-20 00:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:03:50.853+03	2021-05-20 00:03:50.867+03	
4c384b37-4071-9653-3399-16a5890c3625	2021-05-19 23:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:01:12.853+03	2021-05-19 23:01:12.864+03	
4c1ed6b4-5d9e-0acf-e9ff-d7cf92004d9a	2021-05-20 07:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:03:23.853+03	2021-05-20 07:03:23.861+03	
41d515b0-068c-f4dd-202a-9dcbb2cc0e34	2021-05-19 23:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:01:33.852+03	2021-05-19 23:01:33.86+03	
99bb3d93-7727-563e-6668-b17d5ed1b659	2021-05-20 00:04:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:04:11.853+03	2021-05-20 00:04:11.861+03	
cf9ceab7-2c90-6f70-70a6-6e8baedb416c	2021-05-19 23:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:01:53.853+03	2021-05-19 23:01:53.86+03	
d44baeed-0888-2c59-7bb1-0ba7280900d4	2021-05-19 23:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:02:13.853+03	2021-05-19 23:02:13.862+03	
e94f2bb3-eb0d-c8be-7b92-e3fefc3c8221	2021-05-20 00:04:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:04:31.854+03	2021-05-20 00:04:31.86+03	
7e1d5a5b-ccf0-ef83-3157-fb71832f0c8e	2021-05-19 23:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:02:34.852+03	2021-05-19 23:02:34.86+03	
73521f33-5b44-a65b-6dc3-d713cb930a0c	2021-05-19 23:03:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:03:06.852+03	2021-05-19 23:03:06.86+03	
37423c4e-e3c1-171f-1ded-b6e6cada7d3b	2021-05-20 00:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:04:52.852+03	2021-05-20 00:04:52.859+03	
7ffab9c3-d825-78c1-6bfe-1ddcc83f61c3	2021-05-19 23:03:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:03:26.853+03	2021-05-19 23:03:26.86+03	
e47b403e-7a4b-375f-f3ec-6498aad2c2a7	2021-05-19 23:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:03:48.853+03	2021-05-19 23:03:48.862+03	
ad9d6f5a-c342-38da-b834-f4354c940bf6	2021-05-20 00:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:05:12.852+03	2021-05-20 00:05:12.859+03	
f25fabca-4a65-22a9-7d9c-29e361c4ace7	2021-05-19 23:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:04:10.852+03	2021-05-19 23:04:10.863+03	
47a88910-97d4-b870-4325-d621403988cb	2021-05-19 23:04:30.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:04:30.855+03	2021-05-19 23:04:30.868+03	
9482bbb2-0ac2-b101-91f1-41dbb5acd1c5	2021-05-20 00:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:05:32.852+03	2021-05-20 00:05:32.874+03	
7f3b3fc0-bd91-588b-9d5c-154c62e85efc	2021-05-19 23:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:04:52.852+03	2021-05-19 23:04:52.872+03	
47ddb2e0-4457-ca4b-f1c9-207732d1b84c	2021-05-19 23:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:05:12.853+03	2021-05-19 23:05:12.86+03	
3ac87e43-2f08-446d-dbb9-93be38816d1f	2021-05-20 00:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:05:52.853+03	2021-05-20 00:05:52.859+03	
d977b6df-0ac8-857b-a096-6eccffaecc98	2021-05-19 23:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:05:33.853+03	2021-05-19 23:05:33.859+03	
8e0137df-8b47-876a-1753-5a359806351c	2021-05-19 23:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:05:53.853+03	2021-05-19 23:05:53.864+03	
af56be50-657a-c47b-5b10-9a72aea20bc7	2021-05-20 00:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:06:12.853+03	2021-05-20 00:06:12.861+03	
95269606-594b-ffdc-7a60-89772a7f2877	2021-05-19 23:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:06:13.853+03	2021-05-19 23:06:13.86+03	
ae107515-a843-993a-95ec-279333402a9b	2021-05-19 23:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:06:34.852+03	2021-05-19 23:06:34.859+03	
05a528c2-0db3-44c3-caae-7cc4593b340b	2021-05-20 00:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:06:33.853+03	2021-05-20 00:06:33.86+03	
9f56d354-1686-59b9-48f1-94b359068bb4	2021-05-19 23:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:06:54.853+03	2021-05-19 23:06:54.861+03	
97157301-e4e8-fb25-79f4-494eef8c5735	2021-05-19 23:07:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:07:14.853+03	2021-05-19 23:07:14.86+03	
ff4ed107-5d1f-5dfd-35bb-946831cf6e40	2021-05-20 00:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:06:53.853+03	2021-05-20 00:06:53.862+03	
234c350b-0fcf-17f3-f5f8-c1c31139e089	2021-05-19 23:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:07:35.853+03	2021-05-19 23:07:35.864+03	
38c09c23-151f-dbf4-7837-d24aa24f5781	2021-05-19 23:07:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:07:56.852+03	2021-05-19 23:07:56.86+03	
797dc6cd-f09b-3d76-9f77-6439fdc3830d	2021-05-20 00:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:07:13.853+03	2021-05-20 00:07:13.861+03	
7053e944-4984-ea47-255e-6e84fbcd58ff	2021-05-19 23:08:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:08:16.854+03	2021-05-19 23:08:16.862+03	
f287e560-786b-2ba2-d734-0535f7f4d037	2021-05-19 23:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:08:37.853+03	2021-05-19 23:08:37.86+03	
ff97d810-4d4d-f644-b78a-fbd38c214c4d	2021-05-20 00:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:07:34.853+03	2021-05-20 00:07:34.861+03	
d6ade7e0-f724-d06d-b3c9-ed8cbdb6baf0	2021-05-20 00:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:07:55.852+03	2021-05-20 00:07:55.859+03	
4ca75353-4499-e25a-c206-a09ea4262267	2021-05-20 00:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:08:15.853+03	2021-05-20 00:08:15.861+03	
3a737be0-c443-5d70-5797-4f22d2e90974	2021-05-20 00:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:08:37.853+03	2021-05-20 00:08:37.86+03	
5ac1899d-d0d2-3e35-5b4a-b655c56d7f3c	2021-05-20 00:08:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:08:57.853+03	2021-05-20 00:08:57.86+03	
4f9ed01a-39f5-4776-5b8c-bf01291dc6fc	2021-05-20 00:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:09:17.853+03	2021-05-20 00:09:17.86+03	
a3687df2-80bd-a413-7b8e-2de438e8f1af	2021-05-20 00:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:09:38.852+03	2021-05-20 00:09:38.873+03	
137ee51f-32d6-b4df-b7e3-a0909ae641ec	2021-05-20 00:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:09:48.852+03	2021-05-20 00:09:48.858+03	
a6a1d449-c1a6-0378-12fb-b00dbc9a636e	2021-05-20 00:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 00:10:00.853+03	2021-05-20 00:10:00.857+03	ERROR
2256d753-da4c-477b-f6af-5a40464bc90c	2021-05-20 00:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:10:18.852+03	2021-05-20 00:10:18.861+03	
b9288fac-af1a-50b5-461d-fe655f594a1a	2021-05-20 00:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:10:38.853+03	2021-05-20 00:10:38.86+03	
d5f9acdf-a827-6a08-9df0-62b52e9fb8c0	2021-05-20 00:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:10:59.852+03	2021-05-20 00:10:59.859+03	
7d652267-3e8f-65b8-4ffe-c2161d284f52	2021-05-20 00:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:11:19.852+03	2021-05-20 00:11:19.862+03	
2cbf9e7d-8d8c-229c-f064-8ba84456632e	2021-05-20 00:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:11:39.852+03	2021-05-20 00:11:39.858+03	
0b399c3c-d2ff-9d7e-088d-7bbebc02b1e1	2021-05-20 00:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:11:59.853+03	2021-05-20 00:11:59.859+03	
f0ab8299-f59f-c3db-d263-e88f9f3d6813	2021-05-20 00:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:12:20.852+03	2021-05-20 00:12:20.861+03	
0b38dc02-b5d7-1c2c-5ee7-ab6878b09b65	2021-05-20 00:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:12:41.853+03	2021-05-20 00:12:41.86+03	
82fed1e2-9518-b0e5-f42b-54c12fd169b3	2021-05-20 00:13:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:13:01.853+03	2021-05-20 00:13:01.893+03	
76fda59b-eded-ea76-d30f-87e6d4c7cd3b	2021-05-20 00:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:13:22.852+03	2021-05-20 00:13:22.859+03	
633bd756-bf75-7276-9015-cac2ec97bd02	2021-05-20 00:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:13:42.852+03	2021-05-20 00:13:42.86+03	
34ec8dcd-1356-ee7a-a5cf-5c5c939a1889	2021-05-20 00:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:14:03.853+03	2021-05-20 00:14:03.871+03	
ca36e7e9-5236-460f-9200-ba19c832cbc2	2021-05-20 00:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:14:24.852+03	2021-05-20 00:14:24.859+03	
b694e71a-fb64-a23c-e4f6-eb80a40ae537	2021-05-20 00:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:14:34.852+03	2021-05-20 00:14:34.861+03	
08607430-040c-8b35-fa18-0c84fea793b3	2021-05-20 00:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:14:44.852+03	2021-05-20 00:14:44.86+03	
f91ed649-ae30-3771-157d-2f54a332c757	2021-05-20 00:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:14:54.853+03	2021-05-20 00:14:54.861+03	
a1f21d56-a162-6444-0222-fdc0232fbe26	2021-05-20 00:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:15:05.852+03	2021-05-20 00:15:05.861+03	
698554c7-8d2d-a73d-e270-f1d25365c539	2021-05-20 00:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:15:15.853+03	2021-05-20 00:15:15.859+03	
f5a92241-f09f-e880-c917-c64b33a82bf5	2021-05-20 00:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:15:26.852+03	2021-05-20 00:15:26.861+03	
9b33a090-f057-77f6-517c-1e687fb16bd8	2021-05-20 00:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:15:36.852+03	2021-05-20 00:15:36.859+03	
5a8f0aba-c614-0b5d-bfbf-f020fd277314	2021-05-20 00:15:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:15:46.852+03	2021-05-20 00:15:46.861+03	
c0ed78bc-ed8f-2409-712b-e1c55c344c1f	2021-05-19 23:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:01:22.853+03	2021-05-19 23:01:22.862+03	
32ea24c7-4796-de62-1113-7923be51bb19	2021-05-19 23:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:01:43.853+03	2021-05-19 23:01:43.86+03	
3dd18df9-7186-02ce-8456-5ffbd453b7d5	2021-05-19 23:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:02:03.853+03	2021-05-19 23:02:03.863+03	
fe083dbb-daed-6d12-3e9b-194f8d26cd26	2021-05-19 23:02:24.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:02:24.852+03	2021-05-19 23:02:24.861+03	
a5ef83fe-93f4-d7f2-f24d-a651b345b4f5	2021-05-19 23:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:02:44.853+03	2021-05-19 23:02:44.86+03	
28012f65-ac7b-9035-94c3-3f23ad2ea9a0	2021-05-19 23:02:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:02:55.853+03	2021-05-19 23:02:55.862+03	
ef84d198-69c6-3111-52b4-8fd7e5ca252e	2021-05-19 23:03:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:03:16.853+03	2021-05-19 23:03:16.86+03	
85205b2a-7743-e35c-e4da-aaadb62ccfc2	2021-05-19 23:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:03:37.853+03	2021-05-19 23:03:37.859+03	
3f273ea3-ca17-6103-d9e7-fe9a7df6c50e	2021-05-19 23:03:59.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:03:59.855+03	2021-05-19 23:03:59.87+03	
986a86f0-2416-0bba-e7ac-a00026fd4ef0	2021-05-19 23:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:04:20.853+03	2021-05-19 23:04:20.871+03	
674be2bb-a67f-179f-0d26-59d928f8ef86	2021-05-19 23:04:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:04:41.854+03	2021-05-19 23:04:41.86+03	
30eb8b03-5b48-adf5-41ab-9e19d8a08eee	2021-05-19 23:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:05:02.853+03	2021-05-19 23:05:02.874+03	
5b8bfb01-4c0e-0878-f155-7c7dcb0be37e	2021-05-19 23:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:05:23.852+03	2021-05-19 23:05:23.86+03	
2c45fa0a-3765-247e-764a-2824b09ff4f3	2021-05-19 23:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:05:43.853+03	2021-05-19 23:05:43.862+03	
ac340990-adc3-1872-aa1d-b7661c24190d	2021-05-19 23:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:06:03.853+03	2021-05-19 23:06:03.862+03	
5b8b3fb9-deac-6a19-8eed-bcc6f526574d	2021-05-19 23:06:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:06:23.853+03	2021-05-19 23:06:23.861+03	
a3584d3b-270a-d800-f212-0f1feb29cc60	2021-05-19 23:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:06:44.853+03	2021-05-19 23:06:44.869+03	
c577f119-a53d-3b42-2e01-e644846c3348	2021-05-19 23:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:07:04.853+03	2021-05-19 23:07:04.86+03	
155c9389-e401-1a1a-5f34-ba2a0b46b4d0	2021-05-19 23:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:07:25.853+03	2021-05-19 23:07:25.87+03	
6b6438d1-8cba-cb88-ca1d-6eb66cf789c4	2021-05-19 23:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:07:45.853+03	2021-05-19 23:07:45.86+03	
9cada071-b389-47a4-393d-1ed3b26553b0	2021-05-19 23:08:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:08:06.854+03	2021-05-19 23:08:06.868+03	
e4d7030d-d6bf-6ee4-2866-d8300d42e7c4	2021-05-19 23:08:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:08:26.854+03	2021-05-19 23:08:26.873+03	
a076d462-36e7-ef1b-e73f-ecafd25cdc85	2021-05-19 23:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:08:47.853+03	2021-05-19 23:08:47.865+03	
f677bf12-a980-0d05-3cfa-406002245861	2021-05-19 23:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:08:57.853+03	2021-05-19 23:08:57.872+03	
c4ca4977-f092-8ad3-5a1d-fc36e0ad8574	2021-05-19 23:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:09:07.853+03	2021-05-19 23:09:07.859+03	
4d2ec2c2-9302-6bed-9247-348acd3f522a	2021-05-19 23:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:09:17.853+03	2021-05-19 23:09:17.879+03	
50e5cc2d-522a-bce4-ead3-565d38b1b40a	2021-05-19 23:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:09:27.853+03	2021-05-19 23:09:27.859+03	
1ac8e2ab-3e51-ec8a-a6e9-cd7da3571624	2021-05-19 23:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:09:37.853+03	2021-05-19 23:09:37.862+03	
48528272-e9c9-c3a1-d186-4c7b722d8020	2021-05-19 23:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:09:47.853+03	2021-05-19 23:09:47.866+03	
2b6710e6-dc87-bef6-3e15-9dc7b33592ee	2021-05-19 23:09:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:09:57.853+03	2021-05-19 23:09:57.861+03	
b4f65de9-ebff-159d-80b7-713985ba89b1	2021-05-19 23:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 23:10:00.852+03	2021-05-19 23:10:00.858+03	ERROR
62216955-59d6-08ca-7720-edb2c7bb342c	2021-05-19 23:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:10:07.853+03	2021-05-19 23:10:07.86+03	
eec34bc1-ada9-31d3-d8df-53d2fe2fb223	2021-05-19 23:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:10:18.853+03	2021-05-19 23:10:18.874+03	
933580ef-f34b-a501-8bb5-ff8ef18eedac	2021-05-19 23:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:10:29.852+03	2021-05-19 23:10:29.86+03	
d63442cb-3ee4-52c3-8e02-2c724c383773	2021-05-19 23:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:10:39.852+03	2021-05-19 23:10:39.86+03	
d633f600-9aed-1f1c-c69b-bcdb2a21e464	2021-05-19 23:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:10:49.852+03	2021-05-19 23:10:49.859+03	
821ed28a-79be-5c39-44f5-f5ae6ae25ef3	2021-05-19 23:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:10:59.853+03	2021-05-19 23:10:59.865+03	
a879a208-61cb-70d2-d6f4-66398332c9c0	2021-05-19 23:11:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:11:10.853+03	2021-05-19 23:11:10.86+03	
8da00ad1-0808-bf0b-aeae-646a86b95074	2021-05-19 23:11:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:11:20.853+03	2021-05-19 23:11:20.859+03	
ad57f88f-b97b-8727-1a73-0ab025e9d7e6	2021-05-19 23:11:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:11:31.852+03	2021-05-19 23:11:31.859+03	
64bd9edd-4f8e-8429-6b51-596f4b492a24	2021-05-19 23:11:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:11:41.852+03	2021-05-19 23:11:41.859+03	
63151e12-f5d1-b093-25c2-f7a426e970ba	2021-05-19 23:11:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:11:51.854+03	2021-05-19 23:11:51.861+03	
a8104593-dfdc-5158-b1ea-e4749182d75b	2021-05-19 23:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:12:02.853+03	2021-05-19 23:12:02.861+03	
0dbf5d76-b249-a691-3744-1e6c934446e8	2021-05-19 23:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:12:12.853+03	2021-05-19 23:12:12.879+03	
ec5d9cfb-dcd0-74a3-8b9a-db9246c63c97	2021-05-19 23:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:12:23.852+03	2021-05-19 23:12:23.863+03	
7951c227-0300-b62b-d565-35bc6ead6f39	2021-05-19 23:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:12:33.853+03	2021-05-19 23:12:33.869+03	
2417e5b7-2279-555e-9013-0d2dd77edd70	2021-05-19 23:12:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:12:43.853+03	2021-05-19 23:12:43.86+03	
617239f0-9d87-de9c-7f33-cc4921e7f4ff	2021-05-19 23:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:12:53.853+03	2021-05-19 23:12:53.873+03	
8686f35e-5413-4bbe-cc65-6e3f42a08334	2021-05-19 23:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:13:04.852+03	2021-05-19 23:13:04.86+03	
430eca33-4624-6a14-0d96-beff84e0e55a	2021-05-19 23:13:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:13:14.853+03	2021-05-19 23:13:14.86+03	
d2d8fa84-7c92-4426-c4a4-980b36d697fc	2021-05-19 23:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:13:25.852+03	2021-05-19 23:13:25.859+03	
5030da70-4260-cabc-ab2f-39b6ddb844be	2021-05-19 23:13:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:13:35.853+03	2021-05-19 23:13:35.861+03	
c64afdff-e35f-74cf-0502-94de3dd60569	2021-05-19 23:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:13:45.853+03	2021-05-19 23:13:45.864+03	
ee5eee71-05df-36a8-8e1d-6cf7aefe84ae	2021-05-19 23:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:13:55.853+03	2021-05-19 23:13:55.872+03	
69456060-4c35-29e9-0f5d-a922e80f81c6	2021-05-19 23:14:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:14:06.852+03	2021-05-19 23:14:06.859+03	
7eb87025-4231-4b5a-c763-ab97b78178d3	2021-05-19 23:14:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:14:16.852+03	2021-05-19 23:14:16.859+03	
0dece348-4c03-97e0-d2f4-97e6c99cb6cd	2021-05-19 23:14:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:14:26.852+03	2021-05-19 23:14:26.861+03	
a2f78517-eb6b-22e5-9e96-aaaaab45fd61	2021-05-19 23:14:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:14:36.852+03	2021-05-19 23:14:36.859+03	
74e6c10f-688a-e922-d23d-01fa507f741b	2021-05-19 23:14:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:14:46.854+03	2021-05-19 23:14:46.861+03	
bb865750-1518-8b8c-6ad0-44191862bc19	2021-05-19 23:14:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:14:56.854+03	2021-05-19 23:14:56.862+03	
fd7d3bd1-bb10-8199-13ad-a758316a214d	2021-05-19 23:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:15:07.852+03	2021-05-19 23:15:07.86+03	
50fc309b-b920-8c76-8ac4-776f44f091cf	2021-05-19 23:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:15:17.852+03	2021-05-19 23:15:17.874+03	
fa9872b0-5582-3610-fa9c-db53f1df9d91	2021-05-19 23:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:15:27.852+03	2021-05-19 23:15:27.859+03	
d3241475-112d-4f68-92ac-d1abbe0dbbac	2021-05-20 01:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:55:08.852+03	2021-05-20 01:55:08.86+03	
f683b796-5afc-010f-0321-bc870fe50745	2021-05-19 23:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:15:37.853+03	2021-05-19 23:15:37.861+03	
53fde56f-cbc6-3802-499f-7361a37f4945	2021-05-20 00:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:04:00.853+03	2021-05-20 00:04:00.86+03	
982512be-0997-02ed-72d6-75c58bbd6e62	2021-05-19 23:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:15:58.852+03	2021-05-19 23:15:58.861+03	
7fc8597f-d37d-8b1e-2ba2-1c73fedbcca8	2021-05-19 23:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:16:18.852+03	2021-05-19 23:16:18.86+03	
aa93f392-67a1-3219-1fc0-b826ce8b9133	2021-05-20 00:04:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:04:21.853+03	2021-05-20 00:04:21.86+03	
e93d2eb5-2094-4053-2ebc-df862f2ef135	2021-05-19 23:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:16:38.852+03	2021-05-19 23:16:38.859+03	
1344d37c-6f93-8941-b9c3-ed195e7a158b	2021-05-19 23:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:16:58.852+03	2021-05-19 23:16:58.865+03	
c8512c7b-f9c5-9d3e-b027-e04457cff5a8	2021-05-20 00:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:04:42.852+03	2021-05-20 00:04:42.858+03	
5ac557ca-8e3d-7909-0b3f-606472c97168	2021-05-19 23:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:17:18.853+03	2021-05-19 23:17:18.86+03	
44e5a8da-0b1c-4dc8-19e6-7c00e012bc90	2021-05-19 23:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:17:40.852+03	2021-05-19 23:17:40.86+03	
f0a613c9-4f2e-20bc-f6df-d6eb9512f4dd	2021-05-20 00:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:05:02.852+03	2021-05-20 00:05:02.859+03	
079c0e28-fb49-29c2-790d-8ffdcdbe8aac	2021-05-19 23:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:18:00.852+03	2021-05-19 23:18:00.859+03	
2bcff2f0-95ab-ef48-0cbc-72f2060b9c28	2021-05-19 23:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:18:20.853+03	2021-05-19 23:18:20.86+03	
6ceaaa26-00de-3ab2-6bad-f517f61e8352	2021-05-20 00:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:05:22.852+03	2021-05-20 00:05:22.859+03	
5e6edf23-a4a5-d9ff-9f1e-6b0b9dd317b1	2021-05-19 23:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:18:42.852+03	2021-05-19 23:18:42.859+03	
41654367-7b0b-d066-d2eb-5928a95be202	2021-05-19 23:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:19:03.852+03	2021-05-19 23:19:03.86+03	
ef865d15-f562-39e1-b7e5-2b100c5f79b1	2021-05-20 00:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:05:42.853+03	2021-05-20 00:05:42.859+03	
c9d57df4-faf3-f072-2e72-a3762cf5d850	2021-05-19 23:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:19:24.852+03	2021-05-19 23:19:24.86+03	
ffd044f5-c282-c980-70b3-b0032cd7c9f2	2021-05-19 23:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:19:44.853+03	2021-05-19 23:19:44.86+03	
1fd3ccf7-c420-6595-b354-8864e77516e4	2021-05-20 00:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:06:02.853+03	2021-05-20 00:06:02.86+03	
f076a130-a281-5072-00da-e8032c3cb265	2021-05-19 23:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 23:20:00.853+03	2021-05-19 23:20:00.858+03	ERROR
b1ebaa0e-6616-ff35-0d8a-7e23ab3966d0	2021-05-19 23:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:20:15.853+03	2021-05-19 23:20:15.86+03	
6c3315fe-64e6-93b9-e861-e1a11f2e2f31	2021-05-20 00:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:06:23.853+03	2021-05-20 00:06:23.869+03	
c4beca4a-499b-6b8a-a93a-3ec60c14555d	2021-05-19 23:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:20:35.853+03	2021-05-19 23:20:35.862+03	
6b6dbcb8-f95c-5d54-0efa-d668dc9cd085	2021-05-19 23:20:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:20:55.853+03	2021-05-19 23:20:55.861+03	
e1e7e21b-3378-bad1-5cda-1a8163d8844a	2021-05-20 00:06:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:06:43.853+03	2021-05-20 00:06:43.861+03	
4206a595-e86d-225a-958b-fd287ac0347c	2021-05-19 23:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:21:15.853+03	2021-05-19 23:21:15.861+03	
616d21aa-f3a7-0b67-41e1-57123a7e9c31	2021-05-19 23:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:21:36.852+03	2021-05-19 23:21:36.86+03	
ec639554-4058-ae09-f5a4-b4d770a29c3b	2021-05-20 00:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:07:03.853+03	2021-05-20 00:07:03.86+03	
1ec56839-ac4b-a004-7ed9-66abd3ca7291	2021-05-19 23:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:21:57.852+03	2021-05-19 23:21:57.86+03	
9c0e5a64-337d-1e09-9bfc-5b8cbdcc9a00	2021-05-19 23:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:22:18.853+03	2021-05-19 23:22:18.862+03	
f2bda786-dc0d-cc9a-f3ac-1814c41ba36d	2021-05-20 00:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:07:23.853+03	2021-05-20 00:07:23.86+03	
9f1edfa5-a923-253e-99cd-4c3feba5addd	2021-05-19 23:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:22:40.852+03	2021-05-19 23:22:40.858+03	
fd661fc8-fb13-c8d4-2c50-e473e37eb25d	2021-05-19 23:23:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:23:00.853+03	2021-05-19 23:23:00.86+03	
e8ab893b-0c07-5d66-5840-65c03c68229a	2021-05-20 00:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:07:45.852+03	2021-05-20 00:07:45.86+03	
a2c70e40-09ad-08bf-acf3-c7601c5929a5	2021-05-19 23:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:23:22.852+03	2021-05-19 23:23:22.86+03	
76b18547-4f3f-ae97-0123-567e0896d422	2021-05-19 23:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:23:43.852+03	2021-05-19 23:23:43.863+03	
c2e2d0ee-fff8-9732-c87e-8f6b14ea2507	2021-05-20 00:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:08:05.853+03	2021-05-20 00:08:05.86+03	
a1440595-680f-7851-2070-71db36a3fbd0	2021-05-19 23:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:24:03.853+03	2021-05-19 23:24:03.86+03	
d6e8074a-8aeb-9449-457a-58c69e353423	2021-05-19 23:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:24:25.853+03	2021-05-19 23:24:25.861+03	
ec1ee287-9b44-8e52-da34-90de8f2abc02	2021-05-20 00:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:08:26.853+03	2021-05-20 00:08:26.86+03	
0dd558e8-582a-2859-379d-56ea217cc48c	2021-05-19 23:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:24:45.853+03	2021-05-19 23:24:45.861+03	
28aab773-7a78-7fd7-7d2a-6e96f071438a	2021-05-19 23:25:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:25:06.852+03	2021-05-19 23:25:06.859+03	
c50c9fa6-0678-96dc-7d5f-2b6d98d1944d	2021-05-20 00:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:08:47.853+03	2021-05-20 00:08:47.86+03	
8fae9557-dee9-bcd6-29e9-904bf789cbac	2021-05-19 23:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:25:27.853+03	2021-05-19 23:25:27.861+03	
7ce4fc16-fcf0-3aa2-81cd-c926e80373a2	2021-05-19 23:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:25:47.853+03	2021-05-19 23:25:47.86+03	
7c21a481-cd76-15e0-097f-c01bcf57c980	2021-05-19 23:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:26:08.853+03	2021-05-19 23:26:08.859+03	
a89115d2-8ccd-720e-4538-8476b95b247d	2021-05-19 23:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:26:28.853+03	2021-05-19 23:26:28.859+03	
77efdf27-3021-f06e-8c7b-e68ce128fb30	2021-05-19 23:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:26:49.853+03	2021-05-19 23:26:49.86+03	
c50ea985-159f-5317-79cf-966e692f6989	2021-05-19 23:27:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:27:09.853+03	2021-05-19 23:27:09.86+03	
348e2d04-5aee-11e4-bd2f-94ba8e370053	2021-05-19 23:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:27:29.853+03	2021-05-19 23:27:29.86+03	
81316d93-ac34-8092-70aa-1f6e8ec04978	2021-05-19 23:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:27:49.853+03	2021-05-19 23:27:49.86+03	
7293a03a-85b3-03fb-9991-402e306090ed	2021-05-19 23:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:28:09.853+03	2021-05-19 23:28:09.859+03	
48c3c55b-5880-1ec2-3414-82804f7b9209	2021-05-19 23:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:28:30.852+03	2021-05-19 23:28:30.859+03	
d6af1c3b-bef3-bebd-1731-aff289b36bb8	2021-05-19 23:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:28:50.853+03	2021-05-19 23:28:50.86+03	
7d958950-cdd3-5f41-05df-0ea7c2f63e19	2021-05-19 23:29:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:29:11.853+03	2021-05-19 23:29:11.86+03	
85fa69d8-c0d4-ea9d-9e84-26c52200abd0	2021-05-19 23:29:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:29:31.853+03	2021-05-19 23:29:31.862+03	
5b87a0b9-9f07-cf8c-be7d-a322f6ce133b	2021-05-19 23:29:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:29:51.853+03	2021-05-19 23:29:51.86+03	
7d0d14d5-4437-bc4b-99f7-291d2ba86552	2021-05-19 23:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:30:02.853+03	2021-05-19 23:30:02.861+03	
05bb9727-335c-cdf2-8ff3-5dd59c12318b	2021-05-19 23:30:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:30:22.853+03	2021-05-19 23:30:22.875+03	
218a6ff2-e5c1-1e8c-f7f1-fbd62444e33a	2021-05-19 23:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:30:42.853+03	2021-05-19 23:30:42.862+03	
51901776-9bdb-4794-bc38-2bb8af7deae0	2021-05-19 23:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:31:02.853+03	2021-05-19 23:31:02.86+03	
5615b5ad-ff5f-f9a8-d209-954b27039dfe	2021-05-19 23:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:31:22.853+03	2021-05-19 23:31:22.859+03	
f8c9c379-d076-c258-5441-2ed2b1914fc2	2021-05-19 23:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:15:47.853+03	2021-05-19 23:15:47.86+03	
89537bc3-640c-94e1-6bca-dec060adcd72	2021-05-19 23:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:16:08.852+03	2021-05-19 23:16:08.859+03	
7b45c608-f2ea-245d-f3e1-92b971b574b2	2021-05-19 23:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:16:28.852+03	2021-05-19 23:16:28.859+03	
a4fe8603-0d4e-ffdc-54d2-014d6e099e15	2021-05-19 23:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:16:48.852+03	2021-05-19 23:16:48.859+03	
3fa1f02f-ffe0-216f-54ce-f6dcef95b968	2021-05-19 23:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:17:08.852+03	2021-05-19 23:17:08.862+03	
1723f18d-46e9-b2e9-338e-d75f1993be14	2021-05-19 23:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:17:29.853+03	2021-05-19 23:17:29.86+03	
70328e8e-0b70-7adb-f4d0-8a1dac0eaa4a	2021-05-19 23:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:17:50.852+03	2021-05-19 23:17:50.86+03	
c8a7c303-55a5-f9bd-f809-d91f566c8ea7	2021-05-19 23:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:18:10.852+03	2021-05-19 23:18:10.86+03	
bb541b2b-24ab-2018-705d-64fe650ab6c8	2021-05-19 23:18:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:18:31.854+03	2021-05-19 23:18:31.861+03	
62a2c1fe-dd4b-84ae-17a7-acbf819f16b4	2021-05-19 23:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:18:52.853+03	2021-05-19 23:18:52.86+03	
5413e759-a9c9-2065-cffb-a1d5ca0b17b4	2021-05-19 23:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:19:13.853+03	2021-05-19 23:19:13.861+03	
66ab9b66-c005-787a-1cb1-f87561f1d593	2021-05-19 23:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:19:34.852+03	2021-05-19 23:19:34.859+03	
81186b73-e268-0219-7120-5b0db31f445c	2021-05-19 23:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:19:54.853+03	2021-05-19 23:19:54.86+03	
f6cc4f3d-5a46-0137-21cf-26f6e8800180	2021-05-19 23:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:20:05.852+03	2021-05-19 23:20:05.859+03	
1c15ba05-e6dd-7ae8-544e-397d1a29b8f0	2021-05-19 23:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:20:25.853+03	2021-05-19 23:20:25.86+03	
7154c14e-076f-bc08-b64f-b70cb711f777	2021-05-19 23:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:20:45.853+03	2021-05-19 23:20:45.872+03	
a6b93b95-4651-16f8-0863-30f35ded6069	2021-05-19 23:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:21:05.853+03	2021-05-19 23:21:05.864+03	
bad91705-b3a7-49a1-3f8e-92edadd5e791	2021-05-19 23:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:21:26.852+03	2021-05-19 23:21:26.859+03	
54f791d6-0672-f30d-c7a0-191504c25966	2021-05-19 23:21:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:21:46.854+03	2021-05-19 23:21:46.861+03	
effb8557-bdb1-90f2-2cd6-350fcc7ae596	2021-05-19 23:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:22:07.853+03	2021-05-19 23:22:07.86+03	
270d02ed-3b80-6151-babf-f2a9c9bdc5ce	2021-05-19 23:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:22:29.853+03	2021-05-19 23:22:29.862+03	
e927a840-1b3a-416c-6677-ed2e80066d5e	2021-05-19 23:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:22:50.852+03	2021-05-19 23:22:50.86+03	
5784f91f-9b1a-eea6-8b1b-144b8b8725cd	2021-05-19 23:23:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:23:11.853+03	2021-05-19 23:23:11.861+03	
90085680-6745-8107-ee93-62ff5384bf70	2021-05-19 23:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:23:32.853+03	2021-05-19 23:23:32.86+03	
c7f19588-94fe-072b-31e4-d002859b3875	2021-05-19 23:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:23:53.852+03	2021-05-19 23:23:53.859+03	
ec26cd72-be1d-9dd6-4969-bdc50f123fbd	2021-05-19 23:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:24:14.853+03	2021-05-19 23:24:14.86+03	
eac806c6-9a34-86a1-fb12-3e710b52958b	2021-05-19 23:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:24:35.853+03	2021-05-19 23:24:35.861+03	
d2a97bdc-e531-2eee-f670-d86229ce60de	2021-05-19 23:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:24:55.853+03	2021-05-19 23:24:55.861+03	
2719b67f-bfb6-5598-3635-3b1f0ca76133	2021-05-19 23:25:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:25:16.854+03	2021-05-19 23:25:16.862+03	
d022955e-c800-1e03-5a6b-8286ad370f5f	2021-05-19 23:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:25:37.853+03	2021-05-19 23:25:37.861+03	
92652724-939a-ce29-cd1d-6c3fc16a69d4	2021-05-19 23:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:25:58.853+03	2021-05-19 23:25:58.861+03	
812b95d4-8aae-7962-bcd5-a135a7cd9e20	2021-05-19 23:26:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:26:18.853+03	2021-05-19 23:26:18.86+03	
cf62b1e9-ce94-a04b-8da3-eeede0aa5d6b	2021-05-19 23:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:26:39.852+03	2021-05-19 23:26:39.86+03	
c415e115-ba61-44a3-0286-ba3867787034	2021-05-19 23:26:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:26:59.853+03	2021-05-19 23:26:59.86+03	
a7923432-697d-368b-27df-39cc5d68d4e8	2021-05-19 23:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:27:19.853+03	2021-05-19 23:27:19.86+03	
bc2e78cf-499d-77a5-b788-c40022503a4f	2021-05-19 23:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:27:39.853+03	2021-05-19 23:27:39.86+03	
d02c7cd0-122f-9680-fedb-cd467fa4196d	2021-05-19 23:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:27:59.853+03	2021-05-19 23:27:59.86+03	
1dcc7645-a6df-eea0-459b-3e1e964e6b24	2021-05-19 23:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:28:19.853+03	2021-05-19 23:28:19.865+03	
5b15762a-c286-e0a5-b05c-5daf128096a2	2021-05-19 23:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:28:40.853+03	2021-05-19 23:28:40.861+03	
1e8c2077-7fda-cafe-d0f4-fb2e1306e4dc	2021-05-19 23:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:29:00.853+03	2021-05-19 23:29:00.86+03	
67e0e2ab-67f6-866c-b276-b9b841c83571	2021-05-19 23:29:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:29:21.853+03	2021-05-19 23:29:21.859+03	
5838908d-2710-cdff-7366-a39afa14fadf	2021-05-19 23:29:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:29:41.853+03	2021-05-19 23:29:41.869+03	
b9649c1d-6414-5335-ebcb-a17d3f6980bf	2021-05-19 23:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 23:30:00.852+03	2021-05-19 23:30:00.857+03	ERROR
d53ed1bc-312d-ad49-4f48-8f1857df66ec	2021-05-19 23:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:30:12.853+03	2021-05-19 23:30:12.86+03	
763be19c-da7d-b38f-eb59-55f26312ee07	2021-05-19 23:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:30:32.853+03	2021-05-19 23:30:32.859+03	
3815829c-0110-941b-6a25-88a20703bf9c	2021-05-19 23:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:30:52.853+03	2021-05-19 23:30:52.861+03	
8d81ddfb-4c2e-14e4-df94-ac4683e1ceea	2021-05-19 23:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:31:12.853+03	2021-05-19 23:31:12.86+03	
1b1393db-2c80-d102-5974-8759a02f90db	2021-05-19 23:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:31:32.853+03	2021-05-19 23:31:32.859+03	
7b19f1c9-5bd3-53d3-0a12-781919d50212	2021-05-19 23:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:31:43.853+03	2021-05-19 23:31:43.862+03	
4e796111-3439-1b8d-7097-065c0125d1cc	2021-05-19 23:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:31:53.853+03	2021-05-19 23:31:53.86+03	
3b094e17-62df-5dbc-31a7-d3fb1dc22d1c	2021-05-19 23:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:32:03.853+03	2021-05-19 23:32:03.86+03	
e5c053c2-27eb-4064-436a-1ea308b5525f	2021-05-19 23:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:32:14.853+03	2021-05-19 23:32:14.86+03	
27f70b83-c0d6-5f06-c16a-6d28f0f50f8e	2021-05-19 23:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:32:24.853+03	2021-05-19 23:32:24.863+03	
4d52041f-f003-47d0-29af-526e357467f8	2021-05-19 23:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:32:34.853+03	2021-05-19 23:32:34.86+03	
2e2c4f2b-7e88-7ff1-f41f-6d4929320d42	2021-05-19 23:32:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:32:44.853+03	2021-05-19 23:32:44.861+03	
5bb26881-5ba8-dc67-a3ff-638cdfba806d	2021-05-19 23:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:32:55.852+03	2021-05-19 23:32:55.871+03	
9895ae71-6438-c03f-f686-7235ada7813c	2021-05-19 23:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:33:05.852+03	2021-05-19 23:33:05.86+03	
2e5d0cc1-7521-49d5-bf2f-b3023d6efe3e	2021-05-19 23:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:33:15.852+03	2021-05-19 23:33:15.861+03	
cb37f925-254f-3174-96a4-435e5bf6985f	2021-05-19 23:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:33:25.852+03	2021-05-19 23:33:25.862+03	
b1180b66-9506-ff26-53ed-e9057ef63f93	2021-05-19 23:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:33:35.853+03	2021-05-19 23:33:35.86+03	
56f1b246-0e70-2b61-c322-d8166cf72404	2021-05-19 23:33:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:33:46.852+03	2021-05-19 23:33:46.863+03	
b7640e92-4e24-56fc-8eed-c18559752fb4	2021-05-19 23:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:33:56.852+03	2021-05-19 23:33:56.859+03	
6dbdf7ea-6f0f-3cf8-c8a3-a7894b85b854	2021-05-19 23:34:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:34:06.853+03	2021-05-19 23:34:06.86+03	
74074b2d-fcde-4dea-023d-d59de1ff9ac0	2021-05-20 00:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:09:07.853+03	2021-05-20 00:09:07.862+03	
f6856476-26ca-fc5a-f4cb-482b3e8d6cb7	2021-05-19 23:34:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:34:16.853+03	2021-05-19 23:34:16.86+03	
c07ddde2-35f4-d3f6-bf0c-32bf620e885e	2021-05-19 23:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:34:37.853+03	2021-05-19 23:34:37.865+03	
34f364b2-bb7e-9c25-6d28-f4931205db15	2021-05-19 23:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:34:58.853+03	2021-05-19 23:34:58.861+03	
64e96a4e-e113-e23d-dcb0-2cde746137cb	2021-05-19 23:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:35:18.853+03	2021-05-19 23:35:18.861+03	
480e6455-66dd-c502-a873-567cf1937307	2021-05-19 23:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:35:38.853+03	2021-05-19 23:35:38.861+03	
190017e4-d1d6-bfa4-fbe5-acb54b322693	2021-05-19 23:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:35:58.853+03	2021-05-19 23:35:58.861+03	
fd9d4dd9-0177-4ca9-f895-129832acaa6c	2021-05-19 23:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:36:19.852+03	2021-05-19 23:36:19.859+03	
a4ac5018-46e7-0e84-8169-b277b856745c	2021-05-19 23:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:36:40.853+03	2021-05-19 23:36:40.86+03	
7ef62e32-ee51-78bc-e42a-bae65a23b73f	2021-05-19 23:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:37:00.853+03	2021-05-19 23:37:00.86+03	
48883aa4-62f0-9d75-96c6-c29eafe3e218	2021-05-19 23:37:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:37:32.853+03	2021-05-19 23:37:32.859+03	
d825b59a-b7cb-b291-777b-9750cc95ecdf	2021-05-19 23:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:37:53.853+03	2021-05-19 23:37:53.86+03	
517d5365-1de5-8ec0-d86b-d83360f5cadb	2021-05-19 23:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:38:13.853+03	2021-05-19 23:38:13.86+03	
13044de1-2694-9160-5037-6f5a9071b89c	2021-05-19 23:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:38:34.852+03	2021-05-19 23:38:34.859+03	
cd51fc08-ebbd-bba7-c238-3590935d730c	2021-05-19 23:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:38:55.852+03	2021-05-19 23:38:55.859+03	
806a6c1a-0a98-4f3c-922a-db34b35c07fb	2021-05-19 23:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:39:15.853+03	2021-05-19 23:39:15.87+03	
29da13eb-2c0b-94c5-b27a-8981e13017ca	2021-05-19 23:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:39:35.853+03	2021-05-19 23:39:35.86+03	
167bf242-ff38-e140-1fec-dfd75219dff4	2021-05-19 23:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:39:55.853+03	2021-05-19 23:39:55.861+03	
6015d3f7-913a-8252-6f47-86905de9d0ef	2021-05-19 23:40:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:40:06.852+03	2021-05-19 23:40:06.86+03	
6423f139-605c-eabb-7493-d10fd086bbee	2021-05-19 23:40:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:40:26.853+03	2021-05-19 23:40:26.868+03	
2709ef9f-8ebd-0fc5-e73b-7db01eadff89	2021-05-19 23:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:40:47.853+03	2021-05-19 23:40:47.86+03	
f0e0367e-1510-8cf0-144c-03321175d676	2021-05-19 23:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:41:07.853+03	2021-05-19 23:41:07.86+03	
d4d473b2-64c3-adae-c316-8b1c8715488b	2021-05-19 23:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:41:28.852+03	2021-05-19 23:41:28.859+03	
ab233187-de42-2e62-64dc-cb457b7d9fb0	2021-05-19 23:41:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:41:48.852+03	2021-05-19 23:41:48.903+03	
eff26200-a394-361e-8bb8-ed70aacb71bf	2021-05-19 23:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:42:08.853+03	2021-05-19 23:42:08.859+03	
e22023ee-18ab-0aac-3d88-9ee8e4fcbee8	2021-05-19 23:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:42:28.853+03	2021-05-19 23:42:28.859+03	
89735d89-7282-db78-5a72-36f0ca4b1441	2021-05-19 23:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:42:49.853+03	2021-05-19 23:42:49.859+03	
ee41896f-c4d2-14cb-d915-4e2f1bc13d28	2021-05-19 23:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:43:09.853+03	2021-05-19 23:43:09.859+03	
a402b95a-c7d6-956a-c7a8-791413ab10dd	2021-05-19 23:43:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:43:29.853+03	2021-05-19 23:43:29.86+03	
100d5f91-81b4-c227-2958-fa66f30f6b21	2021-05-19 23:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:43:50.853+03	2021-05-19 23:43:50.859+03	
dbebd6b3-5de1-1670-0957-ff07b4f8de8e	2021-05-19 23:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:44:10.853+03	2021-05-19 23:44:10.859+03	
15d1caaf-ec79-aa4d-2507-f3592d777cef	2021-05-19 23:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:44:30.853+03	2021-05-19 23:44:30.861+03	
fc568dac-1c9a-4812-6b32-e0360e897125	2021-05-19 23:44:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:44:51.854+03	2021-05-19 23:44:51.861+03	
bdd29643-ac7f-21c2-667e-ac9b5328c185	2021-05-19 23:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:45:12.853+03	2021-05-19 23:45:12.86+03	
047c8136-ba60-0884-c837-e60fdfd9c438	2021-05-19 23:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:45:32.853+03	2021-05-19 23:45:32.862+03	
83858d58-44b0-8b89-f0d2-3e1e4c1b6add	2021-05-19 23:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:45:52.853+03	2021-05-19 23:45:52.861+03	
39149877-64f1-14dc-eede-ed977fc3c072	2021-05-19 23:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:46:12.853+03	2021-05-19 23:46:12.859+03	
af6e14ab-a990-74d6-f578-7ec8af86848c	2021-05-19 23:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:46:33.853+03	2021-05-19 23:46:33.86+03	
99803905-fc17-be8f-b9fa-582ab9d65c34	2021-05-19 23:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:46:53.853+03	2021-05-19 23:46:53.86+03	
6e9db36b-bd36-8077-3ac3-add2b83cb26b	2021-05-19 23:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:47:14.853+03	2021-05-19 23:47:14.862+03	
2e89cac5-47c6-6b6e-cf9b-30abd58a22d9	2021-05-19 23:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:47:35.852+03	2021-05-19 23:47:35.86+03	
c48a4ac7-a57c-9efb-a375-0f52675eaab4	2021-05-19 23:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:47:55.853+03	2021-05-19 23:47:55.86+03	
b78c761a-5949-eeca-e1b9-bb318f79c4d2	2021-05-19 23:48:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:48:16.853+03	2021-05-19 23:48:16.861+03	
b88ccb54-eed3-b63a-ae8a-fb81824e89d3	2021-05-19 23:48:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:48:36.853+03	2021-05-19 23:48:36.862+03	
3cf5b2b1-9b2f-596f-d947-85c23c9789de	2021-05-19 23:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:48:57.852+03	2021-05-19 23:48:57.86+03	
2f20887b-f5fe-5a8e-77c0-6312babd0560	2021-05-19 23:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:49:17.853+03	2021-05-19 23:49:17.86+03	
c04254fa-6edb-edde-e856-dae31873eb14	2021-05-19 23:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:49:37.853+03	2021-05-19 23:49:37.861+03	
d5138f10-2a8f-7f8a-f8e5-a8231e5f28e4	2021-05-19 23:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:49:57.853+03	2021-05-19 23:49:57.861+03	
6907b810-6f1b-98a4-def4-8e81d04654c0	2021-05-19 23:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:50:07.853+03	2021-05-19 23:50:07.862+03	
54a7dc36-af96-73fe-1bb5-42746b7de27f	2021-05-19 23:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:50:28.852+03	2021-05-19 23:50:28.86+03	
a17bf518-d6ed-c9d7-c72c-9371558a1409	2021-05-19 23:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:50:48.853+03	2021-05-19 23:50:48.861+03	
1ce278a2-edd5-a420-4818-6089bbe2de0a	2021-05-19 23:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:51:08.853+03	2021-05-19 23:51:08.865+03	
3a6aa873-cdf3-663b-7059-56947678b8df	2021-05-19 23:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:51:28.853+03	2021-05-19 23:51:28.862+03	
d5910d50-ca09-7919-1231-539cddc532ca	2021-05-19 23:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:51:50.852+03	2021-05-19 23:51:50.859+03	
35db505c-f001-a196-5619-f92109bae9ee	2021-05-19 23:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:52:10.853+03	2021-05-19 23:52:10.86+03	
44be8785-59bb-9d3c-d6b6-bacf4980b725	2021-05-19 23:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:52:30.853+03	2021-05-19 23:52:30.862+03	
4115475b-0b86-a8cd-3e42-7f6e2d7af340	2021-05-19 23:52:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:52:50.853+03	2021-05-19 23:52:50.86+03	
5e6e4a49-e44d-d0d8-5468-6b25c19f2ba3	2021-05-19 23:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:53:10.853+03	2021-05-19 23:53:10.86+03	
032f49ea-f7f4-f23b-6e57-89fb98983825	2021-05-19 23:53:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:53:31.854+03	2021-05-19 23:53:31.862+03	
f8a8b5c2-2cd3-f907-caf7-b1193045e67f	2021-05-19 23:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:53:52.853+03	2021-05-19 23:53:52.861+03	
530af2c8-66f2-901e-8208-f5ecf81db400	2021-05-19 23:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:54:12.853+03	2021-05-19 23:54:12.861+03	
7280e650-a0b1-dbb6-2eab-9464c3fedf07	2021-05-19 23:54:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:54:32.853+03	2021-05-19 23:54:32.861+03	
8382ceca-5600-42ac-26d5-44b534ffa80f	2021-05-19 23:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:54:53.852+03	2021-05-19 23:54:53.861+03	
f0285384-0d57-935a-bd1b-acb79f78f827	2021-05-19 23:34:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:34:26.853+03	2021-05-19 23:34:26.859+03	
4d7c4bfa-43ec-5e9b-0b0a-6409144b2de3	2021-05-19 23:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:34:48.852+03	2021-05-19 23:34:48.86+03	
d6050508-5f6e-890c-3342-12ebb7657588	2021-05-19 23:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:35:08.853+03	2021-05-19 23:35:08.863+03	
b1380562-e940-fd63-28be-d8d217e8ef30	2021-05-19 23:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:35:28.853+03	2021-05-19 23:35:28.862+03	
947d0ed1-6cb2-4ceb-019a-510044c30c56	2021-05-19 23:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:35:48.853+03	2021-05-19 23:35:48.861+03	
0887250b-41f4-2cd7-fe6e-8e90ea14be2c	2021-05-19 23:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:36:09.852+03	2021-05-19 23:36:09.86+03	
40f08357-c307-5203-becc-845d70823003	2021-05-19 23:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:36:29.853+03	2021-05-19 23:36:29.859+03	
d42a7f28-1f5d-9705-02de-991aec44fd06	2021-05-19 23:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:36:50.853+03	2021-05-19 23:36:50.86+03	
5aa9e0f9-5eb3-99bd-31c3-f3c2b6c2f7d6	2021-05-19 23:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:37:10.853+03	2021-05-19 23:37:10.86+03	
76fb4c99-4a2c-3210-7d88-685567740be7	2021-05-19 23:37:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:37:21.853+03	2021-05-19 23:37:21.86+03	
6ec52786-d3e6-e8ab-31f0-1625ea868d53	2021-05-19 23:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:37:43.852+03	2021-05-19 23:37:43.86+03	
77f389ae-7155-07ec-b3c9-d7e92734c40f	2021-05-19 23:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:38:03.853+03	2021-05-19 23:38:03.862+03	
5e6c0eae-7798-55c0-9de3-b4afa6e82465	2021-05-19 23:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:38:23.853+03	2021-05-19 23:38:23.86+03	
6b1d83bd-9350-2410-3087-e76983c0a15d	2021-05-19 23:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:38:44.853+03	2021-05-19 23:38:44.86+03	
20a81376-fb05-588a-aba2-0c2bb4aa7729	2021-05-19 23:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:39:05.852+03	2021-05-19 23:39:05.86+03	
855be53d-6603-2d94-fa8c-243fa7e413cd	2021-05-19 23:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:39:25.853+03	2021-05-19 23:39:25.86+03	
25fca235-1420-5498-a566-647ad2ccdb67	2021-05-19 23:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:39:45.853+03	2021-05-19 23:39:45.859+03	
134a7efb-0ad0-9f43-eec8-db7b0a73520f	2021-05-19 23:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 23:40:00.853+03	2021-05-19 23:40:00.863+03	ERROR
fb865f86-9c1a-ba4f-5fa2-085e0441c1f8	2021-05-19 23:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:40:16.852+03	2021-05-19 23:40:16.86+03	
42ddcd11-a534-82ae-ffb2-185ec6101ec9	2021-05-19 23:40:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:40:36.853+03	2021-05-19 23:40:36.86+03	
5d06e6be-a09d-2b3e-ce70-10b84724550a	2021-05-19 23:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:40:57.853+03	2021-05-19 23:40:57.859+03	
8bce7f09-7c48-3bc7-889e-0c2fd18751dd	2021-05-19 23:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:41:17.853+03	2021-05-19 23:41:17.86+03	
3fec4a7d-5ebe-6d0a-3787-25720080ff22	2021-05-19 23:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:41:38.852+03	2021-05-19 23:41:38.859+03	
7224f8ce-a569-f36e-83a7-e63d9a5e0a39	2021-05-19 23:41:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:41:58.853+03	2021-05-19 23:41:58.868+03	
515b08e1-4729-20aa-ad5c-e9afc3f9f15a	2021-05-19 23:42:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:42:18.853+03	2021-05-19 23:42:18.877+03	
e21b29c6-36b9-1507-5b6e-b3a224829c6e	2021-05-19 23:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:42:39.853+03	2021-05-19 23:42:39.864+03	
4f1e858f-a1ba-94a0-72d0-08fecce2185d	2021-05-19 23:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:42:59.853+03	2021-05-19 23:42:59.86+03	
8ad71759-0703-b1ee-f613-437ca990cd70	2021-05-19 23:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:43:19.853+03	2021-05-19 23:43:19.859+03	
784dbcf9-74a1-18f0-271c-f77a3c53f8ee	2021-05-19 23:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:43:40.852+03	2021-05-19 23:43:40.861+03	
bdfc0f10-9d3b-9801-ed06-dc9805acc085	2021-05-19 23:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:44:00.853+03	2021-05-19 23:44:00.86+03	
a46f0fe9-4630-2954-9fe6-963dfa7455e5	2021-05-19 23:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:44:20.853+03	2021-05-19 23:44:20.86+03	
d9352a2e-7b1e-259c-70cd-6c6537ab73e8	2021-05-19 23:44:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:44:41.852+03	2021-05-19 23:44:41.86+03	
8b2b2d2f-5880-4b52-14b3-31b5367ba88a	2021-05-19 23:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:45:02.852+03	2021-05-19 23:45:02.86+03	
78260afd-9f65-81a1-031b-8166b9e075fc	2021-05-19 23:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:45:22.853+03	2021-05-19 23:45:22.86+03	
ff0c619c-e8a9-77cb-7645-f1126e6b8114	2021-05-19 23:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:45:42.853+03	2021-05-19 23:45:42.86+03	
42523561-f9c6-3983-0c90-77fc53044cf3	2021-05-19 23:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:46:02.853+03	2021-05-19 23:46:02.87+03	
8eb8536d-e98d-7631-3d0d-6972a94377d9	2021-05-19 23:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:46:22.853+03	2021-05-19 23:46:22.869+03	
8bace7b8-dfb9-0309-e656-cd12776d0d2c	2021-05-19 23:46:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:46:43.853+03	2021-05-19 23:46:43.864+03	
97232c69-43d9-0d61-3be7-5f601023906a	2021-05-19 23:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:47:04.853+03	2021-05-19 23:47:04.86+03	
4468fcc6-e851-3e3b-fd9a-f1d9beaf6683	2021-05-19 23:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:47:25.852+03	2021-05-19 23:47:25.859+03	
51de0850-c9a9-7f53-4d09-fdb229f744f6	2021-05-19 23:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:47:45.852+03	2021-05-19 23:47:45.859+03	
06e98630-38a9-bb11-ebb1-691a36bb038e	2021-05-19 23:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:48:06.852+03	2021-05-19 23:48:06.859+03	
6e0b8ff1-fddd-2841-932e-b8e62beefc9d	2021-05-19 23:48:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:48:26.853+03	2021-05-19 23:48:26.861+03	
653e8e09-3a83-ddc6-b6a1-d3420253cace	2021-05-19 23:48:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:48:46.854+03	2021-05-19 23:48:46.86+03	
28cea372-cd36-ec8b-131f-fe30a9cd3af7	2021-05-19 23:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:49:07.852+03	2021-05-19 23:49:07.86+03	
4204b917-fcbd-d338-500a-e9ab7e1fbb59	2021-05-19 23:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:49:27.853+03	2021-05-19 23:49:27.86+03	
bd3f20f0-9729-62ce-b508-1a6bc620755e	2021-05-19 23:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:49:47.853+03	2021-05-19 23:49:47.861+03	
8d0ffc29-4e56-c9e3-ad28-7f9914006ba7	2021-05-19 23:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-19 23:50:00.853+03	2021-05-19 23:50:00.857+03	ERROR
51e44303-af00-fea0-ca6a-95552f3c4d94	2021-05-19 23:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:50:18.852+03	2021-05-19 23:50:18.862+03	
8056d7f1-d0b6-8076-4c8c-c3fe7b57549d	2021-05-19 23:50:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:50:38.853+03	2021-05-19 23:50:38.86+03	
c3f20724-0c00-ea8e-022f-4c884118a88b	2021-05-19 23:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:50:58.853+03	2021-05-19 23:50:58.86+03	
499e0a1f-ac8a-f68c-47eb-c41136015921	2021-05-19 23:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:51:18.853+03	2021-05-19 23:51:18.863+03	
778aba0a-893f-020c-1b05-f9dd7b159a8e	2021-05-19 23:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:51:39.853+03	2021-05-19 23:51:39.861+03	
d3a753d3-cfc0-85b4-a583-2384e76729b1	2021-05-19 23:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:52:00.852+03	2021-05-19 23:52:00.861+03	
b6fa7c70-95c8-8282-6add-a12f754a5505	2021-05-19 23:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:52:20.853+03	2021-05-19 23:52:20.861+03	
0aa257b7-17e7-f3f2-98eb-bf028b739a59	2021-05-19 23:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:52:40.853+03	2021-05-19 23:52:40.868+03	
567f26ad-1ab5-4aa7-9614-abcb6326ed8b	2021-05-19 23:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:53:00.853+03	2021-05-19 23:53:00.86+03	
61e34219-9b68-ae68-ed6a-76ef1baffffe	2021-05-19 23:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:53:20.853+03	2021-05-19 23:53:20.861+03	
5017a947-e799-39b9-8450-5968d9a8d9c8	2021-05-19 23:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:53:42.852+03	2021-05-19 23:53:42.861+03	
568107fc-ead1-f752-b5d7-39656535edd1	2021-05-19 23:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:54:02.853+03	2021-05-19 23:54:02.87+03	
483f5870-1a7d-5250-4389-3d0aedfcdbc3	2021-05-19 23:54:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:54:22.853+03	2021-05-19 23:54:22.865+03	
596c869a-c116-fd3c-9b17-582431a5a1aa	2021-05-19 23:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:54:43.852+03	2021-05-19 23:54:43.862+03	
7a848bea-6114-6cea-8600-be5bdbab96ee	2021-05-19 23:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:55:03.853+03	2021-05-19 23:55:03.861+03	
af552128-1b46-8eff-36f3-ba0d0e3ce5d8	2021-05-20 00:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:09:27.853+03	2021-05-20 00:09:27.861+03	
75316053-7cb5-d2f3-12c4-dd81ad974a08	2021-05-19 23:55:13.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:55:13.854+03	2021-05-19 23:55:13.863+03	
1889fead-66bb-b819-8191-90eb62ef6a41	2021-05-20 04:13:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:13:03.853+03	2021-05-20 04:13:03.861+03	
ae0b6742-9c6f-da46-34b8-3d2c98250687	2021-05-19 23:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:55:24.852+03	2021-05-19 23:55:24.861+03	
b52244ce-c23f-256e-1f61-e6f6849adcb1	2021-05-20 00:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:09:58.852+03	2021-05-20 00:09:58.861+03	
582e811f-4652-0374-c655-470009582b5e	2021-05-19 23:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:55:34.853+03	2021-05-19 23:55:34.879+03	
729b0c47-6649-b434-4380-335d6679d315	2021-05-19 23:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:55:44.853+03	2021-05-19 23:55:44.86+03	
74ef031d-6e81-51e0-e0d7-53d43a261e11	2021-05-20 00:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:10:08.852+03	2021-05-20 00:10:08.86+03	
36d0cbde-37be-7285-3409-8523479cd5da	2021-05-19 23:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:55:54.853+03	2021-05-19 23:55:54.873+03	
623d5411-655e-7dc3-6462-81892acafdf8	2021-05-19 23:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:56:04.853+03	2021-05-19 23:56:04.861+03	
884e5947-267d-399b-2a79-81d157853163	2021-05-20 00:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:10:28.852+03	2021-05-20 00:10:28.861+03	
9ff9d640-8326-d72c-5646-e9ded853573a	2021-05-19 23:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:56:14.853+03	2021-05-19 23:56:14.859+03	
9b68c795-935d-3107-0b94-477befdead0a	2021-05-19 23:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:56:24.853+03	2021-05-19 23:56:24.859+03	
a8ba9844-85d7-261a-e959-2dea1247ef91	2021-05-20 00:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:10:48.853+03	2021-05-20 00:10:48.866+03	
36a41fad-64fc-7d0c-63fb-84942582dfe0	2021-05-19 23:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:56:35.853+03	2021-05-19 23:56:35.862+03	
b826ba92-27a1-0d63-ccd2-ae3ff1beb23f	2021-05-19 23:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:56:45.853+03	2021-05-19 23:56:45.86+03	
fbd9a37b-2bfa-7516-0a1c-7f472fd88b2d	2021-05-20 00:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:11:09.852+03	2021-05-20 00:11:09.86+03	
b02644fe-bc5b-f09e-1622-6116e499beed	2021-05-19 23:56:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:56:56.853+03	2021-05-19 23:56:56.86+03	
e3f1ee9e-4278-16cf-f45a-e85168900df0	2021-05-19 23:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:57:07.853+03	2021-05-19 23:57:07.868+03	
90fe5c98-cf54-acb3-8721-7b0ca5b24e68	2021-05-20 00:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:11:29.852+03	2021-05-20 00:11:29.859+03	
815bf594-b3c3-3ea4-c22e-1365fe7334a5	2021-05-19 23:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:57:17.853+03	2021-05-19 23:57:17.866+03	
12600a95-88f4-eebb-b3de-8727af4c1b8f	2021-05-19 23:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:57:27.853+03	2021-05-19 23:57:27.86+03	
1a451a83-93e1-8210-725f-e6dfac7c30e6	2021-05-20 00:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:11:49.852+03	2021-05-20 00:11:49.859+03	
15d13b14-b4db-6b62-f495-a9e18263949f	2021-05-19 23:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:57:37.853+03	2021-05-19 23:57:37.861+03	
7c8a33da-1d51-2354-2f16-89bc84818eef	2021-05-19 23:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:57:48.852+03	2021-05-19 23:57:48.86+03	
db1c0ee6-82ad-08e5-cfbd-8dfc2d893e78	2021-05-20 00:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:12:09.853+03	2021-05-20 00:12:09.861+03	
b9b8ede7-6340-a0f2-a6ba-2ec052d18443	2021-05-19 23:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:57:58.852+03	2021-05-19 23:57:58.861+03	
243c5248-8ae1-d7a6-6abf-0ad97d074d49	2021-05-19 23:58:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:58:08.852+03	2021-05-19 23:58:08.861+03	
e613b5a8-4650-eb48-8173-2c82c4ad8713	2021-05-20 00:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:12:30.853+03	2021-05-20 00:12:30.859+03	
32873f2d-8320-7852-3f18-0bf4eea811b0	2021-05-19 23:58:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:58:18.853+03	2021-05-19 23:58:18.861+03	
f1e63bfa-c6c1-e9e3-fdda-3eff318a9adc	2021-05-19 23:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:58:28.853+03	2021-05-19 23:58:28.862+03	
cb9947f5-2e38-d938-036c-7502c9ee9017	2021-05-20 00:12:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:12:51.853+03	2021-05-20 00:12:51.861+03	
0c9ffe48-351c-c91b-2e1e-ed37e705323d	2021-05-19 23:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:58:38.853+03	2021-05-19 23:58:38.872+03	
05d2207b-8407-7e81-cd82-f73b7f7a6f4f	2021-05-19 23:58:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:58:49.852+03	2021-05-19 23:58:49.859+03	
ee120a4f-2de8-64aa-9948-eb9e2b453acb	2021-05-20 00:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:13:12.852+03	2021-05-20 00:13:12.859+03	
109e2fc3-a04c-c63c-415c-956f336b1de9	2021-05-19 23:58:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:58:59.852+03	2021-05-19 23:58:59.86+03	
48aa04ca-3bbf-e020-fe51-e0e54a5ee2f9	2021-05-19 23:59:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:59:09.853+03	2021-05-19 23:59:09.863+03	
4ff07a10-6f89-7586-a145-f60e13a18fbd	2021-05-20 00:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:13:32.852+03	2021-05-20 00:13:32.861+03	
7fa894eb-b95a-91f3-efb9-f39200972bf4	2021-05-19 23:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:59:20.853+03	2021-05-19 23:59:20.862+03	
8414a673-1928-6e06-de46-fccc1a13efcf	2021-05-19 23:59:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:59:30.853+03	2021-05-19 23:59:30.864+03	
be1143f6-dabb-6493-d9c6-9eb619c1f361	2021-05-20 00:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:13:52.853+03	2021-05-20 00:13:52.86+03	
4e3bd93e-4b56-0fe5-c258-fc894bba8c4d	2021-05-19 23:59:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:59:41.852+03	2021-05-19 23:59:41.874+03	
9bbee534-d117-ddd3-558a-6f9fd7f78125	2021-05-19 23:59:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-19 23:59:51.852+03	2021-05-19 23:59:51.913+03	
2ef30cf2-e28d-9615-05f1-88257a6b2b61	2021-05-20 00:14:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:14:13.853+03	2021-05-20 00:14:13.86+03	
f0d76bd1-2969-2405-fc76-179f6a8a04d0	2021-05-20 00:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 00:00:00.853+03	2021-05-20 00:00:00.868+03	ERROR
0b02fc1e-70de-5906-8cbe-8a92a3267bdf	2021-05-20 00:00:01.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:00:01.855+03	2021-05-20 00:00:01.873+03	
c75769a3-7036-5a3d-2108-baed8d7ab63b	2021-05-20 00:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:00:12.853+03	2021-05-20 00:00:12.864+03	
8745f1f3-d8d0-f264-bd6a-d283fb87d96a	2021-05-20 00:00:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:00:22.853+03	2021-05-20 00:00:22.873+03	
6ff9477e-d1e9-7059-6082-6c2235732807	2021-05-20 00:00:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:00:32.853+03	2021-05-20 00:00:32.884+03	
919e0b18-c33d-7ac5-9433-528979ca2a5c	2021-05-20 00:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:00:43.853+03	2021-05-20 00:00:43.865+03	
17a222a6-06fe-3a54-ed7a-f07875cdefc0	2021-05-20 00:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:00:53.853+03	2021-05-20 00:00:53.861+03	
002a0840-b6ee-c091-63eb-1a52c03481fb	2021-05-20 00:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:01:03.853+03	2021-05-20 00:01:03.88+03	
6ed04524-d4c1-a119-aa5c-956ac4e2f0e9	2021-05-20 00:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:01:13.853+03	2021-05-20 00:01:13.86+03	
9a12c2e0-eb65-59bf-c844-65e1e636005e	2021-05-20 00:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:01:24.852+03	2021-05-20 00:01:24.861+03	
792a6eeb-9661-66c1-8c9f-2206ad272877	2021-05-20 00:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:01:34.852+03	2021-05-20 00:01:34.859+03	
defe93b2-914c-6039-72e5-0c4a8f6e7c80	2021-05-20 00:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:01:44.853+03	2021-05-20 00:01:44.86+03	
92ad5e9b-436a-1920-740e-c97d25ae487f	2021-05-20 00:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:01:55.852+03	2021-05-20 00:01:55.859+03	
28dc43f6-0e5d-a737-9a9a-03961e172c05	2021-05-20 00:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:02:05.853+03	2021-05-20 00:02:05.86+03	
7e53a361-7431-4bf7-7cc1-1167f2cf85bf	2021-05-20 00:02:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:02:16.852+03	2021-05-20 00:02:16.867+03	
6ca909df-b8ac-6ea2-b8f1-e1de2a153ef6	2021-05-20 00:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:02:26.853+03	2021-05-20 00:02:26.862+03	
2ff50420-734f-4c45-7cc3-aa0643d2d20b	2021-05-20 00:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:02:37.853+03	2021-05-20 00:02:37.86+03	
fc46888b-2c63-3588-8529-f3bf123b4ca3	2021-05-20 00:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:02:48.852+03	2021-05-20 00:02:48.861+03	
8fef41de-daae-262e-037a-e172463cb147	2021-05-20 00:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:02:58.853+03	2021-05-20 00:02:58.861+03	
19868258-baca-e913-672f-f1fc5863b8b0	2021-05-20 00:03:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:03:08.853+03	2021-05-20 00:03:08.86+03	
793f92f1-7d86-9d2d-55f9-f585482d82ed	2021-05-20 01:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:55:18.853+03	2021-05-20 01:55:18.86+03	
25e27b1f-94bd-ca3f-6fa0-a977fc016e1c	2021-05-20 00:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:15:56.852+03	2021-05-20 00:15:56.86+03	
78f72c24-c561-0f7f-2307-76a5af93913f	2021-05-20 10:32:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:32:36.852+03	2021-05-20 10:32:36.86+03	
d298327f-79fb-e470-b240-57523913a5df	2021-05-20 00:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:16:17.852+03	2021-05-20 00:16:17.859+03	
f0106f02-3367-0fdd-eeca-9fb093fa292b	2021-05-20 01:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:55:38.853+03	2021-05-20 01:55:38.861+03	
5fba3219-4f6c-d4c8-bd83-0b84177eec73	2021-05-20 00:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:16:37.853+03	2021-05-20 00:16:37.859+03	
43a8fc66-2804-5ba1-4331-203bb9b64713	2021-05-20 00:16:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:16:58.853+03	2021-05-20 00:16:58.872+03	
6a0b64de-c60a-c371-10c3-ee6da9dd758a	2021-05-20 01:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:55:58.853+03	2021-05-20 01:55:58.859+03	
71841ddb-c167-5bdd-6c38-3cf99cdc226a	2021-05-20 00:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:17:18.853+03	2021-05-20 00:17:18.86+03	
32720e69-b6fb-5593-de88-7296dc697066	2021-05-20 00:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:17:38.853+03	2021-05-20 00:17:38.86+03	
11e32594-4db5-f40e-7bea-11a32fdf90ac	2021-05-20 01:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:56:19.853+03	2021-05-20 01:56:19.86+03	
e7bb1e4b-a907-75df-48a6-6b21431aa390	2021-05-20 00:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:18:00.853+03	2021-05-20 00:18:00.862+03	
fd93d438-77ef-ad69-8c3c-7596775baf75	2021-05-20 00:18:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:18:22.852+03	2021-05-20 00:18:22.859+03	
2b8957d5-7b2a-dee6-e3c2-155e50ac9d34	2021-05-20 01:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:56:39.853+03	2021-05-20 01:56:39.861+03	
eb442a1d-097e-feb5-db00-c94dc8365f59	2021-05-20 00:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:18:42.852+03	2021-05-20 00:18:42.858+03	
8458aec7-7d70-c351-16f8-233757275793	2021-05-20 00:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:19:02.852+03	2021-05-20 00:19:02.859+03	
24aa8366-14a2-9302-260a-05ba24609932	2021-05-20 01:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:57:00.853+03	2021-05-20 01:57:00.859+03	
ff2b8269-c07e-69b4-bf09-40ddb5e2ea45	2021-05-20 00:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:19:22.853+03	2021-05-20 00:19:22.859+03	
626a9b30-6aad-3716-a2fd-871e25e09c66	2021-05-20 00:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:19:42.853+03	2021-05-20 00:19:42.872+03	
160211ee-0826-f339-57b3-c8f38a0afa32	2021-05-20 01:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:57:20.853+03	2021-05-20 01:57:20.859+03	
25fdb8a0-3bc8-695d-6962-a89326fb3a3f	2021-05-20 00:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:19:52.853+03	2021-05-20 00:19:52.872+03	
f9bfac22-da7c-4c8f-8e9f-3100e06fc0c6	2021-05-20 00:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:20:03.852+03	2021-05-20 00:20:03.859+03	
b0a8bf99-714c-4e91-7a53-4b315bd24556	2021-05-20 01:57:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:57:41.852+03	2021-05-20 01:57:41.86+03	
047888ce-8873-0c78-bd0c-1dd66184d208	2021-05-20 01:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:58:02.853+03	2021-05-20 01:58:02.86+03	
163cc8df-bfb5-143e-8fc1-7f1ee220550e	2021-05-20 01:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:58:23.853+03	2021-05-20 01:58:23.862+03	
9aa9bf5f-714c-5c8f-d812-2bec079ac132	2021-05-20 01:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:58:44.852+03	2021-05-20 01:58:44.861+03	
160f6665-a6b6-4c17-42ba-6c498489d5f7	2021-05-20 01:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:59:05.852+03	2021-05-20 01:59:05.871+03	
05ad9d13-7412-1dda-9d3e-7d432dab2fbb	2021-05-20 01:59:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:59:26.853+03	2021-05-20 01:59:26.86+03	
5642e9a3-a6de-7c7d-f5d9-0b6fffea5263	2021-05-20 01:59:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:59:46.853+03	2021-05-20 01:59:46.862+03	
18b0782d-d19e-ad9b-62ee-99e9d1b321ed	2021-05-20 02:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 02:00:00.853+03	2021-05-20 02:00:00.862+03	ERROR
e7b40adc-2e26-fb49-3b37-6c5ef01e442b	2021-05-20 02:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:00:17.853+03	2021-05-20 02:00:17.862+03	
7f2ccab9-a67b-cfc5-35ad-c8567b896da0	2021-05-20 02:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:00:37.853+03	2021-05-20 02:00:37.866+03	
8cefeca8-1cd5-d1a7-fa23-8bfad766688e	2021-05-20 02:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:00:58.853+03	2021-05-20 02:00:58.86+03	
df536ce6-ef39-08bf-24e1-c4b17ebae5ee	2021-05-20 02:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:01:19.853+03	2021-05-20 02:01:19.859+03	
41504178-c003-7f3c-29c0-dad80cfa7296	2021-05-20 02:01:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:01:41.853+03	2021-05-20 02:01:41.862+03	
10f3d073-2dec-8aca-752e-372523f6f4b5	2021-05-20 02:02:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:02:01.853+03	2021-05-20 02:02:01.862+03	
7faa46a3-7ad7-ac0c-530d-50fc54f25ea2	2021-05-20 02:02:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:02:21.854+03	2021-05-20 02:02:21.863+03	
ab281e51-810b-ec86-f79c-a3f3b1d8bef4	2021-05-20 02:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:02:42.852+03	2021-05-20 02:02:42.871+03	
a3432841-07e7-58a7-3604-c56e1217fe15	2021-05-20 02:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:03:02.853+03	2021-05-20 02:03:02.872+03	
bcf2ccf6-7766-dc5a-912c-e4d6d7a0c7f2	2021-05-20 02:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:03:23.853+03	2021-05-20 02:03:23.861+03	
5f0e6ca2-c444-5655-0216-dc4f5258e6d3	2021-05-20 02:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:03:44.853+03	2021-05-20 02:03:44.859+03	
cd11b6b3-24d2-fbca-d11c-dc16087de793	2021-05-20 02:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:04:04.853+03	2021-05-20 02:04:04.861+03	
d997d36b-ddc1-7cb1-108e-5e143596a6c6	2021-05-20 02:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:04:24.853+03	2021-05-20 02:04:24.86+03	
fb5b9e60-979f-8abf-495d-2ebfa6778307	2021-05-20 02:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:04:45.853+03	2021-05-20 02:04:45.86+03	
9bb9b6b7-6261-c0c4-e0da-8c1f61deb4d5	2021-05-20 02:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:05:05.853+03	2021-05-20 02:05:05.862+03	
d585c5ca-87df-25b4-6ce3-cc199d30447a	2021-05-20 02:05:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:05:26.853+03	2021-05-20 02:05:26.861+03	
624444b1-310b-028c-7b72-fa7e4ad795dc	2021-05-20 02:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:05:47.853+03	2021-05-20 02:05:47.861+03	
43a6c259-3bfb-c712-b452-de5b85c43139	2021-05-20 02:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:06:07.853+03	2021-05-20 02:06:07.86+03	
d94874a0-7812-06f3-c227-736aa2328b97	2021-05-20 02:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:06:27.853+03	2021-05-20 02:06:27.86+03	
2aeaa653-661d-1e08-c8b2-060af541d771	2021-05-20 02:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:06:47.853+03	2021-05-20 02:06:47.86+03	
99c4009e-1995-fbe4-5bf2-6635d6e71a0a	2021-05-20 02:07:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:07:07.853+03	2021-05-20 02:07:07.86+03	
7173615c-351d-4bc1-8c27-f13dfb49f471	2021-05-20 02:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:07:29.852+03	2021-05-20 02:07:29.859+03	
2efdefd5-a0f8-f2ae-5dbc-d2ce67389c6e	2021-05-20 02:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:07:49.852+03	2021-05-20 02:07:49.862+03	
63bd5407-4caa-c51c-1cc7-9ee571d89bbe	2021-05-20 02:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:08:09.853+03	2021-05-20 02:08:09.863+03	
ca6c130e-b573-89e1-377a-d174c6c31e56	2021-05-20 02:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:08:29.853+03	2021-05-20 02:08:29.859+03	
34ab0887-64dd-d1db-84f3-348cf17e98c9	2021-05-20 02:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:08:49.853+03	2021-05-20 02:08:49.861+03	
3e30cd40-681b-58a6-e6be-8f32ffe8e6e1	2021-05-20 02:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:09:09.853+03	2021-05-20 02:09:09.862+03	
727baeff-7ccd-e5f4-fdbd-812748f58192	2021-05-20 02:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:09:30.853+03	2021-05-20 02:09:30.859+03	
456770f8-aae7-b84d-06fd-806870899fd8	2021-05-20 02:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:09:52.852+03	2021-05-20 02:09:52.859+03	
853d6e31-e093-1e63-0627-3c31146e3c62	2021-05-20 02:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:10:02.853+03	2021-05-20 02:10:02.86+03	
3b49db0b-2088-bf6e-3033-5289b7a2c2a8	2021-05-20 02:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:10:23.853+03	2021-05-20 02:10:23.862+03	
da25b243-57fb-f80c-41b7-5ba72b9aa540	2021-05-20 02:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:10:43.853+03	2021-05-20 02:10:43.873+03	
c273cf46-b947-ba69-7f33-b1591b7feccc	2021-05-20 02:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:11:04.853+03	2021-05-20 02:11:04.861+03	
f8d3e398-e643-999d-ef54-33a34ab5e3c6	2021-05-20 02:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:11:25.853+03	2021-05-20 02:11:25.874+03	
e73dce6d-7fdd-9317-1670-57a5b5cbb368	2021-05-20 00:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:16:06.853+03	2021-05-20 00:16:06.859+03	
a1052a1b-f227-c234-7335-94434dff9529	2021-05-20 00:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:16:27.853+03	2021-05-20 00:16:27.863+03	
d338f9e6-27df-14e4-07b3-f7d248e625e9	2021-05-20 00:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:16:47.853+03	2021-05-20 00:16:47.859+03	
1b35da2d-3997-ac17-a33c-6b001782a0c2	2021-05-20 00:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:17:08.853+03	2021-05-20 00:17:08.859+03	
f648eda6-eba7-e013-42d2-de0bb367ba7d	2021-05-20 00:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:17:28.853+03	2021-05-20 00:17:28.86+03	
55ec2c21-1489-ea32-d96d-5117e23406b2	2021-05-20 00:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:17:49.853+03	2021-05-20 00:17:49.861+03	
7ef2f0e1-b05f-600d-a329-b8e095baa8cc	2021-05-20 00:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:18:11.853+03	2021-05-20 00:18:11.86+03	
67bffdab-1e78-dd9c-828f-c8cef0cfc216	2021-05-20 00:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:18:32.852+03	2021-05-20 00:18:32.862+03	
fee8b569-8662-f133-9642-0e9e3063a6e4	2021-05-20 00:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:18:52.852+03	2021-05-20 00:18:52.873+03	
731366a7-e720-6860-df33-a5ec18f4a6db	2021-05-20 00:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:19:12.852+03	2021-05-20 00:19:12.858+03	
7d85d2ee-ce82-4ca8-b641-9611fc634c12	2021-05-20 00:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:19:32.853+03	2021-05-20 00:19:32.86+03	
bd3924fc-fbe1-ee27-f74c-1ccc553c8377	2021-05-20 00:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 00:20:00.853+03	2021-05-20 00:20:00.858+03	ERROR
8ada8af4-aa63-48c6-c8c8-4fb538d96b8a	2021-05-20 00:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:20:13.853+03	2021-05-20 00:20:13.86+03	
d572a82c-c430-d9dc-203e-06d56edc73f8	2021-05-20 00:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:20:23.853+03	2021-05-20 00:20:23.859+03	
884c398f-9558-21a1-62fd-17715dcfddb6	2021-05-20 00:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:20:34.852+03	2021-05-20 00:20:34.868+03	
c66ef607-9a64-b8fb-0cde-eea3752999f4	2021-05-20 00:20:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:20:44.852+03	2021-05-20 00:20:44.86+03	
f1560cf4-2b70-801e-94cb-86e2517831bf	2021-05-20 00:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:20:54.853+03	2021-05-20 00:20:54.861+03	
2a820ca0-fe63-7ad6-48dc-f5f195b50b5b	2021-05-20 00:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:21:05.852+03	2021-05-20 00:21:05.859+03	
204dfe2a-54c2-1f9c-8f3a-5d688d263830	2021-05-20 00:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:21:15.852+03	2021-05-20 00:21:15.86+03	
29d71176-e3d5-a0b0-41e2-b790f0c7fe8d	2021-05-20 00:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:21:25.853+03	2021-05-20 00:21:25.869+03	
1d0d08cc-a27b-6463-5d64-decc5e2b8491	2021-05-20 00:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:21:35.853+03	2021-05-20 00:21:35.859+03	
e5352cb8-bc1d-4b6f-f9c5-ca84a01344a9	2021-05-20 00:21:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:21:46.852+03	2021-05-20 00:21:46.859+03	
21fcb5aa-d497-1b82-443a-a0d9926ade74	2021-05-20 00:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:21:56.852+03	2021-05-20 00:21:56.861+03	
522b125e-7e36-435b-9bb9-f8071e2c862f	2021-05-20 00:22:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:22:06.852+03	2021-05-20 00:22:06.866+03	
278abb07-eadd-ecd1-6dc7-c181f3915de6	2021-05-20 00:22:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:22:16.852+03	2021-05-20 00:22:16.86+03	
c9a9f8d1-11a1-570f-a070-1ea13ab921e4	2021-05-20 00:22:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:22:26.852+03	2021-05-20 00:22:26.859+03	
34b0259b-7dcb-7b63-6a38-1de164a6f617	2021-05-20 00:22:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:22:36.853+03	2021-05-20 00:22:36.861+03	
695732dd-9f5d-d91a-fa63-e49a390f954e	2021-05-20 00:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:22:47.853+03	2021-05-20 00:22:47.861+03	
f2e3ef96-e807-e990-ce81-2d26b766ef69	2021-05-20 00:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:22:57.853+03	2021-05-20 00:22:57.86+03	
91c0e5f4-cdf0-e689-8dfd-6c57a2b087fc	2021-05-20 00:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:23:08.853+03	2021-05-20 00:23:08.859+03	
ba465217-39ff-e977-58e3-a1ccb54bff40	2021-05-20 00:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:23:19.853+03	2021-05-20 00:23:19.86+03	
c8b8546b-011d-a428-f8ff-750173293709	2021-05-20 00:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:23:29.853+03	2021-05-20 00:23:29.861+03	
b864709f-01bf-a522-5afc-19983b719534	2021-05-20 00:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:23:39.853+03	2021-05-20 00:23:39.86+03	
4911b3c7-878d-5515-a2ef-026adb763593	2021-05-20 00:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:23:49.853+03	2021-05-20 00:23:49.861+03	
d5b7f71d-5674-0749-0127-441c15cade39	2021-05-20 00:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:23:59.853+03	2021-05-20 00:23:59.861+03	
dd47118f-d8ac-cb4a-f14e-bcf7ba4143c6	2021-05-20 00:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:24:09.853+03	2021-05-20 00:24:09.864+03	
096c6ac4-1640-9919-ad44-31de6e9dfa7e	2021-05-20 00:24:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:24:19.853+03	2021-05-20 00:24:19.86+03	
ed537c3d-59f7-c07f-af91-4a4c98792b26	2021-05-20 00:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:24:30.852+03	2021-05-20 00:24:30.858+03	
1cc0ff2a-e7f9-17fd-9063-a4c0f3506c7a	2021-05-20 00:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:24:40.852+03	2021-05-20 00:24:40.859+03	
23c1aae3-e877-a908-5827-97b2a0370a43	2021-05-20 00:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:24:50.853+03	2021-05-20 00:24:50.86+03	
4e263936-7da5-2048-d2f6-5dfbfb1a8267	2021-05-20 00:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:25:00.853+03	2021-05-20 00:25:00.868+03	
1c675482-680c-7fbd-121b-d5a02068f152	2021-05-20 00:25:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:25:11.854+03	2021-05-20 00:25:11.865+03	
3a2265ee-4f36-30cb-da08-534280f0dd7f	2021-05-20 00:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:25:22.852+03	2021-05-20 00:25:22.86+03	
657260b7-7276-353b-fcb5-2d8da10e6241	2021-05-20 00:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:25:32.852+03	2021-05-20 00:25:32.86+03	
8f7871ba-ab64-af5b-1025-51db76940306	2021-05-20 00:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:25:42.852+03	2021-05-20 00:25:42.859+03	
00bc58fc-5c98-40b9-3896-5617e3b683d8	2021-05-20 00:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:25:52.852+03	2021-05-20 00:25:52.859+03	
d303f59f-3206-2fbe-6e1f-e3e25ba76af6	2021-05-20 00:26:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:26:02.852+03	2021-05-20 00:26:02.86+03	
547cff5c-2f3b-4c31-9251-ec29bf92d713	2021-05-20 00:26:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:26:12.852+03	2021-05-20 00:26:12.873+03	
63eb1597-19c4-6747-bc67-37b641948e47	2021-05-20 00:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:26:22.852+03	2021-05-20 00:26:22.86+03	
3b3902dc-82ef-7005-c01e-e19f705d44cf	2021-05-20 00:26:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:26:32.853+03	2021-05-20 00:26:32.86+03	
853dea5f-cbf8-2a05-cacc-eb56847ccdc9	2021-05-20 00:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:26:42.853+03	2021-05-20 00:26:42.859+03	
4eab16ec-4406-99de-3cd3-d74a0869af96	2021-05-20 00:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:26:52.853+03	2021-05-20 00:26:52.873+03	
39c75359-6efc-6626-0779-d697b0c99d49	2021-05-20 00:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:27:03.852+03	2021-05-20 00:27:03.874+03	
14e2e511-c731-5dc2-e942-3991b81ae67b	2021-05-20 00:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:27:13.853+03	2021-05-20 00:27:13.859+03	
5f6c3238-7fe8-f1fc-4d4f-b2dff90d40fe	2021-05-20 00:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:27:24.852+03	2021-05-20 00:27:24.859+03	
79ee3896-8868-aa21-52fa-da6139fc678d	2021-05-20 00:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:27:34.852+03	2021-05-20 00:27:34.861+03	
401210f2-c793-d55a-95a4-8154b91545bd	2021-05-20 00:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:27:44.853+03	2021-05-20 00:27:44.86+03	
0b0630b1-e3af-be9b-d91d-18f9bad0bbe6	2021-05-20 00:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:27:54.853+03	2021-05-20 00:27:54.859+03	
078df748-e913-3710-fc31-dbf73830f4fa	2021-05-20 00:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:28:05.852+03	2021-05-20 00:28:05.859+03	
c0ea59d0-b40e-fec1-7332-8eb3e6ccdbf4	2021-05-20 00:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:28:15.853+03	2021-05-20 00:28:15.868+03	
5d0082f3-8609-d103-c3d8-eb050cc1ca59	2021-05-20 00:28:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:28:25.853+03	2021-05-20 00:28:25.863+03	
2fd2453e-8d1d-2854-adbc-78dd6e78c43c	2021-05-20 00:28:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:28:36.852+03	2021-05-20 00:28:36.859+03	
d166be12-6373-f8a0-042a-c38f0535ff05	2021-05-20 00:28:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:28:46.852+03	2021-05-20 00:28:46.86+03	
9df45d3e-c190-9b09-6255-10cd2215958d	2021-05-20 04:13:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:13:13.853+03	2021-05-20 04:13:13.859+03	
891b3baa-f1a6-adcd-4dbf-009986914ae2	2021-05-20 00:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:28:56.853+03	2021-05-20 00:28:56.859+03	
f1df147b-3d10-f274-3ec4-19e418819c3d	2021-05-20 01:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:55:28.853+03	2021-05-20 01:55:28.86+03	
02579cfa-bb77-ab2d-0f4a-cc0803876c55	2021-05-20 00:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:29:17.853+03	2021-05-20 00:29:17.86+03	
6511e3d1-062a-2745-0373-c3fc235f2a7c	2021-05-20 00:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:29:37.853+03	2021-05-20 00:29:37.861+03	
13bca8f1-97cb-8337-9b8b-93cec388a589	2021-05-20 01:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:55:48.853+03	2021-05-20 01:55:48.86+03	
3737b33f-0286-144c-fe70-acec79853c4d	2021-05-20 00:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:29:58.852+03	2021-05-20 00:29:58.859+03	
31cf17f0-02f4-1c64-2a5f-a25cace10289	2021-05-20 00:30:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:30:08.852+03	2021-05-20 00:30:08.859+03	
721eab6d-989c-25ab-7577-397acc5b99d6	2021-05-20 01:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:56:09.853+03	2021-05-20 01:56:09.859+03	
538482ff-a686-d994-6978-0ea469c9923f	2021-05-20 00:30:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:30:28.853+03	2021-05-20 00:30:28.859+03	
f7ea3b6d-d52f-371e-f617-59a88f2ee8cf	2021-05-20 00:30:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:30:48.853+03	2021-05-20 00:30:48.862+03	
d3b06306-7e4a-a24c-941b-31f7e884e626	2021-05-20 01:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:56:29.853+03	2021-05-20 01:56:29.861+03	
2af49e45-4428-b996-27e5-0b254a6d69b0	2021-05-20 00:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:31:08.853+03	2021-05-20 00:31:08.859+03	
9e6a2ccf-53f3-032b-37a0-88c874829b48	2021-05-20 00:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:31:28.853+03	2021-05-20 00:31:28.859+03	
089d15ef-bd65-b67b-dfbf-91394235c4ea	2021-05-20 01:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:56:49.853+03	2021-05-20 01:56:49.861+03	
422363d8-080d-b85e-079b-fcb20062d61e	2021-05-20 00:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:31:49.852+03	2021-05-20 00:31:49.86+03	
7b4a587f-97f7-682f-514f-4c1aaa78ffea	2021-05-20 00:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:32:09.853+03	2021-05-20 00:32:09.861+03	
3ab70c45-c3b5-3f39-1cf9-f44c62d75a95	2021-05-20 01:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:57:10.853+03	2021-05-20 01:57:10.86+03	
807b8d28-835a-7d37-6167-2e9847e4b018	2021-05-20 00:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:32:30.852+03	2021-05-20 00:32:30.86+03	
12e38d19-252d-d417-5540-de6d7be27e8c	2021-05-20 00:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:32:50.852+03	2021-05-20 00:32:50.864+03	
90257b1a-f31c-b3b4-7835-e61a1ee9262f	2021-05-20 01:57:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:57:31.852+03	2021-05-20 01:57:31.861+03	
689692e0-dbab-0033-ab97-a70f7bf4dbce	2021-05-20 00:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:33:10.852+03	2021-05-20 00:33:10.859+03	
da780fea-88c9-1654-b050-e1b1a0ef1952	2021-05-20 00:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:33:31.853+03	2021-05-20 00:33:31.86+03	
547c25e9-4387-081f-fde3-5e4efd764fcc	2021-05-20 01:57:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:57:51.854+03	2021-05-20 01:57:51.879+03	
4b72c31a-a494-608b-2e03-919ce9845073	2021-05-20 00:33:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:33:51.853+03	2021-05-20 00:33:51.861+03	
badadd8e-9af7-af34-9c8b-497f2207f212	2021-05-20 00:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:34:12.852+03	2021-05-20 00:34:12.859+03	
29c88e10-20af-7951-e1c9-0e08157593c2	2021-05-20 01:58:12.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:58:12.854+03	2021-05-20 01:58:12.864+03	
001c018a-7780-3c33-751e-63a0e0e86be2	2021-05-20 00:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:34:32.853+03	2021-05-20 00:34:32.87+03	
7c058288-a723-294e-2510-34a75e676d55	2021-05-20 00:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:34:53.853+03	2021-05-20 00:34:53.86+03	
ec40ac3e-e729-ec40-c4d1-65e77cfa5589	2021-05-20 01:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:58:33.853+03	2021-05-20 01:58:33.861+03	
ae1a05cb-41f0-6d2e-e65a-552b8b715f03	2021-05-20 00:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:35:14.852+03	2021-05-20 00:35:14.86+03	
1bc14453-9d69-9780-de0b-0a728d24957c	2021-05-20 00:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:35:34.853+03	2021-05-20 00:35:34.861+03	
27985e4d-63f5-c0c9-646c-c2c471b405f5	2021-05-20 01:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:58:54.853+03	2021-05-20 01:58:54.86+03	
bb391d72-df55-aa95-a029-3eb85a3949d9	2021-05-20 00:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:35:54.853+03	2021-05-20 00:35:54.86+03	
b763c332-a303-cac4-6b64-c420942ce7bd	2021-05-20 00:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:36:15.853+03	2021-05-20 00:36:15.87+03	
4af1a050-855e-edfe-2eaf-e16aa00db909	2021-05-20 00:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:36:37.853+03	2021-05-20 00:36:37.86+03	
29c3aa91-b943-c0c9-2c29-481b75f1a771	2021-05-20 00:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:36:58.852+03	2021-05-20 00:36:58.86+03	
e0aecc60-28fd-6420-ae8d-5be5fcdd19b6	2021-05-20 00:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:37:18.852+03	2021-05-20 00:37:18.859+03	
ba568c79-ca77-0c75-993f-c7c2b1431dae	2021-05-20 00:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:37:39.853+03	2021-05-20 00:37:39.862+03	
3e18f86e-0f58-5f7b-1d6a-fab938473657	2021-05-20 00:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:38:00.853+03	2021-05-20 00:38:00.86+03	
ca844294-931e-ee8f-0ab8-ac93417fbdbe	2021-05-20 00:38:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:38:21.853+03	2021-05-20 00:38:21.861+03	
5652c8bf-6203-b00b-c004-dda8e1a5af79	2021-05-20 00:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:38:42.852+03	2021-05-20 00:38:42.859+03	
bc69327c-0114-1964-69c1-5444b18847bc	2021-05-20 00:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:39:02.853+03	2021-05-20 00:39:02.86+03	
f9236c5a-dfbc-7226-9641-d9c324b28237	2021-05-20 00:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:39:22.853+03	2021-05-20 00:39:22.86+03	
94d86f1e-e52c-67c4-d1e4-f856de7ce0a1	2021-05-20 00:39:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:39:44.853+03	2021-05-20 00:39:44.86+03	
3d398470-d6a1-b4d9-0f8c-d1052c894228	2021-05-20 00:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 00:40:00.852+03	2021-05-20 00:40:00.858+03	ERROR
6b529d27-9628-31d4-a03a-2af2b7c92bb2	2021-05-20 00:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:40:15.853+03	2021-05-20 00:40:15.859+03	
ad67a39c-0b36-4383-badf-df93143daa13	2021-05-20 00:40:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:40:36.852+03	2021-05-20 00:40:36.861+03	
ebb136dd-3b5e-8bad-0a6c-59efe23f3486	2021-05-20 00:40:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:40:56.852+03	2021-05-20 00:40:56.86+03	
83db95d1-2624-2f45-c7d9-1caf767e791e	2021-05-20 00:41:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:41:16.852+03	2021-05-20 00:41:16.859+03	
7493dcbc-79e6-9d1a-3355-820bf44a679d	2021-05-20 00:41:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:41:36.853+03	2021-05-20 00:41:36.859+03	
3bf970b4-b02c-335a-e622-6e5e5a88f440	2021-05-20 00:41:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:41:58.852+03	2021-05-20 00:41:58.859+03	
2afc2ce8-6f95-15da-e8f7-709d1d6a4bd4	2021-05-20 00:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:42:18.853+03	2021-05-20 00:42:18.893+03	
f9f0e553-771c-e5ac-c815-4d38e8a49d85	2021-05-20 00:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:42:39.852+03	2021-05-20 00:42:39.859+03	
b37bf074-8615-7f41-5e88-c16239a2cf24	2021-05-20 00:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:42:59.853+03	2021-05-20 00:42:59.862+03	
6ee777bc-0524-bef9-44f7-db67f8d6f560	2021-05-20 00:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:43:20.853+03	2021-05-20 00:43:20.861+03	
bf59453e-a9c0-d03c-15ce-19e832e14e22	2021-05-20 00:43:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:43:41.853+03	2021-05-20 00:43:41.861+03	
dc11c833-1441-7b9f-5cc6-c7fcab02bf37	2021-05-20 00:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:44:02.852+03	2021-05-20 00:44:02.859+03	
9224ccec-14df-3bb4-f775-d22800850de8	2021-05-20 00:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:44:22.852+03	2021-05-20 00:44:22.859+03	
ec20ae0a-11aa-14ff-9916-e60501e1ec1c	2021-05-20 00:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:44:42.852+03	2021-05-20 00:44:42.859+03	
df4776da-ef94-ad2d-c4a8-35efe265f317	2021-05-20 00:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:45:02.852+03	2021-05-20 00:45:02.866+03	
9db84754-fd5b-7347-39f8-ea808167478e	2021-05-20 00:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:45:22.853+03	2021-05-20 00:45:22.859+03	
49083e69-0d46-ce84-4d3a-6185efac48b6	2021-05-20 00:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:45:43.852+03	2021-05-20 00:45:43.859+03	
5071b8c4-727d-76c2-7210-19c72e73fcc8	2021-05-20 00:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:46:03.853+03	2021-05-20 00:46:03.869+03	
0ac82afa-ab68-5f69-3916-2eb57350c3c9	2021-05-20 00:29:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:29:07.853+03	2021-05-20 00:29:07.859+03	
0c51f5dd-906a-2003-6d33-293e2ead52ef	2021-05-20 00:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:29:27.853+03	2021-05-20 00:29:27.859+03	
de0ed7db-f0d0-b2fb-5486-4351fb400373	2021-05-20 00:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:29:48.852+03	2021-05-20 00:29:48.859+03	
4d1c597f-c569-9003-a5fd-74aacc48212c	2021-05-20 00:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 00:30:00.853+03	2021-05-20 00:30:00.868+03	ERROR
e4e536d5-da73-d864-6ebd-6c256352b6d5	2021-05-20 00:30:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:30:18.853+03	2021-05-20 00:30:18.86+03	
a24d5f65-4a6b-849d-1067-f3dac57d11f0	2021-05-20 00:30:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:30:38.853+03	2021-05-20 00:30:38.863+03	
64e15ae6-6ccc-0521-16fe-c3d85071bde0	2021-05-20 00:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:30:58.853+03	2021-05-20 00:30:58.86+03	
2eb7c823-e90e-cc67-fa12-504e990c824e	2021-05-20 00:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:31:18.853+03	2021-05-20 00:31:18.86+03	
e1da76ae-fb0d-2077-2ccd-1d0392e78595	2021-05-20 00:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:31:39.852+03	2021-05-20 00:31:39.859+03	
cb50da99-2c49-3c22-01ca-f71a57a8a491	2021-05-20 00:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:31:59.852+03	2021-05-20 00:31:59.86+03	
1ced5181-844c-2785-9c1d-dce49249aa5d	2021-05-20 00:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:32:19.853+03	2021-05-20 00:32:19.861+03	
4e23f883-1223-2fe5-100b-4f44927a5563	2021-05-20 00:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:32:40.852+03	2021-05-20 00:32:40.863+03	
1583c8b3-616a-ad34-dd8a-8d1577411058	2021-05-20 00:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:33:00.852+03	2021-05-20 00:33:00.859+03	
b7ab93d6-aa7b-1526-6cba-f0e82b3a7317	2021-05-20 00:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:33:20.853+03	2021-05-20 00:33:20.86+03	
0e2253cd-8b13-57fd-841b-35dc5837ffb7	2021-05-20 00:33:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:33:41.853+03	2021-05-20 00:33:41.859+03	
7efbda9d-a501-782d-de88-d8c86a4faf2c	2021-05-20 00:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:34:01.854+03	2021-05-20 00:34:01.904+03	
cbbe78c1-d1a9-611a-64ab-0eab051b037a	2021-05-20 00:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:34:22.853+03	2021-05-20 00:34:22.859+03	
3ce72be7-99a5-1cea-31b4-4d7588caf7af	2021-05-20 00:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:34:42.853+03	2021-05-20 00:34:42.859+03	
66a59c70-2f62-19a1-80e8-363143b04caf	2021-05-20 00:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:35:03.853+03	2021-05-20 00:35:03.861+03	
3c9505ef-dcbe-7cf8-236f-a4b67f6964fc	2021-05-20 00:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:35:24.852+03	2021-05-20 00:35:24.861+03	
ed2b5cc8-29aa-f467-d914-a7aabe2ffc30	2021-05-20 00:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:35:44.853+03	2021-05-20 00:35:44.862+03	
f9e1da47-a3c4-f6df-c646-490c90d2b502	2021-05-20 00:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:36:05.853+03	2021-05-20 00:36:05.859+03	
1d87bf7b-9ff9-e022-9b96-2b8e2d7e8539	2021-05-20 00:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:36:26.853+03	2021-05-20 00:36:26.862+03	
3e1c41ec-e8a3-899a-b0d3-c5f4c109fa81	2021-05-20 00:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:36:48.852+03	2021-05-20 00:36:48.86+03	
ae9a77d9-c190-0ae7-7f5a-33c45026c9fc	2021-05-20 00:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:37:08.852+03	2021-05-20 00:37:08.858+03	
eca070d4-a5c9-00f7-4469-be5585f83af4	2021-05-20 00:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:37:28.853+03	2021-05-20 00:37:28.86+03	
6e23d047-1eac-135f-eeb2-f0295079f255	2021-05-20 00:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:37:50.853+03	2021-05-20 00:37:50.86+03	
ab7212b0-471c-9d5f-8796-fd6805090153	2021-05-20 00:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:38:10.853+03	2021-05-20 00:38:10.86+03	
46418d2f-f429-0182-7482-073041270518	2021-05-20 00:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:38:32.852+03	2021-05-20 00:38:32.86+03	
6e5821e1-971b-c1a8-3362-0b38d2b4e0f2	2021-05-20 00:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:38:52.853+03	2021-05-20 00:38:52.859+03	
b189491c-82a0-0934-1b5f-093bb9f5afd1	2021-05-20 00:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:39:12.853+03	2021-05-20 00:39:12.861+03	
e7b2905c-b8d8-2e01-8dfb-619db44450fd	2021-05-20 00:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:39:33.853+03	2021-05-20 00:39:33.869+03	
d302d4eb-b6e6-ed05-7d35-38d762f6565f	2021-05-20 00:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:39:55.852+03	2021-05-20 00:39:55.86+03	
cb29ddbf-966c-8ac5-5a5f-efbb5f3fc195	2021-05-20 00:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:40:05.852+03	2021-05-20 00:40:05.909+03	
437664bf-0220-9fee-a218-f939a99e1b70	2021-05-20 00:40:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:40:26.852+03	2021-05-20 00:40:26.86+03	
90cb13a5-3c0e-4635-d117-24029a0d09e9	2021-05-20 00:40:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:40:46.852+03	2021-05-20 00:40:46.861+03	
23fbdd18-9a71-2708-d920-d8562783f34f	2021-05-20 00:41:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:41:06.852+03	2021-05-20 00:41:06.86+03	
5a0a2f7e-126a-3fc8-d86c-a8290cd3a04b	2021-05-20 00:41:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:41:26.852+03	2021-05-20 00:41:26.859+03	
90614e12-78db-5b6a-1412-1d962cc37aab	2021-05-20 00:41:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:41:47.853+03	2021-05-20 00:41:47.861+03	
5a9d8e7c-886c-aae4-914e-3a2243fa67d3	2021-05-20 00:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:42:08.852+03	2021-05-20 00:42:08.86+03	
59864f16-5dd4-9291-6c97-ee38d9ca0468	2021-05-20 00:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:42:29.852+03	2021-05-20 00:42:29.859+03	
7fce659e-05a2-2882-abc6-c3824bac0616	2021-05-20 00:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:42:49.852+03	2021-05-20 00:42:49.86+03	
cf618daf-4719-f560-3c93-c1de15928ea5	2021-05-20 00:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:43:10.853+03	2021-05-20 00:43:10.861+03	
30ff4030-b29b-8644-585c-8d254892c538	2021-05-20 00:43:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:43:31.853+03	2021-05-20 00:43:31.86+03	
3d92cccf-803d-c635-99a2-bb53881ef25c	2021-05-20 00:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:43:52.852+03	2021-05-20 00:43:52.86+03	
064d76c4-985f-3535-b0e5-99b07dc2dc82	2021-05-20 00:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:44:12.852+03	2021-05-20 00:44:12.861+03	
6862d431-c3d4-d67c-1c9f-f24597ec4fea	2021-05-20 00:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:44:32.852+03	2021-05-20 00:44:32.859+03	
3806ad5b-2521-4b75-9330-67433d2c66f7	2021-05-20 00:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:44:52.852+03	2021-05-20 00:44:52.859+03	
091776d5-fc91-6f4c-b918-c017dbff3a3d	2021-05-20 00:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:45:12.852+03	2021-05-20 00:45:12.859+03	
1f11f157-cd93-0586-7c8c-756bcb99695a	2021-05-20 00:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:45:33.852+03	2021-05-20 00:45:33.859+03	
f076b1f2-3db8-0188-3f88-77594c39c8a1	2021-05-20 00:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:45:53.853+03	2021-05-20 00:45:53.864+03	
8de5d0c2-b05e-a042-2dbd-969848ca3175	2021-05-20 00:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:46:14.853+03	2021-05-20 00:46:14.862+03	
357cd6dc-6953-ff03-996e-432d237752ae	2021-05-20 00:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:46:25.853+03	2021-05-20 00:46:25.86+03	
9f83a861-cdb6-c0e5-48fb-4ecdb478b1f7	2021-05-20 00:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:46:35.853+03	2021-05-20 00:46:35.859+03	
23afe596-699a-bd68-c0c4-078003188852	2021-05-20 00:46:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:46:46.852+03	2021-05-20 00:46:46.859+03	
03a75621-b948-67cf-043a-309154e95cb4	2021-05-20 00:46:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:46:56.854+03	2021-05-20 00:46:56.862+03	
e6d732d6-ae1f-56ff-afb9-045e2ffaa562	2021-05-20 00:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:47:07.852+03	2021-05-20 00:47:07.859+03	
c82b5f9e-c739-36d5-7d53-939db5922fad	2021-05-20 00:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:47:17.852+03	2021-05-20 00:47:17.859+03	
2354e71a-40ee-473f-23cf-9f4ec8f11ee2	2021-05-20 00:47:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:47:27.852+03	2021-05-20 00:47:27.859+03	
eebc0ddd-2bbb-35d9-fee6-d1b98329c4d6	2021-05-20 00:47:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:47:37.852+03	2021-05-20 00:47:37.864+03	
04978076-cb28-9c22-b8d9-4cab8dbfbf50	2021-05-20 00:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:47:47.853+03	2021-05-20 00:47:47.86+03	
f8096b38-76ed-44c9-cfbf-aadf13a9be50	2021-05-20 00:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:47:58.852+03	2021-05-20 00:47:58.86+03	
f9b54c5b-a2db-57fd-09ca-9ffbdc47b70d	2021-05-20 00:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:48:08.852+03	2021-05-20 00:48:08.859+03	
7dc83334-7a8c-b72b-a37b-246f9557e483	2021-05-20 00:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:48:18.852+03	2021-05-20 00:48:18.859+03	
cbf763fe-ffd0-760d-36e6-43a8eec0ff70	2021-05-20 00:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:48:38.853+03	2021-05-20 00:48:38.859+03	
fac4eae5-314d-65be-f375-7190a7b0f43f	2021-05-20 00:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:48:58.853+03	2021-05-20 00:48:58.86+03	
47a09319-0631-8fd0-3806-931ddb0157bd	2021-05-20 00:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:49:19.852+03	2021-05-20 00:49:19.861+03	
ef2e7f6a-bb85-8967-e879-a4f7a02e2b65	2021-05-20 00:49:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:49:40.853+03	2021-05-20 00:49:40.863+03	
0ab857dc-4875-3e84-0969-7e58c99ec671	2021-05-20 00:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 00:50:00.852+03	2021-05-20 00:50:00.858+03	ERROR
bc2a7803-8d06-dfc8-5bef-6604d35754fc	2021-05-20 00:50:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:50:11.854+03	2021-05-20 00:50:11.86+03	
e659a9d2-6fd5-4cc3-72ec-f9274e0afd38	2021-05-20 00:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:50:32.853+03	2021-05-20 00:50:32.87+03	
2779eb6f-0ec8-8d95-3c4b-35b9cb563ad3	2021-05-20 00:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:50:53.853+03	2021-05-20 00:50:53.86+03	
02380860-e1c5-667f-7443-ede04d448b31	2021-05-20 00:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:51:15.853+03	2021-05-20 00:51:15.86+03	
d9bf8324-1c08-ccd2-565c-9adbf9cb5bdf	2021-05-20 00:51:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:51:36.853+03	2021-05-20 00:51:36.859+03	
2b2b0afa-5651-1747-25a7-87eeaf7758da	2021-05-20 00:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:51:57.852+03	2021-05-20 00:51:57.859+03	
a6b35e5c-daab-280c-950b-6576a8ffd4a6	2021-05-20 00:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:52:17.853+03	2021-05-20 00:52:17.859+03	
b4479f38-9028-8c56-d780-a18d084040fb	2021-05-20 00:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:52:37.853+03	2021-05-20 00:52:37.86+03	
5478e6ff-2dcf-e6ca-25b1-64f4624c38fc	2021-05-20 00:52:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:52:58.853+03	2021-05-20 00:52:58.86+03	
5d85ac15-cb4d-8cc6-628d-45336f357332	2021-05-20 00:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:53:19.852+03	2021-05-20 00:53:19.86+03	
a83d3c17-5dbb-b969-311e-b3e3b93c9dca	2021-05-20 00:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:53:39.852+03	2021-05-20 00:53:39.862+03	
c8a72b56-1c10-945a-a236-90de5770670e	2021-05-20 00:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:53:59.853+03	2021-05-20 00:53:59.86+03	
5049f07a-b4fd-9201-4138-dd87ad0432b5	2021-05-20 00:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:54:20.853+03	2021-05-20 00:54:20.859+03	
5e623a67-7a92-9f43-726d-0c73820d92a3	2021-05-20 00:54:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:54:41.853+03	2021-05-20 00:54:41.869+03	
35d7c530-03a4-043c-ef6d-e63d39bc0cda	2021-05-20 00:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:55:02.852+03	2021-05-20 00:55:02.873+03	
a503b24b-3792-63a1-bcb5-bde4bb3ff786	2021-05-20 00:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:55:22.853+03	2021-05-20 00:55:22.863+03	
1017cb6a-1384-73e1-a97d-34badc71f2cd	2021-05-20 00:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:55:42.853+03	2021-05-20 00:55:42.863+03	
b6112601-2af4-1be9-ac68-d7101ad752af	2021-05-20 00:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:56:02.853+03	2021-05-20 00:56:02.859+03	
43568281-7d6f-201f-80b7-008a1af764fd	2021-05-20 00:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:56:22.853+03	2021-05-20 00:56:22.859+03	
b64b7c35-36a7-92d9-5036-035e10901e14	2021-05-20 00:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:56:43.853+03	2021-05-20 00:56:43.86+03	
8d822430-e1a4-9d1c-dbe8-d70bc7190c19	2021-05-20 00:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:57:03.853+03	2021-05-20 00:57:03.862+03	
f80b4ca9-761d-dcf4-a134-4b66a0025dc8	2021-05-20 00:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:57:24.852+03	2021-05-20 00:57:24.859+03	
4b64a7c3-d975-4589-e1f5-0cdb4a96fdd9	2021-05-20 00:57:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:57:44.853+03	2021-05-20 00:57:44.861+03	
a2f85634-425f-51f7-7429-33a175c3103a	2021-05-20 00:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:58:05.853+03	2021-05-20 00:58:05.864+03	
f1c535f1-1aa2-5728-902b-c42fe5d8a219	2021-05-20 00:58:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:58:26.854+03	2021-05-20 00:58:26.863+03	
eda92848-9da5-c383-d416-92a952719bc8	2021-05-20 00:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:58:47.853+03	2021-05-20 00:58:47.859+03	
eee7fdd7-90b2-a393-b2f2-23660a57b9b0	2021-05-20 00:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:59:08.852+03	2021-05-20 00:59:08.859+03	
4af3d183-ee1b-9664-be65-6a6396873eb1	2021-05-20 00:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:59:28.853+03	2021-05-20 00:59:28.86+03	
9b3b7d9b-30a4-8cbe-df0a-c8c1b5a91ff6	2021-05-20 00:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:59:48.853+03	2021-05-20 00:59:48.864+03	
ef9f5b4f-bec4-f3b8-7716-0aafbc4ab304	2021-05-20 01:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 01:00:00.853+03	2021-05-20 01:00:00.857+03	ERROR
96367703-0f3a-09dd-1239-f46adc8187f5	2021-05-20 01:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:00:18.853+03	2021-05-20 01:00:18.863+03	
8dcf4734-c0c8-8e44-e3b8-d74a10f4ec23	2021-05-20 01:00:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:00:38.853+03	2021-05-20 01:00:38.875+03	
78a4a4d2-55c9-f204-6417-5fd6eeef092e	2021-05-20 01:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:00:58.853+03	2021-05-20 01:00:58.86+03	
f7b0b823-fb30-44b2-2811-51c7d4c69fc8	2021-05-20 01:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:01:18.853+03	2021-05-20 01:01:18.86+03	
2b870ba3-c1f9-77b5-ae9d-f4614b93b19a	2021-05-20 01:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:01:38.853+03	2021-05-20 01:01:38.86+03	
9f608c2c-855c-d78d-08ba-126189211a81	2021-05-20 01:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:01:59.853+03	2021-05-20 01:01:59.86+03	
31392b1c-9a76-95fe-0a7c-ad3dc7d286da	2021-05-20 01:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:02:19.853+03	2021-05-20 01:02:19.859+03	
b85545b8-c125-1d6e-4b21-1f526b1f8a33	2021-05-20 01:02:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:02:39.853+03	2021-05-20 01:02:39.863+03	
1359c34c-4b4b-b11b-1a9d-fef63572c2bb	2021-05-20 01:02:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:02:59.853+03	2021-05-20 01:02:59.86+03	
3dfa9c82-e157-505b-e1c7-025d007913cf	2021-05-20 01:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:03:20.853+03	2021-05-20 01:03:20.859+03	
92eaa1e4-f71e-8872-b0ab-5e5cd20ec937	2021-05-20 01:03:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:03:41.853+03	2021-05-20 01:03:41.86+03	
091bd7b5-c804-bbde-446c-49efd1d0f59b	2021-05-20 01:04:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:04:01.853+03	2021-05-20 01:04:01.921+03	
f1773994-3967-3c4c-cdfb-27267a4f7249	2021-05-20 01:04:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:04:21.853+03	2021-05-20 01:04:21.862+03	
6d823c20-2256-e234-7a2a-ab83897fbb8a	2021-05-20 01:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:04:42.853+03	2021-05-20 01:04:42.861+03	
a0fa7fb1-6290-0e30-eca6-d5415721a231	2021-05-20 01:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:05:03.852+03	2021-05-20 01:05:03.86+03	
88deed22-bac7-4e8a-0890-66cfa07d7a60	2021-05-20 01:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:05:23.853+03	2021-05-20 01:05:23.86+03	
f72b7fbf-a650-df9a-83ab-1f84f9fd1968	2021-05-20 01:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:05:44.853+03	2021-05-20 01:05:44.862+03	
5353fd0c-f88d-a91e-8946-14745c74d9ef	2021-05-20 01:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:06:05.853+03	2021-05-20 01:06:05.871+03	
09a44473-53d5-bfb5-7191-83acc750b27c	2021-05-20 01:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:06:26.852+03	2021-05-20 01:06:26.861+03	
25af92d2-0d79-375a-3b4a-2634579868e1	2021-05-20 01:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:06:47.853+03	2021-05-20 01:06:47.859+03	
25d4ecc7-063c-6f44-8684-4cfcdc0b8d68	2021-05-20 01:07:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:07:07.853+03	2021-05-20 01:07:07.86+03	
9fb8f697-4fd7-038f-fe53-cbf5616a5e94	2021-05-20 01:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:07:27.853+03	2021-05-20 01:07:27.86+03	
bb2d032a-7315-8078-b5a5-398c75eb6771	2021-05-20 01:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:07:47.853+03	2021-05-20 01:07:47.863+03	
0b29493d-a070-29bf-5b62-5bb7e22816eb	2021-05-20 01:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:08:07.853+03	2021-05-20 01:08:07.859+03	
a1909ab5-5c7a-bade-d1a8-f0de16fa0f2f	2021-05-20 01:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:08:28.853+03	2021-05-20 01:08:28.862+03	
b1cd4e52-2e3d-5508-db9e-04f0d12bf7e2	2021-05-20 01:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:08:48.853+03	2021-05-20 01:08:48.86+03	
9e3dbe6d-62fc-51e9-0cb0-0e4af4d957be	2021-05-20 01:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:09:08.853+03	2021-05-20 01:09:08.859+03	
1cc70710-3a47-10a6-2b78-a5fe555a63cd	2021-05-20 00:48:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:48:28.852+03	2021-05-20 00:48:28.871+03	
4169198c-dd2f-dbd8-d202-bd7a904301a3	2021-05-20 00:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:48:48.853+03	2021-05-20 00:48:48.864+03	
8de99581-913b-0aa2-d775-4a8d058100cc	2021-05-20 00:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:49:08.853+03	2021-05-20 00:49:08.859+03	
b9abf09d-203a-4c06-722b-c7341c0641f5	2021-05-20 00:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:49:29.853+03	2021-05-20 00:49:29.859+03	
4fd7f6f0-7458-034e-a9cd-5fe2c3405a05	2021-05-20 00:49:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:49:51.852+03	2021-05-20 00:49:51.86+03	
02c467dc-3582-0e73-eac9-7e13d6c679ab	2021-05-20 00:50:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:50:01.852+03	2021-05-20 00:50:01.859+03	
00b0b624-8d96-a6cf-7b06-a03d579946c7	2021-05-20 00:50:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:50:21.854+03	2021-05-20 00:50:21.861+03	
3a2a3bb6-7796-bc29-75c6-d3293cccfb9d	2021-05-20 00:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:50:43.852+03	2021-05-20 00:50:43.859+03	
4e9cacb5-e3ec-bc77-58fc-b4aeab05ebc2	2021-05-20 00:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:51:04.853+03	2021-05-20 00:51:04.859+03	
183e340e-6cbf-fe44-4c0e-5bbf0f282db7	2021-05-20 00:51:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:51:26.852+03	2021-05-20 00:51:26.863+03	
00fa3cae-7694-e5dc-5f13-8d30b65a8c1a	2021-05-20 00:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:51:47.852+03	2021-05-20 00:51:47.862+03	
2db0bd60-1bd7-2b01-9517-0b907ecaa48c	2021-05-20 00:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:52:07.853+03	2021-05-20 00:52:07.859+03	
f0b64b33-1e48-4ad6-de18-267683b5ad4d	2021-05-20 00:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:52:27.853+03	2021-05-20 00:52:27.86+03	
bad93a4a-d3b5-7979-eec8-bdc75b9e8247	2021-05-20 00:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:52:47.853+03	2021-05-20 00:52:47.859+03	
64b876c3-dad1-34d1-aee8-e1b551e31e0b	2021-05-20 00:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:53:09.852+03	2021-05-20 00:53:09.859+03	
da6132f7-7816-5978-a255-b490b028c363	2021-05-20 00:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:53:29.852+03	2021-05-20 00:53:29.859+03	
21325909-3f04-2a96-726f-a6b6a24690e2	2021-05-20 00:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:53:49.853+03	2021-05-20 00:53:49.859+03	
2026dcae-8c34-ae71-87a1-4b5d605bf879	2021-05-20 00:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:54:10.852+03	2021-05-20 00:54:10.859+03	
f037bace-6da1-ad86-b501-e21ddd311c7f	2021-05-20 00:54:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:54:31.853+03	2021-05-20 00:54:31.873+03	
5eead232-78b7-6296-ea2a-a4265be66882	2021-05-20 00:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:54:52.852+03	2021-05-20 00:54:52.861+03	
1bc4536f-d5b1-be28-82bb-b9e5325acf0f	2021-05-20 00:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:55:12.853+03	2021-05-20 00:55:12.863+03	
d1549dd3-7db2-50dd-5ada-c305b43befb5	2021-05-20 00:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:55:32.853+03	2021-05-20 00:55:32.86+03	
bc444285-3c64-8dc8-555c-245c1d1979cd	2021-05-20 00:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:55:52.853+03	2021-05-20 00:55:52.859+03	
957f456a-81e9-b9f1-7f24-6b4945ed44b2	2021-05-20 00:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:56:12.853+03	2021-05-20 00:56:12.859+03	
633329ea-5529-b171-532d-59fac62e0d1c	2021-05-20 00:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:56:32.853+03	2021-05-20 00:56:32.861+03	
2ca9b248-932b-1427-2129-f7731c475ee1	2021-05-20 00:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:56:53.853+03	2021-05-20 00:56:53.862+03	
296ffb28-90df-e802-cb65-7ddaa3f3eca6	2021-05-20 00:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:57:13.853+03	2021-05-20 00:57:13.86+03	
b81dbfaa-9fd0-f75b-6395-9507ab8d1b85	2021-05-20 00:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:57:34.852+03	2021-05-20 00:57:34.86+03	
b20eac95-041e-8515-6f48-29f563e95235	2021-05-20 00:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:57:55.853+03	2021-05-20 00:57:55.86+03	
fed9d3bd-8634-9432-ce22-5e19877e84a2	2021-05-20 00:58:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:58:16.853+03	2021-05-20 00:58:16.862+03	
607f14a0-bad8-1e35-b86d-181046d58113	2021-05-20 00:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:58:37.853+03	2021-05-20 00:58:37.86+03	
45357a26-5f39-b870-cfbf-40147b1c46a7	2021-05-20 00:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:58:58.852+03	2021-05-20 00:58:58.86+03	
8520c927-0381-4672-aad5-aa05fd694403	2021-05-20 00:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:59:18.853+03	2021-05-20 00:59:18.86+03	
f3bb7b63-a412-1ab5-ef61-78a71fd6572d	2021-05-20 00:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:59:38.853+03	2021-05-20 00:59:38.859+03	
92fc51ac-3472-b3e3-5287-a8a6e1b29493	2021-05-20 00:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 00:59:58.853+03	2021-05-20 00:59:58.863+03	
5ff959f7-61bf-9a51-ca00-6454ce0e33e3	2021-05-20 01:00:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:00:08.853+03	2021-05-20 01:00:08.867+03	
a17b54d4-8000-65ab-af0d-1f3c3c3b037b	2021-05-20 01:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:00:28.853+03	2021-05-20 01:00:28.863+03	
c9eaf19e-c66f-cfd3-4f03-bdea4f58fbd7	2021-05-20 01:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:00:48.853+03	2021-05-20 01:00:48.861+03	
89c8d691-0a9c-1f11-ff83-934fd18ec3d3	2021-05-20 01:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:01:08.853+03	2021-05-20 01:01:08.86+03	
1fa17a4a-f879-9637-182b-1193df294f24	2021-05-20 01:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:01:28.853+03	2021-05-20 01:01:28.86+03	
4b83f757-5798-7458-9fb1-295db24d04b0	2021-05-20 01:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:01:49.852+03	2021-05-20 01:01:49.859+03	
b219b31d-73f8-42c7-71a5-7b1d2b4fd805	2021-05-20 01:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:02:09.853+03	2021-05-20 01:02:09.859+03	
b60ce178-c899-cc7f-25d9-555dd3300ed7	2021-05-20 01:02:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:02:29.853+03	2021-05-20 01:02:29.861+03	
9ccfbe27-8c2b-65e9-0892-7900e77e31d9	2021-05-20 01:02:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:02:49.853+03	2021-05-20 01:02:49.86+03	
fb1e84bd-8d9e-566a-a4ca-04e4c75cc2b1	2021-05-20 01:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:03:10.853+03	2021-05-20 01:03:10.86+03	
0a33502e-3bd4-edf5-0b57-522ade9caefe	2021-05-20 01:03:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:03:31.853+03	2021-05-20 01:03:31.86+03	
86550ffe-1b9b-0a0e-1ef0-3f98e2dfb330	2021-05-20 01:03:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:03:51.853+03	2021-05-20 01:03:51.86+03	
1fea3358-e558-1327-246a-5ee24e3e56fd	2021-05-20 01:04:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:04:11.853+03	2021-05-20 01:04:11.863+03	
89455554-5602-6351-5285-27d313f8d466	2021-05-20 01:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:04:32.852+03	2021-05-20 01:04:32.859+03	
fcda25e6-3ee1-2210-fe89-6828059b488a	2021-05-20 01:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:04:52.853+03	2021-05-20 01:04:52.86+03	
523062ee-fefc-e5dc-6efb-101cfc6148a3	2021-05-20 01:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:05:13.852+03	2021-05-20 01:05:13.86+03	
74f0ac99-490c-b54d-94c5-b544d4b72dc4	2021-05-20 01:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:05:33.853+03	2021-05-20 01:05:33.86+03	
96d69ab6-c109-2a34-6a72-2d440e3e0107	2021-05-20 01:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:05:55.853+03	2021-05-20 01:05:55.865+03	
a0007cc6-95dd-fb33-6dfa-cc1414f01ae8	2021-05-20 01:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:06:15.853+03	2021-05-20 01:06:15.87+03	
41759e54-6b21-56ab-a8d1-a95a784fef96	2021-05-20 01:06:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:06:36.853+03	2021-05-20 01:06:36.862+03	
83ca6b8b-852d-fdf4-0ee9-94ccdf668051	2021-05-20 01:06:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:06:57.853+03	2021-05-20 01:06:57.868+03	
27d3ab0c-c09d-3673-7e4b-39f9e4975d57	2021-05-20 01:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:07:17.853+03	2021-05-20 01:07:17.861+03	
a787fc21-b7c4-0f84-c004-cd298492c8ec	2021-05-20 01:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:07:37.853+03	2021-05-20 01:07:37.86+03	
8b891c4e-154a-8eaf-4037-854f5534c020	2021-05-20 01:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:07:57.853+03	2021-05-20 01:07:57.859+03	
33c1e059-f911-b443-1ca6-195a8fb7f2c1	2021-05-20 01:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:08:17.853+03	2021-05-20 01:08:17.86+03	
0d466f57-3f7b-0332-e16e-373375ae3303	2021-05-20 01:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:08:38.853+03	2021-05-20 01:08:38.861+03	
a41d5fa0-464c-837b-7002-a6885278ae17	2021-05-20 01:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:08:58.853+03	2021-05-20 01:08:58.861+03	
e3b09b32-6967-986f-c4c7-6166c5110588	2021-05-20 01:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:09:18.853+03	2021-05-20 01:09:18.872+03	
ae88db46-5263-6382-fb84-bdd3e30d90e2	2021-05-20 07:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:03:33.853+03	2021-05-20 07:03:33.859+03	
8a7bd429-9ec0-5658-177a-ceeafa7c6ffd	2021-05-20 01:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:09:28.853+03	2021-05-20 01:09:28.86+03	
e6033c02-0cd9-5ae2-0f49-bd9d4823bcb9	2021-05-20 01:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:59:15.853+03	2021-05-20 01:59:15.861+03	
7e6d2b9a-2f49-dbed-60f7-8d33ee73f83b	2021-05-20 01:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:09:49.853+03	2021-05-20 01:09:49.86+03	
4613fb89-a398-1ccf-a15d-a37504e5973f	2021-05-20 01:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:10:10.853+03	2021-05-20 01:10:10.862+03	
38a7ffca-5c60-88dd-a71a-b68245cd5cad	2021-05-20 01:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:59:36.853+03	2021-05-20 01:59:36.863+03	
4646abe7-18cf-a0b6-16b7-7f57cbef1ffa	2021-05-20 01:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:10:30.853+03	2021-05-20 01:10:30.871+03	
ceb3005d-1c7d-6c26-b786-9e59b5021a1a	2021-05-20 01:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:10:50.853+03	2021-05-20 01:10:50.861+03	
594d8038-23a1-1c99-5886-250bff1f89be	2021-05-20 01:59:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:59:57.853+03	2021-05-20 01:59:57.869+03	
6b9fba65-345f-097f-7af4-d733783a2dfc	2021-05-20 01:11:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:11:11.853+03	2021-05-20 01:11:11.861+03	
2c5de07f-ba79-7cba-4982-acd2b5d6ac10	2021-05-20 01:11:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:11:31.853+03	2021-05-20 01:11:31.87+03	
56505bc6-62a6-d6b4-95e8-80c30bc1fa91	2021-05-20 02:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:00:07.853+03	2021-05-20 02:00:07.87+03	
39088de4-c0bc-5c6f-32a2-cf8770cd7326	2021-05-20 01:11:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:11:52.853+03	2021-05-20 01:11:52.861+03	
f21004da-d425-f6ed-2106-1dbd71546767	2021-05-20 01:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:12:13.852+03	2021-05-20 01:12:13.859+03	
7420e48c-f87e-8e4a-f9f7-85632bdbd722	2021-05-20 02:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:00:27.853+03	2021-05-20 02:00:27.866+03	
3a3e1060-b159-3e2c-c51e-db68a82c855a	2021-05-20 01:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:12:33.853+03	2021-05-20 01:12:33.86+03	
ee69860f-bed8-a6cc-1331-6949609cc9fc	2021-05-20 01:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:12:53.853+03	2021-05-20 01:12:53.864+03	
a577f858-9830-b8ca-c7e0-7caa8d234828	2021-05-20 02:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:00:48.853+03	2021-05-20 02:00:48.86+03	
2c4ef9c0-6f0f-9cbf-c427-8516356db4c2	2021-05-20 01:13:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:13:14.853+03	2021-05-20 01:13:14.86+03	
98cac4e8-dd59-e64d-8bdf-748c0945165b	2021-05-20 01:13:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:13:34.853+03	2021-05-20 01:13:34.86+03	
ce158c62-26d0-b58e-260f-c72a5a8ae9b9	2021-05-20 02:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:01:09.853+03	2021-05-20 02:01:09.859+03	
eabac8d1-74ea-352f-477b-2d896083e3b6	2021-05-20 02:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:01:30.853+03	2021-05-20 02:01:30.861+03	
7d3623f4-1e94-28c0-9222-0cbe0c1cfccb	2021-05-20 02:01:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:01:51.853+03	2021-05-20 02:01:51.861+03	
048de77a-dc02-6adb-7ab1-27db381c6873	2021-05-20 02:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:02:11.853+03	2021-05-20 02:02:11.86+03	
99852419-d391-7a5e-5e87-f8476338c949	2021-05-20 02:02:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:02:31.854+03	2021-05-20 02:02:31.861+03	
11a7e86b-0374-ec7b-a9a6-19555bcfdb3d	2021-05-20 02:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:02:52.853+03	2021-05-20 02:02:52.861+03	
3e86a1be-1c62-ec65-0358-0a49b1e10c1e	2021-05-20 02:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:03:13.853+03	2021-05-20 02:03:13.871+03	
534b1031-89f7-dacb-de7b-397e03b18a85	2021-05-20 02:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:03:34.853+03	2021-05-20 02:03:34.86+03	
e9c7a9f6-190a-d47d-8c9a-b46ade3365a8	2021-05-20 02:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:03:54.853+03	2021-05-20 02:03:54.86+03	
7113fad8-dea2-1771-8a05-b2b85cd86e67	2021-05-20 02:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:04:14.853+03	2021-05-20 02:04:14.862+03	
9d9c9f9b-7d3b-5f5f-3859-b45d64261c56	2021-05-20 02:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:04:35.853+03	2021-05-20 02:04:35.859+03	
3b41090e-056c-2e08-b4a5-1926b853408e	2021-05-20 02:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:04:55.853+03	2021-05-20 02:04:55.86+03	
3b42943d-a624-b86f-b2f1-16606ee1ded7	2021-05-20 02:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:05:15.853+03	2021-05-20 02:05:15.859+03	
cab4d86d-0601-0711-e13e-2e3ed5de3cd6	2021-05-20 02:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:05:37.853+03	2021-05-20 02:05:37.861+03	
94b2e77b-7cf2-a9ee-d602-3d7fcc642fd1	2021-05-20 02:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:05:57.853+03	2021-05-20 02:05:57.86+03	
f1484f59-a6c4-5b53-18bf-d8348a1a4ef7	2021-05-20 02:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:06:17.853+03	2021-05-20 02:06:17.863+03	
1c6e4821-935c-6c08-77d1-a8a490b7abdb	2021-05-20 02:06:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:06:37.853+03	2021-05-20 02:06:37.864+03	
fa5a179a-63de-e7a7-09b5-c5c15bd77dab	2021-05-20 02:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:06:57.853+03	2021-05-20 02:06:57.862+03	
94c241fe-20a8-6b85-27bd-aee7d625ef3d	2021-05-20 02:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:07:18.853+03	2021-05-20 02:07:18.859+03	
064fbbb9-d99d-68ca-77cc-268c492458da	2021-05-20 02:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:07:39.852+03	2021-05-20 02:07:39.862+03	
76a9d442-7210-71c9-130d-cf5e38040282	2021-05-20 02:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:07:59.853+03	2021-05-20 02:07:59.86+03	
f7c92cfc-fdcd-2c7a-d907-06109073c768	2021-05-20 02:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:08:19.853+03	2021-05-20 02:08:19.86+03	
4c999590-8d4f-176b-406e-5f9b16e65e80	2021-05-20 02:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:08:39.853+03	2021-05-20 02:08:39.859+03	
69e8c9a9-c0f1-58a5-e396-ea6cf10f1d90	2021-05-20 02:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:08:59.853+03	2021-05-20 02:08:59.86+03	
9bf7f57d-af95-fa92-b885-16019b6f0e88	2021-05-20 02:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:09:20.852+03	2021-05-20 02:09:20.859+03	
b87e1111-9a98-3465-0dca-260cf1842d65	2021-05-20 02:09:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:09:41.854+03	2021-05-20 02:09:41.863+03	
d2a345b7-7755-f4be-2d76-0eb02762d0ea	2021-05-20 02:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 02:10:00.853+03	2021-05-20 02:10:00.857+03	ERROR
0adc6985-6201-1df5-51bd-61c61b827794	2021-05-20 02:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:10:12.853+03	2021-05-20 02:10:12.864+03	
3220be9d-2d47-8744-da0f-480bb66f2d33	2021-05-20 02:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:10:33.853+03	2021-05-20 02:10:33.861+03	
6fcb36fa-30b7-debe-8d5a-fc0439dd35ef	2021-05-20 02:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:10:54.853+03	2021-05-20 02:10:54.862+03	
fca2dca8-3f21-d989-797d-5633a1224ece	2021-05-20 02:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:11:15.852+03	2021-05-20 02:11:15.861+03	
56077c04-4a37-2bb9-ee90-c419045aaf5f	2021-05-20 02:11:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:11:46.854+03	2021-05-20 02:11:46.86+03	
9a14f0c9-611b-596e-b6c5-9fb2f54f1c9c	2021-05-20 02:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:12:07.853+03	2021-05-20 02:12:07.86+03	
1ffde508-4018-eaa3-3c13-11324008d440	2021-05-20 02:12:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:12:29.852+03	2021-05-20 02:12:29.859+03	
b8cc5975-7082-997a-08d8-e3792770e899	2021-05-20 02:12:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:12:49.853+03	2021-05-20 02:12:49.86+03	
a6e12dda-a689-1a94-a56d-89528ded9905	2021-05-20 02:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:13:09.853+03	2021-05-20 02:13:09.86+03	
a9cfefd8-5c27-e4c0-4e0c-fdc95eda99e2	2021-05-20 02:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:13:30.852+03	2021-05-20 02:13:30.859+03	
aa91ee41-482b-4e62-7007-3316700e6b28	2021-05-20 02:14:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:14:00.853+03	2021-05-20 02:14:00.862+03	
8b4b40ae-3f82-7772-bf65-6489a7d262cb	2021-05-20 02:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:14:20.853+03	2021-05-20 02:14:20.865+03	
60b74530-4552-96b1-18e4-afdbd0e8603d	2021-05-20 02:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:14:41.852+03	2021-05-20 02:14:41.862+03	
c5f04dc7-cd37-aeff-b1bb-e29c264e4922	2021-05-20 02:15:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:15:01.854+03	2021-05-20 02:15:01.862+03	
ba553347-eaf6-8f1a-e475-273209bda48b	2021-05-20 02:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:15:23.852+03	2021-05-20 02:15:23.859+03	
fda412d5-96f1-f30a-fe50-cd4ac4f71100	2021-05-20 02:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:15:43.853+03	2021-05-20 02:15:43.86+03	
43644fd8-38f6-2002-bded-a3c92eb5b047	2021-05-20 02:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:16:03.853+03	2021-05-20 02:16:03.86+03	
ddc4b816-59c5-5fe2-661d-4e7b02fe56a3	2021-05-20 01:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:09:39.852+03	2021-05-20 01:09:39.86+03	
8cd043a5-84a1-bb6d-07a2-957f5a863639	2021-05-20 01:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:10:00.852+03	2021-05-20 01:10:00.86+03	
882d697c-5f5c-9542-823c-6953cc5f13ee	2021-05-20 01:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 01:10:00.853+03	2021-05-20 01:10:00.87+03	ERROR
a16021ba-aab3-18da-2e25-3a43ca6e2979	2021-05-20 01:10:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:10:20.853+03	2021-05-20 01:10:20.861+03	
cff1a2de-3b20-3637-d65d-770a17e6b653	2021-05-20 01:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:10:40.853+03	2021-05-20 01:10:40.86+03	
6f7a3042-9ef7-bc28-4886-ee85198f91fa	2021-05-20 01:11:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:11:01.853+03	2021-05-20 01:11:01.872+03	
e03f2ca6-39fc-8e2c-280b-a42d9aeaeb5d	2021-05-20 01:11:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:11:21.853+03	2021-05-20 01:11:21.862+03	
a7987f32-2924-8827-1d4d-a78633c95104	2021-05-20 01:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:11:42.853+03	2021-05-20 01:11:42.859+03	
201d8d94-314c-dd1f-201b-1e1cbe0334a7	2021-05-20 01:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:12:02.853+03	2021-05-20 01:12:02.915+03	
18a1a3dc-1913-8e29-9583-80be530a2a5b	2021-05-20 01:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:12:23.852+03	2021-05-20 01:12:23.859+03	
917d5624-4bab-7621-dac5-2edc16750f1e	2021-05-20 01:12:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:12:43.853+03	2021-05-20 01:12:43.86+03	
064b7a0b-bf11-494a-5328-99bbe7a131ba	2021-05-20 01:13:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:13:03.853+03	2021-05-20 01:13:04.017+03	
5a1c7e55-9a29-e81e-b0a5-ecbc4b873d81	2021-05-20 01:13:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:13:24.853+03	2021-05-20 01:13:24.861+03	
14d390fe-f015-ff36-27a1-2a95e7b35332	2021-05-20 01:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:13:45.853+03	2021-05-20 01:13:45.859+03	
ec896ef7-f04e-e9db-d705-7537475c343b	2021-05-20 01:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:13:55.853+03	2021-05-20 01:13:55.869+03	
1115940a-810c-3757-7c26-0b79a7375997	2021-05-20 01:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:14:05.853+03	2021-05-20 01:14:05.861+03	
5c64ec36-ec5d-1a9b-9fc3-6dc4fa1b0d5d	2021-05-20 01:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:14:15.853+03	2021-05-20 01:14:15.86+03	
3f3f18d8-6a9d-5974-9795-3e99754a9aaa	2021-05-20 01:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:14:25.853+03	2021-05-20 01:14:25.861+03	
dd96191e-1277-ddba-6d9f-337a78daeeb3	2021-05-20 01:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:14:35.853+03	2021-05-20 01:14:35.865+03	
2d15ff98-7e7c-a229-b4f4-15f19a68fb54	2021-05-20 01:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:14:45.853+03	2021-05-20 01:14:45.862+03	
95bba1c3-b350-eeb4-98ff-13186971c51a	2021-05-20 01:14:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:14:56.854+03	2021-05-20 01:14:56.861+03	
338be9f2-5123-6b9e-902e-65d7fc59bd66	2021-05-20 01:15:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:15:06.854+03	2021-05-20 01:15:06.86+03	
ca00101f-439c-9fb2-6362-3892d5cfed9b	2021-05-20 01:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:15:17.852+03	2021-05-20 01:15:17.874+03	
bd16df22-721b-abd9-f3d9-8e6f62c1b592	2021-05-20 01:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:15:27.853+03	2021-05-20 01:15:27.861+03	
0500665e-7de8-da18-624d-b9c36c3c1985	2021-05-20 01:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:15:37.853+03	2021-05-20 01:15:37.859+03	
6f8502c3-0869-fb51-b875-9c563c81d4c9	2021-05-20 01:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:15:47.853+03	2021-05-20 01:15:47.86+03	
7d060ad9-188c-386a-1bb9-407f085ddd0b	2021-05-20 01:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:15:57.853+03	2021-05-20 01:15:57.859+03	
a7545741-e5b4-2e5d-b248-2023ddd209c5	2021-05-20 01:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:16:07.853+03	2021-05-20 01:16:07.86+03	
5fdaebea-3111-3e77-c68a-a5607a9e2788	2021-05-20 01:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:16:17.853+03	2021-05-20 01:16:17.861+03	
12e92f85-825d-37f8-b7e9-9b3bae8a4064	2021-05-20 01:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:16:27.853+03	2021-05-20 01:16:27.861+03	
470f7c03-4359-ec15-ae54-65242a710f3a	2021-05-20 01:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:16:37.853+03	2021-05-20 01:16:37.863+03	
ae04fa40-7160-3282-2817-fa209e8367da	2021-05-20 01:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:16:48.852+03	2021-05-20 01:16:48.86+03	
ea871218-415c-270e-4db4-38a8e311dfa4	2021-05-20 01:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:16:58.853+03	2021-05-20 01:16:58.864+03	
92a28f37-14ec-68bd-b727-03161dc8ec3f	2021-05-20 01:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:17:08.853+03	2021-05-20 01:17:08.86+03	
433a2256-6122-01c9-15c4-e43713096f23	2021-05-20 01:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:17:18.853+03	2021-05-20 01:17:18.862+03	
7c86ffc0-e035-d631-7c9e-d68e8f5ff972	2021-05-20 01:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:17:28.853+03	2021-05-20 01:17:28.872+03	
56fd23e6-9d6d-92d0-b7a8-29e8da3f03f4	2021-05-20 01:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:17:39.852+03	2021-05-20 01:17:39.86+03	
35e611bc-ff20-3290-99a5-0d247b1b53a5	2021-05-20 01:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:17:49.853+03	2021-05-20 01:17:49.861+03	
f26b5319-9ae7-1f38-9989-ebb7ee21409e	2021-05-20 01:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:17:59.853+03	2021-05-20 01:17:59.861+03	
f85501c4-63d8-d41a-d198-a7ea50604129	2021-05-20 01:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:18:09.853+03	2021-05-20 01:18:09.861+03	
0f833215-ee75-6137-9bf7-d43c9ac52a7c	2021-05-20 01:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:18:20.852+03	2021-05-20 01:18:20.864+03	
164974dd-1eb6-de5d-faa5-b35563625479	2021-05-20 01:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:18:30.853+03	2021-05-20 01:18:30.862+03	
d6bc168b-c5be-69b2-4115-2c507203805f	2021-05-20 01:18:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:18:40.853+03	2021-05-20 01:18:40.861+03	
b5239f72-cde9-d8bc-52b1-c3ccb1c43138	2021-05-20 01:18:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:18:50.853+03	2021-05-20 01:18:50.863+03	
de697206-bd90-e86c-c212-a28c856b184e	2021-05-20 01:19:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:19:00.853+03	2021-05-20 01:19:00.86+03	
294aedeb-9181-1766-ef17-c0b298fbbdfb	2021-05-20 01:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:19:10.853+03	2021-05-20 01:19:10.859+03	
13c60489-0623-19a0-7578-c437f2dce7f9	2021-05-20 01:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:19:20.853+03	2021-05-20 01:19:20.861+03	
17afc5fa-80d5-0a5f-f98e-6e992044b3c9	2021-05-20 01:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:19:30.853+03	2021-05-20 01:19:30.86+03	
e35b0a6a-43ee-ff10-ac5b-b1d7e8992fb4	2021-05-20 01:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:19:40.853+03	2021-05-20 01:19:40.86+03	
301c6588-c89f-34b2-efb2-2f8fd7f7ec2b	2021-05-20 01:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:19:50.853+03	2021-05-20 01:19:50.86+03	
6db724dd-cc80-b033-4bec-3a1efc24ed3f	2021-05-20 01:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 01:20:00.852+03	2021-05-20 01:20:00.863+03	ERROR
5e0fba3c-4e13-457f-d876-d58fef77bc62	2021-05-20 01:20:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:20:01.853+03	2021-05-20 01:20:01.875+03	
9dda519b-ca31-22f5-a306-4e543ff8a8cd	2021-05-20 01:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:20:12.852+03	2021-05-20 01:20:12.861+03	
f95f5f5a-b1c6-d4de-c15a-06aeb9dc0b91	2021-05-20 01:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:20:22.853+03	2021-05-20 01:20:22.859+03	
7052d4bb-c1b0-e3c0-818c-27c6b165ccb2	2021-05-20 01:20:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:20:32.853+03	2021-05-20 01:20:32.862+03	
484c506c-1548-ea51-3125-280e8e85a365	2021-05-20 01:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:20:43.852+03	2021-05-20 01:20:43.874+03	
5063274b-fe35-54e6-d2f1-813a741c2b2c	2021-05-20 01:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:20:53.853+03	2021-05-20 01:20:53.86+03	
8556a363-5fd7-444e-23ce-eb1dbe420d6c	2021-05-20 01:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:21:03.853+03	2021-05-20 01:21:03.86+03	
f72cc8cb-0765-7e08-259d-e8aff3003e92	2021-05-20 01:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:21:14.852+03	2021-05-20 01:21:14.861+03	
b867f395-5e66-5033-5117-eb3c61ab7d8e	2021-05-20 01:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:21:24.852+03	2021-05-20 01:21:24.862+03	
040cf770-c04d-c438-896e-af7b9c6e2e4e	2021-05-20 01:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:21:34.853+03	2021-05-20 01:21:34.859+03	
c3c1b276-b831-1285-e789-29d55a50e760	2021-05-20 01:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:21:44.853+03	2021-05-20 01:21:44.859+03	
2c1bdca8-20bb-aba5-37f3-9fbe3007f830	2021-05-20 01:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:21:54.853+03	2021-05-20 01:21:54.86+03	
93048986-b9f4-fec0-5863-1e40375814ee	2021-05-20 01:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:22:05.853+03	2021-05-20 01:22:05.862+03	
53e11a8f-1624-8530-6157-6a45ea8430dc	2021-05-20 02:11:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:11:36.852+03	2021-05-20 02:11:36.86+03	
decc768f-14c7-0cb6-e2a2-3e330101acba	2021-05-20 01:22:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:22:26.853+03	2021-05-20 01:22:26.86+03	
a1608d95-aa0c-fd78-69c6-2f0fe8b63a36	2021-05-20 01:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:22:47.853+03	2021-05-20 01:22:47.864+03	
b5428a76-eafa-aa4f-d52b-66384c7e6702	2021-05-20 02:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:11:57.853+03	2021-05-20 02:11:57.861+03	
f32bc1b9-90f2-d05d-89b5-5fd5f147c3b6	2021-05-20 01:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:23:08.853+03	2021-05-20 01:23:08.861+03	
20dfb053-b770-c227-ba4d-56e0ef91dd09	2021-05-20 01:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:23:28.853+03	2021-05-20 01:23:28.86+03	
c419ba0b-2cb9-f19a-4712-661c249a004b	2021-05-20 01:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:23:48.853+03	2021-05-20 01:23:48.861+03	
25917ebd-0bc1-9dfb-22c9-00ade4f203c7	2021-05-20 01:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:24:10.853+03	2021-05-20 01:24:10.871+03	
f3ef6769-297a-4b02-efc1-fcab02567193	2021-05-20 01:24:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:24:31.852+03	2021-05-20 01:24:31.865+03	
ef94bad4-0a7a-a308-0d40-2ca12c993f0a	2021-05-20 01:24:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:24:51.853+03	2021-05-20 01:24:51.883+03	
e3a802b7-5072-716c-1a4b-2bfaf70cde52	2021-05-20 01:25:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:25:11.854+03	2021-05-20 01:25:11.876+03	
bd80cc2f-5157-947f-705f-75731a1738ec	2021-05-20 01:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:25:32.853+03	2021-05-20 01:25:32.86+03	
afe65b5e-3f32-d598-3303-4d34d2b83d12	2021-05-20 01:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:25:52.853+03	2021-05-20 01:25:52.862+03	
7fbd7204-3691-3d1f-6c68-8863165da900	2021-05-20 01:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:26:13.853+03	2021-05-20 01:26:13.864+03	
bf7350a4-f687-d568-6c8e-81b66f9bf173	2021-05-20 01:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:26:34.853+03	2021-05-20 01:26:34.86+03	
150ea211-8299-09ee-fab1-fb37da57643f	2021-05-20 01:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:26:54.853+03	2021-05-20 01:26:54.861+03	
8b06ddce-f91e-d1c2-e607-1ba904438632	2021-05-20 01:27:15.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:27:15.855+03	2021-05-20 01:27:15.861+03	
ee0e5bd4-995b-6a74-413c-975f367bf19e	2021-05-20 01:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:27:37.852+03	2021-05-20 01:27:37.86+03	
6c48c932-97ac-729c-21bc-b7b25334c3de	2021-05-20 01:27:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:27:57.853+03	2021-05-20 01:27:57.867+03	
c98073a7-4dfc-5406-556f-e09ac33ac521	2021-05-20 01:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:28:19.852+03	2021-05-20 01:28:19.859+03	
ba5fbb9b-5aa4-b25a-0378-80548be42f1d	2021-05-20 01:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:28:39.853+03	2021-05-20 01:28:39.859+03	
aecf2732-e27a-e454-f292-37f9b7b1b6fd	2021-05-20 01:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:28:59.853+03	2021-05-20 01:28:59.862+03	
3bc63db7-1fb2-43c7-0b49-daa8b96e0e57	2021-05-20 01:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:29:19.853+03	2021-05-20 01:29:19.861+03	
c6ece057-fb4b-0c7a-04a0-39b55740dc17	2021-05-20 01:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:29:39.853+03	2021-05-20 01:29:39.862+03	
901b1f03-5830-7931-5216-2c6de752348c	2021-05-20 01:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:30:00.853+03	2021-05-20 01:30:00.86+03	
27127e75-52a1-2dc7-d4e3-44303ac5ecc0	2021-05-20 01:30:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:30:21.853+03	2021-05-20 01:30:21.871+03	
2df9fe6f-d036-892b-e4d9-04414945b99f	2021-05-20 01:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:30:42.852+03	2021-05-20 01:30:42.865+03	
d77f8c47-c88b-d4ab-290d-8cfa01501f2f	2021-05-20 01:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:31:02.853+03	2021-05-20 01:31:02.864+03	
3e2d816d-bcc6-1a2b-6d33-16060163e8b0	2021-05-20 01:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:31:23.852+03	2021-05-20 01:31:23.859+03	
aaa09365-aa92-41fe-4033-5a21f9e57fdd	2021-05-20 01:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:31:43.853+03	2021-05-20 01:31:43.86+03	
8eb6a0e4-e656-b098-d0b0-608a458bea2e	2021-05-20 01:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:32:04.852+03	2021-05-20 01:32:04.86+03	
59c9d624-7351-4d08-fc5d-000a51cf4892	2021-05-20 01:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:32:24.853+03	2021-05-20 01:32:24.86+03	
eb478c41-f981-8f7e-b49b-7dc9443bcc72	2021-05-20 01:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:32:44.853+03	2021-05-20 01:32:44.861+03	
517235d9-b6fe-c53f-2f72-da38c94f8a0d	2021-05-20 01:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:33:05.852+03	2021-05-20 01:33:05.86+03	
e6342fde-203d-d2b5-a135-401042d79bb7	2021-05-20 01:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:33:25.853+03	2021-05-20 01:33:25.861+03	
fa490744-5a70-5998-37f3-b9a40234e28e	2021-05-20 01:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:33:45.853+03	2021-05-20 01:33:45.861+03	
f110a53c-6284-a36f-24a5-2496cccfc479	2021-05-20 01:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:34:07.853+03	2021-05-20 01:34:07.86+03	
4b33ab25-df15-a208-6a02-8d9520b0bc8c	2021-05-20 01:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:34:28.853+03	2021-05-20 01:34:28.859+03	
46c50a3f-5fc6-335d-81ff-285870eacb8b	2021-05-20 01:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:34:48.853+03	2021-05-20 01:34:48.863+03	
83938c26-37aa-4301-399c-38738a9d34ac	2021-05-20 01:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:35:08.853+03	2021-05-20 01:35:08.86+03	
4d467394-3ea3-230d-994c-7b2b60232cf0	2021-05-20 01:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:35:30.853+03	2021-05-20 01:35:30.86+03	
1e12c82c-b374-ac05-c26a-b76888789eb9	2021-05-20 01:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:35:50.853+03	2021-05-20 01:35:50.907+03	
03ee66e2-d830-f0cc-63f5-dd7b40edb87e	2021-05-20 01:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:36:10.853+03	2021-05-20 01:36:10.859+03	
0a81b17d-f60e-1a60-14f6-6896a2a4a8c3	2021-05-20 01:36:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:36:31.853+03	2021-05-20 01:36:31.862+03	
164912f9-a1b6-4796-66af-2d63309ffe56	2021-05-20 01:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:36:52.852+03	2021-05-20 01:36:52.861+03	
e1f7a333-7e10-16f4-ff33-cc1e167a02e1	2021-05-20 01:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:37:12.853+03	2021-05-20 01:37:12.861+03	
f6ac707b-d689-b990-d5bb-c172b1ae6846	2021-05-20 01:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:37:33.853+03	2021-05-20 01:37:33.86+03	
74cfe6f6-c64b-ff6c-660b-a3fca359f9bd	2021-05-20 01:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:37:53.853+03	2021-05-20 01:37:53.86+03	
706d75b3-131f-9be6-4446-1b6160da311a	2021-05-20 01:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:38:13.853+03	2021-05-20 01:38:13.86+03	
cb6f44c7-ee8c-6bc7-81d1-4214d06a0196	2021-05-20 01:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:38:35.852+03	2021-05-20 01:38:35.86+03	
4edd82af-f4fa-a6bd-dde9-927c9553a30b	2021-05-20 01:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:38:55.853+03	2021-05-20 01:38:55.86+03	
99a83363-4c13-d19b-912b-baf89bd4d211	2021-05-20 01:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:39:15.853+03	2021-05-20 01:39:15.859+03	
d1d46330-a861-8e11-8a9b-60b0ba157533	2021-05-20 01:39:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:39:36.852+03	2021-05-20 01:39:36.862+03	
c9461408-5a16-5eb8-7db6-3a7bc58053d7	2021-05-20 01:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 01:40:00.853+03	2021-05-20 01:40:00.858+03	ERROR
b81ef927-5626-cd9b-62e4-abe255e4fdcb	2021-05-20 01:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:40:16.852+03	2021-05-20 01:40:16.86+03	
fbfe54dc-ca8d-a506-9b89-9b7b2f31e0fc	2021-05-20 01:40:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:40:36.853+03	2021-05-20 01:40:36.905+03	
396fd917-3d31-3c39-d99b-e13443631a61	2021-05-20 01:40:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:40:56.853+03	2021-05-20 01:40:56.862+03	
577421fe-119d-1ddb-f74c-84b9ea2ddbc6	2021-05-20 01:41:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:41:16.854+03	2021-05-20 01:41:16.872+03	
e8f1098c-ae1a-116c-2044-b785f6efe3df	2021-05-20 01:41:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:41:37.853+03	2021-05-20 01:41:37.86+03	
a5cb14f2-744e-1981-27ef-84bb37551229	2021-05-20 01:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:41:57.853+03	2021-05-20 01:41:57.861+03	
a4bf965c-f838-1527-b588-44485478c223	2021-05-20 01:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:42:18.853+03	2021-05-20 01:42:18.862+03	
023ee499-6f33-4323-0a89-fbcba9f3ff19	2021-05-20 01:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:42:39.853+03	2021-05-20 01:42:39.86+03	
ed2a01a1-5e42-0cb7-1237-45d60cfa4699	2021-05-20 01:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:22:15.853+03	2021-05-20 01:22:15.862+03	
c75f2b0e-c8ea-4435-f08a-2799ecf98849	2021-05-20 01:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:22:37.852+03	2021-05-20 01:22:37.861+03	
100ddb41-9084-d05c-7473-b40d3a4cb123	2021-05-20 01:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:22:57.853+03	2021-05-20 01:22:57.861+03	
f58d149e-6176-c7f6-0acc-21134c24699c	2021-05-20 01:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:23:18.853+03	2021-05-20 01:23:18.86+03	
d0954a9d-958c-0500-33e1-5b934d65c286	2021-05-20 01:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:23:38.853+03	2021-05-20 01:23:38.861+03	
e13329ee-dd32-134b-cc8c-f1d80331c892	2021-05-20 01:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:23:59.853+03	2021-05-20 01:23:59.865+03	
15234ecf-acc9-38a6-bdd2-ffe33e344b94	2021-05-20 01:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:24:20.853+03	2021-05-20 01:24:20.861+03	
9fe0717c-2d08-ad62-439a-64636fb244ee	2021-05-20 01:24:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:24:41.853+03	2021-05-20 01:24:41.872+03	
366627ae-8338-c2d3-f051-d358d1fc9548	2021-05-20 01:25:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:25:01.853+03	2021-05-20 01:25:01.863+03	
984a7b4e-8623-4822-80dd-9c22f3c07195	2021-05-20 01:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:25:22.852+03	2021-05-20 01:25:22.867+03	
b2070f49-be51-687f-857f-b6bcab5c6c25	2021-05-20 01:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:25:42.853+03	2021-05-20 01:25:42.859+03	
4bc878c5-c61c-d00f-1cf9-2059ef7e7ce6	2021-05-20 01:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:26:03.853+03	2021-05-20 01:26:03.86+03	
8f64901e-e17f-02cc-00a4-7b13eed61dbf	2021-05-20 01:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:26:23.853+03	2021-05-20 01:26:23.861+03	
b85f62b0-2df5-3889-1a94-e16ce729c5b4	2021-05-20 01:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:26:44.853+03	2021-05-20 01:26:44.86+03	
917c9ab0-cedd-ab84-5e28-e73d7c79a30d	2021-05-20 01:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:27:04.853+03	2021-05-20 01:27:04.86+03	
e78582e9-86e3-bba2-f054-30cc37db33f0	2021-05-20 01:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:27:26.853+03	2021-05-20 01:27:26.86+03	
f4b4ada0-dc93-c991-7c55-370f6ebf1174	2021-05-20 01:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:27:47.853+03	2021-05-20 01:27:47.86+03	
67b342ce-a826-8051-5719-924aa0e0a173	2021-05-20 01:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:28:08.853+03	2021-05-20 01:28:08.86+03	
90443bc5-ab60-1f59-569a-0b10d64e2168	2021-05-20 01:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:28:29.852+03	2021-05-20 01:28:29.859+03	
f9bd4baa-2aa0-2319-192d-d4367ad52496	2021-05-20 01:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:28:49.853+03	2021-05-20 01:28:49.86+03	
04a98947-6814-1f9d-438c-70edad7a798e	2021-05-20 01:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:29:09.853+03	2021-05-20 01:29:09.862+03	
a28892bf-3b88-7735-cc00-e9f7ca0b1d1e	2021-05-20 01:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:29:29.853+03	2021-05-20 01:29:29.86+03	
6d739957-8dfd-5ed2-dfc2-6edc6cd0b001	2021-05-20 01:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:29:50.853+03	2021-05-20 01:29:50.86+03	
7b5725c5-48ce-713a-1199-82ce36944221	2021-05-20 01:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 01:30:00.853+03	2021-05-20 01:30:00.871+03	ERROR
8aecce97-83f9-1a9d-b24b-0d0c0d26e768	2021-05-20 01:30:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:30:11.852+03	2021-05-20 01:30:11.859+03	
a4d5d132-146d-f61c-6628-454f6b173877	2021-05-20 01:30:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:30:31.854+03	2021-05-20 01:30:31.861+03	
f8eb5078-dc19-3fb3-b439-6e8cdf403537	2021-05-20 01:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:30:52.853+03	2021-05-20 01:30:52.861+03	
d93800a6-4ed1-374d-3c1f-2afaa3a0bc81	2021-05-20 01:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:31:13.852+03	2021-05-20 01:31:13.86+03	
58a0a4cf-f195-1bad-496e-ce87ada667c9	2021-05-20 01:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:31:33.853+03	2021-05-20 01:31:33.863+03	
78d8e1e0-26c4-6371-5485-9522e4cad8c4	2021-05-20 01:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:31:53.853+03	2021-05-20 01:31:53.859+03	
0128c063-609e-98dd-4463-af56cb00ad20	2021-05-20 01:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:32:14.853+03	2021-05-20 01:32:14.861+03	
71c70514-bfbc-a115-b6a4-d8110149c723	2021-05-20 01:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:32:34.853+03	2021-05-20 01:32:34.861+03	
43943ca2-e8a1-c1f8-51af-954a1fceb0d0	2021-05-20 01:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:32:54.853+03	2021-05-20 01:32:54.859+03	
193a100d-cadc-4a0a-0cc5-d5f87e4f4388	2021-05-20 01:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:33:15.852+03	2021-05-20 01:33:15.86+03	
9ec65428-de2c-402a-802d-3446dee0a5c0	2021-05-20 01:33:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:33:35.853+03	2021-05-20 01:33:35.863+03	
e5e615a8-f3f2-98a6-a830-783579963658	2021-05-20 01:33:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:33:56.854+03	2021-05-20 01:33:56.863+03	
17f22227-dfe1-3041-0473-00d9de156baf	2021-05-20 01:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:34:18.852+03	2021-05-20 01:34:18.864+03	
a05e7186-b976-665c-7a7b-287c1a643d1a	2021-05-20 01:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:34:38.853+03	2021-05-20 01:34:38.867+03	
4083234b-ce59-b954-3a00-f92d5fca3ba0	2021-05-20 01:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:34:58.853+03	2021-05-20 01:34:58.861+03	
63aedb62-85f2-e6a7-5fe4-2b8372279d27	2021-05-20 01:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:35:19.853+03	2021-05-20 01:35:19.859+03	
fc8a9991-b9c6-ad57-13cd-a92d1d0ef0e2	2021-05-20 01:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:35:40.853+03	2021-05-20 01:35:40.861+03	
152dad57-8c88-4db9-6ff3-3027f04cb8e0	2021-05-20 01:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:36:00.853+03	2021-05-20 01:36:00.863+03	
b83dbb02-8d95-4405-5b37-3fa3fe051c88	2021-05-20 01:36:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:36:21.852+03	2021-05-20 01:36:21.86+03	
67e73953-474b-1c73-b84e-ea0149bf166b	2021-05-20 01:36:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:36:41.853+03	2021-05-20 01:36:41.872+03	
c0fb727f-de84-e060-8941-ed139c42478b	2021-05-20 01:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:37:02.853+03	2021-05-20 01:37:02.86+03	
058a3129-bade-da8d-804f-52c8eb2bc044	2021-05-20 01:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:37:22.853+03	2021-05-20 01:37:22.861+03	
2db6547f-a80c-e425-3cc6-7103f35ee1df	2021-05-20 01:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:37:43.853+03	2021-05-20 01:37:43.877+03	
321da77a-28bd-69e5-a67c-e184e01a69ad	2021-05-20 01:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:38:03.853+03	2021-05-20 01:38:03.861+03	
30199fb6-897f-3517-b559-1ae7095b5cff	2021-05-20 01:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:38:24.853+03	2021-05-20 01:38:24.86+03	
6a18eceb-e524-53f3-346b-4a06d909e117	2021-05-20 01:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:38:45.853+03	2021-05-20 01:38:45.859+03	
a7d59c8f-4acc-21a1-9ed4-7b9950708a9b	2021-05-20 01:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:39:05.853+03	2021-05-20 01:39:05.86+03	
99e23d7e-7b2d-a1dc-5034-f877367484e6	2021-05-20 01:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:39:25.853+03	2021-05-20 01:39:25.862+03	
4940e925-f3b1-c040-3bf6-d8dbe19aecc5	2021-05-20 01:39:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:39:46.852+03	2021-05-20 01:39:46.87+03	
8395c37c-17f6-1505-771f-b89267c0a1c6	2021-05-20 01:39:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:39:56.852+03	2021-05-20 01:39:56.859+03	
2c5bfbd9-4923-e751-33b8-fd18cc18c30a	2021-05-20 01:40:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:40:06.852+03	2021-05-20 01:40:06.862+03	
e3868c3b-fbf3-e792-d07a-a8cb160b64a5	2021-05-20 01:40:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:40:26.853+03	2021-05-20 01:40:26.862+03	
1ad35ff8-6b24-353e-63da-15d9eddd79a9	2021-05-20 01:40:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:40:46.853+03	2021-05-20 01:40:46.861+03	
0ecd0a42-8a6f-5188-9a5f-38c7a90fb080	2021-05-20 01:41:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:41:06.853+03	2021-05-20 01:41:06.863+03	
a4673a54-e7dc-3038-2e94-8fc24614b4fc	2021-05-20 01:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:41:27.852+03	2021-05-20 01:41:27.863+03	
7cab645e-b6d9-9a84-8eea-1f87d11d4fd6	2021-05-20 01:41:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:41:47.853+03	2021-05-20 01:41:47.86+03	
a86b542f-7b9f-a4b2-74f7-0e0ef0961809	2021-05-20 01:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:42:08.852+03	2021-05-20 01:42:08.861+03	
35346a60-2b2c-61a6-74b1-d48f4cedd064	2021-05-20 01:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:42:29.852+03	2021-05-20 01:42:29.862+03	
f172b7bd-14eb-4e69-f4f2-4237af2aff1d	2021-05-20 01:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:42:50.853+03	2021-05-20 01:42:50.86+03	
cf84db4e-e40c-a3c0-89e4-06661b25d1dc	2021-05-20 01:43:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:43:01.852+03	2021-05-20 01:43:01.878+03	
cb62bb88-12b3-7aa5-70e8-644d17e8dc95	2021-05-20 02:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:12:18.853+03	2021-05-20 02:12:18.862+03	
30cff39e-5bfe-14f4-0e92-7649f5db152e	2021-05-20 01:43:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:43:21.853+03	2021-05-20 01:43:21.86+03	
92598a97-4d6c-ddcb-a349-7469ca58ed2c	2021-05-20 01:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:43:42.852+03	2021-05-20 01:43:42.859+03	
4819ce2c-b516-4717-d209-01d5106ee69e	2021-05-20 02:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:12:39.853+03	2021-05-20 02:12:39.86+03	
cc1c0b78-7d46-a842-f32b-6e4760b4f8dc	2021-05-20 01:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:44:02.852+03	2021-05-20 01:44:02.871+03	
069a8f71-7c13-90c7-68ee-47ae21ea3852	2021-05-20 01:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:44:22.853+03	2021-05-20 01:44:22.862+03	
e0186054-c4d1-7fb6-79a7-e1c0b5671ea7	2021-05-20 02:12:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:12:59.853+03	2021-05-20 02:12:59.866+03	
5a031519-15ff-3209-d662-78277e8d3422	2021-05-20 01:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:44:42.853+03	2021-05-20 01:44:42.865+03	
45a5d39b-884b-5665-61ac-3336015445d4	2021-05-20 01:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:45:02.853+03	2021-05-20 01:45:02.902+03	
ba57ab39-a23e-1cee-c370-9c9f2861b40c	2021-05-20 02:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:13:20.852+03	2021-05-20 02:13:20.86+03	
e8d9679a-1a4f-1668-be16-0a6b3e27e99c	2021-05-20 01:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:45:22.853+03	2021-05-20 01:45:22.859+03	
3a8975ee-7187-e5c1-7bfa-b5119d8fe9ab	2021-05-20 01:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:45:43.852+03	2021-05-20 01:45:43.859+03	
d05ffd6a-0b4e-6648-43a7-ca3d7476485c	2021-05-20 02:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:13:40.853+03	2021-05-20 02:13:40.86+03	
62e00d4d-414a-092c-af5d-049f60c3bb73	2021-05-20 01:46:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:46:04.853+03	2021-05-20 01:46:04.86+03	
d0ea2e96-a314-052b-3fa0-a5e8f6bbb540	2021-05-20 01:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:46:24.853+03	2021-05-20 01:46:24.872+03	
17942f4c-f615-ee27-aa19-0167947b6ddc	2021-05-20 02:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:16:24.852+03	2021-05-20 02:16:24.86+03	
9ad94bab-b8ef-5d3f-8109-ba33d97a820d	2021-05-20 01:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:46:44.853+03	2021-05-20 01:46:44.861+03	
290e93ce-284f-ed97-54eb-8625cc25b00f	2021-05-20 01:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:47:04.853+03	2021-05-20 01:47:04.861+03	
8d3c2c3b-913b-a7c3-d89e-b8d4e4b0bafb	2021-05-20 02:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:16:44.853+03	2021-05-20 02:16:44.863+03	
cdabf16d-d5b9-ee43-7bd9-eefa21a64c8c	2021-05-20 01:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:47:25.852+03	2021-05-20 01:47:25.861+03	
ba8b523c-e004-a575-3e18-34005734d57c	2021-05-20 01:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:47:45.853+03	2021-05-20 01:47:45.87+03	
dac605d7-c39a-8ec1-488e-1d081ea25ac4	2021-05-20 02:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:17:05.853+03	2021-05-20 02:17:05.86+03	
df847703-cad4-094d-1cd1-5e43ebab49bb	2021-05-20 01:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:48:06.853+03	2021-05-20 01:48:06.86+03	
d98063ea-afd5-bb4b-d6d8-454203b05851	2021-05-20 01:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:48:27.852+03	2021-05-20 01:48:27.86+03	
ed50ec37-10e6-38a4-b13a-b1d6369bc0e7	2021-05-20 02:17:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:17:26.853+03	2021-05-20 02:17:26.861+03	
0899308d-b164-e0a0-4844-6c1968763259	2021-05-20 01:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:48:47.852+03	2021-05-20 01:48:47.864+03	
abffc848-5b5c-46a6-f038-83c48cac758f	2021-05-20 01:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:49:07.853+03	2021-05-20 01:49:07.863+03	
fed97be9-85aa-17d1-65b0-199c03f0f470	2021-05-20 02:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:17:48.853+03	2021-05-20 02:17:48.859+03	
f88a4149-0a2f-5808-db86-c57304550e2b	2021-05-20 01:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:49:28.852+03	2021-05-20 01:49:28.861+03	
f4504d84-c80c-bb96-338a-ba47954d91e4	2021-05-20 01:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:49:48.853+03	2021-05-20 01:49:48.863+03	
32a6a63a-fe52-049b-85ee-a44c81e3c48c	2021-05-20 02:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:18:08.853+03	2021-05-20 02:18:08.861+03	
501f53fb-fdb5-6e00-ce00-d375341dd935	2021-05-20 01:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 01:50:00.853+03	2021-05-20 01:50:00.859+03	ERROR
33ba1a8b-f2b1-77ca-9253-11353ebffdb4	2021-05-20 01:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:50:19.853+03	2021-05-20 01:50:19.86+03	
50056bd6-40d1-1b92-c74e-c55ab65f7f92	2021-05-20 02:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:18:28.853+03	2021-05-20 02:18:28.86+03	
33f92127-8292-a73f-b286-47be87d6dd3f	2021-05-20 01:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:50:39.853+03	2021-05-20 01:50:39.86+03	
0cd72237-5a26-1cc6-9b48-9526d40a59ad	2021-05-20 01:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:50:59.853+03	2021-05-20 01:50:59.861+03	
0e8736be-0100-84d0-5bb5-75b2dba0beea	2021-05-20 02:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:18:48.853+03	2021-05-20 02:18:48.859+03	
dfc3d77d-24a0-deeb-cbd0-fe94e537c7fd	2021-05-20 01:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:51:19.853+03	2021-05-20 01:51:19.859+03	
352e6cb1-7f36-0932-b6cd-2115c34a3981	2021-05-20 01:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:51:39.853+03	2021-05-20 01:51:39.861+03	
6c497a63-6f68-7a42-bd7e-b66139ccd35f	2021-05-20 02:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:19:10.853+03	2021-05-20 02:19:10.862+03	
7229065c-a238-526d-b2f6-eb66acf8839e	2021-05-20 01:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:51:59.853+03	2021-05-20 01:51:59.86+03	
5d520716-a9e4-f635-baeb-14d84b6187c5	2021-05-20 01:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:52:20.853+03	2021-05-20 01:52:21.031+03	
d20a7953-cdb5-71aa-1533-c7113dd80646	2021-05-20 02:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:19:30.853+03	2021-05-20 02:19:30.862+03	
78d30b72-dab8-edff-7e8d-18ea2696a881	2021-05-20 01:52:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:52:41.853+03	2021-05-20 01:52:41.869+03	
26f82ca6-0f7d-f461-bb07-de346bca378b	2021-05-20 01:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:53:02.852+03	2021-05-20 01:53:02.859+03	
840a5dd7-c8cc-f58f-1beb-d1224cfe3bbb	2021-05-20 02:19:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:19:51.854+03	2021-05-20 02:19:51.861+03	
e32ccfed-9260-e25d-335c-6dc764efdd7c	2021-05-20 01:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:53:22.853+03	2021-05-20 01:53:22.872+03	
69b7bbb7-06cd-3fa5-1c58-d80df27787e3	2021-05-20 01:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:53:42.853+03	2021-05-20 01:53:42.862+03	
8cd30f18-d9b4-2852-6de1-063ea5d85c66	2021-05-20 02:20:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:20:01.854+03	2021-05-20 02:20:01.861+03	
ba99fa6b-57cb-1dee-ba48-11d639e68e12	2021-05-20 01:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:54:03.853+03	2021-05-20 01:54:03.861+03	
6d8601d1-3be3-8f38-6db1-022596c2f81a	2021-05-20 01:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:54:25.853+03	2021-05-20 01:54:25.858+03	
edba4f55-e577-e88b-5a86-86c792d871ad	2021-05-20 02:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:20:22.852+03	2021-05-20 02:20:22.861+03	
95b4fdea-7755-c268-71ac-72d5254ceef4	2021-05-20 02:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:20:42.852+03	2021-05-20 02:20:42.859+03	
b315d566-f164-e39c-a4af-5a3770755004	2021-05-20 02:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:21:02.853+03	2021-05-20 02:21:02.86+03	
40d0d403-18ab-e695-d122-23167a1df280	2021-05-20 02:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:21:23.852+03	2021-05-20 02:21:23.858+03	
e96b1829-b724-1b27-58ef-49188059c81f	2021-05-20 02:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:21:43.853+03	2021-05-20 02:21:43.86+03	
86d9d060-d94a-e881-12bb-ea38e7ad6fee	2021-05-20 02:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:22:04.853+03	2021-05-20 02:22:04.86+03	
ccd15e05-88ae-a636-b5b4-ce1fb8968ca6	2021-05-20 02:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:22:25.853+03	2021-05-20 02:22:25.86+03	
7ca09320-d5a3-a7a9-3831-de29bc1be7e2	2021-05-20 02:22:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:22:46.852+03	2021-05-20 02:22:46.859+03	
3983be74-8267-a61e-c0e1-3cc33d05e017	2021-05-20 02:23:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:23:06.854+03	2021-05-20 02:23:06.86+03	
5795203f-b391-b9f4-31f7-104af6f3d9ed	2021-05-20 02:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:23:27.853+03	2021-05-20 02:23:27.861+03	
4b2d681e-b5db-1bfc-6169-54f1cc5b3b2d	2021-05-20 02:23:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:23:37.853+03	2021-05-20 02:23:37.86+03	
17a498b4-70b7-4da4-3fba-8ea5b27a5c3c	2021-05-20 02:23:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:23:47.853+03	2021-05-20 02:23:47.866+03	
d6305873-d7fe-eefd-c536-c5f28b1a16d8	2021-05-20 01:43:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:43:11.852+03	2021-05-20 01:43:11.872+03	
9419c15f-bcb1-4721-f215-db15a7c8b2bc	2021-05-20 02:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:13:50.853+03	2021-05-20 02:13:50.861+03	
6c681fa9-d31f-95db-f9d9-d28cef582412	2021-05-20 01:43:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:43:31.854+03	2021-05-20 01:43:31.875+03	
d2f1e6e9-4548-bf07-df4f-70252ac1b985	2021-05-20 01:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:43:52.852+03	2021-05-20 01:43:52.86+03	
468efb27-c8cd-c534-eef1-419b493fd6d7	2021-05-20 02:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:14:10.853+03	2021-05-20 02:14:10.862+03	
dd10a611-355e-f2e8-82d9-957d6f8a7f56	2021-05-20 01:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:44:12.853+03	2021-05-20 01:44:12.861+03	
0cbbcd53-6102-5f19-030b-7fda560abfc3	2021-05-20 01:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:44:32.853+03	2021-05-20 01:44:33.349+03	
85139b84-2023-6785-1890-bcd961036942	2021-05-20 02:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:14:30.853+03	2021-05-20 02:14:30.864+03	
551fc83b-df6c-766c-3c74-f4f03de241f2	2021-05-20 01:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:44:52.853+03	2021-05-20 01:44:52.86+03	
f929c125-37a5-dace-2bc5-d4562b99d539	2021-05-20 01:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:45:12.853+03	2021-05-20 01:45:12.86+03	
5065e0e4-6cd1-c8a9-a5e8-d53621e244f6	2021-05-20 02:14:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:14:51.853+03	2021-05-20 02:14:51.861+03	
8a141e6b-14c2-6946-28a4-92e8760a3f2e	2021-05-20 01:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:45:32.853+03	2021-05-20 01:45:32.863+03	
42c7bbaa-0974-9458-48cf-81e69df566df	2021-05-20 01:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:45:53.853+03	2021-05-20 01:45:53.86+03	
53f6b237-f79a-7d0b-fd7c-34d18bcbc46a	2021-05-20 02:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:15:12.853+03	2021-05-20 02:15:12.861+03	
bf9df433-e56e-8b45-04f9-36fb174f846b	2021-05-20 01:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:46:14.853+03	2021-05-20 01:46:14.86+03	
a1d6d5d5-e5c1-8f6b-5432-fe249af0f7c6	2021-05-20 01:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:46:34.853+03	2021-05-20 01:46:34.868+03	
20ad226d-759d-c0b4-4528-a3ad6a274665	2021-05-20 02:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:15:33.853+03	2021-05-20 02:15:33.86+03	
d7911515-678c-757d-5dcd-52655fbd5c2f	2021-05-20 01:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:46:54.853+03	2021-05-20 01:46:54.859+03	
4b870536-3671-6aee-32f2-7ce3f29d399e	2021-05-20 01:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:47:14.853+03	2021-05-20 01:47:14.86+03	
9b0fdb9d-a232-4127-618c-9d4ca71a8668	2021-05-20 02:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:15:53.853+03	2021-05-20 02:15:53.86+03	
be801f39-ad1a-6827-e5e2-7a2c7383e9c8	2021-05-20 01:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:47:35.853+03	2021-05-20 01:47:35.874+03	
260b837a-aeaf-9104-1c0a-1833eed5ea6f	2021-05-20 01:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:47:55.853+03	2021-05-20 01:47:55.859+03	
5ac9a426-aa4b-5650-076d-6a4f563058ed	2021-05-20 02:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:16:14.852+03	2021-05-20 02:16:14.859+03	
9ac67217-036b-02bf-9c25-43254ec6a0c7	2021-05-20 01:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:48:17.852+03	2021-05-20 01:48:17.859+03	
f5934190-6e8f-b0aa-51f5-79f85179bede	2021-05-20 01:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:48:37.852+03	2021-05-20 01:48:37.86+03	
7b3acdee-f4cc-4d90-bf48-41793c080f78	2021-05-20 02:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:16:34.852+03	2021-05-20 02:16:34.859+03	
1ef6a1c1-52ae-33f0-b1a0-fd088f24c874	2021-05-20 01:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:48:57.853+03	2021-05-20 01:48:57.859+03	
240fc368-c442-e75f-ba2d-9dc4905ae119	2021-05-20 01:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:49:17.853+03	2021-05-20 01:49:17.862+03	
49e7f448-659f-fdff-d1fc-3dfbfbc2101e	2021-05-20 02:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:16:55.852+03	2021-05-20 02:16:55.86+03	
b982bc25-99f5-066e-7212-274cdf2047ad	2021-05-20 01:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:49:38.852+03	2021-05-20 01:49:38.861+03	
b3f75cec-aabe-873a-ef68-1ce4939b6ce5	2021-05-20 01:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:49:59.852+03	2021-05-20 01:49:59.859+03	
13461f80-776b-603a-921b-ac23d6d76d9c	2021-05-20 02:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:17:15.853+03	2021-05-20 02:17:15.859+03	
0bf67f6b-2dbc-fcf3-e7cf-b6e8eea3a408	2021-05-20 01:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:50:09.852+03	2021-05-20 01:50:09.86+03	
cf081dcd-3c4a-32a8-e7dd-3f50c43bbd2c	2021-05-20 01:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:50:29.853+03	2021-05-20 01:50:29.864+03	
73c89912-fb85-487a-c95a-5a4447207fe5	2021-05-20 02:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:17:37.853+03	2021-05-20 02:17:37.873+03	
2c67e9c2-5eaf-1aba-3ce2-3ffbc253c330	2021-05-20 01:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:50:49.853+03	2021-05-20 01:50:49.859+03	
2ad4e58a-e6ba-39b1-d82b-1c9e30474a21	2021-05-20 01:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:51:09.853+03	2021-05-20 01:51:09.86+03	
5a4bde89-6ee1-682e-9ff4-4fabc074a534	2021-05-20 02:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:17:58.853+03	2021-05-20 02:17:58.866+03	
1c99362f-bcd6-be8f-53d6-b30b0b4dd599	2021-05-20 01:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:51:29.853+03	2021-05-20 01:51:29.863+03	
5c2926af-9d8c-5a2c-b463-c0a78570c00a	2021-05-20 01:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:51:49.853+03	2021-05-20 01:51:49.86+03	
174c4ec9-9188-a6f8-8e80-87df39cc72c3	2021-05-20 02:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:18:18.853+03	2021-05-20 02:18:18.86+03	
4ed3df87-b2e3-61e9-52b2-23a888c01d18	2021-05-20 01:52:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:52:09.853+03	2021-05-20 01:52:09.873+03	
1b45d90e-c244-a7e0-b9e6-8039f59ac43a	2021-05-20 01:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:52:30.853+03	2021-05-20 01:52:30.86+03	
33660250-77c2-1216-b90b-ff76bdb1159c	2021-05-20 02:18:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:18:38.853+03	2021-05-20 02:18:39.319+03	
50f9a3f6-11a4-d823-4202-692b14f0c889	2021-05-20 01:52:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:52:51.854+03	2021-05-20 01:52:51.863+03	
b73bc46b-bf7a-7a9e-28b9-c3dcd605f484	2021-05-20 01:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:53:12.853+03	2021-05-20 01:53:12.863+03	
e415e464-8a37-c86e-1afa-8183ef8894a8	2021-05-20 02:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:18:59.853+03	2021-05-20 02:18:59.875+03	
f5e91b47-be1f-b8b8-68a2-3b660b501daf	2021-05-20 01:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:53:32.853+03	2021-05-20 01:53:32.862+03	
ca67fc93-1960-b93a-92c9-af01958b46d9	2021-05-20 01:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:53:53.852+03	2021-05-20 01:53:53.863+03	
33a455f1-61a6-730b-2c43-017ff6675bb7	2021-05-20 02:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:19:20.853+03	2021-05-20 02:19:20.886+03	
c674a0ef-ddef-9afd-0f7a-ed4ba539c785	2021-05-20 01:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:54:14.853+03	2021-05-20 01:54:14.861+03	
1b465572-75df-5638-bc49-4d7e86d795ac	2021-05-20 01:54:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 01:54:36.854+03	2021-05-20 01:54:36.863+03	
769be23e-be41-9426-4471-a973bd13bf31	2021-05-20 02:19:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:19:41.852+03	2021-05-20 02:19:41.86+03	
3c04f4df-b8a5-82f6-371c-903643e1ae73	2021-05-20 02:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 02:20:00.853+03	2021-05-20 02:20:00.859+03	ERROR
468b0e4d-68c7-1f19-866d-b24696d42303	2021-05-20 02:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:20:12.852+03	2021-05-20 02:20:12.861+03	
8fda46fc-6909-9b88-d441-5e3328c424dc	2021-05-20 02:20:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:20:32.852+03	2021-05-20 02:20:32.861+03	
d3b9afd0-7c81-76d8-0496-c82203beaf24	2021-05-20 02:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:20:52.852+03	2021-05-20 02:20:52.86+03	
400fbff0-a387-ef14-968d-af923138b772	2021-05-20 02:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:21:13.852+03	2021-05-20 02:21:13.86+03	
3622e019-1b1c-a28c-22f2-98135da35347	2021-05-20 02:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:21:33.852+03	2021-05-20 02:21:33.859+03	
b4c588f5-2aed-7590-2644-cf6c736c836e	2021-05-20 02:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:21:54.853+03	2021-05-20 02:21:54.862+03	
7a79e1c7-8992-3053-c804-4dbd14a247b6	2021-05-20 02:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:22:15.852+03	2021-05-20 02:22:15.86+03	
78c7112a-3b82-4d99-c230-edac281c247e	2021-05-20 02:22:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:22:35.853+03	2021-05-20 02:22:35.88+03	
705ea20b-3193-70fb-a9ee-8c00e8669d0d	2021-05-20 02:22:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:22:56.852+03	2021-05-20 02:22:56.86+03	
7f51ffaa-986e-13a2-325c-1ea2698f1db2	2021-05-20 02:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:23:17.853+03	2021-05-20 02:23:17.866+03	
4fc1f657-bec1-4c1d-14bb-2a61ed7499b9	2021-05-20 02:23:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:23:57.853+03	2021-05-20 02:23:57.86+03	
4829194c-d86c-7f40-6a86-d8d0e323ad32	2021-05-20 02:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:24:17.853+03	2021-05-20 02:24:17.86+03	
b91c85f8-f8bc-74a4-1053-367f2fc04a68	2021-05-20 02:24:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:24:38.852+03	2021-05-20 02:24:38.86+03	
f0dde5c1-3ea9-bbd2-edd6-1ff65ec7b385	2021-05-20 02:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:24:58.853+03	2021-05-20 02:24:58.86+03	
0e81c703-3c5a-9fa3-e269-c2af1616e699	2021-05-20 02:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:25:19.853+03	2021-05-20 02:25:19.859+03	
743860cc-12b7-ac85-bae0-4ec661eeafba	2021-05-20 02:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:25:40.852+03	2021-05-20 02:25:40.859+03	
adee3393-c2b3-60a4-e02b-2f2467d5cfc0	2021-05-20 02:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:26:00.853+03	2021-05-20 02:26:00.86+03	
aa8a9c6e-b7d1-42bb-e310-51f0863b714b	2021-05-20 02:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:26:20.853+03	2021-05-20 02:26:20.86+03	
c024afe2-0a7a-66d7-a4e7-c603b28ff11e	2021-05-20 02:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:26:40.853+03	2021-05-20 02:26:40.864+03	
4dd20006-239d-aed8-1986-aee597fd7d84	2021-05-20 02:27:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:27:00.853+03	2021-05-20 02:27:00.862+03	
aab7cbef-b611-06d0-f8c6-52c6ab20f9a0	2021-05-20 02:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:27:22.853+03	2021-05-20 02:27:22.859+03	
bc0b2674-09c0-86f9-99ff-010a96a564ed	2021-05-20 02:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:27:43.853+03	2021-05-20 02:27:43.86+03	
4793e4d4-67c0-355d-8180-59ecc943215d	2021-05-20 02:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:28:03.853+03	2021-05-20 02:28:03.861+03	
c719daeb-f590-83b9-36a5-956e295a0de8	2021-05-20 02:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:28:23.853+03	2021-05-20 02:28:23.862+03	
ef30d878-b2d0-e85e-91c8-399bd0b29010	2021-05-20 02:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:28:43.853+03	2021-05-20 02:28:43.859+03	
a082ac78-41c2-a1c7-f0b1-c681e4a922e5	2021-05-20 02:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:29:04.852+03	2021-05-20 02:29:04.86+03	
66f93273-b7a0-6f47-6bf9-a804065222ad	2021-05-20 02:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:29:24.853+03	2021-05-20 02:29:24.861+03	
ecc05f66-792e-d41b-9143-5785ba4d222d	2021-05-20 02:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:29:44.853+03	2021-05-20 02:29:44.86+03	
8512c538-6319-c013-9a82-4fc2d8d7ab05	2021-05-20 02:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 02:30:00.853+03	2021-05-20 02:30:00.858+03	ERROR
347326cb-7285-826b-14d3-6fc24b18df2e	2021-05-20 02:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:30:14.853+03	2021-05-20 02:30:14.871+03	
f23c3efb-ab6b-dac1-9698-e379e19ad8f1	2021-05-20 02:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:30:34.853+03	2021-05-20 02:30:34.861+03	
91ff8218-c237-9df7-ad51-fc1d3489f901	2021-05-20 02:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:30:55.853+03	2021-05-20 02:30:55.862+03	
a9a37c0c-b9d9-54d1-7b03-683d0ec3917a	2021-05-20 02:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:31:15.853+03	2021-05-20 02:31:15.863+03	
9ad1e832-ea3f-25f2-5cea-3e8a988e0558	2021-05-20 02:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:31:35.853+03	2021-05-20 02:31:36.054+03	
ec13394e-8cb8-d55f-1046-45f6c9aab9c2	2021-05-20 02:31:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:31:56.852+03	2021-05-20 02:31:56.867+03	
8cf0aec6-ed39-0c65-f7e9-82c0aa4e830b	2021-05-20 02:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:32:17.852+03	2021-05-20 02:32:17.864+03	
da1349c2-4929-2dc3-33d9-11b08a30a91b	2021-05-20 02:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:32:37.853+03	2021-05-20 02:32:37.87+03	
26428766-5b0b-d159-2748-7187c13c6eb1	2021-05-20 02:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:32:57.853+03	2021-05-20 02:32:57.863+03	
9459ff8f-0dfe-910a-2dbb-d7c66c8ba4e0	2021-05-20 02:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:33:19.852+03	2021-05-20 02:33:19.865+03	
7e06cac7-d4ca-7b66-f504-8746a0484600	2021-05-20 02:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:33:39.852+03	2021-05-20 02:33:39.859+03	
62faa06c-f2d1-953f-1b4f-d3ff7adaea7b	2021-05-20 02:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:33:59.852+03	2021-05-20 02:33:59.859+03	
4da3fbf8-5434-9dad-37bd-263260e1f38c	2021-05-20 02:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:34:19.853+03	2021-05-20 02:34:19.86+03	
28df1487-e05b-a4da-d533-47d21a8d1030	2021-05-20 02:34:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:34:41.853+03	2021-05-20 02:34:41.865+03	
ccf47180-1492-3c4f-7418-814293c988a4	2021-05-20 02:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:35:02.852+03	2021-05-20 02:35:02.862+03	
d2f620e6-617a-6fad-357b-b397d88f53ed	2021-05-20 02:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:35:22.853+03	2021-05-20 02:35:22.866+03	
46f65c4b-7f9e-aa45-cd56-fa2a429e4342	2021-05-20 02:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:35:43.853+03	2021-05-20 02:35:43.86+03	
384de0de-4573-a080-f327-80308e4046dd	2021-05-20 02:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:36:04.852+03	2021-05-20 02:36:04.861+03	
de362127-e993-b00a-2d7e-9e4fc81a84d2	2021-05-20 02:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:36:25.852+03	2021-05-20 02:36:25.86+03	
7644f178-ef87-32df-8e70-ba7c2f3ac0b1	2021-05-20 02:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:36:45.853+03	2021-05-20 02:36:45.862+03	
515f7ab3-9e45-c12b-d2d5-fe8ddb5e07b6	2021-05-20 02:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:37:05.853+03	2021-05-20 02:37:05.864+03	
cff4d408-656a-ba5e-a55e-28b7b1e14e7b	2021-05-20 02:37:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:37:26.852+03	2021-05-20 02:37:26.88+03	
7d62a144-1874-58a8-e05d-41cd2c6e0833	2021-05-20 02:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:37:46.852+03	2021-05-20 02:37:46.866+03	
ac84f6bc-2c22-fbb5-649a-ff63e69058c5	2021-05-20 02:38:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:38:06.852+03	2021-05-20 02:38:06.862+03	
719f6e80-51b1-de58-085a-23ab55689f39	2021-05-20 02:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:38:26.853+03	2021-05-20 02:38:26.86+03	
8c7f0508-c09b-5cd9-b1d4-c99e13dbda4a	2021-05-20 02:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:38:48.852+03	2021-05-20 02:38:48.86+03	
87ab89b5-7d2a-430e-1c81-8edd3419dc9a	2021-05-20 02:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:39:08.852+03	2021-05-20 02:39:08.859+03	
6bb959f1-e319-9815-ffad-0cd59137abcb	2021-05-20 02:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:39:29.852+03	2021-05-20 02:39:29.861+03	
90176a45-ae76-0b85-219f-9c7ecb611f47	2021-05-20 02:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:39:49.853+03	2021-05-20 02:39:49.86+03	
0091d429-b76c-56c6-cd11-7b8c925a10e9	2021-05-20 02:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 02:40:00.852+03	2021-05-20 02:40:00.858+03	ERROR
7f235a7e-1638-c7c8-dac2-d2b6b13a97fc	2021-05-20 02:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:40:20.852+03	2021-05-20 02:40:20.865+03	
7eacd3b6-98f0-5df2-1452-e8cf7205bbae	2021-05-20 02:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:40:40.853+03	2021-05-20 02:40:40.86+03	
fd833552-2e90-5f26-e6ea-2b287b6779e3	2021-05-20 02:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:41:02.852+03	2021-05-20 02:41:02.861+03	
35449e29-39eb-4e89-fc0e-f23601b04bea	2021-05-20 02:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:41:23.852+03	2021-05-20 02:41:23.861+03	
13de1f5d-9ee8-86b1-664a-bcffd259cbf5	2021-05-20 02:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:41:43.852+03	2021-05-20 02:41:43.859+03	
e8e9f7ce-98a2-4c10-49e4-f11d245eb4b0	2021-05-20 02:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:42:03.852+03	2021-05-20 02:42:03.873+03	
9e4dbf01-7137-cf21-b868-6a2f85568a8a	2021-05-20 02:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:42:24.852+03	2021-05-20 02:42:24.859+03	
d62f7c7e-c67b-e9f4-400f-041ce0e988fa	2021-05-20 02:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:42:44.853+03	2021-05-20 02:42:44.859+03	
0b249b80-5a39-2df5-d80c-981ea3f04257	2021-05-20 02:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:43:05.853+03	2021-05-20 02:43:05.859+03	
ef2ff85e-a306-7795-6b2b-488a0a6d27c5	2021-05-20 02:43:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:43:26.854+03	2021-05-20 02:43:26.862+03	
e05b04d6-3b88-d097-cc7a-2484c2f93272	2021-05-20 02:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:43:47.853+03	2021-05-20 02:43:47.86+03	
40afc08e-9ac4-abdb-6108-508b91d400e2	2021-05-20 02:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:44:08.852+03	2021-05-20 02:44:08.86+03	
91a73314-e897-51bd-d5df-b7caf87b7ecc	2021-05-20 02:44:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:44:28.853+03	2021-05-20 02:44:29.193+03	
b2716eb5-8ad0-c261-c0a2-5dc9540a1651	2021-05-20 02:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:44:48.853+03	2021-05-20 02:44:48.859+03	
588978a0-5d64-3ad4-e4c0-4233def7e99e	2021-05-20 02:24:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:24:07.853+03	2021-05-20 02:24:07.87+03	
2c7c480c-0a6e-cdb2-a289-a9d9878ea587	2021-05-20 02:24:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:24:28.852+03	2021-05-20 02:24:28.86+03	
2e760b2b-0ab5-d1d3-c6de-e82efa56d905	2021-05-20 02:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:24:48.852+03	2021-05-20 02:24:48.863+03	
4a9ba0a2-0290-7322-e023-c2a40aace092	2021-05-20 02:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:25:09.852+03	2021-05-20 02:25:09.863+03	
2b1b41ef-5af3-91bf-5f59-d76f1a514e16	2021-05-20 02:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:25:29.853+03	2021-05-20 02:25:29.861+03	
8d2a10b7-a4d5-9b8c-a253-d5ed2203240a	2021-05-20 02:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:25:50.853+03	2021-05-20 02:25:50.858+03	
5941e01f-2e0f-ec31-9630-c6de694291ee	2021-05-20 02:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:26:10.853+03	2021-05-20 02:26:10.86+03	
26a7d9e8-822f-ad99-47de-19b908b7e66e	2021-05-20 02:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:26:30.853+03	2021-05-20 02:26:30.861+03	
4cf1ad2a-d8cb-241d-260b-f3ad92afa6b0	2021-05-20 02:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:26:50.853+03	2021-05-20 02:26:50.861+03	
5fdf8a20-08d8-49fb-f1d9-cbb8a35412fa	2021-05-20 02:27:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:27:11.853+03	2021-05-20 02:27:11.877+03	
4f9e5c79-ad67-d826-7859-a08671dcdde2	2021-05-20 02:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:27:33.852+03	2021-05-20 02:27:33.861+03	
4cd1ec68-6b5d-b4bd-2251-a8e8fd848bad	2021-05-20 02:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:27:53.853+03	2021-05-20 02:27:53.862+03	
9aa64df9-fc63-4be6-1bb8-f90bb38194f6	2021-05-20 02:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:28:13.853+03	2021-05-20 02:28:13.862+03	
2b0f6461-370b-6a71-890d-659c76978cd2	2021-05-20 02:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:28:33.853+03	2021-05-20 02:28:33.859+03	
7a2b505a-81a9-f799-bf20-80b105c671e5	2021-05-20 02:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:28:54.852+03	2021-05-20 02:28:54.859+03	
327c4518-240c-0bf3-dc1d-ec9810ed48f5	2021-05-20 02:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:29:14.853+03	2021-05-20 02:29:14.862+03	
a84dae89-39b5-cec0-6968-7e93c9060809	2021-05-20 02:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:29:34.853+03	2021-05-20 02:29:34.859+03	
450cada8-4809-043c-c6ca-3cba0441d040	2021-05-20 02:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:29:54.853+03	2021-05-20 02:29:54.861+03	
df2387c8-83f4-6def-1371-b0dda39d9bf0	2021-05-20 02:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:30:04.853+03	2021-05-20 02:30:04.86+03	
4e3f8df1-a1b5-e46c-2fb8-0e5e3b6648b1	2021-05-20 02:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:30:24.853+03	2021-05-20 02:30:24.86+03	
c37e503e-7a64-9e17-711c-0e59e6ebf23e	2021-05-20 02:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:30:45.853+03	2021-05-20 02:30:45.861+03	
734662be-8fcc-0f60-7b11-0ebc4fae71f9	2021-05-20 02:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:31:05.853+03	2021-05-20 02:31:05.872+03	
aa15858f-5c22-280b-0747-23e861680d8f	2021-05-20 02:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:31:25.853+03	2021-05-20 02:31:25.863+03	
46abfc68-5b91-56ae-9e31-8a116f617e52	2021-05-20 02:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:31:46.852+03	2021-05-20 02:31:46.859+03	
55a262fe-43f8-bb99-9401-62a6b867ce88	2021-05-20 02:32:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:32:06.854+03	2021-05-20 02:32:06.862+03	
97550b41-8bdd-371a-6dac-6bfa667206bf	2021-05-20 02:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:32:27.853+03	2021-05-20 02:32:27.859+03	
23b74feb-0937-3c5f-875d-2e9c2ea992ef	2021-05-20 02:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:32:47.853+03	2021-05-20 02:32:47.864+03	
2c004e5e-c7fa-a9dd-126f-fb517b55b74b	2021-05-20 02:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:33:08.853+03	2021-05-20 02:33:08.861+03	
cc9a8a13-0c86-5ce0-be22-af74bdea8264	2021-05-20 02:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:33:29.852+03	2021-05-20 02:33:29.859+03	
17e14347-353a-1899-4b23-889921b3d1bc	2021-05-20 02:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:33:49.852+03	2021-05-20 02:33:49.86+03	
740a7857-f135-b7f3-1dd0-a369f0065646	2021-05-20 02:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:34:09.852+03	2021-05-20 02:34:09.859+03	
ec0b1ad2-f1d4-f689-01ec-26a0dd1b73bc	2021-05-20 02:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:34:30.853+03	2021-05-20 02:34:30.862+03	
d1b48336-6a6a-1488-5d28-c26805f3425d	2021-05-20 02:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:34:52.852+03	2021-05-20 02:34:52.86+03	
4ab93910-c23a-9d9c-0ef6-ee9af5199dc6	2021-05-20 02:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:35:12.853+03	2021-05-20 02:35:12.859+03	
d5c51b48-d10e-400a-0d2e-5a3e5d7afcd1	2021-05-20 02:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:35:33.853+03	2021-05-20 02:35:33.862+03	
a3206971-a136-b313-711b-8367807106d3	2021-05-20 02:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:35:54.852+03	2021-05-20 02:35:54.86+03	
5f8eb151-d4cc-a3c3-b9ac-0bc176a84051	2021-05-20 02:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:36:14.853+03	2021-05-20 02:36:14.858+03	
453dcc21-8313-78f2-e872-e2b150d2d075	2021-05-20 02:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:36:35.852+03	2021-05-20 02:36:35.86+03	
dc4a6179-db25-f6bb-02d5-ca76f2fa4741	2021-05-20 02:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:36:55.853+03	2021-05-20 02:36:55.86+03	
5f1089ca-a419-4166-381e-a282ddfb60c2	2021-05-20 02:37:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:37:16.852+03	2021-05-20 02:37:16.862+03	
280986e8-d108-6012-a191-afb866f87197	2021-05-20 02:37:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:37:36.852+03	2021-05-20 02:37:36.866+03	
c4353d09-5bc9-e6cb-c524-e54775e8ac95	2021-05-20 02:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:37:56.852+03	2021-05-20 02:37:56.86+03	
1705ecf8-8997-fc4e-636c-d7f16f88b1b2	2021-05-20 02:38:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:38:16.852+03	2021-05-20 02:38:16.867+03	
57b37ea2-1700-d69b-6bd2-4e5c0ea285ee	2021-05-20 02:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:38:37.853+03	2021-05-20 02:38:37.86+03	
349c6397-ec45-4f23-3afd-9b8e6492b470	2021-05-20 02:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:38:58.852+03	2021-05-20 02:38:58.859+03	
cdca3b95-7978-6a53-292f-49961775e1fd	2021-05-20 02:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:39:18.853+03	2021-05-20 02:39:18.862+03	
321ad9d9-8a30-d3cc-98f4-f8d248342669	2021-05-20 02:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:39:39.853+03	2021-05-20 02:39:39.866+03	
d6ff275b-cfc8-8181-4a01-87e5dcbd0de8	2021-05-20 02:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:39:59.853+03	2021-05-20 02:39:59.861+03	
f8b21729-188d-ec14-d02d-16024d78e04b	2021-05-20 02:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:40:10.852+03	2021-05-20 02:40:10.859+03	
ec143ad6-3008-99b1-1aef-b1354b232bc2	2021-05-20 02:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:40:30.852+03	2021-05-20 02:40:30.86+03	
5d83ed72-fac4-2d48-fbc0-6a82f3c7b71d	2021-05-20 02:40:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:40:51.854+03	2021-05-20 02:40:51.861+03	
052f6f9c-83a1-425c-8170-0dd61a4107b3	2021-05-20 02:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:41:12.853+03	2021-05-20 02:41:12.86+03	
447309dc-289c-3da5-61c1-f6075abfa4a5	2021-05-20 02:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:41:33.852+03	2021-05-20 02:41:33.859+03	
d410ea4e-ea12-c114-698f-0d74c0361e27	2021-05-20 02:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:41:53.852+03	2021-05-20 02:41:53.86+03	
ed073473-9541-8d37-1463-93b80003644d	2021-05-20 02:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:42:13.853+03	2021-05-20 02:42:13.86+03	
509cb0ff-4632-c2cd-ecce-bdf66952f24f	2021-05-20 02:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:42:34.853+03	2021-05-20 02:42:34.862+03	
f14f79c6-623d-1476-897e-6d1aa5712e6d	2021-05-20 02:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:42:55.852+03	2021-05-20 02:42:55.859+03	
b161cdcd-8e5a-659d-698a-9119bbf1a418	2021-05-20 02:43:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:43:16.854+03	2021-05-20 02:43:16.862+03	
01e558a8-375e-35d6-f0de-2622f29cc846	2021-05-20 02:43:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:43:36.854+03	2021-05-20 02:43:36.864+03	
49758242-a593-31a8-9555-8712cc172b7c	2021-05-20 02:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:43:57.853+03	2021-05-20 02:43:57.86+03	
f1c5bbfe-a6d4-8090-2a27-0b70d80ddc24	2021-05-20 02:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:44:18.852+03	2021-05-20 02:44:18.86+03	
ab9ae862-ec3e-24de-e3a2-d426da79a6e5	2021-05-20 02:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:44:38.853+03	2021-05-20 02:44:38.863+03	
5ea7c2bc-52d3-50e8-f528-0dc19afad595	2021-05-20 02:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:44:59.852+03	2021-05-20 02:44:59.862+03	
5702ff0f-3c7e-bd26-3a9b-67da1a07b7f1	2021-05-20 04:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:13:23.853+03	2021-05-20 04:13:23.869+03	
1fb65320-06d1-5fd0-0422-b14fa2d4aed9	2021-05-20 02:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:45:09.852+03	2021-05-20 02:45:09.859+03	
b2d058ca-2b5f-90f1-ba61-6f409e64cbe7	2021-05-20 02:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:45:30.852+03	2021-05-20 02:45:30.86+03	
09c650c5-aec8-84a6-5964-fa9f73be8edc	2021-05-20 04:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:13:44.853+03	2021-05-20 04:13:44.874+03	
832df63d-0c12-7013-d5ea-d97b46eb6e48	2021-05-20 04:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:14:05.852+03	2021-05-20 04:14:05.86+03	
461bbb65-fc08-05db-83c7-3e10aa68b290	2021-05-20 04:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:14:25.852+03	2021-05-20 04:14:25.859+03	
c2eea181-e503-8d3d-1e99-c6e94e4c19c0	2021-05-20 04:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:14:45.853+03	2021-05-20 04:14:45.86+03	
8fe8cbab-68f0-056f-96d4-cd5995735bbe	2021-05-20 04:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:15:05.853+03	2021-05-20 04:15:05.859+03	
f61d8948-8f27-4766-0dd8-eedf38e19afa	2021-05-20 04:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:15:26.853+03	2021-05-20 04:15:26.86+03	
d216580b-1f88-4964-e8da-fc3eb2b1fdfb	2021-05-20 04:15:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:15:46.854+03	2021-05-20 04:15:46.86+03	
7a1c034d-d5a4-0ad0-261d-ea1551a42af3	2021-05-20 04:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:16:07.853+03	2021-05-20 04:16:07.86+03	
7b530303-0e9e-89f2-a396-2d389958a24d	2021-05-20 04:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:16:27.853+03	2021-05-20 04:16:27.859+03	
4c9a39ff-360d-83b6-b8a5-67b8068dabd1	2021-05-20 04:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:16:48.852+03	2021-05-20 04:16:48.86+03	
05328cee-2f7c-18e2-9db8-6b206d09936e	2021-05-20 04:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:17:08.853+03	2021-05-20 04:17:08.874+03	
836d5632-1a23-bb15-9b72-bb264c48783c	2021-05-20 04:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:17:28.853+03	2021-05-20 04:17:28.861+03	
daea429a-de96-3969-6cda-eba855879219	2021-05-20 04:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:17:48.853+03	2021-05-20 04:17:48.86+03	
717b323f-7147-2d8b-7b17-d4486c7e0cd3	2021-05-20 04:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:18:10.852+03	2021-05-20 04:18:10.86+03	
4bde7069-81a2-bfe5-a976-740494dbbada	2021-05-20 04:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:18:30.853+03	2021-05-20 04:18:30.872+03	
d1fa9722-27f6-bcd7-b36f-525e3ae6984c	2021-05-20 04:18:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:18:50.853+03	2021-05-20 04:18:50.861+03	
c766e9ed-5702-32e1-bcc1-39ac6e5854f9	2021-05-20 04:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:19:10.853+03	2021-05-20 04:19:10.86+03	
1984309c-d98b-55bc-4908-f56f7da0e950	2021-05-20 04:19:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:19:31.852+03	2021-05-20 04:19:31.859+03	
ed1d0cba-d1ea-9abc-b77c-194c42c844dc	2021-05-20 04:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:19:52.852+03	2021-05-20 04:19:52.864+03	
529c1532-c708-0ff4-13f0-4e96ac472969	2021-05-20 04:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:20:02.852+03	2021-05-20 04:20:02.86+03	
a1d87259-511d-552a-3c09-337c51313199	2021-05-20 04:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:20:22.853+03	2021-05-20 04:20:22.863+03	
05d0db42-ec2c-ceee-3810-51652c0cfa75	2021-05-20 04:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:20:43.853+03	2021-05-20 04:20:43.861+03	
75d5a186-3461-831d-e8f5-832522644890	2021-05-20 04:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:21:05.853+03	2021-05-20 04:21:05.86+03	
bbd4e999-5ffc-8d73-d547-1208a436535d	2021-05-20 04:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:21:26.852+03	2021-05-20 04:21:26.872+03	
b33ad8f4-4380-78dc-d717-986b2c82fef2	2021-05-20 04:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:21:47.853+03	2021-05-20 04:21:47.862+03	
0bae7489-6ae5-55af-f292-cd2c9d487f6a	2021-05-20 04:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:22:07.853+03	2021-05-20 04:22:07.86+03	
fb958d11-4c25-7678-0de7-66a4576a56a5	2021-05-20 04:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:22:27.853+03	2021-05-20 04:22:27.859+03	
6a596116-7d02-9d1e-590a-12ce2f15ec78	2021-05-20 04:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:22:48.853+03	2021-05-20 04:22:48.86+03	
c4cad1ca-097e-a9b7-b6d8-ab9640694660	2021-05-20 04:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:23:10.852+03	2021-05-20 04:23:10.859+03	
3aabfbd6-a606-73ab-aa62-f9719a300a04	2021-05-20 04:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:23:30.853+03	2021-05-20 04:23:30.863+03	
16d2c6c9-6579-3e4f-0274-4e6b2dd8e657	2021-05-20 04:23:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:23:51.854+03	2021-05-20 04:23:51.86+03	
d292109c-e2dd-412e-545e-5bfbb38c6dfd	2021-05-20 04:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:24:12.852+03	2021-05-20 04:24:12.86+03	
a0cca845-ca8b-fce6-21eb-6aee1284f815	2021-05-20 04:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:24:33.852+03	2021-05-20 04:24:33.859+03	
5dfe8e1a-5bf2-75de-bec9-d6a19f0915e7	2021-05-20 04:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:24:53.853+03	2021-05-20 04:24:53.86+03	
a99627bc-7b3f-d7c3-e4ae-655e854093e6	2021-05-20 04:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:25:14.853+03	2021-05-20 04:25:14.863+03	
4a3d6a32-7144-b25b-0f76-df7bced188dd	2021-05-20 04:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:25:35.853+03	2021-05-20 04:25:35.862+03	
3c2b05ef-16c5-a682-651e-f4409c58f16d	2021-05-20 04:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:25:56.852+03	2021-05-20 04:25:56.859+03	
01bb19df-81fb-b016-2235-bea34f88a2e5	2021-05-20 04:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:26:17.852+03	2021-05-20 04:26:17.866+03	
549c6549-8f71-4eb2-f4f6-64ed3bd49c88	2021-05-20 04:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:26:37.852+03	2021-05-20 04:26:37.86+03	
23209cbc-94e7-ef28-79f5-058145beb20c	2021-05-20 04:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:26:57.853+03	2021-05-20 04:26:57.869+03	
c0415934-448b-7a7c-be93-dcdfc41a246c	2021-05-20 04:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:27:17.853+03	2021-05-20 04:27:17.859+03	
4b337cd9-a2e7-2c3d-b61e-696e8fc6afad	2021-05-20 04:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:27:38.853+03	2021-05-20 04:27:38.86+03	
8a363c00-e58f-d15e-74f8-c3491225493b	2021-05-20 04:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:27:58.853+03	2021-05-20 04:27:58.894+03	
decb227f-e9ef-03cf-4659-dddd869ae7c5	2021-05-20 04:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:28:18.853+03	2021-05-20 04:28:18.86+03	
478f5812-16fb-6194-aeb8-952cc05f823d	2021-05-20 04:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:28:39.853+03	2021-05-20 04:28:39.859+03	
3bf796a8-db25-db83-681a-114e78266380	2021-05-20 04:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:29:00.853+03	2021-05-20 04:29:00.861+03	
d1e57885-ea90-c266-c123-cb26df1fc367	2021-05-20 04:29:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:29:21.852+03	2021-05-20 04:29:21.861+03	
a3cfd2ba-be7b-46df-b220-2b78c709b33c	2021-05-20 04:29:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:29:41.853+03	2021-05-20 04:29:41.861+03	
f1495724-1744-a272-88af-cb1333d045b0	2021-05-20 04:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 04:30:00.852+03	2021-05-20 04:30:00.862+03	ERROR
6480d461-211c-1d99-c814-f030efbd0126	2021-05-20 04:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:30:12.852+03	2021-05-20 04:30:12.86+03	
55fc0e9e-4f0a-0dba-524b-c6a422bd7fb8	2021-05-20 04:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:30:32.853+03	2021-05-20 04:30:32.866+03	
814636d9-c7b6-8c7f-16cd-86b7692a2853	2021-05-20 04:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:30:53.853+03	2021-05-20 04:30:53.861+03	
3afb0f31-03b2-4ac0-9657-76a7659b10ef	2021-05-20 04:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:31:14.853+03	2021-05-20 04:31:14.861+03	
dcf72949-efe2-d518-69d2-da7f19c55484	2021-05-20 04:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:31:35.853+03	2021-05-20 04:31:35.861+03	
0b47b3dd-162e-11c8-9551-3f650ec12e6a	2021-05-20 04:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:31:55.853+03	2021-05-20 04:31:55.86+03	
4efcaeec-9cc6-ea28-b788-5544da294e82	2021-05-20 04:32:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:32:16.852+03	2021-05-20 04:32:16.86+03	
810ccb3b-4133-9b37-b2bc-f29928fbb71f	2021-05-20 04:32:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:32:36.854+03	2021-05-20 04:32:36.863+03	
ab0f046a-0add-795e-01c3-cd61b72190e0	2021-05-20 04:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:44:25.853+03	2021-05-20 04:44:25.882+03	
ff44ff38-f9d9-9975-b2f5-9989c4b8c7c3	2021-05-20 04:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:44:45.853+03	2021-05-20 04:44:45.869+03	
9261ad62-d5f6-e467-1294-6dd73f6e9409	2021-05-20 04:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:45:05.853+03	2021-05-20 04:45:05.862+03	
c7da486b-1e55-ae8e-979f-59ef6eca4555	2021-05-20 02:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:45:19.853+03	2021-05-20 02:45:19.86+03	
3cd26a44-ddfc-fa82-27e2-1f7f2870712f	2021-05-20 02:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:45:40.852+03	2021-05-20 02:45:40.859+03	
a08f59de-1d10-98e1-b606-170847476834	2021-05-20 02:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:45:50.852+03	2021-05-20 02:45:50.862+03	
4d09df19-80f6-d8a0-b4e1-9d5b5fe8ec23	2021-05-20 02:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:46:00.853+03	2021-05-20 02:46:00.859+03	
31ba0fcd-1453-38f0-5351-802cd9e88790	2021-05-20 02:46:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:46:11.853+03	2021-05-20 02:46:11.871+03	
323cc0e0-a6ea-aa9b-d2d9-deecd5f49d98	2021-05-20 02:46:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:46:21.853+03	2021-05-20 02:46:21.86+03	
b4c23f66-1ecc-88dc-60d9-d82a6a1a0bc0	2021-05-20 02:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:46:32.852+03	2021-05-20 02:46:32.87+03	
69b9dfe5-9a31-e1c5-68bb-134401db3bb2	2021-05-20 02:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:46:42.853+03	2021-05-20 02:46:42.86+03	
00c6e0b3-8004-931d-34e6-cbe4b328aa1c	2021-05-20 02:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:46:53.852+03	2021-05-20 02:46:53.863+03	
49fdc182-db98-f2a9-54a4-70f5362dcd02	2021-05-20 02:47:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:47:03.853+03	2021-05-20 02:47:03.859+03	
806c1715-69c2-a0ea-e287-5e1dd5c8be5f	2021-05-20 02:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:47:14.853+03	2021-05-20 02:47:14.86+03	
01e81827-d904-2464-00c2-60575c8250e2	2021-05-20 02:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:47:24.853+03	2021-05-20 02:47:24.86+03	
2d63b648-7f47-9ae5-79df-2541713e8905	2021-05-20 02:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:47:34.853+03	2021-05-20 02:47:34.862+03	
f96fb80c-6572-edfc-3ccf-fba99d5c4974	2021-05-20 02:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:47:44.853+03	2021-05-20 02:47:44.859+03	
bda76ae2-d76a-4736-870b-f6d702d7fd52	2021-05-20 02:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:47:54.853+03	2021-05-20 02:47:54.861+03	
3f91cc52-d41d-13a8-978d-15a88132c410	2021-05-20 02:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:48:04.853+03	2021-05-20 02:48:04.862+03	
f1f68c96-ac48-1334-1294-40ce6dcb1d5b	2021-05-20 02:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:48:14.853+03	2021-05-20 02:48:14.861+03	
a9210fa5-be0a-53a3-d1b6-b459ea17a9ec	2021-05-20 02:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:48:25.852+03	2021-05-20 02:48:25.859+03	
7afc0201-87b3-3cfd-8727-0b1f7b1b8328	2021-05-20 02:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:48:35.853+03	2021-05-20 02:48:35.864+03	
c1e5b5f0-6326-22e3-5ea3-6f6109fd12ed	2021-05-20 02:48:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:48:46.852+03	2021-05-20 02:48:46.862+03	
59607e65-e380-c701-f0b6-0f601223a4c6	2021-05-20 02:48:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:48:56.852+03	2021-05-20 02:48:56.859+03	
bcf33b24-ae06-c8cf-3702-0bc0a76e1c0f	2021-05-20 02:49:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:49:06.852+03	2021-05-20 02:49:06.869+03	
50525de9-cf8e-c8c8-e676-140991d43aad	2021-05-20 02:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:49:16.852+03	2021-05-20 02:49:16.864+03	
df94e489-ebf7-4a89-324b-4372479cc9e1	2021-05-20 02:49:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:49:26.854+03	2021-05-20 02:49:26.861+03	
439313ba-aa25-2610-c64f-a5e5d1fe46af	2021-05-20 02:49:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:49:36.854+03	2021-05-20 02:49:36.86+03	
5cf1e6ce-f072-7750-c0ab-8be896cd1e7a	2021-05-20 02:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:49:47.852+03	2021-05-20 02:49:47.859+03	
90c0c84a-c749-399f-cdea-7f47b9421614	2021-05-20 02:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:49:57.853+03	2021-05-20 02:49:57.859+03	
a4885bd1-92aa-3dad-1b75-fda515a18a67	2021-05-20 02:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 02:50:00.853+03	2021-05-20 02:50:00.859+03	ERROR
560e20c9-8f72-5a7a-f674-daee07dc1b20	2021-05-20 02:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:50:08.853+03	2021-05-20 02:50:08.861+03	
7815969f-cd59-41e7-4db0-202c49eda3b8	2021-05-20 02:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:50:18.853+03	2021-05-20 02:50:18.86+03	
7eb33021-d73f-c54f-660f-22deb80e05ca	2021-05-20 02:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:50:28.853+03	2021-05-20 02:50:28.864+03	
ae072778-19f0-5bd6-8ecd-da564578b8aa	2021-05-20 02:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:50:39.853+03	2021-05-20 02:50:39.859+03	
42c2214b-5792-9621-f6df-dae07ca1b632	2021-05-20 02:50:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:50:49.853+03	2021-05-20 02:50:49.864+03	
e47a3cfb-3776-2a70-c585-3faa8f5b4bbc	2021-05-20 02:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:51:00.853+03	2021-05-20 02:51:00.86+03	
d617ad20-6ed9-bed3-c7ab-a7bfe49de00b	2021-05-20 02:51:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:51:11.852+03	2021-05-20 02:51:11.859+03	
2252b887-23a2-7bff-0a80-34ecf61d78d2	2021-05-20 02:51:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:51:21.853+03	2021-05-20 02:51:21.859+03	
e9e4afd3-5892-92db-b949-98ff61a47f89	2021-05-20 02:51:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:51:32.853+03	2021-05-20 02:51:32.863+03	
3ec9fc8d-ba78-f8b2-2600-d45d09ef588b	2021-05-20 02:51:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:51:42.853+03	2021-05-20 02:51:42.86+03	
b400294b-08dd-a7ab-132a-139747a9641f	2021-05-20 02:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:51:52.853+03	2021-05-20 02:51:52.862+03	
41787de0-35cd-c5d5-a502-40c039c5d7ae	2021-05-20 02:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:52:02.853+03	2021-05-20 02:52:02.86+03	
626b6162-81e7-133c-a1a7-07c9f090980b	2021-05-20 02:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:52:13.852+03	2021-05-20 02:52:13.878+03	
c2edc23f-fb86-a833-bde3-56d61428ac74	2021-05-20 02:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:52:23.852+03	2021-05-20 02:52:23.86+03	
5649f8d2-750f-14c8-dc41-152a8ead8803	2021-05-20 02:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:52:33.852+03	2021-05-20 02:52:33.86+03	
7f3f0fac-e432-316c-cfa5-05c236e5343e	2021-05-20 02:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:52:43.852+03	2021-05-20 02:52:43.86+03	
fe8300fb-e85b-a45c-3135-ca0f556fe932	2021-05-20 02:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:52:53.852+03	2021-05-20 02:52:53.868+03	
e8a9b29b-a210-98bf-7031-38a862381777	2021-05-20 02:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:53:03.853+03	2021-05-20 02:53:03.862+03	
e66fd5ca-d9fd-4dcf-d4bb-ac21bc8874de	2021-05-20 02:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:53:13.853+03	2021-05-20 02:53:13.859+03	
052e31ea-fa7c-c26b-68be-8fd2a34c099b	2021-05-20 02:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:53:24.852+03	2021-05-20 02:53:24.861+03	
566d6175-3c32-ea03-044b-b8297ac992ef	2021-05-20 02:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:53:34.853+03	2021-05-20 02:53:34.863+03	
3a7847de-3e4c-b9b4-d404-e83e76110112	2021-05-20 02:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:53:44.853+03	2021-05-20 02:53:44.86+03	
82195b8a-1976-369d-c978-511674f5b7fe	2021-05-20 02:53:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:53:55.853+03	2021-05-20 02:53:55.859+03	
2f1e4d5d-d8bb-e576-437f-ac3691547614	2021-05-20 02:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:54:05.853+03	2021-05-20 02:54:05.86+03	
6da72d1f-9861-65f1-dbc7-61ae6c20def7	2021-05-20 02:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:54:15.853+03	2021-05-20 02:54:15.905+03	
dcad8341-ee54-1cd3-ce56-12816107e6fc	2021-05-20 02:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:54:25.853+03	2021-05-20 02:54:25.861+03	
8dc5847b-0fb2-6362-5bb1-22668e50b274	2021-05-20 02:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:54:35.853+03	2021-05-20 02:54:35.859+03	
f17ffc73-31a6-7ad8-fd39-b7e1103b021f	2021-05-20 02:54:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:54:45.853+03	2021-05-20 02:54:45.863+03	
0d325915-d789-67b6-6b4d-3ea081d58dc0	2021-05-20 02:54:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:54:56.852+03	2021-05-20 02:54:56.86+03	
b0ac255a-fbc7-5183-dd1c-95e905bebdd0	2021-05-20 02:55:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:55:06.852+03	2021-05-20 02:55:06.86+03	
dee7ca98-e7e8-3e65-c1b1-32e12dec4bd5	2021-05-20 02:55:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:55:16.852+03	2021-05-20 02:55:16.874+03	
0e7d3e12-dc6e-8733-53d8-3d0edc066bc5	2021-05-20 02:55:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:55:26.852+03	2021-05-20 02:55:26.862+03	
5a9706c3-dee0-8014-4d72-0f69d1b50adc	2021-05-20 02:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:55:36.853+03	2021-05-20 02:55:36.864+03	
14c06606-c049-5c23-3f64-12a30537aed5	2021-05-20 02:55:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:55:47.852+03	2021-05-20 02:55:47.861+03	
62ef5649-9344-5e79-cea8-f3684d488c92	2021-05-20 02:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:55:57.853+03	2021-05-20 02:55:57.861+03	
f6c74adf-6220-9f31-e944-87084cdcdbc0	2021-05-20 02:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:56:07.853+03	2021-05-20 02:56:07.86+03	
f69b8449-d52f-1aae-0f35-084ce51fcf4d	2021-05-20 02:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:56:27.853+03	2021-05-20 02:56:27.859+03	
9bbfdf40-2d40-364c-b39b-f61038cb6b80	2021-05-20 02:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:56:47.853+03	2021-05-20 02:56:47.86+03	
78d972a1-e0c6-c309-9494-8204e2dc0b93	2021-05-20 02:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:57:08.852+03	2021-05-20 02:57:08.859+03	
9ebf8b1e-751e-9c09-6eec-8224dd6fce78	2021-05-20 02:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:57:28.853+03	2021-05-20 02:57:28.86+03	
dfddd7f9-e4f6-266f-96bf-a2c83ec0c22d	2021-05-20 02:57:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:57:49.853+03	2021-05-20 02:57:49.87+03	
df680878-90f8-c73e-becc-c4a968a1bf46	2021-05-20 02:58:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:58:09.853+03	2021-05-20 02:58:09.86+03	
257bdb22-f862-0f26-ae4e-a83d72616a07	2021-05-20 02:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:58:29.853+03	2021-05-20 02:58:29.859+03	
28bf32bd-43f0-e4a9-4c7e-408bb9744146	2021-05-20 02:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:58:50.853+03	2021-05-20 02:58:50.86+03	
e16b32a5-793c-0957-352c-72785a7d91c5	2021-05-20 02:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:59:10.853+03	2021-05-20 02:59:10.866+03	
79069881-290e-677f-b8a5-b669ebb2864d	2021-05-20 02:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:59:30.853+03	2021-05-20 02:59:30.859+03	
dc017d58-1bb0-b549-a307-74417d6445f4	2021-05-20 02:59:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:59:51.852+03	2021-05-20 02:59:51.863+03	
75da7edd-e23d-2592-bb1c-aeba9b8a9e3b	2021-05-20 03:00:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:00:01.854+03	2021-05-20 03:00:01.869+03	
e5f8abc5-11cf-597a-0694-3dbe35dd0968	2021-05-20 03:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:00:22.853+03	2021-05-20 03:00:22.873+03	
fff16fad-25a8-13da-8123-7689907316b3	2021-05-20 03:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:00:42.853+03	2021-05-20 03:00:42.936+03	
79761f38-899a-4a28-8dc3-3d0deebc2d8b	2021-05-20 03:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:01:03.853+03	2021-05-20 03:01:03.863+03	
3f859f84-ce3c-38a4-05c6-b9a7f6903c3b	2021-05-20 03:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:01:23.853+03	2021-05-20 03:01:23.859+03	
0defeb63-4cd5-4200-683f-79e7189b297b	2021-05-20 03:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:01:43.853+03	2021-05-20 03:01:43.86+03	
a573082e-5fc4-6c80-e4e4-9f94a3ee83b2	2021-05-20 03:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:02:04.853+03	2021-05-20 03:02:04.861+03	
6865109b-9937-1396-2345-8c1904595ac6	2021-05-20 03:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:02:26.852+03	2021-05-20 03:02:26.862+03	
b75a1763-5b19-5d63-33f7-003f97164927	2021-05-20 03:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:02:47.853+03	2021-05-20 03:02:47.861+03	
b767da4c-4107-c77c-f8c7-9f8cc7df2223	2021-05-20 03:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:03:07.853+03	2021-05-20 03:03:07.874+03	
c7cbdd08-2067-ce90-6b88-c81c2b14e871	2021-05-20 03:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:03:28.853+03	2021-05-20 03:03:28.86+03	
e6a761c5-aac0-7905-d351-5c1aebbdd3ad	2021-05-20 03:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:03:49.852+03	2021-05-20 03:03:49.859+03	
20fd362e-a92d-08ee-7409-e91329695b2d	2021-05-20 03:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:04:09.853+03	2021-05-20 03:04:09.859+03	
20b28d66-c45c-181b-7940-4eb20ab4bc0b	2021-05-20 03:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:04:29.853+03	2021-05-20 03:04:29.861+03	
01a9d333-2601-74d0-8851-0a52a733e97b	2021-05-20 03:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:04:50.853+03	2021-05-20 03:04:50.865+03	
9303f677-3094-9266-96cc-40ef8da0c024	2021-05-20 03:05:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:05:11.853+03	2021-05-20 03:05:11.86+03	
2086b59a-9f70-78e0-92b8-8d94489e31e9	2021-05-20 03:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:05:32.852+03	2021-05-20 03:05:32.87+03	
9e5f5a9d-711e-fe14-aab8-86955d01d2b7	2021-05-20 03:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:05:52.853+03	2021-05-20 03:05:52.876+03	
6254f976-a888-70bc-3ae3-d9d14e14be86	2021-05-20 03:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:06:13.853+03	2021-05-20 03:06:13.86+03	
ba3b56ee-a70d-a9e8-597b-ee59f385355b	2021-05-20 03:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:06:34.852+03	2021-05-20 03:06:34.859+03	
eea13015-bf18-94b9-4a1d-c0cad76783d6	2021-05-20 03:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:06:55.853+03	2021-05-20 03:06:55.862+03	
df42211c-1260-65bc-dea2-d68bcf1717ca	2021-05-20 03:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:07:15.853+03	2021-05-20 03:07:15.861+03	
9ef385e2-20fd-7374-d470-053d31625287	2021-05-20 03:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:07:35.853+03	2021-05-20 03:07:35.861+03	
1c1ec3d3-8024-ff30-39c1-0abf7896c10c	2021-05-20 03:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:07:57.852+03	2021-05-20 03:07:57.862+03	
bc087839-0e2d-eaf8-aaec-46ef2653ec1e	2021-05-20 03:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:08:17.852+03	2021-05-20 03:08:17.862+03	
dd39c666-c238-5749-c172-4c330935dd5e	2021-05-20 03:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:08:37.853+03	2021-05-20 03:08:37.861+03	
a9a36e1e-fafa-c7e3-ca29-f5b15339ca13	2021-05-20 03:08:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:08:58.853+03	2021-05-20 03:08:58.86+03	
055ac98e-b53a-3ae7-72e6-96bb794cc1d8	2021-05-20 03:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:09:19.852+03	2021-05-20 03:09:19.859+03	
125e2ccd-28e0-42c6-ad90-c47a492d9b18	2021-05-20 03:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:09:39.853+03	2021-05-20 03:09:39.861+03	
d4b51721-345a-f549-a7ff-a0274df24031	2021-05-20 03:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:10:00.853+03	2021-05-20 03:10:00.866+03	
c0e8425e-195c-9cd2-5d63-6fa2380e8e34	2021-05-20 03:10:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:10:21.853+03	2021-05-20 03:10:21.86+03	
c344e4bf-49f2-aaae-3846-c2467708dd19	2021-05-20 03:10:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:10:41.853+03	2021-05-20 03:10:41.87+03	
63a598b7-efa7-19da-581f-6b53bc50777b	2021-05-20 03:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:11:02.852+03	2021-05-20 03:11:02.86+03	
d91a3bcd-4ed3-3bb5-5283-abbf305bf05c	2021-05-20 03:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:11:22.853+03	2021-05-20 03:11:22.904+03	
48c7e2a5-09aa-f339-c40f-9c3926a63658	2021-05-20 03:11:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:11:43.853+03	2021-05-20 03:11:43.877+03	
5e667ac1-6208-e111-4872-f314b3734f20	2021-05-20 03:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:12:04.853+03	2021-05-20 03:12:05.306+03	
bc0b3615-7929-f067-0680-11b4742cb475	2021-05-20 03:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:12:24.853+03	2021-05-20 03:12:24.859+03	
02e16e36-691b-6daf-d3b9-31a29178af6c	2021-05-20 03:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:12:44.853+03	2021-05-20 03:12:44.862+03	
a5b83444-daa7-73d9-6cc3-0c08558c3aa9	2021-05-20 03:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:13:04.853+03	2021-05-20 03:13:04.86+03	
26abf531-13a4-aaaa-7398-c09ddc9c0af4	2021-05-20 03:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:13:25.853+03	2021-05-20 03:13:25.868+03	
5d260d1a-d64c-f022-7f43-faa42f8bebc0	2021-05-20 03:13:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:13:46.852+03	2021-05-20 03:13:46.86+03	
3779e39c-9a84-e4b7-a4d6-0bc3f1e1d36d	2021-05-20 03:14:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:14:06.853+03	2021-05-20 03:14:06.865+03	
d030434b-f4b2-747a-8937-3fef36658c4c	2021-05-20 03:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:14:27.853+03	2021-05-20 03:14:27.861+03	
c4f496ba-9027-e252-9634-9212a3c9634f	2021-05-20 03:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:14:47.853+03	2021-05-20 03:14:47.859+03	
2c3f7103-dda3-b14a-97a4-cb1a5a711e59	2021-05-20 03:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:15:08.852+03	2021-05-20 03:15:08.865+03	
e93d39df-5eb9-9652-571c-f9182b88c468	2021-05-20 03:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:15:28.852+03	2021-05-20 03:15:28.865+03	
4fdd9000-8f90-eedc-7554-7ad179c141e8	2021-05-20 03:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:15:48.853+03	2021-05-20 03:15:48.86+03	
9ad339bf-a916-46d4-1106-d7e2502b4353	2021-05-20 03:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:16:08.853+03	2021-05-20 03:16:08.863+03	
0c5b48d6-7011-2bc4-88b9-6f1268145551	2021-05-20 03:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:16:28.853+03	2021-05-20 03:16:28.859+03	
dc78c595-441b-c706-ee0c-a4ff56a6ca20	2021-05-20 03:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:16:50.853+03	2021-05-20 03:16:50.859+03	
a72c1633-17f1-3c75-4b51-96262befb182	2021-05-20 03:17:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:17:11.854+03	2021-05-20 03:17:11.865+03	
e9c15faa-42ad-519d-a9dc-0f88762c8e2a	2021-05-20 02:56:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:56:17.853+03	2021-05-20 02:56:17.86+03	
f6404f55-7990-e640-2714-902988c87ebd	2021-05-20 02:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:56:37.853+03	2021-05-20 02:56:37.859+03	
dced932c-8bef-0293-cd73-218ef1885d6c	2021-05-20 02:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:56:57.853+03	2021-05-20 02:56:57.86+03	
56dd92d6-f6cd-d5a5-a4f1-97b7e415fb4a	2021-05-20 02:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:57:18.853+03	2021-05-20 02:57:18.86+03	
24452ecc-15e4-8408-abbf-c8e4292308aa	2021-05-20 02:57:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:57:39.853+03	2021-05-20 02:57:39.863+03	
e7290ff3-c26b-fc9f-c9af-49eb32e7ee1d	2021-05-20 02:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:57:59.853+03	2021-05-20 02:57:59.86+03	
3b6638ec-22de-2606-0ef7-4426bf7269aa	2021-05-20 02:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:58:19.853+03	2021-05-20 02:58:19.859+03	
12f56bc3-d72b-4144-6575-7b906af835a3	2021-05-20 02:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:58:40.853+03	2021-05-20 02:58:40.86+03	
736ce10e-0725-16dc-12f9-d98b199d1f14	2021-05-20 02:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:59:00.853+03	2021-05-20 02:59:00.862+03	
1bd0a570-c7c0-abce-f5cb-1808a5c417df	2021-05-20 02:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:59:20.853+03	2021-05-20 02:59:20.86+03	
97b5ed28-72a7-65e7-9ab1-d6773ad64199	2021-05-20 02:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 02:59:40.853+03	2021-05-20 02:59:40.86+03	
ce955d4c-93d3-2b0f-49d3-50065dc8e009	2021-05-20 03:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 03:00:00.853+03	2021-05-20 03:00:00.862+03	ERROR
3f523fb3-b532-1be8-5ffa-8b1a5a9f182e	2021-05-20 03:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:00:12.853+03	2021-05-20 03:00:12.863+03	
a633800b-2f3e-6c67-5257-8ee1b356555a	2021-05-20 03:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:00:32.853+03	2021-05-20 03:00:32.863+03	
90bb3c6b-670f-ef40-4b6b-08edf19c170e	2021-05-20 03:00:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:00:52.853+03	2021-05-20 03:00:52.86+03	
b90a5958-cc4b-f0af-38f6-722def51a1c6	2021-05-20 03:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:01:13.853+03	2021-05-20 03:01:13.862+03	
db73cf3b-661d-67c2-7fbf-c472c826e81f	2021-05-20 03:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:01:33.853+03	2021-05-20 03:01:33.863+03	
a62b6a71-e5d1-1ab4-e416-8e02fe9c0a44	2021-05-20 03:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:01:54.853+03	2021-05-20 03:01:54.861+03	
6d5192af-6593-4fd6-ab39-8fb66a912f62	2021-05-20 03:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:02:15.853+03	2021-05-20 03:02:15.86+03	
e8ded7db-0653-d2bf-1102-a12ed3ee1a94	2021-05-20 03:02:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:02:36.853+03	2021-05-20 03:02:36.86+03	
813a4023-76c6-5edf-5bbe-45278787b680	2021-05-20 03:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:02:57.853+03	2021-05-20 03:02:57.864+03	
de491087-19c3-b1c7-47bd-2962453e6642	2021-05-20 03:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:03:18.852+03	2021-05-20 03:03:18.862+03	
1e60259b-5a35-5178-70b7-9af4bc370ee1	2021-05-20 03:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:03:39.852+03	2021-05-20 03:03:39.858+03	
7c071ea6-c50a-06e5-15c8-473e437a4c20	2021-05-20 03:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:03:59.853+03	2021-05-20 03:03:59.859+03	
d85f641d-e8ac-5fd5-cd67-71e95b34fa19	2021-05-20 03:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:04:19.853+03	2021-05-20 03:04:19.86+03	
770ffccd-e9e6-08e0-1739-d478e280c676	2021-05-20 03:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:04:40.853+03	2021-05-20 03:04:40.862+03	
98c3db0e-0ab4-cf24-cc64-19e34f786c1c	2021-05-20 03:05:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:05:01.853+03	2021-05-20 03:05:01.892+03	
e355e728-7362-1957-c4c3-f486b1d0e926	2021-05-20 03:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:05:22.852+03	2021-05-20 03:05:22.86+03	
17e489ea-9ce7-28a4-d061-a2c3fb5022dd	2021-05-20 03:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:05:42.853+03	2021-05-20 03:05:42.86+03	
76391c87-ea75-e824-4460-b02c6eba922f	2021-05-20 03:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:06:03.853+03	2021-05-20 03:06:03.86+03	
a3f80f79-7dee-c813-7fcb-4b5a29d01aa8	2021-05-20 03:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:06:24.852+03	2021-05-20 03:06:24.861+03	
e7e7c121-06b5-7504-382e-667d7fd7ff9f	2021-05-20 03:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:06:44.853+03	2021-05-20 03:06:44.872+03	
a2c432e7-9f02-6a8d-6032-9c88ed5699ce	2021-05-20 03:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:07:05.853+03	2021-05-20 03:07:05.859+03	
495b883a-feb8-a611-5fbe-1a2d8cd6ad57	2021-05-20 03:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:07:25.853+03	2021-05-20 03:07:25.861+03	
7c0b38ef-1c4e-e517-1c00-2915e3935935	2021-05-20 03:07:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:07:46.853+03	2021-05-20 03:07:46.864+03	
9cd4c2fa-a1c8-16e7-6394-588d3eda8c78	2021-05-20 03:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:08:07.852+03	2021-05-20 03:08:07.862+03	
7e0e3b23-74ce-62ad-31db-e0ca5b4580c7	2021-05-20 03:08:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:08:27.852+03	2021-05-20 03:08:27.86+03	
a472afe3-178b-de36-6029-07dea5390e7c	2021-05-20 03:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:08:48.853+03	2021-05-20 03:08:48.863+03	
56b2bdd4-d4c0-0272-9aad-330b91dd5af1	2021-05-20 03:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:09:09.852+03	2021-05-20 03:09:09.86+03	
ff6fcb27-2a96-4dd8-d5b2-94ff93222aae	2021-05-20 03:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:09:29.852+03	2021-05-20 03:09:29.859+03	
9fe0c799-36fb-d8e8-dd20-f6b01b996cc7	2021-05-20 03:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:09:50.852+03	2021-05-20 03:09:50.86+03	
a79615a9-b0b9-a922-6d87-b7b7b5300655	2021-05-20 03:10:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 03:10:00.853+03	2021-05-20 03:10:00.874+03	ERROR
91557f3b-07fe-1cb6-43bc-e72bae59fade	2021-05-20 03:10:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:10:11.853+03	2021-05-20 03:10:11.876+03	
0cf0247e-6328-fb45-9000-fabb5a3c658f	2021-05-20 03:10:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:10:31.853+03	2021-05-20 03:10:31.87+03	
f39b2c8f-afd6-fdff-aa18-6e38e7f89398	2021-05-20 03:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:10:52.852+03	2021-05-20 03:10:52.861+03	
e5249aa2-4a4b-d6ee-41a0-4f8b93f2c296	2021-05-20 03:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:11:12.852+03	2021-05-20 03:11:12.859+03	
dbbdb4ce-e353-73ef-5ea4-58f6e7a98e4f	2021-05-20 03:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:11:33.852+03	2021-05-20 03:11:33.859+03	
b27194aa-b57e-66a0-f4ab-2dd6c087c9a6	2021-05-20 03:11:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:11:53.853+03	2021-05-20 03:11:53.86+03	
d7aabf2e-4b11-bfb1-d4c5-6ec7c160b600	2021-05-20 03:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:12:14.853+03	2021-05-20 03:12:14.86+03	
f9bdb8e5-cf68-6666-196d-4e42e44337fd	2021-05-20 03:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:12:34.853+03	2021-05-20 03:12:34.865+03	
db2e344c-22e3-48bb-a19d-9ac2117a11cf	2021-05-20 03:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:12:54.853+03	2021-05-20 03:12:54.861+03	
b2beaca3-c389-bb10-d016-c31013abeaa1	2021-05-20 03:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:13:15.852+03	2021-05-20 03:13:15.86+03	
ffd286c1-d4b0-c5a7-93d9-3d4b85e00383	2021-05-20 03:13:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:13:36.852+03	2021-05-20 03:13:36.859+03	
cf3891de-3f36-e336-7e4e-6d56365c709b	2021-05-20 03:13:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:13:56.852+03	2021-05-20 03:13:56.863+03	
54f2983d-7859-cff3-e580-73a029c0bdef	2021-05-20 03:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:14:17.852+03	2021-05-20 03:14:17.86+03	
db3b3b9c-ad2a-59b3-2c23-af15e23866aa	2021-05-20 03:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:14:37.853+03	2021-05-20 03:14:37.867+03	
23f2cbe8-5b2f-fbb5-33e8-eb54b5b35477	2021-05-20 03:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:14:57.853+03	2021-05-20 03:14:57.86+03	
c685901c-4634-608c-b53b-5ec9aea3d593	2021-05-20 03:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:15:18.852+03	2021-05-20 03:15:18.86+03	
4baa60e6-bbcd-9503-577a-6945172d190f	2021-05-20 03:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:15:38.853+03	2021-05-20 03:15:38.861+03	
2e27fd71-2eff-06f8-f6b2-d4b3acd31ed8	2021-05-20 03:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:15:58.853+03	2021-05-20 03:15:58.86+03	
c2d5e50e-15b3-8d55-59b6-58d131fec321	2021-05-20 03:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:16:18.853+03	2021-05-20 03:16:18.873+03	
3b234c89-e436-771b-567b-19677ca48af6	2021-05-20 03:16:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:16:39.853+03	2021-05-20 03:16:39.862+03	
988daabe-fc7b-feed-4e57-19428e5d58cd	2021-05-20 03:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:17:00.853+03	2021-05-20 03:17:00.86+03	
9aaad8bb-f288-3c1e-3c8e-ee03947ef822	2021-05-20 14:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:50:12.853+03	2021-05-20 14:50:12.862+03	
c94ba3fd-da67-3a94-cee5-7bad35a7b017	2021-05-20 03:17:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:17:21.854+03	2021-05-20 03:17:21.863+03	
a4510b05-77fd-70b2-3f47-e3e8fed4d954	2021-05-20 04:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:13:33.853+03	2021-05-20 04:13:33.861+03	
7c97f52f-f42e-2a7d-f1f6-9daafbc232ec	2021-05-20 03:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:17:43.853+03	2021-05-20 03:17:43.866+03	
bc623872-20a9-cf82-b833-ef9cc2e8e7ca	2021-05-20 03:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:18:04.853+03	2021-05-20 03:18:04.873+03	
cbe46124-f811-705c-2e59-fbfd304acd5d	2021-05-20 04:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:13:55.852+03	2021-05-20 04:13:55.86+03	
e4aae470-a4b4-e4d2-286b-c4142036d863	2021-05-20 03:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:18:24.853+03	2021-05-20 03:18:24.86+03	
11f21cb9-8b3e-97cd-c683-75aaaa6436d8	2021-05-20 03:18:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:18:45.852+03	2021-05-20 03:18:45.871+03	
04a51375-ab78-b871-e450-5b5b96e7b13c	2021-05-20 04:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:14:15.852+03	2021-05-20 04:14:15.859+03	
bf6affca-d278-4ed1-28ab-923acd247989	2021-05-20 03:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:19:05.852+03	2021-05-20 03:19:05.859+03	
3500d928-b4e2-0f5e-5219-215c46ec3579	2021-05-20 03:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:19:25.852+03	2021-05-20 03:19:25.86+03	
9ffa84ac-36d1-a145-bd47-a8c607d56d0d	2021-05-20 04:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:14:35.853+03	2021-05-20 04:14:35.861+03	
5b139912-67b6-88a0-2d87-d855028041be	2021-05-20 03:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:19:45.852+03	2021-05-20 03:19:45.86+03	
78e88922-ca86-73be-2a33-e425a21450c5	2021-05-20 04:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:14:55.853+03	2021-05-20 04:14:55.86+03	
39d35607-2842-95d6-f8be-fa5493bbc07b	2021-05-20 04:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:15:15.853+03	2021-05-20 04:15:15.862+03	
0261a46f-5995-1476-893b-6cfb788cec60	2021-05-20 04:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:15:36.853+03	2021-05-20 04:15:36.86+03	
d3016797-7f34-c1eb-8a71-6d068fe02e8b	2021-05-20 04:15:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:15:56.854+03	2021-05-20 04:15:56.861+03	
9245c77e-3b0b-1d14-5ede-3e3d502917be	2021-05-20 04:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:16:17.853+03	2021-05-20 04:16:17.859+03	
7c4c92d7-4517-b84f-ded2-f0bfa7ab00ad	2021-05-20 04:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:16:37.853+03	2021-05-20 04:16:37.859+03	
e51258ff-0e76-d0d6-0dbc-b385e37d3554	2021-05-20 04:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:16:58.852+03	2021-05-20 04:16:58.86+03	
f2edef59-1b99-4866-ae81-ccb027bc8f68	2021-05-20 04:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:17:18.853+03	2021-05-20 04:17:18.86+03	
4a578cf0-3b55-be02-d63d-b23f966938b7	2021-05-20 04:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:17:38.853+03	2021-05-20 04:17:38.861+03	
da554c24-57cb-2fe3-a0db-6b2716b6d917	2021-05-20 04:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:17:59.853+03	2021-05-20 04:17:59.863+03	
65d226be-8552-05db-f906-6ee7db95f025	2021-05-20 04:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:18:20.853+03	2021-05-20 04:18:20.86+03	
b0be43d3-b82f-fe90-b9f5-cf2c4ce667de	2021-05-20 04:18:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:18:40.853+03	2021-05-20 04:18:40.861+03	
dc58cff6-6747-41c6-2bf7-fee975d618d2	2021-05-20 04:19:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:19:00.853+03	2021-05-20 04:19:00.862+03	
0fdada52-64d7-3d1b-b1a4-93eee2cc2336	2021-05-20 04:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:19:20.853+03	2021-05-20 04:19:20.86+03	
fd006927-7a90-a8e0-2489-01ada5bbc73e	2021-05-20 04:19:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:19:41.853+03	2021-05-20 04:19:41.861+03	
2ead2c65-c7bc-38a1-2966-da10174e451b	2021-05-20 04:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 04:20:00.852+03	2021-05-20 04:20:00.857+03	ERROR
2f7d3571-00e6-0654-7678-a291b4560910	2021-05-20 04:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:20:12.853+03	2021-05-20 04:20:12.871+03	
f628968f-ab0c-688e-172e-360cc04ddf33	2021-05-20 04:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:20:33.853+03	2021-05-20 04:20:33.861+03	
6f914304-f14a-1321-1e0e-8aa6102b1faf	2021-05-20 04:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:20:54.853+03	2021-05-20 04:20:54.86+03	
f8071e25-60ec-7050-d02e-b9548287e534	2021-05-20 04:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:21:15.853+03	2021-05-20 04:21:15.866+03	
cb6dbc02-3377-493c-b2e0-827babdc58d1	2021-05-20 04:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:21:36.853+03	2021-05-20 04:21:36.859+03	
f6f82878-5181-3d60-a619-64f7c4d31d67	2021-05-20 04:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:21:57.853+03	2021-05-20 04:21:57.859+03	
796e7bd9-8ff5-4e42-f72f-82b7c1ad5e21	2021-05-20 04:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:22:17.853+03	2021-05-20 04:22:17.859+03	
5fbf0ffe-ec8a-746c-cc39-a2acb112c98a	2021-05-20 04:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:22:38.852+03	2021-05-20 04:22:38.86+03	
4872f9c2-aaf8-fbcb-ddf7-a95d525985f4	2021-05-20 04:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:22:59.853+03	2021-05-20 04:22:59.86+03	
47268215-2127-bef2-30eb-dd1c8be47bbd	2021-05-20 04:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:23:20.852+03	2021-05-20 04:23:20.859+03	
789de9a4-e9b5-89f7-773d-783f9d8c00b5	2021-05-20 04:23:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:23:41.853+03	2021-05-20 04:23:41.87+03	
df4ae176-8bc9-e084-f1ad-75067ae173d2	2021-05-20 04:24:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:24:01.854+03	2021-05-20 04:24:01.882+03	
37c53eea-d251-585a-04d1-f1c0171dd9bf	2021-05-20 04:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:24:22.853+03	2021-05-20 04:24:22.86+03	
bab8775f-c590-d039-5ab1-42f0f80b8b18	2021-05-20 04:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:24:43.853+03	2021-05-20 04:24:43.869+03	
86de5e7d-bc1f-cc29-f4b4-e490851336ca	2021-05-20 04:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:25:03.853+03	2021-05-20 04:25:03.863+03	
48b9e1f2-6e2d-5c71-b95b-9a539c83c02f	2021-05-20 04:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:25:24.853+03	2021-05-20 04:25:24.863+03	
48111f85-aeca-e264-8001-7cb68e3f2a19	2021-05-20 04:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:25:46.852+03	2021-05-20 04:25:46.859+03	
d41663c7-d32b-2b6d-9e7d-5de52853bade	2021-05-20 04:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:26:06.853+03	2021-05-20 04:26:06.862+03	
95b68103-024a-d8d1-c510-4087a11f82de	2021-05-20 04:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:26:27.852+03	2021-05-20 04:26:27.862+03	
98ef7292-3e0c-c57b-9c9c-31f13212500e	2021-05-20 04:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:26:47.853+03	2021-05-20 04:26:47.86+03	
76e0d2e2-2f79-cede-559c-8083f67e3c98	2021-05-20 04:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:27:07.853+03	2021-05-20 04:27:07.861+03	
ac38bdf4-557f-9595-5e83-145a29cbea46	2021-05-20 04:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:27:28.852+03	2021-05-20 04:27:28.86+03	
07c95e46-44fe-43d1-b978-7db70ef955b4	2021-05-20 04:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:27:48.853+03	2021-05-20 04:27:48.907+03	
2ee5d706-1fd1-5c44-227d-cdad534e883d	2021-05-20 04:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:28:08.853+03	2021-05-20 04:28:08.86+03	
439f6a35-fc05-df44-c840-39751e14d78b	2021-05-20 04:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:28:29.852+03	2021-05-20 04:28:29.86+03	
36fc4bf4-3689-e357-3cde-61058306e753	2021-05-20 04:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:28:50.852+03	2021-05-20 04:28:50.859+03	
fa9ffcc6-45c0-90b0-95e2-b556769ad01a	2021-05-20 04:29:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:29:11.852+03	2021-05-20 04:29:11.861+03	
54562321-6256-c252-77fa-c58ef4f3e1f5	2021-05-20 04:29:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:29:31.853+03	2021-05-20 04:29:31.873+03	
9c620c16-4f1b-3b00-8b07-66a03340648f	2021-05-20 04:29:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:29:51.854+03	2021-05-20 04:29:51.861+03	
a480c2d9-1a47-375d-ad7e-017b0795aed4	2021-05-20 04:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:30:02.852+03	2021-05-20 04:30:02.871+03	
8d644c3e-0729-d2e3-f254-d73fe4da21cb	2021-05-20 04:30:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:30:22.852+03	2021-05-20 04:30:22.864+03	
1b7c847e-67ee-aea8-9ad6-6ffc619aa3ac	2021-05-20 04:30:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:30:43.853+03	2021-05-20 04:30:43.861+03	
7527a96a-f5cf-96bd-e409-1b75f146e50f	2021-05-20 04:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:31:03.853+03	2021-05-20 04:31:03.859+03	
4cfe6075-a903-05fa-5a97-29d1eebbe66c	2021-05-20 04:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:31:25.852+03	2021-05-20 04:31:25.859+03	
44423174-915e-5817-dfec-fe66b9e69ee2	2021-05-20 04:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:31:45.853+03	2021-05-20 04:31:45.859+03	
aec129fc-3e5c-5ee0-21b9-4dbd51e51828	2021-05-20 03:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:17:32.853+03	2021-05-20 03:17:32.86+03	
8b40e046-0f39-a2a8-d781-08a27c56ae10	2021-05-20 03:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:17:53.853+03	2021-05-20 03:17:53.87+03	
9072a84f-deb3-5a70-e933-9ddb731b8932	2021-05-20 03:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:18:14.853+03	2021-05-20 03:18:14.865+03	
c5ab0588-ee1f-1c5b-9039-f8571f764a4a	2021-05-20 03:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:18:34.853+03	2021-05-20 03:18:34.862+03	
a660942d-74fb-ce4f-c200-cc65dc1945e3	2021-05-20 03:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:18:55.852+03	2021-05-20 03:18:55.859+03	
989e6259-a946-ff58-0c94-8fa6816cd3e7	2021-05-20 03:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:19:15.852+03	2021-05-20 03:19:15.859+03	
b1dcd3cf-17ec-42d3-f95b-4fd2f77bbf8d	2021-05-20 03:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:19:35.852+03	2021-05-20 03:19:35.86+03	
01247b39-ba28-2dd5-c523-5157c171ec1d	2021-05-20 03:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:19:55.852+03	2021-05-20 03:19:55.86+03	
08bc170b-dd18-bd80-b152-f71963e93420	2021-05-20 03:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 03:20:00.852+03	2021-05-20 03:20:00.858+03	ERROR
83755ee0-6dae-1ae3-f699-9ab826cb85da	2021-05-20 03:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:20:05.853+03	2021-05-20 03:20:05.867+03	
8c0787ef-e7be-8f7d-c641-be1af3e57a8b	2021-05-20 03:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:20:15.853+03	2021-05-20 03:20:15.86+03	
8a5c41ea-dd9e-8685-a38d-ed187a0c3741	2021-05-20 03:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:20:26.853+03	2021-05-20 03:20:27.143+03	
cc45ed1a-496d-f8c3-26e8-ecc3810e2b36	2021-05-20 03:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:20:37.852+03	2021-05-20 03:20:37.86+03	
2e872b99-1479-a590-cfd9-618aba60f7ba	2021-05-20 03:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:20:47.852+03	2021-05-20 03:20:47.859+03	
a0f489e1-5b68-cab3-9b11-79e2aa74e311	2021-05-20 03:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:20:57.852+03	2021-05-20 03:20:57.868+03	
62e22d54-b05d-38ad-f330-dcd81147ab41	2021-05-20 03:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:21:07.853+03	2021-05-20 03:21:07.863+03	
bb3c37bc-4bdd-a990-70c6-913e8fb40ae4	2021-05-20 03:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:21:17.853+03	2021-05-20 03:21:17.86+03	
09441630-c500-e7f7-008f-e8b2c89d60f7	2021-05-20 03:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:21:27.853+03	2021-05-20 03:21:27.86+03	
0baf4376-74af-d534-423c-a6fce7d34062	2021-05-20 03:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:21:38.853+03	2021-05-20 03:21:38.859+03	
2739357f-6b6f-f496-b829-2206d18abc56	2021-05-20 03:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:21:48.853+03	2021-05-20 03:21:48.859+03	
d7853b0a-b137-4b00-c4df-9a96f4f87438	2021-05-20 03:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:21:58.853+03	2021-05-20 03:21:58.86+03	
030d94d0-2ab5-21d9-35fd-298414c48c15	2021-05-20 03:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:22:09.853+03	2021-05-20 03:22:09.859+03	
d8178ee0-36eb-f508-8005-613efa82a440	2021-05-20 03:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:22:20.852+03	2021-05-20 03:22:20.86+03	
18fc7096-217a-124e-057e-23b2446bf727	2021-05-20 03:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:22:30.853+03	2021-05-20 03:22:30.861+03	
43de10bf-de2e-b448-cc11-b949c1ad4955	2021-05-20 03:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:22:40.853+03	2021-05-20 03:22:40.875+03	
05440214-7de4-851e-a20e-9e8063626e4f	2021-05-20 03:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:22:50.853+03	2021-05-20 03:22:50.863+03	
464d8639-9000-e613-6e7f-f28ffe82ff26	2021-05-20 03:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:23:00.853+03	2021-05-20 03:23:00.859+03	
26306fcf-a3b4-ac95-b922-5279c021cf1a	2021-05-20 03:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:23:10.853+03	2021-05-20 03:23:10.861+03	
5ed6f719-8d1b-b81b-4041-99289777b3d7	2021-05-20 03:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:23:20.853+03	2021-05-20 03:23:20.86+03	
6569d9df-3c22-c68c-e0ad-d0d00f62c756	2021-05-20 03:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:23:30.853+03	2021-05-20 03:23:30.859+03	
9f8458bb-4b21-a9b2-7251-b243e6f93f44	2021-05-20 03:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:23:40.853+03	2021-05-20 03:23:40.859+03	
dd350732-d2b5-31cc-6fbf-9bf14dfa5a67	2021-05-20 03:23:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:23:51.854+03	2021-05-20 03:23:51.861+03	
ccccc745-04f9-af64-d332-8cafd1e59b84	2021-05-20 03:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:24:02.853+03	2021-05-20 03:24:02.86+03	
07ba2206-0ad2-5cce-c592-87c9d59b5dcc	2021-05-20 03:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:24:12.853+03	2021-05-20 03:24:12.861+03	
cbc59a8b-727a-ed9f-4d96-b7817a43a18f	2021-05-20 03:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:24:22.853+03	2021-05-20 03:24:22.876+03	
080f9d18-dc14-923a-98a8-6d444d2a1043	2021-05-20 03:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:24:32.853+03	2021-05-20 03:24:32.865+03	
3f325090-8cc8-d581-97a2-f658efa19d04	2021-05-20 03:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:24:42.853+03	2021-05-20 03:24:42.859+03	
46fb081b-2667-d900-8c1c-f7fd7e2715c4	2021-05-20 03:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:24:52.853+03	2021-05-20 03:24:52.859+03	
9aad51ae-0987-94dd-5769-0a965e27b64d	2021-05-20 03:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:25:03.852+03	2021-05-20 03:25:03.864+03	
374c49c5-770e-9a3d-5818-6f38d3d78cb2	2021-05-20 03:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:25:13.853+03	2021-05-20 03:25:13.863+03	
e1a5c07f-25e0-53e3-e043-98a0d7998a6f	2021-05-20 03:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:25:24.853+03	2021-05-20 03:25:24.862+03	
3035307d-648c-c374-f4c6-ccc1bd460741	2021-05-20 03:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:25:34.853+03	2021-05-20 03:25:34.862+03	
ecc51f65-e3b6-bf0b-48be-aafd0d590385	2021-05-20 03:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:25:44.853+03	2021-05-20 03:25:44.864+03	
beda3020-dc28-ef73-cc76-717325d36e4e	2021-05-20 03:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:25:55.852+03	2021-05-20 03:25:55.86+03	
9fd9c471-1f37-20d3-8489-6cb98a141c10	2021-05-20 03:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:26:05.852+03	2021-05-20 03:26:05.86+03	
c5d48e68-967d-33d8-fa4c-ed4c5b869f60	2021-05-20 03:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:26:15.853+03	2021-05-20 03:26:15.859+03	
226849cc-4054-9854-b156-5819992bf753	2021-05-20 03:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:26:25.853+03	2021-05-20 03:26:25.863+03	
baa3ab87-17be-fb4c-ffff-abdc82bc27ae	2021-05-20 03:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:26:35.853+03	2021-05-20 03:26:35.861+03	
17ee7972-0203-43b9-fbfb-743fb66b8a95	2021-05-20 03:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:26:45.853+03	2021-05-20 03:26:45.86+03	
aea827db-2d1a-1f0a-6b57-b286f991a92e	2021-05-20 03:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:26:55.853+03	2021-05-20 03:26:55.86+03	
624d9b3a-f66f-faa4-01b0-47f58c848e4a	2021-05-20 03:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:27:05.853+03	2021-05-20 03:27:05.863+03	
61bcc343-39fc-7482-a816-5ef42cc0262c	2021-05-20 03:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:27:15.853+03	2021-05-20 03:27:15.86+03	
6d9dadb8-01af-19e9-0a76-c60164009843	2021-05-20 03:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:27:25.853+03	2021-05-20 03:27:25.861+03	
55c6b554-1043-9218-1471-417208aa098b	2021-05-20 03:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:27:35.853+03	2021-05-20 03:27:35.862+03	
a3b2ccf4-4f18-803d-92c0-a2b5c57a66a8	2021-05-20 03:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:27:45.853+03	2021-05-20 03:27:45.859+03	
b2bf9427-77f4-d8d4-107b-3efb916ee3c3	2021-05-20 03:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:27:55.853+03	2021-05-20 03:27:55.86+03	
7454165e-a404-1cd5-0809-f5491841d277	2021-05-20 03:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:28:05.853+03	2021-05-20 03:28:05.86+03	
ccf6e1cd-0848-c549-dde7-fbbf04c67492	2021-05-20 03:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:28:15.853+03	2021-05-20 03:28:15.859+03	
7a37d664-5301-527b-2a21-7c296264b1c9	2021-05-20 03:28:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:28:25.853+03	2021-05-20 03:28:25.86+03	
0a1e46f2-a070-8fba-33dd-845b4107e146	2021-05-20 03:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:28:35.853+03	2021-05-20 03:28:35.86+03	
5398204b-30fd-9642-8f67-a08069c8014c	2021-05-20 03:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:28:45.853+03	2021-05-20 03:28:45.86+03	
644048ee-f3e9-fc1d-4030-a5e035325503	2021-05-20 03:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:28:55.853+03	2021-05-20 03:28:55.861+03	
4998bad3-9dd2-35a5-3730-7a79e196cd10	2021-05-20 03:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:29:05.853+03	2021-05-20 03:29:05.86+03	
705db3ef-403b-b045-6635-5ffa042944e9	2021-05-20 03:29:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:29:16.852+03	2021-05-20 03:29:16.862+03	
02145373-25e0-3d2c-e985-f36441b39934	2021-05-20 03:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:29:37.853+03	2021-05-20 03:29:37.861+03	
9e038f4d-8fa1-be88-9cbd-0aadddfc58e0	2021-05-20 03:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:29:58.853+03	2021-05-20 03:29:58.859+03	
49506e73-0b52-5bda-c99e-51290d4d5910	2021-05-20 03:30:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:30:08.853+03	2021-05-20 03:30:08.861+03	
da54e5e3-775e-d11f-0840-7010a04aec19	2021-05-20 03:30:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:30:28.853+03	2021-05-20 03:30:28.876+03	
bd17a509-a2e7-3f60-11d2-ad72d95d2e18	2021-05-20 03:30:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:30:48.853+03	2021-05-20 03:30:48.864+03	
6c76f5ce-332e-bdd7-e7f1-3c162dfe71a4	2021-05-20 03:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:31:10.852+03	2021-05-20 03:31:10.86+03	
9fc7fedb-db15-1174-ff11-3b33b59f7ec8	2021-05-20 03:31:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:31:31.853+03	2021-05-20 03:31:31.86+03	
eafc651f-2143-9074-e6b7-281a2d797c9f	2021-05-20 03:31:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:31:51.854+03	2021-05-20 03:31:51.874+03	
4fb30ee4-0491-da5f-699f-736fc22fabc0	2021-05-20 03:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:32:12.853+03	2021-05-20 03:32:12.859+03	
66b960e6-ee89-a51d-5118-bf7082fa3b34	2021-05-20 03:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:32:33.852+03	2021-05-20 03:32:33.859+03	
9b3f3b8d-d298-d3e5-6603-56b2cbfa7e96	2021-05-20 03:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:32:54.853+03	2021-05-20 03:32:54.86+03	
a5ced72d-4f08-750b-dff6-ab91a7c2092e	2021-05-20 03:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:33:15.853+03	2021-05-20 03:33:15.862+03	
39ab0639-51ea-484d-904c-899c709a035f	2021-05-20 03:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:33:35.853+03	2021-05-20 03:33:35.859+03	
1c802310-c2ce-f3df-2f25-d128434e4fc8	2021-05-20 03:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:33:55.853+03	2021-05-20 03:33:55.86+03	
0f8d9610-7fc1-55b1-4d43-fa3909afce83	2021-05-20 03:34:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:34:15.853+03	2021-05-20 03:34:15.865+03	
4b14a7fd-22b2-350c-3fe2-8a7f7d806166	2021-05-20 03:34:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:34:36.853+03	2021-05-20 03:34:36.864+03	
baf22e26-bf76-92cd-e295-19e5232b3ab2	2021-05-20 03:34:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:34:56.853+03	2021-05-20 03:34:56.861+03	
5aec7de9-15c8-8454-c785-25f5552746ea	2021-05-20 03:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:35:17.852+03	2021-05-20 03:35:17.859+03	
a8f4a399-9629-4a34-d21a-0918481ea1ec	2021-05-20 03:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:35:37.853+03	2021-05-20 03:35:37.865+03	
bb00624b-74be-58ea-abff-de932404565a	2021-05-20 03:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:35:58.852+03	2021-05-20 03:35:58.859+03	
672a4161-f628-f242-d280-613124544e28	2021-05-20 03:36:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:36:18.853+03	2021-05-20 03:36:18.863+03	
bceb086d-48ea-d410-9390-5b4ec32beab4	2021-05-20 03:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:36:40.852+03	2021-05-20 03:36:40.859+03	
3720912e-fc43-6151-38be-daed2a2957b6	2021-05-20 03:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:37:00.853+03	2021-05-20 03:37:00.861+03	
fefe5dbe-1d06-25dc-4ba2-57a6577fbf73	2021-05-20 03:37:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:37:21.854+03	2021-05-20 03:37:21.86+03	
1c12a911-b978-355a-4ec1-8f596e50a705	2021-05-20 03:37:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:37:41.854+03	2021-05-20 03:37:41.879+03	
c141353d-db4f-1a5a-f9e5-3004e49409a8	2021-05-20 03:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:38:02.853+03	2021-05-20 03:38:02.871+03	
5c395c0c-514c-8a43-df3d-169deb33e65c	2021-05-20 03:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:38:22.853+03	2021-05-20 03:38:22.861+03	
a4bef192-bd36-b4da-4adb-5e75f14e34d4	2021-05-20 03:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:38:43.853+03	2021-05-20 03:38:43.87+03	
9bd437d2-dbe2-e67a-f76b-8c7f3c421146	2021-05-20 03:39:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:39:03.853+03	2021-05-20 03:39:03.86+03	
a9681387-4821-a36a-ffd1-c7e0a99550a6	2021-05-20 03:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:39:25.853+03	2021-05-20 03:39:25.86+03	
d36026ce-5a2d-5877-cb97-b7f1c1992776	2021-05-20 03:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:39:45.853+03	2021-05-20 03:39:45.863+03	
cb6acc8c-c5c6-9a70-18a2-f3f900e3a6ba	2021-05-20 03:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 03:40:00.852+03	2021-05-20 03:40:00.861+03	ERROR
790ced52-a138-a4d5-d7c1-74eacd0a72dc	2021-05-20 03:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:40:15.853+03	2021-05-20 03:40:15.861+03	
e2d007a1-82e1-9e8b-c6ad-b6f096d5f12e	2021-05-20 03:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:40:37.853+03	2021-05-20 03:40:37.859+03	
ba4701bb-2438-839d-4688-c32fe6591c9a	2021-05-20 03:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:40:58.853+03	2021-05-20 03:40:58.86+03	
5c2e274f-94c8-dde5-f5e2-8170fddbe756	2021-05-20 03:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:41:18.853+03	2021-05-20 03:41:18.859+03	
14dfd806-df5f-0b7f-02f0-41b45fa454b8	2021-05-20 03:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:41:38.853+03	2021-05-20 03:41:38.862+03	
98f51a83-fcf7-ac87-106f-0a416a918d78	2021-05-20 03:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:41:59.853+03	2021-05-20 03:41:59.859+03	
9d0cc387-00c0-1c48-45a5-732c57194e4a	2021-05-20 03:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:42:20.852+03	2021-05-20 03:42:20.865+03	
8ecc52f4-3b55-c373-0518-b45fe9bdbaea	2021-05-20 03:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:42:40.853+03	2021-05-20 03:42:40.86+03	
464d71ec-bec5-677c-4491-84e05033d44a	2021-05-20 03:43:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:43:01.853+03	2021-05-20 03:43:01.871+03	
047a1a7b-afc7-3e98-d6fe-8bbd149d11b5	2021-05-20 03:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:43:22.853+03	2021-05-20 03:43:22.86+03	
3598d527-9746-1dff-87c2-e1b81152ab5b	2021-05-20 03:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:43:43.853+03	2021-05-20 03:43:43.865+03	
73805d42-d508-c856-087b-cedd07d1af9f	2021-05-20 03:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:44:03.853+03	2021-05-20 03:44:03.861+03	
c9c26572-3ea1-c31e-1282-15d7c1a41070	2021-05-20 03:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:44:23.853+03	2021-05-20 03:44:23.878+03	
0cc7acdf-9195-b1f0-26a1-8db1e2a3e42a	2021-05-20 03:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:44:44.853+03	2021-05-20 03:44:44.86+03	
2e6d2b73-9061-326b-869d-3ae660a64d71	2021-05-20 03:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:45:04.853+03	2021-05-20 03:45:04.861+03	
84a573ef-d47e-ca75-ecb0-3d78ed37b3aa	2021-05-20 03:45:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:45:24.853+03	2021-05-20 03:45:24.861+03	
85f7d2f5-beb6-e767-26b7-4a6d3a557dab	2021-05-20 03:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:45:45.853+03	2021-05-20 03:45:45.86+03	
70aa2a70-a8b8-348f-6465-a48cf1f2f7fe	2021-05-20 03:46:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:46:16.852+03	2021-05-20 03:46:16.859+03	
311f1306-ca46-6bc4-6a3c-a843a02cf375	2021-05-20 03:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:46:37.853+03	2021-05-20 03:46:37.86+03	
eada0289-99e2-3230-fc3d-b32867d99693	2021-05-20 03:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:46:58.853+03	2021-05-20 03:46:58.861+03	
3cb5ab86-6251-6ba5-340a-7483455e5b3e	2021-05-20 03:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:47:20.852+03	2021-05-20 03:47:20.865+03	
95dc1d87-f793-2fb3-32c5-98fedc876487	2021-05-20 03:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:47:40.853+03	2021-05-20 03:47:40.867+03	
986515b6-2a56-f865-474a-2ca22d08762b	2021-05-20 03:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:48:00.853+03	2021-05-20 03:48:00.86+03	
96994212-0fdf-4297-5254-06d5a20f4e93	2021-05-20 03:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:48:22.852+03	2021-05-20 03:48:22.86+03	
1c552881-1a9d-17bb-9f81-4baa2a4bbe83	2021-05-20 03:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:48:42.852+03	2021-05-20 03:48:42.859+03	
0eb2c9a2-f191-6b00-5683-0b50ef0df22c	2021-05-20 03:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:49:02.853+03	2021-05-20 03:49:02.86+03	
66b7a013-3dfc-ebb1-2afc-35114baffa8f	2021-05-20 03:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:49:22.853+03	2021-05-20 03:49:22.861+03	
8b3967a3-5166-1392-245f-578bc6deb463	2021-05-20 03:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:49:43.853+03	2021-05-20 03:49:43.865+03	
b9c20b28-1eac-9139-28ab-b3fb8de36c57	2021-05-20 03:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 03:50:00.853+03	2021-05-20 03:50:00.858+03	ERROR
65ccebc1-5b86-17c0-bf68-4d48538ec8c4	2021-05-20 03:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:50:14.852+03	2021-05-20 03:50:14.861+03	
2e0eb920-39bc-78e6-f20a-3c742b9dcf6c	2021-05-20 03:29:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:29:26.853+03	2021-05-20 03:29:26.861+03	
5996a177-0303-f7d0-f5ca-616be8ac6945	2021-05-20 03:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:29:48.853+03	2021-05-20 03:29:48.86+03	
c0cdca86-106f-5720-7e38-99a34b306359	2021-05-20 03:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 03:30:00.853+03	2021-05-20 03:30:00.859+03	ERROR
c2b3c5f8-3a5d-4c6d-c9f8-148f1e2c827b	2021-05-20 03:30:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:30:18.853+03	2021-05-20 03:30:18.86+03	
de236062-4c93-1512-22f3-6a26082997cf	2021-05-20 03:30:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:30:38.853+03	2021-05-20 03:30:38.871+03	
9e33f48b-87d1-710f-40b5-7d9b324d9ced	2021-05-20 03:30:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:30:59.853+03	2021-05-20 03:30:59.86+03	
53f610c4-74c5-138b-2301-cc3bae09d549	2021-05-20 03:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:31:20.853+03	2021-05-20 03:31:20.86+03	
e75bfd13-ca2e-d102-0276-bb0ecfada5bd	2021-05-20 03:31:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:31:41.853+03	2021-05-20 03:31:41.87+03	
a1fdafc8-7961-83bb-19e3-67c7140f08e0	2021-05-20 03:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:32:02.852+03	2021-05-20 03:32:02.859+03	
10d61dd5-d24e-6c53-dfef-ff3a373179ea	2021-05-20 03:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:32:22.853+03	2021-05-20 03:32:22.866+03	
e7122906-035c-e3eb-8c01-ee2c74dbe4d1	2021-05-20 03:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:32:43.853+03	2021-05-20 03:32:43.869+03	
69d95137-6654-d27c-d042-cb2f5f4a0f9d	2021-05-20 03:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:33:05.853+03	2021-05-20 03:33:05.859+03	
a3fb905e-f1d4-e73b-875b-7af00e5f3a98	2021-05-20 03:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:33:25.853+03	2021-05-20 03:33:25.859+03	
0a71df8b-fb46-5713-ffc8-efb4f5781769	2021-05-20 03:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:33:45.853+03	2021-05-20 03:33:45.863+03	
69106290-554f-5651-ae44-9c32e5963ae3	2021-05-20 03:34:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:34:05.853+03	2021-05-20 03:34:05.86+03	
ee4aca4e-c951-6c26-a7c4-bdb13d8d743c	2021-05-20 03:34:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:34:26.853+03	2021-05-20 03:34:26.86+03	
64596815-915d-7bb2-aa02-352d829b996b	2021-05-20 03:34:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:34:46.853+03	2021-05-20 03:34:46.861+03	
8fb33d74-c209-b51d-0cdf-da7b777c242e	2021-05-20 03:35:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:35:06.853+03	2021-05-20 03:35:06.993+03	
f8cca65e-ad06-d6f8-e28c-15d429e90634	2021-05-20 03:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:35:27.853+03	2021-05-20 03:35:27.861+03	
207b5e9f-383b-518c-1710-132f28a01ab3	2021-05-20 03:35:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:35:47.853+03	2021-05-20 03:35:47.861+03	
e5fe8b39-1562-089f-4c9c-ba41885d6383	2021-05-20 03:36:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:36:08.853+03	2021-05-20 03:36:08.86+03	
ab82e2d5-9cba-d92d-3e8e-d22aa0232316	2021-05-20 03:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:36:29.853+03	2021-05-20 03:36:29.871+03	
96ac13bc-0a1e-9741-d7dc-75a2b364cfc8	2021-05-20 03:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:36:50.852+03	2021-05-20 03:36:50.86+03	
99c8d6f6-36eb-acf0-4d81-a6efa616b8a3	2021-05-20 03:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:37:10.853+03	2021-05-20 03:37:10.861+03	
d9a4aad0-394c-5926-9aa6-fb619ebf735f	2021-05-20 03:37:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:37:31.854+03	2021-05-20 03:37:31.861+03	
1c91b8c3-e07f-2293-49f6-8dbf56e0fc50	2021-05-20 03:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:37:52.853+03	2021-05-20 03:37:52.86+03	
f89c12d1-effa-9ebf-36f0-b3dfc7d6caa2	2021-05-20 03:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:38:12.853+03	2021-05-20 03:38:12.86+03	
59df3ddc-377f-d2b2-8db4-480aa77c9bcc	2021-05-20 03:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:38:33.853+03	2021-05-20 03:38:33.865+03	
e3eb82a8-f033-c1c7-c8e8-b33c05f71118	2021-05-20 03:38:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:38:53.853+03	2021-05-20 03:38:53.861+03	
8595e776-4185-2ce6-c90c-a7017a548f8e	2021-05-20 03:39:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:39:14.853+03	2021-05-20 03:39:14.863+03	
d1a46031-ed73-1a58-6a25-6e9aae8a2a33	2021-05-20 03:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:39:35.853+03	2021-05-20 03:39:35.86+03	
69c794d9-6860-aaab-f0df-10415a511ff6	2021-05-20 03:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:39:55.853+03	2021-05-20 03:39:55.861+03	
7a897529-f725-8dd6-9494-df713dcee240	2021-05-20 03:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:40:05.853+03	2021-05-20 03:40:05.87+03	
d1176fc1-85dc-406b-3982-2b98d79f0e3a	2021-05-20 03:40:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:40:26.853+03	2021-05-20 03:40:26.86+03	
22eb4ebf-30a2-0837-fff1-61571b41e172	2021-05-20 03:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:40:47.853+03	2021-05-20 03:40:47.862+03	
4c1d79e8-a0d6-25e1-fa7e-a81fc53b64ae	2021-05-20 03:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:41:08.853+03	2021-05-20 03:41:08.86+03	
06f3412f-7a76-056a-32f2-6d85efd45074	2021-05-20 03:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:41:28.853+03	2021-05-20 03:41:28.859+03	
cc926690-ecf3-899d-9c49-a405f7c8fe39	2021-05-20 03:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:41:49.853+03	2021-05-20 03:41:49.859+03	
d032f60d-9b95-4587-a940-9e9fb98a0128	2021-05-20 03:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:42:09.853+03	2021-05-20 03:42:09.86+03	
bc307708-0225-abf3-87c6-659344ac234e	2021-05-20 03:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:42:30.852+03	2021-05-20 03:42:30.86+03	
db7bf4f7-52a4-300f-991e-91ca47e05eb7	2021-05-20 03:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:42:50.853+03	2021-05-20 03:42:50.86+03	
48c11fbb-b70c-f54c-bd28-984c917343f2	2021-05-20 03:43:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:43:12.852+03	2021-05-20 03:43:12.859+03	
1172869e-2b38-0f1a-6c6c-f5a4c715278b	2021-05-20 03:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:43:33.853+03	2021-05-20 03:43:33.859+03	
15aab12f-e3d2-582b-9e3b-7231cefd73cb	2021-05-20 03:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:43:53.853+03	2021-05-20 03:43:53.906+03	
d473c839-93b3-52eb-b400-bee98790cfca	2021-05-20 03:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:44:13.853+03	2021-05-20 03:44:13.861+03	
dc4627e2-b6d4-e10b-c524-58ecd3bfb6fd	2021-05-20 03:44:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:44:33.853+03	2021-05-20 03:44:33.861+03	
d117dbef-0215-5bf1-cc9b-88a14fe69116	2021-05-20 03:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:44:54.853+03	2021-05-20 03:44:54.864+03	
52c1f3a6-77ff-afb1-e2da-ef1a8824cbf7	2021-05-20 03:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:45:14.853+03	2021-05-20 03:45:14.861+03	
4e3ebf30-aa81-4fca-2213-4a1beb80ec3a	2021-05-20 03:45:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:45:34.853+03	2021-05-20 03:45:34.86+03	
49adbabe-fec6-0458-ad14-42cd4f9e6582	2021-05-20 03:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:45:55.853+03	2021-05-20 03:45:55.859+03	
f7e1d5d9-4138-5c49-9174-97056c7fd813	2021-05-20 03:46:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:46:06.852+03	2021-05-20 03:46:06.859+03	
c9848575-57f1-ed45-f104-ea6b65b8998a	2021-05-20 03:46:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:46:26.853+03	2021-05-20 03:46:26.862+03	
18746c38-e7bd-fd5b-482c-c8faea133667	2021-05-20 03:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:46:48.853+03	2021-05-20 03:46:48.864+03	
222d35cb-08d9-1559-3a4e-f28ab9c37304	2021-05-20 03:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:47:09.853+03	2021-05-20 03:47:09.861+03	
bf0235e8-0bae-0a5a-42e4-fd24b5d961bc	2021-05-20 03:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:47:30.853+03	2021-05-20 03:47:30.86+03	
eafb6aa4-229c-c4ba-42b8-6424f00ccb79	2021-05-20 03:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:47:50.853+03	2021-05-20 03:47:50.866+03	
8a564dc2-99a7-0bf5-9a41-8b913efc7bf1	2021-05-20 03:48:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:48:11.854+03	2021-05-20 03:48:11.86+03	
6137fb36-298d-3586-c66c-edec9339666e	2021-05-20 03:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:48:32.852+03	2021-05-20 03:48:32.858+03	
a66f46f1-9f89-2dba-8a47-a5557186c215	2021-05-20 03:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:48:52.852+03	2021-05-20 03:48:52.86+03	
1dd5a0d1-1920-c2d6-6ca5-bad345eb3a80	2021-05-20 03:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:49:12.853+03	2021-05-20 03:49:12.859+03	
4e9a1fa4-c8ca-7fba-1183-006ca1395405	2021-05-20 03:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:49:33.853+03	2021-05-20 03:49:33.863+03	
a266c073-98c2-8fea-edd8-22277bb943e8	2021-05-20 03:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:49:53.853+03	2021-05-20 03:49:53.865+03	
3cbbcd0c-40ba-1f76-c850-274f9147da85	2021-05-20 03:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:50:03.853+03	2021-05-20 03:50:03.863+03	
8115bb5a-7343-a8c7-7146-3d6da605c4ed	2021-05-20 07:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:03:44.853+03	2021-05-20 07:03:44.86+03	
7501f20c-4007-2939-b15d-a2577148b79f	2021-05-20 03:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:50:24.853+03	2021-05-20 03:50:24.861+03	
78bb8d5f-07dd-ab55-977b-3f5d47e1cb6a	2021-05-20 04:32:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:32:06.852+03	2021-05-20 04:32:06.861+03	
0db62cea-cde5-4c3a-3586-bcef9a0b15b9	2021-05-20 03:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:50:45.852+03	2021-05-20 03:50:45.862+03	
6ea1cc4e-eb7e-826d-0820-7c3d367f3fd3	2021-05-20 03:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:51:05.853+03	2021-05-20 03:51:05.86+03	
a1419d39-d466-ec4f-988a-b9e25d7b20cf	2021-05-20 04:32:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:32:26.852+03	2021-05-20 04:32:26.859+03	
52428917-9781-a24e-8410-1c354cc619b0	2021-05-20 03:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:51:27.853+03	2021-05-20 03:51:27.86+03	
2656a5b9-1ddc-af85-fb83-d7fdde50c639	2021-05-20 03:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:51:48.852+03	2021-05-20 03:51:48.858+03	
f2048d61-7c8f-3104-e5e2-c7ef7d5f796f	2021-05-20 04:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:32:47.852+03	2021-05-20 04:32:47.86+03	
2e2d32d6-0925-fd4b-8550-8af6c3ee4fa6	2021-05-20 03:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:52:08.853+03	2021-05-20 03:52:08.861+03	
e7a70e32-5ed7-7254-5beb-183f78134252	2021-05-20 04:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:44:55.853+03	2021-05-20 04:44:55.871+03	
f63cc19d-4d2f-1e6b-c702-6ea3f90f4787	2021-05-20 03:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:52:29.853+03	2021-05-20 03:52:29.864+03	
e46ac45d-ec3c-12b3-8774-a9e9cbdd1212	2021-05-20 03:52:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:52:49.853+03	2021-05-20 03:52:49.862+03	
59e09af5-d90e-bab8-1eb9-166663122f82	2021-05-20 04:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:45:15.853+03	2021-05-20 04:45:15.86+03	
3e5b5857-e899-7c58-4886-9162bbcc682e	2021-05-20 03:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:53:10.852+03	2021-05-20 03:53:10.862+03	
234089d6-34ce-6145-e990-26701e63e41c	2021-05-20 03:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:53:30.853+03	2021-05-20 03:53:30.86+03	
de0261fd-c994-251f-9849-8468e47b2c02	2021-05-20 04:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:45:25.853+03	2021-05-20 04:45:25.86+03	
ff68defc-4d80-1de8-c7a3-0a5a09a6e604	2021-05-20 03:53:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:53:51.853+03	2021-05-20 03:53:51.861+03	
1c1e3952-d632-1c34-612f-51ef8d3b4ef4	2021-05-20 03:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:54:13.852+03	2021-05-20 03:54:13.859+03	
eb0f704a-d870-b656-92da-359e5d598c92	2021-05-20 04:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:45:35.853+03	2021-05-20 04:45:35.86+03	
80689a81-9d08-9238-5513-f3b67684529d	2021-05-20 03:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:54:33.853+03	2021-05-20 03:54:33.859+03	
39dc2cf2-a7e9-139f-c20e-cfec07bcab49	2021-05-20 04:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:45:45.853+03	2021-05-20 04:45:45.859+03	
fb23b1da-8d7d-a18d-416c-185909983cf5	2021-05-20 04:45:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:45:56.852+03	2021-05-20 04:45:56.86+03	
c870c277-b53a-0af0-71ce-9d8353ac5ee6	2021-05-20 04:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:46:06.852+03	2021-05-20 04:46:06.859+03	
2ef20203-c2cb-3c6a-43b5-3acc9ca203e8	2021-05-20 04:46:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:46:16.852+03	2021-05-20 04:46:16.859+03	
7882d4c6-9c6e-773e-f0dc-6f3e77d726ec	2021-05-20 04:46:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:46:26.853+03	2021-05-20 04:46:26.862+03	
8431d9de-239f-951a-501a-f70aadbf71f1	2021-05-20 04:46:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:46:36.853+03	2021-05-20 04:46:36.861+03	
91f9c3d6-1b04-60e2-3d9c-6b2989f5f664	2021-05-20 04:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:46:47.853+03	2021-05-20 04:46:47.863+03	
2252e816-75f9-9aad-4a8b-d627fbf9d023	2021-05-20 04:46:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:46:57.853+03	2021-05-20 04:46:57.86+03	
0b1efdd6-3842-0f92-b75f-0c1295526613	2021-05-20 04:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:47:07.853+03	2021-05-20 04:47:07.861+03	
627351e4-4be3-c683-b0fe-c47d1230bacc	2021-05-20 04:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:47:17.853+03	2021-05-20 04:47:17.861+03	
753a1ab9-709c-8e66-2bcd-3af884b437f5	2021-05-20 04:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:47:28.852+03	2021-05-20 04:47:28.859+03	
0b4a8681-1a6b-a624-7c21-a3e08348759b	2021-05-20 04:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:47:38.852+03	2021-05-20 04:47:38.861+03	
886fe26e-6fd1-958e-6ac6-aa512315e416	2021-05-20 04:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:47:48.852+03	2021-05-20 04:47:48.859+03	
df65ff5c-289c-235e-098f-727f9160e0ff	2021-05-20 04:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:47:58.853+03	2021-05-20 04:47:58.861+03	
e5a307f2-9875-93e0-f96f-517c83eaad04	2021-05-20 04:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:48:08.853+03	2021-05-20 04:48:08.865+03	
df181a91-d23a-e464-1bdb-3e6215671eb9	2021-05-20 04:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:48:18.853+03	2021-05-20 04:48:18.864+03	
d2dad59c-ab72-73e8-fad5-a46e1e8c41d2	2021-05-20 04:48:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:48:28.853+03	2021-05-20 04:48:28.867+03	
8969545a-18ec-aaaf-ac53-5ac5b31cf966	2021-05-20 04:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:48:38.853+03	2021-05-20 04:48:38.86+03	
75d1f631-df22-b2ae-5db6-e094bb2e0d29	2021-05-20 04:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:48:48.853+03	2021-05-20 04:48:48.862+03	
d0457fec-79c5-571f-bf90-a3200270a5be	2021-05-20 04:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:48:58.853+03	2021-05-20 04:48:58.859+03	
7b8b3ab8-2544-6114-90cc-3885403cac92	2021-05-20 04:49:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:49:09.852+03	2021-05-20 04:49:09.859+03	
d7a2778e-95b0-7c15-18e7-80aa106d4f54	2021-05-20 04:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:49:19.853+03	2021-05-20 04:49:19.866+03	
f9cc0259-fed0-62cd-8a39-9b0b54f5f85a	2021-05-20 04:49:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:49:30.853+03	2021-05-20 04:49:30.86+03	
57fe7396-a602-7846-00b8-b596d44e9a5f	2021-05-20 04:49:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:49:40.853+03	2021-05-20 04:49:40.862+03	
c1a58964-9489-975d-dbc3-a27af0226940	2021-05-20 04:49:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:49:50.853+03	2021-05-20 04:49:50.86+03	
9df65bcf-d6aa-c37c-9844-638afbe9e93c	2021-05-20 04:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:50:00.853+03	2021-05-20 04:50:00.862+03	
84662f6b-0eb7-cf46-e23c-48b0199d4708	2021-05-20 04:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 04:50:00.853+03	2021-05-20 04:50:00.874+03	ERROR
e57d97ba-8374-0e51-83ab-388f2617f2b5	2021-05-20 04:50:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:50:11.854+03	2021-05-20 04:50:11.861+03	
f7e071de-5980-50f2-adb0-96cfbd8f33bf	2021-05-20 04:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:50:22.852+03	2021-05-20 04:50:22.864+03	
147c4ae9-8fe0-5fa6-7331-470fe435ea65	2021-05-20 04:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:50:32.852+03	2021-05-20 04:50:32.867+03	
54d70105-fbcb-dfed-f4a5-dcf3b91068bc	2021-05-20 04:50:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:50:42.852+03	2021-05-20 04:50:42.859+03	
bd27c24d-0e96-b2b0-6420-d1d781f50ad1	2021-05-20 04:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:50:52.852+03	2021-05-20 04:50:52.858+03	
b86c87e5-ed82-3972-b221-48f1eae1c509	2021-05-20 04:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:51:02.853+03	2021-05-20 04:51:02.873+03	
6eb18e49-59b4-f09f-f847-38582d865e77	2021-05-20 04:51:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:51:12.853+03	2021-05-20 04:51:12.862+03	
c6798154-0785-c613-4866-1fca0bb625e8	2021-05-20 04:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:51:23.853+03	2021-05-20 04:51:23.86+03	
9bd99cac-d471-35b1-21d0-a377ca825487	2021-05-20 04:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:51:33.853+03	2021-05-20 04:51:33.861+03	
f25b5e9c-5468-f052-8870-ff0b2af84288	2021-05-20 04:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:51:44.852+03	2021-05-20 04:51:44.86+03	
b29eb943-97bf-7d1b-ed72-6fd42f277d21	2021-05-20 04:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:51:54.853+03	2021-05-20 04:51:54.862+03	
492aee68-e075-411e-0bc5-61322f16af53	2021-05-20 04:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:52:05.852+03	2021-05-20 04:52:05.859+03	
7acd65f2-c016-dcb5-1cd4-592bc8d7605e	2021-05-20 04:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:52:15.852+03	2021-05-20 04:52:15.859+03	
31a12837-b62e-2f92-820e-2b77f65ef176	2021-05-20 04:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:52:25.853+03	2021-05-20 04:52:25.86+03	
991648c5-d230-6388-e000-7336a6949941	2021-05-20 04:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:52:36.853+03	2021-05-20 04:52:36.861+03	
16506dbd-3cdf-6c4c-9c47-48aac39a60b4	2021-05-20 04:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:52:46.853+03	2021-05-20 04:52:46.867+03	
d0f4bc86-e5ca-5214-fc9d-77d74a9e8dce	2021-05-20 03:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:50:34.853+03	2021-05-20 03:50:34.86+03	
53cb65eb-71ef-720e-f084-5f0a678f0fc8	2021-05-20 03:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:50:55.853+03	2021-05-20 03:50:55.861+03	
0deb0a9a-d0f0-20f4-a54a-654a61486c5a	2021-05-20 03:51:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:51:16.854+03	2021-05-20 03:51:16.862+03	
64f27bc8-5429-c213-ae2d-2b3b66edc2b4	2021-05-20 03:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:51:38.852+03	2021-05-20 03:51:38.858+03	
80622370-8a05-9364-2579-88bca8743794	2021-05-20 03:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:51:58.852+03	2021-05-20 03:51:58.859+03	
c87b580f-c32b-9368-142a-82d65d6fbceb	2021-05-20 03:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:52:19.853+03	2021-05-20 03:52:19.862+03	
dae9bc51-0003-a6d3-387c-6c1abff842f8	2021-05-20 03:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:52:39.853+03	2021-05-20 03:52:39.861+03	
56455797-fcd6-9993-360c-962022d0e377	2021-05-20 03:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:52:59.853+03	2021-05-20 03:52:59.861+03	
385d4a8e-d8bf-7699-207a-35c9850783cc	2021-05-20 03:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:53:20.853+03	2021-05-20 03:53:20.86+03	
14ad6556-d016-cb82-9e60-6bf6ed50a5f1	2021-05-20 03:53:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:53:41.853+03	2021-05-20 03:53:41.861+03	
72c9d640-de60-234f-90af-a98bcb92fe2d	2021-05-20 03:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:54:02.853+03	2021-05-20 03:54:02.859+03	
78aa5b58-759b-b2d7-d13e-2539ae98d724	2021-05-20 03:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:54:23.853+03	2021-05-20 03:54:23.866+03	
f570752e-81b5-672d-3bcd-60d17198dcec	2021-05-20 03:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:54:44.853+03	2021-05-20 03:54:44.861+03	
d99bc052-67f7-5284-2492-4b2db5be6111	2021-05-20 03:54:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:54:54.853+03	2021-05-20 03:54:54.868+03	
8f0c4c38-2d86-4c86-e315-1a1b243793d6	2021-05-20 03:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:55:04.853+03	2021-05-20 03:55:04.861+03	
587d0c3f-a0eb-8194-6976-4151f2690766	2021-05-20 03:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:55:14.853+03	2021-05-20 03:55:14.869+03	
5d620c65-5c6e-f69c-3aa2-a219e950c056	2021-05-20 03:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:55:25.852+03	2021-05-20 03:55:25.869+03	
81a5dde3-d99e-7b27-ecbd-2ba5d3d1c4e2	2021-05-20 03:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:55:35.852+03	2021-05-20 03:55:35.861+03	
0116fc0b-f855-d249-ed62-9140b4507276	2021-05-20 03:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:55:45.853+03	2021-05-20 03:55:45.862+03	
ba3504a3-1372-bd7f-a636-fa6cd6c05495	2021-05-20 03:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:55:55.853+03	2021-05-20 03:55:55.862+03	
659f6f28-abb5-ded9-36c0-e734751bd0ca	2021-05-20 03:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:56:05.853+03	2021-05-20 03:56:05.86+03	
df4b2a70-5b03-9bae-6dae-1a66200eaa75	2021-05-20 03:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:56:15.853+03	2021-05-20 03:56:15.861+03	
f7c22f18-b7f3-8da0-a2c2-5918b2085ddd	2021-05-20 03:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:56:26.853+03	2021-05-20 03:56:26.86+03	
e4e39503-9d74-bbeb-d0f4-b3b660702eda	2021-05-20 03:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:56:37.852+03	2021-05-20 03:56:37.874+03	
f2dfa3fe-6028-4d0c-9d1c-c8494d0b3008	2021-05-20 03:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:56:47.852+03	2021-05-20 03:56:47.859+03	
67f18156-3948-e956-6dad-249b99d6da28	2021-05-20 03:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:56:57.852+03	2021-05-20 03:56:57.863+03	
ecf8f3c0-96ef-30b8-485a-8479999c7747	2021-05-20 03:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:57:07.852+03	2021-05-20 03:57:07.859+03	
23703992-d785-b496-79d9-0b0aab0b1d8f	2021-05-20 03:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:57:17.852+03	2021-05-20 03:57:17.859+03	
55c2e368-dff7-0733-67e4-77154f058179	2021-05-20 03:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:57:27.853+03	2021-05-20 03:57:27.861+03	
34cf21d0-a74d-c98f-2a02-7b2957fce480	2021-05-20 03:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:57:37.853+03	2021-05-20 03:57:37.86+03	
bdb8d3c6-d8df-4667-e3a9-d3d4338568ab	2021-05-20 03:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:57:47.853+03	2021-05-20 03:57:47.86+03	
d84ffd02-0e64-ef11-a702-7660d68c46b5	2021-05-20 03:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:57:57.853+03	2021-05-20 03:57:57.865+03	
e30f9b89-3491-913c-9f5d-6a2428f3e9da	2021-05-20 03:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:58:07.853+03	2021-05-20 03:58:07.859+03	
dfa68f16-af47-d3d9-5ab6-33a597881fae	2021-05-20 03:58:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:58:18.853+03	2021-05-20 03:58:18.861+03	
654c4953-63dd-935a-8c1a-579821f1e5ed	2021-05-20 03:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:58:29.852+03	2021-05-20 03:58:29.86+03	
696cede7-6c43-a22f-1e9d-41c5ff1ee4b6	2021-05-20 03:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:58:39.852+03	2021-05-20 03:58:39.86+03	
9fbefaeb-2c6a-0319-4fe0-35bf064d4c76	2021-05-20 03:58:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:58:49.853+03	2021-05-20 03:58:49.86+03	
6bb50bfd-aeb5-8b79-d097-12639bfa2362	2021-05-20 03:58:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:58:59.853+03	2021-05-20 03:58:59.86+03	
988a6e2c-ca65-137b-fa58-56e26a89990c	2021-05-20 03:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:59:10.852+03	2021-05-20 03:59:10.859+03	
ae22f549-bae8-374d-48d6-e1d9c78139ee	2021-05-20 03:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:59:20.853+03	2021-05-20 03:59:20.859+03	
547af40f-202d-0f46-c8ee-e1a0c043264b	2021-05-20 03:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:59:30.853+03	2021-05-20 03:59:30.861+03	
71abcfe4-3772-ed9f-e540-826763c17d1a	2021-05-20 03:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:59:40.853+03	2021-05-20 03:59:40.867+03	
e703ae5c-0774-f8ec-3d57-136cb536720a	2021-05-20 03:59:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 03:59:50.853+03	2021-05-20 03:59:50.859+03	
7fa75908-a672-27d9-fe20-b961113966cf	2021-05-20 04:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 04:00:00.852+03	2021-05-20 04:00:00.857+03	ERROR
b8cf3ab5-bb14-de08-a7bb-ab01790a39dd	2021-05-20 04:00:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:00:01.853+03	2021-05-20 04:00:01.886+03	
43c7a4c7-155c-d502-00a1-4333b210ec83	2021-05-20 04:00:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:00:11.854+03	2021-05-20 04:00:11.863+03	
7ec6357a-2708-9c2d-119a-eb7e3dd44422	2021-05-20 04:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:00:22.853+03	2021-05-20 04:00:22.875+03	
becce81b-9ad4-66eb-c997-f369ff111a2c	2021-05-20 04:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:00:32.853+03	2021-05-20 04:00:32.864+03	
626a633a-8054-58fd-5d19-6401e1ddd7d6	2021-05-20 04:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:00:43.852+03	2021-05-20 04:00:43.864+03	
5fd4a4c1-11dc-7d99-ee46-a74a18434b88	2021-05-20 04:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:00:53.853+03	2021-05-20 04:00:53.871+03	
02fd1a86-724b-278f-fb53-945aa054c13d	2021-05-20 04:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:01:04.852+03	2021-05-20 04:01:04.859+03	
77c0acc9-dcb5-ff1c-3649-e6daafbb0cb0	2021-05-20 04:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:01:14.853+03	2021-05-20 04:01:14.875+03	
bb856810-1f0b-ad68-57ab-c21ffb3dd526	2021-05-20 04:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:01:24.853+03	2021-05-20 04:01:24.86+03	
3509032b-438c-5983-a817-b0315bcf368f	2021-05-20 04:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:01:34.853+03	2021-05-20 04:01:34.869+03	
5d4fd0fe-3ceb-94ff-b2f1-f4dae13b69a1	2021-05-20 04:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:01:44.853+03	2021-05-20 04:01:44.861+03	
4f0c125b-6202-449c-b825-84aa91a23bac	2021-05-20 04:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:01:54.853+03	2021-05-20 04:01:54.861+03	
c00ecf2f-aed8-a712-5c20-f89de2779e5d	2021-05-20 04:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:02:04.853+03	2021-05-20 04:02:04.913+03	
6ca98375-8a13-35cd-f20e-8a073274a8fc	2021-05-20 04:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:02:14.853+03	2021-05-20 04:02:14.861+03	
520e60e2-4047-6d4b-c652-2dbcc8a73413	2021-05-20 04:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:02:25.853+03	2021-05-20 04:02:25.862+03	
90e7cf12-6516-4140-2e74-230c690322c8	2021-05-20 04:02:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:02:36.854+03	2021-05-20 04:02:36.862+03	
7e3d638a-fa43-1e3f-f3bf-9bbb5ece9e12	2021-05-20 04:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:02:47.853+03	2021-05-20 04:02:47.861+03	
bf30b60b-0b1a-10b5-1f4e-4d3153d38b96	2021-05-20 04:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:02:57.853+03	2021-05-20 04:02:57.86+03	
b9f89296-6c3d-fdbf-ddb4-650ccb91a1c7	2021-05-20 04:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:03:07.853+03	2021-05-20 04:03:07.86+03	
7812280b-3520-6d93-2ea5-e87f9eb6c054	2021-05-20 10:32:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:32:46.854+03	2021-05-20 10:32:46.863+03	
5cd642ff-dce9-3bfb-3b64-a967db8d5412	2021-05-20 04:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:03:17.853+03	2021-05-20 04:03:17.86+03	
9c125faf-5191-49fa-2c9d-e7bc6da065df	2021-05-20 04:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:32:57.853+03	2021-05-20 04:32:57.859+03	
05e335c2-254e-4f86-d95c-0288d6ca3db0	2021-05-20 04:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:03:38.852+03	2021-05-20 04:03:38.861+03	
6a1c4b0d-103a-dd81-61ae-d207015e9915	2021-05-20 04:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:03:58.853+03	2021-05-20 04:03:58.859+03	
b5592913-a146-c4c4-7fd3-ec48a35fa4bf	2021-05-20 04:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:33:17.853+03	2021-05-20 04:33:17.859+03	
d79790fc-0b7f-24af-8df0-003cecfe08ad	2021-05-20 04:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:04:19.853+03	2021-05-20 04:04:19.86+03	
5ba11d2e-f16c-f468-1fc4-310633658fff	2021-05-20 04:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:04:39.853+03	2021-05-20 04:04:39.86+03	
98cdba71-04bd-97dd-f84d-38ceb224fbd8	2021-05-20 04:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:33:37.853+03	2021-05-20 04:33:37.868+03	
6eca7509-5078-77bd-9105-9916c1a214ee	2021-05-20 04:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:04:59.853+03	2021-05-20 04:04:59.862+03	
17488d6a-50db-a53c-f7eb-7ce317e19fa5	2021-05-20 04:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:05:19.853+03	2021-05-20 04:05:19.877+03	
312cd558-146f-8143-a770-0a62dc1d7ae4	2021-05-20 04:33:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:33:58.852+03	2021-05-20 04:33:58.86+03	
6cd10061-c433-bb9a-17ed-d6ac1d6dfd49	2021-05-20 04:05:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:05:40.852+03	2021-05-20 04:05:40.859+03	
9ea0d6cb-b2ea-994c-f640-87c5d778e197	2021-05-20 04:06:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:06:01.854+03	2021-05-20 04:06:01.863+03	
a6ea5e23-b163-b937-97f0-ea98b4567dc7	2021-05-20 04:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:34:18.852+03	2021-05-20 04:34:18.861+03	
5c0eff16-e3f5-67b6-095f-7d3514b1e0e5	2021-05-20 04:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:06:22.853+03	2021-05-20 04:06:22.86+03	
0b0fd45e-674a-f92a-064f-9717b35a0748	2021-05-20 04:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:06:43.853+03	2021-05-20 04:06:43.868+03	
c85335c8-37f3-2052-be65-cbb2f9b3b79b	2021-05-20 04:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:34:38.852+03	2021-05-20 04:34:38.86+03	
8f8c735e-4d2e-85a2-00c5-39c064419f40	2021-05-20 04:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:07:04.853+03	2021-05-20 04:07:04.862+03	
c29d93bb-573e-9df7-ff61-90362c69938d	2021-05-20 04:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:07:24.853+03	2021-05-20 04:07:24.861+03	
029d7faf-c538-f4ad-2cc3-70748e91e9ca	2021-05-20 04:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:34:58.852+03	2021-05-20 04:34:58.86+03	
b569eaba-db50-4770-9dc1-394765384e1f	2021-05-20 04:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:07:44.853+03	2021-05-20 04:07:44.862+03	
383f477f-7bdd-f2e2-0396-36a2001698f7	2021-05-20 04:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:08:05.852+03	2021-05-20 04:08:05.86+03	
e77565cc-6b6a-d06c-16bf-4b501c3f3a3e	2021-05-20 04:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:35:18.852+03	2021-05-20 04:35:18.86+03	
830e0d49-8717-bcba-9e33-99cf8768594a	2021-05-20 04:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:08:26.852+03	2021-05-20 04:08:26.86+03	
08dd8116-78c7-21f8-2ff0-eb2c63bab602	2021-05-20 04:08:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:08:36.852+03	2021-05-20 04:08:36.861+03	
3327c109-ae8e-4428-701b-56f46c437295	2021-05-20 04:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:35:38.853+03	2021-05-20 04:35:38.861+03	
b28c5545-1095-d405-4ff5-1cb89189ee1c	2021-05-20 04:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:08:56.852+03	2021-05-20 04:08:56.859+03	
38befbd9-9963-36ff-ce7e-f0f75ed79691	2021-05-20 04:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:09:16.853+03	2021-05-20 04:09:16.863+03	
acd76079-c7bf-a14d-3073-0911e8b9f6c0	2021-05-20 04:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:35:59.853+03	2021-05-20 04:35:59.859+03	
a0f7b8e1-39f1-5d5d-45fc-860d249176b6	2021-05-20 04:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:09:37.852+03	2021-05-20 04:09:37.86+03	
6984ac81-97fc-cd86-0d5b-8a0a5347cd71	2021-05-20 04:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:09:58.852+03	2021-05-20 04:09:58.86+03	
6a1e9693-eb01-f577-f37c-cec0036ce69b	2021-05-20 04:36:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:36:21.852+03	2021-05-20 04:36:21.868+03	
448fa214-9100-1a2d-e48b-73f4a047e205	2021-05-20 04:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:10:08.852+03	2021-05-20 04:10:08.861+03	
3f372eec-34d2-5cd7-5c2f-8b0604583947	2021-05-20 04:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:10:28.853+03	2021-05-20 04:10:28.859+03	
01454c49-804e-6707-f5f1-775481de91f8	2021-05-20 04:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:36:42.853+03	2021-05-20 04:36:42.864+03	
2b4b2dc3-5a51-ddc7-ad79-a1e5ae4a0a59	2021-05-20 04:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:10:50.852+03	2021-05-20 04:10:50.859+03	
d09366d6-bf10-6690-3005-61b559b058e5	2021-05-20 04:11:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:11:10.852+03	2021-05-20 04:11:10.859+03	
74bdf5ff-7f8a-0669-3ca8-9476579631df	2021-05-20 04:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:37:03.852+03	2021-05-20 04:37:03.858+03	
e691bc60-dc77-dfdf-a127-7809b5425529	2021-05-20 04:11:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:11:30.853+03	2021-05-20 04:11:30.862+03	
ee220fb2-2599-1c5b-b4a6-939673495a73	2021-05-20 04:11:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:11:51.853+03	2021-05-20 04:11:51.859+03	
748c8905-88d0-e0a5-6e63-d50640566a9f	2021-05-20 04:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:37:23.852+03	2021-05-20 04:37:23.859+03	
7de9559b-1883-033a-660b-ec91fc59ea90	2021-05-20 04:12:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:12:11.854+03	2021-05-20 04:12:11.862+03	
adfd5c57-e90c-118f-9b7e-5c723aaddbda	2021-05-20 04:12:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:12:32.853+03	2021-05-20 04:12:32.859+03	
5ac2e460-5497-fcf6-4377-6aa9543979b5	2021-05-20 04:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:37:43.853+03	2021-05-20 04:37:43.86+03	
9c0bfdcd-60fc-78b1-00de-5cf8d7fe0dc6	2021-05-20 04:38:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:38:03.854+03	2021-05-20 04:38:03.86+03	
134a8b80-52b0-cd20-f13c-f664315eeb24	2021-05-20 04:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:38:24.853+03	2021-05-20 04:38:24.859+03	
ae0aca15-eb64-db9f-001a-ad01757c6ee1	2021-05-20 04:38:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:38:46.852+03	2021-05-20 04:38:46.86+03	
af29a4f6-27fa-fbf3-1997-e6857102141f	2021-05-20 04:39:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:39:06.852+03	2021-05-20 04:39:06.859+03	
0a053201-fb0a-8367-7934-cae433273b70	2021-05-20 04:39:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:39:26.852+03	2021-05-20 04:39:26.861+03	
1a9e48f7-5a96-b282-8c98-ead4aafa5cd5	2021-05-20 04:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:39:47.852+03	2021-05-20 04:39:47.865+03	
6763ddf7-cee4-e306-78c2-8eb8aa336d9f	2021-05-20 04:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 04:40:00.853+03	2021-05-20 04:40:00.858+03	ERROR
a58245c7-8686-e562-35c4-ecdbc8cc8176	2021-05-20 04:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:40:17.852+03	2021-05-20 04:40:17.861+03	
e2fd9184-77eb-66a6-8140-b83f667064d8	2021-05-20 04:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:40:37.853+03	2021-05-20 04:40:37.861+03	
80649135-2c18-efd0-6489-3b8f5442d080	2021-05-20 04:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:40:58.853+03	2021-05-20 04:40:58.862+03	
03922de3-93cd-0b0d-735a-dac3237a74e8	2021-05-20 04:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:41:19.852+03	2021-05-20 04:41:19.858+03	
91b43c14-f995-bd33-e502-cabb7203881a	2021-05-20 04:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:41:39.853+03	2021-05-20 04:41:39.86+03	
6a4f790d-9616-7aa9-dbc0-fc0e2cfa1d9c	2021-05-20 04:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:42:00.853+03	2021-05-20 04:42:00.861+03	
4b16c37a-2a98-d75d-a03a-e0dde2d26c93	2021-05-20 04:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:42:20.853+03	2021-05-20 04:42:20.871+03	
38cf02ca-e873-047b-0c61-3ff8f057257b	2021-05-20 04:42:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:42:41.852+03	2021-05-20 04:42:41.859+03	
22d9af6a-50e8-82e7-55cb-a5696bbac806	2021-05-20 04:43:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:43:01.853+03	2021-05-20 04:43:01.861+03	
383fa230-eaf3-6687-caa4-4182b5735442	2021-05-20 04:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:43:22.853+03	2021-05-20 04:43:22.862+03	
56970081-8389-e432-070a-ef29ff7f856a	2021-05-20 04:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:43:42.853+03	2021-05-20 04:43:42.861+03	
72470178-d18d-4768-581c-e16285875ecc	2021-05-20 04:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:44:03.853+03	2021-05-20 04:44:04.571+03	
40e37766-9aea-bfde-4cdd-e537a51445b8	2021-05-20 07:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:03:54.853+03	2021-05-20 07:03:54.86+03	
b7e127b0-acd1-07c2-53d9-388a935ef71f	2021-05-20 04:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:03:27.853+03	2021-05-20 04:03:27.866+03	
e3bb289c-ba76-8ea9-46e4-6a90f1baec65	2021-05-20 04:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:33:07.853+03	2021-05-20 04:33:07.86+03	
df3b4d79-7a40-a511-1948-d72861bc8672	2021-05-20 04:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:03:48.853+03	2021-05-20 04:03:48.865+03	
4d084a89-aade-0414-858b-a0d2bd53badc	2021-05-20 04:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:04:08.853+03	2021-05-20 04:04:08.859+03	
0f99cec6-57d7-43b2-ce0f-2eb5b5c4ba6b	2021-05-20 04:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:33:27.853+03	2021-05-20 04:33:27.86+03	
c7908d73-e84d-3ccb-a169-66f8a24d454c	2021-05-20 04:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:04:29.853+03	2021-05-20 04:04:29.862+03	
f77048b4-eea8-4ac1-6f0e-37523c4c1508	2021-05-20 04:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:04:49.853+03	2021-05-20 04:04:49.86+03	
eba50363-4011-0a25-4165-0d03f7bcea0e	2021-05-20 04:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:33:47.853+03	2021-05-20 04:33:47.859+03	
c1482a3d-596a-7a95-db3a-3aed550c4cfe	2021-05-20 04:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:05:09.853+03	2021-05-20 04:05:09.861+03	
6d1126e9-2bed-bbb0-4ff9-dddbd9790e16	2021-05-20 04:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:05:29.853+03	2021-05-20 04:05:29.86+03	
c1ec9b9d-12ea-f70f-1014-be4a76af9680	2021-05-20 04:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:34:08.852+03	2021-05-20 04:34:08.861+03	
958b6ae2-33dd-8b29-21e6-273fc50eadcb	2021-05-20 04:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:05:50.853+03	2021-05-20 04:05:50.861+03	
4a5f7ca5-8798-0cb8-c602-b9e88ecc894a	2021-05-20 04:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:06:12.853+03	2021-05-20 04:06:12.86+03	
cb013867-f1d2-03fc-b547-80da2e0a96b0	2021-05-20 04:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:34:28.852+03	2021-05-20 04:34:28.858+03	
bbda291b-12ba-935c-701e-95f657663821	2021-05-20 04:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:06:33.852+03	2021-05-20 04:06:33.871+03	
b368f7b4-0521-94e1-0092-4c3d0b7fe296	2021-05-20 04:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:06:54.853+03	2021-05-20 04:06:54.861+03	
95669535-aa42-9dfd-2ba4-54ab472d69f8	2021-05-20 04:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:34:48.852+03	2021-05-20 04:34:48.863+03	
102283f5-c41b-c858-19c0-30b0dfe74a68	2021-05-20 04:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:07:14.853+03	2021-05-20 04:07:14.864+03	
b44faccf-9098-e938-cd61-d5656c535a8c	2021-05-20 04:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:07:34.853+03	2021-05-20 04:07:34.861+03	
1d26b9a1-f6f7-3b37-809c-01cc24018d2c	2021-05-20 04:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:35:08.852+03	2021-05-20 04:35:08.867+03	
190d9fe9-3d4f-489b-737d-c4f50405b4e4	2021-05-20 04:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:07:54.853+03	2021-05-20 04:07:54.862+03	
fed1a7aa-240f-b872-2b45-f36ba7a4249c	2021-05-20 04:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:08:15.853+03	2021-05-20 04:08:15.859+03	
59e247c5-ed2d-15c4-43a6-7c53dd3ef55a	2021-05-20 04:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:35:28.852+03	2021-05-20 04:35:28.859+03	
f7199984-f9fd-6532-dc6f-57be506cfdb0	2021-05-20 04:08:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:08:46.852+03	2021-05-20 04:08:46.858+03	
06dea2e9-9ca4-70d0-4518-a63bf8cfd0b5	2021-05-20 04:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:09:06.853+03	2021-05-20 04:09:06.86+03	
19b8f8db-838f-c7b4-2391-1972e7acd085	2021-05-20 04:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:35:48.853+03	2021-05-20 04:35:48.86+03	
9b8f21c6-13b9-fb6c-10cc-29e5a37da959	2021-05-20 04:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:09:27.852+03	2021-05-20 04:09:27.86+03	
ec4eaa8b-0e95-6ec0-3981-d4cdf4ff2cf6	2021-05-20 04:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:09:47.853+03	2021-05-20 04:09:47.861+03	
ec63adca-531f-8b5d-7ff7-fa024206fcda	2021-05-20 04:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:36:10.853+03	2021-05-20 04:36:10.859+03	
a65287e4-67e0-ddbd-b931-146ba65b0068	2021-05-20 04:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 04:10:00.852+03	2021-05-20 04:10:00.861+03	ERROR
b0441206-a01d-b452-874e-38aba3ead75f	2021-05-20 04:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:10:18.853+03	2021-05-20 04:10:18.859+03	
4be9bc3d-a1ca-f576-67f4-229465540cf4	2021-05-20 04:36:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:36:31.853+03	2021-05-20 04:36:31.872+03	
377d9d3b-9c2c-04cc-d6bf-9f64ac3f5050	2021-05-20 04:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:10:39.853+03	2021-05-20 04:10:39.859+03	
5fa3dff7-9e0c-46cc-6020-ffef94376598	2021-05-20 04:11:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:11:00.852+03	2021-05-20 04:11:00.86+03	
7e0af5bc-0964-27de-fb0d-3cfd58865cb4	2021-05-20 04:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:36:52.853+03	2021-05-20 04:36:52.861+03	
aac7bc46-9406-8fab-5bd8-898a3ded9b88	2021-05-20 04:11:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:11:20.853+03	2021-05-20 04:11:20.859+03	
b5cb9831-e527-9089-db94-91eab28839a9	2021-05-20 04:11:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:11:41.853+03	2021-05-20 04:11:41.861+03	
e4cbf000-ca10-cba7-0649-11e7e9f7ad49	2021-05-20 04:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:37:13.852+03	2021-05-20 04:37:13.875+03	
81bc150d-7f05-9597-66e5-f37a1675363c	2021-05-20 04:12:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:12:01.853+03	2021-05-20 04:12:01.86+03	
03d1837e-5324-0c62-e698-ba7e044ae42b	2021-05-20 04:12:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:12:21.854+03	2021-05-20 04:12:21.861+03	
1289ba00-7420-c907-4c83-38ba1ace3d59	2021-05-20 04:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:37:33.853+03	2021-05-20 04:37:33.86+03	
efb5c4ab-4a42-c21c-d2e0-7c980ebb271e	2021-05-20 04:12:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:12:43.852+03	2021-05-20 04:12:43.859+03	
fd2564d5-1f4c-0183-ed16-33bb77798dde	2021-05-20 04:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:37:53.853+03	2021-05-20 04:37:53.86+03	
9537158a-98ac-60a1-d566-0096e992737c	2021-05-20 04:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:38:14.853+03	2021-05-20 04:38:14.861+03	
d0f1409d-861c-ac04-6bee-40e145b756e0	2021-05-20 04:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:38:35.853+03	2021-05-20 04:38:35.861+03	
599f2003-8eb8-87a3-60c5-048720f88470	2021-05-20 04:38:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:38:56.852+03	2021-05-20 04:38:56.859+03	
61b8394d-2e94-8f29-a51b-6049267a8bee	2021-05-20 04:39:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:39:16.852+03	2021-05-20 04:39:16.864+03	
f37edf70-4e69-4a90-22a7-b9f1030fc0f2	2021-05-20 04:39:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:39:36.854+03	2021-05-20 04:39:36.875+03	
4148e466-9c3d-7581-6dd0-e21fb4e08519	2021-05-20 04:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:39:57.852+03	2021-05-20 04:39:57.867+03	
6c1dc8d5-f0cf-7ecb-0235-9796a6d32248	2021-05-20 04:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:40:07.852+03	2021-05-20 04:40:07.86+03	
6848dde1-eaf9-ed51-7a99-f67b3f780acc	2021-05-20 04:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:40:27.852+03	2021-05-20 04:40:27.861+03	
f37cd073-4bc8-9828-19fd-34a356ae9844	2021-05-20 04:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:40:48.852+03	2021-05-20 04:40:48.859+03	
f653fa1b-8fbf-3e53-7260-f4480420648a	2021-05-20 04:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:41:08.853+03	2021-05-20 04:41:08.898+03	
80a25bb8-4817-80de-3c97-402b644808e6	2021-05-20 04:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:41:29.852+03	2021-05-20 04:41:29.859+03	
e1f963af-ba8f-5de7-ab74-02540cae60b2	2021-05-20 04:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:41:49.853+03	2021-05-20 04:41:49.86+03	
150eec8b-2700-97af-ffc7-c835b498d715	2021-05-20 04:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:42:10.853+03	2021-05-20 04:42:10.862+03	
1ba84641-eccb-01ca-841a-26dcd3304b25	2021-05-20 04:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:42:30.853+03	2021-05-20 04:42:30.861+03	
d6063728-6f11-5b48-a2cb-2407f9d9b491	2021-05-20 04:42:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:42:51.852+03	2021-05-20 04:42:51.877+03	
7dda8df0-70fa-1234-2812-0bc85e313211	2021-05-20 04:43:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:43:11.854+03	2021-05-20 04:43:11.871+03	
f6ba69fb-70bb-0200-2131-149fefa78a79	2021-05-20 04:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:43:32.853+03	2021-05-20 04:43:32.86+03	
3d6dee01-d450-233b-6b73-67d1d9e1523c	2021-05-20 04:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:43:52.853+03	2021-05-20 04:43:52.872+03	
39644df2-e37d-6c2b-b016-26f998865915	2021-05-20 04:44:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:44:14.853+03	2021-05-20 04:44:14.86+03	
368a3a27-1b12-e91f-432f-d669402adc1f	2021-05-20 04:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:44:35.853+03	2021-05-20 04:44:35.874+03	
a34ac11c-ba14-cacc-2a3d-bc206b5d674d	2021-05-20 20:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:21:44.853+03	2021-05-20 20:21:44.869+03	
eb1eb29d-555e-842f-881a-4c7cf55abf8c	2021-05-20 04:52:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:52:56.853+03	2021-05-20 04:52:56.861+03	
5d357861-86ca-24a9-dfb2-bb3385347633	2021-05-20 07:04:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:04:04.853+03	2021-05-20 07:04:04.861+03	
3d658498-9788-a6e5-f75f-f72111cd425e	2021-05-20 04:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:53:17.853+03	2021-05-20 04:53:17.86+03	
fa44c6d2-9baf-5b7f-358c-8b7d7e231510	2021-05-20 04:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:53:38.852+03	2021-05-20 04:53:38.862+03	
fa5f4c8b-c414-aa9c-4ee2-433118e7c5a4	2021-05-20 07:04:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:04:24.853+03	2021-05-20 07:04:24.863+03	
8806a7a2-bb3e-ba9e-9d88-6979fcc3b3aa	2021-05-20 04:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:53:58.852+03	2021-05-20 04:53:58.859+03	
e6b1f46a-0152-fb55-6352-217fa108a15d	2021-05-20 04:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:54:18.852+03	2021-05-20 04:54:18.862+03	
6c914e08-ffc3-7f12-cdb7-6207f7a722ab	2021-05-20 07:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:04:44.853+03	2021-05-20 07:04:44.86+03	
fb521f47-59be-c8b9-6de2-4e3fa5ba7586	2021-05-20 04:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:54:38.853+03	2021-05-20 04:54:38.87+03	
10c37193-f786-0361-1eea-4a84052fb0a4	2021-05-20 04:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:54:59.853+03	2021-05-20 04:54:59.859+03	
32ef7073-0414-ce39-f5cb-7db8ddc309dc	2021-05-20 07:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:05:05.853+03	2021-05-20 07:05:05.861+03	
539376e7-8204-a43b-6db2-473f172afbee	2021-05-20 04:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:55:19.853+03	2021-05-20 04:55:19.859+03	
6fab613e-251b-c63d-69df-f2a69efc123b	2021-05-20 04:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:55:40.852+03	2021-05-20 04:55:40.859+03	
2ee39bf7-eec1-e088-1315-7ce9b6852bfc	2021-05-20 07:05:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:05:26.853+03	2021-05-20 07:05:26.861+03	
66633375-f3c3-06a9-2702-cb3fb24aea5f	2021-05-20 04:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:56:00.853+03	2021-05-20 04:56:00.86+03	
59722c4c-6d11-7189-7593-ef4bb0201e12	2021-05-20 04:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:56:20.853+03	2021-05-20 04:56:20.859+03	
51e3778e-3b8c-9c97-21d0-a5d04aa51f43	2021-05-20 07:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:05:47.853+03	2021-05-20 07:05:47.86+03	
712a1000-ea50-c143-050e-5566f0e7200a	2021-05-20 04:56:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:56:41.852+03	2021-05-20 04:56:41.858+03	
70eb9cc0-631d-2913-9067-7109a8ba8287	2021-05-20 04:57:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:57:01.854+03	2021-05-20 04:57:01.876+03	
81f2ecb1-eac8-1eaa-3483-f46a291b399a	2021-05-20 07:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:06:07.853+03	2021-05-20 07:06:07.861+03	
1c6442a9-c548-8436-a889-63f5f63873fc	2021-05-20 04:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:57:22.853+03	2021-05-20 04:57:22.877+03	
899a0ccc-58b5-f281-5b2c-8727acb64976	2021-05-20 04:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:57:42.853+03	2021-05-20 04:57:42.863+03	
42f34082-2028-b0d3-41c4-9dd5e2f0a0b3	2021-05-20 04:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:58:02.853+03	2021-05-20 04:58:02.861+03	
1da5f486-b978-2743-791d-76d59b923b10	2021-05-20 04:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:58:23.852+03	2021-05-20 04:58:23.858+03	
a7144f02-f7cf-451c-d39b-adfa4788111c	2021-05-20 04:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:58:44.853+03	2021-05-20 04:58:44.859+03	
570c0382-11ee-1b25-1cd4-99c6f936afea	2021-05-20 04:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:59:05.853+03	2021-05-20 04:59:05.862+03	
4296c3da-c6e6-ee28-0f90-86381b54ef83	2021-05-20 04:59:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:59:26.852+03	2021-05-20 04:59:26.861+03	
ff9a3c67-2444-bd21-a04a-36cf38ec0c48	2021-05-20 04:59:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:59:46.852+03	2021-05-20 04:59:46.86+03	
da1d451c-ae14-fbb9-0297-19a8132533f1	2021-05-20 05:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 05:00:00.853+03	2021-05-20 05:00:00.861+03	ERROR
d7f037a4-47a7-85f8-98df-236971f7f370	2021-05-20 05:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:00:17.853+03	2021-05-20 05:00:17.861+03	
af14dc71-28dd-b929-23fe-f0dc1b531c1e	2021-05-20 05:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:00:37.853+03	2021-05-20 05:00:37.859+03	
d57b6685-91b8-9a12-606e-954b4e3bc499	2021-05-20 05:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:00:58.852+03	2021-05-20 05:00:58.86+03	
87c243e5-2c9a-2665-7e3f-8f573fa8ff94	2021-05-20 05:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:01:19.853+03	2021-05-20 05:01:19.861+03	
8adb7001-ad52-bf07-bec5-3f000324abea	2021-05-20 05:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:01:40.852+03	2021-05-20 05:01:40.859+03	
ae74ecd7-5ba7-f1a2-3123-9f651833a06c	2021-05-20 05:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:02:00.853+03	2021-05-20 05:02:00.863+03	
50ffed7d-f7f7-3fa9-7bfe-fa7c8db2aa8b	2021-05-20 05:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:02:22.853+03	2021-05-20 05:02:22.862+03	
ff31f1d6-9c46-dfbc-15b7-1f70b35d90fa	2021-05-20 05:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:02:42.853+03	2021-05-20 05:02:42.862+03	
7603b366-ea9b-cfdb-e611-c3051822c89c	2021-05-20 05:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:03:03.853+03	2021-05-20 05:03:03.86+03	
7259b381-38c8-9ecc-3b96-aa89d613b570	2021-05-20 05:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:03:24.853+03	2021-05-20 05:03:24.882+03	
7b676701-848e-9b65-8a02-bacbb5314df6	2021-05-20 05:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:03:44.853+03	2021-05-20 05:03:44.861+03	
a7b7fa3c-e0ec-efec-2805-2ab0b5f20ac3	2021-05-20 05:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:04:05.853+03	2021-05-20 05:04:05.861+03	
e89f97ef-c1cf-d03c-fb9a-dd928aabca63	2021-05-20 05:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:04:27.853+03	2021-05-20 05:04:27.875+03	
4cd03c22-1457-8a30-37c1-dd714802a8d4	2021-05-20 05:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:04:48.852+03	2021-05-20 05:04:48.859+03	
e7952a98-be3e-fc04-46ca-fb82c9bc0686	2021-05-20 05:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:05:09.852+03	2021-05-20 05:05:09.872+03	
b9051309-7631-416d-7818-2ff6ca50164c	2021-05-20 05:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:05:30.852+03	2021-05-20 05:05:30.859+03	
4c5d97d7-e96a-38dd-ea24-e37356c5e1bc	2021-05-20 05:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:05:50.853+03	2021-05-20 05:05:50.871+03	
0b70d7ba-3406-78f7-93a1-bdd5d3962c0b	2021-05-20 05:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:06:10.853+03	2021-05-20 05:06:10.86+03	
8307f0ed-ac84-26ba-805d-9d451ceb206d	2021-05-20 05:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:06:30.853+03	2021-05-20 05:06:30.87+03	
b7d564be-3335-0f1f-33da-37f25269d18e	2021-05-20 05:06:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:06:51.852+03	2021-05-20 05:06:51.86+03	
c296f190-3315-7b7d-a187-14de48da1313	2021-05-20 05:07:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:07:11.852+03	2021-05-20 05:07:11.859+03	
cbab90bb-9abf-4d0f-de8a-d7fa53546b49	2021-05-20 05:07:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:07:31.853+03	2021-05-20 05:07:31.861+03	
327c8a6e-bd17-d567-096d-35ecec76100a	2021-05-20 05:07:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:07:51.853+03	2021-05-20 05:07:51.86+03	
a49dd8cf-4cca-2af7-de0a-407a2464ca40	2021-05-20 05:08:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:08:11.853+03	2021-05-20 05:08:11.875+03	
7841e0a2-2046-e0b7-441f-3fedde474a02	2021-05-20 05:08:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:08:31.853+03	2021-05-20 05:08:31.865+03	
23c13677-9e19-27c0-e1cb-3bb9eb57f135	2021-05-20 05:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:08:52.852+03	2021-05-20 05:08:52.954+03	
acc152d2-09c2-375d-21a7-6a396811ed96	2021-05-20 05:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:09:12.852+03	2021-05-20 05:09:12.863+03	
59cea75c-8fa7-51cb-8626-81ca052c8820	2021-05-20 05:09:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:09:32.852+03	2021-05-20 05:09:32.872+03	
7bb4d7ce-76a0-430d-142a-ab6938dcc515	2021-05-20 05:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 05:10:00.853+03	2021-05-20 05:10:00.859+03	ERROR
09fed99d-c600-96e8-eda9-e6e4a7f6c0c4	2021-05-20 05:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:10:13.853+03	2021-05-20 05:10:13.859+03	
8a9ac0e1-f593-6a65-31dd-cda710f0d66a	2021-05-20 05:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:10:34.853+03	2021-05-20 05:10:34.861+03	
69f345c7-3b18-fd04-b00a-6dd3492d55a1	2021-05-20 05:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:10:55.852+03	2021-05-20 05:10:55.86+03	
0e82f6db-4fa9-a5a6-ccf5-080561a3ef56	2021-05-20 05:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:11:15.853+03	2021-05-20 05:11:15.86+03	
7ba63126-aced-3375-84b4-3a2d0150bffb	2021-05-20 05:11:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:11:36.853+03	2021-05-20 05:11:36.859+03	
2fa103eb-edfb-ec7d-5084-e3e785c307f0	2021-05-20 04:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:53:07.852+03	2021-05-20 04:53:07.86+03	
7ed03408-6282-cf21-4ce8-6cd6f4c9c55d	2021-05-20 04:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:53:28.852+03	2021-05-20 04:53:28.859+03	
9c88d2a8-1537-6169-999f-38cf963e6b44	2021-05-20 04:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:53:48.852+03	2021-05-20 04:53:48.86+03	
8ce81088-2fc6-fe16-62e8-cfc4f647bfc9	2021-05-20 04:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:54:08.852+03	2021-05-20 04:54:08.86+03	
c5b1245f-132f-48e1-de21-ce89cc5e1efb	2021-05-20 04:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:54:28.853+03	2021-05-20 04:54:28.86+03	
9821e4f7-3204-2a05-fba5-7acbcd7cee20	2021-05-20 04:54:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:54:49.853+03	2021-05-20 04:54:49.859+03	
ac9a9bd6-b1b0-440a-e253-fdf00b291baf	2021-05-20 04:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:55:09.853+03	2021-05-20 04:55:09.859+03	
cb61a295-32d8-f0c9-f95e-14815dd5a823	2021-05-20 04:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:55:29.853+03	2021-05-20 04:55:29.863+03	
87d4dca2-cb51-d66c-dddb-b29debe185e0	2021-05-20 04:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:55:50.853+03	2021-05-20 04:55:50.859+03	
5ab79290-645d-cec7-b248-ef92e0397c62	2021-05-20 04:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:56:10.853+03	2021-05-20 04:56:10.862+03	
b57186a3-18f1-a007-5a1f-e29011eb538f	2021-05-20 04:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:56:30.853+03	2021-05-20 04:56:30.86+03	
4db99a45-65fd-feab-ae43-e9142b51247c	2021-05-20 04:56:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:56:51.853+03	2021-05-20 04:56:51.868+03	
7de8be6d-7329-718f-f09f-3f41ed83e272	2021-05-20 04:57:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:57:12.852+03	2021-05-20 04:57:12.859+03	
7263feb9-c026-2b6c-be96-9107fee112d9	2021-05-20 04:57:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:57:32.853+03	2021-05-20 04:57:32.872+03	
7e357ed3-d527-c9a6-c455-6b980de34049	2021-05-20 04:57:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:57:52.853+03	2021-05-20 04:57:52.872+03	
55034ba7-be44-bc93-e071-05c92ba7fa42	2021-05-20 04:58:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:58:12.853+03	2021-05-20 04:58:12.859+03	
18c35133-f7cd-0432-0e7d-4dc96ddc4192	2021-05-20 04:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:58:33.853+03	2021-05-20 04:58:33.861+03	
6027f27b-21c4-856f-a7c1-e3c681400cf5	2021-05-20 04:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:58:54.853+03	2021-05-20 04:58:54.859+03	
d9bbd0e6-15ae-268d-ec07-8788bbb2b4c5	2021-05-20 04:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:59:15.853+03	2021-05-20 04:59:15.862+03	
e64b45a0-38ec-3156-95d8-68a649ceb9c3	2021-05-20 04:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:59:36.852+03	2021-05-20 04:59:36.859+03	
a42a2e81-7c63-19d7-71e7-50e6604aa489	2021-05-20 04:59:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 04:59:56.852+03	2021-05-20 04:59:56.86+03	
c9643902-9e7c-22c3-7cc7-8b5cd9633418	2021-05-20 05:00:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:00:06.853+03	2021-05-20 05:00:06.871+03	
c0904273-238a-a6b6-de45-895e25ea2f1f	2021-05-20 05:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:00:27.853+03	2021-05-20 05:00:27.862+03	
f0683efd-596c-c28c-7527-727905d9b56c	2021-05-20 05:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:00:48.852+03	2021-05-20 05:00:48.861+03	
caa0acf5-3b3e-ea5c-56db-7371bffa87ff	2021-05-20 05:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:01:08.853+03	2021-05-20 05:01:08.861+03	
12a5d1dc-fd60-000f-fd04-2e53da4095f4	2021-05-20 05:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:01:29.853+03	2021-05-20 05:01:29.86+03	
390f4bf5-4e68-2013-8523-d60d654d0d15	2021-05-20 05:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:01:50.852+03	2021-05-20 05:01:50.873+03	
54100bd5-2126-8217-cf40-08905ab6b4a6	2021-05-20 05:02:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:02:11.854+03	2021-05-20 05:02:11.861+03	
8a96f6e6-da39-87b3-d76b-5b8165703246	2021-05-20 05:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:02:32.853+03	2021-05-20 05:02:32.861+03	
182308b5-0a31-71a0-e22b-bbb6d8b97f47	2021-05-20 05:02:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:02:53.852+03	2021-05-20 05:02:53.859+03	
0bb7b070-27c8-9f02-f594-98d0a1cc8a2e	2021-05-20 05:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:03:14.852+03	2021-05-20 05:03:14.859+03	
43f7c428-d0f1-6945-357d-667928f6ba1d	2021-05-20 05:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:03:34.853+03	2021-05-20 05:03:34.86+03	
89f44ec7-8cbe-5d0f-a593-e304cb30a13c	2021-05-20 05:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:03:55.852+03	2021-05-20 05:03:55.861+03	
7fdb752f-e0ba-4b0a-596a-8294656be9b2	2021-05-20 05:04:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:04:16.853+03	2021-05-20 05:04:16.859+03	
3a9bf9bc-b34f-011f-bdc0-cc58d272c87f	2021-05-20 05:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:04:38.852+03	2021-05-20 05:04:38.859+03	
0dec9d5e-71b8-6da5-be61-7665f2c5e4c0	2021-05-20 05:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:04:58.853+03	2021-05-20 05:04:58.86+03	
760eaf34-e46d-c057-ccd2-841d50d2b710	2021-05-20 05:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:05:19.853+03	2021-05-20 05:05:19.86+03	
a35f44ef-bd56-0445-1fc4-4961d845f380	2021-05-20 05:05:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:05:40.852+03	2021-05-20 05:05:40.859+03	
6c779aeb-1773-c497-441a-d4c319d6852e	2021-05-20 05:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:06:00.853+03	2021-05-20 05:06:00.877+03	
22cbf951-aa75-fc95-b853-c099687c811a	2021-05-20 05:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:06:20.853+03	2021-05-20 05:06:20.859+03	
9e6b1014-311b-5f8e-dc6e-714e70bc5d89	2021-05-20 05:06:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:06:41.852+03	2021-05-20 05:06:41.869+03	
2959d785-01b0-85ea-a082-3564ddab21b0	2021-05-20 05:07:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:07:01.852+03	2021-05-20 05:07:01.869+03	
35f14c72-16db-0fca-0486-7b1afbc88fd6	2021-05-20 05:07:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:07:21.853+03	2021-05-20 05:07:21.859+03	
69e127a5-6b31-1767-98ec-37f78f1e98a6	2021-05-20 05:07:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:07:41.853+03	2021-05-20 05:07:41.866+03	
242727be-6150-9635-dfe0-7bf64f22b9db	2021-05-20 05:08:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:08:01.853+03	2021-05-20 05:08:01.86+03	
c736b7b5-1797-e3d1-c61d-f8ec5f974818	2021-05-20 05:08:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:08:21.853+03	2021-05-20 05:08:21.871+03	
6116e338-078c-4903-5356-a35c1a9a40bb	2021-05-20 05:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:08:42.852+03	2021-05-20 05:08:42.858+03	
a09bfd39-96af-2b56-c2c6-d1102f266931	2021-05-20 05:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:09:02.852+03	2021-05-20 05:09:02.863+03	
a57f13bb-352c-f809-c157-0d01c0130e6a	2021-05-20 05:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:09:22.852+03	2021-05-20 05:09:22.861+03	
b581046b-3fea-9972-f7d3-925bfa792287	2021-05-20 05:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:09:42.852+03	2021-05-20 05:09:42.862+03	
fa594e7d-9d2a-3d42-51ac-802eb90cbb93	2021-05-20 05:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:09:52.853+03	2021-05-20 05:09:52.86+03	
4ad7a6ec-d4ca-10e0-51d6-bff5b933b425	2021-05-20 05:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:10:03.852+03	2021-05-20 05:10:03.861+03	
988e9f34-2652-1b60-2e7b-6d284fd885d1	2021-05-20 05:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:10:24.853+03	2021-05-20 05:10:24.86+03	
5f4e80a2-9ce5-0859-b6c1-7d918ad14c44	2021-05-20 05:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:10:44.853+03	2021-05-20 05:10:44.859+03	
2865cfae-f3c0-d74e-84c6-5e8177dc8764	2021-05-20 05:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:11:05.853+03	2021-05-20 05:11:05.867+03	
7478753f-ad0f-5a6a-241b-cf2be80ab962	2021-05-20 05:11:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:11:26.853+03	2021-05-20 05:11:26.859+03	
dcd79cdc-b7c5-1c2c-e719-5e08234b41b0	2021-05-20 05:11:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:11:46.853+03	2021-05-20 05:11:46.861+03	
f72ee7bf-e3cd-fd46-4619-e430acca4dbf	2021-05-20 05:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:11:57.853+03	2021-05-20 05:11:57.86+03	
e7fc5196-faa0-7353-b975-359938f41a18	2021-05-20 05:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:12:07.853+03	2021-05-20 05:12:07.86+03	
045c4d9b-7273-90b2-6a24-2b7d4d5579ee	2021-05-20 05:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:12:17.853+03	2021-05-20 05:12:17.859+03	
c5add2ff-cf2f-1189-253d-66752f147515	2021-05-20 05:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:12:27.853+03	2021-05-20 05:12:27.86+03	
ba1ff73b-0b4c-6daa-1adf-2e4a7fb2d36d	2021-05-20 05:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:12:38.852+03	2021-05-20 05:12:38.86+03	
14f08ac3-9228-cd25-acb9-0559a8e23b04	2021-05-20 05:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:12:48.852+03	2021-05-20 05:12:48.859+03	
94c348b9-0ca7-ecd6-bfb5-2fbc403258fc	2021-05-20 05:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:12:58.853+03	2021-05-20 05:12:58.863+03	
5dd02904-dc0c-f1c0-57ed-526973244cd2	2021-05-20 05:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:13:20.853+03	2021-05-20 05:13:20.859+03	
628b80e8-e6d8-b1ec-c340-a7dee8298a3d	2021-05-20 05:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:13:41.852+03	2021-05-20 05:13:41.859+03	
b97fd328-bdb5-7fe2-811d-68b9505905e6	2021-05-20 05:14:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:14:01.853+03	2021-05-20 05:14:01.876+03	
0e74de0e-9160-df27-1d6f-e5eb744a70bb	2021-05-20 05:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:14:22.853+03	2021-05-20 05:14:22.87+03	
bedacf93-2fdd-9e5b-3fc8-789d89997663	2021-05-20 05:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:14:42.853+03	2021-05-20 05:14:42.86+03	
9d65d19b-7d89-7331-6692-c0f3fe5bb40d	2021-05-20 05:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:15:03.852+03	2021-05-20 05:15:03.861+03	
926ee2da-15b8-63d7-3a26-a06db5b8f6db	2021-05-20 05:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:15:23.852+03	2021-05-20 05:15:23.868+03	
b7031c7e-23e4-4f4a-a430-4dc47b3b83a8	2021-05-20 05:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:15:43.852+03	2021-05-20 05:15:43.86+03	
9a94c5e8-7f44-b5c6-aed2-3bd488ed5af3	2021-05-20 05:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:16:04.853+03	2021-05-20 05:16:04.861+03	
7eed001c-8149-ec4c-7309-c0ff2c62f19d	2021-05-20 05:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:16:25.852+03	2021-05-20 05:16:25.869+03	
608d46d2-6607-af42-c090-cb5e0d58afff	2021-05-20 05:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:16:45.853+03	2021-05-20 05:16:45.861+03	
4f064fa5-c18c-d3c4-f987-155319114f51	2021-05-20 05:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:17:07.852+03	2021-05-20 05:17:07.859+03	
b4b1616e-77b1-a53c-8e16-f448acbeefb8	2021-05-20 05:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:17:27.853+03	2021-05-20 05:17:27.86+03	
4dd376d8-f5e4-47ed-1af7-013083a2e07f	2021-05-20 05:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:17:47.853+03	2021-05-20 05:17:47.86+03	
a4a5eb5f-c272-71b7-5a0b-cbf5c8b84757	2021-05-20 05:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:18:08.853+03	2021-05-20 05:18:08.861+03	
c566ec10-fdb1-2141-8dbb-bc21cf51fbfd	2021-05-20 05:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:18:28.853+03	2021-05-20 05:18:28.86+03	
9315ff29-c10f-10d2-aa15-cd1481c82570	2021-05-20 05:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:18:49.853+03	2021-05-20 05:18:49.86+03	
9379b58a-ed78-6f44-2aea-b41c4a209f34	2021-05-20 05:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:19:10.852+03	2021-05-20 05:19:10.861+03	
327b210e-59e5-6888-6703-6793fc9feb53	2021-05-20 05:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:19:30.852+03	2021-05-20 05:19:30.859+03	
8bcb51cb-faab-0463-161a-af832788c746	2021-05-20 05:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:19:50.853+03	2021-05-20 05:19:50.861+03	
877a80f3-dba2-7573-24e6-06341400d5f5	2021-05-20 05:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:20:10.853+03	2021-05-20 05:20:10.865+03	
ffe109a8-b86b-641e-7d49-78b0b46add9f	2021-05-20 05:20:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:20:31.853+03	2021-05-20 05:20:31.861+03	
0a3f49a1-1836-f170-dfa2-4a569dd21e08	2021-05-20 05:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:20:52.852+03	2021-05-20 05:20:52.859+03	
ec2089de-ca30-8f53-7cc5-4d3351ffaa53	2021-05-20 05:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:21:12.852+03	2021-05-20 05:21:12.859+03	
e61b8790-5d4f-6791-e6cd-904444b6e5c3	2021-05-20 05:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:21:32.853+03	2021-05-20 05:21:32.859+03	
6320e7b6-f9fe-97b3-0ac3-4bdb87591919	2021-05-20 05:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:21:53.852+03	2021-05-20 05:21:53.86+03	
f238a44f-21d0-d0dd-cf51-c2048c6ec9c9	2021-05-20 05:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:22:14.852+03	2021-05-20 05:22:14.86+03	
acc814b0-0403-87f4-5f28-d2c2613d5efd	2021-05-20 05:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:22:34.852+03	2021-05-20 05:22:34.86+03	
6c98fb1f-beba-108f-e38a-a7abc2b9d09f	2021-05-20 05:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:22:55.852+03	2021-05-20 05:22:55.861+03	
3a10e1cc-3aaa-bf79-34ee-e32e3567bdbb	2021-05-20 05:23:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:23:16.852+03	2021-05-20 05:23:16.863+03	
8c31df93-4870-3fb1-a790-a524ae68b754	2021-05-20 05:23:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:23:36.852+03	2021-05-20 05:23:36.859+03	
d48fc7b1-0daa-0b42-ef19-c2747ab79aca	2021-05-20 05:23:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:23:46.852+03	2021-05-20 05:23:46.859+03	
cf220824-a931-d26b-90cd-27e310244b14	2021-05-20 05:24:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:24:06.854+03	2021-05-20 05:24:06.875+03	
7d856b23-5551-bd60-61b9-7ab1e9cbbfd9	2021-05-20 05:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:24:27.853+03	2021-05-20 05:24:27.859+03	
976dbdcd-6b9e-e035-1f2c-794217f3333d	2021-05-20 05:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:24:47.853+03	2021-05-20 05:24:47.859+03	
585a9b25-3863-ee9e-2d70-68861043fd6d	2021-05-20 05:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:25:08.852+03	2021-05-20 05:25:08.859+03	
378a7962-5e60-d62e-ffdd-e84e1f526ac9	2021-05-20 05:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:25:28.852+03	2021-05-20 05:25:28.861+03	
2a32c327-5a1e-704b-27f3-f4ed0f857508	2021-05-20 05:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:25:48.853+03	2021-05-20 05:25:48.859+03	
ac172f4c-9c14-d5d4-0fa2-f501759572e0	2021-05-20 05:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:26:08.853+03	2021-05-20 05:26:08.861+03	
11606eb7-72cb-d569-4b07-6c05d6d3357a	2021-05-20 05:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:26:28.853+03	2021-05-20 05:26:28.859+03	
abed8788-766f-fdb1-638f-9dbdf368e22e	2021-05-20 05:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:26:49.852+03	2021-05-20 05:26:49.859+03	
39a66b5e-023e-644f-5d13-ddb8f4cb7ad7	2021-05-20 05:27:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:27:09.853+03	2021-05-20 05:27:09.861+03	
adddb2ad-c5b0-e1d3-9b95-dfc9441cc2c6	2021-05-20 05:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:27:29.853+03	2021-05-20 05:27:30.295+03	
5b409115-9300-fdba-7b06-de48482cd037	2021-05-20 05:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:27:49.853+03	2021-05-20 05:27:49.861+03	
f268320e-e28d-cdb4-8b8c-3cd6aa1ce3f7	2021-05-20 05:28:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:28:10.852+03	2021-05-20 05:28:10.859+03	
d732c00d-d7ab-947b-0e28-ffd61a2814b8	2021-05-20 05:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:28:30.852+03	2021-05-20 05:28:30.86+03	
c4fd8492-0099-fa12-9fc4-112115169293	2021-05-20 05:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:28:50.853+03	2021-05-20 05:28:50.872+03	
4edcbacc-5ef2-f53f-55a2-c52e4af2fabe	2021-05-20 05:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:29:10.853+03	2021-05-20 05:29:10.859+03	
026d87ae-1218-07ff-2a8d-1b0dc2d9e820	2021-05-20 05:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:29:30.853+03	2021-05-20 05:29:30.861+03	
1839fe18-c476-ec5e-0160-984e5dc83e67	2021-05-20 05:29:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:29:51.854+03	2021-05-20 05:29:51.861+03	
4a314657-ad22-9444-c764-41d24e15749c	2021-05-20 05:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:30:02.853+03	2021-05-20 05:30:02.861+03	
8a0adb83-788d-5dc4-c99e-12022cfacb28	2021-05-20 05:30:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:30:22.853+03	2021-05-20 05:30:22.86+03	
2b30cca3-181b-0bfa-6fde-9d9a2559ac78	2021-05-20 05:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:30:42.853+03	2021-05-20 05:30:42.872+03	
b8d7305d-86e4-682f-0128-69ebce45b046	2021-05-20 05:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:31:02.853+03	2021-05-20 05:31:02.873+03	
c56ce84d-97db-85b4-3ed8-ccb681a641c3	2021-05-20 05:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:31:23.852+03	2021-05-20 05:31:23.862+03	
3cbf107d-6722-ebf1-f999-604338725075	2021-05-20 05:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:31:43.853+03	2021-05-20 05:31:43.86+03	
1dd82339-0167-631e-b4b8-76834e085e6e	2021-05-20 05:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:32:03.853+03	2021-05-20 05:32:03.859+03	
81e84f35-7642-7a1b-9d41-a937fd4fa71d	2021-05-20 05:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:32:23.853+03	2021-05-20 05:32:23.86+03	
066f8805-b6f7-4afd-ac31-f4da272e1a89	2021-05-20 05:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:32:43.853+03	2021-05-20 05:32:43.863+03	
2ba8fb7f-e7c9-556d-2efc-f8505e328e08	2021-05-20 05:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:33:04.853+03	2021-05-20 05:33:04.86+03	
71dae833-e363-47fa-9bff-9f41d0cf0b5e	2021-05-20 05:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:33:25.853+03	2021-05-20 05:33:25.86+03	
843077ed-2f93-c3f9-c9f0-78e421d162ce	2021-05-20 05:33:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:33:46.852+03	2021-05-20 05:33:46.862+03	
a5169ffd-55be-d347-33fc-8f37cd213e85	2021-05-20 05:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:13:09.853+03	2021-05-20 05:13:09.86+03	
87fa5f39-8fc9-28b2-589e-8d220bbd7a9f	2021-05-20 05:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:13:30.853+03	2021-05-20 05:13:30.861+03	
1a7dde2c-e215-bfd0-811b-aebc301f5b11	2021-05-20 05:13:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:13:51.852+03	2021-05-20 05:13:51.86+03	
49aee063-85b9-eab8-1d53-b595b013009c	2021-05-20 05:14:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:14:11.854+03	2021-05-20 05:14:11.873+03	
0ce5e5aa-e77d-af7a-e20d-95336ddc6989	2021-05-20 05:14:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:14:32.853+03	2021-05-20 05:14:32.86+03	
c7660269-0c22-03dd-fac5-0b079cefc8cd	2021-05-20 05:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:14:53.852+03	2021-05-20 05:14:53.858+03	
57f4d439-9c78-9ebd-8d31-e1482cec0ef1	2021-05-20 05:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:15:13.852+03	2021-05-20 05:15:13.859+03	
27b1da07-c9ec-1ce7-8e5b-52e5f767ec45	2021-05-20 05:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:15:33.852+03	2021-05-20 05:15:33.86+03	
bcea0279-ce44-f691-429a-a7a29e5d1a81	2021-05-20 05:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:15:53.853+03	2021-05-20 05:15:53.861+03	
7889dbb8-8319-7259-df62-5989c153ca93	2021-05-20 05:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:16:14.853+03	2021-05-20 05:16:14.871+03	
f497029e-80d4-a763-2386-4b02ff06474c	2021-05-20 05:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:16:35.853+03	2021-05-20 05:16:35.859+03	
2b65a901-2a98-8593-0ca8-e9a5b356585b	2021-05-20 05:16:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:16:56.853+03	2021-05-20 05:16:56.861+03	
5c56a465-bb22-4966-7c6c-177cc6060ce8	2021-05-20 05:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:17:17.853+03	2021-05-20 05:17:17.86+03	
3d5cae9a-b4d5-3891-e194-aeb07dbb34d0	2021-05-20 05:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:17:37.853+03	2021-05-20 05:17:37.859+03	
5c4ed82f-0ede-a7ac-772c-42be0f01daf4	2021-05-20 05:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:17:58.852+03	2021-05-20 05:17:58.858+03	
53252814-622c-ae00-b0ac-dd1e388b8abf	2021-05-20 05:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:18:18.853+03	2021-05-20 05:18:18.859+03	
b9ca24c5-83f4-2b3a-e5a0-972a80b0e1f0	2021-05-20 05:18:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:18:39.852+03	2021-05-20 05:18:39.859+03	
7f9e3dfa-405e-9ec2-0844-2811e72aac5d	2021-05-20 05:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:18:59.853+03	2021-05-20 05:18:59.86+03	
3b8c4cd1-b2c7-1a5d-c677-5f8385e7cc2c	2021-05-20 05:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:19:20.852+03	2021-05-20 05:19:20.859+03	
16c8218a-c0fd-bbe7-dd21-5d7711c6e1d1	2021-05-20 05:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:19:40.852+03	2021-05-20 05:19:40.859+03	
a5d7f58e-c495-26ab-be83-2fbf62e118e4	2021-05-20 05:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 05:20:00.853+03	2021-05-20 05:20:00.858+03	ERROR
773fcdc3-0e37-3d27-8900-36b3e9cebc16	2021-05-20 05:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:20:00.853+03	2021-05-20 05:20:00.872+03	
4c330d64-ab4e-de85-7703-78ada2b2ae72	2021-05-20 05:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:20:20.853+03	2021-05-20 05:20:20.859+03	
1d193fc7-f5aa-29dd-1bb6-4df20e345652	2021-05-20 05:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:20:42.852+03	2021-05-20 05:20:42.859+03	
06e2e99b-b0d8-cb05-ef0f-b575ee577949	2021-05-20 05:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:21:02.852+03	2021-05-20 05:21:02.902+03	
855a6b7c-dd9a-2fb5-a5ec-416b2e176db4	2021-05-20 05:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:21:22.853+03	2021-05-20 05:21:22.859+03	
fcb15b48-7e57-b0c3-ddff-4fca7e7cc261	2021-05-20 05:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:21:42.853+03	2021-05-20 05:21:42.859+03	
744c15cb-dffb-7d39-c2cf-5d24e17ccbff	2021-05-20 05:22:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:22:03.853+03	2021-05-20 05:22:03.861+03	
94231643-82f4-6f46-bd63-422950893456	2021-05-20 05:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:22:24.852+03	2021-05-20 05:22:24.86+03	
43ee5acd-b2e8-bd4a-552e-a36334808bdd	2021-05-20 05:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:22:44.853+03	2021-05-20 05:22:44.861+03	
a6132730-62e0-12d1-a042-9b6e86033cea	2021-05-20 05:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:23:05.853+03	2021-05-20 05:23:05.861+03	
940dc70f-d68c-6332-b200-75a2d6957e13	2021-05-20 05:23:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:23:26.852+03	2021-05-20 05:23:26.908+03	
f61fa59d-bc45-8a21-2934-555335ad64bf	2021-05-20 05:23:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:23:56.852+03	2021-05-20 05:23:56.86+03	
27525d62-e54f-656b-08d7-c58cca90dffa	2021-05-20 05:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:24:17.853+03	2021-05-20 05:24:17.859+03	
3aeb41de-3413-13a0-084c-51996b48fead	2021-05-20 05:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:24:37.853+03	2021-05-20 05:24:37.86+03	
354bc8ce-4868-f3f7-5a5a-e7d9285e6bce	2021-05-20 05:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:24:57.853+03	2021-05-20 05:24:57.861+03	
f7fd0239-7150-f636-0383-8565ce9b7201	2021-05-20 05:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:25:18.852+03	2021-05-20 05:25:18.859+03	
97563a74-52ed-055c-7cbd-cc96c4198cb9	2021-05-20 05:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:25:38.853+03	2021-05-20 05:25:38.863+03	
30b8af4f-7eb9-2c0b-d219-084a1322e32a	2021-05-20 05:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:25:58.853+03	2021-05-20 05:25:58.861+03	
b9bb4c21-29e2-35c4-bde2-6b4c37ed7df0	2021-05-20 05:26:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:26:18.853+03	2021-05-20 05:26:18.876+03	
24b6458e-b447-5dec-7e23-fb5b4a7e828e	2021-05-20 05:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:26:39.852+03	2021-05-20 05:26:39.861+03	
94990a14-3ae7-cc59-0f3b-afbabdea2a9e	2021-05-20 05:26:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:26:59.853+03	2021-05-20 05:26:59.86+03	
449587dc-d7af-cc17-17e5-2284e2a140d3	2021-05-20 05:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:27:19.853+03	2021-05-20 05:27:19.861+03	
2d427b15-2adc-a8ce-6423-804c7c5d377d	2021-05-20 05:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:27:39.853+03	2021-05-20 05:27:39.861+03	
ca1e9d16-d347-f17e-945a-924293cc9422	2021-05-20 05:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:27:59.853+03	2021-05-20 05:27:59.862+03	
1249b699-f420-4f6f-f842-dac7067077aa	2021-05-20 05:28:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:28:20.852+03	2021-05-20 05:28:20.86+03	
5bb0fc09-7386-ee7f-715e-fd41b86d6b5a	2021-05-20 05:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:28:40.852+03	2021-05-20 05:28:40.861+03	
71c98e9f-f0e9-9f7e-63b2-454aa5da3619	2021-05-20 05:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:29:00.853+03	2021-05-20 05:29:00.861+03	
200da916-53ad-a035-1d15-9c7fed204c3f	2021-05-20 05:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:29:20.853+03	2021-05-20 05:29:20.86+03	
e9cf60f8-8376-e41b-9a0f-3fbd330cad3c	2021-05-20 05:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:29:40.853+03	2021-05-20 05:29:40.861+03	
bc4566f0-3cd7-94cc-3ba6-10e86bfa766f	2021-05-20 05:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 05:30:00.852+03	2021-05-20 05:30:00.858+03	ERROR
9827f5ef-d46a-9661-1666-5fba2f68aab7	2021-05-20 05:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:30:12.853+03	2021-05-20 05:30:12.86+03	
55d83f99-b511-b1c4-7041-640cb118e858	2021-05-20 05:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:30:32.853+03	2021-05-20 05:30:32.86+03	
32accd70-de0d-04ea-7b85-32b9f1db8036	2021-05-20 05:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:30:52.853+03	2021-05-20 05:30:52.865+03	
49cefa8c-8495-bb8e-2230-8e78d03defb9	2021-05-20 05:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:31:12.853+03	2021-05-20 05:31:12.86+03	
b76c08be-0c7e-e35e-226b-a11a40f0a741	2021-05-20 05:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:31:33.852+03	2021-05-20 05:31:33.859+03	
30a9a230-8bf4-f5d5-1cd8-14d35513f5bc	2021-05-20 05:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:31:53.853+03	2021-05-20 05:31:53.859+03	
a8ec4475-6b59-1af6-11dc-d565ef81a6b4	2021-05-20 05:32:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:32:13.853+03	2021-05-20 05:32:13.863+03	
82d09a2b-1d9c-b8e5-2441-deaf6f0cc952	2021-05-20 05:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:32:33.853+03	2021-05-20 05:32:33.864+03	
6b0b13bd-b829-2237-0624-bc9e9d2e466c	2021-05-20 05:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:32:53.853+03	2021-05-20 05:32:53.861+03	
abec0ad9-3190-b567-d7cf-9f0b8bdaecf9	2021-05-20 05:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:33:15.852+03	2021-05-20 05:33:15.859+03	
7ed92ca9-dbef-be85-bf96-9cfeeccd6dba	2021-05-20 05:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:33:35.853+03	2021-05-20 05:33:36.389+03	
6b9ae7b3-9aa9-78c8-887e-b451a5d2bcca	2021-05-20 05:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:33:56.853+03	2021-05-20 05:33:56.862+03	
9fac0dab-bfd3-290d-8ec3-ac2c00c28b69	2021-05-20 10:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:32:57.853+03	2021-05-20 10:32:57.873+03	
ed4ce818-f38a-c875-5b21-8106c80b7af8	2021-05-20 05:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:34:07.852+03	2021-05-20 05:34:07.866+03	
9d42a9a4-19b6-59e3-66df-f00af5328369	2021-05-20 07:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:04:14.853+03	2021-05-20 07:04:14.862+03	
87211762-ba7d-6ccd-4318-df4e869405f2	2021-05-20 05:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:34:27.852+03	2021-05-20 05:34:27.859+03	
d9fc6794-241f-02e0-0b2c-55e8fbf387d5	2021-05-20 05:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:34:48.853+03	2021-05-20 05:34:48.866+03	
48447f52-d18a-1a11-40e5-ac4c5ce3d63a	2021-05-20 07:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:04:34.853+03	2021-05-20 07:04:34.862+03	
372ca685-3099-4209-1abb-29197589ca32	2021-05-20 05:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:35:09.853+03	2021-05-20 05:35:09.86+03	
85ef6b46-133f-5ec2-3d63-bdefbaffe6db	2021-05-20 05:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:35:29.853+03	2021-05-20 05:35:29.861+03	
e27cc48e-5459-706b-bda5-986b26e3f25f	2021-05-20 07:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:04:54.853+03	2021-05-20 07:04:54.86+03	
ca36b68c-94df-a977-4b71-403940f8efe2	2021-05-20 05:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:35:50.852+03	2021-05-20 05:35:50.861+03	
37cfdc81-4f29-a3e2-307b-62f09f16bde5	2021-05-20 05:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:36:10.853+03	2021-05-20 05:36:10.86+03	
c15db8fc-34ad-b9ff-27f2-00a165eab626	2021-05-20 07:05:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:05:16.853+03	2021-05-20 07:05:16.859+03	
df8192a5-37e8-2c9a-cb21-f98885a2394c	2021-05-20 05:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:36:32.852+03	2021-05-20 05:36:32.868+03	
7d6df538-9288-2a01-4f8b-67fa5427d088	2021-05-20 05:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:36:52.853+03	2021-05-20 05:36:52.859+03	
5dba8d14-4bd7-c2d2-8b29-75220e870f04	2021-05-20 07:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:05:36.853+03	2021-05-20 07:05:36.862+03	
cc2d41e3-c0ad-f679-30fb-083b01680d32	2021-05-20 05:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:37:12.853+03	2021-05-20 05:37:12.859+03	
a29c8ecc-9820-6b70-497f-d384dfc94432	2021-05-20 05:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:37:33.853+03	2021-05-20 05:37:33.859+03	
818e9406-9fcc-ca46-2ba7-e8bbc8ea0f2f	2021-05-20 07:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:05:57.853+03	2021-05-20 07:05:57.86+03	
153270bc-ebcb-10cd-3186-c948d51ac603	2021-05-20 05:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:37:53.853+03	2021-05-20 05:37:53.86+03	
aabc9720-8ef0-44c2-9737-e308f433cccf	2021-05-20 05:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:38:13.853+03	2021-05-20 05:38:13.871+03	
9f3a9f21-07e7-e99e-ff30-c61ad5182f77	2021-05-20 07:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:06:17.853+03	2021-05-20 07:06:17.861+03	
3f15af7f-446b-e9aa-4ab0-0dc640f24110	2021-05-20 05:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:38:34.853+03	2021-05-20 05:38:34.862+03	
3eef9ed9-d0e1-f75a-4a1d-b14682707737	2021-05-20 05:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:38:54.853+03	2021-05-20 05:38:54.86+03	
2f1d2187-d31b-3d22-55e1-c5c75d2d2cca	2021-05-20 05:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:39:15.853+03	2021-05-20 05:39:15.86+03	
80648ddb-0dcb-b08c-f103-4a2ee05223a3	2021-05-20 05:39:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:39:36.854+03	2021-05-20 05:39:36.862+03	
2a4b5b37-db81-9dbf-8de2-decba3f3c964	2021-05-20 05:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:39:57.852+03	2021-05-20 05:39:57.859+03	
1cebb576-57e9-9962-709b-868b6f8965e2	2021-05-20 05:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:40:07.852+03	2021-05-20 05:40:07.864+03	
26d46e3d-d5ec-09d2-6b21-7e60727cfea9	2021-05-20 05:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:40:27.853+03	2021-05-20 05:40:27.863+03	
4414749e-8272-5b1f-3df7-e5ab7c7d1a8a	2021-05-20 05:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:40:48.853+03	2021-05-20 05:40:48.861+03	
ec5b0be0-ff16-25d2-fec5-98862d3bff5a	2021-05-20 05:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:41:08.853+03	2021-05-20 05:41:08.86+03	
b896cfa4-77dc-c791-30a4-1c3d4d507e2f	2021-05-20 05:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:41:29.852+03	2021-05-20 05:41:29.862+03	
b0e778de-ef6d-b889-a3b9-a5ca63949a06	2021-05-20 05:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:41:50.853+03	2021-05-20 05:41:50.861+03	
04ce5d1b-6646-0c3f-784b-8374ca360f30	2021-05-20 05:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:42:10.853+03	2021-05-20 05:42:10.87+03	
b38a97b1-4113-a6a7-b671-cb865c8e5aa5	2021-05-20 05:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:42:30.853+03	2021-05-20 05:42:30.86+03	
00a35dd0-194e-e953-2a1e-b4dce741e376	2021-05-20 05:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:42:50.853+03	2021-05-20 05:42:50.859+03	
921b04aa-8244-f4b5-20ec-da3aa2c4cdad	2021-05-20 05:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:43:10.853+03	2021-05-20 05:43:10.86+03	
bd38f61b-35aa-a914-be12-8bcd5f4c4087	2021-05-20 05:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:43:30.853+03	2021-05-20 05:43:30.864+03	
6d52f6d1-6a96-01b2-04a5-47b3ef2a49eb	2021-05-20 05:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:43:50.853+03	2021-05-20 05:43:50.86+03	
e6b6221c-955c-cadf-2ade-039503f12989	2021-05-20 05:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:44:10.853+03	2021-05-20 05:44:10.868+03	
c0df94d6-8426-8f81-02ab-52a9eeb0b580	2021-05-20 05:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:44:30.853+03	2021-05-20 05:44:30.861+03	
9e3f371a-d25c-d4d3-b23b-7ce6a6c764c9	2021-05-20 05:44:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:44:51.853+03	2021-05-20 05:44:51.86+03	
067687ff-1144-8bee-1e52-f6fce6d80030	2021-05-20 05:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:45:11.854+03	2021-05-20 05:45:11.867+03	
f9c28d59-afb2-9c74-89a9-dcc47996d169	2021-05-20 05:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:45:32.853+03	2021-05-20 05:45:32.86+03	
c40743ce-73f4-4a07-427f-eeecaa44565b	2021-05-20 05:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:45:53.852+03	2021-05-20 05:45:53.859+03	
7a2d630d-29fc-d36f-bbae-69515f861725	2021-05-20 05:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:46:13.853+03	2021-05-20 05:46:13.861+03	
5ad5a64a-39fd-090b-5e84-e38f058399db	2021-05-20 05:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:46:33.853+03	2021-05-20 05:46:33.86+03	
3c90708c-84a7-b729-a010-059e2d8b2878	2021-05-20 05:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:46:53.853+03	2021-05-20 05:46:53.861+03	
7c72beca-4ab2-78c5-6b7c-07f44bae1672	2021-05-20 05:47:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:47:13.853+03	2021-05-20 05:47:13.863+03	
caf80e99-16b7-f24d-60af-b0aa5e2cde5e	2021-05-20 05:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:47:34.853+03	2021-05-20 05:47:34.86+03	
2ca3252d-3c63-c891-b1f7-f558b8cf879d	2021-05-20 05:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:47:55.852+03	2021-05-20 05:47:55.86+03	
aad92a86-f0b9-2733-7434-58b33f5d26a4	2021-05-20 05:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:48:15.853+03	2021-05-20 05:48:15.862+03	
0698b7c9-0ae7-5a56-2b43-cc99edff4924	2021-05-20 05:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:48:35.853+03	2021-05-20 05:48:35.86+03	
69197999-47ce-9077-e6d0-f935b33930a0	2021-05-20 05:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:48:56.853+03	2021-05-20 05:48:56.86+03	
9afd1964-5d1a-0190-3762-d78eb19192bd	2021-05-20 05:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:49:17.853+03	2021-05-20 05:49:17.862+03	
83f68978-0a04-e7ec-5acf-17be203b74b2	2021-05-20 05:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:49:38.853+03	2021-05-20 05:49:38.86+03	
60651715-f496-81a6-5672-21dcbbaf0786	2021-05-20 05:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:49:59.853+03	2021-05-20 05:49:59.862+03	
d9aa7443-a30b-b321-60fb-0b4f389e2c5b	2021-05-20 05:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:50:10.852+03	2021-05-20 05:50:10.861+03	
2da81a9a-a7b6-caf3-accd-30b037be6051	2021-05-20 05:50:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:50:31.853+03	2021-05-20 05:50:31.86+03	
f5912af8-e277-b55b-07a7-947fde132a40	2021-05-20 05:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:50:52.853+03	2021-05-20 05:50:52.861+03	
ff9923e3-4e43-50d4-4048-bd0d7ade390b	2021-05-20 05:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:51:14.852+03	2021-05-20 05:51:14.86+03	
9f03e0c4-b822-1ca1-0344-7b71fae902bf	2021-05-20 05:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:51:34.853+03	2021-05-20 05:51:34.859+03	
ded59e65-4566-ef7d-0f74-dfc0337fced0	2021-05-20 05:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:51:54.853+03	2021-05-20 05:51:54.859+03	
aca9339c-c2e0-1b05-5eb7-53203525303a	2021-05-20 05:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:52:15.853+03	2021-05-20 05:52:15.861+03	
6fbf62b5-a59c-9c4c-c03b-bedcd762727a	2021-05-20 05:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:52:35.853+03	2021-05-20 05:52:35.862+03	
a0166281-932c-980a-521d-ac197f397a67	2021-05-20 05:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:34:17.852+03	2021-05-20 05:34:17.859+03	
9f562050-8087-093d-f64d-d687c3d19374	2021-05-20 05:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:34:37.853+03	2021-05-20 05:34:37.862+03	
fd7b5054-ab93-8a4a-6fc6-a47da28b97f9	2021-05-20 05:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:34:58.853+03	2021-05-20 05:34:58.86+03	
2b6a54ce-e493-6d67-163b-cc3dc1ec5ffb	2021-05-20 05:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:35:19.853+03	2021-05-20 05:35:19.86+03	
e40d2eb8-c2ad-3a9b-5286-bc6f46743aa5	2021-05-20 05:35:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:35:39.853+03	2021-05-20 05:35:39.859+03	
1119c7ed-0ca8-4bf8-b898-0f244efe1723	2021-05-20 05:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:36:00.853+03	2021-05-20 05:36:00.861+03	
4b320060-b88b-ae6c-f725-093c68e862f1	2021-05-20 05:36:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:36:21.854+03	2021-05-20 05:36:21.861+03	
0ddc5f3a-b11d-37e6-78cd-60796f64f978	2021-05-20 05:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:36:42.852+03	2021-05-20 05:36:42.86+03	
ae847e5a-c380-56a3-74c6-9dc7d3627018	2021-05-20 05:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:37:02.853+03	2021-05-20 05:37:02.859+03	
51179965-f6b9-8ff3-0ae9-eb3e3a3f2c32	2021-05-20 05:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:37:22.853+03	2021-05-20 05:37:22.862+03	
f070f50c-6583-e26a-71aa-fc47dc279caf	2021-05-20 05:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:37:43.853+03	2021-05-20 05:37:44.138+03	
8510986b-e17c-f7b1-8486-91f23cbfc15b	2021-05-20 05:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:38:03.853+03	2021-05-20 05:38:03.862+03	
514f23d4-fa99-e5c1-05d9-aa4300aa634c	2021-05-20 05:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:38:24.853+03	2021-05-20 05:38:24.862+03	
8d681486-bbca-e5be-997a-a813c8d49055	2021-05-20 05:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:38:44.853+03	2021-05-20 05:38:44.862+03	
049c2c11-42de-aea5-2a92-88217fd0b535	2021-05-20 05:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:39:05.853+03	2021-05-20 05:39:05.86+03	
0059cdfd-f7f0-0d84-76ad-a6417a2f3646	2021-05-20 05:39:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:39:26.852+03	2021-05-20 05:39:26.862+03	
48d9a19d-552c-d217-3129-c3f8d6147ed0	2021-05-20 05:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:39:47.852+03	2021-05-20 05:39:47.862+03	
d56913ac-d5f4-6327-1400-3c64d7f5b5d0	2021-05-20 05:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 05:40:00.853+03	2021-05-20 05:40:00.859+03	ERROR
b1b0a701-0e7a-7d75-3ec6-0982dfad9f4a	2021-05-20 05:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:40:17.853+03	2021-05-20 05:40:17.86+03	
f8d1cfcc-7795-7e1e-2955-1d0f4d26d604	2021-05-20 05:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:40:37.853+03	2021-05-20 05:40:37.861+03	
cf540d00-c342-bd13-1ccd-3119a88d21a6	2021-05-20 05:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:40:58.853+03	2021-05-20 05:40:58.867+03	
a1c890ec-8a13-1487-6a2c-dc3bced13ff0	2021-05-20 05:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:41:18.853+03	2021-05-20 05:41:18.861+03	
1bd2311a-e72e-322c-e6c4-731d7f02747f	2021-05-20 05:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:41:39.853+03	2021-05-20 05:41:39.859+03	
6fef02d8-da3c-f0c1-bfb3-d32fad63c9bc	2021-05-20 05:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:42:00.853+03	2021-05-20 05:42:00.86+03	
cef2e26c-340b-d719-01f0-0039cd3742bd	2021-05-20 05:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:42:20.853+03	2021-05-20 05:42:20.86+03	
d9aad5d1-65ea-7681-f0ff-ce4189e083de	2021-05-20 05:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:42:40.853+03	2021-05-20 05:42:40.859+03	
858a952c-4690-8eab-9084-dd8ff1acec55	2021-05-20 05:43:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:43:00.853+03	2021-05-20 05:43:00.861+03	
87398d4c-b1d8-2316-0cd8-be11edbd8e4f	2021-05-20 05:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:43:20.853+03	2021-05-20 05:43:20.861+03	
b47ef7d3-46e4-756e-3084-b48fd0d86b43	2021-05-20 05:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:43:40.853+03	2021-05-20 05:43:40.859+03	
0ac32325-3133-feb5-894f-70e5b5ce9652	2021-05-20 05:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:44:00.853+03	2021-05-20 05:44:00.86+03	
5c31b292-6e3b-454d-e344-a3d8944fdd2c	2021-05-20 05:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:44:20.853+03	2021-05-20 05:44:20.861+03	
b43bdbfe-40ee-95cd-f5ed-534c773a8934	2021-05-20 05:44:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:44:41.852+03	2021-05-20 05:44:41.86+03	
895d9940-1be1-1d8c-deba-e3df6b5b2c7a	2021-05-20 05:45:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:45:01.853+03	2021-05-20 05:45:01.862+03	
87d903aa-a245-d09b-9a79-dd8a2e416379	2021-05-20 05:45:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:45:21.854+03	2021-05-20 05:45:21.86+03	
6c23ddca-d3ea-d938-8b44-76bed4db0a98	2021-05-20 05:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:45:42.853+03	2021-05-20 05:45:42.864+03	
0cecf4bc-d763-0358-8eca-5ca532c31c9f	2021-05-20 05:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:46:03.852+03	2021-05-20 05:46:03.859+03	
effbcd65-07ad-9389-7adf-954f280c35b5	2021-05-20 05:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:46:23.853+03	2021-05-20 05:46:23.859+03	
e9d53f25-9ddf-35ad-44a0-0480af1f3db6	2021-05-20 05:46:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:46:43.853+03	2021-05-20 05:46:43.868+03	
b81e13ed-0c96-f4f6-cd72-dc65ff5e872f	2021-05-20 05:47:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:47:03.853+03	2021-05-20 05:47:03.86+03	
3aa7b83b-4581-1144-b61c-058bc805f3f0	2021-05-20 05:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:47:23.853+03	2021-05-20 05:47:23.861+03	
612703ad-a59b-e67a-06a9-97ba2dca13dc	2021-05-20 05:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:47:45.852+03	2021-05-20 05:47:45.861+03	
054e63d1-5987-9785-cf92-5ff73cf32169	2021-05-20 05:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:48:05.853+03	2021-05-20 05:48:05.862+03	
76f80332-7c04-85f0-bf74-649a469b7408	2021-05-20 05:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:48:25.853+03	2021-05-20 05:48:25.859+03	
ff0f3588-e177-3f12-4b8e-12ad277ae046	2021-05-20 05:48:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:48:46.852+03	2021-05-20 05:48:46.872+03	
f8df5a65-cb4c-e5bd-315d-a59656f1683e	2021-05-20 05:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:49:07.852+03	2021-05-20 05:49:07.86+03	
8de00ca8-b1c2-81ff-c68d-36800d15b0b0	2021-05-20 05:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:49:28.852+03	2021-05-20 05:49:28.861+03	
65dccbab-b406-28f9-f9e3-7a672a25de95	2021-05-20 05:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:49:48.853+03	2021-05-20 05:49:48.859+03	
f3a644ab-c233-010b-32df-11c4edf8fe8a	2021-05-20 05:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 05:50:00.853+03	2021-05-20 05:50:00.857+03	ERROR
8d03894d-00eb-8e12-414d-5f9a2da49434	2021-05-20 05:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:50:20.853+03	2021-05-20 05:50:20.86+03	
624f75bb-58bd-211d-7f23-3f6d21add144	2021-05-20 05:50:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:50:42.852+03	2021-05-20 05:50:42.859+03	
b11a55d6-24ea-5167-fab1-447f8e652de8	2021-05-20 05:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:51:03.853+03	2021-05-20 05:51:03.861+03	
b96509c8-3724-7721-7251-91f4849b6660	2021-05-20 05:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:51:24.852+03	2021-05-20 05:51:24.861+03	
abcfaf71-aff8-e835-821d-cf0d33922778	2021-05-20 05:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:51:44.853+03	2021-05-20 05:51:44.859+03	
eb00d2c5-84e4-ca05-4156-68dfa5b8e22d	2021-05-20 05:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:52:05.852+03	2021-05-20 05:52:05.862+03	
496e69d8-ba21-9972-5f4a-bf7bc5f8a915	2021-05-20 05:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:52:25.853+03	2021-05-20 05:52:25.861+03	
c1445276-75aa-e820-c8e1-f4c4a24e145e	2021-05-20 05:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:52:45.853+03	2021-05-20 05:52:45.86+03	
74a6ed6c-927a-12d2-13de-e40ebdcb344d	2021-05-20 05:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:52:55.853+03	2021-05-20 05:52:55.861+03	
031296b9-1fce-b8e6-9474-e6a2e3f8b8b6	2021-05-20 05:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:53:05.853+03	2021-05-20 05:53:05.86+03	
97db37ea-279b-f170-6970-5021fee2b010	2021-05-20 05:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:53:15.853+03	2021-05-20 05:53:15.861+03	
9018fb22-6338-9a31-bd2d-cb10539be1a4	2021-05-20 05:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:53:25.853+03	2021-05-20 05:53:25.867+03	
ed888ffb-8741-2cb6-80fa-c7574d75d903	2021-05-20 05:53:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:53:36.852+03	2021-05-20 05:53:36.862+03	
7c0359bc-15e9-7ee2-7bd4-ec97dc03fdf9	2021-05-20 05:53:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:53:46.853+03	2021-05-20 05:53:46.86+03	
c5389452-2425-0f8b-223e-4184c178ad0d	2021-05-20 05:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:53:57.852+03	2021-05-20 05:53:57.859+03	
397217e6-648e-bcbc-9b89-0416cc4bdce0	2021-05-20 05:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:54:07.852+03	2021-05-20 05:54:07.86+03	
455d3511-b985-133c-dec5-96ad1c384a7c	2021-05-20 05:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:54:28.852+03	2021-05-20 05:54:28.859+03	
ef0c337f-e48b-3e5d-9513-a8f2e7e81f43	2021-05-20 05:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:54:48.853+03	2021-05-20 05:54:48.86+03	
58e528bd-171c-bdc3-f095-d92988538e4b	2021-05-20 05:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:55:08.853+03	2021-05-20 05:55:08.86+03	
3032cae2-5ca3-ef6b-6d1e-edd6deb2b2c1	2021-05-20 05:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:55:28.853+03	2021-05-20 05:55:28.86+03	
e53eea44-3459-cdc3-ec6c-1523ebea3197	2021-05-20 05:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:55:49.853+03	2021-05-20 05:55:49.86+03	
e8b89f1a-1083-73ad-5186-0c3bb16aa19f	2021-05-20 05:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:56:09.853+03	2021-05-20 05:56:09.861+03	
4ff87855-b62d-0453-ed53-77bc0e4cfe59	2021-05-20 05:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:56:30.853+03	2021-05-20 05:56:30.863+03	
b9f897dd-2d33-a86c-233a-ebf40353a528	2021-05-20 05:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:56:50.853+03	2021-05-20 05:56:50.86+03	
e4f69187-7de1-914b-b0d6-bf65de5549c9	2021-05-20 05:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:57:10.853+03	2021-05-20 05:57:10.862+03	
38377e46-6a70-81df-1a3c-f993f5b33f10	2021-05-20 05:57:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:57:31.853+03	2021-05-20 05:57:31.867+03	
9e6d9e31-d2a2-527b-9954-f55bf22d8571	2021-05-20 05:57:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:57:52.853+03	2021-05-20 05:57:52.866+03	
69c70eb2-8772-df89-82c3-89d4b6b28090	2021-05-20 05:58:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:58:12.853+03	2021-05-20 05:58:12.861+03	
d2f47f60-da29-2e8a-90e7-6a7213bc2dd0	2021-05-20 05:58:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:58:32.853+03	2021-05-20 05:58:32.861+03	
da35cb5d-cb3a-5fd9-2501-c65fbcec575d	2021-05-20 05:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:58:52.853+03	2021-05-20 05:58:52.86+03	
ad74982e-fa98-490b-8825-e1e6a1c46368	2021-05-20 05:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:59:13.853+03	2021-05-20 05:59:13.875+03	
a9289200-0fa9-458a-3b7b-313fd471ef5d	2021-05-20 05:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:59:34.853+03	2021-05-20 05:59:34.859+03	
e91f5d1f-dba6-0a3f-a5c0-588eaa304727	2021-05-20 05:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:59:55.853+03	2021-05-20 05:59:55.86+03	
e170b956-2d27-6816-5d3a-0ae8123ea0cf	2021-05-20 06:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:00:05.853+03	2021-05-20 06:00:06.105+03	
cb677747-6a17-34ce-cfd0-eb41909e0e89	2021-05-20 06:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:00:25.853+03	2021-05-20 06:00:25.863+03	
22dee0ed-2a7b-fdd0-699d-c5940bb00f09	2021-05-20 06:00:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:00:46.853+03	2021-05-20 06:00:46.862+03	
5afc5c74-1ad0-5b21-e5e2-03d7cbc7460f	2021-05-20 06:01:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:01:07.853+03	2021-05-20 06:01:07.86+03	
399a80b2-0159-ebf8-329f-7a870da68845	2021-05-20 06:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:01:27.853+03	2021-05-20 06:01:27.865+03	
996189f1-8f95-092b-9c24-e6cb6c1cb563	2021-05-20 06:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:01:48.852+03	2021-05-20 06:01:48.86+03	
77a9eff8-7287-a6db-f40d-7c42c4051fab	2021-05-20 06:02:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:02:08.853+03	2021-05-20 06:02:08.863+03	
d69fa687-9b9c-7f6c-979c-14c4688b333a	2021-05-20 06:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:02:38.853+03	2021-05-20 06:02:38.861+03	
9fbff524-b2f5-43fa-e1d8-d407ad5211aa	2021-05-20 06:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:02:58.853+03	2021-05-20 06:02:58.861+03	
8ee344d7-44b2-4955-64b7-b409f4f88d52	2021-05-20 06:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:03:20.852+03	2021-05-20 06:03:20.86+03	
c851f9ed-f31c-99f9-e571-b7100fd9392f	2021-05-20 06:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:03:40.853+03	2021-05-20 06:03:40.86+03	
6e2638e2-5670-b1a9-2c79-1c32987e24ea	2021-05-20 06:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:04:00.853+03	2021-05-20 06:04:00.858+03	
0359f7f4-28bb-6f99-2574-5fa98d499981	2021-05-20 06:04:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:04:21.854+03	2021-05-20 06:04:21.862+03	
5bd326f6-b22d-f31e-7bbd-c8aaadafa7dc	2021-05-20 06:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:04:43.853+03	2021-05-20 06:04:43.869+03	
1e224435-f5f4-e2d6-8957-d0aadff683b8	2021-05-20 06:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:05:03.853+03	2021-05-20 06:05:03.859+03	
9845f0a5-a720-866e-310c-01ff00b6dc8a	2021-05-20 06:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:05:25.852+03	2021-05-20 06:05:25.859+03	
71cb931e-2f97-e2ee-427f-b3f8b161e0df	2021-05-20 06:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:05:45.852+03	2021-05-20 06:05:45.859+03	
6bb6f2fa-a99c-aee2-475c-b302fc48ffb5	2021-05-20 06:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:06:05.853+03	2021-05-20 06:06:05.86+03	
8d56113e-c0ec-4a1a-9203-a8d379d70c99	2021-05-20 06:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:06:26.853+03	2021-05-20 06:06:26.861+03	
16019491-7072-bfca-554e-58f914ae34dd	2021-05-20 06:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:06:47.852+03	2021-05-20 06:06:47.859+03	
9ac5517e-014e-4eff-1512-9db750d9112e	2021-05-20 06:07:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:07:07.853+03	2021-05-20 06:07:07.859+03	
66ca1406-d596-ebcf-ffac-3acfa728905e	2021-05-20 06:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:07:28.853+03	2021-05-20 06:07:28.86+03	
0f27c79a-332a-dd0a-ebf6-1fbbb75e4ee4	2021-05-20 06:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:07:49.853+03	2021-05-20 06:07:49.874+03	
88d3f1fb-6ffe-2ead-297b-7231c4e5cf74	2021-05-20 06:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:08:10.853+03	2021-05-20 06:08:10.86+03	
9740da96-9784-e325-c70f-4fee6d8faf15	2021-05-20 06:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:08:30.853+03	2021-05-20 06:08:30.861+03	
bd94adef-04ce-ce3d-e39e-42ee1f0bd793	2021-05-20 06:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:08:50.853+03	2021-05-20 06:08:50.859+03	
71c90144-24f0-1b06-212d-ceb0319cff14	2021-05-20 06:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:09:10.853+03	2021-05-20 06:09:10.861+03	
b0fa18f1-480e-3381-8b41-d57a2ae9cf2d	2021-05-20 06:09:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:09:31.853+03	2021-05-20 06:09:31.86+03	
738b7928-4a9d-db64-8e67-f4b47714bf45	2021-05-20 06:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 06:10:00.852+03	2021-05-20 06:10:00.858+03	ERROR
f419cbf1-37b7-66f7-d956-358c5bc21704	2021-05-20 06:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:10:12.853+03	2021-05-20 06:10:12.863+03	
a1811c18-b37e-a487-86c8-2c691f545360	2021-05-20 06:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:10:33.852+03	2021-05-20 06:10:33.861+03	
41bdb35e-3e48-f44a-fd75-8c6344954ab6	2021-05-20 06:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:10:53.852+03	2021-05-20 06:10:53.861+03	
3205ccdd-2473-c159-b746-2890c19eb6dc	2021-05-20 06:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:11:13.852+03	2021-05-20 06:11:13.87+03	
8e513078-1b65-f8e9-6172-e5fe08b70c69	2021-05-20 06:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:11:33.853+03	2021-05-20 06:11:33.861+03	
8ac1b43c-81e9-2522-860a-958968bf5eab	2021-05-20 06:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:11:55.852+03	2021-05-20 06:11:55.864+03	
f0d8a690-21bf-6387-4fea-974bcaa62781	2021-05-20 06:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:12:15.853+03	2021-05-20 06:12:15.859+03	
5e921f2b-e108-de41-408a-286ceb67ba29	2021-05-20 06:12:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:12:36.852+03	2021-05-20 06:12:36.86+03	
928137f0-84b4-88e7-c982-60d498fd9457	2021-05-20 06:12:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:12:56.852+03	2021-05-20 06:12:56.862+03	
4715e201-c0a8-be95-e31a-6ba4a73dc3c6	2021-05-20 06:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:13:17.852+03	2021-05-20 06:13:17.86+03	
445519aa-8b9e-5206-abff-851213e4f796	2021-05-20 06:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:13:38.852+03	2021-05-20 06:13:38.86+03	
a6171e7f-231a-28ed-80df-0cee68fa0a03	2021-05-20 06:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:13:58.853+03	2021-05-20 06:13:58.86+03	
e5179a2f-7bca-22ab-7291-fa11ef39eab7	2021-05-20 06:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:14:19.853+03	2021-05-20 06:14:19.862+03	
13bcd504-be97-1019-34e9-35290448e601	2021-05-20 06:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:14:40.853+03	2021-05-20 06:14:40.862+03	
8cad7d92-3338-a04d-905b-9ec440a196ea	2021-05-20 06:15:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:15:01.854+03	2021-05-20 06:15:01.896+03	
bb28eac9-d3cf-157b-ac90-3a4f660dbf59	2021-05-20 06:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:15:22.853+03	2021-05-20 06:15:22.859+03	
7b44a886-b3af-d568-01d9-e572efde6d08	2021-05-20 05:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:54:17.853+03	2021-05-20 05:54:17.86+03	
89b812b7-53b7-83c1-48a4-9f01b391a7b5	2021-05-20 05:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:54:38.853+03	2021-05-20 05:54:38.862+03	
b5a9185b-1204-4d39-f235-aa5a29f0bb70	2021-05-20 05:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:54:58.853+03	2021-05-20 05:54:58.872+03	
82955eb5-39f0-ee90-80bb-da66e9472fcb	2021-05-20 05:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:55:18.853+03	2021-05-20 05:55:18.862+03	
865602e7-4618-1d6b-abd2-ea199c2df094	2021-05-20 05:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:55:38.853+03	2021-05-20 05:55:38.86+03	
73df8e5a-e34e-0d30-05a1-55ad701c51d3	2021-05-20 05:55:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:55:59.853+03	2021-05-20 05:55:59.859+03	
b6cdb6e1-7378-4242-42d9-a439bfb4f05e	2021-05-20 05:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:56:19.853+03	2021-05-20 05:56:19.86+03	
7139bfcb-97fa-2f85-4ad8-9ecedab782f3	2021-05-20 05:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:56:40.853+03	2021-05-20 05:56:40.861+03	
316f1174-8394-0605-4f91-a9d2824ac626	2021-05-20 05:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:57:00.853+03	2021-05-20 05:57:00.86+03	
621a0bed-f055-8a31-e872-8be73cac1e4f	2021-05-20 05:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:57:20.853+03	2021-05-20 05:57:20.861+03	
01db6e30-68fd-b874-0253-89c5be02d14b	2021-05-20 05:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:57:42.852+03	2021-05-20 05:57:42.86+03	
f94430ca-e0b5-ec13-f732-67284dbfc911	2021-05-20 05:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:58:02.853+03	2021-05-20 05:58:02.873+03	
a1eb3ffe-1a08-7b40-6fe7-22623370e7a9	2021-05-20 05:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:58:22.853+03	2021-05-20 05:58:22.875+03	
9bc01548-6727-04fa-05d9-42c54e8b5169	2021-05-20 05:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:58:42.853+03	2021-05-20 05:58:42.861+03	
7f0cf40b-1604-dfa2-8e3a-38d6d09a1f82	2021-05-20 05:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:59:03.852+03	2021-05-20 05:59:03.863+03	
a2f33586-620f-e24c-5753-fdaee67c756f	2021-05-20 05:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:59:23.853+03	2021-05-20 05:59:23.86+03	
47aff094-2f2f-bafd-6eeb-ad07280d4ab5	2021-05-20 05:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 05:59:45.853+03	2021-05-20 05:59:45.861+03	
00aaf1d3-a9cb-4b21-6afe-2c579554c9c9	2021-05-20 06:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 06:00:00.853+03	2021-05-20 06:00:00.86+03	ERROR
5a8bd9a4-9310-253c-3b32-41470dabf02f	2021-05-20 06:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:00:15.853+03	2021-05-20 06:00:15.887+03	
dedf7355-7026-46bd-a9fc-8e40c81a68b9	2021-05-20 06:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:00:35.853+03	2021-05-20 06:00:35.861+03	
d2430964-d931-8e15-fe4f-8fd723558a4f	2021-05-20 06:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:00:57.852+03	2021-05-20 06:00:57.864+03	
e6bbc697-f317-ea68-8b95-6077fe46006d	2021-05-20 06:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:01:17.853+03	2021-05-20 06:01:17.862+03	
55f20071-2095-9a7a-6679-b511b96bb6a1	2021-05-20 06:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:01:38.852+03	2021-05-20 06:01:38.859+03	
2bd54497-c905-4900-2de2-f78acd47a695	2021-05-20 06:01:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:01:58.853+03	2021-05-20 06:01:58.86+03	
03e68091-2f0a-47ea-0458-b34e4c15fdca	2021-05-20 06:02:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:02:18.853+03	2021-05-20 06:02:18.862+03	
96ca8d60-31cc-0ff2-932f-7e51f1feb128	2021-05-20 06:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:02:28.853+03	2021-05-20 06:02:28.872+03	
4da71917-b2ef-f431-dbd9-acec72896a0d	2021-05-20 06:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:02:48.853+03	2021-05-20 06:02:48.86+03	
157eb911-029c-c613-5da7-806028ac0440	2021-05-20 06:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:03:09.853+03	2021-05-20 06:03:09.86+03	
87088303-9f01-8700-00ce-b727beb82fee	2021-05-20 06:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:03:30.852+03	2021-05-20 06:03:30.865+03	
68cee560-99ed-2f9f-1247-4d841149ae32	2021-05-20 06:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:03:50.853+03	2021-05-20 06:03:50.869+03	
c09a2618-9d49-73d8-52a8-22bf5bbadb91	2021-05-20 06:04:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:04:11.852+03	2021-05-20 06:04:11.864+03	
28093813-c87c-bcb9-5b64-835d43bd7131	2021-05-20 06:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:04:32.853+03	2021-05-20 06:04:32.862+03	
ac29b561-198a-c071-ec04-d765ce49a44d	2021-05-20 06:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:04:53.853+03	2021-05-20 06:04:53.872+03	
d1fbc282-7deb-13ba-e3e3-3bfbb9250b91	2021-05-20 06:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:05:14.853+03	2021-05-20 06:05:14.859+03	
5140cc22-391e-d2d8-4fe4-e7dc7c163e7d	2021-05-20 06:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:05:35.852+03	2021-05-20 06:05:35.861+03	
64272368-01a4-14eb-92c9-65f787eeacaa	2021-05-20 06:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:05:55.853+03	2021-05-20 06:05:55.859+03	
55d6377b-ee31-c810-19ad-7c1e829ec99c	2021-05-20 06:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:06:15.853+03	2021-05-20 06:06:15.863+03	
b83eeeac-1fe0-bae1-05b8-331e01b2a9c1	2021-05-20 06:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:06:37.852+03	2021-05-20 06:06:37.859+03	
b40dacb5-2e7a-3195-f03c-4766f3e32ce0	2021-05-20 06:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:06:57.852+03	2021-05-20 06:06:57.859+03	
582a33d1-1a03-19f3-2f74-3734528cde6c	2021-05-20 06:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:07:17.853+03	2021-05-20 06:07:17.86+03	
f7a7e0c1-5b7b-bfc9-04a5-848514ccf13d	2021-05-20 06:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:07:38.853+03	2021-05-20 06:07:38.869+03	
adb50dff-8302-0896-d316-8878186cceb1	2021-05-20 06:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:07:59.853+03	2021-05-20 06:07:59.86+03	
80bad2d6-7a1f-360b-2622-c2a3edb74381	2021-05-20 06:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:08:20.853+03	2021-05-20 06:08:20.859+03	
363fe20c-2228-24d9-ac6c-5417c3922897	2021-05-20 06:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:08:40.853+03	2021-05-20 06:08:40.862+03	
04211bd8-2761-7e1a-c7eb-20fd7100ad50	2021-05-20 06:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:09:00.853+03	2021-05-20 06:09:00.865+03	
cccf35a0-f5ba-a3e1-b318-453e4741a646	2021-05-20 06:09:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:09:21.853+03	2021-05-20 06:09:21.869+03	
645de163-2621-181e-69aa-81098af29a6c	2021-05-20 06:09:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:09:41.853+03	2021-05-20 06:09:41.859+03	
931fd5c4-b799-005a-170e-f00798073c82	2021-05-20 06:09:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:09:51.853+03	2021-05-20 06:09:51.859+03	
e9171afb-91ab-0b05-e28f-286c05040296	2021-05-20 06:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:10:02.852+03	2021-05-20 06:10:02.869+03	
a0fe6eaf-46d8-5e84-7288-a2101c81c314	2021-05-20 06:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:10:23.852+03	2021-05-20 06:10:23.862+03	
628a0bca-2633-bb4e-0d9b-c69ca3558012	2021-05-20 06:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:10:43.852+03	2021-05-20 06:10:43.87+03	
7f0bfe96-925c-9817-0eb7-44ea1aec0aa1	2021-05-20 06:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:11:03.852+03	2021-05-20 06:11:03.859+03	
d2becd38-1233-513f-0cae-61821c3799fc	2021-05-20 06:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:11:23.852+03	2021-05-20 06:11:23.871+03	
03ddcec5-5ea8-f0fc-a7f8-1c9f2e846f38	2021-05-20 06:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:11:44.853+03	2021-05-20 06:11:44.866+03	
c3659847-1ebb-45a8-d2da-53e3343feaea	2021-05-20 06:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:12:05.852+03	2021-05-20 06:12:05.859+03	
75ed45db-e63e-d925-8f06-5d2c58510d94	2021-05-20 06:12:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:12:26.852+03	2021-05-20 06:12:26.909+03	
b1fb725c-7c0c-de57-c5b3-a888ee9812b0	2021-05-20 06:12:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:12:46.852+03	2021-05-20 06:12:46.86+03	
1a67108f-5291-0ed3-b0bc-fb7596af3a50	2021-05-20 06:13:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:13:06.853+03	2021-05-20 06:13:06.86+03	
69a41e41-d710-3cef-e44c-adaa92b984c8	2021-05-20 06:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:13:27.853+03	2021-05-20 06:13:27.863+03	
0b34d584-ec4b-27ee-0549-de1e1b24a2c5	2021-05-20 06:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:13:48.852+03	2021-05-20 06:13:48.859+03	
c86f7574-b286-2fd5-40d4-06da092dba41	2021-05-20 06:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:14:09.852+03	2021-05-20 06:14:09.862+03	
87215adc-ce6d-87df-5730-78f35b073494	2021-05-20 06:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:14:29.853+03	2021-05-20 06:14:29.861+03	
9194fc04-4f2d-fb31-e55c-329ab9f10068	2021-05-20 06:14:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:14:51.852+03	2021-05-20 06:14:51.859+03	
f0540135-efe3-8f62-2b22-c91fa7f19470	2021-05-20 06:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:15:12.853+03	2021-05-20 06:15:12.861+03	
de6c928e-a5f7-3d84-9315-f6c059e2691e	2021-05-20 07:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:06:28.853+03	2021-05-20 07:06:28.86+03	
2ab15e7f-94af-c2ee-4f51-9c08dabccff1	2021-05-20 06:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:15:32.853+03	2021-05-20 06:15:32.875+03	
42b60464-9de1-a2fc-8102-2459edc1782f	2021-05-20 06:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:15:53.852+03	2021-05-20 06:15:53.873+03	
bed4f697-8d60-0574-e551-58d212987b6e	2021-05-20 06:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:16:14.853+03	2021-05-20 06:16:14.86+03	
7fc10990-f3eb-511b-d897-8330ee5b604c	2021-05-20 06:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:16:35.852+03	2021-05-20 06:16:35.86+03	
0db180c2-b54c-e7e2-5124-4902b7a1316c	2021-05-20 06:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:16:55.852+03	2021-05-20 06:16:55.86+03	
fb88fd2a-4b41-953f-269c-8b7b520a954e	2021-05-20 06:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:17:15.853+03	2021-05-20 06:17:15.861+03	
3e6a4920-9c43-d31e-dd79-6a4cc44d92ff	2021-05-20 06:17:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:17:36.854+03	2021-05-20 06:17:36.861+03	
5b049cd8-0e45-3394-08e0-19058078fde5	2021-05-20 06:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:17:58.852+03	2021-05-20 06:17:58.859+03	
76c71b00-f5b7-bf8f-d0e9-f018304917c8	2021-05-20 06:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:18:18.853+03	2021-05-20 06:18:18.861+03	
fbcae0fc-0c58-5f25-fe40-8a1601819edf	2021-05-20 06:18:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:18:39.852+03	2021-05-20 06:18:39.86+03	
a694a766-34a7-a068-d63c-8ff4248f61d9	2021-05-20 06:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:18:59.853+03	2021-05-20 06:18:59.862+03	
7e30d057-3b1d-f101-0ec8-a34e2c808340	2021-05-20 06:19:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:19:21.852+03	2021-05-20 06:19:21.861+03	
ed83dd08-832f-cbf4-6ff2-0b3b72674fbb	2021-05-20 06:19:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:19:41.854+03	2021-05-20 06:19:41.87+03	
82dc71bc-731e-9d14-3d7f-afc340358023	2021-05-20 06:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 06:20:00.853+03	2021-05-20 06:20:00.858+03	ERROR
1664fab4-72ee-6bd9-c825-272fb6b55563	2021-05-20 06:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:20:12.853+03	2021-05-20 06:20:12.871+03	
89e4df48-7a4f-1f97-142f-c8d691f1d405	2021-05-20 06:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:20:33.852+03	2021-05-20 06:20:33.859+03	
93138fc1-6cd4-8d7f-7ff1-77d6fba7cec1	2021-05-20 06:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:20:53.853+03	2021-05-20 06:20:53.861+03	
988d98ae-e34d-27a2-17c1-eda4c54dbbf3	2021-05-20 06:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:21:13.853+03	2021-05-20 06:21:13.861+03	
3e942cc9-be4e-0c84-c000-5debc3d0a118	2021-05-20 06:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:21:33.853+03	2021-05-20 06:21:33.86+03	
f63133be-9d94-12be-9d59-6980da674fea	2021-05-20 06:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:21:53.853+03	2021-05-20 06:21:53.859+03	
d6e66fe7-3f51-aa85-d4aa-3673b7bfef22	2021-05-20 06:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:22:14.853+03	2021-05-20 06:22:14.86+03	
4b9aca1e-c516-9c7f-d2ca-1b25684c43fc	2021-05-20 06:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:22:35.853+03	2021-05-20 06:22:35.862+03	
7d716040-840b-a1de-8140-d0986c99d96c	2021-05-20 06:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:22:55.853+03	2021-05-20 06:22:55.862+03	
bb3c1f2c-169d-70c3-2631-f5fc38df40b2	2021-05-20 06:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:23:17.852+03	2021-05-20 06:23:17.86+03	
c2e553ed-2f99-0428-b80e-9081e7036a2e	2021-05-20 06:23:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:23:37.853+03	2021-05-20 06:23:37.86+03	
44168b51-65e2-ce4d-f19c-5898bfaecd8a	2021-05-20 06:23:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:23:57.853+03	2021-05-20 06:23:57.862+03	
915e32ed-627d-2175-72fd-fe71582a0eff	2021-05-20 06:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:24:17.853+03	2021-05-20 06:24:17.86+03	
54de6012-6b46-e26c-74e7-dfb5bb10a2bf	2021-05-20 06:24:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:24:38.852+03	2021-05-20 06:24:38.86+03	
13152368-5b22-c6f6-93d4-48a7440beebb	2021-05-20 06:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:24:59.853+03	2021-05-20 06:24:59.86+03	
90307bbc-2968-b92a-e1ca-b3af1cb2a533	2021-05-20 06:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:25:19.853+03	2021-05-20 06:25:19.863+03	
95137b58-98b5-01dd-a4e3-f02ca04d7099	2021-05-20 06:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:25:39.853+03	2021-05-20 06:25:39.86+03	
5fc8d4c2-52f7-7928-0d37-02bae33ff4b2	2021-05-20 06:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:25:59.853+03	2021-05-20 06:25:59.859+03	
e140fd90-6f6a-cd21-c63c-57b2847e007d	2021-05-20 06:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:26:19.853+03	2021-05-20 06:26:19.859+03	
72dd772e-0d54-ade8-ee29-5d1497291e0d	2021-05-20 06:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:26:39.853+03	2021-05-20 06:26:39.861+03	
157ee4a2-95a8-eaf2-5778-e1a543b12f72	2021-05-20 06:26:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:26:59.853+03	2021-05-20 06:26:59.861+03	
7f25bd41-080e-6e09-a234-5c33800cff22	2021-05-20 06:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:27:19.853+03	2021-05-20 06:27:19.866+03	
66a188c7-cc2c-d054-ae26-ad4ca9b03427	2021-05-20 06:27:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:27:39.853+03	2021-05-20 06:27:39.862+03	
8557c1ba-0cf2-b6d0-c7c3-0be6422ba38b	2021-05-20 06:28:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:28:00.853+03	2021-05-20 06:28:00.86+03	
90057e31-a5a5-4568-3fae-86d44cd00aef	2021-05-20 06:28:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:28:21.855+03	2021-05-20 06:28:21.862+03	
8c5f5177-d29f-ce99-86f4-cc0c8e543a07	2021-05-20 06:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:28:42.853+03	2021-05-20 06:28:42.864+03	
586f0b57-4379-8924-ddad-9cd76d34c973	2021-05-20 06:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:29:03.853+03	2021-05-20 06:29:03.859+03	
fe839fc2-fbf9-7bac-da05-ebc85ae05760	2021-05-20 06:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:29:24.853+03	2021-05-20 06:29:24.861+03	
8d63b7d5-1589-a234-c913-6e8831e4486c	2021-05-20 06:29:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:29:44.853+03	2021-05-20 06:29:44.863+03	
9c5a2f53-41f5-e557-96eb-5b29e407c2e0	2021-05-20 06:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 06:30:00.852+03	2021-05-20 06:30:00.859+03	ERROR
ee4cebf5-0a78-2e36-6fac-aedc9cf8b0a8	2021-05-20 06:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:30:14.853+03	2021-05-20 06:30:14.861+03	
9ff474c4-bb55-7be5-e3af-3bf2a6a7068c	2021-05-20 06:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:30:34.853+03	2021-05-20 06:30:34.861+03	
4c86ea56-d1e4-c866-6dc7-aae36c2a9389	2021-05-20 06:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:30:54.853+03	2021-05-20 06:30:54.862+03	
c1bf41bb-6ebf-a435-c45f-96feabe39f71	2021-05-20 06:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:31:15.853+03	2021-05-20 06:31:15.867+03	
33833215-2535-f08d-dd6a-c4ec04852581	2021-05-20 06:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:31:36.853+03	2021-05-20 06:31:36.86+03	
c9559a89-0f6e-7d21-30c9-9440298cdff7	2021-05-20 06:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:31:57.852+03	2021-05-20 06:31:57.859+03	
5fa5e807-83d5-ee56-4c44-eea25a5d3efd	2021-05-20 06:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:32:17.853+03	2021-05-20 06:32:17.86+03	
32128958-4196-6010-d426-9042e17fc87d	2021-05-20 06:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:32:37.853+03	2021-05-20 06:32:37.861+03	
7369ba0b-3756-f006-ee95-ee8d5b3918d8	2021-05-20 06:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:32:58.853+03	2021-05-20 06:32:58.866+03	
ae64ead0-13bc-995b-b4e8-7d872d0c31ff	2021-05-20 06:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:33:19.853+03	2021-05-20 06:33:19.87+03	
efbac1f3-bbdb-b345-4233-a690f3cf01b1	2021-05-20 06:33:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:33:41.852+03	2021-05-20 06:33:41.859+03	
667fa058-82a8-94f7-2edf-47f8277f60ef	2021-05-20 06:34:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:34:01.852+03	2021-05-20 06:34:01.862+03	
1502a9e2-914d-a3c0-cda1-9306b3af2ee9	2021-05-20 06:34:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:34:21.852+03	2021-05-20 06:34:21.876+03	
252c0eff-4d39-c217-ef76-bbd8015cc01c	2021-05-20 06:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:34:42.852+03	2021-05-20 06:34:42.903+03	
109aa7b4-8a0a-154f-8b6c-1701a10b69cb	2021-05-20 06:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:35:02.852+03	2021-05-20 06:35:02.86+03	
fbc855c1-0d56-7c22-d898-ab565b3bb393	2021-05-20 06:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:35:22.853+03	2021-05-20 06:35:22.859+03	
b1b09016-7e30-4dbe-b468-12018f1e7919	2021-05-20 06:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:35:42.853+03	2021-05-20 06:35:42.86+03	
f49fb177-8857-f337-b217-61a37b117823	2021-05-20 06:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:15:42.853+03	2021-05-20 06:15:42.861+03	
b5439f32-e976-9ee2-5de1-830df4d49767	2021-05-20 06:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:16:03.853+03	2021-05-20 06:16:03.86+03	
c32ab337-2e98-2967-353b-c3c430078321	2021-05-20 06:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:16:25.852+03	2021-05-20 06:16:25.87+03	
43f693b4-48b2-8f9d-ef4a-95b29e62b69a	2021-05-20 06:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:16:45.852+03	2021-05-20 06:16:45.86+03	
e91faf67-9331-a5ba-4e7a-80a7c27c2200	2021-05-20 06:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:17:05.852+03	2021-05-20 06:17:05.86+03	
9a2b77dd-390b-7be2-fe59-05817d4cc0bc	2021-05-20 06:17:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:17:26.852+03	2021-05-20 06:17:26.859+03	
9a0dac9a-f0ec-003b-2bce-3b09b8bf312d	2021-05-20 06:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:17:47.853+03	2021-05-20 06:17:47.861+03	
0f01c329-b479-1fcb-0b12-297e6ed02705	2021-05-20 06:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:18:08.852+03	2021-05-20 06:18:08.864+03	
8786160e-fdd7-20f8-c44f-5f4e4b8c93bf	2021-05-20 06:18:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:18:29.852+03	2021-05-20 06:18:29.859+03	
8b052314-62d2-536c-bd1d-ba7d1935fec9	2021-05-20 06:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:18:49.853+03	2021-05-20 06:18:49.86+03	
fdeaf08c-590a-8202-4fc2-61863ebfb53c	2021-05-20 06:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:19:10.853+03	2021-05-20 06:19:10.86+03	
04837a45-9305-823a-6657-3e7d354fa400	2021-05-20 06:19:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:19:31.853+03	2021-05-20 06:19:31.869+03	
afe0d747-af91-af95-a9e6-c42e42a0174d	2021-05-20 06:19:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:19:51.854+03	2021-05-20 06:19:51.863+03	
e07eadae-cf52-b66d-55af-b07f6c831a00	2021-05-20 06:20:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:20:02.853+03	2021-05-20 06:20:02.861+03	
49fa1b59-e760-6c97-de3b-fac0b89e9374	2021-05-20 06:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:20:23.852+03	2021-05-20 06:20:23.858+03	
8f9ddc3e-9287-b96e-0e2d-32faecb79c01	2021-05-20 06:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:20:43.853+03	2021-05-20 06:20:43.873+03	
978a9a27-7b80-84b7-54ee-17ac0eb73745	2021-05-20 06:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:21:03.853+03	2021-05-20 06:21:03.86+03	
0b7248b0-2475-e85d-a945-2f4954adf6c5	2021-05-20 06:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:21:23.853+03	2021-05-20 06:21:23.86+03	
8f3fba21-c9b1-22e2-ee28-36964c9c6007	2021-05-20 06:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:21:43.853+03	2021-05-20 06:21:43.861+03	
c3a0840f-c32f-1442-e0a7-f71e88d4bfef	2021-05-20 06:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:22:04.853+03	2021-05-20 06:22:04.859+03	
a158aefb-0d56-71a7-28c9-7915d14ee40e	2021-05-20 06:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:22:25.852+03	2021-05-20 06:22:25.859+03	
1e04ebc3-9ebc-7213-f85b-167be64e70d2	2021-05-20 06:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:22:45.853+03	2021-05-20 06:22:45.863+03	
37a409e9-779e-3c13-c212-92bc6eda805a	2021-05-20 06:23:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:23:06.853+03	2021-05-20 06:23:06.861+03	
b84728d9-e481-2821-5c51-b592d82d8ed9	2021-05-20 06:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:23:27.853+03	2021-05-20 06:23:27.861+03	
edfbe00d-034c-56d8-f47d-8c7e70965d73	2021-05-20 06:23:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:23:47.853+03	2021-05-20 06:23:47.863+03	
7ec73eb8-51ea-c022-d5cd-faed41b901cf	2021-05-20 06:24:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:24:07.853+03	2021-05-20 06:24:07.862+03	
702c540a-04be-65ef-9ef6-75cb4a22612c	2021-05-20 06:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:24:27.853+03	2021-05-20 06:24:27.861+03	
28f48334-1aff-4d63-7bfd-588118f3542d	2021-05-20 06:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:24:48.853+03	2021-05-20 06:24:48.862+03	
1a2a78c2-8b9e-7b7b-7b73-c411a395d556	2021-05-20 06:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:25:09.853+03	2021-05-20 06:25:09.861+03	
1608feb4-56ae-ae75-a0ea-45051adeda93	2021-05-20 06:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:25:29.853+03	2021-05-20 06:25:29.863+03	
a83cad3a-3b11-d090-1b29-0f240811b5a1	2021-05-20 06:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:25:49.853+03	2021-05-20 06:25:49.86+03	
8c675666-15dc-56f9-1dc3-fd7456e6c4cf	2021-05-20 06:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:26:09.853+03	2021-05-20 06:26:09.86+03	
e17e8652-30fa-f8c5-1330-66f9f8f85b33	2021-05-20 06:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:26:29.853+03	2021-05-20 06:26:29.861+03	
7c78b384-6edc-5921-72e5-3c48ad9a52e1	2021-05-20 06:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:26:49.853+03	2021-05-20 06:26:49.86+03	
cbe0dfdd-242e-8568-099d-4b80502b30e8	2021-05-20 06:27:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:27:09.853+03	2021-05-20 06:27:09.862+03	
a4dfbc49-4989-d62e-3411-9f5cee12250f	2021-05-20 06:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:27:29.853+03	2021-05-20 06:27:29.861+03	
705813f9-31a1-7e73-4d1e-5c4eec2006fd	2021-05-20 06:27:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:27:50.852+03	2021-05-20 06:27:50.863+03	
1426049c-aef0-f6cf-e9c7-9ce8200bf720	2021-05-20 06:28:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:28:11.853+03	2021-05-20 06:28:11.86+03	
c152aea2-7a90-539c-ee99-6238e3efbb58	2021-05-20 06:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:28:32.853+03	2021-05-20 06:28:32.86+03	
1250cf38-5772-82f9-a8ca-bc704fa9cf6b	2021-05-20 06:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:28:53.852+03	2021-05-20 06:28:53.859+03	
b99c7fcc-99b3-671b-e3cb-42a12bc02bfb	2021-05-20 06:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:29:14.852+03	2021-05-20 06:29:14.861+03	
3fe72a43-4d8d-cf31-dfb2-b1fdf51c1210	2021-05-20 06:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:29:34.853+03	2021-05-20 06:29:34.86+03	
07b8cbfc-994c-c6c9-8409-021f01761c75	2021-05-20 06:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:29:54.853+03	2021-05-20 06:29:54.874+03	
51fa68a3-3243-6d07-48f2-af0e538dddb7	2021-05-20 06:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:30:04.853+03	2021-05-20 06:30:04.86+03	
1a8b606a-08b4-3dc2-7941-02c23db7c734	2021-05-20 06:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:30:24.853+03	2021-05-20 06:30:24.86+03	
d325444e-3d14-ad0b-1ed9-23dae2b7536a	2021-05-20 06:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:30:44.853+03	2021-05-20 06:30:44.859+03	
2e0b6cae-1110-227f-c558-614876f55d20	2021-05-20 06:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:31:05.852+03	2021-05-20 06:31:05.861+03	
6489890b-daf4-a261-32ec-7809150f9292	2021-05-20 06:31:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:31:26.852+03	2021-05-20 06:31:26.86+03	
9c426558-fcea-c92c-2e41-c5e94e9e9549	2021-05-20 06:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:31:47.852+03	2021-05-20 06:31:47.873+03	
fc85a871-1e4f-bafc-1569-dc61f3a9741e	2021-05-20 06:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:32:07.853+03	2021-05-20 06:32:07.859+03	
b8961f7d-c104-eda8-7248-c9ed48650c7e	2021-05-20 06:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:32:27.853+03	2021-05-20 06:32:27.864+03	
5bcaf104-58df-e15f-7bb9-33c99bc5a1f6	2021-05-20 06:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:32:48.853+03	2021-05-20 06:32:48.863+03	
79b1ff3c-94e7-0a67-3c08-d79ccf654524	2021-05-20 06:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:33:09.853+03	2021-05-20 06:33:09.872+03	
8ab39df8-a63e-cb43-470c-e97af1e819df	2021-05-20 06:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:33:30.853+03	2021-05-20 06:33:30.859+03	
2d9a02c9-1f79-f191-f394-1c2171522689	2021-05-20 06:33:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:33:51.852+03	2021-05-20 06:33:51.859+03	
f5865c13-6a8f-3db9-f1e2-f8490013b9ca	2021-05-20 06:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:34:11.852+03	2021-05-20 06:34:11.859+03	
9474957e-b175-e6d5-0908-f3c6c254fd41	2021-05-20 06:34:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:34:31.853+03	2021-05-20 06:34:31.865+03	
476aa034-6a5c-650b-3d9f-88fd28c4330c	2021-05-20 06:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:34:52.852+03	2021-05-20 06:34:52.869+03	
6b1e3e37-1532-1148-bd55-826615094188	2021-05-20 06:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:35:12.853+03	2021-05-20 06:35:12.861+03	
a02124e4-090f-52db-e922-09b4d04f950c	2021-05-20 06:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:35:32.853+03	2021-05-20 06:35:32.86+03	
e10adef1-3a26-ace7-c3fc-322a7b5bf753	2021-05-20 06:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:35:53.853+03	2021-05-20 06:35:53.861+03	
6c5419cf-2324-a410-5960-79a38b8d3e2e	2021-05-20 06:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:36:04.852+03	2021-05-20 06:36:04.859+03	
e90ac8d9-d901-e138-913f-a037e2eda93a	2021-05-20 06:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:36:14.852+03	2021-05-20 06:36:14.858+03	
a11cc994-102a-813b-522e-99475019734f	2021-05-20 06:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:36:24.852+03	2021-05-20 06:36:24.861+03	
399d940e-8e15-993b-80c4-b787f746b307	2021-05-20 06:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:36:44.852+03	2021-05-20 06:36:44.858+03	
e379fe23-dff2-08e5-ffcb-8056845b6538	2021-05-20 06:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:37:04.853+03	2021-05-20 06:37:04.862+03	
4c0fa51a-15d2-c58b-e4fb-552c2d251f09	2021-05-20 06:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:37:24.853+03	2021-05-20 06:37:24.86+03	
5a3799c9-3ab6-ae7b-adf0-0dba4eea617f	2021-05-20 06:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:37:46.852+03	2021-05-20 06:37:46.86+03	
cc870e7f-f404-4e05-5f7b-44ebc84f1253	2021-05-20 06:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:38:07.852+03	2021-05-20 06:38:07.874+03	
d226738b-b75e-378d-6ba1-a9669e13b422	2021-05-20 06:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:38:27.852+03	2021-05-20 06:38:27.86+03	
821730f4-af85-7238-1877-d24e24d6bf34	2021-05-20 06:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:38:47.853+03	2021-05-20 06:38:47.861+03	
a5504d54-e852-cc7b-8c2d-2b9940a4056e	2021-05-20 06:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:39:08.853+03	2021-05-20 06:39:08.862+03	
cd959052-5dbd-b501-68ce-081f41f1a97d	2021-05-20 06:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:39:28.853+03	2021-05-20 06:39:28.861+03	
e0b71db4-ac94-43b5-bf72-f834c332dc49	2021-05-20 06:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:39:49.852+03	2021-05-20 06:39:49.874+03	
c31e09e3-dde8-367d-f206-e0285ec323a3	2021-05-20 06:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 06:40:00.853+03	2021-05-20 06:40:00.857+03	ERROR
0953e7cf-9d34-5b0a-67a0-564ae638d91c	2021-05-20 06:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:40:20.853+03	2021-05-20 06:40:20.861+03	
d04ed7ea-53ad-bc4b-8ae9-4db8ebf7a908	2021-05-20 06:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:40:40.853+03	2021-05-20 06:40:40.86+03	
c2c73f62-95de-b26a-e685-03947a758ca1	2021-05-20 06:41:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:41:01.854+03	2021-05-20 06:41:01.86+03	
3fa8d54f-61d0-74c1-d2e4-200948ec684e	2021-05-20 06:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:41:22.853+03	2021-05-20 06:41:22.861+03	
fd4e870e-964c-bbed-d319-eb5ddf13abc0	2021-05-20 06:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:41:42.853+03	2021-05-20 06:41:42.86+03	
4dd9395b-366e-fe15-eb21-fe9cd56162a6	2021-05-20 06:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:42:03.853+03	2021-05-20 06:42:03.86+03	
53f0fb95-f367-4bca-4803-3049dfbd5d4c	2021-05-20 06:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:42:25.852+03	2021-05-20 06:42:25.86+03	
f72a4a80-2335-f517-d18d-41c907292339	2021-05-20 06:42:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:42:46.854+03	2021-05-20 06:42:46.861+03	
0a24cb0e-3566-d17b-36ed-b81de229a0f2	2021-05-20 06:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:43:07.852+03	2021-05-20 06:43:07.859+03	
fcf07399-3afa-4d64-f6d4-e519e13b431b	2021-05-20 06:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:43:27.853+03	2021-05-20 06:43:27.864+03	
25b7dace-fe9e-10c3-0bc1-9339416c4645	2021-05-20 06:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:43:48.853+03	2021-05-20 06:43:48.859+03	
954f1356-df10-e6de-0dd7-44700284c17c	2021-05-20 06:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:44:09.852+03	2021-05-20 06:44:09.861+03	
3ac513cf-a70c-4b26-6e8c-e36f2444507d	2021-05-20 06:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:44:30.852+03	2021-05-20 06:44:30.876+03	
f039acce-4a92-8c09-aa5b-5bed31c04b1f	2021-05-20 06:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:44:50.852+03	2021-05-20 06:44:50.859+03	
1f383dce-b12f-b4b2-ec02-fed361e30381	2021-05-20 06:45:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:45:11.852+03	2021-05-20 06:45:11.873+03	
b379f844-a934-bf5c-e230-f94154ab22ab	2021-05-20 06:45:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:45:31.854+03	2021-05-20 06:45:31.861+03	
eff1db4e-15d9-d2b1-fc18-df8a92e6da47	2021-05-20 06:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:45:52.853+03	2021-05-20 06:45:52.864+03	
b0482b35-2494-30d9-73d7-52f58d1a885b	2021-05-20 06:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:46:12.853+03	2021-05-20 06:46:12.86+03	
8b7165f5-94fd-2c1f-c048-8afaa8adc5b2	2021-05-20 06:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:46:33.853+03	2021-05-20 06:46:33.859+03	
aa2ce711-eff8-c0c0-cd6d-795c41345360	2021-05-20 06:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:46:54.853+03	2021-05-20 06:46:54.86+03	
1ca4d72a-8686-df07-ca14-62881de29fdf	2021-05-20 06:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:47:15.853+03	2021-05-20 06:47:15.859+03	
07e92d56-7e42-1099-dc0f-3a75f79020d9	2021-05-20 06:47:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:47:36.853+03	2021-05-20 06:47:36.866+03	
9d8e2c45-c743-27c0-2abc-844db1d6a839	2021-05-20 06:47:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:47:56.854+03	2021-05-20 06:47:56.862+03	
55c51904-2f03-ccc0-4f25-120d26888fb6	2021-05-20 06:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:48:17.852+03	2021-05-20 06:48:17.86+03	
035f986c-7210-0c0b-ac88-78de48a12914	2021-05-20 06:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:48:38.852+03	2021-05-20 06:48:38.86+03	
5657ad04-94af-0529-39b4-3200d32329a9	2021-05-20 06:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:48:58.853+03	2021-05-20 06:48:58.859+03	
6668970c-cde0-a0a3-511d-8c5f93ec2eba	2021-05-20 06:49:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:49:20.853+03	2021-05-20 06:49:20.859+03	
838e2719-8408-86e3-fbb5-7b3c12afd3a1	2021-05-20 06:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:49:42.852+03	2021-05-20 06:49:42.861+03	
0e5ebee6-569e-2a21-8429-0b56ca27609b	2021-05-20 06:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 06:50:00.852+03	2021-05-20 06:50:00.857+03	ERROR
0e52b15d-17ca-889c-864b-5d48685d856e	2021-05-20 06:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:50:12.853+03	2021-05-20 06:50:12.878+03	
1318384b-a9b1-58d0-0aad-93d4c98c1223	2021-05-20 06:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:50:32.853+03	2021-05-20 06:50:32.86+03	
79068834-b609-1c46-f7f6-5d74304e3acf	2021-05-20 06:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:50:52.853+03	2021-05-20 06:50:52.874+03	
686ea771-6242-96d5-90a1-ba56d087a2b9	2021-05-20 06:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:51:13.853+03	2021-05-20 06:51:13.86+03	
df048832-98d7-20cc-735c-fd4714881253	2021-05-20 06:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:51:33.853+03	2021-05-20 06:51:33.862+03	
bdc34b14-09be-746c-3194-fb97f9ccbf56	2021-05-20 06:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:51:54.853+03	2021-05-20 06:51:54.863+03	
af22a0c7-b888-47e5-806d-06f624d1da59	2021-05-20 06:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:52:15.852+03	2021-05-20 06:52:15.859+03	
83c4c83e-c2f0-5c73-2b75-54412ac45804	2021-05-20 06:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:52:35.852+03	2021-05-20 06:52:35.859+03	
070b2405-b5ed-f6d8-2bf9-d9aee52df586	2021-05-20 06:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:52:55.853+03	2021-05-20 06:52:55.861+03	
8c292ade-34e0-2cc2-3807-e7155c9812a5	2021-05-20 06:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:53:15.853+03	2021-05-20 06:53:15.861+03	
64656337-0335-863b-ba94-b710d5107c8e	2021-05-20 06:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:53:35.853+03	2021-05-20 06:53:35.864+03	
321b943a-4b9f-d1ab-1297-341296539894	2021-05-20 06:53:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:53:56.852+03	2021-05-20 06:53:56.86+03	
b6794a2f-3aea-3653-eaba-dba94edb7385	2021-05-20 06:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:54:17.853+03	2021-05-20 06:54:17.86+03	
926cecb3-1e7f-0232-4ccc-aa44acf8b687	2021-05-20 06:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:54:37.853+03	2021-05-20 06:54:37.862+03	
d95c7113-f35b-9f90-d076-f35a66dcd61d	2021-05-20 06:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:54:59.852+03	2021-05-20 06:54:59.859+03	
b0d8284a-241d-1337-2410-6a43894349f1	2021-05-20 06:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:55:19.852+03	2021-05-20 06:55:19.859+03	
b326fa71-57ca-36f5-2869-b69f10772e51	2021-05-20 06:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:55:39.853+03	2021-05-20 06:55:39.866+03	
1b710543-0ff8-f9cd-3d31-204b197a2c57	2021-05-20 06:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:56:00.853+03	2021-05-20 06:56:00.86+03	
59883319-8d09-dd02-ec8f-dd9ff18e399d	2021-05-20 06:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:56:20.853+03	2021-05-20 06:56:20.861+03	
294f152c-54a8-bade-5760-466ee63fd2ae	2021-05-20 06:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:56:40.853+03	2021-05-20 06:56:40.863+03	
c2e20bc3-aa49-843c-ae3e-1987963643bb	2021-05-20 06:57:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:57:01.854+03	2021-05-20 06:57:01.869+03	
515425bb-da88-b613-bbbb-30aec8fd867e	2021-05-20 06:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:57:22.853+03	2021-05-20 06:57:22.859+03	
50601702-d49c-61f4-9252-cea426b3f33b	2021-05-20 06:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:36:34.852+03	2021-05-20 06:36:34.861+03	
45be34b2-26af-54c4-6ad3-211dda0a12a5	2021-05-20 06:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:36:54.852+03	2021-05-20 06:36:54.859+03	
0841ee1d-c783-a760-85de-22b758c8aa9a	2021-05-20 06:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:37:14.853+03	2021-05-20 06:37:14.859+03	
0fa08ad4-a459-0240-8cf3-e4802ad771e7	2021-05-20 06:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:37:35.853+03	2021-05-20 06:37:35.862+03	
6b7d5951-4503-45be-f59c-d30b837945d5	2021-05-20 06:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:37:56.853+03	2021-05-20 06:37:56.86+03	
7912d793-9078-11f0-2613-28117909f599	2021-05-20 06:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:38:17.852+03	2021-05-20 06:38:17.859+03	
341542d1-ff54-36e0-eccb-b39c325e3419	2021-05-20 06:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:38:37.853+03	2021-05-20 06:38:37.86+03	
015de1a1-95df-9083-9a5c-5ada95b832fc	2021-05-20 06:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:38:57.853+03	2021-05-20 06:38:57.861+03	
561df187-261c-0309-2fc0-246b180edf3f	2021-05-20 06:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:39:18.853+03	2021-05-20 06:39:18.86+03	
ff3ce7b4-db0a-4f71-24e4-2ac45e1363eb	2021-05-20 06:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:39:39.852+03	2021-05-20 06:39:39.859+03	
d683d965-0b8e-dd8e-9720-d40434631a65	2021-05-20 06:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:39:59.852+03	2021-05-20 06:39:59.86+03	
05a90233-d02b-44ab-3266-655c2f5d6f9a	2021-05-20 06:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:40:09.853+03	2021-05-20 06:40:09.86+03	
0c50323e-7c34-7c69-1602-c176dac0ba07	2021-05-20 06:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:40:30.853+03	2021-05-20 06:40:30.86+03	
c901d1ac-3a3b-ed25-4ec9-1eee9b015fd4	2021-05-20 06:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:40:50.853+03	2021-05-20 06:40:50.859+03	
f26becf7-9980-8e27-8506-6714479a16d1	2021-05-20 06:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:41:12.853+03	2021-05-20 06:41:12.86+03	
b741de82-90ac-1fb1-86c4-57601e156a60	2021-05-20 06:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:41:32.853+03	2021-05-20 06:41:32.862+03	
b8ea7961-a0fc-0a76-766a-28ad733a7ebd	2021-05-20 06:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:41:53.853+03	2021-05-20 06:41:53.861+03	
d17cb789-a20d-90de-2b57-8fef2b59beba	2021-05-20 06:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:42:14.853+03	2021-05-20 06:42:14.86+03	
8a2610d4-be75-0b66-c208-dee14886e637	2021-05-20 06:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:42:35.853+03	2021-05-20 06:42:35.869+03	
6908ec5d-3e3f-4cee-5176-a33940f9dd1a	2021-05-20 06:42:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:42:56.854+03	2021-05-20 06:42:56.863+03	
d2399ca3-06f3-3f4c-e22e-a3e08cf2d2b3	2021-05-20 06:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:43:17.852+03	2021-05-20 06:43:17.861+03	
025ec6c0-fde3-86a4-f8fa-71c9cd920885	2021-05-20 06:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:43:38.853+03	2021-05-20 06:43:38.861+03	
fcc86c3b-a2aa-1bf5-d522-f0258b414e90	2021-05-20 06:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:43:58.853+03	2021-05-20 06:43:58.86+03	
da02eb25-c86e-769d-5785-4c6e148fc1d7	2021-05-20 06:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:44:19.853+03	2021-05-20 06:44:19.861+03	
c3987f86-020d-3b3b-52bf-282706d0509f	2021-05-20 06:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:44:40.852+03	2021-05-20 06:44:40.864+03	
d3e1e1fe-dcaa-33f1-6c0a-2c4a1bf75d7f	2021-05-20 06:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:45:00.853+03	2021-05-20 06:45:00.859+03	
a4d9dd38-1929-0b26-5090-ba4970b80e3e	2021-05-20 06:45:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:45:21.852+03	2021-05-20 06:45:21.874+03	
84115b41-788f-58f7-d0ef-ed5aedf278e2	2021-05-20 06:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:45:42.853+03	2021-05-20 06:45:42.86+03	
e5cdbf0e-6b59-e1b8-3bbb-e3909bfefaec	2021-05-20 06:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:46:02.853+03	2021-05-20 06:46:02.859+03	
ef5b9e2c-9094-6be9-11b6-b8e929cba474	2021-05-20 06:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:46:23.853+03	2021-05-20 06:46:23.86+03	
a17dfd80-061c-0a0c-2f86-ee7505973171	2021-05-20 06:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:46:44.852+03	2021-05-20 06:46:44.86+03	
2511b6dc-b538-09a5-f70f-20400f51211c	2021-05-20 06:47:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:47:04.853+03	2021-05-20 06:47:04.861+03	
182e2908-8e42-a1e9-c2b8-80459fe67c56	2021-05-20 06:47:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:47:26.852+03	2021-05-20 06:47:26.859+03	
6d1c6955-0ab6-60a5-3c7e-44fb7b25bf63	2021-05-20 06:47:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:47:46.853+03	2021-05-20 06:47:46.88+03	
368e6c10-1af5-b04c-6f4b-7ee5e634117d	2021-05-20 06:48:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:48:06.854+03	2021-05-20 06:48:06.861+03	
8045b2b3-5965-cecd-4117-32c822e5d7fa	2021-05-20 06:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:48:27.853+03	2021-05-20 06:48:27.865+03	
18fd333d-0dab-3849-c6f2-7ab437451508	2021-05-20 06:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:48:48.852+03	2021-05-20 06:48:48.859+03	
b9b26edc-6e36-41aa-e58c-299ced37cf92	2021-05-20 06:49:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:49:09.853+03	2021-05-20 06:49:09.861+03	
15e3639a-33e2-4523-d663-11f0ca7ed65d	2021-05-20 06:49:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:49:31.853+03	2021-05-20 06:49:31.86+03	
1b76b5ce-9c28-be75-b1db-7c40f026a601	2021-05-20 06:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:49:52.852+03	2021-05-20 06:49:52.859+03	
23e2bf57-fcf5-95fd-2c49-2a78b8fe2d05	2021-05-20 06:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:50:02.853+03	2021-05-20 06:50:02.871+03	
a5be324d-98f8-c0fe-013b-05a06bca4d1f	2021-05-20 06:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:50:22.853+03	2021-05-20 06:50:22.859+03	
c8d0a331-4fec-c48d-8c5a-a0a817b5d85e	2021-05-20 06:50:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:50:42.853+03	2021-05-20 06:50:42.86+03	
ebdc9f74-4d0a-e531-fe80-c62516118c4c	2021-05-20 06:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:51:02.853+03	2021-05-20 06:51:02.859+03	
5857c5b4-9dda-d442-0dba-f91266de64f8	2021-05-20 06:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:51:23.853+03	2021-05-20 06:51:23.861+03	
b18b110f-7d7a-8b55-21ba-b745075036c6	2021-05-20 06:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:51:44.852+03	2021-05-20 06:51:44.861+03	
74d45fdc-eff4-557a-4237-a4e95de83249	2021-05-20 06:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:52:05.852+03	2021-05-20 06:52:05.861+03	
c6e96710-ee11-16d2-c9a7-613fa3b5ff2d	2021-05-20 06:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:52:25.852+03	2021-05-20 06:52:25.859+03	
0385d6c2-1ae7-de42-5651-ed1f7d1fc2bc	2021-05-20 06:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:52:45.853+03	2021-05-20 06:52:45.86+03	
4dec159e-7152-75d4-9df9-88f3617ea0d4	2021-05-20 06:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:53:05.853+03	2021-05-20 06:53:05.859+03	
70572a8e-752b-071f-e53e-9fbed33fcafd	2021-05-20 06:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:53:25.853+03	2021-05-20 06:53:25.86+03	
a71d8b1d-8067-2a29-c34d-c051e61beae4	2021-05-20 06:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:53:45.853+03	2021-05-20 06:53:45.86+03	
3489d1e7-6481-84c1-b747-086efdf20b16	2021-05-20 06:54:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:54:06.853+03	2021-05-20 06:54:06.859+03	
54d2c1bb-50bf-078e-e0c7-b90c64a3fd27	2021-05-20 06:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:54:27.853+03	2021-05-20 06:54:27.86+03	
7070ce3b-75b9-ec4c-3326-a962ec6aaf31	2021-05-20 06:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:54:48.853+03	2021-05-20 06:54:48.859+03	
22add8f3-f768-2ece-975e-fa445f7e5e40	2021-05-20 06:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:55:09.852+03	2021-05-20 06:55:09.859+03	
0419bf6b-b7da-4dea-2237-4a1006bf293e	2021-05-20 06:55:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:55:29.853+03	2021-05-20 06:55:29.861+03	
a2649a37-4853-e78a-877a-2273abc1d175	2021-05-20 06:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:55:50.852+03	2021-05-20 06:55:50.861+03	
867acbf9-9fe8-9e58-c2b3-5d7def0020c6	2021-05-20 06:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:56:10.853+03	2021-05-20 06:56:10.86+03	
a8aa6927-d2c8-13e1-1076-57deae601e23	2021-05-20 06:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:56:30.853+03	2021-05-20 06:56:30.86+03	
a9257f21-cbeb-3c03-0b0f-5019e5c7a161	2021-05-20 06:56:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:56:51.852+03	2021-05-20 06:56:51.859+03	
bee4972f-e2a8-c7a9-71a0-9fd8deaa16e1	2021-05-20 06:57:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:57:11.854+03	2021-05-20 06:57:11.867+03	
e112f517-8070-0fcc-4a20-55a2823103c0	2021-05-20 06:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:57:33.853+03	2021-05-20 06:57:33.861+03	
32dbf333-cffa-e298-7747-99b4a414d730	2021-05-20 14:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:50:23.853+03	2021-05-20 14:50:23.86+03	
93c21bd1-e07d-5dc4-17cf-02e064f912c4	2021-05-20 06:57:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:57:43.853+03	2021-05-20 06:57:43.87+03	
e8684d1c-effc-3558-7121-dd01e92c3a4e	2021-05-20 07:06:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:06:38.854+03	2021-05-20 07:06:38.861+03	
c50d3e31-f6d8-a73d-8a99-bca0c460f5e9	2021-05-20 06:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:58:05.853+03	2021-05-20 06:58:05.86+03	
d0f135c5-6d66-6cd9-7b1f-b970ed821c65	2021-05-20 06:58:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:58:26.854+03	2021-05-20 06:58:26.862+03	
89e9f54c-bb38-cef7-b557-371524b21957	2021-05-20 07:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:06:59.853+03	2021-05-20 07:06:59.867+03	
5b9a9420-f19c-3b1a-4307-4d1c08e00ddb	2021-05-20 06:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:58:48.852+03	2021-05-20 06:58:48.864+03	
6e6b302c-6c31-e8c4-eba5-afaa40ee6018	2021-05-20 06:59:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:59:09.853+03	2021-05-20 06:59:09.86+03	
fd36aa89-0a8e-e562-02a7-058cc15bb711	2021-05-20 07:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:07:19.853+03	2021-05-20 07:07:19.859+03	
cf14e44b-a015-c100-662b-6843be73369f	2021-05-20 06:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:59:29.853+03	2021-05-20 06:59:29.86+03	
4456f47f-8611-625f-53f6-e21039ce587d	2021-05-20 06:59:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:59:50.853+03	2021-05-20 06:59:50.897+03	
ce2f0705-220c-7f14-07ad-e14cc8c8cdf4	2021-05-20 07:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:07:39.853+03	2021-05-20 07:07:39.866+03	
9f548c07-1d74-de2e-503e-847fd20a982b	2021-05-20 07:00:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:00:10.853+03	2021-05-20 07:00:10.867+03	
d651235e-d69b-6246-0f24-e1a0cd70155e	2021-05-20 07:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:00:30.853+03	2021-05-20 07:00:30.864+03	
aec0c9aa-7ff5-1dc3-9ae2-cd35dad1e366	2021-05-20 07:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:08:00.853+03	2021-05-20 07:08:00.86+03	
5c0d9f67-b40c-4859-bfb7-4c8b39a15525	2021-05-20 07:00:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:00:51.853+03	2021-05-20 07:00:51.86+03	
ec858eca-8cb2-cc1a-33b7-04a08f9f989d	2021-05-20 07:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:01:12.852+03	2021-05-20 07:01:12.86+03	
b595fc7b-7108-4dcc-4f3b-9a137a4f6768	2021-05-20 07:08:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:08:21.854+03	2021-05-20 07:08:21.862+03	
eb71cce3-13f7-674e-93d2-623105991944	2021-05-20 07:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:01:32.853+03	2021-05-20 07:01:32.863+03	
01430980-437b-bffd-dcb5-279ea3e14ae0	2021-05-20 07:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:01:52.853+03	2021-05-20 07:01:52.859+03	
96e9226a-3fcc-4e1f-a8a0-253329ccd1cc	2021-05-20 07:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:08:42.853+03	2021-05-20 07:08:42.861+03	
bd82da5a-3880-e1be-5c93-6dfa9126aed9	2021-05-20 07:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:02:12.853+03	2021-05-20 07:02:12.861+03	
02c66e98-9ba8-0642-cace-df75ea347875	2021-05-20 07:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:02:32.853+03	2021-05-20 07:02:33.507+03	
91b20c22-0550-74c3-7a2d-bca471fc397c	2021-05-20 07:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:09:02.853+03	2021-05-20 07:09:02.862+03	
f5cd591f-c09f-5f14-7a5f-e49a2d478e2a	2021-05-20 07:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:02:52.853+03	2021-05-20 07:02:52.866+03	
e3b0165c-ed7c-62eb-e20c-6cd648a6bb85	2021-05-20 07:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:03:12.853+03	2021-05-20 07:03:12.863+03	
1dcec48d-c413-1ffc-fe29-7f92b02bf222	2021-05-20 07:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:09:22.853+03	2021-05-20 07:09:22.866+03	
bd86d423-1bb2-b1f3-bebb-7217cc0a7be0	2021-05-20 07:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:09:43.852+03	2021-05-20 07:09:43.871+03	
50d11fdd-0d0a-cc85-7e25-153c81a07ab1	2021-05-20 07:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 07:10:00.853+03	2021-05-20 07:10:00.858+03	ERROR
1ebb8dca-9d06-d3d1-1f7e-c6bf77d91d5f	2021-05-20 07:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:10:13.853+03	2021-05-20 07:10:13.861+03	
f9a624cf-562e-b23b-be5e-dec0ee20f1d4	2021-05-20 07:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:10:33.853+03	2021-05-20 07:10:33.859+03	
a2cace13-aa4d-2eba-c353-c518e0cbcd1c	2021-05-20 07:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:10:54.853+03	2021-05-20 07:10:54.86+03	
680b0343-eb41-37d4-4141-7d371744b03b	2021-05-20 07:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:11:15.853+03	2021-05-20 07:11:15.86+03	
fc2f954e-b976-5a74-b7a3-4057227ad629	2021-05-20 07:11:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:11:36.854+03	2021-05-20 07:11:36.861+03	
fd7bc862-8cd2-3a50-2794-4c3b9e7c2b5d	2021-05-20 07:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:11:58.852+03	2021-05-20 07:11:58.859+03	
b246345a-d0c1-4e6b-54de-1b408da58513	2021-05-20 07:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:12:18.852+03	2021-05-20 07:12:18.859+03	
8607b41d-72ac-7e7e-6ef1-b58ad041466f	2021-05-20 07:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:12:39.853+03	2021-05-20 07:12:39.86+03	
78d0bfb0-725c-cc33-b62c-2a6f3eed939e	2021-05-20 07:13:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:13:00.853+03	2021-05-20 07:13:00.859+03	
bbd59c61-d830-d1c5-47ea-5e65599617ea	2021-05-20 07:13:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:13:21.854+03	2021-05-20 07:13:21.86+03	
ff02c1b6-e725-bd25-b2a4-05a7df712e8d	2021-05-20 07:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:13:43.852+03	2021-05-20 07:13:43.869+03	
060b2042-b021-3097-ecde-058d5be490f7	2021-05-20 07:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:14:03.852+03	2021-05-20 07:14:03.86+03	
50ee78d3-14e4-abfc-5045-656d5b196885	2021-05-20 07:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:14:24.853+03	2021-05-20 07:14:24.861+03	
d9fe5500-e59a-b168-d430-33b9ed434488	2021-05-20 07:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:14:45.852+03	2021-05-20 07:14:45.859+03	
eaa4fb55-f930-b243-6c23-0b05d5219b34	2021-05-20 07:15:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:15:06.854+03	2021-05-20 07:15:06.862+03	
296720d8-6a2c-e60f-88fa-83be2beba7e0	2021-05-20 07:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:15:28.852+03	2021-05-20 07:15:28.861+03	
bfcf274c-6696-a826-b75b-55832205b7bc	2021-05-20 07:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:15:48.853+03	2021-05-20 07:15:48.86+03	
18e0ecd5-2e9e-7464-2c65-22a74f68bd47	2021-05-20 07:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:16:08.853+03	2021-05-20 07:16:08.86+03	
a3d8b0d2-500a-d812-dbe3-acd857fac448	2021-05-20 07:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:16:29.853+03	2021-05-20 07:16:29.859+03	
fcb88f77-8fb1-3629-93be-442b21624fcc	2021-05-20 07:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:16:49.853+03	2021-05-20 07:16:49.859+03	
a9c00372-94c4-9bf3-15ee-64487e393495	2021-05-20 07:17:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:17:11.853+03	2021-05-20 07:17:11.86+03	
f9e424ea-b538-a921-4eaf-1cc647337dcc	2021-05-20 07:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:17:32.853+03	2021-05-20 07:17:32.867+03	
0e7477ad-8dcf-dbf9-9dfe-13e1d57dbbb9	2021-05-20 07:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:17:53.852+03	2021-05-20 07:17:53.866+03	
a1c5ab0c-077b-f304-7967-815a3811f155	2021-05-20 07:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:18:13.853+03	2021-05-20 07:18:13.861+03	
e670edc2-7fdd-deb7-7f54-a093728dca80	2021-05-20 07:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:18:33.853+03	2021-05-20 07:18:33.873+03	
073a684d-13b2-cb82-7d34-4104bc1fe3f1	2021-05-20 07:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:18:54.853+03	2021-05-20 07:18:54.859+03	
5f70259c-1ead-f1bf-af08-7485953e5aa9	2021-05-20 07:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:19:14.853+03	2021-05-20 07:19:14.864+03	
0c675597-d347-fe23-475d-c56faec3835f	2021-05-20 07:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:19:35.853+03	2021-05-20 07:19:35.86+03	
c6eb1789-b4a3-1984-bd15-4eb5784c3b68	2021-05-20 07:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:19:55.853+03	2021-05-20 07:19:55.86+03	
5a688aaf-cfb0-4527-c28d-e0da5b13a3a3	2021-05-20 07:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:20:05.853+03	2021-05-20 07:20:05.871+03	
1ace2300-21bf-4ab8-1b77-5fdc501ff138	2021-05-20 07:20:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:20:26.854+03	2021-05-20 07:20:26.86+03	
3b11285b-c3f9-a00f-5875-92c8607aa521	2021-05-20 07:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:20:48.853+03	2021-05-20 07:20:48.861+03	
a72bc817-8de7-c401-d03c-ab32c782871c	2021-05-20 07:21:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:21:09.853+03	2021-05-20 07:21:09.859+03	
20379ef8-bf7a-3843-a3be-eb39ac642cc5	2021-05-20 07:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:21:30.852+03	2021-05-20 07:21:30.859+03	
c2db1e54-dae9-a04b-2bc6-fbe422466ee9	2021-05-20 07:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:21:50.853+03	2021-05-20 07:21:50.86+03	
0c06a350-c4bc-b02d-0936-910afec4fcea	2021-05-20 10:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:33:07.853+03	2021-05-20 10:33:07.859+03	
4f23612c-d23d-4a5d-1ebc-22480bff5310	2021-05-20 06:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:57:54.853+03	2021-05-20 06:57:54.858+03	
68b6552e-ea42-c9e2-2451-c7f7222685a1	2021-05-20 07:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:06:49.853+03	2021-05-20 07:06:49.861+03	
27404e74-a128-fe17-684e-889c7d68a0b6	2021-05-20 06:58:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:58:16.852+03	2021-05-20 06:58:16.862+03	
754246e0-7dde-ff04-079e-d5108f87f232	2021-05-20 06:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:58:37.853+03	2021-05-20 06:58:37.871+03	
17f13f49-2405-943e-967f-2f87dba5ae06	2021-05-20 07:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:07:09.853+03	2021-05-20 07:07:09.86+03	
3f867ff6-53f1-3674-962b-0a3aa7b612bc	2021-05-20 06:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:58:58.853+03	2021-05-20 06:58:58.906+03	
a5c81269-80bf-5a7e-3787-4b5398e5fc35	2021-05-20 06:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:59:19.853+03	2021-05-20 06:59:19.859+03	
16e01567-f78d-ad54-57b2-7bd9f636ab63	2021-05-20 07:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:07:29.853+03	2021-05-20 07:07:29.86+03	
502602c2-5a5f-de63-4f94-78c56461f314	2021-05-20 06:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 06:59:39.853+03	2021-05-20 06:59:39.866+03	
75e14589-51fb-9443-d25c-623c3e6959e2	2021-05-20 07:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 07:00:00.853+03	2021-05-20 07:00:00.867+03	ERROR
72d727d6-1658-aaed-7d97-aa27ce7f37ac	2021-05-20 07:07:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:07:50.853+03	2021-05-20 07:07:50.86+03	
15169c4d-c995-f1a2-6436-9b7461a9a03e	2021-05-20 07:00:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:00:00.853+03	2021-05-20 07:00:00.884+03	
5c03e7d1-ddf0-b9f9-a3ae-8c24c373c1b8	2021-05-20 07:00:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:00:20.853+03	2021-05-20 07:00:20.868+03	
bb9b2995-18a8-6e72-4dff-81f7b0e9c179	2021-05-20 07:08:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:08:11.854+03	2021-05-20 07:08:11.862+03	
3fdd7170-5b69-c282-a4fd-868ac804de88	2021-05-20 07:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:00:40.853+03	2021-05-20 07:00:40.862+03	
3fd98c8a-f896-295f-0c5c-0437a2862934	2021-05-20 07:01:01.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:01:01.855+03	2021-05-20 07:01:01.877+03	
a44f8c79-ad08-f7f8-b01f-421f4adae6c6	2021-05-20 07:08:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:08:31.854+03	2021-05-20 07:08:31.863+03	
7efd248f-9b51-d0ba-e857-524184fe90c3	2021-05-20 07:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:01:22.852+03	2021-05-20 07:01:22.861+03	
b339655b-c84d-a6ca-fd0d-882031bfb772	2021-05-20 07:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:01:42.853+03	2021-05-20 07:01:42.859+03	
c9581682-9262-ec9e-38cd-7244a1a8c115	2021-05-20 07:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:08:52.853+03	2021-05-20 07:08:52.864+03	
95e8c87e-2aac-b2f2-2416-aa794cac34ba	2021-05-20 07:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:02:02.853+03	2021-05-20 07:02:02.867+03	
b2f6adc1-4504-5f9b-7fb9-aaaf61ee0426	2021-05-20 07:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:02:22.853+03	2021-05-20 07:02:22.859+03	
7a91e57b-a9a7-1326-7837-ca39a6f250bc	2021-05-20 07:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:09:12.853+03	2021-05-20 07:09:12.86+03	
03720499-7afd-b421-7ab0-1cb5f745dfd6	2021-05-20 07:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:02:42.853+03	2021-05-20 07:02:42.863+03	
10d4d3a7-9e91-f27b-6e54-cfa038e6a6b8	2021-05-20 07:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:03:02.853+03	2021-05-20 07:03:02.863+03	
56b56b7f-2e3d-b0f3-b8f9-0260eafd131d	2021-05-20 07:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:09:33.852+03	2021-05-20 07:09:33.859+03	
47ab1f6e-5ff2-e7ff-f9bf-dd7e1d79c289	2021-05-20 07:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:09:53.853+03	2021-05-20 07:09:53.86+03	
b2b3e407-2b6d-73d1-e667-55c4d0c0271e	2021-05-20 07:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:10:03.853+03	2021-05-20 07:10:03.862+03	
742d4144-f3b7-2fab-c90c-32d75b30cc4d	2021-05-20 07:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:10:23.853+03	2021-05-20 07:10:23.87+03	
60628f22-7154-84c1-6a8a-c1c6d77ae4ab	2021-05-20 07:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:10:43.853+03	2021-05-20 07:10:43.861+03	
ab51e7a8-9c50-f000-af78-6b04224487bb	2021-05-20 07:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:11:05.853+03	2021-05-20 07:11:05.859+03	
56dec3e6-b40d-55f1-e220-4349f8c53c48	2021-05-20 07:11:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:11:26.853+03	2021-05-20 07:11:26.859+03	
35b0ad2e-a2e9-1618-75e9-75add3fbaff5	2021-05-20 07:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:11:47.853+03	2021-05-20 07:11:47.872+03	
f7467aad-d9e7-2dda-858f-0e54b877e915	2021-05-20 07:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:12:08.852+03	2021-05-20 07:12:08.86+03	
5780c82a-aa8f-4159-da48-d3cd34008428	2021-05-20 07:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:12:28.853+03	2021-05-20 07:12:28.862+03	
2462095f-4942-62a1-9222-e32af8c69075	2021-05-20 07:12:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:12:50.853+03	2021-05-20 07:12:50.862+03	
4a5416ca-4213-a77c-85e2-43da5637eea8	2021-05-20 07:13:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:13:10.853+03	2021-05-20 07:13:10.875+03	
1fc60e7e-809d-f80a-3a44-fd4ee37a28be	2021-05-20 07:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:13:32.853+03	2021-05-20 07:13:32.868+03	
76dc5cd7-d4cc-78ab-4560-5d77caf6f4da	2021-05-20 07:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:13:53.852+03	2021-05-20 07:13:53.861+03	
7072880f-00c2-08aa-7b74-47ee6905455f	2021-05-20 07:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:14:13.853+03	2021-05-20 07:14:13.86+03	
18ffa566-610b-1d2c-2682-1ecfb095c05a	2021-05-20 07:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:14:35.852+03	2021-05-20 07:14:35.858+03	
79165551-78be-b811-a338-ab3076a08e51	2021-05-20 07:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:14:55.853+03	2021-05-20 07:14:55.86+03	
e0bee16b-7e54-9a74-5968-42edb92a38ef	2021-05-20 07:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:15:17.853+03	2021-05-20 07:15:17.86+03	
a9684361-b15b-cbd5-5dc2-543900f39ad9	2021-05-20 07:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:15:38.853+03	2021-05-20 07:15:38.86+03	
a10fd6e4-c54b-6c45-882d-d0c3c70e8155	2021-05-20 07:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:15:58.853+03	2021-05-20 07:15:58.903+03	
01145dd1-1018-f775-e485-0351d5d0771d	2021-05-20 07:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:16:18.853+03	2021-05-20 07:16:18.861+03	
f9402070-bcd3-2764-7059-257b685c404f	2021-05-20 07:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:16:39.853+03	2021-05-20 07:16:39.859+03	
0c2209fd-4f4b-68ce-6075-80e64ec373e0	2021-05-20 07:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:17:00.853+03	2021-05-20 07:17:00.859+03	
e4817e59-6361-bc9b-b26d-1688af9a3db4	2021-05-20 07:17:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:17:21.853+03	2021-05-20 07:17:21.87+03	
fee26216-7d13-dd86-128d-e1aa9f31dc09	2021-05-20 07:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:17:43.852+03	2021-05-20 07:17:43.862+03	
36b6d486-0c18-d5db-4db1-cb2aa9e2d6f6	2021-05-20 07:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:18:03.853+03	2021-05-20 07:18:03.861+03	
d22bec42-659f-f6bc-4183-4a6b12050878	2021-05-20 07:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:18:23.853+03	2021-05-20 07:18:24.204+03	
f2c60b76-28a6-d45c-b16c-ace89416a98c	2021-05-20 07:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:18:44.852+03	2021-05-20 07:18:44.859+03	
445ce75b-70b2-8c27-d7b4-62e3beee754f	2021-05-20 07:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:19:04.853+03	2021-05-20 07:19:04.863+03	
cd0dbfcc-1c8a-b04e-550b-4a5e174f2bef	2021-05-20 07:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:19:25.853+03	2021-05-20 07:19:25.865+03	
46ef8362-b8bf-571e-0648-56942a0bb95e	2021-05-20 07:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:19:45.853+03	2021-05-20 07:19:45.86+03	
cf838a5b-1a45-ea6b-4145-1fea6ccab464	2021-05-20 07:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 07:20:00.852+03	2021-05-20 07:20:00.864+03	ERROR
7530a8b9-0089-d557-5064-f4f9f9c15bfe	2021-05-20 07:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:20:15.853+03	2021-05-20 07:20:15.861+03	
7277bf43-8036-2f51-ea01-ecdd5b5747b6	2021-05-20 07:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:20:37.853+03	2021-05-20 07:20:37.862+03	
6e1317f1-568c-5bf5-9764-fdc7b421aa45	2021-05-20 07:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:20:59.853+03	2021-05-20 07:20:59.859+03	
ef0e452e-9a47-4119-f637-577fa692ddad	2021-05-20 07:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:21:19.853+03	2021-05-20 07:21:19.866+03	
0abd85f5-4b3d-f35f-c72c-b549bb70f9d7	2021-05-20 07:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:21:40.853+03	2021-05-20 07:21:40.86+03	
80f3e4d6-01ef-528b-a66f-8a69371888fb	2021-05-20 07:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:22:00.853+03	2021-05-20 07:22:00.859+03	
0b45ce2a-f8e5-cc1c-6f03-cd7bd7f96dab	2021-05-20 07:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:22:10.853+03	2021-05-20 07:22:10.871+03	
dcee56a7-1458-b2ef-22b6-134081d5eecc	2021-05-20 10:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:33:18.853+03	2021-05-20 10:33:18.86+03	
b9e04467-71ea-8e16-02ab-9b2f53a16472	2021-05-20 10:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:33:38.853+03	2021-05-20 10:33:38.861+03	
3f38d0bc-097f-9e0b-6a93-eda37223a7aa	2021-05-20 10:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:33:59.853+03	2021-05-20 10:33:59.859+03	
1b63a179-db26-caeb-c461-3e6886d0bb8b	2021-05-20 10:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:34:19.853+03	2021-05-20 10:34:19.858+03	
29181cd3-1d3c-cae5-aa35-7c7158d4c635	2021-05-20 10:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:34:39.853+03	2021-05-20 10:34:39.86+03	
59703ffd-9ce8-0122-2c76-a711d7f966c4	2021-05-20 10:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:34:59.853+03	2021-05-20 10:34:59.862+03	
ccfd5063-dcda-2a39-33cf-ca4d42bc3182	2021-05-20 10:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:35:19.853+03	2021-05-20 10:35:19.861+03	
c6743f3d-fb16-da98-b66f-e53a0f2945d3	2021-05-20 10:35:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:35:39.853+03	2021-05-20 10:35:39.861+03	
b15beb64-5daf-b7a2-f203-b9ecadcbe68f	2021-05-20 10:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:35:59.853+03	2021-05-20 10:35:59.86+03	
b68ce2b1-5e60-cd9f-1c1e-77171905c135	2021-05-20 10:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:36:20.853+03	2021-05-20 10:36:20.859+03	
882e722a-e22e-036e-37d3-f0bf2081f3cc	2021-05-20 10:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:36:40.853+03	2021-05-20 10:36:40.861+03	
dd60d9bb-7762-447e-bd79-5c3385b1311c	2021-05-20 10:37:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:37:01.853+03	2021-05-20 10:37:01.86+03	
75e8efb3-de82-e733-a16f-599e364b2f06	2021-05-20 10:37:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:37:21.854+03	2021-05-20 10:37:21.862+03	
8ac9763c-db8c-0225-32ee-7b192aa33f07	2021-05-20 10:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:37:42.853+03	2021-05-20 10:37:42.861+03	
22a202f2-653c-8e59-169d-7dbeec573875	2021-05-20 10:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:38:03.853+03	2021-05-20 10:38:03.863+03	
46ba71b5-b904-7a39-e294-2236aabeb090	2021-05-20 10:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:38:24.853+03	2021-05-20 10:38:24.859+03	
7fb3255f-0063-06cd-a9ac-42db297c917c	2021-05-20 10:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:38:44.853+03	2021-05-20 10:38:44.861+03	
e8a55731-d9a0-1eb2-4afa-dea5ee3b23ff	2021-05-20 10:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:39:05.853+03	2021-05-20 10:39:05.859+03	
eccdfec9-78ee-9c55-90f4-0ca18dc6eef6	2021-05-20 10:39:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:39:26.852+03	2021-05-20 10:39:26.859+03	
c28bde05-2d88-591c-6632-f16f1f3383fb	2021-05-20 10:39:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:39:46.852+03	2021-05-20 10:39:46.86+03	
121c4b02-85b8-2736-93fc-f79f41441049	2021-05-20 10:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 10:40:00.853+03	2021-05-20 10:40:00.858+03	ERROR
2cd874e3-c416-9dc2-c4e0-38c89893cc6f	2021-05-20 10:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:40:16.853+03	2021-05-20 10:40:16.861+03	
d3e98cd2-1777-cf76-f043-47e0300c9c9b	2021-05-20 10:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:40:37.853+03	2021-05-20 10:40:37.86+03	
f3b2b50b-8501-81de-76e9-34a855dc0847	2021-05-20 10:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:40:58.852+03	2021-05-20 10:40:58.859+03	
813d3129-4b61-82b1-533b-8962e3da80bd	2021-05-20 10:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:41:19.852+03	2021-05-20 10:41:19.86+03	
e4270bee-7cbe-6e8c-642f-4aa40e61da57	2021-05-20 10:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:41:39.852+03	2021-05-20 10:41:39.859+03	
8df28765-a8b4-b47f-a79c-9bb1a9bb5cfa	2021-05-20 10:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:41:59.852+03	2021-05-20 10:41:59.859+03	
d86d73f0-b53d-b4df-efbe-311c5650c544	2021-05-20 10:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:42:19.853+03	2021-05-20 10:42:19.86+03	
c370b410-2010-1a78-40fb-a4c75f6c894f	2021-05-20 10:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:42:40.852+03	2021-05-20 10:42:40.86+03	
a3c648a7-c82f-726b-d3b8-36d5517b04e9	2021-05-20 10:43:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:43:00.853+03	2021-05-20 10:43:00.863+03	
44ca5c3a-67b6-7767-c070-25ae89fdde31	2021-05-20 10:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:43:20.853+03	2021-05-20 10:43:20.86+03	
79904e5e-2592-806f-7baa-b37111fca66d	2021-05-20 10:43:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:43:41.852+03	2021-05-20 10:43:41.86+03	
63d9ee8e-d141-2507-b250-db3c831bd866	2021-05-20 10:44:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:44:01.852+03	2021-05-20 10:44:01.887+03	
14134d13-c271-18c2-c771-745fbfc34798	2021-05-20 10:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:44:22.852+03	2021-05-20 10:44:22.86+03	
fa18cb0d-3d6a-0b92-760a-fceee3860e58	2021-05-20 10:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:44:42.853+03	2021-05-20 10:44:43.05+03	
e62fee63-0ba9-8d6e-13b6-e12b76abbde7	2021-05-20 10:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:45:02.853+03	2021-05-20 10:45:02.859+03	
087ee9ac-19d4-35b3-3f76-b084997c3ed0	2021-05-20 10:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:45:32.853+03	2021-05-20 10:45:32.863+03	
aa0b649d-0601-957f-df6b-e00fba9ebec6	2021-05-20 10:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:45:53.852+03	2021-05-20 10:45:53.859+03	
a4346a56-2234-54e5-80b6-dc950efec1e9	2021-05-20 10:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:46:13.853+03	2021-05-20 10:46:13.859+03	
b8701439-3392-157e-d076-56c2c648efed	2021-05-20 10:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:46:34.852+03	2021-05-20 10:46:34.859+03	
af833e8d-cc22-49a5-df53-8f39d09be1c4	2021-05-20 10:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:46:54.853+03	2021-05-20 10:46:54.859+03	
7b463b58-2956-bcb5-6572-2d6e6d38bc4b	2021-05-20 10:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:47:15.853+03	2021-05-20 10:47:15.86+03	
35d5a999-0091-d18c-7b9d-43267f2a4aa8	2021-05-20 11:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:07:23.853+03	2021-05-20 11:07:23.862+03	
5f17824e-a629-9a4a-3ef7-82425cef9951	2021-05-20 11:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:07:44.852+03	2021-05-20 11:07:44.86+03	
97e9c57d-1e70-290b-fc47-a59be573f201	2021-05-20 11:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:08:04.852+03	2021-05-20 11:08:04.861+03	
aab81d5d-5492-c5bc-7d4d-266442edc12c	2021-05-20 11:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:08:24.853+03	2021-05-20 11:08:24.866+03	
e191e076-e192-a84b-67e2-c57a68efe5bb	2021-05-20 11:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:08:45.852+03	2021-05-20 11:08:45.862+03	
64311ae1-767f-820a-08a8-aad5f910f293	2021-05-20 11:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:09:05.853+03	2021-05-20 11:09:05.859+03	
099553df-cdab-4110-8119-ac811cef2669	2021-05-20 11:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:09:25.853+03	2021-05-20 11:09:25.861+03	
a14f60b8-2c5a-2f98-284c-fa316b32eebc	2021-05-20 11:09:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:09:46.852+03	2021-05-20 11:09:46.859+03	
a9fec675-2a6d-2dc1-927e-84d87221d077	2021-05-20 11:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 11:10:00.852+03	2021-05-20 11:10:00.857+03	ERROR
042b45a4-b404-6327-fe62-ad7bb3e9cdb3	2021-05-20 11:10:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:10:16.853+03	2021-05-20 11:10:16.868+03	
cf22bada-533e-38b4-da94-dee33217dff2	2021-05-20 11:10:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:10:36.853+03	2021-05-20 11:10:36.861+03	
0a46c4f2-013c-4882-df09-9392833f9ee3	2021-05-20 11:10:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:10:56.854+03	2021-05-20 11:10:56.86+03	
33c4d737-6a22-1157-6bcf-f7ecb3c3810d	2021-05-20 11:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:11:17.852+03	2021-05-20 11:11:17.87+03	
fb8a2aa8-201c-0038-c902-877959edbaa1	2021-05-20 11:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:11:37.853+03	2021-05-20 11:11:37.86+03	
dac257f5-76c4-6119-6b96-cb9df3168783	2021-05-20 11:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:11:59.852+03	2021-05-20 11:11:59.861+03	
b534a71b-020a-ae98-85e3-de6191362bfc	2021-05-20 11:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:12:19.853+03	2021-05-20 11:12:19.861+03	
b876af1b-5d1f-c45c-acf3-98fd07f20f61	2021-05-20 11:12:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:12:40.852+03	2021-05-20 11:12:40.86+03	
a495a7bb-2806-c3a9-3142-e613a91ccf15	2021-05-20 11:13:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:13:00.853+03	2021-05-20 11:13:00.859+03	
a5400afe-4fbd-372d-9d84-f3e58105f157	2021-05-20 11:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:13:20.853+03	2021-05-20 11:13:20.859+03	
2788eb91-49a4-b02e-972b-5c704723728b	2021-05-20 11:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:13:40.853+03	2021-05-20 11:13:40.862+03	
a08b5ca1-d58c-0104-ed09-aedd1537b267	2021-05-20 07:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:22:20.853+03	2021-05-20 07:22:20.9+03	
487709d8-e499-2081-312c-dd93c4f0c1d2	2021-05-20 07:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:22:30.853+03	2021-05-20 07:22:30.86+03	
f6876511-b137-c501-c654-d1c5059c6b44	2021-05-20 07:22:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:22:41.852+03	2021-05-20 07:22:41.862+03	
debd07af-5433-4789-7793-3d4f058bf0bd	2021-05-20 07:22:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:22:51.852+03	2021-05-20 07:22:51.859+03	
e8e29e07-75c7-c00d-b606-b18a76a05a69	2021-05-20 07:23:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:23:01.852+03	2021-05-20 07:23:01.884+03	
e5e6748d-a037-5df3-342a-58419a65814c	2021-05-20 07:23:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:23:11.854+03	2021-05-20 07:23:11.88+03	
ac27bf9a-300c-bbf8-cef7-576b3e862696	2021-05-20 07:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:23:22.853+03	2021-05-20 07:23:22.878+03	
7939f693-0c64-2b4b-32ba-703708323fb9	2021-05-20 07:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:23:32.853+03	2021-05-20 07:23:32.877+03	
177286bc-9700-8575-b832-2fd2029ba936	2021-05-20 07:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:23:43.852+03	2021-05-20 07:23:43.868+03	
3b78f7b5-d04a-12f5-5e43-cef9eebfb6c3	2021-05-20 07:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:23:53.852+03	2021-05-20 07:23:53.876+03	
a7ab1f2d-c6f0-72bb-989c-c68b064dfe9f	2021-05-20 07:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:24:03.852+03	2021-05-20 07:24:03.859+03	
d17e822c-4c87-b1e6-c07f-2f83dd884441	2021-05-20 07:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:24:13.853+03	2021-05-20 07:24:13.874+03	
7cae97c3-5825-7bd3-44b0-5ff3a10e548c	2021-05-20 07:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:24:24.852+03	2021-05-20 07:24:24.859+03	
db9c580a-453f-1fe9-3746-84dd9a4fa26a	2021-05-20 07:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:24:34.852+03	2021-05-20 07:24:34.859+03	
2e9fc31e-9275-e5c7-e75e-d4bfa48612c4	2021-05-20 07:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:24:44.853+03	2021-05-20 07:24:44.86+03	
da57a9dd-b3ad-56d7-3725-eea057fefdf1	2021-05-20 07:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:24:54.853+03	2021-05-20 07:24:54.859+03	
40548466-8496-26ef-0955-b592350708c1	2021-05-20 07:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:25:04.853+03	2021-05-20 07:25:04.861+03	
73891711-ca0f-d94f-24d9-19f703142a8d	2021-05-20 07:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:25:15.853+03	2021-05-20 07:25:15.861+03	
f81a6294-142f-87d7-5563-3741a82b3585	2021-05-20 07:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:25:25.853+03	2021-05-20 07:25:25.86+03	
71dd98ec-b70c-5495-dbc8-f54357e409a7	2021-05-20 07:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:25:35.853+03	2021-05-20 07:25:35.862+03	
68bafa65-9bc8-63d7-9aea-8a482cc76bb7	2021-05-20 07:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:25:46.852+03	2021-05-20 07:25:46.859+03	
7011563f-ce2e-4e49-0b42-e67332c49e6d	2021-05-20 07:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:25:56.852+03	2021-05-20 07:25:56.859+03	
6facd1fa-a41b-3632-c567-e76c321e0279	2021-05-20 07:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:26:06.852+03	2021-05-20 07:26:06.859+03	
7240963e-5e78-1183-e545-aeb6bbab140f	2021-05-20 07:26:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:26:16.852+03	2021-05-20 07:26:16.861+03	
7791a1b0-a885-d52a-23a8-52c9d6063979	2021-05-20 07:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:26:26.852+03	2021-05-20 07:26:26.859+03	
5df5d747-6d0c-6b01-234c-437d7e3e4c7d	2021-05-20 07:26:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:26:36.852+03	2021-05-20 07:26:36.86+03	
b7ce1dc4-6d78-b65f-edc6-88c8760e2e54	2021-05-20 07:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:26:46.852+03	2021-05-20 07:26:46.863+03	
7d6a8238-61f2-51fc-d0c9-86cf144ce0a7	2021-05-20 07:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:26:56.852+03	2021-05-20 07:26:56.86+03	
2eecb76c-c026-49fd-5cbb-09e1ea78a154	2021-05-20 07:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:27:06.853+03	2021-05-20 07:27:06.859+03	
84b2a35d-89e2-160f-8f27-3607fdee3b5f	2021-05-20 07:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:27:17.852+03	2021-05-20 07:27:17.859+03	
9c987305-4f85-f466-1d03-a7880498f9a8	2021-05-20 07:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:27:27.853+03	2021-05-20 07:27:27.86+03	
3effada9-c05a-765f-45fb-0a29c36a0588	2021-05-20 07:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:27:37.853+03	2021-05-20 07:27:37.86+03	
d54b4096-29e4-59a7-6074-16a4cacb3605	2021-05-20 07:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:27:47.853+03	2021-05-20 07:27:47.945+03	
faa65f86-1219-642d-4634-cc31e1f71451	2021-05-20 07:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:27:57.853+03	2021-05-20 07:27:57.86+03	
5b22457d-d3d0-5adc-98f4-fafe66db3107	2021-05-20 07:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:28:07.853+03	2021-05-20 07:28:07.86+03	
e938b92a-4e77-d9ab-c622-eaa8657b5d5b	2021-05-20 07:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:28:18.853+03	2021-05-20 07:28:18.863+03	
31441597-78c2-caaa-4dc0-76f5c373b15b	2021-05-20 07:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:28:29.853+03	2021-05-20 07:28:29.859+03	
cfe3f0a0-eb96-daf4-6ff7-28f46688fac8	2021-05-20 07:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:28:40.852+03	2021-05-20 07:28:40.86+03	
b0499aa8-e477-28ae-7254-dbd2c0736840	2021-05-20 07:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:28:50.852+03	2021-05-20 07:28:50.858+03	
30abe876-4309-ed89-e98e-75f5221118b1	2021-05-20 07:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:29:00.852+03	2021-05-20 07:29:00.861+03	
a5aae36f-b0ab-2325-613b-35fe78743fce	2021-05-20 07:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:29:10.852+03	2021-05-20 07:29:10.861+03	
13584f97-b21c-7b05-8284-5a39d8f57a74	2021-05-20 07:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:29:20.852+03	2021-05-20 07:29:20.86+03	
07382e03-f44c-07d0-b04f-aac6c3a96d64	2021-05-20 07:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:29:30.852+03	2021-05-20 07:29:30.863+03	
73077689-c6c8-c029-baae-a2deccc77249	2021-05-20 07:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:29:40.852+03	2021-05-20 07:29:40.863+03	
a5b97db9-fd8e-250c-11a3-f66bdeb07c5f	2021-05-20 07:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:29:50.852+03	2021-05-20 07:29:50.86+03	
24f54a58-7b19-c091-226e-466342dd16c2	2021-05-20 07:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:30:00.852+03	2021-05-20 07:30:00.861+03	
c539f1e8-4f19-58ab-9fd7-3c2555c30fa7	2021-05-20 07:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 07:30:00.853+03	2021-05-20 07:30:00.875+03	ERROR
e77025a2-29b6-52bc-bcbf-ff428a88c69c	2021-05-20 07:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:30:10.852+03	2021-05-20 07:30:10.859+03	
155b2b2b-575b-eda7-8b3f-89024510bfd8	2021-05-20 07:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:30:20.852+03	2021-05-20 07:30:20.861+03	
0904bae8-4c87-a88b-490f-e32199ed5d2c	2021-05-20 07:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:30:30.853+03	2021-05-20 07:30:30.86+03	
4d791151-f1fc-96af-5b0e-6da6edd07c91	2021-05-20 07:30:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:30:41.852+03	2021-05-20 07:30:41.868+03	
2a6cb27c-6336-14ba-d66c-d9d398aa2077	2021-05-20 07:30:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:30:51.854+03	2021-05-20 07:30:51.871+03	
87785573-d1c0-87ae-7f26-ee98eb97f591	2021-05-20 07:31:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:31:01.854+03	2021-05-20 07:31:01.897+03	
4885b51e-278d-517c-ee74-de9dede6a205	2021-05-20 07:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:31:12.853+03	2021-05-20 07:31:12.875+03	
8d791393-50d1-2ca1-a507-0b3ef2f46bf4	2021-05-20 07:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:31:22.853+03	2021-05-20 07:31:22.86+03	
a85dedac-a1e1-bdc8-400a-f02e51a52f08	2021-05-20 07:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:31:33.852+03	2021-05-20 07:31:33.861+03	
d9a3f405-0857-33f1-05be-39a6e869319e	2021-05-20 07:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:31:43.852+03	2021-05-20 07:31:43.864+03	
9047422e-6d93-d9a9-65d4-d7101b1827d5	2021-05-20 07:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:31:53.852+03	2021-05-20 07:31:53.86+03	
d17df87a-0b73-07e1-2cdf-8aa3244dc2da	2021-05-20 07:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:32:03.852+03	2021-05-20 07:32:03.86+03	
92cb320e-f150-bf71-3c7f-8d0f30b6edbc	2021-05-20 07:32:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:32:13.853+03	2021-05-20 07:32:13.859+03	
b6d16596-acf5-a1df-f66d-4c83c8dd1690	2021-05-20 07:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:32:23.853+03	2021-05-20 07:32:23.861+03	
04904e6c-083d-e067-8b8a-ea15da18b83e	2021-05-20 07:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:32:33.853+03	2021-05-20 07:32:33.871+03	
a0167336-b964-9c08-e02b-b912d643975f	2021-05-20 07:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:32:43.853+03	2021-05-20 07:32:44.94+03	
9f35c5a0-56a0-e33e-7c24-7203178e5095	2021-05-20 07:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:32:53.853+03	2021-05-20 07:32:53.865+03	
1c017994-ff5e-3e32-b62f-f1f7a3470d3a	2021-05-20 07:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:33:14.852+03	2021-05-20 07:33:14.864+03	
d127f29e-bda8-24c2-ae32-54fa2cc89c31	2021-05-20 07:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:33:34.853+03	2021-05-20 07:33:34.86+03	
36e8a24f-5c26-f219-e87f-69f8576a89be	2021-05-20 07:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:33:55.853+03	2021-05-20 07:33:55.865+03	
e45ab1a3-0cd0-6104-0646-b28ea216f4ea	2021-05-20 07:34:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:34:16.854+03	2021-05-20 07:34:16.862+03	
96524d22-f34c-455f-d186-38f75127af34	2021-05-20 07:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:34:37.852+03	2021-05-20 07:34:37.871+03	
0d9a996e-55c8-33df-ff5d-55552707f30e	2021-05-20 07:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:34:57.853+03	2021-05-20 07:34:57.859+03	
e9c91773-b66e-f142-df3a-c123db623df1	2021-05-20 07:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:35:18.853+03	2021-05-20 07:35:18.872+03	
fdd5be33-665a-ff8e-8a4f-fd4353effe69	2021-05-20 07:35:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:35:39.852+03	2021-05-20 07:35:39.858+03	
0bcba847-e77c-5726-ac1b-22475f25de52	2021-05-20 07:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:36:00.852+03	2021-05-20 07:36:00.864+03	
4b18b45d-78e1-3936-d4b5-7c453d72d574	2021-05-20 07:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:36:20.853+03	2021-05-20 07:36:20.86+03	
eb4abf07-42a0-a356-2cef-c9f9c5ac9d78	2021-05-20 07:36:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:36:41.852+03	2021-05-20 07:36:41.861+03	
2b18c2b3-5439-029e-3725-8ee5ab563b25	2021-05-20 07:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:37:02.853+03	2021-05-20 07:37:03.18+03	
2654ae27-d7b2-ec43-d3ba-d6fda12340ec	2021-05-20 07:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:37:23.852+03	2021-05-20 07:37:23.86+03	
3c57e765-4412-ec76-24e2-90d06816e967	2021-05-20 07:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:37:43.853+03	2021-05-20 07:37:43.861+03	
6fe86cd6-64d2-d2c0-1a28-c15b5a4020ae	2021-05-20 07:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:38:03.853+03	2021-05-20 07:38:03.863+03	
c50b5747-bfdf-8519-22b9-2935c138e733	2021-05-20 07:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:38:24.853+03	2021-05-20 07:38:24.861+03	
0236b2eb-bf88-3e58-ed80-475c755f860d	2021-05-20 07:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:38:45.852+03	2021-05-20 07:38:45.86+03	
2105632f-0b24-47c4-d138-dddfb60f0ea2	2021-05-20 07:39:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:39:06.854+03	2021-05-20 07:39:06.861+03	
8b17a133-fbde-ffea-f165-d7d944975fbd	2021-05-20 07:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:39:27.852+03	2021-05-20 07:39:27.86+03	
6a74a215-548a-3c3e-4af1-f13f9760ad99	2021-05-20 07:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:39:47.852+03	2021-05-20 07:39:47.861+03	
16010cab-baed-c3e7-7aa9-411a740350fd	2021-05-20 07:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 07:40:00.853+03	2021-05-20 07:40:00.859+03	ERROR
b23177e9-28d9-9164-5403-327096e2b8b9	2021-05-20 07:40:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:40:18.853+03	2021-05-20 07:40:19.176+03	
063b23cf-1599-64c7-f364-539d67066928	2021-05-20 07:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:40:38.853+03	2021-05-20 07:40:38.858+03	
d8137f1e-4f99-8fae-6cb4-f726a8e4578e	2021-05-20 07:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:40:58.853+03	2021-05-20 07:40:58.867+03	
cd28bec5-fed7-5fa2-1aa4-651c97b0ba6e	2021-05-20 07:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:41:18.853+03	2021-05-20 07:41:18.864+03	
30f916fd-72d8-2de7-9f62-78a6a58170ce	2021-05-20 07:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:41:39.853+03	2021-05-20 07:41:39.859+03	
b5cc2623-c740-40ea-1b86-c5e088dc1377	2021-05-20 07:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:41:59.853+03	2021-05-20 07:41:59.862+03	
575869be-1273-bcfe-9dfd-8de6cbae7ab0	2021-05-20 07:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:42:19.853+03	2021-05-20 07:42:19.893+03	
a1ecff90-3228-e170-10fb-cde2aa254c83	2021-05-20 07:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:42:39.853+03	2021-05-20 07:42:39.86+03	
5b6e070d-4132-59ad-c0e5-2316eae6a6cf	2021-05-20 07:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:42:59.853+03	2021-05-20 07:42:59.916+03	
ab7db6b0-8301-6237-deb9-79e3647b29a1	2021-05-20 07:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:43:20.853+03	2021-05-20 07:43:20.86+03	
d4412ad0-c440-899c-a5e0-748607868934	2021-05-20 07:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:43:40.853+03	2021-05-20 07:43:40.859+03	
7d0e038d-423c-74d2-7fcc-5982df18c26b	2021-05-20 07:44:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:44:01.852+03	2021-05-20 07:44:01.89+03	
aa9b24a8-4dda-2b8a-c456-b2a12daf059a	2021-05-20 07:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:44:22.852+03	2021-05-20 07:44:22.871+03	
c6028bf8-e1e4-b09a-11da-d0e638024775	2021-05-20 07:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:44:42.852+03	2021-05-20 07:44:42.869+03	
25f1be4c-3fb0-3a5a-66fa-8e7fbc2ebb10	2021-05-20 07:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:45:02.853+03	2021-05-20 07:45:02.86+03	
5124fdad-22e3-9839-c815-d7fcda0ca6ed	2021-05-20 07:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:45:22.853+03	2021-05-20 07:45:22.861+03	
1d5ddec1-33b4-1407-0f57-4af52575ee5a	2021-05-20 07:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:45:42.853+03	2021-05-20 07:45:42.86+03	
deb0985d-8cce-6e00-710f-2a8fe97f48fe	2021-05-20 07:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:46:02.853+03	2021-05-20 07:46:02.86+03	
09ba54a7-0ef7-c2b6-3001-c257514a3f35	2021-05-20 07:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:46:23.853+03	2021-05-20 07:46:23.86+03	
e2bc9789-d3a2-9da6-affd-f9fc7a118af7	2021-05-20 07:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:46:44.853+03	2021-05-20 07:46:45.098+03	
93df463f-f8ff-c162-e642-1926cea056c5	2021-05-20 07:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:47:04.853+03	2021-05-20 07:47:04.86+03	
0a93a69d-00ef-caf8-a447-327b639697a3	2021-05-20 07:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:47:24.853+03	2021-05-20 07:47:24.859+03	
faabe26e-aa75-779e-3cad-adb1f56ea7a0	2021-05-20 07:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:47:44.853+03	2021-05-20 07:47:44.862+03	
092359d7-8aea-8fcc-658e-d9e888b33fb7	2021-05-20 07:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:48:05.853+03	2021-05-20 07:48:05.866+03	
3ad68ca0-18e3-a396-3f0f-eabd2f6dd1cd	2021-05-20 07:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:48:25.853+03	2021-05-20 07:48:25.859+03	
07a26322-5a80-5fef-3de2-404a0b6bc0f1	2021-05-20 07:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:48:45.853+03	2021-05-20 07:48:45.861+03	
1961ef99-210f-afad-beb1-4ec248f0945e	2021-05-20 07:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:49:05.853+03	2021-05-20 07:49:05.862+03	
c1108480-b5c1-d42b-13c3-7d8484838b31	2021-05-20 07:49:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:49:25.853+03	2021-05-20 07:49:25.866+03	
6973160a-e591-2ce0-0c02-4cc42b67c3c3	2021-05-20 07:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:49:45.853+03	2021-05-20 07:49:45.86+03	
49cf78ce-e677-669c-277e-7f1ebcb8b5cb	2021-05-20 07:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 07:50:00.853+03	2021-05-20 07:50:00.858+03	ERROR
2b190ac1-651b-478a-993d-25288b25db55	2021-05-20 07:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:50:15.853+03	2021-05-20 07:50:15.86+03	
f0e05d1d-b707-db72-e65c-51c1a530605b	2021-05-20 07:50:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:50:36.853+03	2021-05-20 07:50:36.863+03	
06c0b9f0-bd4c-eb53-5879-66573203f991	2021-05-20 07:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:50:58.852+03	2021-05-20 07:50:58.86+03	
c4cd922e-ce8c-e819-b444-350a9d81ee64	2021-05-20 07:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:51:18.852+03	2021-05-20 07:51:18.859+03	
188deb12-7747-8632-afe1-5b2bbc6aa4e0	2021-05-20 07:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:51:39.852+03	2021-05-20 07:51:39.858+03	
3bc1655f-a07c-9d22-625a-fe27e2fd72c7	2021-05-20 07:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:51:59.852+03	2021-05-20 07:51:59.865+03	
28f51084-f916-8d10-749d-3c8580031b21	2021-05-20 07:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:52:19.853+03	2021-05-20 07:52:19.861+03	
38ad12bb-6d4b-3944-a3cc-079677f9687b	2021-05-20 07:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:52:40.853+03	2021-05-20 07:52:40.863+03	
7c233e9c-afda-fafb-8a1d-25863ffde2cb	2021-05-20 07:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:53:00.853+03	2021-05-20 07:53:00.861+03	
7878c749-07a3-97d7-1037-67aedd97a294	2021-05-20 07:53:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:53:21.852+03	2021-05-20 07:53:21.863+03	
2f438353-8c59-e3ea-9dfe-6d5451c76e92	2021-05-20 07:53:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:53:41.853+03	2021-05-20 07:53:41.872+03	
0c3f5512-4669-14b4-7d2b-32887abfcc8c	2021-05-20 07:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:33:04.852+03	2021-05-20 07:33:04.9+03	
aff1331e-370f-cfc0-860d-429887bd1ee5	2021-05-20 07:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:33:24.853+03	2021-05-20 07:33:24.862+03	
053c6488-0ee2-aec6-a321-e9bddd485d0a	2021-05-20 07:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:33:45.853+03	2021-05-20 07:33:45.86+03	
7894726b-7318-0ec0-1c32-170a8fd5acf3	2021-05-20 07:34:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:34:05.853+03	2021-05-20 07:34:05.86+03	
ff3653c9-3a3c-07e9-d92f-93b054e8666a	2021-05-20 07:34:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:34:26.854+03	2021-05-20 07:34:26.861+03	
ddfc3edc-779c-e297-a1ac-4b4c7e8592e3	2021-05-20 07:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:34:47.852+03	2021-05-20 07:34:47.86+03	
da4020cd-f8fb-4c0c-411d-179f567e0883	2021-05-20 07:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:35:07.853+03	2021-05-20 07:35:07.864+03	
9b55bea7-6831-c5bb-d3fc-b36c382fac1f	2021-05-20 07:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:35:29.852+03	2021-05-20 07:35:29.86+03	
9ca2a941-dda0-d848-1347-01db6a488ebe	2021-05-20 07:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:35:49.853+03	2021-05-20 07:35:49.858+03	
11114a6c-76c5-fa96-0c6b-5afd0eb08e4f	2021-05-20 07:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:36:10.852+03	2021-05-20 07:36:10.858+03	
379cce96-e819-fd8e-3e42-ceb9a8624789	2021-05-20 07:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:36:30.853+03	2021-05-20 07:36:30.859+03	
68692f04-c3fb-d1fa-47c4-2f33ef95a55c	2021-05-20 07:36:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:36:51.853+03	2021-05-20 07:36:51.871+03	
0254f53c-67e1-ae73-df44-44d24488db93	2021-05-20 07:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:37:12.853+03	2021-05-20 07:37:12.959+03	
b10d11cc-08e0-8466-0c22-f95333fe0bee	2021-05-20 07:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:37:33.852+03	2021-05-20 07:37:33.859+03	
d3681298-a4f7-d0b5-4e73-a5b4c51f557d	2021-05-20 07:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:37:53.853+03	2021-05-20 07:37:53.859+03	
0f84ec2c-2cb6-a505-c910-da277f148a21	2021-05-20 07:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:38:14.852+03	2021-05-20 07:38:14.862+03	
f18234e7-6d02-110c-e044-94040b69ff3d	2021-05-20 07:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:38:34.853+03	2021-05-20 07:38:34.86+03	
434da0ce-1550-a07b-cfe9-f9e05f45696c	2021-05-20 07:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:38:55.853+03	2021-05-20 07:38:55.861+03	
9e89224f-ffe4-f38c-9347-605d96775c1a	2021-05-20 07:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:39:17.852+03	2021-05-20 07:39:17.86+03	
dd5093d7-b88c-0afb-254c-8e6c66372453	2021-05-20 07:39:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:39:37.852+03	2021-05-20 07:39:37.859+03	
e1ade9c3-33a3-6058-d6a6-a72275ba86c5	2021-05-20 07:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:39:57.853+03	2021-05-20 07:39:57.86+03	
42f068ed-25b3-ad69-ace2-d5c3f4ad9536	2021-05-20 07:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:40:08.853+03	2021-05-20 07:40:08.862+03	
e27aa54a-75d4-c6c4-7d36-d40aef080d3c	2021-05-20 07:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:40:28.853+03	2021-05-20 07:40:28.86+03	
8a33e5c0-afee-3e94-9d15-c13aae077bed	2021-05-20 07:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:40:48.853+03	2021-05-20 07:40:48.86+03	
220b25ba-1184-f5f6-1190-50ef581f742b	2021-05-20 07:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:41:08.853+03	2021-05-20 07:41:08.861+03	
2400a482-42f4-4c87-f21b-e2e27cc34923	2021-05-20 07:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:41:29.853+03	2021-05-20 07:41:29.859+03	
e3b816a7-bfad-7612-5985-6d3ea5e027e8	2021-05-20 07:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:41:49.853+03	2021-05-20 07:41:49.86+03	
811c028d-c9d3-5381-d01c-13b4213241b0	2021-05-20 07:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:42:09.853+03	2021-05-20 07:42:09.86+03	
b4f4000c-721c-83f5-d51c-9a93b4747f64	2021-05-20 07:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:42:29.853+03	2021-05-20 07:42:29.861+03	
fb6b16eb-f882-cc5b-333e-09f9daab95f9	2021-05-20 07:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:42:49.853+03	2021-05-20 07:42:49.859+03	
044a222b-6f75-c025-1d4e-a94adf990b43	2021-05-20 07:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:43:10.852+03	2021-05-20 07:43:10.859+03	
3cc4050b-9a39-0210-96df-d0ec86d5dda0	2021-05-20 07:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:43:30.853+03	2021-05-20 07:43:30.859+03	
50cd7da1-6ab8-a185-5a04-52114626d21a	2021-05-20 07:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:43:50.853+03	2021-05-20 07:43:50.86+03	
e6a1e686-df90-2074-56ba-baf5406d31c6	2021-05-20 07:44:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:44:11.854+03	2021-05-20 07:44:11.863+03	
f1e6f7b2-a767-50a6-7fea-34f2f24e7c33	2021-05-20 07:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:44:32.852+03	2021-05-20 07:44:32.861+03	
4db482f0-d0f3-46be-52a6-6a21898cac71	2021-05-20 07:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:44:52.853+03	2021-05-20 07:44:52.859+03	
b11cea3b-3c20-6bbc-c4e8-59504f80bf9a	2021-05-20 07:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:45:12.853+03	2021-05-20 07:45:12.859+03	
70cc555a-752a-b095-cc78-58c41e7cf092	2021-05-20 07:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:45:32.853+03	2021-05-20 07:45:32.86+03	
6698c88e-5ec2-6a70-f541-f1db27a96fbd	2021-05-20 07:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:45:52.853+03	2021-05-20 07:45:52.872+03	
e62d6568-f00c-952b-c4ad-80b51b3de63a	2021-05-20 07:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:46:12.853+03	2021-05-20 07:46:12.86+03	
3aeb97c9-93b3-281a-baf4-68401f28c92a	2021-05-20 07:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:46:33.853+03	2021-05-20 07:46:33.86+03	
1137f1bb-265c-246d-e1ed-ead45fdff86e	2021-05-20 07:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:46:54.853+03	2021-05-20 07:46:54.86+03	
69008ad9-5840-0dd4-aab9-6ee2c8c3e560	2021-05-20 07:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:47:14.853+03	2021-05-20 07:47:14.864+03	
9fd13fb3-b1b2-c82b-3dc6-367c58468bac	2021-05-20 07:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:47:34.853+03	2021-05-20 07:47:34.86+03	
d13ef53d-32c7-6780-ec48-a52658dd5e7f	2021-05-20 07:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:47:55.853+03	2021-05-20 07:47:55.86+03	
930d96c6-0d3d-57ce-b540-326c8449343c	2021-05-20 07:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:48:15.853+03	2021-05-20 07:48:15.859+03	
add4fdd4-b89a-387d-e705-4bb5a2029efe	2021-05-20 07:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:48:35.853+03	2021-05-20 07:48:35.863+03	
6ad6d9bc-0048-5784-198b-b91a012695f5	2021-05-20 07:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:48:55.853+03	2021-05-20 07:48:55.859+03	
85b6b33a-08ee-0c6f-9a47-5729f5b5146a	2021-05-20 07:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:49:15.853+03	2021-05-20 07:49:15.859+03	
88ebd8dd-6fc9-7b05-45cf-74f9600a10c1	2021-05-20 07:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:49:35.853+03	2021-05-20 07:49:35.86+03	
72095109-d9c6-d015-8746-726c4da14020	2021-05-20 07:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:49:55.853+03	2021-05-20 07:49:55.861+03	
ddc4e82a-5c3a-a7e6-c3c9-72e53cb1dab4	2021-05-20 07:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:50:05.853+03	2021-05-20 07:50:05.861+03	
a6c4f6ab-f7cb-854e-e09f-12143bb11b24	2021-05-20 07:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:50:25.853+03	2021-05-20 07:50:25.871+03	
e3649c4a-bf0b-b33d-4e83-43914b3aeb8b	2021-05-20 07:50:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:50:47.853+03	2021-05-20 07:50:47.86+03	
e381172d-cff9-6b9e-0751-2e7391b2670a	2021-05-20 07:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:51:08.852+03	2021-05-20 07:51:08.859+03	
f6760d7d-02b0-c3ce-6995-d3f996f14001	2021-05-20 07:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:51:28.853+03	2021-05-20 07:51:28.859+03	
38073fa4-a827-e578-d0e6-5e2d168fb53b	2021-05-20 07:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:51:49.852+03	2021-05-20 07:51:49.859+03	
4f45e849-1d11-9faa-0a82-484598a3055a	2021-05-20 07:52:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:52:09.853+03	2021-05-20 07:52:09.86+03	
14617c3a-01c7-3ea2-bb9a-4410d6344836	2021-05-20 07:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:52:30.853+03	2021-05-20 07:52:30.859+03	
f720b1f4-208f-d7af-651c-9160eb2b1c9e	2021-05-20 07:52:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:52:50.853+03	2021-05-20 07:52:50.862+03	
4d301db1-75a0-d8a6-3dd9-24a79f5ba522	2021-05-20 07:53:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:53:11.852+03	2021-05-20 07:53:11.86+03	
ff980ff2-2c44-0793-affa-b3af714de798	2021-05-20 07:53:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:53:31.852+03	2021-05-20 07:53:31.864+03	
d55aeaf2-37ef-582c-4e22-94349f3ad610	2021-05-20 07:53:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:53:51.853+03	2021-05-20 07:53:51.86+03	
1489c2f6-80c9-95c3-a415-e6a408556ba7	2021-05-20 07:54:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:54:01.853+03	2021-05-20 07:54:01.865+03	
0f311cb4-d52f-ad66-8156-5278b526c130	2021-05-20 10:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:33:28.853+03	2021-05-20 10:33:28.861+03	
4816525b-97eb-2a5b-debe-ed2f5d3f3dc2	2021-05-20 07:54:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:54:22.852+03	2021-05-20 07:54:22.858+03	
a50c1ce2-66ab-6be9-3260-64fbf2a58c23	2021-05-20 07:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:54:42.852+03	2021-05-20 07:54:42.868+03	
3e28debb-5308-c3ae-8d43-77cc718188a2	2021-05-20 10:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:33:49.852+03	2021-05-20 10:33:49.86+03	
bf2496ee-7741-c748-6537-318fc5f5979e	2021-05-20 07:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:55:02.853+03	2021-05-20 07:55:02.861+03	
a2d330a6-a81f-752a-0557-7da16956a7cb	2021-05-20 07:55:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:55:23.853+03	2021-05-20 07:55:23.859+03	
e0b3eba6-3469-8322-e962-a615d6369926	2021-05-20 10:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:34:09.853+03	2021-05-20 10:34:09.86+03	
82bdded1-2cc0-02a9-e4a9-1fb36bba08e2	2021-05-20 07:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:55:43.853+03	2021-05-20 07:55:43.859+03	
78198b37-12aa-f9b4-e641-6d0116b64be3	2021-05-20 07:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:56:04.853+03	2021-05-20 07:56:04.874+03	
68ccf148-693c-e4d4-0855-71d039b08073	2021-05-20 10:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:34:29.853+03	2021-05-20 10:34:29.86+03	
78016fe3-66e1-d952-13a5-60fec556f85d	2021-05-20 07:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:56:25.853+03	2021-05-20 07:56:25.86+03	
ba7cef66-37a7-ba5e-7cba-da6597efc15c	2021-05-20 07:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:56:45.853+03	2021-05-20 07:56:45.86+03	
7dc808ac-b4ee-4913-42b1-ffa8b325d0af	2021-05-20 10:34:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:34:49.853+03	2021-05-20 10:34:49.859+03	
ad9b6ea4-2872-b21f-ae6d-9a8cacdf6f22	2021-05-20 07:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:57:05.853+03	2021-05-20 07:57:05.86+03	
de6930eb-3fee-86ba-96eb-001f8a94bd34	2021-05-20 07:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:57:25.853+03	2021-05-20 07:57:25.861+03	
5d9b1ba8-3f7d-cbda-a100-7bf29125f08d	2021-05-20 10:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:35:09.853+03	2021-05-20 10:35:09.861+03	
d8975eb6-3c61-a723-3707-1b8e5f5ba698	2021-05-20 07:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:57:45.853+03	2021-05-20 07:57:45.859+03	
415a208c-9c72-5467-fb52-01c36f1d8954	2021-05-20 07:58:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:58:06.854+03	2021-05-20 07:58:07.192+03	
14b9f502-10e4-13a8-f172-443894be081c	2021-05-20 10:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:35:29.853+03	2021-05-20 10:35:29.861+03	
81ae0b25-46d3-b29f-0d40-157a3faa9c98	2021-05-20 07:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:58:27.853+03	2021-05-20 07:58:27.861+03	
913071e8-1e7a-1aa4-82cd-b271296df316	2021-05-20 07:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:58:47.853+03	2021-05-20 07:58:47.861+03	
97aa7b3f-d888-e599-d253-f80d54328d94	2021-05-20 10:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:35:49.853+03	2021-05-20 10:35:49.86+03	
c300e895-ad4f-694b-eabc-92e3f1fecbe3	2021-05-20 07:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:59:07.853+03	2021-05-20 07:59:07.86+03	
82d6dfea-8cb2-efaf-9208-4d3c4fc40b73	2021-05-20 07:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:59:28.852+03	2021-05-20 07:59:28.86+03	
24e35493-5b88-94f5-585d-803383db4971	2021-05-20 10:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:36:09.853+03	2021-05-20 10:36:09.861+03	
f752a478-232e-6096-8496-bda07b48ff27	2021-05-20 07:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:59:49.853+03	2021-05-20 07:59:49.867+03	
3dafa971-5cae-7545-c6e8-89c7883ee2ca	2021-05-20 08:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 08:00:00.853+03	2021-05-20 08:00:00.858+03	ERROR
edca97b2-ab2e-4981-533c-c63892f4b849	2021-05-20 10:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:36:30.853+03	2021-05-20 10:36:30.863+03	
fd6b7e1f-8552-587b-59a3-9430edf8e98f	2021-05-20 08:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:00:19.853+03	2021-05-20 08:00:19.874+03	
2652f61d-883a-057c-7fee-b8c97b3ae00f	2021-05-20 08:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:00:39.853+03	2021-05-20 08:00:39.861+03	
a2151b39-1b3b-3772-a63e-0a9ce1a6ea08	2021-05-20 10:36:50.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:36:50.855+03	2021-05-20 10:36:50.866+03	
cbb58b30-abbb-24f2-88cf-a8c1416590b9	2021-05-20 08:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:01:00.853+03	2021-05-20 08:01:00.858+03	
4f401ed8-a275-9f62-1176-0b37eaab1f2b	2021-05-20 08:01:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:01:21.852+03	2021-05-20 08:01:21.86+03	
fb9e3fe2-c839-18f6-4c00-93447e3086b8	2021-05-20 10:37:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:37:11.853+03	2021-05-20 10:37:11.875+03	
e832d50f-23c8-bf64-a406-6f68da75db10	2021-05-20 08:01:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:01:41.854+03	2021-05-20 08:01:41.86+03	
c5540784-a590-7729-ec05-98648b21e6b6	2021-05-20 08:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:02:02.853+03	2021-05-20 08:02:02.863+03	
fac24988-9c8a-6a2b-b03d-18bfddc42af5	2021-05-20 10:37:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:37:32.853+03	2021-05-20 10:37:32.86+03	
e10372d6-0c37-c153-8fc5-c94d0efddce9	2021-05-20 08:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:02:22.853+03	2021-05-20 08:02:22.86+03	
f4bea9ba-84c5-25a1-5abe-cc9ffa8b24cd	2021-05-20 08:02:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:02:43.853+03	2021-05-20 08:02:43.86+03	
2432eaca-8e0b-0dbc-4fbf-748addf101a1	2021-05-20 10:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:37:53.852+03	2021-05-20 10:37:53.865+03	
445f3ece-05de-f13d-fccf-f0836163125c	2021-05-20 08:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:03:04.853+03	2021-05-20 08:03:04.86+03	
8766a023-8d28-7028-f916-e279cf608ba3	2021-05-20 08:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:03:24.853+03	2021-05-20 08:03:24.859+03	
a4416d13-8585-c455-6cc0-bd75a5124e48	2021-05-20 10:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:38:14.852+03	2021-05-20 10:38:14.859+03	
a499d412-cdeb-456a-31e6-a260cb1538c9	2021-05-20 08:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:03:44.853+03	2021-05-20 08:03:44.862+03	
b2fc814f-f424-e02c-263f-ded98fab5ce9	2021-05-20 08:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:04:04.853+03	2021-05-20 08:04:04.86+03	
67a12f56-c5a8-fe1c-e50d-226e77b0bd55	2021-05-20 10:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:38:34.853+03	2021-05-20 10:38:34.859+03	
d3167174-6273-26e5-c554-e2b58972e77d	2021-05-20 08:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:04:25.853+03	2021-05-20 08:04:25.86+03	
588c0d2b-6d4e-c0a0-a1a6-7b8af5d3a40f	2021-05-20 08:04:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:04:46.852+03	2021-05-20 08:04:46.859+03	
af5f66ab-2cbd-f33b-b3ec-e578161d41cd	2021-05-20 10:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:38:54.853+03	2021-05-20 10:38:54.862+03	
567952f5-bc10-3e2a-4158-c8c030fcd2e2	2021-05-20 08:05:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:05:06.852+03	2021-05-20 08:05:06.868+03	
756d9c85-82c0-1254-71ae-6e9edcadb463	2021-05-20 08:05:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:05:27.852+03	2021-05-20 08:05:27.86+03	
c12517a7-7a0d-9b47-0570-6b1fe4e7cbb1	2021-05-20 10:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:39:15.853+03	2021-05-20 10:39:15.859+03	
701b80e8-d611-636c-24b5-c1ec7f9d71c8	2021-05-20 08:05:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:05:48.852+03	2021-05-20 08:05:48.869+03	
f95e3cbc-744e-c5d4-c7ad-936f27179e0d	2021-05-20 08:06:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:06:08.853+03	2021-05-20 08:06:08.86+03	
7b09b651-e2a7-f74d-a128-42a42a1cd220	2021-05-20 08:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:06:29.853+03	2021-05-20 08:06:29.861+03	
3616deb5-5aae-ad75-47da-425ae814a183	2021-05-20 08:06:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:06:51.853+03	2021-05-20 08:06:51.875+03	
8c8cb12e-ec9c-8999-a62f-3ced7aeee1ad	2021-05-20 08:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:07:12.853+03	2021-05-20 08:07:12.871+03	
9b1bd445-f7b7-3376-6317-8ed3a897cc34	2021-05-20 08:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:07:32.853+03	2021-05-20 08:07:32.871+03	
46ae6183-e6e0-0f03-bbd6-72f5514e9475	2021-05-20 08:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:07:52.853+03	2021-05-20 08:07:52.86+03	
1959cefe-70c0-7124-e05d-93da821fbdbd	2021-05-20 08:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:08:12.853+03	2021-05-20 08:08:12.863+03	
01380e03-7397-3d7d-67fc-fc262da4fac9	2021-05-20 08:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:08:32.853+03	2021-05-20 08:08:32.861+03	
5a5c39b1-d0d0-9294-bb5f-2a01939d1468	2021-05-20 08:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:08:52.853+03	2021-05-20 08:08:52.861+03	
2e16f075-2df2-9d55-0520-0105e7810f17	2021-05-20 08:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:09:12.853+03	2021-05-20 08:09:12.873+03	
7904f338-616f-8f98-b352-e578e0b5158d	2021-05-20 07:54:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:54:11.854+03	2021-05-20 07:54:11.865+03	
b7e0884e-3b31-ed16-f603-a5b767ddd034	2021-05-20 07:54:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:54:32.852+03	2021-05-20 07:54:32.859+03	
065d15a2-36c9-1345-b6df-94c059bbd1ca	2021-05-20 07:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:54:52.852+03	2021-05-20 07:54:52.859+03	
225ff725-c596-87be-4769-1fff5ba369c8	2021-05-20 07:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:55:12.853+03	2021-05-20 07:55:12.861+03	
5a9719dc-0c5c-aaa1-c19a-09145d5d298a	2021-05-20 07:55:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:55:33.853+03	2021-05-20 07:55:33.859+03	
2bb5c21f-6ff4-9eda-739d-e34a82c09a5f	2021-05-20 07:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:55:54.853+03	2021-05-20 07:55:54.86+03	
ee9e6eb5-72d3-d8da-321b-1dbe51e09635	2021-05-20 07:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:56:14.853+03	2021-05-20 07:56:14.859+03	
71335494-9dbf-5e7f-382b-0d35b68edf1e	2021-05-20 07:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:56:35.853+03	2021-05-20 07:56:35.861+03	
ad03bf06-1f91-2498-b363-8eafe7eb25d4	2021-05-20 07:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:56:55.853+03	2021-05-20 07:56:55.872+03	
c1fbbb6b-02db-cd38-d4de-403e07ebdeb7	2021-05-20 07:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:57:15.853+03	2021-05-20 07:57:15.861+03	
d9d8015c-af67-509c-0a48-ce604d865762	2021-05-20 07:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:57:35.853+03	2021-05-20 07:57:35.86+03	
5cfb7c57-bf21-3e4e-90ae-b54521ab5882	2021-05-20 07:57:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:57:56.853+03	2021-05-20 07:57:56.861+03	
cc6d8338-e71c-72f2-4b36-8162ef603cb7	2021-05-20 07:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:58:17.852+03	2021-05-20 07:58:17.87+03	
69c502e9-7cb7-6ad9-30b4-dffc381645ae	2021-05-20 07:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:58:37.853+03	2021-05-20 07:58:37.865+03	
385d5969-ada8-edfa-f569-1a3e94c70201	2021-05-20 07:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:58:57.853+03	2021-05-20 07:58:57.858+03	
0fdd829e-403e-8025-7105-ddf609abcfc9	2021-05-20 07:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:59:18.852+03	2021-05-20 07:59:18.861+03	
c6d3aba7-a09a-fe39-c896-db6a397a20f0	2021-05-20 07:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:59:38.853+03	2021-05-20 07:59:38.86+03	
cf330b73-63f3-a4c5-7797-6bc89e1cda12	2021-05-20 07:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 07:59:59.853+03	2021-05-20 07:59:59.862+03	
aa69b9c5-2a96-eff4-f93a-9783084aa087	2021-05-20 08:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:00:09.853+03	2021-05-20 08:00:09.914+03	
a279efe3-33d2-2fdb-8e01-d4eaf47ba651	2021-05-20 08:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:00:29.853+03	2021-05-20 08:00:29.867+03	
05c9c661-9ff3-e72c-6c8b-876b5d0c4df5	2021-05-20 08:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:00:50.852+03	2021-05-20 08:00:50.86+03	
cf23b0b4-25cf-a002-34ad-f61c09036843	2021-05-20 08:01:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:01:11.852+03	2021-05-20 08:01:11.86+03	
f9e3dd74-cfa3-3734-2f77-9d504816958d	2021-05-20 08:01:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:01:31.853+03	2021-05-20 08:01:31.872+03	
09710a53-a223-90a4-349d-29c9565a9c26	2021-05-20 08:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:01:52.853+03	2021-05-20 08:01:52.86+03	
320bd2fb-c413-f701-9696-ea932acb048b	2021-05-20 08:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:02:12.853+03	2021-05-20 08:02:12.86+03	
a0f6329e-a64a-a0f8-c8d7-35bd1a900b37	2021-05-20 08:02:32.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:02:32.855+03	2021-05-20 08:02:32.867+03	
9f9f3c26-4eab-d7ec-230b-4db410d235db	2021-05-20 08:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:02:54.852+03	2021-05-20 08:02:54.858+03	
7eb5b305-baa6-0dc9-de2b-0f985444c0ff	2021-05-20 08:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:03:14.853+03	2021-05-20 08:03:14.859+03	
4a45d695-c2ee-d054-fece-d15e76317744	2021-05-20 08:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:03:34.853+03	2021-05-20 08:03:34.859+03	
28713679-d40c-db45-1002-8fe80b1c9238	2021-05-20 08:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:03:54.853+03	2021-05-20 08:03:54.86+03	
7c607b38-812d-716d-b192-6b9d805cf8ea	2021-05-20 08:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:04:14.853+03	2021-05-20 08:04:14.861+03	
01be7108-e791-d4f7-34cb-6ec8bb8bdd4a	2021-05-20 08:04:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:04:35.854+03	2021-05-20 08:04:35.866+03	
75f8ff05-16a3-2687-c821-949a9a602086	2021-05-20 08:04:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:04:56.852+03	2021-05-20 08:04:56.862+03	
92796ad1-5106-9537-e67d-4e2765579308	2021-05-20 08:05:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:05:16.854+03	2021-05-20 08:05:16.861+03	
a140a0d8-269d-f573-1431-55fe5cfe0150	2021-05-20 08:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:05:37.853+03	2021-05-20 08:05:37.86+03	
ccebf109-e62d-acd9-680e-2a6633728dac	2021-05-20 08:05:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:05:58.853+03	2021-05-20 08:05:58.86+03	
ade4aac4-276f-b647-45e7-d2c0e4a62f37	2021-05-20 08:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:06:18.853+03	2021-05-20 08:06:18.862+03	
0e27ee5c-ef95-e204-efbf-ec10c1a3cc88	2021-05-20 08:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:06:40.853+03	2021-05-20 08:06:40.859+03	
bfda9b1e-cc9f-3fdd-4a24-acba3f8ecb4e	2021-05-20 08:07:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:07:02.853+03	2021-05-20 08:07:02.861+03	
84778b35-dbfd-531a-1cd9-645e1c0a9b02	2021-05-20 08:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:07:22.853+03	2021-05-20 08:07:22.86+03	
5b9cdff6-6e93-5b04-54ec-98c7069c2776	2021-05-20 08:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:07:42.853+03	2021-05-20 08:07:42.861+03	
b11f6254-2ee0-ab8f-b804-1beecf949535	2021-05-20 08:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:08:02.853+03	2021-05-20 08:08:02.859+03	
2383c909-03c5-2abc-31c2-b269412a3e10	2021-05-20 08:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:08:22.853+03	2021-05-20 08:08:22.859+03	
7a21df81-2b6c-0df9-7a82-656cf0c14630	2021-05-20 08:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:08:42.853+03	2021-05-20 08:08:42.862+03	
e1da5fb0-2075-058a-5390-7bfc2962f5d5	2021-05-20 08:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:09:02.853+03	2021-05-20 08:09:02.861+03	
b2e2e5fc-80c1-76ff-6797-db9fd8be0283	2021-05-20 08:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:09:22.853+03	2021-05-20 08:09:22.861+03	
3650ce25-5d38-39e1-2a97-eb51c44634c2	2021-05-20 08:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:09:33.852+03	2021-05-20 08:09:33.868+03	
04a5c6a6-bdf3-8d84-67ce-f72dbe4b83c4	2021-05-20 08:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:09:43.852+03	2021-05-20 08:09:43.861+03	
d2f21a5e-6b27-b684-7e66-135669600410	2021-05-20 08:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:09:53.852+03	2021-05-20 08:09:53.861+03	
47da67c0-15db-770d-aa7a-ddd24b88bba6	2021-05-20 08:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 08:10:00.853+03	2021-05-20 08:10:00.857+03	ERROR
47db78ab-aa6c-be8c-0bf0-e53ea1306241	2021-05-20 08:10:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:10:03.853+03	2021-05-20 08:10:03.86+03	
77feef72-169d-a779-7893-281b530b262e	2021-05-20 08:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:10:13.853+03	2021-05-20 08:10:13.859+03	
4fa2467e-8621-026a-d836-c8dab7a2e8da	2021-05-20 08:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:10:23.853+03	2021-05-20 08:10:23.86+03	
1ecd6038-d23c-440c-a892-ccc3811f8107	2021-05-20 08:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:10:33.853+03	2021-05-20 08:10:33.859+03	
187a80e7-09e0-1c01-b6f1-5a0cff42b59d	2021-05-20 08:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:10:43.853+03	2021-05-20 08:10:43.86+03	
46059fce-e1d5-ff90-11fa-fb2e88de7b11	2021-05-20 08:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:10:53.853+03	2021-05-20 08:10:53.862+03	
91e08272-fa31-163a-8f2a-3d2748d6e210	2021-05-20 08:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:11:03.853+03	2021-05-20 08:11:03.862+03	
5be6c2dd-f9f4-d948-ed76-ec6a6b10858f	2021-05-20 08:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:11:14.852+03	2021-05-20 08:11:14.87+03	
5e44b9b6-0ba5-6fd4-6e9e-aed8a977f37b	2021-05-20 08:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:11:24.853+03	2021-05-20 08:11:24.86+03	
4a6e531d-3f8b-7e7c-3e23-af30d8057bdd	2021-05-20 08:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:11:35.853+03	2021-05-20 08:11:35.859+03	
540b80dd-e65c-ce8e-c393-f8ae5d8f0d34	2021-05-20 08:11:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:11:46.853+03	2021-05-20 08:11:46.859+03	
bda553f2-651f-2160-dcbb-6143374e46e2	2021-05-20 08:11:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:11:56.853+03	2021-05-20 08:11:56.86+03	
878e5a2c-8e28-72d5-0c2b-6bd12cfc2129	2021-05-20 08:12:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:12:06.853+03	2021-05-20 08:12:06.861+03	
8ddbedf3-835d-a318-553c-2eafa08f4e5d	2021-05-20 08:12:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:12:16.854+03	2021-05-20 08:12:16.868+03	
536e4f6a-de77-5fce-11f7-8c7dd301faa5	2021-05-20 08:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:12:37.853+03	2021-05-20 08:12:37.862+03	
a992be4c-3325-b014-00f2-378975c506de	2021-05-20 08:12:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:12:57.853+03	2021-05-20 08:12:57.86+03	
2d8ace46-0b33-15de-7a53-2b2808b7ceec	2021-05-20 08:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:13:18.852+03	2021-05-20 08:13:18.864+03	
cd896e06-bf28-0a76-3ae1-7defbe4edfba	2021-05-20 08:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:13:39.853+03	2021-05-20 08:13:39.859+03	
6e3f0d1a-1548-e250-1b37-a2bad98234f3	2021-05-20 08:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:13:59.853+03	2021-05-20 08:13:59.86+03	
970b7012-78d0-25d3-795a-39e5ba31bf56	2021-05-20 08:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:14:30.853+03	2021-05-20 08:14:30.86+03	
8b70a1a5-b7fa-8b0b-96f3-1fe9df524f4d	2021-05-20 08:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:14:50.853+03	2021-05-20 08:14:50.867+03	
12464528-314b-ac34-c382-8555f8ab38cc	2021-05-20 08:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:15:10.853+03	2021-05-20 08:15:10.86+03	
4fb610ad-f1cc-089b-f800-273b231fc317	2021-05-20 08:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:15:30.853+03	2021-05-20 08:15:30.869+03	
21342108-1d11-49ac-cc88-6616bee293e0	2021-05-20 08:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:15:50.853+03	2021-05-20 08:15:50.865+03	
6cba1786-0b98-6227-0e9f-8824deea3400	2021-05-20 08:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:16:10.853+03	2021-05-20 08:16:10.86+03	
de496604-bc1a-3aeb-4c62-9b7ffcad5e96	2021-05-20 08:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:16:30.853+03	2021-05-20 08:16:30.862+03	
7e1e6056-92ba-b365-5a99-1a20b58f4640	2021-05-20 08:16:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:16:51.853+03	2021-05-20 08:16:51.861+03	
76dd7e75-09b8-2823-fded-5bd0675e0a60	2021-05-20 08:17:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:17:11.853+03	2021-05-20 08:17:11.868+03	
4d6b5ae6-ef55-12b2-e5bd-dba27d6fb93c	2021-05-20 08:17:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:17:31.853+03	2021-05-20 08:17:31.872+03	
4d86303a-b8bd-2e10-cd18-fbc37433b0a2	2021-05-20 08:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:17:52.853+03	2021-05-20 08:17:52.862+03	
a4866451-f33d-4ddd-b065-f26b5e4d2bd7	2021-05-20 08:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:18:13.853+03	2021-05-20 08:18:13.864+03	
18826a61-fd5e-20a2-87a0-82244ff1d15c	2021-05-20 08:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:18:33.853+03	2021-05-20 08:18:33.859+03	
6040ca94-daeb-8792-fb74-853488229d83	2021-05-20 08:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:18:54.853+03	2021-05-20 08:18:54.86+03	
60b968c8-344f-15d9-3d0d-7ea6a29a2409	2021-05-20 08:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:19:14.853+03	2021-05-20 08:19:14.861+03	
651e31f2-92a9-fe86-fb81-8ee8e4d9830b	2021-05-20 08:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:19:34.853+03	2021-05-20 08:19:34.87+03	
12bb00ec-6290-684a-c8af-6197d23298d2	2021-05-20 08:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:19:55.853+03	2021-05-20 08:19:55.869+03	
91b6bfe2-7cd0-5e47-b966-47a2243ddf5b	2021-05-20 08:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:20:05.853+03	2021-05-20 08:20:05.861+03	
131085c5-a506-e1de-df6b-cab478414354	2021-05-20 08:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:20:25.853+03	2021-05-20 08:20:25.86+03	
c5ba0ac2-ebcb-80cd-f1d9-fa9b9eb91ef5	2021-05-20 08:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:20:46.853+03	2021-05-20 08:20:46.86+03	
2841e92e-1176-23ae-637a-889304de4df5	2021-05-20 08:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:21:06.853+03	2021-05-20 08:21:06.859+03	
15c67d7e-a9d0-2e99-156b-633aa10bf60a	2021-05-20 08:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:21:27.852+03	2021-05-20 08:21:27.859+03	
178aedd8-4284-afe6-5742-ccb34366097f	2021-05-20 08:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:21:47.852+03	2021-05-20 08:21:47.864+03	
24de902d-b327-9edf-c487-d741242fc1fd	2021-05-20 08:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:22:07.853+03	2021-05-20 08:22:07.86+03	
256f0290-0050-ab94-76c8-bea68677d815	2021-05-20 08:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:22:27.853+03	2021-05-20 08:22:27.86+03	
3c731bd2-2078-21fb-2ea0-224877541440	2021-05-20 08:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:22:47.853+03	2021-05-20 08:22:47.861+03	
776eec47-9a03-7c2a-2961-e9a621d84699	2021-05-20 08:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:23:08.853+03	2021-05-20 08:23:08.861+03	
037ce8bb-191f-1eb6-cd29-ab30025957a3	2021-05-20 08:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:23:29.852+03	2021-05-20 08:23:29.859+03	
67def559-f4c8-f2d9-0a22-09148426946a	2021-05-20 08:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:23:50.853+03	2021-05-20 08:23:50.861+03	
c208a761-7186-34b8-be47-e38da76fe2fa	2021-05-20 08:24:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:24:11.853+03	2021-05-20 08:24:11.862+03	
b572e7be-2b74-20d7-a762-e1ef4a835f5f	2021-05-20 08:24:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:24:31.854+03	2021-05-20 08:24:31.874+03	
9c342b54-9649-31b8-f59d-795462f55bfe	2021-05-20 08:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:24:52.853+03	2021-05-20 08:24:52.862+03	
09d78349-1653-c5a9-c768-f17f29078017	2021-05-20 08:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:25:13.852+03	2021-05-20 08:25:13.863+03	
21f5d17f-990b-849b-2875-6b4a9192e481	2021-05-20 08:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:25:33.852+03	2021-05-20 08:25:33.86+03	
ba1819e7-9a27-2c9e-4d40-f66dd17bd90f	2021-05-20 08:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:25:53.853+03	2021-05-20 08:25:53.86+03	
3bf3bbff-a2ce-5a75-0708-9d40c6f029e3	2021-05-20 08:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:26:13.853+03	2021-05-20 08:26:13.86+03	
85d32379-2bda-5e02-8615-a9dcfd4e76e7	2021-05-20 08:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:26:34.853+03	2021-05-20 08:26:34.86+03	
b4dfa134-6528-99b3-8ced-264e592dd641	2021-05-20 08:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:26:55.853+03	2021-05-20 08:26:55.861+03	
784d9a87-6550-3a15-2801-4b0e2f0331fe	2021-05-20 08:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:27:16.852+03	2021-05-20 08:27:16.86+03	
e121d472-74e7-ccd1-2ac8-ccb45321f1fd	2021-05-20 08:27:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:27:36.854+03	2021-05-20 08:27:36.862+03	
3a5789ee-8af3-f5b6-088e-1a8a971559f8	2021-05-20 08:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:27:57.853+03	2021-05-20 08:27:57.862+03	
d39a5921-4576-3e12-1db8-92c37ba688f5	2021-05-20 08:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:28:18.852+03	2021-05-20 08:28:18.879+03	
f699d31a-5d80-00e0-661f-4c9d093355a2	2021-05-20 08:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:28:38.852+03	2021-05-20 08:28:38.861+03	
467bc82a-f4a1-286c-9158-212e7c801aa7	2021-05-20 08:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:28:59.853+03	2021-05-20 08:28:59.86+03	
d5b7b6d6-f395-8962-4a57-7f4e4756c3ea	2021-05-20 08:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:29:20.853+03	2021-05-20 08:29:20.861+03	
23a89f0a-9165-9240-9215-223df79770eb	2021-05-20 08:29:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:29:41.853+03	2021-05-20 08:29:41.865+03	
e677f60f-1f13-805f-81c6-e7dc2293b4b4	2021-05-20 08:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 08:30:00.852+03	2021-05-20 08:30:00.857+03	ERROR
2f844086-f957-60e4-9097-b7072a42baf3	2021-05-20 08:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:30:12.853+03	2021-05-20 08:30:12.859+03	
3c385faa-2ca0-8b36-408a-55b3288d2670	2021-05-20 08:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:30:32.853+03	2021-05-20 08:30:32.863+03	
27f98f35-54dc-ebec-0f93-3877dcc8555d	2021-05-20 08:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:30:53.852+03	2021-05-20 08:30:53.875+03	
19b1885e-1702-4f31-4dd3-144a778c75bd	2021-05-20 08:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:31:13.853+03	2021-05-20 08:31:13.861+03	
7cf35bce-4aac-8d16-7225-7f2f8eb35b3c	2021-05-20 08:31:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:31:34.852+03	2021-05-20 08:31:34.863+03	
ec2eb14e-496a-0cd4-4bae-a7ca1cbb5e0e	2021-05-20 08:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:31:54.852+03	2021-05-20 08:31:54.859+03	
b7f5a4c0-6a34-65f3-ade1-59d855fd49f9	2021-05-20 08:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:32:15.853+03	2021-05-20 08:32:15.862+03	
cf29af19-0427-604d-8033-509f0c524dbb	2021-05-20 08:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:32:35.853+03	2021-05-20 08:32:35.873+03	
c4299af4-de34-311b-7a91-c1593c804a39	2021-05-20 08:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:32:57.852+03	2021-05-20 08:32:57.859+03	
6b3f721f-2e77-9098-9db3-880e8f62544f	2021-05-20 08:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:33:17.853+03	2021-05-20 08:33:17.861+03	
6f47fe02-c4e2-dade-3e3b-e9f7100a1899	2021-05-20 08:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:12:27.853+03	2021-05-20 08:12:27.861+03	
a795856c-e757-fd14-b2c3-3a68bbedb3f3	2021-05-20 08:12:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:12:47.853+03	2021-05-20 08:12:47.872+03	
4fc0c914-a3e8-5a43-2e6c-cb5045117544	2021-05-20 08:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:13:07.853+03	2021-05-20 08:13:07.859+03	
87de0a99-0554-7eb8-2048-fe1e817ee6d7	2021-05-20 08:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:13:28.853+03	2021-05-20 08:13:28.859+03	
580c8682-3932-cca5-cade-ec744d44248b	2021-05-20 08:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:13:49.853+03	2021-05-20 08:13:49.861+03	
3223006a-f37e-5a71-cd6a-d4a49ddbfec5	2021-05-20 08:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:14:09.853+03	2021-05-20 08:14:11.358+03	
747f2e42-f056-984a-97bb-9ef1eff80cdb	2021-05-20 08:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:14:19.853+03	2021-05-20 08:14:19.86+03	
9edbf0e3-1d96-6549-041c-f236938f0796	2021-05-20 08:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:14:40.853+03	2021-05-20 08:14:40.86+03	
53d37f7b-baed-48df-759d-ae494af6b151	2021-05-20 08:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:15:00.853+03	2021-05-20 08:15:00.86+03	
bf0371c4-b1e5-8939-5d04-70f4e5fac505	2021-05-20 08:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:15:20.853+03	2021-05-20 08:15:20.859+03	
6b084139-0957-87ae-aaf1-f26029f6cba8	2021-05-20 08:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:15:40.853+03	2021-05-20 08:15:40.86+03	
98106ea2-134d-d705-99a2-b6a7b7553c77	2021-05-20 08:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:16:00.853+03	2021-05-20 08:16:00.859+03	
ecc71258-2987-b12c-1432-eaf2d239c90a	2021-05-20 08:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:16:20.853+03	2021-05-20 08:16:20.86+03	
db6251a9-2df5-520b-ae97-55c27c65daed	2021-05-20 08:16:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:16:41.852+03	2021-05-20 08:16:41.86+03	
b36c470f-fc7d-9da4-5153-efac05af3d00	2021-05-20 08:17:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:17:01.853+03	2021-05-20 08:17:01.859+03	
6317c02c-fae4-bfdc-0a26-8595bfc2011e	2021-05-20 08:17:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:17:21.853+03	2021-05-20 08:17:21.862+03	
9711d81e-b7ad-293c-1b1d-16de06e17e6d	2021-05-20 08:17:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:17:41.853+03	2021-05-20 08:17:41.86+03	
89572150-3558-e31c-18dc-1fa7ff6e297e	2021-05-20 08:18:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:18:02.853+03	2021-05-20 08:18:02.859+03	
ade28429-77c1-fab5-d205-50fe07fc815b	2021-05-20 08:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:18:23.853+03	2021-05-20 08:18:23.86+03	
2a2cef9c-4300-5e84-8db2-ab94097dbc7f	2021-05-20 08:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:18:43.853+03	2021-05-20 08:18:43.863+03	
b4436423-001a-4d4f-9d27-03559c8b7fe4	2021-05-20 08:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:19:04.853+03	2021-05-20 08:19:04.861+03	
8535e776-2aa6-9cb3-2afa-1dcd40905c2a	2021-05-20 08:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:19:24.853+03	2021-05-20 08:19:24.86+03	
17b42b49-e60e-6713-684e-4c2079caa084	2021-05-20 08:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:19:45.853+03	2021-05-20 08:19:45.859+03	
6e192d92-39d4-b960-610e-e28702c82740	2021-05-20 08:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 08:20:00.853+03	2021-05-20 08:20:00.859+03	ERROR
343d0b8d-d0f5-caf3-83d1-68a32c8add18	2021-05-20 08:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:20:15.853+03	2021-05-20 08:20:15.864+03	
c28b7d6c-1ada-ba35-a509-25077fe0b99c	2021-05-20 08:20:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:20:36.852+03	2021-05-20 08:20:36.86+03	
368cddbb-a70c-5ee2-25ad-ef4429a727c4	2021-05-20 08:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:20:56.853+03	2021-05-20 08:20:56.861+03	
287d2aa4-c558-8459-a0ea-45b5396d665c	2021-05-20 08:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:21:17.852+03	2021-05-20 08:21:17.858+03	
eacced7b-30f5-7073-7442-8cfdd115f9c2	2021-05-20 08:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:21:37.852+03	2021-05-20 08:21:37.87+03	
1a673a2c-49ee-009a-3280-040a74139548	2021-05-20 08:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:21:57.852+03	2021-05-20 08:21:57.859+03	
e2b13e57-81cf-1d72-4fb9-0bd390035270	2021-05-20 08:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:22:17.853+03	2021-05-20 08:22:17.864+03	
14ea5e0a-a253-955b-b7d7-8071ab75b80a	2021-05-20 08:22:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:22:37.853+03	2021-05-20 08:22:37.86+03	
092d695a-77d6-71cd-5646-492c3daa3524	2021-05-20 08:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:22:58.853+03	2021-05-20 08:22:58.86+03	
74133360-1d58-48e9-a87c-411a3a7d5f42	2021-05-20 08:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:23:19.852+03	2021-05-20 08:23:19.863+03	
516ac008-0df9-ad78-6ea9-f8b25ac9fc55	2021-05-20 08:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:23:39.853+03	2021-05-20 08:23:39.859+03	
839e7395-4659-344b-17cf-c30b117749af	2021-05-20 08:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:24:00.853+03	2021-05-20 08:24:00.864+03	
6e5ba265-3fba-9c54-61c0-b967cb6518c7	2021-05-20 08:24:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:24:21.853+03	2021-05-20 08:24:21.863+03	
544282de-4f02-79a5-344c-584434746fd6	2021-05-20 08:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:24:42.852+03	2021-05-20 08:24:42.865+03	
55de4391-77ff-73a4-0c04-4e8937d4a56e	2021-05-20 08:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:25:02.853+03	2021-05-20 08:25:02.86+03	
983137e4-59f3-fa04-a1c1-27788ad58627	2021-05-20 08:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:25:23.852+03	2021-05-20 08:25:23.859+03	
5c2ef3e3-771d-4693-8391-7a88ac06f392	2021-05-20 08:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:25:43.853+03	2021-05-20 08:25:43.861+03	
5985ac92-6ccf-3dd5-e46b-5ec62cba22d0	2021-05-20 08:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:26:03.853+03	2021-05-20 08:26:03.865+03	
62839410-5fb1-bdd2-5e2e-d162caa31486	2021-05-20 08:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:26:23.853+03	2021-05-20 08:26:23.866+03	
dec2d8f6-5cfa-b1f4-12ec-63c30c676bb6	2021-05-20 08:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:26:45.852+03	2021-05-20 08:26:45.87+03	
0cddcfe1-a9a8-c93f-8c99-9b94873e6280	2021-05-20 08:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:27:05.853+03	2021-05-20 08:27:05.86+03	
19550693-70ba-bce2-d539-dbf28bddf2bf	2021-05-20 08:27:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:27:26.854+03	2021-05-20 08:27:26.86+03	
c384b5e1-99bc-c285-d095-48db4921dc7b	2021-05-20 08:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:27:47.853+03	2021-05-20 08:27:47.86+03	
97370856-4c64-68cc-6234-94d530895f3b	2021-05-20 08:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:28:07.853+03	2021-05-20 08:28:07.86+03	
7024dc8d-f95f-1435-3484-f2f1744932f7	2021-05-20 08:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:28:28.852+03	2021-05-20 08:28:28.863+03	
5ffa0f6b-b4eb-d15a-f4f2-d34722cdee8c	2021-05-20 08:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:28:48.853+03	2021-05-20 08:28:48.862+03	
7b84647a-ed86-6461-db88-f00138d5b613	2021-05-20 08:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:29:10.853+03	2021-05-20 08:29:10.859+03	
8db4b6ca-1398-8303-c045-f01ac11b50a0	2021-05-20 08:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:29:30.853+03	2021-05-20 08:29:30.859+03	
2378a751-2dd3-74d2-a6a3-85395aa5c833	2021-05-20 08:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:29:52.852+03	2021-05-20 08:29:52.86+03	
de002c01-306b-d9f8-3c16-81e297f18629	2021-05-20 08:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:30:02.852+03	2021-05-20 08:30:02.859+03	
9071177c-95cf-2889-6785-ce8c45ec5fb7	2021-05-20 08:30:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:30:22.853+03	2021-05-20 08:30:22.859+03	
29f62790-ddfc-1231-d358-df23214e803d	2021-05-20 08:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:30:42.853+03	2021-05-20 08:30:42.864+03	
73ced196-4f08-bf6a-5a67-7e6d4f0192cf	2021-05-20 08:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:31:03.853+03	2021-05-20 08:31:03.86+03	
3caed137-42f7-a615-5418-a10b6f46ed92	2021-05-20 08:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:31:23.853+03	2021-05-20 08:31:23.86+03	
e1ce993a-ee32-397a-6882-162948cede0a	2021-05-20 08:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:31:44.852+03	2021-05-20 08:31:44.859+03	
2c4a4fce-2666-670b-acd1-f5beb2358303	2021-05-20 08:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:32:04.853+03	2021-05-20 08:32:04.86+03	
84479f33-b75d-be9a-141b-e2dd5b479c21	2021-05-20 08:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:32:25.853+03	2021-05-20 08:32:25.862+03	
0d75ddab-9a53-d32b-ffff-341a6c7d0932	2021-05-20 08:32:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:32:46.853+03	2021-05-20 08:32:46.86+03	
8d1e09d2-764e-7edf-7984-75ef05c4b442	2021-05-20 08:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:33:07.852+03	2021-05-20 08:33:07.882+03	
602aa44e-1b66-fdad-1f68-6ee4a4590820	2021-05-20 08:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:33:27.853+03	2021-05-20 08:33:27.866+03	
c442fab3-8697-b410-20a9-f6baa8906a44	2021-05-20 08:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:33:47.853+03	2021-05-20 08:33:47.859+03	
78d59306-b78c-e872-4c9e-8114fc56c235	2021-05-20 08:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:34:08.852+03	2021-05-20 08:34:08.86+03	
7046a3a8-a21f-3219-f6af-b4df446c6c32	2021-05-20 08:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:34:28.852+03	2021-05-20 08:34:28.861+03	
d13444b8-6dce-29ab-bf07-c44f7bcaf518	2021-05-20 08:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:34:48.852+03	2021-05-20 08:34:48.859+03	
f6aa8148-0b08-6bd8-2e6d-f0b5d6e4c4ce	2021-05-20 08:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:35:08.852+03	2021-05-20 08:35:08.861+03	
37eab7aa-e8e7-67a5-902d-43c87148f336	2021-05-20 08:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:35:28.852+03	2021-05-20 08:35:28.86+03	
8a7ca8af-f70f-5cfc-4054-52fe68640a46	2021-05-20 08:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:35:48.853+03	2021-05-20 08:35:48.86+03	
eda1228e-dcee-33f6-8e37-fb0a2fd363d9	2021-05-20 08:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:36:09.853+03	2021-05-20 08:36:09.859+03	
6fe5b74e-eb67-ff59-923c-046bedd7e812	2021-05-20 08:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:36:30.852+03	2021-05-20 08:36:30.86+03	
2730cfd3-9015-fb94-1b00-8d00df042ff8	2021-05-20 08:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:36:50.852+03	2021-05-20 08:36:50.858+03	
82fb325a-b2e4-f6fb-c065-12421162f468	2021-05-20 08:37:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:37:11.852+03	2021-05-20 08:37:11.868+03	
36ca1b97-0039-9e02-e326-728823edd72b	2021-05-20 08:37:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:37:31.853+03	2021-05-20 08:37:31.859+03	
b0e67999-233f-9d3f-256b-93217c57afa4	2021-05-20 08:37:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:37:51.853+03	2021-05-20 08:37:51.865+03	
4920d0b2-565e-0833-95ee-0bc59538150e	2021-05-20 08:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:38:12.852+03	2021-05-20 08:38:12.871+03	
29468c62-6b16-292c-6f64-91520b7c3f2e	2021-05-20 08:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:38:32.852+03	2021-05-20 08:38:32.861+03	
34729a54-f4b5-52ff-70e5-fd1827188619	2021-05-20 08:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:38:52.852+03	2021-05-20 08:38:52.858+03	
3083d835-0541-760e-6a39-b6efcd9bd39b	2021-05-20 08:39:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:39:13.853+03	2021-05-20 08:39:13.866+03	
04b62a53-227a-7c04-55ed-c37aac8c3844	2021-05-20 08:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:39:33.853+03	2021-05-20 08:39:33.864+03	
b8ebc9b1-bbc9-d796-d621-d8916f565666	2021-05-20 08:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:39:55.852+03	2021-05-20 08:39:55.862+03	
bbb1cd81-394d-a162-d8d7-0175d81fb106	2021-05-20 08:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:40:05.852+03	2021-05-20 08:40:05.86+03	
35ff4480-5d0e-baec-8803-79779ebcbcda	2021-05-20 08:40:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:40:25.852+03	2021-05-20 08:40:25.863+03	
8b757690-efb6-770f-4ae4-8b7726d7cf1f	2021-05-20 08:40:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:40:45.853+03	2021-05-20 08:40:45.861+03	
0ae10685-17ad-5de2-04f7-821470713957	2021-05-20 08:41:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:41:06.853+03	2021-05-20 08:41:06.865+03	
13f8581e-9f6c-3892-6d09-20331a3ee92d	2021-05-20 08:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:41:27.852+03	2021-05-20 08:41:27.863+03	
d2021eed-7613-fbd5-172c-d12152fb961a	2021-05-20 08:41:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:41:47.852+03	2021-05-20 08:41:47.86+03	
902e9293-77d5-ab18-7e6c-2463d75f311c	2021-05-20 08:42:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:42:07.852+03	2021-05-20 08:42:07.859+03	
1ff00a32-d3c4-253e-6666-645bbc4bfbe5	2021-05-20 08:42:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:42:27.853+03	2021-05-20 08:42:27.871+03	
d0c3ab5f-1d67-d61e-2f73-8a3263a0c849	2021-05-20 08:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:42:47.853+03	2021-05-20 08:42:47.859+03	
4e26b32c-85f2-e84a-1f1b-7e148eb8d17c	2021-05-20 08:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:43:08.853+03	2021-05-20 08:43:08.862+03	
42cabd8b-af31-302a-f671-77862d1ca616	2021-05-20 08:43:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:43:29.852+03	2021-05-20 08:43:29.861+03	
87a925b7-e210-7cd9-184b-0c1a1b87f6fe	2021-05-20 08:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:43:49.852+03	2021-05-20 08:43:49.859+03	
33fc8210-98b2-1c49-871a-addd02676bbe	2021-05-20 08:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:44:09.852+03	2021-05-20 08:44:09.86+03	
54b41c30-60ea-41d5-e659-31e118879630	2021-05-20 08:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:44:29.853+03	2021-05-20 08:44:29.86+03	
7bc20a8c-e2e3-c33d-9418-74d1341f9b90	2021-05-20 08:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:44:50.853+03	2021-05-20 08:44:50.861+03	
a905801f-bf19-0a75-c3f0-dc8b47223c8f	2021-05-20 08:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:45:12.852+03	2021-05-20 08:45:12.862+03	
8ee4e697-8578-215d-5c3d-37f141055175	2021-05-20 08:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:45:32.853+03	2021-05-20 08:45:32.859+03	
9ea6ed95-5ce6-b1de-84f1-650f04d20bb8	2021-05-20 08:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:45:53.853+03	2021-05-20 08:45:53.862+03	
b4cb646d-f286-09d6-7f9c-18deddb19cce	2021-05-20 08:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:46:13.853+03	2021-05-20 08:46:13.863+03	
f02bfc5c-bd48-f80d-b4ae-c44fcd8703b1	2021-05-20 08:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:46:34.853+03	2021-05-20 08:46:34.869+03	
8118eb34-b9c1-4598-21d2-13f46d0add1c	2021-05-20 08:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:46:55.853+03	2021-05-20 08:46:55.859+03	
e13568a1-3e65-d0be-2017-f8b482a9ed80	2021-05-20 08:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:47:15.853+03	2021-05-20 08:47:15.869+03	
12ec3eff-7917-4bea-22e7-f1a3c0c66ebd	2021-05-20 08:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:47:35.853+03	2021-05-20 08:47:35.864+03	
e80b8deb-4f88-8403-0364-40a10aa0b4a9	2021-05-20 08:47:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:47:56.853+03	2021-05-20 08:47:56.861+03	
171bc916-48e4-19d5-c82d-d49e25b4e780	2021-05-20 08:48:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:48:16.855+03	2021-05-20 08:48:16.866+03	
80b04bf3-de01-7c91-ed82-988924cd982f	2021-05-20 08:48:37.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:48:37.855+03	2021-05-20 08:48:37.868+03	
869558bc-d744-7c3b-46a7-7f9da804fd0f	2021-05-20 08:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:48:58.853+03	2021-05-20 08:48:58.862+03	
cb198a80-b8d5-d59e-69b2-8af28f0829cc	2021-05-20 08:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:49:19.853+03	2021-05-20 08:49:19.863+03	
182d0e16-0735-cb97-8834-0982f599af68	2021-05-20 08:49:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:49:40.853+03	2021-05-20 08:49:40.859+03	
a40ca5ce-69f2-9952-5433-11003c80e90f	2021-05-20 08:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 08:50:00.853+03	2021-05-20 08:50:00.858+03	ERROR
044e120f-de9c-a155-ac9e-48c98984f68e	2021-05-20 08:50:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:50:11.854+03	2021-05-20 08:50:11.863+03	
c65c0b45-2b8e-a763-c484-dde658f89ded	2021-05-20 08:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:50:32.853+03	2021-05-20 08:50:32.86+03	
862c4f96-a9e7-8f46-a7d3-f7368d60af5d	2021-05-20 08:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:50:53.853+03	2021-05-20 08:50:53.86+03	
6fa8a034-4781-0625-687b-024201739462	2021-05-20 08:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:51:13.853+03	2021-05-20 08:51:13.869+03	
f529c289-68e6-af49-0afb-d1d9a53c07e1	2021-05-20 08:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:51:34.853+03	2021-05-20 08:51:34.859+03	
6db540c8-3a5a-2b09-9b94-84c26b061ee3	2021-05-20 08:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:51:54.853+03	2021-05-20 08:51:54.859+03	
61f2938c-ed82-9399-08f6-b2dd44faa2b8	2021-05-20 08:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:52:15.853+03	2021-05-20 08:52:15.859+03	
4c835906-a8c8-3e1b-e835-d3f0bcca6b07	2021-05-20 08:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:52:35.853+03	2021-05-20 08:52:35.86+03	
b7df303e-1473-e609-a818-bbc82d1a4511	2021-05-20 08:52:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:52:56.853+03	2021-05-20 08:52:56.864+03	
3ec528ef-c28b-e441-211a-f8bf7a1d1852	2021-05-20 08:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:53:18.852+03	2021-05-20 08:53:18.862+03	
f94d26ef-ab13-e7b9-de40-b6cc5dff20a5	2021-05-20 08:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:53:38.853+03	2021-05-20 08:53:38.859+03	
5d34fba0-c624-8903-a58f-c7e6066701b3	2021-05-20 08:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:53:59.852+03	2021-05-20 08:53:59.858+03	
ed6163ef-f745-58e0-2cad-cbf7ad174638	2021-05-20 08:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:54:19.853+03	2021-05-20 08:54:20.218+03	
2dbb2f63-7dc8-15a9-f3e5-bb15758deb96	2021-05-20 08:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:33:37.853+03	2021-05-20 08:33:37.86+03	
a3a8e295-d054-3369-a7e4-74a56ffa7336	2021-05-20 08:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:33:57.853+03	2021-05-20 08:33:57.859+03	
5092d40c-8c74-a069-94ab-a04c618ab0a9	2021-05-20 08:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:34:18.852+03	2021-05-20 08:34:18.86+03	
603caca0-e7fa-6068-0679-b6acfd9c7050	2021-05-20 08:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:34:38.852+03	2021-05-20 08:34:38.861+03	
ddaf92c4-68e7-8066-c6b7-54d567046fb9	2021-05-20 08:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:34:58.852+03	2021-05-20 08:34:58.858+03	
7ae419b3-505e-cf00-9826-90f3939a467d	2021-05-20 08:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:35:18.852+03	2021-05-20 08:35:18.858+03	
80c5ccdc-6f69-3cd3-18ed-23a8c4561ca2	2021-05-20 08:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:35:38.853+03	2021-05-20 08:35:38.859+03	
6ba6f53c-8fef-391e-4b51-33b59a234059	2021-05-20 08:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:35:59.852+03	2021-05-20 08:35:59.86+03	
b686a96d-ad8a-b6ee-f67a-3e87d3fb6914	2021-05-20 08:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:36:19.853+03	2021-05-20 08:36:19.86+03	
d81c18e4-e931-b7ec-122d-2b3974c7a0bc	2021-05-20 08:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:36:40.852+03	2021-05-20 08:36:40.862+03	
14cfede1-95a9-79eb-e416-668da0ca29a9	2021-05-20 08:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:37:00.853+03	2021-05-20 08:37:00.859+03	
d6e773c1-9b6a-abb0-d007-5e1f39cc57bc	2021-05-20 08:37:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:37:21.853+03	2021-05-20 08:37:21.87+03	
6170fd4c-1f53-4dca-1090-0f69f3804d56	2021-05-20 08:37:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:37:41.853+03	2021-05-20 08:37:41.859+03	
73f6d5f3-1357-b201-7908-e77645939a6b	2021-05-20 08:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:38:02.852+03	2021-05-20 08:38:02.86+03	
e99d9d1d-1ca6-9d18-9157-0d223a24e3a4	2021-05-20 08:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:38:22.852+03	2021-05-20 08:38:22.86+03	
c90ad51a-145d-10dd-179f-f2047b8178e3	2021-05-20 08:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:38:42.852+03	2021-05-20 08:38:42.863+03	
d65d842f-566c-5b00-65b9-fdc91e901cc7	2021-05-20 08:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:39:02.853+03	2021-05-20 08:39:02.86+03	
92299050-cd6e-16ea-71a9-a476c1557b2e	2021-05-20 08:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:39:23.853+03	2021-05-20 08:39:23.861+03	
97a4a709-6fd5-a84a-eed4-167fc50a90cd	2021-05-20 08:39:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:39:44.853+03	2021-05-20 08:39:44.859+03	
a3661f17-1e7f-dc37-968a-8c860c55ec34	2021-05-20 08:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 08:40:00.853+03	2021-05-20 08:40:00.858+03	ERROR
f4c33e1f-897f-6a91-40e9-294a35fd6512	2021-05-20 08:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:40:15.852+03	2021-05-20 08:40:15.858+03	
2b46dbd7-15d5-9782-66c3-917b379f0d07	2021-05-20 08:40:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:40:35.853+03	2021-05-20 08:40:35.86+03	
e817df35-067b-a8af-31ec-e5296a821292	2021-05-20 08:40:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:40:55.853+03	2021-05-20 08:40:55.873+03	
1ffb1274-a232-3500-0fd1-4b7c578044be	2021-05-20 08:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:41:17.852+03	2021-05-20 08:41:17.864+03	
dc752e52-57c8-7b61-bbbf-2630766210f9	2021-05-20 08:41:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:41:37.852+03	2021-05-20 08:41:37.859+03	
f152cd63-f276-ed47-e8a6-43ed7cb4f1e8	2021-05-20 08:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:41:57.852+03	2021-05-20 08:41:57.861+03	
d89b5e09-4611-f748-8f82-b1f7a39964c3	2021-05-20 08:42:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:42:17.852+03	2021-05-20 08:42:17.859+03	
c7f14042-1b16-5db3-ff58-eac94de72f60	2021-05-20 08:42:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:42:37.853+03	2021-05-20 08:42:37.859+03	
c9338f9d-dabb-df21-9426-fbd8118c6e3e	2021-05-20 08:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:42:57.853+03	2021-05-20 08:42:57.861+03	
a49cc655-f705-047f-beef-f6978665f97f	2021-05-20 08:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:43:19.852+03	2021-05-20 08:43:19.865+03	
dc58b0ba-7b0b-4d5f-1433-74fdd66f5951	2021-05-20 08:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:43:39.852+03	2021-05-20 08:43:39.859+03	
a8778795-b001-bcf4-904f-5d4f0eecc686	2021-05-20 08:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:43:59.852+03	2021-05-20 08:43:59.861+03	
36708a7f-07f4-36d0-a60d-b6bbb5ba1577	2021-05-20 08:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:44:19.852+03	2021-05-20 08:44:19.861+03	
0d91f45a-60c3-ecb1-898c-353b0b4a0bb2	2021-05-20 08:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:44:39.853+03	2021-05-20 08:44:39.859+03	
4fa16292-a2c7-6067-d844-6ed887d59980	2021-05-20 08:45:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:45:01.854+03	2021-05-20 08:45:01.862+03	
c350e55c-6294-011a-86db-140686deb0c7	2021-05-20 08:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:45:22.852+03	2021-05-20 08:45:22.859+03	
43b9a396-d9d7-ae14-03c5-94ca49666f24	2021-05-20 08:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:45:43.852+03	2021-05-20 08:45:43.86+03	
d30f9196-35bb-d756-9d9b-62a1aa6b0f9f	2021-05-20 08:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:46:03.853+03	2021-05-20 08:46:03.861+03	
d5dfb83b-1761-7f34-23a8-72aecbe610b1	2021-05-20 08:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:46:24.852+03	2021-05-20 08:46:24.86+03	
e30deece-bfea-438c-5b93-0f5c7e65812c	2021-05-20 08:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:46:44.853+03	2021-05-20 08:46:44.86+03	
68b6c788-f9b1-044b-45a2-422e95f8d8d7	2021-05-20 08:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:47:05.853+03	2021-05-20 08:47:05.863+03	
602dea07-64f0-d153-3cb0-eaf610488b9f	2021-05-20 08:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:47:25.853+03	2021-05-20 08:47:25.863+03	
c6c16a3e-4403-a1ec-47d4-8e2af0f89872	2021-05-20 08:47:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:47:46.852+03	2021-05-20 08:47:46.859+03	
30b06bab-3979-c4dc-b558-e4dac884a488	2021-05-20 08:48:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:48:06.854+03	2021-05-20 08:48:06.866+03	
249c4f33-197e-e181-1a47-ea014b1a084c	2021-05-20 08:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:48:27.853+03	2021-05-20 08:48:27.862+03	
c4d27bd8-98f8-d771-08d9-7d5ae87b6916	2021-05-20 08:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:48:48.853+03	2021-05-20 08:48:48.864+03	
21b9a420-558e-0491-f322-9db31478e881	2021-05-20 08:49:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:49:09.853+03	2021-05-20 08:49:09.863+03	
572b67c8-e68d-ae03-0010-9aaa85988709	2021-05-20 08:49:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:49:30.852+03	2021-05-20 08:49:30.861+03	
e2966f9c-d6dc-04c5-96dc-29ddd107b69e	2021-05-20 08:49:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:49:51.852+03	2021-05-20 08:49:51.868+03	
9c979e0a-fe13-9f9f-6dcd-6946f8cc2a3b	2021-05-20 08:50:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:50:01.853+03	2021-05-20 08:50:01.861+03	
3431cd3c-9f1a-e2e0-4c9c-10623809a26a	2021-05-20 08:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:50:22.853+03	2021-05-20 08:50:22.859+03	
29563a29-3a09-3701-d42f-3eb438b4b847	2021-05-20 08:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:50:43.852+03	2021-05-20 08:50:43.86+03	
c9f4b125-df1c-0e57-db68-61271daff70d	2021-05-20 08:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:51:03.853+03	2021-05-20 08:51:03.859+03	
40ae81b9-c76c-01b6-2fb7-c976b57bf62e	2021-05-20 08:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:51:24.853+03	2021-05-20 08:51:24.861+03	
43104d62-d1d3-e145-51cd-3466670d9894	2021-05-20 08:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:51:44.853+03	2021-05-20 08:51:44.865+03	
6d62e988-5bc7-30dc-3abd-1c66cc783174	2021-05-20 08:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:52:05.852+03	2021-05-20 08:52:05.871+03	
4f3fa1c6-a4ed-30ac-5f6d-68c06c1151b1	2021-05-20 08:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:52:25.853+03	2021-05-20 08:52:25.875+03	
d2a2fef0-f2e7-aee3-9996-7ef91f3aceff	2021-05-20 08:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:52:46.852+03	2021-05-20 08:52:46.86+03	
82136d31-ccf7-29ac-56c5-23e769d53c32	2021-05-20 08:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:53:07.853+03	2021-05-20 08:53:07.859+03	
c4021bc7-515b-6c75-f734-2887f093c15a	2021-05-20 08:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:53:28.852+03	2021-05-20 08:53:28.859+03	
791a527c-43a0-1ad7-bcb1-a4ac01a102d7	2021-05-20 08:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:53:48.853+03	2021-05-20 08:53:48.861+03	
f3902656-9f5a-c329-bfcc-66b063c8765b	2021-05-20 08:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:54:09.852+03	2021-05-20 08:54:09.86+03	
d96be980-f7fe-7c52-c6ec-447fba8e2d25	2021-05-20 08:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:54:30.852+03	2021-05-20 08:54:30.859+03	
f14fe331-05aa-cc38-7a24-17e8cf9befc4	2021-05-21 03:08:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:08:01.852+03	2021-05-21 03:08:01.859+03	
0fa624a9-ad07-0f4f-d37e-c6f9f8012047	2021-05-20 08:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:54:40.853+03	2021-05-20 08:54:40.861+03	
8a924c30-50e3-bfd5-00f3-26ca0be19efd	2021-05-20 10:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:39:36.852+03	2021-05-20 10:39:36.863+03	
5886949b-b83d-cc51-eff1-9c62cf292081	2021-05-20 08:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:55:00.853+03	2021-05-20 08:55:00.86+03	
54505fad-755e-8c3e-fefb-373dd4dbe052	2021-05-20 08:55:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:55:21.852+03	2021-05-20 08:55:21.86+03	
f3999e0b-a955-e885-7779-4b7793f65644	2021-05-20 10:39:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:39:56.852+03	2021-05-20 10:39:56.859+03	
e8a5651a-6298-bc30-5a21-5ba9f099157f	2021-05-20 08:55:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:55:41.852+03	2021-05-20 08:55:41.862+03	
49cb80b3-8c9c-45be-cb96-a9f9edeed4b0	2021-05-20 08:56:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:56:01.853+03	2021-05-20 08:56:01.861+03	
7686d989-dcf6-5396-083f-df1295889ce6	2021-05-20 10:40:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:40:06.852+03	2021-05-20 10:40:06.859+03	
6246bdcb-0f98-7cf0-515f-3530275e2589	2021-05-20 08:56:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:56:21.854+03	2021-05-20 08:56:21.86+03	
4e78d187-e59e-a9ef-89ee-f461c684c66d	2021-05-20 08:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:56:42.852+03	2021-05-20 08:56:42.859+03	
fbeeab03-12c0-66c9-1001-ae1996af6258	2021-05-20 10:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:40:27.853+03	2021-05-20 10:40:27.859+03	
aaba437f-fec0-ac17-afe4-43754a5b231f	2021-05-20 08:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:57:03.852+03	2021-05-20 08:57:03.86+03	
8bbf04a7-1877-df05-282f-d6a7d5d1081f	2021-05-20 08:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:57:24.852+03	2021-05-20 08:57:24.859+03	
bf38a550-1c16-030d-bad1-5f8c3ec9d7d5	2021-05-20 10:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:40:47.853+03	2021-05-20 10:40:47.859+03	
17a265ef-81da-30ca-8389-f1a70dac5bd9	2021-05-20 08:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:57:44.853+03	2021-05-20 08:57:44.86+03	
0f9a3869-8799-70a8-c240-0002d29d5a2b	2021-05-20 08:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:58:04.853+03	2021-05-20 08:58:04.86+03	
32350d9a-a5f7-97ae-f0d4-ec23cdcc1754	2021-05-20 10:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:41:08.853+03	2021-05-20 10:41:08.86+03	
5f8a9e96-105e-4191-6ec1-fb7993851fd2	2021-05-20 08:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:58:25.853+03	2021-05-20 08:58:25.87+03	
6b0cd339-3e58-72a1-5305-3beb2a5df7cb	2021-05-20 08:58:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:58:46.852+03	2021-05-20 08:58:46.859+03	
695667a7-071f-f1f2-40cb-af0e7105e3b5	2021-05-20 10:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:41:29.852+03	2021-05-20 10:41:29.859+03	
9cd6c655-a229-f6e2-a5e4-da9df60258ec	2021-05-20 08:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:59:06.852+03	2021-05-20 08:59:06.861+03	
69388555-16cf-4713-c5d0-1ee575ea0bda	2021-05-20 10:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:41:49.852+03	2021-05-20 10:41:49.859+03	
b6a91f2e-4af3-07d0-da0a-ebed4a30c39c	2021-05-20 10:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:42:09.852+03	2021-05-20 10:42:09.858+03	
2c7ff1a5-e0ad-8972-5ed9-93611d0ca2b9	2021-05-20 10:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:42:29.853+03	2021-05-20 10:42:29.86+03	
bbb00fea-8a20-4ecf-9ac3-b67823d45cdb	2021-05-20 10:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:42:50.853+03	2021-05-20 10:42:50.859+03	
f06045c6-8dcc-1a46-c25e-015fd9f87386	2021-05-20 10:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:43:10.853+03	2021-05-20 10:43:10.862+03	
71e7d220-9b6b-42bc-cbbd-b7d6b9a38675	2021-05-20 10:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:43:30.853+03	2021-05-20 10:43:30.863+03	
bb1bdf6a-d2b3-5e92-631e-437e4aad4b66	2021-05-20 10:43:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:43:51.852+03	2021-05-20 10:43:51.859+03	
7737eab7-047e-0295-966b-77b1d462b973	2021-05-20 10:44:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:44:11.854+03	2021-05-20 10:44:11.86+03	
72be5145-822c-eb9c-999c-81326dcc36ee	2021-05-20 10:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:44:32.852+03	2021-05-20 10:44:32.86+03	
6b327695-bc42-3e43-adbc-42497880abe9	2021-05-20 10:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:44:52.853+03	2021-05-20 10:44:52.866+03	
fa0d487f-adf1-601a-8a2b-c8a1c9072545	2021-05-20 10:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:45:12.853+03	2021-05-20 10:45:12.861+03	
ef4906ce-462b-9244-1c43-4578d3a117a2	2021-05-20 10:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:45:22.853+03	2021-05-20 10:45:22.865+03	
620a9607-b494-9a02-2b51-6995b20cc39b	2021-05-20 10:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:45:42.853+03	2021-05-20 10:45:42.859+03	
7ae6c202-e7bb-da2a-6305-cd84261bee10	2021-05-20 10:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:46:03.852+03	2021-05-20 10:46:03.86+03	
00d2a088-80cc-d384-8565-3038cbc3a5e7	2021-05-20 10:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:46:24.852+03	2021-05-20 10:46:24.899+03	
687bab18-1afb-efe4-6551-020413e60962	2021-05-20 10:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:46:44.853+03	2021-05-20 10:46:44.86+03	
275706a0-ba3f-1d46-4314-b0a411ca3c6e	2021-05-20 10:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:47:05.853+03	2021-05-20 10:47:05.86+03	
90cbc87f-3705-a6b2-96d9-b0bf97dd98f7	2021-05-20 10:47:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:47:26.852+03	2021-05-20 10:47:26.859+03	
79e3dfd9-436c-6b57-19cb-7ddb3d990a24	2021-05-20 11:09:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:09:56.852+03	2021-05-20 11:09:56.86+03	
a774e2b9-17f6-0814-0f80-0b39f9d4e940	2021-05-20 11:10:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:10:06.852+03	2021-05-20 11:10:06.863+03	
6694bda0-05f3-ee5a-c743-1f44c4e22f6c	2021-05-20 11:10:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:10:26.853+03	2021-05-20 11:10:26.861+03	
f62ca734-e5d1-0801-d3a9-bc259523fbd1	2021-05-20 11:10:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:10:46.854+03	2021-05-20 11:10:46.862+03	
16ae65e6-40fb-65c2-9238-3fe611657a79	2021-05-20 11:11:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:11:06.854+03	2021-05-20 11:11:06.86+03	
d1e260a2-abad-157e-e2b0-138b9c55e559	2021-05-20 11:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:11:27.853+03	2021-05-20 11:11:27.862+03	
0c8dc2ed-1da9-eeac-4da0-3f105432851f	2021-05-20 11:11:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:11:48.853+03	2021-05-20 11:11:48.86+03	
7803a129-c08b-ffbe-5433-fe699cbf8874	2021-05-20 11:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:12:09.852+03	2021-05-20 11:12:09.86+03	
5edc6160-c4e9-f16b-5308-080619b54f7d	2021-05-20 11:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:12:30.852+03	2021-05-20 11:12:30.869+03	
1b04cc81-1a53-385e-468f-7754f4ed64a7	2021-05-20 11:12:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:12:50.853+03	2021-05-20 11:12:50.863+03	
9a95abcf-550b-253a-c747-2204cf212550	2021-05-20 11:13:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:13:10.853+03	2021-05-20 11:13:10.86+03	
7236f29e-a17f-fd97-709d-c2c4f51e0359	2021-05-20 11:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:13:30.853+03	2021-05-20 11:13:30.859+03	
52607b81-51d6-ff2b-6f21-5fac650d4577	2021-05-20 11:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:13:50.853+03	2021-05-20 11:13:50.862+03	
66493922-7790-f25d-8e6e-25359b52c8bb	2021-05-20 11:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:14:00.853+03	2021-05-20 11:14:00.859+03	
7410f7fb-025c-3fbb-5f64-8199edce7880	2021-05-20 11:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:14:10.853+03	2021-05-20 11:14:10.86+03	
6809159f-6b2c-15a0-6f76-7f83c0627775	2021-05-20 11:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:14:20.853+03	2021-05-20 11:14:20.862+03	
bdb0b436-1647-3347-6fbb-7c2d53371ab6	2021-05-20 11:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:14:30.853+03	2021-05-20 11:14:30.859+03	
764f14c0-4644-b0eb-41e7-e604958d8ddc	2021-05-20 11:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:14:41.852+03	2021-05-20 11:14:41.86+03	
4167a039-6108-6b6e-a497-6a8fbcd52228	2021-05-20 11:14:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:14:51.852+03	2021-05-20 11:14:51.865+03	
5036350f-5653-ddcf-bcf0-f27f2878c9c4	2021-05-20 11:15:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:15:01.853+03	2021-05-20 11:15:01.863+03	
675d14fb-daab-c1a3-f84b-aef5b4a7e2a1	2021-05-20 11:15:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:15:11.854+03	2021-05-20 11:15:11.861+03	
cf78a087-c454-1beb-896a-4bb381edf553	2021-05-20 11:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:15:22.853+03	2021-05-20 11:15:22.873+03	
a441d442-1313-5377-a972-9f25b86f3a17	2021-05-20 11:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:15:32.853+03	2021-05-20 11:15:32.861+03	
d02019ec-b7ac-602c-92fc-b1b4b435a27f	2021-05-20 11:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:15:43.852+03	2021-05-20 11:15:43.867+03	
9948a2ec-3a54-345b-539c-838450a8e56b	2021-05-20 08:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:54:50.853+03	2021-05-20 08:54:50.861+03	
f9a4e15e-28ce-38ad-e789-705fa4538a99	2021-05-20 08:55:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:55:11.852+03	2021-05-20 08:55:11.859+03	
d6b9d32d-08aa-ce4d-7a62-0b68b9a5d221	2021-05-20 08:55:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:55:31.852+03	2021-05-20 08:55:31.869+03	
a8428547-ac0d-bb7d-e060-537d1439465b	2021-05-20 08:55:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:55:51.853+03	2021-05-20 08:55:51.869+03	
5e3eb793-58e5-6c3c-20b8-41a906d31c42	2021-05-20 08:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:56:11.854+03	2021-05-20 08:56:11.861+03	
29296fed-9ddd-a559-eb1a-95c2a5623bcd	2021-05-20 08:56:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:56:31.854+03	2021-05-20 08:56:31.861+03	
98fadd8d-8c6c-81cd-9532-3b4ca697f734	2021-05-20 08:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:56:52.853+03	2021-05-20 08:56:52.859+03	
cb9e6437-85d0-187e-8698-51a5f6dec74a	2021-05-20 08:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:57:13.853+03	2021-05-20 08:57:13.859+03	
3d69d4e5-3ec4-7ba3-0fc5-dd75edbb1687	2021-05-20 08:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:57:34.853+03	2021-05-20 08:57:34.858+03	
8af480ee-a11e-d8e5-3291-daf91fe3080c	2021-05-20 08:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:57:54.853+03	2021-05-20 08:57:54.862+03	
1041548c-32bf-331c-1e66-948d32bdeb5d	2021-05-20 08:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:58:15.853+03	2021-05-20 08:58:15.86+03	
0d9e24e3-7ad1-24dd-85ec-4c648330a3e2	2021-05-20 08:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:58:35.853+03	2021-05-20 08:58:35.86+03	
ddba03fe-dae7-f493-ec30-7ea67adc7f41	2021-05-20 08:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:58:56.852+03	2021-05-20 08:58:56.861+03	
97810ff2-8277-0535-d47f-e7b151a563e9	2021-05-20 08:59:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:59:16.854+03	2021-05-20 08:59:16.861+03	
e3a51a34-25d3-261b-afb0-8c4b0fc668c7	2021-05-20 08:59:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:59:26.854+03	2021-05-20 08:59:26.862+03	
d1caa834-6eb7-4c6f-baef-3d29cdc43e01	2021-05-20 08:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:59:37.853+03	2021-05-20 08:59:37.869+03	
24ccb186-91af-5413-c6a6-75494422be84	2021-05-20 08:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:59:47.853+03	2021-05-20 08:59:47.86+03	
ce25e41a-e49d-af64-ece6-0ade7856f63e	2021-05-20 08:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 08:59:57.853+03	2021-05-20 08:59:57.86+03	
0a6b6b24-3ee8-4c8a-6087-dbb48f2e5712	2021-05-20 09:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 09:00:00.853+03	2021-05-20 09:00:00.863+03	ERROR
300d4a70-5b7e-fe8a-66c3-a8517b79c67e	2021-05-20 09:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:00:07.853+03	2021-05-20 09:00:07.874+03	
2ed24601-63ed-c8bb-9414-c4074fe506a3	2021-05-20 09:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:00:17.853+03	2021-05-20 09:00:17.865+03	
a8a7e5e1-2521-3c8b-2b4b-a34206584308	2021-05-20 09:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:00:27.853+03	2021-05-20 09:00:27.862+03	
38d8ac6f-d090-c769-0cdd-7b3de5598629	2021-05-20 09:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:00:37.853+03	2021-05-20 09:00:37.861+03	
9d73b294-cefe-a9c7-7b3b-80b9b2a3ccdb	2021-05-20 09:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:00:48.852+03	2021-05-20 09:00:48.86+03	
25f2b763-1580-d9c2-5301-d19165ef0331	2021-05-20 09:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:00:58.853+03	2021-05-20 09:00:58.862+03	
cd94552b-fb11-bd4a-5a12-bb54177e6ce1	2021-05-20 09:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:01:09.852+03	2021-05-20 09:01:09.86+03	
6edf7ccf-16e8-e1f6-f4e6-7f43d2ca715a	2021-05-20 09:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:01:19.853+03	2021-05-20 09:01:19.861+03	
3af9d5f7-d740-caa1-726f-f8a58f620c6d	2021-05-20 09:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:01:29.853+03	2021-05-20 09:01:29.86+03	
e37b4301-2c57-1fc2-5bf8-48b5db1fa9c0	2021-05-20 09:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:01:40.853+03	2021-05-20 09:01:40.859+03	
b1305edc-5ef9-1946-2723-5d8b4d8c1c4b	2021-05-20 09:01:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:01:51.853+03	2021-05-20 09:01:51.862+03	
d1686100-23b3-789f-7a7e-6eed90a7ed94	2021-05-20 09:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:02:02.853+03	2021-05-20 09:02:02.859+03	
7d5e5a69-bf41-84bc-2afc-6ec2c22dcd33	2021-05-20 09:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:02:12.853+03	2021-05-20 09:02:12.86+03	
249c5f66-d7b0-e348-3668-02f1dfd4a222	2021-05-20 09:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:02:22.853+03	2021-05-20 09:02:22.86+03	
b29d59b5-c7eb-2249-daa0-b2c4b10850d1	2021-05-20 09:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:02:32.853+03	2021-05-20 09:02:32.863+03	
1c355720-b746-77e0-d7ab-d8db0c79540b	2021-05-20 09:02:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:02:43.852+03	2021-05-20 09:02:43.87+03	
5c52ac5e-7136-98b9-ef64-b4aaa089aea6	2021-05-20 09:02:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:02:53.853+03	2021-05-20 09:02:53.864+03	
0dd7701d-0a46-fb68-ff72-a9788a07d2ab	2021-05-20 09:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:03:03.853+03	2021-05-20 09:03:03.86+03	
ef548faa-70eb-d169-e92a-42712416f5e2	2021-05-20 09:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:03:14.852+03	2021-05-20 09:03:14.861+03	
5fbe4b2c-0234-780f-ec4a-46e6e985cac9	2021-05-20 09:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:03:24.853+03	2021-05-20 09:03:24.858+03	
e71af12b-31c6-9ea1-999c-d3574766c756	2021-05-20 09:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:03:34.853+03	2021-05-20 09:03:34.873+03	
95d58d61-e5f4-a068-597b-97152f2d1c1d	2021-05-20 09:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:03:44.853+03	2021-05-20 09:03:44.86+03	
de2cb5ca-3174-0d0f-89e5-c7b80da6a218	2021-05-20 09:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:03:54.853+03	2021-05-20 09:03:54.859+03	
094615e1-c6b3-6eb8-e5f7-6a08611cb452	2021-05-20 09:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:04:04.853+03	2021-05-20 09:04:04.861+03	
64e9608f-e546-59cd-035d-d27406530450	2021-05-20 09:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:04:14.853+03	2021-05-20 09:04:14.86+03	
408d88fb-0711-ce19-43f5-1ce33d72ae62	2021-05-20 09:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:04:24.853+03	2021-05-20 09:04:24.867+03	
2eb2c252-afc8-c2e3-6b3c-5c36b9ea892e	2021-05-20 09:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:04:35.852+03	2021-05-20 09:04:35.866+03	
ee2eeac2-d476-882a-5f95-cf6457ea8218	2021-05-20 09:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:04:45.853+03	2021-05-20 09:04:45.868+03	
8086dfab-5fc2-75ee-e07b-fbb17cf4ce2a	2021-05-20 09:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:04:55.853+03	2021-05-20 09:04:55.865+03	
7b270995-9e2c-f23e-6340-2beac5da3d5f	2021-05-20 09:05:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:05:06.852+03	2021-05-20 09:05:06.859+03	
30d496fb-6127-5b51-133c-d9861e8c1a80	2021-05-20 09:05:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:05:16.852+03	2021-05-20 09:05:16.863+03	
f66f6c43-1cc5-f5af-cd1d-1a4a26783490	2021-05-20 09:05:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:05:26.852+03	2021-05-20 09:05:26.859+03	
449a65bb-e6d9-bae4-0dc1-6d69dcb8206e	2021-05-20 09:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:05:36.853+03	2021-05-20 09:05:36.862+03	
49619d93-9cb6-5481-7365-6e5d72504821	2021-05-20 09:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:05:47.853+03	2021-05-20 09:05:47.862+03	
1af70f5b-4c2e-b4e8-a6eb-36df1356cbfa	2021-05-20 09:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:05:57.853+03	2021-05-20 09:05:57.861+03	
9434787b-3f62-081e-c937-d3c25cb72c0b	2021-05-20 09:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:06:07.853+03	2021-05-20 09:06:07.864+03	
2bb5eaea-1e9a-4c13-6a69-8ba2d0c7cd8d	2021-05-20 09:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:06:17.853+03	2021-05-20 09:06:17.865+03	
1e231cd9-ea32-17c5-ab19-42148c4de20c	2021-05-20 09:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:06:27.853+03	2021-05-20 09:06:27.859+03	
2dae7d65-813f-1515-47fe-2f15a41b66e6	2021-05-20 09:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:06:38.852+03	2021-05-20 09:06:38.86+03	
9f69e427-1605-b98e-628e-c8ffb43102a8	2021-05-20 09:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:06:48.852+03	2021-05-20 09:06:48.858+03	
2a332518-6c9a-7b31-4356-ad26e19ce6f9	2021-05-20 09:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:06:58.853+03	2021-05-20 09:06:58.86+03	
a02ffe5f-36dc-932c-69dc-c7947763d8cc	2021-05-20 09:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:07:08.853+03	2021-05-20 09:07:08.86+03	
5c7955dd-573e-c4e8-2593-61cd4d244a1f	2021-05-20 09:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:07:18.853+03	2021-05-20 09:07:18.859+03	
30b73c24-586a-f5cd-79c5-d2664dc6fc19	2021-05-20 09:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:07:29.853+03	2021-05-20 09:07:29.86+03	
570ce59e-4b5c-124f-e5ec-a65949ab064d	2021-05-20 09:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:07:39.853+03	2021-05-20 09:07:39.86+03	
a7ca601d-12a2-39f8-1a2e-8af295f673c3	2021-05-20 09:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:07:59.853+03	2021-05-20 09:07:59.863+03	
ce84a4ac-fea9-619d-658a-60de66ee3792	2021-05-20 09:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:08:19.853+03	2021-05-20 09:08:19.861+03	
ba870bb0-2590-4e90-3312-09abdc364601	2021-05-20 09:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:08:40.853+03	2021-05-20 09:08:40.859+03	
80c24e58-79c2-6432-6435-eb772667b2cb	2021-05-20 09:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:09:00.853+03	2021-05-20 09:09:00.86+03	
667a633f-9227-e2cc-ea7d-88eb1a4e931b	2021-05-20 09:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:09:20.853+03	2021-05-20 09:09:20.87+03	
c2515434-b79f-fbc8-3b88-a1f3e3f9cb5c	2021-05-20 09:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:09:40.853+03	2021-05-20 09:09:40.86+03	
5ecb2ac3-027e-6e07-cf9f-3ed8910c3c5c	2021-05-20 09:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 09:10:00.852+03	2021-05-20 09:10:00.863+03	ERROR
3f78c1f7-a09d-5b4f-ac88-edc5c66d0ed6	2021-05-20 09:10:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:10:11.854+03	2021-05-20 09:10:11.871+03	
3e6fb35b-139e-c51d-9f82-4fd3c2615953	2021-05-20 09:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:10:32.853+03	2021-05-20 09:10:32.859+03	
6a8a1357-f81b-8245-5e54-5c15601bd310	2021-05-20 09:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:10:53.852+03	2021-05-20 09:10:53.868+03	
3669225a-9f46-93b2-7652-4619540a9490	2021-05-20 09:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:11:14.853+03	2021-05-20 09:11:14.86+03	
b4a48df9-2120-b284-7bac-4e6a16ee22e3	2021-05-20 09:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:11:35.853+03	2021-05-20 09:11:35.871+03	
8a03d24b-20e5-90dc-89bb-3538ba2a09ad	2021-05-20 09:11:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:11:56.852+03	2021-05-20 09:11:56.86+03	
cb973c33-ee66-2f0e-ecbd-a31e1e7c5377	2021-05-20 09:12:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:12:16.853+03	2021-05-20 09:12:16.86+03	
54793fef-c636-ce34-5286-e7a14897b7bc	2021-05-20 09:12:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:12:36.853+03	2021-05-20 09:12:36.861+03	
eaee43ec-3b85-5f0c-44f8-8e4892f75d89	2021-05-20 09:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:12:58.852+03	2021-05-20 09:12:58.862+03	
310accfd-1e14-9877-6bd8-229ab922d0ef	2021-05-20 09:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:13:18.853+03	2021-05-20 09:13:18.859+03	
7d7a73c9-4de8-0681-d2a4-3eb62993f8aa	2021-05-20 09:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:13:39.853+03	2021-05-20 09:13:39.858+03	
1ae88cda-4ac8-11c6-9b01-a89f44a950ca	2021-05-20 09:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:13:59.853+03	2021-05-20 09:13:59.859+03	
d44af88f-3e0e-b819-cf1e-889b7af92506	2021-05-20 09:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:14:19.853+03	2021-05-20 09:14:19.859+03	
67af33cb-08b6-c8ae-f187-056353852834	2021-05-20 09:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:14:39.853+03	2021-05-20 09:14:39.86+03	
1ce88681-d137-260d-50f4-946b4b0a65d2	2021-05-20 09:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:15:00.852+03	2021-05-20 09:15:00.868+03	
88b1a1f6-9d3e-8cb5-f601-91ab33078937	2021-05-20 09:15:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:15:21.853+03	2021-05-20 09:15:21.86+03	
d4416f97-6374-cd7c-a6c6-6c85104e8e4f	2021-05-20 09:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:15:42.853+03	2021-05-20 09:15:42.872+03	
96994ad4-4451-0f80-709b-85c896e0d942	2021-05-20 09:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:16:02.853+03	2021-05-20 09:16:02.859+03	
566e3ffc-d342-6ab9-da73-29d77ed2474f	2021-05-20 09:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:16:23.853+03	2021-05-20 09:16:23.862+03	
6c7b9541-100c-803b-da7c-8eab75953e8d	2021-05-20 09:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:16:44.853+03	2021-05-20 09:16:44.862+03	
f969d52e-a8f9-3b2e-6df0-bfd5abf48952	2021-05-20 09:17:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:17:06.852+03	2021-05-20 09:17:06.86+03	
b87a5e7b-6e19-6201-68c1-f330fb3d50a6	2021-05-20 09:17:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:17:26.853+03	2021-05-20 09:17:26.861+03	
2199b878-f9e2-0319-da6e-81953a208041	2021-05-20 09:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:17:47.853+03	2021-05-20 09:17:47.86+03	
7f7a2435-684f-c94e-30de-ef91480e909b	2021-05-20 09:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:18:07.853+03	2021-05-20 09:18:07.86+03	
e93b5b9e-0332-501e-467f-b040532d4242	2021-05-20 09:18:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:18:29.853+03	2021-05-20 09:18:29.859+03	
cb1ff1aa-71cd-c064-7962-ac2422dded96	2021-05-20 09:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:18:49.853+03	2021-05-20 09:18:49.861+03	
99bf5ead-d6da-dfe5-a5c9-91cbea12f1a1	2021-05-20 09:19:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:19:09.853+03	2021-05-20 09:19:09.86+03	
b2913d6c-4ce0-7122-554f-db0fd0e0b2aa	2021-05-20 09:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:19:29.853+03	2021-05-20 09:19:29.86+03	
623be114-58a4-8bb5-f0b7-71124a6843c5	2021-05-20 09:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:19:49.853+03	2021-05-20 09:19:49.862+03	
259067ba-8cca-fc87-2d16-3c338da0823f	2021-05-20 09:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 09:20:00.853+03	2021-05-20 09:20:00.858+03	ERROR
a8c339d5-58d4-c789-c6c7-03135256c148	2021-05-20 09:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:20:20.853+03	2021-05-20 09:20:20.859+03	
c92cdec2-119f-4918-d409-0ba480e52f9f	2021-05-20 09:20:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:20:41.854+03	2021-05-20 09:20:41.862+03	
f3429a07-23e0-edcf-9907-048eb4a642ee	2021-05-20 09:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:21:02.853+03	2021-05-20 09:21:02.861+03	
fe49ea28-c687-ffcb-eb73-a3fef96ec218	2021-05-20 09:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:21:22.853+03	2021-05-20 09:21:22.873+03	
81d334f1-48b1-89ca-633c-a71a68e27ed5	2021-05-20 09:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:21:43.852+03	2021-05-20 09:21:43.859+03	
fd6eacff-dfd5-74c4-7976-dbbb40bf9634	2021-05-20 09:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:22:04.853+03	2021-05-20 09:22:04.863+03	
ac2fb5c3-f08b-b493-13a0-19f393bda838	2021-05-20 09:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:22:24.853+03	2021-05-20 09:22:24.86+03	
3fa01b40-5194-9a69-e0e9-ba427ea92de0	2021-05-20 09:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:22:44.853+03	2021-05-20 09:22:44.86+03	
b9009bb2-4d70-3c97-663f-a64c7f361607	2021-05-20 09:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:23:05.853+03	2021-05-20 09:23:05.861+03	
164dd760-ff19-fc3d-1195-554b78bf8017	2021-05-20 09:23:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:23:26.853+03	2021-05-20 09:23:26.858+03	
7d5c0453-bf58-7e6a-d7d0-656fa2b7ab02	2021-05-20 09:23:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:23:47.853+03	2021-05-20 09:23:47.862+03	
4e4c9de3-a7a2-06f7-3642-40dda7c9a3b1	2021-05-20 09:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:24:08.853+03	2021-05-20 09:24:08.863+03	
bddf5b20-c055-264e-f9e3-e8981cf3400d	2021-05-20 09:24:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:24:28.853+03	2021-05-20 09:24:28.862+03	
a16eb3a3-550d-8984-ede7-d4f9e467298d	2021-05-20 09:24:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:24:49.853+03	2021-05-20 09:24:49.859+03	
f15a3127-f33c-331b-b4ea-ee206f312248	2021-05-20 09:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:25:09.853+03	2021-05-20 09:25:09.859+03	
e3b0f71f-5f0d-181c-9fa2-217a46abcea5	2021-05-20 09:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:25:30.853+03	2021-05-20 09:25:30.862+03	
54e159ea-ec73-83ae-b520-e19d8b99414d	2021-05-20 09:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:25:50.853+03	2021-05-20 09:25:50.86+03	
675753a9-cd83-7365-80ab-d0d0d2b1e85f	2021-05-20 09:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:26:10.853+03	2021-05-20 09:26:10.861+03	
8f7ca100-50d8-3c6b-0b5d-46c3f4c8e988	2021-05-20 09:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:26:30.853+03	2021-05-20 09:26:30.86+03	
971dbd71-9698-8db4-98a9-e59f9301e5bb	2021-05-20 09:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:26:50.853+03	2021-05-20 09:26:50.859+03	
9baad9c2-72b3-c78c-30b3-58d8873a7222	2021-05-20 09:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:27:10.853+03	2021-05-20 09:27:10.859+03	
2d0c7d93-1972-7a8a-2259-462f14bac256	2021-05-20 09:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:27:30.853+03	2021-05-20 09:27:30.86+03	
2296fec9-dec6-8e7d-0588-2ed4ffc6ae13	2021-05-20 09:27:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:27:51.853+03	2021-05-20 09:27:51.861+03	
f47a2e55-d8d3-3b83-8ad0-934553e49958	2021-05-20 09:28:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:28:11.853+03	2021-05-20 09:28:11.873+03	
d91a1c20-8627-39ad-9fbe-349539575b69	2021-05-20 09:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:28:32.852+03	2021-05-20 09:28:32.861+03	
4406ee2a-7a79-341b-fca0-ba09d4da8a2e	2021-05-20 09:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:07:49.853+03	2021-05-20 09:07:49.86+03	
7bad1527-2111-3cfe-dc39-141c34de00c6	2021-05-20 09:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:08:09.853+03	2021-05-20 09:08:09.872+03	
b235c8da-7977-0f19-eb0d-04bda4ef2695	2021-05-20 09:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:08:30.853+03	2021-05-20 09:08:30.859+03	
5e069475-6ce4-659a-e2e2-95c1c8fad3f7	2021-05-20 09:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:08:50.853+03	2021-05-20 09:08:50.859+03	
fd456d60-0587-d7f6-63d4-ad530580c7f9	2021-05-20 09:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:09:10.853+03	2021-05-20 09:09:10.861+03	
22c76383-e9a1-dc73-1eb0-379da4bf4010	2021-05-20 09:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:09:30.853+03	2021-05-20 09:09:30.859+03	
a063de21-f60d-1f6b-de33-f49ed1428aab	2021-05-20 09:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:09:50.853+03	2021-05-20 09:09:50.859+03	
0d919f5d-6c03-6a42-4c3c-98f0c99cbe40	2021-05-20 09:10:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:10:01.854+03	2021-05-20 09:10:01.886+03	
a8caeac9-05f8-7b7b-acdf-c2c944aeaedb	2021-05-20 09:10:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:10:21.854+03	2021-05-20 09:10:21.86+03	
7140dc6a-debd-0434-6642-b8300c480839	2021-05-20 09:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:10:43.852+03	2021-05-20 09:10:43.861+03	
e2206e18-f88e-b4b9-3dfc-65966f5bf5a5	2021-05-20 09:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:11:03.853+03	2021-05-20 09:11:03.859+03	
9f39b16b-6b7e-cabe-04e3-371e0d7bc5e8	2021-05-20 09:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:11:25.853+03	2021-05-20 09:11:25.86+03	
f95cbaf7-25a7-0894-543a-fb9b4b240648	2021-05-20 09:11:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:11:46.852+03	2021-05-20 09:11:46.859+03	
f22163e2-afcf-c7a5-71a3-fbe73b112600	2021-05-20 09:12:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:12:06.853+03	2021-05-20 09:12:06.862+03	
8c1869dc-520c-da9e-800e-04cefd51ebb3	2021-05-20 09:12:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:12:26.853+03	2021-05-20 09:12:26.86+03	
4a774f99-9a03-9cc9-921c-4d52937ed3d5	2021-05-20 09:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:12:47.853+03	2021-05-20 09:12:47.876+03	
8afc8663-5aec-cd5e-92ec-3f9109246512	2021-05-20 09:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:13:08.853+03	2021-05-20 09:13:09.471+03	
a7422028-22b6-a249-5634-1c9352f46e3d	2021-05-20 09:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:13:28.853+03	2021-05-20 09:13:28.859+03	
7aa3d57d-5271-1579-ee21-c9b6c94059e4	2021-05-20 09:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:13:49.853+03	2021-05-20 09:13:49.868+03	
882cb108-a1b5-c925-6fa4-163585ac3113	2021-05-20 09:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:14:09.853+03	2021-05-20 09:14:09.861+03	
6f202dab-babc-3f68-ab07-385d09f3477e	2021-05-20 09:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:14:29.853+03	2021-05-20 09:14:29.859+03	
321a9505-2413-61f6-fec4-c7220ac7813c	2021-05-20 09:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:14:50.852+03	2021-05-20 09:14:50.859+03	
fbfd8e79-af57-59a1-ef4d-11c80ef25a1f	2021-05-20 09:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:15:10.853+03	2021-05-20 09:15:10.859+03	
87d67f9c-ce25-2644-ae9f-16a84d02bb14	2021-05-20 09:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:15:32.853+03	2021-05-20 09:15:32.859+03	
f9d57661-a798-a9ad-cec1-b6146df73575	2021-05-20 09:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:15:52.853+03	2021-05-20 09:15:52.862+03	
be04ddb8-7cec-5238-f864-cea874d1b495	2021-05-20 09:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:16:12.853+03	2021-05-20 09:16:12.864+03	
3a9b7795-5e06-d678-08ae-db1455eb614d	2021-05-20 09:16:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:16:33.853+03	2021-05-20 09:16:33.863+03	
a14156e6-39e9-f0b9-00c6-45d4454e2726	2021-05-20 09:16:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:16:55.854+03	2021-05-20 09:16:55.861+03	
1e3c8d5d-c308-81d2-f512-0ec4be8ff6f8	2021-05-20 09:17:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:17:16.853+03	2021-05-20 09:17:16.872+03	
739493a8-b8d4-4a0a-ecc7-012359cc90c0	2021-05-20 09:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:17:37.853+03	2021-05-20 09:17:37.86+03	
d990459d-7336-8140-73ae-6a916330fc73	2021-05-20 09:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:17:57.853+03	2021-05-20 09:17:57.863+03	
31119707-fb36-f20e-7847-a8ec74d8c0fa	2021-05-20 09:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:18:18.853+03	2021-05-20 09:18:18.864+03	
b339768e-8ff4-4d29-af71-9bc6e4264248	2021-05-20 09:18:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:18:39.853+03	2021-05-20 09:18:39.86+03	
9636687a-83bc-09ed-ff66-4ffb38ee4eb4	2021-05-20 09:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:18:59.853+03	2021-05-20 09:18:59.859+03	
d5de87ee-ecfc-4cc6-a78e-40b6a80e34a1	2021-05-20 09:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:19:19.853+03	2021-05-20 09:19:19.86+03	
2d64be67-8b60-a7bd-23e7-fc6eec76747f	2021-05-20 09:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:19:39.853+03	2021-05-20 09:19:39.859+03	
601e8c06-af8e-eedd-f712-eca1fcc8e603	2021-05-20 09:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:19:59.853+03	2021-05-20 09:19:59.859+03	
9979bcd1-6cd4-574c-d2bb-82fc2b3eff06	2021-05-20 09:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:20:09.853+03	2021-05-20 09:20:09.859+03	
2cb1429e-7b31-f47b-8060-1778505bf064	2021-05-20 09:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:20:30.853+03	2021-05-20 09:20:30.859+03	
0217355a-a74c-20cc-28c9-72eedba2f0ed	2021-05-20 09:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:20:52.853+03	2021-05-20 09:20:52.86+03	
ecc8306c-6a6b-8861-0c8a-f26ea7d89930	2021-05-20 09:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:21:12.853+03	2021-05-20 09:21:12.859+03	
70be5628-29f6-2466-b799-9c25d4b4e1dc	2021-05-20 09:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:21:32.853+03	2021-05-20 09:21:32.861+03	
47d8a3b3-6921-8d20-2dcf-6d17606aa093	2021-05-20 09:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:21:53.853+03	2021-05-20 09:21:53.859+03	
90268666-87a8-1bdb-244b-513b1ccf0bd9	2021-05-20 09:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:22:14.853+03	2021-05-20 09:22:14.859+03	
8c25d0b9-02d5-19a0-db9c-76b658ad1104	2021-05-20 09:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:22:34.853+03	2021-05-20 09:22:34.861+03	
303310bc-bbc8-2701-b7c3-f379a3abd1f2	2021-05-20 09:22:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:22:54.853+03	2021-05-20 09:22:54.872+03	
67763997-c083-c1e6-3f89-8df872c3b8d8	2021-05-20 09:23:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:23:16.853+03	2021-05-20 09:23:16.861+03	
0310f754-75d6-6bea-4264-b715b8306958	2021-05-20 09:23:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:23:37.853+03	2021-05-20 09:23:37.861+03	
7c880ad1-72a2-28c0-fadb-c08dcdff052d	2021-05-20 09:23:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:23:57.853+03	2021-05-20 09:23:57.859+03	
459724de-48be-3635-0bae-d01fec68f474	2021-05-20 09:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:24:18.853+03	2021-05-20 09:24:18.86+03	
e0456761-6284-1725-9cb5-6b90b6a92568	2021-05-20 09:24:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:24:38.853+03	2021-05-20 09:24:38.86+03	
4e8279e6-2831-5900-2aa1-95aa96cc2152	2021-05-20 09:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:24:59.853+03	2021-05-20 09:24:59.861+03	
b97d5ed7-3d49-6069-c75e-4823a5460217	2021-05-20 09:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:25:19.853+03	2021-05-20 09:25:19.858+03	
d9744952-5bbd-b9bd-a6da-3ddc28d1646c	2021-05-20 09:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:25:40.853+03	2021-05-20 09:25:40.861+03	
a032bd0c-c62e-7a85-b21b-353c535ac8e8	2021-05-20 09:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:26:00.853+03	2021-05-20 09:26:00.859+03	
c814eae5-83ae-15be-01b2-d7875f6c4f48	2021-05-20 09:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:26:20.853+03	2021-05-20 09:26:20.86+03	
0a52dc0d-3eca-9c60-e754-16d443fbd2aa	2021-05-20 09:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:26:40.853+03	2021-05-20 09:26:40.859+03	
0d0b14f2-e384-be76-582d-d1d895b92e0b	2021-05-20 09:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:27:00.853+03	2021-05-20 09:27:00.858+03	
95e30c9f-1bd3-f18b-fa3a-52526e9da6c1	2021-05-20 09:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:27:20.853+03	2021-05-20 09:27:20.859+03	
5cd561d3-efd0-fd19-8168-9f0ca98e6687	2021-05-20 09:27:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:27:41.853+03	2021-05-20 09:27:42.167+03	
6a244f43-3157-7a6e-2fad-2c6802257920	2021-05-20 09:28:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:28:01.853+03	2021-05-20 09:28:01.895+03	
4dd5e1a6-fa41-eb34-62cb-95d670584851	2021-05-20 09:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:28:22.852+03	2021-05-20 09:28:22.862+03	
5ff8095f-a3b6-b40b-e88d-e33e80d1eebd	2021-05-20 09:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:28:42.852+03	2021-05-20 09:28:42.874+03	
1323faa9-40ec-d989-86c7-4a0150617a47	2021-05-20 09:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:28:52.852+03	2021-05-20 09:28:52.859+03	
1afdca2b-3f0a-278b-3cc3-bf0fc188159f	2021-05-20 09:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:29:12.852+03	2021-05-20 09:29:12.859+03	
30cdd83c-6de6-83eb-a212-6e6f730b3244	2021-05-20 09:29:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:29:32.853+03	2021-05-20 09:29:32.86+03	
78d1f7f4-e736-5e21-40cb-d7d2c8fce730	2021-05-20 09:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:29:52.853+03	2021-05-20 09:29:52.864+03	
56ac63da-90c0-463d-2540-11bb92094fb4	2021-05-20 09:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:30:02.853+03	2021-05-20 09:30:02.88+03	
4a6fce87-448a-491c-fdc2-f9497d6dad9c	2021-05-20 09:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:30:23.853+03	2021-05-20 09:30:23.859+03	
3dbea719-0254-d16e-3dc4-bdb18f8d9918	2021-05-20 09:30:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:30:43.853+03	2021-05-20 09:30:43.862+03	
a4f78f6f-9812-e335-1aaa-03e82cfca8ab	2021-05-20 09:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:31:04.852+03	2021-05-20 09:31:04.858+03	
126667f7-badf-7365-a81a-3e21438ecbe3	2021-05-20 09:31:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:31:24.853+03	2021-05-20 09:31:24.86+03	
840c0a42-8b3d-2810-e65f-8f5cc65bd645	2021-05-20 09:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:31:45.853+03	2021-05-20 09:31:45.869+03	
571e770c-5751-4171-8140-a79f92879f8b	2021-05-20 09:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:32:05.853+03	2021-05-20 09:32:05.859+03	
04ccd0d6-0a93-0cab-559c-a7f7559fe5c9	2021-05-20 09:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:32:25.853+03	2021-05-20 09:32:25.859+03	
a68089d2-b92a-d5be-f529-fb3dd4bbbbfd	2021-05-20 09:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:32:47.853+03	2021-05-20 09:32:47.862+03	
6c866da2-1e29-1b90-a0ac-de43c5dfbd58	2021-05-20 09:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:33:08.852+03	2021-05-20 09:33:08.86+03	
4a9c231d-b887-4220-cd9c-c42a8fdd8f9d	2021-05-20 09:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:33:29.852+03	2021-05-20 09:33:29.859+03	
b9551626-c3da-4b5b-2e25-11f3cfca0a62	2021-05-20 09:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:33:49.852+03	2021-05-20 09:33:49.863+03	
69414373-552d-e1d8-14e6-8e8acf93e556	2021-05-20 09:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:34:09.853+03	2021-05-20 09:34:09.862+03	
ae8287fc-43d8-0df0-261b-876efc1ca67a	2021-05-20 09:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:34:40.853+03	2021-05-20 09:34:40.859+03	
e029de38-3077-ffb7-86ba-e461bb60e473	2021-05-20 09:35:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:35:01.854+03	2021-05-20 09:35:01.865+03	
ea145cf0-ad85-ad35-2723-588af00413a4	2021-05-20 09:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:35:23.852+03	2021-05-20 09:35:23.861+03	
f1b2cc30-33fd-f635-e4b2-c326774dcb17	2021-05-20 09:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:35:43.853+03	2021-05-20 09:35:43.863+03	
dfe9b49f-dc72-dc30-8a7e-42f55aba492a	2021-05-20 09:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:36:03.853+03	2021-05-20 09:36:03.861+03	
2d920043-5aac-6039-eba6-b2c859926be8	2021-05-20 09:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:36:24.852+03	2021-05-20 09:36:24.858+03	
6f125ed5-8c0c-89a7-2938-799896952b09	2021-05-20 09:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:36:44.853+03	2021-05-20 09:36:44.859+03	
2c60f6d9-f1e3-e35b-5ae7-d4b3db949eaa	2021-05-20 09:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:37:04.853+03	2021-05-20 09:37:04.86+03	
73be6ac6-71cb-07e2-9dc4-6db63bdcdcc2	2021-05-20 09:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:37:24.853+03	2021-05-20 09:37:24.869+03	
0fa71fe6-6b9b-c09f-c79a-4ebedd511086	2021-05-20 09:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:37:45.852+03	2021-05-20 09:37:45.861+03	
638b741e-75c2-915c-0c7e-026bee931213	2021-05-20 09:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:38:05.852+03	2021-05-20 09:38:05.87+03	
53ba993f-72a3-4427-e374-e8b51f60072b	2021-05-20 09:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:38:25.853+03	2021-05-20 09:38:25.861+03	
8e0fba52-0d04-66be-9464-f9391384c925	2021-05-20 09:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:38:45.853+03	2021-05-20 09:38:45.859+03	
06bc53f4-1f29-3d5c-6db1-32d0cdf201f7	2021-05-20 09:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:39:05.853+03	2021-05-20 09:39:05.865+03	
4caabad3-e1ab-0dc4-6078-915e2a41f74e	2021-05-20 09:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:39:25.853+03	2021-05-20 09:39:25.86+03	
920b0e66-7698-2421-a150-3f8e0c19ade1	2021-05-20 09:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:39:45.853+03	2021-05-20 09:39:45.864+03	
924e69d5-a45c-8bff-f76f-e31406ad5e28	2021-05-20 09:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 09:40:00.852+03	2021-05-20 09:40:00.857+03	ERROR
e2a0c349-4027-68eb-821c-3e74c4889f75	2021-05-20 09:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:40:16.853+03	2021-05-20 09:40:16.859+03	
fc52a81b-1164-6d4c-cb58-db113d292f19	2021-05-20 09:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:40:37.852+03	2021-05-20 09:40:37.859+03	
b6baaa82-b534-0aff-930f-0a64159b7896	2021-05-20 09:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:40:58.852+03	2021-05-20 09:40:58.859+03	
901f5eaa-35ef-06ea-72db-127922c72651	2021-05-20 09:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:41:18.853+03	2021-05-20 09:41:18.861+03	
404a356e-5b9a-d662-3dbd-70374a4f1258	2021-05-20 09:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:41:39.853+03	2021-05-20 09:41:39.863+03	
8c68c6de-a380-fa76-5f95-dcdd2018ee81	2021-05-20 09:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:42:00.852+03	2021-05-20 09:42:00.863+03	
094c5532-0ff5-bbc4-9f94-394cec097af2	2021-05-20 09:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:42:20.853+03	2021-05-20 09:42:20.859+03	
f71b9c4d-569d-3839-b64b-ee98803a2c1c	2021-05-20 09:42:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:42:41.853+03	2021-05-20 09:42:41.874+03	
8e80c5b8-cde9-af13-307a-4089f8828419	2021-05-20 09:43:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:43:01.853+03	2021-05-20 09:43:01.906+03	
0cfd4908-b42f-484c-95fb-131f7a130a96	2021-05-20 09:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:43:22.852+03	2021-05-20 09:43:22.861+03	
492414de-c4dc-ca41-a4cd-68be8d269dba	2021-05-20 09:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:43:42.852+03	2021-05-20 09:43:42.86+03	
680e6930-c564-84f7-e14b-743efc03d553	2021-05-20 09:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:44:02.853+03	2021-05-20 09:44:02.859+03	
a0e00800-7f7f-1460-25e8-ef88cba36505	2021-05-20 09:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:44:24.852+03	2021-05-20 09:44:24.862+03	
08990ed7-0362-26de-b48b-e49f7a7ed46a	2021-05-20 09:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:44:44.853+03	2021-05-20 09:44:44.859+03	
4fb9b133-de77-05fd-e634-82df6473ac08	2021-05-20 09:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:45:04.853+03	2021-05-20 09:45:04.859+03	
0adc8cf1-5fbe-3190-ce88-fa9b8e0f1d16	2021-05-20 09:45:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:45:24.853+03	2021-05-20 09:45:24.86+03	
cd9faef3-7c14-c8e8-9f5b-3c1c7f188810	2021-05-20 09:45:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:45:44.853+03	2021-05-20 09:45:44.863+03	
59bca94b-a77b-e556-6788-9ddfa13a10d3	2021-05-20 09:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:46:05.853+03	2021-05-20 09:46:05.86+03	
8a222872-a04a-98c6-cdf8-036b1b009f98	2021-05-20 09:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:46:25.853+03	2021-05-20 09:46:25.861+03	
fd73c78e-e09e-6909-8bbd-01ee8d31dd69	2021-05-20 09:46:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:46:46.852+03	2021-05-20 09:46:46.862+03	
095fb150-c592-dad1-a51e-b831719f6c12	2021-05-20 09:47:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:47:06.854+03	2021-05-20 09:47:06.862+03	
cbfa5984-1c49-e85c-2165-272988cc99da	2021-05-20 09:47:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:47:27.853+03	2021-05-20 09:47:27.861+03	
f731f872-8470-d734-8510-82c3847bb5ef	2021-05-20 09:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:47:47.853+03	2021-05-20 09:47:47.86+03	
d4092bf2-f8b1-a0e2-c95c-df6af267f7ee	2021-05-20 09:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:48:07.853+03	2021-05-20 09:48:07.898+03	
463185c7-9a42-b1ed-ff70-643548e7c754	2021-05-20 09:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:48:27.853+03	2021-05-20 09:48:27.861+03	
611f025c-1723-eb0f-1fab-65410656ebab	2021-05-20 09:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:48:47.853+03	2021-05-20 09:48:47.86+03	
d13761fe-5c4c-a9d7-d740-c844b0d34cf4	2021-05-20 09:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:49:07.853+03	2021-05-20 09:49:07.861+03	
f214a351-2db9-259a-38c6-9440ef898f28	2021-05-20 09:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:49:28.853+03	2021-05-20 09:49:28.859+03	
bcfdd4f9-e5ec-3ea7-f0d2-330075e272c0	2021-05-20 09:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:49:48.853+03	2021-05-20 09:49:48.861+03	
92cb9a7b-8650-e62a-ca3e-143539825861	2021-05-20 09:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:29:02.852+03	2021-05-20 09:29:02.86+03	
05444229-5541-7e0f-8295-8d68d8faaa8d	2021-05-20 09:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:29:22.853+03	2021-05-20 09:29:22.86+03	
045b8e80-9825-119f-8099-8b3635e08105	2021-05-20 09:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:29:42.853+03	2021-05-20 09:29:42.859+03	
7ae60bcc-9911-124b-21da-393eb3a0f102	2021-05-20 09:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 09:30:00.852+03	2021-05-20 09:30:00.861+03	ERROR
38526e41-4858-bc95-ad9d-57e22ad3032f	2021-05-20 09:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:30:13.852+03	2021-05-20 09:30:13.86+03	
9df9a3c1-bd92-5a6f-89c9-5ba113c890ca	2021-05-20 09:30:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:30:33.853+03	2021-05-20 09:30:33.86+03	
c8b01909-d2c5-5933-fd2e-b4e606512f24	2021-05-20 09:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:30:53.853+03	2021-05-20 09:30:53.869+03	
6316eb88-4f12-d8e5-78df-6663035b3aea	2021-05-20 09:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:31:14.852+03	2021-05-20 09:31:14.861+03	
d9c860c1-4a60-58f9-8d4b-16d891e21fe3	2021-05-20 09:31:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:31:34.853+03	2021-05-20 09:31:34.861+03	
d306d7d8-6541-df71-e711-00ce42938392	2021-05-20 09:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:31:55.853+03	2021-05-20 09:31:55.859+03	
04f0b691-1f5b-d3ed-6e2b-37e0be08c197	2021-05-20 09:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:32:15.853+03	2021-05-20 09:32:15.861+03	
50a00871-98b3-8e8d-efe5-defee33646b4	2021-05-20 09:32:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:32:36.853+03	2021-05-20 09:32:36.861+03	
744c0bd8-7d20-4219-ddd5-292eff621a84	2021-05-20 09:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:32:58.852+03	2021-05-20 09:32:58.859+03	
b7c4d776-6903-5298-b8b9-7f0eccee66e0	2021-05-20 09:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:33:18.853+03	2021-05-20 09:33:18.875+03	
7c9606ad-8a15-34c0-b3f4-3d890c1dcc78	2021-05-20 09:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:33:39.852+03	2021-05-20 09:33:39.86+03	
2e3cc6b1-c32d-388c-8490-d95c4b780a18	2021-05-20 09:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:33:59.853+03	2021-05-20 09:33:59.963+03	
84a0b5ba-605b-2cb2-86a7-65738b9d2c29	2021-05-20 09:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:34:19.853+03	2021-05-20 09:34:19.86+03	
a51c6315-dae5-69aa-a009-331a4c2c8a9f	2021-05-20 09:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:34:30.852+03	2021-05-20 09:34:30.859+03	
83522317-700e-728e-7ec3-8da188d737d1	2021-05-20 09:34:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:34:51.852+03	2021-05-20 09:34:51.859+03	
de6f3095-4162-8817-219b-7986aaf8c6d6	2021-05-20 09:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:35:12.853+03	2021-05-20 09:35:12.874+03	
cfc0aadc-9483-34f2-cd41-41834453e79a	2021-05-20 09:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:35:33.853+03	2021-05-20 09:35:33.862+03	
5af1d9f8-f517-0aca-b0a9-7c5ac3fe5f4f	2021-05-20 09:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:35:53.853+03	2021-05-20 09:35:53.873+03	
81adbed3-69f3-c509-fb3d-7b9261fe6393	2021-05-20 09:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:36:13.853+03	2021-05-20 09:36:13.861+03	
7e8bb7bb-e13a-c796-cff3-ef255d7253cf	2021-05-20 09:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:36:34.853+03	2021-05-20 09:36:34.876+03	
46799bd8-70c1-a7af-dd31-938c0bd1e761	2021-05-20 09:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:36:54.853+03	2021-05-20 09:36:54.862+03	
de90d21b-30d9-74d6-2e6e-a7c280f98339	2021-05-20 09:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:37:14.853+03	2021-05-20 09:37:14.86+03	
6658dc8b-8d39-f5fa-d04d-5276fa82731d	2021-05-20 09:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:37:34.853+03	2021-05-20 09:37:34.86+03	
fc69e531-bf2b-4aa5-3b98-65133ffa2c11	2021-05-20 09:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:37:55.852+03	2021-05-20 09:37:55.859+03	
3fe04a14-3aaa-1656-5f04-0224288b211c	2021-05-20 09:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:38:15.853+03	2021-05-20 09:38:15.859+03	
8beaea6b-90ed-4dd3-2dbe-6daec6f1445c	2021-05-20 09:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:38:35.853+03	2021-05-20 09:38:35.86+03	
4a602bd7-8f39-b271-b649-19111096396e	2021-05-20 09:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:38:55.853+03	2021-05-20 09:38:55.859+03	
e4983b5f-da83-0a4c-c7e2-ce97f8851a80	2021-05-20 09:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:39:15.853+03	2021-05-20 09:39:15.862+03	
b69e79ee-7720-c5d2-6d5d-7dad0a8463f7	2021-05-20 09:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:39:35.853+03	2021-05-20 09:39:35.86+03	
35a8fd98-ccc0-7d67-8600-27f3f10e9d32	2021-05-20 09:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:39:55.853+03	2021-05-20 09:39:55.859+03	
59232b19-5dad-3bd3-cc4c-29ebb33cddc3	2021-05-20 09:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:40:05.853+03	2021-05-20 09:40:05.86+03	
02368ac7-53d3-2fc1-8cc2-7a15e2cdc2d0	2021-05-20 09:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:40:27.852+03	2021-05-20 09:40:27.862+03	
1a7380e9-b6ea-ba38-00dd-95318754cda3	2021-05-20 09:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:40:47.853+03	2021-05-20 09:40:47.86+03	
2948117e-c6f6-cabc-53b1-90356abb7832	2021-05-20 09:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:41:08.852+03	2021-05-20 09:41:08.861+03	
6fa21f2e-fc55-b3c9-1d98-22c0365cfe76	2021-05-20 09:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:41:28.853+03	2021-05-20 09:41:28.867+03	
da043dd6-a27c-3a85-4ffa-27f37278776e	2021-05-20 09:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:41:50.852+03	2021-05-20 09:41:50.859+03	
d0a3d33f-7096-67eb-6f62-e2fcfd6f3b9e	2021-05-20 09:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:42:10.852+03	2021-05-20 09:42:10.859+03	
dfbcb8c8-ef1f-66ae-f3d0-eeee00ca9808	2021-05-20 09:42:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:42:31.853+03	2021-05-20 09:42:31.864+03	
5ef35a21-6217-88e7-e972-c6ea5e8186dc	2021-05-20 09:42:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:42:51.853+03	2021-05-20 09:42:51.859+03	
37a65a93-0b22-1f35-bb46-259bdbd62a39	2021-05-20 09:43:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:43:12.852+03	2021-05-20 09:43:12.86+03	
bcc820b4-5650-8b65-ea5e-f51897af4992	2021-05-20 09:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:43:32.852+03	2021-05-20 09:43:32.867+03	
98367e12-ddb3-c429-9fa6-3075749d29b9	2021-05-20 09:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:43:52.852+03	2021-05-20 09:43:52.863+03	
653bc806-a2f8-106e-50d2-b6f55582111b	2021-05-20 09:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:44:13.853+03	2021-05-20 09:44:13.86+03	
e909f28b-5266-74ba-8750-f6fb46f5086e	2021-05-20 09:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:44:34.853+03	2021-05-20 09:44:34.868+03	
93792eef-229f-83f9-2425-63d40f98077a	2021-05-20 09:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:44:54.853+03	2021-05-20 09:44:54.86+03	
aa30c73a-2567-4bf3-cb7d-6c52845efb0c	2021-05-20 09:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:45:14.853+03	2021-05-20 09:45:14.86+03	
c39f8390-6ee5-40c3-d0b4-7a33163cd948	2021-05-20 09:45:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:45:34.853+03	2021-05-20 09:45:34.86+03	
87ed4f77-b93e-0cf6-ab19-e7a910274141	2021-05-20 09:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:45:55.852+03	2021-05-20 09:45:55.858+03	
43a786ea-a256-c7ff-cb75-768b30b77bc7	2021-05-20 09:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:46:15.853+03	2021-05-20 09:46:15.859+03	
0303345d-7d1b-0e03-6242-9cb64c651e4a	2021-05-20 09:46:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:46:36.852+03	2021-05-20 09:46:36.86+03	
92101e52-202d-a4ed-b223-c9c36cfee4c2	2021-05-20 09:46:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:46:56.853+03	2021-05-20 09:46:56.861+03	
394847ac-fb26-f163-7839-07e8093c59d3	2021-05-20 09:47:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:47:16.854+03	2021-05-20 09:47:16.861+03	
7c02ad69-9ade-e157-c4a9-1d38fcbad777	2021-05-20 09:47:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:47:37.853+03	2021-05-20 09:47:37.859+03	
ff1574a1-9c2d-197b-1735-94d5399a4a8a	2021-05-20 09:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:47:57.853+03	2021-05-20 09:47:57.859+03	
6632f9a0-c864-f778-0e3d-f7d713c3a70e	2021-05-20 09:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:48:17.853+03	2021-05-20 09:48:17.861+03	
ab82d560-d18e-9e49-8ba3-acc07e35ac02	2021-05-20 09:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:48:37.853+03	2021-05-20 09:48:37.861+03	
bedccec6-b284-8701-d42b-947205be1348	2021-05-20 09:48:57.886	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:48:57.853+03	2021-05-20 09:48:57.898+03	
3f2ec218-64c7-36c4-fddf-3480ace2533f	2021-05-20 09:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:49:18.852+03	2021-05-20 09:49:18.861+03	
cd0cdb08-d08a-d22c-f154-b861ff34769c	2021-05-20 09:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:49:38.853+03	2021-05-20 09:49:38.859+03	
83cf0149-b71f-29f7-ecaa-9b1a01deadb2	2021-05-20 09:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:49:59.852+03	2021-05-20 09:49:59.858+03	
223abdcf-88a6-d583-9022-d64c2069bfc0	2021-05-20 10:47:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:47:36.854+03	2021-05-20 10:47:36.86+03	
7c7546f1-ff69-bb64-3bdc-a43166cd9ba6	2021-05-20 09:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:50:09.852+03	2021-05-20 09:50:09.859+03	
591ed823-c91c-1fed-937d-1b8d6dc13690	2021-05-20 09:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:50:29.853+03	2021-05-20 09:50:29.86+03	
c4466c67-a90b-bf32-56b9-8e7d44dc77c9	2021-05-20 10:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:47:57.853+03	2021-05-20 10:47:57.86+03	
c37f9e26-6073-c230-94c8-22a62f8aca28	2021-05-20 09:50:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:50:50.853+03	2021-05-20 09:50:50.86+03	
96d0486e-3882-70ed-c915-2535fd463bf3	2021-05-20 09:51:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:51:11.852+03	2021-05-20 09:51:11.859+03	
62a7f16c-a5ca-5260-01bc-f28eddd75353	2021-05-20 10:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:48:18.853+03	2021-05-20 10:48:18.862+03	
2949a2f2-9804-34d2-7d4c-63bf83f90282	2021-05-20 10:48:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:48:39.853+03	2021-05-20 10:48:39.86+03	
cb295259-b945-9026-81ac-c2e3a098326e	2021-05-20 10:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:49:00.853+03	2021-05-20 10:49:00.86+03	
5b68d654-d231-e394-f480-23d5c869a37a	2021-05-20 10:49:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:49:21.853+03	2021-05-20 10:49:21.859+03	
630bde5e-2ce6-13dc-1d79-4642dbe7cffb	2021-05-20 10:49:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:49:41.854+03	2021-05-20 10:49:41.861+03	
b871d3f0-4d39-a456-ba16-db6cdc4b37d4	2021-05-20 10:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 10:50:00.852+03	2021-05-20 10:50:00.861+03	ERROR
c3840fbc-ccda-cdd1-b209-ece495558364	2021-05-20 10:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:50:12.853+03	2021-05-20 10:50:12.859+03	
2679211e-0fb2-a056-9899-1237e6774a3a	2021-05-20 10:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:50:32.853+03	2021-05-20 10:50:32.859+03	
6e539ccf-232e-49d9-0915-993802854949	2021-05-20 10:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:50:52.853+03	2021-05-20 10:50:52.858+03	
706a8012-ee6e-9a18-e34e-e041f35e8792	2021-05-20 10:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:51:13.853+03	2021-05-20 10:51:13.859+03	
329525b9-f331-8ebd-2beb-c66cc4e6a9cc	2021-05-20 10:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:51:34.853+03	2021-05-20 10:51:34.861+03	
6200996e-ca43-adeb-419b-68414d228639	2021-05-20 10:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:51:55.853+03	2021-05-20 10:51:55.86+03	
875e35d5-b8a4-6949-cb21-1bef32c6c611	2021-05-20 10:52:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:52:16.852+03	2021-05-20 10:52:16.859+03	
5c228b9c-d4e4-5ff3-4068-86d9d3cd0282	2021-05-20 10:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:52:36.852+03	2021-05-20 10:52:36.86+03	
4385b079-da16-0933-93d0-01f48c2063f6	2021-05-20 10:52:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:52:56.852+03	2021-05-20 10:52:56.859+03	
51928739-efca-bf7e-6f31-586be440c73a	2021-05-20 10:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:53:16.852+03	2021-05-20 10:53:16.858+03	
4a341b39-ce71-89ba-de89-15116f1721b5	2021-05-20 10:53:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:53:36.852+03	2021-05-20 10:53:36.863+03	
8f6f84da-9922-354d-4b92-14d23adba5ed	2021-05-20 10:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:53:57.853+03	2021-05-20 10:53:57.859+03	
a3faa376-90e6-214a-5bd5-45ddb383734a	2021-05-20 10:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:54:19.853+03	2021-05-20 10:54:19.862+03	
3a9e4268-46a7-5cb7-34cc-39a2f46847ee	2021-05-20 10:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:54:40.853+03	2021-05-20 10:54:40.861+03	
f3bfc82a-a0b6-4246-e01b-6dd031a1a85f	2021-05-20 10:55:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:55:01.853+03	2021-05-20 10:55:01.894+03	
629492f2-c96b-5f8c-4969-20fdcc629d67	2021-05-20 10:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:55:22.853+03	2021-05-20 10:55:22.87+03	
114eea3b-87da-2786-e3ee-326587702b6a	2021-05-20 10:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:55:42.853+03	2021-05-20 10:55:42.859+03	
bfa107eb-08d5-1ba4-0c18-c847b6b9b64d	2021-05-20 10:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:56:02.853+03	2021-05-20 10:56:02.861+03	
32bdd640-2e18-ad6b-36f7-80db2f6cd58d	2021-05-20 10:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:56:23.852+03	2021-05-20 10:56:23.86+03	
d4fc3b3a-8bc3-1619-cab1-f78ca7101f31	2021-05-20 10:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:56:43.853+03	2021-05-20 10:56:43.863+03	
31da44f6-0387-e454-d8fb-73087d24973e	2021-05-20 10:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:57:03.853+03	2021-05-20 10:57:03.867+03	
a373b974-073e-97dd-d1f6-f91409aee8b2	2021-05-20 10:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:57:25.852+03	2021-05-20 10:57:25.862+03	
8b2f32c9-d943-ecfa-bb24-06b3eda91ea7	2021-05-20 10:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:57:45.853+03	2021-05-20 10:57:45.86+03	
d0b68842-3dfe-12cf-096a-1b8065ce60e7	2021-05-20 10:58:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:58:06.852+03	2021-05-20 10:58:06.868+03	
3c776beb-a82c-cd60-7842-324e5f8397aa	2021-05-20 10:58:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:58:26.852+03	2021-05-20 10:58:26.867+03	
9600f92b-659b-0d69-170e-4bdbaad26b09	2021-05-20 10:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:58:46.852+03	2021-05-20 10:58:46.859+03	
e9cafe7c-4df8-22a7-5d12-871dea6c7cab	2021-05-20 10:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:59:06.852+03	2021-05-20 10:59:06.861+03	
54971904-8016-746f-f0b8-e690dd6bfb39	2021-05-20 10:59:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:59:26.852+03	2021-05-20 10:59:26.86+03	
ab4cb434-f86b-f366-c070-243efc7ac17f	2021-05-20 10:59:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:59:46.852+03	2021-05-20 10:59:46.862+03	
388ca87d-51d7-e8e1-aa85-5d1c2d3773ab	2021-05-20 11:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 11:00:00.852+03	2021-05-20 11:00:00.857+03	ERROR
e6a47d06-6ee8-bcd3-d842-daa7e093a30a	2021-05-20 11:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:00:17.853+03	2021-05-20 11:00:17.861+03	
f46910c5-11eb-fef6-b0fa-174e321e0046	2021-05-20 11:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:00:37.853+03	2021-05-20 11:00:37.864+03	
15f7fae8-1444-a4ab-eedb-508aafc85851	2021-05-20 11:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:00:57.853+03	2021-05-20 11:00:57.86+03	
16e4d847-4076-bcdb-5ede-13793f25f8ae	2021-05-20 11:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:01:17.853+03	2021-05-20 11:01:17.862+03	
5ee0d7c6-5c29-be26-10dc-8dca8bceb05e	2021-05-20 11:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:01:38.853+03	2021-05-20 11:01:38.861+03	
31656ba5-e633-9f70-620b-8e020e7a5765	2021-05-20 11:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:02:10.852+03	2021-05-20 11:02:10.86+03	
5b614013-1d47-729a-e090-91a4019be3af	2021-05-20 11:02:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:02:31.852+03	2021-05-20 11:02:31.86+03	
93fb9cf1-ba6f-d91d-88e8-d454d9180bbb	2021-05-20 11:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:02:52.853+03	2021-05-20 11:02:52.866+03	
ccece0b5-ced6-d3f1-6ce4-c09f41c78321	2021-05-20 11:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:03:13.853+03	2021-05-20 11:03:13.859+03	
d38d9ac1-10db-2223-42a6-4ba08fcdacf2	2021-05-20 11:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:03:34.852+03	2021-05-20 11:03:34.861+03	
f1166af1-3aed-04a4-3f56-88940649c7c6	2021-05-20 11:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:03:55.852+03	2021-05-20 11:03:55.858+03	
1dda64aa-66a7-7a97-8c0a-e2dd8f35e343	2021-05-20 11:04:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:04:16.854+03	2021-05-20 11:04:16.865+03	
49178ab4-2714-20d6-70b2-b29d142d4e86	2021-05-20 11:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:04:38.852+03	2021-05-20 11:04:38.861+03	
3daf5f3f-99cd-4b7e-6b76-e21d5f232170	2021-05-20 11:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:04:58.852+03	2021-05-20 11:04:58.86+03	
8f9c93c0-c6f3-94b3-4d8a-89908ab19587	2021-05-20 11:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:05:18.853+03	2021-05-20 11:05:18.86+03	
2c27659e-c646-7de2-62b9-0b975127c9df	2021-05-20 11:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:05:39.853+03	2021-05-20 11:05:39.86+03	
39fef95d-91af-b09e-b470-ebcd8f606bde	2021-05-20 11:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:06:00.853+03	2021-05-20 11:06:00.904+03	
7bd33fb5-5cda-f421-d0ba-c8173f1ea44c	2021-05-20 11:06:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:06:21.854+03	2021-05-20 11:06:21.864+03	
75495e83-418f-3e34-0f41-8a181ffa791b	2021-05-20 11:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:06:43.852+03	2021-05-20 11:06:43.87+03	
30d69434-c394-0c66-3d3c-3c5e7b4974e8	2021-05-20 11:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:07:03.853+03	2021-05-20 11:07:03.859+03	
21693aa2-e379-7e91-26e4-6d96be924fa2	2021-05-20 09:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 09:50:00.852+03	2021-05-20 09:50:00.858+03	ERROR
680d26b4-a488-4501-7404-b9e0e2336fe0	2021-05-20 09:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:50:19.852+03	2021-05-20 09:50:19.858+03	
ddb8e26c-e933-2ebb-5de4-d6dc6afdaf87	2021-05-20 09:50:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:50:40.852+03	2021-05-20 09:50:40.86+03	
933862e1-dff5-992a-47aa-3692b0941467	2021-05-20 09:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:51:00.853+03	2021-05-20 09:51:00.863+03	
d27242d0-0840-ca4d-0a6d-0a6b7653e3f1	2021-05-20 09:51:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:51:21.853+03	2021-05-20 09:51:21.859+03	
2da21b52-7e21-66ba-9131-33d93ef2d0ff	2021-05-20 09:51:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:51:31.854+03	2021-05-20 09:51:31.862+03	
99978898-7025-3941-8da7-ae0a580f79d4	2021-05-20 09:51:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:51:42.852+03	2021-05-20 09:51:42.859+03	
20ab267b-2bb9-1190-0168-1e407f69c3cd	2021-05-20 09:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:51:52.852+03	2021-05-20 09:51:52.87+03	
aed5aad4-ad5d-0d45-82df-8883406f4f40	2021-05-20 09:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:52:02.852+03	2021-05-20 09:52:02.863+03	
615efac7-2254-68e2-96a5-556f766e95f2	2021-05-20 09:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:52:12.852+03	2021-05-20 09:52:12.874+03	
41e0d8e9-33d1-223f-5827-f9bf28dca793	2021-05-20 09:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:52:22.853+03	2021-05-20 09:52:22.86+03	
d46074d8-a676-ca27-efce-6ce10df3d8bb	2021-05-20 09:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:52:32.853+03	2021-05-20 09:52:32.86+03	
711eaf21-78dd-0a37-9d85-11541b1c48c1	2021-05-20 09:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:52:42.853+03	2021-05-20 09:52:42.861+03	
49f3f3b0-0cc7-d7db-3ab0-dadd19ef1ec6	2021-05-20 09:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:52:52.853+03	2021-05-20 09:52:52.86+03	
de87569a-2fe6-48e8-2281-f20d72965b95	2021-05-20 09:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:53:02.853+03	2021-05-20 09:53:02.863+03	
bc3e835b-783a-cd14-4dd2-455723b314e9	2021-05-20 09:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:53:13.853+03	2021-05-20 09:53:13.86+03	
41044c1a-c235-dfe0-7234-6663bc87fef3	2021-05-20 09:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:53:24.852+03	2021-05-20 09:53:24.912+03	
a2b043f2-6a85-4f19-6334-51020e784eb7	2021-05-20 09:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:53:34.852+03	2021-05-20 09:53:34.859+03	
7f11b6cf-d4f8-fb9d-103a-2924cb1bd986	2021-05-20 09:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:53:44.852+03	2021-05-20 09:53:44.861+03	
844f35ad-ba98-c813-9c0e-2c927a519f4d	2021-05-20 09:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:53:54.852+03	2021-05-20 09:53:54.859+03	
bbd05b61-96b4-95ed-094d-72dab7437d84	2021-05-20 09:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:54:04.852+03	2021-05-20 09:54:04.864+03	
6c94a107-f8aa-c89a-dcae-b797e2feb295	2021-05-20 09:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:54:14.853+03	2021-05-20 09:54:14.871+03	
5fec47c4-87be-f0b2-99ff-934c868ad955	2021-05-20 09:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:54:24.853+03	2021-05-20 09:54:24.859+03	
19a62c34-bc1d-4f11-dad2-282c876a5808	2021-05-20 09:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:54:34.853+03	2021-05-20 09:54:34.861+03	
6d2d423d-e8cd-a0ac-1b35-05716c1afbfc	2021-05-20 09:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:54:44.853+03	2021-05-20 09:54:44.861+03	
2421c593-0ecc-bb95-33d1-6538f2e9d352	2021-05-20 09:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:54:54.853+03	2021-05-20 09:54:54.876+03	
38671db4-b624-b0da-9ba3-6ec93d53ee3e	2021-05-20 09:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:55:04.853+03	2021-05-20 09:55:04.864+03	
99d1c174-1cf8-2472-df55-c7db3132483a	2021-05-20 09:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:55:14.853+03	2021-05-20 09:55:14.86+03	
cf3246a0-1ab2-8bff-e6ec-c414d34cb731	2021-05-20 09:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:55:24.853+03	2021-05-20 09:55:24.859+03	
4ffd10e3-c7a0-9cec-2d17-831533590d3b	2021-05-20 09:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:55:34.853+03	2021-05-20 09:55:34.889+03	
46c7a2e1-a8c5-edfe-fc93-ce57dd12d971	2021-05-20 09:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:55:44.853+03	2021-05-20 09:55:44.863+03	
be235adc-3669-6bf0-8067-4098a8602982	2021-05-20 09:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:55:55.853+03	2021-05-20 09:55:55.859+03	
2b029bc8-d92b-579e-d429-24dff9ffa47d	2021-05-20 09:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:56:05.853+03	2021-05-20 09:56:05.859+03	
45f2dac9-59e7-a8a3-73fe-30f6103dbe45	2021-05-20 09:56:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:56:16.853+03	2021-05-20 09:56:16.86+03	
bb51cc6c-eb87-4038-ff8a-985e8af7e1a6	2021-05-20 09:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:56:27.853+03	2021-05-20 09:56:27.861+03	
bab2f66e-fc03-4fad-410b-b5c88cadf40c	2021-05-20 09:56:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:56:38.853+03	2021-05-20 09:56:38.863+03	
6b0fc373-67cb-f431-690d-d4908a22804d	2021-05-20 09:56:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:56:48.853+03	2021-05-20 09:56:48.865+03	
9ea0e13f-dc55-49f5-7d3f-025d9a64faf7	2021-05-20 09:56:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:56:58.853+03	2021-05-20 09:56:58.859+03	
c413e7f2-c582-b463-29dd-3e437cac5081	2021-05-20 09:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:57:08.853+03	2021-05-20 09:57:08.86+03	
09b089fc-12f6-d9c5-c582-46af3dd114f7	2021-05-20 09:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:57:18.853+03	2021-05-20 09:57:18.861+03	
e5d41279-a8db-84b6-c2cb-29f64aa4cf2d	2021-05-20 09:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:57:28.853+03	2021-05-20 09:57:28.86+03	
efb039fc-8c03-337d-6ac1-dfb29743930b	2021-05-20 09:57:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:57:39.852+03	2021-05-20 09:57:39.866+03	
077ba434-61de-28eb-fc27-0ac26cb67dfe	2021-05-20 09:57:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:57:49.852+03	2021-05-20 09:57:49.861+03	
04c469bb-eaf7-7d8e-7e3a-1bcffe646bc3	2021-05-20 09:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:57:59.852+03	2021-05-20 09:57:59.872+03	
f488e923-178e-20e5-5a6c-0ceac5393de9	2021-05-20 09:58:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:58:09.853+03	2021-05-20 09:58:09.86+03	
e76b0189-f5b5-bbfe-0ae4-465a2b56f86d	2021-05-20 09:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:58:20.852+03	2021-05-20 09:58:20.861+03	
05333c74-4d2d-b7bc-6edb-3737b9576693	2021-05-20 09:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:58:30.852+03	2021-05-20 09:58:30.859+03	
213a8ea1-9681-3679-d559-fdd1ecea0923	2021-05-20 09:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:58:40.853+03	2021-05-20 09:58:40.86+03	
daf44d0a-9243-e59f-7103-d117d26804b3	2021-05-20 09:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:58:50.853+03	2021-05-20 09:58:50.862+03	
c82d5f02-26ca-b63f-cc41-2a6a25ed80d1	2021-05-20 09:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:59:00.853+03	2021-05-20 09:59:00.865+03	
0f721404-7b1a-704e-ce84-878998de15d8	2021-05-20 09:59:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:59:11.853+03	2021-05-20 09:59:11.859+03	
5b28e578-efaf-69e0-15dc-3898f436eb08	2021-05-20 09:59:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:59:21.853+03	2021-05-20 09:59:21.872+03	
b3e23e39-aff8-eaaf-3f6a-0a9ac3880343	2021-05-20 09:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:59:32.852+03	2021-05-20 09:59:32.861+03	
7ddb22c1-e715-4a3b-23b8-79d5c9cfaf69	2021-05-20 09:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:59:42.853+03	2021-05-20 09:59:42.861+03	
8c9739d9-b342-d68e-468c-43de23ff166e	2021-05-20 09:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 09:59:52.853+03	2021-05-20 09:59:52.861+03	
f290174b-e195-7b54-f7f9-48cd29091da3	2021-05-20 10:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 10:00:00.852+03	2021-05-20 10:00:01.281+03	ERROR
b80f60b1-a56c-092f-faa3-bc98acb2c2bb	2021-05-20 10:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:00:02.853+03	2021-05-20 10:00:02.874+03	
216b81d8-bc9a-33d4-6cfc-f063d6aff42b	2021-05-20 10:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:00:12.853+03	2021-05-20 10:00:12.865+03	
e8cfa3fc-dee8-633a-76e9-fd20d7be645b	2021-05-20 10:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:00:22.853+03	2021-05-20 10:00:22.863+03	
551e5616-c0a4-5767-8708-a256b37af05a	2021-05-20 10:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:00:32.853+03	2021-05-20 10:00:32.886+03	
12518455-89e9-9b30-45f8-b1633d10dec9	2021-05-20 10:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:00:43.852+03	2021-05-20 10:00:43.868+03	
18b308c4-f1b9-7d9a-eb12-3903e4113085	2021-05-20 10:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:00:53.853+03	2021-05-20 10:00:53.859+03	
d6b5f905-a29c-711e-a882-be4d6128a403	2021-05-20 10:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:01:03.853+03	2021-05-20 10:01:03.859+03	
563929a5-f734-1c88-0ec8-2b27452f132b	2021-05-20 10:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:01:13.853+03	2021-05-20 10:01:13.86+03	
d7978efd-b7d1-962a-a16e-f493de515c46	2021-05-20 10:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:01:33.853+03	2021-05-20 10:01:33.86+03	
90b82f4a-72af-a7f1-c1d6-cba54da89182	2021-05-20 10:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:01:53.853+03	2021-05-20 10:01:53.859+03	
0ae21b28-857d-ac4d-4bac-82cb94b9128c	2021-05-20 10:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:02:13.853+03	2021-05-20 10:02:13.877+03	
bc2c6ceb-11c9-6605-f868-045cac4b7c0c	2021-05-20 10:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:02:44.853+03	2021-05-20 10:02:44.86+03	
1f9d41b1-8250-9b1e-9532-37f65ac51574	2021-05-20 10:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:03:04.853+03	2021-05-20 10:03:04.862+03	
c6c7a68d-123f-b193-c94c-905692613f97	2021-05-20 10:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:03:25.853+03	2021-05-20 10:03:25.86+03	
66a4410c-6969-d44a-279a-66ebd05282ad	2021-05-20 10:03:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:03:46.852+03	2021-05-20 10:03:46.86+03	
2810facd-09c0-70d9-4794-4f987f367d94	2021-05-20 10:04:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:04:06.853+03	2021-05-20 10:04:06.862+03	
fbf861c9-cfb7-876c-4bf7-98602a4a8384	2021-05-20 10:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:04:27.852+03	2021-05-20 10:04:27.859+03	
13f0a5ec-087a-3c96-1978-2de3e107ef71	2021-05-20 10:04:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:04:47.853+03	2021-05-20 10:04:47.859+03	
412796d8-a990-f2e2-ada5-817d3bb4b56e	2021-05-20 10:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:05:08.852+03	2021-05-20 10:05:08.863+03	
9bb81b8d-20aa-9bf6-94c1-4afa46551a02	2021-05-20 10:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:05:28.853+03	2021-05-20 10:05:28.859+03	
fcc2b76e-902e-5dcd-556a-c18ecd3dc939	2021-05-20 10:05:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:05:48.853+03	2021-05-20 10:05:48.865+03	
7d291b70-b12b-49ed-520a-0621b043c7b4	2021-05-20 10:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:06:09.853+03	2021-05-20 10:06:09.864+03	
ad954e26-dba4-8e45-f52a-67e11076bcab	2021-05-20 10:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:06:29.853+03	2021-05-20 10:06:29.861+03	
12d6925a-18dc-1dfe-b67f-ff20eb7ea526	2021-05-20 10:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:06:49.853+03	2021-05-20 10:06:49.859+03	
47bc2794-a1c7-d154-52f7-47228e49c9e3	2021-05-20 10:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:07:10.853+03	2021-05-20 10:07:10.859+03	
48a719f0-8048-f8ca-fcf8-4790d2872a8b	2021-05-20 10:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:07:30.853+03	2021-05-20 10:07:30.863+03	
60a6eec8-96b7-9fa0-cfb9-abb0e6b60117	2021-05-20 10:07:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:07:51.853+03	2021-05-20 10:07:51.876+03	
abd3f061-693f-3f08-16a4-cc45a3d4eba3	2021-05-20 10:08:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:08:11.853+03	2021-05-20 10:08:11.897+03	
14ce9145-48bc-6193-2928-cede95f0ddd3	2021-05-20 10:08:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:08:31.853+03	2021-05-20 10:08:31.871+03	
150d4e50-4db8-b3f1-dbcc-223a3a924718	2021-05-20 10:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:08:52.853+03	2021-05-20 10:08:52.86+03	
ee77a5a9-9859-f629-f4cd-987bf4e2080b	2021-05-20 10:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:09:13.852+03	2021-05-20 10:09:13.862+03	
8098fc9f-e551-f709-dd47-6d4968c57402	2021-05-20 10:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:09:33.852+03	2021-05-20 10:09:33.86+03	
dbf3b112-d1d8-e25d-88fc-dd4f0b438c32	2021-05-20 10:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:09:53.853+03	2021-05-20 10:09:53.859+03	
38c7dc16-fa91-fdd1-c4ad-8307ac45cdd8	2021-05-20 10:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:10:04.852+03	2021-05-20 10:10:04.86+03	
5c485a66-808b-d81d-2493-48cd85ed1ada	2021-05-20 10:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:10:24.853+03	2021-05-20 10:10:24.86+03	
7152b367-1943-b87b-1e9d-e9370ab90d27	2021-05-20 10:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:10:45.852+03	2021-05-20 10:10:45.86+03	
a5695a24-6c1d-8934-fa96-7045bf838ada	2021-05-20 10:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:11:05.853+03	2021-05-20 10:11:05.859+03	
ec8aed2b-1271-1010-351a-aadab8b3ebe4	2021-05-20 10:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:11:25.853+03	2021-05-20 10:11:25.859+03	
3dca5e9f-c979-4795-2f13-85feac1ef405	2021-05-20 10:11:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:11:46.853+03	2021-05-20 10:11:46.862+03	
678ad0c2-4c6c-12cc-7662-d0246f02a17c	2021-05-20 10:12:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:12:06.854+03	2021-05-20 10:12:06.862+03	
2b04294d-29aa-5274-2030-5be95c5fefa6	2021-05-20 10:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:12:28.853+03	2021-05-20 10:12:28.871+03	
c175bb1e-0d5c-8f39-9010-80e1f3bc8096	2021-05-20 10:12:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:12:49.853+03	2021-05-20 10:12:49.859+03	
9f706acc-87d0-592f-b023-5681f1c34473	2021-05-20 10:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:13:09.853+03	2021-05-20 10:13:09.859+03	
2d408c7f-3e51-2290-029e-6328f1fda70b	2021-05-20 10:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:13:30.853+03	2021-05-20 10:13:30.86+03	
884c903c-8c09-e01f-6fe7-aafdf0861ce1	2021-05-20 10:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:13:50.853+03	2021-05-20 10:13:50.859+03	
1042afba-19fc-aea1-c9d7-95b01d63d5bd	2021-05-20 10:14:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:14:11.854+03	2021-05-20 10:14:11.86+03	
2ab5c635-7dc4-7147-49dc-1e9f8bbc92b2	2021-05-20 10:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:14:32.853+03	2021-05-20 10:14:32.859+03	
da7916cb-2b95-90bc-b0ca-4db5c9ef43d9	2021-05-20 10:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:14:53.853+03	2021-05-20 10:14:53.86+03	
73aecb9b-97e0-2ae4-6aca-bda70ac68269	2021-05-20 10:15:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:15:14.852+03	2021-05-20 10:15:14.858+03	
e5c365f6-e373-3832-4758-f7e9b2efae2a	2021-05-20 10:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:15:34.853+03	2021-05-20 10:15:34.858+03	
cd8c568a-fe59-56ce-5342-b1e0d47c8172	2021-05-20 10:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:15:55.853+03	2021-05-20 10:15:55.86+03	
33f3d88f-f648-b92a-cbea-594e9889207c	2021-05-20 10:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:16:17.853+03	2021-05-20 10:16:17.859+03	
4df6eb49-3010-fa2b-bfc7-52e84538a6d7	2021-05-20 10:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:16:37.853+03	2021-05-20 10:16:37.866+03	
b663b38e-60bd-95a1-33bc-27e066f6d94f	2021-05-20 10:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:16:57.853+03	2021-05-20 10:16:57.859+03	
3dc5e42c-b508-5825-01ab-afa782598af9	2021-05-20 10:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:17:17.853+03	2021-05-20 10:17:17.859+03	
e0cec0ae-04da-252c-331b-bdd42b3fce6b	2021-05-20 10:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:17:38.852+03	2021-05-20 10:17:38.859+03	
7b166d7f-4c61-796c-f949-27f04b2a63b8	2021-05-20 10:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:17:58.853+03	2021-05-20 10:17:58.868+03	
576e43b2-eb9c-a03d-031a-eb7d8aa06c01	2021-05-20 10:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:18:18.853+03	2021-05-20 10:18:18.86+03	
ebfe5f97-36ac-08b9-33ba-95e4d44b3e96	2021-05-20 10:18:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:18:38.853+03	2021-05-20 10:18:38.869+03	
3b52265b-3ec7-b9bc-639d-77813df3cab4	2021-05-20 10:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:18:59.853+03	2021-05-20 10:18:59.859+03	
6d5b14bf-b706-379e-2c43-e158ae817754	2021-05-20 10:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:19:19.853+03	2021-05-20 10:19:19.858+03	
e62f14c1-43ba-6fe7-a5b9-4c2dfa80ab30	2021-05-20 10:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:19:30.852+03	2021-05-20 10:19:30.86+03	
f0329152-8b4f-83ad-6358-f32afce5770e	2021-05-20 10:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:19:50.852+03	2021-05-20 10:19:50.859+03	
41cbb0d7-9e2a-1e1b-05ae-331f898d5630	2021-05-20 10:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:20:10.853+03	2021-05-20 10:20:10.86+03	
38e75df3-1eae-dec8-fbfd-47d4a7174ec9	2021-05-20 10:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:20:30.853+03	2021-05-20 10:20:30.86+03	
18d5a6c2-09cc-7981-f655-a3dabdfd122d	2021-05-20 10:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:20:50.853+03	2021-05-20 10:20:50.861+03	
1cb55bff-d7df-88e4-aaa6-75cb21b7b425	2021-05-20 10:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:21:12.852+03	2021-05-20 10:21:12.859+03	
3ae87fb0-c805-c4b5-450f-6e391c535893	2021-05-20 10:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:21:32.853+03	2021-05-20 10:21:32.87+03	
8f696e2b-8fd7-bae2-8932-5a8030afa682	2021-05-20 10:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:21:52.853+03	2021-05-20 10:21:52.864+03	
388abd4f-c045-286d-059c-28ab613c5d9e	2021-05-20 10:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:22:12.853+03	2021-05-20 10:22:12.867+03	
8a84a178-5af9-e629-2bc4-4004769933d6	2021-05-20 10:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:01:23.853+03	2021-05-20 10:01:23.86+03	
1680702c-9eca-15cf-afe6-ee913ffd3abc	2021-05-20 10:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:01:43.853+03	2021-05-20 10:01:43.859+03	
446057b2-7d55-7c00-9336-f67407111f94	2021-05-20 10:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:02:03.853+03	2021-05-20 10:02:03.862+03	
50333d6d-0d03-15e9-22dd-ed81ac226718	2021-05-20 10:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:02:24.852+03	2021-05-20 10:02:24.861+03	
9c6ff6eb-9723-6ebd-5f85-e470625edc02	2021-05-20 10:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:02:34.853+03	2021-05-20 10:02:34.86+03	
7df46143-6867-4c97-f032-7374620b3e22	2021-05-20 10:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:02:54.853+03	2021-05-20 10:02:54.86+03	
e6310ae1-384f-6cf6-290b-8fa9e75e0925	2021-05-20 10:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:03:15.852+03	2021-05-20 10:03:15.858+03	
a085d37c-30d4-9900-e1e0-e242edba5a8d	2021-05-20 10:03:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:03:36.852+03	2021-05-20 10:03:36.859+03	
cddb37e3-c34c-9585-3859-20db16b0d6d9	2021-05-20 10:03:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:03:56.853+03	2021-05-20 10:03:56.861+03	
5e512f5d-3778-0276-ad85-d6c3624a1ebe	2021-05-20 10:04:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:04:16.853+03	2021-05-20 10:04:16.867+03	
a91517d9-476f-3c81-cde4-698fec5c60bf	2021-05-20 10:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:04:37.853+03	2021-05-20 10:04:37.861+03	
f01a0d95-3d2f-d53a-014a-9f6c4486d926	2021-05-20 10:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:04:58.852+03	2021-05-20 10:04:58.858+03	
0beffcee-0977-3bb3-9967-2740f01ea544	2021-05-20 10:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:05:18.852+03	2021-05-20 10:05:18.859+03	
79e31c9b-e32d-2423-2f91-8e5d211f3572	2021-05-20 10:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:05:38.853+03	2021-05-20 10:05:38.86+03	
ced1f428-1be1-bea8-485b-42527d238e2d	2021-05-20 10:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:05:59.853+03	2021-05-20 10:05:59.86+03	
8d86046d-1e85-3361-551e-ee3220c1ba4f	2021-05-20 10:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:06:19.853+03	2021-05-20 10:06:19.86+03	
32ac527e-e3d6-68a8-f796-1b6816456aa2	2021-05-20 10:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:06:39.853+03	2021-05-20 10:06:39.861+03	
c06b8595-2b19-c124-7b6b-5f00905e9a7e	2021-05-20 10:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:06:59.853+03	2021-05-20 10:06:59.859+03	
e61dea06-7cae-3fef-fd04-59cc14799fc7	2021-05-20 10:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:07:20.853+03	2021-05-20 10:07:20.859+03	
df30c46a-0da5-5131-ef4f-b455f010ac67	2021-05-20 10:07:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:07:41.853+03	2021-05-20 10:07:41.86+03	
0ad332f1-5578-ca2a-6fbf-092551cb1cf9	2021-05-20 10:08:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:08:01.853+03	2021-05-20 10:08:01.868+03	
693d2577-36cc-51fc-a70a-c21376073d04	2021-05-20 10:08:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:08:21.853+03	2021-05-20 10:08:21.865+03	
9ce6c2c4-cfb1-0b9f-8617-84d98b734f54	2021-05-20 10:08:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:08:41.854+03	2021-05-20 10:08:41.861+03	
3f5a7815-ffa1-315c-c6d9-cd2e5d12ee0b	2021-05-20 10:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:09:02.853+03	2021-05-20 10:09:02.858+03	
5a09289b-5562-534b-3cfd-ce8831a5cf22	2021-05-20 10:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:09:23.852+03	2021-05-20 10:09:23.86+03	
9df09317-faa8-cc43-39d8-53baa42538e1	2021-05-20 10:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:09:43.852+03	2021-05-20 10:09:43.862+03	
f1440768-0d9b-7338-da2d-d54a44671843	2021-05-20 10:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 10:10:00.852+03	2021-05-20 10:10:00.863+03	ERROR
265ad3da-512a-4c94-1c59-816378ed012f	2021-05-20 10:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:10:14.853+03	2021-05-20 10:10:14.859+03	
f62cdb25-d921-4a1a-c1c5-40ed3c0f4b5f	2021-05-20 10:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:10:34.853+03	2021-05-20 10:10:34.86+03	
84c17c21-b94d-1c9f-a95e-6a5b7d328cde	2021-05-20 10:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:10:55.853+03	2021-05-20 10:10:55.859+03	
44f8fe7b-f3ef-6996-bf85-26d8017adaaf	2021-05-20 10:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:11:15.853+03	2021-05-20 10:11:15.86+03	
110b2612-b2ea-e8a4-84b1-b0fae56775f6	2021-05-20 10:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:11:35.853+03	2021-05-20 10:11:35.865+03	
dc9007c4-e884-962f-f5ea-036c64bec555	2021-05-20 10:11:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:11:56.853+03	2021-05-20 10:11:56.866+03	
2cfc1ec9-5971-3a5d-b14a-f9a00ec0d3ef	2021-05-20 10:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:12:17.853+03	2021-05-20 10:12:17.862+03	
a0a60386-d4cb-b2db-42a2-e06d2976a389	2021-05-20 10:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:12:38.853+03	2021-05-20 10:12:38.859+03	
7f7f69d8-a398-c83b-3b94-96b63c38cdc3	2021-05-20 10:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:12:59.853+03	2021-05-20 10:12:59.86+03	
5e5f90df-2842-41a7-6b0b-a7cd1bcf4445	2021-05-20 10:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:13:20.853+03	2021-05-20 10:13:20.859+03	
724fb2c7-52cb-8bca-f705-2d7a5983b4f0	2021-05-20 10:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:13:40.853+03	2021-05-20 10:13:40.86+03	
ebef3514-c9c4-d144-7389-885ef912e328	2021-05-20 10:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:14:00.853+03	2021-05-20 10:14:00.869+03	
4cc46658-6b11-844d-8da8-079280f0bff2	2021-05-20 10:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:14:22.853+03	2021-05-20 10:14:22.859+03	
06a10b41-7de6-5e0b-3330-025775849eee	2021-05-20 10:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:14:43.853+03	2021-05-20 10:14:43.872+03	
2569534e-07e9-56b9-4a8b-4592b8a9fcb1	2021-05-20 10:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:15:03.853+03	2021-05-20 10:15:03.861+03	
0ffba42a-38ab-5e67-1a6d-2e63b04e45bf	2021-05-20 10:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:15:24.853+03	2021-05-20 10:15:24.872+03	
a3ca620c-26df-099c-25be-9ac1a3124618	2021-05-20 10:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:15:45.853+03	2021-05-20 10:15:45.858+03	
d5d980ac-dd2b-85ac-2f75-e8bdd3e6435d	2021-05-20 10:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:16:06.853+03	2021-05-20 10:16:06.861+03	
d986fb91-49cf-4891-e32a-f8f912ba1f35	2021-05-20 10:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:16:27.853+03	2021-05-20 10:16:27.862+03	
23063990-0941-3fb5-1723-a54a29360bd2	2021-05-20 10:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:16:47.853+03	2021-05-20 10:16:47.859+03	
849cadfc-23eb-34ce-77e1-9ebf9102daf3	2021-05-20 10:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:17:07.853+03	2021-05-20 10:17:07.86+03	
07300497-f43a-5424-fbde-986b14c07bc8	2021-05-20 10:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:17:27.853+03	2021-05-20 10:17:27.86+03	
f2e2008b-3203-d746-e631-b8a7a4972e7f	2021-05-20 10:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:17:48.853+03	2021-05-20 10:17:48.871+03	
317861d5-cc2a-51ed-dc67-0f7028a6bb20	2021-05-20 10:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:18:08.853+03	2021-05-20 10:18:08.861+03	
6b1c22d0-55cb-b0c0-d2ac-4c26cd91bf26	2021-05-20 10:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:18:28.853+03	2021-05-20 10:18:28.865+03	
4475e98d-563c-e32e-4913-637c8c91e9d7	2021-05-20 10:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:18:49.852+03	2021-05-20 10:18:49.859+03	
7fb7e2ae-0d1f-15a3-198a-6b89ecc9120e	2021-05-20 10:19:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:19:09.853+03	2021-05-20 10:19:09.863+03	
b2d0e1b6-eb56-5d76-c090-394d503e375a	2021-05-20 10:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:19:40.852+03	2021-05-20 10:19:40.871+03	
52b8c40a-7092-7cc5-c479-fa9a75ef02f1	2021-05-20 10:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:20:00.852+03	2021-05-20 10:20:00.863+03	
8bced621-35fc-9138-3fe4-55a2a62ebd0f	2021-05-20 10:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 10:20:00.852+03	2021-05-20 10:20:00.869+03	ERROR
741836e1-81c0-6b24-8c11-1e8fa44ba4c7	2021-05-20 10:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:20:20.853+03	2021-05-20 10:20:20.859+03	
4d143a56-4054-e611-3f89-85d188527f72	2021-05-20 10:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:20:40.853+03	2021-05-20 10:20:40.86+03	
4dfb1909-59fd-8d77-5b32-aeab6d89b315	2021-05-20 10:21:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:21:01.854+03	2021-05-20 10:21:01.881+03	
28514295-0306-5935-53f8-751cfaed013c	2021-05-20 10:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:21:22.853+03	2021-05-20 10:21:22.862+03	
b5840e67-b71f-dd5e-d256-5c297b308352	2021-05-20 10:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:21:42.853+03	2021-05-20 10:21:42.862+03	
dc063b74-3f28-5824-2ad1-8560a54c4e37	2021-05-20 10:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:22:02.853+03	2021-05-20 10:22:02.865+03	
2b331e08-3c22-ebae-0010-28fe68d313a7	2021-05-20 14:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:50:33.853+03	2021-05-20 14:50:33.86+03	
225e1dbb-c4fa-cc70-2895-72c1c545d66e	2021-05-20 10:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:22:22.853+03	2021-05-20 10:22:22.87+03	
35527693-1ae7-e7bb-2bae-a92163d68e95	2021-05-20 10:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:47:47.853+03	2021-05-20 10:47:47.859+03	
2ddf7ea6-20a6-80b5-761f-9830b778d3d2	2021-05-20 10:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:22:43.853+03	2021-05-20 10:22:43.86+03	
b295ecdf-e309-3c07-a279-bfcbbeaddabc	2021-05-20 10:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:23:04.852+03	2021-05-20 10:23:04.87+03	
d176d545-f2cb-4607-1e73-1d26c3f96712	2021-05-20 10:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:48:08.852+03	2021-05-20 10:48:08.861+03	
5b4ef85a-d59b-b408-1cd3-bf562098dfbe	2021-05-20 10:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:23:34.853+03	2021-05-20 10:23:34.86+03	
06775b07-bfba-9a55-71c6-bd32faff2150	2021-05-20 10:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:23:54.853+03	2021-05-20 10:23:54.863+03	
8e87f5ab-bffa-f59d-fd41-7b70309e5186	2021-05-20 10:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:48:29.852+03	2021-05-20 10:48:29.861+03	
6b75915f-c1bb-c876-ddd1-932d80a0c3b7	2021-05-20 10:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:24:14.853+03	2021-05-20 10:24:14.859+03	
87068144-abb0-db26-415f-571bd9a67a80	2021-05-20 10:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:24:34.853+03	2021-05-20 10:24:34.86+03	
902d62e9-17fc-5aef-de02-8567dcffbddc	2021-05-20 10:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:48:50.852+03	2021-05-20 10:48:50.86+03	
f02d91ef-6646-76ea-fef4-e849f265357d	2021-05-20 10:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:24:55.852+03	2021-05-20 10:24:55.859+03	
266cc639-0090-a27e-0da6-1bc3b673816e	2021-05-20 10:25:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:25:16.853+03	2021-05-20 10:25:16.861+03	
cb10d97f-a8ce-9f0f-cb3f-b3d100669e12	2021-05-20 10:49:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:49:10.853+03	2021-05-20 10:49:10.872+03	
c497e3e9-e520-493a-68a7-8aeb27c375ed	2021-05-20 10:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:25:37.853+03	2021-05-20 10:25:37.866+03	
81a68f82-accd-8211-e4c4-65a775e75a13	2021-05-20 10:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:25:57.853+03	2021-05-20 10:25:57.859+03	
7d1ac718-d242-c855-f219-574ad9595858	2021-05-20 10:49:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:49:31.854+03	2021-05-20 10:49:31.861+03	
8ea0fe55-b718-9730-ded7-ec74513c7d9b	2021-05-20 10:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:26:07.853+03	2021-05-20 10:26:07.868+03	
121f5b58-2f6a-8e0f-abf0-76e2aedba4f1	2021-05-20 10:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:26:27.853+03	2021-05-20 10:26:27.86+03	
9621e7da-4592-8ba6-7653-ddf33849b6d3	2021-05-20 10:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:49:52.852+03	2021-05-20 10:49:52.861+03	
feffd449-1191-876b-334c-f71ad0c094f3	2021-05-20 10:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:26:47.853+03	2021-05-20 10:26:47.859+03	
7340ec90-c432-5e8e-68a2-289183643c1d	2021-05-20 10:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:27:08.853+03	2021-05-20 10:27:08.86+03	
20d7fecd-31a4-47ea-7663-bc233ecbc2ff	2021-05-20 10:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:50:02.852+03	2021-05-20 10:50:02.859+03	
9c647505-b7de-b927-4f4d-10b3dfceaf13	2021-05-20 10:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:27:29.852+03	2021-05-20 10:27:29.859+03	
5fd18d53-7c3c-54a3-66a8-61a2d43e19b8	2021-05-20 10:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:27:49.853+03	2021-05-20 10:27:49.859+03	
0a49eb2b-d26d-74d9-877f-90dfd3efe506	2021-05-20 10:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:50:22.853+03	2021-05-20 10:50:22.86+03	
de448bf6-e4f5-ec11-4351-ef700efae0b6	2021-05-20 10:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:28:09.853+03	2021-05-20 10:28:09.862+03	
b61daf5b-cd23-af0b-c430-f7c5d6aaa049	2021-05-20 10:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:28:29.853+03	2021-05-20 10:28:29.861+03	
1fdda854-8ffe-ab91-e4c6-8d12159e9c15	2021-05-20 10:50:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:50:42.853+03	2021-05-20 10:50:42.859+03	
d4f0bbc5-de81-8bfa-2469-8cddd8ddbda6	2021-05-20 10:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:28:50.852+03	2021-05-20 10:28:50.862+03	
b7990d99-87d0-c3bb-87e2-94cf610eae94	2021-05-20 10:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:29:10.852+03	2021-05-20 10:29:10.86+03	
800b1152-c4bc-1739-8384-2f1e999be41c	2021-05-20 10:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:51:03.853+03	2021-05-20 10:51:03.86+03	
a5daa10f-a295-fbd4-7ef6-54a98ff797a9	2021-05-20 10:29:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:29:41.852+03	2021-05-20 10:29:41.86+03	
03c4276b-8860-6062-b3b2-c90e905b675c	2021-05-20 10:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 10:30:00.853+03	2021-05-20 10:30:00.858+03	ERROR
d0abb008-8db8-fd33-83e2-f6679f85dbb5	2021-05-20 10:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:51:24.853+03	2021-05-20 10:51:24.859+03	
f3ade5b2-b65b-4830-f0e7-75f05b48d007	2021-05-20 10:30:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:30:11.854+03	2021-05-20 10:30:11.862+03	
20a56eaf-a021-d36d-912c-33fb0b28bd2b	2021-05-20 10:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:30:32.852+03	2021-05-20 10:30:32.86+03	
3ec39dd1-3fd3-38e5-eefc-20f1653ddca3	2021-05-20 10:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:51:45.853+03	2021-05-20 10:51:45.86+03	
22268bc6-dc2e-de1d-6882-2582bc6dc21f	2021-05-20 10:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:30:52.853+03	2021-05-20 10:30:52.861+03	
a5d3952c-4256-a193-d7a7-32d4d73632a7	2021-05-20 10:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:31:13.853+03	2021-05-20 10:31:13.861+03	
44fb08ec-ebaf-d600-7c38-ac37da639bab	2021-05-20 10:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:52:05.853+03	2021-05-20 10:52:05.864+03	
0f6f465c-7b45-8580-c7cc-b94a7ea598dd	2021-05-20 10:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:31:33.853+03	2021-05-20 10:31:33.861+03	
2a422ca9-41bb-9483-75fa-18e180157b6e	2021-05-20 10:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:31:54.853+03	2021-05-20 10:31:54.864+03	
f9cc5a50-5438-33d1-6869-5655deddf52e	2021-05-20 10:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:52:26.852+03	2021-05-20 10:52:26.861+03	
43bc92a2-f384-d9b7-8100-7a493ce670d8	2021-05-20 10:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:32:15.853+03	2021-05-20 10:32:15.859+03	
96bb6081-ecef-d9cc-206a-b227658fdf7c	2021-05-20 10:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:52:46.852+03	2021-05-20 10:52:46.903+03	
0fbfc6a8-6778-491d-ad56-7882817afaa8	2021-05-20 10:53:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:53:06.852+03	2021-05-20 10:53:06.863+03	
0b9781a5-764b-c7e7-29dc-c838cfec84d7	2021-05-20 10:53:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:53:26.852+03	2021-05-20 10:53:26.859+03	
2736ab2a-5d45-e82b-8eb9-a0570dbfd125	2021-05-20 10:53:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:53:46.854+03	2021-05-20 10:53:46.86+03	
563354a7-c408-e7cc-4221-91195706b306	2021-05-20 10:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:54:08.853+03	2021-05-20 10:54:08.863+03	
6d4cf149-042b-b962-a159-e7a96588f3b3	2021-05-20 10:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:54:30.853+03	2021-05-20 10:54:30.859+03	
1d07d079-16f2-e84d-d508-89828dd5498f	2021-05-20 10:54:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:54:51.852+03	2021-05-20 10:54:51.86+03	
97e922eb-baed-f505-8650-6af969b9a8c0	2021-05-20 10:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:55:12.853+03	2021-05-20 10:55:12.87+03	
369dfd34-f083-d2dc-ebdf-eea4234b80de	2021-05-20 10:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:55:32.853+03	2021-05-20 10:55:32.859+03	
f6d21402-cdd9-cdb7-0d12-3911968e5e84	2021-05-20 10:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:55:52.853+03	2021-05-20 10:55:52.871+03	
cc1acf22-67e7-e196-b431-3c487145c710	2021-05-20 10:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:56:13.852+03	2021-05-20 10:56:13.871+03	
e4372875-1092-ea3a-a539-36efb8c3aaaf	2021-05-20 10:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:56:33.852+03	2021-05-20 10:56:33.861+03	
292f21dd-49ce-9ad6-40b3-18b4b006cbd4	2021-05-20 10:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:56:53.853+03	2021-05-20 10:56:53.861+03	
d9ea680e-61bc-4d77-a8f1-be0fd61439a6	2021-05-20 10:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:57:14.853+03	2021-05-20 10:57:14.86+03	
56ed2923-f2b5-8ff8-55a3-e0b5dde471e1	2021-05-20 10:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:57:35.852+03	2021-05-20 10:57:35.86+03	
1ba79dbe-7b6f-e428-0bf7-e683ddd51106	2021-05-20 10:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:57:55.853+03	2021-05-20 10:57:55.86+03	
e75b8424-efd7-36c1-495f-a709a9c12555	2021-05-20 10:58:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:58:16.852+03	2021-05-20 10:58:16.859+03	
5038cda5-d8ef-1332-cfd2-7bd83ab19cca	2021-05-20 10:58:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:58:36.852+03	2021-05-20 10:58:36.859+03	
7b17eb15-4c4f-ec6a-3df4-9d53ecede3c9	2021-05-20 10:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:58:56.852+03	2021-05-20 10:58:56.862+03	
1531b88a-8811-c01c-f4b7-23c1c4983bae	2021-05-20 10:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:22:32.853+03	2021-05-20 10:22:32.859+03	
1557d703-97ef-2232-568d-64afd52564e5	2021-05-20 10:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:22:54.852+03	2021-05-20 10:22:54.858+03	
3cc4c1ea-f5f4-b7de-2020-2ec5922f91f1	2021-05-20 10:59:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:59:16.852+03	2021-05-20 10:59:16.859+03	
b1d7f9de-212e-2baf-454c-7361abaf23d1	2021-05-20 10:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:23:14.853+03	2021-05-20 10:23:14.859+03	
a8d4c4db-541d-1942-04f7-442f073f14ae	2021-05-20 10:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:23:24.853+03	2021-05-20 10:23:24.872+03	
15e20f9b-d7bd-2c3e-fa62-d9ad349eb328	2021-05-20 10:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:59:36.852+03	2021-05-20 10:59:36.863+03	
93ffc102-2690-c819-acc7-8d5630c8b8cb	2021-05-20 10:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:23:44.853+03	2021-05-20 10:23:44.86+03	
1a7253b3-73d5-1c3d-3e5b-da1023874f3e	2021-05-20 10:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:24:04.853+03	2021-05-20 10:24:04.859+03	
49f316eb-8371-ec87-44eb-351be7f133a8	2021-05-20 10:59:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:59:56.852+03	2021-05-20 10:59:56.86+03	
dc8c0641-6378-391f-62a6-b526f0c68a75	2021-05-20 10:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:24:24.853+03	2021-05-20 10:24:24.861+03	
da970923-f617-489a-c4e0-096e1dad122d	2021-05-20 10:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:24:44.853+03	2021-05-20 10:24:44.861+03	
11a892b5-d370-c029-7f4a-7716d0e757d3	2021-05-20 11:00:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:00:06.855+03	2021-05-20 11:00:06.863+03	
04c67bae-6b69-1281-f386-9b52c7d5afba	2021-05-20 10:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:25:05.853+03	2021-05-20 10:25:05.861+03	
ab9daf02-808b-a524-feb5-0b01a028b417	2021-05-20 10:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:25:27.853+03	2021-05-20 10:25:27.86+03	
ac14172a-7b30-43e3-a4b5-b887e0ec3f4a	2021-05-20 11:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:00:27.853+03	2021-05-20 11:00:27.876+03	
21d06678-218f-e9de-6fce-cbe9d00e91e0	2021-05-20 10:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:25:47.853+03	2021-05-20 10:25:47.86+03	
d09743f7-75c5-ff1e-1efd-3ffe96bb8de2	2021-05-20 10:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:26:17.853+03	2021-05-20 10:26:17.86+03	
9257430b-b09a-0453-60ed-cbce23312544	2021-05-20 11:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:00:47.853+03	2021-05-20 11:00:47.86+03	
d266a636-80d2-4b9d-6a95-5385638ca878	2021-05-20 10:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:26:37.853+03	2021-05-20 10:26:37.862+03	
64e6170a-b6d2-6d9f-79bd-c514717e0a26	2021-05-20 10:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:26:58.852+03	2021-05-20 10:26:58.859+03	
0b546103-c2d5-b2cd-4416-5e9e59b2409f	2021-05-20 11:01:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:01:07.853+03	2021-05-20 11:01:07.86+03	
285276dc-542a-ab28-2929-0680e67295d5	2021-05-20 10:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:27:19.852+03	2021-05-20 10:27:19.86+03	
979796b7-fd49-cda4-3aab-4820b33c2ae6	2021-05-20 10:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:27:39.853+03	2021-05-20 10:27:39.86+03	
7d939139-e3ea-99ff-4f47-99ea44ad2215	2021-05-20 11:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:01:28.853+03	2021-05-20 11:01:28.862+03	
3bbf396d-62cd-a379-5707-88351a5586d0	2021-05-20 10:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:27:59.853+03	2021-05-20 10:27:59.863+03	
faec7ea1-2239-b6a2-e901-c0845537e33c	2021-05-20 10:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:28:19.853+03	2021-05-20 10:28:19.859+03	
8487ebbb-ac91-72b5-bc4b-9aaba06df66b	2021-05-20 11:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:01:49.853+03	2021-05-20 11:01:49.86+03	
69a633a6-d3e6-1eca-2507-8ea9f40ba2f5	2021-05-20 10:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:28:40.852+03	2021-05-20 10:28:40.861+03	
7333ae32-ef72-7c2b-6604-bcb616eed2ea	2021-05-20 10:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:29:00.852+03	2021-05-20 10:29:00.861+03	
3469c3d0-d606-b7a3-0b3d-17ae7f754989	2021-05-20 11:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:02:00.852+03	2021-05-20 11:02:00.858+03	
27a2cd0a-3723-c8b9-9eb2-7ea2d0473183	2021-05-20 10:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:29:20.853+03	2021-05-20 10:29:20.86+03	
cbb017b1-75ff-d065-6911-f56cb8cd3548	2021-05-20 10:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:29:30.853+03	2021-05-20 10:29:30.861+03	
4f475344-8529-4a0f-01be-8f069c1c1d8a	2021-05-20 11:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:02:20.853+03	2021-05-20 11:02:20.859+03	
29266a04-a753-bb60-35c8-c2386cf79baf	2021-05-20 10:29:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:29:51.853+03	2021-05-20 10:29:51.86+03	
5695ba05-8fdc-32cf-f081-db797e25222a	2021-05-20 10:30:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:30:01.854+03	2021-05-20 10:30:01.86+03	
89cee12b-c5b4-5a8f-fb01-70137c4c7c96	2021-05-20 11:02:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:02:41.853+03	2021-05-20 11:02:41.866+03	
bda25b3b-2ba7-0401-2cd1-aa9bcb524983	2021-05-20 10:30:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:30:21.854+03	2021-05-20 10:30:21.868+03	
30a8c091-dec6-ee61-7339-c0027147d14c	2021-05-20 10:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:30:42.852+03	2021-05-20 10:30:42.859+03	
2eda6c56-2596-3335-3b4e-6d2ebfe4716e	2021-05-20 11:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:03:02.853+03	2021-05-20 11:03:02.86+03	
5c2746c6-98d2-fcad-911a-8adc7884d541	2021-05-20 10:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:31:03.853+03	2021-05-20 10:31:03.862+03	
7b1ef20d-bc91-626c-c041-bf9362336d1f	2021-05-20 10:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:31:23.853+03	2021-05-20 10:31:23.86+03	
51327d7c-eac0-62a1-969f-8d77856ad196	2021-05-20 11:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:03:23.853+03	2021-05-20 11:03:23.86+03	
25abc6f1-34f9-8766-c9b4-61065dfc089f	2021-05-20 10:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:31:43.853+03	2021-05-20 10:31:43.916+03	
b0fc1eb7-1a7d-81b2-0711-879db1ccb998	2021-05-20 10:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:32:05.853+03	2021-05-20 10:32:05.866+03	
7c634fcf-c920-1f51-ae69-8f966956c008	2021-05-20 11:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:03:44.853+03	2021-05-20 11:03:44.861+03	
09a5d056-ca3f-01ae-cb33-f54d225f456c	2021-05-20 10:32:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 10:32:26.852+03	2021-05-20 10:32:26.859+03	
e2a82bc7-352f-c4f6-7f63-8b11e80edb7e	2021-05-20 11:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:04:05.853+03	2021-05-20 11:04:05.862+03	
7bbcdb29-de8b-a2a7-3220-7e9731cf617f	2021-05-20 11:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:04:27.853+03	2021-05-20 11:04:27.861+03	
0a6451ee-8474-1c57-0993-8e9378c81af8	2021-05-20 11:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:04:48.852+03	2021-05-20 11:04:48.861+03	
3b24056c-19ab-0b08-98c9-84492f423a8b	2021-05-20 11:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:05:08.852+03	2021-05-20 11:05:08.86+03	
401e1303-8fef-2428-a68b-57a9b51f03e1	2021-05-20 11:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:05:28.853+03	2021-05-20 11:05:28.86+03	
3236c31d-8595-95a7-b876-383fbe1642b3	2021-05-20 11:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:05:49.853+03	2021-05-20 11:05:49.86+03	
486ecd75-8648-48b1-67a1-40189deac883	2021-05-20 11:06:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:06:11.854+03	2021-05-20 11:06:11.861+03	
04fe3e1a-51a5-6b12-de9d-1dbe748a95e1	2021-05-20 11:06:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:06:32.853+03	2021-05-20 11:06:32.863+03	
b43477a1-f52d-3936-6ec3-071bd8f65687	2021-05-20 11:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:06:53.853+03	2021-05-20 11:06:53.861+03	
b969a0f7-1e83-c195-c649-c4cc7a7096d1	2021-05-20 11:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:07:13.853+03	2021-05-20 11:07:13.871+03	
4fbd132f-6c77-edcb-db9a-ae379f8bc168	2021-05-20 11:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:07:33.853+03	2021-05-20 11:07:33.861+03	
8babe903-aeea-bac8-3b1d-31a4b6001ef7	2021-05-20 11:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:07:54.852+03	2021-05-20 11:07:54.862+03	
391f56e9-63ec-567d-174f-2f4ae05eee5e	2021-05-20 11:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:08:14.853+03	2021-05-20 11:08:14.862+03	
18d7eeae-44a3-ee4d-6c9e-6222d8786ec2	2021-05-20 11:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:08:34.853+03	2021-05-20 11:08:34.86+03	
7dc1de34-6148-9177-d45b-7ccf0d59d3bd	2021-05-20 11:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:08:55.853+03	2021-05-20 11:08:55.872+03	
3b46d6ca-e4ea-17a4-8020-2d399a8ca884	2021-05-20 11:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:09:15.853+03	2021-05-20 11:09:15.86+03	
bedefd29-1182-c6e3-c54a-1c2bf56ce0a5	2021-05-20 11:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:09:35.853+03	2021-05-20 11:09:35.861+03	
beb599c5-b760-5629-95e8-177e27f5b5e9	2021-05-20 11:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:15:53.852+03	2021-05-20 11:15:53.863+03	
30b52297-ec78-3f21-cdf5-0f8f998548ee	2021-05-20 11:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:16:13.853+03	2021-05-20 11:16:13.859+03	
f1110682-8ab5-5248-9924-56861593e8dd	2021-05-20 11:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:16:34.853+03	2021-05-20 11:16:34.86+03	
0e104be8-9d34-7638-e9b0-f5f12147e816	2021-05-20 11:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:16:55.853+03	2021-05-20 11:16:55.86+03	
ed5563af-8075-d2a5-8487-3f7aef897fa4	2021-05-20 11:17:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:17:16.852+03	2021-05-20 11:17:16.86+03	
38d6fe66-3965-62ac-0b2f-594bebdce385	2021-05-20 11:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:17:37.852+03	2021-05-20 11:17:37.861+03	
71fe089d-622c-03e6-5da3-1941ff4f446f	2021-05-20 11:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:17:57.853+03	2021-05-20 11:17:57.861+03	
eca03603-e2b2-4bcf-e282-f7fab46b8648	2021-05-20 11:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:18:18.853+03	2021-05-20 11:18:18.866+03	
d63d5340-46b8-ca37-5732-f760ce35fb33	2021-05-20 11:18:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:18:38.853+03	2021-05-20 11:18:38.86+03	
3c38f6aa-dfc1-9a15-312e-a7f2d001d19d	2021-05-20 11:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:18:59.853+03	2021-05-20 11:18:59.859+03	
9761a4e6-775f-537f-cf35-988c1e658158	2021-05-20 11:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:19:19.853+03	2021-05-20 11:19:19.861+03	
42ce1c00-c4f8-0f6a-3a34-edcacf4c22b8	2021-05-20 11:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:19:39.853+03	2021-05-20 11:19:39.862+03	
77560a1a-a5d8-3ea2-10cc-686409b788aa	2021-05-20 11:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:19:59.853+03	2021-05-20 11:19:59.861+03	
85b01115-7986-8630-d046-cf321777d9df	2021-05-20 11:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:20:09.853+03	2021-05-20 11:20:09.86+03	
e2498544-922f-5d6d-80ec-b5ff2726bdf2	2021-05-20 11:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:20:29.853+03	2021-05-20 11:20:29.859+03	
bd217e95-c1e1-49d8-c507-d97d2eef022a	2021-05-20 11:20:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:20:49.853+03	2021-05-20 11:20:49.86+03	
1d3810a4-ca16-19b3-3372-43afd128fb4b	2021-05-20 11:21:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:21:09.853+03	2021-05-20 11:21:09.861+03	
1c6cb02c-c516-64e0-81e1-e9c7d7243b60	2021-05-20 11:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:21:29.853+03	2021-05-20 11:21:29.858+03	
9a506f6c-743c-cf3c-6258-434af2e0db60	2021-05-20 11:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:21:50.853+03	2021-05-20 11:21:50.859+03	
4a8b7d00-7005-7cf1-bbce-b05c58fb1ae9	2021-05-20 11:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:22:10.853+03	2021-05-20 11:22:10.86+03	
24f409e8-5b60-8af0-b76f-a46467e9b8d2	2021-05-20 11:22:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:22:21.853+03	2021-05-20 11:22:21.861+03	
dfd5570c-51d6-6cbd-57e6-b851d51bc662	2021-05-20 11:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:22:42.853+03	2021-05-20 11:22:42.864+03	
67a1a61c-c5b5-433b-4e08-0c2ad8476c59	2021-05-20 11:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:23:03.852+03	2021-05-20 11:23:03.859+03	
196cb4eb-ded4-cbb4-b072-fe1a33dc474c	2021-05-20 11:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:23:23.852+03	2021-05-20 11:23:23.86+03	
b73c1403-2952-9726-5a6c-d8d88d60a856	2021-05-20 11:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:23:43.853+03	2021-05-20 11:23:43.859+03	
10cd4dc9-fa1f-05f4-97db-16a7655abf36	2021-05-20 11:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:24:05.852+03	2021-05-20 11:24:05.861+03	
07724f04-cde6-9c77-debc-a902fa2ccef5	2021-05-20 11:24:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:24:26.854+03	2021-05-20 11:24:26.86+03	
0975dff7-bf3b-bf1b-0af9-4ee86fa90de5	2021-05-20 11:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:24:47.853+03	2021-05-20 11:24:47.859+03	
cef100da-a2a0-5ae5-2c69-8e08375fba47	2021-05-20 11:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:25:08.853+03	2021-05-20 11:25:08.865+03	
b13a441b-219b-eacf-bd50-97edfa5058f4	2021-05-20 11:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:25:29.853+03	2021-05-20 11:25:29.86+03	
88e303fa-f8a8-f7f2-db46-25e8fcc016e0	2021-05-20 11:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:25:50.853+03	2021-05-20 11:25:50.873+03	
133a8a9f-eafc-efb1-383e-9f35803c705d	2021-05-20 11:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:26:10.853+03	2021-05-20 11:26:10.86+03	
90161346-9ae7-f722-3237-a76b0ef04727	2021-05-20 11:26:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:26:31.852+03	2021-05-20 11:26:31.863+03	
e1e9756c-a098-19ef-aca3-f8cedf5f06f5	2021-05-20 11:26:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:26:51.853+03	2021-05-20 11:26:51.86+03	
651de837-b967-2334-22be-6223449ae1df	2021-05-20 11:27:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:27:11.853+03	2021-05-20 11:27:11.86+03	
0c77d5cf-bc42-884f-bb54-1f775abe1651	2021-05-20 11:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:27:32.852+03	2021-05-20 11:27:32.858+03	
906550f2-79c8-b72a-7e62-bbc647f876a9	2021-05-20 11:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:27:52.853+03	2021-05-20 11:27:52.859+03	
3960dcdd-9bc6-020c-1d08-1b9b7527bcf9	2021-05-20 11:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:28:12.853+03	2021-05-20 11:28:12.86+03	
26c7e84f-76c4-62d9-2a3d-4d49e3eb7b8b	2021-05-20 11:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:28:33.852+03	2021-05-20 11:28:33.858+03	
3c507926-4078-4bab-4c8f-3b79472837fc	2021-05-20 11:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:28:53.853+03	2021-05-20 11:28:53.86+03	
2c010145-3acf-08d1-7803-edd3f1ebbb03	2021-05-20 11:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:29:13.853+03	2021-05-20 11:29:13.861+03	
7dba3671-fc55-034a-091c-6a79b9d154c4	2021-05-20 11:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:29:34.853+03	2021-05-20 11:29:34.86+03	
916f4200-4b0e-261d-2d73-207c0717ee92	2021-05-20 11:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:29:55.853+03	2021-05-20 11:29:55.86+03	
6b542606-18cb-a3bd-e2b9-427488d071bc	2021-05-20 11:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:30:05.853+03	2021-05-20 11:30:05.859+03	
f1073dbd-2813-5299-1f41-8d2149575c31	2021-05-20 11:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:30:26.852+03	2021-05-20 11:30:26.86+03	
e40bc279-da48-cd52-2d08-1b4e3abd21ec	2021-05-20 11:30:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:30:46.854+03	2021-05-20 11:30:46.862+03	
e1645cef-92bf-9b1e-4bc1-86fd062628f7	2021-05-20 11:31:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:31:06.854+03	2021-05-20 11:31:06.861+03	
ee41cd84-eaa4-c101-b64f-bb64df1da6f6	2021-05-20 11:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:31:27.853+03	2021-05-20 11:31:27.86+03	
6d42a477-2aaf-f7ba-201b-08e366819a3d	2021-05-20 11:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:31:47.853+03	2021-05-20 11:31:47.863+03	
bedf5808-d4d4-2b4a-7f6e-dccd230ccda2	2021-05-20 11:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:32:08.852+03	2021-05-20 11:32:08.859+03	
4aaa180e-02aa-a435-94f4-05a7356c8f4e	2021-05-20 11:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:32:28.852+03	2021-05-20 11:32:28.859+03	
48611d32-c49c-5a10-b0d4-f3f25e400582	2021-05-20 11:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:32:48.853+03	2021-05-20 11:32:48.86+03	
9a7b2001-59c6-21e0-735b-400d6812b704	2021-05-20 11:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:33:20.853+03	2021-05-20 11:33:20.861+03	
c67c763a-ed0c-dffa-1090-6a060016ba0d	2021-05-20 11:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:33:41.854+03	2021-05-20 11:33:41.86+03	
b98e721a-410b-d365-b512-3e56c1086448	2021-05-20 11:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:34:03.853+03	2021-05-20 11:34:03.86+03	
33aceb2d-b5e2-3caf-ae6d-94af1a679ed2	2021-05-20 11:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:34:23.853+03	2021-05-20 11:34:23.861+03	
8187a0af-59ef-59f0-a2c3-156c386177ea	2021-05-20 11:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:34:44.853+03	2021-05-20 11:34:44.86+03	
76591226-ac0e-610d-b6bb-0d1b70919353	2021-05-20 11:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:35:05.852+03	2021-05-20 11:35:05.86+03	
2bbdad60-042c-b4ea-25da-0710470336b6	2021-05-20 11:35:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:35:26.852+03	2021-05-20 11:35:26.859+03	
c7d75361-b6c4-1dcd-4b1b-7a5cefa5b938	2021-05-20 11:35:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:35:46.853+03	2021-05-20 11:35:46.862+03	
b50503ad-cef9-25b3-f98f-8eb45496c547	2021-05-20 11:36:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:36:06.854+03	2021-05-20 11:36:06.861+03	
4230a1b8-f06b-f96b-75c9-5a41cca8c0f0	2021-05-20 11:36:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:36:27.853+03	2021-05-20 11:36:27.859+03	
972e3a30-d053-1bd1-beaa-db168a6647c2	2021-05-20 11:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:36:48.852+03	2021-05-20 11:36:48.86+03	
ee0b6c07-60c2-fc5f-e21c-9a18d2dc5b9e	2021-05-20 11:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:16:03.853+03	2021-05-20 11:16:03.862+03	
4b5e465e-d155-56a1-071e-366f3dba0032	2021-05-20 11:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:16:23.853+03	2021-05-20 11:16:23.86+03	
94a33334-ca0f-1fa7-97e7-b5e4927982bf	2021-05-20 11:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:16:45.853+03	2021-05-20 11:16:45.869+03	
8d724596-3c67-f2d8-a91e-5286f18304ff	2021-05-20 11:17:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:17:06.852+03	2021-05-20 11:17:06.87+03	
4fb250e6-d281-d9af-1197-13b5e05369ea	2021-05-20 11:17:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:17:26.853+03	2021-05-20 11:17:26.859+03	
57213c4d-f58b-ad9b-cffd-8ce8f321e7dc	2021-05-20 11:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:17:47.852+03	2021-05-20 11:17:47.86+03	
16383543-32d3-105b-e4e2-b882135ae381	2021-05-20 11:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:18:08.853+03	2021-05-20 11:18:08.859+03	
c2cd0e54-2ca3-7483-ea2e-598b8c575183	2021-05-20 11:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:18:28.853+03	2021-05-20 11:18:28.861+03	
a6051292-3681-19dd-1433-189625232106	2021-05-20 11:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:18:49.852+03	2021-05-20 11:18:49.86+03	
01d96570-04dc-6d9b-e6e2-8d70dd8940f4	2021-05-20 11:19:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:19:09.853+03	2021-05-20 11:19:09.861+03	
717fdf75-d6be-9b81-5abc-e8fa84d01e2d	2021-05-20 11:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:19:29.853+03	2021-05-20 11:19:29.86+03	
945cdf84-2496-fe45-722a-7d87da2545ee	2021-05-20 11:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:19:49.853+03	2021-05-20 11:19:49.86+03	
1ced9bd8-f29c-c7cc-7152-df50ee21a1a3	2021-05-20 11:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 11:20:00.853+03	2021-05-20 11:20:00.857+03	ERROR
24a037ce-7852-d74a-685c-68682c27321d	2021-05-20 11:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:20:19.853+03	2021-05-20 11:20:19.862+03	
7d742c98-e893-c10d-66b8-202000fffee5	2021-05-20 11:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:20:39.853+03	2021-05-20 11:20:39.859+03	
d3d88aa2-0fcf-2ec9-e7b8-6d8769f6326d	2021-05-20 11:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:20:59.853+03	2021-05-20 11:20:59.86+03	
41c24c30-5c3e-c70e-ca3d-75bae06b67a8	2021-05-20 11:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:21:19.853+03	2021-05-20 11:21:19.858+03	
7d46d771-7ea1-7057-4372-1c8e3cbf42b7	2021-05-20 11:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:21:39.853+03	2021-05-20 11:21:39.86+03	
6138bd6a-0ecc-0137-827c-8686adc8e83b	2021-05-20 11:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:22:00.853+03	2021-05-20 11:22:00.86+03	
885e6630-32b2-55b5-33a2-9d13e1fb96f7	2021-05-20 11:22:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:22:31.853+03	2021-05-20 11:22:31.862+03	
7a9b7992-654e-af13-6a53-1b862557f0e4	2021-05-20 11:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:22:53.852+03	2021-05-20 11:22:53.861+03	
f5e7bc3a-98c1-19a7-cb29-a0666b786c6c	2021-05-20 11:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:23:13.852+03	2021-05-20 11:23:13.861+03	
185665a9-7df3-57e7-66ec-35bcf7946f73	2021-05-20 11:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:23:33.852+03	2021-05-20 11:23:33.858+03	
37bc77c7-d860-4141-1aad-7ad7b6b7a7f2	2021-05-20 11:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:23:54.853+03	2021-05-20 11:23:54.86+03	
ed4b8a20-4663-a298-a9a0-942d7e617541	2021-05-20 11:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:24:15.853+03	2021-05-20 11:24:15.872+03	
4d7027fd-f552-b0aa-b813-6f4faa85bd2c	2021-05-20 11:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:24:37.852+03	2021-05-20 11:24:37.858+03	
fd6b19f5-1908-74b5-3dda-7167b98ecb77	2021-05-20 11:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:24:58.853+03	2021-05-20 11:24:58.863+03	
effa7d1d-490e-c27e-659d-a5c26c1d5883	2021-05-20 11:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:25:19.853+03	2021-05-20 11:25:19.862+03	
6f48fb16-0e67-099d-342e-5a58b8161189	2021-05-20 11:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:25:39.853+03	2021-05-20 11:25:39.861+03	
b494969d-1ff6-1cc7-7109-155f7c904f81	2021-05-20 11:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:26:00.853+03	2021-05-20 11:26:00.86+03	
c5386399-1af0-6319-c1b5-49d49ae6bb53	2021-05-20 11:26:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:26:21.852+03	2021-05-20 11:26:21.872+03	
d06a00b4-377c-908a-bca7-9f8348e29e38	2021-05-20 11:26:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:26:41.853+03	2021-05-20 11:26:41.859+03	
8189d38f-5a41-37e4-b02f-7c919525fc06	2021-05-20 11:27:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:27:01.853+03	2021-05-20 11:27:01.862+03	
ea0e45c0-3789-97e0-2cbc-9914d985f500	2021-05-20 11:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:27:22.852+03	2021-05-20 11:27:22.861+03	
3bd52b86-6454-b480-6317-82ca023be06d	2021-05-20 11:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:27:42.853+03	2021-05-20 11:27:42.861+03	
6b5f269d-42f7-2298-b3a7-26ce22575d6a	2021-05-20 11:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:28:02.853+03	2021-05-20 11:28:02.87+03	
e816fdd4-4f3d-e0dc-fc5d-f012bf5b6e20	2021-05-20 11:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:28:22.853+03	2021-05-20 11:28:22.876+03	
13b87d48-c869-a0a6-781e-51a553ebc17f	2021-05-20 11:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:28:43.852+03	2021-05-20 11:28:43.864+03	
8c4798c9-37c7-a940-d035-44bad7315cef	2021-05-20 11:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:29:03.853+03	2021-05-20 11:29:03.862+03	
a068d7f2-20f8-39d7-f853-88df193d3de7	2021-05-20 11:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:29:23.853+03	2021-05-20 11:29:23.862+03	
171aa6ff-f64a-17fc-6706-b04402603dfc	2021-05-20 11:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:29:45.852+03	2021-05-20 11:29:45.861+03	
20c0aeba-ff65-9218-0d87-4bd02de5ed7f	2021-05-20 11:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 11:30:00.852+03	2021-05-20 11:30:00.857+03	ERROR
02fd05e5-8351-a0e5-8a92-45bb7d8b6777	2021-05-20 11:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:30:15.853+03	2021-05-20 11:30:15.859+03	
538553a7-79bb-5586-a029-691f6e652c11	2021-05-20 11:30:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:30:36.853+03	2021-05-20 11:30:36.859+03	
f0c5502c-d76b-361d-22e2-df5fbca8f14b	2021-05-20 11:30:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:30:56.854+03	2021-05-20 11:30:56.861+03	
534760f7-757a-ec86-f0be-dfb549dd631b	2021-05-20 11:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:31:17.853+03	2021-05-20 11:31:17.859+03	
d03abe04-d0e1-28f5-3185-2d9decaf9722	2021-05-20 11:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:31:37.853+03	2021-05-20 11:31:37.863+03	
f0011a33-ea4c-3cf5-4052-8cd0451b32c0	2021-05-20 11:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:31:57.853+03	2021-05-20 11:31:57.86+03	
f0474907-ec9b-f1f8-a88b-146620b3b133	2021-05-20 11:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:32:18.852+03	2021-05-20 11:32:18.872+03	
aac4352b-ad12-cb6c-37f5-d6cc1ff6ea17	2021-05-20 11:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:32:38.853+03	2021-05-20 11:32:38.861+03	
124441c1-eb4f-dbee-0e86-c5e601997c13	2021-05-20 11:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:32:59.852+03	2021-05-20 11:32:59.859+03	
f0cb9721-bb89-74a9-2f0c-95144ab569a6	2021-05-20 11:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:33:09.853+03	2021-05-20 11:33:09.859+03	
a964723b-b755-e142-477a-8cc50c4d9104	2021-05-20 11:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:33:31.852+03	2021-05-20 11:33:31.859+03	
d0e4353f-59c3-4568-74fe-793484bd5e38	2021-05-20 11:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:33:52.853+03	2021-05-20 11:33:52.859+03	
b01be699-b877-91a2-9094-fa3803029edd	2021-05-20 11:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:34:13.853+03	2021-05-20 11:34:13.86+03	
c06ca7e4-339e-4a21-206b-8c8ed2656669	2021-05-20 11:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:34:33.853+03	2021-05-20 11:34:33.863+03	
2acea87e-615d-41e2-a58f-56f6de7d6c12	2021-05-20 11:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:34:55.852+03	2021-05-20 11:34:55.859+03	
82c6bf65-6c2b-49ab-e7bf-9bc02913986d	2021-05-20 11:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:35:15.853+03	2021-05-20 11:35:15.86+03	
ede188f0-0bea-e0d8-5e1a-b7a58adeffcf	2021-05-20 11:35:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:35:36.853+03	2021-05-20 11:35:36.861+03	
e3e8d910-83f8-035d-3b8c-8a6331295112	2021-05-20 11:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:35:56.853+03	2021-05-20 11:35:56.862+03	
08ad01f4-2fb1-a499-502d-f7b8a1abea66	2021-05-20 11:36:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:36:17.852+03	2021-05-20 11:36:17.859+03	
d22a2681-6c98-a711-cba9-defe4762eee8	2021-05-20 11:36:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:36:38.852+03	2021-05-20 11:36:38.859+03	
804e3e2a-032c-aab2-4467-65f09f6bd4bc	2021-05-20 11:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:36:58.853+03	2021-05-20 11:36:58.861+03	
e1523e51-8f0d-cbc1-eb68-534c2fc45383	2021-05-20 20:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:21:54.853+03	2021-05-20 20:21:54.86+03	
98bfd108-d79c-b276-9216-9810732aca8f	2021-05-20 11:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:37:08.853+03	2021-05-20 11:37:08.873+03	
40584698-a4bb-a5ba-c759-8049b69658a8	2021-05-20 14:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:50:43.853+03	2021-05-20 14:50:43.859+03	
9888eb43-1608-966d-41fe-15cf91b96778	2021-05-20 11:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:37:29.853+03	2021-05-20 11:37:29.861+03	
fb8d74dd-d245-3598-9b74-c27d56bdc4be	2021-05-20 11:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:37:50.852+03	2021-05-20 11:37:50.862+03	
24c344dc-adf7-aeaa-43ee-e08e9c297a34	2021-05-20 14:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:51:04.853+03	2021-05-20 14:51:04.859+03	
5ee0a133-8263-6df3-7f0d-62b481f47550	2021-05-20 11:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:38:10.853+03	2021-05-20 11:38:10.859+03	
bd1ccd13-fc06-360d-9901-e3ec89814b76	2021-05-20 11:38:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:38:31.854+03	2021-05-20 11:38:31.861+03	
b68a7ed0-b78a-12a2-8927-2bfee103ad29	2021-05-20 14:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:51:25.852+03	2021-05-20 14:51:25.859+03	
a1a8ad4d-613e-063b-8ae2-c3f12d7647db	2021-05-20 11:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:38:52.853+03	2021-05-20 11:38:52.872+03	
e28769b0-63a1-35ae-de76-3af6017e5e2e	2021-05-20 11:39:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:39:13.852+03	2021-05-20 11:39:13.859+03	
db896626-6783-63db-99f9-c13a701eb602	2021-05-20 14:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:51:55.852+03	2021-05-20 14:51:55.858+03	
9b080b88-0e99-091c-9697-16cc8f255763	2021-05-20 11:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:39:33.852+03	2021-05-20 11:39:33.858+03	
b2460687-d414-2495-ee2f-c909b62b108a	2021-05-20 11:39:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:39:54.853+03	2021-05-20 11:39:54.859+03	
5f6a0568-70a1-61df-8e9a-745c5787abcf	2021-05-20 14:52:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:52:26.854+03	2021-05-20 14:52:26.862+03	
0226d07a-a6ca-e893-2628-1e180cb22b4d	2021-05-20 11:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:40:05.853+03	2021-05-20 11:40:05.859+03	
b0405ff6-0290-5af3-72b3-0c57bdbea876	2021-05-20 11:40:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:40:25.853+03	2021-05-20 11:40:25.862+03	
14679328-a337-87d9-47e7-15f160bbbc31	2021-05-20 14:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:52:48.852+03	2021-05-20 14:52:48.86+03	
f7e9698f-af1a-501a-7171-3a1f2da3b1a2	2021-05-20 11:40:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:40:46.853+03	2021-05-20 11:40:46.864+03	
93ba6bc4-0f47-7a20-9072-bd9940e2a115	2021-05-20 11:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:41:07.852+03	2021-05-20 11:41:07.858+03	
28948b3b-4550-2899-59dc-3ec2a218acbb	2021-05-20 14:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:53:08.853+03	2021-05-20 14:53:08.86+03	
99f98948-758b-a2cf-3163-58720f891b81	2021-05-20 11:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:41:27.853+03	2021-05-20 11:41:27.86+03	
9669960a-20b2-3e77-05e5-b0c647195ace	2021-05-20 11:41:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:41:47.853+03	2021-05-20 11:41:47.868+03	
63eef46b-b986-733a-8bab-1681eb021938	2021-05-20 14:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:53:29.853+03	2021-05-20 14:53:29.859+03	
cbfcd835-33ed-388a-b32e-cc338569a4d2	2021-05-20 11:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:42:08.853+03	2021-05-20 11:42:08.861+03	
27cec480-6f1c-146d-9f8a-1fb1bb37d8a1	2021-05-20 11:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:42:30.853+03	2021-05-20 11:42:30.859+03	
b2297f91-7a01-615e-e255-170c37f8d961	2021-05-20 14:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:53:50.853+03	2021-05-20 14:53:50.861+03	
8b398825-0299-d864-ddf2-ee4d0e2b1855	2021-05-20 11:42:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:42:51.853+03	2021-05-20 11:42:51.86+03	
ee3347cb-a485-c261-68b3-7a4f4539c139	2021-05-20 11:43:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:43:11.853+03	2021-05-20 11:43:11.86+03	
3b8f0238-3b99-b17e-e9a2-33e4b305d6c6	2021-05-20 14:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:54:12.852+03	2021-05-20 14:54:12.859+03	
2fc161ff-2f4c-2a45-a7fd-5a1bbd660853	2021-05-20 11:43:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:43:31.853+03	2021-05-20 11:43:31.861+03	
60c5cc30-ce5c-6617-619f-8d64c72024ff	2021-05-20 11:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:43:52.852+03	2021-05-20 11:43:52.874+03	
244e4ffc-652c-5557-e703-a4b5fcda9a55	2021-05-20 14:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:54:33.852+03	2021-05-20 14:54:33.867+03	
19abe127-bf8a-7a26-2ced-facb1e3181cd	2021-05-20 11:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:44:12.853+03	2021-05-20 11:44:12.859+03	
116a2af9-404e-0575-86d8-799f5abe093b	2021-05-20 11:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:44:32.853+03	2021-05-20 11:44:32.859+03	
e8d46a3a-cd11-9ac5-ef4d-66bdc9b243f1	2021-05-20 14:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:55:03.853+03	2021-05-20 14:55:03.859+03	
1683c664-ad22-0f14-c161-e22d26d423c9	2021-05-20 11:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:44:53.853+03	2021-05-20 11:44:53.86+03	
17773a12-c751-b096-a55f-1d8c29004499	2021-05-20 11:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:45:13.853+03	2021-05-20 11:45:13.859+03	
f7ffbad7-0a4a-e4e8-3e04-3e5e5f5b19d1	2021-05-20 14:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:55:24.853+03	2021-05-20 14:55:24.861+03	
d8756cd4-898f-c7c0-32a3-3e2da7cab848	2021-05-20 14:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:55:45.853+03	2021-05-20 14:55:45.859+03	
643e7715-9395-dc57-f763-55fefbe969e4	2021-05-20 14:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:56:05.853+03	2021-05-20 14:56:05.86+03	
0183fad0-e385-2c2f-354d-67bdaf6abc6a	2021-05-20 14:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:56:15.853+03	2021-05-20 14:56:15.864+03	
3055e0f8-ad9d-ecaa-7550-b894d0d556b8	2021-05-20 14:56:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:56:36.852+03	2021-05-20 14:56:36.858+03	
fb2800da-a1fb-423c-78b9-734c5c60f845	2021-05-20 14:56:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:56:56.853+03	2021-05-20 14:56:56.865+03	
77bce16f-a148-8c24-7974-b2a755a90fc8	2021-05-20 14:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:57:17.852+03	2021-05-20 14:57:17.868+03	
9f91f3e4-7a07-ce56-4358-9a074eceeca4	2021-05-20 14:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:57:27.853+03	2021-05-20 14:57:27.86+03	
9b8be579-f621-b5fa-3e98-748b833dafd6	2021-05-20 14:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:57:48.853+03	2021-05-20 14:57:48.873+03	
1c72472a-9351-c28b-a7df-974e8d01fd95	2021-05-20 14:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:58:30.853+03	2021-05-20 14:58:30.86+03	
b4f092e6-292b-e3ad-915b-87d550b3946b	2021-05-20 14:58:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:58:51.853+03	2021-05-20 14:58:51.86+03	
ea42d9e5-33de-5659-a476-247dede60f13	2021-05-20 15:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:04:27.853+03	2021-05-20 15:04:27.874+03	
7b995ad1-6723-5d47-241a-48bf9a5307e1	2021-05-20 15:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:18:21.854+03	2021-05-20 15:18:21.86+03	
79b940f6-a6a5-8ed2-bfe1-6ce1f01aebb6	2021-05-20 15:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:18:32.852+03	2021-05-20 15:18:32.86+03	
e5dfbfb1-1e69-e6ce-0e7a-036bea702ef6	2021-05-20 15:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:18:42.852+03	2021-05-20 15:18:42.859+03	
27442672-50a0-47f0-37cc-c6ad4d87717e	2021-05-20 15:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:18:52.852+03	2021-05-20 15:18:52.859+03	
4546a0ca-d311-cebf-09be-eaacdf04aa4d	2021-05-20 15:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:19:02.852+03	2021-05-20 15:19:02.864+03	
fe904ca6-2681-d358-9ab8-207f527efc97	2021-05-20 15:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:19:12.852+03	2021-05-20 15:19:12.86+03	
1ef3269f-7b69-9fc2-62bb-6d79c11b7b30	2021-05-20 15:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:19:22.852+03	2021-05-20 15:19:22.868+03	
2ee3d99f-c51a-a7ef-8bdc-8e7c523270d0	2021-05-20 15:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:19:32.853+03	2021-05-20 15:19:32.874+03	
c8883498-514a-bfbc-01df-af1cda060f84	2021-05-20 15:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:19:42.853+03	2021-05-20 15:19:42.859+03	
a4d03c3e-ef24-4a8c-2c4f-740e3f78c805	2021-05-20 15:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:19:53.853+03	2021-05-20 15:19:53.86+03	
ba92c78b-a81c-2ce8-e839-a6a85e852e46	2021-05-20 15:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 15:20:00.853+03	2021-05-20 15:20:00.858+03	ERROR
3bce6179-f734-c177-9ac5-cc25d1240912	2021-05-20 15:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:20:04.853+03	2021-05-20 15:20:04.86+03	
11bfa0e5-b74e-8beb-5d03-e242e535aa71	2021-05-20 15:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:20:14.853+03	2021-05-20 15:20:14.859+03	
fdcf1cf5-57fb-c895-d643-80b97a50bf2d	2021-05-20 15:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:20:25.852+03	2021-05-20 15:20:25.859+03	
c313c590-0466-3d40-42c9-0f2e0e112143	2021-05-20 11:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:37:18.853+03	2021-05-20 11:37:18.862+03	
af5482a8-eb05-5a89-223d-26b6ce3f873b	2021-05-20 11:37:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:37:40.852+03	2021-05-20 11:37:40.859+03	
f6721ba3-c78a-ea50-95e4-f12516a5e05c	2021-05-20 11:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:38:00.852+03	2021-05-20 11:38:00.862+03	
e379e488-a714-e08e-0655-a756eaf4cfb1	2021-05-20 11:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:38:20.853+03	2021-05-20 11:38:20.861+03	
f94a52de-7730-25c3-fb0e-169cd8e0ccce	2021-05-20 11:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:38:42.853+03	2021-05-20 11:38:42.864+03	
b6e84256-3dfa-a955-da98-a7647fc68e95	2021-05-20 11:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:39:02.853+03	2021-05-20 11:39:02.859+03	
996c000c-9783-7276-345d-ea23743737f9	2021-05-20 11:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:39:23.852+03	2021-05-20 11:39:23.858+03	
63b06300-7fdb-a086-b564-c2dccee29040	2021-05-20 11:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:39:43.853+03	2021-05-20 11:39:43.864+03	
f3192aa3-3af6-9d6f-c8ea-a4dbedb09bee	2021-05-20 11:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 11:40:00.852+03	2021-05-20 11:40:00.857+03	ERROR
018f3621-e192-3ddf-5b8a-417489790eb4	2021-05-20 11:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:40:15.853+03	2021-05-20 11:40:15.86+03	
01162886-81d8-5c72-9b5f-939feffa85c8	2021-05-20 11:40:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:40:36.852+03	2021-05-20 11:40:36.876+03	
d2981320-22d5-8e57-93eb-749fd93d605a	2021-05-20 11:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:40:57.852+03	2021-05-20 11:40:57.858+03	
2d63f1ee-8772-1660-9e4b-d1e11d554182	2021-05-20 11:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:41:17.852+03	2021-05-20 11:41:17.86+03	
bd7222e7-201a-3396-011a-8bdf6dd43f51	2021-05-20 11:41:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:41:37.853+03	2021-05-20 11:41:37.859+03	
a194a6dc-dde7-14ea-5a91-6a3e90de663f	2021-05-20 11:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:41:57.853+03	2021-05-20 11:41:57.859+03	
f64a1c9d-76c3-2247-34a2-061861123612	2021-05-20 11:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:42:19.853+03	2021-05-20 11:42:19.86+03	
591045a0-3c13-f641-fd0e-e15861799760	2021-05-20 11:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:42:40.853+03	2021-05-20 11:42:40.866+03	
06578f24-ff69-cb57-97ea-fa4dc0b0887d	2021-05-20 11:43:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:43:01.853+03	2021-05-20 11:43:01.886+03	
f2ddb14a-b37c-4550-7ff3-7d10a527ca86	2021-05-20 11:43:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:43:21.853+03	2021-05-20 11:43:21.859+03	
ddddcb4f-d4a4-8b47-0e5d-e59e22546ef9	2021-05-20 11:43:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:43:41.853+03	2021-05-20 11:43:41.862+03	
d945881a-976e-cc09-0c4a-6335f4fae03c	2021-05-20 11:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:44:02.853+03	2021-05-20 11:44:02.859+03	
b387e8d6-8720-1793-2d1d-83c561a3be75	2021-05-20 11:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:44:22.853+03	2021-05-20 11:44:22.859+03	
8f6f8085-fa93-ebc3-3b60-2818cb56b8aa	2021-05-20 11:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:44:43.853+03	2021-05-20 11:44:43.859+03	
44490f5e-b7ad-3465-63a3-ca2602c8d09b	2021-05-20 11:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:45:03.853+03	2021-05-20 11:45:03.86+03	
3e424da9-d27e-95af-a378-1bd23f1c61ea	2021-05-20 11:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:45:23.853+03	2021-05-20 11:45:23.861+03	
93c0c64b-9daa-30c0-bd87-723911ecd2a5	2021-05-20 11:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:45:33.853+03	2021-05-20 11:45:33.861+03	
570a17cf-5c47-aef5-9b5c-431a979f2c0d	2021-05-20 11:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:45:43.853+03	2021-05-20 11:45:43.859+03	
fc17d4cc-5c04-109c-a59d-4524e498b4c0	2021-05-20 11:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:45:53.853+03	2021-05-20 11:45:53.862+03	
3e01aa11-f12b-7c71-4aee-813984413241	2021-05-20 11:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:46:03.853+03	2021-05-20 11:46:03.874+03	
08ec3ecb-1a85-9f45-9f61-c4eff2205112	2021-05-20 11:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:46:14.852+03	2021-05-20 11:46:14.859+03	
51ee7760-2046-7854-faad-a8ea9de11530	2021-05-20 11:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:46:24.852+03	2021-05-20 11:46:24.861+03	
a3ac8c5b-7d33-df3a-8c36-33cf9f9c9a43	2021-05-20 11:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:46:34.852+03	2021-05-20 11:46:34.859+03	
511ba544-f242-1fdf-b2a1-60befa29a0a8	2021-05-20 11:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:46:44.852+03	2021-05-20 11:46:44.858+03	
f99b5093-7fd5-e8be-f5e9-fb9cb0c8860d	2021-05-20 11:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:46:54.852+03	2021-05-20 11:46:54.859+03	
2aa77f2e-e740-8e3e-e673-6fdf05ffcd1d	2021-05-20 11:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:47:04.853+03	2021-05-20 11:47:04.859+03	
20ae7639-29fd-6573-5420-121995eecd75	2021-05-20 11:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:47:14.853+03	2021-05-20 11:47:14.859+03	
174ea306-e13a-0d70-d253-24edff5308a6	2021-05-20 11:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:47:24.853+03	2021-05-20 11:47:24.859+03	
cdc4f9d7-9dd7-514e-49b9-5e2eb433664b	2021-05-20 11:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:47:34.853+03	2021-05-20 11:47:34.86+03	
200b7524-3f3d-2c1e-6fcc-39b9e6a2e78e	2021-05-20 11:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:47:44.853+03	2021-05-20 11:47:44.863+03	
92765412-0782-886b-a40c-81653a004221	2021-05-20 11:47:54.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:47:54.853+03	2021-05-20 11:47:54.868+03	
bbac779a-9241-74df-ed08-d0b226b9b119	2021-05-20 11:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:48:05.852+03	2021-05-20 11:48:05.868+03	
bc5416fb-b815-f965-dd66-76db076759b0	2021-05-20 11:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:48:15.852+03	2021-05-20 11:48:15.858+03	
54f2a53a-acf8-e58f-fb08-7257e67095b2	2021-05-20 11:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:48:25.852+03	2021-05-20 11:48:25.902+03	
dd8b3f0d-3b65-efde-dabf-f04aebff93dc	2021-05-20 11:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:48:35.853+03	2021-05-20 11:48:35.86+03	
8e1ee431-1a79-adbc-b0ac-429e3d20ebb6	2021-05-20 11:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:48:45.853+03	2021-05-20 11:48:45.86+03	
d3ca0dce-2950-da55-225d-2057eb1bfb76	2021-05-20 11:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:48:56.852+03	2021-05-20 11:48:56.86+03	
a2fb382b-7d0e-5f50-5836-3c4d99d1762d	2021-05-20 11:49:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:49:06.854+03	2021-05-20 11:49:06.862+03	
2b9b1de0-ac5b-f562-b1e4-12dbf8af98ea	2021-05-20 11:49:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:49:16.854+03	2021-05-20 11:49:16.862+03	
67c2872d-3837-a92e-8224-c9a2e9a9f1e5	2021-05-20 11:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:49:27.853+03	2021-05-20 11:49:27.868+03	
7bfebe43-5372-aa9c-79d8-1b214110eb67	2021-05-20 11:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:49:38.853+03	2021-05-20 11:49:38.86+03	
533b9958-51aa-c22d-28a0-91a26b7fc70e	2021-05-20 11:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:49:49.852+03	2021-05-20 11:49:49.86+03	
bd3ee2e7-c5fd-f6f3-8dca-c140e46f23c7	2021-05-20 11:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:49:59.853+03	2021-05-20 11:49:59.859+03	
195ce851-ed39-85a6-baa4-a051f61b1f94	2021-05-20 11:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 11:50:00.853+03	2021-05-20 11:50:00.857+03	ERROR
c74b7502-3b68-e91b-dec5-97c2e1110859	2021-05-20 11:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:50:09.853+03	2021-05-20 11:50:10.027+03	
17867a6b-f5a7-6e37-e077-08de44c0ca59	2021-05-20 11:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:50:19.853+03	2021-05-20 11:50:19.859+03	
1dced12e-ef97-c91f-8bdf-5fbda80f0147	2021-05-20 11:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:50:29.853+03	2021-05-20 11:50:29.861+03	
276e62c3-2f0f-3081-c0a7-e9d78ba61fd6	2021-05-20 11:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:50:39.853+03	2021-05-20 11:50:39.859+03	
e35b334f-5ae3-62e8-786b-ca3b7cebd3b1	2021-05-20 11:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:50:49.853+03	2021-05-20 11:50:49.864+03	
d920440a-9239-f78a-e982-63eef00b6b23	2021-05-20 11:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:50:59.853+03	2021-05-20 11:50:59.86+03	
a292d366-5317-5b7e-53b1-71c94bad41fb	2021-05-20 11:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:51:09.853+03	2021-05-20 11:51:09.861+03	
5a8d9c8c-a68d-b6e1-aa0c-1dc0a046dd99	2021-05-20 11:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:51:20.853+03	2021-05-20 11:51:20.86+03	
af84e0b7-380b-8b1c-9348-c836376eb70e	2021-05-20 11:51:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:51:31.852+03	2021-05-20 11:51:31.86+03	
41dea491-36b5-5194-e8fc-8483b267738d	2021-05-20 11:51:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:51:41.852+03	2021-05-20 11:51:41.859+03	
77a6e547-a55d-dc01-060f-19e01c6a40ff	2021-05-20 11:51:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:51:51.854+03	2021-05-20 11:51:51.86+03	
67ec7502-75f6-e950-8f08-cca044e8b30b	2021-05-20 11:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:52:12.852+03	2021-05-20 11:52:12.859+03	
e599f725-2893-b880-00a3-a16ce1608fcd	2021-05-20 11:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:52:32.853+03	2021-05-20 11:52:32.859+03	
892d350d-0d40-101e-1b46-4dbc8bc561de	2021-05-20 11:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:52:53.853+03	2021-05-20 11:52:53.861+03	
4b2e0ebb-7414-1097-e5b2-015ddca7f9a8	2021-05-20 11:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:53:14.852+03	2021-05-20 11:53:14.859+03	
a5b7534a-4448-b2b1-5af9-8a1c417d4e15	2021-05-20 11:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:53:34.852+03	2021-05-20 11:53:34.859+03	
729748b9-fcce-0bc0-7f6f-f18c8147e9d5	2021-05-20 11:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:53:54.853+03	2021-05-20 11:53:54.859+03	
3cfb4d7b-1908-3892-ba25-ce3578dafff8	2021-05-20 11:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:54:15.853+03	2021-05-20 11:54:15.861+03	
1c401833-11c9-5405-206d-b8c67af992ce	2021-05-20 11:54:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:54:36.853+03	2021-05-20 11:54:36.863+03	
c70867c5-61f9-fce6-9541-feaefe9dddf8	2021-05-20 11:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:54:57.852+03	2021-05-20 11:54:57.859+03	
8e27ea0a-5ded-6c5f-4d42-7c3a277e5a56	2021-05-20 11:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:55:17.852+03	2021-05-20 11:55:17.861+03	
2b79502f-76ee-4640-1747-9ad4e7533f76	2021-05-20 11:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:55:38.852+03	2021-05-20 11:55:38.861+03	
5c57a0cd-6789-fc8e-6de4-ccdcba5fe79a	2021-05-20 11:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:55:58.853+03	2021-05-20 11:55:58.862+03	
1e745f9e-5f7c-51ee-09e1-dbd428159184	2021-05-20 11:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:56:18.853+03	2021-05-20 11:56:18.86+03	
9590fa11-dd53-d17c-b6dc-48e57ca1eedf	2021-05-20 11:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:56:39.852+03	2021-05-20 11:56:39.86+03	
f9661572-edbc-7171-14a5-f404a6db584a	2021-05-20 11:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:57:00.852+03	2021-05-20 11:57:00.861+03	
19526b3e-6066-af61-d0b1-cbe739df84ed	2021-05-20 11:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:57:20.853+03	2021-05-20 11:57:20.86+03	
f715426f-6dd5-e88e-bab6-1d9603ddb32a	2021-05-20 11:57:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:57:41.852+03	2021-05-20 11:57:41.866+03	
11c22ab4-815d-2cf2-ea2a-942a41f5458c	2021-05-20 11:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:58:02.852+03	2021-05-20 11:58:02.859+03	
56b7b936-d7f5-eb44-b900-93ce68cbce40	2021-05-20 11:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:58:22.852+03	2021-05-20 11:58:22.87+03	
b358d9cd-481b-1ca8-3e40-a570071a4b99	2021-05-20 11:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:58:42.852+03	2021-05-20 11:58:42.869+03	
3df27a8c-cfcd-6785-49bc-5eea62f62d2d	2021-05-20 11:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:59:02.853+03	2021-05-20 11:59:02.859+03	
a89be4a6-c94c-2ad1-4747-e09df7bcd3cb	2021-05-20 11:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:59:23.852+03	2021-05-20 11:59:23.859+03	
14b8241d-0f47-b927-3020-e75d2de2d745	2021-05-20 11:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:59:43.853+03	2021-05-20 11:59:43.859+03	
d40b7092-48ee-83f0-6c1c-b730024a6ce5	2021-05-20 12:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 12:00:00.853+03	2021-05-20 12:00:00.874+03	ERROR
2abce83b-9388-10b3-c028-43cfdc1496e8	2021-05-20 12:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:00:13.853+03	2021-05-20 12:00:13.874+03	
df66897f-9ea4-ed2a-0eeb-f60be8f6ce01	2021-05-20 12:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:00:33.853+03	2021-05-20 12:00:33.868+03	
3e0956ea-da6a-04ae-8986-47d162af2bc3	2021-05-20 12:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:00:54.853+03	2021-05-20 12:00:54.86+03	
0850296d-d068-73ff-bf7c-e7b4b5498588	2021-05-20 12:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:01:15.852+03	2021-05-20 12:01:15.86+03	
81a9d573-7f80-b9b0-fafe-eb75de73969b	2021-05-20 12:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:01:35.853+03	2021-05-20 12:01:35.859+03	
11e16013-cd14-904b-da2d-4683ad5876a1	2021-05-20 12:01:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:01:56.852+03	2021-05-20 12:01:56.859+03	
741b3605-1a50-648f-742c-2ebc47d9b3ba	2021-05-20 12:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:02:17.853+03	2021-05-20 12:02:17.861+03	
e6e10a59-39c6-c3e9-331c-59ebca8d396e	2021-05-20 12:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:02:38.853+03	2021-05-20 12:02:38.868+03	
a2008860-49e5-4926-abf2-00fc125f8cef	2021-05-20 12:02:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:02:59.853+03	2021-05-20 12:02:59.861+03	
bbc46587-3718-c17e-83a0-699bfabaf5ad	2021-05-20 12:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:03:20.853+03	2021-05-20 12:03:20.86+03	
36c68c8f-8f7d-8f59-9864-baec192be040	2021-05-20 12:03:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:03:41.852+03	2021-05-20 12:03:41.862+03	
d57eb852-fd1e-41d1-082d-3b5849a2f2a1	2021-05-20 12:04:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:04:01.853+03	2021-05-20 12:04:02.272+03	
90b7211a-0e5a-7008-8344-5af864007822	2021-05-20 12:04:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:04:21.853+03	2021-05-20 12:04:21.862+03	
e1aeb4c0-f998-3772-fe6a-97834b8f0219	2021-05-20 12:04:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:04:41.854+03	2021-05-20 12:04:41.861+03	
fe39acc3-44e6-3ac3-c713-1a11ab32e222	2021-05-20 12:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:05:02.852+03	2021-05-20 12:05:02.859+03	
a1cb059f-00b3-1bd1-8e85-30b315129d0e	2021-05-20 12:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:05:22.853+03	2021-05-20 12:05:22.859+03	
1e43e2fb-6c6a-1dcf-6003-3f1881095f02	2021-05-20 12:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:05:42.853+03	2021-05-20 12:05:42.859+03	
b0c5f988-f0a1-b918-b131-46c04cd42d30	2021-05-20 12:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:06:02.853+03	2021-05-20 12:06:02.862+03	
db4e8a85-c679-30e1-931a-fa0a1301fd95	2021-05-20 12:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:06:22.853+03	2021-05-20 12:06:22.866+03	
f2a617c9-30be-6ba9-c111-2f3e50dded47	2021-05-20 12:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:06:43.853+03	2021-05-20 12:06:43.86+03	
6d0eb7f2-884b-3086-c87c-61cdde85cd6f	2021-05-20 12:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:07:03.853+03	2021-05-20 12:07:03.859+03	
1540a35a-e667-d1d0-81be-81768c686449	2021-05-20 12:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:07:24.852+03	2021-05-20 12:07:24.859+03	
7f8dbad2-0eef-f771-5234-0a712a25ba51	2021-05-20 12:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:07:44.853+03	2021-05-20 12:07:44.864+03	
a32d4d0d-5d83-5252-b337-c80baef33757	2021-05-20 12:08:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:08:06.852+03	2021-05-20 12:08:06.859+03	
16b52ea4-698b-97ab-129c-5085eed711b8	2021-05-20 12:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:08:26.852+03	2021-05-20 12:08:26.86+03	
a2ff30af-a542-12f5-9056-18a7d0462b8c	2021-05-20 12:08:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:08:46.852+03	2021-05-20 12:08:46.858+03	
d7075e5e-9b1b-5e39-33b8-23aa08840436	2021-05-20 12:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:09:07.852+03	2021-05-20 12:09:07.859+03	
c47ba314-1bb4-afa0-6341-c05beee97e67	2021-05-20 12:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:09:27.853+03	2021-05-20 12:09:27.865+03	
74a526c9-b78a-b97f-ce48-18e8590b20ca	2021-05-20 12:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:09:47.853+03	2021-05-20 12:09:47.859+03	
1fd11b0c-b560-8fda-a5b9-c374440cd338	2021-05-20 12:10:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 12:10:00.853+03	2021-05-20 12:10:00.859+03	ERROR
85beb536-81a9-9529-59b2-41554f9b909c	2021-05-20 12:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:10:18.853+03	2021-05-20 12:10:18.86+03	
f7ff1e55-6203-dc9f-e1c9-acc8062f924b	2021-05-20 12:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:10:39.853+03	2021-05-20 12:10:39.858+03	
2bc115a3-7962-4929-85a5-2b6b4892a222	2021-05-20 12:11:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:11:00.852+03	2021-05-20 12:11:00.858+03	
551839f2-b58a-4e4d-5c66-6a3b0153ae90	2021-05-20 12:11:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:11:20.852+03	2021-05-20 12:11:20.863+03	
bfdca779-1ef9-3bb0-f743-672913c4e92d	2021-05-20 12:11:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:11:40.853+03	2021-05-20 12:11:40.86+03	
602c01a3-65c2-3051-5e88-0c94a82bc847	2021-05-20 12:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:12:00.853+03	2021-05-20 12:12:00.859+03	
750697ed-f4b4-d908-1204-b97e596e9923	2021-05-20 12:12:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:12:21.852+03	2021-05-20 12:12:21.86+03	
3b4b33a5-9c08-cc30-4ba6-206d296a9509	2021-05-20 12:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:12:42.852+03	2021-05-20 12:12:42.862+03	
336d73da-f4ed-86b5-1bce-bca9a17ebe51	2021-05-20 11:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:52:02.852+03	2021-05-20 11:52:02.876+03	
e6ed4ef7-8496-5303-b452-ddd3c4a2963e	2021-05-20 11:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:52:22.852+03	2021-05-20 11:52:22.86+03	
5c090b9c-e3e3-4c55-f8b4-a1a0e8009cc5	2021-05-20 11:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:52:43.853+03	2021-05-20 11:52:43.861+03	
22ce1fd6-5366-d97d-3123-17d6ffc3bdbc	2021-05-20 11:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:53:04.852+03	2021-05-20 11:53:04.858+03	
8de61ae0-2892-8cb1-ee69-1a73422b3cdd	2021-05-20 11:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:53:24.852+03	2021-05-20 11:53:24.867+03	
7c5eb27a-f679-7985-f329-aca643eb9bce	2021-05-20 11:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:53:44.852+03	2021-05-20 11:53:44.86+03	
efb48973-ba92-e455-bb9a-73dacc43b51f	2021-05-20 11:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:54:05.852+03	2021-05-20 11:54:05.859+03	
e6112177-a0fd-d259-85da-eef599b0332d	2021-05-20 11:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:54:25.853+03	2021-05-20 11:54:25.86+03	
750ae9a2-c3f2-f817-e80c-2fae73ec3e2c	2021-05-20 11:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:54:47.852+03	2021-05-20 11:54:47.86+03	
cddf5a3c-9719-3d07-200e-560f537c762e	2021-05-20 11:55:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:55:07.852+03	2021-05-20 11:55:07.859+03	
9e4c7bc3-d07a-ed76-b234-9ae5181e0427	2021-05-20 11:55:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:55:27.853+03	2021-05-20 11:55:27.861+03	
121729ad-9bca-1084-9eb8-3a89fc2a57af	2021-05-20 11:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:55:48.852+03	2021-05-20 11:55:48.86+03	
97881a55-72c8-0c29-c765-d79a79fe51c5	2021-05-20 11:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:56:08.853+03	2021-05-20 11:56:08.864+03	
f79a2846-eaae-8536-4ad2-f2f82389781e	2021-05-20 11:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:56:28.853+03	2021-05-20 11:56:28.859+03	
d31e38bb-a0e3-c143-b45a-191e58c53734	2021-05-20 11:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:56:49.853+03	2021-05-20 11:56:49.859+03	
f16054a3-9f5c-94a9-b4a8-e4dea98d49b2	2021-05-20 11:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:57:10.853+03	2021-05-20 11:57:10.86+03	
b0439d65-0a2d-4514-ed68-9c9bc5984dcc	2021-05-20 11:57:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:57:31.852+03	2021-05-20 11:57:31.861+03	
6c57ce43-5b7c-f7ff-cdae-d04b451df013	2021-05-20 11:57:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:57:51.853+03	2021-05-20 11:57:51.859+03	
f16c8248-fb6b-b213-15cc-f89b31a365c1	2021-05-20 11:58:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:58:12.852+03	2021-05-20 11:58:12.861+03	
9ff52092-60ff-066d-9603-ed200519a100	2021-05-20 11:58:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:58:32.852+03	2021-05-20 11:58:32.859+03	
dc44f8de-3c94-bbce-e79b-8110ad3f23e5	2021-05-20 11:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:58:52.852+03	2021-05-20 11:58:52.859+03	
01d5b387-b44d-35f1-9ff4-514c3db4eaa5	2021-05-20 11:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:59:13.852+03	2021-05-20 11:59:13.858+03	
8c2fa3d7-6505-19d7-fd22-bb26a413f493	2021-05-20 11:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:59:33.852+03	2021-05-20 11:59:33.864+03	
0e7170c8-82bb-6b45-771c-a613e77a941a	2021-05-20 11:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 11:59:53.853+03	2021-05-20 11:59:53.86+03	
9e803db9-9e5f-2439-eb7e-babc2a46f346	2021-05-20 12:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:00:03.853+03	2021-05-20 12:00:03.861+03	
79f8d54f-3489-887c-c4d4-3ad97f354ea2	2021-05-20 12:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:00:23.853+03	2021-05-20 12:00:23.862+03	
8bd220bb-fc76-0454-502c-ddc7fa3d02ed	2021-05-20 12:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:00:44.852+03	2021-05-20 12:00:44.859+03	
a09ee0e2-8447-986f-ec4b-847cdf266926	2021-05-20 12:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:01:05.852+03	2021-05-20 12:01:05.861+03	
1cea13c5-91a3-5fbd-3abf-d52d2a3e3121	2021-05-20 12:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:01:25.852+03	2021-05-20 12:01:25.859+03	
01d66fc8-0879-d18b-3ba8-b64f205deac9	2021-05-20 12:01:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:01:46.852+03	2021-05-20 12:01:46.858+03	
221e6004-fc06-f2fb-b576-66111839abd6	2021-05-20 12:02:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:02:06.853+03	2021-05-20 12:02:06.86+03	
6933ca03-33ca-c7f3-5a17-168f13a77f24	2021-05-20 12:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:02:28.853+03	2021-05-20 12:02:28.859+03	
0299bfef-0f9f-8474-a973-d3c7d20fab3e	2021-05-20 12:02:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:02:49.852+03	2021-05-20 12:02:49.859+03	
a21217b8-33f1-5e52-55f2-cb3fa21b41a7	2021-05-20 12:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:03:10.852+03	2021-05-20 12:03:10.859+03	
fb00dc30-514b-3218-87b9-93bf5ced2fe1	2021-05-20 12:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:03:31.852+03	2021-05-20 12:03:31.859+03	
8edb0d18-b878-3cde-38c9-03f0d05d015e	2021-05-20 12:03:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:03:51.852+03	2021-05-20 12:03:51.861+03	
b4e87ed8-141c-a149-7354-6a731a3e0e44	2021-05-20 12:04:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:04:11.853+03	2021-05-20 12:04:11.86+03	
7e8103eb-51fd-203b-4175-47d1889ea374	2021-05-20 12:04:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:04:31.853+03	2021-05-20 12:04:31.874+03	
03c92f27-90c0-ae98-dde1-d14f53e4c81b	2021-05-20 12:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:04:52.852+03	2021-05-20 12:04:52.864+03	
95cac263-067f-631b-3686-de605716af98	2021-05-20 12:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:05:12.853+03	2021-05-20 12:05:12.86+03	
99dbb39f-940d-967a-c63a-9654a71340d5	2021-05-20 12:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:05:32.853+03	2021-05-20 12:05:32.86+03	
b96a9372-3e69-15b0-9a6f-385af24415d2	2021-05-20 12:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:05:52.853+03	2021-05-20 12:05:52.871+03	
e53e8f82-ea05-fb52-4f2d-92c40b306689	2021-05-20 12:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:06:12.853+03	2021-05-20 12:06:12.86+03	
a26859c6-43a5-2f32-f48a-28b7c96ebc3e	2021-05-20 12:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:06:33.853+03	2021-05-20 12:06:33.864+03	
cec05c60-e2a6-5270-a49e-d97d65c41c06	2021-05-20 12:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:06:53.853+03	2021-05-20 12:06:53.86+03	
316d265a-332a-db14-023a-584703d07475	2021-05-20 12:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:07:13.853+03	2021-05-20 12:07:13.871+03	
6e55d7ab-97f2-529e-06df-aa9e1b8fc8b1	2021-05-20 12:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:07:34.852+03	2021-05-20 12:07:34.859+03	
b4f0afc0-d118-ac10-cce4-1171874e1e83	2021-05-20 12:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:07:55.853+03	2021-05-20 12:07:55.86+03	
39b2e2a0-4a8b-bceb-9228-00548513efc5	2021-05-20 12:08:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:08:16.852+03	2021-05-20 12:08:16.86+03	
51a283f7-44aa-a058-a944-535b6be0df29	2021-05-20 12:08:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:08:36.852+03	2021-05-20 12:08:36.858+03	
576ec81f-00cb-89a8-6667-b0539053a09e	2021-05-20 12:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:08:56.853+03	2021-05-20 12:08:56.865+03	
6518affe-0f50-114c-d0d4-e108458acfa9	2021-05-20 12:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:09:17.852+03	2021-05-20 12:09:17.859+03	
f54f5586-e680-3de4-6642-826964e646e9	2021-05-20 12:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:09:37.853+03	2021-05-20 12:09:37.859+03	
9fc5eda4-b102-c793-56f8-76510e687d83	2021-05-20 12:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:09:58.852+03	2021-05-20 12:09:58.862+03	
1f21aaac-0d38-1d93-2521-18a5e67debbd	2021-05-20 12:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:10:08.852+03	2021-05-20 12:10:08.859+03	
04a51fb5-b321-94db-a486-623f3459f038	2021-05-20 12:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:10:28.853+03	2021-05-20 12:10:28.86+03	
52754735-951f-dd21-215a-50b85c75f083	2021-05-20 12:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:10:50.852+03	2021-05-20 12:10:50.859+03	
0757cecd-e437-d5a4-3441-5991fe886870	2021-05-20 12:11:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:11:10.852+03	2021-05-20 12:11:10.861+03	
44eac0c8-cd21-4859-1b04-4d04f2cb1013	2021-05-20 12:11:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:11:30.853+03	2021-05-20 12:11:30.86+03	
5c5d342b-d1e4-a112-1f5e-4cedfe4c3e48	2021-05-20 12:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:11:50.853+03	2021-05-20 12:11:50.859+03	
d1b78d95-a329-1f6d-61e9-b21cfed05040	2021-05-20 12:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:12:10.853+03	2021-05-20 12:12:10.859+03	
3aa26a56-daa0-ecb5-3c82-38d202ed761f	2021-05-20 12:12:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:12:31.854+03	2021-05-20 12:12:31.863+03	
fbec74ca-0795-99d3-007c-f4118cfb813c	2021-05-20 12:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:13:02.852+03	2021-05-20 12:13:02.859+03	
713c83dc-b670-7186-2313-487dadd12c60	2021-05-20 12:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:12:52.852+03	2021-05-20 12:12:52.873+03	
c46fb959-0b18-cff8-7796-4d2aafaae004	2021-05-20 12:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:13:12.853+03	2021-05-20 12:13:12.86+03	
725377b0-e28f-cb47-bc1a-ae17176abb4c	2021-05-20 12:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:13:32.853+03	2021-05-20 12:13:32.86+03	
7348cabe-aa11-9f05-42b8-30ad0cbd0aee	2021-05-20 12:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:13:52.853+03	2021-05-20 12:13:52.86+03	
9af5f7df-5c94-631d-af0a-33ef7f17bb55	2021-05-20 12:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:14:13.852+03	2021-05-20 12:14:13.861+03	
55eda1da-1830-3770-e860-ca3a6f00813b	2021-05-20 12:14:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:14:33.853+03	2021-05-20 12:14:33.859+03	
3c623588-c18c-189e-6e1e-ed48eeef05fb	2021-05-20 12:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:14:53.853+03	2021-05-20 12:14:53.859+03	
6af5b157-1e76-69c8-bc83-12e95209ef3d	2021-05-20 12:15:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:15:14.853+03	2021-05-20 12:15:14.86+03	
a9f4a723-e696-27c9-9741-f019d359c34e	2021-05-20 12:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:15:34.853+03	2021-05-20 12:15:34.859+03	
40e438df-abdb-1344-5f9d-eaa728b0d0d3	2021-05-20 12:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:15:54.853+03	2021-05-20 12:15:54.861+03	
f9a2ab88-4531-66ec-a5d4-c19a9c206bbf	2021-05-20 12:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:16:14.853+03	2021-05-20 12:16:14.86+03	
c93d9c18-57c7-e372-cea4-aaf1dad5f48b	2021-05-20 12:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:16:35.853+03	2021-05-20 12:16:35.86+03	
0bfa6501-2fcf-162e-894d-091b0171513d	2021-05-20 12:16:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:16:56.852+03	2021-05-20 12:16:56.864+03	
d1c96380-3a57-2718-f9e2-37a7a66d849b	2021-05-20 12:17:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:17:16.852+03	2021-05-20 12:17:16.867+03	
08389219-6c61-1b2c-1d3e-121a783906c0	2021-05-20 12:17:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:17:36.854+03	2021-05-20 12:17:36.86+03	
a083342a-e52d-4d23-eda5-5795b4b453cd	2021-05-20 12:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:17:58.852+03	2021-05-20 12:17:58.861+03	
63641c52-a023-0661-4405-2966d35f96d0	2021-05-20 12:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:18:18.853+03	2021-05-20 12:18:18.86+03	
9e69b90b-5777-09dd-f94d-6d162f8aae53	2021-05-20 12:18:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:18:39.853+03	2021-05-20 12:18:39.862+03	
d849ab2f-a301-6e29-279b-81682b6930b0	2021-05-20 12:19:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:19:00.852+03	2021-05-20 12:19:00.859+03	
e48d585e-6711-96f9-f93c-e66c4a217f71	2021-05-20 12:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:19:20.853+03	2021-05-20 12:19:20.859+03	
e1353172-2828-950d-3309-a761fea232f4	2021-05-20 12:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:19:42.852+03	2021-05-20 12:19:42.86+03	
0a1d1187-55c3-8c88-d7c5-87c494eea536	2021-05-20 12:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 12:20:00.852+03	2021-05-20 12:20:00.857+03	ERROR
01020e18-a1ef-308e-e2d3-97fe4bbae5f9	2021-05-20 12:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:20:13.853+03	2021-05-20 12:20:13.876+03	
34e77ee0-869f-dc7e-ae51-800b07be5c26	2021-05-20 12:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:20:34.853+03	2021-05-20 12:20:34.866+03	
a0efb69c-43a4-1fec-9f13-35075a611924	2021-05-20 12:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:20:55.853+03	2021-05-20 12:20:55.859+03	
ad707d10-0ed9-cdff-1baf-3bb8434a3496	2021-05-20 12:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:21:15.853+03	2021-05-20 12:21:15.859+03	
6a0de057-7645-a701-fe66-5b962a8bdb3a	2021-05-20 12:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:21:36.852+03	2021-05-20 12:21:36.859+03	
2f635469-c641-ba11-ff0c-b59a892b4464	2021-05-20 12:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:21:56.852+03	2021-05-20 12:21:56.859+03	
bd31da3c-41d2-ddf4-5b2d-1ef1f9749287	2021-05-20 12:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:22:17.853+03	2021-05-20 12:22:17.861+03	
d0fe940c-cc50-0a58-cf70-85b848f937cd	2021-05-20 12:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:22:37.853+03	2021-05-20 12:22:37.859+03	
eb83c587-fbd5-faf3-738b-673fe8efeb92	2021-05-20 12:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:22:58.853+03	2021-05-20 12:22:58.86+03	
072ab744-aa5d-1306-bf27-cd1408c8105e	2021-05-20 12:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:23:19.852+03	2021-05-20 12:23:19.859+03	
63e2f4d4-1fe5-ee60-1db4-d10da4ac5305	2021-05-20 12:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:23:40.853+03	2021-05-20 12:23:40.859+03	
d1569354-67ac-d1b1-855e-838284c4fb73	2021-05-20 12:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:24:00.853+03	2021-05-20 12:24:00.859+03	
7387050d-fcb6-5160-5493-bd8f27258a19	2021-05-20 12:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:24:22.853+03	2021-05-20 12:24:22.86+03	
bc8078bb-2052-f3cb-67df-694d06222e2c	2021-05-20 12:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:24:43.852+03	2021-05-20 12:24:43.859+03	
1bb30993-770b-69d8-1c63-740e83b2d2c1	2021-05-20 12:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:25:03.852+03	2021-05-20 12:25:03.859+03	
4bdb94cc-ba8e-305f-e748-4388452737b7	2021-05-20 12:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:25:23.852+03	2021-05-20 12:25:23.86+03	
8c4eee75-70ad-c695-8094-e3cde0df13e2	2021-05-20 12:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:25:43.852+03	2021-05-20 12:25:43.86+03	
fd234432-4685-3862-dc0e-21a8bb1d9bc2	2021-05-20 12:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:26:03.853+03	2021-05-20 12:26:03.866+03	
1f9c5bcf-3490-7381-a391-4df7d2e77ced	2021-05-20 12:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:26:23.853+03	2021-05-20 12:26:23.86+03	
0c193cb7-4e2c-49fd-9859-a1b09608c43d	2021-05-20 12:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:26:44.853+03	2021-05-20 12:26:44.866+03	
1c996fde-cee4-8543-8575-a678c78d4a1e	2021-05-20 12:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:27:05.853+03	2021-05-20 12:27:05.86+03	
8fffbb21-d024-b1f7-7ecb-418612c3bbd4	2021-05-20 12:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:27:26.852+03	2021-05-20 12:27:26.861+03	
9905b117-18cb-98d4-9bf8-2bca8452b6a8	2021-05-20 12:27:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:27:46.852+03	2021-05-20 12:27:46.86+03	
9fe4963f-c809-0730-7787-48e2411e2496	2021-05-20 12:28:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:28:06.853+03	2021-05-20 12:28:06.86+03	
738bd49e-d001-1fea-5e20-557e4ac1bb08	2021-05-20 12:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:28:27.852+03	2021-05-20 12:28:28.809+03	
e6a84869-7cf8-8539-8059-1a6c125d4ee5	2021-05-20 12:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:28:47.852+03	2021-05-20 12:28:47.861+03	
5031d328-d5ac-b51d-0347-49c6d481e071	2021-05-20 12:29:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:29:07.852+03	2021-05-20 12:29:07.859+03	
1e2511fc-1e1b-165b-f6a1-f5a933cb06e3	2021-05-20 12:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:29:27.852+03	2021-05-20 12:29:27.861+03	
220943e7-9870-24a5-82a4-41d4f32ecbd6	2021-05-20 12:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:29:47.852+03	2021-05-20 12:29:47.859+03	
db2577b9-dcda-79bf-5eef-3df3a664742f	2021-05-20 12:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 12:30:00.853+03	2021-05-20 12:30:00.86+03	ERROR
f05ce4bc-20ab-ba34-5431-0aa1b26bba52	2021-05-20 12:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:30:17.852+03	2021-05-20 12:30:17.859+03	
a483d14e-2f58-56ce-4148-30ed69bb539b	2021-05-20 12:30:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:30:38.853+03	2021-05-20 12:30:38.861+03	
27f415bc-60d5-b5f1-c7f1-302e27cf4e43	2021-05-20 12:30:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:30:59.852+03	2021-05-20 12:30:59.859+03	
e0501c57-6194-421a-359f-4c40ce8b5563	2021-05-20 12:31:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:31:19.853+03	2021-05-20 12:31:19.86+03	
ba063fbc-8795-7b30-4248-6735873117e2	2021-05-20 12:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:31:39.853+03	2021-05-20 12:31:39.871+03	
2a71efca-fc86-3d34-848a-ff3bef0402cd	2021-05-20 12:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:31:59.853+03	2021-05-20 12:31:59.859+03	
44781e3b-70e3-2ffb-e520-6f9385f62670	2021-05-20 12:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:32:19.853+03	2021-05-20 12:32:19.86+03	
391f7b53-ccc8-d64c-096f-b967b159765c	2021-05-20 12:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:32:39.853+03	2021-05-20 12:32:39.859+03	
10dd25c4-6286-a4b0-64ca-ac8eb10bc657	2021-05-20 12:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:32:59.853+03	2021-05-20 12:32:59.859+03	
23282559-ba09-fcf4-aee7-29dc996c3cd8	2021-05-20 12:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:33:20.852+03	2021-05-20 12:33:20.858+03	
25231a0f-203c-4c7f-9e93-956adfdf32cd	2021-05-20 12:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:33:40.853+03	2021-05-20 12:33:40.859+03	
2f79a019-698f-87be-8dec-ffeaf702ad26	2021-05-20 12:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:13:22.853+03	2021-05-20 12:13:22.859+03	
9552064d-cce0-0b38-fff3-dd3e53da30dd	2021-05-20 12:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:13:42.853+03	2021-05-20 12:13:42.873+03	
b705acef-c672-9134-f712-4ed840d316c2	2021-05-20 12:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:14:02.853+03	2021-05-20 12:14:02.86+03	
932336ad-1798-abbb-bc2f-f74d1267b1ae	2021-05-20 12:14:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:14:23.853+03	2021-05-20 12:14:23.858+03	
eed61fe6-5f02-2aa4-411c-c7ab42b9057c	2021-05-20 12:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:14:43.853+03	2021-05-20 12:14:43.859+03	
e9115325-468d-76b5-2a6b-66bd913ed996	2021-05-20 12:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:15:04.852+03	2021-05-20 12:15:04.858+03	
47d4fb81-ac58-3530-4929-3248cf2feced	2021-05-20 12:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:15:24.853+03	2021-05-20 12:15:24.859+03	
f63238d8-6d88-83e6-e396-7b7599a0c28e	2021-05-20 12:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:15:44.853+03	2021-05-20 12:15:44.859+03	
7d366706-2b36-7068-aa01-ebaae8e96ce1	2021-05-20 12:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:16:04.853+03	2021-05-20 12:16:04.86+03	
5f5119a9-c5f6-d444-e0c1-71baf06bff2e	2021-05-20 12:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:16:25.852+03	2021-05-20 12:16:25.861+03	
7d2ddda7-aa8d-2e92-66e5-026ede66174c	2021-05-20 12:16:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:16:46.852+03	2021-05-20 12:16:46.859+03	
c9e16813-9dca-c343-5ac1-dc0414b00dfd	2021-05-20 12:17:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:17:06.852+03	2021-05-20 12:17:06.859+03	
9b15f403-d09c-a32e-98d5-a2fe9929f468	2021-05-20 12:17:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:17:26.854+03	2021-05-20 12:17:26.862+03	
f09c1f6a-1406-cdb2-0f5a-3ac2998467af	2021-05-20 12:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:17:47.853+03	2021-05-20 12:17:47.86+03	
3987391d-d721-d43e-8f58-63dba6d0505b	2021-05-20 12:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:18:08.852+03	2021-05-20 12:18:08.865+03	
d3a6e25d-8a16-764c-9c2f-d66356ed1d29	2021-05-20 12:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:18:28.853+03	2021-05-20 12:18:28.859+03	
13e6c6cf-e563-3a76-89f5-c0b1ed767a8b	2021-05-20 12:18:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:18:50.852+03	2021-05-20 12:18:50.862+03	
9da23a97-42c7-d113-d7f1-682ae3072e70	2021-05-20 12:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:19:10.852+03	2021-05-20 12:19:10.859+03	
54b748ab-83ad-8f05-332b-0457e3baa87a	2021-05-20 12:19:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:19:31.853+03	2021-05-20 12:19:31.86+03	
090fa11c-3fa8-9fb6-f430-c8f47c0b5180	2021-05-20 12:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:19:52.853+03	2021-05-20 12:19:52.86+03	
b12cf3b0-98a7-5473-b6fa-1b35439862f0	2021-05-20 12:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:20:02.853+03	2021-05-20 12:20:02.859+03	
ab2d7c39-09b3-4366-68fb-ef22bd2605c9	2021-05-20 12:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:20:24.852+03	2021-05-20 12:20:24.862+03	
090c2642-ae30-e769-fb74-c85646dd47dc	2021-05-20 12:20:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:20:44.853+03	2021-05-20 12:20:44.859+03	
825cebdc-a73b-6ce4-a9cb-95fd87eb6df9	2021-05-20 12:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:21:05.853+03	2021-05-20 12:21:05.861+03	
6a19de6f-0513-ff1c-88c7-3ad9d78d4d22	2021-05-20 12:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:21:26.852+03	2021-05-20 12:21:26.859+03	
95640e2d-7b38-ecc7-550c-cdefc30adedf	2021-05-20 12:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:21:46.852+03	2021-05-20 12:21:46.859+03	
ad1b4271-dd29-9d3c-d97e-b5efade4082b	2021-05-20 12:22:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:22:06.853+03	2021-05-20 12:22:06.882+03	
bb287c79-4623-0ee6-8b50-be5d7688916d	2021-05-20 12:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:22:27.853+03	2021-05-20 12:22:27.861+03	
04678d56-d27d-716c-d038-bbab700625df	2021-05-20 12:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:22:48.852+03	2021-05-20 12:22:48.862+03	
da21dd3f-59cc-a5de-702e-6155cb13aaea	2021-05-20 12:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:23:08.853+03	2021-05-20 12:23:08.86+03	
7939acdb-892d-4abe-b545-07eedc65ba67	2021-05-20 12:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:23:29.853+03	2021-05-20 12:23:29.859+03	
7b8ff854-01f9-60e4-96c6-cc83c20cd55a	2021-05-20 12:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:23:50.853+03	2021-05-20 12:23:50.86+03	
76b78f5d-beda-7260-60cc-5d57269fd0eb	2021-05-20 12:24:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:24:11.854+03	2021-05-20 12:24:11.862+03	
418cf81b-56ab-a6c6-6821-e6dbe30f156d	2021-05-20 12:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:24:32.853+03	2021-05-20 12:24:32.859+03	
d9fcae99-2f45-78e7-9308-9ae6f926391c	2021-05-20 12:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:24:53.852+03	2021-05-20 12:24:53.858+03	
94b10f4b-e87f-f79e-c451-f2693d5aaa92	2021-05-20 12:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:25:13.852+03	2021-05-20 12:25:13.859+03	
0afcdaeb-eef6-4a99-d93e-2c1f906b8f32	2021-05-20 12:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:25:33.852+03	2021-05-20 12:25:33.859+03	
086c6463-dc35-a554-41b9-ac2845bfcf78	2021-05-20 12:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:25:53.852+03	2021-05-20 12:25:53.861+03	
c2e96cb4-4254-b7da-0277-b9cd2a99fa5a	2021-05-20 12:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:26:13.853+03	2021-05-20 12:26:13.86+03	
f37aa853-166d-df5e-449b-9e79d1e82868	2021-05-20 12:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:26:33.853+03	2021-05-20 12:26:33.861+03	
0d582f12-eb86-b841-bdab-53179b7e6703	2021-05-20 12:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:26:54.853+03	2021-05-20 12:26:54.86+03	
3a85aa83-3c66-39de-19b4-4564787f860d	2021-05-20 12:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:27:15.853+03	2021-05-20 12:27:15.858+03	
2f901256-0e6f-d666-c98b-025155ac2275	2021-05-20 12:27:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:27:36.852+03	2021-05-20 12:27:36.861+03	
ec863b70-f618-6c4c-170c-2c71b94a1116	2021-05-20 12:27:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:27:56.853+03	2021-05-20 12:27:56.864+03	
12b01fa8-8326-8b39-5591-6bc330982467	2021-05-20 12:28:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:28:16.853+03	2021-05-20 12:28:16.86+03	
89bf0144-e333-e249-e4d2-9564362599a2	2021-05-20 12:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:28:37.852+03	2021-05-20 12:28:37.859+03	
309b3b89-e161-24a2-bf63-1450c915f52f	2021-05-20 12:28:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:28:57.852+03	2021-05-20 12:28:57.861+03	
b502252d-8103-48fb-d574-163cf0907c99	2021-05-20 12:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:29:17.852+03	2021-05-20 12:29:17.858+03	
d407ee87-ac9d-a7a7-c67a-1c503ef0c694	2021-05-20 12:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:29:37.852+03	2021-05-20 12:29:37.86+03	
2fb41f68-a401-0246-20fc-c70e556dcec0	2021-05-20 12:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:29:57.852+03	2021-05-20 12:29:57.859+03	
0ffadde8-7467-da37-2eb3-76efe813dbdf	2021-05-20 12:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:30:07.852+03	2021-05-20 12:30:07.86+03	
68027b8f-b3c8-8569-3292-792fa72864e8	2021-05-20 12:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:30:27.853+03	2021-05-20 12:30:27.86+03	
4150eb39-3201-643e-2b1a-cb787df62fc6	2021-05-20 12:30:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:30:49.852+03	2021-05-20 12:30:49.859+03	
592cfc94-4d0d-23d5-9bba-72296a482cc7	2021-05-20 12:31:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:31:09.852+03	2021-05-20 12:31:09.858+03	
3ca40a3a-995b-e229-9a29-00f9f1775d8f	2021-05-20 12:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:31:29.853+03	2021-05-20 12:31:29.859+03	
00202eff-e350-efa1-7476-60a0563f4350	2021-05-20 12:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:31:49.853+03	2021-05-20 12:31:49.859+03	
b3a4fcaa-9da9-7797-2faf-111fd45c236b	2021-05-20 12:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:32:09.853+03	2021-05-20 12:32:09.861+03	
360fabf7-f64a-5d89-03a4-36d566107848	2021-05-20 12:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:32:29.853+03	2021-05-20 12:32:29.859+03	
9c7a6eef-8bb2-72e1-1ad7-e398e94db289	2021-05-20 12:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:32:49.853+03	2021-05-20 12:32:49.86+03	
ece63d8a-4214-e9cf-fb75-ad2133e176f0	2021-05-20 12:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:33:10.852+03	2021-05-20 12:33:10.859+03	
acf05596-e67d-2097-d191-5c047eed1e01	2021-05-20 12:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:33:30.853+03	2021-05-20 12:33:30.859+03	
df60d47e-d73f-6222-bb91-1cab34369e45	2021-05-20 12:33:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:33:51.853+03	2021-05-20 12:33:51.859+03	
e7001c75-6667-94a8-0c54-5b1ab9d441f1	2021-05-20 12:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:34:12.852+03	2021-05-20 12:34:12.859+03	
9751be34-a591-1ae5-19fe-fd3e98568641	2021-05-20 12:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:34:02.852+03	2021-05-20 12:34:02.874+03	
31d3f349-77e5-9ac1-eef4-aabea3462e25	2021-05-20 14:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:50:53.853+03	2021-05-20 14:50:53.861+03	
cfe6a831-c206-c589-da42-57c066b956b5	2021-05-20 12:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:34:22.853+03	2021-05-20 12:34:22.859+03	
f4226b05-ce50-4b68-5897-848b7b87d002	2021-05-20 12:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:34:42.853+03	2021-05-20 12:34:42.861+03	
223b97b1-7bd6-fb13-8b30-030df36ef382	2021-05-20 14:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:51:14.853+03	2021-05-20 14:51:14.861+03	
bff38a66-fc35-adcc-328a-d3c980036f70	2021-05-20 12:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:35:03.852+03	2021-05-20 12:35:03.859+03	
3ca0b2cb-90c8-2862-a40b-cd9da41c4ce9	2021-05-20 12:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:35:23.853+03	2021-05-20 12:35:23.86+03	
e94ffc31-d451-5cd0-67dc-18cc02fa0288	2021-05-20 14:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:51:35.852+03	2021-05-20 14:51:35.859+03	
2c9c5199-8ffa-aead-f2c0-51852fc816fa	2021-05-20 12:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:35:43.853+03	2021-05-20 12:35:43.861+03	
e9ac43d7-8478-0ea8-ebaf-46653d529e5d	2021-05-20 12:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:36:04.853+03	2021-05-20 12:36:04.859+03	
23954c43-1fbe-c523-fe4f-1de444814cd5	2021-05-20 14:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:51:45.852+03	2021-05-20 14:51:45.859+03	
f7363e80-af72-9269-77bf-d72b569ef0e0	2021-05-20 12:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:36:25.852+03	2021-05-20 12:36:25.858+03	
4d35ebf2-a7d7-2637-5dad-a87d7f518366	2021-05-20 12:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:36:45.852+03	2021-05-20 12:36:45.858+03	
e7fa2b25-9428-e974-7446-748dda336c61	2021-05-20 14:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:52:05.852+03	2021-05-20 14:52:05.859+03	
c65e34b3-3353-09ef-0705-25048f47bdbb	2021-05-20 12:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:37:05.853+03	2021-05-20 12:37:05.862+03	
bddcd207-09ac-0e18-ae3d-1c31f3f5ce89	2021-05-20 12:37:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:37:26.853+03	2021-05-20 12:37:26.859+03	
dff2a714-4c62-6b54-5be2-ca7b49851db7	2021-05-20 14:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:52:15.853+03	2021-05-20 14:52:15.86+03	
d58cf69e-7b1f-1732-b575-ec38bd32e389	2021-05-20 12:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:37:47.853+03	2021-05-20 12:37:47.864+03	
72c677e3-142d-29b3-8106-ea124a831e14	2021-05-20 12:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:38:09.852+03	2021-05-20 12:38:09.859+03	
3bb07b3a-c2cb-cf5c-0a4a-6f202bdd46aa	2021-05-20 14:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:52:37.853+03	2021-05-20 14:52:37.86+03	
e93ebb0a-a345-ea97-7f05-e20a25c1e53a	2021-05-20 12:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:38:29.852+03	2021-05-20 12:38:29.858+03	
cca7d0a0-f7ff-94b8-8771-e79a6c0a5e40	2021-05-20 12:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:38:49.853+03	2021-05-20 12:38:49.864+03	
2bfa8875-f21c-569a-7d4c-d6e0edbe34c1	2021-05-20 14:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:52:58.852+03	2021-05-20 14:52:58.861+03	
3bfd6334-ea93-cd56-c002-f272c06cbe7c	2021-05-20 12:39:09.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:39:09.858+03	2021-05-20 12:39:09.865+03	
400a8b42-dc06-0716-f3b4-8d69c8c3eb8b	2021-05-20 12:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:39:30.853+03	2021-05-20 12:39:30.859+03	
66aba397-d3ac-25e8-e4e5-948d96a114cf	2021-05-20 14:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:53:19.853+03	2021-05-20 14:53:19.859+03	
7892f2c8-49df-e498-68a4-fa3b20092bab	2021-05-20 12:39:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:39:51.853+03	2021-05-20 12:39:51.86+03	
8d764642-ec36-5664-812f-33a2518beda0	2021-05-20 12:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:40:02.852+03	2021-05-20 12:40:02.863+03	
e87ec184-3803-d647-9f9a-b6075163789a	2021-05-20 14:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:53:39.853+03	2021-05-20 14:53:39.86+03	
8ae24083-21c4-0ed1-20b0-356235198385	2021-05-20 12:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:40:22.853+03	2021-05-20 12:40:22.859+03	
eccd9229-c4c4-5f47-2146-4b2a8fabe5ee	2021-05-20 12:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:40:43.852+03	2021-05-20 12:40:43.869+03	
9d114735-1c2b-d8dd-bbbd-bea6e30d9216	2021-05-20 14:54:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:54:01.853+03	2021-05-20 14:54:01.904+03	
414235c2-cb20-d8f3-f3fa-a5aade842d66	2021-05-20 12:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:41:03.853+03	2021-05-20 12:41:03.859+03	
ac494b06-bcb0-96d5-a567-e5d751cb9fca	2021-05-20 12:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:41:24.852+03	2021-05-20 12:41:24.885+03	
d5c96b8a-ed57-878e-52d4-2977877e6e91	2021-05-20 14:54:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:54:22.853+03	2021-05-20 14:54:22.859+03	
539e2154-10b1-e85f-529f-4a78601e52b6	2021-05-20 12:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:41:44.853+03	2021-05-20 12:41:44.862+03	
f96c61b0-40d8-dcb1-6b5b-286906806aff	2021-05-20 12:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:42:05.852+03	2021-05-20 12:42:05.864+03	
1312cfc3-a2cb-2c7c-eadd-57f14efc1112	2021-05-20 14:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:54:43.852+03	2021-05-20 14:54:43.864+03	
645c1da7-3def-f830-812a-005b83e2f90d	2021-05-20 12:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:42:25.852+03	2021-05-20 12:42:25.859+03	
f71d3f38-5acc-241e-8ff9-e68ba2eda8c9	2021-05-20 12:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:42:45.853+03	2021-05-20 12:42:45.862+03	
9e453ccf-ddf8-bcf4-2d92-5bb15f97cb9f	2021-05-20 14:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:54:53.852+03	2021-05-20 14:54:53.858+03	
af2b183d-523f-012b-3135-c55e6dd4573c	2021-05-20 12:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:43:06.852+03	2021-05-20 12:43:06.862+03	
7e2f51d8-fad0-6759-a618-05f21c86700c	2021-05-20 12:43:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:43:26.852+03	2021-05-20 12:43:26.86+03	
322bfcb0-cfa3-f3da-dea7-92da13000235	2021-05-20 14:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:55:14.853+03	2021-05-20 14:55:14.86+03	
d19e373b-f86a-839b-eded-6a6e4c11b43f	2021-05-20 12:43:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:43:46.853+03	2021-05-20 12:43:46.859+03	
b6ceca1e-387a-0de4-3737-eb0a5ed855c9	2021-05-20 12:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:44:07.853+03	2021-05-20 12:44:07.859+03	
adb2a7cf-0ec2-deeb-f5d9-5a29206d4fe3	2021-05-20 14:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:55:35.853+03	2021-05-20 14:55:35.861+03	
eee258e5-8c75-34b6-2ee1-c2ae7c6929a3	2021-05-20 12:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:44:27.853+03	2021-05-20 12:44:27.86+03	
5d1c65f7-0539-2eaf-0439-86b91087ad4d	2021-05-20 12:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:44:48.852+03	2021-05-20 12:44:48.86+03	
cfd54748-12e1-c680-92a9-f3e00fd5081f	2021-05-20 14:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:55:55.853+03	2021-05-20 14:55:55.859+03	
eca07144-a5ef-7887-93d3-4333f98e18fd	2021-05-20 12:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:45:08.852+03	2021-05-20 12:45:08.859+03	
154911ff-639a-090c-b44c-ea22af577148	2021-05-20 12:45:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:45:28.852+03	2021-05-20 12:45:28.859+03	
74deb1ce-f818-c49e-125c-d85c504a1989	2021-05-20 14:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:56:26.852+03	2021-05-20 14:56:26.86+03	
4e53754f-ce2a-2458-8125-69f2191d97d3	2021-05-20 14:56:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:56:46.852+03	2021-05-20 14:56:46.862+03	
eed1acc8-d780-3794-e4cd-67fa92629288	2021-05-20 14:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:57:07.852+03	2021-05-20 14:57:07.86+03	
c913eaf3-67ee-ea75-e669-a67132c0e32b	2021-05-20 14:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:57:38.853+03	2021-05-20 14:57:38.863+03	
834ca30d-0394-d24d-cb4b-a12f5f672d0e	2021-05-20 14:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:57:59.852+03	2021-05-20 14:57:59.861+03	
8835ab6c-2b83-37c9-5c4c-0de9904c28b9	2021-05-20 14:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:58:09.853+03	2021-05-20 14:58:09.86+03	
f9ba1530-f4da-a2fc-595f-993f54bf754c	2021-05-20 14:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:58:20.852+03	2021-05-20 14:58:20.861+03	
e9d34ba0-8007-520a-ea82-a02b07be9c97	2021-05-20 14:58:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:58:41.853+03	2021-05-20 14:58:41.859+03	
b35b30d6-698f-3f71-c270-3fa1cedbe28b	2021-05-20 14:59:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:59:01.854+03	2021-05-20 14:59:01.86+03	
469d712d-90a3-5661-7a2d-80912a943b04	2021-05-20 15:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:16:19.853+03	2021-05-20 15:16:19.86+03	
1100d539-dd8c-2aff-0264-156982504e59	2021-05-20 15:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:16:39.853+03	2021-05-20 15:16:39.859+03	
a88fef8c-6364-5e2f-24af-ba04bdd66fc2	2021-05-20 15:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:17:00.852+03	2021-05-20 15:17:00.859+03	
92e0c61b-7a58-0c5f-8517-cf92fe268abc	2021-05-20 12:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:34:32.853+03	2021-05-20 12:34:32.858+03	
2a772cdf-07dc-ff15-aee6-3fe5810427a2	2021-05-20 12:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:34:52.853+03	2021-05-20 12:34:52.859+03	
4e839af5-02aa-1322-e886-ec59d68e2e86	2021-05-20 12:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:35:13.852+03	2021-05-20 12:35:13.861+03	
f56dd4ff-e51a-dffb-6aba-6109bd769593	2021-05-20 12:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:35:33.853+03	2021-05-20 12:35:33.859+03	
7906aac5-bbc5-18a1-07e4-d518b6091141	2021-05-20 12:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:35:53.853+03	2021-05-20 12:35:53.86+03	
242d7ca4-dfcf-15ee-882e-c4d06cbc22ac	2021-05-20 12:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:36:15.852+03	2021-05-20 12:36:15.859+03	
ba1edf2b-b64b-6df0-3488-d92b23b735f1	2021-05-20 12:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:36:35.852+03	2021-05-20 12:36:35.859+03	
05567655-ef55-a47e-c33e-1815d1b2d152	2021-05-20 12:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:36:55.853+03	2021-05-20 12:36:55.861+03	
57d2464c-59a8-b50c-556e-713779a1150d	2021-05-20 12:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:37:15.853+03	2021-05-20 12:37:15.86+03	
ebfd8c65-7e96-363d-d1e1-40093f5f91f9	2021-05-20 12:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:37:37.853+03	2021-05-20 12:37:37.86+03	
4bb6445f-846d-af6c-22d1-2de208643bf6	2021-05-20 12:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:37:58.853+03	2021-05-20 12:37:58.861+03	
f70b5a57-10a4-ed42-3727-ff807ef77fdc	2021-05-20 12:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:38:19.852+03	2021-05-20 12:38:19.863+03	
9154aa05-60b8-8628-9a22-acfcade5429a	2021-05-20 12:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:38:39.853+03	2021-05-20 12:38:39.859+03	
29d5e53e-e03b-5cc1-8dd9-d21bc793f7ed	2021-05-20 12:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:38:59.853+03	2021-05-20 12:38:59.859+03	
a0724e27-5009-53f8-72c2-ba2b5709ad65	2021-05-20 12:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:39:20.852+03	2021-05-20 12:39:20.86+03	
fd9a3b9c-4121-4bf0-97ed-83f80fa565e0	2021-05-20 12:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:39:41.853+03	2021-05-20 12:39:41.865+03	
7edd3e17-f52c-4841-3a10-43c25d6df0df	2021-05-20 12:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 12:40:00.852+03	2021-05-20 12:40:00.857+03	ERROR
1b478425-35fb-4a67-dc0f-c40434726dcc	2021-05-20 12:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:40:12.853+03	2021-05-20 12:40:12.859+03	
26e9db92-aa30-36f0-9adc-b0ff8e213e11	2021-05-20 12:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:40:32.853+03	2021-05-20 12:40:32.859+03	
47c774b9-a20d-cc1c-2487-cee898324f2c	2021-05-20 12:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:40:53.853+03	2021-05-20 12:40:53.86+03	
b5ddbe58-2ceb-6828-6942-137e94b2caf7	2021-05-20 12:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:41:13.853+03	2021-05-20 12:41:13.861+03	
b0153d79-cf6d-2899-2440-8caaed4b91ab	2021-05-20 12:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:41:34.852+03	2021-05-20 12:41:34.859+03	
c3938b69-f09d-43b5-de1c-2c156c9b85a9	2021-05-20 12:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:41:55.852+03	2021-05-20 12:41:55.859+03	
86fbf751-7079-5d6d-ec72-8691cc3e18c0	2021-05-20 12:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:42:15.852+03	2021-05-20 12:42:15.864+03	
44b653cd-1f25-96b1-9465-bddf8c302b1d	2021-05-20 12:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:42:35.853+03	2021-05-20 12:42:35.863+03	
1b9c3431-4864-05e6-2a2d-7863705c29fd	2021-05-20 12:42:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:42:56.852+03	2021-05-20 12:42:56.86+03	
b3b77213-2f62-f35a-cf48-0b4e0d1588a3	2021-05-20 12:43:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:43:16.852+03	2021-05-20 12:43:16.862+03	
4bda1241-356f-5db9-ba5d-1d6d12ce2f5c	2021-05-20 12:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:43:36.853+03	2021-05-20 12:43:36.861+03	
8f3baddc-f756-b8ea-fce3-401528106179	2021-05-20 12:43:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:43:56.853+03	2021-05-20 12:43:56.859+03	
85e5d138-aa70-5eb0-2dce-0fe402afa4d3	2021-05-20 12:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:44:17.853+03	2021-05-20 12:44:17.862+03	
c94bc39c-3507-eb9e-a7cf-baa3d8f98ce2	2021-05-20 12:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:44:37.853+03	2021-05-20 12:44:37.861+03	
72ad708f-7fbd-6c3e-3e2d-f817dc1011f9	2021-05-20 12:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:44:58.852+03	2021-05-20 12:44:58.86+03	
1dc9dc0b-d8b7-b1df-6bc8-956840497385	2021-05-20 12:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:45:18.852+03	2021-05-20 12:45:18.859+03	
50aed61d-6927-2eee-1593-733bc96e998e	2021-05-20 12:45:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:45:38.853+03	2021-05-20 12:45:38.859+03	
4544e1ab-adfb-d341-f494-55e18df8d6ab	2021-05-20 12:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:45:48.853+03	2021-05-20 12:45:48.86+03	
05ca9728-d33e-7f76-14c0-941754ab2df1	2021-05-20 12:45:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:45:58.853+03	2021-05-20 12:45:58.868+03	
7f264f6d-e88f-f9c1-3dc9-a50ae43e5421	2021-05-20 12:46:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:46:08.853+03	2021-05-20 12:46:08.86+03	
60192f4b-9251-3730-1cf3-eea75b7e2d7f	2021-05-20 12:46:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:46:18.853+03	2021-05-20 12:46:18.859+03	
74559c68-64e5-1af8-e6d1-0a5a1512c00e	2021-05-20 12:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:46:29.852+03	2021-05-20 12:46:29.859+03	
c7246d43-64ad-fdd0-cc4f-dbe0bf9436bf	2021-05-20 12:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:46:39.853+03	2021-05-20 12:46:39.859+03	
b2a607ea-61df-cc9e-fad6-31481b7cf67f	2021-05-20 12:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:46:49.853+03	2021-05-20 12:46:49.86+03	
603b88be-37cf-e905-f0e7-abbe41ed983c	2021-05-20 12:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:46:59.853+03	2021-05-20 12:46:59.859+03	
210f655e-7fff-3667-8a09-80df56bfd31a	2021-05-20 12:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:47:09.853+03	2021-05-20 12:47:09.859+03	
0ce38b97-ab08-bd0f-0c6a-240fd33c1578	2021-05-20 12:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:47:20.852+03	2021-05-20 12:47:20.859+03	
59b57f86-6e1a-3230-53f0-393b7622bdce	2021-05-20 12:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:47:30.852+03	2021-05-20 12:47:30.859+03	
7010cbc7-ac91-55c1-6b04-1e8b24ca14a8	2021-05-20 12:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:47:40.853+03	2021-05-20 12:47:40.861+03	
b607026b-afb1-88c2-2945-29a9d2c0bb88	2021-05-20 12:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:47:50.853+03	2021-05-20 12:47:50.861+03	
56e7fc9f-31f3-22c2-2b25-7e31cc973925	2021-05-20 12:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:48:00.853+03	2021-05-20 12:48:00.86+03	
52952b29-8f07-900e-7551-85aeab08c186	2021-05-20 12:48:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:48:11.853+03	2021-05-20 12:48:11.911+03	
cacb179a-90bb-b1f2-fc6f-e2352bd1b162	2021-05-20 12:48:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:48:21.854+03	2021-05-20 12:48:21.861+03	
a1d771b4-1873-5a88-0fec-4acf75e439ff	2021-05-20 12:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:48:32.853+03	2021-05-20 12:48:32.859+03	
392f0d80-8ee0-3614-1816-e319ac89c086	2021-05-20 12:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:48:42.853+03	2021-05-20 12:48:42.859+03	
c4b8fbd3-a848-2fac-d430-c6ad8f36da09	2021-05-20 12:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:48:52.853+03	2021-05-20 12:48:52.86+03	
d74448f2-273c-f98e-69d0-84a6ceb55d1b	2021-05-20 12:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:49:03.852+03	2021-05-20 12:49:03.858+03	
8b32807b-74ce-d18e-c22a-35ca28c8c636	2021-05-20 12:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:49:13.852+03	2021-05-20 12:49:13.86+03	
5a7b027f-316f-abb5-9df0-bcb37cd29f7e	2021-05-20 12:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:49:23.853+03	2021-05-20 12:49:23.859+03	
b5e5ea85-3424-0d6d-6b9d-34718741f711	2021-05-20 12:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:49:33.853+03	2021-05-20 12:49:33.864+03	
c799214f-4265-6072-9462-09edf58db745	2021-05-20 12:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:49:44.853+03	2021-05-20 12:49:44.859+03	
b916cd2b-f7bb-8c90-b286-d566552c8776	2021-05-20 12:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:49:54.853+03	2021-05-20 12:49:54.86+03	
90384567-c27c-2ef8-6bcf-ee122b1cf63b	2021-05-20 12:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 12:50:00.852+03	2021-05-20 12:50:00.857+03	ERROR
d52b5c13-3148-430d-3bd4-69ea5a469a85	2021-05-20 12:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:50:04.853+03	2021-05-20 12:50:04.872+03	
f20de431-e79e-df6e-d292-a4372e46874b	2021-05-20 12:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:50:14.853+03	2021-05-20 12:50:14.86+03	
4017aae9-308e-bec2-307e-bd0d6c6b862c	2021-05-20 12:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:50:24.853+03	2021-05-20 12:50:24.86+03	
110849fd-d5f6-a951-1bd2-98f42788d157	2021-05-20 12:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:50:34.853+03	2021-05-20 12:50:34.859+03	
1766ab65-2f6f-299c-bbc2-b9375392ed80	2021-05-20 12:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:50:55.853+03	2021-05-20 12:50:55.86+03	
4abaf903-230a-07dc-1022-6535683d03cb	2021-05-20 12:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:51:17.852+03	2021-05-20 12:51:17.861+03	
7975c308-ab13-908a-43df-383bb0d4f4da	2021-05-20 12:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:51:37.853+03	2021-05-20 12:51:37.859+03	
6951b6c5-edeb-4bc0-6c61-83d3ac0ebc45	2021-05-20 12:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:51:57.853+03	2021-05-20 12:51:57.859+03	
2d669e1e-ad90-b69f-6a56-6913dc3a86de	2021-05-20 12:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:52:18.853+03	2021-05-20 12:52:18.859+03	
e48b509c-bf86-f090-e809-3e2101fad435	2021-05-20 12:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:52:38.853+03	2021-05-20 12:52:38.861+03	
745148a0-fddd-d0f5-5553-852ce1f0e9c7	2021-05-20 12:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:52:59.853+03	2021-05-20 12:52:59.859+03	
5bd1481d-303f-a776-5d5d-268cc288b7ab	2021-05-20 12:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:53:19.853+03	2021-05-20 12:53:19.861+03	
ccd8ac93-6265-27e6-0574-23914fd30e61	2021-05-20 12:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:53:40.853+03	2021-05-20 12:53:40.859+03	
aa5cae71-ead1-c953-d7b8-83294508473b	2021-05-20 12:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:54:02.852+03	2021-05-20 12:54:02.861+03	
e6b0c9bf-abe3-0bf8-0693-b667123aeb22	2021-05-20 12:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:54:23.853+03	2021-05-20 12:54:23.877+03	
c2f4dfa0-647b-e28f-af2c-9f3dca610530	2021-05-20 12:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:54:44.853+03	2021-05-20 12:54:44.859+03	
300170c4-15ae-f17e-9e9b-26db4e513564	2021-05-20 12:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:55:04.853+03	2021-05-20 12:55:04.859+03	
5ab42f51-b537-f327-9370-4f6e4e881e81	2021-05-20 12:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:55:24.853+03	2021-05-20 12:55:24.86+03	
0d348ec2-a246-8919-3484-0921dc1498e9	2021-05-20 12:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:55:44.853+03	2021-05-20 12:55:44.86+03	
8fa1508f-e1d8-ac04-5fe9-fd76e2240998	2021-05-20 12:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:56:04.853+03	2021-05-20 12:56:04.859+03	
528f0aec-a4d1-4c4b-2273-0793c2f90279	2021-05-20 12:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:56:24.853+03	2021-05-20 12:56:24.863+03	
5ffa3804-fd44-d8aa-446f-c23b83b0ac9a	2021-05-20 12:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:56:45.853+03	2021-05-20 12:56:45.859+03	
fb49e516-cd45-37ee-9fbe-eb798cfc31a0	2021-05-20 12:57:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:57:06.854+03	2021-05-20 12:57:06.863+03	
417e5ef2-d0fd-e35f-bb8b-7a1615566dc7	2021-05-20 12:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:57:27.853+03	2021-05-20 12:57:27.859+03	
578d7190-386c-73c6-3766-f4db6838a564	2021-05-20 12:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:57:48.853+03	2021-05-20 12:57:48.86+03	
58aee00e-3298-f078-ebec-1a0af628c75f	2021-05-20 12:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:58:09.853+03	2021-05-20 12:58:09.859+03	
b8339293-64ca-189c-5954-a4c8bbc475aa	2021-05-20 12:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:58:29.853+03	2021-05-20 12:58:29.86+03	
f659869d-2a9b-206f-960f-b3efb323a1d3	2021-05-20 12:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:58:50.853+03	2021-05-20 12:58:50.86+03	
4a664fcc-7219-d967-30f0-9c3a1f64f27e	2021-05-20 12:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:59:10.853+03	2021-05-20 12:59:10.861+03	
d1a20c5a-fd6a-4dc5-c0d2-97f9ad854043	2021-05-20 12:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:59:30.853+03	2021-05-20 12:59:30.859+03	
8cbad518-93c7-13eb-5527-fd88cd874592	2021-05-20 12:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:59:52.852+03	2021-05-20 12:59:52.859+03	
c630f932-3759-3732-d401-efb8400a2266	2021-05-20 13:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:00:02.853+03	2021-05-20 13:00:02.87+03	
2b1bcf2d-cb35-40bb-13ee-7f34c78e53cc	2021-05-20 13:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:00:12.853+03	2021-05-20 13:00:12.861+03	
e307caf7-a5ac-b969-e583-4eb94e742698	2021-05-20 13:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:00:33.853+03	2021-05-20 13:00:33.861+03	
d902f071-7049-f744-4d38-4de0bbc6d536	2021-05-20 13:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:00:53.853+03	2021-05-20 13:00:53.859+03	
74608a71-04a8-8f0d-06ca-96eb7dad81f0	2021-05-20 13:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:01:14.853+03	2021-05-20 13:01:14.861+03	
7bba46f8-9645-4056-9f45-15984b363d39	2021-05-20 13:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:01:35.853+03	2021-05-20 13:01:35.86+03	
a1c40c07-9375-5894-722c-d4b89510523b	2021-05-20 13:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:01:55.853+03	2021-05-20 13:01:55.859+03	
0dec09f9-a57d-bf98-5c40-492561678ba6	2021-05-20 13:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:02:15.853+03	2021-05-20 13:02:15.86+03	
2c5431fd-f0d5-ae2e-631b-a305454dfbc9	2021-05-20 13:02:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:02:36.852+03	2021-05-20 13:02:36.859+03	
aaa97aac-13fc-e3a0-8f8d-b4a402303c0e	2021-05-20 13:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:03:07.853+03	2021-05-20 13:03:07.859+03	
22490430-858b-47e3-c69f-ad8ab7415523	2021-05-20 13:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:03:28.852+03	2021-05-20 13:03:28.863+03	
6748930f-58e4-8a8a-c474-b4262c63dccc	2021-05-20 13:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:03:48.852+03	2021-05-20 13:03:48.859+03	
28e19717-8d72-649a-ce98-d11e40ee75d5	2021-05-20 13:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:04:09.852+03	2021-05-20 13:04:09.86+03	
5f4faa06-a11a-fb1b-c94c-e47faa392af8	2021-05-20 13:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:04:29.852+03	2021-05-20 13:04:29.859+03	
19c5d7f5-c6c1-3218-532e-62ce78a65026	2021-05-20 13:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:04:49.852+03	2021-05-20 13:04:49.859+03	
4a9f030a-5bc1-7144-c016-6e635f6d0f1f	2021-05-20 13:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:05:10.852+03	2021-05-20 13:05:10.862+03	
adfb30fe-28d6-3819-c3d9-d605173c57d7	2021-05-20 13:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:05:30.852+03	2021-05-20 13:05:30.871+03	
f1f7c983-9211-365f-a4b3-f1e2cca0a87b	2021-05-20 13:05:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:05:51.853+03	2021-05-20 13:05:51.866+03	
c78ee69b-a781-1cc7-6928-24617961731b	2021-05-20 13:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:06:12.852+03	2021-05-20 13:06:12.859+03	
d1b84ebf-a885-257a-26cb-2b9bd9e30bfa	2021-05-20 13:06:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:06:32.853+03	2021-05-20 13:06:32.872+03	
a563f088-aa55-6665-835c-1d416919867e	2021-05-20 13:06:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:06:52.853+03	2021-05-20 13:06:52.859+03	
f14722f8-f685-1b43-ae02-8481e34ae582	2021-05-20 13:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:07:13.852+03	2021-05-20 13:07:13.859+03	
660f2594-9045-790c-15ce-67c6b20b47d5	2021-05-20 13:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:07:33.853+03	2021-05-20 13:07:33.86+03	
e2f229c0-384e-b74e-bf4d-3003562c2f86	2021-05-20 13:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:07:54.852+03	2021-05-20 13:07:54.859+03	
c17b88ec-9085-83d6-f37d-33caaa10c559	2021-05-20 13:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:08:14.852+03	2021-05-20 13:08:14.87+03	
36cc2785-63ab-facd-d8a0-d83a6a9eb0c9	2021-05-20 13:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:08:34.853+03	2021-05-20 13:08:34.861+03	
d206794a-a69a-63d2-e0b3-f6c255ef6f82	2021-05-20 13:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:08:55.853+03	2021-05-20 13:08:55.859+03	
5ee4c6b7-144a-09b1-e70f-65a684053954	2021-05-20 13:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:09:15.853+03	2021-05-20 13:09:15.859+03	
7c8fcbbc-769e-b90b-dfe0-369b7e21413a	2021-05-20 13:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:09:37.852+03	2021-05-20 13:09:37.859+03	
a10f6774-b446-b7be-12ca-a8b7b1ed865b	2021-05-20 13:09:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:09:57.852+03	2021-05-20 13:09:57.858+03	
eb8fc96c-9638-6746-324f-1a89777770de	2021-05-20 13:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:10:07.853+03	2021-05-20 13:10:07.859+03	
b444c358-6c28-f9fe-1a56-b1d2373e3c6b	2021-05-20 13:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:10:27.853+03	2021-05-20 13:10:27.861+03	
3f006f78-a731-ac27-62ec-5c59883c6875	2021-05-20 13:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:10:48.853+03	2021-05-20 13:10:48.859+03	
a37e8127-06b9-2f01-04c4-6bd0c1f4a7e9	2021-05-20 13:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:11:08.853+03	2021-05-20 13:11:08.859+03	
77373448-5a67-f956-734d-283a4db6c71c	2021-05-20 13:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:11:28.853+03	2021-05-20 13:11:28.865+03	
5a941b46-bd67-46ce-72f0-1c47bb9a4499	2021-05-20 12:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:50:44.853+03	2021-05-20 12:50:44.865+03	
b3010a36-b447-ef01-7406-17b48276fba2	2021-05-20 12:51:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:51:06.853+03	2021-05-20 12:51:06.862+03	
038332d4-a5d7-6401-c778-06e2f9d9419a	2021-05-20 12:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:51:27.853+03	2021-05-20 12:51:27.86+03	
681c6b3c-8a9c-a4c9-aeeb-54ba51a10f9f	2021-05-20 12:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:51:47.853+03	2021-05-20 12:51:47.86+03	
cea9b3cd-e299-c1d4-c033-f364a56cbc86	2021-05-20 12:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:52:08.852+03	2021-05-20 12:52:08.859+03	
ac1e8898-c08b-ba1b-fbb3-32afe313466a	2021-05-20 12:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:52:28.853+03	2021-05-20 12:52:28.862+03	
3c99777e-3f0c-a9b8-5dc3-f6a9f1ba1cca	2021-05-20 12:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:52:49.853+03	2021-05-20 12:52:49.859+03	
536ceac2-58ef-a280-65a3-6906cf45cf27	2021-05-20 12:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:53:09.853+03	2021-05-20 12:53:09.859+03	
626696b7-b3f1-79ae-c362-b86be12d4e54	2021-05-20 12:53:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:53:29.853+03	2021-05-20 12:53:29.86+03	
f8e7dd17-c6ee-c256-da1b-79e686c6dcad	2021-05-20 12:53:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:53:51.854+03	2021-05-20 12:53:52.816+03	
c85f02dd-a0bc-b489-fd6f-9d1d59fbbda1	2021-05-20 12:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:54:12.853+03	2021-05-20 12:54:12.861+03	
f16d6594-707b-7d59-d051-2ba2fe409c70	2021-05-20 12:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:54:34.852+03	2021-05-20 12:54:34.858+03	
eb99dd91-17bd-8407-53e0-2688fa186199	2021-05-20 12:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:54:54.853+03	2021-05-20 12:54:54.859+03	
70eb6140-c0f9-be94-44a8-f194be9a560c	2021-05-20 12:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:55:14.853+03	2021-05-20 12:55:14.859+03	
df6dc3ee-ca43-5958-dd42-b8b39d7827df	2021-05-20 12:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:55:34.853+03	2021-05-20 12:55:34.859+03	
6e85f06d-605d-1cfc-a754-378ca73d6d46	2021-05-20 12:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:55:54.853+03	2021-05-20 12:55:54.861+03	
f8ce7220-1c1a-2a34-a6c2-b672cf8a979c	2021-05-20 12:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:56:14.853+03	2021-05-20 12:56:14.86+03	
1b85da75-a49c-1720-9cf0-26b75a921748	2021-05-20 12:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:56:34.853+03	2021-05-20 12:56:34.86+03	
60451a16-7e9e-c1a0-bb13-8d5ce355a5ea	2021-05-20 12:56:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:56:56.852+03	2021-05-20 12:56:56.859+03	
b73deab3-02d7-163a-40bb-c945a06123e3	2021-05-20 12:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:57:17.852+03	2021-05-20 12:57:17.859+03	
11e338a0-b950-fa74-f534-7dece3925885	2021-05-20 12:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:57:38.853+03	2021-05-20 12:57:38.86+03	
823d5936-99c4-9386-23b3-705176a67e1d	2021-05-20 12:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:57:59.852+03	2021-05-20 12:57:59.86+03	
1f56174a-51a4-9e56-e927-de0b30b97009	2021-05-20 12:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:58:19.853+03	2021-05-20 12:58:19.86+03	
08b70ddf-026a-02e5-4d2b-51187bd8073d	2021-05-20 12:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:58:40.853+03	2021-05-20 12:58:40.859+03	
d892129a-c9c9-e412-a552-9c862cbc2775	2021-05-20 12:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:59:00.853+03	2021-05-20 12:59:00.86+03	
da4a192e-31f2-e535-49ab-540e61424c2b	2021-05-20 12:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:59:20.853+03	2021-05-20 12:59:20.86+03	
4515d08a-2be9-4f1b-8da9-b348952863c5	2021-05-20 12:59:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 12:59:41.854+03	2021-05-20 12:59:41.861+03	
253dbfc1-660f-27cb-1535-b7290d7f6624	2021-05-20 13:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 13:00:00.852+03	2021-05-20 13:00:00.857+03	ERROR
b40ccc39-eadb-af62-4e4b-8be346d44d94	2021-05-20 13:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:00:22.853+03	2021-05-20 13:00:22.861+03	
6cf60df6-016c-cf25-ea45-f1efdc6b96ef	2021-05-20 13:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:00:43.853+03	2021-05-20 13:00:43.859+03	
673a1980-9be3-29d3-f5a4-a6395cc0e2d5	2021-05-20 13:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:01:04.853+03	2021-05-20 13:01:04.859+03	
311e5026-a002-81f4-bc99-249f64f35c62	2021-05-20 13:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:01:25.853+03	2021-05-20 13:01:25.862+03	
9dd6c92d-af27-f062-9b44-0a09dcbfea75	2021-05-20 13:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:01:45.853+03	2021-05-20 13:01:45.86+03	
87621632-0d73-33e6-429d-3ddc4da05425	2021-05-20 13:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:02:05.853+03	2021-05-20 13:02:05.86+03	
5cce76d2-bd68-67ac-ec44-10c500709268	2021-05-20 13:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:02:26.852+03	2021-05-20 13:02:26.859+03	
0bd1b2e0-3016-8d55-925a-7bb330bec2d6	2021-05-20 13:02:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:02:46.852+03	2021-05-20 13:02:46.859+03	
fe79476a-150a-06c4-0bfd-39cf26729032	2021-05-20 13:02:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:02:56.853+03	2021-05-20 13:02:56.86+03	
ba9ab3c2-623b-42dd-1581-e278c1db9a8b	2021-05-20 13:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:03:18.852+03	2021-05-20 13:03:18.86+03	
e77bfa0f-c248-5e0b-841a-d138b1300d29	2021-05-20 13:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:03:38.852+03	2021-05-20 13:03:38.859+03	
943b5b2e-232f-87e3-3cdd-bfa4d8a18c49	2021-05-20 13:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:03:58.853+03	2021-05-20 13:03:58.86+03	
0b8304c6-71b2-3ee7-3efa-82cf772b836a	2021-05-20 13:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:04:19.852+03	2021-05-20 13:04:19.858+03	
a67f7122-b8f5-7166-cdb7-c9a199aabf30	2021-05-20 13:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:04:39.852+03	2021-05-20 13:04:39.859+03	
176e196c-c01b-bd4f-161b-dbfb1e40a89a	2021-05-20 13:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:04:59.853+03	2021-05-20 13:04:59.86+03	
a71c4bae-0320-a125-7d68-ec01dbbdae6c	2021-05-20 13:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:05:20.852+03	2021-05-20 13:05:20.86+03	
890af938-927e-70bd-f2fb-9701205ab489	2021-05-20 13:05:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:05:40.853+03	2021-05-20 13:05:40.859+03	
8e90c205-6d68-2688-cf02-5275a9684a03	2021-05-20 13:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:06:02.852+03	2021-05-20 13:06:02.86+03	
b9762cd9-98f3-c804-d793-6c0ae1039e4d	2021-05-20 13:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:06:22.853+03	2021-05-20 13:06:22.859+03	
ea343a65-5973-1e9f-1ae6-cf1dcf599e24	2021-05-20 13:06:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:06:42.853+03	2021-05-20 13:06:42.87+03	
4c2a413f-f553-fa25-84d8-03ff0f90b007	2021-05-20 13:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:07:03.852+03	2021-05-20 13:07:03.86+03	
6c96f0cb-2bc8-68b9-a9d9-f1912be2492c	2021-05-20 13:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:07:23.853+03	2021-05-20 13:07:23.861+03	
6ed76ef1-d682-1ccb-4457-a90df8c754b7	2021-05-20 13:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:07:43.853+03	2021-05-20 13:07:43.86+03	
02d15a1c-a10f-f8bc-8ce1-fbedb885aba0	2021-05-20 13:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:08:04.852+03	2021-05-20 13:08:04.868+03	
7a98dff7-eb51-03eb-1df2-893b36514b6e	2021-05-20 13:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:08:24.853+03	2021-05-20 13:08:24.862+03	
091ca18d-8539-072f-caea-ebdbe56283f8	2021-05-20 13:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:08:44.853+03	2021-05-20 13:08:44.859+03	
9e7b073c-fe26-f88a-3f71-cd07ea49d1f5	2021-05-20 13:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:09:05.853+03	2021-05-20 13:09:05.86+03	
fa63119b-f2e9-7590-677d-2c2a1526409b	2021-05-20 13:09:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:09:26.853+03	2021-05-20 13:09:26.86+03	
1068773a-128d-d9a5-d6fa-f4d1b79587c1	2021-05-20 13:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:09:47.852+03	2021-05-20 13:09:47.859+03	
b0bad8f0-8aa1-a626-4e54-fe865b7fbb67	2021-05-20 13:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 13:10:00.853+03	2021-05-20 13:10:00.858+03	ERROR
530f2c71-89ce-2b04-8af9-60e924ff20ba	2021-05-20 13:10:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:10:17.853+03	2021-05-20 13:10:17.861+03	
994f36c3-8d44-d93b-b53a-58ea439f9116	2021-05-20 13:10:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:10:37.853+03	2021-05-20 13:10:37.86+03	
f0b5bc04-7bee-3922-8fa6-9340efbe23b6	2021-05-20 13:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:10:58.853+03	2021-05-20 13:10:59.184+03	
7dc41503-aedc-3eea-1a6e-e1e57e297288	2021-05-20 13:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:11:18.853+03	2021-05-20 13:11:18.861+03	
f6645781-bf55-4045-21bd-c845d3710a72	2021-05-20 13:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:11:39.852+03	2021-05-20 13:11:39.861+03	
0c657e58-bde8-14ab-ca1c-e7dc8fdabb3c	2021-05-20 13:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:11:49.852+03	2021-05-20 13:11:49.859+03	
ec8577f2-40f9-02ee-63b4-2f522f8d6b45	2021-05-20 13:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:12:09.852+03	2021-05-20 13:12:09.859+03	
bd521ec0-fa0d-0500-1eb3-0f230efaff38	2021-05-20 13:12:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:12:29.853+03	2021-05-20 13:12:29.86+03	
4b50056a-9582-bb84-fcce-70a5d4a6ac8f	2021-05-20 13:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:12:51.853+03	2021-05-20 13:12:51.86+03	
98b559b0-a2e2-7c1d-a706-417c88c5018c	2021-05-20 13:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:13:12.852+03	2021-05-20 13:13:12.859+03	
e2cb1820-c4c0-b91b-e37c-fc548cc5cd10	2021-05-20 13:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:13:32.852+03	2021-05-20 13:13:32.858+03	
8f1ed7ce-d1d7-268e-5e94-c0c75aca4f1d	2021-05-20 13:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:13:52.852+03	2021-05-20 13:13:52.859+03	
24661a8f-05a8-22fe-44df-e31417ae1d2a	2021-05-20 13:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:14:13.853+03	2021-05-20 13:14:13.861+03	
c0a7c54c-9325-51a7-f038-cf568a9b1123	2021-05-20 13:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:14:34.852+03	2021-05-20 13:14:34.859+03	
a91605be-ffcb-c4de-4a47-de7bfcb2997c	2021-05-20 13:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:14:54.853+03	2021-05-20 13:14:54.859+03	
82180b61-11b1-faca-2523-9add64cfa079	2021-05-20 13:15:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:15:14.853+03	2021-05-20 13:15:14.861+03	
f3dfc748-336d-9bab-496f-60c15c7d0a34	2021-05-20 13:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:15:35.853+03	2021-05-20 13:15:35.866+03	
f1048aff-6ddc-4413-78a3-3c5bcf7a4906	2021-05-20 13:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:15:55.853+03	2021-05-20 13:15:55.859+03	
c9835643-9a9d-9761-02d9-ea91ac27cdd9	2021-05-20 13:16:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:16:16.854+03	2021-05-20 13:16:16.86+03	
c43d7e8f-7de2-365e-d321-7e99e9ffc75a	2021-05-20 13:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:16:37.853+03	2021-05-20 13:16:37.861+03	
e0501b1a-1342-971e-69ee-c52d71b74858	2021-05-20 13:16:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:16:58.853+03	2021-05-20 13:16:58.874+03	
40e0e6d9-a561-1f9f-b84a-524b059e254d	2021-05-20 13:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:17:18.853+03	2021-05-20 13:17:18.862+03	
a2ba5635-ee27-cfa1-457a-e19be5d8cc43	2021-05-20 13:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:17:39.852+03	2021-05-20 13:17:39.86+03	
52bc8895-20ee-ca09-137d-cdd1f5448bf4	2021-05-20 13:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:17:59.853+03	2021-05-20 13:17:59.86+03	
be06fa37-6d06-be49-97a5-b6f0b779af3e	2021-05-20 13:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:18:20.852+03	2021-05-20 13:18:20.903+03	
5a406e83-2717-3b30-b103-36e98338cf78	2021-05-20 13:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:19:02.852+03	2021-05-20 13:19:02.861+03	
90121695-0cd5-efcd-6f45-8e31549d03fe	2021-05-20 13:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:19:22.853+03	2021-05-20 13:19:22.872+03	
f147434e-7932-d749-51cb-173b37cf02b7	2021-05-20 13:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:19:43.853+03	2021-05-20 13:19:43.867+03	
e984dbe2-bd2f-df30-9e19-889e0e531985	2021-05-20 13:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 13:20:00.852+03	2021-05-20 13:20:00.857+03	ERROR
d80e5063-f094-1894-a09b-cfbc9c91dfbc	2021-05-20 13:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:20:13.853+03	2021-05-20 13:20:13.859+03	
2f9a999f-8eb8-586f-e79a-d0937a20592b	2021-05-20 13:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:20:33.853+03	2021-05-20 13:20:33.869+03	
e6d9050d-03c3-3b4c-94d7-31a9937f9e10	2021-05-20 13:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:20:54.852+03	2021-05-20 13:20:54.861+03	
e9c5fb4f-13d4-9c8c-c578-38f4289f8bd0	2021-05-20 13:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:21:14.853+03	2021-05-20 13:21:14.859+03	
e9b34e56-0a84-64c1-99af-49d124169925	2021-05-20 13:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:21:34.853+03	2021-05-20 13:21:34.86+03	
caffe6ab-a360-eab9-6c62-9e678553083e	2021-05-20 13:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:21:54.853+03	2021-05-20 13:21:54.859+03	
0d229592-5e38-90f5-18e9-4aa85bd344cb	2021-05-20 13:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:22:24.853+03	2021-05-20 13:22:24.859+03	
71fc988a-e253-33a1-6300-4763b17240fb	2021-05-20 13:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:22:44.853+03	2021-05-20 13:22:44.861+03	
260629b1-63d0-2c57-33cb-94c0228e5a5e	2021-05-20 13:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:23:05.853+03	2021-05-20 13:23:05.861+03	
b2abe5b9-d0fb-a7c5-f50c-8f1980e35860	2021-05-20 13:23:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:23:26.852+03	2021-05-20 13:23:26.861+03	
6a609e6d-aa33-e404-1c9a-465e2f9a1dfb	2021-05-20 13:23:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:23:46.852+03	2021-05-20 13:23:46.861+03	
097077af-670f-a54f-2950-32cc34da8e59	2021-05-20 13:24:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:24:06.852+03	2021-05-20 13:24:06.859+03	
77141fde-91c2-5a64-16ed-5e8e3aa81a39	2021-05-20 13:24:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:24:26.854+03	2021-05-20 13:24:26.86+03	
3b11a2e0-5946-54d5-b4d5-7bbf6d18079e	2021-05-20 13:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:24:47.853+03	2021-05-20 13:24:47.862+03	
682f7b06-4775-9c9c-5738-9dc3add5b623	2021-05-20 13:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:25:09.852+03	2021-05-20 13:25:09.86+03	
136ca11e-e688-1baf-57d8-32a8e3e71d9c	2021-05-20 13:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:25:30.853+03	2021-05-20 13:25:30.861+03	
7e951f59-e1ec-2593-d867-b617063db481	2021-05-20 13:25:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:25:51.853+03	2021-05-20 13:25:51.861+03	
6b9385b1-56c9-668c-22f1-1c6d88cf3f33	2021-05-20 13:26:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:26:11.854+03	2021-05-20 13:26:11.861+03	
d1f85944-06af-cc44-c788-783448233f43	2021-05-20 13:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:26:33.853+03	2021-05-20 13:26:33.86+03	
1dc5bb28-b0c1-b444-c9d7-e86d82c6141c	2021-05-20 13:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:26:54.852+03	2021-05-20 13:26:54.86+03	
47236e7f-8f27-a9e1-5d89-9afd0909ac5c	2021-05-20 13:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:27:14.853+03	2021-05-20 13:27:14.859+03	
c885b6ca-d57c-3767-3372-cae3346fd8ba	2021-05-20 13:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:27:35.853+03	2021-05-20 13:27:35.861+03	
e1607545-5f8a-ec4a-d2ad-4af4ff658148	2021-05-20 13:27:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:27:56.853+03	2021-05-20 13:27:56.86+03	
eb37e485-a425-e5d0-96bc-9ad30f2f31df	2021-05-20 13:28:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:28:16.854+03	2021-05-20 13:28:16.861+03	
f92cf533-02f7-dcef-b012-5f9d89796cc0	2021-05-20 13:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:28:37.853+03	2021-05-20 13:28:37.861+03	
a232709f-24b5-0c8f-7b5a-cf0c2b18f6b2	2021-05-20 13:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:28:58.853+03	2021-05-20 13:28:58.859+03	
418995dd-4719-8bb7-a14a-7cf1f099ab6b	2021-05-20 13:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:29:19.853+03	2021-05-20 13:29:19.866+03	
22215498-8f3d-934e-9c67-9b35e5bb0505	2021-05-20 13:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:30:10.853+03	2021-05-20 13:30:10.86+03	
d9ce074f-9caf-6ee0-95f4-41f7d9b2b885	2021-05-20 13:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:30:40.853+03	2021-05-20 13:30:40.86+03	
05da58f3-6c0f-56b4-b8dd-6f36c1ca8738	2021-05-20 13:31:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:31:01.852+03	2021-05-20 13:31:01.886+03	
6a704c89-7cf9-6211-3322-b54fe175e3d2	2021-05-20 13:31:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:31:21.854+03	2021-05-20 13:31:21.861+03	
28148726-c02a-eef0-4078-f783dbb3226c	2021-05-20 13:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:31:42.853+03	2021-05-20 13:31:42.859+03	
6851a967-dd26-cb5b-bcc5-fe17d46f0124	2021-05-20 13:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:32:24.852+03	2021-05-20 13:32:24.86+03	
e3b3f3a8-96c0-eb9d-87e2-eafad137e36f	2021-05-20 13:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:32:44.853+03	2021-05-20 13:32:44.859+03	
bb81da3b-b7e5-05f6-b7ac-337768649747	2021-05-20 13:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:33:05.853+03	2021-05-20 13:33:05.86+03	
7e72a83f-008e-8ddd-2956-7c34f5d16529	2021-05-20 13:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:33:27.853+03	2021-05-20 13:33:27.859+03	
aa22f716-b0a7-69e1-358d-18e3d08cd1f8	2021-05-20 13:33:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:33:48.852+03	2021-05-20 13:33:48.859+03	
1b02441f-56d6-1e8b-0a73-8609ca764637	2021-05-20 13:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:34:19.853+03	2021-05-20 13:34:19.859+03	
7ce00bb7-b44e-a264-c82d-e24cfa6a3089	2021-05-20 13:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:34:40.852+03	2021-05-20 13:34:40.86+03	
b0e1065d-32d8-382f-772e-46a2b2edf158	2021-05-20 13:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:11:59.852+03	2021-05-20 13:11:59.859+03	
3cb0b39b-82d2-b8e7-777a-ce69d567abda	2021-05-20 13:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:12:19.852+03	2021-05-20 13:12:19.859+03	
c152f04e-23ed-54d2-22d3-e079a66b8bc1	2021-05-20 13:12:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:12:40.853+03	2021-05-20 13:12:40.862+03	
081db236-f3de-b1a7-9a65-4480895a1be1	2021-05-20 13:13:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:13:01.853+03	2021-05-20 13:13:01.86+03	
a2b3ee5d-452f-db23-a7b4-12f837209f62	2021-05-20 13:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:13:22.852+03	2021-05-20 13:13:22.859+03	
95094ce0-655c-8423-7976-6aa29f684142	2021-05-20 13:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:13:42.852+03	2021-05-20 13:13:42.859+03	
c0dbe873-a43f-3275-9b6a-8d3cb9e95722	2021-05-20 13:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:14:02.853+03	2021-05-20 13:14:02.859+03	
1135bfb8-0fca-adda-b37f-46d4876c572d	2021-05-20 13:14:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:14:23.853+03	2021-05-20 13:14:23.864+03	
2656d678-29db-24a3-458a-c0d259d1f8ce	2021-05-20 13:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:14:44.852+03	2021-05-20 13:14:44.86+03	
7172459b-d1f0-b008-b1ec-35f95a7caf04	2021-05-20 13:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:15:04.853+03	2021-05-20 13:15:04.859+03	
f58f0c42-c153-415d-8047-5c19927f9ce5	2021-05-20 13:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:15:24.853+03	2021-05-20 13:15:24.865+03	
6e59d6c1-0d62-3dac-db7f-04c964877124	2021-05-20 13:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:15:45.853+03	2021-05-20 13:15:45.859+03	
74d5af9f-243e-ad54-9b1d-089e17690025	2021-05-20 13:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:16:06.852+03	2021-05-20 13:16:06.858+03	
510dc782-85fc-3c40-0202-ce9dedc138ac	2021-05-20 13:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:16:27.853+03	2021-05-20 13:16:27.861+03	
f2c4e38a-674d-8e7c-2741-2623178daeb2	2021-05-20 13:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:16:48.853+03	2021-05-20 13:16:48.861+03	
d9afc44f-aad1-1eb0-3d3e-97cb012bf7b8	2021-05-20 13:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:17:08.853+03	2021-05-20 13:17:08.873+03	
2147b0dc-4d5c-d1f4-c91e-017c90eee24a	2021-05-20 13:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:17:28.853+03	2021-05-20 13:17:28.864+03	
6cfa590d-2528-3c3c-5a1e-592ecdd991ca	2021-05-20 13:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:17:49.853+03	2021-05-20 13:17:49.86+03	
05f0b3a0-5cd9-58fe-4873-2ba1ffbe4bb6	2021-05-20 13:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:18:10.852+03	2021-05-20 13:18:10.859+03	
c90f85b9-8ae9-53e0-68f1-bc9d834eec08	2021-05-20 13:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:18:30.853+03	2021-05-20 13:18:30.86+03	
783e1955-6cf3-e8cb-5982-84f38fdb0802	2021-05-20 13:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:18:41.852+03	2021-05-20 13:18:41.859+03	
df9088be-3fe5-4a16-8472-2cf8e678657f	2021-05-20 13:18:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:18:51.853+03	2021-05-20 13:18:51.86+03	
3b1677ab-3dbd-e49a-0220-fe4859211a83	2021-05-20 13:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:19:12.852+03	2021-05-20 13:19:12.86+03	
84009a71-f5d6-0818-506c-0f328f619591	2021-05-20 13:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:19:32.853+03	2021-05-20 13:19:32.86+03	
f0bb9036-cd42-cd17-0825-da2d2386c440	2021-05-20 13:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:19:53.853+03	2021-05-20 13:19:53.864+03	
3017cce9-9dae-3273-457e-3f097eb32e2a	2021-05-20 13:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:20:03.853+03	2021-05-20 13:20:03.861+03	
3d968984-14fb-8e5d-8a4c-b83a45782833	2021-05-20 13:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:20:23.853+03	2021-05-20 13:20:23.861+03	
90c0ea3e-46ea-be90-b8f5-d83c70331598	2021-05-20 13:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:20:43.853+03	2021-05-20 13:20:43.861+03	
22e1b4f3-bd0e-970a-8e2a-e547360b49f3	2021-05-20 13:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:21:04.853+03	2021-05-20 13:21:04.86+03	
7864471e-1ba1-ac22-3921-f49c7ad1296b	2021-05-20 13:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:21:24.853+03	2021-05-20 13:21:24.859+03	
6e22c238-5ec3-aa6e-295d-3454fb3ea873	2021-05-20 13:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:21:44.853+03	2021-05-20 13:21:44.859+03	
918fea6a-c7e6-ef94-f483-a260a173ab7a	2021-05-20 13:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:22:04.853+03	2021-05-20 13:22:04.864+03	
30cca63a-8725-c50d-bf5c-ab5fb4986e68	2021-05-20 13:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:22:14.853+03	2021-05-20 13:22:14.859+03	
4a75bfa0-b35d-41c4-354b-38feb5c1ae02	2021-05-20 13:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:22:34.853+03	2021-05-20 13:22:34.859+03	
7d127759-4916-b56f-8f78-9869a2af6845	2021-05-20 13:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:22:54.853+03	2021-05-20 13:22:54.864+03	
9cccd65f-f25a-f049-8f23-7d649542d3ba	2021-05-20 13:23:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:23:16.852+03	2021-05-20 13:23:16.859+03	
adbb0939-f1a3-9e3e-4eb6-9292a4ef9d53	2021-05-20 13:23:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:23:36.852+03	2021-05-20 13:23:36.861+03	
438aa47a-492e-d393-306c-103c146ad5fd	2021-05-20 13:23:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:23:56.852+03	2021-05-20 13:23:56.859+03	
907bf506-d52b-a428-5cd8-e423f961cee4	2021-05-20 13:24:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:24:16.852+03	2021-05-20 13:24:16.87+03	
aaa20676-041e-3b74-4269-ea4f7cee03e1	2021-05-20 13:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:24:37.852+03	2021-05-20 13:24:37.861+03	
22cd87c9-0ae0-2db4-dc5e-c2065d6dfd4a	2021-05-20 13:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:24:58.853+03	2021-05-20 13:24:58.864+03	
6ca287d3-ee07-759f-e96f-6492bbd5ccce	2021-05-20 13:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:25:19.853+03	2021-05-20 13:25:19.86+03	
8a27b6de-25c0-7be9-7f1f-b37c162e1116	2021-05-20 13:25:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:25:41.853+03	2021-05-20 13:25:41.859+03	
5ed7227a-9dfd-eac0-aac6-d27f76f7a3fc	2021-05-20 13:26:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:26:01.854+03	2021-05-20 13:26:01.86+03	
44c2203c-5dc0-52ba-ad81-9ba24ec304fe	2021-05-20 13:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:26:22.853+03	2021-05-20 13:26:22.86+03	
80217bd1-c699-9a10-e3d3-20ba3c3cdafd	2021-05-20 13:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:26:44.852+03	2021-05-20 13:26:44.859+03	
bae33ffe-8b84-fb61-3fda-233d8e4ae605	2021-05-20 13:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:27:04.852+03	2021-05-20 13:27:04.859+03	
b33faf8f-4057-a758-8576-79268f94ee1d	2021-05-20 13:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:27:24.853+03	2021-05-20 13:27:24.859+03	
0140f23d-d50b-65bb-ad9a-7038e7995dca	2021-05-20 13:27:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:27:45.854+03	2021-05-20 13:27:45.87+03	
bffe4b0e-921a-683e-5564-0735db767f82	2021-05-20 13:28:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:28:06.854+03	2021-05-20 13:28:06.861+03	
7fcf75fa-9235-180d-964c-3d58d3ffa07f	2021-05-20 13:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:28:27.853+03	2021-05-20 13:28:27.863+03	
230e259c-077d-aa11-ae2f-ac8bd9b628c4	2021-05-20 13:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:28:48.852+03	2021-05-20 13:28:48.858+03	
d33c3837-e710-e500-e073-b3f99fbdaf07	2021-05-20 13:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:29:09.852+03	2021-05-20 13:29:09.858+03	
61c996a5-3519-2395-52e9-03bf07ded97b	2021-05-20 13:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:29:29.853+03	2021-05-20 13:29:29.86+03	
3058a317-6121-1c64-0e8f-39b5affba09f	2021-05-20 13:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:29:39.853+03	2021-05-20 13:29:39.884+03	
f13a2b5e-23e5-d672-1787-bac3e62c6c9e	2021-05-20 13:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:29:49.853+03	2021-05-20 13:29:49.861+03	
a4682a96-575b-2ac8-0740-aeae3737e08e	2021-05-20 13:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 13:30:00.853+03	2021-05-20 13:30:00.859+03	ERROR
b73b214d-6107-3109-f3fe-fbe81b97cf4d	2021-05-20 13:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:30:00.853+03	2021-05-20 13:30:00.872+03	
5a90c7e3-9375-0552-0faa-350ae5d95343	2021-05-20 13:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:30:20.853+03	2021-05-20 13:30:20.867+03	
52f15b58-7d29-7920-6aba-07c009a47244	2021-05-20 13:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:30:30.853+03	2021-05-20 13:30:30.86+03	
6af1ac31-7ab3-a1a6-66be-f325defa42a9	2021-05-20 13:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:30:50.853+03	2021-05-20 13:30:50.87+03	
0f516778-4626-2fc3-8a05-5912525a7fff	2021-05-20 13:31:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:31:11.852+03	2021-05-20 13:31:11.859+03	
226ecd72-4899-3339-08ad-8e7fd4d6bcf8	2021-05-20 13:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:31:32.852+03	2021-05-20 13:31:32.859+03	
f7f7e4be-1cf6-4639-0049-911710dce61e	2021-05-21 11:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:23:40.853+03	2021-05-21 11:23:40.861+03	
a5a0286a-a3d0-e0db-35d9-5659e6449f0d	2021-05-20 13:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:31:53.852+03	2021-05-20 13:31:53.859+03	
89af87cc-4f4c-6cfd-8b2c-835abd73dda6	2021-05-20 14:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:59:12.853+03	2021-05-20 14:59:12.867+03	
db1fc7f7-a974-5f7d-57ee-17023fd3598f	2021-05-20 13:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:32:03.853+03	2021-05-20 13:32:03.86+03	
234f4a44-e871-160b-8fc1-97903c78cb50	2021-05-20 13:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:32:14.852+03	2021-05-20 13:32:14.859+03	
2e1d7337-4183-f2b7-0b8c-8f151bc7d1b5	2021-05-20 14:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:59:34.852+03	2021-05-20 14:59:34.867+03	
974827d8-be82-2edf-fded-1970ca2790e5	2021-05-20 13:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:32:34.852+03	2021-05-20 13:32:34.859+03	
6ad1ffe7-3c37-2740-3e47-c65af0331044	2021-05-20 13:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:32:55.852+03	2021-05-20 13:32:55.86+03	
96fa6507-acf1-5fc2-73a8-0d0c3f4aa72b	2021-05-20 15:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 15:00:00.853+03	2021-05-20 15:00:00.86+03	ERROR
6bbcce82-9c6d-8a52-7f3d-e7b9b2ba7f4f	2021-05-20 13:33:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:33:16.853+03	2021-05-20 13:33:16.869+03	
c61cb22e-a551-de79-e87d-4df772395242	2021-05-20 13:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:33:38.852+03	2021-05-20 13:33:38.859+03	
a14dbf77-05dd-ab69-3995-e8373edcd587	2021-05-20 15:00:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:00:24.853+03	2021-05-20 15:00:24.875+03	
e6b87c1a-7774-303b-1ed2-a0723dfeb03b	2021-05-20 13:33:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:33:58.853+03	2021-05-20 13:33:58.859+03	
ba77f6f8-9eaf-8b8a-79b1-862cadcc864c	2021-05-20 13:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:34:09.852+03	2021-05-20 13:34:09.858+03	
2f3bc406-77ee-e11e-c55e-2ed9f4c60afd	2021-05-20 15:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:00:45.853+03	2021-05-20 15:00:45.859+03	
de27bef4-71a9-3bd0-cf36-bf714f095083	2021-05-20 13:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:34:29.853+03	2021-05-20 13:34:29.859+03	
49dda6a2-19c4-7d77-a7d7-36452adeb003	2021-05-20 13:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:34:50.853+03	2021-05-20 13:34:50.86+03	
e156c12f-836f-8c86-bb85-58aa40db546b	2021-05-20 15:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:01:05.853+03	2021-05-20 15:01:05.86+03	
8e142c30-de0f-97d9-2f41-397caefe9286	2021-05-20 13:35:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:35:11.852+03	2021-05-20 13:35:11.86+03	
4ec26939-7cbc-ab3f-f710-cf0c36411ff8	2021-05-20 13:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:35:32.852+03	2021-05-20 13:35:32.858+03	
867df01b-3c6d-ef64-a91c-aea9ef5b6128	2021-05-20 15:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:01:25.853+03	2021-05-20 15:01:25.86+03	
50c427af-8160-58a2-ab03-8bc82b3697c6	2021-05-20 13:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:35:52.853+03	2021-05-20 13:35:52.859+03	
30f23ee2-6fc9-7c3d-3f4b-9531291b07d8	2021-05-20 13:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:36:13.853+03	2021-05-20 13:36:13.86+03	
25d6bea0-c6b3-6813-a240-e64362a0e8a2	2021-05-20 15:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:01:55.853+03	2021-05-20 15:01:55.86+03	
7e331f9a-83b1-f633-725e-dde82da8d69a	2021-05-20 13:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:36:33.853+03	2021-05-20 13:36:33.86+03	
ec754e25-86f9-530e-5ded-c5c7a1138a86	2021-05-20 13:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:36:53.853+03	2021-05-20 13:36:53.863+03	
e36b8f0e-7331-35ee-1364-fc3e8d126732	2021-05-20 15:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:02:15.853+03	2021-05-20 15:02:15.861+03	
483560ad-4347-92af-6c78-2ba8bad2f3a6	2021-05-20 13:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:37:13.853+03	2021-05-20 13:37:13.861+03	
b9eab91e-d432-408c-7bd5-51ba0ba944b1	2021-05-20 13:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:37:44.852+03	2021-05-20 13:37:44.859+03	
f13419f6-910c-43ca-bd51-6c90159b7d06	2021-05-20 15:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:02:37.852+03	2021-05-20 15:02:37.858+03	
65cd08a8-01a0-d5b1-80be-31c8dc40aa23	2021-05-20 13:38:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:38:04.852+03	2021-05-20 13:38:04.861+03	
859f6b7b-4f99-fb02-a4e0-a061e387462d	2021-05-20 13:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:38:14.853+03	2021-05-20 13:38:14.86+03	
6221363d-0238-f8e7-e4ea-1080fd043b86	2021-05-20 15:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:02:57.853+03	2021-05-20 15:02:57.86+03	
16fb67c8-89e8-b9d4-33d5-0f32a977a3b7	2021-05-20 13:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:38:34.853+03	2021-05-20 13:38:34.86+03	
84fc4f5a-54b7-1400-cc80-41b3a5685e76	2021-05-20 13:38:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:38:56.853+03	2021-05-20 13:38:56.86+03	
5fcc5423-3c21-0e1c-41ab-ffb3a933be95	2021-05-20 15:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:03:17.853+03	2021-05-20 15:03:17.86+03	
6b8a7205-f688-21ef-bf28-6848a68782ce	2021-05-20 13:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:39:17.853+03	2021-05-20 13:39:17.86+03	
2cc6c903-d34b-01f1-72f5-5c421118cf5c	2021-05-20 13:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:39:39.852+03	2021-05-20 13:39:39.86+03	
9f27e3ca-cd30-092b-c428-b71195b4aca8	2021-05-20 15:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:03:37.853+03	2021-05-20 15:03:37.859+03	
5ee0d8cb-51e3-e736-6570-37167d882b28	2021-05-20 13:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:39:49.853+03	2021-05-20 13:39:49.861+03	
55842019-9b0a-41b1-3621-066ce8f70af8	2021-05-20 13:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:40:10.852+03	2021-05-20 13:40:10.863+03	
3e04337a-ec73-e217-ea7b-e1c6688a7585	2021-05-20 15:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:03:57.853+03	2021-05-20 15:03:57.859+03	
12947613-b9c0-363d-689a-8e99ca670216	2021-05-20 13:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:40:30.853+03	2021-05-20 13:40:30.86+03	
3de7bcc8-204b-1952-32df-d58cbc861114	2021-05-20 13:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:41:02.852+03	2021-05-20 13:41:02.859+03	
d112e558-e180-5f68-39c7-813235186445	2021-05-20 13:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:41:22.852+03	2021-05-20 13:41:22.866+03	
0c8e2fad-d625-3c30-1488-a83b8db9a6de	2021-05-20 13:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:41:52.852+03	2021-05-20 13:41:52.863+03	
74b2afb2-73f5-a65f-1e2b-ad4914689926	2021-05-20 13:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:42:02.853+03	2021-05-20 13:42:02.859+03	
d7179b81-9c9f-cf07-2cd4-83c17007b0c3	2021-05-20 13:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:42:23.852+03	2021-05-20 13:42:23.86+03	
3efff292-ea7a-13e9-a37a-f16f58c52741	2021-05-20 13:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:42:33.853+03	2021-05-20 13:42:33.859+03	
f688f837-5dbf-1e77-5820-a03f210a82c1	2021-05-20 13:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:42:54.853+03	2021-05-20 13:42:54.86+03	
a4d13a24-54eb-c38f-b720-24f9d1058fd9	2021-05-20 13:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:43:15.853+03	2021-05-20 13:43:15.859+03	
ea997ab3-1796-4464-2b51-608cbeaded35	2021-05-20 13:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:43:45.853+03	2021-05-20 13:43:45.863+03	
0a32cb21-77d2-68b8-fe1a-db5bf218acc4	2021-05-20 13:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:44:05.853+03	2021-05-20 13:44:05.86+03	
a7b44255-c0c0-4bb7-8a9d-02b16bf10462	2021-05-20 13:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:44:35.853+03	2021-05-20 13:44:35.859+03	
1be35d74-c54c-6ba2-85df-07f6c4cb97c6	2021-05-20 13:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:44:57.852+03	2021-05-20 13:44:57.862+03	
f0f11ca2-596f-1229-8b91-9c3290762651	2021-05-20 13:45:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:45:17.853+03	2021-05-20 13:45:17.859+03	
01cb3ac0-4dcc-40a0-0ddb-7133bb9c96b1	2021-05-20 13:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:45:48.853+03	2021-05-20 13:45:48.86+03	
066e13ff-dd88-2b41-543c-d5c6e9b769dc	2021-05-20 13:46:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:46:08.853+03	2021-05-20 13:46:08.862+03	
5d3a4d95-1090-1635-490a-4f3cd562bb8a	2021-05-20 13:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:46:39.852+03	2021-05-20 13:46:39.86+03	
eef65672-87cf-4bff-4d64-22cc346c65fa	2021-05-20 13:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:46:59.853+03	2021-05-20 13:46:59.861+03	
d9a842b9-2cc9-4f3b-5c92-f12fa8b37bc1	2021-05-20 13:47:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:47:31.853+03	2021-05-20 13:47:31.862+03	
f4b1ee76-8d0f-709a-73d8-092197d5c270	2021-05-20 13:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:47:52.853+03	2021-05-20 13:47:52.86+03	
492990fa-63ba-6a8b-3019-8af4d7f71cb6	2021-05-20 13:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:48:13.853+03	2021-05-20 13:48:13.859+03	
768fe387-5e35-09de-26d8-50b51a7bdc6a	2021-05-20 13:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:48:24.852+03	2021-05-20 13:48:24.865+03	
07b91c75-6388-20f2-dfea-319091b84fc4	2021-05-20 13:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:35:01.852+03	2021-05-20 13:35:01.87+03	
e67a24bf-b470-5c80-20f2-6c39cb0e72d1	2021-05-20 13:35:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:35:21.853+03	2021-05-20 13:35:21.861+03	
9b958ae4-be83-e115-33c1-531d39b21a23	2021-05-20 13:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:35:42.852+03	2021-05-20 13:35:42.869+03	
44616f0c-ea05-1393-c384-f71178197761	2021-05-20 13:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:36:03.852+03	2021-05-20 13:36:03.859+03	
68c67966-1da2-7148-a9ff-935e5d55e59f	2021-05-20 13:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:36:23.853+03	2021-05-20 13:36:23.859+03	
aa08c308-5155-807e-364c-739f2091298c	2021-05-20 13:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:36:43.853+03	2021-05-20 13:36:43.859+03	
0dfb4236-5cc9-70cb-6e95-0c8356b85e30	2021-05-20 13:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:37:03.853+03	2021-05-20 13:37:03.86+03	
239a7784-5ec8-4cad-fe21-aa9741d18096	2021-05-20 13:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:37:24.852+03	2021-05-20 13:37:24.86+03	
8249017d-53c4-a3e4-a458-81b8eb8a5eb4	2021-05-20 13:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:37:34.852+03	2021-05-20 13:37:34.859+03	
01576b26-d4d6-f93a-f3f9-60307f4377a9	2021-05-20 13:37:54.852	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:37:54.852+03	2021-05-20 13:37:54.858+03	
6848d5c0-74cb-aa6c-cad9-14b369ab9bd3	2021-05-20 13:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:38:24.853+03	2021-05-20 13:38:24.871+03	
d1d76792-285f-ec92-a7d9-7c049dcc1b45	2021-05-20 13:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:38:45.853+03	2021-05-20 13:38:45.86+03	
5e9bfb11-1f38-bb57-94c3-35389ef65d0a	2021-05-20 13:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:39:07.852+03	2021-05-20 13:39:07.861+03	
3b198928-3c2d-d0db-5076-eab77aa98922	2021-05-20 13:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:39:28.853+03	2021-05-20 13:39:28.859+03	
a471575f-cbfe-6fa2-2819-7e2077a2baf4	2021-05-20 13:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:40:00.852+03	2021-05-20 13:40:00.865+03	
d6c0cacf-fd85-49f8-0d05-416c72869f5a	2021-05-20 13:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 13:40:00.853+03	2021-05-20 13:40:00.876+03	ERROR
ecbefa82-4e74-47bb-de88-68a467f87ff5	2021-05-20 13:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:40:20.853+03	2021-05-20 13:40:20.859+03	
6d55ad76-bc81-5fe3-caee-710e7d481f88	2021-05-20 13:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:40:40.853+03	2021-05-20 13:40:40.859+03	
9b844b3a-986a-ed0a-edc2-2a33ec0a12cc	2021-05-20 13:40:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:40:51.853+03	2021-05-20 13:40:51.86+03	
20a9f31a-6e2e-b792-417b-c67c00eca91f	2021-05-20 13:41:12.852	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:41:12.852+03	2021-05-20 13:41:12.862+03	
f257fbac-df44-d7ef-95dd-7a9f89b212e5	2021-05-20 13:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:41:32.852+03	2021-05-20 13:41:32.863+03	
eaab37e6-bb80-fc59-d193-5e5d330aef09	2021-05-20 13:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:41:42.852+03	2021-05-20 13:41:42.86+03	
7f961920-6451-2e34-a6a3-43211f10e1ae	2021-05-20 13:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:42:12.853+03	2021-05-20 13:42:12.859+03	
5abad1bc-82b0-b28f-cf67-46d62dc8b2f2	2021-05-20 13:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:42:44.853+03	2021-05-20 13:42:44.861+03	
7be74758-92ab-9608-7750-4aaeefc764ff	2021-05-20 13:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:43:05.853+03	2021-05-20 13:43:05.863+03	
0a67ec72-ae89-2527-108b-fbb5d763b3c1	2021-05-20 13:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:43:25.853+03	2021-05-20 13:43:25.862+03	
d67ca4da-b98d-63c5-0db3-b3509ed55c1f	2021-05-20 13:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:43:35.853+03	2021-05-20 13:43:35.885+03	
5126e1c2-958c-bf24-eb51-1c58171b2b93	2021-05-20 13:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:43:55.853+03	2021-05-20 13:43:55.861+03	
65fcc472-5d46-a268-c269-da4852d64ae5	2021-05-20 13:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:44:15.853+03	2021-05-20 13:44:15.86+03	
e91e2e21-86e3-bf4f-fba2-2a87eafdfc0c	2021-05-20 13:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:44:25.853+03	2021-05-20 13:44:25.86+03	
e4e738d1-ef95-e781-a938-e9254f030a9b	2021-05-20 13:44:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:44:46.854+03	2021-05-20 13:44:46.86+03	
135a05a0-77a5-feb3-1859-6b22f6e246aa	2021-05-20 13:45:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:45:07.853+03	2021-05-20 13:45:07.859+03	
524fcd99-cc2b-bef3-7127-a634dcbec9c9	2021-05-20 13:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:45:27.853+03	2021-05-20 13:45:27.86+03	
6e3bdc1b-1479-7fc6-25c0-510e3f8f4695	2021-05-20 13:45:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:45:38.852+03	2021-05-20 13:45:38.86+03	
e722f5d8-8c4f-9cfa-ded3-a65533a0e9f9	2021-05-20 13:45:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:45:58.853+03	2021-05-20 13:45:58.873+03	
317c91d4-55d6-cbb9-37fd-9187d419b144	2021-05-20 13:46:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:46:18.853+03	2021-05-20 13:46:18.86+03	
f17fb8fe-85a0-8a23-2404-7f76adf1316f	2021-05-20 13:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:46:29.852+03	2021-05-20 13:46:29.858+03	
cc1905c5-cb92-dc74-5fb8-72edcca73d8e	2021-05-20 13:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:46:49.853+03	2021-05-20 13:46:49.86+03	
868a4ce1-75ce-41d4-c070-58b78a697ee4	2021-05-20 13:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:47:10.853+03	2021-05-20 13:47:10.864+03	
afb8c3dd-188c-0330-2204-a135af7908eb	2021-05-20 13:47:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:47:21.853+03	2021-05-20 13:47:21.862+03	
6bb10b4a-e5db-d2f5-6506-c71605058d94	2021-05-20 13:47:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:47:41.854+03	2021-05-20 13:47:41.862+03	
92314564-aba6-6592-14df-3e7570672f58	2021-05-20 13:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:48:03.852+03	2021-05-20 13:48:03.862+03	
6ff8d11a-2ea0-2d52-abf2-60b5992b7cbe	2021-05-20 13:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:48:34.853+03	2021-05-20 13:48:34.862+03	
b77ab367-4945-d20e-4069-9cc18fbf7f92	2021-05-20 13:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:48:45.853+03	2021-05-20 13:48:45.863+03	
dfb5b14b-ddbd-56aa-52ef-0ae148958b57	2021-05-20 13:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:48:56.853+03	2021-05-20 13:48:56.86+03	
43c2c722-04d7-567d-d242-f28c497ee397	2021-05-20 13:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:49:07.852+03	2021-05-20 13:49:07.859+03	
e87f19e1-f268-d996-5d67-abe0bfee82ee	2021-05-20 13:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:49:17.852+03	2021-05-20 13:49:17.859+03	
47e04a6e-130f-2cc1-51c4-20f9fc2a07ec	2021-05-20 13:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:49:27.852+03	2021-05-20 13:49:27.859+03	
bdc00350-28ad-1b86-5bf6-3d135eefe51e	2021-05-20 13:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:49:37.852+03	2021-05-20 13:49:37.86+03	
64bf763c-365f-9039-e0f2-141f36a73661	2021-05-20 13:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:49:47.852+03	2021-05-20 13:49:47.859+03	
223f0d38-2c70-4300-3df2-dc93b016149e	2021-05-20 13:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:49:57.853+03	2021-05-20 13:49:57.859+03	
f1f3e21f-236d-35b2-4a16-353d5a5047b2	2021-05-20 13:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 13:50:00.852+03	2021-05-20 13:50:00.862+03	ERROR
721e1ca4-cbb8-49f0-7633-809ce2b85655	2021-05-20 13:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:50:08.852+03	2021-05-20 13:50:08.859+03	
fe5f5193-8372-99f7-14be-42da75406db5	2021-05-20 13:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:50:18.853+03	2021-05-20 13:50:18.861+03	
0ee836aa-b0a7-09d0-bc59-be3b64cfe7a3	2021-05-20 13:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:50:28.853+03	2021-05-20 13:50:28.86+03	
c5e4dad4-fd5a-90bb-94fd-1061e0934cf2	2021-05-20 13:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:50:38.853+03	2021-05-20 13:50:38.86+03	
d9482684-97de-bf73-093f-702fed11324d	2021-05-20 13:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:50:49.852+03	2021-05-20 13:50:49.859+03	
26d646c9-5eb4-297c-8123-9de408074177	2021-05-20 13:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:50:59.852+03	2021-05-20 13:50:59.858+03	
d4b52611-5ace-ce12-b46c-af5d1463a3ed	2021-05-20 13:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:51:09.852+03	2021-05-20 13:51:09.858+03	
afaf8e3c-b71c-644a-3a1c-8cabdfb0b217	2021-05-20 13:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:51:19.852+03	2021-05-20 13:51:19.874+03	
f0ebf197-9b6a-4977-b446-707d4d95742b	2021-05-20 13:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:51:29.853+03	2021-05-20 13:51:29.859+03	
3d292235-27aa-1bd2-5197-1f12882d5e8b	2021-05-20 13:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:51:40.852+03	2021-05-20 13:51:40.859+03	
047d33a1-0cad-2f67-2158-970da8a4d0f1	2021-05-20 13:51:50.852	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:51:50.852+03	2021-05-20 13:51:50.86+03	
0631880a-7b0d-3c89-6fbc-a2379a30892f	2021-05-20 20:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:22:04.853+03	2021-05-20 20:22:04.861+03	
89cce762-4939-8d60-0116-5c90f88753dd	2021-05-20 13:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:52:00.852+03	2021-05-20 13:52:00.86+03	
0c3d0d8a-dbab-a692-a321-8bee5b744466	2021-05-20 14:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:59:23.853+03	2021-05-20 14:59:23.862+03	
46f7032a-d255-b83d-f77c-099fad900ebf	2021-05-20 13:52:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:52:41.854+03	2021-05-20 13:52:41.861+03	
1319c757-dca2-1e78-0a14-7166f56994f2	2021-05-20 13:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:53:12.853+03	2021-05-20 13:53:12.858+03	
f815b8bc-6339-d63c-7f0e-5588e8ee6898	2021-05-20 14:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:59:44.852+03	2021-05-20 14:59:44.859+03	
199b21b0-1e84-5224-5781-f24fcf8f3b46	2021-05-20 13:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:53:33.853+03	2021-05-20 13:53:33.859+03	
9a2f189e-ea53-ecb1-5f4a-0b6f6be45af4	2021-05-20 13:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:54:25.853+03	2021-05-20 13:54:25.858+03	
e5876598-4b59-c5bd-8bf6-d84ec312aefd	2021-05-20 14:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:59:54.853+03	2021-05-20 14:59:54.859+03	
e52ea5aa-6ffc-6623-88ba-0ca39758026a	2021-05-20 13:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:54:47.853+03	2021-05-20 13:54:47.86+03	
4d4c40cd-bfab-6f22-22ac-da5d2288dabf	2021-05-20 13:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:55:18.853+03	2021-05-20 13:55:18.861+03	
530f9235-aa8c-d90a-ec02-aa9551820b59	2021-05-20 15:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:00:04.853+03	2021-05-20 15:00:04.862+03	
4e747e1e-6037-1970-8063-4181bf0f6a8d	2021-05-20 13:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:55:40.852+03	2021-05-20 13:55:40.859+03	
6c3dbcb3-46ba-b1df-9de1-7400fb839e03	2021-05-20 13:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:55:50.852+03	2021-05-20 13:55:50.859+03	
9486c190-2b5b-8f66-d240-0f22825fd484	2021-05-20 15:00:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:00:14.853+03	2021-05-20 15:00:14.862+03	
8afb3992-ef07-37a2-de12-406b6b35da6c	2021-05-20 13:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:56:42.852+03	2021-05-20 13:56:42.859+03	
a8a8f7fb-d57d-1aa2-cd0b-51264014aa54	2021-05-20 13:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:56:52.853+03	2021-05-20 13:56:52.859+03	
e6842fd8-4719-4d28-8a44-64b2d463673a	2021-05-20 15:00:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:00:34.853+03	2021-05-20 15:00:34.861+03	
60dc68c5-eeea-9ea5-9497-73191c625a62	2021-05-20 13:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:57:02.853+03	2021-05-20 13:57:02.868+03	
fff29d34-a16e-2a68-5f58-5f63b66c7726	2021-05-20 13:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:57:23.853+03	2021-05-20 13:57:23.859+03	
d06fadda-b2b1-1dd8-497b-09379848741d	2021-05-20 15:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:00:55.853+03	2021-05-20 15:00:55.862+03	
f37ce8b4-97a4-9fa7-c1bb-9f718ebb4b09	2021-05-20 13:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:57:44.852+03	2021-05-20 13:57:44.859+03	
8f232e12-7229-b206-b08b-985fa481f967	2021-05-20 13:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:58:35.853+03	2021-05-20 13:58:35.862+03	
a30d74fc-6d97-c1bf-b867-ba22a06e1991	2021-05-20 15:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:01:15.853+03	2021-05-20 15:01:15.861+03	
2226438c-b305-dba9-3a89-d12698924418	2021-05-20 13:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:59:05.853+03	2021-05-20 13:59:05.859+03	
4b5b51a7-968e-9e02-e590-359852688ec3	2021-05-20 13:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:59:35.853+03	2021-05-20 13:59:35.859+03	
3eaed146-8f5a-51b0-33a2-93951f2dbdd8	2021-05-20 15:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:01:35.853+03	2021-05-20 15:01:35.86+03	
6f40381b-0e5f-4ac3-3a2b-d366a69abc54	2021-05-20 13:59:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:59:56.853+03	2021-05-20 13:59:56.86+03	
d23d2a1a-4e58-d64f-6ab5-8f2ff199aba9	2021-05-20 14:00:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:00:06.853+03	2021-05-20 14:00:06.867+03	
1e0fcbe6-0d80-d4cc-c8f4-ed24dbf0461b	2021-05-20 15:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:01:45.853+03	2021-05-20 15:01:45.86+03	
3335e54b-4f3a-b412-f426-6b53647bf31d	2021-05-20 14:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:01:32.853+03	2021-05-20 14:01:32.861+03	
fa020214-db0e-59de-390a-40843274a2af	2021-05-20 14:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:01:42.853+03	2021-05-20 14:01:42.859+03	
a4804f8e-5f40-391c-170a-bf69745cccad	2021-05-20 14:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:02:03.853+03	2021-05-20 14:02:03.859+03	
748639cc-029c-683b-abe8-c85d00abd276	2021-05-20 14:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:02:14.852+03	2021-05-20 14:02:14.859+03	
0abac2b0-c124-a382-196b-6d1d5bf652f4	2021-05-20 14:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:02:34.852+03	2021-05-20 14:02:34.858+03	
469d250a-ea5c-b44c-73f0-3c55758ede08	2021-05-20 14:02:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:02:55.852+03	2021-05-20 14:02:55.861+03	
f8939639-bd9f-4f39-569f-d908565b43b2	2021-05-20 14:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:03:05.852+03	2021-05-20 14:03:05.86+03	
105ae3c4-ec98-bb2f-7ea9-53d76408b307	2021-05-20 14:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:03:15.853+03	2021-05-20 14:03:16.07+03	
08cc52a9-29a7-95af-a1d7-779ace16699b	2021-05-20 14:03:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:03:36.854+03	2021-05-20 14:03:36.862+03	
1287fd41-72b7-5afc-f61e-40df14c32175	2021-05-20 14:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:03:58.852+03	2021-05-20 14:03:58.86+03	
2d3cd5d5-57bb-da59-56a3-851f91d54996	2021-05-20 14:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:04:08.852+03	2021-05-20 14:04:08.864+03	
b57e5dc0-a4d4-fdd8-6d44-b8e494a19415	2021-05-20 14:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:04:28.852+03	2021-05-20 14:04:28.86+03	
4ab05d4c-34a7-71cf-b753-e60575e3adba	2021-05-20 14:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:04:49.853+03	2021-05-20 14:04:49.86+03	
00f0c42d-bf4e-ce16-2098-59ac057e376e	2021-05-20 14:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:05:00.853+03	2021-05-20 14:05:00.863+03	
244754e6-4237-22a7-c4b7-e3152ae2443d	2021-05-20 14:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:05:10.853+03	2021-05-20 14:05:10.865+03	
bc67b017-ac0f-de81-d857-15b65b68e016	2021-05-20 14:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:05:30.853+03	2021-05-20 14:05:30.859+03	
b93cfe95-e6d4-8c1d-f609-c7037f8bce89	2021-05-20 14:05:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:05:41.853+03	2021-05-20 14:05:41.86+03	
f5c055bb-3cc1-faa1-c6bb-120b61a77b84	2021-05-20 14:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:05:52.852+03	2021-05-20 14:05:52.872+03	
79a838eb-7824-eaa6-9cc1-9079c2d6a15c	2021-05-20 14:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:06:02.852+03	2021-05-20 14:06:02.859+03	
c344fee6-09ac-0d4d-128e-8178403742f7	2021-05-20 14:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:06:22.853+03	2021-05-20 14:06:22.864+03	
a71b8d3b-a2f1-26d5-4cd6-2006d64199bc	2021-05-20 14:06:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:06:32.853+03	2021-05-20 14:06:32.859+03	
9b6df59a-9ee3-b3f8-7e8b-bd63d78b9c04	2021-05-20 14:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:07:13.853+03	2021-05-20 14:07:13.861+03	
49641a4a-e5d4-5634-3a99-4ce25c4af9d8	2021-05-20 14:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:07:34.852+03	2021-05-20 14:07:34.858+03	
25ec1887-6952-2d48-22b6-019e2fd70103	2021-05-20 14:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:08:04.852+03	2021-05-20 14:08:04.859+03	
929fd022-39fd-49b2-bd23-b29098bae252	2021-05-20 14:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:08:14.852+03	2021-05-20 14:08:14.866+03	
83e926e5-5d52-b3df-ad6a-39d27c8d27c2	2021-05-20 14:08:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:08:46.852+03	2021-05-20 14:08:46.859+03	
b75ead9e-b2a8-351c-9c8d-674b3f21f480	2021-05-20 14:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:09:06.852+03	2021-05-20 14:09:06.859+03	
be61dae3-628e-2409-c7e6-0fff0c4485a6	2021-05-20 14:09:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:09:36.852+03	2021-05-20 14:09:36.859+03	
4e0bbe18-00d9-b2e9-2d24-ccb715468aa3	2021-05-20 14:09:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:09:46.852+03	2021-05-20 14:09:46.86+03	
c971dddc-571d-b822-24ec-18bddd4c9b27	2021-05-20 14:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 14:10:00.852+03	2021-05-20 14:10:00.858+03	ERROR
cd955bb2-196a-d06f-e3d8-ba900839fd85	2021-05-20 14:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:10:27.853+03	2021-05-20 14:10:27.862+03	
6d7144aa-d10e-6b43-35c5-09947e9c67c0	2021-05-20 14:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:10:48.852+03	2021-05-20 14:10:48.859+03	
c03774be-e9b5-15f6-a4fb-52c6f4ff0104	2021-05-20 14:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:11:08.853+03	2021-05-20 14:11:08.902+03	
90bc16eb-c793-275f-1087-b6e76e4192af	2021-05-20 14:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:11:39.853+03	2021-05-20 14:11:39.86+03	
8f703c1f-751d-9231-b0ef-6f4a20bb74b8	2021-05-20 13:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:52:10.853+03	2021-05-20 13:52:10.859+03	
c9a06cbe-70ab-91d1-645a-3a5d9994cec3	2021-05-20 13:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:52:20.853+03	2021-05-20 13:52:20.862+03	
6f839ae0-e2f2-e9a7-262f-92c06137eae1	2021-05-20 13:52:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:52:31.853+03	2021-05-20 13:52:31.859+03	
aad4ebee-26c6-fe14-35ad-9b8ddb944e17	2021-05-20 13:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:52:52.853+03	2021-05-20 13:52:52.863+03	
ca7c8aa9-fc76-c9e3-26c1-a7c61138d2a5	2021-05-20 13:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:53:02.853+03	2021-05-20 13:53:02.87+03	
6deba5b6-b26a-7b5f-9c50-89b82d823eb4	2021-05-20 13:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:53:23.853+03	2021-05-20 13:53:23.86+03	
f212395f-2204-de7f-012a-e9e1caa49812	2021-05-20 13:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:53:43.853+03	2021-05-20 13:53:43.866+03	
32d08ecc-cc02-4603-d838-08a6051253e8	2021-05-20 13:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:53:53.853+03	2021-05-20 13:53:53.863+03	
94ccc791-54da-6008-aa8e-023c9a03c6fe	2021-05-20 13:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:54:04.852+03	2021-05-20 13:54:04.859+03	
e59905fd-7c84-fe09-ec35-bda167a12c74	2021-05-20 13:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:54:14.853+03	2021-05-20 13:54:14.859+03	
6ef61262-c431-6cee-5ef7-8bc333be2951	2021-05-20 13:54:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:54:36.854+03	2021-05-20 13:54:36.86+03	
3e380866-00a6-e535-0da0-ae6630de206e	2021-05-20 13:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:54:58.853+03	2021-05-20 13:54:58.86+03	
e2f7705f-7d4f-836f-0a3a-0d064f31eee4	2021-05-20 13:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:55:08.853+03	2021-05-20 13:55:08.88+03	
06a09ff5-cedd-3c92-98e6-bda3fcc83382	2021-05-20 13:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:55:29.853+03	2021-05-20 13:55:29.859+03	
2c5fd8d1-c7e1-84cb-1f87-a61535f86cb0	2021-05-20 13:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:56:00.853+03	2021-05-20 13:56:00.859+03	
03814c58-0803-8d0f-bed4-01f00862b3ca	2021-05-20 13:56:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:56:11.853+03	2021-05-20 13:56:11.861+03	
21073fb8-81ad-4887-b8b0-872158972250	2021-05-20 13:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:56:22.852+03	2021-05-20 13:56:22.859+03	
37a5ff9f-f288-1e6e-0abe-162a9882ca8b	2021-05-20 13:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:56:32.852+03	2021-05-20 13:56:32.865+03	
69890624-094b-dc20-8445-cd99d0eb4c75	2021-05-20 13:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:57:13.853+03	2021-05-20 13:57:13.859+03	
fea5abb1-8374-5385-f1fa-8da8f1b89eb1	2021-05-20 13:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:57:33.853+03	2021-05-20 13:57:33.86+03	
436e602f-a39e-1e5a-ad50-55d9fad2b3fb	2021-05-20 13:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:57:54.852+03	2021-05-20 13:57:54.862+03	
60cd6bb1-c7fb-2610-70b1-70f01356dfef	2021-05-20 13:58:04.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:58:04.859+03	2021-05-20 13:58:04.906+03	
f633741d-845f-3dcd-f3ed-92f8412ebc81	2021-05-20 13:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:58:15.852+03	2021-05-20 13:58:15.875+03	
e9f39397-fc34-7966-0c42-21b3bdb241ee	2021-05-20 13:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:58:25.853+03	2021-05-20 13:58:25.861+03	
89f73d19-0196-1234-11ad-027aa8ab8391	2021-05-20 13:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:58:45.853+03	2021-05-20 13:58:45.859+03	
ec23b2dd-32e1-9585-6e64-c1da2047bcdd	2021-05-20 13:58:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:58:55.853+03	2021-05-20 13:58:55.859+03	
546ab4f0-c31d-ee21-fdda-697e783b7192	2021-05-20 13:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:59:15.853+03	2021-05-20 13:59:15.871+03	
5f77609e-fcf8-c51f-27b6-d049ce7ca53e	2021-05-20 13:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:59:25.853+03	2021-05-20 13:59:25.86+03	
eda062f0-00e9-7ae6-d4c4-ec62cdc84903	2021-05-20 13:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 13:59:45.853+03	2021-05-20 13:59:45.865+03	
f3b3dfba-7960-10ba-d18b-13b3dbd06127	2021-05-20 14:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 14:00:00.853+03	2021-05-20 14:00:00.859+03	ERROR
8e7501a9-ae2f-da46-7a66-b2dfcc346c2b	2021-05-20 14:00:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:00:16.854+03	2021-05-20 14:00:16.892+03	
05c870fd-1b69-884e-a6c5-ec517f51d28b	2021-05-20 14:00:27.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:00:27.863+03	2021-05-20 14:00:27.901+03	
9af76b09-5626-3b7a-625c-e0aedbb0508d	2021-05-20 14:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:00:38.853+03	2021-05-20 14:00:38.875+03	
5663c94a-e4fd-7314-ec02-6862c7c3e105	2021-05-20 14:00:49.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:00:49.858+03	2021-05-20 14:00:49.865+03	
4f974514-3318-d767-0ad2-e68f3aa6ab40	2021-05-20 14:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:01:00.853+03	2021-05-20 14:01:00.881+03	
cb2a4213-c697-2eed-9b70-4935255e6806	2021-05-20 14:01:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:01:11.854+03	2021-05-20 14:01:11.861+03	
ffc88e7c-02ca-3256-9f94-5aa0eede1e9a	2021-05-20 14:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:01:22.852+03	2021-05-20 14:01:22.86+03	
814a4fa3-c74b-83e4-52d5-1e7196b24fd4	2021-05-20 14:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:01:53.852+03	2021-05-20 14:01:53.86+03	
70623c93-1d4e-a6d6-522e-3f4fcf1342e5	2021-05-20 14:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:02:24.852+03	2021-05-20 14:02:24.86+03	
06bd34f6-076e-20f7-6099-4fb97505ec34	2021-05-20 14:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:02:44.853+03	2021-05-20 14:02:44.86+03	
356503ac-5470-6c44-1202-6a7eff30ae0e	2021-05-20 14:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:03:25.853+03	2021-05-20 14:03:25.862+03	
97a1f8df-c56b-6521-4939-f9982ef168c1	2021-05-20 14:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:03:47.853+03	2021-05-20 14:03:47.859+03	
7e300590-1c72-36c2-0ded-6e7ce27117eb	2021-05-20 14:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:04:18.852+03	2021-05-20 14:04:18.871+03	
521d24e3-3aa5-6aa2-1d19-982c8fc3c414	2021-05-20 14:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:04:38.853+03	2021-05-20 14:04:38.948+03	
74082a36-964e-ffa6-a8c1-cd9be350b1e0	2021-05-20 14:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:05:20.853+03	2021-05-20 14:05:20.865+03	
b059d8d3-8429-0049-0ab7-522c9dc38ef1	2021-05-20 14:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:06:12.852+03	2021-05-20 14:06:12.859+03	
7ac51b0a-b002-ba97-3a81-3791041a5cdb	2021-05-20 14:06:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:06:42.853+03	2021-05-20 14:06:42.861+03	
8ad34062-194b-be37-1368-504fbc3ce121	2021-05-20 14:06:52.867	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:06:52.867+03	2021-05-20 14:06:52.873+03	
239dcd95-a0d0-3121-f728-1a9ef05864bf	2021-05-20 14:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:07:03.853+03	2021-05-20 14:07:03.879+03	
b19aab29-d725-248b-e293-92e5163edc56	2021-05-20 14:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:07:23.853+03	2021-05-20 14:07:23.862+03	
1f383e10-7402-2486-2b0d-9220bebda3f1	2021-05-20 14:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:07:44.852+03	2021-05-20 14:07:44.86+03	
26647d33-9752-91c8-d24f-c472e177d0b2	2021-05-20 14:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:07:54.852+03	2021-05-20 14:07:54.859+03	
207c2e8f-e14f-bc62-b615-697c5eb75ed0	2021-05-20 14:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:08:24.853+03	2021-05-20 14:08:24.862+03	
cc9d82bc-1cea-d338-c248-1a59216f8b30	2021-05-20 14:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:08:35.853+03	2021-05-20 14:08:35.86+03	
ce66583f-7842-ae1b-fbb6-c3443085b1d9	2021-05-20 14:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:08:56.852+03	2021-05-20 14:08:56.861+03	
bb849b32-05e6-69cc-a7fa-20b963d9b153	2021-05-20 14:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:09:16.852+03	2021-05-20 14:09:16.858+03	
b5ee0ca5-b6cc-742d-36d6-9dbe6664c5e1	2021-05-20 14:09:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:09:26.852+03	2021-05-20 14:09:26.876+03	
6bc89750-2325-4193-c913-fa85e16d3192	2021-05-20 14:09:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:09:56.854+03	2021-05-20 14:09:56.866+03	
5b31e90c-a817-828e-50ea-262369591c19	2021-05-20 14:10:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:10:06.854+03	2021-05-20 14:10:06.86+03	
f857887f-3b12-9e57-cb6a-080bd75d59cc	2021-05-20 14:10:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:10:17.852+03	2021-05-20 14:10:17.86+03	
438e05ba-2148-9a6b-7dce-0285693fd318	2021-05-20 14:10:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:10:37.853+03	2021-05-20 14:10:37.86+03	
3e9a391d-a81c-d843-581a-ded3174323d8	2021-05-20 14:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:10:58.852+03	2021-05-20 14:10:58.861+03	
a8536725-9e66-d380-c40c-489b77a85a95	2021-05-20 14:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:11:19.853+03	2021-05-20 14:11:19.864+03	
b5b8b054-337a-9768-ae2d-45685cd53950	2021-05-20 14:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:11:29.853+03	2021-05-20 14:11:29.86+03	
511e833b-1c49-6871-5b51-4a6552e38fd1	2021-05-20 14:11:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:11:49.853+03	2021-05-20 14:11:49.879+03	
a7240d25-2fa5-cb8c-669b-a7fe3218a3d7	2021-05-20 14:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:11:59.853+03	2021-05-20 14:11:59.863+03	
ba7782b8-f99c-c34e-3016-c3e838eec0ab	2021-05-20 14:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:12:10.853+03	2021-05-20 14:12:10.862+03	
26b02fa9-452a-e35d-5c66-a935a6e92b2e	2021-05-20 14:12:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:12:21.852+03	2021-05-20 14:12:21.86+03	
9dc68725-42a2-b669-4f63-682009a0d3b3	2021-05-20 14:12:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:12:31.854+03	2021-05-20 14:12:31.862+03	
ebec83e3-d681-bcd8-9668-1cf20a47a598	2021-05-20 14:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:12:42.852+03	2021-05-20 14:12:42.859+03	
1874e6df-1c53-c439-37ba-83ecb25632e7	2021-05-20 14:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:12:52.852+03	2021-05-20 14:12:52.859+03	
8f8d5118-432f-a4e0-6c92-db1f77ecbb40	2021-05-20 14:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:13:02.852+03	2021-05-20 14:13:02.86+03	
7a050e01-05bf-da66-e978-9a53d3a47606	2021-05-20 14:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:13:12.853+03	2021-05-20 14:13:12.862+03	
e4afe8e7-f369-716e-e021-31be05a90ae5	2021-05-20 14:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:13:22.853+03	2021-05-20 14:13:22.863+03	
90f66ede-6314-f27e-d27c-7b637b320ca6	2021-05-20 14:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:13:32.853+03	2021-05-20 14:13:32.868+03	
7ea0b539-0025-8f78-b7ad-86af831ae607	2021-05-20 14:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:13:43.852+03	2021-05-20 14:13:43.859+03	
835cda1b-9489-af88-4eec-88c36b8abdfe	2021-05-20 14:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:13:53.852+03	2021-05-20 14:13:53.861+03	
4fb860a3-7039-f1f1-9f13-6f264eca03a6	2021-05-20 14:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:14:03.853+03	2021-05-20 14:14:04.395+03	
d31c733f-05be-9bd3-5d55-90de496f1673	2021-05-20 14:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:14:13.853+03	2021-05-20 14:14:13.863+03	
74cf4b3a-cb60-503d-919c-14bbf0afe47d	2021-05-20 14:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:14:24.853+03	2021-05-20 14:14:24.862+03	
cd2ec665-472c-a7bf-14d0-35348e5387ed	2021-05-20 14:14:34.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:14:34.858+03	2021-05-20 14:14:34.877+03	
8e909402-e7ac-4535-d203-01ed02c649a1	2021-05-20 14:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:14:45.852+03	2021-05-20 14:14:45.877+03	
e3dd0997-233d-0e69-0ee6-dac72550ecce	2021-05-20 14:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:14:55.852+03	2021-05-20 14:14:55.86+03	
b1e944d9-a606-3261-a0cd-8bf97524edd3	2021-05-20 14:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:15:05.853+03	2021-05-20 14:15:05.873+03	
06030022-2404-7571-3ac2-625858939e67	2021-05-20 14:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:15:15.853+03	2021-05-20 14:15:15.871+03	
24b3e3ce-6c50-146e-42be-b41c029e4983	2021-05-20 14:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:15:25.853+03	2021-05-20 14:15:26.234+03	
3ed4ba2e-cda7-14f0-2e2d-3ea62385bdeb	2021-05-20 14:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:15:36.852+03	2021-05-20 14:15:36.859+03	
153729cf-1fa5-481f-6fe2-b1a3a629882a	2021-05-20 14:15:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:15:46.852+03	2021-05-20 14:15:46.859+03	
e0c07364-87ed-1a96-cfd8-2b2171efbf0f	2021-05-20 14:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:15:56.852+03	2021-05-20 14:15:56.859+03	
048fdd99-9ae4-efa3-e85a-241ee4c63425	2021-05-20 14:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:16:06.852+03	2021-05-20 14:16:06.859+03	
d1d8f7a7-713f-cb49-f790-2a11e9e7c942	2021-05-20 14:16:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:16:16.852+03	2021-05-20 14:16:16.858+03	
71b17b15-e3b2-269a-a456-542cc89653bc	2021-05-20 14:16:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:16:26.852+03	2021-05-20 14:16:26.861+03	
09607200-b3ec-68f1-ada4-a123029a57f3	2021-05-20 14:16:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:16:36.854+03	2021-05-20 14:16:36.861+03	
589ee543-6d69-6ea7-0a63-e55aa8ced5e9	2021-05-20 14:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:16:47.853+03	2021-05-20 14:16:47.859+03	
6e27f69f-58cc-485b-bcb7-dc9b527ebdcf	2021-05-20 14:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:16:58.852+03	2021-05-20 14:16:58.868+03	
37ea239d-b007-639e-0884-9b1b84214ed8	2021-05-20 14:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:17:08.853+03	2021-05-20 14:17:08.881+03	
fdda49a7-bd44-27a1-fe26-314526fb932a	2021-05-20 14:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:17:18.853+03	2021-05-20 14:17:18.861+03	
7bb6b54c-ddac-2018-cd39-7f69d1ed10b7	2021-05-20 14:17:28.873	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:17:28.873+03	2021-05-20 14:17:28.883+03	
4e589ce0-bded-1825-e85c-ad4d74efafca	2021-05-20 14:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:17:39.853+03	2021-05-20 14:17:39.859+03	
1a197563-2531-d509-9138-7d8220471e4a	2021-05-20 14:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:17:49.853+03	2021-05-20 14:17:49.86+03	
fbfcb963-85e1-8456-33e8-cdb64cab5bc1	2021-05-20 14:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:18:00.853+03	2021-05-20 14:18:00.862+03	
feecaf15-9302-ae18-8056-334b8f880146	2021-05-20 14:18:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:18:11.853+03	2021-05-20 14:18:11.86+03	
b9205197-1597-8d42-7f36-b93b19f12b4d	2021-05-20 14:18:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:18:22.852+03	2021-05-20 14:18:22.869+03	
620b00e0-8999-6527-8e45-4ebc82788a5e	2021-05-20 14:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:18:32.853+03	2021-05-20 14:18:32.859+03	
34169b58-7849-b920-3ad3-b4f222067490	2021-05-20 14:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:18:43.853+03	2021-05-20 14:18:43.859+03	
3cc07d8b-4bd8-0b9b-623f-d8c13888d570	2021-05-20 14:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:18:54.852+03	2021-05-20 14:18:54.858+03	
cf9525c8-adc1-b2b6-c221-bf00955922d1	2021-05-20 14:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:19:04.852+03	2021-05-20 14:19:04.858+03	
8b6b3018-0f4b-1784-4ec7-dca86367553e	2021-05-20 14:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:19:14.853+03	2021-05-20 14:19:14.861+03	
de884989-1a76-5e3c-7915-402aac8c3130	2021-05-20 14:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:19:24.853+03	2021-05-20 14:19:24.861+03	
e15c8f62-e066-ab17-520f-46455f82b6db	2021-05-20 14:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:19:35.852+03	2021-05-20 14:19:35.862+03	
eb775750-77c6-836a-44c6-de3b9681168c	2021-05-20 14:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:19:45.852+03	2021-05-20 14:19:45.859+03	
e58dbcdc-4c4d-2861-f440-31e321f6baef	2021-05-20 14:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:19:55.853+03	2021-05-20 14:19:55.863+03	
e35589ca-3ef9-7a45-ef1c-5e8f03d44bf4	2021-05-20 14:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 14:20:00.853+03	2021-05-20 14:20:00.858+03	ERROR
642a8f6a-9df1-b1f9-7a41-e749361727b6	2021-05-20 14:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:20:06.853+03	2021-05-20 14:20:06.86+03	
6302435c-eb76-d189-4734-51b91e3a013e	2021-05-20 14:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:20:16.853+03	2021-05-20 14:20:16.86+03	
c58f9430-2722-8636-87cf-cc22ea5f1778	2021-05-20 14:20:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:20:26.854+03	2021-05-20 14:20:26.879+03	
f27bcb34-46d6-be5a-2aba-1b88557917e7	2021-05-20 14:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:20:37.852+03	2021-05-20 14:20:37.878+03	
0fe034cb-7ac0-bedd-2adf-f88afbfa1fb2	2021-05-20 14:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:20:47.852+03	2021-05-20 14:20:47.858+03	
fc5976c9-0369-9eff-9e88-76a922e35e34	2021-05-20 14:20:57.852	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:20:57.852+03	2021-05-20 14:20:57.872+03	
5808bb27-3a98-4ce0-691c-f00c89b3eb0a	2021-05-20 14:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:21:07.852+03	2021-05-20 14:21:07.86+03	
31fcb88e-206c-8c40-3d0a-ffd664148173	2021-05-20 14:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:21:17.853+03	2021-05-20 14:21:17.859+03	
02db0b48-0145-c4ed-f2f0-22fe96321298	2021-05-20 14:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:21:27.853+03	2021-05-20 14:21:27.861+03	
8ee683c4-2be7-e21a-616f-f840304088b4	2021-05-20 14:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:21:37.853+03	2021-05-20 14:21:37.859+03	
618847df-4b10-724e-38e0-1b680a72b2c6	2021-05-20 14:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:21:47.853+03	2021-05-20 14:21:47.861+03	
9a3d079b-ad71-caae-fe79-5e32d3408fdb	2021-05-20 14:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:21:58.853+03	2021-05-20 14:21:58.865+03	
c42a89df-0154-c981-561c-b6948876bcd2	2021-05-20 14:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:22:09.853+03	2021-05-20 14:22:09.861+03	
98f7e03b-e36e-b8dc-af53-3e6bd5f3ccd6	2021-05-20 14:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:22:19.853+03	2021-05-20 14:22:19.864+03	
17074870-4a6d-b901-4015-22a72589fbd3	2021-05-20 14:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:22:40.852+03	2021-05-20 14:22:40.859+03	
4c441c2d-7c44-1ad8-867e-b815cfe3f98a	2021-05-20 14:23:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:23:01.853+03	2021-05-20 14:23:01.859+03	
48622589-ad5c-4b50-8410-dfbd614f3a3c	2021-05-20 14:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:23:43.853+03	2021-05-20 14:23:43.859+03	
67a708b5-31e3-e7e4-7312-fc861f9a6248	2021-05-20 14:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:24:14.852+03	2021-05-20 14:24:14.86+03	
a036596a-2f27-4b48-443b-22748c31865e	2021-05-20 14:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:24:34.852+03	2021-05-20 14:24:34.87+03	
06b8df9c-c857-e3f5-67ac-a010a5a07404	2021-05-20 14:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:24:54.852+03	2021-05-20 14:24:54.86+03	
5cf30fc2-6983-25a0-b476-a7e0226f7116	2021-05-20 14:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:25:14.853+03	2021-05-20 14:25:14.86+03	
36db3605-d030-a8ae-b16b-c36db909a5d4	2021-05-20 14:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:25:55.853+03	2021-05-20 14:25:55.861+03	
8cf1aa6b-b069-4382-51c1-dc3add6a9cce	2021-05-20 14:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:26:15.853+03	2021-05-20 14:26:15.862+03	
e0d7f1c0-5ad7-0786-5418-ce53aa18ca7f	2021-05-20 14:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:26:35.853+03	2021-05-20 14:26:35.859+03	
043f8316-1b89-cf9c-4ed8-d9de081d3f4d	2021-05-20 14:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:26:56.853+03	2021-05-20 14:26:56.859+03	
7e38c2fc-1603-5658-75a8-4af4c725ef1c	2021-05-20 14:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:27:16.853+03	2021-05-20 14:27:16.86+03	
3f6f4d50-979d-a74c-9fcb-9decd30fcb54	2021-05-20 14:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:27:37.853+03	2021-05-20 14:27:37.859+03	
311813d5-1b24-4fc9-f9cc-655c5fbcc5b7	2021-05-20 14:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:28:07.853+03	2021-05-20 14:28:07.859+03	
1e27be7d-4b62-decb-d0d3-1395fbbcae97	2021-05-20 14:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:28:28.852+03	2021-05-20 14:28:28.859+03	
00d52cf3-585a-14ec-6ffa-f10d0a0dfde8	2021-05-20 14:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:28:48.852+03	2021-05-20 14:28:48.86+03	
8b546e05-f421-f85a-aa8e-232416dcba7f	2021-05-20 14:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:29:08.853+03	2021-05-20 14:29:08.862+03	
24c48911-02a0-aec8-5abe-2b809d56080e	2021-05-20 14:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:29:29.852+03	2021-05-20 14:29:29.859+03	
d3f619c5-7e5f-3f3d-73be-1e93dd27f74a	2021-05-20 14:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:29:49.852+03	2021-05-20 14:29:49.859+03	
da586f50-17e1-fa08-64fe-10b5fc857ac1	2021-05-20 14:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:29:59.852+03	2021-05-20 14:29:59.861+03	
21aa5bb8-c396-f2f1-af7c-12649ae09d85	2021-05-20 14:30:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:30:29.853+03	2021-05-20 14:30:29.86+03	
4fdb44d3-8d68-a748-b0ca-e2aa23c261be	2021-05-20 14:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:30:50.852+03	2021-05-20 14:30:50.859+03	
68777610-b77b-a8bf-fecc-d54a8f2312a9	2021-05-20 14:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:31:10.852+03	2021-05-20 14:31:10.869+03	
49275bae-de3e-a836-d945-b486d86b618b	2021-05-20 14:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:31:30.853+03	2021-05-20 14:31:30.862+03	
8b799a2a-a1a6-e64a-571c-4ea8b18d81bf	2021-05-20 14:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:31:50.853+03	2021-05-20 14:31:50.861+03	
81cc4842-d3eb-86ca-3f9d-e138f942603e	2021-05-20 14:32:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:32:42.853+03	2021-05-20 14:32:42.861+03	
41d00579-e97e-b247-257c-46a59dba4080	2021-05-20 14:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:33:03.853+03	2021-05-20 14:33:03.86+03	
d629a8f1-7bcb-3a2f-c24e-7e51a956d0aa	2021-05-20 14:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:33:24.853+03	2021-05-20 14:33:24.86+03	
f1691c0a-5f08-7b67-ef2b-63ed5b900c28	2021-05-20 14:33:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:33:46.853+03	2021-05-20 14:33:46.86+03	
4cb6f775-dcb1-44ca-9d53-7ea8e423c504	2021-05-20 14:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:34:07.852+03	2021-05-20 14:34:07.859+03	
2e1574fc-d773-569f-9dbf-8e1a827e8217	2021-05-20 14:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:34:27.853+03	2021-05-20 14:34:27.859+03	
8ec983b2-f8b4-1a93-1575-7f146511d709	2021-05-20 14:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:34:48.853+03	2021-05-20 14:34:48.859+03	
473ddcf5-1c21-ddae-9e8d-ba1a52424d58	2021-05-20 14:35:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:35:10.852+03	2021-05-20 14:35:10.859+03	
85db155e-ed85-6c6a-2e0f-e5a2c085ee4b	2021-05-20 14:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:35:30.852+03	2021-05-20 14:35:30.86+03	
3d490566-eade-9b26-a0a5-97b2558a8bc4	2021-05-20 14:35:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:35:51.852+03	2021-05-20 14:35:51.859+03	
6306682d-3240-1993-f9b0-7a23172a9c94	2021-05-20 14:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:36:33.852+03	2021-05-20 14:36:33.86+03	
5036fe2a-358e-1d49-5b56-53a95385311a	2021-05-20 14:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:36:54.853+03	2021-05-20 14:36:54.859+03	
b73967ba-a796-bb47-88fc-3d942dd115dd	2021-05-20 14:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:37:14.853+03	2021-05-20 14:37:14.86+03	
f3d21a49-cfa7-7ecb-c1b4-00c97a8e73fa	2021-05-20 14:38:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:38:06.854+03	2021-05-20 14:38:06.86+03	
e704ee35-a326-3349-4d95-366238af5900	2021-05-20 14:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:38:27.853+03	2021-05-20 14:38:27.86+03	
6f122fb1-28eb-f889-f6f3-7f27a31c693a	2021-05-20 14:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:38:48.852+03	2021-05-20 14:38:48.861+03	
ac41c872-41b3-8f0b-937f-44d518092452	2021-05-20 14:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:39:18.853+03	2021-05-20 14:39:18.866+03	
e1062b18-f767-5945-5ac1-ed91080061b8	2021-05-20 14:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:39:39.853+03	2021-05-20 14:39:39.861+03	
7acea3be-3417-050f-9f62-9054c24ce1dd	2021-05-20 14:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:39:49.853+03	2021-05-20 14:39:49.865+03	
cf7bcb58-8323-b993-1ea5-9751660edece	2021-05-20 14:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:39:59.853+03	2021-05-20 14:39:59.862+03	
f2c58623-5733-62af-85c1-987908c93aaf	2021-05-20 14:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:40:09.853+03	2021-05-20 14:40:09.91+03	
f425bc09-6a9d-0d59-ed92-f2a958c8de81	2021-05-20 14:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:40:19.853+03	2021-05-20 14:40:19.869+03	
909ebb85-1b52-8e58-37e8-e6e8f3a9d921	2021-05-20 14:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:40:40.852+03	2021-05-20 14:40:40.859+03	
de9c9eff-5666-47c7-add8-1832f12dc528	2021-05-20 14:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:41:00.853+03	2021-05-20 14:41:00.859+03	
29c9ee5a-b309-fa4d-9f53-ce0482fbb51d	2021-05-20 14:41:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:41:41.853+03	2021-05-20 14:41:41.861+03	
07b93ae4-6f21-d5e4-e970-dd0d374a8a58	2021-05-20 14:42:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:42:01.854+03	2021-05-20 14:42:01.891+03	
ecb1e188-2ff7-9a06-3f84-7e5c8820244e	2021-05-20 14:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:42:23.853+03	2021-05-20 14:42:23.86+03	
57a7870e-07c7-f8e3-6a73-75af0fd37992	2021-05-20 14:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:42:43.853+03	2021-05-20 14:42:43.865+03	
cbb915b7-996e-719e-8f68-3a68457ca6ba	2021-05-20 14:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:43:03.853+03	2021-05-20 14:43:03.86+03	
80bd2992-4fc1-0478-7b77-0a069ae71750	2021-05-20 14:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:43:23.853+03	2021-05-20 14:43:23.861+03	
0e45f907-b7d6-b162-7e4b-d84a028414f3	2021-05-20 14:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:44:04.853+03	2021-05-20 14:44:04.859+03	
fa861bb6-70dc-8971-eef6-8efd1a10e911	2021-05-20 14:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:44:24.853+03	2021-05-20 14:44:24.859+03	
5cac9e13-f552-5115-0246-6d424f90ecb9	2021-05-20 14:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:44:35.852+03	2021-05-20 14:44:35.859+03	
718757c5-441c-310b-f2cb-1fec87d4ed23	2021-05-20 14:44:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:44:55.853+03	2021-05-20 14:44:55.861+03	
074cacd8-eaa3-b8fb-db60-9ef96a6717a7	2021-05-20 14:45:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:45:16.854+03	2021-05-20 14:45:16.863+03	
15978180-6be4-b655-488e-9b5720b1f78b	2021-05-20 14:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:45:27.853+03	2021-05-20 14:45:27.86+03	
cd7091a9-fc6b-574c-b330-236d63042963	2021-05-20 14:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:45:47.853+03	2021-05-20 14:45:47.86+03	
ae4a7239-c777-dc4d-dd46-1a31e2d7fb48	2021-05-20 14:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:22:30.852+03	2021-05-20 14:22:30.859+03	
4c86a759-c304-3923-d7a5-1107c5d4bfab	2021-05-20 14:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:22:50.853+03	2021-05-20 14:22:50.86+03	
ed458e41-1c2c-3290-2871-b04cfcc32f61	2021-05-20 14:23:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:23:11.853+03	2021-05-20 14:23:11.877+03	
72d4a726-e921-b4f8-a2d0-1bca8df0c2af	2021-05-20 14:23:22.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:23:22.859+03	2021-05-20 14:23:22.889+03	
07d03b92-fb54-00ae-915f-2febc3c14b86	2021-05-20 14:23:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:23:33.853+03	2021-05-20 14:23:33.879+03	
89b363b2-de17-a11b-593b-be14f8491cae	2021-05-20 14:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:23:53.853+03	2021-05-20 14:23:53.861+03	
6b612a85-6c1e-b634-1c03-f44066cc9f8e	2021-05-20 14:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:24:03.853+03	2021-05-20 14:24:03.861+03	
c7e47592-9650-ce7b-c943-2180b38d13fe	2021-05-20 14:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:24:24.852+03	2021-05-20 14:24:24.861+03	
05242835-e288-c09b-31c3-1dcd9a7822f5	2021-05-20 14:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:24:44.852+03	2021-05-20 14:24:44.877+03	
032b9904-3403-b128-219d-04ebc1f9c033	2021-05-20 14:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:25:04.852+03	2021-05-20 14:25:04.863+03	
23778e63-123f-f89d-be9e-2fb7d206d512	2021-05-20 14:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:25:25.852+03	2021-05-20 14:25:25.87+03	
ae179e56-2c89-73d5-baf0-6732119f4c87	2021-05-20 14:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:25:35.852+03	2021-05-20 14:25:35.862+03	
ba6fe109-2b0a-3af0-26f7-c923816c1ae0	2021-05-20 14:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:25:45.852+03	2021-05-20 14:25:45.88+03	
285b1c6e-c7cd-cd0e-f2e0-21e7075ed97f	2021-05-20 14:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:26:05.853+03	2021-05-20 14:26:05.864+03	
4dc8c4ab-28ab-50b1-05c8-3d1b006d53c8	2021-05-20 14:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:26:25.853+03	2021-05-20 14:26:25.86+03	
363fec8c-b752-d666-a6a4-6d7a68c09323	2021-05-20 14:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:26:45.853+03	2021-05-20 14:26:45.859+03	
fe4413ee-5a97-23d4-9291-d8395e5c922d	2021-05-20 14:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:27:06.853+03	2021-05-20 14:27:06.868+03	
f54d2c53-3c26-3a79-aba1-12c366cdb56b	2021-05-20 14:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:27:26.853+03	2021-05-20 14:27:26.861+03	
60e11682-2544-73e2-3ee0-18a1995827af	2021-05-20 14:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:27:47.853+03	2021-05-20 14:27:47.86+03	
bc8c1f81-317f-f34c-11c2-49a18d8b850d	2021-05-20 14:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:27:57.853+03	2021-05-20 14:27:57.876+03	
c216b649-036d-b1a1-a1d6-9e501be930aa	2021-05-20 14:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:28:18.852+03	2021-05-20 14:28:18.859+03	
01febe32-0352-b088-2074-6a8bc0a87674	2021-05-20 14:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:28:38.852+03	2021-05-20 14:28:38.859+03	
474801d3-2392-5fbe-55c4-a10c5eb3082b	2021-05-20 14:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:28:58.852+03	2021-05-20 14:28:58.858+03	
e2288a0a-c1ce-8420-3c71-0cfc4b486df2	2021-05-20 14:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:29:19.852+03	2021-05-20 14:29:19.86+03	
8488cd4e-ff41-434b-9986-5f772c3272d5	2021-05-20 14:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:29:39.852+03	2021-05-20 14:29:39.859+03	
36403417-4f7d-26d6-509c-46c67fd1f1ce	2021-05-20 14:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 14:30:00.853+03	2021-05-20 14:30:00.861+03	ERROR
811bbdb8-fcae-8df0-40b3-36d65ba7930d	2021-05-20 14:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:30:09.852+03	2021-05-20 14:30:09.874+03	
cc49f36e-2528-c085-1389-06c88ea73e9f	2021-05-20 14:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:30:19.853+03	2021-05-20 14:30:19.866+03	
61722ccd-65fb-254a-f0f7-314063b321c9	2021-05-20 14:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:30:40.852+03	2021-05-20 14:30:40.859+03	
0e674583-95f8-24b0-95c9-5545f33fb521	2021-05-20 14:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:31:00.852+03	2021-05-20 14:31:00.86+03	
8c5c62e3-b98a-bb71-3fb2-dba27aba7bce	2021-05-20 14:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:31:20.852+03	2021-05-20 14:31:20.861+03	
8ebfc045-2d9c-f0ca-978e-1f8435deb7ec	2021-05-20 14:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:31:40.853+03	2021-05-20 14:31:40.861+03	
1a18ccec-0df3-d906-4d2c-8674bdb9807e	2021-05-20 14:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:32:00.853+03	2021-05-20 14:32:00.865+03	
150f8ad9-a8b1-17ae-f07c-9415da936120	2021-05-20 14:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:32:10.853+03	2021-05-20 14:32:10.873+03	
3d9530f2-28c3-e563-ad61-1afa5387c336	2021-05-20 14:32:21.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:32:21.862+03	2021-05-20 14:32:21.894+03	
bf0d89e0-579a-b1e5-8a28-bcd4d4caf780	2021-05-20 14:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:32:32.853+03	2021-05-20 14:32:32.913+03	
b9b34388-41d0-b653-3edc-b071e0e1ba0c	2021-05-20 14:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:32:53.852+03	2021-05-20 14:32:53.861+03	
aadb4dcc-6593-4f6f-12de-d90b26dd17d9	2021-05-20 14:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:33:14.852+03	2021-05-20 14:33:14.86+03	
04750c56-4f05-4a0b-a8bc-4758b072ca4f	2021-05-20 14:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:33:35.853+03	2021-05-20 14:33:35.862+03	
c5101a1f-19ed-f149-455f-d15d30d3bec7	2021-05-20 14:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:33:57.852+03	2021-05-20 14:33:57.86+03	
1091e829-875a-376e-3a1d-5e364d34e4d2	2021-05-20 14:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:34:17.852+03	2021-05-20 14:34:17.86+03	
d5ac5e0e-da5d-7c12-4394-2f03e4314f2e	2021-05-20 14:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:34:37.853+03	2021-05-20 14:34:37.861+03	
4ff2b323-f73c-f41c-7e05-5181857a81f7	2021-05-20 14:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:34:59.853+03	2021-05-20 14:34:59.859+03	
e5210543-0dae-7e24-1edd-4414ec41855b	2021-05-20 14:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:35:20.852+03	2021-05-20 14:35:20.86+03	
c3da310a-b6f9-8fe0-0e2f-6e39726ee60a	2021-05-20 14:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:35:40.853+03	2021-05-20 14:35:40.859+03	
18afd41a-b8c4-a275-3b57-ac65fd4587a0	2021-05-20 14:36:01.857	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:36:01.857+03	2021-05-20 14:36:01.882+03	
cf6f5fa6-07c6-d641-b756-6c2b97eb3122	2021-05-20 14:36:12.875	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:36:12.874+03	2021-05-20 14:36:12.903+03	
efc54243-a10f-cd04-b631-8ef67f8ff3c8	2021-05-20 14:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:36:23.852+03	2021-05-20 14:36:23.859+03	
1d9ac90c-bbef-91a2-9370-6a8492e2c1ef	2021-05-20 14:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:36:43.853+03	2021-05-20 14:36:43.864+03	
92862d62-cf79-8437-f4a3-dd1808b837f0	2021-05-20 14:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:37:04.853+03	2021-05-20 14:37:04.86+03	
47c88f44-7a8e-de43-b979-0e02871b1045	2021-05-20 14:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:37:25.852+03	2021-05-20 14:37:25.859+03	
7be35878-5192-7c39-8667-fb7f9cc24974	2021-05-20 14:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:37:35.853+03	2021-05-20 14:37:35.86+03	
9e211fd0-846f-567a-fa1e-a2c4592fca04	2021-05-20 14:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:37:45.853+03	2021-05-20 14:37:45.869+03	
f1f0f29e-37f8-2ec7-96ef-fdd7f5cad4db	2021-05-20 14:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:37:55.853+03	2021-05-20 14:37:55.86+03	
927b8a16-768b-d751-de70-74094cb85c1e	2021-05-20 14:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:38:17.853+03	2021-05-20 14:38:18.129+03	
f806f9bb-9718-1142-bf65-c8c3c7785fda	2021-05-20 14:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:38:38.852+03	2021-05-20 14:38:38.858+03	
f64553b7-f588-87d4-185e-f193d3327c7c	2021-05-20 14:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:38:58.852+03	2021-05-20 14:38:58.863+03	
04380488-0019-8db3-2e40-6152a9ef7a4f	2021-05-20 14:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:39:08.853+03	2021-05-20 14:39:08.88+03	
7db0c90e-835f-a5af-8f32-adeaf459a824	2021-05-20 14:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:39:29.853+03	2021-05-20 14:39:29.863+03	
bdc4ed54-255f-2f02-17e1-f898e1ec81fc	2021-05-20 14:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 14:40:00.853+03	2021-05-20 14:40:00.859+03	ERROR
1a495505-fc4e-8700-00eb-293f5f2e7413	2021-05-20 14:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:40:30.852+03	2021-05-20 14:40:30.862+03	
4b485977-d6e8-52f0-2cd4-09fd0f42a268	2021-05-20 14:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:40:50.852+03	2021-05-20 14:40:50.866+03	
cfc01880-e188-dc92-bd1b-8eae13fa2a54	2021-05-20 14:41:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:41:10.853+03	2021-05-20 14:41:10.861+03	
fc6192ee-cd7c-25eb-0d1d-462ac28c2b9a	2021-05-21 03:08:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:08:11.852+03	2021-05-21 03:08:11.859+03	
ba373f83-b5ee-f277-9867-e49679bef283	2021-05-20 14:41:20.875	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:41:20.874+03	2021-05-20 14:41:20.895+03	
d86482e7-0798-4ab4-1043-a9f666492632	2021-05-20 15:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:02:05.853+03	2021-05-20 15:02:05.86+03	
66112926-e41c-a1b6-7870-c73ad5da4dc1	2021-05-20 14:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:41:31.853+03	2021-05-20 14:41:31.889+03	
f9296de0-16a9-50e2-4e1c-99649647e6aa	2021-05-20 14:41:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:41:51.853+03	2021-05-20 14:41:51.865+03	
1febe6cf-6d88-af76-7294-c89d84befd61	2021-05-20 15:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:02:26.853+03	2021-05-20 15:02:26.86+03	
12e752b3-30d9-1084-c971-054b1db2a046	2021-05-20 14:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:42:12.853+03	2021-05-20 14:42:12.862+03	
d443ef9a-c90d-c5bf-409c-6ffaf0dd2b21	2021-05-20 14:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:42:33.853+03	2021-05-20 14:42:33.86+03	
8f39fd2a-ebb1-2bf3-22f3-b0d1433a6da3	2021-05-20 15:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:02:47.852+03	2021-05-20 15:02:47.859+03	
9e7fc7e0-bc40-b8ca-aedb-239bbe4ec87d	2021-05-20 14:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:42:53.853+03	2021-05-20 14:42:53.861+03	
88d62df6-9a41-38f8-3826-a6e7c218fda3	2021-05-20 14:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:43:13.853+03	2021-05-20 14:43:13.861+03	
fa9df836-5855-97d4-09ff-579487d7088f	2021-05-20 15:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:03:07.853+03	2021-05-20 15:03:07.858+03	
b00fa982-831e-fe26-3384-5bca5f34e926	2021-05-20 14:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:43:33.853+03	2021-05-20 14:43:33.86+03	
3c5a52c5-876d-423f-65eb-7f71ea6cbcc0	2021-05-20 14:43:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:43:43.877+03	2021-05-20 14:43:43.906+03	
c80a514d-4eae-ddbb-87bf-4bbaa9cee0cc	2021-05-20 15:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:03:27.853+03	2021-05-20 15:03:27.861+03	
d4f92424-d33b-f382-7106-403252860e47	2021-05-20 14:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:43:54.852+03	2021-05-20 14:43:54.873+03	
9e9c7b42-03d0-a310-6f69-c5f235656680	2021-05-20 14:44:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:44:14.853+03	2021-05-20 14:44:14.859+03	
a40186b2-625b-c65b-9a84-9ae741b8a0f2	2021-05-20 15:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:03:47.853+03	2021-05-20 15:03:47.859+03	
5007a6b2-9740-f4e9-5c7d-67590fc45eae	2021-05-20 14:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:44:45.852+03	2021-05-20 14:44:45.861+03	
fed58d4e-d265-2328-39bb-b505a7555370	2021-05-20 14:45:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:45:06.854+03	2021-05-20 14:45:06.862+03	
357de788-ee91-76fb-da17-3a46dd861d67	2021-05-20 15:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:04:07.853+03	2021-05-20 15:04:07.859+03	
5de59848-fc38-2788-17ae-ba2386c799b6	2021-05-20 14:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:45:37.853+03	2021-05-20 14:45:37.862+03	
c0111115-0311-ad5f-bac1-56f73e575f95	2021-05-20 14:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:46:07.853+03	2021-05-20 14:46:07.859+03	
9391e85b-490f-01a9-7f47-eb1cd650d659	2021-05-20 15:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:04:37.853+03	2021-05-20 15:04:37.873+03	
14c08449-d1db-d470-6255-6254d8bd0378	2021-05-20 14:46:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:46:28.853+03	2021-05-20 14:46:28.869+03	
4821fc91-f158-054e-7cd8-fdcc824ad389	2021-05-20 14:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:46:48.853+03	2021-05-20 14:46:48.86+03	
2ee42993-b887-db75-eee2-16e274f25a23	2021-05-20 15:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:04:58.852+03	2021-05-20 15:04:58.86+03	
e9f95d1d-8a04-b2d3-96b4-11031e2321b9	2021-05-20 14:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:47:08.853+03	2021-05-20 14:47:08.86+03	
36a71ad8-c4c2-32f1-8d42-57473837b833	2021-05-20 14:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:47:18.853+03	2021-05-20 14:47:18.863+03	
dd1ba285-1cb7-acde-9bfa-0f117180fb3c	2021-05-20 15:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:05:18.852+03	2021-05-20 15:05:18.859+03	
354dbf23-7fb1-c2e1-515c-9eb289dcf94e	2021-05-20 14:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:47:38.853+03	2021-05-20 14:47:38.86+03	
dddf08e1-180d-2e25-7999-29cc2cf646e2	2021-05-20 14:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:47:58.853+03	2021-05-20 14:47:58.86+03	
99a81d4d-220e-d8d0-9165-e8d6248fc90c	2021-05-20 15:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:05:38.853+03	2021-05-20 15:05:38.859+03	
1387ad0f-4c03-5c38-44f2-6d841a8bc90d	2021-05-20 14:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:48:19.852+03	2021-05-20 14:48:19.859+03	
16a3aaf7-36f0-64c9-db3f-179e07221126	2021-05-20 15:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:05:59.853+03	2021-05-20 15:05:59.86+03	
ab9f6a5c-d071-2031-2397-8ba8b49bf8b7	2021-05-20 15:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:06:19.853+03	2021-05-20 15:06:19.864+03	
ab551894-dae5-cd28-0175-04e383fa4727	2021-05-20 15:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:06:39.853+03	2021-05-20 15:06:39.86+03	
e63139fc-1cb8-eb59-d8ca-25b083cd59a0	2021-05-20 15:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:07:12.852+03	2021-05-20 15:07:12.859+03	
5dbc02b9-e4d5-2af1-f493-63cd5d32aaae	2021-05-20 15:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:07:32.853+03	2021-05-20 15:07:32.859+03	
27100f35-dc20-1d5c-6389-b69e764eae52	2021-05-20 15:07:53.867	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:07:53.866+03	2021-05-20 15:07:53.875+03	
0867f0a2-111d-a3ca-5671-e35a3f71be58	2021-05-20 15:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:08:14.853+03	2021-05-20 15:08:14.859+03	
9e34abc2-98c0-cf12-b94f-e147784a8991	2021-05-20 15:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:08:35.853+03	2021-05-20 15:08:35.859+03	
35d930f3-580c-87c9-fbab-dfde83e7124f	2021-05-20 15:08:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:08:56.852+03	2021-05-20 15:08:56.859+03	
ef7d8a64-366e-9d8c-4051-f4e787d01004	2021-05-20 15:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:09:16.853+03	2021-05-20 15:09:16.862+03	
b3e9f56b-6971-26ea-1a31-88de8a9ac7dd	2021-05-20 15:09:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:09:37.853+03	2021-05-20 15:09:37.86+03	
2a08dcbc-5a32-5b42-6e3e-5b722bcc8d09	2021-05-20 15:09:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:09:57.853+03	2021-05-20 15:09:57.86+03	
f17072a5-b6fc-36ab-0cae-b7854ac3d114	2021-05-20 15:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:10:08.852+03	2021-05-20 15:10:08.859+03	
ce2da2a8-a730-24a1-a6f1-b8df23b3105c	2021-05-20 15:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:10:28.853+03	2021-05-20 15:10:28.866+03	
f65e328f-15dc-32c4-e195-bd2d668f67d5	2021-05-20 15:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:10:48.853+03	2021-05-20 15:10:48.861+03	
036a0b04-943b-980d-cf58-9f2004d25270	2021-05-20 15:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:11:08.853+03	2021-05-20 15:11:08.86+03	
4751880b-33c0-2201-f6ee-b41182890b71	2021-05-20 15:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:11:29.852+03	2021-05-20 15:11:29.86+03	
0cd7700a-26d4-d11c-db65-dda6cb206800	2021-05-20 15:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:11:49.853+03	2021-05-20 15:11:49.859+03	
a6611835-7161-2b71-9b05-d698cee0cadb	2021-05-20 15:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:12:10.852+03	2021-05-20 15:12:10.859+03	
fabc7c64-3349-12a4-beb2-2159f0dd245d	2021-05-20 15:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:12:30.853+03	2021-05-20 15:12:30.86+03	
e96a7b30-3f34-373b-91e1-48dc1fbfd5b3	2021-05-20 15:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:12:51.853+03	2021-05-20 15:12:51.861+03	
b8dc27a6-0a6c-b4f0-82e4-afc2fe31f5cb	2021-05-20 15:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:13:12.853+03	2021-05-20 15:13:12.859+03	
0258c923-3fb8-d342-7827-bab49430940f	2021-05-20 15:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:13:33.852+03	2021-05-20 15:13:33.859+03	
eda949d2-f739-8292-fb5d-f0e0af772600	2021-05-20 15:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:13:53.852+03	2021-05-20 15:13:53.859+03	
c8dca703-4d4a-b9b2-98f6-0f0b2943b78c	2021-05-20 15:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:14:13.853+03	2021-05-20 15:14:13.87+03	
fcaad236-d29e-e27d-9eca-9156357e0d44	2021-05-20 15:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:14:34.853+03	2021-05-20 15:14:34.859+03	
c2caff26-0603-f6f3-e844-2e095b3e625b	2021-05-20 15:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:14:55.853+03	2021-05-20 15:14:55.859+03	
869c33ac-584b-7226-5c5a-5d8f33729faa	2021-05-20 15:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:15:15.853+03	2021-05-20 15:15:15.859+03	
9a4f6813-4ead-1e93-4255-fffdb981f0a8	2021-05-20 15:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:15:37.853+03	2021-05-20 15:15:37.859+03	
09e76143-7e2b-d7c4-6e1b-8081d0ff70d2	2021-05-20 15:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:15:58.853+03	2021-05-20 15:15:58.86+03	
412e7634-6a8b-c774-7dcb-c433aa9e8595	2021-05-20 15:04:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:04:17.853+03	2021-05-20 15:04:17.859+03	
b5e8ca72-375f-82ba-a2b1-fd8b88280af3	2021-05-20 14:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:45:57.853+03	2021-05-20 14:45:57.873+03	
718ae559-087a-d638-5d94-20055d6a4fef	2021-05-20 20:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:22:14.853+03	2021-05-20 20:22:14.862+03	
471b287b-e3a0-10d3-35e7-218f95789011	2021-05-20 14:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:46:17.853+03	2021-05-20 14:46:17.868+03	
d2bf38d7-e62f-99f3-b114-4ed215bfd95f	2021-05-20 15:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:04:48.852+03	2021-05-20 15:04:48.858+03	
a51a5e6c-80eb-2dc7-9a52-43b5fef04621	2021-05-20 14:46:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:46:38.853+03	2021-05-20 14:46:38.859+03	
06829f18-0209-ab3a-fdd1-dac8c037673f	2021-05-20 14:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:46:58.853+03	2021-05-20 14:46:58.86+03	
209d94f7-3873-9383-cf9d-d4f39b790531	2021-05-20 15:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:05:08.852+03	2021-05-20 15:05:08.858+03	
643a22a9-9dba-bb74-0b20-a72e4860ef0d	2021-05-20 14:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:47:28.853+03	2021-05-20 14:47:28.859+03	
ce3b606f-1ce7-46f5-77d2-ce6e51194ce4	2021-05-20 14:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:47:48.853+03	2021-05-20 14:47:48.861+03	
1de3856c-c644-2e30-8694-806e6f755391	2021-05-20 15:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:05:28.853+03	2021-05-20 15:05:28.859+03	
e069f60e-ba5d-833e-501e-b5df53cfdc0d	2021-05-20 14:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:48:08.853+03	2021-05-20 14:48:08.861+03	
855654f0-e2ba-9dd9-7268-bc40e69aef47	2021-05-20 14:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:48:29.852+03	2021-05-20 14:48:29.878+03	
bafca156-4cdb-e626-9b04-c5744d6813c5	2021-05-20 15:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:05:49.852+03	2021-05-20 15:05:49.862+03	
16e44771-ddf8-33e1-c8c0-212e016fe7d5	2021-05-20 14:48:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:48:39.853+03	2021-05-20 14:48:39.877+03	
c5dfe070-0623-4ee6-f0a1-07ac9b3063bd	2021-05-20 14:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:48:50.853+03	2021-05-20 14:48:50.86+03	
5c58767a-6160-cd3c-1854-286737165c2c	2021-05-20 15:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:06:09.853+03	2021-05-20 15:06:09.872+03	
134b3c92-0156-058a-959d-ed6c76e8ada9	2021-05-20 14:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:49:00.853+03	2021-05-20 14:49:00.86+03	
a4a8600a-9896-2370-28b8-9ebff6acd840	2021-05-20 14:49:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:49:11.852+03	2021-05-20 14:49:11.859+03	
dc747b5a-70ba-476c-9810-67f033b06144	2021-05-20 15:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:06:29.853+03	2021-05-20 15:06:29.864+03	
271f70fe-f5e9-8f2b-fdbb-33434e3ba463	2021-05-20 14:49:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:49:21.852+03	2021-05-20 14:49:21.863+03	
370f79c3-f0b5-c80f-8464-34366a57fe47	2021-05-20 14:49:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:49:31.853+03	2021-05-20 14:49:31.862+03	
8c240052-2220-e706-9c8b-6d48c0bf6ce3	2021-05-20 15:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:06:50.853+03	2021-05-20 15:06:50.862+03	
f1631141-91c8-f415-d3ba-2a113ec48934	2021-05-20 14:49:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:49:41.853+03	2021-05-20 14:49:41.872+03	
f0002f99-eda0-d5fa-004b-8727d44204df	2021-05-20 14:49:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:49:51.854+03	2021-05-20 14:49:51.862+03	
22abdd14-db5a-a696-8485-3e358e0b86d0	2021-05-20 15:07:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:07:01.853+03	2021-05-20 15:07:01.913+03	
a7ea9fe1-291a-e242-d744-b8822030066c	2021-05-20 14:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 14:50:00.852+03	2021-05-20 14:50:00.86+03	ERROR
6a6ec289-693c-e3c0-ef7d-82cca39ad185	2021-05-20 14:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 14:50:02.852+03	2021-05-20 14:50:02.86+03	
67b7b80f-ba34-ebd3-cd49-c009cc3dc2b4	2021-05-20 15:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:07:22.853+03	2021-05-20 15:07:22.859+03	
e2c960ce-01c5-023a-319f-f6e8da9e3d56	2021-05-20 15:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:07:43.852+03	2021-05-20 15:07:43.874+03	
d74240b6-c14a-f74a-9d5d-7c0b228bd08b	2021-05-20 15:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:08:04.853+03	2021-05-20 15:08:04.861+03	
7bfaca75-c4b8-8b72-c9d1-e5f3238c3432	2021-05-20 15:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:08:24.853+03	2021-05-20 15:08:24.863+03	
0d0073df-b71a-ab88-66bd-ef45a000552d	2021-05-20 15:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:08:45.853+03	2021-05-20 15:08:45.859+03	
8d3289c3-a42b-b75c-7ca5-a9ecffdb6b94	2021-05-20 15:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:09:06.853+03	2021-05-20 15:09:06.86+03	
f5be34a9-ee5e-2b72-fd93-607c9a068a66	2021-05-20 15:09:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:09:26.853+03	2021-05-20 15:09:26.859+03	
21aa65e4-6512-35a2-bac2-0c12e39ff494	2021-05-20 15:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:09:47.853+03	2021-05-20 15:09:47.859+03	
5476ff77-98e4-abd1-aa1d-4bd40fda9a4c	2021-05-20 15:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 15:10:00.852+03	2021-05-20 15:10:00.858+03	ERROR
561c5c16-4af2-f576-32c8-540fed4806bd	2021-05-20 15:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:10:18.852+03	2021-05-20 15:10:18.859+03	
ae531dc0-e8bd-9e88-15d1-1064c513e7dc	2021-05-20 15:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:10:38.853+03	2021-05-20 15:10:38.861+03	
bb67441e-a51b-fe96-fd0d-4dd41acb5eaf	2021-05-20 15:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:10:58.853+03	2021-05-20 15:10:58.86+03	
78005a99-3c01-165f-cdad-a1a0f737d847	2021-05-20 15:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:11:18.853+03	2021-05-20 15:11:18.859+03	
ecff9b47-f355-094c-5c6d-1d004d765048	2021-05-20 15:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:11:39.853+03	2021-05-20 15:11:39.861+03	
66b51625-ac6b-0414-d974-8cbd1be1dfb1	2021-05-20 15:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:12:00.852+03	2021-05-20 15:12:00.86+03	
270bc3bd-60f2-8c16-507b-ab54702ab6b3	2021-05-20 15:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:12:20.853+03	2021-05-20 15:12:20.859+03	
12645ace-aefe-a31e-a099-1b3f37c5417e	2021-05-20 15:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:12:41.852+03	2021-05-20 15:12:41.862+03	
695a0aa6-8f01-62b8-6fb7-4bd161b42d5a	2021-05-20 15:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:13:02.853+03	2021-05-20 15:13:02.86+03	
f36316aa-5a1b-2236-2e6a-f7f53520b64f	2021-05-20 15:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:13:22.853+03	2021-05-20 15:13:22.859+03	
4884e717-afb1-279a-8097-49264b4eb36e	2021-05-20 15:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:13:43.852+03	2021-05-20 15:13:43.859+03	
70d489a3-5efe-094a-0af8-27b329d53ff1	2021-05-20 15:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:14:03.852+03	2021-05-20 15:14:03.859+03	
147bc002-a56d-e8e5-f897-bfc2d0fbd7ce	2021-05-20 15:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:14:24.852+03	2021-05-20 15:14:24.86+03	
baef34b5-ef70-6be4-f7a1-0e25a9943ae0	2021-05-20 15:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:14:45.852+03	2021-05-20 15:14:45.87+03	
2109b2c4-834b-0bb9-54fb-9c5cbc5b9701	2021-05-20 15:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:15:05.853+03	2021-05-20 15:15:05.862+03	
5d7e500d-4910-fbeb-4204-dff92103ea28	2021-05-20 15:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:15:26.853+03	2021-05-20 15:15:26.86+03	
90fae736-c2a2-a0f9-a1ae-ddfe1e0b1798	2021-05-20 15:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:15:48.853+03	2021-05-20 15:15:48.859+03	
a75161b9-10ec-9abb-9c69-238c0427f1d1	2021-05-20 15:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:16:09.852+03	2021-05-20 15:16:09.859+03	
3926080b-c97b-7789-3167-34f5c5f52b74	2021-05-20 15:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:16:29.853+03	2021-05-20 15:16:29.86+03	
5df3dc4a-7525-34aa-5b2d-f43edead225c	2021-05-20 15:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:16:49.853+03	2021-05-20 15:16:49.86+03	
052cea94-747f-e55c-ab7e-20e10023e5aa	2021-05-20 15:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:17:10.853+03	2021-05-20 15:17:10.86+03	
58797062-3432-02bb-6b21-f189072fc753	2021-05-20 15:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:17:20.853+03	2021-05-20 15:17:20.863+03	
d522f15c-2758-51e1-855f-d7fe6867fb7a	2021-05-20 15:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:17:30.853+03	2021-05-20 15:17:30.859+03	
3f37b434-edc8-d9c7-e677-2a2a93a343b3	2021-05-20 15:17:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:17:41.852+03	2021-05-20 15:17:41.865+03	
650b2689-be36-aa9c-9db7-6ecb7bdb7d1d	2021-05-20 15:17:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:17:51.852+03	2021-05-20 15:17:51.859+03	
2c177e41-b805-cbac-ee69-42002dcf6c59	2021-05-20 15:18:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:18:01.852+03	2021-05-20 15:18:01.859+03	
79057fb5-0a62-3655-e1f8-eee46548c315	2021-05-20 15:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:18:11.853+03	2021-05-20 15:18:11.859+03	
771e894a-8fc4-0ce3-c28f-b72a0d974aa7	2021-05-20 15:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:20:35.852+03	2021-05-20 15:20:35.859+03	
d58629be-3e83-b37e-ae0c-76d275418b08	2021-05-20 15:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:20:55.852+03	2021-05-20 15:20:55.859+03	
aa24d518-c83d-9675-29dd-76ede1182423	2021-05-20 15:21:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:21:15.853+03	2021-05-20 15:21:15.861+03	
d8257ff3-065c-7113-6b73-d34add3f55db	2021-05-20 15:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:21:36.852+03	2021-05-20 15:21:36.861+03	
aad5868a-2703-5f3d-9372-33283248b866	2021-05-20 15:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:21:56.853+03	2021-05-20 15:21:56.86+03	
de5c1cc6-0df4-6dee-b106-191cb0e2eb42	2021-05-20 15:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:22:17.853+03	2021-05-20 15:22:17.858+03	
2256d461-8bc4-c209-bada-a508c205ef25	2021-05-20 15:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:22:38.853+03	2021-05-20 15:22:38.86+03	
94724a7a-a60d-e8af-5c99-958157cb8c40	2021-05-20 15:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:22:59.853+03	2021-05-20 15:22:59.859+03	
d5715379-629e-8bec-d60c-fe2e4b5ea753	2021-05-20 15:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:23:20.852+03	2021-05-20 15:23:20.861+03	
58cb0ef3-dabf-e282-b570-86ad1a2cfa8a	2021-05-20 15:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:23:40.852+03	2021-05-20 15:23:40.859+03	
202315ac-a962-8ce3-6996-c06035cec7eb	2021-05-20 15:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:24:00.852+03	2021-05-20 15:24:00.86+03	
a73bf6e2-81c6-2d58-68ba-dc2c311c6532	2021-05-20 15:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:24:20.852+03	2021-05-20 15:24:20.859+03	
27b8b978-9195-6a05-b5d2-19ef889e61aa	2021-05-20 15:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:24:40.852+03	2021-05-20 15:24:40.861+03	
2273f9d1-70cf-54d3-0993-500ef73c5ffe	2021-05-20 15:25:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:25:01.854+03	2021-05-20 15:25:01.868+03	
31e63efb-5186-960d-d1a8-881ddde673ee	2021-05-20 15:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:25:22.852+03	2021-05-20 15:25:22.867+03	
8f87f330-18a8-9baa-f63d-6ef9cf0ffc17	2021-05-20 15:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:25:42.852+03	2021-05-20 15:25:42.864+03	
6b1e8cf7-fb8a-eada-59d6-6f1da4a35072	2021-05-20 15:26:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:26:02.852+03	2021-05-20 15:26:02.87+03	
742290c5-8329-81b3-452d-3be2a5ec5cdd	2021-05-20 15:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:26:23.852+03	2021-05-20 15:26:23.86+03	
b63cea2f-e453-0808-4134-dff0e1a063f2	2021-05-20 15:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:26:43.852+03	2021-05-20 15:26:43.859+03	
d1b7fea9-c347-f7e4-9086-bd687b46c445	2021-05-20 15:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:27:03.852+03	2021-05-20 15:27:03.86+03	
f1796870-8b6e-01e4-5e40-adaf653aebaf	2021-05-20 15:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:27:23.853+03	2021-05-20 15:27:23.862+03	
c8fed716-787a-24ee-129e-39e689ea9a35	2021-05-20 15:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:27:45.852+03	2021-05-20 15:27:45.862+03	
94c8f33d-bb6d-dc95-7edc-077366959a58	2021-05-20 15:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:28:05.853+03	2021-05-20 15:28:05.861+03	
ad266edd-ad24-0b2b-120b-e649cf39bc0e	2021-05-20 15:28:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:28:26.852+03	2021-05-20 15:28:26.864+03	
de8bc093-a2e4-f864-470a-f07b0f1a3c48	2021-05-20 15:28:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:28:46.852+03	2021-05-20 15:28:46.859+03	
fbb88707-d2ee-13e4-2c17-9012901948cf	2021-05-20 15:29:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:29:06.852+03	2021-05-20 15:29:06.862+03	
5ff58cff-252b-fd33-13d8-e716da9dd33f	2021-05-20 15:29:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:29:26.852+03	2021-05-20 15:29:26.859+03	
f6fffe67-36b0-2aae-a540-ba59fb3282be	2021-05-20 15:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:29:47.852+03	2021-05-20 15:29:47.859+03	
a10ec611-e99c-8ceb-d39f-bff18dabb664	2021-05-20 15:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 15:30:00.853+03	2021-05-20 15:30:00.859+03	ERROR
415ac42f-bec3-ac90-84d9-a6dccb95bc71	2021-05-20 15:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:30:17.853+03	2021-05-20 15:30:17.86+03	
992ec2bf-54b7-0c1c-47b7-86682f0665a9	2021-05-20 15:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:30:37.853+03	2021-05-20 15:30:37.862+03	
6a619551-48f2-a1bf-5aa1-24d295fd4110	2021-05-20 15:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:30:57.853+03	2021-05-20 15:30:57.861+03	
cdea071e-89d2-8a75-4e1f-d21abb049f9a	2021-05-20 15:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:31:18.852+03	2021-05-20 15:31:18.858+03	
2ef8f096-07b0-8263-4c93-23e5e18d68cc	2021-05-20 15:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:31:38.852+03	2021-05-20 15:31:38.859+03	
94fade45-1ce3-fdc8-744c-6e2974d0b4e7	2021-05-20 15:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:31:58.852+03	2021-05-20 15:31:58.859+03	
8225eccc-ca3d-b0e7-eba4-64ee83f516a7	2021-05-20 15:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:32:18.853+03	2021-05-20 15:32:18.859+03	
4f0fd8ca-b3c8-1e78-b156-b7f1d0e47855	2021-05-20 15:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:32:39.853+03	2021-05-20 15:32:39.86+03	
048120e1-493d-252e-1ed3-90cc4c349389	2021-05-20 15:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:32:59.853+03	2021-05-20 15:32:59.861+03	
fdf6eb5e-fe87-a10a-11f5-db39c1dedaae	2021-05-20 15:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:33:20.852+03	2021-05-20 15:33:20.858+03	
9114207c-bb37-d01b-f895-e0724c819f53	2021-05-20 15:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:33:40.852+03	2021-05-20 15:33:40.861+03	
ad81f743-b5b5-13b5-b1df-deacccbed28e	2021-05-20 15:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:34:00.853+03	2021-05-20 15:34:00.86+03	
0cb2b2f6-f38f-2f13-44fe-495d9d178731	2021-05-20 15:34:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:34:11.853+03	2021-05-20 15:34:11.86+03	
40e70943-52b6-19fd-c078-dee69b2daf5b	2021-05-20 15:34:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:34:31.853+03	2021-05-20 15:34:31.86+03	
0453274f-2c10-8c4f-cf9b-ae6995250261	2021-05-20 15:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:34:52.852+03	2021-05-20 15:34:52.858+03	
c7ecc2a4-efb3-b0f6-6055-fb29095cb1f5	2021-05-20 15:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:35:12.852+03	2021-05-20 15:35:12.869+03	
46b64e95-8305-cbe1-2476-498f8a260c45	2021-05-20 15:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:35:32.853+03	2021-05-20 15:35:32.859+03	
977dbfa1-85be-456a-bafa-aaae38d10bd9	2021-05-20 15:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:35:53.852+03	2021-05-20 15:35:53.86+03	
339c48d5-ef3c-26cf-3a40-d869d361a3be	2021-05-20 15:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:36:13.853+03	2021-05-20 15:36:13.88+03	
82a9b0dc-65f6-9529-fa89-495ee66f990e	2021-05-20 15:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:36:33.853+03	2021-05-20 15:36:33.86+03	
b71a584d-62e7-d5c1-9ebf-7ad099f9d2cf	2021-05-20 15:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:36:54.853+03	2021-05-20 15:36:54.859+03	
5c2f763b-cd99-22db-e628-d9b7f05a569d	2021-05-20 15:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:37:15.853+03	2021-05-20 15:37:15.861+03	
5ed1d6a4-7039-9889-d803-92de38d701bb	2021-05-20 15:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:37:35.853+03	2021-05-20 15:37:35.859+03	
fed9ea18-5cc4-c4f6-13ad-d5681f6c237c	2021-05-20 15:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:37:56.852+03	2021-05-20 15:37:56.861+03	
99b6b816-89de-d315-5b5a-57e752fb4945	2021-05-20 15:38:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:38:16.853+03	2021-05-20 15:38:16.86+03	
4ddfadc6-eda0-8c88-9f83-fd5c975d884d	2021-05-20 15:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:38:38.852+03	2021-05-20 15:38:38.872+03	
4b0b9c87-52d6-3a6d-034a-fc58d995a714	2021-05-20 15:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:38:58.853+03	2021-05-20 15:38:58.86+03	
35dddd8a-2b12-101b-8fbe-83758018c9e8	2021-05-20 15:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:39:18.853+03	2021-05-20 15:39:18.86+03	
c596ecf6-b0cf-c4c6-c63c-359801c89876	2021-05-20 15:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:39:38.853+03	2021-05-20 15:39:38.861+03	
2a7ddecf-6cd4-d9f5-f8b7-2d40329bb62c	2021-05-20 15:39:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:39:58.853+03	2021-05-20 15:39:58.861+03	
59489ec1-3fab-29a0-0713-8f5008ad12ea	2021-05-20 15:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:40:08.853+03	2021-05-20 15:40:08.86+03	
fc7fddcf-e472-7d9c-1712-e9255740bb77	2021-05-20 15:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:40:29.852+03	2021-05-20 15:40:29.858+03	
93f517ea-6886-616f-3a47-467e0e0545bd	2021-05-20 15:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:40:49.853+03	2021-05-20 15:40:49.858+03	
faffe487-11f2-5d6b-303c-4da4f7fb5902	2021-05-20 15:41:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:41:10.853+03	2021-05-20 15:41:10.86+03	
0480f51f-a082-3dbe-ecd0-bf914c13f7f0	2021-05-20 15:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:20:45.852+03	2021-05-20 15:20:45.859+03	
96f2c075-f8e7-2f12-931a-16449b9713c1	2021-05-20 15:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:21:05.853+03	2021-05-20 15:21:05.86+03	
a207dd2e-c8aa-d7fb-9e5c-accb613e7ab7	2021-05-20 15:21:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:21:26.852+03	2021-05-20 15:21:26.86+03	
736e3e87-69d6-bf35-6e86-4155401a14c4	2021-05-20 15:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:21:46.852+03	2021-05-20 15:21:46.859+03	
b74cc5db-c4e7-8274-4cbb-920e8547b7f5	2021-05-20 15:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:22:07.852+03	2021-05-20 15:22:07.858+03	
1c13eb27-1149-2319-073f-90d9ebe27469	2021-05-20 15:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:22:28.852+03	2021-05-20 15:22:28.875+03	
5546f92e-3824-95d2-a25a-421af0c3fa1a	2021-05-20 15:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:22:48.853+03	2021-05-20 15:22:48.862+03	
bf348227-b6da-f9d8-3140-5a99ed3b0c06	2021-05-20 15:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:23:10.852+03	2021-05-20 15:23:10.862+03	
f2614be5-9b3e-882e-255e-4fed16afece6	2021-05-20 15:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:23:30.852+03	2021-05-20 15:23:30.859+03	
67aff2e9-7210-9793-26cf-14432ab2d57e	2021-05-20 15:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:23:50.852+03	2021-05-20 15:23:50.859+03	
97bbc5be-05da-172d-826f-61dcaec74d15	2021-05-20 15:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:24:10.852+03	2021-05-20 15:24:10.859+03	
09881ec9-9bbe-2373-cea5-442f93c57520	2021-05-20 15:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:24:30.852+03	2021-05-20 15:24:30.861+03	
c46175ae-f2d7-6640-707b-89fd419f1b3b	2021-05-20 15:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:24:50.853+03	2021-05-20 15:24:50.86+03	
5949b106-8890-6d61-e472-4e49d311e6b0	2021-05-20 15:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:25:12.852+03	2021-05-20 15:25:12.874+03	
b4399586-b239-ec2b-7203-94352f8223aa	2021-05-20 15:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:25:32.852+03	2021-05-20 15:25:32.872+03	
b6d8fd15-eafb-d5eb-1750-176b4f3f5390	2021-05-20 15:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:25:52.852+03	2021-05-20 15:25:52.859+03	
8292f5b2-528a-38ac-9f4a-ca80e1d1b097	2021-05-20 15:26:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:26:12.853+03	2021-05-20 15:26:12.86+03	
2ae64cf5-c28c-f44d-c01b-da9e2aec8baf	2021-05-20 15:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:26:33.852+03	2021-05-20 15:26:33.86+03	
ba088b5e-71ea-38bb-2f4c-226e2e4c79f3	2021-05-20 15:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:26:53.852+03	2021-05-20 15:26:53.86+03	
cbfc4ae5-e961-e4b8-c97d-9cfca148b81b	2021-05-20 15:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:27:13.852+03	2021-05-20 15:27:13.86+03	
408ee4d9-6f49-f435-3478-98f5435d7a5a	2021-05-20 15:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:27:34.853+03	2021-05-20 15:27:34.861+03	
ea1a8cd0-ff1f-fd25-7868-2a84a575807d	2021-05-20 15:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:27:55.853+03	2021-05-20 15:27:55.862+03	
abf8a914-2815-9139-3037-e37fdc6c3d27	2021-05-20 15:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:28:15.853+03	2021-05-20 15:28:15.864+03	
63e2996b-c3db-b3da-d995-d6e556c01d9d	2021-05-20 15:28:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:28:36.852+03	2021-05-20 15:28:36.862+03	
cb96ac3e-6cfd-394a-599e-dc755b459d0d	2021-05-20 15:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:28:56.852+03	2021-05-20 15:28:56.859+03	
88982571-49a9-01c2-6906-f59c93d43ea2	2021-05-20 15:29:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:29:16.852+03	2021-05-20 15:29:16.86+03	
e07cfaca-d746-a591-067b-1a5e0abc81f4	2021-05-20 15:29:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:29:36.853+03	2021-05-20 15:29:36.86+03	
a10fd395-01f5-e263-fa72-6cc42f581e9c	2021-05-20 15:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:29:57.852+03	2021-05-20 15:29:57.864+03	
bd50eaf5-0a59-79fe-fe2d-8843567943eb	2021-05-20 15:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:30:07.852+03	2021-05-20 15:30:07.872+03	
71eb8786-ff7d-7455-4912-9a234d65f39e	2021-05-20 15:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:30:27.853+03	2021-05-20 15:30:27.86+03	
936404b6-2456-d5a2-b7c8-e84ae6fffa08	2021-05-20 15:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:30:47.853+03	2021-05-20 15:30:47.86+03	
f6a2322b-6179-22ba-11be-82235af35c36	2021-05-20 15:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:31:07.853+03	2021-05-20 15:31:07.86+03	
70772ac9-d296-e8bd-7d95-a1bcf064ba94	2021-05-20 15:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:31:28.852+03	2021-05-20 15:31:28.858+03	
fc473323-00e0-4448-4a6c-6cb2d7813ee4	2021-05-20 15:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:31:48.852+03	2021-05-20 15:31:48.859+03	
138d41ee-f32b-bacf-973a-e731bdc8a440	2021-05-20 15:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:32:08.853+03	2021-05-20 15:32:08.859+03	
777dfaf9-e296-4aa7-cced-b0ab8be1cdc6	2021-05-20 15:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:32:28.853+03	2021-05-20 15:32:28.86+03	
d5cc1952-0763-f4da-4979-a13246d73db6	2021-05-20 15:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:32:49.853+03	2021-05-20 15:32:49.86+03	
bc529cd5-3b37-2c32-7ff6-c96e046db7ac	2021-05-20 15:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:33:09.853+03	2021-05-20 15:33:09.86+03	
da4bd75b-8a47-8147-1b82-791a44f61515	2021-05-20 15:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:33:30.852+03	2021-05-20 15:33:30.859+03	
6a762edb-1886-70f7-6515-39330bbda589	2021-05-20 15:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:33:50.852+03	2021-05-20 15:33:50.86+03	
92a8f47b-393f-49f5-658f-d0c1f4c4809a	2021-05-20 15:34:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:34:21.853+03	2021-05-20 15:34:21.86+03	
731441da-7fa3-542f-0367-613cc5720e4a	2021-05-20 15:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:34:42.852+03	2021-05-20 15:34:42.859+03	
39a1223a-b482-8112-7aee-7f38fa81752b	2021-05-20 15:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:35:02.852+03	2021-05-20 15:35:02.859+03	
21271922-32fc-f598-e9ae-214dbe6babc4	2021-05-20 15:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:35:22.852+03	2021-05-20 15:35:22.861+03	
5752987a-2ae5-c002-d767-86ede73f5f3a	2021-05-20 15:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:35:42.853+03	2021-05-20 15:35:42.861+03	
70a4b38c-1958-9eeb-be91-44c9e5b516cd	2021-05-20 15:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:36:03.852+03	2021-05-20 15:36:03.859+03	
520098b2-b2a9-881b-764e-e9892d9a6a03	2021-05-20 15:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:36:23.853+03	2021-05-20 15:36:23.86+03	
c86113b4-f6cf-1c5c-d7ef-36984e56f26c	2021-05-20 15:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:36:43.853+03	2021-05-20 15:36:43.864+03	
fbc066d7-a727-28b3-d13e-4410c7c3c89f	2021-05-20 15:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:37:04.853+03	2021-05-20 15:37:04.86+03	
8869c6bc-4e6f-bfe2-8759-1b6725e7d898	2021-05-20 15:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:37:25.853+03	2021-05-20 15:37:25.886+03	
05c8b42a-2dc5-c06c-2158-35b33e386c8c	2021-05-20 15:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:37:46.852+03	2021-05-20 15:37:46.86+03	
d95fb9f6-4116-1e57-3cb6-f6d9d2f219f1	2021-05-20 15:38:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:38:06.852+03	2021-05-20 15:38:06.859+03	
9ce48ae0-3e76-c5cd-a19e-e47384bc005c	2021-05-20 15:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:38:27.853+03	2021-05-20 15:38:27.86+03	
a74c936b-5a6c-aca0-cd74-1c95539fca9d	2021-05-20 15:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:38:48.853+03	2021-05-20 15:38:48.86+03	
00fb5bbe-50b6-7b86-f420-183a886df993	2021-05-20 15:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:39:08.853+03	2021-05-20 15:39:08.86+03	
355d53c7-90ee-d3c3-0794-3ada9408160f	2021-05-20 15:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:39:28.853+03	2021-05-20 15:39:28.859+03	
77ae2083-ace7-6d36-dec8-f285611808c7	2021-05-20 15:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:39:48.853+03	2021-05-20 15:39:48.86+03	
08f0d752-a331-52db-959b-488af0191855	2021-05-20 15:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 15:40:00.852+03	2021-05-20 15:40:00.858+03	ERROR
bfcbcc90-8290-ebf1-95a1-987f2dfc67d9	2021-05-20 15:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:40:19.852+03	2021-05-20 15:40:19.859+03	
41189ea3-c96a-1379-2438-71beb45e2dba	2021-05-20 15:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:40:39.852+03	2021-05-20 15:40:39.869+03	
46eb27b6-9bb1-4300-e75c-8bbf3916cace	2021-05-20 15:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:41:00.852+03	2021-05-20 15:41:00.859+03	
ac31eeb5-a7ba-aeac-3648-c5c130bb7d62	2021-05-20 15:41:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:41:20.853+03	2021-05-20 15:41:20.865+03	
c16124e2-c011-be9c-a558-64b2cd81ccc1	2021-05-20 15:41:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:41:41.853+03	2021-05-20 15:41:41.859+03	
bab10e42-9fea-9c96-42d3-39b62b90a3cc	2021-05-20 15:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:41:31.853+03	2021-05-20 15:41:31.863+03	
151b6e82-339b-53ea-2191-00ad1b615ab8	2021-05-20 15:41:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:41:51.854+03	2021-05-20 15:41:51.875+03	
9c646cbd-5f86-4c94-bd65-5a15ddc1cf31	2021-05-20 15:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:42:12.852+03	2021-05-20 15:42:12.858+03	
d10d25e5-da7d-572b-5238-ed5ad6edb434	2021-05-20 15:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:42:33.853+03	2021-05-20 15:42:33.859+03	
ac42b117-4347-30eb-d797-28ae3db36ab0	2021-05-20 15:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:42:53.853+03	2021-05-20 15:42:53.859+03	
93276474-9e79-4139-cd6e-89c3a37f8eef	2021-05-20 15:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:43:14.853+03	2021-05-20 15:43:14.859+03	
128505f1-2c47-e234-c012-8614dddc2f32	2021-05-20 15:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:43:35.852+03	2021-05-20 15:43:35.858+03	
a8d3f242-6372-91c2-d2e0-9dc5e8889818	2021-05-20 15:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:43:55.853+03	2021-05-20 15:43:56.454+03	
1a5c9ba1-4f2b-67f6-6a77-0523210fe17d	2021-05-20 15:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:44:17.853+03	2021-05-20 15:44:17.859+03	
87e086c8-f4cf-085b-abc7-3be89a716316	2021-05-20 15:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:44:39.852+03	2021-05-20 15:44:39.859+03	
ddd049f5-47e1-daf0-db41-feab86e2efed	2021-05-20 15:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:44:59.852+03	2021-05-20 15:44:59.858+03	
19eadeeb-cb71-124c-2bfe-b4dee62f24b5	2021-05-20 15:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:45:19.853+03	2021-05-20 15:45:19.859+03	
0e152e08-8b95-a69b-7f65-f0a27548aee9	2021-05-20 15:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:45:40.853+03	2021-05-20 15:45:40.864+03	
f2159797-fe58-e558-b0bb-d2bcda56f36c	2021-05-20 15:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:46:01.852+03	2021-05-20 15:46:01.896+03	
a49804fb-e63f-9a0a-e16a-789f557354d9	2021-05-20 15:46:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:46:21.852+03	2021-05-20 15:46:21.859+03	
2efb9e55-fe0a-f50b-9a1e-017118a5b3ad	2021-05-20 15:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:46:42.852+03	2021-05-20 15:46:42.859+03	
5e0fa642-8972-cf35-0b6f-ae504483744f	2021-05-20 15:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:47:02.852+03	2021-05-20 15:47:02.859+03	
9555871a-e35f-1098-0352-6f85193f42c3	2021-05-20 15:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:47:22.852+03	2021-05-20 15:47:22.859+03	
a4deed65-9bc3-67d6-7ffb-0198e0178560	2021-05-20 15:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:47:42.853+03	2021-05-20 15:47:42.863+03	
9e003091-96ac-038e-7886-757a0dbcd0be	2021-05-20 15:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:48:03.852+03	2021-05-20 15:48:03.858+03	
24b3c25c-d8f9-c626-711f-fa6bb3378770	2021-05-20 15:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:48:23.852+03	2021-05-20 15:48:23.86+03	
64ae953b-db33-7951-1f92-9f83631c11b4	2021-05-20 15:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:48:43.853+03	2021-05-20 15:48:43.865+03	
75f5ed0d-fdef-fdbb-6d68-8cfb940b2bb8	2021-05-20 15:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:49:04.852+03	2021-05-20 15:49:04.86+03	
0034fd43-4460-c52d-2ff4-51f656c57ea8	2021-05-20 15:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:49:24.852+03	2021-05-20 15:49:24.859+03	
32bc6ba0-67b6-452b-972c-2012062e8956	2021-05-20 15:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:49:44.852+03	2021-05-20 15:49:44.858+03	
0f51e95f-f581-a587-b060-630071e25137	2021-05-20 15:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 15:50:00.853+03	2021-05-20 15:50:00.86+03	ERROR
8575e82f-bd89-e737-fddc-df46d9c4b3c4	2021-05-20 15:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:50:14.852+03	2021-05-20 15:50:14.859+03	
d97ca752-9264-2597-f584-799f73ec8dd8	2021-05-20 15:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:50:34.852+03	2021-05-20 15:50:34.862+03	
0f0bd4c6-7d75-c06b-4223-7da75dcd4930	2021-05-20 15:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:50:55.852+03	2021-05-20 15:50:55.869+03	
78473b70-2f43-9b4c-b63f-ffd7bde138c6	2021-05-20 15:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:51:15.853+03	2021-05-20 15:51:15.861+03	
5d84a917-b42a-66bf-a490-2e4027ab95a5	2021-05-20 15:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:51:37.852+03	2021-05-20 15:51:37.859+03	
c28da204-714e-dc9e-7876-225344e4fbad	2021-05-20 15:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:51:57.853+03	2021-05-20 15:51:57.86+03	
011ffd8d-57c5-86fd-c971-4a71f2b75b66	2021-05-20 15:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:52:19.853+03	2021-05-20 15:52:19.859+03	
751f60c5-9b4c-b303-2e4f-727150217996	2021-05-20 15:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:52:40.852+03	2021-05-20 15:52:40.859+03	
8efce768-08f0-3c5d-7ecc-59e21051f64f	2021-05-20 15:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:53:00.852+03	2021-05-20 15:53:00.86+03	
c4bcb85e-0583-0b34-09f9-27be280fc028	2021-05-20 15:53:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:53:21.853+03	2021-05-20 15:53:21.86+03	
a290deaa-2685-70a0-5585-ac3e1614b2c9	2021-05-20 15:53:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:53:41.853+03	2021-05-20 15:53:41.859+03	
e9d9c6e0-0f27-0382-bc23-a563831405c6	2021-05-20 15:54:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:54:01.853+03	2021-05-20 15:54:01.86+03	
9148883d-5195-4eb0-2e97-5b1881f0936f	2021-05-20 15:54:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:54:22.852+03	2021-05-20 15:54:22.859+03	
e4d0a023-e67e-5484-60de-04594df54396	2021-05-20 15:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:54:43.853+03	2021-05-20 15:54:43.86+03	
be190312-2c1b-f569-b46f-e0a91fa9844b	2021-05-20 15:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:55:05.852+03	2021-05-20 15:55:05.859+03	
7881d788-7d4d-8c63-0b60-cd98b2a4a5c9	2021-05-20 15:55:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:55:26.853+03	2021-05-20 15:55:26.865+03	
806b021e-d3e2-5428-5e7e-049c527c6144	2021-05-20 15:55:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:55:47.852+03	2021-05-20 15:55:47.86+03	
f4967489-8d39-6f25-1e96-e4efa194706f	2021-05-20 15:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:56:08.852+03	2021-05-20 15:56:08.862+03	
7e27c69a-c436-0571-a4c7-8b96600cbbf9	2021-05-20 15:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:56:28.852+03	2021-05-20 15:56:28.86+03	
6d6af612-71c6-ac1f-ede0-6bc78f3b0cdb	2021-05-20 15:56:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:56:48.853+03	2021-05-20 15:56:48.86+03	
41f8f230-6898-96a1-b27e-74195ddf0f95	2021-05-20 15:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:57:08.853+03	2021-05-20 15:57:08.871+03	
51aad0ef-438f-814f-e7c0-0748cad7e6ce	2021-05-20 15:57:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:57:29.853+03	2021-05-20 15:57:29.863+03	
9790199d-881e-9d24-a10d-8a7c23f5bc21	2021-05-20 15:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:57:50.852+03	2021-05-20 15:57:50.86+03	
75aadf1a-fdce-e13b-d2b2-f475cd92038d	2021-05-20 15:58:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:58:11.853+03	2021-05-20 15:58:11.86+03	
8029791d-ba7f-ba5e-9b7d-e6efd66162de	2021-05-20 15:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:58:33.853+03	2021-05-20 15:58:33.876+03	
b06572cf-af6b-8867-cdbd-7d88959868ee	2021-05-20 15:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:58:54.853+03	2021-05-20 15:58:54.859+03	
8938d4ce-fcc0-5182-e142-57c4fe17b043	2021-05-20 15:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:59:14.853+03	2021-05-20 15:59:14.859+03	
32de23a8-3928-b741-8bc4-b5e6fc6dc1fd	2021-05-20 15:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:59:35.852+03	2021-05-20 15:59:35.863+03	
bd888a7d-a36e-01c4-7da4-c5f876998ab5	2021-05-20 15:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:59:55.853+03	2021-05-20 15:59:55.86+03	
53e59170-b125-bdd8-baf5-bac3f8a6895c	2021-05-20 16:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:00:05.853+03	2021-05-20 16:00:05.864+03	
5b4e6170-c569-f03a-6370-02305eee273b	2021-05-20 16:00:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:00:25.853+03	2021-05-20 16:00:25.869+03	
5b0d2ccb-81a9-0c08-2c04-5a860a3a68bc	2021-05-20 16:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:00:45.853+03	2021-05-20 16:00:45.862+03	
e5fd1e78-e7a0-1141-5867-437ea13286e2	2021-05-20 16:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:01:05.853+03	2021-05-20 16:01:05.86+03	
bd6ad355-22a5-e24d-8a7b-b4a7e5369f56	2021-05-20 16:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:01:25.853+03	2021-05-20 16:01:25.863+03	
3a1b76ce-8cb7-1f11-82f1-31bce6d0c34a	2021-05-20 16:01:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:01:46.854+03	2021-05-20 16:01:46.911+03	
cb2a8428-adf1-a70d-e68c-44abfec64b55	2021-05-20 16:02:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:02:07.853+03	2021-05-20 16:02:07.859+03	
570137bb-42bf-fc4d-2366-0a3e47ebcfe8	2021-05-20 16:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:02:28.853+03	2021-05-20 16:02:28.869+03	
551fec13-80ff-8ed5-8cb3-6dbfeba7a690	2021-05-20 15:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:42:02.852+03	2021-05-20 15:42:02.869+03	
efb6896c-78c1-57cf-9fd4-cda2cf42174c	2021-05-20 15:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:42:22.853+03	2021-05-20 15:42:22.868+03	
131a2a72-51c7-d9f6-c7a8-7f70e9775bf9	2021-05-20 15:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:42:43.853+03	2021-05-20 15:42:43.859+03	
cada6b39-210d-d1ee-6c1c-3b8cac902915	2021-05-20 15:43:03.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:43:03.855+03	2021-05-20 15:43:03.862+03	
1d17052d-74dc-a61a-aa96-2439bc747a7b	2021-05-20 15:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:43:25.852+03	2021-05-20 15:43:25.858+03	
17798d2f-3232-dbbd-feb4-504e78d8bff1	2021-05-20 15:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:43:45.852+03	2021-05-20 15:43:45.859+03	
1a33ae42-eb12-0b9d-afe7-ff3c4ea56507	2021-05-20 15:44:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:44:06.854+03	2021-05-20 15:44:06.869+03	
72d881e7-c88f-7933-208b-c2a2030dd5e9	2021-05-20 15:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:44:28.853+03	2021-05-20 15:44:28.859+03	
9182492c-6e29-ec9b-43d5-cd1272606414	2021-05-20 15:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:44:49.852+03	2021-05-20 15:44:49.87+03	
a3829767-7586-eed4-2e57-a2e9121c8a38	2021-05-20 15:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:45:09.852+03	2021-05-20 15:45:09.859+03	
f7088e92-5598-5182-0519-53dc98f1bceb	2021-05-20 15:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:45:30.852+03	2021-05-20 15:45:30.86+03	
9bb40a7f-4521-8d64-8643-43291054ade8	2021-05-20 15:45:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:45:51.852+03	2021-05-20 15:45:51.86+03	
dd91b383-90d1-8211-f296-0e1ba2076c34	2021-05-20 15:46:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:46:11.852+03	2021-05-20 15:46:11.858+03	
aa168af7-4ee8-3863-ee90-97d217ab3e2b	2021-05-20 15:46:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:46:31.853+03	2021-05-20 15:46:31.862+03	
a59fe02c-0bde-f2a9-f147-0667b6349620	2021-05-20 15:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:46:52.852+03	2021-05-20 15:46:52.863+03	
641e9732-33aa-23b2-8475-4e0ccb73ae6b	2021-05-20 15:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:47:12.852+03	2021-05-20 15:47:12.859+03	
92c1fcb4-ce40-66cb-edf9-6cae2cfff41d	2021-05-20 15:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:47:32.852+03	2021-05-20 15:47:32.87+03	
e64866fd-a3c1-7ee2-288c-0967becc74a4	2021-05-20 15:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:47:53.852+03	2021-05-20 15:47:53.859+03	
8bfd1034-3e74-5b72-6268-f4ae5ea98173	2021-05-20 15:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:48:13.852+03	2021-05-20 15:48:13.858+03	
0b646fab-ac7a-bcf1-83c8-27a6b481dc56	2021-05-20 15:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:48:33.852+03	2021-05-20 15:48:33.859+03	
71d2fa34-1368-9871-3227-872730be546b	2021-05-20 15:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:48:53.853+03	2021-05-20 15:48:53.859+03	
32a74b16-ba8d-df65-3e6e-fbfaa0f97990	2021-05-20 15:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:49:14.852+03	2021-05-20 15:49:14.86+03	
feccea33-497f-37c4-16ef-abdb26ba3791	2021-05-20 15:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:49:34.852+03	2021-05-20 15:49:34.858+03	
2b65e021-b55b-386a-6c73-e5b20be9f724	2021-05-20 15:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:49:54.852+03	2021-05-20 15:49:54.859+03	
cbab579d-00b0-33d7-8c68-1d87500e168d	2021-05-20 15:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:50:04.852+03	2021-05-20 15:50:04.859+03	
970133be-fd40-c94b-536f-320b46d28f85	2021-05-20 15:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:50:24.852+03	2021-05-20 15:50:24.859+03	
a7bfd41a-6257-9def-2df6-8d8d643ca9f8	2021-05-20 15:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:50:44.853+03	2021-05-20 15:50:44.859+03	
583682fc-1869-ddf7-d777-e4af4574a9ce	2021-05-20 15:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:51:05.853+03	2021-05-20 15:51:05.86+03	
a9b7c1f6-efd5-e2ed-1cf8-3ff38ef7d76d	2021-05-20 15:51:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:51:26.853+03	2021-05-20 15:51:26.859+03	
642ae75f-2640-3c8c-4004-997cd20ae0e8	2021-05-20 15:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:51:47.852+03	2021-05-20 15:51:47.858+03	
cdc94296-96d8-7f7f-5874-bdbdd0d7e18d	2021-05-20 15:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:52:08.853+03	2021-05-20 15:52:08.859+03	
45f98ba6-a583-2c10-7474-1fb3c5d69739	2021-05-20 15:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:52:29.853+03	2021-05-20 15:52:29.865+03	
ad8c6738-2192-ef6d-adfd-89343419aa31	2021-05-20 15:52:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:52:50.852+03	2021-05-20 15:52:50.859+03	
f14fb505-bf2c-3d2d-cb12-05a2564c91e2	2021-05-20 15:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:53:10.853+03	2021-05-20 15:53:10.859+03	
5d88fa7b-f7cc-6215-a117-b3c6dd2ac1a8	2021-05-20 15:53:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:53:31.853+03	2021-05-20 15:53:31.861+03	
3543596f-68cf-5580-7174-4eccc5f00c18	2021-05-20 15:53:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:53:51.853+03	2021-05-20 15:53:51.86+03	
2bbadc78-c467-fc56-92f7-10a4c11dab57	2021-05-20 15:54:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:54:11.853+03	2021-05-20 15:54:11.861+03	
e5f06030-7d89-1e62-1902-1cc7f3795ada	2021-05-20 15:54:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:54:32.853+03	2021-05-20 15:54:32.859+03	
95d8cee9-1f06-feea-06ad-a0126bb2ab82	2021-05-20 15:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:54:54.853+03	2021-05-20 15:54:54.86+03	
515f4f97-4311-9804-6846-e37df4e06d36	2021-05-20 15:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:55:15.853+03	2021-05-20 15:55:15.859+03	
2a97bad1-ff45-341f-a6d3-8a5ab9667a6a	2021-05-20 15:55:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:55:37.852+03	2021-05-20 15:55:37.858+03	
9c11ba2a-ab35-843d-1ca0-07a34605733d	2021-05-20 15:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:55:57.853+03	2021-05-20 15:55:57.861+03	
adb1c4b9-68bd-4d6e-2a4f-a817419b9200	2021-05-20 15:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:56:18.852+03	2021-05-20 15:56:18.859+03	
0a94caac-e942-8b4b-485a-596964f0e657	2021-05-20 15:56:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:56:38.852+03	2021-05-20 15:56:38.859+03	
44506dae-23e6-db27-7ab6-a2124516ddee	2021-05-20 15:56:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:56:58.853+03	2021-05-20 15:56:58.86+03	
9d5117ba-ecde-5723-c8c1-9ebd774c9df5	2021-05-20 15:57:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:57:19.852+03	2021-05-20 15:57:19.859+03	
71f4e718-b403-f2a3-d3b3-7486cec7d581	2021-05-20 15:57:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:57:39.853+03	2021-05-20 15:57:39.859+03	
887e1bfe-2e35-58ed-0e83-ff338de7d9a4	2021-05-20 15:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:58:00.853+03	2021-05-20 15:58:00.86+03	
cb69e47e-3293-55e0-a3d4-bcee4af7bf8a	2021-05-20 15:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:58:22.853+03	2021-05-20 15:58:22.873+03	
9d9fa573-20e0-0596-28c0-77b199707900	2021-05-20 15:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:58:44.853+03	2021-05-20 15:58:44.86+03	
5249f446-5a85-77f4-70ff-5a19e3cd7768	2021-05-20 15:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:59:04.853+03	2021-05-20 15:59:04.859+03	
c858b763-0c5e-698f-3725-e19579b71958	2021-05-20 15:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:59:25.852+03	2021-05-20 15:59:25.865+03	
17d37a8e-598e-46e0-2670-683369c2da31	2021-05-20 15:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 15:59:45.853+03	2021-05-20 15:59:45.86+03	
6f52d34b-927d-cc98-0005-3a9bf6386651	2021-05-20 16:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 16:00:00.852+03	2021-05-20 16:00:00.861+03	ERROR
c1922022-f5fe-0376-0a9f-829a56436ffb	2021-05-20 16:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:00:15.853+03	2021-05-20 16:00:15.862+03	
dbf30add-bde0-66b8-f2a2-ab8a10469f06	2021-05-20 16:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:00:35.853+03	2021-05-20 16:00:35.867+03	
df5951ca-56c4-b6df-ad16-c2bea8053880	2021-05-20 16:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:00:55.853+03	2021-05-20 16:00:55.86+03	
4437ff47-4e64-a968-f09c-cb6ebe3898ff	2021-05-20 16:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:01:15.853+03	2021-05-20 16:01:15.861+03	
2aae9824-1f1a-ea7e-eb7e-9b15bfb62ab2	2021-05-20 16:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:01:35.853+03	2021-05-20 16:01:35.859+03	
53613061-aa4c-b448-872e-f94d6d335599	2021-05-20 16:01:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:01:57.853+03	2021-05-20 16:01:57.861+03	
63b2331b-ae81-0739-9fbb-5cf8b3bf6685	2021-05-20 16:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:02:17.853+03	2021-05-20 16:02:17.865+03	
b737284f-1999-4166-b435-f74e92ef6903	2021-05-20 16:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:02:38.853+03	2021-05-20 16:02:38.859+03	
3be34ba8-2f1b-e0c0-ec11-0c73e1ea5b54	2021-05-20 16:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:02:58.853+03	2021-05-20 16:02:58.873+03	
136eadda-0f4c-fb2d-01cd-9fb948d4e70d	2021-05-21 21:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:58:58.853+03	2021-05-21 21:58:58.858+03	
92e7b1ce-0fb2-0b67-105d-2bd80df4bee9	2021-05-20 16:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:02:48.853+03	2021-05-20 16:02:48.861+03	
371b77c8-f470-c280-b6c2-2d5f3af815e6	2021-05-20 20:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:22:24.853+03	2021-05-20 20:22:24.861+03	
f4206d37-f13f-8b3c-312f-0a14d1eb9be0	2021-05-20 16:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:03:08.853+03	2021-05-20 16:03:08.859+03	
54fa31e5-0c08-db86-230e-7196f16fe156	2021-05-20 16:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:03:28.853+03	2021-05-20 16:03:28.862+03	
292c15c6-f9d4-c0cf-1f89-e9536f08590c	2021-05-20 20:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:22:44.853+03	2021-05-20 20:22:44.86+03	
cba2b182-1de7-53ff-9874-e033dbb06223	2021-05-20 16:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:03:48.853+03	2021-05-20 16:03:48.866+03	
6c503754-b02c-75b0-4925-b6287dd9aed6	2021-05-20 16:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:04:09.852+03	2021-05-20 16:04:09.862+03	
d1ec4fea-03db-25e2-a128-8eeda99e9e83	2021-05-20 20:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:23:05.853+03	2021-05-20 20:23:05.86+03	
2c7d4311-1e91-560b-a056-565740687b27	2021-05-20 16:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:04:29.853+03	2021-05-20 16:04:30.332+03	
b6757bc1-c797-d854-2e8b-b80b4aa28f1f	2021-05-20 16:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:04:50.853+03	2021-05-20 16:04:50.859+03	
d4c82396-f2b3-f71b-84bd-5203e07de18c	2021-05-20 20:23:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:23:26.853+03	2021-05-20 20:23:26.879+03	
a56ee2be-35c0-e4e4-d6bf-be9a037211bf	2021-05-20 16:05:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:05:11.852+03	2021-05-20 16:05:11.864+03	
20b8085c-6e45-dccf-0395-0692c53748c3	2021-05-20 16:05:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:05:31.853+03	2021-05-20 16:05:31.859+03	
9e83ee6b-ea5a-9f2a-8a7b-d957b90d6530	2021-05-20 20:23:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:23:46.853+03	2021-05-20 20:23:46.869+03	
455f0691-39f7-d87b-44de-c2c8aa34fba3	2021-05-20 16:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:05:52.853+03	2021-05-20 16:05:52.871+03	
b28319c4-949a-2b1a-7109-1d26d99377fe	2021-05-20 16:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:06:12.853+03	2021-05-20 16:06:12.863+03	
6d1f797b-1051-e032-ac61-424687b548e4	2021-05-20 20:24:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:24:06.853+03	2021-05-20 20:24:06.865+03	
59b4cae2-6369-72c7-10e2-86f5ed6be182	2021-05-20 16:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:06:33.853+03	2021-05-20 16:06:33.861+03	
800e7a14-5787-0c1d-9982-7ab295b87f6e	2021-05-20 16:06:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:06:54.853+03	2021-05-20 16:06:54.863+03	
ead67386-87de-64e8-0b1e-f1e19a011e77	2021-05-20 20:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:24:27.852+03	2021-05-20 20:24:27.861+03	
fe9d12a5-87d5-0648-4811-0d0181e41bf8	2021-05-20 16:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:07:14.853+03	2021-05-20 16:07:14.859+03	
aa64d5f6-d42a-33e0-85f5-d54825a465c9	2021-05-20 16:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:07:35.852+03	2021-05-20 16:07:35.859+03	
dd760057-deb0-b9b2-f1cd-e6f12fda2bc9	2021-05-20 20:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:24:47.853+03	2021-05-20 20:24:47.862+03	
39c46bcb-c83f-17d8-1301-2d12d4e4ee38	2021-05-20 16:07:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:07:56.853+03	2021-05-20 16:07:56.86+03	
e6613278-a460-8d25-f732-12f43dc2f1a8	2021-05-20 16:08:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:08:16.854+03	2021-05-20 16:08:16.863+03	
4d51978c-5a7f-9bfc-3630-a185fb6fb584	2021-05-20 20:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:25:07.853+03	2021-05-20 20:25:07.863+03	
a71c2593-4261-5865-2cb5-b8243dd9fec1	2021-05-20 16:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:08:37.853+03	2021-05-20 16:08:37.859+03	
08d6452c-5c22-5c45-3c97-b564bab734ee	2021-05-20 16:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:08:57.853+03	2021-05-20 16:08:57.86+03	
7529b081-2c41-8de9-0e92-7cab72c1d500	2021-05-20 20:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:25:28.853+03	2021-05-20 20:25:28.859+03	
628d89c9-26b8-c800-3f72-d7f63c547ff5	2021-05-20 20:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:25:48.853+03	2021-05-20 20:25:48.859+03	
aa081f8e-16f9-4974-40a5-ff35f8f2b68c	2021-05-20 20:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:26:08.853+03	2021-05-20 20:26:08.859+03	
2daf7cf5-84b9-6cba-386c-e557117972b3	2021-05-20 20:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:26:29.853+03	2021-05-20 20:26:29.859+03	
50bbfe54-bc6c-90d0-e3be-53066a26462f	2021-05-20 20:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:26:50.853+03	2021-05-20 20:26:50.859+03	
6a98446a-f39c-ebc6-fd89-7472f9e5884f	2021-05-20 20:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:27:10.853+03	2021-05-20 20:27:10.859+03	
401e29d6-0171-53de-f1a7-a708a84ee079	2021-05-20 20:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:27:30.853+03	2021-05-20 20:27:30.859+03	
33b2153b-f2ed-11c2-3fb4-09ea5de51833	2021-05-20 20:27:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:27:51.852+03	2021-05-20 20:27:51.86+03	
b9c2320c-ca02-cd1f-9d82-d69e1a355f61	2021-05-20 20:28:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:28:11.853+03	2021-05-20 20:28:11.86+03	
bbbfe420-dfc6-dac7-fdda-8b7af5745439	2021-05-20 20:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:28:32.853+03	2021-05-20 20:28:32.859+03	
9e082da0-bf0d-f215-f5de-f1df9924a7af	2021-05-20 20:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:28:54.852+03	2021-05-20 20:28:54.858+03	
3f7e2aaa-b58b-3e14-2f5c-eba0e9a76e56	2021-05-20 20:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:29:14.852+03	2021-05-20 20:29:14.859+03	
1e383648-ce88-1742-ecc8-e1e268f88be9	2021-05-20 20:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:29:34.853+03	2021-05-20 20:29:34.865+03	
b7018e60-50f8-f5d4-fdfb-754f271e83a5	2021-05-20 20:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:29:55.853+03	2021-05-20 20:29:55.86+03	
21610b2e-df90-d297-677e-055d068833cd	2021-05-20 20:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:30:05.853+03	2021-05-20 20:30:05.86+03	
62ec7fd2-30b8-ecbe-5924-c7cf7a551b96	2021-05-20 20:30:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:30:26.852+03	2021-05-20 20:30:26.859+03	
99247fbf-a250-8bd0-f4f3-134ac4ae2805	2021-05-20 20:30:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:30:46.853+03	2021-05-20 20:30:46.862+03	
810d488e-4cb9-7a66-7736-2725024acde6	2021-05-20 20:31:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:31:06.854+03	2021-05-20 20:31:06.862+03	
2ba117f4-dfe6-8acb-9535-5bbb1fb87728	2021-05-20 20:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:31:27.853+03	2021-05-20 20:31:27.86+03	
e752a68d-2438-1ffb-eb16-651b078c94a3	2021-05-20 20:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:31:48.852+03	2021-05-20 20:31:48.858+03	
e9c4174a-7914-1af9-e580-a5dcf398ab7d	2021-05-20 20:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:32:08.853+03	2021-05-20 20:32:08.859+03	
ee64d6bf-a687-1bcd-ceab-fd0ea91e209a	2021-05-20 20:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:32:28.853+03	2021-05-20 20:32:28.862+03	
5efc791f-10ea-3822-33a1-22d0c3f33d38	2021-05-20 20:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:32:48.853+03	2021-05-20 20:32:48.86+03	
2c4fdb88-bff1-da53-935f-0f6a25006331	2021-05-20 20:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:33:09.853+03	2021-05-20 20:33:09.862+03	
ed67ebd6-7a28-03dd-6a66-02c8645577cb	2021-05-20 20:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:33:31.852+03	2021-05-20 20:33:31.859+03	
5fb10ed8-4622-690f-caf1-713b2bb1e854	2021-05-20 20:33:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:33:51.854+03	2021-05-20 20:33:51.861+03	
1db8f18f-f6c0-a685-3e1b-1e737b69bd3c	2021-05-20 20:34:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:34:11.854+03	2021-05-20 20:34:11.861+03	
e488c3b7-bb56-8342-3fcd-2e0f8414888a	2021-05-20 20:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:34:32.853+03	2021-05-20 20:34:32.87+03	
9f15b68a-812c-61f7-24e8-75596facf00a	2021-05-20 20:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:34:52.853+03	2021-05-20 20:34:52.859+03	
b8102f04-959b-878e-4f9a-78e5b60015cd	2021-05-20 20:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:35:13.852+03	2021-05-20 20:35:13.859+03	
6f805cd7-6c10-c3d1-b9e6-c78a566106a3	2021-05-20 20:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:35:33.853+03	2021-05-20 20:35:33.863+03	
3d54812f-bcea-5f7a-5f61-f05ed67373bd	2021-05-20 20:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:35:55.853+03	2021-05-20 20:35:55.86+03	
b0e1ebe1-b13d-7916-e1ea-352e25e5527f	2021-05-20 20:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:36:16.852+03	2021-05-20 20:36:16.86+03	
6997cdb8-635d-3a76-15ec-b7120ba85120	2021-05-20 20:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:36:36.852+03	2021-05-20 20:36:36.859+03	
3d85db2d-259d-a564-e8de-235554dac9a8	2021-05-20 20:36:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:36:56.853+03	2021-05-20 20:36:56.866+03	
6b9fb21b-8342-e0cf-da50-4e079b865e02	2021-05-20 16:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:03:18.853+03	2021-05-20 16:03:18.862+03	
f58e5275-ad45-250c-608c-4158f73fae18	2021-05-20 16:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:03:38.853+03	2021-05-20 16:03:38.86+03	
18a052a1-c9cc-2e52-bc7d-91a31ccf1f89	2021-05-20 16:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:03:58.853+03	2021-05-20 16:03:58.866+03	
5fcf24ff-6936-43c7-7aaa-00c2fc66fab8	2021-05-20 16:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:04:19.853+03	2021-05-20 16:04:19.86+03	
68be37bd-2c95-f6f4-e67c-a08563d72dc4	2021-05-20 16:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:04:40.853+03	2021-05-20 16:04:40.86+03	
0b72fe79-69ee-429f-f65f-6df6d9197d65	2021-05-20 16:05:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:05:01.852+03	2021-05-20 16:05:01.875+03	
25ed2a53-1560-0d6f-9a06-b23d3c0c2e7b	2021-05-20 16:05:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:05:21.852+03	2021-05-20 16:05:21.89+03	
881f2d23-eb61-d0b3-3e3e-4ef2cfe32d95	2021-05-20 16:05:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:05:41.854+03	2021-05-20 16:05:41.87+03	
251dee23-639d-3fd1-1545-dbce49432c86	2021-05-20 16:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:06:02.853+03	2021-05-20 16:06:02.859+03	
e575a4b0-143c-a21d-e101-58693a02520b	2021-05-20 16:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:06:22.853+03	2021-05-20 16:06:22.86+03	
d8f29e32-69d4-b476-7f6b-ccc8cf1aed31	2021-05-20 16:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:06:44.852+03	2021-05-20 16:06:44.863+03	
74eeea63-4380-40e3-73f4-e92b4c4d9759	2021-05-20 16:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:07:04.853+03	2021-05-20 16:07:04.862+03	
56d2c50a-6fc1-54c5-801f-b0cb33952ddb	2021-05-20 16:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:07:24.853+03	2021-05-20 16:07:24.869+03	
bd523007-f4e9-96b3-35ff-d0368d28f01b	2021-05-20 16:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:07:45.853+03	2021-05-20 16:07:45.859+03	
12d8081a-c3fe-eae9-0db2-da1dc3b28019	2021-05-20 16:08:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:08:06.854+03	2021-05-20 16:08:06.866+03	
edb986fe-d2cb-4bf5-8e49-54392382defe	2021-05-20 16:08:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:08:27.853+03	2021-05-20 16:08:27.862+03	
cda9bdaa-c9fe-381a-ad0d-13bc036ec504	2021-05-20 16:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:08:47.853+03	2021-05-20 16:08:47.862+03	
6ce657d9-82a8-b866-8856-b2638ce2969a	2021-05-20 16:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:09:08.853+03	2021-05-20 16:09:08.87+03	
aa9535d1-b4e4-b65a-f19e-0b6494d60a13	2021-05-20 16:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:09:19.853+03	2021-05-20 16:09:19.859+03	
b1c9dd4b-8c87-15dd-bf3b-df4b72a3ca22	2021-05-20 16:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:09:29.853+03	2021-05-20 16:09:29.861+03	
72ce3ece-c568-33cc-9a65-e54a8f26986e	2021-05-20 16:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:09:39.853+03	2021-05-20 16:09:39.86+03	
e1d600ba-5a26-7911-bcf5-bea8836bd21e	2021-05-20 16:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:09:49.853+03	2021-05-20 16:09:49.859+03	
ececf569-80e5-d820-ea93-c49a019cc172	2021-05-20 16:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:10:00.853+03	2021-05-20 16:10:00.86+03	
9a023767-4631-8604-ab2e-965767cdf42d	2021-05-20 16:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 16:10:00.852+03	2021-05-20 16:10:00.871+03	ERROR
ee266526-d973-480a-6db8-8b636a717e94	2021-05-20 16:10:10.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:10:10.853+03	2021-05-20 16:10:10.863+03	
2bf9ab6a-5496-6900-f54a-e039cf90b459	2021-05-20 16:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:10:21.852+03	2021-05-20 16:10:21.858+03	
ed4e0c7f-2e9b-4473-b0b1-9ccacd7dc5e7	2021-05-20 16:10:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:10:31.852+03	2021-05-20 16:10:31.859+03	
91a6721a-cf42-fe7e-7fcb-ac04be79acb8	2021-05-20 16:10:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:10:41.854+03	2021-05-20 16:10:41.861+03	
69c3eb20-55ac-7233-8b75-2d86fa8c9377	2021-05-20 16:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:10:52.853+03	2021-05-20 16:10:52.859+03	
63284b79-8020-344d-3519-67676ebf6dd7	2021-05-20 16:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:11:03.852+03	2021-05-20 16:11:03.871+03	
ed633c7c-645b-3376-1633-757c121b7a20	2021-05-20 16:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:11:13.853+03	2021-05-20 16:11:13.871+03	
cb768a49-01a8-3231-fdc2-8f093d1f2b02	2021-05-20 16:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:11:23.853+03	2021-05-20 16:11:23.859+03	
ff800d2d-3529-2424-f85c-559cfd1a9d4f	2021-05-20 16:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:11:33.853+03	2021-05-20 16:11:33.864+03	
69ccede5-30d1-e162-8350-4e15fd1dd9f6	2021-05-20 16:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:11:44.853+03	2021-05-20 16:11:44.859+03	
9835bfd3-32cf-031b-7b45-03cc85ef6994	2021-05-20 16:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:11:54.853+03	2021-05-20 16:11:54.86+03	
7b9386e7-6bb0-fc86-5cbb-7e51df929a24	2021-05-20 16:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:12:04.853+03	2021-05-20 16:12:04.859+03	
10f8e52d-3eee-eaa0-bb2d-0fa57cc6eb00	2021-05-20 16:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:12:14.853+03	2021-05-20 16:12:14.861+03	
887592c2-2f70-f6b0-b6e7-68cb54bc42dc	2021-05-20 16:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:12:24.853+03	2021-05-20 16:12:24.862+03	
ae15f444-d8fd-5621-ad76-743b0835f1be	2021-05-20 16:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:12:34.853+03	2021-05-20 16:12:34.861+03	
7833954a-1bec-cca4-1a4c-74243112d568	2021-05-20 16:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:12:44.853+03	2021-05-20 16:12:44.861+03	
8fa8f34e-024d-1568-f400-5242d598db9b	2021-05-20 16:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:12:55.853+03	2021-05-20 16:12:55.86+03	
6b3c6323-aefd-3f81-8a87-023907847e6c	2021-05-20 16:13:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:13:06.854+03	2021-05-20 16:13:06.863+03	
2244bac7-888b-86b2-1ff2-fed88f0a5aa8	2021-05-20 16:13:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:13:16.854+03	2021-05-20 16:13:16.874+03	
f6208c39-822c-55cf-0824-d321bfa4f404	2021-05-20 16:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:13:27.852+03	2021-05-20 16:13:27.859+03	
032c3ff8-ca24-37fe-76ae-c911df9d96d6	2021-05-20 16:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:13:37.852+03	2021-05-20 16:13:37.859+03	
b17c4ab4-fa97-26ff-e937-20b660dff075	2021-05-20 16:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:13:47.853+03	2021-05-20 16:13:47.864+03	
e104dcf0-05c0-8dc5-2bde-752bbc95332b	2021-05-20 16:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:13:58.853+03	2021-05-20 16:13:58.86+03	
edced622-1bbd-805c-4f91-fb58762719b9	2021-05-20 16:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:14:08.853+03	2021-05-20 16:14:08.86+03	
e3f2a203-1b9f-b575-c0ff-504b91d00fcf	2021-05-20 16:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:14:18.853+03	2021-05-20 16:14:18.865+03	
61ea6ade-57e1-97c3-be80-49dba3da0947	2021-05-20 16:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:14:29.853+03	2021-05-20 16:14:29.861+03	
5ceea257-66df-f6ab-384d-2b873d5dcaa8	2021-05-20 16:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:14:39.853+03	2021-05-20 16:14:39.869+03	
5d74106f-3baa-7c91-30b5-ee1a28d81b75	2021-05-20 16:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:14:49.853+03	2021-05-20 16:14:49.86+03	
6e15683f-d14d-a769-e688-93d5f946e8f7	2021-05-20 16:14:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:14:59.853+03	2021-05-20 16:14:59.862+03	
6bb97ac9-d9f8-ac71-de9a-1066df3b2046	2021-05-20 16:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:15:09.853+03	2021-05-20 16:15:09.862+03	
17a04eeb-2406-1663-690b-9fb344e99e32	2021-05-20 16:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:15:19.853+03	2021-05-20 16:15:19.862+03	
60e4db09-242a-d098-e38c-d31478df61dd	2021-05-20 16:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:15:30.852+03	2021-05-20 16:15:30.861+03	
30cb4ad6-55b5-be13-055f-4b1ef36f4a5f	2021-05-20 16:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:15:40.853+03	2021-05-20 16:15:40.86+03	
a6568f06-5707-1f43-9212-7b086fb16344	2021-05-20 16:15:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:15:51.852+03	2021-05-20 16:15:51.859+03	
f041bc98-4a55-02d3-ed49-7e7c5e2dd303	2021-05-20 16:16:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:16:01.852+03	2021-05-20 16:16:01.862+03	
1fb99136-3be7-eb3c-4ee7-463aac874d76	2021-05-20 16:16:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:16:11.853+03	2021-05-20 16:16:11.867+03	
2cdc3ecc-3057-2310-84c1-1007047d758c	2021-05-20 16:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:16:22.852+03	2021-05-20 16:16:22.86+03	
7d0873cb-b95a-6c1d-f25e-ca8c3a08e5af	2021-05-20 16:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:16:32.853+03	2021-05-20 16:16:32.865+03	
98c5b72f-8eea-efe5-d224-bba3684606df	2021-05-20 16:16:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:16:43.852+03	2021-05-20 16:16:44.497+03	
555ad495-f248-84f9-90ae-de6a694fe7e8	2021-05-20 16:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:16:53.852+03	2021-05-20 16:16:53.86+03	
8aafca79-1dc0-34c4-865f-0e9cb35b96ec	2021-05-20 16:17:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:17:14.853+03	2021-05-20 16:17:14.867+03	
3301d7ab-347a-9f0a-915c-a9cd1ab6f63b	2021-05-20 16:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:17:34.853+03	2021-05-20 16:17:34.859+03	
e080253f-cac2-baee-56f2-e96b8cd510e3	2021-05-20 16:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:17:54.853+03	2021-05-20 16:17:54.861+03	
d8b59d7e-a51f-103a-c022-2a2dc8ec578a	2021-05-20 16:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:18:14.853+03	2021-05-20 16:18:14.861+03	
31963b94-48f5-bbe4-5bbd-d6ea729df933	2021-05-20 16:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:18:34.853+03	2021-05-20 16:18:34.86+03	
f1255292-d2d8-1834-1c4a-9b5de81adf19	2021-05-20 16:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:18:54.853+03	2021-05-20 16:18:54.861+03	
11bb6862-23ba-23cc-3cff-682cc4c3077d	2021-05-20 16:19:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:19:14.853+03	2021-05-20 16:19:14.866+03	
12a1b3c5-a50b-e4b6-f183-48b9fc0964db	2021-05-20 16:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:19:34.853+03	2021-05-20 16:19:34.874+03	
d29739bd-01e3-bb8c-9d6c-142a660fdcd8	2021-05-20 16:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:19:54.853+03	2021-05-20 16:19:54.86+03	
f2497565-9424-95e0-0bd2-981a1f9a027d	2021-05-20 16:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:20:04.853+03	2021-05-20 16:20:04.862+03	
500f46ce-e0c9-9b6f-edff-b95e9ede43fa	2021-05-20 16:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:20:24.853+03	2021-05-20 16:20:24.864+03	
7e4ea0dc-80a6-6d93-4d09-d2c3e5eaf328	2021-05-20 16:20:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:20:44.853+03	2021-05-20 16:20:44.862+03	
fd506244-4244-2517-f78a-f5c0673c6a24	2021-05-20 16:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:21:05.853+03	2021-05-20 16:21:05.863+03	
2954fd8c-d719-b10f-736a-0264ad0658e7	2021-05-20 16:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:21:26.852+03	2021-05-20 16:21:26.861+03	
d284aae4-cbf2-6dce-e261-c34dd7e7f69d	2021-05-20 16:21:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:21:46.854+03	2021-05-20 16:21:46.863+03	
9ae873e4-e368-921b-bd7e-07e631d96f60	2021-05-20 16:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:22:08.853+03	2021-05-20 16:22:08.883+03	
01c8debb-4f26-29a0-4299-5cb50f6e100d	2021-05-20 16:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:22:28.853+03	2021-05-20 16:22:28.865+03	
97f2585c-ff0d-df1e-c2b5-2dc26180bf48	2021-05-20 16:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:22:49.853+03	2021-05-20 16:22:49.86+03	
b59d7b00-3309-d261-b65c-21bdd4518a2d	2021-05-20 16:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:23:09.853+03	2021-05-20 16:23:09.859+03	
6938df76-4fc2-b270-2d4a-76803ffefef8	2021-05-20 16:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:23:29.853+03	2021-05-20 16:23:29.861+03	
ed274a18-266a-be26-a7cf-e3e31b1c6569	2021-05-20 16:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:23:50.852+03	2021-05-20 16:23:50.859+03	
e4b32b82-5d54-6aac-e90f-ff55814f8636	2021-05-20 16:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:24:10.853+03	2021-05-20 16:24:10.86+03	
c8d5c8b8-e67f-e845-d7a6-1182fe6887dc	2021-05-20 16:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:24:30.853+03	2021-05-20 16:24:30.86+03	
af810009-4e05-efb9-41b8-fa8189de1a29	2021-05-20 16:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:24:50.853+03	2021-05-20 16:24:50.862+03	
20124590-a292-af0a-1e63-a9a4e97d3f23	2021-05-20 16:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:25:10.853+03	2021-05-20 16:25:10.865+03	
625b6e59-cabd-d903-59be-6d5750c09ec9	2021-05-20 16:25:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:25:31.852+03	2021-05-20 16:25:31.858+03	
b39b4914-81f4-c2f1-4689-834d2a679a00	2021-05-20 16:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:25:52.852+03	2021-05-20 16:25:52.859+03	
683c25c6-4c61-62f7-ba3f-bd8d1bd676a3	2021-05-20 16:26:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:26:12.853+03	2021-05-20 16:26:12.871+03	
4a7f271d-6ae6-abe9-2e3f-a6ec22bc3122	2021-05-20 16:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:26:33.853+03	2021-05-20 16:26:33.861+03	
1d253961-66f3-d68a-ad8f-6021f64c78a7	2021-05-20 16:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:26:54.852+03	2021-05-20 16:26:54.861+03	
7491eed7-26e3-b761-c9de-378bf33f720f	2021-05-20 16:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:27:14.853+03	2021-05-20 16:27:14.859+03	
8d38e2a8-2d0f-65a3-23f7-ab7cdc29d141	2021-05-20 16:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:27:35.853+03	2021-05-20 16:27:35.864+03	
b0a54c77-dc0b-2648-4415-607a0881612a	2021-05-20 16:27:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:27:56.852+03	2021-05-20 16:27:56.861+03	
5dc46baa-2537-1c81-f6f2-d39be66cc7f6	2021-05-20 16:28:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:28:16.854+03	2021-05-20 16:28:16.862+03	
a71c988d-d377-a95e-0a69-8e7ba29fe204	2021-05-20 16:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:28:38.852+03	2021-05-20 16:28:38.86+03	
69c78abd-134b-3e2a-667c-68e08d938ec4	2021-05-20 16:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:28:59.852+03	2021-05-20 16:28:59.86+03	
e00080f2-1bec-767c-5771-5c80f9504922	2021-05-20 16:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:29:19.853+03	2021-05-20 16:29:19.865+03	
72d2168d-93ca-9400-bfdd-9b0555e5f03a	2021-05-20 16:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:29:39.853+03	2021-05-20 16:29:39.86+03	
b4c6fa3f-483f-95ed-a869-cd164ba10558	2021-05-20 16:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:29:59.853+03	2021-05-20 16:29:59.86+03	
c9227812-266c-d471-9de5-c1767b71261c	2021-05-20 16:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:30:09.853+03	2021-05-20 16:30:09.862+03	
5f9e53d2-4105-5bbf-19af-2b451f5b34ee	2021-05-20 16:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:30:30.853+03	2021-05-20 16:30:30.86+03	
b0885f99-bc86-0d5f-61e1-e8a952afcd40	2021-05-20 16:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:31:00.853+03	2021-05-20 16:31:00.86+03	
bf81ac66-c7c3-b828-a7ce-ee3623f9b7b8	2021-05-20 16:31:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:31:21.852+03	2021-05-20 16:31:21.913+03	
76e2244a-e5d2-a9dd-a83c-9ff014ab6a67	2021-05-20 16:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:31:42.853+03	2021-05-20 16:31:42.86+03	
1b1ae1cd-abb6-8c2f-e5f8-b54c0db86304	2021-05-20 16:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:32:02.853+03	2021-05-20 16:32:02.865+03	
bb72d87e-c879-db94-7d87-1100298d180a	2021-05-20 16:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:32:22.853+03	2021-05-20 16:32:22.868+03	
5cba3437-94cf-6df7-674b-5f455d39f7e6	2021-05-20 16:32:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:32:43.853+03	2021-05-20 16:32:43.867+03	
cebd7fe8-aa7d-fe5c-8070-d86900c227b3	2021-05-20 16:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:33:04.852+03	2021-05-20 16:33:04.862+03	
ed99c4c0-21fe-ab62-c9cf-6e387db5f060	2021-05-20 16:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:33:24.852+03	2021-05-20 16:33:24.86+03	
75a80b2b-c6d5-6a46-cc95-b3ce5213f315	2021-05-20 16:33:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:33:44.853+03	2021-05-20 16:33:44.861+03	
177fb396-1814-d8fb-4329-0d650bfe9523	2021-05-20 16:34:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:34:05.853+03	2021-05-20 16:34:05.87+03	
f581ec0a-6d86-579f-1027-9018515aa331	2021-05-20 16:34:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:34:25.853+03	2021-05-20 16:34:25.862+03	
27bb0921-84b3-75b6-68be-0a61dd87b37d	2021-05-20 16:34:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:34:46.853+03	2021-05-20 16:34:46.859+03	
44c97095-dbbd-7bc0-9092-1a916af6be4f	2021-05-20 16:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:35:07.853+03	2021-05-20 16:35:07.868+03	
d9501322-2efc-e254-ac07-d49022f8fc1e	2021-05-20 16:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:35:27.853+03	2021-05-20 16:35:27.861+03	
6a648c1f-8baf-43a9-cad1-a6c899471a9c	2021-05-20 16:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:35:48.853+03	2021-05-20 16:35:48.873+03	
04e5b019-44b1-5ae4-66da-ae5b6ba8e835	2021-05-20 16:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:36:09.853+03	2021-05-20 16:36:09.868+03	
0374e527-48a9-da9b-2754-cf722adcec0b	2021-05-20 16:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:36:30.853+03	2021-05-20 16:36:30.872+03	
1be2d992-e97a-ac98-0598-63b6eb046761	2021-05-20 16:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:36:50.853+03	2021-05-20 16:36:50.864+03	
0868984c-60a1-1f09-ec48-becfb3496297	2021-05-20 16:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:37:10.853+03	2021-05-20 16:37:10.862+03	
90aec299-05ed-bf93-92f8-fc9a0d08c34d	2021-05-20 16:37:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:37:30.853+03	2021-05-20 16:37:30.869+03	
cc27fa07-a93d-6a14-f6de-3e7e1b9177d1	2021-05-20 16:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:37:50.853+03	2021-05-20 16:37:50.861+03	
dafc87d2-a10f-d2c7-1ec8-c6eac0f468f8	2021-05-20 16:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:17:03.853+03	2021-05-20 16:17:03.882+03	
8d577ddf-55d2-84dd-fee2-059a153b2b4e	2021-05-20 16:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:17:24.853+03	2021-05-20 16:17:24.862+03	
2e6300a5-78cb-d5db-b4ad-d9ece2682f52	2021-05-20 16:17:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:17:44.853+03	2021-05-20 16:17:44.86+03	
fc8effdd-0fb8-d9ad-ad34-f7b58aeee0f3	2021-05-20 16:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:18:04.853+03	2021-05-20 16:18:04.861+03	
0fea390a-67dd-b6ce-863d-987f08e500d9	2021-05-20 16:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:18:24.853+03	2021-05-20 16:18:24.861+03	
13e010ac-0bc8-76c5-4457-cd02f19a95e0	2021-05-20 16:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:18:44.853+03	2021-05-20 16:18:44.862+03	
52e98d73-13f5-7235-c74e-dc9c051d16bd	2021-05-20 16:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:19:04.853+03	2021-05-20 16:19:04.86+03	
64410ab2-b079-43e4-f2fb-0b373bfc984f	2021-05-20 16:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:19:24.853+03	2021-05-20 16:19:24.862+03	
808e2f10-7e0b-f7a0-00e6-41e0d74fe581	2021-05-20 16:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:19:44.853+03	2021-05-20 16:19:44.859+03	
2115e071-93ef-59f3-1f3a-b335a6ef13e6	2021-05-20 16:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 16:20:00.853+03	2021-05-20 16:20:00.859+03	ERROR
9a2a0023-45ef-c1b4-0b35-8b7e8ed92ae3	2021-05-20 16:20:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:20:14.853+03	2021-05-20 16:20:14.866+03	
08d0cd4e-c656-a09d-3224-830b618e0451	2021-05-20 16:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:20:34.853+03	2021-05-20 16:20:34.861+03	
5b794b45-88e5-d1ae-49bb-2746f4900844	2021-05-20 16:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:20:55.852+03	2021-05-20 16:20:55.859+03	
bef8cdd0-8f87-0913-7fc5-2545ea7bafb0	2021-05-20 16:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:21:15.853+03	2021-05-20 16:21:15.859+03	
e635f32b-e66c-f532-08f0-685b9672ab7a	2021-05-20 16:21:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:21:36.852+03	2021-05-20 16:21:36.859+03	
9973f816-e657-9d78-10e2-1a9fe412355c	2021-05-20 16:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:21:57.853+03	2021-05-20 16:21:57.875+03	
81677ca1-a28d-3b04-c2a2-81e6047f43ae	2021-05-20 16:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:22:18.853+03	2021-05-20 16:22:18.872+03	
01667f37-3057-df35-74ec-5b53a69808ab	2021-05-20 16:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:22:38.853+03	2021-05-20 16:22:38.861+03	
020ef71b-fcec-6091-e869-58070fb391d3	2021-05-20 16:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:22:59.853+03	2021-05-20 16:22:59.859+03	
40063f29-f9a1-cf93-41dc-59aac7165741	2021-05-20 16:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:23:19.853+03	2021-05-20 16:23:19.859+03	
849356e0-b6af-5cc2-3e52-1f7185c0ecfe	2021-05-20 16:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:23:40.852+03	2021-05-20 16:23:40.862+03	
7a8ecf5d-993d-f47e-7523-07d5a0550494	2021-05-20 16:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:24:00.852+03	2021-05-20 16:24:00.864+03	
bdeee72a-5156-f5fd-01da-a7c4f61b1973	2021-05-20 16:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:24:20.853+03	2021-05-20 16:24:20.861+03	
bce92696-2757-114d-0461-96c3131166c3	2021-05-20 16:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:24:40.853+03	2021-05-20 16:24:40.859+03	
785ba973-4b76-10ed-3841-a883e0a2e4b2	2021-05-20 16:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:25:00.853+03	2021-05-20 16:25:00.874+03	
9bae82ff-79d5-45b8-1abb-87b33b0065ca	2021-05-20 16:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:25:20.853+03	2021-05-20 16:25:20.859+03	
7707fdb3-b71e-eb22-aedb-1779067d3a6e	2021-05-20 16:25:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:25:41.853+03	2021-05-20 16:25:41.864+03	
3c7e3714-22f3-6c93-2760-825433b654bd	2021-05-20 16:26:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:26:02.853+03	2021-05-20 16:26:02.859+03	
c1c9a2c5-83a9-1e43-7cad-0c71011de1d3	2021-05-20 16:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:26:22.853+03	2021-05-20 16:26:22.859+03	
e1fe5d1d-cc9e-592d-8a26-2222c188aef6	2021-05-20 16:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:26:43.853+03	2021-05-20 16:26:43.862+03	
5f45dda6-0bb9-2143-b69b-41c4bb8aebfe	2021-05-20 16:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:27:04.853+03	2021-05-20 16:27:04.862+03	
0fe22ada-0ebf-e383-4ea6-082ca6d3ac21	2021-05-20 16:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:27:25.852+03	2021-05-20 16:27:25.862+03	
5e0076b6-6c28-cad0-d673-695eff0c90e1	2021-05-20 16:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:27:45.853+03	2021-05-20 16:27:45.861+03	
ac205188-4aab-24fd-ffe8-667d00ebba9f	2021-05-20 16:28:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:28:06.852+03	2021-05-20 16:28:06.859+03	
84b7b8b2-f7a9-f879-b8c7-9912094b8dad	2021-05-20 16:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:28:27.853+03	2021-05-20 16:28:27.862+03	
03638c26-e092-7c69-e59d-019b0e679e83	2021-05-20 16:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:28:48.853+03	2021-05-20 16:28:48.87+03	
35e7c25a-20dc-dbd8-0f93-1aec36f0fb8a	2021-05-20 16:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:29:09.852+03	2021-05-20 16:29:09.862+03	
7214ed3b-c4c6-5d38-b3a2-7d044d1200b2	2021-05-20 16:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:29:29.853+03	2021-05-20 16:29:29.859+03	
aaeeca6f-4e45-5704-e799-1d1085a04bed	2021-05-20 16:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:29:49.853+03	2021-05-20 16:29:49.86+03	
a109ce5d-ac16-e4b6-873c-5ce9127eba84	2021-05-20 16:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 16:30:00.852+03	2021-05-20 16:30:00.915+03	ERROR
829ae622-b27a-3c8e-c0de-56756a58c833	2021-05-20 16:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:30:20.852+03	2021-05-20 16:30:20.86+03	
79d4d7ac-a7f0-7c64-2734-efc4d9270506	2021-05-20 16:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:30:40.853+03	2021-05-20 16:30:40.861+03	
c125428d-2dad-1fc5-e953-cf0ef04ec75b	2021-05-20 16:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:30:50.853+03	2021-05-20 16:30:50.859+03	
ad47c1a7-3c7b-2991-13cc-64802c5ebd85	2021-05-20 16:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:31:10.853+03	2021-05-20 16:31:10.866+03	
0a8b8fcd-02ca-f227-b00b-cc2f19654a40	2021-05-20 16:31:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:31:31.854+03	2021-05-20 16:31:31.865+03	
dd5ce734-5911-5b20-8b45-1a8a48711fdd	2021-05-20 16:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:31:52.853+03	2021-05-20 16:31:52.862+03	
9e90b80b-3584-2293-ee61-636b19f47a0c	2021-05-20 16:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:32:12.853+03	2021-05-20 16:32:12.863+03	
6ee4a73f-5210-2169-52e3-96c91c84cd25	2021-05-20 16:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:32:32.853+03	2021-05-20 16:32:32.864+03	
a17b37cb-2fac-2c7d-bbe6-61eb14545412	2021-05-20 16:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:32:53.853+03	2021-05-20 16:32:53.868+03	
29467734-2b7b-90d8-9061-1528a0db84a7	2021-05-20 16:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:33:14.852+03	2021-05-20 16:33:14.86+03	
137cfa4d-c521-123f-499d-9a3cd8a399ab	2021-05-20 16:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:33:34.852+03	2021-05-20 16:33:34.862+03	
33f45948-223b-195b-5d16-0203fc5ddfac	2021-05-20 16:33:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:33:54.853+03	2021-05-20 16:33:54.86+03	
13e9a280-6de5-1ad2-87f1-83ba388922e8	2021-05-20 16:34:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:34:15.853+03	2021-05-20 16:34:15.867+03	
f06a35a2-7cfd-a3f2-817a-0996cbb6f0e5	2021-05-20 16:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:34:35.853+03	2021-05-20 16:34:35.865+03	
d6dd2bac-5428-b99f-4e21-8ed80c1d371b	2021-05-20 16:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:34:57.852+03	2021-05-20 16:34:57.86+03	
6b4b83fa-e345-772e-7ef2-0af095112814	2021-05-20 16:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:35:17.853+03	2021-05-20 16:35:17.869+03	
d7e6345a-f239-e10a-57e5-5c66d0fae514	2021-05-20 16:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:35:38.853+03	2021-05-20 16:35:38.86+03	
bbbd476d-dce0-f719-388d-43c866aae9fd	2021-05-20 16:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:35:59.853+03	2021-05-20 16:35:59.862+03	
ac0c00da-1265-760a-7e23-737451354ab0	2021-05-20 16:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:36:19.853+03	2021-05-20 16:36:19.864+03	
d6fa57e0-e62a-8944-37f1-4b84b5a2f3b2	2021-05-20 16:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:36:40.853+03	2021-05-20 16:36:40.865+03	
570923a5-43bc-3787-a738-c3bcf0da391e	2021-05-20 16:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:37:00.853+03	2021-05-20 16:37:00.862+03	
b4f7769c-b23d-1e97-4dd0-9a3b57809205	2021-05-20 16:37:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:37:20.853+03	2021-05-20 16:37:20.861+03	
e407bd53-c816-0c93-466b-b1a2903189b7	2021-05-20 16:37:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:37:40.853+03	2021-05-20 16:37:40.861+03	
b28a227e-2837-1e57-18e6-f89e222f8150	2021-05-20 16:38:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:38:01.853+03	2021-05-20 16:38:01.861+03	
35e7f7a7-c8ed-bde5-b66f-f7ffcc1d6c00	2021-05-20 16:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:38:22.852+03	2021-05-20 16:38:22.868+03	
127eda60-166c-dfaf-d97b-c309e3a96c21	2021-05-20 16:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:38:42.853+03	2021-05-20 16:38:42.86+03	
82b49835-070c-9e03-4b9c-e2f9bcb6a959	2021-05-20 16:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:39:02.853+03	2021-05-20 16:39:02.861+03	
6588125f-5156-e25c-b6a5-6f8159a6ae13	2021-05-20 16:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:39:22.853+03	2021-05-20 16:39:22.872+03	
db946ca3-3f9b-6a11-fc67-0b03d7f60f59	2021-05-20 16:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:39:42.853+03	2021-05-20 16:39:42.859+03	
7225628f-b747-02e5-e7da-fae9d2122062	2021-05-20 16:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 16:40:00.853+03	2021-05-20 16:40:00.858+03	ERROR
8f8f8d9a-801e-e9f1-7f2d-54e994bf58f1	2021-05-20 16:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:40:13.853+03	2021-05-20 16:40:13.874+03	
dbdc7235-b0fa-0f2b-7780-2a3a60807d20	2021-05-20 16:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:40:33.853+03	2021-05-20 16:40:33.862+03	
28801146-0394-30be-1746-75352c939812	2021-05-20 16:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:40:53.853+03	2021-05-20 16:40:53.86+03	
be84a8db-0578-f344-4847-20c4c78f09d8	2021-05-20 16:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:41:14.853+03	2021-05-20 16:41:14.859+03	
ba955e63-68ea-4a65-5780-7fa6ce7ebdfa	2021-05-20 16:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:41:35.853+03	2021-05-20 16:41:35.86+03	
98bd86c3-c198-2400-bf34-af2b075f9479	2021-05-20 16:41:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:41:56.852+03	2021-05-20 16:41:56.863+03	
42a16c74-c4b3-cb59-5832-66e023445302	2021-05-20 16:42:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:42:16.853+03	2021-05-20 16:42:16.863+03	
265694df-b79d-1e76-0769-f02d9c211237	2021-05-20 16:42:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:42:36.853+03	2021-05-20 16:42:36.859+03	
1eca4de6-d3d7-5d82-b7c8-1e456d61f9c3	2021-05-20 16:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:42:57.853+03	2021-05-20 16:42:57.859+03	
7d074e8c-478d-b72c-5abc-651c971a920b	2021-05-20 16:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:43:18.853+03	2021-05-20 16:43:18.862+03	
568d9c3c-0955-749d-259a-c4b837f22310	2021-05-20 16:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:43:38.853+03	2021-05-20 16:43:38.86+03	
8eebba59-b815-65cb-86db-423d0d518516	2021-05-20 16:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:43:58.853+03	2021-05-20 16:43:58.863+03	
728bbbde-02d5-f8d2-85e8-ab1fbc6d44ff	2021-05-20 16:44:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:44:18.853+03	2021-05-20 16:44:18.861+03	
a66b1a64-12cb-5743-5764-e450331fde76	2021-05-20 16:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:44:39.853+03	2021-05-20 16:44:39.862+03	
576f116a-6089-0538-15b8-816ce6131789	2021-05-20 16:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:45:00.853+03	2021-05-20 16:45:00.86+03	
db3092a4-583d-f536-8ee1-d398bbf69cc9	2021-05-20 16:45:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:45:21.853+03	2021-05-20 16:45:21.86+03	
10bbe1c7-dca5-0364-4606-d6e0417e9109	2021-05-20 16:45:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:45:41.853+03	2021-05-20 16:45:41.86+03	
9ed46cdb-e19e-9836-1283-ffab1c9e7e33	2021-05-20 16:46:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:46:01.854+03	2021-05-20 16:46:01.903+03	
c6a27a60-83ef-2bdf-f28d-cc6b5d7c0a11	2021-05-20 16:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:46:22.853+03	2021-05-20 16:46:22.86+03	
787726db-0593-731b-0f8c-2e7fd3abdd49	2021-05-20 16:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:46:42.853+03	2021-05-20 16:46:42.86+03	
3aa5c009-be82-8aab-89e1-9e6f0486cc92	2021-05-20 16:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:47:02.853+03	2021-05-20 16:47:02.863+03	
996c2c7f-b6ab-e2be-7e13-3821648b5017	2021-05-20 16:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:47:23.853+03	2021-05-20 16:47:23.869+03	
f99f9f41-4c7d-30c8-c72e-39f3337229e6	2021-05-20 16:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:47:44.852+03	2021-05-20 16:47:44.859+03	
5b0afeba-7360-7b51-8daf-0fd132e70f95	2021-05-20 16:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:48:04.853+03	2021-05-20 16:48:04.862+03	
68b445ba-5dad-c15c-895c-73376a668574	2021-05-20 16:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:48:25.853+03	2021-05-20 16:48:25.865+03	
0fcf7a5a-d576-42f2-da83-55f48d21772e	2021-05-20 16:48:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:48:46.852+03	2021-05-20 16:48:46.862+03	
4b2ba0ec-094c-a5ac-a702-76f31de4de23	2021-05-20 16:49:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:49:06.854+03	2021-05-20 16:49:06.861+03	
cc2db4c4-f9da-0306-ccaf-af0f721e80c6	2021-05-20 16:49:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:49:26.854+03	2021-05-20 16:49:26.861+03	
cf32977d-a691-4853-bac1-14c4b9a02b85	2021-05-20 16:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:49:47.852+03	2021-05-20 16:49:47.903+03	
bd1fa10c-d77f-9ac2-8223-853f3922c697	2021-05-20 16:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 16:50:00.853+03	2021-05-20 16:50:00.862+03	ERROR
45bfd81b-2325-02ce-8869-ad53f747df3b	2021-05-20 16:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:50:17.853+03	2021-05-20 16:50:17.859+03	
34ade336-a366-b077-f70a-40fb9ab2e62a	2021-05-20 16:50:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:50:37.853+03	2021-05-20 16:50:37.86+03	
099222ff-5f38-a1e2-27ba-db8c33ddb8e9	2021-05-20 16:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:50:57.853+03	2021-05-20 16:50:57.859+03	
315cda6a-26b7-3453-3729-680b681454e4	2021-05-20 16:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:51:17.853+03	2021-05-20 16:51:17.863+03	
4ba6ca11-6467-3f19-a29d-806274b44cb9	2021-05-20 16:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:51:37.853+03	2021-05-20 16:51:37.869+03	
54466e60-9a45-ba1f-0c45-4e13de4129c0	2021-05-20 16:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:51:57.853+03	2021-05-20 16:51:57.859+03	
bf02b1fc-5469-7b5c-8c1f-0b448409a08e	2021-05-20 16:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:52:19.853+03	2021-05-20 16:52:19.86+03	
9ebee373-8b83-4465-3a9c-9d749cb4228f	2021-05-20 16:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:52:39.853+03	2021-05-20 16:52:39.862+03	
7f112011-4ec4-01d0-5eb0-177acf602b13	2021-05-20 16:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:52:59.853+03	2021-05-20 16:52:59.859+03	
28509596-f31f-1202-f870-c043c1286eb2	2021-05-20 16:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:53:20.852+03	2021-05-20 16:53:20.863+03	
e7a5693e-03ce-f47b-11e9-766aaad0c5ec	2021-05-20 16:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:53:40.852+03	2021-05-20 16:53:40.858+03	
3b4608de-2858-487e-55c4-001d8bb8ed27	2021-05-20 16:54:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:54:01.854+03	2021-05-20 16:54:01.86+03	
68a28cab-655f-a832-9cc7-cf3138d6781e	2021-05-20 16:54:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:54:22.853+03	2021-05-20 16:54:22.86+03	
076b643c-7c75-a33e-62ca-828ff3d544be	2021-05-20 16:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:54:42.853+03	2021-05-20 16:54:42.87+03	
83d067d1-0499-c347-c7cb-dd4547d93c7f	2021-05-20 16:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:55:03.852+03	2021-05-20 16:55:03.871+03	
986decef-c090-4d3f-ba81-421137a7aa9d	2021-05-20 16:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:55:24.852+03	2021-05-20 16:55:24.86+03	
52bf76ec-20ee-72ac-f2fa-604d2238891b	2021-05-20 16:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:55:44.853+03	2021-05-20 16:55:44.859+03	
75c2ad63-8fc6-dfd6-afe3-44f6524862e1	2021-05-20 16:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:56:04.853+03	2021-05-20 16:56:04.861+03	
68bb41c2-5008-ad45-2803-6fadf7b6d464	2021-05-20 16:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:56:25.852+03	2021-05-20 16:56:25.859+03	
6964e768-fc66-9668-d769-c8435af23008	2021-05-20 16:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:56:45.853+03	2021-05-20 16:56:45.881+03	
ae10c1d6-559d-569c-b1ca-9d01c551d405	2021-05-20 16:57:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:57:06.853+03	2021-05-20 16:57:06.86+03	
1bdfc8b0-7eec-dfd2-0ab0-48842c3f6e39	2021-05-20 16:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:57:27.853+03	2021-05-20 16:57:27.861+03	
08f1b35a-86b2-22fa-e90d-ae0dbded7c3b	2021-05-20 16:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:57:47.853+03	2021-05-20 16:57:47.86+03	
fca8ff0b-ae03-363c-6189-8675433aa0a3	2021-05-20 16:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:58:07.853+03	2021-05-20 16:58:07.86+03	
4ac9dc5e-693c-839a-20a6-d97b4bda8f6c	2021-05-20 16:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:58:28.852+03	2021-05-20 16:58:28.859+03	
cae4948f-dd7d-a1db-1ea1-f24e46bc6ca2	2021-05-20 16:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:58:48.852+03	2021-05-20 16:58:48.859+03	
7f895d19-0e0f-7e86-af3a-f239e774973a	2021-05-20 16:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:38:12.852+03	2021-05-20 16:38:12.87+03	
113ed537-d993-bf97-66c6-e6e4e5ba6811	2021-05-20 16:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:38:32.852+03	2021-05-20 16:38:32.868+03	
70494784-c0b2-0dc0-3cf1-1660a953733e	2021-05-20 16:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:38:52.853+03	2021-05-20 16:38:52.859+03	
4755506b-9132-56af-5d81-2871d2eba642	2021-05-20 16:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:39:12.853+03	2021-05-20 16:39:12.863+03	
fa1a82fe-1481-917d-bb41-2f5a617c2527	2021-05-20 16:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:39:32.853+03	2021-05-20 16:39:32.861+03	
2851a56a-9815-0e61-641b-df52802829f1	2021-05-20 16:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:39:52.853+03	2021-05-20 16:39:52.861+03	
ce3813ab-561c-3798-4367-b4325179b3cf	2021-05-20 16:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:40:03.853+03	2021-05-20 16:40:03.86+03	
4663c9bf-25a1-585c-d79c-ead7f09c20e5	2021-05-20 16:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:40:23.853+03	2021-05-20 16:40:23.863+03	
e56e0374-7b6f-6616-0689-e59ec62d4235	2021-05-20 16:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:40:43.853+03	2021-05-20 16:40:43.859+03	
6b0d1c3e-1c88-f4a9-f269-12784a504839	2021-05-20 16:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:41:04.853+03	2021-05-20 16:41:04.869+03	
17580036-cad4-5ee4-7cba-290fec5b27dc	2021-05-20 16:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:41:25.852+03	2021-05-20 16:41:25.861+03	
b001bb8d-1a43-effb-9cc4-7499ae8cd4cb	2021-05-20 16:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:41:45.853+03	2021-05-20 16:41:45.859+03	
0c91f171-04a2-92fe-40d5-ada9c608c1de	2021-05-20 16:42:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:42:06.853+03	2021-05-20 16:42:06.86+03	
f318ff4f-49d0-7e16-1e52-1d0c0b2d5a06	2021-05-20 16:42:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:42:26.853+03	2021-05-20 16:42:26.859+03	
fa013702-068c-5d4d-2b82-05012faaf90a	2021-05-20 16:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:42:46.853+03	2021-05-20 16:42:46.86+03	
66dc29a0-c3e8-01e3-bb09-5f1f7999dff8	2021-05-20 16:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:43:08.853+03	2021-05-20 16:43:08.861+03	
772e750f-a7eb-b97c-1862-3fcbcad5ad8e	2021-05-20 16:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:43:28.853+03	2021-05-20 16:43:28.862+03	
fc8839a7-987b-90e0-b892-6f0a12ef9ce5	2021-05-20 16:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:43:48.853+03	2021-05-20 16:43:48.869+03	
bf89cd37-4d76-bb69-74ba-c1918c5b342c	2021-05-20 16:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:44:08.853+03	2021-05-20 16:44:08.862+03	
eb02c325-d490-2ede-85b1-2e7ea7beef45	2021-05-20 16:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:44:28.853+03	2021-05-20 16:44:28.86+03	
6b4835f1-cd45-6722-817e-23d36141ab96	2021-05-20 16:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:44:50.853+03	2021-05-20 16:44:50.859+03	
3fbe957a-666d-aeb6-4b6f-2ec614195548	2021-05-20 16:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:45:11.852+03	2021-05-20 16:45:11.86+03	
1af98845-0ee5-13e6-0965-075a8a2f6ce9	2021-05-20 16:45:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:45:31.853+03	2021-05-20 16:45:31.86+03	
687c534a-01c0-8395-68f7-6fdd2d62f4ce	2021-05-20 16:45:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:45:51.853+03	2021-05-20 16:45:51.859+03	
f0251f05-5865-8e8e-b84f-8d106e817fbb	2021-05-20 16:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:46:12.853+03	2021-05-20 16:46:12.861+03	
af014acc-28a8-2809-0921-6d2c6ae9c3aa	2021-05-20 16:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:46:32.853+03	2021-05-20 16:46:32.861+03	
c3851ba4-12e2-552c-f98f-2c2094e8b36c	2021-05-20 16:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:46:52.853+03	2021-05-20 16:46:52.86+03	
8d1b52c0-5232-71bc-e4ec-cdb294837af0	2021-05-20 16:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:47:12.853+03	2021-05-20 16:47:12.866+03	
74089cda-a93b-f08c-2d6e-3645dc5cac41	2021-05-20 16:47:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:47:33.853+03	2021-05-20 16:47:33.868+03	
ff86d2bd-2782-fa72-ab6a-1b45f96a219e	2021-05-20 16:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:47:54.853+03	2021-05-20 16:47:54.86+03	
a1aba0ac-21e1-9583-9b91-cfc193065260	2021-05-20 16:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:48:15.852+03	2021-05-20 16:48:15.861+03	
e1cd9d62-cc3c-fd90-a032-47866e7e6368	2021-05-20 16:48:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:48:36.852+03	2021-05-20 16:48:36.859+03	
425fc222-0243-ad2f-1117-18420698c226	2021-05-20 16:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:48:56.853+03	2021-05-20 16:48:56.861+03	
50772209-8db3-ea24-a5fe-4272a7c82706	2021-05-20 16:49:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:49:16.854+03	2021-05-20 16:49:16.861+03	
9a75472f-97e7-ffe6-1439-16b50a6e5c38	2021-05-20 16:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:49:37.852+03	2021-05-20 16:49:37.859+03	
781d119f-ccdf-3885-895c-ec91ef38839f	2021-05-20 16:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:49:57.852+03	2021-05-20 16:49:57.869+03	
58b3b2aa-34e9-1592-0909-d39112eefbfa	2021-05-20 16:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:50:07.852+03	2021-05-20 16:50:07.859+03	
3fbd35a7-d417-be02-1b51-72726731a9cd	2021-05-20 16:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:50:27.853+03	2021-05-20 16:50:27.86+03	
0df819a1-e68d-8ee0-689f-4515c0fda050	2021-05-20 16:50:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:50:47.853+03	2021-05-20 16:50:47.86+03	
098a5640-976a-18a4-bff1-90a5d0f948d7	2021-05-20 16:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:51:07.853+03	2021-05-20 16:51:07.859+03	
48c531bd-b789-e867-1076-45c20fed1cc3	2021-05-20 16:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:51:27.853+03	2021-05-20 16:51:27.859+03	
f786db40-3ba0-d6df-a218-0daf789e2e8a	2021-05-20 16:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:51:47.853+03	2021-05-20 16:51:47.86+03	
e3f887c4-b50a-7bef-ccc1-9f023d81e726	2021-05-20 16:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:52:08.853+03	2021-05-20 16:52:08.868+03	
6f634a00-4ec6-2360-5f94-45f465d48e02	2021-05-20 16:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:52:29.853+03	2021-05-20 16:52:29.86+03	
d7c38262-aa06-5b38-193c-7a6f1a135fdd	2021-05-20 16:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:52:49.853+03	2021-05-20 16:52:49.865+03	
023cce8a-ebaa-92f5-0821-8ad3d20c5716	2021-05-20 16:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:53:09.853+03	2021-05-20 16:53:09.859+03	
15991d90-24f8-77df-1b2d-7fc579622357	2021-05-20 16:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:53:30.852+03	2021-05-20 16:53:30.86+03	
473c99cc-2d53-07cd-4721-a561ad0114b0	2021-05-20 16:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:53:50.853+03	2021-05-20 16:53:50.859+03	
798d58fc-e8bb-7b94-fb51-05ac33f89de8	2021-05-20 16:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:54:12.852+03	2021-05-20 16:54:12.912+03	
27d1adce-c123-ca35-adca-e18455f6f62b	2021-05-20 16:54:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:54:32.853+03	2021-05-20 16:54:32.87+03	
c9135406-ac3b-2fa8-fa89-17668f084588	2021-05-20 16:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:54:52.853+03	2021-05-20 16:54:52.859+03	
448448f4-33b4-474f-a44e-75e30e5310ad	2021-05-20 16:55:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:55:13.853+03	2021-05-20 16:55:13.859+03	
ebd883da-8a41-f215-8a4a-cdc4c90edab2	2021-05-20 16:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:55:34.853+03	2021-05-20 16:55:34.859+03	
67cee104-a5f0-8049-d24e-5182f845815a	2021-05-20 16:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:55:54.853+03	2021-05-20 16:55:54.861+03	
d83ac00f-dbc1-1990-e6fc-9d3d51acede0	2021-05-20 16:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:56:14.853+03	2021-05-20 16:56:14.861+03	
3afd4ec1-157b-cf21-b9ed-16a509fcbaa3	2021-05-20 16:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:56:35.853+03	2021-05-20 16:56:35.859+03	
6e9ee81b-88e8-aa14-78e3-4598d42400a5	2021-05-20 16:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:56:55.853+03	2021-05-20 16:56:55.859+03	
ad03e7f4-7934-aaab-3383-fb0eecef7339	2021-05-20 16:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:57:17.853+03	2021-05-20 16:57:17.861+03	
9e5e29ac-d436-8526-ae0a-6244c3a84eda	2021-05-20 16:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:57:37.853+03	2021-05-20 16:57:37.861+03	
22fda6c1-ca54-0be1-b21c-cecbc1356750	2021-05-20 16:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:57:57.853+03	2021-05-20 16:57:57.861+03	
4e564021-daa9-35f1-aa64-3161c4fc6992	2021-05-20 16:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:58:17.853+03	2021-05-20 16:58:17.86+03	
e35f4d16-5f8e-4993-4df0-794d77485f81	2021-05-20 16:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:58:38.852+03	2021-05-20 16:58:38.859+03	
4b955d1a-6964-c7b0-36a6-d7d0de94ffce	2021-05-20 16:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:58:58.853+03	2021-05-20 16:58:58.861+03	
3a157286-0520-7dd8-2e02-d6220adc5f85	2021-05-20 16:59:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:59:09.852+03	2021-05-20 16:59:09.866+03	
abc7570b-2da5-1ded-f9fb-ed0e282066f1	2021-05-20 16:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:59:29.853+03	2021-05-20 16:59:30.194+03	
cfe50d00-74be-8512-e2bb-5a2ee3e4a30e	2021-05-20 16:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:59:49.853+03	2021-05-20 16:59:49.859+03	
a6b1823a-129a-0eee-b2b2-59db144a4b3a	2021-05-20 17:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 17:00:00.854+03	2021-05-20 17:00:00.863+03	ERROR
7dd3e984-73cc-86f0-9dd3-484cf19e3d48	2021-05-20 17:00:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:00:19.854+03	2021-05-20 17:00:19.866+03	
1df79f95-efa8-0a03-103b-5dacc3008840	2021-05-20 17:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:00:40.853+03	2021-05-20 17:00:40.861+03	
2fd2d620-84f1-cf14-992c-dea59d39adb0	2021-05-20 17:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:01:00.853+03	2021-05-20 17:01:00.862+03	
d8c9d8e8-4147-94f2-9f81-5d4b8fcaaa7a	2021-05-20 17:01:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:01:21.853+03	2021-05-20 17:01:21.859+03	
e04fcddf-5609-f402-7bb1-12b7dd4ec2ca	2021-05-20 17:01:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:01:41.853+03	2021-05-20 17:01:41.858+03	
35e70558-1101-f9a5-c607-54171fb280ce	2021-05-20 17:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:02:02.853+03	2021-05-20 17:02:02.859+03	
71b1152c-c3d4-39ce-ac24-218ffd217849	2021-05-20 17:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:02:24.853+03	2021-05-20 17:02:24.864+03	
73203188-f245-55e7-7473-04ccc3783c37	2021-05-20 17:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:02:44.853+03	2021-05-20 17:02:44.861+03	
5afe8006-7225-2dbb-9128-afd9d5765a5a	2021-05-20 17:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:03:04.853+03	2021-05-20 17:03:04.86+03	
1dbdb494-8337-0395-cc89-cf0db4bbd268	2021-05-20 17:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:03:25.853+03	2021-05-20 17:03:25.86+03	
e71a612c-37df-de22-a678-9423092494db	2021-05-20 17:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:03:47.853+03	2021-05-20 17:03:47.86+03	
2eba06e0-86ef-f106-0c17-6e84a848347a	2021-05-20 17:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:04:09.853+03	2021-05-20 17:04:09.876+03	
99323b65-6f81-2914-641a-e3b2815c89cf	2021-05-20 17:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:04:30.853+03	2021-05-20 17:04:30.86+03	
6b4aa56e-839a-bfcc-3df3-e5a506cf9c8e	2021-05-20 17:04:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:04:51.853+03	2021-05-20 17:04:51.861+03	
6e8a6bb6-4eb2-fac7-9c62-49372d1b9a1e	2021-05-20 17:05:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:05:11.855+03	2021-05-20 17:05:11.871+03	
4cc3b253-337a-8bed-1cac-fd6aef930ab8	2021-05-20 17:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:05:32.853+03	2021-05-20 17:05:32.861+03	
c0030f45-e26e-0844-a03c-1e31a75b087f	2021-05-20 17:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:05:53.852+03	2021-05-20 17:05:53.859+03	
4232b38f-3fb8-3ecf-2dd8-0b1688bbb367	2021-05-20 17:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:06:14.852+03	2021-05-20 17:06:14.859+03	
f0d952b3-8d6f-a784-4575-6a2837b50092	2021-05-20 17:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:06:35.853+03	2021-05-20 17:06:35.873+03	
7e5f1a07-ca6c-0d9c-6d60-e59521bef053	2021-05-20 17:06:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:06:56.853+03	2021-05-20 17:06:56.86+03	
4d128704-6462-f3b7-8211-f2ee00e27a79	2021-05-20 17:07:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:07:16.854+03	2021-05-20 17:07:16.861+03	
7b1cdf29-04e3-9928-857d-f8dab7f4172a	2021-05-20 17:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:07:37.853+03	2021-05-20 17:07:37.86+03	
7433dbe6-1393-d2ee-f465-db4fc3c9f95f	2021-05-20 17:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:07:58.853+03	2021-05-20 17:07:58.872+03	
ff321530-16b8-3adb-b788-a0d3ee808a54	2021-05-20 17:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:08:19.853+03	2021-05-20 17:08:19.872+03	
1c221bc9-8523-5a7b-e59a-edad3ddcf25e	2021-05-20 17:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:08:39.853+03	2021-05-20 17:08:39.876+03	
f43e59ba-aa9c-6a62-8ec1-4db420811442	2021-05-20 17:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:08:59.853+03	2021-05-20 17:08:59.861+03	
a7ecac8b-2a31-5df3-9a2d-a5a59aab1c76	2021-05-20 17:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:09:19.853+03	2021-05-20 17:09:19.862+03	
48ba725b-3e67-bb83-d0e8-c72d69f5d9b0	2021-05-20 17:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:09:39.853+03	2021-05-20 17:09:39.862+03	
646be7c9-988b-7216-a4fd-76db9747f7b3	2021-05-20 17:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:10:00.853+03	2021-05-20 17:10:00.862+03	
f93486ea-8d4b-240c-f2bd-66388f8fe6c0	2021-05-20 17:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:10:21.852+03	2021-05-20 17:10:21.86+03	
13a65acc-7165-939f-f381-74f3b2930e0b	2021-05-20 17:10:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:10:41.854+03	2021-05-20 17:10:41.864+03	
c92e3b77-724f-4f4c-463d-d7e3b0dd65b8	2021-05-20 17:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:11:02.853+03	2021-05-20 17:11:02.872+03	
6c01eb47-03d5-4360-7591-374c323fa82d	2021-05-20 17:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:11:23.853+03	2021-05-20 17:11:23.871+03	
e02b141c-cf42-f9ab-5080-f2dc44d25996	2021-05-20 17:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:11:44.853+03	2021-05-20 17:11:44.87+03	
ea7bb782-cb31-ebe5-c388-acb48181655c	2021-05-20 17:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:12:05.853+03	2021-05-20 17:12:05.86+03	
ee4c5fcc-68c0-241e-6959-233ca98ee347	2021-05-20 17:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:12:27.853+03	2021-05-20 17:12:27.863+03	
4e3f70dc-407a-8d68-05b8-c83bb7dc4839	2021-05-20 17:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:12:48.853+03	2021-05-20 17:12:48.861+03	
135daf00-3d01-b1bb-6317-a009053f83c1	2021-05-20 17:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:13:09.853+03	2021-05-20 17:13:09.867+03	
2e864a17-50b7-3dcf-4dc6-09d441999405	2021-05-20 17:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:13:29.853+03	2021-05-20 17:13:29.871+03	
f678e760-6948-c3f8-7bc7-c27d9354ad77	2021-05-20 17:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:13:49.853+03	2021-05-20 17:13:49.864+03	
b6708f38-69b0-4d58-bfde-c91b16f85ad6	2021-05-20 17:14:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:14:11.852+03	2021-05-20 17:14:11.86+03	
da4a274f-fe5c-de35-89c7-39177d37a591	2021-05-20 17:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:14:32.853+03	2021-05-20 17:14:32.861+03	
61ceeed0-1121-3ce7-bdbb-16e0609171cf	2021-05-20 17:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:14:53.852+03	2021-05-20 17:14:54.094+03	
aa63c0de-872e-b172-f4e0-db9564299682	2021-05-20 17:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:15:13.853+03	2021-05-20 17:15:13.861+03	
6fb7918e-90f3-313d-bf6d-1a5dbf2e5a24	2021-05-20 17:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:15:34.853+03	2021-05-20 17:15:34.862+03	
8a28ab49-d466-e0d1-a7a1-279ced87a9a0	2021-05-20 17:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:15:54.853+03	2021-05-20 17:15:54.86+03	
8ca52205-a858-13c0-a1e1-6416d513f6a3	2021-05-20 17:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:16:15.852+03	2021-05-20 17:16:15.859+03	
c732a342-f843-c5df-4651-e49dce64f568	2021-05-20 17:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:16:35.853+03	2021-05-20 17:16:35.859+03	
02874d0e-70a4-d2aa-3878-923ce7f5a51f	2021-05-20 17:16:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:16:56.853+03	2021-05-20 17:16:56.859+03	
9bebef64-7164-4351-3cc7-625766a8a983	2021-05-20 17:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:17:17.853+03	2021-05-20 17:17:17.872+03	
5b0e7b3f-ce25-3345-b0e9-1ba2242a8820	2021-05-20 17:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:17:37.853+03	2021-05-20 17:17:37.859+03	
8baa8389-c851-dd20-24c1-d2e9934a0155	2021-05-20 17:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:17:57.853+03	2021-05-20 17:17:57.86+03	
c4d09063-d78d-e357-51e9-23fbe555c338	2021-05-20 17:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:18:17.853+03	2021-05-20 17:18:17.865+03	
5c8f5b0e-53fd-b1c1-e0ba-a31e1aaa2376	2021-05-20 17:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:18:37.853+03	2021-05-20 17:18:37.859+03	
ccd25dbe-a836-e56a-3cde-bad71e746663	2021-05-20 17:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:18:57.853+03	2021-05-20 17:18:57.86+03	
fb6b3417-21cf-b4b4-80e0-5415e671b1e6	2021-05-20 17:19:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:19:17.853+03	2021-05-20 17:19:17.863+03	
1d821d2d-f35a-1184-fbea-d16d880dc288	2021-05-20 17:19:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:19:37.853+03	2021-05-20 17:19:37.859+03	
dfdfe1b8-8dbf-4c63-60d3-1e8ed125fe79	2021-05-20 17:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:19:58.853+03	2021-05-20 17:19:58.859+03	
ad2c3ba9-6aec-f31a-01e3-99d676560916	2021-05-20 17:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:20:09.853+03	2021-05-20 17:20:09.868+03	
6a55d5bf-39c7-d6ed-e4f9-e721fd45c8d4	2021-05-20 16:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:59:19.852+03	2021-05-20 16:59:19.859+03	
7833c3cf-a66d-70fe-e169-30b57be5fbdf	2021-05-20 16:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:59:39.853+03	2021-05-20 16:59:39.859+03	
82779c84-9cee-7e36-c48a-e34eef474973	2021-05-20 16:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 16:59:59.853+03	2021-05-20 16:59:59.862+03	
8675dfd0-1f29-7504-5f91-291de9bbeb02	2021-05-20 17:00:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:00:09.853+03	2021-05-20 17:00:09.873+03	
025bfb1f-255b-3e18-5699-e619c3946bc7	2021-05-20 17:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:00:30.853+03	2021-05-20 17:00:30.861+03	
38bbbb20-c243-e907-abf3-58644a621e3d	2021-05-20 17:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:00:50.853+03	2021-05-20 17:00:50.859+03	
db07c2ed-62d8-7d19-9a37-612d33c0a302	2021-05-20 17:01:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:01:10.854+03	2021-05-20 17:01:10.864+03	
d90a478b-499a-57a7-a25b-300e0782d0e6	2021-05-20 17:01:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:01:31.853+03	2021-05-20 17:01:31.86+03	
73a713c9-6640-9106-d2bd-6874285b692d	2021-05-20 17:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:01:52.853+03	2021-05-20 17:01:52.86+03	
19c9b45b-7a86-90bf-29a1-2b8f9296d502	2021-05-20 17:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:02:13.853+03	2021-05-20 17:02:13.867+03	
0a30ca0e-f0a3-f8f7-b7b2-18f30d4fa0af	2021-05-20 17:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:02:34.853+03	2021-05-20 17:02:34.86+03	
2b1976c9-15c0-bea2-28f7-67f13cec89a6	2021-05-20 17:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:02:54.853+03	2021-05-20 17:02:54.862+03	
8b11ab24-d89c-d866-091c-dfd44e575007	2021-05-20 17:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:03:14.853+03	2021-05-20 17:03:14.859+03	
fe7887dd-5c23-901e-a705-55a7431bc400	2021-05-20 17:03:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:03:36.854+03	2021-05-20 17:03:36.86+03	
2ca90dc6-e4ce-c0ea-feb0-58fbc244daac	2021-05-20 17:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:03:58.853+03	2021-05-20 17:03:58.864+03	
117a3f46-c1d4-47cf-cde3-77869e937f24	2021-05-20 17:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:04:19.853+03	2021-05-20 17:04:19.862+03	
17fb752b-c3c0-ad2e-a623-1bf5fdf83905	2021-05-20 17:04:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:04:41.853+03	2021-05-20 17:04:41.859+03	
a4ee077a-6668-d0e5-0236-a47ea10a47e1	2021-05-20 17:05:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:05:01.854+03	2021-05-20 17:05:01.883+03	
7265f0ec-9f1b-82d7-dfdc-473f53ba0fc2	2021-05-20 17:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:05:22.853+03	2021-05-20 17:05:22.86+03	
34a440c3-5896-664e-fe37-77d81fc70070	2021-05-20 17:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:05:42.853+03	2021-05-20 17:05:42.905+03	
22f82905-a57e-8fae-e80b-80e05503de97	2021-05-20 17:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:06:03.853+03	2021-05-20 17:06:03.862+03	
27246dd2-20e3-1dc7-9534-ce33d35f62e2	2021-05-20 17:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:06:24.853+03	2021-05-20 17:06:24.86+03	
f694ab10-2978-217b-1548-2043e6e388e0	2021-05-20 17:06:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:06:46.852+03	2021-05-20 17:06:46.861+03	
5dae8609-a139-e9db-8cba-8a82b6331197	2021-05-20 17:07:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:07:06.854+03	2021-05-20 17:07:06.861+03	
d982d78e-e1c8-71ae-e62d-b5e0d3cc0b73	2021-05-20 17:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:07:27.853+03	2021-05-20 17:07:27.876+03	
4854810c-a001-1ee1-fa5e-cbdeb753151e	2021-05-20 17:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:07:48.852+03	2021-05-20 17:07:48.872+03	
985f8813-8e61-3a9b-73ac-d3668961327c	2021-05-20 17:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:08:09.852+03	2021-05-20 17:08:09.882+03	
2310b631-1b7a-4e25-b348-396b8f13ccf6	2021-05-20 17:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:08:29.853+03	2021-05-20 17:08:29.86+03	
8dee5af1-6ff2-744f-d3b8-84ccf33177ee	2021-05-20 17:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:08:49.853+03	2021-05-20 17:08:49.861+03	
8885e8f8-b6f2-c9e1-7b5e-9905cf42bcd1	2021-05-20 17:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:09:09.853+03	2021-05-20 17:09:09.866+03	
9c1a109b-3460-76ff-fca5-b579b5b96f2d	2021-05-20 17:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:09:29.853+03	2021-05-20 17:09:29.87+03	
74b92153-4c12-bc9e-9b57-f71545399685	2021-05-20 17:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:09:50.852+03	2021-05-20 17:09:50.859+03	
42a8b362-2123-c0c2-adac-3f89a04ca3bd	2021-05-20 17:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 17:10:00.853+03	2021-05-20 17:10:00.875+03	ERROR
5623237b-06d3-91ac-0260-bef214e4731e	2021-05-20 17:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:10:10.853+03	2021-05-20 17:10:10.861+03	
23532dae-d22d-9229-1ef4-75f725081e7e	2021-05-20 17:10:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:10:31.854+03	2021-05-20 17:10:31.862+03	
e32ae6f2-1621-bb22-cf81-2e91d350f231	2021-05-20 17:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:10:52.853+03	2021-05-20 17:10:52.87+03	
8462f375-bd20-7545-a72e-942528a6ffb6	2021-05-20 17:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:11:13.853+03	2021-05-20 17:11:13.861+03	
b2d2f27a-dd6f-31d2-04bc-b24c89a07c11	2021-05-20 17:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:11:33.853+03	2021-05-20 17:11:33.883+03	
ddc00c92-1021-2ab2-2d80-ce56e3961b02	2021-05-20 17:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:11:55.852+03	2021-05-20 17:11:55.86+03	
c44d4d67-3e6f-a8b9-bd5d-ff35e6f94d02	2021-05-20 17:12:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:12:16.854+03	2021-05-20 17:12:16.86+03	
6aacab76-4eda-72c4-20de-0c9bf7e8484e	2021-05-20 17:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:12:37.853+03	2021-05-20 17:12:37.862+03	
c19390c5-09f9-4b67-6d6f-19d5f0aa6377	2021-05-20 17:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:12:59.853+03	2021-05-20 17:12:59.86+03	
65f2a604-0d8a-b482-86b0-040d04861b50	2021-05-20 17:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:13:19.853+03	2021-05-20 17:13:19.861+03	
6caf8230-4d2a-86e0-7858-f1744eed638d	2021-05-20 17:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:13:39.853+03	2021-05-20 17:13:39.861+03	
14bd3902-9a69-054c-992c-21b517007c69	2021-05-20 17:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:14:00.853+03	2021-05-20 17:14:00.861+03	
952cafd5-c459-e93a-2567-5babc5f0bf99	2021-05-20 17:14:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:14:21.854+03	2021-05-20 17:14:21.871+03	
22c9596a-d618-017a-e82e-b9ab334c8105	2021-05-20 17:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:14:42.853+03	2021-05-20 17:14:42.876+03	
3219724e-291e-436f-2136-2420b0409bf5	2021-05-20 17:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:15:03.853+03	2021-05-20 17:15:03.86+03	
d5196e3b-5758-5cef-a1e7-0e740c14b20b	2021-05-20 17:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:15:24.852+03	2021-05-20 17:15:24.86+03	
4e70492a-92af-96b4-f977-01d6133cfb80	2021-05-20 17:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:15:44.853+03	2021-05-20 17:15:44.86+03	
45d0a654-1b11-e7e5-8848-df54a87c745b	2021-05-20 17:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:16:04.853+03	2021-05-20 17:16:04.871+03	
830b5f87-ac77-e1d1-6e31-8daaad85b89b	2021-05-20 17:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:16:25.853+03	2021-05-20 17:16:25.861+03	
e3f508a4-5bcb-d356-8f38-01371ebee241	2021-05-20 17:16:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:16:46.853+03	2021-05-20 17:16:46.861+03	
e4e2c3f6-2f6e-4a93-f367-17f2ab2c2dc7	2021-05-20 17:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:17:07.852+03	2021-05-20 17:17:07.858+03	
a551d666-3cbc-ac79-e70f-52b839cfe193	2021-05-20 17:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:17:27.853+03	2021-05-20 17:17:27.86+03	
def99958-ffad-eb20-bb55-5d7cee76d35f	2021-05-20 17:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:17:47.853+03	2021-05-20 17:17:47.915+03	
65eec341-fe2f-1949-1c68-12e485f90da6	2021-05-20 17:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:18:07.853+03	2021-05-20 17:18:07.861+03	
72a358ed-e8db-cd30-4145-26919986d917	2021-05-20 17:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:18:27.853+03	2021-05-20 17:18:27.861+03	
ed1618f7-aa32-0712-94e8-a3b89ae70bfb	2021-05-20 17:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:18:47.853+03	2021-05-20 17:18:47.873+03	
d59c9dc8-6fdd-0906-b0a0-c95ad14551a6	2021-05-20 17:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:19:07.853+03	2021-05-20 17:19:07.861+03	
e20dab95-ff64-94b9-8be0-75fe28ee2867	2021-05-20 17:19:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:19:27.853+03	2021-05-20 17:19:27.862+03	
e196de1e-1616-a3e3-7a5b-73167b0e7e63	2021-05-20 17:19:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:19:47.853+03	2021-05-20 17:19:47.859+03	
096ae82e-4cf1-6ba4-366e-b6d361bb5e44	2021-05-20 17:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 17:20:00.853+03	2021-05-20 17:20:00.857+03	ERROR
d8ba6479-db5a-f45b-16b9-0b44203ec719	2021-05-21 03:08:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:08:21.853+03	2021-05-21 03:08:21.859+03	
3d53c567-ed62-0fca-5608-56f989b2096f	2021-05-20 17:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:20:20.853+03	2021-05-20 17:20:20.864+03	
282089b8-307d-7519-d508-e40db66c549f	2021-05-20 20:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:22:34.853+03	2021-05-20 20:22:34.86+03	
afb658b3-38b5-0a69-6d25-5063643c5bff	2021-05-20 17:20:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:20:41.853+03	2021-05-20 17:20:41.875+03	
0af6b172-3b62-50f8-4425-3abc8d42276f	2021-05-20 17:21:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:21:01.854+03	2021-05-20 17:21:01.887+03	
ee372ec8-118d-2559-4ef5-ac9be40ff395	2021-05-20 20:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:22:55.852+03	2021-05-20 20:22:55.872+03	
a305f2e2-0a0c-99dc-0b38-24aa81befa02	2021-05-20 17:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:21:22.853+03	2021-05-20 17:21:22.86+03	
2db78f62-cf8e-ae02-eda2-3e1e57b108d0	2021-05-20 17:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:21:42.853+03	2021-05-20 17:21:42.874+03	
599cf1b8-c8e2-44eb-6072-a7a3b938aa98	2021-05-20 20:23:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:23:16.853+03	2021-05-20 20:23:16.859+03	
87a28ba2-48f3-c854-f7f2-8d959edd4960	2021-05-20 17:22:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:22:02.853+03	2021-05-20 17:22:02.871+03	
64f874ee-7a8a-593a-6e47-d611defb8cf7	2021-05-20 17:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:22:22.853+03	2021-05-20 17:22:22.864+03	
f819c207-297b-9e27-c7d8-0d47de189238	2021-05-20 20:23:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:23:36.853+03	2021-05-20 20:23:36.861+03	
e1a17416-b438-9c49-c986-4d5b1569344f	2021-05-20 17:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:22:43.853+03	2021-05-20 17:22:43.862+03	
1f5534e8-c082-fb60-a11d-f7433744e588	2021-05-20 17:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:23:03.853+03	2021-05-20 17:23:03.86+03	
ae03df05-ae94-5e5b-c915-d9f631b6ad93	2021-05-20 20:23:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:23:56.853+03	2021-05-20 20:23:56.859+03	
433b05e0-a910-2d18-6eda-704420359c15	2021-05-20 20:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:24:17.852+03	2021-05-20 20:24:17.859+03	
ff1805df-bb5f-93bd-774d-6ba8b634dd56	2021-05-20 20:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:24:37.852+03	2021-05-20 20:24:37.859+03	
a2ecd3a6-abd9-0ac5-f5ce-49a854b5345d	2021-05-20 20:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:24:57.853+03	2021-05-20 20:24:57.86+03	
913537af-4df6-0870-0b43-1733f62da9e8	2021-05-20 20:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:25:18.853+03	2021-05-20 20:25:18.859+03	
e67b8860-97ac-e310-9ed9-67afccc3cb53	2021-05-20 20:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:25:38.853+03	2021-05-20 20:25:38.86+03	
9a5da655-b453-444f-0755-b20fc7ee0a40	2021-05-20 20:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:25:58.853+03	2021-05-20 20:25:58.86+03	
41b11148-5e57-7a6e-a170-1c6e1577e09d	2021-05-20 20:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:26:19.853+03	2021-05-20 20:26:19.861+03	
45564b2d-9a6b-475d-5666-56c5aae37e4a	2021-05-20 20:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:26:40.852+03	2021-05-20 20:26:40.86+03	
e8fd3996-d606-aa13-9208-1851f342f187	2021-05-20 20:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:27:00.853+03	2021-05-20 20:27:00.861+03	
57d3e50e-5f56-f96a-fa98-9d5e64e81ba2	2021-05-20 20:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:27:20.853+03	2021-05-20 20:27:20.859+03	
2e902cc1-7111-f968-3d12-46b035472525	2021-05-20 20:27:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:27:41.852+03	2021-05-20 20:27:41.863+03	
12b76809-9415-b13a-7bc9-6a320dac584a	2021-05-20 20:28:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:28:01.853+03	2021-05-20 20:28:01.861+03	
13ac8596-5fab-f428-e5df-6df4e9708fc4	2021-05-20 20:28:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:28:21.854+03	2021-05-20 20:28:21.863+03	
c77592e6-a75e-31c9-3f93-9e477446f405	2021-05-20 20:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:28:43.853+03	2021-05-20 20:28:43.86+03	
53a7b9ee-70b0-28fa-8bba-38b12a532a42	2021-05-20 20:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:29:04.852+03	2021-05-20 20:29:04.859+03	
a6178cc5-7a1f-a183-e7e3-23e2b8b3eb49	2021-05-20 20:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:29:24.852+03	2021-05-20 20:29:24.859+03	
d43b6099-bda5-224a-b1cd-0e854645c36a	2021-05-20 20:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:29:45.852+03	2021-05-20 20:29:45.86+03	
5580d02f-d1c6-7821-baa9-147470951066	2021-05-20 20:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 20:30:00.852+03	2021-05-20 20:30:00.857+03	ERROR
57ef7d6d-9eb5-9ee4-6a08-3289dffd122b	2021-05-20 20:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:30:16.852+03	2021-05-20 20:30:16.859+03	
ccfbe6ea-0aab-cac8-7dd1-d63930f6152f	2021-05-20 20:30:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:30:36.852+03	2021-05-20 20:30:36.86+03	
447c94c7-8505-856b-08ba-a612e58b0f1b	2021-05-20 20:30:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:30:56.854+03	2021-05-20 20:30:56.861+03	
be3e572e-ccf6-3d16-e8bc-91a435f7c9cb	2021-05-20 20:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:31:17.853+03	2021-05-20 20:31:17.859+03	
14803c46-15ff-d65a-7400-d36b66460636	2021-05-20 20:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:31:37.853+03	2021-05-20 20:31:37.86+03	
ddf060c4-12f4-9690-823d-5889645826cd	2021-05-20 20:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:31:58.852+03	2021-05-20 20:31:58.859+03	
a4554798-5a36-3eb4-922e-fc09008c7a4a	2021-05-20 20:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:32:18.853+03	2021-05-20 20:32:18.86+03	
33376763-d2cb-88a7-eca2-cce475bf2154	2021-05-20 20:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:32:38.853+03	2021-05-20 20:32:38.859+03	
22fd7364-a242-29ca-1daa-9cac321f2fd0	2021-05-20 20:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:32:58.853+03	2021-05-20 20:32:58.859+03	
7acc3d83-fc36-0119-00ff-658b3575c357	2021-05-20 20:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:33:20.853+03	2021-05-20 20:33:20.86+03	
56cc651a-32e0-6292-b4dc-fec1287bf3ce	2021-05-20 20:33:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:33:41.853+03	2021-05-20 20:33:41.86+03	
79b259a2-4a96-aa49-a549-647341a6ad96	2021-05-20 20:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:34:01.854+03	2021-05-20 20:34:01.861+03	
3f70e3d9-3228-db7f-774b-1afd09826918	2021-05-20 20:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:34:22.852+03	2021-05-20 20:34:22.87+03	
0aba48ae-b081-6886-0a0d-1f2630d44b17	2021-05-20 20:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:34:42.853+03	2021-05-20 20:34:42.871+03	
9f17e0c3-c277-a211-4993-11c6f125981b	2021-05-20 20:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:35:03.852+03	2021-05-20 20:35:03.858+03	
7b374d4e-3924-4051-a936-28740ee9ec63	2021-05-20 20:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:35:23.852+03	2021-05-20 20:35:23.86+03	
086b47b1-1fbd-3a95-954f-f10123d78a16	2021-05-20 20:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:35:44.853+03	2021-05-20 20:35:44.863+03	
dc7a1b59-6227-3bf1-76c6-ae775f61271f	2021-05-20 20:36:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:36:06.852+03	2021-05-20 20:36:06.859+03	
14187f4e-17b4-c3cc-9716-394b7fcde162	2021-05-20 20:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:36:26.852+03	2021-05-20 20:36:26.858+03	
c60bf806-3d7f-49c5-429c-254b96c421e2	2021-05-20 20:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:36:46.852+03	2021-05-20 20:36:46.87+03	
2d1d181b-da8d-1f3a-974a-23d88356e872	2021-05-20 20:37:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:37:06.853+03	2021-05-20 20:37:06.861+03	
654f0ccf-fdc7-e871-e8b3-da7c678fd350	2021-05-20 20:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:37:27.852+03	2021-05-20 20:37:27.859+03	
00ba9c56-d45b-8fa1-a3a2-71657b9b2d84	2021-05-20 20:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:37:47.853+03	2021-05-20 20:37:47.86+03	
a9be5aaa-aeb3-24e0-921a-68d74e9950b4	2021-05-20 20:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:38:08.853+03	2021-05-20 20:38:08.862+03	
3b4a85dd-3b7a-e88f-1683-87b7f88042c6	2021-05-20 20:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:38:29.853+03	2021-05-20 20:38:29.86+03	
e09b19a2-2824-6334-7d15-f3234409e92e	2021-05-20 20:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:38:50.852+03	2021-05-20 20:38:50.859+03	
46738e5b-f439-e599-b2fa-9473fc2e5d01	2021-05-20 20:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:39:10.852+03	2021-05-20 20:39:10.86+03	
7d14c8f2-9be7-04a3-f4aa-fbf55f3ab296	2021-05-20 20:39:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:39:31.853+03	2021-05-20 20:39:31.861+03	
48a272bc-f589-5a2e-eb35-90a9e523f126	2021-05-20 20:39:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:39:51.854+03	2021-05-20 20:39:51.86+03	
431ab40d-c621-48e8-21c6-d68a9e990c1c	2021-05-20 20:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:40:02.853+03	2021-05-20 20:40:02.859+03	
6461daf2-7382-c2bc-0cf9-4e72e7f24b91	2021-05-20 20:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:40:23.852+03	2021-05-20 20:40:23.858+03	
ecf7f1fd-b9df-fe3b-8d2a-84e93274a631	2021-05-20 17:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:20:30.853+03	2021-05-20 17:20:30.861+03	
11f95408-1816-ab91-b8cb-e04439b755ac	2021-05-20 17:20:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:20:51.853+03	2021-05-20 17:20:51.861+03	
70aa389e-d82b-737e-b02f-583e0eb38e6a	2021-05-20 17:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:21:12.853+03	2021-05-20 17:21:12.861+03	
2b44da0e-6209-de52-d10c-5fb2ea7478f2	2021-05-20 17:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:21:32.853+03	2021-05-20 17:21:32.862+03	
f51fbe73-c5f3-67b1-b46d-b06bb1a96ff3	2021-05-20 17:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:21:52.853+03	2021-05-20 17:21:52.86+03	
20e1b5b6-0951-6d13-e821-ca47105a8968	2021-05-20 17:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:22:12.853+03	2021-05-20 17:22:12.859+03	
c0a14065-20c3-3146-4271-14007709b429	2021-05-20 17:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:22:32.853+03	2021-05-20 17:22:32.86+03	
6f91f3bb-11b0-6cf5-ee3b-a22f9abc656f	2021-05-20 17:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:22:53.853+03	2021-05-20 17:22:53.859+03	
e43a3500-6fcd-4226-1b8c-b468eb06ffd2	2021-05-20 17:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:23:13.853+03	2021-05-20 17:23:13.868+03	
369956b6-a361-1f3b-ad6f-562ddc0bbd9a	2021-05-20 17:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:23:23.853+03	2021-05-20 17:23:23.861+03	
ed39ad8a-0a24-1ae1-5d02-3eb1461ae98b	2021-05-20 17:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:23:33.853+03	2021-05-20 17:23:33.869+03	
95961b5e-dde5-5cbb-7a93-bfa1fc03c411	2021-05-20 17:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:23:44.852+03	2021-05-20 17:23:44.859+03	
49e84530-2250-2e03-6131-00456fb31db4	2021-05-20 17:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:23:54.852+03	2021-05-20 17:23:54.86+03	
1345db89-9484-cbc1-0271-54eced02197a	2021-05-20 17:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:24:04.852+03	2021-05-20 17:24:04.859+03	
fb90bd5d-3660-d15d-eb04-d24e4ce8096f	2021-05-20 17:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:24:14.852+03	2021-05-20 17:24:14.86+03	
58804b7b-feec-60a9-a880-f51d654bdfa0	2021-05-20 17:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:24:24.852+03	2021-05-20 17:24:24.859+03	
3f8b91ac-2af8-8300-d3b3-7bcbbdde0594	2021-05-20 17:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:24:34.852+03	2021-05-20 17:24:34.861+03	
25516621-9576-2d0b-0ca8-c1d8d6b9639e	2021-05-20 17:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:24:44.853+03	2021-05-20 17:24:44.86+03	
728c1dd7-a255-d15f-2a0d-a0a53a708485	2021-05-20 17:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:24:54.853+03	2021-05-20 17:24:54.86+03	
ee21ca35-56aa-be20-e5ea-96d9fb4e1b2d	2021-05-20 17:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:25:04.853+03	2021-05-20 17:25:04.859+03	
34d197c6-3082-b406-d085-d4f7d7634443	2021-05-20 17:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:25:15.852+03	2021-05-20 17:25:15.868+03	
a859a835-62f2-ec4f-ce3e-31094c7bf450	2021-05-20 17:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:25:25.853+03	2021-05-20 17:25:25.86+03	
cc5e4a14-d697-c28b-6508-7ce52af5de06	2021-05-20 17:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:25:35.853+03	2021-05-20 17:25:35.858+03	
690f34fc-b10f-92aa-a5f4-67deffee2412	2021-05-20 17:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:25:45.853+03	2021-05-20 17:25:45.861+03	
02e4aec4-9ade-8ccc-6e30-6a46917fb698	2021-05-20 17:25:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:25:56.853+03	2021-05-20 17:25:56.859+03	
a7389840-b41b-29a9-7bcc-0b35c3df30a3	2021-05-20 17:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:26:07.852+03	2021-05-20 17:26:07.859+03	
fcd5f1c7-3d6e-61f5-8afc-1220bc0bb5b5	2021-05-20 17:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:26:17.853+03	2021-05-20 17:26:17.861+03	
18891d21-858c-7822-b367-a00ae465a15d	2021-05-20 17:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:26:27.853+03	2021-05-20 17:26:27.864+03	
ed3db04d-8f15-45bb-0e6e-bcc7db4e05e0	2021-05-20 17:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:26:37.853+03	2021-05-20 17:26:37.861+03	
44658372-0324-4eff-6c1c-e852ee1fde04	2021-05-20 17:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:26:47.853+03	2021-05-20 17:26:47.859+03	
9479cc1d-9e06-3d1b-ef99-6af9714f08b9	2021-05-20 17:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:26:57.853+03	2021-05-20 17:26:57.86+03	
f2ac7680-d546-7ddf-2da8-79dc618744a2	2021-05-20 17:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:27:08.852+03	2021-05-20 17:27:08.859+03	
9397020b-15eb-f95e-deeb-a00b38dbe90b	2021-05-20 17:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:27:18.852+03	2021-05-20 17:27:18.86+03	
4d5727e7-2757-cb0b-a932-1aa75d15ceb7	2021-05-20 17:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:27:28.853+03	2021-05-20 17:27:28.861+03	
89f5a759-9fe7-b7ef-6ce9-692fa2b8133e	2021-05-20 17:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:27:38.853+03	2021-05-20 17:27:38.86+03	
4b90272c-d637-2dcf-dc20-c9ad9f1253fb	2021-05-20 17:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:27:49.852+03	2021-05-20 17:27:49.859+03	
1566b875-26d0-8e3b-0360-7ba254b3c159	2021-05-20 17:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:27:59.852+03	2021-05-20 17:27:59.859+03	
250a58ea-6226-da41-d9fd-472ac8a1394c	2021-05-20 17:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:28:09.853+03	2021-05-20 17:28:09.86+03	
f22571d2-d134-514a-635b-11b81881ba88	2021-05-20 17:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:28:19.853+03	2021-05-20 17:28:19.862+03	
70c9d18d-9075-9220-bd48-7c5d822ecb33	2021-05-20 17:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:28:29.853+03	2021-05-20 17:28:29.861+03	
7211ee55-ec9a-9fcb-328a-ad6f5e555fac	2021-05-20 17:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:28:40.852+03	2021-05-20 17:28:40.859+03	
3fac9b36-56ff-3234-2cb6-ac4b7b3ed7f4	2021-05-20 17:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:28:50.853+03	2021-05-20 17:28:50.86+03	
1516e60b-d819-15b8-660b-58e44375b320	2021-05-20 17:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:29:00.853+03	2021-05-20 17:29:00.865+03	
d7972c05-ff64-bad0-e309-6508f4919ea4	2021-05-20 17:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:29:10.853+03	2021-05-20 17:29:10.859+03	
1349d6eb-39a1-40fb-39cf-668168d3d4f5	2021-05-20 17:29:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:29:21.852+03	2021-05-20 17:29:21.86+03	
be2feaa9-555c-3e1a-ba27-d1be999c247b	2021-05-20 17:29:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:29:31.853+03	2021-05-20 17:29:31.859+03	
0445de64-9dd5-a380-dfc8-a06aed4d4a84	2021-05-20 17:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:29:42.853+03	2021-05-20 17:29:42.861+03	
360b8a81-7952-2232-64fc-8fcd452037a9	2021-05-20 17:29:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:29:52.853+03	2021-05-20 17:29:52.86+03	
bd823a93-7b82-c65c-decb-b7fce2847059	2021-05-20 17:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 17:30:00.852+03	2021-05-20 17:30:00.857+03	ERROR
55793e12-9e0b-a9fc-513e-3336a3a271b6	2021-05-20 17:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:30:02.853+03	2021-05-20 17:30:02.859+03	
ec57a707-8860-5438-1967-1a6d22340a1e	2021-05-20 17:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:30:12.853+03	2021-05-20 17:30:12.86+03	
5a2c4f5f-96c7-2825-d95f-01d2cdccb16c	2021-05-20 17:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:30:23.853+03	2021-05-20 17:30:23.86+03	
ca678043-b94d-66ba-e345-bea336b77673	2021-05-20 17:30:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:30:33.853+03	2021-05-20 17:30:33.859+03	
59d0a10b-a2da-cfb9-318c-23cc5c9b62b9	2021-05-20 17:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:30:44.853+03	2021-05-20 17:30:44.859+03	
95b4aa8f-08f1-647c-d8b9-8c280deb41dd	2021-05-20 17:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:30:55.852+03	2021-05-20 17:30:55.859+03	
549c9a08-902a-9c73-1692-f10e2b726af1	2021-05-20 17:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:31:05.853+03	2021-05-20 17:31:05.863+03	
7e1fb550-e7fa-5a2c-4cf2-b40aef18efc5	2021-05-20 17:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:31:15.853+03	2021-05-20 17:31:15.859+03	
40d30700-eca4-08af-2440-734f68764711	2021-05-20 17:31:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:31:26.853+03	2021-05-20 17:31:26.861+03	
3dc63cc3-8645-aaed-8326-c310e34edca2	2021-05-20 17:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:31:36.853+03	2021-05-20 17:31:36.86+03	
e57d7815-2998-6b09-c330-76b4c73c3de2	2021-05-20 17:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:31:47.852+03	2021-05-20 17:31:47.86+03	
6022e851-45c9-91eb-638d-261ac9e8cee3	2021-05-20 17:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:31:57.853+03	2021-05-20 17:31:57.862+03	
ec2df3e6-1b3e-c05f-25de-979cf7196ff5	2021-05-20 17:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:32:07.853+03	2021-05-20 17:32:07.86+03	
45e64e5f-619f-3854-82ae-9a5bf4ea14d9	2021-05-20 17:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:32:18.852+03	2021-05-20 17:32:18.859+03	
0325926f-c6dc-9ecc-9a03-8e5fab63bbc8	2021-05-20 17:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:32:28.852+03	2021-05-20 17:32:28.859+03	
dc3db8c0-c2ee-5fca-2f45-608a3e5fbf07	2021-05-20 17:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:32:48.853+03	2021-05-20 17:32:48.86+03	
8e37d127-6f2f-0bea-3646-ad1c214d2d49	2021-05-20 17:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:33:09.853+03	2021-05-20 17:33:09.86+03	
57c328e2-2b03-2a96-3767-04036ccd58a4	2021-05-20 17:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:33:29.853+03	2021-05-20 17:33:29.861+03	
771a34f0-a6c9-63c2-b29f-cd94859b8d8d	2021-05-20 17:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:33:50.853+03	2021-05-20 17:33:50.859+03	
ea319dc6-8e67-786d-5f76-cbeca58d0a18	2021-05-20 17:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:34:12.853+03	2021-05-20 17:34:12.859+03	
cc20a0ab-0f9a-325e-d11d-b25b434dcd03	2021-05-20 17:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:34:32.853+03	2021-05-20 17:34:32.868+03	
3c143a42-ad5a-5401-4298-bbe56412df23	2021-05-20 17:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:34:53.853+03	2021-05-20 17:34:53.86+03	
5ced9578-5874-0fe1-7e28-8e6b27cade27	2021-05-20 17:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:35:13.853+03	2021-05-20 17:35:13.874+03	
0bfb2fb7-4ebe-0681-d882-b68602b904ff	2021-05-20 17:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:35:34.852+03	2021-05-20 17:35:34.859+03	
305b95d6-6921-eac2-e72f-60c46b862d56	2021-05-20 17:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:35:54.853+03	2021-05-20 17:35:54.86+03	
b023ce79-f52f-458a-6911-cecbb8c74d7f	2021-05-20 17:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:36:15.853+03	2021-05-20 17:36:15.859+03	
9a5b097c-9a4c-4ab3-89e0-1319cbd5b07d	2021-05-20 17:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:36:36.852+03	2021-05-20 17:36:36.86+03	
c4359dc5-071c-f528-3af4-55b58bb811a6	2021-05-20 17:36:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:36:56.854+03	2021-05-20 17:36:56.86+03	
0a60f80f-e835-7026-4afc-769cc8ab6bf4	2021-05-20 17:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:37:17.852+03	2021-05-20 17:37:17.859+03	
3ceb8715-a34a-0ccf-c08b-17e8bc692b8c	2021-05-20 17:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:37:38.852+03	2021-05-20 17:37:38.861+03	
2b764cbc-f0fa-27df-6cb4-0c492cb86382	2021-05-20 17:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:37:58.852+03	2021-05-20 17:37:58.859+03	
28fa5962-61a7-6c3d-61db-fd378bb7d383	2021-05-20 17:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:38:18.853+03	2021-05-20 17:38:18.86+03	
faca97e6-e86c-9dfc-f3ce-55fa1fb0f40d	2021-05-20 17:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:38:39.852+03	2021-05-20 17:38:39.858+03	
be16eed6-5292-69d3-eac6-f4e65fdc60e5	2021-05-20 17:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:38:59.852+03	2021-05-20 17:38:59.859+03	
dfeab7ca-3c2b-cc4f-a6da-7fc8d1eb5a3c	2021-05-20 17:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:39:20.853+03	2021-05-20 17:39:20.861+03	
230a8e2a-18fc-5ccc-4e58-aa45efd97c4b	2021-05-20 17:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:39:41.853+03	2021-05-20 17:39:41.86+03	
b349a8c7-c8e4-e1c2-9fdc-c0773fcebafd	2021-05-20 17:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 17:40:00.853+03	2021-05-20 17:40:00.871+03	ERROR
b53b3f91-3a63-d8d1-fb88-4eb6115e8795	2021-05-20 17:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:40:11.854+03	2021-05-20 17:40:11.861+03	
bec4fe9d-2ac1-1070-2cef-1f0cb8c57682	2021-05-20 17:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:40:32.852+03	2021-05-20 17:40:32.859+03	
67c98369-e3dd-0f0c-9878-8ea16a49a240	2021-05-20 17:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:40:53.853+03	2021-05-20 17:40:53.871+03	
2337e422-d033-108f-b544-dea10e4d487f	2021-05-20 17:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:41:13.853+03	2021-05-20 17:41:13.861+03	
6cabc4cd-9f9c-d371-5242-599eaaaff255	2021-05-20 17:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:41:33.853+03	2021-05-20 17:41:33.861+03	
9535982b-d0a7-557f-c1c2-f59aed93480b	2021-05-20 17:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:41:54.852+03	2021-05-20 17:41:54.859+03	
6a8040ac-c076-92c3-6209-d7add575c061	2021-05-20 17:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:42:14.852+03	2021-05-20 17:42:14.858+03	
9c45d226-dca9-bab0-1a7b-3e78836b47b2	2021-05-20 17:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:42:35.852+03	2021-05-20 17:42:35.859+03	
4c216715-261f-389a-4966-f1344229843d	2021-05-20 17:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:42:55.853+03	2021-05-20 17:42:55.862+03	
4a158e7d-4208-89d9-acca-660db7104925	2021-05-20 17:43:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:43:16.854+03	2021-05-20 17:43:16.862+03	
3ab8be64-64d6-34d6-f649-b81b3fa4b298	2021-05-20 17:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:43:37.852+03	2021-05-20 17:43:37.86+03	
6c7ce934-9890-e45c-46c0-b46b877de7a7	2021-05-20 17:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:43:57.853+03	2021-05-20 17:43:57.859+03	
6abd6bae-f5d4-88d1-fca6-16d5aa7f1e2b	2021-05-20 17:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:44:17.853+03	2021-05-20 17:44:17.86+03	
b1159620-d587-8087-f4ed-d9791bfe954e	2021-05-20 17:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:44:39.852+03	2021-05-20 17:44:39.86+03	
ca9a7943-ca5b-9e9d-ed75-407446e72958	2021-05-20 17:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:44:59.853+03	2021-05-20 17:44:59.86+03	
a169b319-c05d-dd22-168a-03ffa63c57ef	2021-05-20 17:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:45:20.853+03	2021-05-20 17:45:20.859+03	
e502d298-7f27-d3c1-b26b-f29c70976f68	2021-05-20 17:45:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:45:41.854+03	2021-05-20 17:45:41.862+03	
d2795def-70eb-dd61-9ef4-a5c25ff8c6f1	2021-05-20 17:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:46:02.853+03	2021-05-20 17:46:02.888+03	
0644b17f-113f-612f-6de0-6d189d315c67	2021-05-20 17:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:46:22.853+03	2021-05-20 17:46:22.86+03	
3ba64d22-3ac0-6fe6-e6c1-edcfce2d50b3	2021-05-20 17:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:46:42.853+03	2021-05-20 17:46:42.859+03	
5734567b-fcd8-16c9-46e4-f2a04e3f0f22	2021-05-20 17:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:47:04.852+03	2021-05-20 17:47:04.86+03	
1645cabb-cb1a-100e-6ee3-ecae6f8585f2	2021-05-20 17:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:47:24.853+03	2021-05-20 17:47:24.86+03	
b9f8c751-31a8-9a32-a660-21ff01ccbde0	2021-05-20 17:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:47:45.853+03	2021-05-20 17:47:45.861+03	
5a4a3a8a-fcac-f50a-8e80-85c4ce456625	2021-05-20 17:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:48:06.853+03	2021-05-20 17:48:06.859+03	
bb403b94-7be7-f5bd-c659-5617bce0a99c	2021-05-20 17:48:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:48:26.853+03	2021-05-20 17:48:26.858+03	
db5e7a16-3c5d-0061-249d-63e957bd6912	2021-05-20 17:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:48:47.852+03	2021-05-20 17:48:47.867+03	
c24ca861-0a27-93e9-87f5-adb24a7cc883	2021-05-20 17:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:49:07.853+03	2021-05-20 17:49:07.859+03	
17575ecf-52d4-7cca-f582-702a9bee3ea4	2021-05-20 17:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:49:27.853+03	2021-05-20 17:49:27.859+03	
b9b37857-9545-d310-fecc-a3325a971d92	2021-05-20 17:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:49:48.852+03	2021-05-20 17:49:48.86+03	
e10f683c-f8c4-9116-94a2-33f6a7b4ad9c	2021-05-20 17:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 17:50:00.852+03	2021-05-20 17:50:00.861+03	ERROR
a35f9e8b-f384-86df-65df-7071c6d3698a	2021-05-20 17:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:50:18.853+03	2021-05-20 17:50:18.893+03	
4c59986c-7688-e467-ae8e-d26f47bc9944	2021-05-20 17:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:50:39.853+03	2021-05-20 17:50:39.86+03	
9fe7e726-a72c-60b1-9288-4684320fcbbe	2021-05-20 17:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:50:59.853+03	2021-05-20 17:50:59.861+03	
2e6e0a43-50a3-f80c-57b5-7d369f66a551	2021-05-20 17:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:51:20.853+03	2021-05-20 17:51:20.86+03	
2a7a95e2-bf93-91c3-32b7-8692ce777d76	2021-05-20 17:51:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:51:41.854+03	2021-05-20 17:51:41.86+03	
96fcb1c7-fe4a-c2b3-a83f-82a6405814c2	2021-05-20 17:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:52:02.853+03	2021-05-20 17:52:02.861+03	
c520bed5-7430-35e7-3f56-21f49ff21ef2	2021-05-20 17:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:52:22.853+03	2021-05-20 17:52:22.86+03	
1acb4d3c-72d6-6f86-44b5-9c4195a3459a	2021-05-20 17:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:52:44.853+03	2021-05-20 17:52:44.861+03	
7f511ee4-babc-406b-91b4-8061ae9985de	2021-05-20 17:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:53:05.853+03	2021-05-20 17:53:05.86+03	
502ea6c8-aab6-13ba-8e29-ffc432664e68	2021-05-20 17:53:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:53:26.854+03	2021-05-20 17:53:26.86+03	
ac0d0c54-89ad-5686-e760-ff35b920c44e	2021-05-20 17:32:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:32:38.853+03	2021-05-20 17:32:38.86+03	
87cc106e-4641-53e2-1445-f253ff2790e7	2021-05-20 17:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:32:59.852+03	2021-05-20 17:32:59.859+03	
984e41eb-30f5-b4cf-03ff-727882d344d9	2021-05-20 17:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:33:19.853+03	2021-05-20 17:33:19.86+03	
4d629e75-7af9-d89e-0b09-eef6cb2152e6	2021-05-20 17:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:33:40.853+03	2021-05-20 17:33:40.859+03	
a0194239-aad2-6e00-3766-cdd2d1a336bd	2021-05-20 17:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:34:01.853+03	2021-05-20 17:34:01.86+03	
1b5bc2ff-4f97-d790-a259-d6da84461245	2021-05-20 17:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:34:22.853+03	2021-05-20 17:34:22.86+03	
13c98755-8f3b-f223-40a7-2feca169b84a	2021-05-20 17:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:34:43.852+03	2021-05-20 17:34:43.869+03	
7adb5855-a276-0f15-53a6-51c7d4a00f9c	2021-05-20 17:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:35:03.853+03	2021-05-20 17:35:03.861+03	
3f5866a4-674b-32b0-d6d4-4f3be6f614e8	2021-05-20 17:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:35:24.852+03	2021-05-20 17:35:24.859+03	
7feb262b-ce92-9c71-73e9-b7ca0e37ef49	2021-05-20 17:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:35:44.852+03	2021-05-20 17:35:44.859+03	
c0588c3b-2cc5-db00-a6f6-660afcf759c6	2021-05-20 17:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:36:04.853+03	2021-05-20 17:36:04.859+03	
96ba75e7-2ae1-6f50-8b30-f2579eace93b	2021-05-20 17:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:36:26.852+03	2021-05-20 17:36:26.86+03	
d2e71678-0583-7666-fb8a-3bf900b6ed0c	2021-05-20 17:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:36:46.852+03	2021-05-20 17:36:46.862+03	
f16e5862-3003-af3b-b393-c5226d901fdc	2021-05-20 17:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:37:07.852+03	2021-05-20 17:37:07.859+03	
a96de914-be1c-3c2a-a614-bd51469e7de2	2021-05-20 17:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:37:27.853+03	2021-05-20 17:37:27.86+03	
e442a34c-9ddd-fdfa-9c00-61422c8e9b21	2021-05-20 17:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:37:48.852+03	2021-05-20 17:37:48.859+03	
e9d5bb27-3728-36ba-4ee9-974517d243f3	2021-05-20 17:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:38:08.852+03	2021-05-20 17:38:08.859+03	
69de3df6-a1fa-1ec0-c72c-66666cf85ca4	2021-05-20 17:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:38:28.853+03	2021-05-20 17:38:28.872+03	
8ba98e9c-199a-1993-1f3c-083df4319cc1	2021-05-20 17:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:38:49.852+03	2021-05-20 17:38:49.859+03	
60cffc2b-0c50-a9f1-63a5-6333f0663c9e	2021-05-20 17:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:39:09.853+03	2021-05-20 17:39:09.86+03	
1762540f-25b0-2e9d-7033-e8879700e3ba	2021-05-20 17:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:39:30.853+03	2021-05-20 17:39:30.859+03	
65a6ac36-b2b3-65c7-6be4-15318235ce88	2021-05-20 17:39:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:39:51.854+03	2021-05-20 17:39:51.86+03	
aed14fe3-b1e2-63f5-27fb-2077ebf0b8ca	2021-05-20 17:40:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:40:01.854+03	2021-05-20 17:40:01.861+03	
79ad05d9-a7d2-382c-1cfd-cbc612fd3665	2021-05-20 17:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:40:22.852+03	2021-05-20 17:40:22.858+03	
ed2c2852-4690-5d33-b93a-f8add9dbb5f1	2021-05-20 17:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:40:42.853+03	2021-05-20 17:40:42.859+03	
cdcd27ec-4803-ebff-9ed1-044ee1bf2684	2021-05-20 17:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:41:03.853+03	2021-05-20 17:41:03.872+03	
f4f900ad-b581-df2f-643c-5327a017718f	2021-05-20 17:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:41:23.853+03	2021-05-20 17:41:23.86+03	
c31e0e77-8290-dce7-1153-27e320e0f4a2	2021-05-20 17:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:41:43.853+03	2021-05-20 17:41:43.874+03	
ffa02069-1ac9-f3b7-3133-2a437be122a9	2021-05-20 17:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:42:04.852+03	2021-05-20 17:42:04.894+03	
e71aa873-8a86-1cb9-8170-007963d624c8	2021-05-20 17:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:42:24.853+03	2021-05-20 17:42:24.871+03	
9ffbcec6-d278-5f5d-a50e-d6b658feaf47	2021-05-20 17:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:42:45.852+03	2021-05-20 17:42:45.859+03	
bfc70fa0-8e35-61e7-a283-82c4d83e5a32	2021-05-20 17:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:43:06.852+03	2021-05-20 17:43:06.86+03	
1169a209-12c4-ea81-ae1e-76f7a21e2639	2021-05-20 17:43:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:43:26.854+03	2021-05-20 17:43:27.182+03	
cc98db36-295a-3e1d-d5f5-2478112df4aa	2021-05-20 17:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:43:47.853+03	2021-05-20 17:43:47.859+03	
4c2dfafa-8040-d979-5c73-3d53e0f4021c	2021-05-20 17:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:44:07.853+03	2021-05-20 17:44:07.861+03	
e0bdc450-1fa5-f0d3-d314-d28866f644e3	2021-05-20 17:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:44:28.853+03	2021-05-20 17:44:28.86+03	
2e0b9dcd-f418-7d50-46db-65f8ebdd52fc	2021-05-20 17:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:44:49.853+03	2021-05-20 17:44:49.86+03	
052cb505-7fac-c5c5-2b04-a7fea2ee1e53	2021-05-20 17:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:45:10.852+03	2021-05-20 17:45:10.859+03	
4f6bb99d-b4d5-7507-b59d-250ef6ac2844	2021-05-20 17:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:45:30.853+03	2021-05-20 17:45:30.859+03	
b10c832a-ac1e-6a6d-2296-afb00aeffa9b	2021-05-20 17:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:45:52.853+03	2021-05-20 17:45:52.859+03	
758486e5-bfe6-846b-fd8c-f91cf53da30c	2021-05-20 17:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:46:12.853+03	2021-05-20 17:46:12.859+03	
34719f48-cfad-bc84-1a94-9dfce0647021	2021-05-20 17:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:46:32.853+03	2021-05-20 17:46:32.871+03	
89e1aaca-0554-d348-327f-4a634136eda3	2021-05-20 17:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:46:53.853+03	2021-05-20 17:46:53.858+03	
7b890002-68b3-b5ed-50ec-c611f9172090	2021-05-20 17:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:47:14.853+03	2021-05-20 17:47:14.859+03	
7b00c27b-4b0e-1b81-b161-d359917935af	2021-05-20 17:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:47:35.853+03	2021-05-20 17:47:35.864+03	
093fd087-49c0-294d-210d-7910519b1139	2021-05-20 17:47:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:47:56.853+03	2021-05-20 17:47:56.863+03	
b4377d6b-4591-0519-76eb-ae3c50f2c1c9	2021-05-20 17:48:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:48:16.853+03	2021-05-20 17:48:16.86+03	
92acfc62-8086-f25d-65d9-8c5150d55f26	2021-05-20 17:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:48:37.852+03	2021-05-20 17:48:37.86+03	
9f4112ca-2eae-88cb-b075-c584c297e5d7	2021-05-20 17:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:48:57.852+03	2021-05-20 17:48:57.859+03	
94c2ddab-4191-6fe4-d230-53ba1a433408	2021-05-20 17:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:49:17.853+03	2021-05-20 17:49:17.861+03	
05e61c3b-ac0c-541d-9849-df0f745aa82b	2021-05-20 17:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:49:38.852+03	2021-05-20 17:49:38.86+03	
f82405b4-20cd-0968-3aab-478396184ea8	2021-05-20 17:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:49:58.852+03	2021-05-20 17:49:58.859+03	
6836ad7f-75cd-b52d-804c-d36f82136229	2021-05-20 17:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:50:08.852+03	2021-05-20 17:50:08.859+03	
19faf2c3-9bfe-6a92-912a-fde982fd2d84	2021-05-20 17:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:50:29.852+03	2021-05-20 17:50:29.859+03	
d309bc5a-2e22-cd59-65d7-af7c568e5ef0	2021-05-20 17:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:50:49.853+03	2021-05-20 17:50:49.86+03	
2c09cd70-7b9c-d268-d7fc-aed542cc72fe	2021-05-20 17:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:51:09.853+03	2021-05-20 17:51:09.86+03	
423396fd-2a01-92df-584d-c9d0793cf7ed	2021-05-20 17:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:51:30.853+03	2021-05-20 17:51:30.861+03	
4e6bd0e8-5e33-d430-d0d7-2e3a0ad8275a	2021-05-20 17:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:51:52.852+03	2021-05-20 17:51:52.86+03	
b680245f-04e6-7fe6-7fb6-880f41cd893c	2021-05-20 17:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:52:12.853+03	2021-05-20 17:52:12.87+03	
d514f599-927c-ab7e-baf3-f2a119f9ab4f	2021-05-20 17:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:52:33.853+03	2021-05-20 17:52:33.859+03	
46a71733-3b71-cbb1-ac08-d0a2abb8ba7d	2021-05-20 17:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:52:55.852+03	2021-05-20 17:52:55.86+03	
d3e82931-7e2c-31da-f6c4-ccab656306fd	2021-05-20 17:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:53:16.852+03	2021-05-20 17:53:16.86+03	
9bbb5797-115f-2113-ed3e-59db89dcf9f0	2021-05-20 17:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:53:37.852+03	2021-05-20 17:53:37.866+03	
1982f00c-af14-269f-dad4-15de2f22abac	2021-05-20 17:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:53:47.853+03	2021-05-20 17:53:47.859+03	
f16c3fb4-90af-730e-71cb-b3621f6d6c26	2021-05-20 17:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:54:07.853+03	2021-05-20 17:54:07.869+03	
609f9289-da4c-214a-d7a5-30b7161e0567	2021-05-20 17:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:54:28.852+03	2021-05-20 17:54:28.859+03	
a740120d-3a43-7da0-62b6-d54c94cf6f45	2021-05-20 17:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:54:48.852+03	2021-05-20 17:54:48.859+03	
a529d340-30b6-3464-1866-d93e45aa4126	2021-05-20 17:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:55:08.853+03	2021-05-20 17:55:08.86+03	
fc265aa9-0381-597f-70f0-dd49d5b9f660	2021-05-20 17:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:55:28.853+03	2021-05-20 17:55:28.859+03	
4a81ab0f-1264-5cfb-ea3c-1195b7b297fb	2021-05-20 17:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:55:48.853+03	2021-05-20 17:55:48.86+03	
8f51f58d-1bc0-df95-0c41-ca596245cfe9	2021-05-20 17:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:56:08.853+03	2021-05-20 17:56:08.863+03	
76aeb222-40b6-e270-a4d4-2ff9f23b8b84	2021-05-20 17:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:56:28.853+03	2021-05-20 17:56:28.904+03	
1d7ab463-a94b-d7b0-aa09-f2e3dd6581d0	2021-05-20 17:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:56:49.853+03	2021-05-20 17:56:49.859+03	
ba81c477-e2e6-5be7-93c8-0811a53b4099	2021-05-20 17:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:57:09.853+03	2021-05-20 17:57:09.862+03	
2eb18234-aede-cf69-6ce8-22fdbb283d58	2021-05-20 17:57:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:57:29.853+03	2021-05-20 17:57:29.859+03	
4a9cb315-9fe6-f3eb-d6b8-89cf0d90bcce	2021-05-20 17:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:57:50.852+03	2021-05-20 17:57:50.859+03	
ef1aac4c-746e-abb7-57ef-acb6b5791097	2021-05-20 17:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:58:10.853+03	2021-05-20 17:58:10.86+03	
7ef88232-41d2-f0a7-b732-f963315c26c9	2021-05-20 17:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:58:30.853+03	2021-05-20 17:58:30.859+03	
6f4bc827-3ff0-f796-c1d4-a4120def4d5f	2021-05-20 17:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:58:52.852+03	2021-05-20 17:58:52.86+03	
e80559e2-362b-b8c0-ab27-543dcb6ad4a9	2021-05-20 17:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:59:12.852+03	2021-05-20 17:59:12.869+03	
2743168d-a984-7aa8-12a4-d7138224ba47	2021-05-20 17:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:59:33.853+03	2021-05-20 17:59:33.859+03	
bac17057-f578-829b-a4c5-8a3c3eaee0ee	2021-05-20 17:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:59:53.853+03	2021-05-20 17:59:53.858+03	
d5b2e904-d332-eda9-c5c1-77f04d0557af	2021-05-20 18:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:00:03.853+03	2021-05-20 18:00:03.889+03	
e5b77939-66f5-8062-fdbe-c407319f3d24	2021-05-20 18:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:00:23.853+03	2021-05-20 18:00:23.874+03	
42ad4d21-d0a2-7a24-2f9b-224f07486e2d	2021-05-20 18:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:00:43.853+03	2021-05-20 18:00:43.868+03	
2d000675-fd52-4a40-5493-d58b1298dcd0	2021-05-20 18:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:01:03.853+03	2021-05-20 18:01:03.86+03	
a0acb871-137d-cb61-8edf-74ce79566519	2021-05-20 18:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:01:24.853+03	2021-05-20 18:01:24.86+03	
03e01d25-6602-007d-2d34-b5e8370cfcfa	2021-05-20 18:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:01:44.853+03	2021-05-20 18:01:44.865+03	
e181164c-d2b1-5188-6c1a-eb4b66695159	2021-05-20 18:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:02:04.853+03	2021-05-20 18:02:04.872+03	
2cc4b2f9-161c-d7f8-4ef2-a003caf3eb7c	2021-05-20 18:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:02:26.852+03	2021-05-20 18:02:26.859+03	
c59c0359-b6c9-98e4-c10b-cbbddc8b022d	2021-05-20 18:02:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:02:46.853+03	2021-05-20 18:02:46.86+03	
76b063de-ba1d-bc4a-6993-297dcae47e10	2021-05-20 18:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:03:07.853+03	2021-05-20 18:03:07.859+03	
e5d32935-a897-49e1-c86e-9bb2ca9f09db	2021-05-20 18:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:03:27.853+03	2021-05-20 18:03:27.866+03	
73ffe6dd-d52f-f961-e754-a30d69828c57	2021-05-20 18:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:03:47.853+03	2021-05-20 18:03:47.865+03	
737b639b-682e-d54e-02a1-cc78d7bd28bc	2021-05-20 18:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:04:07.853+03	2021-05-20 18:04:07.862+03	
d82ad3cf-4b79-15e5-4ff5-92816da1fda0	2021-05-20 18:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:04:27.853+03	2021-05-20 18:04:27.864+03	
917c019c-14f5-f599-9599-0d39053222b1	2021-05-20 18:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:04:48.853+03	2021-05-20 18:04:48.864+03	
b9dcc5c7-5866-ebc5-4735-8c7af81acd6b	2021-05-20 18:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:05:09.852+03	2021-05-20 18:05:09.871+03	
b29f70ce-f608-48a3-716d-fd09f31741e3	2021-05-20 18:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:05:29.852+03	2021-05-20 18:05:29.861+03	
6271fbef-7896-aef5-cebe-c54825ffa218	2021-05-20 18:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:05:49.853+03	2021-05-20 18:05:49.862+03	
82336a5d-5353-c8e9-f125-62bbd095c9ed	2021-05-20 18:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:06:09.853+03	2021-05-20 18:06:09.859+03	
1d1871c1-1c9d-f89d-4555-82c322b368b7	2021-05-20 18:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:06:29.853+03	2021-05-20 18:06:29.862+03	
1cca66d4-0ad2-9cc4-7aac-67717eb92450	2021-05-20 18:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:06:50.853+03	2021-05-20 18:06:50.86+03	
564c7c9b-04ae-23aa-f7ee-e04d46d38440	2021-05-20 18:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:07:10.853+03	2021-05-20 18:07:10.86+03	
092591a8-52f6-37fc-0cf7-e7bee228667e	2021-05-20 18:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:07:30.853+03	2021-05-20 18:07:30.86+03	
b14e7bbf-2b5d-4f87-6a29-30a0b87752d7	2021-05-20 18:07:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:07:50.853+03	2021-05-20 18:07:50.861+03	
9642b666-1608-80cc-84cf-c7a5fd8dfa26	2021-05-20 18:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:08:10.853+03	2021-05-20 18:08:10.859+03	
fc5cbc56-e29a-1e9e-20b8-1d8a94e2574c	2021-05-20 18:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:08:30.853+03	2021-05-20 18:08:30.86+03	
ac9cb085-1b0a-8c0e-e806-f4477e8e5e9b	2021-05-20 18:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:08:50.853+03	2021-05-20 18:08:50.859+03	
6619163b-5713-5ef5-abcc-0c921ca97778	2021-05-20 18:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:09:12.853+03	2021-05-20 18:09:12.859+03	
6fe21cb9-d73b-71f8-b5ec-3272dc430459	2021-05-20 18:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:09:33.852+03	2021-05-20 18:09:33.864+03	
787f8a3a-98f1-1021-0dcd-7056e1139957	2021-05-20 18:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:09:54.852+03	2021-05-20 18:09:54.859+03	
5955e057-ccc0-588a-6899-b2299f0804f9	2021-05-20 18:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:10:04.852+03	2021-05-20 18:10:04.86+03	
57961590-080c-9e6d-6faf-60ea409eaa52	2021-05-20 18:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:10:24.853+03	2021-05-20 18:10:24.86+03	
ad8688a5-28ec-4288-c1e1-986d7a7123e1	2021-05-20 18:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:10:44.853+03	2021-05-20 18:10:44.86+03	
09ea6d5d-b809-25f0-b9ee-870611fb5490	2021-05-20 18:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:11:04.853+03	2021-05-20 18:11:04.86+03	
205bf451-7669-864d-73b1-0d4b665ee89d	2021-05-20 18:11:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:11:26.852+03	2021-05-20 18:11:26.859+03	
c8bda924-4bd8-2e51-3608-950b3155a0df	2021-05-20 18:11:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:11:46.852+03	2021-05-20 18:11:46.86+03	
1345ad49-b82b-be84-e80e-c75804c55972	2021-05-20 18:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:12:07.853+03	2021-05-20 18:12:07.864+03	
d419ef54-ba48-1679-8624-46c79b9d00f2	2021-05-20 18:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:12:27.853+03	2021-05-20 18:12:27.859+03	
6fb3c74d-2c58-4f4d-8ec5-60658f0faed5	2021-05-20 18:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:12:47.853+03	2021-05-20 18:12:47.861+03	
54df944c-a037-25cf-d25f-61fc4a671454	2021-05-20 18:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:13:09.852+03	2021-05-20 18:13:09.858+03	
b8f2802d-511f-cf3f-b796-91954792d5e1	2021-05-20 18:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:13:29.853+03	2021-05-20 18:13:29.859+03	
1450b8c0-1703-714c-e76c-55976a99cb54	2021-05-20 18:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:13:50.853+03	2021-05-20 18:13:50.86+03	
7c582c22-5710-d381-7905-9f5766c4524b	2021-05-20 18:14:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:14:11.852+03	2021-05-20 18:14:11.859+03	
e9a63bba-9f1c-6056-9acb-3485cd71fe83	2021-05-20 18:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:14:32.852+03	2021-05-20 18:14:32.859+03	
60ef38ef-5b92-98e8-4fa4-d66141690e33	2021-05-20 17:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:53:57.853+03	2021-05-20 17:53:57.859+03	
772eb1ed-5520-544c-97f1-8d2cdd680844	2021-05-20 17:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:54:18.852+03	2021-05-20 17:54:18.859+03	
fa1e9a32-9399-0948-6c43-45a7ea23b6d4	2021-05-20 17:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:54:38.852+03	2021-05-20 17:54:38.869+03	
ad07a266-3575-9c5c-b311-3f1626639c99	2021-05-20 17:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:54:58.852+03	2021-05-20 17:54:58.859+03	
60a4b62c-5219-5c11-afee-333c8ef48cfd	2021-05-20 17:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:55:18.853+03	2021-05-20 17:55:18.861+03	
60df3e61-c714-258b-c7c7-4ede1f0f7ed6	2021-05-20 17:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:55:38.853+03	2021-05-20 17:55:38.86+03	
78b6983f-6f53-314f-15bd-194a820257e5	2021-05-20 17:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:55:58.853+03	2021-05-20 17:55:58.861+03	
c1c47ce6-38ce-2194-0803-6d8a02186f72	2021-05-20 17:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:56:18.853+03	2021-05-20 17:56:18.864+03	
f0d30f4d-28d7-5096-7803-aa5db0e494b5	2021-05-20 17:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:56:39.853+03	2021-05-20 17:56:39.86+03	
fa6cc8a4-3873-69cd-19ff-e070d88d32f0	2021-05-20 17:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:56:59.853+03	2021-05-20 17:56:59.871+03	
4416214d-9fc7-4f8d-f30d-ed12d6909e45	2021-05-20 17:57:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:57:19.853+03	2021-05-20 17:57:19.862+03	
59770adb-824f-cb21-361b-9608b7310219	2021-05-20 17:57:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:57:39.853+03	2021-05-20 17:57:39.862+03	
7dc30e1b-62e9-d60b-7979-d7ddcc529a54	2021-05-20 17:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:58:00.852+03	2021-05-20 17:58:00.86+03	
f381dcac-8877-1276-e2c4-ebc4fcd39fc0	2021-05-20 17:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:58:20.853+03	2021-05-20 17:58:20.861+03	
20950668-4092-483b-aa1a-2c982c869b1f	2021-05-20 17:58:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:58:41.854+03	2021-05-20 17:58:41.86+03	
9887c401-76bf-9e20-71fd-9f71bbd279df	2021-05-20 17:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:59:02.852+03	2021-05-20 17:59:02.871+03	
6c80b102-a18e-c97a-87e4-0e2d8b599d09	2021-05-20 17:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:59:22.853+03	2021-05-20 17:59:22.859+03	
029ae4cd-4320-959f-5ece-9c5e052e4724	2021-05-20 17:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 17:59:43.853+03	2021-05-20 17:59:43.859+03	
fdb06157-24f6-2db4-6267-de166f1baa9e	2021-05-20 18:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 18:00:00.853+03	2021-05-20 18:00:00.866+03	ERROR
c63856dd-87f9-5e84-2de2-64ef0a74be4b	2021-05-20 18:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:00:13.853+03	2021-05-20 18:00:13.863+03	
66e142d2-99d2-1270-7698-14cfd51f8c99	2021-05-20 18:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:00:33.853+03	2021-05-20 18:00:33.865+03	
13a82038-7578-45fb-6584-640c7586d5b1	2021-05-20 18:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:00:53.853+03	2021-05-20 18:00:53.86+03	
de170cfe-d61b-5cc3-4aa8-240f7c6c1586	2021-05-20 18:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:01:13.853+03	2021-05-20 18:01:13.867+03	
203bc48d-2837-cb6c-4490-d7a6c69ef10b	2021-05-20 18:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:01:34.853+03	2021-05-20 18:01:34.859+03	
7fc81775-4202-5423-7bf0-876851366922	2021-05-20 18:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:01:54.853+03	2021-05-20 18:01:54.864+03	
20a95088-f807-e9de-1337-7f96b56d002c	2021-05-20 18:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:02:15.853+03	2021-05-20 18:02:15.864+03	
441343b1-3c44-63d2-0c31-0a7b57f3fc3e	2021-05-20 18:02:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:02:36.853+03	2021-05-20 18:02:36.858+03	
75e54e44-4a3f-d4ed-c54d-9a9652a322a9	2021-05-20 18:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:02:57.853+03	2021-05-20 18:02:57.864+03	
6cce3fb9-c861-cf7a-c410-7b22026b6442	2021-05-20 18:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:03:17.853+03	2021-05-20 18:03:17.874+03	
85c49edd-4fdf-c6d8-f843-dbe20a369285	2021-05-20 18:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:03:37.853+03	2021-05-20 18:03:37.86+03	
e5abb105-342a-e31d-bd57-312fb8123dde	2021-05-20 18:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:03:57.853+03	2021-05-20 18:03:57.872+03	
236b01ee-199f-b898-e51c-d9343fa2629f	2021-05-20 18:04:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:04:17.853+03	2021-05-20 18:04:17.868+03	
794542cd-84d2-0366-67f8-c5d977f89511	2021-05-20 18:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:04:37.853+03	2021-05-20 18:04:37.871+03	
2d02e1bc-55cb-1034-bb4f-6fd006d75b67	2021-05-20 18:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:04:59.852+03	2021-05-20 18:04:59.913+03	
da283738-ff71-ec61-1200-ba2b5ae70aa1	2021-05-20 18:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:05:19.852+03	2021-05-20 18:05:19.859+03	
e7b73bf8-9220-a2ec-1ff9-29b111e7b97f	2021-05-20 18:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:05:39.853+03	2021-05-20 18:05:39.859+03	
b9f49e8e-b327-1c24-fd02-5ebbffa25222	2021-05-20 18:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:05:59.853+03	2021-05-20 18:05:59.86+03	
8496d6da-6165-1431-e48c-2f99078f83e4	2021-05-20 18:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:06:19.853+03	2021-05-20 18:06:19.86+03	
aa48b530-c70d-b353-c189-9ac8760411b9	2021-05-20 18:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:06:40.853+03	2021-05-20 18:06:40.861+03	
f19c049b-bfef-e998-19c2-8d4e5b4322ef	2021-05-20 18:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:07:00.853+03	2021-05-20 18:07:00.859+03	
e708db0d-8ac8-9266-86cf-adced16c34e2	2021-05-20 18:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:07:20.853+03	2021-05-20 18:07:20.861+03	
1a2d8d0a-548f-82b3-a1a1-99303f642f06	2021-05-20 18:07:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:07:40.853+03	2021-05-20 18:07:40.859+03	
59112e10-a694-f100-2006-e37bb281db7e	2021-05-20 18:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:08:00.853+03	2021-05-20 18:08:00.859+03	
a7d840fa-5fee-796a-5a3c-34534e5c4421	2021-05-20 18:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:08:20.853+03	2021-05-20 18:08:20.859+03	
1b626e46-4e51-28a7-2521-cce80f22a34c	2021-05-20 18:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:08:40.853+03	2021-05-20 18:08:40.86+03	
8bbcebb1-3999-2156-9ef8-3fef71956a65	2021-05-20 18:09:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:09:01.854+03	2021-05-20 18:09:01.861+03	
7f07918b-4c41-0b61-46ac-83acf47a1c5d	2021-05-20 18:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:09:23.852+03	2021-05-20 18:09:23.87+03	
d6e17586-1063-1969-ce05-99ab2d198cc1	2021-05-20 18:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:09:43.853+03	2021-05-20 18:09:43.872+03	
ef8dd455-071d-22ab-8eb6-6a427cd94dec	2021-05-20 18:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 18:10:00.853+03	2021-05-20 18:10:00.858+03	ERROR
bfaec88b-99f2-33ed-649c-1330874cc0ba	2021-05-20 18:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:10:14.853+03	2021-05-20 18:10:14.875+03	
b786b343-1891-4349-0ec2-fd6d515dd110	2021-05-20 18:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:10:34.853+03	2021-05-20 18:10:34.874+03	
f52abefe-0790-fe35-54fb-bbf592726d47	2021-05-20 18:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:10:54.853+03	2021-05-20 18:10:54.884+03	
d8bf170d-2ce0-037b-7606-6a9b5c162ef8	2021-05-20 18:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:11:15.853+03	2021-05-20 18:11:15.86+03	
dd2d609e-db44-7307-9b15-6ad2f93b1581	2021-05-20 18:11:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:11:36.852+03	2021-05-20 18:11:36.86+03	
68f46cc7-3337-0a10-1801-72e9ac5eb658	2021-05-20 18:11:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:11:56.854+03	2021-05-20 18:11:56.861+03	
bf37102b-f01c-44ec-760d-0fd606c416ed	2021-05-20 18:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:12:17.853+03	2021-05-20 18:12:17.859+03	
b9ea0eaf-eae3-cf70-6f83-6ba7149f64fe	2021-05-20 18:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:12:37.853+03	2021-05-20 18:12:37.862+03	
67cdf0af-9b35-a638-3768-30bbb03313af	2021-05-20 18:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:12:58.853+03	2021-05-20 18:12:58.859+03	
3972349b-b621-7aae-7c29-f2d6164b0cd1	2021-05-20 18:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:13:19.853+03	2021-05-20 18:13:19.861+03	
0423143e-03ec-bd7d-e8c2-416c0ba8f0ac	2021-05-20 18:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:13:40.852+03	2021-05-20 18:13:40.86+03	
0cc89422-62b7-a004-59c5-e2ac1cdac5b1	2021-05-20 18:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:14:00.853+03	2021-05-20 18:14:00.86+03	
96e8a4bc-e732-1719-27a4-ef0bdb05e07d	2021-05-20 18:14:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:14:21.854+03	2021-05-20 18:14:21.859+03	
c0fc34a6-168c-c085-f4f4-371b0bc5506d	2021-05-20 18:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:14:42.852+03	2021-05-20 18:14:42.859+03	
909f6c1e-7cbd-b262-94f0-e28ff7ae7820	2021-05-20 18:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:14:52.853+03	2021-05-20 18:14:52.86+03	
7151cce8-b86c-badd-6f95-69698cc5e07c	2021-05-20 18:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:15:12.853+03	2021-05-20 18:15:12.859+03	
31994841-a451-f92f-a520-b28193d0289d	2021-05-20 18:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:15:33.852+03	2021-05-20 18:15:33.86+03	
b603619f-c8f7-bd49-bc4e-db550701d574	2021-05-20 18:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:15:54.852+03	2021-05-20 18:15:54.859+03	
f470a43a-bafa-1e8a-7321-dbc94c74dd0b	2021-05-20 18:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:16:14.853+03	2021-05-20 18:16:14.86+03	
c5e10cd1-50b5-781f-91ac-9abbcb8fd8ba	2021-05-20 18:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:16:35.853+03	2021-05-20 18:16:35.869+03	
368f237a-a7d1-6d97-27aa-022eccec96ba	2021-05-20 18:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:16:55.853+03	2021-05-20 18:16:55.86+03	
4133e86e-18c9-4161-b5fc-423c3ef1c6e2	2021-05-20 18:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:17:15.853+03	2021-05-20 18:17:15.859+03	
142510b2-0609-55a3-b881-c250b2d9a886	2021-05-20 18:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:17:35.853+03	2021-05-20 18:17:35.859+03	
88861c79-4c09-b9ec-f8ab-9efe1640e844	2021-05-20 18:17:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:17:56.852+03	2021-05-20 18:17:56.858+03	
8c2f0379-7f19-0b80-81e2-88d9c1f19646	2021-05-20 18:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:18:17.853+03	2021-05-20 18:18:17.866+03	
a858652a-dd13-2dd1-bc2d-969bbf8d4fc9	2021-05-20 18:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:18:37.853+03	2021-05-20 18:18:37.86+03	
b3888925-d821-6810-79fa-8a441c6790e4	2021-05-20 18:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:18:58.853+03	2021-05-20 18:18:58.859+03	
3626bc5f-ad69-472e-552f-d251111f178d	2021-05-20 18:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:19:19.853+03	2021-05-20 18:19:19.86+03	
f97e8aa0-7f7f-9d36-bd02-8baa0d74cb2c	2021-05-20 18:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:19:39.853+03	2021-05-20 18:19:39.872+03	
b5f55571-30fb-0305-724a-089949dfc3c0	2021-05-20 18:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 18:20:00.852+03	2021-05-20 18:20:00.857+03	ERROR
292ef905-2149-f41a-2186-171e059762de	2021-05-20 18:20:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:20:11.853+03	2021-05-20 18:20:11.861+03	
10afa802-5a61-337e-806d-183b28a4e59d	2021-05-20 18:20:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:20:31.853+03	2021-05-20 18:20:31.859+03	
625d3d41-8819-a17f-66ee-7e7c91758fff	2021-05-20 18:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:20:52.853+03	2021-05-20 18:20:52.858+03	
6854a5b2-aa97-46c9-61cb-0ae31a43bbb9	2021-05-20 18:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:21:13.853+03	2021-05-20 18:21:13.863+03	
6fccea88-a7c4-3fb7-490b-6269422d4062	2021-05-20 18:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:21:34.853+03	2021-05-20 18:21:34.859+03	
ea94e1e3-5dbf-b933-5b3e-8196ec238fa9	2021-05-20 18:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:21:54.853+03	2021-05-20 18:21:54.874+03	
2cde91b2-d315-7509-82d5-2a1c15dde793	2021-05-20 18:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:22:15.852+03	2021-05-20 18:22:15.87+03	
434a5df7-598c-f623-0444-6c2838106c8e	2021-05-20 18:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:22:35.852+03	2021-05-20 18:22:35.86+03	
a870494c-a103-a160-9532-d1d1482aee61	2021-05-20 18:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:22:55.852+03	2021-05-20 18:22:55.859+03	
9c0c4f0c-c6a2-d62f-11ba-d8caddf86985	2021-05-20 18:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:23:15.853+03	2021-05-20 18:23:15.859+03	
4f1968f0-72bd-bc7d-80a9-b5267f86d55c	2021-05-20 18:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:23:35.853+03	2021-05-20 18:23:35.86+03	
90931c1c-5878-162d-60b9-3a3d35dc4eba	2021-05-20 18:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:23:55.853+03	2021-05-20 18:23:55.859+03	
3ac63be1-36de-4566-f676-eabe1a87de4e	2021-05-20 18:24:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:24:16.852+03	2021-05-20 18:24:16.859+03	
6f574c2e-6b26-4fe7-6322-cdce60ef8a80	2021-05-20 18:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:24:37.852+03	2021-05-20 18:24:37.859+03	
9733364f-901c-f559-d8a0-80b687bed9e5	2021-05-20 18:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:24:57.853+03	2021-05-20 18:24:57.859+03	
90408b00-a062-6f25-2285-cb0c48991296	2021-05-20 18:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:25:18.853+03	2021-05-20 18:25:18.86+03	
07c604f1-18aa-fefa-217b-30275a184136	2021-05-20 18:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:25:38.853+03	2021-05-20 18:25:38.86+03	
1fe77c40-b73b-296b-a0a4-39bbbf0f41e3	2021-05-20 18:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:25:58.853+03	2021-05-20 18:25:58.859+03	
440e31a6-bf27-29dd-a9ea-98d8ee72e834	2021-05-20 18:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:26:19.852+03	2021-05-20 18:26:19.872+03	
7a91afc1-40b9-3534-714c-ef7dd6f81248	2021-05-20 18:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:26:39.853+03	2021-05-20 18:26:39.859+03	
a7f21409-8737-fe74-0a09-782dccfc86d6	2021-05-20 18:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:27:00.853+03	2021-05-20 18:27:00.872+03	
17657ab6-b807-2b67-cf89-7ba6eb892e4f	2021-05-20 18:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:27:22.853+03	2021-05-20 18:27:22.86+03	
9800d956-c09e-3f6c-cd69-aa6296d0e62b	2021-05-20 18:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:27:43.852+03	2021-05-20 18:27:43.87+03	
d402de2b-6f40-0de0-e99a-367a1ede1c58	2021-05-20 18:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:28:03.853+03	2021-05-20 18:28:03.86+03	
1e805943-9105-10a3-170b-750f7cec977b	2021-05-20 18:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:28:23.853+03	2021-05-20 18:28:23.859+03	
2fea4bff-8771-8f25-a697-89786b89ce43	2021-05-20 18:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:28:44.853+03	2021-05-20 18:28:44.861+03	
839f3093-430c-1b4f-d5cf-a5da5d11bfdb	2021-05-20 18:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:29:05.853+03	2021-05-20 18:29:05.863+03	
d3333ece-1a7a-3108-97a3-0f182042c3c2	2021-05-20 18:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:29:27.853+03	2021-05-20 18:29:27.86+03	
6cbcf207-c54a-b4bd-3b0c-814b078c5d97	2021-05-20 18:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:29:47.853+03	2021-05-20 18:29:47.859+03	
4b27029b-272c-2633-2203-9f3f6fc44a68	2021-05-20 18:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 18:30:00.852+03	2021-05-20 18:30:00.858+03	ERROR
bea1c362-06e3-82b7-35fc-ffbb8c8660ef	2021-05-20 18:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:30:17.853+03	2021-05-20 18:30:17.86+03	
e555f1b4-c892-46de-5bfd-812adb1cb63f	2021-05-20 18:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:30:37.853+03	2021-05-20 18:30:37.861+03	
f23d4055-5549-a6d6-93ad-90ea6837705e	2021-05-20 18:30:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:30:57.853+03	2021-05-20 18:30:57.861+03	
850a7711-5998-693f-295a-a2d11dc8e19c	2021-05-20 18:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:31:17.853+03	2021-05-20 18:31:17.859+03	
0bfc83c0-7078-2a0d-f3d1-93831256029e	2021-05-20 18:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:31:37.853+03	2021-05-20 18:31:37.861+03	
b1ac06ac-f6ea-024e-3739-c4a50884cf92	2021-05-20 18:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:31:58.852+03	2021-05-20 18:31:58.859+03	
13f6759c-0da1-f491-17bd-0bdeb48315ad	2021-05-20 18:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:32:18.853+03	2021-05-20 18:32:18.862+03	
cfaf3e23-39d0-a3f9-49f8-ddcd9df7984e	2021-05-20 18:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:32:39.852+03	2021-05-20 18:32:39.859+03	
f1e7803a-ac1c-56d9-f3ef-2de7d3770253	2021-05-20 18:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:32:59.852+03	2021-05-20 18:32:59.86+03	
490987a4-d1d4-7b47-1be9-6595d38b30fa	2021-05-20 18:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:33:19.853+03	2021-05-20 18:33:19.862+03	
cd318519-5f99-f225-3a23-a08a0ba280fd	2021-05-20 18:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:33:40.853+03	2021-05-20 18:33:40.86+03	
3400ef28-6205-2c87-7f53-7cd635a57f54	2021-05-20 18:34:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:34:01.853+03	2021-05-20 18:34:01.859+03	
9301cf6c-4dc4-b580-1fca-579e39d272fa	2021-05-20 18:34:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:34:21.853+03	2021-05-20 18:34:21.86+03	
902ae7a0-15ee-c87a-091c-d2551205b931	2021-05-20 18:34:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:34:41.854+03	2021-05-20 18:34:41.861+03	
3e8a3093-e194-fb84-f5ea-196d39b6bc2d	2021-05-20 18:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:35:03.852+03	2021-05-20 18:35:03.88+03	
27500913-9983-4933-b3d5-926d155eccd2	2021-05-20 18:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:35:23.852+03	2021-05-20 18:35:23.859+03	
ce721fde-1028-4140-21bc-651b69edfc29	2021-05-20 18:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:35:43.852+03	2021-05-20 18:35:43.867+03	
3e0d95a5-c186-e345-0217-1c5d00108d83	2021-05-20 18:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:15:02.853+03	2021-05-20 18:15:02.873+03	
16ceee97-e381-1752-7064-e73f59c6cff7	2021-05-20 18:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:15:23.852+03	2021-05-20 18:15:23.859+03	
6e9aaf47-f45d-37d9-7bce-0215dc40932d	2021-05-20 18:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:15:43.853+03	2021-05-20 18:15:43.859+03	
e11cfc07-1308-a73a-adf3-6afa5bba0fdb	2021-05-20 18:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:16:04.852+03	2021-05-20 18:16:04.859+03	
83f35307-0814-cae6-0cf3-dc6e3980d5a4	2021-05-20 18:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:16:25.853+03	2021-05-20 18:16:25.862+03	
0e005da9-2864-8597-1fc6-0de1aa48064d	2021-05-20 18:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:16:45.853+03	2021-05-20 18:16:45.86+03	
64991ebd-d808-c2dc-c0f9-e4b40a3d1eeb	2021-05-20 18:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:17:05.853+03	2021-05-20 18:17:05.859+03	
f9ad8149-1ce3-e12c-91b6-3c7bf68688b0	2021-05-20 18:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:17:25.853+03	2021-05-20 18:17:25.86+03	
4fe1da79-5a56-c55d-6ab1-1370b50819ad	2021-05-20 18:17:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:17:46.852+03	2021-05-20 18:17:46.861+03	
9bf4d2c7-73c7-9d7f-8726-96ad9d1e99a2	2021-05-20 18:18:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:18:06.854+03	2021-05-20 18:18:06.861+03	
7a9c541d-6a07-40ec-1ee1-e3eb5a47dc4d	2021-05-20 18:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:18:27.853+03	2021-05-20 18:18:27.859+03	
43c0d789-7d65-dc57-97f6-a24f716232cf	2021-05-20 18:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:18:48.853+03	2021-05-20 18:18:48.859+03	
af63edf5-a2b1-3b41-a88f-0f3ec7c833a4	2021-05-20 18:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:19:08.853+03	2021-05-20 18:19:08.859+03	
aaffb3e2-e79e-f190-3755-349bd3e6bd4b	2021-05-20 18:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:19:29.853+03	2021-05-20 18:19:29.859+03	
8ca3204d-d0ba-84bf-3707-1bacd7211f75	2021-05-20 18:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:19:50.853+03	2021-05-20 18:19:50.859+03	
874c3c81-0fc6-3d0f-f2bd-eb0e60b2e300	2021-05-20 18:20:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:20:01.853+03	2021-05-20 18:20:01.859+03	
61b2e095-37cd-7847-191e-354c830e2d72	2021-05-20 18:20:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:20:21.853+03	2021-05-20 18:20:21.862+03	
323fa95f-66f7-b52b-612f-63f49a016e14	2021-05-20 18:20:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:20:41.854+03	2021-05-20 18:20:41.86+03	
7efab557-2c29-6b26-9ed3-f13024cc3e84	2021-05-20 18:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:21:03.852+03	2021-05-20 18:21:03.858+03	
9baa3a8a-05dc-8d6a-e092-bf72cd34526e	2021-05-20 18:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:21:24.852+03	2021-05-20 18:21:24.86+03	
d23570f4-8fe8-6db2-11d1-021013a33df6	2021-05-20 18:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:21:44.853+03	2021-05-20 18:21:44.86+03	
99800adc-321e-f815-10b9-15ef24cac23e	2021-05-20 18:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:22:04.853+03	2021-05-20 18:22:04.859+03	
518af78f-bd12-ea94-9eef-2a65cbd0331b	2021-05-20 18:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:22:25.852+03	2021-05-20 18:22:25.859+03	
36c706b9-71d3-98c8-82ed-a890ac5cbf84	2021-05-20 18:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:22:45.852+03	2021-05-20 18:22:45.859+03	
f50c802a-3b7b-c19d-1424-2466c3bed3e9	2021-05-20 18:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:23:05.852+03	2021-05-20 18:23:05.86+03	
bccca27b-e065-5c1c-da18-b0ab5a068558	2021-05-20 18:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:23:25.853+03	2021-05-20 18:23:25.859+03	
00f0df3f-cc38-6b72-ab79-a366c0d4fd08	2021-05-20 18:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:23:45.853+03	2021-05-20 18:23:45.859+03	
d652f843-4127-a19b-1d3b-7ba94f084289	2021-05-20 18:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:24:05.853+03	2021-05-20 18:24:05.86+03	
c84f95ac-077b-86a6-d51c-890dd5f1f965	2021-05-20 18:24:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:24:26.853+03	2021-05-20 18:24:26.86+03	
d9426cc7-5479-036e-893b-eee9f0126559	2021-05-20 18:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:24:47.852+03	2021-05-20 18:24:47.86+03	
921fb66b-f6f2-0723-0a97-7be2c440af35	2021-05-20 18:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:25:08.852+03	2021-05-20 18:25:08.859+03	
240d979d-e0a4-fa4e-5180-958ff38031dd	2021-05-20 18:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:25:28.853+03	2021-05-20 18:25:28.861+03	
7f13102c-27fd-8618-5801-8e19ce95efdb	2021-05-20 18:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:25:48.853+03	2021-05-20 18:25:48.859+03	
afe9e1e9-ae63-3f15-c514-a8925807eea4	2021-05-20 18:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:26:09.852+03	2021-05-20 18:26:09.858+03	
0c0e354c-b715-9aeb-15e9-47cf6dc28602	2021-05-20 18:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:26:29.852+03	2021-05-20 18:26:29.858+03	
76cf7501-0a52-0761-e2a4-20a0efadce3d	2021-05-20 18:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:26:49.853+03	2021-05-20 18:26:49.859+03	
0015d576-9b6c-ce98-0214-4071535dd317	2021-05-20 18:27:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:27:11.854+03	2021-05-20 18:27:11.86+03	
70bfdbab-b438-edb2-5ae3-6e62a52a9176	2021-05-20 18:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:27:32.853+03	2021-05-20 18:27:32.859+03	
7a4af916-23b0-814d-d99f-b37c5e4b4684	2021-05-20 18:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:27:53.852+03	2021-05-20 18:27:53.872+03	
47d9acdd-7282-ba90-bbf1-44d1d5c61b4a	2021-05-20 18:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:28:13.853+03	2021-05-20 18:28:13.859+03	
f44fa45c-3387-24a0-8116-c6fd8d484a4b	2021-05-20 18:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:28:34.853+03	2021-05-20 18:28:34.862+03	
63d1e392-bb84-4204-fe0a-af5a58a23baa	2021-05-20 18:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:28:55.853+03	2021-05-20 18:28:55.861+03	
9a889d95-bbdc-9dcc-86a7-26cb6593433a	2021-05-20 18:29:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:29:16.854+03	2021-05-20 18:29:16.86+03	
39968df0-a63e-3371-b71e-4188d9db3164	2021-05-20 18:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:29:37.853+03	2021-05-20 18:29:37.859+03	
48506a7b-1db4-fef6-c75d-eb2987a755a4	2021-05-20 18:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:29:57.853+03	2021-05-20 18:29:57.86+03	
4b377e52-21b6-065a-3111-a5917d7e8c8f	2021-05-20 18:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:30:07.853+03	2021-05-20 18:30:07.859+03	
43cf14e3-9b5b-1096-1a90-5f5d6e66e6c8	2021-05-20 18:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:30:27.853+03	2021-05-20 18:30:27.872+03	
3e12d700-926e-18aa-92fa-1bf941f89c62	2021-05-20 18:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:30:47.853+03	2021-05-20 18:30:47.859+03	
5fe1e509-4d6c-d005-5be7-4df11e849a24	2021-05-20 18:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:31:07.853+03	2021-05-20 18:31:07.859+03	
7218d08c-79b0-205c-1c2b-2eb029d1b95f	2021-05-20 18:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:31:27.853+03	2021-05-20 18:31:27.878+03	
854dab5c-f8ae-49c7-c4e8-bf9cd1137ed5	2021-05-20 18:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:31:47.853+03	2021-05-20 18:31:47.859+03	
8af90409-c48a-583a-deeb-ad12890217ac	2021-05-20 18:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:32:08.852+03	2021-05-20 18:32:08.859+03	
2d4a6ad3-0450-53b6-991a-01720a04133a	2021-05-20 18:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:32:29.852+03	2021-05-20 18:32:29.872+03	
db12bd92-d8fc-7d4d-b4b9-6bc2e005d51a	2021-05-20 18:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:32:49.852+03	2021-05-20 18:32:49.859+03	
7174900c-9d9e-fd81-34c2-78990d263c32	2021-05-20 18:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:33:09.852+03	2021-05-20 18:33:09.86+03	
ab5aa2a3-bdfb-697d-0d5f-ce2c326c5cc9	2021-05-20 18:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:33:29.853+03	2021-05-20 18:33:29.863+03	
55e4c275-cb6b-a462-5c30-c77e46b3431d	2021-05-20 18:33:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:33:51.853+03	2021-05-20 18:33:51.86+03	
ed7c484c-1f8c-3bdb-2e03-1198629ac5d4	2021-05-20 18:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:34:11.853+03	2021-05-20 18:34:11.858+03	
f3764f8e-0528-7fff-b79f-cdf26a2bce14	2021-05-20 18:34:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:34:31.853+03	2021-05-20 18:34:31.86+03	
0f7f5003-0b5a-e6ba-4ad3-23451306882d	2021-05-20 18:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:34:52.853+03	2021-05-20 18:34:52.86+03	
184db2da-568a-4651-d448-1b14a0867c4e	2021-05-20 18:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:35:13.852+03	2021-05-20 18:35:13.869+03	
69353c64-a4ad-8d78-0f73-865f9841c2b6	2021-05-20 18:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:35:33.852+03	2021-05-20 18:35:33.859+03	
b488c525-c037-ccfb-b203-96c212d31ba4	2021-05-20 18:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:35:53.852+03	2021-05-20 18:35:53.859+03	
4202624e-4c9d-8a27-29be-d97d00649c9e	2021-05-21 11:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:23:50.853+03	2021-05-21 11:23:51.091+03	
e0169aa0-051d-8c36-97b3-50c22104a158	2021-05-20 18:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:36:03.853+03	2021-05-20 18:36:03.861+03	
0525400b-280b-46eb-42e5-7071dec7bcae	2021-05-20 20:37:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:37:16.853+03	2021-05-20 20:37:16.861+03	
61175c65-be4a-ed16-243f-789946ee86f7	2021-05-20 18:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:36:24.852+03	2021-05-20 18:36:24.859+03	
e697ecf4-6722-3084-31c5-608ffe3010e5	2021-05-20 18:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:36:44.853+03	2021-05-20 18:36:44.86+03	
7ea1206e-fbbc-5979-fb82-c2ceada57929	2021-05-20 20:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:37:37.853+03	2021-05-20 20:37:37.858+03	
27214c0b-b68a-fef5-71da-0496c8efde1c	2021-05-20 18:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:37:05.852+03	2021-05-20 18:37:05.859+03	
510d68e7-cf75-5516-13a8-b3e04faf7bc8	2021-05-20 18:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:37:25.852+03	2021-05-20 18:37:25.858+03	
837c619c-df26-5dac-7ad6-172235c84cbf	2021-05-20 20:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:37:58.852+03	2021-05-20 20:37:58.86+03	
c0216de9-9f35-9e2b-3c44-cd4415ca10f3	2021-05-20 18:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:37:45.852+03	2021-05-20 18:37:45.858+03	
506d5521-8765-d7a7-1eff-59a56530d15e	2021-05-20 18:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:38:05.852+03	2021-05-20 18:38:05.86+03	
02b143b7-93df-d916-dcfb-42e70821193c	2021-05-20 20:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:38:19.852+03	2021-05-20 20:38:19.867+03	
c7e33b35-34b8-781c-4b8d-8459f65fd7a0	2021-05-20 18:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:38:26.853+03	2021-05-20 18:38:26.859+03	
3e4aa67f-a9ce-c2e7-631b-caaa2d6c474c	2021-05-20 18:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:38:47.853+03	2021-05-20 18:38:47.859+03	
dd962018-cac3-ed07-00d0-f43baa7291f0	2021-05-20 20:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:38:39.853+03	2021-05-20 20:38:39.861+03	
87db87bb-96ab-1859-2b33-0040596a3f6a	2021-05-20 18:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:39:08.852+03	2021-05-20 18:39:08.87+03	
0b96f2c0-0521-d332-93f2-ce5a6f78d5da	2021-05-20 18:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:39:29.852+03	2021-05-20 18:39:29.859+03	
65b2fe2b-d209-f175-1898-0adbf4039bb4	2021-05-20 20:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:39:00.852+03	2021-05-20 20:39:00.859+03	
9420878c-3626-4c87-cb69-7c8f80acb638	2021-05-20 18:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:39:49.853+03	2021-05-20 18:39:49.86+03	
d1471418-c172-02a8-2f38-0f657285de37	2021-05-20 18:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:40:11.852+03	2021-05-20 18:40:11.858+03	
cb6046e0-d662-36f4-1a64-73dc90d9065e	2021-05-20 20:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:39:20.853+03	2021-05-20 20:39:20.878+03	
583ef956-48cf-061a-77ed-d7d9dc75517d	2021-05-20 18:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:40:32.852+03	2021-05-20 18:40:32.859+03	
65f666b3-1fd0-5b3f-b407-90076cf6ef63	2021-05-20 20:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:39:41.853+03	2021-05-20 20:39:41.859+03	
ad427e23-d2b8-7295-bd54-ee5fd0f5184d	2021-05-20 20:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 20:40:00.853+03	2021-05-20 20:40:00.859+03	ERROR
f308e90b-1945-15c8-40d2-3b40575e2bd6	2021-05-20 20:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:40:13.852+03	2021-05-20 20:40:13.858+03	
c1910b03-9d01-9227-70f2-6fdf0350a63e	2021-05-20 20:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:40:33.852+03	2021-05-20 20:40:33.864+03	
72ef1f5c-6c77-cc4b-17f0-38ecb8817a92	2021-05-20 20:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:40:53.853+03	2021-05-20 20:40:53.86+03	
c7058fc1-067f-6575-2a1a-32c990320871	2021-05-20 20:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:41:13.853+03	2021-05-20 20:41:13.86+03	
08f4d4fe-3a78-4076-1796-b490b4b0c84e	2021-05-20 20:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:41:34.852+03	2021-05-20 20:41:34.859+03	
4dce10b6-6e3d-49d7-a82c-ce9c4f418bda	2021-05-20 20:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:41:54.853+03	2021-05-20 20:41:54.858+03	
d1800be6-138b-82e0-a2c3-6cc7e69affca	2021-05-20 20:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:42:15.853+03	2021-05-20 20:42:15.861+03	
bcac437e-b83d-d5fd-cfbd-82f192cb07c6	2021-05-20 20:42:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:42:37.853+03	2021-05-20 20:42:37.86+03	
b5d36df0-d2d3-dcef-daf1-a71ae20a372d	2021-05-20 20:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:42:57.853+03	2021-05-20 20:42:57.86+03	
7007c539-4c46-1e4c-ab6b-e2bc62c5cc3a	2021-05-20 20:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:43:18.852+03	2021-05-20 20:43:18.859+03	
3555cad6-156d-98fe-ed42-af2049fab3f3	2021-05-20 20:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:43:38.853+03	2021-05-20 20:43:39.191+03	
5f107df4-6f05-e716-bdfe-3fb284c87f29	2021-05-20 20:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:43:58.853+03	2021-05-20 20:43:58.861+03	
642dd1cf-33d6-9d99-a399-877771472245	2021-05-20 20:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:44:20.853+03	2021-05-20 20:44:20.861+03	
3af699e9-5bb8-fb59-68a8-05270daaeffd	2021-05-20 20:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:44:40.853+03	2021-05-20 20:44:40.862+03	
ac1d2e75-93ce-500b-a6bd-848bd77f464c	2021-05-20 20:45:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:45:01.853+03	2021-05-20 20:45:01.859+03	
0567d3a3-62bb-ee87-ef08-eda5d6ddc3d6	2021-05-20 20:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:45:22.852+03	2021-05-20 20:45:22.867+03	
6aa92737-e6b3-bcb5-47ee-560cbe945787	2021-05-20 20:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:45:42.852+03	2021-05-20 20:45:42.867+03	
f74a3d2c-d68b-e255-d260-c83d3935b7a0	2021-05-20 20:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:46:02.853+03	2021-05-20 20:46:02.86+03	
d1ed9881-a410-dd46-e468-c358d29f25d1	2021-05-20 20:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:46:23.852+03	2021-05-20 20:46:23.859+03	
2a94826a-1a07-6250-68af-af3871dd2fe5	2021-05-20 20:46:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:46:43.853+03	2021-05-20 20:46:43.862+03	
911ca0c5-dfe9-3762-dfa4-f3179ac9c474	2021-05-20 20:47:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:47:03.853+03	2021-05-20 20:47:03.862+03	
f033fc6e-604e-4ad5-2c92-c53a607ecef8	2021-05-20 20:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:47:23.853+03	2021-05-20 20:47:23.861+03	
6f7ed904-8e86-d5b3-125a-f690d855db9a	2021-05-20 20:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:47:44.852+03	2021-05-20 20:47:44.858+03	
68f96fd6-d7d0-150b-53ac-690cc9ca5854	2021-05-20 20:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:48:04.852+03	2021-05-20 20:48:04.859+03	
cf9d408f-7168-7ab8-8f27-e587cf899069	2021-05-20 20:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:48:25.853+03	2021-05-20 20:48:25.86+03	
7437831d-4f9b-1908-0045-88ccb9b8cdcd	2021-05-20 20:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:48:45.853+03	2021-05-20 20:48:45.86+03	
eb476674-ded7-f91a-f041-0512089e3bca	2021-05-20 20:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:49:07.852+03	2021-05-20 20:49:07.858+03	
d3b97f55-bd46-dbd2-2549-6af73d38e5e0	2021-05-20 20:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:49:27.853+03	2021-05-20 20:49:27.858+03	
4228da27-0dda-b04c-5324-81fb51204222	2021-05-20 20:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:49:49.853+03	2021-05-20 20:49:49.859+03	
cdb496fc-027c-9c3b-40d2-11aee33e87cc	2021-05-20 20:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 20:50:00.853+03	2021-05-20 20:50:00.869+03	ERROR
dd219308-ac15-a0e3-a91a-f35e9212d944	2021-05-20 20:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:50:20.853+03	2021-05-20 20:50:20.86+03	
4c25f28a-f4b8-d489-cb01-ede7be6868d9	2021-05-20 20:50:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:50:41.852+03	2021-05-20 20:50:41.861+03	
e61b8c1d-9fe7-33d2-87d8-785944216f2d	2021-05-20 20:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:51:02.852+03	2021-05-20 20:51:02.859+03	
c22b5ec5-4d06-abc7-2e60-8d5afbb76d7b	2021-05-20 20:51:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:51:22.853+03	2021-05-20 20:51:22.86+03	
1ad0578f-d1cd-2945-72a3-7721d341fe14	2021-05-20 20:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:51:43.852+03	2021-05-20 20:51:43.866+03	
e8a7a3a5-c71d-8ac3-8811-34fb706db262	2021-05-20 20:52:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:52:03.852+03	2021-05-20 20:52:03.858+03	
e3c14647-ffc2-af7f-fff5-202c1a6a2c55	2021-05-20 20:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:52:23.852+03	2021-05-20 20:52:23.859+03	
98d8bc9e-c4b8-5c2d-7fa9-cccd440faa2f	2021-05-20 20:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:52:43.853+03	2021-05-20 20:52:43.88+03	
1939e1c8-d611-a836-3491-2fa324eaf45c	2021-05-20 20:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:53:04.852+03	2021-05-20 20:53:04.858+03	
0ab56fd9-fe1b-b4af-21ca-d7d138805239	2021-05-20 20:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:53:25.852+03	2021-05-20 20:53:25.867+03	
ff8ee4ed-dd1d-5d70-4814-6ed97fe73efa	2021-05-20 18:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:36:13.853+03	2021-05-20 18:36:13.859+03	
97599994-73f5-3bc6-cc93-d0758336d32d	2021-05-20 18:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:36:34.852+03	2021-05-20 18:36:34.859+03	
d14870d7-b84e-1056-bea7-1c2ac43f185c	2021-05-20 18:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:36:54.853+03	2021-05-20 18:36:54.86+03	
f30c01bf-84df-b8bb-4819-0027c6e55238	2021-05-20 18:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:37:15.852+03	2021-05-20 18:37:15.862+03	
ee1b9453-7e16-3505-dcf1-d05547a2fbdb	2021-05-20 18:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:37:35.852+03	2021-05-20 18:37:35.859+03	
f1e18f27-b854-a966-d9e7-e08af0973c97	2021-05-20 18:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:37:55.852+03	2021-05-20 18:37:55.861+03	
25499b5f-1e51-d694-4864-1a96046d83df	2021-05-20 18:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:38:15.853+03	2021-05-20 18:38:15.861+03	
fff7f1da-f1f7-029e-937b-f9e6510a5ee2	2021-05-20 18:38:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:38:36.853+03	2021-05-20 18:38:36.86+03	
429d6364-a88a-735b-381e-13e7cacbaec8	2021-05-20 18:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:38:58.852+03	2021-05-20 18:38:58.858+03	
e41bfefc-4cbb-0f29-e45c-7795dac3446c	2021-05-20 18:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:39:18.853+03	2021-05-20 18:39:18.859+03	
a9f8da49-2a77-b24b-ade0-e38a832e82f6	2021-05-20 18:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:39:39.852+03	2021-05-20 18:39:39.859+03	
c7ee5cf8-381e-1d46-8807-7b25f868e1d2	2021-05-20 18:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:40:00.853+03	2021-05-20 18:40:00.863+03	
e995c103-ae90-17ea-06d0-5c14ed8b218e	2021-05-20 18:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 18:40:00.853+03	2021-05-20 18:40:00.872+03	ERROR
40cf88eb-fbe9-5cc5-ee88-41d30f709145	2021-05-20 18:40:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:40:21.854+03	2021-05-20 18:40:21.864+03	
c78f5b8e-94da-d5cd-b4e5-7691b282d04b	2021-05-20 18:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:40:42.853+03	2021-05-20 18:40:42.859+03	
d2d8d497-0a99-90b1-bb37-e2cf79bffc40	2021-05-20 18:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:40:52.853+03	2021-05-20 18:40:52.861+03	
73101084-ff5c-fb14-3412-e5ef92fb40e7	2021-05-20 18:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:41:03.853+03	2021-05-20 18:41:03.865+03	
4226ab48-9339-0f69-cda1-a000595f6423	2021-05-20 18:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:41:13.853+03	2021-05-20 18:41:13.871+03	
e547da17-1056-720c-8912-19e4400a6b0f	2021-05-20 18:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:41:23.853+03	2021-05-20 18:41:23.86+03	
0423f3a8-c0e1-722c-21f3-a493fd3c31e3	2021-05-20 18:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:41:34.853+03	2021-05-20 18:41:34.861+03	
b33e104a-d55b-50b6-1992-07bbf5df8e2a	2021-05-20 18:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:41:45.852+03	2021-05-20 18:41:45.859+03	
998d7761-c418-2a15-5ab3-5e0192960e7a	2021-05-20 18:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:41:55.852+03	2021-05-20 18:41:55.859+03	
a79ea321-2e16-84f2-6855-358f0c9c813e	2021-05-20 18:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:42:05.852+03	2021-05-20 18:42:05.859+03	
b9bd3d88-adac-718d-655f-42ea31026463	2021-05-20 18:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:42:15.853+03	2021-05-20 18:42:15.858+03	
bdea2dfd-7b8d-f165-b3f3-1e41e484ad02	2021-05-20 18:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:42:25.853+03	2021-05-20 18:42:25.861+03	
78ecfcef-0544-a133-f172-db819c62495a	2021-05-20 18:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:42:35.853+03	2021-05-20 18:42:35.87+03	
87ad64bc-576f-cdca-0df3-b941030de429	2021-05-20 18:42:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:42:46.852+03	2021-05-20 18:42:46.872+03	
fd632ce4-e368-ceda-a69f-527535d0b99b	2021-05-20 18:42:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:42:56.853+03	2021-05-20 18:42:56.864+03	
6fb729e1-2117-5355-f6f9-ac489f48f6be	2021-05-20 18:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:43:07.852+03	2021-05-20 18:43:07.86+03	
4202a3af-f536-514b-58a8-ca6eae816538	2021-05-20 18:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:43:17.852+03	2021-05-20 18:43:17.859+03	
16b34e78-24e8-b05d-8423-5c89050d6bfe	2021-05-20 18:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:43:27.852+03	2021-05-20 18:43:27.867+03	
f2be55fd-2ebf-2af9-6407-67fd3a4e0396	2021-05-20 18:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:43:37.852+03	2021-05-20 18:43:37.874+03	
3cb013d9-7325-251e-d90d-36c455db9129	2021-05-20 18:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:43:47.853+03	2021-05-20 18:43:47.859+03	
b568227b-9209-a0ec-b821-33e2de964ec2	2021-05-20 18:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:43:57.853+03	2021-05-20 18:43:57.859+03	
88eae8b9-d68f-b95e-8baa-ae8516b27d6c	2021-05-20 18:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:44:07.853+03	2021-05-20 18:44:07.859+03	
0c24b602-ae52-c4fd-0110-11595cc9d26a	2021-05-20 18:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:44:18.853+03	2021-05-20 18:44:18.874+03	
2e31e1c9-46c8-a567-2a64-2f0b758c8b4c	2021-05-20 18:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:44:28.853+03	2021-05-20 18:44:28.872+03	
a2884924-cac5-646b-d300-f356e6df0a1f	2021-05-20 18:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:44:38.853+03	2021-05-20 18:44:38.865+03	
cbb8c1af-8d21-cd2d-97c5-942fbc555ff4	2021-05-20 18:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:44:48.853+03	2021-05-20 18:44:48.864+03	
b8bdd9db-724c-0899-3cb0-7cf3c2026b08	2021-05-20 18:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:44:59.852+03	2021-05-20 18:44:59.859+03	
d3db2930-070c-71b0-c87b-b23b2acf5eab	2021-05-20 18:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:45:09.852+03	2021-05-20 18:45:09.858+03	
ac7daf01-41b8-2364-09bc-e7822876c4a3	2021-05-20 18:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:45:19.852+03	2021-05-20 18:45:19.859+03	
d4809eed-db2f-2d2c-5010-3740f90ce59b	2021-05-20 18:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:45:29.852+03	2021-05-20 18:45:29.859+03	
26a20531-e33e-ab0f-3284-77b75a21ab2e	2021-05-20 18:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:45:39.853+03	2021-05-20 18:45:39.86+03	
42a1b3b3-b769-f0f2-18b2-f7e93a77d6ad	2021-05-20 18:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:45:49.853+03	2021-05-20 18:45:49.86+03	
bfa2db1b-ae51-4a92-04fc-5d0672cbda7c	2021-05-20 18:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:45:59.853+03	2021-05-20 18:45:59.859+03	
2f7cf37f-0ec7-639b-bc38-e5567d6c5024	2021-05-20 18:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:46:09.853+03	2021-05-20 18:46:09.859+03	
2312647f-599a-1e8a-2b43-a444c7dd293c	2021-05-20 18:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:46:19.853+03	2021-05-20 18:46:19.86+03	
c015d3ff-fc1b-e2b2-37c4-b16ec530bb17	2021-05-20 18:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:46:29.853+03	2021-05-20 18:46:29.859+03	
f4b40d4f-e084-9726-b617-26a161e88570	2021-05-20 18:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:46:39.853+03	2021-05-20 18:46:39.872+03	
e739ef40-25c0-725a-767d-ddc3083c20b5	2021-05-20 18:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:46:49.853+03	2021-05-20 18:46:49.859+03	
ca2ba4fd-757d-0d55-d764-85227e9b127e	2021-05-20 18:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:46:59.853+03	2021-05-20 18:46:59.859+03	
ad56a6d2-8a56-84a9-0756-37c1d31ecbf7	2021-05-20 18:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:47:10.852+03	2021-05-20 18:47:10.858+03	
6ecfd6d8-b64a-f31f-4f56-0b7d0c3cc73a	2021-05-20 18:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:47:20.852+03	2021-05-20 18:47:20.859+03	
51352bf3-cb3a-f348-30aa-a54d3a7788cb	2021-05-20 18:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:47:30.852+03	2021-05-20 18:47:30.859+03	
e52d3c38-d551-1fd3-ab89-01cb8c294dcc	2021-05-20 18:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:47:40.852+03	2021-05-20 18:47:40.859+03	
607f2bff-bd09-fd80-7673-92822ccd5585	2021-05-20 18:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:47:50.853+03	2021-05-20 18:47:50.86+03	
c146c587-fe1d-5e7a-e3c1-34a01a0c7ec5	2021-05-20 18:48:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:48:01.854+03	2021-05-20 18:48:01.876+03	
1f43d4d4-3dea-854c-8295-e038b9e64c06	2021-05-20 18:48:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:48:11.854+03	2021-05-20 18:48:11.86+03	
e3b90ebd-3d5e-b0fd-c78a-383aad5cc828	2021-05-20 18:48:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:48:21.854+03	2021-05-20 18:48:21.86+03	
a81ba070-a07b-518b-5f4e-ab8f7f1a7490	2021-05-20 18:48:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:48:31.854+03	2021-05-20 18:48:31.861+03	
b2f73f9f-6efd-4cf6-2160-7daa164aaa08	2021-05-20 18:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:48:42.852+03	2021-05-20 18:48:42.859+03	
4c23afe5-2608-be53-e7dd-5e91d0f3c16f	2021-05-20 18:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:48:52.853+03	2021-05-20 18:48:52.86+03	
e7dbb46b-150f-93e8-879c-02b6eefe07b1	2021-05-20 18:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:49:02.853+03	2021-05-20 18:49:02.86+03	
d1910904-9fde-2721-8af8-c6d2ab58cacf	2021-05-20 18:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:49:24.853+03	2021-05-20 18:49:24.861+03	
6af49ac2-cc39-2c5b-cacc-b173a701066f	2021-05-20 18:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:49:45.853+03	2021-05-20 18:49:45.859+03	
ce5512a2-491d-0d42-1a19-91174a98e707	2021-05-20 18:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:49:55.853+03	2021-05-20 18:49:55.86+03	
dbed6ca7-fb71-bc39-3d27-333e55dc2c55	2021-05-20 18:50:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:50:06.852+03	2021-05-20 18:50:06.861+03	
665e50f8-4f48-8eed-2309-658d75367b02	2021-05-20 18:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:50:27.853+03	2021-05-20 18:50:27.859+03	
0e57f23a-ee2c-cb3a-e814-81c7d593259c	2021-05-20 18:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:50:48.852+03	2021-05-20 18:50:48.862+03	
133fc1e9-7979-20f7-e1eb-90fb8e882610	2021-05-20 18:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:51:09.852+03	2021-05-20 18:51:09.861+03	
3f315916-d972-0651-1987-6eee60c3ce89	2021-05-20 18:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:51:30.852+03	2021-05-20 18:51:30.859+03	
89beb91f-5635-5001-5c5d-77f3297bdef4	2021-05-20 18:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:51:50.853+03	2021-05-20 18:51:50.861+03	
5184aa1a-f057-dea7-598b-c50b80d80f3e	2021-05-20 18:52:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:52:11.853+03	2021-05-20 18:52:11.86+03	
ae5f2480-a66a-234b-4542-c57dbee25e02	2021-05-20 18:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:52:32.853+03	2021-05-20 18:52:32.859+03	
575f5ff9-6a90-b734-291a-c0236d82b374	2021-05-20 18:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:52:53.852+03	2021-05-20 18:52:53.859+03	
601bd3e9-1fca-fb18-c022-a28aeaef515d	2021-05-20 18:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:53:13.853+03	2021-05-20 18:53:13.86+03	
df60bcaf-abc2-568b-23fd-d16f2433d942	2021-05-20 18:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:53:34.852+03	2021-05-20 18:53:34.859+03	
c258b3f6-2e3d-7843-18f2-c0cd98441349	2021-05-20 18:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:53:54.853+03	2021-05-20 18:53:54.859+03	
29696ad9-7c5d-38c9-32fa-533b3bfc581f	2021-05-20 18:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:54:15.852+03	2021-05-20 18:54:15.859+03	
aee44152-a5b6-b8f3-155f-ef09aa78a02f	2021-05-20 18:54:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:54:36.854+03	2021-05-20 18:54:36.865+03	
9ca85fad-e0bd-5f18-67a4-d0c4e4e26751	2021-05-20 18:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:54:57.853+03	2021-05-20 18:54:57.859+03	
51779cfb-af60-253c-5e06-136226379776	2021-05-20 18:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:55:18.853+03	2021-05-20 18:55:18.86+03	
ee221450-7d9b-9d3f-020c-899d6ee3d56e	2021-05-20 18:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:55:39.853+03	2021-05-20 18:55:39.862+03	
ff9f62e7-ac96-8489-855f-a2b6678dec75	2021-05-20 18:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:56:00.852+03	2021-05-20 18:56:00.859+03	
f4b7480c-a0b3-d228-8058-0da30883ebdc	2021-05-20 18:56:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:56:21.853+03	2021-05-20 18:56:21.864+03	
1244b6e6-99ee-6620-2678-8d3e5f7e3144	2021-05-20 18:56:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:56:41.854+03	2021-05-20 18:56:41.863+03	
bd8caf45-1a1c-bf78-82db-3da9d5c584f1	2021-05-20 18:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:57:03.852+03	2021-05-20 18:57:03.859+03	
34e80eb0-df4a-5eba-d094-b1dc3e5e16b9	2021-05-20 18:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:57:24.853+03	2021-05-20 18:57:24.859+03	
3968133e-ec91-c015-9d6f-c682acb2b8e2	2021-05-20 18:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:57:44.853+03	2021-05-20 18:57:44.86+03	
97c86c21-b74b-fece-ac8d-debf54c0a368	2021-05-20 18:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:58:04.853+03	2021-05-20 18:58:04.861+03	
75f1669f-5e67-1b40-789c-37e8b721ede5	2021-05-20 18:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:58:25.852+03	2021-05-20 18:58:25.863+03	
7b39bf46-ad66-536d-6266-35763865dd2d	2021-05-20 18:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:58:45.853+03	2021-05-20 18:58:45.859+03	
f5e49373-de7d-f6ec-f88d-6207ea0ead4e	2021-05-20 18:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:59:06.852+03	2021-05-20 18:59:06.86+03	
2b434277-330a-9e55-fb0f-2b7600f248b2	2021-05-20 18:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:59:27.853+03	2021-05-20 18:59:27.861+03	
0683fb10-56c4-8317-5e5d-2abc35cc56ad	2021-05-20 18:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:59:47.853+03	2021-05-20 18:59:47.861+03	
7c0303c3-310b-1143-d13d-e4cd91b602c6	2021-05-20 19:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 19:00:00.853+03	2021-05-20 19:00:00.858+03	ERROR
d890e6fe-0835-5dde-1a95-ef372860bf88	2021-05-20 19:00:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:00:17.854+03	2021-05-20 19:00:17.862+03	
c7ecf8e5-9d5e-640f-64b8-ba66c03d9465	2021-05-20 19:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:00:38.853+03	2021-05-20 19:00:38.862+03	
3b2ab4b5-0f3c-1517-c2eb-7887a485ce26	2021-05-20 19:00:58.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:00:58.854+03	2021-05-20 19:00:58.862+03	
675ef08f-5de4-7e5a-d1c8-1505df0a8cc1	2021-05-20 19:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:01:19.853+03	2021-05-20 19:01:19.859+03	
e350ac6f-6c6d-91d3-fcda-7c898525c24c	2021-05-20 19:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:01:39.853+03	2021-05-20 19:01:39.86+03	
f1bc224e-8a52-d561-9f68-93e17f658c85	2021-05-20 19:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:02:00.853+03	2021-05-20 19:02:00.861+03	
c174a6ee-d45c-f6a7-b47d-32438aee07a3	2021-05-20 19:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:02:20.853+03	2021-05-20 19:02:20.859+03	
dc14eab1-48f6-12ae-6d3d-c7ce674ad13c	2021-05-20 19:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:02:40.853+03	2021-05-20 19:02:40.859+03	
6151ab1a-20c1-5a7f-9ecd-880a85e1c35f	2021-05-20 19:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:03:00.853+03	2021-05-20 19:03:00.861+03	
b223d011-0063-0ece-1a66-02cb5018ed8b	2021-05-20 19:03:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:03:21.854+03	2021-05-20 19:03:21.862+03	
e31582e4-fd88-5bee-36ef-10aaf09c4877	2021-05-20 19:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:03:42.852+03	2021-05-20 19:03:42.859+03	
1627dbf2-6217-f9e1-905a-402e3235738a	2021-05-20 19:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:04:02.853+03	2021-05-20 19:04:02.859+03	
c93738bb-1423-e767-432a-a1300733eda5	2021-05-20 19:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:04:23.853+03	2021-05-20 19:04:23.869+03	
605e8e39-8947-9c94-1e9e-84da52dd495a	2021-05-20 19:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:04:44.853+03	2021-05-20 19:04:44.86+03	
26e5a937-3e4e-2208-52f9-36f7ef00d6fe	2021-05-20 19:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:05:05.852+03	2021-05-20 19:05:05.858+03	
f578311f-d56e-5cdd-3b5d-f3911b113836	2021-05-20 19:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:05:25.852+03	2021-05-20 19:05:25.858+03	
e7ae4ffd-99e7-193b-14bc-887431bc6ed2	2021-05-20 19:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:05:45.852+03	2021-05-20 19:05:45.859+03	
c51dcb7a-4d6a-8daa-ab9b-b9b9b784f316	2021-05-20 19:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:06:05.853+03	2021-05-20 19:06:05.861+03	
da69e2d7-d547-079a-290d-cab6aedd3649	2021-05-20 19:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:06:25.853+03	2021-05-20 19:06:25.86+03	
e2c938fe-4576-7292-2616-f4fdcf3910f8	2021-05-20 19:06:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:06:45.854+03	2021-05-20 19:06:45.861+03	
512b2509-7de5-d858-3bec-bca0507b2eed	2021-05-20 19:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:07:06.853+03	2021-05-20 19:07:06.861+03	
223a3851-6aca-e26d-9de8-55cea2fc2da4	2021-05-20 19:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:07:28.852+03	2021-05-20 19:07:28.859+03	
bbd5734b-88d5-0da6-bcf0-be8b053f1ce6	2021-05-20 19:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:07:48.853+03	2021-05-20 19:07:48.868+03	
96536d43-8668-bcd3-e089-f13d12a281fc	2021-05-20 19:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:08:08.853+03	2021-05-20 19:08:08.886+03	
2c0e2468-18e5-8020-f631-2a5aa5ebab54	2021-05-20 19:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:08:28.853+03	2021-05-20 19:08:28.86+03	
0d6b2510-09b1-8f3a-96a8-c3e2d5f5fb60	2021-05-20 19:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:08:49.852+03	2021-05-20 19:08:49.859+03	
0ddbef92-6cd2-a275-60f7-c17d5c1e40f8	2021-05-20 19:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:09:09.852+03	2021-05-20 19:09:09.859+03	
5522f3ea-6374-0a73-8057-50e749230fef	2021-05-20 19:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:09:29.853+03	2021-05-20 19:09:29.861+03	
b7d22742-033c-5d9b-1833-fa71ebbbbf80	2021-05-20 19:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:09:50.853+03	2021-05-20 19:09:50.86+03	
0040f903-e81e-bddd-a307-4df4e23e8c3f	2021-05-20 18:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:49:13.853+03	2021-05-20 18:49:13.87+03	
0f4d3b1d-ed52-4f9b-93bf-5523696dcd6a	2021-05-20 18:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:49:35.852+03	2021-05-20 18:49:35.86+03	
ef3fbbe0-c499-a8a3-2899-8dc564d44a66	2021-05-20 18:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 18:50:00.852+03	2021-05-20 18:50:00.857+03	ERROR
f05a5dad-f873-254b-3f84-ba1530c25266	2021-05-20 18:50:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:50:16.854+03	2021-05-20 18:50:16.861+03	
6ae0369b-0be1-dc96-01a0-61f82656256f	2021-05-20 18:50:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:50:37.853+03	2021-05-20 18:50:37.872+03	
c655fa0b-6933-b86a-5ad2-0d80382047e6	2021-05-20 18:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:50:58.853+03	2021-05-20 18:50:58.866+03	
6e642f89-b874-9853-6d29-2881d377163e	2021-05-20 18:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:51:19.853+03	2021-05-20 18:51:19.86+03	
09a68e07-815f-4020-25ec-4defe77b1e76	2021-05-20 18:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:51:40.852+03	2021-05-20 18:51:40.859+03	
12e55710-9100-f3c1-809e-6e5bf383e351	2021-05-20 18:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:52:00.853+03	2021-05-20 18:52:00.859+03	
b00595d4-19e8-2bbe-053e-8c3f97c5d013	2021-05-20 18:52:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:52:21.854+03	2021-05-20 18:52:21.86+03	
669d402b-e316-809f-7d6c-073dfee34fc7	2021-05-20 18:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:52:42.853+03	2021-05-20 18:52:42.862+03	
85c6c7e1-2c43-e093-388c-734d9f5a8dd0	2021-05-20 18:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:53:03.852+03	2021-05-20 18:53:03.859+03	
89345627-c867-6797-3d69-70388045a842	2021-05-20 18:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:53:23.853+03	2021-05-20 18:53:23.862+03	
174a3fb8-b0c8-4447-ee69-6e13da2ff219	2021-05-20 18:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:53:44.853+03	2021-05-20 18:53:44.861+03	
9dc767b8-27a6-885f-c11d-91b7161b5c0f	2021-05-20 18:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:54:05.852+03	2021-05-20 18:54:05.859+03	
90b346f4-db26-7e08-e15a-2a7ded7b8c9d	2021-05-20 18:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:54:25.853+03	2021-05-20 18:54:25.862+03	
c84013c5-9c7a-0739-b6b6-24f47020f37d	2021-05-20 18:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:54:47.853+03	2021-05-20 18:54:47.86+03	
bf5c838e-a33d-80f0-b889-8b4cff6abfdd	2021-05-20 18:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:55:08.852+03	2021-05-20 18:55:08.86+03	
65518af3-58dd-f5b8-8172-e21f765753c5	2021-05-20 18:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:55:29.852+03	2021-05-20 18:55:29.862+03	
58cd7c93-0036-9e12-7348-c868231f131c	2021-05-20 18:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:55:49.853+03	2021-05-20 18:55:49.859+03	
20dc4735-127c-03fd-dd85-89f2af974525	2021-05-20 18:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:56:10.853+03	2021-05-20 18:56:10.86+03	
f1cee5d4-045e-d85b-84c1-2a5492b0c438	2021-05-20 18:56:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:56:31.854+03	2021-05-20 18:56:31.864+03	
0b074c2e-c8b9-c4ac-e453-486145b27be6	2021-05-20 18:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:56:52.853+03	2021-05-20 18:56:52.861+03	
d8f08d83-98a2-c71c-0f8b-fb503306bdab	2021-05-20 18:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:57:13.853+03	2021-05-20 18:57:13.863+03	
9eb9b0d7-b765-2edc-9763-2cdaedbf83fc	2021-05-20 18:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:57:34.853+03	2021-05-20 18:57:34.863+03	
fd7ec179-bee2-ceb2-018d-1294a1d25458	2021-05-20 18:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:57:54.853+03	2021-05-20 18:57:54.861+03	
4f564c41-90b1-4240-0c33-26ffc8f3f4a5	2021-05-20 18:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:58:15.852+03	2021-05-20 18:58:15.865+03	
99206650-1cd7-649c-49e1-6efcc204cf52	2021-05-20 18:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:58:35.852+03	2021-05-20 18:58:35.859+03	
2dd432f5-0f5e-1a61-76cd-6f2a6c8bdb1e	2021-05-20 18:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:58:56.852+03	2021-05-20 18:58:56.86+03	
c79b5b86-8234-7ac5-d07e-90ae66006489	2021-05-20 18:59:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:59:16.854+03	2021-05-20 18:59:16.863+03	
10a3c910-81ac-480a-6f43-fc4d9377b31b	2021-05-20 18:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:59:37.853+03	2021-05-20 18:59:37.862+03	
77681172-3a79-f06c-4562-dbc8f18a70f6	2021-05-20 18:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 18:59:57.853+03	2021-05-20 18:59:57.86+03	
bc1d5b94-883f-e9f3-3573-ad2697295924	2021-05-20 19:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:00:07.853+03	2021-05-20 19:00:07.876+03	
2efbc7ae-8740-4381-b911-a7e9166fedc1	2021-05-20 19:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:00:28.853+03	2021-05-20 19:00:28.861+03	
c9efcf64-dc37-06fd-f7c4-15bf8906d74f	2021-05-20 19:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:00:48.853+03	2021-05-20 19:00:48.859+03	
6734a852-d53d-9291-6b55-e44789906ac1	2021-05-20 19:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:01:09.853+03	2021-05-20 19:01:09.859+03	
06574e95-f81c-c5fd-1e8a-9619799cf561	2021-05-20 19:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:01:29.853+03	2021-05-20 19:01:29.859+03	
f6b83f57-32ea-6592-529d-c808c7be1d41	2021-05-20 19:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:01:49.853+03	2021-05-20 19:01:49.859+03	
2762d143-3f96-e0c3-8216-555a80aa62d2	2021-05-20 19:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:02:10.853+03	2021-05-20 19:02:10.86+03	
e5761e00-b13c-2a50-ca4d-d6294d373e19	2021-05-20 19:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:02:30.853+03	2021-05-20 19:02:30.86+03	
35ab5e68-13e2-6aa8-03f2-cf55c3a07b71	2021-05-20 19:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:02:50.853+03	2021-05-20 19:02:50.861+03	
63ecec85-a2d3-1b6f-bcd9-85ab13de1daf	2021-05-20 19:03:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:03:11.853+03	2021-05-20 19:03:11.86+03	
a20b20c3-237a-9589-3c83-f6b684ddfb4b	2021-05-20 19:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:03:32.852+03	2021-05-20 19:03:32.859+03	
27db5618-f892-3a5d-d48b-0c0ee23afdae	2021-05-20 19:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:03:52.852+03	2021-05-20 19:03:52.859+03	
d21958d7-7885-a7a6-19ab-522b9c466cee	2021-05-20 19:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:04:13.852+03	2021-05-20 19:04:13.867+03	
b0804fde-94a2-abc9-e95c-a5290189a573	2021-05-20 19:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:04:33.853+03	2021-05-20 19:04:33.862+03	
0a36964b-0ade-adae-66a7-2b7c596ced7d	2021-05-20 19:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:04:55.852+03	2021-05-20 19:04:55.858+03	
a38a1819-6b15-b770-ca41-cd81f4f8fd46	2021-05-20 19:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:05:15.852+03	2021-05-20 19:05:15.864+03	
3dda4fb4-4e39-aec1-dded-5ff442df2597	2021-05-20 19:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:05:35.852+03	2021-05-20 19:05:35.869+03	
e1634fac-b7dd-90e2-6653-5e33170f53ce	2021-05-20 19:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:05:55.853+03	2021-05-20 19:05:55.86+03	
5393d47c-044f-cac6-8eda-b0cd4fbb146d	2021-05-20 19:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:06:15.853+03	2021-05-20 19:06:15.876+03	
3cb18065-0d16-f2c0-aa66-14c4071301c4	2021-05-20 19:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:06:35.853+03	2021-05-20 19:06:35.86+03	
89ea1bd0-09c5-26ca-e184-4b0dd7d4c426	2021-05-20 19:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:06:56.852+03	2021-05-20 19:06:56.86+03	
77345db6-e145-eb49-2131-39c49104ec75	2021-05-20 19:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:07:17.853+03	2021-05-20 19:07:17.86+03	
df438e47-d37f-30ab-583a-e5a36e25b51b	2021-05-20 19:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:07:38.853+03	2021-05-20 19:07:38.866+03	
dd63172b-74fc-ccbe-66de-344a4d401585	2021-05-20 19:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:07:58.853+03	2021-05-20 19:07:58.861+03	
7279a98a-bde1-17ca-3527-7c9c62d75034	2021-05-20 19:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:08:18.853+03	2021-05-20 19:08:18.861+03	
d988f177-b9b9-38b6-b255-9b77248ce58b	2021-05-20 19:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:08:38.853+03	2021-05-20 19:08:38.861+03	
b8d0879f-c145-70a2-12fc-9b627f495be1	2021-05-20 19:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:08:59.852+03	2021-05-20 19:08:59.861+03	
8c49284e-8db7-5ce3-c8ef-c3620c9fbf40	2021-05-20 19:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:09:19.853+03	2021-05-20 19:09:19.866+03	
7f5e31f5-811b-a5e0-85dd-cfa10dffad07	2021-05-20 19:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:09:39.853+03	2021-05-20 19:09:39.861+03	
4f32dbbe-d71c-d6d8-a50b-49a58aebe574	2021-05-20 19:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 19:10:00.852+03	2021-05-20 19:10:00.857+03	ERROR
ec73447d-3758-881f-0520-42a63e0b68b2	2021-05-20 19:10:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:10:11.854+03	2021-05-20 19:10:11.861+03	
943f2ab9-b2f3-2576-a179-cae32a3fcb97	2021-05-20 19:10:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:10:01.853+03	2021-05-20 19:10:01.872+03	
e38ede68-155e-2822-1c01-75f3e93bb641	2021-05-20 19:10:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:10:22.853+03	2021-05-20 19:10:22.86+03	
a3e2df3c-95e1-142a-ac74-d59f505b3883	2021-05-20 19:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:10:42.853+03	2021-05-20 19:10:42.86+03	
a4f6f2ee-5429-fef6-87a8-8d31ca6d1970	2021-05-20 19:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:11:03.853+03	2021-05-20 19:11:03.863+03	
b7cd8500-d85e-5612-df87-9dcff88dc2e8	2021-05-20 19:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:11:23.853+03	2021-05-20 19:11:23.861+03	
43829b59-90be-d935-7a53-f46c49e28bb6	2021-05-20 19:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:11:44.852+03	2021-05-20 19:11:44.859+03	
b81ae95c-5dae-cd25-0317-30d2476576fb	2021-05-20 19:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:12:04.853+03	2021-05-20 19:12:04.863+03	
24914043-ff9e-bdba-a8ae-5c177e13a494	2021-05-20 19:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:12:25.852+03	2021-05-20 19:12:25.858+03	
51ad3d4f-9f18-0edf-737a-93604b706e9d	2021-05-20 19:12:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:12:46.854+03	2021-05-20 19:12:46.861+03	
852dab93-3bec-0fcb-a421-3f59f4a41a70	2021-05-20 19:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:13:07.853+03	2021-05-20 19:13:07.861+03	
c45c7f4a-6188-733e-b7a4-0c4fef54a78e	2021-05-20 19:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:13:27.853+03	2021-05-20 19:13:27.859+03	
0efddca1-4ace-8623-f6e2-65034eee812d	2021-05-20 19:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:13:47.853+03	2021-05-20 19:13:47.86+03	
5fe2b7db-a4e3-9910-a91c-9b65850c36e1	2021-05-20 19:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:14:08.853+03	2021-05-20 19:14:08.861+03	
74b30b39-024f-5c68-da66-16da3d68bf4c	2021-05-20 19:14:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:14:28.853+03	2021-05-20 19:14:28.86+03	
41da1da1-1e35-178d-07aa-25e150ad9036	2021-05-20 19:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:14:49.852+03	2021-05-20 19:14:49.859+03	
3f0ffce4-13f2-812d-d762-79208d9e9006	2021-05-20 19:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:15:09.853+03	2021-05-20 19:15:09.861+03	
7ccca1e5-1dfc-957c-86db-6f0bd75d6d88	2021-05-20 19:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:15:30.853+03	2021-05-20 19:15:30.863+03	
9fe3520a-b6ad-1494-a66c-60e24d390570	2021-05-20 19:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:15:50.853+03	2021-05-20 19:15:50.861+03	
5d488435-3629-c502-d56b-0cbdb17ebdfd	2021-05-20 19:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:16:10.853+03	2021-05-20 19:16:10.863+03	
b1f1ce1f-26ce-212c-8011-6fbf81d5c2e1	2021-05-20 19:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:16:30.853+03	2021-05-20 19:16:30.862+03	
b18a8062-5ea9-4941-3ed4-dec6147ccf48	2021-05-20 19:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:16:50.853+03	2021-05-20 19:16:50.864+03	
69ade0df-e30f-4455-bc39-ae0d17188b05	2021-05-20 19:17:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:17:11.854+03	2021-05-20 19:17:11.86+03	
95ad1abe-fab2-fc10-3a7f-8e344233e79a	2021-05-20 19:17:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:17:31.854+03	2021-05-20 19:17:31.86+03	
c73ed01d-d5fa-9b7f-f74e-6a1ed7106e8a	2021-05-20 19:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:17:52.853+03	2021-05-20 19:17:52.86+03	
30e3f91b-1b76-5b23-99f4-49a868f5c06d	2021-05-20 19:18:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:18:12.853+03	2021-05-20 19:18:12.869+03	
8972f53d-87db-e752-e072-a465e018a9f2	2021-05-20 19:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:18:32.853+03	2021-05-20 19:18:32.86+03	
591634a6-19e9-40ba-c3a9-1869639b720f	2021-05-20 19:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:18:52.853+03	2021-05-20 19:18:52.859+03	
902ac2cb-672e-259a-4474-b99e5a14075a	2021-05-20 19:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:19:12.853+03	2021-05-20 19:19:12.86+03	
6e6b1264-b89e-474a-e9f8-82d2bd8886f9	2021-05-20 19:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:19:33.852+03	2021-05-20 19:19:33.862+03	
56f1c410-a743-c2ae-2deb-1eecb65ccb2e	2021-05-20 19:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 19:20:00.852+03	2021-05-20 19:20:00.858+03	ERROR
e15518a3-6df8-7a39-ebfe-1ad97c73025f	2021-05-20 19:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:20:13.853+03	2021-05-20 19:20:13.86+03	
2f762aa5-168d-fce9-d2cf-900c82c8a9ef	2021-05-20 19:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:20:35.852+03	2021-05-20 19:20:35.864+03	
3187dfdd-9d64-6f80-2d6c-dac35490c600	2021-05-20 19:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:20:55.853+03	2021-05-20 19:20:55.866+03	
bd2fbe09-3ca7-db79-ac09-747493ddd873	2021-05-20 19:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:21:15.853+03	2021-05-20 19:21:15.865+03	
86cf2694-6cda-715f-1432-545ed18c1f76	2021-05-20 19:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:21:35.853+03	2021-05-20 19:21:35.859+03	
ecdca4f9-f669-b2e3-aeb7-a9fce0b90123	2021-05-20 19:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:21:55.853+03	2021-05-20 19:21:55.859+03	
563d551b-c63b-0a32-50d6-be092180b4a7	2021-05-20 19:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:22:15.853+03	2021-05-20 19:22:15.861+03	
ed293fd7-f21e-bb7c-79fb-002230da5db0	2021-05-20 19:22:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:22:36.853+03	2021-05-20 19:22:36.862+03	
eb5c0f14-e010-0226-f908-8df55abff521	2021-05-20 19:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:22:57.853+03	2021-05-20 19:22:57.859+03	
ca9d838b-6ec2-b11a-926d-c76629c42e71	2021-05-20 19:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:23:17.853+03	2021-05-20 19:23:17.888+03	
ba1b57c7-d6e2-188d-fad4-b979e7807720	2021-05-20 19:23:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:23:37.853+03	2021-05-20 19:23:37.861+03	
88f39d42-3412-0dd2-fa6e-0c34dc7ea382	2021-05-20 19:23:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:23:57.853+03	2021-05-20 19:23:57.86+03	
5d72d240-2bdb-04a8-3816-503e30cc52b2	2021-05-20 19:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:24:17.853+03	2021-05-20 19:24:17.871+03	
3781169d-9559-e6bb-018d-8d86ef0f308e	2021-05-20 19:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:24:37.853+03	2021-05-20 19:24:37.859+03	
ff90e906-f0be-e235-6ba1-276f84c947fa	2021-05-20 19:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:24:58.853+03	2021-05-20 19:24:58.859+03	
cd5f00b0-de1e-61f8-368e-3d92dff11c5c	2021-05-20 19:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:25:18.853+03	2021-05-20 19:25:18.873+03	
d6a611f0-92bb-4bba-0fab-5757ba7efcf7	2021-05-20 19:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:25:38.853+03	2021-05-20 19:25:38.867+03	
afea1e00-127b-5c9c-14dd-39f73140efaf	2021-05-20 19:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:25:59.853+03	2021-05-20 19:25:59.861+03	
0a56bf92-2f71-3b20-8f5f-71e538b79936	2021-05-20 19:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:26:20.853+03	2021-05-20 19:26:20.86+03	
d7026e7d-9875-302d-405c-d60cadf37ec0	2021-05-20 19:26:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:26:41.854+03	2021-05-20 19:26:41.86+03	
d5f4250e-10c7-7a63-4a82-21824f3e820c	2021-05-20 19:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:27:03.853+03	2021-05-20 19:27:03.859+03	
69f4d986-ed66-7bae-a068-4beb2019268c	2021-05-20 19:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:27:24.853+03	2021-05-20 19:27:24.861+03	
4bca8267-7039-75a0-b13a-697e86faa20a	2021-05-20 19:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:27:44.853+03	2021-05-20 19:27:44.86+03	
93be9d2c-c955-b564-ef14-e214aa0ba63e	2021-05-20 19:28:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:28:04.853+03	2021-05-20 19:28:04.86+03	
78c794b4-9ed9-f8dd-0986-7ba9a30618fa	2021-05-20 19:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:28:24.853+03	2021-05-20 19:28:24.859+03	
469f0338-ee89-6557-1af4-17f10e714cd4	2021-05-20 19:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:28:44.853+03	2021-05-20 19:28:44.859+03	
586252b6-902e-e8a1-302f-f1e36beae746	2021-05-20 19:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:29:04.853+03	2021-05-20 19:29:04.861+03	
7c92717e-9578-1fd7-5889-38f2b29e8e85	2021-05-20 19:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:29:24.853+03	2021-05-20 19:29:24.86+03	
d6f72987-379f-0455-0420-278b7c0dc5e0	2021-05-20 19:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:29:45.853+03	2021-05-20 19:29:45.859+03	
6212ee6f-7e50-04e9-badf-8659bb522589	2021-05-20 19:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 19:30:00.853+03	2021-05-20 19:30:00.858+03	ERROR
5f7555bc-2264-f8b2-6f80-008deac8555f	2021-05-20 19:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:30:16.853+03	2021-05-20 19:30:16.86+03	
62c72ba9-c51d-9cbc-839a-9ef26ddd2629	2021-05-20 19:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:30:37.853+03	2021-05-20 19:30:37.86+03	
cd1d7a8f-b3f3-a71c-ee41-c89de593d8fe	2021-05-20 19:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:30:57.853+03	2021-05-20 19:30:57.86+03	
2c3f2b34-77e8-3ddb-de14-8f4b3e6cc638	2021-05-20 19:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:10:32.853+03	2021-05-20 19:10:32.88+03	
e6b081e0-f3b5-3bde-68f2-870101d151b9	2021-05-20 19:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:10:52.853+03	2021-05-20 19:10:52.86+03	
d753c03e-fc05-88d6-47ea-acce37f8acc0	2021-05-20 19:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:11:13.853+03	2021-05-20 19:11:13.861+03	
cf1d7417-6150-e91b-73aa-c96460230cf1	2021-05-20 19:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:11:33.853+03	2021-05-20 19:11:33.873+03	
ca7bb128-e3c9-3a25-fbae-ca9c6043f45b	2021-05-20 19:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:11:54.853+03	2021-05-20 19:11:54.86+03	
4800d26a-48e9-47ab-a4a0-eca97f470e64	2021-05-20 19:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:12:14.853+03	2021-05-20 19:12:14.862+03	
b463e057-9c6b-6191-c5dd-943ac1e91516	2021-05-20 19:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:12:35.853+03	2021-05-20 19:12:35.86+03	
3d0b87d3-ebc4-23c0-6d5f-45f5dcd0162a	2021-05-20 19:12:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:12:56.854+03	2021-05-20 19:12:56.862+03	
b6d5b050-3c9a-3d23-f73c-aa91fadcec2d	2021-05-20 19:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:13:17.853+03	2021-05-20 19:13:17.86+03	
7907c84a-ddd0-24b5-cba4-4a38fc6cb41f	2021-05-20 19:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:13:37.853+03	2021-05-20 19:13:37.86+03	
af488805-dacd-44f5-9a6d-f285401c31fe	2021-05-20 19:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:13:58.853+03	2021-05-20 19:13:58.86+03	
6825fd7b-ab96-9395-8a56-cef566b97ea1	2021-05-20 19:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:14:18.853+03	2021-05-20 19:14:19.155+03	
e690f618-fadc-7b27-1d76-f9f50c843935	2021-05-20 19:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:14:39.852+03	2021-05-20 19:14:39.859+03	
6ad5201f-f1ef-a329-c840-3b322ba82d9c	2021-05-20 19:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:14:59.853+03	2021-05-20 19:14:59.861+03	
6808a41d-9533-1138-c7a4-736618afd5c9	2021-05-20 19:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:15:20.853+03	2021-05-20 19:15:20.861+03	
43b24d28-04c3-76e6-6f10-dde223133557	2021-05-20 19:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:15:40.853+03	2021-05-20 19:15:40.86+03	
2f0a4024-d4a9-e76c-dbf2-f38e1029b47a	2021-05-20 19:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:16:00.853+03	2021-05-20 19:16:00.86+03	
7647a376-63fe-d1d4-814b-037b0d0d17fe	2021-05-20 19:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:16:20.853+03	2021-05-20 19:16:20.861+03	
c470fc17-ce6d-f0bc-e3e2-3f9aea3182b6	2021-05-20 19:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:16:40.853+03	2021-05-20 19:16:40.861+03	
d12362b4-8773-ab4d-49ca-a7fa6188d331	2021-05-20 19:17:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:17:01.852+03	2021-05-20 19:17:01.859+03	
f1e85c03-f548-2ae4-85e3-0b59d7958c1a	2021-05-20 19:17:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:17:21.854+03	2021-05-20 19:17:21.862+03	
3065e145-0764-a92f-4d0b-aecff641e9ff	2021-05-20 19:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:17:42.853+03	2021-05-20 19:17:42.861+03	
28c67c82-152a-0b07-d692-c04ffdce15ff	2021-05-20 19:18:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:18:02.853+03	2021-05-20 19:18:02.859+03	
de8d528c-61ee-5e31-6527-7d8820ca4b1f	2021-05-20 19:18:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:18:22.853+03	2021-05-20 19:18:22.864+03	
52321a80-ffde-b369-df20-36609b66ddd3	2021-05-20 19:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:18:42.853+03	2021-05-20 19:18:42.86+03	
cb33aa3a-d01f-6091-efc4-f68fe73ef1b0	2021-05-20 19:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:19:02.853+03	2021-05-20 19:19:02.859+03	
c6408679-aab9-83bd-2496-1cc3384655a4	2021-05-20 19:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:19:23.852+03	2021-05-20 19:19:23.861+03	
36bb9f06-a602-4a4d-6adb-82afa772a0d2	2021-05-20 19:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:19:43.853+03	2021-05-20 19:19:43.859+03	
accdde30-47f2-059a-d941-20b2e41988ab	2021-05-20 19:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:19:53.853+03	2021-05-20 19:19:53.874+03	
80fe88b8-6723-d90c-efba-0ea87c2ddfdd	2021-05-20 19:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:20:03.853+03	2021-05-20 19:20:03.861+03	
991a0d06-dd35-de6e-b2a3-26fbf39a6021	2021-05-20 19:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:20:24.853+03	2021-05-20 19:20:24.86+03	
bec63e87-9f5e-e9a7-7d56-d1f2926dc845	2021-05-20 19:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:20:45.852+03	2021-05-20 19:20:46.079+03	
647e9cd1-44fe-aa43-e7c2-9ea385799290	2021-05-20 19:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:21:05.853+03	2021-05-20 19:21:05.862+03	
d18606f8-43b1-91f4-80e7-4464dd5c178d	2021-05-20 19:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:21:25.853+03	2021-05-20 19:21:25.861+03	
064a424e-4a68-9d38-5d03-21d7a29e19f9	2021-05-20 19:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:21:45.853+03	2021-05-20 19:21:45.861+03	
2578054c-60d4-a301-6737-ea0ac45259ae	2021-05-20 19:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:22:05.853+03	2021-05-20 19:22:05.86+03	
8666cbb5-c867-6109-2c04-b91a81d36328	2021-05-20 19:22:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:22:26.853+03	2021-05-20 19:22:26.86+03	
d54dfda7-c526-30c7-0d37-1f2c61a5f1be	2021-05-20 19:22:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:22:46.853+03	2021-05-20 19:22:46.862+03	
02ac6fd9-74da-a6a4-b50f-770fd8d550ca	2021-05-20 19:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:23:07.853+03	2021-05-20 19:23:07.861+03	
aeaf0dc2-8db7-fe0c-1346-d31ae6de732b	2021-05-20 19:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:23:27.853+03	2021-05-20 19:23:27.859+03	
6310c682-6de6-e2c5-ce3e-4a7543ead183	2021-05-20 19:23:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:23:47.853+03	2021-05-20 19:23:47.859+03	
f2f24e65-3149-377a-3421-27220019bc21	2021-05-20 19:24:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:24:07.853+03	2021-05-20 19:24:07.86+03	
ab8d47cc-35a4-686b-1f38-df3e1fbf7c5a	2021-05-20 19:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:24:27.853+03	2021-05-20 19:24:27.859+03	
9b1c9a01-356b-d67b-511d-46a48ab9f462	2021-05-20 19:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:24:47.853+03	2021-05-20 19:24:47.862+03	
af5141b8-a539-d511-d8a3-921f3d66eb0d	2021-05-20 19:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:25:08.853+03	2021-05-20 19:25:08.859+03	
63df72bb-6061-d443-c239-fb5daeed486c	2021-05-20 19:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:25:28.853+03	2021-05-20 19:25:28.861+03	
ba0fff48-7f29-8c7c-308c-4752c7e6b0b4	2021-05-20 19:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:25:48.853+03	2021-05-20 19:25:48.859+03	
39e8bff4-5802-183d-c9d4-acfb9e536e59	2021-05-20 19:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:26:09.853+03	2021-05-20 19:26:09.859+03	
788ad869-3db1-31e5-a8e9-65f50924bddd	2021-05-20 19:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:26:30.853+03	2021-05-20 19:26:30.858+03	
4f76f92d-bf67-132e-5ebf-510f97d9ce2e	2021-05-20 19:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:26:52.853+03	2021-05-20 19:26:52.859+03	
007f0b37-4d31-9eb7-b9ed-b567f3a3717a	2021-05-20 19:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:27:14.853+03	2021-05-20 19:27:14.86+03	
88a46f0d-78b3-40eb-b3f7-6a4f86be29c4	2021-05-20 19:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:27:34.853+03	2021-05-20 19:27:34.86+03	
ca9f20d1-490d-2b64-a760-6a08adf887cf	2021-05-20 19:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:27:54.853+03	2021-05-20 19:27:54.86+03	
f29dabf8-88ab-d588-fccf-3f36688355cb	2021-05-20 19:28:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:28:14.853+03	2021-05-20 19:28:14.859+03	
fb994093-8fed-1718-03c0-be356422ab66	2021-05-20 19:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:28:34.853+03	2021-05-20 19:28:34.86+03	
e83aee04-f5b2-a113-325f-079837857263	2021-05-20 19:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:28:54.853+03	2021-05-20 19:28:54.868+03	
96990e47-ff77-999e-be5d-5e71224239ef	2021-05-20 19:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:29:14.853+03	2021-05-20 19:29:14.86+03	
f10f8c13-f5d1-7598-c25e-c7d9b9e2f6f0	2021-05-20 19:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:29:34.853+03	2021-05-20 19:29:34.859+03	
c47506de-1ae4-8758-242e-10d4d428ee27	2021-05-20 19:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:29:55.853+03	2021-05-20 19:29:55.859+03	
5e030806-593c-9076-8b4a-4043e564b16b	2021-05-20 19:30:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:30:06.853+03	2021-05-20 19:30:06.86+03	
750b311a-34fb-805e-9fc0-2c3c37efe771	2021-05-20 19:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:30:26.853+03	2021-05-20 19:30:26.86+03	
7723b5b5-078d-4294-9fcf-c3cf6c00cfdc	2021-05-20 19:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:30:47.853+03	2021-05-20 19:30:47.86+03	
d32e000e-e3d1-fc85-d29d-efcfb70bfd2a	2021-05-20 19:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:31:08.852+03	2021-05-20 19:31:08.86+03	
3df96c93-3bd5-995d-6fa2-823cd49b73a6	2021-05-20 19:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:31:18.852+03	2021-05-20 19:31:18.859+03	
68e6d8fc-8c2f-8d74-3ac3-7245d3ff4d3c	2021-05-20 19:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:31:38.852+03	2021-05-20 19:31:38.86+03	
9d578336-4e0b-739a-011e-561c65b507f5	2021-05-20 19:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:31:58.853+03	2021-05-20 19:31:58.861+03	
42d8fc7f-3905-e539-fb9b-a491b6121064	2021-05-20 19:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:32:18.853+03	2021-05-20 19:32:18.86+03	
0f6809b7-9fba-a506-8fa0-12b23ee8f01f	2021-05-20 19:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:32:39.853+03	2021-05-20 19:32:39.859+03	
38134b7d-d3f3-8a04-bc01-569f4a24d4ef	2021-05-20 19:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:32:59.853+03	2021-05-20 19:32:59.859+03	
2e309b3b-a33c-b1a5-9a88-085a15113789	2021-05-20 19:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:33:20.852+03	2021-05-20 19:33:20.859+03	
8dc8e3d7-49f8-f1a2-de61-cfb4e01b7624	2021-05-20 19:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:33:40.853+03	2021-05-20 19:33:40.859+03	
2c94b6c3-4d12-4d0c-8658-617b0b481f3a	2021-05-20 19:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:34:00.853+03	2021-05-20 19:34:00.859+03	
e4648b79-7a17-3407-bc08-83f69783445b	2021-05-20 19:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:34:20.853+03	2021-05-20 19:34:20.861+03	
cdd844ae-273f-b105-7fdc-8c85568c3bd5	2021-05-20 19:34:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:34:41.853+03	2021-05-20 19:34:41.86+03	
45bf8095-3a4b-e62d-e293-7d087b535e03	2021-05-20 19:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:35:02.853+03	2021-05-20 19:35:02.861+03	
f2dcab51-7ecd-4f3f-4a93-1106fc6379de	2021-05-20 19:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:35:23.853+03	2021-05-20 19:35:23.86+03	
e218487f-aaec-c8fe-12bf-87d0493a2d44	2021-05-20 19:35:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:35:43.853+03	2021-05-20 19:35:43.86+03	
b3ecbd68-57cc-aca9-cd31-5ba32afe5b1c	2021-05-20 19:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:36:03.853+03	2021-05-20 19:36:03.859+03	
9efebaa6-fe28-0275-6855-118f2174ceb4	2021-05-20 19:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:36:23.853+03	2021-05-20 19:36:23.861+03	
5a4acc32-9952-24a2-57b5-22a3465c1ca3	2021-05-20 19:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:36:44.853+03	2021-05-20 19:36:44.861+03	
35e4e022-4553-1060-c160-2250770aca67	2021-05-20 19:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:37:05.852+03	2021-05-20 19:37:05.859+03	
1485ad29-8dfe-b475-8ece-888edabe3d2a	2021-05-20 19:37:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:37:26.854+03	2021-05-20 19:37:26.86+03	
d2fb8459-b5d5-f53b-bad6-1f61a565195c	2021-05-20 19:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:37:47.853+03	2021-05-20 19:37:47.866+03	
dea1f066-3338-049e-df5a-bda4c9e0bcad	2021-05-20 19:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:38:07.853+03	2021-05-20 19:38:07.867+03	
f4303442-a83e-cf0f-543a-9ba935e5b377	2021-05-20 19:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:38:27.853+03	2021-05-20 19:38:27.861+03	
fa2d869f-35d9-7ba0-577c-26618b22f261	2021-05-20 19:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:38:47.853+03	2021-05-20 19:38:47.86+03	
7e3ae342-e8a8-926c-778a-214c2fba6f73	2021-05-20 19:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:39:08.853+03	2021-05-20 19:39:08.86+03	
688904a6-0dfa-deb8-50c9-503ca074e59c	2021-05-20 19:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:39:28.853+03	2021-05-20 19:39:28.859+03	
446bbb44-de93-73bc-b6f5-3e796b0aeef7	2021-05-20 19:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:39:50.853+03	2021-05-20 19:39:50.86+03	
a95cd780-b5ab-6a3b-0ae4-b1bb738d9778	2021-05-20 19:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:40:11.853+03	2021-05-20 19:40:11.859+03	
953affcb-879d-be37-4b50-c7bbeea2c23d	2021-05-20 19:40:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:40:31.853+03	2021-05-20 19:40:31.859+03	
00292503-94a9-a1d0-e71b-4fa86651c7ee	2021-05-20 19:40:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:40:51.853+03	2021-05-20 19:40:51.859+03	
dc0d4337-2001-cf05-de4b-b8b61bb70a0c	2021-05-20 19:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:41:12.853+03	2021-05-20 19:41:12.874+03	
831298a0-092c-afae-466f-88eb21cd2842	2021-05-20 19:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:41:33.852+03	2021-05-20 19:41:33.86+03	
937366d1-382d-0b1f-8544-ae43d31c49f2	2021-05-20 19:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:41:53.853+03	2021-05-20 19:41:53.861+03	
11e04a71-6446-4bee-d2b4-f17fec4ae770	2021-05-20 19:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:42:14.853+03	2021-05-20 19:42:14.858+03	
e0898f12-508a-2121-0b61-69468262fd3d	2021-05-20 19:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:42:35.853+03	2021-05-20 19:42:35.859+03	
15319869-b869-07c7-151a-79ac12b51859	2021-05-20 19:42:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:42:56.853+03	2021-05-20 19:42:56.861+03	
12705c39-4752-f362-6dee-f4d59918753d	2021-05-20 19:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:43:18.853+03	2021-05-20 19:43:18.86+03	
a3587a1b-bc8d-5f86-6fe7-64faeced3e12	2021-05-20 19:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:43:38.853+03	2021-05-20 19:43:38.863+03	
12480fd9-ac95-b29f-0a42-5cf2480e2be0	2021-05-20 19:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:43:59.852+03	2021-05-20 19:43:59.859+03	
e47533fb-4662-250e-9fa7-0811195f9033	2021-05-20 19:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:44:19.852+03	2021-05-20 19:44:19.873+03	
f9a3719f-d4ea-d4c5-d6de-0dd668dc5e37	2021-05-20 19:44:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:44:40.854+03	2021-05-20 19:44:40.861+03	
03ddf8c0-a029-9c92-782e-10550624a77b	2021-05-20 19:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:45:02.852+03	2021-05-20 19:45:02.86+03	
c68cd74d-aac2-c39b-f309-069e691724ae	2021-05-20 19:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:45:22.853+03	2021-05-20 19:45:22.859+03	
b70bfd04-2009-ea11-3663-2091e279a835	2021-05-20 19:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:45:43.852+03	2021-05-20 19:45:43.86+03	
d148c827-2fe2-308d-6393-5a93d52f1622	2021-05-20 19:46:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:46:04.852+03	2021-05-20 19:46:04.859+03	
37da1990-b33e-43ea-8bc0-9e8e4a47eddc	2021-05-20 19:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:46:24.853+03	2021-05-20 19:46:24.86+03	
1b6bd535-5658-b857-b8f4-dd28d47bfd0d	2021-05-20 19:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:46:44.853+03	2021-05-20 19:46:44.859+03	
228302a7-0ae7-1c26-52ab-8f96f2f7556b	2021-05-20 19:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:47:05.852+03	2021-05-20 19:47:05.859+03	
754cbde1-34fc-c111-47d2-75d163d664f8	2021-05-20 19:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:47:25.852+03	2021-05-20 19:47:25.859+03	
460cdd1c-9f84-ce18-26d0-ef59ae9eeb3d	2021-05-20 19:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:47:45.852+03	2021-05-20 19:47:45.861+03	
ee1a9e99-8528-ae26-3661-57465cd9ad8c	2021-05-20 19:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:48:06.853+03	2021-05-20 19:48:06.859+03	
478a7512-a426-3e47-d6e4-e7d085607c52	2021-05-20 19:48:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:48:26.853+03	2021-05-20 19:48:26.86+03	
b8bca8cf-a3a7-6e59-88bb-4eaf71d84202	2021-05-20 19:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:48:48.852+03	2021-05-20 19:48:48.858+03	
cd711d33-c2f9-5883-7f82-0ca32ea835f3	2021-05-20 19:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:49:08.853+03	2021-05-20 19:49:08.861+03	
ae4e3e05-51b1-f158-3040-6550d01160c7	2021-05-20 19:49:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:49:30.853+03	2021-05-20 19:49:30.864+03	
2f8de2ca-395c-4c00-ebb1-3190401b276d	2021-05-20 19:49:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:49:50.853+03	2021-05-20 19:49:50.86+03	
e9f41e60-9aad-a8d6-566f-2d4d6436fe1a	2021-05-20 19:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:50:10.853+03	2021-05-20 19:50:10.86+03	
c7f9662f-b9d1-3f9c-77b9-3ee0f8f628ae	2021-05-20 19:50:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:50:31.852+03	2021-05-20 19:50:31.859+03	
15b33140-04d1-7526-edcb-0944ac29e07c	2021-05-20 19:50:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:50:51.852+03	2021-05-20 19:50:51.86+03	
74e740a6-20c3-54e3-f6bb-bc4c75ad8b5b	2021-05-20 19:51:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:51:11.853+03	2021-05-20 19:51:11.859+03	
aad2e1f5-ebc6-2f6e-7778-6d65eed13430	2021-05-20 19:51:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:51:31.853+03	2021-05-20 19:51:31.86+03	
e130fb31-db64-ee1a-c7da-dfad47be1411	2021-05-20 19:51:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:51:51.854+03	2021-05-20 19:51:51.86+03	
4dbb73eb-0650-c02b-55bb-0f2340c2d72f	2021-05-20 19:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:52:12.853+03	2021-05-20 19:52:12.859+03	
9a61039d-3cb8-60fe-3fbc-214e73d03e4a	2021-05-20 19:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:52:33.852+03	2021-05-20 19:52:33.858+03	
313b0650-fe3c-a3d6-1afb-e9234f36be4a	2021-05-20 19:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:31:28.852+03	2021-05-20 19:31:28.859+03	
179e087c-dc7d-0f37-f577-07e5c2fba5b6	2021-05-20 19:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:31:48.853+03	2021-05-20 19:31:48.859+03	
26ea2e68-dd88-37df-9ac1-ce60e4f85ae1	2021-05-20 19:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:32:08.853+03	2021-05-20 19:32:08.86+03	
35c22731-47dc-8e2c-6c62-479ed827fc09	2021-05-20 19:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:32:29.853+03	2021-05-20 19:32:30.18+03	
60010fd0-8cc9-6069-39ae-b71f66dda73e	2021-05-20 19:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:32:49.853+03	2021-05-20 19:32:49.86+03	
ac1a5893-53c0-d097-1f46-6f0cc2b3044a	2021-05-20 19:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:33:09.853+03	2021-05-20 19:33:09.86+03	
aa80ea52-2533-ea85-3c17-2dcd7a4ec5e5	2021-05-20 19:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:33:30.852+03	2021-05-20 19:33:30.859+03	
cc2bfdfa-fa92-c5ed-762c-c867d6d0eacf	2021-05-20 19:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:33:50.853+03	2021-05-20 19:33:50.86+03	
3f0c541e-8124-d2e0-4ad6-296e475f5f0a	2021-05-20 19:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:34:10.853+03	2021-05-20 19:34:10.86+03	
a0b107d2-3301-a78f-3b4c-2307338d33b3	2021-05-20 19:34:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:34:31.853+03	2021-05-20 19:34:31.86+03	
aca9d4a0-8580-b9c0-b366-f0105428f813	2021-05-20 19:34:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:34:51.854+03	2021-05-20 19:34:51.86+03	
f18abbf8-017f-5fb4-6b22-1a0e8b88e5e6	2021-05-20 19:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:35:13.852+03	2021-05-20 19:35:13.859+03	
e04bac0b-cf60-ee91-0652-4dc0703b8cf3	2021-05-20 19:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:35:33.853+03	2021-05-20 19:35:33.869+03	
2e6b4f56-bb10-9bfb-5295-f99cf415e1be	2021-05-20 19:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:35:53.853+03	2021-05-20 19:35:53.86+03	
cc9f8825-1726-4517-f86e-8cbbbcfa22c9	2021-05-20 19:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:36:13.853+03	2021-05-20 19:36:13.86+03	
a55c81d5-e4e9-ea70-a7cf-ab241a6bbd45	2021-05-20 19:36:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:36:33.854+03	2021-05-20 19:36:33.861+03	
51c6ce2a-803e-79bb-a173-494a8da66ee4	2021-05-20 19:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:36:54.853+03	2021-05-20 19:36:54.859+03	
1914f069-9cf7-c22c-3ad3-e0bb9153ebcc	2021-05-20 19:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:37:15.853+03	2021-05-20 19:37:15.86+03	
7cf5e745-47b9-1210-7f42-2f519060abaa	2021-05-20 19:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:37:37.853+03	2021-05-20 19:37:37.859+03	
4c8b0983-375f-fecb-2735-b5094968b665	2021-05-20 19:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:37:57.853+03	2021-05-20 19:37:57.86+03	
f3e4fd80-32aa-7400-9d94-50291e537586	2021-05-20 19:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:38:17.853+03	2021-05-20 19:38:17.859+03	
6f6e75c8-e7f1-24dc-dbc4-fb7388a0c7a1	2021-05-20 19:38:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:38:37.853+03	2021-05-20 19:38:37.861+03	
87ad4abd-8408-6ffc-41d1-d89702784171	2021-05-20 19:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:38:58.852+03	2021-05-20 19:38:58.859+03	
6118c500-21b9-c35c-4217-b5425282c7b1	2021-05-20 19:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:39:18.853+03	2021-05-20 19:39:18.86+03	
241dda32-c227-6dc9-c28b-974909328a16	2021-05-20 19:39:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:39:39.853+03	2021-05-20 19:39:39.862+03	
f753efb5-d958-29bf-8aa0-da1e68ce187c	2021-05-20 19:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 19:40:00.853+03	2021-05-20 19:40:00.859+03	ERROR
da11284c-2cb0-d95a-86ca-21ee988e7500	2021-05-20 19:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:40:00.853+03	2021-05-20 19:40:00.878+03	
5cae8c09-72fc-6a76-84b7-ab1add8e35b9	2021-05-20 19:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:40:21.853+03	2021-05-20 19:40:21.859+03	
f33f6e38-00e9-a488-a731-fcbc785f0a76	2021-05-20 19:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:40:41.853+03	2021-05-20 19:40:41.859+03	
cb6b01a5-50cb-88bf-3862-39b7d921f1a1	2021-05-20 19:41:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:41:01.854+03	2021-05-20 19:41:01.864+03	
a4d750a6-68ec-5d84-b9e1-2f3b316bc4e3	2021-05-20 19:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:41:22.853+03	2021-05-20 19:41:22.861+03	
579d3002-973d-9fee-4ffa-3d2556b3e947	2021-05-20 19:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:41:43.853+03	2021-05-20 19:41:43.872+03	
91e0b91c-94f8-ed74-30ec-417c670cf88c	2021-05-20 19:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:42:04.852+03	2021-05-20 19:42:04.861+03	
a9ef85c3-721c-d317-7972-556cfd61d7ed	2021-05-20 19:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:42:25.853+03	2021-05-20 19:42:25.859+03	
11695562-a55a-0546-b384-6ba1e065001e	2021-05-20 19:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:42:46.853+03	2021-05-20 19:42:46.87+03	
1bfbe379-430c-2773-d7f5-b7889f75c728	2021-05-20 19:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:43:07.853+03	2021-05-20 19:43:07.863+03	
3e2e299a-babb-4c24-e046-f4abeaecac08	2021-05-20 19:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:43:28.853+03	2021-05-20 19:43:28.863+03	
a0b42426-6a79-806d-db64-d8481a9346f5	2021-05-20 19:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:43:49.852+03	2021-05-20 19:43:49.858+03	
3183cb64-a241-f4d9-83dc-359a3bbda926	2021-05-20 19:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:44:09.852+03	2021-05-20 19:44:09.859+03	
7e36e9bf-dee5-3dc8-6e4e-c9352dc34fd8	2021-05-20 19:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:44:29.853+03	2021-05-20 19:44:29.863+03	
9095dd23-35ec-766f-fa10-498bb0efbf96	2021-05-20 19:44:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:44:51.854+03	2021-05-20 19:44:51.861+03	
f67be22a-d343-ff70-1b73-2363bfaa3562	2021-05-20 19:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:45:12.853+03	2021-05-20 19:45:12.87+03	
f0507eb1-1af7-18ee-7c68-61587907ec96	2021-05-20 19:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:45:33.852+03	2021-05-20 19:45:33.859+03	
bd1e2ccb-d48e-3500-ca63-25da59b007ca	2021-05-20 19:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:45:53.853+03	2021-05-20 19:45:53.859+03	
79978923-2c26-3728-10ee-f158978fb673	2021-05-20 19:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:46:14.853+03	2021-05-20 19:46:14.862+03	
e459b5a0-6295-95c2-51fd-16c24a21adb4	2021-05-20 19:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:46:34.853+03	2021-05-20 19:46:34.859+03	
d117abd4-5c2e-9d59-3bca-996883df39db	2021-05-20 19:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:46:55.852+03	2021-05-20 19:46:55.859+03	
2f820adb-74d1-6277-8e0f-a1a3bf4ecb52	2021-05-20 19:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:47:15.852+03	2021-05-20 19:47:15.858+03	
5f64e800-47a7-0485-c4cf-7b7c688ee1dc	2021-05-20 19:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:47:35.852+03	2021-05-20 19:47:35.859+03	
6afc89b8-625b-1c4b-f876-ed7f59f229ea	2021-05-20 19:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:47:55.853+03	2021-05-20 19:47:55.86+03	
d9105481-813b-0f8b-0504-0422d3a9a901	2021-05-20 19:48:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:48:16.853+03	2021-05-20 19:48:16.861+03	
04cdd98f-3cdb-9fb6-68d0-b100458f30c9	2021-05-20 19:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:48:37.853+03	2021-05-20 19:48:37.864+03	
4351e820-c2fb-ddec-56ad-22d1a3f498d9	2021-05-20 19:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:48:58.852+03	2021-05-20 19:48:58.859+03	
dc692055-a878-529d-02da-8e05e3e3b2bc	2021-05-20 19:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:49:19.853+03	2021-05-20 19:49:19.859+03	
74e0ca1c-5825-4671-8792-870b60e56f4d	2021-05-20 19:49:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:49:40.853+03	2021-05-20 19:49:40.86+03	
f790ab8e-bdfc-95d2-32be-9d2ed0df03fb	2021-05-20 19:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:50:00.853+03	2021-05-20 19:50:00.86+03	
87d6b7f3-72f4-7bd3-63f4-2cb142c52668	2021-05-20 19:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 19:50:00.853+03	2021-05-20 19:50:00.872+03	ERROR
e278ac2d-5a6a-df3a-2564-89006f04a80c	2021-05-20 19:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:50:20.853+03	2021-05-20 19:50:20.86+03	
9d8e96bf-7177-b8f7-08db-eefe6e8a7be5	2021-05-20 19:50:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:50:41.852+03	2021-05-20 19:50:41.902+03	
06547311-00b9-c48f-c7aa-e6621aaed918	2021-05-20 19:51:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:51:01.852+03	2021-05-20 19:51:01.86+03	
ffe9031c-a12c-eee6-f401-5e2df605af98	2021-05-20 19:51:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:51:21.853+03	2021-05-20 19:51:21.863+03	
5210ecf5-198d-cdb4-fffb-03b5f13e09c8	2021-05-20 19:51:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:51:41.853+03	2021-05-20 19:51:41.86+03	
fbede71c-f6a5-0f47-4071-0eee1721bc8f	2021-05-20 19:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:52:02.853+03	2021-05-20 19:52:02.859+03	
d18d5e1c-7e30-131a-4334-e707e2ab87ea	2021-05-21 03:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:08:32.852+03	2021-05-21 03:08:32.86+03	
7a3e655f-8da4-d3dd-7536-9fadab9d835d	2021-05-20 19:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:52:22.853+03	2021-05-20 19:52:22.863+03	
18bd4476-4a73-651f-32bd-fb7c06037334	2021-05-20 20:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:40:43.852+03	2021-05-20 20:40:43.859+03	
2d52040b-78af-4382-e09e-98f7d19f1202	2021-05-20 19:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:52:43.853+03	2021-05-20 19:52:43.86+03	
86d0157d-96d2-4017-8673-3f40f5e7cf3b	2021-05-20 19:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:53:04.853+03	2021-05-20 19:53:04.859+03	
97f2c09e-03b5-fabb-8f6a-f942f6ddc955	2021-05-20 20:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:41:03.853+03	2021-05-20 20:41:03.859+03	
ef90f2e6-40bf-5543-1226-2f65d431a051	2021-05-20 19:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:53:25.852+03	2021-05-20 19:53:25.859+03	
4df7f884-ceb8-0eed-4bb9-d57277c6bd2a	2021-05-20 19:53:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:53:46.852+03	2021-05-20 19:53:46.86+03	
e67ed0b4-06ef-c719-69e7-9f1549c3941a	2021-05-20 20:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:41:23.853+03	2021-05-20 20:41:23.861+03	
65170cfc-dec2-128c-cf58-1a61db0e6232	2021-05-20 19:54:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:54:06.852+03	2021-05-20 19:54:06.864+03	
c0661c4f-4567-fe96-33ae-faae9dc05fa8	2021-05-20 19:54:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:54:26.854+03	2021-05-20 19:54:26.861+03	
e54040b5-446d-376b-0e77-36a32662ccb2	2021-05-20 20:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:41:44.852+03	2021-05-20 20:41:44.859+03	
c6234abf-8c47-8b51-3fb3-94f78866eabf	2021-05-20 19:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:54:47.853+03	2021-05-20 19:54:47.861+03	
6f08bdd2-5149-96e1-31da-bd958ced4b0b	2021-05-20 19:55:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:55:07.853+03	2021-05-20 19:55:07.86+03	
7d4d83e3-0a94-8df7-333b-e2786dbd67dc	2021-05-20 20:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:42:05.853+03	2021-05-20 20:42:05.859+03	
c06d6c33-8175-bc11-ca7a-19aef2ffd865	2021-05-20 19:55:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:55:27.853+03	2021-05-20 19:55:27.86+03	
45196c67-75d1-30a8-8b79-c3717077090f	2021-05-20 19:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:55:48.853+03	2021-05-20 19:55:48.86+03	
fb6c9017-acde-057f-ff56-bb07aae3ec7d	2021-05-20 20:42:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:42:26.853+03	2021-05-20 20:42:26.86+03	
a9d7b35c-92fa-2f8b-301e-a6af35e607f9	2021-05-20 19:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:56:09.853+03	2021-05-20 19:56:09.86+03	
874b0470-4013-b88f-dbd1-bd1bc7ec1ba6	2021-05-20 19:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:56:29.853+03	2021-05-20 19:56:29.859+03	
8d8d8133-c4a4-cf64-82c5-95719071c5d6	2021-05-20 20:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:42:47.853+03	2021-05-20 20:42:47.878+03	
9340c394-ba7b-b696-a9d6-c38c042108be	2021-05-20 19:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:56:49.853+03	2021-05-20 19:56:49.859+03	
65be974c-953a-8b14-d2b8-74cbdb69cafa	2021-05-20 19:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:57:09.853+03	2021-05-20 19:57:09.859+03	
323ba6de-89de-25f9-02b8-0dacf9bace13	2021-05-20 20:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:43:08.852+03	2021-05-20 20:43:08.859+03	
59fcc6dd-7705-e416-981a-e97ee1ba6bcc	2021-05-20 19:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:57:30.852+03	2021-05-20 19:57:30.859+03	
18d556dd-2e9b-5cf2-c7a9-847559fd8079	2021-05-20 19:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:57:50.853+03	2021-05-20 19:57:50.865+03	
1724876d-d16f-b587-e33e-260b3f2aa848	2021-05-20 20:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:43:28.853+03	2021-05-20 20:43:28.861+03	
ff514404-eb0c-917f-2277-c848215a01ff	2021-05-20 19:58:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:58:11.853+03	2021-05-20 19:58:11.86+03	
78573a6e-87c2-7869-c94d-9d35cc59f71d	2021-05-20 19:58:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:58:31.854+03	2021-05-20 19:58:31.86+03	
f6661d56-ed39-8af0-4566-8350873031d7	2021-05-20 20:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:43:48.853+03	2021-05-20 20:43:48.86+03	
bf9798f4-f5a3-be92-5bc2-be8b0f9a2087	2021-05-20 19:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:58:52.853+03	2021-05-20 19:58:52.86+03	
dda28824-e321-afed-81f6-3b3a0b4e8270	2021-05-20 19:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:59:12.853+03	2021-05-20 19:59:12.86+03	
cc46b913-6a67-6df1-7920-dc14690b2037	2021-05-20 20:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:44:09.853+03	2021-05-20 20:44:09.861+03	
290bb563-3eb1-4bce-6282-6c3979727f02	2021-05-20 19:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:59:33.853+03	2021-05-20 19:59:33.86+03	
52a2b50a-ecee-4e55-aeb8-fdaade3e9d48	2021-05-20 19:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:59:53.853+03	2021-05-20 19:59:53.859+03	
cbca95a8-f0b1-8d91-05f7-6e63f8025ef3	2021-05-20 20:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:44:30.853+03	2021-05-20 20:44:30.861+03	
e9698036-8981-0b2f-6679-81335167f5fb	2021-05-20 20:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:00:03.853+03	2021-05-20 20:00:03.876+03	
311e51f0-e114-b88c-d480-2aee886f8698	2021-05-20 20:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:00:23.853+03	2021-05-20 20:00:23.879+03	
815dfd4e-2454-15c6-91a5-3441afd36fc7	2021-05-20 20:44:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:44:51.852+03	2021-05-20 20:44:51.859+03	
95d0ac33-80af-96d4-1ffb-ee99875b3e57	2021-05-20 20:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:00:43.853+03	2021-05-20 20:00:43.861+03	
fb1dff65-ae98-2416-1bf6-cd78bfa06414	2021-05-20 20:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:01:03.853+03	2021-05-20 20:01:03.859+03	
0e6f4513-0ea7-75b7-31d1-b1ca3c9c7f19	2021-05-20 20:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:45:11.854+03	2021-05-20 20:45:11.861+03	
49622f1f-cc34-d79b-f3d5-d9d19b8b6764	2021-05-20 20:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:01:24.852+03	2021-05-20 20:01:24.859+03	
7cf0f094-8780-bee6-e96e-4fa9086dd952	2021-05-20 20:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:45:32.852+03	2021-05-20 20:45:32.859+03	
76b25a8f-9831-50c5-e0ec-6bf862d805a8	2021-05-20 20:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:45:52.852+03	2021-05-20 20:45:52.86+03	
e0f7130a-b88b-3219-a94e-021f590f9fdb	2021-05-20 20:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:46:12.853+03	2021-05-20 20:46:12.872+03	
3efd5b5a-50d3-a0dc-670f-9196fa2e9028	2021-05-20 20:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:46:33.852+03	2021-05-20 20:46:33.858+03	
3e81be41-6e5c-a3ea-2e66-67940f79fe77	2021-05-20 20:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:46:53.853+03	2021-05-20 20:46:53.86+03	
c41c0a97-cf84-a00a-ebde-cfac1dbc78ab	2021-05-20 20:47:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:47:13.853+03	2021-05-20 20:47:13.859+03	
268c029e-a75e-e9ad-f603-d4dd518e8a44	2021-05-20 20:47:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:47:33.853+03	2021-05-20 20:47:33.861+03	
1485f05d-f363-72b4-dab4-4cccde0f2d75	2021-05-20 20:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:47:54.852+03	2021-05-20 20:47:54.859+03	
ff6dba80-e49c-776c-4a45-f9996e20ed00	2021-05-20 20:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:48:14.853+03	2021-05-20 20:48:14.859+03	
3359b1c3-8e97-b9f8-1388-5d55283b8ed7	2021-05-20 20:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:48:35.853+03	2021-05-20 20:48:35.86+03	
139a5d60-54d7-b712-a730-8c38702f07cf	2021-05-20 20:48:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:48:56.854+03	2021-05-20 20:48:56.862+03	
f31282a4-ddac-dfd8-769d-a7dc2480c94c	2021-05-20 20:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:49:17.852+03	2021-05-20 20:49:17.859+03	
063b1951-9086-ba85-6260-63940fae4e23	2021-05-20 20:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:49:38.853+03	2021-05-20 20:49:38.86+03	
c8862eaf-2135-9bc5-74fa-3d7ed6a4ad89	2021-05-20 20:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:49:59.853+03	2021-05-20 20:49:59.859+03	
3389abac-7276-04b5-a04d-7cd260c5df2d	2021-05-20 20:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:50:10.852+03	2021-05-20 20:50:10.9+03	
f657f94b-f7b9-240e-a2cd-39f7871af1db	2021-05-20 20:50:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:50:31.852+03	2021-05-20 20:50:31.859+03	
7aff2992-548c-afb9-8540-193fd48d819a	2021-05-20 20:50:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:50:51.854+03	2021-05-20 20:50:51.862+03	
9de25555-013a-7b2b-20f9-42ae1a2fde7b	2021-05-20 20:51:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:51:12.852+03	2021-05-20 20:51:12.86+03	
a536a772-ad10-b582-00b4-a4077c4b455f	2021-05-20 20:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:51:33.852+03	2021-05-20 20:51:33.859+03	
dbde072c-f226-76e7-70a2-7fe953de16c9	2021-05-20 20:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:51:53.852+03	2021-05-20 20:51:53.872+03	
2ad9b2f2-ba0c-4d19-a935-8dbf1ff77bdf	2021-05-20 20:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:52:13.852+03	2021-05-20 20:52:13.859+03	
4c0911b5-9d92-5450-0ed0-0bdb642dc403	2021-05-20 19:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:52:53.853+03	2021-05-20 19:52:53.861+03	
7e279f90-76ea-5b91-a4a0-f7571455a714	2021-05-20 19:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:53:15.852+03	2021-05-20 19:53:15.859+03	
14e058d6-b38b-06d4-3d32-12e81bc1a244	2021-05-20 19:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:53:35.853+03	2021-05-20 19:53:35.86+03	
8bf270bf-d3b3-7332-e619-cb592c0127d3	2021-05-20 19:53:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:53:56.852+03	2021-05-20 19:53:56.86+03	
ea9ed93f-d926-e50d-508e-af7df4543132	2021-05-20 19:54:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:54:16.853+03	2021-05-20 19:54:16.861+03	
04e4d2c5-5f6d-64ba-d0ce-1fbf29be25a7	2021-05-20 19:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:54:37.852+03	2021-05-20 19:54:37.859+03	
383a0e8f-13bf-0802-8548-5430702e1ee7	2021-05-20 19:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:54:57.853+03	2021-05-20 19:54:57.861+03	
fac89860-cc81-149c-8f94-72df277efe6c	2021-05-20 19:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:55:17.853+03	2021-05-20 19:55:17.861+03	
480b956f-44a5-1c05-e6a0-d4ab6b90c47b	2021-05-20 19:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:55:38.853+03	2021-05-20 19:55:38.86+03	
57057ee3-c366-a95d-dadb-69f0f67898b8	2021-05-20 19:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:55:58.853+03	2021-05-20 19:55:58.873+03	
850eea08-b285-d576-118f-c422db598b35	2021-05-20 19:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:56:19.853+03	2021-05-20 19:56:19.86+03	
24799eb2-512d-01fc-2952-aa65e6cd76b5	2021-05-20 19:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:56:39.853+03	2021-05-20 19:56:39.859+03	
41effed4-c3ba-da5a-e12d-8c580c26b359	2021-05-20 19:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:56:59.853+03	2021-05-20 19:56:59.862+03	
2bd9f65d-cf18-c883-7e24-19033fd5b2f0	2021-05-20 19:57:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:57:19.853+03	2021-05-20 19:57:19.86+03	
75e70724-7fc6-7dd4-df99-c72f5d21ae1e	2021-05-20 19:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:57:40.853+03	2021-05-20 19:57:40.86+03	
1f6718aa-d55d-5cd7-35b1-846d5585330b	2021-05-20 19:58:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:58:01.853+03	2021-05-20 19:58:01.867+03	
e1f80421-eace-1a60-ddf3-bf722fb20119	2021-05-20 19:58:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:58:21.854+03	2021-05-20 19:58:21.86+03	
1997c078-5533-3146-e6d2-7d194d3bbe42	2021-05-20 19:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:58:42.853+03	2021-05-20 19:58:42.859+03	
3c192695-73db-d88d-35c8-b8480e036701	2021-05-20 19:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:59:02.853+03	2021-05-20 19:59:02.872+03	
011ec352-d479-9972-acec-0b6ec1e1ca25	2021-05-20 19:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:59:23.852+03	2021-05-20 19:59:23.872+03	
b17d0c0f-21a6-2748-86be-7b80021026d0	2021-05-20 19:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 19:59:43.853+03	2021-05-20 19:59:43.862+03	
36a88255-4a1b-2878-0d20-13955519c4e7	2021-05-20 20:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 20:00:00.853+03	2021-05-20 20:00:00.862+03	ERROR
a216f1b9-1c7b-63bf-cc0e-00ede044433f	2021-05-20 20:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:00:13.853+03	2021-05-20 20:00:13.872+03	
12a50921-8d00-a41c-9c21-cd33ab072ef6	2021-05-20 20:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:00:33.853+03	2021-05-20 20:00:33.875+03	
4a621cb9-7a20-584b-fa1e-3f0d50cfbf07	2021-05-20 20:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:00:53.853+03	2021-05-20 20:00:53.859+03	
84e75eca-b1c5-06a4-83f0-23c4265583c1	2021-05-20 20:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:01:13.853+03	2021-05-20 20:01:13.87+03	
6f01f0d4-227d-2489-aa48-e3524758a6e2	2021-05-20 20:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:01:34.852+03	2021-05-20 20:01:34.859+03	
16443870-8197-ab6a-9fc0-fb9aa3542bb6	2021-05-20 20:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:01:44.853+03	2021-05-20 20:01:44.86+03	
26c9aab7-49b2-7cb2-1ea0-2d27009f9569	2021-05-20 20:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:01:55.853+03	2021-05-20 20:01:55.862+03	
9e40794e-876f-0297-28b6-701b81b8cb2d	2021-05-20 20:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:02:05.853+03	2021-05-20 20:02:05.861+03	
4687eba5-5c7d-b009-747d-e991ea21af6e	2021-05-20 20:02:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:02:16.853+03	2021-05-20 20:02:16.862+03	
3c7f1b62-6874-eca4-833a-1bc24cf12034	2021-05-20 20:02:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:02:26.853+03	2021-05-20 20:02:26.862+03	
0ee7aa6f-c427-0938-dfd3-ff971469c7cb	2021-05-20 20:02:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:02:36.854+03	2021-05-20 20:02:36.878+03	
436c15b9-89e3-97e2-c94f-97e09f945df3	2021-05-20 20:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:02:47.853+03	2021-05-20 20:02:47.859+03	
5f395084-9197-4789-3f36-a4f4101abb05	2021-05-20 20:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:02:58.852+03	2021-05-20 20:02:58.86+03	
7fd8171b-ee76-f5c1-4fea-d6a675dd3952	2021-05-20 20:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:03:08.852+03	2021-05-20 20:03:08.86+03	
c442884d-487c-c63f-c7c7-7d937e57a658	2021-05-20 20:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:03:18.853+03	2021-05-20 20:03:18.859+03	
6f33387f-1b58-d4c0-3e43-e19b550607f1	2021-05-20 20:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:03:28.853+03	2021-05-20 20:03:28.866+03	
1763d42f-30c0-2582-4941-d2412639b61c	2021-05-20 20:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:03:38.853+03	2021-05-20 20:03:38.864+03	
bf32e96d-2d8f-be37-d720-dc1c35e47c20	2021-05-20 20:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:03:48.853+03	2021-05-20 20:03:48.859+03	
32a98eb1-8931-c62a-4272-ad8c73802509	2021-05-20 20:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:03:58.853+03	2021-05-20 20:03:58.862+03	
fbb7f02c-b190-4631-af73-80e110042000	2021-05-20 20:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:04:08.853+03	2021-05-20 20:04:08.876+03	
012c6cd3-2da3-4632-7895-dfc86428ef21	2021-05-20 20:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:04:18.853+03	2021-05-20 20:04:18.862+03	
74ed5035-43a7-d810-8a4d-38258f2170b0	2021-05-20 20:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:04:28.853+03	2021-05-20 20:04:28.864+03	
099d35c0-f9d6-2083-b977-ee6b926783c9	2021-05-20 20:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:04:38.853+03	2021-05-20 20:04:38.861+03	
d7312a03-3596-c147-1b61-7295901d2335	2021-05-20 20:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:04:49.852+03	2021-05-20 20:04:49.871+03	
905a015b-ac44-1549-5b2b-ce0d208605bc	2021-05-20 20:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:04:59.853+03	2021-05-20 20:04:59.863+03	
4c6929de-d7f4-83a3-c752-a5f7b7774830	2021-05-20 20:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:05:09.853+03	2021-05-20 20:05:09.859+03	
12168c4b-331f-c5d9-82bd-d4a544bb123b	2021-05-20 20:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:05:19.853+03	2021-05-20 20:05:19.872+03	
4d6caf76-0cc2-f210-bdfe-d848117f3b47	2021-05-20 20:05:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:05:29.853+03	2021-05-20 20:05:29.87+03	
0e54cf25-124b-61ff-edfa-e6782c40b81a	2021-05-20 20:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:05:39.853+03	2021-05-20 20:05:39.859+03	
0f2d23fd-dfe8-a0a4-4c74-6c5258bc12ac	2021-05-20 20:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:05:50.852+03	2021-05-20 20:05:50.859+03	
0cc5cde0-3191-0a72-7eb6-f10511376f9e	2021-05-20 20:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:06:00.852+03	2021-05-20 20:06:00.858+03	
31a5cbe9-38cd-1bea-8b2d-11b11f88c88b	2021-05-20 20:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:06:10.852+03	2021-05-20 20:06:10.858+03	
e88b1c58-7324-29bb-3a7b-dbb3503b1650	2021-05-20 20:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:06:20.853+03	2021-05-20 20:06:20.859+03	
05bd39df-6ec5-f3a7-85e0-0e13dd8dba98	2021-05-20 20:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:06:30.853+03	2021-05-20 20:06:30.86+03	
f77566fb-faff-b757-f89e-e0b96124770f	2021-05-20 20:06:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:06:41.852+03	2021-05-20 20:06:41.859+03	
a984f54d-c18b-465d-18c9-1e59436a0f16	2021-05-20 20:06:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:06:51.853+03	2021-05-20 20:06:51.861+03	
3bf2bf80-4907-7296-b473-f2e03746c931	2021-05-20 20:07:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:07:01.853+03	2021-05-20 20:07:01.859+03	
54629c9a-e044-0192-450d-02eab25d956b	2021-05-20 20:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:07:12.852+03	2021-05-20 20:07:12.866+03	
89361325-64b7-e6ee-af3d-71cdf419c623	2021-05-20 20:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:07:22.853+03	2021-05-20 20:07:22.859+03	
b71b11d4-8f10-9df2-2ea6-e01518c91f40	2021-05-20 20:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:07:32.853+03	2021-05-20 20:07:32.869+03	
95747934-cebe-1693-6f48-c929544da8e6	2021-05-20 20:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:07:42.853+03	2021-05-20 20:07:42.861+03	
39f9c7bb-fc67-6a36-7e15-6e199cea8021	2021-05-20 20:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:52:33.853+03	2021-05-20 20:52:33.862+03	
ecb34627-734a-756b-f225-6499521e3cbf	2021-05-20 20:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:07:52.853+03	2021-05-20 20:07:52.86+03	
3727a0bc-fc34-6657-6b49-b829a98e28cf	2021-05-22 10:50:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:50:16.852+03	2021-05-22 10:50:16.861+03	
c746466c-3041-bd72-98b9-12a90ebfd8f1	2021-05-20 20:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:08:12.853+03	2021-05-20 20:08:12.87+03	
b4d253cd-5755-363d-8f29-ac1abce8c05b	2021-05-20 20:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:52:54.852+03	2021-05-20 20:52:54.861+03	
90eef126-bf78-8773-a113-bdb006c3334a	2021-05-20 20:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:08:32.853+03	2021-05-20 20:08:32.87+03	
116524bc-f45d-7c93-718d-8abfa54289d1	2021-05-20 20:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:08:52.853+03	2021-05-20 20:08:52.862+03	
3af79f68-90f8-f457-6094-1c9b534d4f1c	2021-05-20 20:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:53:14.853+03	2021-05-20 20:53:14.886+03	
cc072844-8b70-111c-3c1e-10a22eb49f83	2021-05-20 20:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:09:14.852+03	2021-05-20 20:09:14.859+03	
90b1a279-54fd-f238-afb6-a2842fe788d2	2021-05-20 20:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:09:35.852+03	2021-05-20 20:09:35.86+03	
6c794c92-fa09-778d-2706-a55d9a147bcf	2021-05-20 20:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:53:35.853+03	2021-05-20 20:53:35.86+03	
02fdcaab-ec87-108c-2f63-933a2706aa21	2021-05-20 20:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:09:55.853+03	2021-05-20 20:09:55.86+03	
18bf0d7c-b1f7-3bd5-3daa-c23e191ed291	2021-05-20 20:10:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:10:06.852+03	2021-05-20 20:10:06.861+03	
22fa7e58-e76d-c678-66b0-b313abfc416e	2021-05-20 20:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:53:57.852+03	2021-05-20 20:53:57.859+03	
713dd361-9d35-ade7-f9a8-df1b3f893e7d	2021-05-20 20:10:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:10:26.854+03	2021-05-20 20:10:26.866+03	
b86973ed-7051-c92e-a2c1-8d091aea964a	2021-05-20 20:10:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:10:47.853+03	2021-05-20 20:10:47.865+03	
ac5cf1ed-ff54-0064-47a6-2f966ede3c2f	2021-05-20 20:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:54:17.853+03	2021-05-20 20:54:17.86+03	
14d2ac58-315b-d3b9-6e95-d4cb6827cf62	2021-05-20 20:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:11:07.853+03	2021-05-20 20:11:07.86+03	
bdffd7d8-4463-eeef-83e9-7edec8d17cd5	2021-05-20 20:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:11:28.853+03	2021-05-20 20:11:28.859+03	
ac191144-351c-51a1-8d55-6354e03fff23	2021-05-20 20:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:54:38.853+03	2021-05-20 20:54:38.86+03	
b999d5c1-97a4-8ba5-7099-3010c0d1c180	2021-05-20 20:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:11:49.853+03	2021-05-20 20:11:49.86+03	
6225f566-6b83-5805-3644-1ff91988994d	2021-05-20 20:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:12:10.853+03	2021-05-20 20:12:10.871+03	
43550462-4fc1-4ef3-fd37-20ca4a320830	2021-05-20 20:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:54:59.853+03	2021-05-20 20:54:59.858+03	
4a76f244-b406-35e8-227c-f04abf78eeeb	2021-05-20 20:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:12:31.852+03	2021-05-20 20:12:31.858+03	
cee5442a-e39f-96ba-9bd0-021fb1359613	2021-05-20 20:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:12:51.852+03	2021-05-20 20:12:51.862+03	
b92b16f0-60df-271d-46b1-edfcf54fdefb	2021-05-20 20:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:55:20.853+03	2021-05-20 20:55:20.859+03	
64e5d316-8b1d-a434-e896-784c5aea0bcc	2021-05-20 20:13:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:13:11.854+03	2021-05-20 20:13:11.861+03	
905e46e4-b7bd-892b-ee54-6ff4d7668be0	2021-05-20 20:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:13:32.853+03	2021-05-20 20:13:32.863+03	
b4aeea85-69d4-3bb3-a5e7-a422785417da	2021-05-20 20:55:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:55:41.853+03	2021-05-20 20:55:41.859+03	
38474fcd-1853-c77d-af0c-b50a23fb7c6b	2021-05-20 20:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:13:54.852+03	2021-05-20 20:13:54.858+03	
8b971707-b060-9481-50c4-e80f561ad434	2021-05-20 20:14:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:14:14.853+03	2021-05-20 20:14:14.86+03	
50f6cb50-3337-55c9-da98-a9fb7dac46ac	2021-05-20 20:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:56:02.852+03	2021-05-20 20:56:02.859+03	
9c334d29-31f9-8b0a-c2ca-782811c5cbd8	2021-05-20 20:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:14:35.853+03	2021-05-20 20:14:35.871+03	
44401b98-6770-ac7e-6e57-d40990399108	2021-05-20 20:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:14:55.853+03	2021-05-20 20:14:55.859+03	
c1296c22-2de6-f51e-46a8-c9ed0f273cf6	2021-05-20 20:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:56:23.852+03	2021-05-20 20:56:23.86+03	
c5f33529-29e6-c94b-3176-d66723497ccc	2021-05-20 20:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:15:16.852+03	2021-05-20 20:15:16.859+03	
c5772195-9896-560e-5a99-46f09a747e4f	2021-05-20 20:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:15:36.852+03	2021-05-20 20:15:36.859+03	
c4188dd9-0f13-7a4a-3f7f-75262fd86f12	2021-05-20 20:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:56:44.853+03	2021-05-20 20:56:44.859+03	
bd1e70c3-844b-ee40-4ec5-4179cdda02c5	2021-05-20 20:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:15:56.852+03	2021-05-20 20:15:56.86+03	
fb35e26d-5cdb-0765-4959-f7642b95a1ca	2021-05-20 20:16:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:16:16.852+03	2021-05-20 20:16:16.859+03	
c1c020ec-0b52-deb3-ead9-4c66dadcb2da	2021-05-20 20:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:57:04.853+03	2021-05-20 20:57:04.859+03	
7119a528-0e73-4b97-8291-2914cb49530e	2021-05-20 20:16:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:16:36.853+03	2021-05-20 20:16:36.86+03	
eda67544-338a-193d-c33f-268d5b4408f7	2021-05-20 20:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:16:57.853+03	2021-05-20 20:16:57.859+03	
1c45baf3-7b8c-058e-a37e-7eae690b2e18	2021-05-20 20:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:57:24.853+03	2021-05-20 20:57:24.859+03	
15f3f790-3cc6-c89a-3c1d-b7a820a3a155	2021-05-20 20:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:17:18.852+03	2021-05-20 20:17:18.864+03	
e8a41109-1c45-bb44-85ea-839d5575f4a6	2021-05-20 20:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:17:38.852+03	2021-05-20 20:17:38.861+03	
3de3bcd3-6c58-3cb0-8e66-1f5ad384db21	2021-05-20 20:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:57:44.853+03	2021-05-20 20:57:44.859+03	
b3770fbb-60d1-9852-ba92-c1115bc586a0	2021-05-20 20:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:17:58.853+03	2021-05-20 20:17:58.86+03	
c8bb8af5-0835-9831-d982-8c16d31f7626	2021-05-20 20:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:18:18.853+03	2021-05-20 20:18:18.859+03	
df47dad9-aefa-6f86-af76-d02a919bba0f	2021-05-20 20:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:58:05.853+03	2021-05-20 20:58:05.86+03	
b5223c96-f75a-ebce-19d2-071ae104cb51	2021-05-20 20:18:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:18:39.852+03	2021-05-20 20:18:39.873+03	
4f7e4c88-2277-a24b-6e3d-f80ba6cad6a5	2021-05-20 20:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:18:59.853+03	2021-05-20 20:18:59.87+03	
0e7bb741-40b0-2cef-93b8-2a77f8445dbb	2021-05-20 20:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:58:25.853+03	2021-05-20 20:58:25.861+03	
47475bd7-f3ce-e968-2b46-45912bfa6b02	2021-05-20 20:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:19:20.853+03	2021-05-20 20:19:20.884+03	
a1772376-25cf-3d0f-11df-e8bab2ffa0da	2021-05-20 20:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:19:40.853+03	2021-05-20 20:19:40.859+03	
87b85a78-f6c1-9dac-8586-a5c562f50f13	2021-05-20 20:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:58:46.853+03	2021-05-20 20:58:46.863+03	
ecef735e-124f-8034-08ea-f3973e0b7c1d	2021-05-20 20:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 20:20:00.853+03	2021-05-20 20:20:00.858+03	ERROR
6b49be09-192a-a67d-53a0-175340b885f6	2021-05-20 20:20:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:20:11.852+03	2021-05-20 20:20:11.859+03	
c6b2d24b-e9ff-b1a4-88c9-02d495bfeb5a	2021-05-20 20:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:59:07.853+03	2021-05-20 20:59:07.86+03	
a5039501-994c-8353-acd5-39f97e0c1082	2021-05-20 20:20:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:20:31.854+03	2021-05-20 20:20:31.862+03	
0ed85f7a-3c9c-8e27-4c63-fb1504a023e5	2021-05-20 20:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:20:52.853+03	2021-05-20 20:20:52.861+03	
3a296621-66ed-f7ec-ab41-adf0772d602f	2021-05-20 20:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:59:28.853+03	2021-05-20 20:59:28.863+03	
1b0ae69c-7d03-55e2-ce6f-03765530d5f6	2021-05-20 20:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:21:12.853+03	2021-05-20 20:21:12.87+03	
1bd2df9b-9347-77ed-806b-de874ad3789b	2021-05-20 20:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:21:34.853+03	2021-05-20 20:21:34.861+03	
e7e978cc-63e1-4e5d-010b-d3c73d879d2c	2021-05-20 20:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:59:49.853+03	2021-05-20 20:59:49.859+03	
973f9440-9489-17ef-899c-96fd99508e4c	2021-05-21 03:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:08:42.852+03	2021-05-21 03:08:42.862+03	
cc89c2d9-4456-3f40-4bd8-16b4f9e2bef5	2021-05-20 20:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:08:02.853+03	2021-05-20 20:08:02.859+03	
fa6b9895-ba8c-298e-d68c-e2a97391fb7d	2021-05-20 20:53:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:53:46.853+03	2021-05-20 20:53:46.86+03	
59cb4c6e-eb11-393c-d55c-a0b33fac254c	2021-05-20 20:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:08:22.853+03	2021-05-20 20:08:22.864+03	
4819b732-92f5-c1e4-9756-65e047bc8fdb	2021-05-20 20:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:08:42.853+03	2021-05-20 20:08:42.872+03	
b7e8b7a2-6456-95cb-6437-68022c2fdfa5	2021-05-20 20:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:54:07.852+03	2021-05-20 20:54:07.86+03	
eb2f9a0a-d440-bf99-1eb2-d88fbf4749fa	2021-05-20 20:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:09:03.853+03	2021-05-20 20:09:04.168+03	
1e7203ce-da55-320c-69dc-9e94efd66523	2021-05-20 20:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:09:24.853+03	2021-05-20 20:09:24.859+03	
4511f1fe-5088-2a96-3d4c-7b08c0aabf53	2021-05-20 20:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:54:28.852+03	2021-05-20 20:54:28.868+03	
2ae499be-29a1-2362-eea1-20e4ddf7915b	2021-05-20 20:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:09:45.853+03	2021-05-20 20:09:45.86+03	
90cff157-e2d9-5b40-2c76-53dc974c1db3	2021-05-20 20:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 20:10:00.853+03	2021-05-20 20:10:00.858+03	ERROR
90c9c54f-4fbf-a109-20bd-0200db47f962	2021-05-20 20:54:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:54:49.852+03	2021-05-20 20:54:49.859+03	
f71ecf39-2467-6835-7b2f-5b25b2586f10	2021-05-20 20:10:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:10:16.853+03	2021-05-20 20:10:16.859+03	
dd72138a-7d70-8c62-4a17-8f132d628281	2021-05-20 20:10:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:10:37.853+03	2021-05-20 20:10:37.86+03	
27b7dcca-1491-328c-9730-7daa6aaee94c	2021-05-20 20:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:55:10.852+03	2021-05-20 20:55:10.859+03	
7adb5fac-c848-ffd8-7407-581658df9c46	2021-05-20 20:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:10:57.853+03	2021-05-20 20:10:57.868+03	
148c12a5-9c51-031d-9903-0d77393e57cd	2021-05-20 20:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:11:17.853+03	2021-05-20 20:11:17.859+03	
67580f3d-3d01-a6f3-4148-82cdd0fdb595	2021-05-20 20:55:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:55:31.852+03	2021-05-20 20:55:31.861+03	
873d54d9-4d68-f583-a622-c1fe2bb48b9c	2021-05-20 20:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:11:39.853+03	2021-05-20 20:11:39.859+03	
433470fa-46e1-56e1-c6af-53344d58ff44	2021-05-20 20:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:12:00.852+03	2021-05-20 20:12:00.858+03	
a46d7316-b763-047e-bef6-4c475f0ee368	2021-05-20 20:55:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:55:51.854+03	2021-05-20 20:55:51.864+03	
e96abe08-4157-2ac3-ff92-4781f9c7cf22	2021-05-20 20:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:12:20.853+03	2021-05-20 20:12:20.859+03	
c88e1e28-dc3f-fe5a-0b46-9daf32b06010	2021-05-20 20:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:12:41.852+03	2021-05-20 20:12:41.859+03	
3cfa37ef-06dc-c8ea-888c-50e858ee965d	2021-05-20 20:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:56:12.853+03	2021-05-20 20:56:12.859+03	
3bcc65c6-1aa5-33cb-6890-1e7d6bdd5108	2021-05-20 20:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:13:01.853+03	2021-05-20 20:13:01.861+03	
2d4b768d-8a6d-0b3d-6bc0-5154e26e770b	2021-05-20 20:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:13:22.853+03	2021-05-20 20:13:22.872+03	
d84a5a45-e7e6-4bb0-5431-9b9a1cb9d4a6	2021-05-20 20:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:56:33.853+03	2021-05-20 20:56:33.865+03	
fcc3e3d0-5501-f784-c100-f96b74e9b4e2	2021-05-20 20:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:13:43.853+03	2021-05-20 20:13:43.859+03	
c7f8599e-0c99-2e79-7481-57dd0803fd2c	2021-05-20 20:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:14:04.852+03	2021-05-20 20:14:04.859+03	
d5cd8e52-e0a2-fed9-a3a5-ead606d35bf0	2021-05-20 20:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:56:54.853+03	2021-05-20 20:56:54.862+03	
94a35f80-2794-fd31-ff6a-37f30ff64331	2021-05-20 20:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:14:25.853+03	2021-05-20 20:14:25.86+03	
5fdfc522-4393-a271-3b97-817c500e6924	2021-05-20 20:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:14:45.853+03	2021-05-20 20:14:45.87+03	
dea4b477-067a-ca1e-bfdd-ae2c5f96a820	2021-05-20 20:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:57:14.853+03	2021-05-20 20:57:14.862+03	
471d6c9d-8d96-ff3a-c5b9-e8635ad5d205	2021-05-20 20:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:15:06.852+03	2021-05-20 20:15:06.859+03	
86e738f2-f548-315a-8240-62ab1d75cfdd	2021-05-20 20:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:15:26.852+03	2021-05-20 20:15:26.859+03	
d2ae87b2-a2ac-76eb-b440-e28c9309a446	2021-05-20 20:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:57:34.853+03	2021-05-20 20:57:34.859+03	
a8fb2068-ffd1-3d4c-9c2a-3f1382f4414e	2021-05-20 20:15:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:15:46.852+03	2021-05-20 20:15:46.859+03	
f98904a1-50fc-013c-216e-e0376bbfd3e5	2021-05-20 20:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:16:06.852+03	2021-05-20 20:16:06.859+03	
91ff5c93-1e8b-5427-1178-fe5e4b78ea95	2021-05-20 20:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:57:55.853+03	2021-05-20 20:57:55.859+03	
716918b9-cdd6-57e6-747a-ed8cfa657c8d	2021-05-20 20:16:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:16:26.852+03	2021-05-20 20:16:26.888+03	
c6528157-98db-5ca6-8e71-91f2b566e10a	2021-05-20 20:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:16:47.853+03	2021-05-20 20:16:47.876+03	
e99f22a3-2dae-3735-5074-c6f961136671	2021-05-20 20:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:58:15.853+03	2021-05-20 20:58:15.87+03	
768c4a39-ac96-3d14-3269-e285c369a3ed	2021-05-20 20:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:17:07.853+03	2021-05-20 20:17:07.858+03	
25142b94-1ab8-e404-78ca-ec482c8d074b	2021-05-20 20:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:17:28.852+03	2021-05-20 20:17:28.859+03	
6f19eba0-a0ea-ca86-0e43-9622648e23ed	2021-05-20 20:58:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:58:36.852+03	2021-05-20 20:58:36.86+03	
830ebfb9-1ef3-8c70-b183-4d58790cfc18	2021-05-20 20:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:17:48.852+03	2021-05-20 20:17:48.859+03	
2f312c42-fdfc-3957-de48-f828ddfefed3	2021-05-20 20:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:18:08.853+03	2021-05-20 20:18:08.861+03	
a06c82af-4efb-11eb-54af-6c1427af41ec	2021-05-20 20:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:58:57.852+03	2021-05-20 20:58:57.858+03	
1050d74d-d8d6-bcbc-0121-0c12b4a2dadd	2021-05-20 20:18:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:18:29.852+03	2021-05-20 20:18:29.859+03	
8d02e7cc-5130-e336-e440-97463cfb5be6	2021-05-20 20:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:18:49.852+03	2021-05-20 20:18:49.859+03	
865dbd69-612a-6103-306f-ed4b9a4258fc	2021-05-20 20:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:59:18.852+03	2021-05-20 20:59:18.859+03	
4ceade96-af75-ab98-b270-00a6e2b78cc8	2021-05-20 20:19:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:19:09.853+03	2021-05-20 20:19:09.86+03	
8b4285ee-abd7-08ce-ab33-215947e9239c	2021-05-20 20:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:19:30.853+03	2021-05-20 20:19:30.859+03	
18a6865b-8274-6be6-82fe-1ded725fa577	2021-05-20 20:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:59:39.852+03	2021-05-20 20:59:39.861+03	
0b8768ab-c3a6-de51-6e2e-f2cb5404e101	2021-05-20 20:19:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:19:51.852+03	2021-05-20 20:19:51.859+03	
c027621b-5a3b-59fb-ad50-7ed80a6c18a4	2021-05-20 20:20:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:20:01.852+03	2021-05-20 20:20:01.869+03	
f11377eb-d956-b2b2-fcab-b367bff07575	2021-05-20 20:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:59:59.853+03	2021-05-20 20:59:59.872+03	
06341de8-65fb-5a63-6084-46afd1df4410	2021-05-20 20:20:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:20:21.854+03	2021-05-20 20:20:21.893+03	
ae137672-69cd-fd8f-cb2f-44c90336559b	2021-05-20 20:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:20:42.853+03	2021-05-20 20:20:42.861+03	
528e5e76-31a4-287e-72c8-c6e3b878de67	2021-05-20 21:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 21:00:00.853+03	2021-05-20 21:00:00.859+03	ERROR
5459a999-2aa4-d5f7-f3a5-a93ddec7ab9c	2021-05-20 20:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:21:02.853+03	2021-05-20 20:21:02.871+03	
289c4d30-bd27-d1a5-b30b-af65395e05df	2021-05-20 20:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 20:21:23.853+03	2021-05-20 20:21:23.871+03	
006215e6-ef0e-8775-f461-c671debed294	2021-05-20 21:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:00:09.853+03	2021-05-20 21:00:09.879+03	
15ae4e4c-9f7d-2588-33ef-747e8525c42a	2021-05-20 21:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:00:19.853+03	2021-05-20 21:00:19.862+03	
a72bac63-412f-eb82-61c1-9f6341317aa4	2021-05-20 21:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:00:29.853+03	2021-05-20 21:00:29.861+03	
91ce0ccb-0338-fdcb-6485-15d07a9a0b1a	2021-05-20 21:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:00:39.853+03	2021-05-20 21:00:39.86+03	
4fea31c6-e1bd-0a31-1f0f-3617c037a1e7	2021-05-20 21:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:00:59.853+03	2021-05-20 21:00:59.859+03	
3136d3fe-4ad0-1cce-7fbf-0dacb7e64dbf	2021-05-20 21:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:01:19.853+03	2021-05-20 21:01:19.86+03	
b25662bd-37cb-78ac-98a0-7913314910e1	2021-05-20 21:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:01:40.852+03	2021-05-20 21:01:40.859+03	
59b58551-8285-eebf-6b6f-02912d715dad	2021-05-20 21:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:02:00.853+03	2021-05-20 21:02:00.86+03	
df653a5f-2288-af30-ed51-62ccec276a5f	2021-05-20 21:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:02:20.853+03	2021-05-20 21:02:20.86+03	
c5bc8441-9923-56a7-869c-0d0863c9893f	2021-05-20 21:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:02:40.853+03	2021-05-20 21:02:40.86+03	
e6721821-b9ce-d155-1bdf-b5a8a9d2e5ef	2021-05-20 21:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:03:00.853+03	2021-05-20 21:03:00.861+03	
d0c24341-de3f-c3c9-afc1-5d436c9094f2	2021-05-20 21:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:03:20.853+03	2021-05-20 21:03:20.86+03	
a1dc6dd0-6126-1c76-f3e1-05f57a516f49	2021-05-20 21:03:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:03:41.853+03	2021-05-20 21:03:41.859+03	
b8d35c3f-151c-3330-6fa9-65d50ec70a13	2021-05-20 21:04:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:04:01.853+03	2021-05-20 21:04:01.859+03	
3b8092ad-f900-02e1-fd3a-a3c95f8359f0	2021-05-20 21:04:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:04:21.854+03	2021-05-20 21:04:21.861+03	
9d232462-e527-00c7-4b2b-7706d5414ce0	2021-05-20 21:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:04:42.852+03	2021-05-20 21:04:42.871+03	
fdecf025-6170-5414-3540-9afe086194e5	2021-05-20 21:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:05:02.853+03	2021-05-20 21:05:02.859+03	
94eb8c81-e7e5-6068-71fc-18a7cad45699	2021-05-20 21:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:05:22.853+03	2021-05-20 21:05:22.859+03	
c5bac921-fd9a-5ddb-43fb-57f46dcf125c	2021-05-20 21:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:05:43.852+03	2021-05-20 21:05:43.859+03	
6fd2a72f-f110-0a7f-92cf-2e3985222fc1	2021-05-20 21:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:06:03.853+03	2021-05-20 21:06:03.868+03	
888f0e80-97fd-5080-8a90-4ccc1f77f034	2021-05-20 21:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:06:23.853+03	2021-05-20 21:06:23.866+03	
ffe4f2ec-019d-18a7-f3c1-965e2d4e6fe0	2021-05-20 21:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:06:43.853+03	2021-05-20 21:06:43.859+03	
a4f686e8-bc07-f99d-bfe9-e6d042931997	2021-05-20 21:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:07:04.853+03	2021-05-20 21:07:04.86+03	
150a5d61-c600-6547-9169-a516713540af	2021-05-20 21:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:07:25.852+03	2021-05-20 21:07:25.86+03	
2cf04fc1-85e3-c34b-4126-64c95e1179c9	2021-05-20 21:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:07:45.853+03	2021-05-20 21:07:45.863+03	
3a0c3540-3b0f-88b3-0fd6-ee073e5b4080	2021-05-20 21:08:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:08:06.854+03	2021-05-20 21:08:06.863+03	
fc00b922-7fde-eb51-d517-8cd41571c02f	2021-05-20 21:08:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:08:26.854+03	2021-05-20 21:08:26.865+03	
2a43d0f4-2952-2a72-4b2e-5f1b22eb7796	2021-05-20 21:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:08:47.853+03	2021-05-20 21:08:47.859+03	
fcb2ab16-411d-0987-7ec0-8f199dafacb9	2021-05-20 21:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:09:08.853+03	2021-05-20 21:09:08.859+03	
0adc22fb-256e-45b8-85e2-45f02f826815	2021-05-20 21:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:09:30.853+03	2021-05-20 21:09:30.859+03	
ba7ef9d0-b7ad-309e-1b58-653570631159	2021-05-20 21:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:09:52.853+03	2021-05-20 21:09:52.864+03	
7d9b5f62-a0dc-dddf-9818-fe64a03e3481	2021-05-20 21:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:10:02.853+03	2021-05-20 21:10:02.86+03	
e8188aa9-fb04-94f3-6997-be12e524e439	2021-05-20 21:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:10:23.853+03	2021-05-20 21:10:23.86+03	
d41fac53-5248-34c5-7efe-783fee681c8b	2021-05-20 21:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:10:43.853+03	2021-05-20 21:10:43.858+03	
cef255f4-16a3-601a-a9b5-2fb03751e85f	2021-05-20 21:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:11:04.853+03	2021-05-20 21:11:04.859+03	
71a44366-d94f-5338-6e4b-db63d610899f	2021-05-20 21:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:11:24.853+03	2021-05-20 21:11:24.86+03	
608575f3-3ba5-fb4d-aef9-5492a34bfa90	2021-05-20 21:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:11:44.853+03	2021-05-20 21:11:44.859+03	
fb9ac31a-5a5d-67a1-7fde-32139620d4a9	2021-05-20 21:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:12:05.852+03	2021-05-20 21:12:05.858+03	
24348db7-3e77-1f5c-0524-f48417a780d1	2021-05-20 21:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:12:25.852+03	2021-05-20 21:12:25.859+03	
f05f7404-ac67-22eb-12e8-51f6e88a9b93	2021-05-20 21:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:12:45.853+03	2021-05-20 21:12:45.859+03	
e3f914b3-4c81-c500-ad20-2355c76f8d66	2021-05-20 21:13:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:13:06.853+03	2021-05-20 21:13:06.889+03	
7baacd9c-9b80-57ab-26bb-3978096670a1	2021-05-20 21:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:13:27.852+03	2021-05-20 21:13:27.86+03	
c2ef1963-50c3-35e8-f666-3ae1e87c073d	2021-05-20 21:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:13:47.853+03	2021-05-20 21:13:47.859+03	
7e7e958f-0fe9-d657-a99d-055171701e94	2021-05-20 21:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:14:08.853+03	2021-05-20 21:14:08.861+03	
127704d9-7483-44ed-3611-e98df4e2d9d7	2021-05-20 21:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:14:29.853+03	2021-05-20 21:14:29.86+03	
872bd97d-fe60-03fd-7976-f8e29537de31	2021-05-20 21:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:14:49.853+03	2021-05-20 21:14:49.86+03	
99a84bb5-fc81-e6fb-d1e5-297de9b6b2d6	2021-05-20 21:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:15:09.853+03	2021-05-20 21:15:09.873+03	
647a1b73-4ad5-5748-1f14-cd6ddf8ce11a	2021-05-20 21:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:15:30.853+03	2021-05-20 21:15:30.859+03	
a443369f-02ec-90a6-f9ce-4e6fdd3e02d9	2021-05-20 21:15:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:15:51.853+03	2021-05-20 21:15:51.859+03	
9bdf51ea-70b2-4004-1450-e2189571faa8	2021-05-20 21:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:16:11.853+03	2021-05-20 21:16:11.862+03	
9d83a6a7-bc3a-05bc-b9a8-d8ac0bf06783	2021-05-20 21:16:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:16:31.853+03	2021-05-20 21:16:31.86+03	
f27c1dbb-295c-f656-447e-4d6adacad2b3	2021-05-20 21:16:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:16:51.854+03	2021-05-20 21:16:51.86+03	
4e0f1f2f-fddb-70de-2864-d64e001133a1	2021-05-20 21:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:17:12.852+03	2021-05-20 21:17:12.859+03	
917da5f8-f2dc-442c-ca3f-f006276abeb8	2021-05-20 21:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:17:32.853+03	2021-05-20 21:17:32.872+03	
17522109-a47b-f42c-cee8-4f336bfd0315	2021-05-20 21:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:17:52.853+03	2021-05-20 21:17:52.868+03	
02e25dbe-e199-dbe4-80c0-6c1da2d221e2	2021-05-20 21:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:18:14.852+03	2021-05-20 21:18:14.859+03	
8f638722-cc9c-7454-16a2-c77a8d6781f1	2021-05-20 21:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:18:34.853+03	2021-05-20 21:18:34.859+03	
1feb1f09-4202-09d1-c5bf-8a68df13b4f2	2021-05-20 21:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:18:54.853+03	2021-05-20 21:18:54.861+03	
f44f3527-8572-fbd8-0e37-bdbe122aecb0	2021-05-20 21:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:19:15.853+03	2021-05-20 21:19:15.861+03	
af17b7d8-dba0-fe56-1b4d-def5b5fccc28	2021-05-20 21:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:19:35.853+03	2021-05-20 21:19:35.862+03	
01bffc52-6bdd-1ad8-1da8-47e4e8f9a1a9	2021-05-20 21:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:19:56.852+03	2021-05-20 21:19:56.859+03	
90015609-9e48-1cd7-0506-70880f8e0737	2021-05-20 21:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:20:06.852+03	2021-05-20 21:20:06.862+03	
77f8cda3-dd2b-ba86-8be2-74adc9a674c6	2021-05-20 21:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:20:26.853+03	2021-05-20 21:20:26.86+03	
16dc6729-4f9e-6ab3-0130-e1d2758ea2d8	2021-05-20 21:20:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:20:46.853+03	2021-05-20 21:20:46.866+03	
5532da41-52e6-03d6-6b09-a74e61db4aee	2021-05-20 21:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:21:07.853+03	2021-05-20 21:21:07.858+03	
7d0e3b31-d96e-fc27-5ade-a7142a258607	2021-05-20 21:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:21:27.853+03	2021-05-20 21:21:27.861+03	
c0fb30ee-913c-f39e-b6be-a75fb67c0c49	2021-05-20 21:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:00:49.853+03	2021-05-20 21:00:49.86+03	
f2970622-f5b7-8c21-9049-7dd2a6459449	2021-05-20 21:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:01:09.853+03	2021-05-20 21:01:09.862+03	
c7499c21-6d03-5d52-e03d-81103ed3eaea	2021-05-20 21:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:01:29.853+03	2021-05-20 21:01:29.883+03	
0326becb-62fc-39df-a18c-183da7524224	2021-05-20 21:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:01:50.853+03	2021-05-20 21:01:50.859+03	
f87afea1-fcf9-f36d-20f7-025973161224	2021-05-20 21:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:02:10.853+03	2021-05-20 21:02:10.861+03	
7100de68-cf16-709b-d261-1b238ec0d689	2021-05-20 21:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:02:30.853+03	2021-05-20 21:02:30.86+03	
dcfbeb48-2ef8-3fa0-12ad-bc788642f340	2021-05-20 21:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:02:50.853+03	2021-05-20 21:02:50.863+03	
a23a4d0c-2c4d-1524-0142-4ed99df9316f	2021-05-20 21:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:03:10.853+03	2021-05-20 21:03:10.861+03	
855b36f9-b500-1677-9985-4cd6ebfec7f8	2021-05-20 21:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:03:30.853+03	2021-05-20 21:03:30.86+03	
d0601091-72cc-d4b2-12cd-42a3d3c9ea0f	2021-05-20 21:03:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:03:51.853+03	2021-05-20 21:03:51.859+03	
ec3a6c2e-9251-2363-44da-290023a84d8a	2021-05-20 21:04:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:04:11.854+03	2021-05-20 21:04:11.863+03	
09e33f9e-05b5-9685-cff1-b6dba152acbb	2021-05-20 21:04:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:04:31.854+03	2021-05-20 21:04:31.862+03	
e8395ca7-7a08-6ee9-d1d3-13ca19ca3c7a	2021-05-20 21:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:04:52.853+03	2021-05-20 21:04:52.859+03	
96c098cb-3dbd-76b8-187b-ef4d324ee6d5	2021-05-20 21:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:05:12.853+03	2021-05-20 21:05:12.859+03	
5dafd059-12fb-8d16-1086-08a032d48c5c	2021-05-20 21:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:05:32.853+03	2021-05-20 21:05:32.865+03	
20fe75fe-9abd-3afd-be39-96d865f98f1c	2021-05-20 21:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:05:53.853+03	2021-05-20 21:05:53.861+03	
c23a0ace-f44d-93f0-176a-f84e0f07dd9f	2021-05-20 21:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:06:13.853+03	2021-05-20 21:06:13.861+03	
52e19ee6-9d65-b123-1935-081ca15076b4	2021-05-20 21:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:06:33.853+03	2021-05-20 21:06:33.861+03	
7a5a2f2b-ec7b-3d31-c338-3927ada3d2a0	2021-05-20 21:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:06:53.853+03	2021-05-20 21:06:53.859+03	
cc0bca20-b89a-cdb4-aa81-1d2e81be2112	2021-05-20 21:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:07:15.852+03	2021-05-20 21:07:15.859+03	
fec8ab49-3366-9235-75b9-489138f1d9f7	2021-05-20 21:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:07:35.852+03	2021-05-20 21:07:35.869+03	
a74d2eef-9169-7e13-487e-d4093329c302	2021-05-20 21:07:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:07:56.854+03	2021-05-20 21:07:56.863+03	
c9d49af8-6e67-5915-757e-c04853977ece	2021-05-20 21:08:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:08:16.854+03	2021-05-20 21:08:16.861+03	
70a548fa-c355-3a29-70ff-a1cb18f550c1	2021-05-20 21:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:08:37.853+03	2021-05-20 21:08:37.862+03	
0c861b23-56a7-9fd1-ecd3-7d025c6deacd	2021-05-20 21:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:08:58.853+03	2021-05-20 21:08:58.859+03	
9560c66b-d518-1ec0-685a-edb3e02f0c21	2021-05-20 21:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:09:19.853+03	2021-05-20 21:09:19.859+03	
a958c6be-8186-924e-977b-3feb26f95f28	2021-05-20 21:09:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:09:41.853+03	2021-05-20 21:09:41.861+03	
8d653e0a-05c2-88a8-87a8-ef14f0ae4806	2021-05-20 21:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 21:10:00.852+03	2021-05-20 21:10:00.858+03	ERROR
9427762f-1253-22cb-5b18-704ce920fba2	2021-05-20 21:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:10:13.853+03	2021-05-20 21:10:13.86+03	
3eb26f2e-7039-09c3-d0e1-53de5afccd2b	2021-05-20 21:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:10:33.853+03	2021-05-20 21:10:33.871+03	
08b44131-ce5a-4403-9450-ee3fc41c3348	2021-05-20 21:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:10:54.852+03	2021-05-20 21:10:54.859+03	
7877d8f4-36ab-6f84-5fe8-637b3958d0fc	2021-05-20 21:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:11:14.853+03	2021-05-20 21:11:14.859+03	
72287235-2d54-7144-61db-7cd375dcaec0	2021-05-20 21:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:11:34.853+03	2021-05-20 21:11:34.859+03	
a17c0bb0-e001-e42a-73ac-d0ca756879f0	2021-05-20 21:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:11:55.852+03	2021-05-20 21:11:55.859+03	
86c3c4c3-055b-caac-c167-38096a676f25	2021-05-20 21:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:12:15.852+03	2021-05-20 21:12:15.859+03	
219ddb86-9c7f-0e6c-f60d-36c23872773e	2021-05-20 21:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:12:35.852+03	2021-05-20 21:12:35.86+03	
bcaa7178-01b8-70b3-a342-ddbed0c381d5	2021-05-20 21:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:12:55.853+03	2021-05-20 21:12:55.863+03	
d736567a-5494-7d46-84f9-cae005c25847	2021-05-20 21:13:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:13:16.853+03	2021-05-20 21:13:16.859+03	
5c5bcabe-33b2-587d-7a91-cc14112c006d	2021-05-20 21:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:13:37.852+03	2021-05-20 21:13:37.859+03	
a22c6010-5cb3-025c-a880-65ede4bee7ef	2021-05-20 21:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:13:58.853+03	2021-05-20 21:13:58.86+03	
dbac8c7c-dd77-ba46-0228-9b1b28826502	2021-05-20 21:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:14:18.853+03	2021-05-20 21:14:18.861+03	
d79cb70c-9816-2ea6-25f5-845d38601e6a	2021-05-20 21:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:14:39.853+03	2021-05-20 21:14:39.87+03	
51749111-f548-3563-ed96-cdb446642f7a	2021-05-20 21:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:14:59.853+03	2021-05-20 21:14:59.859+03	
c6ba2f46-1800-4ab9-2a54-4f048c912138	2021-05-20 21:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:15:20.852+03	2021-05-20 21:15:20.859+03	
058b10a5-bf71-0784-16ce-92f604755ec5	2021-05-20 21:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:15:40.853+03	2021-05-20 21:15:40.86+03	
8d120f07-50de-d1da-1beb-9257e871d120	2021-05-20 21:16:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:16:01.853+03	2021-05-20 21:16:01.906+03	
7a891b66-3e39-a6fc-9083-d9b92046ab85	2021-05-20 21:16:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:16:21.853+03	2021-05-20 21:16:21.859+03	
5b80c434-5734-1341-012d-bc77a3324a26	2021-05-20 21:16:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:16:41.854+03	2021-05-20 21:16:41.86+03	
c57c0116-154d-a190-be3d-41c36353d0d0	2021-05-20 21:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:17:02.852+03	2021-05-20 21:17:02.859+03	
a3deabed-294c-845e-a798-76f1f4c76fdf	2021-05-20 21:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:17:22.853+03	2021-05-20 21:17:22.872+03	
f13bdeca-95f2-2601-5947-a6ede4b31470	2021-05-20 21:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:17:42.853+03	2021-05-20 21:17:42.86+03	
365d3856-a54a-047f-39c1-75787271d19e	2021-05-20 21:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:18:03.853+03	2021-05-20 21:18:03.86+03	
4d876708-b0ad-0c49-6447-485b62ea11d5	2021-05-20 21:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:18:24.853+03	2021-05-20 21:18:24.859+03	
744d1766-6fab-e906-9d32-c6d8c6deda3a	2021-05-20 21:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:18:44.853+03	2021-05-20 21:18:44.86+03	
d9daa97b-07dd-228e-297d-9c35c788e2da	2021-05-20 21:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:19:05.853+03	2021-05-20 21:19:05.862+03	
f07c1f03-dd48-f4e5-3e7f-17942266f67f	2021-05-20 21:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:19:25.853+03	2021-05-20 21:19:25.86+03	
3f9526c6-3603-83bd-9be9-48d636abdf23	2021-05-20 21:19:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:19:46.852+03	2021-05-20 21:19:46.862+03	
e7a92561-4ee7-3b41-3a66-4a824fc4d8fe	2021-05-20 21:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 21:20:00.852+03	2021-05-20 21:20:00.861+03	ERROR
001ef091-aa64-43f8-ae8c-372ff43c9263	2021-05-20 21:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:20:16.852+03	2021-05-20 21:20:16.859+03	
2a446766-e057-b3a7-9626-dd11004bbd35	2021-05-20 21:20:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:20:36.853+03	2021-05-20 21:20:36.861+03	
0c6a674c-0cd7-91d4-fd7a-dfcad38535b4	2021-05-20 21:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:20:57.853+03	2021-05-20 21:20:57.861+03	
1db3bdaf-f58c-6767-d049-660bdc4885c7	2021-05-20 21:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:21:17.853+03	2021-05-20 21:21:17.866+03	
0090c5b5-7687-2ae1-0413-05cd2fd35d41	2021-05-20 21:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:21:37.853+03	2021-05-20 21:21:37.859+03	
a62888f7-af13-449d-e41b-d518ab181378	2021-05-21 11:24:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:24:01.854+03	2021-05-21 11:24:01.861+03	
8883666a-0d96-cf3e-a7c8-d54f9b3dc07d	2021-05-20 21:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:21:48.852+03	2021-05-20 21:21:48.901+03	
3ca4d574-b2b5-bff9-3a30-615396752391	2021-05-21 03:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:08:52.852+03	2021-05-21 03:08:52.859+03	
f371ccd4-7f4a-630d-3c46-67e6db693f75	2021-05-20 21:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:22:08.853+03	2021-05-20 21:22:08.859+03	
cd56853b-19c2-fda9-2304-923700456c4b	2021-05-20 21:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:22:28.853+03	2021-05-20 21:22:28.862+03	
393cdc1d-2320-8bb6-336c-125d4fe87ac7	2021-05-21 03:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:09:12.853+03	2021-05-21 03:09:12.86+03	
1f4235ab-ea7e-9d24-5dd7-2042007ca92b	2021-05-20 21:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:22:48.853+03	2021-05-20 21:22:48.859+03	
77df3fa3-50d1-820c-bfec-ca7212830991	2021-05-20 21:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:23:09.853+03	2021-05-20 21:23:09.861+03	
fdaa5e71-7fe6-8285-baee-f1e041997355	2021-05-21 03:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:09:34.852+03	2021-05-21 03:09:34.859+03	
559da1fa-b4f0-8fa8-0a0a-df39dd8de8ab	2021-05-20 21:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:23:30.852+03	2021-05-20 21:23:30.859+03	
bb3286ad-f39e-9071-1bdb-b2d4df4a5ea5	2021-05-20 21:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:23:50.853+03	2021-05-20 21:23:50.859+03	
6492cab4-380e-e4c7-3e0e-ebb6ce7ce57e	2021-05-21 03:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:09:54.852+03	2021-05-21 03:09:54.858+03	
fbb8cf78-0867-0f71-24e8-d765e0949b51	2021-05-20 21:24:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:24:11.853+03	2021-05-20 21:24:11.862+03	
aa880b7d-7a4b-4798-dd2e-91c83543712e	2021-05-20 21:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:24:32.853+03	2021-05-20 21:24:32.859+03	
a07597ee-a763-f9f1-121e-78cbd7ea7e32	2021-05-21 03:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:10:04.852+03	2021-05-21 03:10:04.858+03	
b1e8b5cc-2840-2b90-fe92-a254ab7621d2	2021-05-20 21:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:24:53.852+03	2021-05-20 21:24:53.859+03	
f899c51b-5e93-e992-d0ea-28542bce5476	2021-05-20 21:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:25:13.852+03	2021-05-20 21:25:13.858+03	
aeac44d2-72b5-731c-541c-60160318927c	2021-05-21 03:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:10:24.853+03	2021-05-21 03:10:24.86+03	
b08c7d50-c886-7c72-dd3f-f1a35d15ee7b	2021-05-20 21:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:25:33.853+03	2021-05-20 21:25:33.86+03	
714691ba-663d-94a2-4e39-f2d55bf2093e	2021-05-20 21:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:25:53.853+03	2021-05-20 21:25:53.861+03	
e63990d6-6211-37b3-3596-11006144dd94	2021-05-21 03:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:10:45.853+03	2021-05-21 03:10:45.859+03	
e4c36d06-0844-a5ce-7bef-89ea328ec3ab	2021-05-20 21:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:26:13.853+03	2021-05-20 21:26:13.859+03	
96e38dab-49d1-2a92-cb22-94d607fc964d	2021-05-20 21:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:26:33.853+03	2021-05-20 21:26:33.873+03	
58d847c7-ebb4-ce93-bd4c-13c5dd63e951	2021-05-21 03:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:11:07.852+03	2021-05-21 03:11:07.858+03	
042f3352-d971-b043-d24f-27103c9efbda	2021-05-20 21:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:26:54.853+03	2021-05-20 21:26:54.86+03	
0e673256-7e1e-20f0-ad7b-2bb3c2aafa2f	2021-05-20 21:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:27:14.853+03	2021-05-20 21:27:14.859+03	
9a8653d4-4273-3151-9cc0-b1f194dcadea	2021-05-21 03:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:11:27.852+03	2021-05-21 03:11:27.859+03	
6d468c54-65bb-ee82-f6cb-367263d39f19	2021-05-20 21:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:27:34.853+03	2021-05-20 21:27:34.86+03	
a149134b-0b22-96a8-f4c9-28e4fc353bec	2021-05-21 03:11:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:11:48.853+03	2021-05-21 03:11:48.859+03	
b400ec7b-cb1e-7663-75ad-1a86f944b274	2021-05-21 03:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:12:09.853+03	2021-05-21 03:12:09.86+03	
f9746046-5d21-7e60-1cf0-91018eed5f37	2021-05-21 03:12:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:12:29.853+03	2021-05-21 03:12:29.869+03	
e179bb81-4e3f-5b5d-dcfd-fbacf4e0f46a	2021-05-21 03:12:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:12:50.852+03	2021-05-21 03:12:50.859+03	
c35770ba-d00a-02e1-c72b-4fb7f0101597	2021-05-21 03:13:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:13:10.853+03	2021-05-21 03:13:10.861+03	
4bf3fc85-ac5a-8323-666a-93f56f5252f2	2021-05-21 03:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:13:30.853+03	2021-05-21 03:13:30.862+03	
751c0801-3849-5ed3-6d2e-c7e2db29b82a	2021-05-21 03:13:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:13:51.854+03	2021-05-21 03:13:51.86+03	
7a00b1fc-c6f9-240d-83f2-09b8ae8b3fcb	2021-05-21 03:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:14:12.852+03	2021-05-21 03:14:12.859+03	
63f02009-aa79-edd0-4f8a-d17fe579bc50	2021-05-21 03:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:14:32.853+03	2021-05-21 03:14:32.86+03	
11137e49-1a94-6123-766d-4e984d0a5332	2021-05-21 03:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:14:53.853+03	2021-05-21 03:14:53.859+03	
f6a32e0f-a31e-8365-327a-c45d7434971b	2021-05-21 03:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:15:13.853+03	2021-05-21 03:15:13.863+03	
1a89712b-a2cd-c0f9-63d3-faf7c2be9fc6	2021-05-21 03:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:15:34.852+03	2021-05-21 03:15:34.858+03	
6d6320bd-8b50-6956-63d2-c1f8f02206c6	2021-05-21 03:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:15:55.853+03	2021-05-21 03:15:55.859+03	
9ed6572b-90e1-bcdc-7d76-459e4e062370	2021-05-21 03:16:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:16:16.852+03	2021-05-21 03:16:16.859+03	
53ce0efc-3d9a-e6ae-0f7c-38f58e28bb30	2021-05-21 03:16:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:16:26.852+03	2021-05-21 03:16:26.86+03	
54e9f553-8c30-fe41-c73a-58ec3ddfb671	2021-05-21 03:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:16:47.853+03	2021-05-21 03:16:47.86+03	
fe1ebe65-6c47-ac2c-f8dc-15d557b8274f	2021-05-21 03:17:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:17:09.853+03	2021-05-21 03:17:09.86+03	
5ec82b90-58b2-35d5-4b0e-e75d17d72a58	2021-05-21 03:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:17:40.853+03	2021-05-21 03:17:40.859+03	
669efc9e-93d3-35ae-d4e6-02bf9291b672	2021-05-21 03:18:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:18:01.853+03	2021-05-21 03:18:01.86+03	
36f1877b-3690-f9b2-2cff-2ebb6f323c33	2021-05-21 03:18:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:18:22.852+03	2021-05-21 03:18:22.858+03	
36f0cb17-51ab-a3af-65a5-a98fee82490b	2021-05-21 03:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:18:32.853+03	2021-05-21 03:18:32.861+03	
f2f2fafd-667a-5ac5-2949-70af9d0c89a8	2021-05-21 03:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:18:53.853+03	2021-05-21 03:18:53.859+03	
2c18d451-944d-de56-dbad-1d7751b463a6	2021-05-21 03:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:19:14.853+03	2021-05-21 03:19:14.871+03	
af5918b0-0890-9aff-b479-fa252403bc07	2021-05-21 03:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:19:25.852+03	2021-05-21 03:19:25.858+03	
4d0133db-cd3f-bb40-9890-03811ae81b04	2021-05-21 03:19:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:19:46.853+03	2021-05-21 03:19:46.86+03	
b0b961a2-6b09-771b-2951-60ed76e25595	2021-05-21 03:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 03:20:00.853+03	2021-05-21 03:20:00.857+03	ERROR
8eb23d03-f6c3-e2eb-bf4b-cc207639543b	2021-05-21 03:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:20:16.853+03	2021-05-21 03:20:16.86+03	
c64e2134-66ba-c2da-a7df-f0a6bf110d5d	2021-05-21 03:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:20:37.853+03	2021-05-21 03:20:37.861+03	
3fb0c8be-b4c6-a84a-b9b9-14ba4f66a40f	2021-05-21 03:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:20:58.852+03	2021-05-21 03:20:58.859+03	
7f2ef04d-279b-820d-ce39-11fcfec068c2	2021-05-21 03:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:21:18.853+03	2021-05-21 03:21:18.859+03	
d8f31e81-fef6-c663-fd93-49fb8d1008af	2021-05-21 03:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:21:29.853+03	2021-05-21 03:21:29.86+03	
57182171-a3aa-6f2e-15d5-ab4cefe28801	2021-05-21 03:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:21:49.853+03	2021-05-21 03:21:49.859+03	
9723af9f-26dd-9c32-47aa-fcdf67b57a65	2021-05-21 03:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:22:10.853+03	2021-05-21 03:22:10.86+03	
2216eec1-bf14-ad59-81dd-bc858492e136	2021-05-21 03:22:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:22:41.852+03	2021-05-21 03:22:41.859+03	
2a79e549-5d70-f080-4887-35778f0e6986	2021-05-21 03:23:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:23:01.854+03	2021-05-21 03:23:01.861+03	
9bb1ab75-af75-9bf6-05ac-f759e9c8d150	2021-05-21 03:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:23:22.852+03	2021-05-21 03:23:22.859+03	
668e05a1-f528-1bea-e065-1292e8091fc4	2021-05-20 21:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:21:58.853+03	2021-05-20 21:21:58.859+03	
c2b7c710-ae5a-efa4-1b34-312714bed937	2021-05-20 21:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:22:18.853+03	2021-05-20 21:22:18.866+03	
7c805a55-f188-3b1c-5db7-3ab779badb70	2021-05-20 21:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:22:38.853+03	2021-05-20 21:22:38.859+03	
ed858f67-70c9-8493-3105-514189f5d5e5	2021-05-20 21:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:22:58.853+03	2021-05-20 21:22:58.861+03	
6e2daf85-4d47-e580-e03f-ce30011e3483	2021-05-20 21:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:23:20.852+03	2021-05-20 21:23:20.858+03	
b7099541-d179-7858-8699-ea8619d8a7a4	2021-05-20 21:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:23:40.853+03	2021-05-20 21:23:40.862+03	
4c91868a-57c5-2bd0-ce55-b27ccaa636cd	2021-05-20 21:24:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:24:01.853+03	2021-05-20 21:24:01.861+03	
c65a5360-764a-fd34-ad67-d1557b12cdbe	2021-05-20 21:24:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:24:21.855+03	2021-05-20 21:24:21.865+03	
321d45b4-b181-5b97-bd54-7db653f49afa	2021-05-20 21:24:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:24:42.853+03	2021-05-20 21:24:42.872+03	
d716ba26-dff4-58e0-39fb-96ebee2a3577	2021-05-20 21:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:25:03.852+03	2021-05-20 21:25:03.859+03	
2aeb3ef2-df49-eb7e-2999-5a172bd00fdd	2021-05-20 21:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:25:23.853+03	2021-05-20 21:25:23.86+03	
20a82dc6-b29d-a39d-ac81-4be377e2a15b	2021-05-20 21:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:25:43.853+03	2021-05-20 21:25:43.861+03	
09a6badc-9b9a-0b8d-2d5c-3d0b527a9c6a	2021-05-20 21:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:26:03.853+03	2021-05-20 21:26:03.86+03	
dcbe94e4-51cd-f16e-776f-80b019a5a06c	2021-05-20 21:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:26:23.853+03	2021-05-20 21:26:23.86+03	
1c23e378-a687-ab78-06c9-d60a3b655b04	2021-05-20 21:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:26:44.853+03	2021-05-20 21:26:44.86+03	
9bbbc554-a91a-6254-602c-79c914a990d1	2021-05-20 21:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:27:04.853+03	2021-05-20 21:27:04.861+03	
aaa5d582-ee3b-6188-1269-52850e785b08	2021-05-20 21:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:27:24.853+03	2021-05-20 21:27:24.859+03	
cc23ee6a-e037-bdd4-b0a1-6a63530427e5	2021-05-20 21:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:27:44.853+03	2021-05-20 21:27:44.86+03	
892b99a4-b3ce-b606-ed62-dba7bed03ca9	2021-05-20 21:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:27:54.853+03	2021-05-20 21:27:54.859+03	
53a05602-8398-71f5-27c1-fd10d413d747	2021-05-20 21:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:28:05.852+03	2021-05-20 21:28:05.861+03	
b9ff0c70-68c1-d742-684e-aba8a8770267	2021-05-20 21:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:28:15.853+03	2021-05-20 21:28:15.859+03	
59a8eac9-37b3-e11f-dbb4-818ca1d4daf9	2021-05-20 21:28:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:28:26.854+03	2021-05-20 21:28:26.866+03	
662b8907-60d3-022b-7dfa-7712ef333176	2021-05-20 21:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:28:37.853+03	2021-05-20 21:28:37.861+03	
d8b35bb5-b494-8340-47ef-82166c2d504e	2021-05-20 21:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:28:48.852+03	2021-05-20 21:28:48.859+03	
1e5d2a21-e53a-a76d-7550-7e07c78e81f7	2021-05-20 21:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:28:58.853+03	2021-05-20 21:28:58.86+03	
50348534-c87d-c667-25bc-b0eefc910317	2021-05-20 21:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:29:08.853+03	2021-05-20 21:29:08.863+03	
706145e8-f70d-ffc2-8846-3944f1af19f5	2021-05-20 21:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:29:19.853+03	2021-05-20 21:29:19.859+03	
8ce0daf2-d551-d6dd-958b-902528865077	2021-05-20 21:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:29:30.853+03	2021-05-20 21:29:30.859+03	
8d8918ea-4c53-9f2d-b724-17262660bb73	2021-05-20 21:29:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:29:41.852+03	2021-05-20 21:29:41.86+03	
5ca8698b-07cc-c60a-cd3d-9d0311fa6abf	2021-05-20 21:29:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:29:51.853+03	2021-05-20 21:29:51.859+03	
a3bf56ff-f99f-ca52-542d-080ef7a83012	2021-05-20 21:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 21:30:00.852+03	2021-05-20 21:30:00.858+03	ERROR
cbf18845-07f1-d07e-47c0-85b09e73289c	2021-05-20 21:30:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:30:01.853+03	2021-05-20 21:30:01.86+03	
b15b3eee-89f2-87ed-f703-4cb652c996f9	2021-05-20 21:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:30:12.853+03	2021-05-20 21:30:12.871+03	
aac00250-891e-003a-c9cd-f8ea08ecad52	2021-05-20 21:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:30:23.853+03	2021-05-20 21:30:23.859+03	
bb02a5cd-23e8-6f5e-893d-3f9e8b400922	2021-05-20 21:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:30:34.852+03	2021-05-20 21:30:34.859+03	
9d65ac79-6744-bc6f-b00e-8c02e4745d87	2021-05-20 21:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:30:44.853+03	2021-05-20 21:30:44.859+03	
28bdf29b-64a0-367a-a99d-6d995c265109	2021-05-20 21:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:30:54.853+03	2021-05-20 21:30:54.861+03	
80ccec84-41cc-34a3-1729-028285cb2123	2021-05-20 21:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:31:05.852+03	2021-05-20 21:31:05.86+03	
bf953b29-6a74-7cca-f031-d02d47c66ff5	2021-05-20 21:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:31:15.853+03	2021-05-20 21:31:15.86+03	
b2187cf1-a6f5-64b8-1c95-4285b17581ee	2021-05-20 21:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:31:25.853+03	2021-05-20 21:31:25.859+03	
ed5d3b6e-a521-5e72-ea7e-f234fded761c	2021-05-20 21:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:31:35.853+03	2021-05-20 21:31:35.861+03	
36143586-88b0-7291-a650-4a403dabd8e9	2021-05-20 21:31:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:31:46.854+03	2021-05-20 21:31:46.861+03	
b4903bad-682a-40dc-679c-121d3f1679db	2021-05-20 21:31:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:31:56.854+03	2021-05-20 21:31:56.86+03	
8637ef61-15d1-b792-7b76-7edd79ce8519	2021-05-20 21:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:32:07.852+03	2021-05-20 21:32:07.859+03	
c309ffd6-c3f8-a6a4-4c95-e8758f556642	2021-05-20 21:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:32:17.852+03	2021-05-20 21:32:17.87+03	
bb2402df-a714-dab3-19ca-227b15da2b42	2021-05-20 21:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:32:27.852+03	2021-05-20 21:32:27.86+03	
4e2d4bda-32fa-4f03-ef47-d0d88ff65d42	2021-05-20 21:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:32:37.853+03	2021-05-20 21:32:37.858+03	
ae5f62ce-dc69-64d4-f59a-b34dac665d05	2021-05-20 21:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:32:47.853+03	2021-05-20 21:32:47.859+03	
abd49e5d-6af1-5fc6-95c1-6709a056150f	2021-05-20 21:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:32:57.853+03	2021-05-20 21:32:57.86+03	
c063450a-8b44-1180-5a71-e6ab607afad9	2021-05-20 21:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:33:07.853+03	2021-05-20 21:33:07.861+03	
0beef7d0-a158-2abe-7ba4-329421e96eb9	2021-05-20 21:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:33:17.853+03	2021-05-20 21:33:17.864+03	
cc122785-f093-c9c7-caad-b882df78b7cd	2021-05-20 21:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:33:27.853+03	2021-05-20 21:33:27.86+03	
a433e2ce-b10e-9497-21f2-65222e144f72	2021-05-20 21:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:33:37.853+03	2021-05-20 21:33:37.864+03	
501a4739-98da-a652-f462-841ac0244d99	2021-05-20 21:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:33:47.853+03	2021-05-20 21:33:47.861+03	
d8e1c037-d6a6-3a01-e7ec-cb23986029c4	2021-05-20 21:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:33:57.853+03	2021-05-20 21:33:57.861+03	
9d4e5eca-98be-ac07-d8f2-007935a5452f	2021-05-20 21:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:34:07.853+03	2021-05-20 21:34:07.861+03	
abee0f7d-bde2-f94f-80d1-34a14a3cc78f	2021-05-20 21:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:34:17.853+03	2021-05-20 21:34:17.859+03	
d5f1c258-de35-a347-73aa-8449e2b1e0c9	2021-05-20 21:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:34:27.853+03	2021-05-20 21:34:27.86+03	
34e88fdc-8c0a-c66d-f0fa-747f2b65c0eb	2021-05-20 21:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:34:37.853+03	2021-05-20 21:34:37.861+03	
9578fa22-f54f-0ff3-2a5b-33676873e688	2021-05-20 21:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:34:47.853+03	2021-05-20 21:34:47.862+03	
45cbebf2-d7e7-d687-c174-fb18f10bbad7	2021-05-20 21:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:34:58.853+03	2021-05-20 21:34:58.866+03	
41a5b5e7-9372-cb1d-4352-749b82191aff	2021-05-20 21:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:35:08.853+03	2021-05-20 21:35:08.859+03	
99a7f5fb-176d-2df7-3f05-6547f84590a1	2021-05-20 21:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:35:18.853+03	2021-05-20 21:35:18.888+03	
fc54d35b-317b-c86e-7a49-2ca9c0cb34e4	2021-05-20 21:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:35:28.853+03	2021-05-20 21:35:28.859+03	
bae8c06a-7f19-b56f-2bd6-ef78fc69db15	2021-05-20 21:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:35:49.852+03	2021-05-20 21:35:49.862+03	
3d6e194f-18cd-d25a-7209-1d29a7f2936a	2021-05-20 21:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:36:09.853+03	2021-05-20 21:36:09.859+03	
279bf236-8377-009c-48d0-4632e143f01c	2021-05-20 21:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:36:29.853+03	2021-05-20 21:36:29.86+03	
c565134a-dd48-e1c1-5287-f8de8389500c	2021-05-20 21:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:36:49.853+03	2021-05-20 21:36:49.859+03	
1ded7a31-fd36-88c3-6166-c70a87bdc81a	2021-05-20 21:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:37:09.853+03	2021-05-20 21:37:09.859+03	
81b0c230-46ec-5ea7-e5a0-9e22aa0c2e96	2021-05-20 21:37:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:37:31.852+03	2021-05-20 21:37:31.859+03	
5315b271-0e6b-f342-5d53-131dc3c2e7b9	2021-05-20 21:37:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:37:51.853+03	2021-05-20 21:37:51.863+03	
4109f6f8-21b5-cc41-24ac-541b8ebf04cf	2021-05-20 21:38:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:38:11.854+03	2021-05-20 21:38:11.861+03	
67d197b2-34b2-1c78-5fba-333e0f5b0306	2021-05-20 21:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:38:33.853+03	2021-05-20 21:38:33.862+03	
7f1a2ea5-1d3a-567f-0e6f-ac755a158f57	2021-05-20 21:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:38:54.853+03	2021-05-20 21:38:54.872+03	
695f1027-a162-cf21-7a33-6259132ddfc8	2021-05-20 21:39:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:39:14.853+03	2021-05-20 21:39:14.873+03	
bdce9c00-747d-8e3f-0273-93b63036fba2	2021-05-20 21:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:39:35.853+03	2021-05-20 21:39:35.859+03	
619f5d59-6e56-afcc-0a22-065d769470ac	2021-05-20 21:39:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:39:56.852+03	2021-05-20 21:39:56.859+03	
cae138b9-0c5f-fc37-0d42-18cb9fba4a3b	2021-05-20 21:40:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:40:06.852+03	2021-05-20 21:40:06.86+03	
3cff18b7-84e9-c5e7-8060-a2b49a8d3644	2021-05-20 21:40:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:40:26.853+03	2021-05-20 21:40:26.859+03	
a18194b7-5acd-c492-d722-990943460288	2021-05-20 21:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:40:47.852+03	2021-05-20 21:40:47.859+03	
48fb4839-b1a3-4ad9-bbf6-fdd8b98601a8	2021-05-20 21:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:41:07.853+03	2021-05-20 21:41:07.859+03	
c26e0fc5-d6f4-1ea5-4077-2ec6e731b9c8	2021-05-20 21:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:41:28.852+03	2021-05-20 21:41:28.86+03	
66e61104-e2ad-62d0-a987-9818a70f2612	2021-05-20 21:41:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:41:48.853+03	2021-05-20 21:41:48.859+03	
630292f0-6539-4715-5145-0f1b77e0c5bf	2021-05-20 21:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:42:08.853+03	2021-05-20 21:42:08.86+03	
fe85ceb6-e6b0-bdfb-5fcb-c34f6bd449ec	2021-05-20 21:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:42:28.853+03	2021-05-20 21:42:28.866+03	
219f66ee-e19f-210f-2e48-865c7d18207d	2021-05-20 21:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:42:48.853+03	2021-05-20 21:42:48.861+03	
cc0c2560-974f-2518-431d-8f6dfd4ac0a9	2021-05-20 21:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:43:09.853+03	2021-05-20 21:43:09.859+03	
1323fd8b-4518-3a40-6e4d-c415dc0eaf7e	2021-05-20 21:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:43:30.852+03	2021-05-20 21:43:30.86+03	
8232ca55-ca7d-bc28-e087-4e367a5bc91c	2021-05-20 21:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:43:50.853+03	2021-05-20 21:43:50.858+03	
0f68fdae-0cc1-fbdf-70fc-95e6cf15616f	2021-05-20 21:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:44:10.853+03	2021-05-20 21:44:10.86+03	
20c80878-f915-03a4-c839-306f0d039cb9	2021-05-20 21:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:44:31.853+03	2021-05-20 21:44:31.86+03	
f23680d6-d461-e929-cb66-cd0acba30efd	2021-05-20 21:44:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:44:51.853+03	2021-05-20 21:44:51.859+03	
2d2ad0e1-38eb-b23c-4346-0fa6feb96793	2021-05-20 21:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:45:12.853+03	2021-05-20 21:45:12.874+03	
2638292c-67f7-ada9-53ec-33bca9de1ae9	2021-05-20 21:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:45:32.853+03	2021-05-20 21:45:32.86+03	
c8c670cd-b5a5-8670-7d1c-c881c587cc2d	2021-05-20 21:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:45:52.853+03	2021-05-20 21:45:52.868+03	
2905e705-3420-caba-9f59-6916a76f4b13	2021-05-20 21:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:46:13.853+03	2021-05-20 21:46:13.859+03	
e67746f2-4158-e601-5d4c-097c3225756c	2021-05-20 21:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:46:34.853+03	2021-05-20 21:46:34.859+03	
c2223fab-0750-d5b8-e9b9-04a47db21d81	2021-05-20 21:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:46:55.853+03	2021-05-20 21:46:55.859+03	
bdd897ff-36c4-8dd6-3ec0-913918e61be5	2021-05-20 21:47:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:47:16.854+03	2021-05-20 21:47:16.862+03	
cf866357-97f9-b995-3967-f0c16a21efb2	2021-05-20 21:47:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:47:37.852+03	2021-05-20 21:47:37.865+03	
7fe803fd-2fc2-b5bf-c6ce-88d6e7c9c2fc	2021-05-20 21:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:47:57.853+03	2021-05-20 21:47:57.859+03	
226b78ac-5d1e-cda5-4729-63ad97dd0fe1	2021-05-20 21:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:48:18.852+03	2021-05-20 21:48:18.859+03	
ea2907a5-0d93-a242-0239-66ef4bd801fe	2021-05-20 21:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:48:38.853+03	2021-05-20 21:48:38.86+03	
0f7b01b3-2bbd-9ec3-8071-dc69588eb8e7	2021-05-20 21:48:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:48:59.853+03	2021-05-20 21:48:59.859+03	
a75a4ea5-bebb-5ae4-a879-01b54cdf4bbb	2021-05-20 21:49:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:49:20.852+03	2021-05-20 21:49:20.859+03	
ac31027f-5dad-b20d-0f65-521ea7d12b0d	2021-05-20 21:49:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:49:41.853+03	2021-05-20 21:49:41.859+03	
9f272adb-ad31-9b9a-ee75-9152b51881ac	2021-05-20 21:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 21:50:00.852+03	2021-05-20 21:50:00.868+03	ERROR
f306ddc1-5f65-aaa6-92ac-5c7a1b03f47a	2021-05-20 21:50:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:50:12.853+03	2021-05-20 21:50:12.863+03	
f6280725-2d54-2c66-4903-9bc42d6c3876	2021-05-20 21:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:50:32.853+03	2021-05-20 21:50:32.868+03	
f1b3c335-8071-23dc-82db-8560a78c998e	2021-05-20 21:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:50:53.852+03	2021-05-20 21:50:53.859+03	
2f9415b3-7cdb-bdca-7ae7-e18a922864d0	2021-05-20 21:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:51:13.853+03	2021-05-20 21:51:13.859+03	
799f8726-1b30-f78b-8b49-86cee7f6531a	2021-05-20 21:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:51:33.853+03	2021-05-20 21:51:33.86+03	
197e3368-b26e-435b-d6a2-f9d0c4a778b7	2021-05-20 21:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:51:54.852+03	2021-05-20 21:51:54.871+03	
572f7776-687e-055b-cbcc-b18a5d34a9c3	2021-05-20 21:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:52:15.853+03	2021-05-20 21:52:15.867+03	
4afda9cd-6721-c43a-3899-d2a2faa10d87	2021-05-20 21:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:52:36.854+03	2021-05-20 21:52:36.86+03	
2dd1acd6-3b61-a238-0eab-ffa7905c1b0e	2021-05-20 21:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:52:57.852+03	2021-05-20 21:52:57.86+03	
0d843cb0-6f89-8d29-153a-96dcb0b0908a	2021-05-20 21:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:53:18.852+03	2021-05-20 21:53:18.859+03	
bb8f050e-4a11-0891-da04-d0f0489bccf6	2021-05-20 21:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:53:38.853+03	2021-05-20 21:53:38.859+03	
5bcdaafc-9af5-8af6-62aa-dea1d3fa2e09	2021-05-20 21:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:53:59.853+03	2021-05-20 21:53:59.859+03	
890f8711-5c53-f4ba-cc55-c83362dcde32	2021-05-20 21:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:54:19.853+03	2021-05-20 21:54:19.86+03	
a0b5dc01-a438-464e-8f45-8b2be5e8a61f	2021-05-20 21:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:54:40.852+03	2021-05-20 21:54:40.859+03	
9021388d-21cf-b353-250f-c5db9124b6c8	2021-05-20 21:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:55:00.852+03	2021-05-20 21:55:00.859+03	
54c5cdab-cf4a-3cb6-8eab-7f9871ab60b5	2021-05-20 21:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:55:20.852+03	2021-05-20 21:55:20.859+03	
3f0b37ae-bd13-8d36-dea5-7b8ea064f058	2021-05-20 21:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:55:40.852+03	2021-05-20 21:55:40.859+03	
6460509b-736d-c449-038a-ef421e83711a	2021-05-20 21:56:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:56:01.852+03	2021-05-20 21:56:01.859+03	
5adbaaab-c5a7-91a6-c452-0262e5251e0a	2021-05-20 21:56:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:56:21.853+03	2021-05-20 21:56:21.86+03	
32286146-201a-0482-883e-d0827b637c51	2021-05-20 21:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:35:38.853+03	2021-05-20 21:35:38.86+03	
cea99e44-fd6d-9d6c-8c6d-887985ccd5a7	2021-05-20 21:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:35:59.853+03	2021-05-20 21:35:59.862+03	
32447ccd-acd6-f7d4-ef0c-b8029e34ca68	2021-05-20 21:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:36:19.853+03	2021-05-20 21:36:19.862+03	
caffe3dd-648a-0c85-7d42-d57c82a49b0b	2021-05-20 21:36:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:36:39.853+03	2021-05-20 21:36:39.866+03	
aaccf2cc-0e72-5147-b18f-327bcf5df281	2021-05-20 21:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:36:59.853+03	2021-05-20 21:36:59.86+03	
9b0cfd83-a1dc-59c9-d541-bf6f39a6687f	2021-05-20 21:37:20.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:37:20.853+03	2021-05-20 21:37:20.861+03	
40209079-768a-1435-926b-75b4b5d36299	2021-05-20 21:37:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:37:41.853+03	2021-05-20 21:37:41.862+03	
a2f93f56-a43e-3627-9768-805b1e235f25	2021-05-20 21:38:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:38:01.853+03	2021-05-20 21:38:01.861+03	
b63cdc94-624a-6df2-6583-96aed0401579	2021-05-20 21:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:38:22.853+03	2021-05-20 21:38:22.867+03	
585256ca-46be-3a79-6621-da2551232970	2021-05-20 21:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:38:43.853+03	2021-05-20 21:38:43.859+03	
ad44bc0e-c0d1-3461-e8a8-d766856d5130	2021-05-20 21:39:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:39:04.853+03	2021-05-20 21:39:04.859+03	
0ea2d3e2-9097-aebb-6f4f-90a706e36757	2021-05-20 21:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:39:25.853+03	2021-05-20 21:39:25.86+03	
8507098b-437b-76bb-1c05-ac9861a80ca7	2021-05-20 21:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:39:45.853+03	2021-05-20 21:39:45.863+03	
84b6904a-0342-b3bb-1d7b-ba5bef717d00	2021-05-20 21:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 21:40:00.852+03	2021-05-20 21:40:00.858+03	ERROR
d5a978df-bc45-7ecd-a70c-8e82f11a40dc	2021-05-20 21:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:40:16.852+03	2021-05-20 21:40:16.859+03	
9f05c454-5d8f-ba56-8c8c-47473a46bc26	2021-05-20 21:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:40:37.852+03	2021-05-20 21:40:37.859+03	
0110b28a-f113-678c-f83c-24f333a0cc07	2021-05-20 21:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:40:57.853+03	2021-05-20 21:40:57.861+03	
bfbdeb9d-5a17-9e75-9db0-0745bbdf5863	2021-05-20 21:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:41:18.852+03	2021-05-20 21:41:18.859+03	
273c96e6-330a-2446-bdb6-99febef86291	2021-05-20 21:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:41:38.852+03	2021-05-20 21:41:38.858+03	
57afc2c9-6304-513b-3d07-8a8004ce3d5d	2021-05-20 21:41:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:41:58.853+03	2021-05-20 21:41:58.86+03	
51266d4f-0f34-b777-69e2-adfb5db45d6a	2021-05-20 21:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:42:18.853+03	2021-05-20 21:42:18.859+03	
f498e3b9-5add-210f-c459-0b239216a2b7	2021-05-20 21:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:42:38.853+03	2021-05-20 21:42:38.859+03	
7266620c-f9b3-cd36-d9f7-4bc62fe5dd81	2021-05-20 21:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:42:59.853+03	2021-05-20 21:42:59.859+03	
9b2718d6-118b-2d40-90d6-57ff29a0dbee	2021-05-20 21:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:43:20.852+03	2021-05-20 21:43:20.858+03	
edcefccc-d97f-05dc-b4a0-ff40588bc414	2021-05-20 21:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:43:40.852+03	2021-05-20 21:43:40.859+03	
2857327c-0b43-2f24-1bb1-8456ff059ef9	2021-05-20 21:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:44:00.853+03	2021-05-20 21:44:00.859+03	
37dcf280-042c-793e-f03e-af7ee3db9cef	2021-05-20 21:44:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:44:21.853+03	2021-05-20 21:44:21.86+03	
a5dd93bd-7ec0-cedc-9fa2-c6a7258317f8	2021-05-20 21:44:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:44:41.853+03	2021-05-20 21:44:41.86+03	
afe864e3-b9b6-a27b-14bf-54754b73e5cb	2021-05-20 21:45:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:45:01.853+03	2021-05-20 21:45:01.859+03	
5f7f573e-8dc3-3ce3-900f-944a417d14d8	2021-05-20 21:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:45:22.853+03	2021-05-20 21:45:22.87+03	
67bc7c05-13f9-27f3-74c8-86d12a366314	2021-05-20 21:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:45:42.853+03	2021-05-20 21:45:42.859+03	
0d2fd3c9-f411-6776-c81b-6c17792683e4	2021-05-20 21:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:46:02.853+03	2021-05-20 21:46:02.871+03	
27d2f793-0168-11dd-3881-bd374d378b76	2021-05-20 21:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:46:23.853+03	2021-05-20 21:46:23.859+03	
ff49b96e-b20c-11c9-60dc-36b3232ba5af	2021-05-20 21:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:46:44.853+03	2021-05-20 21:46:44.86+03	
93d69b8d-e5bd-9cdf-2438-4f92007fafcd	2021-05-20 21:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:47:05.853+03	2021-05-20 21:47:05.871+03	
61a4a1d0-be9e-8f5c-0909-23026f3d6696	2021-05-20 21:47:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:47:27.852+03	2021-05-20 21:47:27.86+03	
7e473810-fb1d-f7c3-abb3-9cf999959fcf	2021-05-20 21:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:47:47.853+03	2021-05-20 21:47:47.859+03	
b989ee39-4c3e-84f5-4045-26216e0103e6	2021-05-20 21:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:48:08.852+03	2021-05-20 21:48:08.86+03	
371a80cd-b068-c546-234e-a0da9bb49f8b	2021-05-20 21:48:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:48:28.852+03	2021-05-20 21:48:28.859+03	
7657ec4d-7fa2-47b8-6b91-874cf7b0821e	2021-05-20 21:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:48:48.853+03	2021-05-20 21:48:48.859+03	
ad72eeea-460f-6ff7-1d92-f6309bc0a8b3	2021-05-20 21:49:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:49:10.852+03	2021-05-20 21:49:10.859+03	
94d55bee-98f3-f99e-8621-65cf78ed2e4b	2021-05-20 21:49:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:49:30.853+03	2021-05-20 21:49:30.869+03	
22cc78f7-afdc-f33e-e9ad-1c8c0c77696d	2021-05-20 21:49:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:49:51.854+03	2021-05-20 21:49:51.867+03	
52fcaa36-0484-74de-fda1-48ef62b72ab1	2021-05-20 21:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:50:02.852+03	2021-05-20 21:50:02.867+03	
090a5d9c-1b3c-4ec4-7510-dfec8229d293	2021-05-20 21:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:50:22.853+03	2021-05-20 21:50:22.873+03	
73d0de62-d940-155d-31c5-0234ea5c7cdc	2021-05-20 21:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:50:43.852+03	2021-05-20 21:50:43.858+03	
5519b899-1fb6-fb7c-8c97-bf2e95819d0d	2021-05-20 21:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:51:03.852+03	2021-05-20 21:51:03.859+03	
0d0836cb-cc3d-7a3d-f4e1-4d56ff5e4c45	2021-05-20 21:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:51:23.853+03	2021-05-20 21:51:23.87+03	
2c83d379-97b3-9979-91c9-93c364d62691	2021-05-20 21:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:51:44.852+03	2021-05-20 21:51:44.859+03	
fb71992e-9bf0-8324-793b-901afd416861	2021-05-20 21:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:52:04.853+03	2021-05-20 21:52:04.859+03	
4537a10b-44c4-c69b-3c65-12c851300ac1	2021-05-20 21:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:52:26.853+03	2021-05-20 21:52:26.859+03	
6c864dbe-2cf5-a4d7-035b-849583d0a0ae	2021-05-20 21:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:52:47.852+03	2021-05-20 21:52:47.863+03	
ff10cefa-6e7a-c941-fba6-1cf18d310e08	2021-05-20 21:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:53:07.853+03	2021-05-20 21:53:07.859+03	
d3b69d03-dee3-ae00-790f-ef1d3cf5367a	2021-05-20 21:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:53:28.852+03	2021-05-20 21:53:28.858+03	
9b4045c5-bab2-404d-b5e3-1eb1ceac5c82	2021-05-20 21:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:53:49.852+03	2021-05-20 21:53:49.858+03	
c24a06e8-be55-6877-2d81-f27da764d54b	2021-05-20 21:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:54:09.853+03	2021-05-20 21:54:09.859+03	
afeb5f6a-dcf6-b431-f4bd-6f1d45321e68	2021-05-20 21:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:54:30.852+03	2021-05-20 21:54:30.86+03	
659d592a-ccf8-3056-c3a0-fb64fbfc6e73	2021-05-20 21:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:54:50.852+03	2021-05-20 21:54:50.86+03	
c379a5a6-f17e-ce34-cbb7-86c49d3e6e40	2021-05-20 21:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:55:10.852+03	2021-05-20 21:55:10.859+03	
4e5a85e2-2f18-6e5b-c658-b3ac99a2b327	2021-05-20 21:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:55:30.852+03	2021-05-20 21:55:30.858+03	
5e9a9c42-9228-54b9-0709-a45d3b3483b0	2021-05-20 21:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:55:50.853+03	2021-05-20 21:55:50.859+03	
3dcda454-f855-b28d-f728-54a671baa4ba	2021-05-20 21:56:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:56:11.853+03	2021-05-20 21:56:11.861+03	
8c391e30-567c-c773-0ccc-d0daa7738a85	2021-05-20 21:56:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:56:31.853+03	2021-05-20 21:56:31.86+03	
c8ee080c-7f87-462a-2c17-1fc60f1a6912	2021-05-20 21:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:56:42.852+03	2021-05-20 21:56:42.859+03	
acd7fd27-ef04-7205-a584-caf8ea83b112	2021-05-20 21:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:57:02.853+03	2021-05-20 21:57:02.86+03	
898de999-ae28-1060-3eb8-ca464965a636	2021-05-20 21:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:57:23.853+03	2021-05-20 21:57:23.859+03	
755de314-35f6-35ff-b574-2d73876748c6	2021-05-20 21:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:57:45.853+03	2021-05-20 21:57:45.859+03	
b315233b-4d6e-d22a-a0b8-2abd03d5dd79	2021-05-20 21:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:58:07.852+03	2021-05-20 21:58:07.86+03	
51a56d03-cfc5-541c-370a-a96becfcc7e7	2021-05-20 21:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:58:28.853+03	2021-05-20 21:58:28.859+03	
b9684389-205e-a71f-0860-ea3f961daef9	2021-05-20 21:58:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:58:49.852+03	2021-05-20 21:58:49.86+03	
0577ee3b-96ca-6d45-36af-1457ee7489ad	2021-05-20 21:59:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:59:09.853+03	2021-05-20 21:59:09.859+03	
80cc2d23-0f9a-85e4-38a0-d45189f2c717	2021-05-20 21:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:59:30.853+03	2021-05-20 21:59:30.861+03	
4208eb3a-185e-d05f-a8f6-871250871671	2021-05-20 21:59:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:59:51.853+03	2021-05-20 21:59:51.86+03	
0d1c6ddb-5c37-4521-cba2-9bf281c534e3	2021-05-20 22:00:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:00:01.854+03	2021-05-20 22:00:01.869+03	
9f9c1629-029e-e7e1-1d10-21ee5c823fb0	2021-05-20 22:00:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:00:21.855+03	2021-05-20 22:00:21.875+03	
66d7b18c-7930-a437-93d6-d768ba9ca3bd	2021-05-20 22:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:00:43.853+03	2021-05-20 22:00:43.86+03	
3b76ee60-672f-7b66-5d7d-b09f19446476	2021-05-20 22:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:01:04.852+03	2021-05-20 22:01:04.861+03	
483db877-5dd0-2b6d-1102-c48908d1cdd0	2021-05-20 22:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:01:24.852+03	2021-05-20 22:01:24.86+03	
22493887-b0f5-f9de-13af-1aa9b22b91b3	2021-05-20 22:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:01:44.852+03	2021-05-20 22:01:44.858+03	
616b7d45-ee72-9fd9-a87c-5577e5402e25	2021-05-20 22:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:02:04.852+03	2021-05-20 22:02:04.859+03	
8782613e-5126-11a1-22d7-ea6dd0ec03fe	2021-05-20 22:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:02:24.853+03	2021-05-20 22:02:24.861+03	
82bb6a5f-488d-67f4-c47d-be137263f1af	2021-05-20 22:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:02:45.853+03	2021-05-20 22:02:45.861+03	
1ce88d85-a5e9-fb34-b4c7-717f182a19ad	2021-05-20 22:03:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:03:06.852+03	2021-05-20 22:03:06.859+03	
072529a9-6905-e80a-f147-8987f340557c	2021-05-20 22:03:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:03:26.852+03	2021-05-20 22:03:26.863+03	
bfac512f-0103-8807-0133-ff89a84afb17	2021-05-20 22:03:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:03:46.853+03	2021-05-20 22:03:46.862+03	
0728bd51-49b7-e13e-09db-1ea503e30a40	2021-05-20 22:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:04:07.853+03	2021-05-20 22:04:07.864+03	
c25e2698-05d5-6634-f7e1-1fcefe95cb48	2021-05-20 22:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:04:28.852+03	2021-05-20 22:04:28.859+03	
6ed9cbd0-90a8-e293-404a-d343fb4f2e94	2021-05-20 22:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:04:48.852+03	2021-05-20 22:04:48.858+03	
caa4adde-a52c-1bb3-3be6-dc771b8dbddc	2021-05-20 22:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:05:08.853+03	2021-05-20 22:05:08.86+03	
168fd77a-2197-21c6-b795-7a465547d370	2021-05-20 22:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:05:28.853+03	2021-05-20 22:05:28.861+03	
3e137c67-e8ee-9f12-2d25-597762c71bdb	2021-05-20 22:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:05:49.853+03	2021-05-20 22:05:49.863+03	
8e69a673-f73e-f21f-0971-33f4b0c610fb	2021-05-20 22:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:06:10.852+03	2021-05-20 22:06:10.861+03	
b75b377d-6f64-a798-a9a1-eecb1dff7460	2021-05-20 22:06:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:06:31.853+03	2021-05-20 22:06:31.876+03	
48cce1ad-e49f-eb65-0f38-f4b99383cfbe	2021-05-20 22:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:06:53.852+03	2021-05-20 22:06:53.86+03	
096406a8-83cb-c1d1-2c45-4b71dbc1e050	2021-05-20 22:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:07:13.852+03	2021-05-20 22:07:13.859+03	
9d40b0af-ab05-84f3-41c4-b24f1accef49	2021-05-20 22:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:07:43.853+03	2021-05-20 22:07:43.862+03	
a62c6823-93aa-a1f6-3075-e3dd672ddc5f	2021-05-20 22:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:08:04.852+03	2021-05-20 22:08:04.86+03	
0e938b5f-4cf3-e032-ff3a-e1c3e8cf8833	2021-05-20 22:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:08:24.853+03	2021-05-20 22:08:24.86+03	
d4937519-94d0-67bf-dc81-404a6dd81021	2021-05-20 22:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:08:44.853+03	2021-05-20 22:08:44.859+03	
8457ca27-2220-8d40-b0d7-4b3fdccba3d4	2021-05-20 22:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:09:05.852+03	2021-05-20 22:09:05.859+03	
27ca857c-800a-30f7-3eac-c5f4077e1827	2021-05-20 22:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:09:25.852+03	2021-05-20 22:09:25.859+03	
b9faf4d9-68e5-da3d-2859-de9b4ddef897	2021-05-20 22:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:09:45.852+03	2021-05-20 22:09:45.858+03	
1f00e71f-c5e4-be00-87cb-c9fb5905943c	2021-05-20 22:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 22:10:00.852+03	2021-05-20 22:10:00.858+03	ERROR
4bf9ebf4-e4d2-cc62-083b-cc2f60f521ad	2021-05-20 22:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:10:15.853+03	2021-05-20 22:10:15.859+03	
e697f0ed-15d6-6024-4dcd-f5102ebc3c54	2021-05-20 22:10:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:10:36.852+03	2021-05-20 22:10:36.86+03	
69a25339-3afc-9d7f-91c2-305cb186b103	2021-05-20 22:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:10:57.853+03	2021-05-20 22:10:57.859+03	
0aa3d52c-f6c3-2c79-c93a-1638653096fb	2021-05-20 22:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:11:18.852+03	2021-05-20 22:11:18.859+03	
f4006b26-3321-42b1-7195-491780eb39fa	2021-05-20 22:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:11:39.853+03	2021-05-20 22:11:39.859+03	
2d85a4a1-5a0b-1fa7-5645-f610ffe45a31	2021-05-20 22:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:11:59.853+03	2021-05-20 22:11:59.859+03	
8f11b591-6fb1-80f6-1da5-ee7c192bc83e	2021-05-20 22:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:12:20.852+03	2021-05-20 22:12:20.859+03	
f99a94b8-56c0-3e8f-3daa-74a85f457a58	2021-05-20 22:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:12:41.853+03	2021-05-20 22:12:41.861+03	
de45774c-95a0-f3c2-9aee-3dab7c38b925	2021-05-20 22:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:13:01.854+03	2021-05-20 22:13:01.861+03	
cb743040-6b40-7a35-5629-ec8a28ae0712	2021-05-20 22:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:13:23.853+03	2021-05-20 22:13:23.859+03	
a5d7a59c-d4b6-7956-f16e-c3b6253b42e7	2021-05-20 22:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:13:43.853+03	2021-05-20 22:13:43.863+03	
bb199813-3d63-5c21-e500-8459596d53be	2021-05-20 22:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:14:04.853+03	2021-05-20 22:14:04.859+03	
d3308300-a7b9-d033-bacd-3e6d4e6540de	2021-05-20 22:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:14:25.853+03	2021-05-20 22:14:25.859+03	
f2454dc0-8598-3415-72a7-15c51e923e40	2021-05-20 22:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:14:47.852+03	2021-05-20 22:14:47.859+03	
ca2ff2f3-8f55-fc86-7a56-7ded7f7ddd85	2021-05-20 22:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:15:08.853+03	2021-05-20 22:15:08.859+03	
27b41389-a6ee-7c26-80a0-89e404594fc7	2021-05-20 22:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:15:29.852+03	2021-05-20 22:15:29.86+03	
1714341b-88b2-7d84-55b2-e96392e7b40f	2021-05-20 22:15:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:15:49.853+03	2021-05-20 22:15:49.859+03	
32e18196-5b82-2265-a3d9-89de34c8a76e	2021-05-20 22:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:16:09.853+03	2021-05-20 22:16:09.861+03	
f6419181-714c-3c27-ac1e-5331cbb2b014	2021-05-20 22:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:16:30.852+03	2021-05-20 22:16:30.858+03	
67682f85-d38d-6f98-aaa3-10bcc124cc18	2021-05-20 22:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:16:50.853+03	2021-05-20 22:16:50.86+03	
9f4583b3-7580-fa09-6462-92a54b66e7cf	2021-05-20 22:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:17:10.853+03	2021-05-20 22:17:10.86+03	
98df6e0c-57e9-9efc-576f-bfdc8039cde6	2021-05-20 22:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:17:30.853+03	2021-05-20 22:17:30.862+03	
19162268-4fab-cd99-7cba-06584a6d72f1	2021-05-20 22:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:17:50.853+03	2021-05-20 22:17:50.861+03	
74c6c177-946c-e87b-e655-0dab9041e24c	2021-05-20 21:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:56:52.852+03	2021-05-20 21:56:52.863+03	
b99cfc2e-af8e-52bb-4643-f3b7c1aef8a1	2021-05-20 21:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:57:13.852+03	2021-05-20 21:57:13.862+03	
fc67d179-1c73-bc12-702b-177b235c7c7b	2021-05-20 21:57:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:57:34.854+03	2021-05-20 21:57:34.866+03	
d772e0d9-c4e4-76cd-77f5-3cb637668f6a	2021-05-20 21:57:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:57:56.853+03	2021-05-20 21:57:56.867+03	
da07faff-c65a-7ca9-fb9c-689434a9196c	2021-05-20 21:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:58:17.853+03	2021-05-20 21:58:17.86+03	
b04927c4-a34d-9ce1-80d9-85530a45ed22	2021-05-20 21:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:58:38.853+03	2021-05-20 21:58:38.865+03	
56e2ec94-0912-0a3d-96cd-23be67d7d9bb	2021-05-20 21:58:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:58:59.852+03	2021-05-20 21:58:59.859+03	
8f2a6534-5a16-bd3f-b382-377f6f6905b0	2021-05-20 21:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:59:20.853+03	2021-05-20 21:59:20.86+03	
56f816ad-ec6d-7267-77fc-66b1b1567999	2021-05-20 21:59:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 21:59:41.853+03	2021-05-20 21:59:41.859+03	
115b155b-a034-61df-924d-0db53599c0e3	2021-05-20 22:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 22:00:00.853+03	2021-05-20 22:00:00.863+03	ERROR
b3d4f66b-3dce-4066-a041-da1cdc4eb964	2021-05-20 22:00:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:00:11.855+03	2021-05-20 22:00:11.866+03	
b36a5003-a432-6047-e2e3-e4ed9a149baa	2021-05-20 22:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:00:32.853+03	2021-05-20 22:00:32.862+03	
52b7f198-96b4-14e2-cdd1-3b22360ed852	2021-05-20 22:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:00:53.853+03	2021-05-20 22:00:53.861+03	
3bab65b7-7481-2991-c2f5-ac27e5d49ae0	2021-05-20 22:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:01:14.852+03	2021-05-20 22:01:14.859+03	
3e202f75-8fec-5199-ff71-e71ddc6b9bcf	2021-05-20 22:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:01:34.852+03	2021-05-20 22:01:34.859+03	
63cadcbe-1b2c-9439-4cf3-1f958c98a305	2021-05-20 22:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:01:54.852+03	2021-05-20 22:01:54.86+03	
86808660-dfde-aede-d4dd-a71179ff3c93	2021-05-20 22:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:02:14.852+03	2021-05-20 22:02:14.868+03	
4d5391d3-f119-49b2-6560-198c847d50c1	2021-05-20 22:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:02:35.853+03	2021-05-20 22:02:35.863+03	
0ae62f5b-d679-4ccb-a7c8-c3b8bc9b20d5	2021-05-20 22:02:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:02:55.853+03	2021-05-20 22:02:55.86+03	
ad5a4197-374b-410a-1049-049178bb3b7d	2021-05-20 22:03:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:03:16.852+03	2021-05-20 22:03:16.871+03	
cf42f317-de02-c490-dd45-5c84f7769c47	2021-05-20 22:03:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:03:36.853+03	2021-05-20 22:03:36.865+03	
90d0b74e-3494-fb5a-944d-1125f400fc16	2021-05-20 22:03:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:03:56.853+03	2021-05-20 22:03:56.864+03	
97e089b5-053d-0336-9bd6-3806d4935157	2021-05-20 22:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:04:18.852+03	2021-05-20 22:04:18.86+03	
bfba0ba6-0110-b355-ed0e-ae4dea7348b9	2021-05-20 22:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:04:38.852+03	2021-05-20 22:04:38.858+03	
1466e2a7-3fa2-5ea1-ae15-44410b8e7b21	2021-05-20 22:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:04:58.852+03	2021-05-20 22:04:58.858+03	
645759d4-73dc-020e-60ff-9c8001729d05	2021-05-20 22:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:05:18.853+03	2021-05-20 22:05:18.866+03	
ef1aa236-5a10-cfcc-4b6d-25e359e088ca	2021-05-20 22:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:05:38.853+03	2021-05-20 22:05:38.86+03	
7ef4ca61-73df-0366-08fe-83b5154c4b4d	2021-05-20 22:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:06:00.852+03	2021-05-20 22:06:00.858+03	
54603a83-3380-da27-c904-cbc9e65bee2e	2021-05-20 22:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:06:20.853+03	2021-05-20 22:06:20.859+03	
3debcafa-1862-877f-e146-d1c3b19f3c53	2021-05-20 22:06:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:06:42.853+03	2021-05-20 22:06:42.868+03	
4bac000e-52b8-149c-b84c-9d5e25a90b6d	2021-05-20 22:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:07:03.852+03	2021-05-20 22:07:03.859+03	
c6f07edf-91e1-d70e-c661-9bb756b5a94b	2021-05-20 22:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:07:23.852+03	2021-05-20 22:07:23.86+03	
a4ef5152-f007-832a-9ff2-c074e6802ff7	2021-05-20 22:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:07:33.852+03	2021-05-20 22:07:33.868+03	
54bbe38a-b4d3-fc71-3f36-38cddeab1fb7	2021-05-20 22:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:07:53.853+03	2021-05-20 22:07:53.859+03	
07bfab08-53d7-ef90-33f9-8fc95a5383e8	2021-05-20 22:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:08:14.853+03	2021-05-20 22:08:14.86+03	
d278413c-6251-a1e6-0c04-efa18ad6dfb2	2021-05-20 22:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:08:34.853+03	2021-05-20 22:08:34.861+03	
ad6cd061-00cc-06fb-23cb-7f9f0e2ab2cc	2021-05-20 22:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:08:54.853+03	2021-05-20 22:08:54.86+03	
1199a0bc-c53a-d327-bc3a-7bff4cf05a54	2021-05-20 22:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:09:15.852+03	2021-05-20 22:09:15.859+03	
f8e7d22d-fc96-ae4b-f9dd-c666f55d1ff7	2021-05-20 22:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:09:35.852+03	2021-05-20 22:09:35.872+03	
efae7f55-0441-8c9a-b4e8-13e73a59c66e	2021-05-20 22:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:09:55.853+03	2021-05-20 22:09:55.861+03	
30229ad3-6ad6-ac70-3722-023c0b5acb3e	2021-05-20 22:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:10:05.853+03	2021-05-20 22:10:05.862+03	
be9f8633-c113-9c98-22c7-f34cd9750259	2021-05-20 22:10:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:10:26.852+03	2021-05-20 22:10:26.86+03	
43b5c978-88a6-bee3-9edd-0cf28a7cccb6	2021-05-20 22:10:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:10:46.853+03	2021-05-20 22:10:46.86+03	
7559df07-77fc-03b2-8e1b-4b7b5e008c55	2021-05-20 22:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:11:08.852+03	2021-05-20 22:11:08.86+03	
68430a55-1494-9edf-777f-55f8d133eec8	2021-05-20 22:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:11:28.853+03	2021-05-20 22:11:28.861+03	
aa39e46b-add8-da50-453f-2505d518dde7	2021-05-20 22:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:11:49.853+03	2021-05-20 22:11:49.859+03	
2cc137e1-5525-62df-908c-c51a7c284e24	2021-05-20 22:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:12:09.853+03	2021-05-20 22:12:09.86+03	
97e9d174-0ccc-c726-4aea-44cfe4751817	2021-05-20 22:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:12:30.853+03	2021-05-20 22:12:30.859+03	
73823e9f-cdb0-7a96-35c5-c0cdcabfa8c1	2021-05-20 22:12:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:12:51.854+03	2021-05-20 22:12:51.86+03	
e444a4f1-75ed-837e-29f6-657925d9801b	2021-05-20 22:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:13:12.853+03	2021-05-20 22:13:12.859+03	
8456c6c1-1b0d-ec30-5efe-ee5a5457edc9	2021-05-20 22:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:13:33.853+03	2021-05-20 22:13:33.859+03	
c59a1ae8-7ce3-84d5-4d99-151bdbd28382	2021-05-20 22:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:13:54.853+03	2021-05-20 22:13:54.86+03	
280326e8-a4fc-9361-077a-764f68d013b2	2021-05-20 22:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:14:15.852+03	2021-05-20 22:14:15.859+03	
6dfec9c4-58e3-c65f-53e6-b9afd194e847	2021-05-20 22:14:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:14:36.853+03	2021-05-20 22:14:36.859+03	
2b3cc7cd-56fc-7b0b-f912-b171b8eec145	2021-05-20 22:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:14:57.853+03	2021-05-20 22:14:57.86+03	
e0a45422-a52a-11c2-19d8-4feab5695f4a	2021-05-20 22:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:15:18.853+03	2021-05-20 22:15:18.86+03	
8f7b0963-927e-9191-320c-37e68fca7806	2021-05-20 22:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:15:39.853+03	2021-05-20 22:15:39.861+03	
d35a51b3-9fb3-53e2-ac9b-49455bb599e7	2021-05-20 22:15:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:15:59.853+03	2021-05-20 22:15:59.859+03	
ebe62838-9497-c7cd-914b-f50f9cc34384	2021-05-20 22:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:16:19.853+03	2021-05-20 22:16:19.86+03	
7e9f883a-925b-7649-65d8-16f10a236b43	2021-05-20 22:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:16:40.852+03	2021-05-20 22:16:40.87+03	
edfc2df6-b63d-16ea-2592-289e6c099691	2021-05-20 22:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:17:00.853+03	2021-05-20 22:17:00.86+03	
f09fcd10-078b-4bf3-8554-a474c087b95f	2021-05-20 22:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:17:20.853+03	2021-05-20 22:17:20.86+03	
df1c2b85-a03a-dbb4-0c39-0a47b4c207e9	2021-05-20 22:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:17:40.853+03	2021-05-20 22:17:40.859+03	
43aaa05e-b940-8933-be81-927a96d31274	2021-05-20 22:18:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:18:01.852+03	2021-05-20 22:18:01.859+03	
263f0ca9-5e8d-10f4-7cc5-cc1267969e33	2021-05-20 22:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:18:21.854+03	2021-05-20 22:18:21.86+03	
80629b33-adc0-e827-10be-d176544ef1e3	2021-05-20 22:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:18:43.853+03	2021-05-20 22:18:43.86+03	
a9af726c-38b7-597d-cd76-7e2876580425	2021-05-20 22:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:19:03.853+03	2021-05-20 22:19:03.872+03	
4021e537-5d2f-3be9-ed86-ea11553d18c1	2021-05-20 22:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:19:24.853+03	2021-05-20 22:19:24.86+03	
4a7e87d7-41a9-8976-df90-168aa326562e	2021-05-20 22:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:19:45.852+03	2021-05-20 22:19:45.86+03	
a1fb8b1f-5f3a-a9b0-c167-eb384d2e36e4	2021-05-20 22:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 22:20:00.852+03	2021-05-20 22:20:00.857+03	ERROR
1805b2fd-0a1d-d4f7-0fd8-d8a68e912818	2021-05-20 22:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:20:15.853+03	2021-05-20 22:20:15.859+03	
30e633f0-c009-34ba-a8b6-770a889d2a5f	2021-05-20 22:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:20:37.853+03	2021-05-20 22:20:37.861+03	
7d3e9ddc-615e-40a2-7723-8903f5e0be36	2021-05-20 22:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:20:58.853+03	2021-05-20 22:20:58.859+03	
bbffd138-6a55-71ca-7aba-631adfe0ec21	2021-05-20 22:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:21:19.853+03	2021-05-20 22:21:19.862+03	
adfdcb94-b389-0e86-ce20-e59bb0c7076e	2021-05-20 22:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:21:40.853+03	2021-05-20 22:21:40.86+03	
72176f2d-d58a-b624-7b07-bfa10c0cde97	2021-05-20 22:22:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:22:01.854+03	2021-05-20 22:22:01.862+03	
a42c52f5-26be-d488-3eef-160eafcd3519	2021-05-20 22:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:22:22.853+03	2021-05-20 22:22:22.86+03	
196411fc-4b71-41f6-e3f9-967382fd0671	2021-05-20 22:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:22:44.852+03	2021-05-20 22:22:44.858+03	
21d07d0c-1613-f372-9328-e96346ad1111	2021-05-20 22:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:23:04.853+03	2021-05-20 22:23:04.861+03	
16cbef07-ad92-9e08-c3bd-49c68611c3a2	2021-05-20 22:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:23:24.853+03	2021-05-20 22:23:24.861+03	
c372d009-cd9a-76e0-d721-d9f9141f1b88	2021-05-20 22:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:23:45.852+03	2021-05-20 22:23:45.86+03	
e66d624f-b6f4-f4e5-b7ee-797630a5ec8b	2021-05-20 22:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:24:05.852+03	2021-05-20 22:24:05.859+03	
3be2a77d-3a61-8030-750e-78800f5ba8fa	2021-05-20 22:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:24:25.853+03	2021-05-20 22:24:25.866+03	
0cd40594-88d9-bfe6-da05-242013ac2aa2	2021-05-20 22:24:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:24:46.852+03	2021-05-20 22:24:46.871+03	
942d46fc-9fb6-4401-7e09-e60067ad486d	2021-05-20 22:25:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:25:06.854+03	2021-05-20 22:25:06.867+03	
39ced8d9-b6fd-fb74-9ec8-44b069e9043d	2021-05-20 22:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:25:28.852+03	2021-05-20 22:25:28.858+03	
72e619b1-ff6e-57f4-c81c-b1f24a0187c1	2021-05-20 22:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:25:48.853+03	2021-05-20 22:25:48.859+03	
7aa7c8bb-11a9-95e3-b48c-d0be77d11110	2021-05-20 22:26:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:26:08.854+03	2021-05-20 22:26:08.861+03	
d3b1dd14-fb7e-e046-6192-3ca43620f24a	2021-05-20 22:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:26:29.853+03	2021-05-20 22:26:29.86+03	
52a6acd3-7214-67c8-123d-360ebdba3608	2021-05-20 22:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:26:49.853+03	2021-05-20 22:26:49.859+03	
0628ccd7-80e8-c5f4-ea36-0b504d9f72a5	2021-05-20 22:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:27:10.852+03	2021-05-20 22:27:10.859+03	
227fa866-b959-085c-f98a-7438ccac3b63	2021-05-20 22:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:27:30.853+03	2021-05-20 22:27:30.859+03	
74ea0a71-3a04-76b4-d209-c7522fe24aa7	2021-05-20 22:27:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:27:50.853+03	2021-05-20 22:27:50.86+03	
fa590d11-a7c3-af8a-98bb-bc38b013d659	2021-05-20 22:28:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:28:11.852+03	2021-05-20 22:28:11.858+03	
879c56be-8760-1761-cbb2-a42b6efa2fb8	2021-05-20 22:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:28:32.852+03	2021-05-20 22:28:32.859+03	
30da7fdb-edab-438d-ae4b-9f7cd00df99b	2021-05-20 22:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:28:52.853+03	2021-05-20 22:28:52.861+03	
fe3d0885-0f2e-a078-1285-2cb36ec7e15a	2021-05-20 22:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:29:13.853+03	2021-05-20 22:29:13.863+03	
5069aeae-c49f-ed64-769a-9677e903fd45	2021-05-20 22:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:29:33.853+03	2021-05-20 22:29:33.86+03	
4ca4940b-76c0-7883-bc12-faf035498e0c	2021-05-20 22:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:29:54.852+03	2021-05-20 22:29:54.858+03	
1e309b84-2c64-0cf3-39d6-e791c9c0df0a	2021-05-20 22:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:30:04.852+03	2021-05-20 22:30:04.858+03	
e1f8b157-bd72-1bdf-91a1-595bc4829158	2021-05-20 22:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:30:25.852+03	2021-05-20 22:30:25.859+03	
dc93ded8-eacf-3497-a085-1d5e3d7df44a	2021-05-20 22:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:30:45.853+03	2021-05-20 22:30:45.86+03	
66e99ed7-a3c3-f273-b02c-8db5062c0e6c	2021-05-20 22:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:31:05.853+03	2021-05-20 22:31:05.86+03	
1a457b7e-45e3-7c82-71e5-21b72d20142e	2021-05-20 22:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:31:25.853+03	2021-05-20 22:31:25.86+03	
009e4bd6-cc21-9474-caf3-169b5e9cbbd4	2021-05-20 22:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:31:46.852+03	2021-05-20 22:31:46.862+03	
df8af23c-199b-73c4-05d4-c98e064aee28	2021-05-20 22:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:32:07.853+03	2021-05-20 22:32:07.863+03	
6dd11da9-3b1a-2cd8-6ead-78029317b376	2021-05-20 22:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:32:27.853+03	2021-05-20 22:32:27.871+03	
cba4137e-b7ae-eea7-7ebb-fa1df46666fa	2021-05-20 22:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:32:47.853+03	2021-05-20 22:32:47.86+03	
4981d99e-8204-e450-c0ea-0a5a2370dfbc	2021-05-20 22:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:33:07.853+03	2021-05-20 22:33:07.863+03	
3b0d14a9-4451-9155-4a23-5783061c5e6d	2021-05-20 22:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:33:29.853+03	2021-05-20 22:33:29.86+03	
06e53577-90b8-ad27-eaf7-81f61c4f0ba9	2021-05-20 22:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:33:49.853+03	2021-05-20 22:33:49.859+03	
be27a57c-f046-f344-1afc-1869ffb8ec98	2021-05-20 22:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:34:09.853+03	2021-05-20 22:34:09.86+03	
b49e31de-9b65-e27e-dc23-112ab89332a1	2021-05-20 22:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:34:29.853+03	2021-05-20 22:34:29.859+03	
f87eca68-e1ff-cb81-e3c1-1d5c7aa3e56e	2021-05-20 22:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:34:50.852+03	2021-05-20 22:34:50.864+03	
f1a7b269-aa6b-01d9-5cf8-7e07cdbb7780	2021-05-20 22:35:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:35:10.853+03	2021-05-20 22:35:10.86+03	
689c0def-3bce-1427-8c85-064c655f9891	2021-05-20 22:35:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:35:31.854+03	2021-05-20 22:35:31.861+03	
4bef7a55-7ad6-2b4b-8725-b485ad207f7a	2021-05-20 22:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:35:52.853+03	2021-05-20 22:35:52.86+03	
a6f76a5d-43ce-d4d3-c399-0373bc85b35e	2021-05-20 22:36:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:36:12.853+03	2021-05-20 22:36:12.871+03	
178172b8-8f10-ae66-38f4-cc04cbe51dff	2021-05-20 22:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:36:32.853+03	2021-05-20 22:36:32.872+03	
e3010dee-c527-f109-7ce8-bdd798327715	2021-05-20 22:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:36:52.853+03	2021-05-20 22:36:52.861+03	
b148276b-fed2-e5e3-dfb5-94d8c68a736e	2021-05-20 22:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:37:12.853+03	2021-05-20 22:37:12.859+03	
b26a2ea2-3a4c-41e2-c765-72c381ba16b5	2021-05-20 22:37:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:37:32.853+03	2021-05-20 22:37:32.873+03	
5cccb5c1-a3a0-d987-9b60-12aa67ab6fdb	2021-05-20 22:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:37:52.853+03	2021-05-20 22:37:52.87+03	
ffc9d8bc-1c41-a796-b452-9690fdc5b674	2021-05-20 22:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:38:13.852+03	2021-05-20 22:38:13.859+03	
3147cf20-c2a8-4415-70e1-d7371d39c1b0	2021-05-20 22:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:38:33.853+03	2021-05-20 22:38:33.859+03	
e6412179-470c-2d90-abf4-8752c8a29395	2021-05-20 22:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:38:54.853+03	2021-05-20 22:38:54.86+03	
2acd1d46-d3e2-9487-a921-c330d72e1478	2021-05-20 22:18:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:18:11.853+03	2021-05-20 22:18:11.861+03	
ddc53403-c3a6-6d5e-c30c-b3f9c84b9a5f	2021-05-20 22:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:18:32.853+03	2021-05-20 22:18:32.86+03	
fcdc0be6-89c9-fc68-93eb-308c8a502245	2021-05-20 22:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:18:53.853+03	2021-05-20 22:18:53.859+03	
d4066fd6-8ac6-0bcb-9319-bbb7ee19745b	2021-05-20 22:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:19:14.852+03	2021-05-20 22:19:14.859+03	
e1868a71-6dee-68c5-0d8b-c4dbc71744e5	2021-05-20 22:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:19:35.852+03	2021-05-20 22:19:35.858+03	
0af34d7a-0cd2-dd43-4133-95f483078711	2021-05-20 22:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:19:55.852+03	2021-05-20 22:19:55.858+03	
79bc2b2b-df24-2e3a-a349-369bc5e0e9cf	2021-05-20 22:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:20:05.852+03	2021-05-20 22:20:05.858+03	
cd92fad3-1e23-9dc8-15e8-369aac781a9a	2021-05-20 22:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:20:26.853+03	2021-05-20 22:20:26.859+03	
58c1f0f0-a7a9-a192-bffd-9839ebdbaf06	2021-05-20 22:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:20:48.853+03	2021-05-20 22:20:48.859+03	
f5ca5369-a801-5449-22b7-59c4f4605f4b	2021-05-20 22:21:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:21:09.853+03	2021-05-20 22:21:09.859+03	
cf2f8256-b122-cf1f-b6f1-b639d297630f	2021-05-20 22:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:21:30.853+03	2021-05-20 22:21:30.867+03	
5909b301-444f-d293-8242-91d29ba4c472	2021-05-20 22:21:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:21:51.853+03	2021-05-20 22:21:51.86+03	
359a76eb-fcc7-3979-400a-39f6879252bb	2021-05-20 22:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:22:12.852+03	2021-05-20 22:22:12.872+03	
4adec868-9f3b-1b89-e0d1-80b1f8e26c09	2021-05-20 22:22:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:22:33.853+03	2021-05-20 22:22:33.858+03	
61de0098-0aae-c633-1643-04c03cfe0ea5	2021-05-20 22:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:22:54.852+03	2021-05-20 22:22:54.868+03	
8e44fdf7-ca11-eaa8-0f7b-a3391fca671c	2021-05-20 22:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:23:14.853+03	2021-05-20 22:23:14.86+03	
aa0bfdbd-de02-6697-ac6f-9c783a81fb63	2021-05-20 22:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:23:34.853+03	2021-05-20 22:23:34.859+03	
26b65597-1f80-fac9-6571-90bcda64dfe0	2021-05-20 22:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:23:55.852+03	2021-05-20 22:23:55.859+03	
807cba81-94b0-d8de-2b38-6a57879b827d	2021-05-20 22:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:24:15.853+03	2021-05-20 22:24:15.863+03	
94e2de1b-9444-8f00-99cb-58f1d8004731	2021-05-20 22:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:24:35.853+03	2021-05-20 22:24:35.863+03	
14abc1d5-efbf-38af-dcdf-074a91c7e1ad	2021-05-20 22:24:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:24:56.852+03	2021-05-20 22:24:56.86+03	
bdb61abd-025a-9bed-6def-b750712ceb7d	2021-05-20 22:25:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:25:17.853+03	2021-05-20 22:25:17.859+03	
799ffc68-7ed7-4f83-a137-5408c9d0ab9d	2021-05-20 22:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:25:38.853+03	2021-05-20 22:25:38.86+03	
24df1770-d26e-e460-d2b5-9e64175ea1fc	2021-05-20 22:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:25:58.853+03	2021-05-20 22:25:58.859+03	
3489e4ad-110b-0df3-836a-15e82ed1cb55	2021-05-20 22:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:26:19.853+03	2021-05-20 22:26:19.86+03	
aaa9635d-961b-b1ef-022a-b35a850059cf	2021-05-20 22:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:26:39.853+03	2021-05-20 22:26:39.861+03	
d0087f0c-82c2-f89f-db82-0a11ea7f11fa	2021-05-20 22:26:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:26:59.853+03	2021-05-20 22:26:59.859+03	
8a4392ac-7c7e-a89e-7335-df37c6f8a5a4	2021-05-20 22:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:27:20.853+03	2021-05-20 22:27:20.863+03	
69ebe9c3-32a1-3fb8-9bf1-0e0f0a281577	2021-05-20 22:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:27:40.853+03	2021-05-20 22:27:40.859+03	
ec912833-df31-576d-b2e7-b54d56fc439d	2021-05-20 22:28:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:28:00.853+03	2021-05-20 22:28:00.859+03	
16db30b4-3ce2-7f1c-398b-c907a85023bc	2021-05-20 22:28:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:28:21.853+03	2021-05-20 22:28:21.86+03	
de9ac264-1c44-1930-b543-ca5308ec5728	2021-05-20 22:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:28:42.852+03	2021-05-20 22:28:42.871+03	
def32b59-3d39-db08-8dad-b8964a68c3c9	2021-05-20 22:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:29:02.853+03	2021-05-20 22:29:02.859+03	
ecfd9039-da5e-9efe-a934-1f4f4a0f594b	2021-05-20 22:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:29:23.853+03	2021-05-20 22:29:23.86+03	
31392360-ca3e-f014-5397-26fd1a964dad	2021-05-20 22:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:29:43.853+03	2021-05-20 22:29:43.859+03	
9972a567-979d-3c22-a480-c86d45a3749a	2021-05-20 22:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 22:30:00.853+03	2021-05-20 22:30:00.857+03	ERROR
38405649-d772-cdf8-df21-35ba68715c6a	2021-05-20 22:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:30:14.853+03	2021-05-20 22:30:14.86+03	
6ab90af5-6ecd-5043-c950-82ca26358c44	2021-05-20 22:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:30:35.853+03	2021-05-20 22:30:35.871+03	
916620ed-148c-8fe3-6e5b-2bd660664a8b	2021-05-20 22:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:30:55.853+03	2021-05-20 22:30:55.861+03	
751edbe1-e597-0b1c-16e9-ff08453871ee	2021-05-20 22:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:31:15.853+03	2021-05-20 22:31:15.859+03	
deb77c47-5f4e-ec73-0693-11c794939b4a	2021-05-20 22:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:31:36.852+03	2021-05-20 22:31:36.859+03	
0baeea91-4709-2186-e9f1-30f39675c7cb	2021-05-20 22:31:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:31:56.854+03	2021-05-20 22:31:56.861+03	
b5f8cec5-a034-96b8-67f7-2a5454691608	2021-05-20 22:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:32:17.853+03	2021-05-20 22:32:17.859+03	
eaba8940-bb2b-0dab-30c0-932edb0121b5	2021-05-20 22:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:32:37.853+03	2021-05-20 22:32:37.86+03	
12735005-cfd6-2d38-8377-8907d0b11024	2021-05-20 22:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:32:57.853+03	2021-05-20 22:32:57.859+03	
f59ff57c-d06b-0c78-94a6-3d15465a5341	2021-05-20 22:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:33:18.853+03	2021-05-20 22:33:18.859+03	
e6d06333-d57a-b763-6147-d2c710e060fd	2021-05-20 22:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:33:39.853+03	2021-05-20 22:33:39.86+03	
95ed9fa3-a532-0700-2854-e36b69df7d6d	2021-05-20 22:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:33:59.853+03	2021-05-20 22:33:59.87+03	
af3d4088-cc42-a797-9193-d916dcb15a80	2021-05-20 22:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:34:19.853+03	2021-05-20 22:34:19.861+03	
71e23a80-0db1-3b5b-a054-0420e3c999d2	2021-05-20 22:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:34:40.852+03	2021-05-20 22:34:40.858+03	
522bdd34-cf5c-0baf-2605-be6510182635	2021-05-20 22:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:35:00.852+03	2021-05-20 22:35:00.859+03	
c7ecbac0-fef1-dfcd-df56-b4163f9b8fce	2021-05-20 22:35:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:35:21.853+03	2021-05-20 22:35:21.86+03	
eac858e8-0f9e-303a-2fe3-9c3767f430c6	2021-05-20 22:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:35:42.853+03	2021-05-20 22:35:42.86+03	
7785e413-4978-058e-2083-b1772139df4b	2021-05-20 22:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:36:02.853+03	2021-05-20 22:36:02.87+03	
9e2789db-903d-16c9-26b0-f893b064a2a7	2021-05-20 22:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:36:22.853+03	2021-05-20 22:36:22.872+03	
c5eebfbf-2863-2bca-0c3a-53bac8a29478	2021-05-20 22:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:36:42.853+03	2021-05-20 22:36:42.86+03	
153ba5e6-e267-3499-76ad-266d39f86d91	2021-05-20 22:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:37:02.853+03	2021-05-20 22:37:02.869+03	
a652bfbd-4143-f042-c358-8a5d4b627b31	2021-05-20 22:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:37:22.853+03	2021-05-20 22:37:22.862+03	
54c6a6af-b4bf-2d39-f1d1-91ebdc8732f6	2021-05-20 22:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:37:42.853+03	2021-05-20 22:37:42.859+03	
2d6f6498-e18c-a06c-e9fa-92a475fc7ced	2021-05-20 22:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:38:02.853+03	2021-05-20 22:38:02.859+03	
59ca4f9b-2727-fe7b-03c8-1194d2fa2574	2021-05-20 22:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:38:23.853+03	2021-05-20 22:38:23.86+03	
c45d4ae1-952d-4894-7170-9e550c0a9b37	2021-05-20 22:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:38:44.853+03	2021-05-20 22:38:44.859+03	
1c89043d-e1c3-8ceb-a2f7-cdf33a3c8a8e	2021-05-20 22:39:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:39:04.853+03	2021-05-20 22:39:04.86+03	
c123d523-dc9b-2e50-c8fd-1a532435180b	2021-05-21 21:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:59:08.853+03	2021-05-21 21:59:08.861+03	
9e1e380a-3d89-1997-2502-e2290d9cecc5	2021-05-20 22:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:39:15.853+03	2021-05-20 22:39:15.86+03	
d0484858-ec0a-3aa0-3aa9-9b61814db692	2021-05-21 03:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:09:02.852+03	2021-05-21 03:09:02.872+03	
12fc1be2-61ae-dc41-b1a2-74a57f1f4700	2021-05-20 22:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:39:36.853+03	2021-05-20 22:39:36.859+03	
3bc78c85-4c3e-dbe1-5ab9-ac4685170a34	2021-05-20 22:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 22:40:00.853+03	2021-05-20 22:40:00.858+03	ERROR
9034d002-b2dd-3e7a-659d-303c930dddc0	2021-05-21 03:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:09:23.853+03	2021-05-21 03:09:23.863+03	
38575ada-62e7-5b93-7dec-521278bc010b	2021-05-20 22:40:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:40:18.853+03	2021-05-20 22:40:18.86+03	
05b45be3-f8f0-66c3-5732-95b304ddcd9d	2021-05-20 22:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:40:39.853+03	2021-05-20 22:40:39.86+03	
4420581b-1c31-14b1-151b-d41267e0e60b	2021-05-21 03:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:09:44.852+03	2021-05-21 03:09:44.858+03	
b383c442-9b91-294c-07c9-9ccbcc70f4ca	2021-05-20 22:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:41:00.853+03	2021-05-20 22:41:00.859+03	
a14d7864-cdec-eeb8-4a64-3b837b632980	2021-05-20 22:41:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:41:21.852+03	2021-05-20 22:41:21.859+03	
93ff733a-6a20-6733-e0df-62ae178abf23	2021-05-21 03:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 03:10:00.853+03	2021-05-21 03:10:00.857+03	ERROR
431c79a9-260e-2bf8-16ac-5181ed93cef3	2021-05-20 22:41:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:41:41.853+03	2021-05-20 22:41:41.859+03	
e946eb45-4f78-706d-ec67-17c321437eeb	2021-05-20 22:42:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:42:01.854+03	2021-05-20 22:42:01.869+03	
90d24350-54d4-8e06-a415-67da85f3c26c	2021-05-21 03:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:10:14.852+03	2021-05-21 03:10:14.859+03	
1cee876f-94ff-d944-cbe7-07d7e4271922	2021-05-20 22:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:42:22.853+03	2021-05-20 22:42:22.859+03	
44424fbd-b69f-04d4-f8df-bf12e6c58d65	2021-05-20 22:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:42:42.853+03	2021-05-20 22:42:42.873+03	
5ec9c76b-05e9-5753-b616-c76bb3d45967	2021-05-21 03:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:10:34.853+03	2021-05-21 03:10:34.86+03	
aea106a3-5f73-ae47-79b2-2ec07fa21025	2021-05-20 22:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:43:02.853+03	2021-05-20 22:43:02.858+03	
97d49849-f858-6f3b-171b-46a249ecff7c	2021-05-20 22:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:43:22.853+03	2021-05-20 22:43:22.861+03	
453f0592-e0f7-426e-d48b-b963efcf65b0	2021-05-21 03:10:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:10:56.854+03	2021-05-21 03:10:56.86+03	
d5ed8e1c-b14c-ef7e-1ad2-ce62403a66d8	2021-05-20 22:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:43:42.853+03	2021-05-20 22:43:42.86+03	
7f149880-4a09-f9e8-0941-a751bf210203	2021-05-20 22:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:44:02.853+03	2021-05-20 22:44:02.871+03	
e7384022-19a0-6894-5b72-a251bc3c5045	2021-05-21 03:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:11:17.852+03	2021-05-21 03:11:17.859+03	
51779f24-c06f-bff5-2a06-d47a9ecf5c97	2021-05-20 22:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:44:22.853+03	2021-05-20 22:44:22.872+03	
13830da3-628b-7271-314b-0998b01edb57	2021-05-20 22:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:44:43.852+03	2021-05-20 22:44:43.862+03	
ea548246-402d-e25a-33a3-097ef041da4d	2021-05-20 22:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:45:03.852+03	2021-05-20 22:45:03.859+03	
55e0f23f-3e67-81e2-fe4e-0e09ec3aa4b4	2021-05-20 22:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:45:23.853+03	2021-05-20 22:45:23.86+03	
fb236a72-a171-ab87-4d7c-cdef39972301	2021-05-20 22:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:45:43.853+03	2021-05-20 22:45:43.859+03	
1e00b0d2-66cc-67e6-2cf3-82620ff9c824	2021-05-20 22:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:46:03.853+03	2021-05-20 22:46:03.861+03	
5a737e87-2b70-3413-ea95-372739aa52c8	2021-05-20 22:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:46:24.853+03	2021-05-20 22:46:24.859+03	
db2bba70-55f4-d99c-a84c-3fe70b43bfc7	2021-05-20 22:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:46:45.853+03	2021-05-20 22:46:45.863+03	
efb3f42e-5e9e-9704-eba1-f72ae898c505	2021-05-20 22:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:47:05.853+03	2021-05-20 22:47:05.871+03	
b2c72985-067f-cc62-0991-bba21d792a2a	2021-05-20 22:47:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:47:26.853+03	2021-05-20 22:47:26.86+03	
9bb711db-6b48-768f-fb59-ebb47a435540	2021-05-20 22:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:47:47.852+03	2021-05-20 22:47:47.859+03	
6bce8bdb-9173-0c21-c917-0b5d6777a67d	2021-05-20 22:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:48:07.853+03	2021-05-20 22:48:07.859+03	
50ebf4c7-b659-a9bb-9a0e-73060f1f0f46	2021-05-20 22:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:48:27.853+03	2021-05-20 22:48:27.872+03	
c559a28e-229e-935f-601f-3d55cce10512	2021-05-20 22:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:48:47.853+03	2021-05-20 22:48:47.859+03	
74f3eaaa-5c2b-52d6-c26b-29e3d35b2f94	2021-05-20 22:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:49:07.853+03	2021-05-20 22:49:07.861+03	
d07c3674-461a-6853-976b-08bd9a24c9fb	2021-05-20 22:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:49:28.852+03	2021-05-20 22:49:28.859+03	
5d3b647c-000f-d4c7-b041-1483f0d82781	2021-05-20 22:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:49:48.853+03	2021-05-20 22:49:48.859+03	
585c5ad9-1497-b6b4-6eaa-50ce6c6931a8	2021-05-20 22:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 22:50:00.853+03	2021-05-20 22:50:00.859+03	ERROR
5f59a4cd-caf1-d560-c405-f993e1ebfe93	2021-05-20 22:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:50:19.853+03	2021-05-20 22:50:19.859+03	
dbe75196-4860-112d-c29c-c97b8992f3e7	2021-05-20 22:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:50:39.853+03	2021-05-20 22:50:39.859+03	
9cbcd2af-1a2b-f083-d156-6fe8c60a4657	2021-05-20 22:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:51:00.852+03	2021-05-20 22:51:00.859+03	
d043b7c5-5fbb-a49c-fea7-1b7e07aaac52	2021-05-20 22:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:51:20.852+03	2021-05-20 22:51:20.861+03	
a6465298-1981-67a1-1a53-ba0961aa85fa	2021-05-20 22:51:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:51:40.853+03	2021-05-20 22:51:40.861+03	
01a81a69-b313-c541-456d-76aa304f371b	2021-05-20 22:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:52:00.853+03	2021-05-20 22:52:00.859+03	
f82e68b2-31ca-3ced-ae2d-2b67a9a76c65	2021-05-20 22:52:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:52:21.853+03	2021-05-20 22:52:21.86+03	
6620b715-923b-911a-7a2a-a575c1ade2b8	2021-05-20 22:52:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:52:41.854+03	2021-05-20 22:52:41.871+03	
233c99ad-2e36-70fe-5f03-a997f147e3e0	2021-05-20 22:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:53:02.853+03	2021-05-20 22:53:02.859+03	
6387e1c0-4c68-d9f6-d159-d58881022437	2021-05-20 22:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:53:22.853+03	2021-05-20 22:53:22.86+03	
9dba7464-4140-d850-7a47-b0d9c7054781	2021-05-20 22:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:53:42.853+03	2021-05-20 22:53:42.86+03	
f8499102-4034-5938-e52c-d9e0bfb74a13	2021-05-20 22:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:54:02.853+03	2021-05-20 22:54:02.871+03	
7b01c6b7-13e6-9b21-c21a-e0b8ba8241b4	2021-05-20 22:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:54:23.853+03	2021-05-20 22:54:23.86+03	
934aace5-058e-a1d5-eab1-c417be1062e9	2021-05-20 22:54:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:54:45.852+03	2021-05-20 22:54:45.859+03	
0b1bde79-2369-33d9-2457-afbe31cd1c16	2021-05-20 22:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:55:05.853+03	2021-05-20 22:55:05.877+03	
3f95025f-2e6f-b0b4-cd58-cfc13696e23c	2021-05-20 22:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:55:25.853+03	2021-05-20 22:55:25.861+03	
57866f79-8f54-b6ad-06c2-d9b842866cf7	2021-05-20 22:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:55:45.853+03	2021-05-20 22:55:45.863+03	
09f13b22-7679-ef5a-9fab-52781dcf51bc	2021-05-20 22:56:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:56:06.853+03	2021-05-20 22:56:06.858+03	
b51579dd-60f1-e7d1-159c-2188e9ac83c7	2021-05-20 22:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:56:27.853+03	2021-05-20 22:56:27.859+03	
6e0eec38-a54a-94f4-0d4c-20bef26f34fd	2021-05-20 22:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:56:47.853+03	2021-05-20 22:56:47.859+03	
6297c179-d69f-e76d-af84-27875695cff3	2021-05-20 22:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:57:07.853+03	2021-05-20 22:57:07.865+03	
685be423-7ba1-926e-a212-eee53cc35846	2021-05-20 22:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:57:27.853+03	2021-05-20 22:57:27.862+03	
5bf76623-1f1a-b0e2-4c8d-65e4658dec31	2021-05-20 22:39:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:39:26.852+03	2021-05-20 22:39:26.859+03	
ab44c87c-c5fb-3c89-30ba-ab096d353043	2021-05-20 22:39:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:39:46.853+03	2021-05-20 22:39:46.873+03	
a0784b9b-226e-2a38-6b34-7e0ac7e7a1fb	2021-05-20 22:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:39:57.852+03	2021-05-20 22:39:57.86+03	
12ff442a-c10f-7075-db31-c9cae23884de	2021-05-20 22:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:40:07.853+03	2021-05-20 22:40:07.86+03	
e4c44ae2-9cb7-83c8-d518-ee7de54a6825	2021-05-20 22:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:40:29.853+03	2021-05-20 22:40:29.859+03	
87b26cf2-c72b-2f9f-f0a9-5b3308c715ea	2021-05-20 22:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:40:49.853+03	2021-05-20 22:40:49.859+03	
3da80047-e3f0-8036-20bd-938828a14b78	2021-05-20 22:41:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:41:11.852+03	2021-05-20 22:41:11.859+03	
599694bd-1c89-7ff1-4b8e-d76a3343882e	2021-05-20 22:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:41:31.853+03	2021-05-20 22:41:31.86+03	
ceb13b7b-45d1-99d4-d090-e331d69a0451	2021-05-20 22:41:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:41:51.853+03	2021-05-20 22:41:51.859+03	
37924819-3803-2ca8-7924-2bb74b31b7e1	2021-05-20 22:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:42:12.853+03	2021-05-20 22:42:12.859+03	
8e32aeb4-edea-bbb4-326e-da25ba50d808	2021-05-20 22:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:42:32.853+03	2021-05-20 22:42:32.861+03	
9657a166-55b9-f063-956d-e0637b599a59	2021-05-20 22:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:42:52.853+03	2021-05-20 22:42:52.859+03	
c6c24851-eb3c-b9cd-3f3f-5f2fd86f34db	2021-05-20 22:43:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:43:12.853+03	2021-05-20 22:43:12.859+03	
228be8f8-228b-f69f-f2ed-54ff92788610	2021-05-20 22:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:43:32.853+03	2021-05-20 22:43:32.861+03	
2e3eb47a-8ae4-21ae-2ced-50df26d2e7f7	2021-05-20 22:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:43:52.853+03	2021-05-20 22:43:52.872+03	
18479b8f-d839-367a-8445-a78149845e65	2021-05-20 22:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:44:12.853+03	2021-05-20 22:44:12.861+03	
73b8f000-d5d5-46bf-e9a2-d9409aebd57f	2021-05-20 22:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:44:32.853+03	2021-05-20 22:44:32.871+03	
1e6976ee-51c1-a578-72c8-711069b1284b	2021-05-20 22:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:44:53.852+03	2021-05-20 22:44:53.86+03	
7c7dcb76-bd12-1f1e-088f-4cd177df12b2	2021-05-20 22:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:45:13.853+03	2021-05-20 22:45:13.86+03	
1b328608-17b2-c16f-312c-0e715c4ae5b1	2021-05-20 22:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:45:33.853+03	2021-05-20 22:45:33.862+03	
5d7df471-ce0c-e0d1-0885-a6089e463cb6	2021-05-20 22:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:45:53.853+03	2021-05-20 22:45:53.86+03	
8ef11989-b003-f51b-be3f-d1aa9fb6ba3c	2021-05-20 22:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:46:14.853+03	2021-05-20 22:46:14.865+03	
c49d8448-ae6f-2880-cad7-b1d4c3fd7ff6	2021-05-20 22:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:46:35.852+03	2021-05-20 22:46:35.862+03	
814b06a8-6170-ee20-904d-0e6cf3424700	2021-05-20 22:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:46:55.853+03	2021-05-20 22:46:55.86+03	
aa36ea2b-9453-36de-867c-b3c4c3e61028	2021-05-20 22:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:47:15.853+03	2021-05-20 22:47:15.86+03	
bb742495-2654-6c01-7178-2d32af1d8c84	2021-05-20 22:47:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:47:36.853+03	2021-05-20 22:47:36.861+03	
c4f21171-acf9-394e-5b10-c385d2e448dc	2021-05-20 22:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:47:57.852+03	2021-05-20 22:47:57.859+03	
67df34c3-06ee-88b3-b39e-97dc4727fdb8	2021-05-20 22:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:48:17.853+03	2021-05-20 22:48:17.859+03	
d03a2afc-a4ae-d669-9215-9a1a9c5d51ce	2021-05-20 22:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:48:37.853+03	2021-05-20 22:48:37.86+03	
1efa8181-de81-336c-d78b-f46d4427093b	2021-05-20 22:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:48:57.853+03	2021-05-20 22:48:57.859+03	
4acbffe2-5aa3-cfba-0ef6-269d6c264416	2021-05-20 22:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:49:18.852+03	2021-05-20 22:49:18.858+03	
629f5406-e825-d148-8684-25c542894cc3	2021-05-20 22:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:49:38.852+03	2021-05-20 22:49:38.859+03	
9324936e-f6ca-8f59-f386-746dc4762a09	2021-05-20 22:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:49:58.853+03	2021-05-20 22:49:58.861+03	
104bc41a-1783-b4d8-8265-a337f47aab63	2021-05-20 22:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:50:09.853+03	2021-05-20 22:50:09.86+03	
867edabc-e3d6-38b3-91ae-5e61b8e6e287	2021-05-20 22:50:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:50:29.853+03	2021-05-20 22:50:29.863+03	
28448c5f-4676-968a-7dc3-f39bce5add8f	2021-05-20 22:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:50:49.853+03	2021-05-20 22:50:49.861+03	
6a07ecbe-a2ff-c78c-ba0f-86effc5ee80b	2021-05-20 22:51:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:51:10.852+03	2021-05-20 22:51:10.858+03	
53784096-33d0-8cb2-858d-293c7f4baa9f	2021-05-20 22:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:51:30.853+03	2021-05-20 22:51:30.861+03	
67fa0b4a-3f8d-34f8-7340-1148da05132f	2021-05-20 22:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:51:50.853+03	2021-05-20 22:51:50.86+03	
35c781e4-cd14-642c-4218-8fc880759497	2021-05-20 22:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:52:10.853+03	2021-05-20 22:52:10.87+03	
c0afd0cb-2ad6-c48c-d4d5-f33dd3c5675f	2021-05-20 22:52:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:52:31.853+03	2021-05-20 22:52:31.86+03	
213c48ef-dec3-92b8-0546-ce0639912ad5	2021-05-20 22:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:52:52.852+03	2021-05-20 22:52:52.865+03	
a0d88cf9-c5e6-fc99-f951-d6aea8634700	2021-05-20 22:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:53:12.853+03	2021-05-20 22:53:12.869+03	
b2bcbc0e-777d-18c8-4319-2e1287a7c84b	2021-05-20 22:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:53:32.853+03	2021-05-20 22:53:32.864+03	
a566b9ad-8de9-22f6-113b-6f2d7a4d83fd	2021-05-20 22:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:53:52.853+03	2021-05-20 22:53:52.859+03	
c12cc688-526a-295d-80e5-996e41035d6d	2021-05-20 22:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:54:13.853+03	2021-05-20 22:54:13.862+03	
fbe9886d-5fa9-406f-4ff0-22b04c6ef454	2021-05-20 22:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:54:34.853+03	2021-05-20 22:54:34.859+03	
a076dec4-82fa-4218-1dcd-8003e28f8456	2021-05-20 22:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:54:55.852+03	2021-05-20 22:54:55.859+03	
640e7f15-4a0a-263c-d59d-718ce8550efd	2021-05-20 22:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:55:15.853+03	2021-05-20 22:55:15.859+03	
04af70ff-db53-d3bd-0a69-fb71c9ac98bb	2021-05-20 22:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:55:35.853+03	2021-05-20 22:55:35.86+03	
bce540c3-c4b9-bd6b-0c20-809e8667d785	2021-05-20 22:55:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:55:56.853+03	2021-05-20 22:55:56.861+03	
758ca58f-7b05-ca4e-e019-e60529876d6d	2021-05-20 22:56:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:56:17.853+03	2021-05-20 22:56:17.859+03	
d49434c5-11a2-c1e8-6e79-2650303c1873	2021-05-20 22:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:56:37.853+03	2021-05-20 22:56:37.86+03	
b94b45a8-629a-cf47-7361-083ee6f15b5e	2021-05-20 22:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:56:57.853+03	2021-05-20 22:56:57.859+03	
72c9195c-8f07-2c67-807e-d3dfa9f4236d	2021-05-20 22:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:57:17.853+03	2021-05-20 22:57:17.862+03	
442b1a4b-892d-7375-e70e-3ccbf6e6a903	2021-05-20 22:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:57:37.853+03	2021-05-20 22:57:37.86+03	
b3493832-941e-97cf-e5a6-d293ec810746	2021-05-20 22:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:57:47.853+03	2021-05-20 22:57:47.86+03	
db5c70e6-7a34-7f51-1359-ffdd6544d661	2021-05-20 22:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:57:57.853+03	2021-05-20 22:57:57.859+03	
11e4ba1a-b76b-c5ca-d3f4-bd8a451462ce	2021-05-20 22:58:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:58:08.853+03	2021-05-20 22:58:08.859+03	
3e5deac0-0356-4f08-817a-deb171a7482d	2021-05-20 22:58:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:58:18.853+03	2021-05-20 22:58:18.868+03	
677870c8-e369-9869-37c8-087909c8a8d5	2021-05-20 22:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:58:28.853+03	2021-05-20 22:58:28.86+03	
3c14392f-3bb0-2db1-917c-d88fd987c046	2021-05-20 22:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:58:38.853+03	2021-05-20 22:58:38.86+03	
f3fce642-24ec-21a1-279c-5713687a7bfa	2021-05-20 22:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:58:48.853+03	2021-05-20 22:58:48.86+03	
de0992fc-31e3-fa80-714f-ed5ac1a735c2	2021-05-20 22:58:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:58:59.853+03	2021-05-20 22:58:59.86+03	
d3bbf72e-d0fa-b1a4-e8ab-c4ddb06b7812	2021-05-20 22:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:59:19.853+03	2021-05-20 22:59:19.861+03	
7d2014e1-f7e9-9e08-f70f-1259bc876a4e	2021-05-20 22:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:59:40.853+03	2021-05-20 22:59:40.859+03	
48a4650e-acb1-6165-3cf2-d6aa1a038ca7	2021-05-20 23:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 23:00:00.852+03	2021-05-20 23:00:00.858+03	ERROR
f398db78-6c26-48ff-26d7-a461273839ff	2021-05-20 23:00:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:00:11.853+03	2021-05-20 23:00:11.869+03	
e510f264-fc4b-45cd-01ac-063f1d1aaf44	2021-05-20 23:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:00:32.853+03	2021-05-20 23:00:32.879+03	
b67497bf-924d-907b-19a3-6e803a746893	2021-05-20 23:00:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:00:52.853+03	2021-05-20 23:00:52.868+03	
c73319f7-d4f1-4c6e-f2af-cf98edff279d	2021-05-20 23:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:01:12.853+03	2021-05-20 23:01:12.862+03	
d24d3ab5-cb08-71d9-2cad-adae6d4cf2b6	2021-05-20 23:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:01:33.853+03	2021-05-20 23:01:33.861+03	
326ee830-818e-6473-96e8-4ace1889b578	2021-05-20 23:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:01:54.852+03	2021-05-20 23:01:54.859+03	
080afeb4-51bc-9841-5a88-ba4d668c1540	2021-05-20 23:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:02:14.852+03	2021-05-20 23:02:14.858+03	
f08a77e0-3f6d-df3f-5708-6b1cbd1675a4	2021-05-20 23:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:02:34.853+03	2021-05-20 23:02:34.86+03	
d42ba332-2187-90c7-c5b8-367427efc70b	2021-05-20 23:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:02:54.853+03	2021-05-20 23:02:54.861+03	
b82fb836-19ba-51fd-6638-700d824dcaeb	2021-05-20 23:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:03:15.853+03	2021-05-20 23:03:15.859+03	
83e8ad73-099b-6cba-9e37-5bef31edaeb7	2021-05-20 23:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:03:37.852+03	2021-05-20 23:03:37.862+03	
f884bebf-482e-6d97-ea94-4e083bc93990	2021-05-20 23:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:03:57.853+03	2021-05-20 23:03:57.87+03	
e9dda8c7-33bc-54f4-f8c9-7b3a81cd325e	2021-05-20 23:04:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:04:17.853+03	2021-05-20 23:04:17.859+03	
fd120066-0a38-7ab7-19b7-f9cac895935a	2021-05-20 23:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:04:38.853+03	2021-05-20 23:04:38.864+03	
75f67e60-fa0f-37fc-423e-44cab4c56cff	2021-05-20 23:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:05:00.852+03	2021-05-20 23:05:00.859+03	
e14ba456-2f9c-386d-6cfa-fe5f360690d0	2021-05-20 23:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:05:20.852+03	2021-05-20 23:05:20.859+03	
a79a64d4-7142-2e8a-da06-d2c09183191d	2021-05-20 23:05:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:05:40.852+03	2021-05-20 23:05:40.871+03	
ed974532-8aad-af38-90e2-34ffc1fc3f9d	2021-05-20 23:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:06:00.852+03	2021-05-20 23:06:00.858+03	
268c615d-7426-2afd-0d98-b0b7c7b96d6f	2021-05-20 23:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:06:20.853+03	2021-05-20 23:06:20.86+03	
c6584315-5d73-7b56-d9c1-c5c1d7efbe05	2021-05-20 23:06:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:06:41.853+03	2021-05-20 23:06:41.859+03	
1de6a87a-d1eb-adc6-d2fb-870889035798	2021-05-20 23:07:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:07:02.853+03	2021-05-20 23:07:02.86+03	
fa3f1e45-8728-7b69-055f-f297e75cc1f4	2021-05-20 23:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:07:23.852+03	2021-05-20 23:07:23.864+03	
1eba1918-df70-b104-f0c2-e01f899c7841	2021-05-20 23:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:07:43.853+03	2021-05-20 23:07:43.86+03	
8819a19f-2643-92db-2808-7e9942f2da8b	2021-05-20 23:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:08:04.853+03	2021-05-20 23:08:04.859+03	
55f742f9-4bb5-209c-e2cf-df75255b38cd	2021-05-20 23:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:08:25.853+03	2021-05-20 23:08:25.86+03	
871ed4c2-7662-8e21-c337-68d2e78cd4c9	2021-05-20 23:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:08:45.853+03	2021-05-20 23:08:45.859+03	
008289c1-9b83-e65f-7753-525450fe0c3b	2021-05-20 23:09:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:09:06.854+03	2021-05-20 23:09:06.872+03	
fdfb67c9-666d-abef-8acf-5b55bb388472	2021-05-20 23:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:09:27.852+03	2021-05-20 23:09:27.859+03	
5c1a33e2-f2c5-cefa-2e47-695913ed86d0	2021-05-20 23:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:09:48.853+03	2021-05-20 23:09:48.869+03	
5503c20a-404e-9474-b7d1-a47be1ddef06	2021-05-20 23:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 23:10:00.853+03	2021-05-20 23:10:00.858+03	ERROR
3be9ad0a-15a6-2c88-309d-36d11a5252ed	2021-05-20 23:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:10:18.853+03	2021-05-20 23:10:18.89+03	
aab9c8e7-6abc-0356-f818-56f61d48c73d	2021-05-20 23:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:10:39.852+03	2021-05-20 23:10:39.859+03	
147219f4-0e90-7265-b214-509303d994ee	2021-05-20 23:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:10:59.852+03	2021-05-20 23:10:59.858+03	
6d1eef85-22c0-5563-0c17-c4ffeddf15fd	2021-05-20 23:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:11:19.853+03	2021-05-20 23:11:19.859+03	
497b3bf2-0d4f-59cd-7495-71d33f12837f	2021-05-20 23:11:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:11:40.853+03	2021-05-20 23:11:40.86+03	
06dd8550-4a5e-895c-a1f5-2d8cefe8b078	2021-05-20 23:12:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:12:01.852+03	2021-05-20 23:12:01.882+03	
72d28d3d-4a3a-10fa-8cf8-99706967f99d	2021-05-20 23:12:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:12:21.852+03	2021-05-20 23:12:21.872+03	
ce4ab4a8-b521-a5ae-28ef-9ce456cf59e8	2021-05-20 23:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:12:42.852+03	2021-05-20 23:12:42.859+03	
4bb87f28-3723-672c-f93f-66c2091608db	2021-05-20 23:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:13:02.852+03	2021-05-20 23:13:02.86+03	
4eb4851c-fe77-e12f-476b-efa76712b7a6	2021-05-20 23:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:13:22.853+03	2021-05-20 23:13:22.859+03	
eaf3b678-4765-6e2d-f0e5-d65420365f4a	2021-05-20 23:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:13:43.852+03	2021-05-20 23:13:43.86+03	
c492b105-2b95-ddcf-3cec-f76cfa8e3c5e	2021-05-20 23:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:14:03.853+03	2021-05-20 23:14:03.871+03	
74bfbdcd-f3dd-48ad-667a-570da8a0dbde	2021-05-20 23:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:14:25.852+03	2021-05-20 23:14:25.859+03	
8f47fac5-1a86-8135-a07b-0d902034cf0a	2021-05-20 23:14:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:14:46.852+03	2021-05-20 23:14:46.86+03	
372609f7-beac-3344-a51d-adf7b43e6801	2021-05-20 23:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:15:06.852+03	2021-05-20 23:15:06.872+03	
e056c7c6-f315-83f1-c6dd-da99e5a95067	2021-05-20 23:15:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:15:26.852+03	2021-05-20 23:15:26.859+03	
2817ca49-bdac-a7c7-dfb3-06b18df8556f	2021-05-20 23:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:15:47.853+03	2021-05-20 23:15:47.859+03	
7623f078-ca60-610d-58c6-37ba09bc0e48	2021-05-20 23:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:16:08.853+03	2021-05-20 23:16:08.87+03	
bab49e99-5372-1fcb-c09d-64e9d904249d	2021-05-20 23:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:16:30.852+03	2021-05-20 23:16:30.859+03	
f837e15d-0067-c671-3d8f-c6958780f96b	2021-05-20 23:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:16:50.853+03	2021-05-20 23:16:50.86+03	
295479f9-fd3b-0ae7-9650-567db888f07e	2021-05-20 23:17:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:17:11.854+03	2021-05-20 23:17:11.868+03	
8f68a5be-9ddd-9e6a-8ac1-8415c1f4a2cb	2021-05-20 23:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:17:32.852+03	2021-05-20 23:17:32.859+03	
b124b356-48f7-c7d7-17a8-f5de8ae32715	2021-05-20 23:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:17:52.853+03	2021-05-20 23:17:52.874+03	
2ad078fa-f004-5fdb-ba1e-3acd70b12024	2021-05-20 23:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:18:13.852+03	2021-05-20 23:18:13.859+03	
fd893648-4adc-c60b-4e11-5183136f6146	2021-05-20 23:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:18:34.853+03	2021-05-20 23:18:34.859+03	
64019344-ba2d-525c-368b-687147ef9ffa	2021-05-20 23:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:18:54.853+03	2021-05-20 23:18:54.873+03	
110ca04d-b481-27e2-904d-d2f78460bcf0	2021-05-20 23:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:19:15.852+03	2021-05-20 23:19:15.858+03	
c9f6ebcc-5acc-b51d-ff4b-5ab526b8f95d	2021-05-20 23:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:19:35.853+03	2021-05-20 23:19:35.859+03	
3fa47d59-ea6a-3390-261d-fa60effaa108	2021-05-20 23:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:19:56.853+03	2021-05-20 23:19:56.859+03	
fb362e95-c9b0-0116-42ff-76365e522caa	2021-05-20 22:59:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:59:09.853+03	2021-05-20 22:59:09.861+03	
55dd0c9e-6068-371d-dfc5-9d2a8b2917e5	2021-05-20 22:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:59:29.853+03	2021-05-20 22:59:29.859+03	
5b8fbb98-cc81-e7bf-0290-4e793edddc80	2021-05-20 22:59:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 22:59:51.853+03	2021-05-20 22:59:51.861+03	
70ca02e8-fcad-99e6-0ca4-c5bcd0b5c2b4	2021-05-20 23:00:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:00:01.853+03	2021-05-20 23:00:01.872+03	
d988ccf6-799b-2eaf-ce28-04a49d422d88	2021-05-20 23:00:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:00:21.854+03	2021-05-20 23:00:21.865+03	
1e62fc2d-21fd-f13c-2662-fd828ebe9d02	2021-05-20 23:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:00:42.853+03	2021-05-20 23:00:42.871+03	
0442d1da-3896-298b-8840-3b6c2d0bfc7b	2021-05-20 23:01:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:01:02.853+03	2021-05-20 23:01:02.877+03	
37ec2c7b-a295-c10e-060e-6fc113e3fda3	2021-05-20 23:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:01:22.853+03	2021-05-20 23:01:22.86+03	
a8105fca-b64e-1746-fa36-9cef2541cf53	2021-05-20 23:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:01:43.853+03	2021-05-20 23:01:43.861+03	
bfe09069-ed4d-ee89-2ceb-e39dce9f2cf5	2021-05-20 23:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:02:04.852+03	2021-05-20 23:02:04.859+03	
3c48e60b-8ba5-599f-0b02-986e9e9781d1	2021-05-20 23:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:02:24.852+03	2021-05-20 23:02:24.861+03	
3b939ed1-8908-4b45-1922-fd934ce88439	2021-05-20 23:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:02:44.853+03	2021-05-20 23:02:44.862+03	
29288a73-aa01-5e6c-5d10-92ecd2adc8bd	2021-05-20 23:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:03:04.853+03	2021-05-20 23:03:04.859+03	
0c40804a-bf42-b9e3-2755-986b6ce45a7c	2021-05-20 23:03:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:03:26.853+03	2021-05-20 23:03:26.964+03	
b881178e-2fe5-cb29-49c9-7893f7a1b616	2021-05-20 23:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:03:47.852+03	2021-05-20 23:03:47.859+03	
740393f1-592e-658c-415d-b29333dad265	2021-05-20 23:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:04:07.853+03	2021-05-20 23:04:07.859+03	
85e5cbfd-0da4-23c9-f87e-b6f7a4200986	2021-05-20 23:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:04:27.853+03	2021-05-20 23:04:27.859+03	
695ff9c0-ed70-0586-456a-24bee42d2421	2021-05-20 23:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:04:49.853+03	2021-05-20 23:04:49.869+03	
db675a47-b835-fe25-6804-de633e867872	2021-05-20 23:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:05:10.852+03	2021-05-20 23:05:10.859+03	
4c67bfde-46e2-8b70-c891-ff26a33b55f8	2021-05-20 23:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:05:30.852+03	2021-05-20 23:05:30.86+03	
be242261-0f62-7aa2-609c-403dbb14442a	2021-05-20 23:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:05:50.852+03	2021-05-20 23:05:50.859+03	
ea6f2dce-1620-82bc-2c60-224d73a33a75	2021-05-20 23:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:06:10.852+03	2021-05-20 23:06:10.859+03	
dffeec9f-c615-1882-fd69-1a3b8cf1f27e	2021-05-20 23:06:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:06:31.852+03	2021-05-20 23:06:31.859+03	
997d42f1-9a1c-80d5-ce37-722ac63e7446	2021-05-20 23:06:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:06:51.853+03	2021-05-20 23:06:51.86+03	
ed33fcf7-3a41-ec4e-16c8-33f3e3317480	2021-05-20 23:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:07:13.852+03	2021-05-20 23:07:13.86+03	
63e28d21-a94f-affa-2035-155fa0eb8a4a	2021-05-20 23:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:07:33.852+03	2021-05-20 23:07:33.859+03	
7d3b58b4-ba46-b999-eac9-2fb3ec4b0597	2021-05-20 23:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:07:54.852+03	2021-05-20 23:07:54.859+03	
ed7dc167-2501-c4d6-ec58-e138116fd782	2021-05-20 23:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:08:15.852+03	2021-05-20 23:08:15.859+03	
962d9f0f-990e-de75-8cd7-0c52e62789ff	2021-05-20 23:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:08:35.853+03	2021-05-20 23:08:35.863+03	
332dd019-02d0-d547-29c1-b0a9647601fc	2021-05-20 23:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:08:56.852+03	2021-05-20 23:08:56.86+03	
6040db4b-b9f9-25f4-4be6-a9ec21ffa037	2021-05-20 23:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:09:17.852+03	2021-05-20 23:09:17.862+03	
c9f7e674-722d-9bdb-ac87-202c69d51966	2021-05-20 23:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:09:37.853+03	2021-05-20 23:09:37.861+03	
6ae47e2b-5c71-9228-88af-a4f37127a9a1	2021-05-20 23:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:09:58.853+03	2021-05-20 23:09:58.859+03	
1e5890c0-b4dd-b5f2-35e3-8c2fea81870f	2021-05-20 23:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:10:08.853+03	2021-05-20 23:10:08.861+03	
fe46fa84-684e-3c4c-ce2c-4760be40188d	2021-05-20 23:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:10:28.853+03	2021-05-20 23:10:28.86+03	
0195d49d-e4da-84a0-2f87-2c9d52a8ddf1	2021-05-20 23:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:10:49.852+03	2021-05-20 23:10:49.858+03	
4a7fee57-e008-cc41-e5b9-f224ce3bf080	2021-05-20 23:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:11:09.853+03	2021-05-20 23:11:09.86+03	
67ed799d-1d90-f598-48ae-71a445921cdb	2021-05-20 23:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:11:29.853+03	2021-05-20 23:11:29.86+03	
a419ab52-e411-9cb3-bf05-f39c5b00654f	2021-05-20 23:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:11:50.853+03	2021-05-20 23:11:50.859+03	
7078d40f-e2a0-75e0-4255-511d9f807475	2021-05-20 23:12:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:12:11.852+03	2021-05-20 23:12:11.86+03	
1351070a-da11-087b-7d0f-036391d1647b	2021-05-20 23:12:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:12:31.854+03	2021-05-20 23:12:31.861+03	
2a1c31fc-01db-93ec-487c-7ea21d059464	2021-05-20 23:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:12:52.852+03	2021-05-20 23:12:52.859+03	
10b900f8-0bd3-f0da-f3b4-2042f75efa55	2021-05-20 23:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:13:12.853+03	2021-05-20 23:13:12.86+03	
d1b1c662-c563-fe99-3dfe-4dab036241af	2021-05-20 23:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:13:32.853+03	2021-05-20 23:13:32.859+03	
f43f5e0c-3862-2ed2-a5cd-fcc221bb51a5	2021-05-20 23:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:13:53.853+03	2021-05-20 23:13:53.86+03	
242e2428-98fc-c563-6b58-49d9eff720ef	2021-05-20 23:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:14:14.853+03	2021-05-20 23:14:14.86+03	
c98f23ae-f555-4645-64e4-8b1449ffec91	2021-05-20 23:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:14:35.853+03	2021-05-20 23:14:35.859+03	
abae6125-3500-5ef3-0575-e0a9d459d81f	2021-05-20 23:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:14:56.852+03	2021-05-20 23:14:56.859+03	
f4df1d37-1556-bff0-a36c-8326991a9481	2021-05-20 23:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:15:16.852+03	2021-05-20 23:15:16.859+03	
b027933c-5be3-a50c-a80f-fc910a73040a	2021-05-20 23:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:15:36.853+03	2021-05-20 23:15:36.86+03	
e2a9c707-48fb-7f30-a8b1-aeb6194efcc3	2021-05-20 23:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:15:58.853+03	2021-05-20 23:15:58.86+03	
eec7a2b4-8397-6372-4839-db47e5ad67fe	2021-05-20 23:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:16:19.853+03	2021-05-20 23:16:19.859+03	
ef68ae1b-5c87-cc89-abf3-12c4cc2737cb	2021-05-20 23:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:16:40.853+03	2021-05-20 23:16:40.859+03	
b5e0367c-0de8-5722-f9f7-7980557cc790	2021-05-20 23:17:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:17:01.853+03	2021-05-20 23:17:01.86+03	
edd963e6-6de3-0f06-4edc-9553eb985c16	2021-05-20 23:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:17:22.852+03	2021-05-20 23:17:22.868+03	
8f2cc273-3fd3-c865-e315-7e658f5b1dac	2021-05-20 23:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:17:42.852+03	2021-05-20 23:17:42.862+03	
cfd03080-16db-b566-be33-9b75918e0fdd	2021-05-20 23:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:18:03.852+03	2021-05-20 23:18:03.873+03	
6073add3-070d-dbd8-9f1a-41a96f77c8b9	2021-05-20 23:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:18:23.853+03	2021-05-20 23:18:23.87+03	
76f341b7-a755-a327-9d54-8f2459c46533	2021-05-20 23:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:18:44.853+03	2021-05-20 23:18:44.86+03	
965281c3-0994-4f66-272f-7f5929bc7e34	2021-05-20 23:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:19:05.852+03	2021-05-20 23:19:05.859+03	
8f24b221-e8f1-fb90-8103-5b1e881c0260	2021-05-20 23:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:19:25.852+03	2021-05-20 23:19:25.859+03	
38afb75b-a42e-4e3e-e5e9-b8838ccad42f	2021-05-20 23:19:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:19:46.852+03	2021-05-20 23:19:46.861+03	
981a9231-3633-fb40-7525-3ff32dee4649	2021-05-20 23:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 23:20:00.853+03	2021-05-20 23:20:00.857+03	ERROR
72d94c98-4b73-c73f-baf2-501a66edefb2	2021-05-20 23:20:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:20:06.854+03	2021-05-20 23:20:06.864+03	
24452d57-3ab1-5e4e-4c30-67ebd81f70aa	2021-05-20 23:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:20:28.853+03	2021-05-20 23:20:28.861+03	
8f9c7af7-1b02-e769-a3c4-791900bdf726	2021-05-20 23:20:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:20:49.852+03	2021-05-20 23:20:49.859+03	
c47ea443-45ab-91d7-4495-8075d9601e78	2021-05-20 23:21:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:21:09.853+03	2021-05-20 23:21:09.859+03	
7f3cc610-27b2-6ecc-b4f1-cfe99c1bdfcd	2021-05-20 23:21:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:21:29.853+03	2021-05-20 23:21:29.864+03	
e219c15e-6ca9-4846-245c-9ff82fab7d31	2021-05-20 23:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:21:50.853+03	2021-05-20 23:21:50.859+03	
a2c16dc8-6ec0-6ff3-41e2-cb71fad778c9	2021-05-20 23:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:22:10.853+03	2021-05-20 23:22:10.859+03	
dcf86a65-64b2-e9ed-2cf1-a0d55f51c5c1	2021-05-20 23:22:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:22:31.853+03	2021-05-20 23:22:31.86+03	
68eca32f-719f-ae9a-af8f-b68c1ffc8408	2021-05-20 23:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:22:52.853+03	2021-05-20 23:22:52.861+03	
fd84d361-74cc-8374-4849-6ee11308ed2e	2021-05-20 23:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:23:14.853+03	2021-05-20 23:23:14.871+03	
e1284bb4-f3a3-97e6-a71f-87e0f3016f40	2021-05-20 23:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:23:34.853+03	2021-05-20 23:23:34.859+03	
568bba5d-1c84-b0ba-37c6-3b9eba6dbb72	2021-05-20 23:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:23:55.852+03	2021-05-20 23:23:55.859+03	
701e77f9-c784-1c58-c384-c3ba8dde34b4	2021-05-20 23:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:24:15.853+03	2021-05-20 23:24:15.86+03	
ebd4c88a-8830-06e0-14bb-842856c26a73	2021-05-20 23:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:24:35.853+03	2021-05-20 23:24:35.859+03	
40afb391-8c43-66a6-7f03-1d1d9b1d91b0	2021-05-20 23:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:24:55.853+03	2021-05-20 23:24:55.859+03	
7070b20f-685b-7994-a179-8ae272f284f4	2021-05-20 23:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:25:15.853+03	2021-05-20 23:25:15.86+03	
36b44ad1-76c2-e77d-74d7-edf16906f22f	2021-05-20 23:25:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:25:46.854+03	2021-05-20 23:25:46.865+03	
ba66f13e-0fda-5cdb-36e0-9618481e31ea	2021-05-20 23:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:26:07.853+03	2021-05-20 23:26:07.859+03	
8bab31d2-c115-321f-b09f-7471b39f1d8c	2021-05-20 23:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:26:27.853+03	2021-05-20 23:26:27.861+03	
b7f579b6-5845-6b32-6272-d19ce824daab	2021-05-20 23:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:26:49.853+03	2021-05-20 23:26:49.859+03	
da883258-14a3-ac90-4843-dcd533d240d1	2021-05-20 23:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:27:10.853+03	2021-05-20 23:27:10.859+03	
3db7b074-e414-e2eb-c05b-5fb78d2d6057	2021-05-20 23:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:27:30.853+03	2021-05-20 23:27:30.86+03	
ed53b378-728d-d9ec-ebbd-26a9bd135d56	2021-05-20 23:27:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:27:51.852+03	2021-05-20 23:27:51.86+03	
18334ea4-73d4-2964-0bb0-90d72b41355e	2021-05-20 23:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:28:12.852+03	2021-05-20 23:28:12.861+03	
69a84432-7949-2552-eaae-18c1bf0fbb8d	2021-05-20 23:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:28:32.853+03	2021-05-20 23:28:32.858+03	
20d8041e-42d7-6b55-0fb8-0717acd120f4	2021-05-20 23:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:28:52.853+03	2021-05-20 23:28:52.86+03	
9e19978e-dce8-6d18-5748-bdca205ef8c9	2021-05-20 23:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:29:13.853+03	2021-05-20 23:29:13.86+03	
bbffefe8-9531-02be-a6a5-6556f41d9374	2021-05-20 23:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:29:34.852+03	2021-05-20 23:29:34.863+03	
4e9485cd-4f0d-e716-688a-0587b48eabbe	2021-05-20 23:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:29:54.852+03	2021-05-20 23:29:54.859+03	
e0cf7236-8bed-262f-031b-c978ea7f1101	2021-05-20 23:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:30:04.852+03	2021-05-20 23:30:04.859+03	
5acd842b-98fb-e29c-0fa2-bdd95ca83360	2021-05-20 23:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:30:24.853+03	2021-05-20 23:30:24.859+03	
11399780-b6e8-9de6-91f9-4cb69c08ee32	2021-05-20 23:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:30:44.853+03	2021-05-20 23:30:44.859+03	
c8b26c1b-da6d-859e-00fe-607b90bdbade	2021-05-20 23:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:31:05.853+03	2021-05-20 23:31:05.86+03	
fa2b0c11-1a33-0ec3-4c67-860c98514b5a	2021-05-20 23:31:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:31:26.852+03	2021-05-20 23:31:26.86+03	
429d54ce-e615-871d-01aa-7d78114627c7	2021-05-20 23:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:31:46.852+03	2021-05-20 23:31:46.859+03	
b44c02a1-6b9b-2b84-89a6-29570143d5a7	2021-05-20 23:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:32:07.853+03	2021-05-20 23:32:07.86+03	
0f56acd9-87e5-81b9-d510-322b8c955d07	2021-05-20 23:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:32:28.852+03	2021-05-20 23:32:28.858+03	
a14e00b1-066c-c240-a457-95d5a4d419b8	2021-05-20 23:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:32:48.852+03	2021-05-20 23:32:48.859+03	
82a0ccb3-1f8b-6ccf-21a6-57d59e70e051	2021-05-20 23:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:33:08.852+03	2021-05-20 23:33:08.859+03	
eedd368e-1814-36e4-2f42-225b0f0782a1	2021-05-20 23:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:33:28.853+03	2021-05-20 23:33:28.86+03	
1a2cf257-5f79-1f13-9ff7-bc91c29a62ce	2021-05-20 23:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:33:49.853+03	2021-05-20 23:33:49.86+03	
9016766c-e832-1e1d-8d91-a6a651d18707	2021-05-20 23:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:34:09.853+03	2021-05-20 23:34:09.86+03	
c9a17725-66f9-caf2-5926-99175fcaee9b	2021-05-20 23:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:34:30.852+03	2021-05-20 23:34:30.859+03	
dff0237a-9e34-e32e-0474-e56c001e4548	2021-05-20 23:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:34:50.853+03	2021-05-20 23:34:50.859+03	
1e17742a-8800-488b-139a-fb385b0b5f47	2021-05-20 23:35:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:35:11.853+03	2021-05-20 23:35:11.86+03	
9bfd88fd-a0e6-567b-756c-835bad53fd16	2021-05-20 23:35:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:35:31.854+03	2021-05-20 23:35:31.861+03	
2ecd4059-a25c-7611-d5ea-fbe6f26a9c25	2021-05-20 23:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:35:53.852+03	2021-05-20 23:35:53.859+03	
5cf2134b-0405-5457-9405-2b14fede1cf8	2021-05-20 23:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:36:13.852+03	2021-05-20 23:36:13.86+03	
c1ac3a16-3566-2201-7c8d-aa9a9ec77801	2021-05-20 23:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:36:33.853+03	2021-05-20 23:36:33.869+03	
7fb4153a-45a4-c80e-3969-b8151d1c4936	2021-05-20 23:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:36:53.853+03	2021-05-20 23:36:53.862+03	
ce23ec81-c1ae-9b9e-e2f3-558fb9011383	2021-05-20 23:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:37:14.852+03	2021-05-20 23:37:14.858+03	
6e911376-b58f-5a59-dedf-58359e17fa70	2021-05-20 23:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:37:35.853+03	2021-05-20 23:37:35.859+03	
1e23acf5-fc77-fbcb-fd6e-c8a5b29b11f7	2021-05-20 23:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:37:55.853+03	2021-05-20 23:37:55.862+03	
36b8d0ad-bede-7484-ed43-7c94c51e5d2c	2021-05-20 23:38:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:38:16.853+03	2021-05-20 23:38:16.859+03	
d0e45542-ec87-8ece-4179-51394a4438d3	2021-05-20 23:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:38:38.852+03	2021-05-20 23:38:38.859+03	
7be9f2da-1572-bc23-05eb-d010df0616d6	2021-05-20 23:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:38:58.853+03	2021-05-20 23:38:58.862+03	
34f6bb79-7e2c-bd44-bb49-093f30db3baf	2021-05-20 23:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:39:19.852+03	2021-05-20 23:39:19.859+03	
f34a3ca7-092b-c072-7221-61fb4326dbfb	2021-05-20 23:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:39:39.852+03	2021-05-20 23:39:39.859+03	
5dd1f0d0-91b9-5b3f-c2f8-ac1fca483649	2021-05-20 23:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:39:59.852+03	2021-05-20 23:39:59.859+03	
cc0e42a2-dd39-e9a6-3786-777b7a77b199	2021-05-20 23:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:40:09.852+03	2021-05-20 23:40:09.861+03	
2e663d3f-2c31-d1aa-cbd8-e1bfe2403bdf	2021-05-20 23:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:40:29.852+03	2021-05-20 23:40:29.861+03	
57e1d90c-1b74-b32b-51a9-2644ddcbcd2f	2021-05-20 23:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:40:49.853+03	2021-05-20 23:40:49.86+03	
eff36671-0a15-7add-e069-1fc36ab4235d	2021-05-20 23:41:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:41:10.853+03	2021-05-20 23:41:10.859+03	
c9609805-a6e7-f862-5039-6c618661b865	2021-05-20 23:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:20:17.853+03	2021-05-20 23:20:17.859+03	
f099a5ed-0432-7e3a-788f-1a3035f20c11	2021-05-20 23:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:20:38.853+03	2021-05-20 23:20:38.861+03	
66742b9f-4a38-931a-6d40-15fc2192404a	2021-05-20 23:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:20:59.852+03	2021-05-20 23:20:59.859+03	
331f5949-7be7-ff0f-3ece-fe5cab7fec3a	2021-05-20 23:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:21:19.853+03	2021-05-20 23:21:19.861+03	
af6094de-fe50-a70e-d552-bfaa15c3d913	2021-05-20 23:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:21:39.853+03	2021-05-20 23:21:39.86+03	
19783049-c3bd-b0b5-0e42-9a25c95307a7	2021-05-20 23:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:22:00.853+03	2021-05-20 23:22:00.86+03	
8b1e30a3-38ea-3f8d-ada1-6e3754b16ce7	2021-05-20 23:22:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:22:21.852+03	2021-05-20 23:22:21.859+03	
6a5dba0a-2520-9dc6-34cf-7044a993a6a6	2021-05-20 23:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:22:42.853+03	2021-05-20 23:22:42.871+03	
04bda993-6904-f4fe-6fad-bc98632149cb	2021-05-20 23:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:23:03.853+03	2021-05-20 23:23:03.863+03	
177a1e73-af4c-f6f6-9852-7a47cb865a86	2021-05-20 23:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:23:24.853+03	2021-05-20 23:23:24.86+03	
fcc7083c-c1fa-6c35-6e37-9da19f4d2e1a	2021-05-20 23:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:23:45.852+03	2021-05-20 23:23:45.86+03	
d4a26504-2712-e5cc-6a41-3ae7206be447	2021-05-20 23:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:24:05.853+03	2021-05-20 23:24:05.872+03	
937ec9f8-84e4-765b-b47d-9e51c323427e	2021-05-20 23:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:24:25.853+03	2021-05-20 23:24:25.861+03	
7e5edbd3-7a59-5cd9-5270-92228930a9ec	2021-05-20 23:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:24:45.853+03	2021-05-20 23:24:45.859+03	
1cb4b3f6-b26e-72f4-569c-7388ea76e8ea	2021-05-20 23:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:25:05.853+03	2021-05-20 23:25:05.859+03	
773d4cb1-d7a0-fdbc-519e-60ca3242097a	2021-05-20 23:25:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:25:26.852+03	2021-05-20 23:25:26.858+03	
7f79854e-8bcb-e857-d0de-e6a3fb025330	2021-05-20 23:25:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:25:36.852+03	2021-05-20 23:25:36.859+03	
1f15312f-3cde-0839-e701-9bff4e71deee	2021-05-20 23:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:25:57.853+03	2021-05-20 23:25:57.86+03	
c9b4c9d3-19b6-db1e-16fb-8a148d11e2ca	2021-05-20 23:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:26:17.853+03	2021-05-20 23:26:17.864+03	
a9f302ce-3cdc-93c5-ddd0-86782af5ce8b	2021-05-20 23:26:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:26:38.853+03	2021-05-20 23:26:38.859+03	
5c41e756-4e0f-e636-8be9-67c6a6baa26a	2021-05-20 23:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:27:00.853+03	2021-05-20 23:27:00.86+03	
8448ae79-c634-561c-a99a-ef1b333cc37a	2021-05-20 23:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:27:20.853+03	2021-05-20 23:27:20.859+03	
28aea417-0008-e771-acfd-04a7aa587451	2021-05-20 23:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:27:40.853+03	2021-05-20 23:27:40.86+03	
41b8552e-2f0d-5938-772b-f60bb2b52a8e	2021-05-20 23:28:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:28:01.853+03	2021-05-20 23:28:01.86+03	
c8ea0f85-c625-9bda-c07c-1a54bcf9580e	2021-05-20 23:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:28:22.853+03	2021-05-20 23:28:22.859+03	
64954cf0-9435-71a8-73ec-5be9a5613044	2021-05-20 23:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:28:42.853+03	2021-05-20 23:28:42.861+03	
09c9d638-56b5-f20e-23e1-ccc13951a428	2021-05-20 23:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:29:03.852+03	2021-05-20 23:29:03.86+03	
a8856a80-ae6d-2b1e-86de-336b28d195dd	2021-05-20 23:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:29:23.853+03	2021-05-20 23:29:23.86+03	
b68031f3-8b1f-39e2-b272-5a1bca83ce17	2021-05-20 23:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:29:44.852+03	2021-05-20 23:29:44.858+03	
10b5ee45-d195-151a-6739-20a8e25e7c52	2021-05-20 23:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 23:30:00.852+03	2021-05-20 23:30:00.857+03	ERROR
dc8fdc1e-3406-16b9-52f4-97de460c5577	2021-05-20 23:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:30:14.853+03	2021-05-20 23:30:14.86+03	
e5ca7105-c947-7b30-5f57-673dcca8cb33	2021-05-20 23:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:30:34.853+03	2021-05-20 23:30:34.86+03	
0156cc13-a368-1f62-4550-a8fa38568226	2021-05-20 23:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:30:55.853+03	2021-05-20 23:30:55.86+03	
81a1b119-48b8-e96f-6fd8-2d23779360d1	2021-05-20 23:31:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:31:16.852+03	2021-05-20 23:31:16.858+03	
45de62e4-4226-78e0-fe75-b4c37f40a164	2021-05-20 23:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:31:36.852+03	2021-05-20 23:31:36.859+03	
347eaf98-5950-08a3-412b-eab6dbe97319	2021-05-20 23:31:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:31:56.854+03	2021-05-20 23:31:56.861+03	
463196bb-6207-f694-b48a-4bfa80e2f8c7	2021-05-20 23:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:32:18.852+03	2021-05-20 23:32:18.859+03	
6a75b28c-0fbc-dc59-21ff-abdb906ad591	2021-05-20 23:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:32:38.852+03	2021-05-20 23:32:38.858+03	
bddef2a8-bb1b-80a6-7036-95c0ab8c7706	2021-05-20 23:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:32:58.852+03	2021-05-20 23:32:58.858+03	
93604f19-9ba1-b826-2a87-c3890c6dfb1f	2021-05-20 23:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:33:18.853+03	2021-05-20 23:33:18.859+03	
d75c3dfc-653b-274f-99b1-fc023b473a83	2021-05-20 23:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:33:38.853+03	2021-05-20 23:33:38.86+03	
b9dd5841-af20-88d4-8451-c2bc39194c0f	2021-05-20 23:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:33:59.853+03	2021-05-20 23:33:59.86+03	
47d30561-cc99-f8e6-d0e5-71f50789b164	2021-05-20 23:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:34:20.852+03	2021-05-20 23:34:20.858+03	
7869606c-1340-03fc-844e-c66e5c269ac5	2021-05-20 23:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:34:40.853+03	2021-05-20 23:34:40.859+03	
fd756f2d-63fa-ceb1-f0e8-0c0ba9776577	2021-05-20 23:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:35:01.853+03	2021-05-20 23:35:01.86+03	
142cee68-8949-78d3-5eb8-2fd653e3aecf	2021-05-20 23:35:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:35:21.853+03	2021-05-20 23:35:21.86+03	
8153f5f9-12a4-d81b-9455-d533d60c6749	2021-05-20 23:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:35:42.853+03	2021-05-20 23:35:42.859+03	
a4b8cf11-e5de-99ec-a8e4-6ed954292bc2	2021-05-20 23:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:36:03.852+03	2021-05-20 23:36:03.86+03	
a4e3ad21-b59e-8bed-851b-12c3f16be5bf	2021-05-20 23:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:36:23.853+03	2021-05-20 23:36:23.859+03	
2066f426-be66-b09c-920d-d587fdb0a004	2021-05-20 23:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:36:43.853+03	2021-05-20 23:36:43.86+03	
d5392074-9c46-be4c-b013-cc11cff6f0ea	2021-05-20 23:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:37:03.853+03	2021-05-20 23:37:03.86+03	
0ca8b714-fb93-8cad-546a-338f274e886c	2021-05-20 23:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:37:24.853+03	2021-05-20 23:37:24.859+03	
3d516473-932d-982f-dc1d-2288d42ef61e	2021-05-20 23:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:37:45.853+03	2021-05-20 23:37:45.859+03	
94333038-5f86-8be9-e4d0-cbe054f8ff6c	2021-05-20 23:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:38:05.853+03	2021-05-20 23:38:05.863+03	
ef54efd5-0cfb-aaea-ece6-255d58f540df	2021-05-20 23:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:38:27.853+03	2021-05-20 23:38:27.879+03	
30dc0509-bfd6-cadf-d8de-af457925b85a	2021-05-20 23:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:38:48.852+03	2021-05-20 23:38:48.87+03	
ac5e4990-d0ad-dee7-61a6-51759b9e217b	2021-05-20 23:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:39:08.853+03	2021-05-20 23:39:08.862+03	
e066d8a0-7e35-e79c-486b-cdffe8f25fd5	2021-05-20 23:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:39:29.852+03	2021-05-20 23:39:29.863+03	
4ea3781f-cf34-7e8e-880f-952970e9543b	2021-05-20 23:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:39:49.852+03	2021-05-20 23:39:49.858+03	
9b43a000-5cea-f898-d631-e7f00bbee14b	2021-05-20 23:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 23:40:00.852+03	2021-05-20 23:40:00.859+03	ERROR
65d4a9a2-c263-e790-a8a0-bfbfd664a6fb	2021-05-20 23:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:40:19.852+03	2021-05-20 23:40:19.859+03	
974695f5-a1e6-2d9d-0bd3-65c45c5b90e1	2021-05-20 23:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:40:39.852+03	2021-05-20 23:40:39.862+03	
b95f5da6-e371-b4a1-54e7-4f7b35bb1da9	2021-05-20 23:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:40:59.853+03	2021-05-20 23:40:59.859+03	
d3bc05d3-13a6-42d7-ca2b-97f357864b4e	2021-05-20 23:41:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:41:20.853+03	2021-05-20 23:41:20.859+03	
9889630d-5b2b-4c47-7bb1-90072bc467d2	2021-05-20 23:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:41:42.853+03	2021-05-20 23:41:42.862+03	
d6e32352-fc03-db20-d2be-64d02eb80799	2021-05-20 23:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:42:02.853+03	2021-05-20 23:42:02.87+03	
6f48e35b-51a0-3688-02c4-91b8ff5655d2	2021-05-20 23:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:42:22.853+03	2021-05-20 23:42:22.874+03	
c215cafb-e4d9-5de0-fd07-26a7f417298f	2021-05-20 23:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:42:42.853+03	2021-05-20 23:42:42.87+03	
894f4982-d360-dc2c-a40a-97ca9481b36e	2021-05-20 23:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:43:03.853+03	2021-05-20 23:43:03.859+03	
cb2e4794-68d8-3b55-3ba1-d2ef4ccfa0f1	2021-05-20 23:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:43:24.853+03	2021-05-20 23:43:24.861+03	
40bbc326-83a6-895b-2d30-9cddfe09b62e	2021-05-20 23:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:43:44.853+03	2021-05-20 23:43:44.866+03	
0090c3a8-23dd-5941-b8e3-9a5bd8713048	2021-05-20 23:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:44:04.853+03	2021-05-20 23:44:04.862+03	
819c9783-c939-f0b0-2571-58779100c277	2021-05-20 23:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:44:25.852+03	2021-05-20 23:44:25.86+03	
6cea50c1-2d9a-c5e8-8df1-91e0caac7a73	2021-05-20 23:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:44:45.852+03	2021-05-20 23:44:45.858+03	
768d0d79-aef5-ded9-bed6-b8002be20d36	2021-05-20 23:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:45:05.853+03	2021-05-20 23:45:05.859+03	
6aa04278-c16b-ad6b-d3b8-1e21f2f5f83c	2021-05-20 23:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:45:25.853+03	2021-05-20 23:45:25.86+03	
f0d03aba-65d9-8568-4d84-9441b5d3ace7	2021-05-20 23:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:45:45.853+03	2021-05-20 23:45:45.863+03	
bbb414eb-6e76-1cfb-ba12-7588c18690f0	2021-05-20 23:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:46:06.853+03	2021-05-20 23:46:06.859+03	
4daeab0a-7c21-79e0-307e-03e774457e16	2021-05-20 23:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:46:27.853+03	2021-05-20 23:46:27.861+03	
7c4af8fd-775c-a9e8-b287-cac62ada1537	2021-05-20 23:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:46:47.853+03	2021-05-20 23:46:47.859+03	
766c94a2-eca2-6d06-da18-818c92c5a31b	2021-05-20 23:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:47:08.853+03	2021-05-20 23:47:08.859+03	
23a47011-6e80-2574-e42d-c0fcb21c2721	2021-05-20 23:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:47:30.853+03	2021-05-20 23:47:30.864+03	
21d89846-7388-8c27-4052-317b56594869	2021-05-20 23:47:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:47:51.853+03	2021-05-20 23:47:51.86+03	
405649ba-69c0-7414-7e6a-c251937e1ad3	2021-05-20 23:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:48:12.853+03	2021-05-20 23:48:12.859+03	
5af1d21a-f0eb-52f1-6378-64d6dd9ec68d	2021-05-20 23:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:48:34.852+03	2021-05-20 23:48:34.86+03	
236fb862-c9fe-32fd-24ee-80c85a5fb252	2021-05-20 23:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:48:55.853+03	2021-05-20 23:48:55.859+03	
db59955a-3654-e618-e034-6f05865bb8e9	2021-05-20 23:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:49:17.852+03	2021-05-20 23:49:17.858+03	
0260e7f0-0a97-e9f2-ea34-11b6db8867c9	2021-05-20 23:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:49:37.852+03	2021-05-20 23:49:37.858+03	
4c239d61-42be-1627-8a7d-21f859f3a1bd	2021-05-20 23:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:49:57.852+03	2021-05-20 23:49:57.858+03	
4251712b-b3b5-a07f-0799-bf655aedcfc3	2021-05-20 23:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:50:07.853+03	2021-05-20 23:50:07.86+03	
bf5b34ff-1a23-e87b-f2b4-9b89e4ce25fd	2021-05-20 23:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:50:28.852+03	2021-05-20 23:50:28.859+03	
5cc545d7-e447-512b-3bb9-93720fcaa4fe	2021-05-20 23:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:50:48.853+03	2021-05-20 23:50:48.859+03	
8b246ea3-d475-ba87-44f2-01f644b91d7e	2021-05-20 23:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:51:09.853+03	2021-05-20 23:51:09.86+03	
bc6f5697-09cd-6688-0a68-e0a9a5443825	2021-05-20 23:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:51:30.853+03	2021-05-20 23:51:30.86+03	
3e9f8c48-513a-debb-63ce-48121152ca2a	2021-05-20 23:51:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:51:51.853+03	2021-05-20 23:51:51.858+03	
8fc471f4-bd76-9716-2d19-16c21a708d87	2021-05-20 23:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:52:12.852+03	2021-05-20 23:52:12.859+03	
89f44228-d519-e23b-9144-a137f2b3e0c3	2021-05-20 23:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:52:32.853+03	2021-05-20 23:52:32.859+03	
c587ccd4-ee1f-23ff-de35-c84317f24bc8	2021-05-20 23:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:52:53.853+03	2021-05-20 23:52:53.86+03	
532657b2-469f-a715-0116-f4416cfa8c1f	2021-05-20 23:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:53:13.853+03	2021-05-20 23:53:13.859+03	
5dfc2fce-fb7f-045f-1404-0a5c1858e2e0	2021-05-20 23:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:53:34.853+03	2021-05-20 23:53:34.859+03	
b44617a3-d671-34db-54e0-0b585845edcb	2021-05-20 23:53:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:53:55.853+03	2021-05-20 23:53:55.86+03	
036aa2b7-c42b-deb9-9b77-f494db9cdb8e	2021-05-20 23:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:54:15.853+03	2021-05-20 23:54:15.859+03	
121db658-683c-8875-d96a-8452f0eadf7a	2021-05-20 23:54:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:54:36.853+03	2021-05-20 23:54:36.859+03	
1969878b-e22c-b02c-76a0-04ff24387ee5	2021-05-20 23:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:54:57.852+03	2021-05-20 23:54:57.859+03	
1fd2880f-6c2a-e41e-dfb3-78da03464788	2021-05-20 23:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:55:17.853+03	2021-05-20 23:55:17.866+03	
376d0a4c-6500-f052-0950-a8f7f404fe7b	2021-05-20 23:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:55:38.853+03	2021-05-20 23:55:38.861+03	
93db906b-4487-0570-27ca-16f863470169	2021-05-20 23:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:55:58.853+03	2021-05-20 23:55:58.865+03	
bc6e2af0-edfb-3cd0-c50d-5e3ab2e3b284	2021-05-20 23:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:56:18.853+03	2021-05-20 23:56:18.859+03	
6cb46413-a5c4-f0b9-76fd-5d505ab94101	2021-05-20 23:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:56:39.853+03	2021-05-20 23:56:39.859+03	
5aef5d7c-1f14-03c9-034a-b4a31b293d12	2021-05-20 23:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:57:00.852+03	2021-05-20 23:57:00.859+03	
94b0ece1-1b81-39f3-e1e3-f3164e862354	2021-05-20 23:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:57:20.853+03	2021-05-20 23:57:20.861+03	
65518c5d-a384-6c43-d734-6f43e0fbc5b9	2021-05-20 23:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:57:40.853+03	2021-05-20 23:57:40.859+03	
d58775f6-288f-4a61-8e5a-60b7441a57d0	2021-05-20 23:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:58:00.853+03	2021-05-20 23:58:00.859+03	
2a27124f-15eb-d727-115f-6ab66d47aaaf	2021-05-20 23:58:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:58:21.853+03	2021-05-20 23:58:21.859+03	
9d5f6d7e-3c50-171b-93a4-57e08f5ba6f5	2021-05-20 23:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:58:42.853+03	2021-05-20 23:58:42.866+03	
7ff38ef3-d943-0fb6-d41d-d3dd91df69bc	2021-05-20 23:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:59:02.853+03	2021-05-20 23:59:02.876+03	
ece09dd0-8657-ae71-14c9-32244df9220b	2021-05-20 23:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:59:22.853+03	2021-05-20 23:59:22.86+03	
225522ac-748d-4f01-ba07-c22c8a38097e	2021-05-20 23:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:59:43.852+03	2021-05-20 23:59:43.858+03	
3fb94c82-5580-bb49-de90-9488f7b16172	2021-05-21 00:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 00:00:00.853+03	2021-05-21 00:00:00.861+03	ERROR
92df5ca9-9c96-32d2-5262-22a6e90a7087	2021-05-21 00:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:00:13.853+03	2021-05-21 00:00:13.861+03	
b9203166-be1c-eb68-bad7-060d10663a05	2021-05-21 00:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:00:33.853+03	2021-05-21 00:00:33.869+03	
3ab6e943-5be1-abdd-2a65-ece9783f0414	2021-05-21 00:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:00:53.853+03	2021-05-21 00:00:53.87+03	
a25ecdf8-e596-3c96-68ea-061bc783376c	2021-05-21 00:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:01:14.853+03	2021-05-21 00:01:14.867+03	
3cf2f1d9-fb61-f3e9-c8fb-048e129fbbff	2021-05-21 00:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:01:35.853+03	2021-05-21 00:01:35.86+03	
cb33d0df-b4c6-327f-f354-6cc99346df85	2021-05-21 00:01:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:01:56.853+03	2021-05-21 00:01:56.863+03	
9e26b908-71e5-144f-8cc0-4debe82bb235	2021-05-21 00:02:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:02:16.854+03	2021-05-21 00:02:16.861+03	
54c9b4e9-aa5b-d8fc-66ed-675ba58e31ea	2021-05-20 23:41:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:41:31.854+03	2021-05-20 23:41:31.863+03	
899e5497-dc57-35ab-1a9b-d66b3f36b7a6	2021-05-20 23:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:41:52.853+03	2021-05-20 23:41:52.859+03	
e4a89323-3d8a-fcfd-8568-baa9ab5bb444	2021-05-20 23:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:42:12.853+03	2021-05-20 23:42:12.867+03	
83547058-cb37-05ef-f37d-dfb612d16e27	2021-05-20 23:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:42:32.853+03	2021-05-20 23:42:32.86+03	
2ecbbfa9-dc7d-9b45-43c0-f316123c7a92	2021-05-20 23:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:42:53.853+03	2021-05-20 23:42:53.859+03	
813b1749-f3b0-3e7b-42e3-f849bf82282c	2021-05-20 23:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:43:14.853+03	2021-05-20 23:43:14.87+03	
4512e530-cd9a-f5d2-d4da-c4f1b330332d	2021-05-20 23:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:43:34.853+03	2021-05-20 23:43:34.859+03	
fc4e8575-6563-4f60-83e4-932040dacd29	2021-05-20 23:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:43:54.853+03	2021-05-20 23:43:54.86+03	
304ea4d8-2e06-f62b-65c4-8470c1decc1e	2021-05-20 23:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:44:15.852+03	2021-05-20 23:44:15.86+03	
3ffe07ab-89fe-5fe1-e56b-460172264614	2021-05-20 23:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:44:35.852+03	2021-05-20 23:44:35.858+03	
b8584f77-8e46-1536-0dd6-3601c5626340	2021-05-20 23:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:44:55.853+03	2021-05-20 23:44:55.861+03	
fdd43dbe-df55-4d8e-d614-50e6284f7015	2021-05-20 23:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:45:15.853+03	2021-05-20 23:45:15.859+03	
8c4cd58e-c719-6c0e-5993-f7cef33e71b4	2021-05-20 23:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:45:35.853+03	2021-05-20 23:45:35.87+03	
fb00a9d7-b801-24ff-66bb-3bd4d3cfde20	2021-05-20 23:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:45:55.853+03	2021-05-20 23:45:55.863+03	
69a2af84-5871-032a-2119-7f0170031131	2021-05-20 23:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:46:17.852+03	2021-05-20 23:46:17.862+03	
fbaf1496-3998-8c4b-53d1-af55cdffde69	2021-05-20 23:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:46:37.853+03	2021-05-20 23:46:37.859+03	
ac15ad09-0697-23a7-2553-406facc66cba	2021-05-20 23:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:46:58.853+03	2021-05-20 23:46:58.86+03	
b55b3e90-c80a-5b13-15f4-da8dcde5bdda	2021-05-20 23:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:47:19.853+03	2021-05-20 23:47:19.859+03	
2225adc4-88f4-56a4-e126-756844eb5dd1	2021-05-20 23:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:47:40.853+03	2021-05-20 23:47:40.859+03	
a0fd3dd7-3932-4455-2ab3-3c9ef5b0c72e	2021-05-20 23:48:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:48:01.854+03	2021-05-20 23:48:01.862+03	
c8c64e65-b467-96a7-e8a4-4ab4c1f8967f	2021-05-20 23:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:48:23.853+03	2021-05-20 23:48:23.859+03	
219065d2-5b32-acc3-7218-c49d7feacdd0	2021-05-20 23:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:48:44.853+03	2021-05-20 23:48:44.862+03	
49fc21b3-3e78-a44e-93c5-89f94316bdeb	2021-05-20 23:49:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:49:06.853+03	2021-05-20 23:49:06.86+03	
fa41ae4c-213a-8cbe-7418-47a4296f866c	2021-05-20 23:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:49:27.852+03	2021-05-20 23:49:27.859+03	
1f97dbdb-4cc6-8181-68e8-219fb1e8cae6	2021-05-20 23:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:49:47.852+03	2021-05-20 23:49:47.859+03	
b3f6e0bd-3afa-97cd-e449-6d2090348618	2021-05-20 23:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-20 23:50:00.853+03	2021-05-20 23:50:00.857+03	ERROR
2ec9df6e-66bf-3a94-3521-6b59cdfcddae	2021-05-20 23:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:50:17.853+03	2021-05-20 23:50:17.861+03	
7ad1edcc-f3a6-3c66-da3e-1ea1070a9687	2021-05-20 23:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:50:38.852+03	2021-05-20 23:50:38.859+03	
e90945cb-e4c4-7109-2e31-d500db9b91a8	2021-05-20 23:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:50:58.853+03	2021-05-20 23:50:58.859+03	
85d7acb5-c311-634f-00e2-a08be17d7ba9	2021-05-20 23:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:51:20.852+03	2021-05-20 23:51:20.86+03	
bdb16fe9-3734-154e-fc5c-1e038f11e416	2021-05-20 23:51:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:51:41.852+03	2021-05-20 23:51:41.861+03	
b2672473-8cd7-e833-28e8-89be1f86eb98	2021-05-20 23:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:52:02.852+03	2021-05-20 23:52:02.86+03	
e2b580bf-700f-94b9-d704-fe2c30a0431f	2021-05-20 23:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:52:22.853+03	2021-05-20 23:52:22.858+03	
dec21166-f587-c25d-eb4a-104cd5fa66a7	2021-05-20 23:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:52:43.852+03	2021-05-20 23:52:43.861+03	
2b1cc955-1fe6-9bde-6475-8127c94881b1	2021-05-20 23:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:53:03.853+03	2021-05-20 23:53:03.859+03	
fe9ea265-0f57-e655-5299-04baeecd0474	2021-05-20 23:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:53:23.853+03	2021-05-20 23:53:23.859+03	
fa2e7d8f-8315-8594-0921-93745e6258e6	2021-05-20 23:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:53:45.852+03	2021-05-20 23:53:45.858+03	
138099f3-47cd-eace-ce48-84686808cabd	2021-05-20 23:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:54:05.853+03	2021-05-20 23:54:05.859+03	
a47b3e62-bf6b-4a33-c8c4-e3da87a4c345	2021-05-20 23:54:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:54:26.852+03	2021-05-20 23:54:26.86+03	
f91441b5-843b-0003-2c99-304112b67215	2021-05-20 23:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:54:47.852+03	2021-05-20 23:54:47.858+03	
516f92de-a960-d8e4-c53f-8def4f62c05e	2021-05-20 23:55:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:55:07.852+03	2021-05-20 23:55:07.858+03	
0de2e2ee-f708-476e-2ca9-a9b06607a2fb	2021-05-20 23:55:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:55:27.853+03	2021-05-20 23:55:27.862+03	
db1174ee-cc2d-2cdd-e275-05d41450b8e1	2021-05-20 23:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:55:48.853+03	2021-05-20 23:55:48.859+03	
0249396b-4489-88b7-fe0d-75d5079370ca	2021-05-20 23:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:56:08.853+03	2021-05-20 23:56:08.859+03	
6c27442b-b14d-e7b6-a3c9-0c98ca01cf20	2021-05-20 23:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:56:29.853+03	2021-05-20 23:56:29.859+03	
c608ae50-2bef-6b7e-4a92-ea63dae9b489	2021-05-20 23:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:56:50.852+03	2021-05-20 23:56:50.862+03	
72797058-acee-da71-3900-0d6fa2496b1e	2021-05-20 23:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:57:10.853+03	2021-05-20 23:57:10.859+03	
84f9d499-aee7-558d-ffc0-b2532e85043b	2021-05-20 23:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:57:30.853+03	2021-05-20 23:57:30.859+03	
718bcca6-1c72-967c-6899-c6e103ffc93d	2021-05-20 23:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:57:50.853+03	2021-05-20 23:57:50.861+03	
c0799794-e428-f49f-5dc4-a1c4f939a2f1	2021-05-20 23:58:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:58:11.853+03	2021-05-20 23:58:11.86+03	
0422c0cb-dfe0-30f5-8f48-84eaf63741f0	2021-05-20 23:58:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:58:31.853+03	2021-05-20 23:58:31.86+03	
7d573d4a-536a-0256-410e-3725a4b0306d	2021-05-20 23:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:58:52.853+03	2021-05-20 23:58:52.876+03	
b2b54f37-7bed-36d5-0098-6b9754004e16	2021-05-20 23:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:59:12.853+03	2021-05-20 23:59:12.86+03	
8df77ec3-ba26-f436-97de-f3b0cb736123	2021-05-20 23:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:59:32.853+03	2021-05-20 23:59:32.864+03	
31a8f4c1-c20a-cd1d-4124-ac2db342c874	2021-05-20 23:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-20 23:59:53.852+03	2021-05-20 23:59:53.906+03	
599130de-1279-2683-3bf3-9096ea38c35e	2021-05-21 00:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:00:03.853+03	2021-05-21 00:00:03.876+03	
65341c2d-e743-dc4c-ec0b-03706a12414a	2021-05-21 00:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:00:23.853+03	2021-05-21 00:00:23.871+03	
eae06bc0-e368-6fae-9bc6-5dddb4138768	2021-05-21 00:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:00:43.853+03	2021-05-21 00:00:43.872+03	
5c6979e2-d9d5-b38e-a6f1-a3a5c927122f	2021-05-21 00:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:01:03.853+03	2021-05-21 00:01:03.862+03	
05302f45-a8fa-d416-03fb-df1550b81f9d	2021-05-21 00:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:01:25.852+03	2021-05-21 00:01:25.997+03	
fb5aaf50-7294-e78f-b935-59cd42d88039	2021-05-21 00:01:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:01:46.852+03	2021-05-21 00:01:46.861+03	
fb5b7d99-5f3a-116e-4ae9-6c7584fa74a4	2021-05-21 00:02:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:02:06.854+03	2021-05-21 00:02:06.86+03	
cc5a578a-c0aa-6de7-a091-9874ddc3f23e	2021-05-21 00:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:02:27.852+03	2021-05-21 00:02:27.871+03	
c11d5725-ea7b-24aa-a593-a3ab54367c22	2021-05-21 00:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:02:37.853+03	2021-05-21 00:02:37.859+03	
0f481e52-91a5-2d04-12a1-90dded917593	2021-05-21 00:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:02:58.853+03	2021-05-21 00:02:58.861+03	
d3cd1f81-e1b6-c57c-6fe6-f60d6b93c9b1	2021-05-21 00:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:03:19.853+03	2021-05-21 00:03:19.859+03	
e9cfc34e-2de5-ceb3-2040-e85466088289	2021-05-21 00:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:03:39.853+03	2021-05-21 00:03:39.862+03	
479d43f1-01de-fb17-5a60-48a2d3188f27	2021-05-21 00:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:03:59.853+03	2021-05-21 00:03:59.859+03	
bf7d4142-6e50-86d1-e463-99f24ce1648a	2021-05-21 00:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:04:20.853+03	2021-05-21 00:04:20.86+03	
1c8bb3e5-156d-f565-fbd9-3b7978f1a7fd	2021-05-21 00:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:04:42.853+03	2021-05-21 00:04:42.872+03	
189602f8-6cd9-0985-888b-1ace170ded62	2021-05-21 00:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:05:03.852+03	2021-05-21 00:05:03.859+03	
1fba3eb4-d3a9-5017-863f-e48c95bc36f8	2021-05-21 00:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:05:23.853+03	2021-05-21 00:05:23.876+03	
f12012a8-f08e-6de2-bdf9-807548b2fb6b	2021-05-21 00:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:05:45.853+03	2021-05-21 00:05:45.859+03	
232c1d3d-1e23-9e04-95ba-ee4844440c15	2021-05-21 00:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:06:05.853+03	2021-05-21 00:06:05.86+03	
2c44f93d-62ca-4997-28c9-9b280a34916c	2021-05-21 00:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:06:25.853+03	2021-05-21 00:06:25.86+03	
c70b060c-d20f-f7c9-ba6e-3c55bc3aab9e	2021-05-21 00:06:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:06:46.852+03	2021-05-21 00:06:46.887+03	
64a26595-1780-dcab-6070-ef27465368fd	2021-05-21 00:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:07:06.852+03	2021-05-21 00:07:06.858+03	
64609423-16f8-9654-da4b-19a79d0127dc	2021-05-21 00:07:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:07:26.854+03	2021-05-21 00:07:26.86+03	
dcc2d655-543e-910f-5482-d342806fe6b7	2021-05-21 00:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:07:47.852+03	2021-05-21 00:07:47.86+03	
ea61bda5-38aa-42a4-a281-291c7b523f5b	2021-05-21 00:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:08:07.853+03	2021-05-21 00:08:07.859+03	
3ed43ea5-fc82-ab0a-c985-66dbe3e21c4f	2021-05-21 00:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:08:28.853+03	2021-05-21 00:08:28.859+03	
16e181c4-9d4c-a021-09db-b2b39cc22833	2021-05-21 00:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:08:49.853+03	2021-05-21 00:08:49.86+03	
b27cdece-126e-fbd0-f46a-fdc2b9c7fc1b	2021-05-21 00:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:09:10.852+03	2021-05-21 00:09:10.86+03	
a8570a78-3cbd-f71b-ef26-924b131f559d	2021-05-21 00:09:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:09:31.853+03	2021-05-21 00:09:31.86+03	
c39e7d30-8867-e3db-bcdf-4b0b773f3efe	2021-05-21 00:10:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 00:10:00.853+03	2021-05-21 00:10:00.86+03	ERROR
c11f7441-08b5-fdb6-bdcb-35934c8cce7d	2021-05-21 00:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:10:13.853+03	2021-05-21 00:10:13.86+03	
f8622d81-3153-a910-7e83-19e3bd44e792	2021-05-21 00:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:10:34.853+03	2021-05-21 00:10:34.861+03	
7c77db24-fadc-9f5a-e92a-bb8a8b80423d	2021-05-21 00:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:10:55.853+03	2021-05-21 00:10:55.86+03	
4ae313d0-8dd3-9e51-fb6c-0e724c49a78d	2021-05-21 00:11:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:11:16.852+03	2021-05-21 00:11:16.859+03	
ef3b86fb-162a-4749-99bd-2e4b7901e0a8	2021-05-21 00:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:11:37.852+03	2021-05-21 00:11:37.859+03	
677a3ac5-77dd-5950-c8eb-33cf223dafbd	2021-05-21 00:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:11:58.853+03	2021-05-21 00:11:58.859+03	
91b6cf35-de46-b057-087d-be4788b6a7a3	2021-05-21 00:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:12:18.853+03	2021-05-21 00:12:18.86+03	
0d0c4ffc-db72-f562-e05e-798af8fbbdf9	2021-05-21 00:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:12:39.852+03	2021-05-21 00:12:39.858+03	
1efe3df3-b42a-f72c-6da1-454273dcd44a	2021-05-21 00:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:12:59.852+03	2021-05-21 00:12:59.86+03	
0488c632-495e-0f6b-ab35-a50b1ff2fa8f	2021-05-21 00:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:13:20.852+03	2021-05-21 00:13:20.86+03	
274ce0f9-19e4-c803-615d-935cbb42b3a0	2021-05-21 00:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:13:40.853+03	2021-05-21 00:13:40.861+03	
5669ca91-3698-392d-5349-3f8d87e8ada1	2021-05-21 00:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:14:02.852+03	2021-05-21 00:14:02.871+03	
cb977a06-4c3a-15cc-62cb-3329dd61d16c	2021-05-21 00:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:14:22.852+03	2021-05-21 00:14:22.861+03	
f5ffe017-088b-fd2c-6738-6ef2d36c4532	2021-05-21 00:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:14:42.853+03	2021-05-21 00:14:42.863+03	
f56ab8a9-819a-018c-3432-47266ea203ae	2021-05-21 00:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:15:02.853+03	2021-05-21 00:15:02.86+03	
10fbf2d0-d72b-03c7-afa6-e4f3d47bbad5	2021-05-21 00:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:15:23.853+03	2021-05-21 00:15:23.86+03	
e831095e-5e0e-b857-2ccd-483c68952441	2021-05-21 00:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:15:44.852+03	2021-05-21 00:15:44.859+03	
2d2433b5-1caa-81b5-3c29-2218f9c08db4	2021-05-21 00:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:16:04.852+03	2021-05-21 00:16:04.86+03	
4e7d2406-852c-8c3f-b85d-eac337bbd669	2021-05-21 00:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:16:24.852+03	2021-05-21 00:16:24.859+03	
9a9aecc7-a55e-4ac7-3f7c-11a97f08dcd7	2021-05-21 00:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:16:44.852+03	2021-05-21 00:16:44.859+03	
6683a97a-6969-ed28-e4aa-b4ee158e6bca	2021-05-21 00:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:17:05.852+03	2021-05-21 00:17:05.86+03	
5db0a57e-1d5e-be43-a8d8-cd3d1cc10115	2021-05-21 00:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:17:25.852+03	2021-05-21 00:17:25.859+03	
4fa56a0d-6397-684f-1fd8-7ed11a8ebdda	2021-05-21 00:17:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:17:46.852+03	2021-05-21 00:17:46.86+03	
009ab24f-d8b2-5e1c-784e-5ae10f9a6938	2021-05-21 00:18:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:18:06.853+03	2021-05-21 00:18:06.861+03	
edd146ad-222f-2ff0-b542-9c0acbc00082	2021-05-21 00:18:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:18:26.854+03	2021-05-21 00:18:26.861+03	
e5641169-2533-ad70-8c9f-14c898aecd90	2021-05-21 00:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:18:47.852+03	2021-05-21 00:18:47.858+03	
2cbdde4a-91a5-9051-468c-2ec307d97a9c	2021-05-21 00:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:19:08.853+03	2021-05-21 00:19:08.86+03	
a4b9d011-6d2a-c3fa-304f-f4598a93e01d	2021-05-21 00:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:19:29.852+03	2021-05-21 00:19:29.859+03	
a97bb4fe-4491-b089-5e97-e8be12a82071	2021-05-21 00:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:19:49.852+03	2021-05-21 00:19:49.859+03	
01504139-bab5-afae-301e-adb9fc973196	2021-05-21 00:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 00:20:00.852+03	2021-05-21 00:20:00.858+03	ERROR
1076d888-9267-d2d7-064c-19ab934c26b0	2021-05-21 00:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:20:20.852+03	2021-05-21 00:20:20.859+03	
312aca5f-5ad3-5100-453d-e0a413cd764b	2021-05-21 00:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:20:40.852+03	2021-05-21 00:20:40.858+03	
99689d2e-19e2-122b-26bc-cd21353650b2	2021-05-21 00:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:21:00.853+03	2021-05-21 00:21:00.859+03	
0f334052-87ff-905c-7655-9518c64a50bb	2021-05-21 00:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:21:20.853+03	2021-05-21 00:21:20.861+03	
b1b9be7b-1190-541a-56d8-e635d970b9e5	2021-05-21 00:21:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:21:41.854+03	2021-05-21 00:21:41.859+03	
75c3c10b-09ba-7e6b-534a-88699031741a	2021-05-21 00:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:22:02.852+03	2021-05-21 00:22:02.859+03	
c5ca9b1a-f7a6-4a23-6435-47610b917a4a	2021-05-21 00:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:22:22.852+03	2021-05-21 00:22:22.86+03	
a0a8e78d-025a-c69f-33c7-b4f495f28418	2021-05-21 00:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:22:42.852+03	2021-05-21 00:22:42.859+03	
bb7e6633-c3c0-ca71-0ff9-de7004b501cd	2021-05-21 00:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:23:02.853+03	2021-05-21 00:23:02.865+03	
8c3c5340-57bf-1e3d-6303-b897b9f4d1df	2021-05-21 00:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:23:23.852+03	2021-05-21 00:23:23.859+03	
cc1044e6-bb49-4bc4-71f2-fe8876844530	2021-05-21 00:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:23:43.852+03	2021-05-21 00:23:43.866+03	
ff9dac41-3aa8-4061-8d70-cbd572fa7eb1	2021-05-21 00:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:02:48.852+03	2021-05-21 00:02:48.858+03	
6167d959-f6be-609b-0250-324e65b5138b	2021-05-21 00:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:03:08.853+03	2021-05-21 00:03:08.859+03	
f71d6f75-558e-9264-3d3d-463cee02b7ab	2021-05-21 00:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:03:29.853+03	2021-05-21 00:03:29.859+03	
4d9028eb-c013-cfa8-8146-dfd51ff9a54a	2021-05-21 00:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:03:49.853+03	2021-05-21 00:03:49.859+03	
a292d546-df50-d9c5-3c9c-1c3bdcaf8e5f	2021-05-21 00:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:04:10.852+03	2021-05-21 00:04:10.861+03	
b93691f8-5e17-ecfb-41ce-5c8b7dfd8c72	2021-05-21 00:04:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:04:31.854+03	2021-05-21 00:04:31.863+03	
9dbbf185-0bde-e681-bf7b-0eeb963d464b	2021-05-21 00:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:04:52.853+03	2021-05-21 00:04:52.878+03	
9dde40dc-eaed-8979-23a1-bab4a20aad73	2021-05-21 00:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:05:13.852+03	2021-05-21 00:05:13.881+03	
d19289ae-ff5d-4c31-af47-245b2b4f0372	2021-05-21 00:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:05:34.853+03	2021-05-21 00:05:34.859+03	
d696de84-d65f-2a68-12fa-838d7b7b2df5	2021-05-21 00:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:05:55.853+03	2021-05-21 00:05:55.86+03	
7a5fd467-8888-4fb4-217e-30639b50cebe	2021-05-21 00:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:06:15.853+03	2021-05-21 00:06:15.86+03	
5dd7b002-7d83-7b79-4ea8-312682d07d61	2021-05-21 00:06:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:06:36.852+03	2021-05-21 00:06:36.86+03	
e302c738-9ce2-0695-597d-29441618358e	2021-05-21 00:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:06:56.852+03	2021-05-21 00:06:56.86+03	
8cafd791-2f12-44a0-9390-75bf24b21aa9	2021-05-21 00:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:07:16.853+03	2021-05-21 00:07:16.86+03	
e2e7abaf-436f-4381-6362-92508c9160db	2021-05-21 00:07:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:07:36.854+03	2021-05-21 00:07:36.861+03	
edb1116e-06cc-2a03-1ba4-36ec49b01a06	2021-05-21 00:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:07:57.852+03	2021-05-21 00:07:57.859+03	
7276db29-46d6-2619-1cd0-1e6c1bff1ff0	2021-05-21 00:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:08:18.852+03	2021-05-21 00:08:18.858+03	
03d15fc8-ee7a-9d8c-5e8e-30d3349e01c2	2021-05-21 00:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:08:39.853+03	2021-05-21 00:08:39.859+03	
4ad73b9e-56b9-9375-4f3b-e7e6156bfbcd	2021-05-21 00:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:08:59.853+03	2021-05-21 00:08:59.859+03	
4f24dc16-0100-11b7-9869-1511e46dfe16	2021-05-21 00:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:09:20.853+03	2021-05-21 00:09:20.859+03	
79a85d4c-4d17-045f-11f6-d90f69456014	2021-05-21 00:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:09:42.852+03	2021-05-21 00:09:42.859+03	
e554e640-c81d-f23a-71fa-0c38fe7440ab	2021-05-21 00:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:09:52.853+03	2021-05-21 00:09:52.875+03	
f393cd0e-f7c6-6801-857e-62621d741f23	2021-05-21 00:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:10:03.852+03	2021-05-21 00:10:03.912+03	
1f1fa1e5-0875-5e52-841e-d3ab1ce63d42	2021-05-21 00:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:10:23.853+03	2021-05-21 00:10:23.861+03	
b2c8af61-46e6-ea12-8bcf-c11f4d0c03c1	2021-05-21 00:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:10:44.853+03	2021-05-21 00:10:44.862+03	
0e3fdef8-1e78-645b-a9db-9c2cca8443b9	2021-05-21 00:11:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:11:06.852+03	2021-05-21 00:11:06.859+03	
69096ac1-6016-4a67-9025-531d36504066	2021-05-21 00:11:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:11:26.854+03	2021-05-21 00:11:26.86+03	
270bdc46-5fce-2701-e16e-e1b6b25d5674	2021-05-21 00:11:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:11:47.854+03	2021-05-21 00:11:47.861+03	
8932a640-7bb5-6e7c-58e7-48cf9ef4e6d5	2021-05-21 00:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:12:08.853+03	2021-05-21 00:12:08.859+03	
107a9f84-6107-1944-2dc1-50491f90bae0	2021-05-21 00:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:12:28.853+03	2021-05-21 00:12:28.86+03	
d3042e44-f147-1d42-edb4-459b1b1a9abf	2021-05-21 00:12:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:12:49.852+03	2021-05-21 00:12:49.859+03	
2bd78d90-ed5c-a707-6b64-07571bd8d325	2021-05-21 00:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:13:09.853+03	2021-05-21 00:13:09.869+03	
aefaf09e-921d-c842-4295-c454da42ca1b	2021-05-21 00:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:13:30.852+03	2021-05-21 00:13:30.86+03	
b99b2656-95df-12bf-ab0e-6375a8369a7f	2021-05-21 00:13:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:13:51.853+03	2021-05-21 00:13:51.859+03	
5cd5216b-f717-fa81-cb02-b7ef868f88dc	2021-05-21 00:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:14:12.852+03	2021-05-21 00:14:12.874+03	
bb7ffa02-c18c-ac1e-7d1c-af9f08a2c918	2021-05-21 00:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:14:32.853+03	2021-05-21 00:14:32.859+03	
82185630-5d7f-dcb8-b276-da5b93fb646b	2021-05-21 00:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:14:52.853+03	2021-05-21 00:14:52.86+03	
141de147-8182-ad67-7262-9ef228fe69ea	2021-05-21 00:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:15:13.853+03	2021-05-21 00:15:13.86+03	
1f9b95f0-7e06-08f7-d7d8-9cba72cb821b	2021-05-21 00:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:15:34.852+03	2021-05-21 00:15:34.861+03	
99ce02af-5f43-c483-cceb-d9353584a2eb	2021-05-21 00:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:15:54.852+03	2021-05-21 00:15:54.858+03	
48cba7e2-8266-8bae-4b23-58be33f3bf2d	2021-05-21 00:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:16:14.852+03	2021-05-21 00:16:14.858+03	
dce3444f-77f1-5834-b678-99986e09eb17	2021-05-21 00:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:16:34.852+03	2021-05-21 00:16:34.863+03	
8bee8c0b-3cf3-8c5c-49e9-088b50d0717a	2021-05-21 00:16:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:16:54.853+03	2021-05-21 00:16:54.861+03	
9bd9719f-65cb-fa9c-4dd5-f64bbac597d1	2021-05-21 00:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:17:15.852+03	2021-05-21 00:17:15.858+03	
728ade04-3bdb-1882-e8a0-30331cb82de5	2021-05-21 00:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:17:35.853+03	2021-05-21 00:17:35.86+03	
0355dbaf-b823-4498-80d5-9c25c9b498ec	2021-05-21 00:17:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:17:56.853+03	2021-05-21 00:17:56.86+03	
278c0678-f3b5-682e-da24-1815c426cdc1	2021-05-21 00:18:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:18:16.853+03	2021-05-21 00:18:16.86+03	
aee75723-2348-4531-e050-7e190617242d	2021-05-21 00:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:18:37.852+03	2021-05-21 00:18:37.859+03	
a29279a9-c1d3-5e39-bbfc-ff94f89def68	2021-05-21 00:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:18:57.853+03	2021-05-21 00:18:57.861+03	
e0075235-5428-06d5-7f80-7f8737714c1e	2021-05-21 00:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:19:18.853+03	2021-05-21 00:19:18.859+03	
2f2d1899-a2b9-64cf-2d0e-3688fa04be4c	2021-05-21 00:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:19:39.852+03	2021-05-21 00:19:39.859+03	
afebdef1-05fd-edf0-eac3-19d430e112bb	2021-05-21 00:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:19:59.853+03	2021-05-21 00:19:59.862+03	
4167bf6a-e468-377b-f5ed-213982784048	2021-05-21 00:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:20:09.853+03	2021-05-21 00:20:09.86+03	
0e5213ca-3cd0-bdf4-5131-73076780f052	2021-05-21 00:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:20:30.852+03	2021-05-21 00:20:30.859+03	
148fe863-2e90-4d6c-0ad4-793b166402cf	2021-05-21 00:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:20:50.853+03	2021-05-21 00:20:50.86+03	
79b8a03b-fa43-9c41-62cf-a36684aa05e5	2021-05-21 00:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:21:10.853+03	2021-05-21 00:21:10.859+03	
a2c4d970-f683-7187-3921-3618a7407b02	2021-05-21 00:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:21:30.853+03	2021-05-21 00:21:30.86+03	
c7612520-de6e-8579-5830-551ac5fa7a60	2021-05-21 00:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:21:52.852+03	2021-05-21 00:21:52.859+03	
062f22f2-2bff-d13a-c89f-577ede5c45dc	2021-05-21 00:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:22:12.852+03	2021-05-21 00:22:12.859+03	
30b127ca-6860-08c6-1ba9-d926c6b23b46	2021-05-21 00:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:22:32.852+03	2021-05-21 00:22:32.862+03	
850289ed-dbd8-2de6-013f-e34a5f062707	2021-05-21 00:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:22:52.852+03	2021-05-21 00:22:52.86+03	
bf34ab35-c65b-55e1-5454-5d64952a0f36	2021-05-21 00:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:23:13.852+03	2021-05-21 00:23:13.859+03	
a7929099-a5c9-30c5-7144-6b404728f8af	2021-05-21 00:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:23:33.852+03	2021-05-21 00:23:33.861+03	
e7392b43-5864-b9a3-e48a-6e7a08570eff	2021-05-21 11:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:24:12.852+03	2021-05-21 11:24:12.858+03	
b5d1add3-9e94-df64-c3de-71c9070c51bd	2021-05-21 00:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:23:53.853+03	2021-05-21 00:23:53.909+03	
18f2e28d-ea0c-baf1-5335-c00e8ad9c2c4	2021-05-21 03:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:11:37.853+03	2021-05-21 03:11:37.861+03	
c32524a7-b055-5aa1-b4a8-f8652b661a1d	2021-05-21 00:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:24:14.853+03	2021-05-21 00:24:14.86+03	
b8133a85-e9fb-2588-e0b9-196e91f294dc	2021-05-21 00:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:24:34.853+03	2021-05-21 00:24:34.859+03	
5585788f-4954-b929-215a-dc2f80e1aa7d	2021-05-21 03:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:11:59.853+03	2021-05-21 03:11:59.859+03	
8af0f67a-7abd-b2a9-186a-28dbec3b00d3	2021-05-21 00:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:24:54.853+03	2021-05-21 00:24:54.87+03	
59b6840b-b344-99fa-fe6c-4b8ba0d8af90	2021-05-21 00:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:25:15.852+03	2021-05-21 00:25:15.859+03	
2dad48f5-d53e-274e-a62e-d506de600a17	2021-05-21 03:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:12:19.853+03	2021-05-21 03:12:19.864+03	
5cddbeef-82c2-0a64-5bcf-b259fd703c20	2021-05-21 00:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:25:35.853+03	2021-05-21 00:25:35.86+03	
c16a2c76-da30-27cf-dfbf-015c85931b2e	2021-05-21 00:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:25:56.852+03	2021-05-21 00:25:56.86+03	
9a3ffc2c-2404-6de0-bf76-750dee327cef	2021-05-21 03:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:12:39.853+03	2021-05-21 03:12:39.859+03	
eabc97f1-4c41-836e-0580-9061b6dd8d7d	2021-05-21 00:26:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:26:16.853+03	2021-05-21 00:26:16.861+03	
cd1c5b90-8230-5c0c-4c75-586931bff0fd	2021-05-21 00:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:26:37.852+03	2021-05-21 00:26:37.861+03	
f6744535-7b57-3555-6e01-5210ffc7a50a	2021-05-21 03:13:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:13:00.853+03	2021-05-21 03:13:00.859+03	
8cbe5418-6bc9-9b8b-8ba7-5132749adf51	2021-05-21 00:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:26:58.853+03	2021-05-21 00:26:58.859+03	
2a15e471-edb0-6b26-53f5-ab41828f5b2c	2021-05-21 00:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:27:18.853+03	2021-05-21 00:27:18.859+03	
91ca28a3-2558-2caa-d012-ff7d3b4f6c76	2021-05-21 03:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:13:20.853+03	2021-05-21 03:13:20.86+03	
80ead3a4-9f56-9f53-8788-ca571d12198c	2021-05-21 00:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:27:38.853+03	2021-05-21 00:27:38.859+03	
cf717c17-0034-1ed4-fbc2-fc721eac01f4	2021-05-21 00:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:27:58.853+03	2021-05-21 00:27:58.863+03	
e9659870-6065-3afe-8c6d-d64eb3400f23	2021-05-21 03:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:13:40.853+03	2021-05-21 03:13:40.859+03	
de68349c-a89a-6a99-d747-2ba7556f1c5c	2021-05-21 00:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:28:19.853+03	2021-05-21 00:28:19.859+03	
c4dedad9-a48e-68e4-f770-3cd9321dfdc9	2021-05-21 00:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:28:40.852+03	2021-05-21 00:28:40.858+03	
591e2e9b-d420-aab4-df74-013477d9fe0d	2021-05-21 03:14:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:14:01.854+03	2021-05-21 03:14:01.86+03	
f86f387a-243e-cf06-1a81-ee3f1c3cdc66	2021-05-21 00:29:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:29:01.854+03	2021-05-21 00:29:01.86+03	
98da5027-2aec-937c-a838-c2a0d14d51b4	2021-05-21 00:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:29:22.853+03	2021-05-21 00:29:22.861+03	
9f40f89c-e988-bf08-b8ca-7f12907e3365	2021-05-21 03:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:14:22.852+03	2021-05-21 03:14:22.859+03	
367509cb-4517-b65d-0cd0-4bb9575f1bc5	2021-05-21 00:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:29:43.852+03	2021-05-21 00:29:43.859+03	
5b78bab4-f81d-b435-e512-8a36af7fa46a	2021-05-21 00:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 00:30:00.852+03	2021-05-21 00:30:00.857+03	ERROR
1b9e7b76-15c6-8312-6952-1477e3b1e8c0	2021-05-21 03:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:14:43.852+03	2021-05-21 03:14:43.859+03	
da008789-c55f-260b-327b-80081457db4c	2021-05-21 00:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:30:13.853+03	2021-05-21 00:30:13.859+03	
421491e3-cb8d-de97-fe02-31ebaea96fa9	2021-05-21 00:30:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:30:33.853+03	2021-05-21 00:30:33.86+03	
a0d8da00-12fa-0957-89b0-1bbd42c25930	2021-05-21 03:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:15:03.853+03	2021-05-21 03:15:03.859+03	
d47b58fd-1208-55bc-266e-6edb3b57cb73	2021-05-21 00:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:30:54.853+03	2021-05-21 00:30:54.86+03	
72f3fe40-c40c-6491-05db-59ab06c68f20	2021-05-21 00:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:31:15.852+03	2021-05-21 00:31:15.858+03	
37de0e4f-ca02-4277-48e9-fca584871582	2021-05-21 03:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:15:23.853+03	2021-05-21 03:15:23.859+03	
70f15ef2-4897-bdbd-9aff-bc1e8fc2cba6	2021-05-21 00:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:31:35.852+03	2021-05-21 00:31:35.859+03	
1bb2be76-f099-39da-085f-806648750340	2021-05-21 03:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:15:44.853+03	2021-05-21 03:15:44.859+03	
c1e9578a-9c6b-1d0e-3894-4461bf3d6077	2021-05-21 03:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:16:05.853+03	2021-05-21 03:16:05.861+03	
88f7efe5-75c8-54bc-fae0-95b62c27546d	2021-05-21 03:16:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:16:36.853+03	2021-05-21 03:16:36.861+03	
90060673-17c3-009f-1e52-183cd6ec4f6b	2021-05-21 03:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:16:58.853+03	2021-05-21 03:16:58.859+03	
2ae8ece2-5750-adbb-59cf-6d0380c48221	2021-05-21 03:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:17:19.853+03	2021-05-21 03:17:19.861+03	
d262e786-4c4d-034a-99c7-b970cea81062	2021-05-21 03:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:17:29.853+03	2021-05-21 03:17:29.859+03	
622cf095-4bf6-99ee-3adf-ec8eeeafcef7	2021-05-21 03:17:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:17:51.853+03	2021-05-21 03:17:51.859+03	
13871265-1473-a823-408e-42d2e604ab66	2021-05-21 03:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:18:11.853+03	2021-05-21 03:18:11.858+03	
48bd4e21-aa02-3fb0-396e-c6a9eeefc876	2021-05-21 03:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:18:43.853+03	2021-05-21 03:18:43.862+03	
8413168d-1791-ac5a-4d43-e12fd7933046	2021-05-21 03:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:19:04.852+03	2021-05-21 03:19:04.86+03	
453d069a-c0d1-2ce2-d7d9-e600dbda0974	2021-05-21 03:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:19:35.853+03	2021-05-21 03:19:35.86+03	
34e631f8-137e-bda4-8a3c-78c6c5201dea	2021-05-21 03:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:19:56.853+03	2021-05-21 03:19:56.86+03	
7c9a4f85-096c-2f21-b495-bee7f6fd429b	2021-05-21 03:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:20:06.853+03	2021-05-21 03:20:06.867+03	
90ca7403-342f-59b5-17ed-5afb8112db06	2021-05-21 03:20:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:20:27.853+03	2021-05-21 03:20:27.86+03	
8b74ae7a-e144-7d9f-a7cb-8d317327330a	2021-05-21 03:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:20:48.852+03	2021-05-21 03:20:48.859+03	
5a8cc307-fc44-f848-e4c5-38943a694169	2021-05-21 03:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:21:08.853+03	2021-05-21 03:21:08.859+03	
725feff3-9932-4de1-a88c-3591da825861	2021-05-21 03:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:21:39.853+03	2021-05-21 03:21:39.859+03	
50c9d85a-5a2e-4bdb-884b-3aeacbc5e2dd	2021-05-21 03:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:22:00.852+03	2021-05-21 03:22:00.866+03	
20bb2fcf-9c97-21ff-dfa8-366acd44007d	2021-05-21 03:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:22:20.853+03	2021-05-21 03:22:20.86+03	
136af7ea-1cd7-4f96-bd69-46575d29d57c	2021-05-21 03:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:22:30.853+03	2021-05-21 03:22:30.859+03	
9d89c373-5abd-d5ef-c7da-dbf625f18763	2021-05-21 03:22:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:22:51.852+03	2021-05-21 03:22:51.859+03	
f5b6c838-1992-ff6e-a5de-30af208ebed3	2021-05-21 03:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:23:12.852+03	2021-05-21 03:23:12.86+03	
6e819bb2-bbc6-bdd6-389b-8484d2981087	2021-05-21 03:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:23:43.853+03	2021-05-21 03:23:43.859+03	
0755fdb2-aa31-96ff-5054-946b90eff39c	2021-05-21 03:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:24:04.853+03	2021-05-21 03:24:04.86+03	
b086d8fd-3e4d-5122-198d-3e741c83ec78	2021-05-21 03:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:24:35.853+03	2021-05-21 03:24:35.862+03	
fdff231f-938b-180e-a44a-631980c851fa	2021-05-21 03:24:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:24:56.852+03	2021-05-21 03:24:56.86+03	
8da31ec1-e107-004b-ef0b-dab0b18983fe	2021-05-21 03:25:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:25:16.852+03	2021-05-21 03:25:16.859+03	
1d383735-98ad-c06d-6e02-38c35779e182	2021-05-21 00:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:24:04.852+03	2021-05-21 00:24:04.861+03	
1f2964f5-4742-2722-d81e-3aa16e39ad58	2021-05-21 00:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:24:24.853+03	2021-05-21 00:24:24.859+03	
bdfe85d9-92c3-9c6a-4195-c0e3dcb08989	2021-05-21 00:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:24:44.853+03	2021-05-21 00:24:44.86+03	
b0195f5c-67fd-433a-95c1-c840e490bf7a	2021-05-21 00:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:25:05.852+03	2021-05-21 00:25:05.86+03	
4ca26d99-4528-2923-7a4c-e0f6b5dac514	2021-05-21 00:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:25:25.852+03	2021-05-21 00:25:25.859+03	
9d8970c9-01b1-cf4c-28ca-b2af52cc9cb0	2021-05-21 00:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:25:46.852+03	2021-05-21 00:25:46.86+03	
42ecb662-a9e8-83d8-2387-430730170952	2021-05-21 00:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:26:06.853+03	2021-05-21 00:26:06.859+03	
df9d4fd6-d871-e87d-2264-b3e628f44903	2021-05-21 00:26:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:26:26.854+03	2021-05-21 00:26:26.864+03	
dfb90306-e687-a2e1-225f-c897409aa074	2021-05-21 00:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:26:47.853+03	2021-05-21 00:26:47.859+03	
12ea41c4-725e-d502-0bdf-059074ff6628	2021-05-21 00:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:27:08.853+03	2021-05-21 00:27:08.859+03	
7cb6e02c-7573-687f-6d31-3db3d0ee2491	2021-05-21 00:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:27:28.853+03	2021-05-21 00:27:28.86+03	
dac5ffed-f1cb-af51-ebda-9cd3dafa06d8	2021-05-21 00:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:27:48.853+03	2021-05-21 00:27:48.859+03	
70e2b5b4-8ebe-7f64-67d6-6d97aee5fc24	2021-05-21 00:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:28:09.853+03	2021-05-21 00:28:09.859+03	
4f49a360-9a48-903d-b4db-81bd898f433f	2021-05-21 00:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:28:29.853+03	2021-05-21 00:28:29.859+03	
a473bd3f-8776-2fd3-6f69-1960aba2aa77	2021-05-21 00:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:28:50.853+03	2021-05-21 00:28:50.859+03	
ea51a2c8-f9c2-21d3-1349-f916dea87a1a	2021-05-21 00:29:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:29:11.854+03	2021-05-21 00:29:11.86+03	
6b04e4b4-e29a-580f-9ec1-cdc258819ce0	2021-05-21 00:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:29:33.852+03	2021-05-21 00:29:33.859+03	
521d38d1-ee59-da02-f803-a66cb843198d	2021-05-21 00:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:29:53.852+03	2021-05-21 00:29:53.861+03	
cd5c0cd5-4417-0732-d6f6-88bad45dd422	2021-05-21 00:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:30:03.853+03	2021-05-21 00:30:03.87+03	
b03419a7-139d-d2e9-4524-f0e9be684159	2021-05-21 00:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:30:23.853+03	2021-05-21 00:30:23.871+03	
40c0300d-4fe4-e528-3e17-bdcd9279df8b	2021-05-21 00:30:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:30:43.853+03	2021-05-21 00:30:43.859+03	
6a91ec1d-1226-965b-b56e-50f1b91686f1	2021-05-21 00:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:31:04.853+03	2021-05-21 00:31:04.859+03	
1bac91ee-3f1e-dd47-a92f-0aa05ba1e1dd	2021-05-21 00:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:31:25.852+03	2021-05-21 00:31:25.859+03	
6e35a21c-0a00-f3bd-c1cb-1297e0085f14	2021-05-21 00:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:31:45.852+03	2021-05-21 00:31:45.859+03	
d3946658-00f0-3f84-43df-4d3e5fdbb590	2021-05-21 00:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:31:55.853+03	2021-05-21 00:31:55.871+03	
74956ac7-a578-1c12-c425-c8fc67bfe36f	2021-05-21 00:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:32:05.853+03	2021-05-21 00:32:05.862+03	
c0dc9049-955b-bab0-7f64-c63d3c01a1bd	2021-05-21 00:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:32:15.853+03	2021-05-21 00:32:15.86+03	
3c993136-061e-e2f3-825c-56cf31ebbb10	2021-05-21 00:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:32:25.853+03	2021-05-21 00:32:25.858+03	
53dba257-f46e-8ec6-b3fa-a17991795d8c	2021-05-21 00:32:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:32:36.852+03	2021-05-21 00:32:36.859+03	
c408b243-d8e9-35fc-9440-0a2baadd2de4	2021-05-21 00:32:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:32:46.852+03	2021-05-21 00:32:46.858+03	
ee66cc22-d12c-8b9a-5b31-97cf10715687	2021-05-21 00:32:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:32:56.854+03	2021-05-21 00:32:56.861+03	
35b072ca-0202-a567-7b71-932cd5d7ad44	2021-05-21 00:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:33:07.852+03	2021-05-21 00:33:07.86+03	
1b518238-370f-8d07-a3d8-57c66a0bef3d	2021-05-21 00:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:33:17.853+03	2021-05-21 00:33:17.86+03	
1984a6e2-f7af-c85c-4f03-dcfe46f76517	2021-05-21 00:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:33:28.852+03	2021-05-21 00:33:28.859+03	
742cb763-b36f-13d9-fd2a-5dd4b473f32c	2021-05-21 00:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:33:38.853+03	2021-05-21 00:33:38.859+03	
948c932e-43b7-587c-d379-f597431b8c24	2021-05-21 00:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:33:49.852+03	2021-05-21 00:33:49.859+03	
1003ca97-60e3-94d8-0a0d-bf73130abebd	2021-05-21 00:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:33:59.852+03	2021-05-21 00:33:59.859+03	
a51badd5-a1e8-f04d-a697-a4fec6118f91	2021-05-21 00:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:34:09.852+03	2021-05-21 00:34:09.859+03	
ed66409c-d798-44ac-b66c-1ddc78990cb1	2021-05-21 00:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:34:19.853+03	2021-05-21 00:34:19.861+03	
cda29960-0117-f404-270f-02042c7ec98a	2021-05-21 00:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:34:29.853+03	2021-05-21 00:34:29.86+03	
374feb81-0684-685e-4572-a5484795a608	2021-05-21 00:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:34:40.852+03	2021-05-21 00:34:40.859+03	
5996b768-f0cc-9718-d3d2-0f85a28dff42	2021-05-21 00:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:34:50.852+03	2021-05-21 00:34:50.859+03	
db7bdd3d-98f8-854c-f944-265b69f1b777	2021-05-21 00:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:35:00.853+03	2021-05-21 00:35:00.86+03	
8ee7627a-e089-4549-b840-6cc113d67060	2021-05-21 00:35:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:35:11.853+03	2021-05-21 00:35:11.861+03	
5ab20a0d-b557-e9f1-c09f-0b9d6b6cccb7	2021-05-21 00:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:35:22.853+03	2021-05-21 00:35:22.863+03	
fd0d19c4-8580-f8d1-55db-58ac0091bf6e	2021-05-21 00:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:35:32.853+03	2021-05-21 00:35:32.861+03	
5269ef09-08dd-878b-abde-678e242ab132	2021-05-21 00:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:35:42.853+03	2021-05-21 00:35:42.869+03	
6bcf4f15-11cc-c3b1-25c5-9b8b87ba7c50	2021-05-21 00:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:35:52.853+03	2021-05-21 00:35:52.861+03	
13a9ede5-7e23-5315-63ea-888c1b4a98e3	2021-05-21 00:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:36:02.853+03	2021-05-21 00:36:02.868+03	
2a68e578-6d3a-b986-3990-1204da2930c7	2021-05-21 00:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:36:13.853+03	2021-05-21 00:36:13.859+03	
b3b66db9-b479-d7bf-a396-ec8f974ab00b	2021-05-21 00:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:36:24.853+03	2021-05-21 00:36:24.86+03	
88e97792-c2cb-c821-cc48-190013447f03	2021-05-21 00:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:36:34.853+03	2021-05-21 00:36:34.86+03	
ba1dbe8b-ed48-8846-a011-71b5aa1be7c2	2021-05-21 00:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:36:45.852+03	2021-05-21 00:36:45.86+03	
969b9855-9819-5496-78a0-bcd0c461ecf8	2021-05-21 00:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:36:55.853+03	2021-05-21 00:36:55.859+03	
71b5a549-7cb2-e80c-1e01-5b959ab2e4aa	2021-05-21 00:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:37:05.853+03	2021-05-21 00:37:05.86+03	
1266b69c-d9b5-6f2f-3482-958abe2c37c6	2021-05-21 00:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:37:15.853+03	2021-05-21 00:37:15.866+03	
d6e58e31-902e-7822-d930-41abd8acaf94	2021-05-21 00:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:37:25.853+03	2021-05-21 00:37:25.859+03	
8eb1982b-98c2-63a5-efeb-e92acea73dd8	2021-05-21 00:37:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:37:36.852+03	2021-05-21 00:37:36.86+03	
d8e8481a-e135-4cc2-60f0-12ebdf94151b	2021-05-21 00:37:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:37:46.853+03	2021-05-21 00:37:46.866+03	
bde97ff3-1f6c-2657-021a-7022705c1a23	2021-05-21 00:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:37:56.853+03	2021-05-21 00:37:56.861+03	
9c37ac21-71c8-cff9-2aed-38806a75c4cc	2021-05-21 00:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:38:07.853+03	2021-05-21 00:38:07.859+03	
e185d129-5586-20fe-b9f3-5d72d6514123	2021-05-21 00:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:38:17.853+03	2021-05-21 00:38:17.859+03	
f49eaa29-a5ed-b835-ac53-e8d97ae2f57a	2021-05-21 00:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:38:28.853+03	2021-05-21 00:38:28.861+03	
8497bf6b-f8a0-4355-3cc3-92c750edd72c	2021-05-21 00:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:38:38.853+03	2021-05-21 00:38:38.863+03	
19a3b528-3bf1-5ab3-c16c-2b51047036a5	2021-05-21 00:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:38:58.853+03	2021-05-21 00:38:58.861+03	
9d7a5ae5-dab9-0b64-a7d4-989f16a1624a	2021-05-21 00:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:39:19.853+03	2021-05-21 00:39:19.86+03	
10c1a61b-9d03-a6de-e1f8-9802f2b1a9a5	2021-05-21 00:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:39:40.852+03	2021-05-21 00:39:40.861+03	
5292584b-bdfd-7417-90b7-42a2caa15c86	2021-05-21 00:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:40:00.853+03	2021-05-21 00:40:00.862+03	
6eb616f6-b96e-36c0-b788-0810ba23cb1a	2021-05-21 00:40:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:40:11.854+03	2021-05-21 00:40:11.861+03	
8c33c606-0742-42f2-5917-1cbb8ce07e10	2021-05-21 00:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:40:33.853+03	2021-05-21 00:40:33.861+03	
8ec16ef1-7b96-a808-93b3-f9a05fbc323f	2021-05-21 00:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:40:54.852+03	2021-05-21 00:40:54.859+03	
0265ef95-994c-73ff-83b5-33079df1da2c	2021-05-21 00:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:41:15.853+03	2021-05-21 00:41:15.862+03	
d18085c1-75f1-f8b7-6700-17b105d0fad9	2021-05-21 00:41:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:41:36.853+03	2021-05-21 00:41:36.859+03	
e9e3fa2a-5334-9641-3e10-3d076d2c5a19	2021-05-21 00:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:41:57.852+03	2021-05-21 00:41:57.858+03	
a46d9f0b-22b3-7926-ecd8-67b28161e8ba	2021-05-21 00:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:42:18.852+03	2021-05-21 00:42:18.858+03	
58a3cea7-926b-df3c-25f2-17f442d1c5ef	2021-05-21 00:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:42:38.853+03	2021-05-21 00:42:38.86+03	
0e9bb068-19fc-84f3-ef7f-e1ab0a25d73f	2021-05-21 00:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:42:59.853+03	2021-05-21 00:42:59.86+03	
ce57db92-d916-b0a5-8358-8932ed770682	2021-05-21 00:43:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:43:21.852+03	2021-05-21 00:43:21.859+03	
27fcbc30-4e24-33b3-fce6-641397a265b8	2021-05-21 00:43:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:43:41.852+03	2021-05-21 00:43:41.859+03	
abbc8909-3952-4dfe-ce34-3f58e3c05874	2021-05-21 00:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:44:02.853+03	2021-05-21 00:44:02.874+03	
ca7a8430-1225-0163-c3dc-e60a1ab9746a	2021-05-21 00:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:44:23.853+03	2021-05-21 00:44:23.859+03	
7f116d10-5fc6-dd69-a44b-d48282a4dd20	2021-05-21 00:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:44:44.852+03	2021-05-21 00:44:44.859+03	
a0be5302-1d08-82ac-2ed1-856716a63ca0	2021-05-21 00:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:45:05.853+03	2021-05-21 00:45:05.861+03	
62c8ac63-2abb-f2ce-2a52-8d5ae3237b9a	2021-05-21 00:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:45:25.853+03	2021-05-21 00:45:25.861+03	
30333bac-da41-49e0-bb42-d766bee40fe7	2021-05-21 00:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:45:45.853+03	2021-05-21 00:45:45.859+03	
29e832b1-535c-0935-57e7-b9dece60196e	2021-05-21 00:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:46:06.852+03	2021-05-21 00:46:06.87+03	
013fcd75-1e77-01db-c417-273b0fabc678	2021-05-21 00:46:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:46:26.854+03	2021-05-21 00:46:26.875+03	
65e400ea-febc-f5b7-7c09-337fd2b3cf29	2021-05-21 00:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:46:47.853+03	2021-05-21 00:46:47.858+03	
a0435dfa-066c-4334-9d54-234e03060eba	2021-05-21 00:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:47:08.853+03	2021-05-21 00:47:08.861+03	
d94768de-03dd-21d8-63f4-2608952c3ed5	2021-05-21 00:47:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:47:29.852+03	2021-05-21 00:47:29.859+03	
a74c0f8e-1428-cb24-65e9-b5f0af2d1167	2021-05-21 00:47:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:47:49.853+03	2021-05-21 00:47:49.86+03	
a7214bb5-3353-bf62-584d-1fbbccbe8b8b	2021-05-21 00:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:48:09.853+03	2021-05-21 00:48:09.859+03	
5c1896be-1754-2eb5-dc6f-d3eedc8a8eb5	2021-05-21 00:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:48:30.853+03	2021-05-21 00:48:30.859+03	
0c22a32d-9e8c-9d96-98c8-7cba6c1f137d	2021-05-21 00:48:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:48:51.852+03	2021-05-21 00:48:51.858+03	
d5e076a9-ca24-2384-acc0-418037e46b7c	2021-05-21 00:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:49:12.853+03	2021-05-21 00:49:12.86+03	
b87f69d6-5332-d463-92f6-9e388e7ecdf2	2021-05-21 00:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:49:32.853+03	2021-05-21 00:49:32.859+03	
8a4cd0ed-b093-2304-e105-9f192e1c383c	2021-05-21 00:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 00:50:00.853+03	2021-05-21 00:50:00.857+03	ERROR
41e86035-3063-abfe-cf02-3fe2adb01539	2021-05-21 00:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:50:14.852+03	2021-05-21 00:50:14.872+03	
3d1ee35d-8045-9a99-0e72-b8498563e6b4	2021-05-21 00:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:50:34.852+03	2021-05-21 00:50:34.861+03	
602854a8-f6e6-0371-9b6b-0a295d0cbca8	2021-05-21 00:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:50:54.853+03	2021-05-21 00:50:54.859+03	
5857d4ca-aabe-625e-e673-1c941727ffc2	2021-05-21 00:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:51:14.853+03	2021-05-21 00:51:14.861+03	
31fec071-91fb-55bb-fd1a-0df7e802ce20	2021-05-21 00:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:51:35.852+03	2021-05-21 00:51:35.858+03	
13f3b1a6-8bbf-9724-5853-a0cc53161ff3	2021-05-21 00:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:51:55.852+03	2021-05-21 00:51:55.859+03	
7bbc4e2d-e953-baf2-8d4c-aa816c41bf38	2021-05-21 00:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:52:15.853+03	2021-05-21 00:52:15.859+03	
5bbcf187-9937-4274-26a0-fb83cb821cbd	2021-05-21 00:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:52:36.854+03	2021-05-21 00:52:36.861+03	
6f50d118-bdf3-3016-5285-93810777929b	2021-05-21 00:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:52:57.853+03	2021-05-21 00:52:57.861+03	
37d36ac4-04e3-e9b4-535f-2179add26b6d	2021-05-21 00:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:53:19.853+03	2021-05-21 00:53:19.861+03	
95f19522-9f29-1002-652e-8bc42208590d	2021-05-21 00:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:53:39.853+03	2021-05-21 00:53:39.86+03	
afaec1e5-54ff-dd06-6180-84687d992bb5	2021-05-21 00:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:54:00.853+03	2021-05-21 00:54:00.86+03	
d1cb0b64-7c79-59d1-fce0-d301272339c0	2021-05-21 00:54:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:54:21.852+03	2021-05-21 00:54:21.859+03	
cb864ec1-8b4f-6bf8-ab46-7305fcca0e9b	2021-05-21 00:54:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:54:41.852+03	2021-05-21 00:54:41.86+03	
2b7f31d2-39cb-22a8-9898-60bafced1611	2021-05-21 00:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:55:02.852+03	2021-05-21 00:55:02.859+03	
f688de70-20db-9868-81e5-71e411975d76	2021-05-21 00:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:55:22.852+03	2021-05-21 00:55:22.862+03	
46a437cf-05b7-a68e-bcef-1f05d9ed3874	2021-05-21 00:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:55:42.852+03	2021-05-21 00:55:42.868+03	
a0ee7aec-dad3-6d23-ae0b-9d24dc90d89f	2021-05-21 00:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:56:02.852+03	2021-05-21 00:56:02.859+03	
d62a1279-7f4a-08cb-61a2-b61a5abc7996	2021-05-21 00:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:56:22.853+03	2021-05-21 00:56:22.865+03	
6e3e58fa-1f81-191c-d654-bd1af300279f	2021-05-21 00:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:56:43.853+03	2021-05-21 00:56:43.859+03	
154cff04-888e-43f9-aecd-7310aec968c6	2021-05-21 00:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:57:03.853+03	2021-05-21 00:57:03.86+03	
0972410e-0edc-06a5-261e-909c8589e608	2021-05-21 00:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:57:24.852+03	2021-05-21 00:57:24.859+03	
f3e5a589-26b0-ce8d-0c78-936ec2711119	2021-05-21 00:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:57:44.853+03	2021-05-21 00:57:44.859+03	
7f4205e4-c70c-9e9c-acf2-74561d670a83	2021-05-21 00:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:58:05.852+03	2021-05-21 00:58:05.859+03	
dbf2e09e-fca5-682f-bea4-4da00c8fada4	2021-05-21 00:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:58:25.852+03	2021-05-21 00:58:25.858+03	
3940eef2-399d-29c9-99c6-cafacb5304bc	2021-05-21 00:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:58:45.853+03	2021-05-21 00:58:45.859+03	
47a6e42a-5638-c5a6-8a69-8fb1e632d28c	2021-05-21 00:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:59:07.853+03	2021-05-21 00:59:07.861+03	
457c062b-3d89-e6e9-d552-48f665f00632	2021-05-21 00:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:59:28.852+03	2021-05-21 00:59:28.86+03	
fc4aa1c7-7beb-1bde-2b02-5834a75f345f	2021-05-21 00:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:59:48.853+03	2021-05-21 00:59:48.861+03	
c11540a8-11bb-4520-4474-db8707399600	2021-05-21 00:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:38:48.853+03	2021-05-21 00:38:48.859+03	
760943cd-a833-ce0a-e019-04f8f26a19c3	2021-05-21 00:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:39:08.853+03	2021-05-21 00:39:08.862+03	
936ce8b0-18e8-bf1c-d50d-12ad3a5c8e72	2021-05-21 00:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:39:30.852+03	2021-05-21 00:39:30.859+03	
99b59749-e667-568c-e6c4-19ce806cfd41	2021-05-21 00:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:39:50.852+03	2021-05-21 00:39:50.869+03	
8d7b94c0-eee4-4a74-bf19-fdba6f90f4e0	2021-05-21 00:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 00:40:00.853+03	2021-05-21 00:40:00.87+03	ERROR
7511deb5-70ec-48a9-8ef0-f0a8cd4b3b6b	2021-05-21 00:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:40:22.853+03	2021-05-21 00:40:22.858+03	
b2cd6183-beb1-03d3-3ef7-7a401651ea36	2021-05-21 00:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:40:44.852+03	2021-05-21 00:40:44.859+03	
de1d3f83-da94-f9e4-68af-8705cbb1cb65	2021-05-21 00:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:41:04.853+03	2021-05-21 00:41:04.859+03	
3b105c61-44d4-d40c-b993-c1f838b23681	2021-05-21 00:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:41:25.853+03	2021-05-21 00:41:25.86+03	
47881aa4-a8c2-7540-aa6f-74fb6c1b926e	2021-05-21 00:41:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:41:46.854+03	2021-05-21 00:41:46.861+03	
f6fb2075-cbbc-6ee2-c92d-7e8ceb2b4dfc	2021-05-21 00:42:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:42:07.853+03	2021-05-21 00:42:07.859+03	
a860e901-3629-852a-440e-3e9bdafc9f4d	2021-05-21 00:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:42:28.853+03	2021-05-21 00:42:28.86+03	
3b82d7f3-2e5e-b33c-0593-607c8a6b7586	2021-05-21 00:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:42:49.852+03	2021-05-21 00:42:49.859+03	
65e20750-5df5-d01f-d8b5-a04e4185a9f2	2021-05-21 00:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:43:10.853+03	2021-05-21 00:43:10.859+03	
100032e3-9c30-c488-6379-9945a8cbee96	2021-05-21 00:43:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:43:31.852+03	2021-05-21 00:43:31.861+03	
37fa966a-29cf-0095-009c-f4b2cbd0d717	2021-05-21 00:43:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:43:51.854+03	2021-05-21 00:43:51.864+03	
a192e822-735e-9563-8a4c-5e4dd5d5128a	2021-05-21 00:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:44:13.852+03	2021-05-21 00:44:13.858+03	
9c898d91-403a-b172-5f2b-979f250df385	2021-05-21 00:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:44:34.852+03	2021-05-21 00:44:34.859+03	
011edbf4-00ec-15a7-07aa-b6f26d0db4f0	2021-05-21 00:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:44:54.853+03	2021-05-21 00:44:54.859+03	
c9144f87-b8ea-a677-17ad-37377704c97d	2021-05-21 00:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:45:15.853+03	2021-05-21 00:45:15.859+03	
07dea9c9-9988-e97a-7556-da6c8bfcb363	2021-05-21 00:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:45:35.853+03	2021-05-21 00:45:35.872+03	
4db596cd-e1f9-999c-1eb3-04afd92389d7	2021-05-21 00:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:45:55.853+03	2021-05-21 00:45:55.859+03	
403622d7-ba4c-8976-106b-a11c88f40fd1	2021-05-21 00:46:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:46:16.852+03	2021-05-21 00:46:16.859+03	
04ba30cd-fe06-2af3-6cf1-a107e09388e2	2021-05-21 00:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:46:37.853+03	2021-05-21 00:46:37.861+03	
240d1bb7-79ab-15b1-fcc3-20ede7cb9180	2021-05-21 00:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:46:58.852+03	2021-05-21 00:46:58.86+03	
a40008e2-ead2-2be1-2c6e-67d2840050ca	2021-05-21 00:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:47:19.852+03	2021-05-21 00:47:19.858+03	
831f3593-3650-2e5f-79a5-f31f3f9d323d	2021-05-21 00:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:47:39.853+03	2021-05-21 00:47:39.858+03	
18933432-516d-deb2-c4e0-da3f2460e147	2021-05-21 00:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:47:59.853+03	2021-05-21 00:47:59.86+03	
671dd641-056e-a105-021d-a8bd99d5257b	2021-05-21 00:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:48:19.853+03	2021-05-21 00:48:19.861+03	
c90af624-efa5-b9e0-77c1-53948aa0d632	2021-05-21 00:48:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:48:41.852+03	2021-05-21 00:48:41.859+03	
c2765fa4-0c43-4bc4-5492-0e4412c3959e	2021-05-21 00:49:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:49:01.853+03	2021-05-21 00:49:01.859+03	
a6a9e37f-ea44-065d-de0b-aeff4ed6bf38	2021-05-21 00:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:49:22.853+03	2021-05-21 00:49:22.862+03	
65272ac2-7ca8-049d-dda5-87bf0c6c9fe5	2021-05-21 00:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:49:42.853+03	2021-05-21 00:49:42.86+03	
3b39cc33-dcaa-7492-8145-819b6741fbe6	2021-05-21 00:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:49:53.853+03	2021-05-21 00:49:53.86+03	
20f3193d-b773-718b-d637-b146402775a9	2021-05-21 00:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:50:04.852+03	2021-05-21 00:50:04.859+03	
308c3b03-18a6-6a9f-5647-2dbbcaa4fa1d	2021-05-21 00:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:50:24.852+03	2021-05-21 00:50:24.859+03	
6e15ce07-8f64-281a-df05-0f56477335d4	2021-05-21 00:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:50:44.853+03	2021-05-21 00:50:44.86+03	
f796c9e1-56d0-c880-9a85-b77ba63dd557	2021-05-21 00:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:51:04.853+03	2021-05-21 00:51:04.86+03	
815d3537-137f-719d-e15c-76edb2bea3a8	2021-05-21 00:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:51:25.852+03	2021-05-21 00:51:25.858+03	
cbde0219-b5a7-6fe6-56fa-feea61f9449d	2021-05-21 00:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:51:45.852+03	2021-05-21 00:51:45.858+03	
5efdd070-da46-9949-88f2-f98c55f3d48b	2021-05-21 00:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:52:05.853+03	2021-05-21 00:52:05.86+03	
4a91c85c-0c60-d5c8-7847-85e80e8814ef	2021-05-21 00:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:52:25.853+03	2021-05-21 00:52:25.859+03	
41669524-a04c-3a5a-0b5e-ab723d700c28	2021-05-21 00:52:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:52:46.854+03	2021-05-21 00:52:46.862+03	
d546e52d-e425-f094-539f-48ac7f2f11a2	2021-05-21 00:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:53:08.853+03	2021-05-21 00:53:08.861+03	
f3ba1c37-1c5b-ac66-d571-327340330b69	2021-05-21 00:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:53:29.853+03	2021-05-21 00:53:29.859+03	
a7748a93-6fda-a92f-0e5d-5ebc146c87c7	2021-05-21 00:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:53:50.852+03	2021-05-21 00:53:50.859+03	
ba604ae8-4835-0b69-2d18-73ac80ff352b	2021-05-21 00:54:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:54:11.852+03	2021-05-21 00:54:11.86+03	
0ac615ae-486b-de49-4f50-35dc9a37173f	2021-05-21 00:54:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:54:31.852+03	2021-05-21 00:54:31.859+03	
13779483-d319-fb5a-e2fc-8c81998df469	2021-05-21 00:54:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:54:51.853+03	2021-05-21 00:54:51.86+03	
3314ab40-4aa7-2626-c691-5ab5741a1754	2021-05-21 00:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:55:12.852+03	2021-05-21 00:55:12.859+03	
8a42925d-4b4b-c0c6-e392-5a55da07bcd9	2021-05-21 00:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:55:32.852+03	2021-05-21 00:55:32.868+03	
3b4a3bb3-39db-162d-3353-d4ad88db7d3e	2021-05-21 00:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:55:52.852+03	2021-05-21 00:55:52.871+03	
81dee7ca-b3f8-2e66-c539-161ceaf42347	2021-05-21 00:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:56:12.852+03	2021-05-21 00:56:12.858+03	
40e5a181-5c8c-46c1-a068-883636a09015	2021-05-21 00:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:56:33.852+03	2021-05-21 00:56:33.859+03	
76124e65-8851-0a35-fca6-c586bd5a827c	2021-05-21 00:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:56:53.853+03	2021-05-21 00:56:53.859+03	
c2d7da5a-4ce4-ed05-d9e3-a5d5521442d2	2021-05-21 00:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:57:13.853+03	2021-05-21 00:57:13.859+03	
f6ceb3c1-ce92-e7fc-1993-5d5878db1b14	2021-05-21 00:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:57:34.852+03	2021-05-21 00:57:34.86+03	
eecaad35-1206-655c-d453-f1e014590509	2021-05-21 00:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:57:55.852+03	2021-05-21 00:57:55.859+03	
a13bc076-79ce-e7b9-f105-1f62ee66826e	2021-05-21 00:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:58:15.852+03	2021-05-21 00:58:15.859+03	
b45af28b-e39f-b271-ad98-cb63827d8bf8	2021-05-21 00:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:58:35.853+03	2021-05-21 00:58:35.86+03	
9618db4e-1cd2-4a2e-bef7-4033aad7d5f3	2021-05-21 00:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:58:56.853+03	2021-05-21 00:58:56.859+03	
ff9a6f64-990b-da78-ceb4-889b5c0d8b60	2021-05-21 00:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:59:17.853+03	2021-05-21 00:59:17.86+03	
4627f222-8a33-9d89-37cd-ca1d8f7364a2	2021-05-21 00:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:59:38.852+03	2021-05-21 00:59:38.86+03	
180d6318-8885-815a-96ec-5e7eea08f052	2021-05-21 00:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 00:59:58.853+03	2021-05-21 00:59:58.859+03	
c1d2940d-f724-d0c5-0804-612a47ca49a4	2021-05-21 01:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:00:08.853+03	2021-05-21 01:00:08.866+03	
e35fe36b-5e1a-eaf8-969e-fa28a5865131	2021-05-21 01:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:00:28.853+03	2021-05-21 01:00:28.862+03	
8bc038fe-59ad-974b-92cb-71c6f66a0c22	2021-05-21 01:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:00:48.853+03	2021-05-21 01:00:48.86+03	
5d18f33a-26bb-18f1-90a2-f42aacd5b177	2021-05-21 01:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:01:09.852+03	2021-05-21 01:01:09.859+03	
425da835-e652-69e9-5db1-4c6e5cf110b8	2021-05-21 01:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:01:29.853+03	2021-05-21 01:01:29.86+03	
7a49b8ab-0f62-8be5-b527-30efb2c0905d	2021-05-21 01:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:01:49.853+03	2021-05-21 01:01:49.861+03	
ac70f582-0721-6bc5-4f9d-7d78cb04f5bb	2021-05-21 01:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:02:09.853+03	2021-05-21 01:02:09.86+03	
06ee6b99-08c2-b6fd-6d2f-ae9f30ae7606	2021-05-21 01:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:02:30.853+03	2021-05-21 01:02:30.859+03	
f8577d03-74f1-4c9f-40d9-985086585ce9	2021-05-21 01:02:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:02:51.852+03	2021-05-21 01:02:51.859+03	
b8257ebb-973f-26c0-cb9b-bfd9392fc8f0	2021-05-21 01:03:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:03:11.853+03	2021-05-21 01:03:11.86+03	
6f6a0421-fefc-6ed5-d080-39d245793b2c	2021-05-21 01:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:03:31.854+03	2021-05-21 01:03:31.861+03	
610ff081-c27e-b429-6083-1bd83e265cf6	2021-05-21 01:03:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:03:51.854+03	2021-05-21 01:03:51.859+03	
e408d4ec-859c-7b76-99ec-0f0fd573e4c5	2021-05-21 01:04:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:04:12.853+03	2021-05-21 01:04:12.861+03	
88fd942b-fd69-7eee-25a7-4791cdf5554c	2021-05-21 01:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:04:32.853+03	2021-05-21 01:04:32.859+03	
ec08a5f9-ee42-721c-edd0-e390e788dc06	2021-05-21 01:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:04:52.853+03	2021-05-21 01:04:52.859+03	
e83934b9-8379-78a0-6c2c-207301d6d464	2021-05-21 01:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:05:12.853+03	2021-05-21 01:05:12.859+03	
94f33d1f-88d1-a292-d4a0-0aaad6300090	2021-05-21 01:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:05:33.853+03	2021-05-21 01:05:33.859+03	
6433535d-54ea-4c36-ed8f-570eeea5b56e	2021-05-21 01:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:05:54.852+03	2021-05-21 01:05:54.858+03	
16356e78-7a64-a524-e7e2-afe35e8b1b54	2021-05-21 01:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:06:14.853+03	2021-05-21 01:06:14.859+03	
dcdc4de0-9aa5-a03a-fc3b-a4b9d8414a6b	2021-05-21 01:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:06:35.852+03	2021-05-21 01:06:35.86+03	
79a67da4-83da-77a9-3050-fb556a1d97dc	2021-05-21 01:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:06:55.853+03	2021-05-21 01:06:55.86+03	
11ff4294-2886-da9a-46c7-8555e79eff3d	2021-05-21 01:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:07:16.852+03	2021-05-21 01:07:16.863+03	
a8578b3b-48fe-8bb3-02c0-8a4e587ec734	2021-05-21 01:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:07:37.852+03	2021-05-21 01:07:37.859+03	
5fb176e6-dfd9-5d97-a734-bac3f85f822a	2021-05-21 01:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:07:57.853+03	2021-05-21 01:07:57.86+03	
6040b1ca-69b9-ed35-f8fd-eb90fbb3b8f0	2021-05-21 01:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:08:17.853+03	2021-05-21 01:08:17.859+03	
abc755c0-f713-ff55-da11-427573c55621	2021-05-21 01:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:08:38.853+03	2021-05-21 01:08:38.859+03	
d98d1a19-595b-9465-2ed3-31897cc85661	2021-05-21 01:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:09:00.852+03	2021-05-21 01:09:00.858+03	
c6aaf475-af00-4fc2-2333-9041fcc40094	2021-05-21 01:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:09:20.853+03	2021-05-21 01:09:20.858+03	
ae41c0de-1105-8639-1ef5-2ed301a33fdf	2021-05-21 01:09:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:09:41.853+03	2021-05-21 01:09:41.863+03	
1dbbcfda-10be-35f7-88c0-ecb6f96b8e36	2021-05-21 01:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 01:10:00.852+03	2021-05-21 01:10:00.861+03	ERROR
cea0ef06-9b14-4b42-02f7-2ecbbda84346	2021-05-21 01:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:10:12.852+03	2021-05-21 01:10:12.87+03	
db30bb0a-196f-615b-ccbc-7f6ed1bb2e30	2021-05-21 01:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:10:32.853+03	2021-05-21 01:10:32.875+03	
8c88c930-6f78-be69-5f78-c973980cbdee	2021-05-21 01:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:10:53.853+03	2021-05-21 01:10:53.862+03	
3b8e7bd2-bf90-6a2d-1365-0c710fb6c082	2021-05-21 01:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:11:14.853+03	2021-05-21 01:11:14.873+03	
92921e64-e0a0-8ca2-08af-6202ce11ffcf	2021-05-21 01:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:11:35.852+03	2021-05-21 01:11:35.859+03	
b8a5b220-74eb-55f5-1083-175e72a2da06	2021-05-21 01:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:11:55.852+03	2021-05-21 01:11:55.861+03	
29ed798f-d363-c628-8bdf-2aa2ae1b9f66	2021-05-21 01:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:12:15.853+03	2021-05-21 01:12:15.874+03	
2023d283-d897-ad1e-bf43-78dff48342d4	2021-05-21 01:12:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:12:36.853+03	2021-05-21 01:12:36.86+03	
80152a45-210c-2622-7d9e-3d77124dad3a	2021-05-21 01:12:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:12:56.853+03	2021-05-21 01:12:56.861+03	
68591981-3295-d476-45cb-d0097204c5f8	2021-05-21 01:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:13:17.852+03	2021-05-21 01:13:17.869+03	
2685fab8-8558-6712-27f6-ede8c7684b20	2021-05-21 01:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:13:37.853+03	2021-05-21 01:13:37.859+03	
3351a84f-359b-d9ac-1647-60e5263f9310	2021-05-21 01:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:13:57.853+03	2021-05-21 01:13:57.86+03	
15bf04cf-30fe-f9e4-e6a4-01d2ff75e4c4	2021-05-21 01:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:14:17.853+03	2021-05-21 01:14:17.876+03	
cdf80e09-a376-bd5d-2bc6-956f6064680f	2021-05-21 01:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:14:37.853+03	2021-05-21 01:14:37.86+03	
542bc2fe-41f6-1ae1-dc24-491ac34c8152	2021-05-21 01:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:14:58.852+03	2021-05-21 01:14:58.859+03	
e68b30dc-b47c-e1ff-95b9-f44f7fbd4be7	2021-05-21 01:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:15:18.853+03	2021-05-21 01:15:18.859+03	
98b37d2a-70e6-06fa-bfbe-901732526e94	2021-05-21 01:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:15:38.853+03	2021-05-21 01:15:38.861+03	
fdc8bcea-de8c-db83-5ba9-e917eac483d9	2021-05-21 01:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:15:58.853+03	2021-05-21 01:15:58.86+03	
4291644f-a56d-d2b3-dbc6-b6b4ec8a2720	2021-05-21 01:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:16:18.853+03	2021-05-21 01:16:18.859+03	
e206ad94-3bab-1200-f17f-254b7e0d00e9	2021-05-21 01:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:16:39.852+03	2021-05-21 01:16:39.859+03	
87e4af71-c916-549e-b8dd-b16ed629dcf3	2021-05-21 01:16:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:16:59.852+03	2021-05-21 01:16:59.859+03	
a802fe8a-423e-07eb-49df-731229cde15e	2021-05-21 01:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:17:19.853+03	2021-05-21 01:17:19.859+03	
13fdc723-fea6-9fbc-3737-492fb81ffb8f	2021-05-21 01:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:17:39.853+03	2021-05-21 01:17:39.86+03	
d454f1cf-3775-5068-ec4d-81ed555ca74e	2021-05-21 01:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:18:00.852+03	2021-05-21 01:18:00.861+03	
bc0b6656-1f33-f0b9-8980-2cd0f3de5799	2021-05-21 01:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:18:20.852+03	2021-05-21 01:18:20.859+03	
28ba906f-56ff-b20b-e34c-7e932d828412	2021-05-21 01:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:18:41.853+03	2021-05-21 01:18:41.859+03	
ff0c5abe-a6bb-6825-d0ef-0c3496c2e73f	2021-05-21 01:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:19:02.853+03	2021-05-21 01:19:02.859+03	
918c41e5-160c-1c86-020a-b8625b137488	2021-05-21 01:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:19:23.853+03	2021-05-21 01:19:23.86+03	
11eca863-5a16-1b62-fb29-504d5effec2f	2021-05-21 01:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:19:44.853+03	2021-05-21 01:19:44.859+03	
b2969f5d-d986-0c39-942a-ca44466af5ea	2021-05-21 01:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 01:20:00.852+03	2021-05-21 01:20:00.857+03	ERROR
a3fa1ca2-f8d8-52e8-652e-5995e4b0315e	2021-05-21 01:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:20:15.852+03	2021-05-21 01:20:15.86+03	
77e0901d-b632-7849-5877-d4ad0bebb5a7	2021-05-21 01:20:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:20:36.854+03	2021-05-21 01:20:36.86+03	
c6c85b5f-d2ce-4ab1-d0d3-f39c56ec54b3	2021-05-21 01:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 01:00:00.853+03	2021-05-21 01:00:00.859+03	ERROR
aa544555-b861-9c37-6be5-3e7df5163fb1	2021-05-21 01:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:00:18.853+03	2021-05-21 01:00:18.873+03	
8801dd2c-4a4c-4942-5bd0-9a169e5201a6	2021-05-21 01:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:00:38.853+03	2021-05-21 01:00:38.865+03	
ccaa1aa1-a933-8e68-b593-cec9bdbf01ca	2021-05-21 01:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:00:59.852+03	2021-05-21 01:00:59.859+03	
9955593b-3c04-3929-68a4-2208a216d801	2021-05-21 01:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:01:19.853+03	2021-05-21 01:01:19.858+03	
944230aa-29db-2e6d-990c-95535ae52eb5	2021-05-21 01:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:01:39.853+03	2021-05-21 01:01:39.86+03	
2a6f1b05-ba07-a169-cbb4-9fe4d80d9ef4	2021-05-21 01:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:01:59.853+03	2021-05-21 01:01:59.86+03	
9bc1542f-4882-d3b6-c7a3-b365ae33fe28	2021-05-21 01:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:02:19.853+03	2021-05-21 01:02:19.859+03	
2d7f88c2-7f2b-e1a8-af84-a67ff45148b1	2021-05-21 01:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:02:41.852+03	2021-05-21 01:02:41.859+03	
cebee726-adee-0293-ecec-88a32071e94f	2021-05-21 01:03:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:03:01.853+03	2021-05-21 01:03:01.859+03	
be0fb254-fb42-9202-a6bb-bf5a18b32866	2021-05-21 01:03:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:03:21.854+03	2021-05-21 01:03:21.861+03	
3ab39d19-e258-d47a-7647-46f03891fbed	2021-05-21 01:03:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:03:41.854+03	2021-05-21 01:03:41.86+03	
8c89bd77-c190-534b-5840-0960278212d2	2021-05-21 01:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:04:02.853+03	2021-05-21 01:04:02.859+03	
7fac3314-f7d3-5d85-77be-2a0ceb299b86	2021-05-21 01:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:04:22.853+03	2021-05-21 01:04:22.859+03	
6cee42ba-1bc5-00af-36a6-f75b802f084d	2021-05-21 01:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:04:42.853+03	2021-05-21 01:04:42.868+03	
d6699c89-9338-1488-89f8-d92757cb75f2	2021-05-21 01:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:05:02.853+03	2021-05-21 01:05:02.859+03	
b2baba6d-815f-5606-670e-31ed8e96e310	2021-05-21 01:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:05:22.853+03	2021-05-21 01:05:22.86+03	
af6c17cc-7e9c-33aa-28aa-0544d41f2e23	2021-05-21 01:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:05:43.853+03	2021-05-21 01:05:43.868+03	
c0ab3de2-c182-c03e-f5ce-28e180357b67	2021-05-21 01:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:06:04.852+03	2021-05-21 01:06:04.859+03	
acaab11d-9246-c8fa-f77e-9a512065dc42	2021-05-21 01:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:06:24.853+03	2021-05-21 01:06:24.858+03	
093bd1ad-eba8-c3e9-0077-dc87e2480f68	2021-05-21 01:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:06:45.852+03	2021-05-21 01:06:45.859+03	
b776faf7-4c1a-bed4-cc0d-7562e398f8d1	2021-05-21 01:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:07:05.853+03	2021-05-21 01:07:05.859+03	
5e84ca55-5ef4-c1bb-6be6-5f513f583a32	2021-05-21 01:07:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:07:26.853+03	2021-05-21 01:07:26.861+03	
48ac1705-c159-6a10-b63f-e5c27cdb30db	2021-05-21 01:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:07:47.852+03	2021-05-21 01:07:47.859+03	
a4d0ae98-9c2b-9ee2-e713-cec880a3cdde	2021-05-21 01:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:08:07.853+03	2021-05-21 01:08:07.86+03	
3e781c3b-90d5-283d-827a-54577160c9a3	2021-05-21 01:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:08:28.852+03	2021-05-21 01:08:28.86+03	
577509af-9284-db6b-2b54-de7b7d53fac2	2021-05-21 01:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:08:49.853+03	2021-05-21 01:08:49.859+03	
3d2d9559-48aa-0faf-9c93-1b6f9c70af2b	2021-05-21 01:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:09:10.852+03	2021-05-21 01:09:10.862+03	
bc48eeed-4c79-f124-f985-6922163e1d76	2021-05-21 01:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:09:30.853+03	2021-05-21 01:09:30.859+03	
441aab3f-ce08-e191-33d6-73c450acbe29	2021-05-21 01:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:09:52.852+03	2021-05-21 01:09:52.863+03	
ec8beeab-e0bc-7540-6ac2-86c18667c9d0	2021-05-21 01:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:10:02.852+03	2021-05-21 01:10:02.893+03	
98bd0247-a994-2634-4d8a-08b6f395a02b	2021-05-21 01:10:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:10:22.853+03	2021-05-21 01:10:22.87+03	
4b198ecf-0d99-ddec-cd36-311e10dd140d	2021-05-21 01:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:10:43.853+03	2021-05-21 01:10:43.86+03	
6d5cf178-78b5-5799-592d-83696bfdad23	2021-05-21 01:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:11:04.853+03	2021-05-21 01:11:04.86+03	
dfd816c0-d006-a5cb-f0ee-54afa3108848	2021-05-21 01:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:11:24.853+03	2021-05-21 01:11:24.863+03	
ebdfa5a6-c0a0-c942-2441-0c09635218dc	2021-05-21 01:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:11:45.852+03	2021-05-21 01:11:45.859+03	
254f8b7a-e629-f038-d69b-feb0bb6cd9f8	2021-05-21 01:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:12:05.853+03	2021-05-21 01:12:05.861+03	
c471ecf8-d50e-3c2d-b06a-22c5c329ba9f	2021-05-21 01:12:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:12:26.853+03	2021-05-21 01:12:26.86+03	
577539b2-f59f-c66b-e8bf-982a9feffa5c	2021-05-21 01:12:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:12:46.853+03	2021-05-21 01:12:46.86+03	
4c31386e-a136-ea9e-43d6-0851f73eb483	2021-05-21 01:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:13:07.852+03	2021-05-21 01:13:07.865+03	
1396ae5f-79d1-d16c-f2d4-819a914f3bfd	2021-05-21 01:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:13:27.852+03	2021-05-21 01:13:27.865+03	
f2223f49-9437-0832-7fa6-09d63309a76e	2021-05-21 01:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:13:47.853+03	2021-05-21 01:13:47.86+03	
c2c6d2db-8e34-4adc-ea7e-865604cba43e	2021-05-21 01:14:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:14:07.853+03	2021-05-21 01:14:07.859+03	
734de06b-2dd5-4be2-40d1-284f5fe49381	2021-05-21 01:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:14:27.853+03	2021-05-21 01:14:27.891+03	
cc437f0c-1b4e-113a-b8f6-42dd9551844e	2021-05-21 01:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:14:47.853+03	2021-05-21 01:14:47.86+03	
d6ddd375-4be5-a8a6-7da3-6320eb2e60df	2021-05-21 01:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:15:08.853+03	2021-05-21 01:15:08.858+03	
1e9e81af-422b-dd40-32c7-46803f1b9b80	2021-05-21 01:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:15:28.853+03	2021-05-21 01:15:28.859+03	
48b26dd2-d678-507e-c0c6-2561be39ecf7	2021-05-21 01:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:15:48.853+03	2021-05-21 01:15:48.859+03	
29b5b3c7-afcb-c1d9-d487-0ad74edd027f	2021-05-21 01:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:16:08.853+03	2021-05-21 01:16:08.859+03	
450135ad-e8fd-90bb-f947-38074d27d06d	2021-05-21 01:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:16:28.853+03	2021-05-21 01:16:28.86+03	
4df83de0-d4a2-6506-1ac3-c3bccbb82957	2021-05-21 01:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:16:49.852+03	2021-05-21 01:16:49.859+03	
df3a8978-ee09-3b38-c087-8786bd090797	2021-05-21 01:17:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:17:09.853+03	2021-05-21 01:17:09.859+03	
50408bee-a7f8-46eb-e941-3175524452ff	2021-05-21 01:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:17:29.853+03	2021-05-21 01:17:29.859+03	
42a4f63c-dab3-e3a0-4279-f250b75c28a9	2021-05-21 01:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:17:50.852+03	2021-05-21 01:17:50.858+03	
0920fcb1-4be9-c7de-7e12-836c894910e8	2021-05-21 01:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:18:10.852+03	2021-05-21 01:18:10.859+03	
bd57f01d-686f-a4ef-8e05-b08b76639247	2021-05-21 01:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:18:30.853+03	2021-05-21 01:18:30.859+03	
131b75cd-03d1-9b19-ac81-194a700daa78	2021-05-21 01:18:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:18:51.854+03	2021-05-21 01:18:51.861+03	
511252d5-138e-f31c-9d4b-8acc890fe406	2021-05-21 01:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:19:12.853+03	2021-05-21 01:19:12.875+03	
c4ad04e7-1f9e-94b9-5b87-cda61cc59409	2021-05-21 01:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:19:34.852+03	2021-05-21 01:19:34.858+03	
61a80fab-fe64-67f0-caec-1d7cd9d9ef2c	2021-05-21 01:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:19:54.853+03	2021-05-21 01:19:54.865+03	
1dd618ef-b29c-6bf9-dfa6-c84785419ce0	2021-05-21 01:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:20:05.852+03	2021-05-21 01:20:05.86+03	
183be735-b919-ad22-c5c3-99e1605191bd	2021-05-21 01:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:20:25.853+03	2021-05-21 01:20:25.868+03	
2a641151-b3f8-11d7-5b3a-4f2ebcc5be3c	2021-05-21 01:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:20:47.852+03	2021-05-21 01:20:47.859+03	
c390f9ea-ebce-bb2c-d84e-5018b5443ac7	2021-05-21 01:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:20:57.852+03	2021-05-21 01:20:57.859+03	
61cb46ff-620d-0bfe-7208-6d1c0c9a1df3	2021-05-21 01:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:21:17.853+03	2021-05-21 01:21:17.86+03	
127dc626-6c92-5e5a-ef76-dcf768868e4c	2021-05-21 01:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:21:37.853+03	2021-05-21 01:21:37.872+03	
36fa64db-307b-5f8f-b5aa-0c98054b8178	2021-05-21 01:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:21:57.853+03	2021-05-21 01:21:57.859+03	
a75b300f-b2e4-60e9-1ef3-3e0237a19a64	2021-05-21 01:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:22:17.853+03	2021-05-21 01:22:17.872+03	
5131af30-de7e-1182-76df-0ed9d891f607	2021-05-21 01:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:22:38.853+03	2021-05-21 01:22:38.859+03	
b07c2416-77dd-29c9-b897-c77b71f1e14f	2021-05-21 01:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:22:59.853+03	2021-05-21 01:22:59.859+03	
824e9ea8-8ae5-91f8-55d4-f60b15cfd6ac	2021-05-21 01:23:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:23:21.852+03	2021-05-21 01:23:21.859+03	
0093c3d4-e20f-c5ae-4173-b2fb806a5896	2021-05-21 01:23:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:23:41.852+03	2021-05-21 01:23:41.861+03	
e7a2b268-e573-096d-46d8-734c6f9ecf7a	2021-05-21 01:24:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:24:01.853+03	2021-05-21 01:24:01.864+03	
85430fbf-2713-5d2e-8b9e-637ebd124e3d	2021-05-21 01:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:24:22.853+03	2021-05-21 01:24:22.86+03	
160f4cdc-2b59-922c-4f04-6b1308cf21ed	2021-05-21 01:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:24:44.852+03	2021-05-21 01:24:44.858+03	
42577464-04cb-1bbc-8da3-d23f70a7ec1c	2021-05-21 01:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:25:05.852+03	2021-05-21 01:25:05.86+03	
2bc50063-7b5a-98b1-a712-52ada634fb93	2021-05-21 01:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:25:25.852+03	2021-05-21 01:25:25.86+03	
12a86a49-eb98-c936-cc5e-f6029200225f	2021-05-21 01:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:25:45.853+03	2021-05-21 01:25:45.859+03	
9ad6ad97-5b24-0b76-2028-5e383d20fcc4	2021-05-21 01:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:26:06.853+03	2021-05-21 01:26:06.858+03	
a8aca00b-174d-0a63-a738-918396b8b471	2021-05-21 01:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:26:27.853+03	2021-05-21 01:26:27.859+03	
d43ae5df-0796-dd55-2cf4-f30f71cb5f19	2021-05-21 01:26:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:26:48.852+03	2021-05-21 01:26:48.859+03	
cac77301-cb21-6cb3-1580-8e511b59ae66	2021-05-21 01:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:27:08.852+03	2021-05-21 01:27:08.86+03	
9c109293-29db-3454-3c93-f25ebdd63733	2021-05-21 01:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:27:28.852+03	2021-05-21 01:27:28.862+03	
2baef658-ad1d-dc43-9eb3-4062bed8eeab	2021-05-21 01:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:27:48.853+03	2021-05-21 01:27:48.864+03	
e867e4bc-1cd9-88c4-28d2-0cbcf210ef31	2021-05-21 01:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:28:09.852+03	2021-05-21 01:28:09.859+03	
5a20439b-8724-6d48-98ac-cb07af609030	2021-05-21 01:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:28:30.853+03	2021-05-21 01:28:30.862+03	
91cf0180-9281-21a8-6f70-ece05ed39c8e	2021-05-21 01:28:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:28:51.853+03	2021-05-21 01:28:51.859+03	
ce426549-0672-a2e0-52f3-bbba83da8c6f	2021-05-21 01:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:29:12.853+03	2021-05-21 01:29:12.859+03	
300effd7-7c73-6b2d-4576-773859c6bad4	2021-05-21 01:29:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:29:32.853+03	2021-05-21 01:29:32.86+03	
6baa4d50-523b-7907-2f53-cc802de80285	2021-05-21 01:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:29:52.853+03	2021-05-21 01:29:52.861+03	
0345f3cb-0e8c-8580-32ec-b2efb171b6d8	2021-05-21 01:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:30:03.852+03	2021-05-21 01:30:03.861+03	
716e722a-2b7e-ce0e-a760-9ddc1395de1f	2021-05-21 01:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:30:24.853+03	2021-05-21 01:30:24.864+03	
f345dbab-9259-4cc8-a77b-6521fd9e53ab	2021-05-21 01:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:30:45.853+03	2021-05-21 01:30:45.86+03	
7e89bf4f-5b7d-a886-7a46-53fbdaf536c1	2021-05-21 01:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:31:05.853+03	2021-05-21 01:31:05.872+03	
60847895-7586-0f18-8689-9e3e668b1683	2021-05-21 01:31:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:31:26.852+03	2021-05-21 01:31:26.86+03	
158ec3dd-da3d-cdd8-f030-328de2a92be7	2021-05-21 01:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:31:46.852+03	2021-05-21 01:31:46.859+03	
7b008306-4175-e387-8850-7d1e15ac3a59	2021-05-21 01:32:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:32:06.852+03	2021-05-21 01:32:06.859+03	
48b6e0b5-890b-b3e3-425a-f7f53ab1e216	2021-05-21 01:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:32:27.853+03	2021-05-21 01:32:27.861+03	
68ac1280-0b12-2974-4b5b-b859cdf8ada3	2021-05-21 01:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:32:47.853+03	2021-05-21 01:32:47.86+03	
f8f1cff2-08ff-b013-190a-9b949b8345f2	2021-05-21 01:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:33:09.852+03	2021-05-21 01:33:09.859+03	
2f8b96c1-5cc5-507e-2b4c-809c8f9bd0b6	2021-05-21 01:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:33:29.853+03	2021-05-21 01:33:29.861+03	
72dd2e46-184f-a8fb-5262-128235476c70	2021-05-21 01:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:33:49.853+03	2021-05-21 01:33:49.86+03	
27befe2b-5b47-3ffa-d6e1-bec75772942c	2021-05-21 01:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:34:09.853+03	2021-05-21 01:34:09.859+03	
1141997c-b436-98e6-bdd6-0b1afb7c12de	2021-05-21 01:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:34:30.852+03	2021-05-21 01:34:30.859+03	
e9203b4f-ea71-8afa-f3fc-855d080d09be	2021-05-21 01:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:34:50.852+03	2021-05-21 01:34:50.859+03	
2131e2f8-106c-bdcd-2591-4ab6f55f7c8a	2021-05-21 01:35:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:35:11.853+03	2021-05-21 01:35:11.863+03	
e766b468-3dbb-c096-0baf-e017f65accda	2021-05-21 01:35:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:35:31.853+03	2021-05-21 01:35:31.86+03	
1a63e2a7-471e-21af-354b-a0207852d791	2021-05-21 01:35:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:35:51.854+03	2021-05-21 01:35:51.861+03	
de2e6046-f343-daee-a0fd-4f31a785505e	2021-05-21 01:36:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:36:12.853+03	2021-05-21 01:36:12.859+03	
1752ce24-cf3d-d142-ba56-92ba40cc20e7	2021-05-21 01:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:36:33.853+03	2021-05-21 01:36:33.86+03	
4f4ccd89-9971-ec37-b71f-44db80a6ffcd	2021-05-21 01:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:36:53.853+03	2021-05-21 01:36:53.869+03	
01d64309-b4a0-1a86-2a27-90e8be46cdfa	2021-05-21 01:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:37:14.853+03	2021-05-21 01:37:14.86+03	
0a702822-789c-e4e2-46d4-46b913ad482a	2021-05-21 01:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:37:35.852+03	2021-05-21 01:37:35.858+03	
6dca2869-8b2c-62ed-457e-99b54a5afe65	2021-05-21 01:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:37:55.853+03	2021-05-21 01:37:55.861+03	
e3dba0e1-5ffe-0101-7770-aa5027c24477	2021-05-21 01:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:38:15.853+03	2021-05-21 01:38:15.86+03	
1acd1e98-eeb4-1ec1-2b6a-e2bf08c262d2	2021-05-21 01:38:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:38:36.853+03	2021-05-21 01:38:36.859+03	
c135cfbe-d6ee-1e9c-a5a1-bc36c27b790c	2021-05-21 01:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:38:58.852+03	2021-05-21 01:38:58.859+03	
1fae5531-f259-de65-428e-8612b1102983	2021-05-21 01:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:39:18.853+03	2021-05-21 01:39:18.859+03	
bea3eff4-d0f8-e096-6571-e90b12b1e4fb	2021-05-21 01:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:39:40.852+03	2021-05-21 01:39:40.859+03	
6ffe8dfe-12fa-e9ef-3ea0-43085e8defe0	2021-05-21 01:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 01:40:00.852+03	2021-05-21 01:40:00.859+03	ERROR
5d6ae95b-23c7-ce40-a744-b5c1889e285e	2021-05-21 01:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:40:11.853+03	2021-05-21 01:40:11.86+03	
752220f1-9374-9e40-ad5f-80903c87de1f	2021-05-21 01:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:40:32.853+03	2021-05-21 01:40:32.859+03	
82e01aeb-a173-a4fb-7873-5f5a120cfd90	2021-05-21 01:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:40:53.853+03	2021-05-21 01:40:53.871+03	
2b0f97ac-30ab-1cc2-a5e3-bafde9a5686e	2021-05-21 01:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:41:14.852+03	2021-05-21 01:41:14.859+03	
7d161328-d2cc-ff5e-b341-f1bda2b144f1	2021-05-21 01:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:41:34.853+03	2021-05-21 01:41:34.859+03	
9c0cdfb3-979e-0ba4-39f8-b3d445224a34	2021-05-21 01:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:41:55.853+03	2021-05-21 01:41:55.859+03	
e7db580e-fab5-dbb6-857f-c40bee68c8e2	2021-05-21 01:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:21:07.852+03	2021-05-21 01:21:07.859+03	
1bcf3a87-ed62-b71c-99d7-c21a3922fe87	2021-05-21 01:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:21:27.853+03	2021-05-21 01:21:27.859+03	
e53787fb-cf6d-0b77-1171-bde960e20adc	2021-05-21 01:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:21:47.853+03	2021-05-21 01:21:47.859+03	
0bce2c1c-23ee-daba-0614-e99eb06b69f3	2021-05-21 01:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:22:07.853+03	2021-05-21 01:22:07.859+03	
5a7b50da-99be-871e-74db-21ba2c9388b2	2021-05-21 01:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:22:28.852+03	2021-05-21 01:22:28.859+03	
8a4f9dba-2e4a-cda3-bcf3-6dd8dcca7a68	2021-05-21 01:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:22:49.852+03	2021-05-21 01:22:49.859+03	
93c78709-b5ec-7eeb-b47b-e744cd6335e4	2021-05-21 01:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:23:10.853+03	2021-05-21 01:23:10.867+03	
22c5eb4b-55a7-0a5d-b192-c1d82b5f9fbe	2021-05-21 01:23:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:23:31.852+03	2021-05-21 01:23:31.861+03	
54d856e8-b9f1-eef5-2f49-080b81154d18	2021-05-21 01:23:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:23:51.853+03	2021-05-21 01:23:51.86+03	
7d4f5fb3-0237-6b06-d4e3-75f450cf9239	2021-05-21 01:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:24:12.852+03	2021-05-21 01:24:12.871+03	
148e92a5-8431-96b8-2694-98ef499320ab	2021-05-21 01:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:24:33.853+03	2021-05-21 01:24:33.859+03	
87feeb89-cbbb-e0af-7c20-9cd1e09d1d68	2021-05-21 01:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:24:54.853+03	2021-05-21 01:24:54.86+03	
ce9b2d9b-3c81-8548-41af-fd99c384585b	2021-05-21 01:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:25:15.852+03	2021-05-21 01:25:15.858+03	
54a7ca7f-e7ea-eeb8-0e33-d59e70376c80	2021-05-21 01:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:25:35.852+03	2021-05-21 01:25:35.86+03	
24ffd390-87e2-c257-b696-782a4ab87fb6	2021-05-21 01:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:25:55.853+03	2021-05-21 01:25:55.859+03	
b4cbb451-f73b-da1c-fe83-a987f1da25d8	2021-05-21 01:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:26:17.852+03	2021-05-21 01:26:17.872+03	
7a2fa5ee-d77f-57fa-1284-d702851601d0	2021-05-21 01:26:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:26:38.852+03	2021-05-21 01:26:38.858+03	
26b1e260-0ba6-537b-1324-e4040de067d9	2021-05-21 01:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:26:58.852+03	2021-05-21 01:26:58.859+03	
8a7a22a0-9524-7a11-65b8-85b04a086ce5	2021-05-21 01:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:27:18.852+03	2021-05-21 01:27:18.861+03	
a11f5cfd-66db-0f0c-5e37-37050c0f3460	2021-05-21 01:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:27:38.852+03	2021-05-21 01:27:38.859+03	
d617886d-3cde-1ad3-b462-b4034ed79e67	2021-05-21 01:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:27:59.852+03	2021-05-21 01:27:59.859+03	
d8834777-fd0b-7acf-44b0-4682ad5e03bf	2021-05-21 01:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:28:19.853+03	2021-05-21 01:28:19.859+03	
b37250c2-49bb-56ee-89d1-712bac4dfb00	2021-05-21 01:28:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:28:41.853+03	2021-05-21 01:28:41.859+03	
0488abff-0d2f-53dd-25c7-7ed530375834	2021-05-21 01:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:29:02.852+03	2021-05-21 01:29:02.858+03	
f608e74d-f981-2ddb-2c71-43854268b1c2	2021-05-21 01:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:29:22.853+03	2021-05-21 01:29:22.861+03	
4e7fe204-7516-5b7c-7919-11734a42443b	2021-05-21 01:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:29:42.853+03	2021-05-21 01:29:42.86+03	
d4c0cd6a-ae0c-3463-4218-064526d62f32	2021-05-21 01:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 01:30:00.852+03	2021-05-21 01:30:00.858+03	ERROR
386ed325-2916-faa7-5210-02ccd639ea3e	2021-05-21 01:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:30:13.853+03	2021-05-21 01:30:13.89+03	
1fac2c2f-1892-03bd-4682-9ae8bdfa6ff6	2021-05-21 01:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:30:35.853+03	2021-05-21 01:30:35.861+03	
02951c4a-d37f-c5b9-882c-dc02b4dda7d4	2021-05-21 01:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:30:55.853+03	2021-05-21 01:30:55.859+03	
0efe2083-2ad1-a96b-2d39-99f6a5c0a0e5	2021-05-21 01:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:31:15.853+03	2021-05-21 01:31:15.862+03	
60c408f6-39b7-ef1d-38a2-d7365d341884	2021-05-21 01:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:31:36.852+03	2021-05-21 01:31:36.859+03	
87a3cf49-fbc0-0aef-7fe1-80327e9fa1f1	2021-05-21 01:31:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:31:56.852+03	2021-05-21 01:31:56.859+03	
59322070-b5ea-491d-54d2-be9217e99293	2021-05-21 01:32:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:32:16.853+03	2021-05-21 01:32:16.873+03	
91c67665-3f9e-bd4e-3f9f-74efcafa18b7	2021-05-21 01:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:32:37.853+03	2021-05-21 01:32:37.861+03	
b8732eaa-3390-4b8b-c544-74e91d69383d	2021-05-21 01:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:32:58.853+03	2021-05-21 01:32:58.859+03	
fc352994-fc2d-c72c-31f1-64408f9b5902	2021-05-21 01:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:33:19.853+03	2021-05-21 01:33:19.862+03	
2deeb91c-71b0-7bb6-31df-1de67d5da32c	2021-05-21 01:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:33:39.853+03	2021-05-21 01:33:39.858+03	
3f47157d-b89e-c1c8-189a-a0141d2d7306	2021-05-21 01:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:33:59.853+03	2021-05-21 01:33:59.87+03	
1b11793b-6c1d-fbca-c27a-8fc14097390b	2021-05-21 01:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:34:20.852+03	2021-05-21 01:34:20.866+03	
3ddc3686-e478-0c73-9d68-e245291fb35e	2021-05-21 01:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:34:40.852+03	2021-05-21 01:34:40.859+03	
26f2a6fa-3af4-880d-78aa-162b30a43706	2021-05-21 01:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:35:00.853+03	2021-05-21 01:35:00.861+03	
57248838-5113-f109-fdaa-2f5c5f725428	2021-05-21 01:35:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:35:21.853+03	2021-05-21 01:35:21.861+03	
88a0c4e6-028a-72e4-4375-52066c9d4439	2021-05-21 01:35:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:35:41.853+03	2021-05-21 01:35:41.859+03	
cb35fe6c-e2b8-f92f-32d1-d8f4dbaaaad6	2021-05-21 01:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:36:02.852+03	2021-05-21 01:36:02.858+03	
dec2f3c7-2be6-5cd4-e40e-28a88e022e3e	2021-05-21 01:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:36:23.853+03	2021-05-21 01:36:23.86+03	
721714eb-b95e-f664-4253-0d21643bee0c	2021-05-21 01:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:36:43.853+03	2021-05-21 01:36:43.859+03	
9d510af6-99b4-4b3f-94e3-89ae5410bc5f	2021-05-21 01:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:37:04.852+03	2021-05-21 01:37:04.859+03	
d824d42b-78eb-a1ff-3528-7c621abf7f74	2021-05-21 01:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:37:25.852+03	2021-05-21 01:37:25.859+03	
180a28c6-3019-2a03-7e7c-51c01fcd79a0	2021-05-21 01:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:37:45.852+03	2021-05-21 01:37:45.859+03	
71e4d8e6-d904-df76-f11b-9998c2ee7c01	2021-05-21 01:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:38:05.853+03	2021-05-21 01:38:05.86+03	
a4a5f909-dba2-d7e3-b223-c9d50ee712b3	2021-05-21 01:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:38:26.852+03	2021-05-21 01:38:26.859+03	
e70c1c0e-976b-0322-2c2f-517d2d214b82	2021-05-21 01:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:38:47.853+03	2021-05-21 01:38:47.859+03	
6c885b90-a347-0c05-9915-f9ebbbf6997a	2021-05-21 01:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:39:08.852+03	2021-05-21 01:39:08.861+03	
e5d30655-de12-e5e4-8c22-8ad17689b5fb	2021-05-21 01:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:39:29.853+03	2021-05-21 01:39:29.859+03	
0233b312-4c15-9e21-da54-d579b5ed836c	2021-05-21 01:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:39:50.853+03	2021-05-21 01:39:50.859+03	
81f2fe36-3578-5166-1631-d8735044fede	2021-05-21 01:40:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:40:01.853+03	2021-05-21 01:40:01.877+03	
736aa056-5627-0c16-8ba0-b0a66331b131	2021-05-21 01:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:40:22.853+03	2021-05-21 01:40:22.859+03	
654a427e-f64f-f975-42dd-3c6aa521ce42	2021-05-21 01:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:40:42.853+03	2021-05-21 01:40:42.859+03	
2843ee7f-a2f3-c46e-a38f-86fd578b4848	2021-05-21 01:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:41:03.853+03	2021-05-21 01:41:03.86+03	
1425204d-b159-e2ed-502c-fe74aa973aff	2021-05-21 01:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:41:24.853+03	2021-05-21 01:41:24.863+03	
b3aa3995-cc83-03a5-780b-1581f6325363	2021-05-21 01:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:41:45.852+03	2021-05-21 01:41:45.86+03	
f98b9eeb-65af-a640-eb8b-af3ff2c60e8d	2021-05-21 01:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:42:05.853+03	2021-05-21 01:42:05.859+03	
083b8329-7d55-9b86-8283-3698a24ba6b6	2021-05-21 01:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:42:15.853+03	2021-05-21 01:42:15.859+03	
e301388a-f119-9f16-c5bd-9c707a5cee11	2021-05-21 01:42:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:42:36.853+03	2021-05-21 01:42:36.859+03	
c7d4b7a0-301d-a62a-9ad6-f491b088f4dc	2021-05-21 01:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:42:57.853+03	2021-05-21 01:42:57.859+03	
aa2674a5-f4a7-a992-8d5e-afa335791661	2021-05-21 01:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:43:17.853+03	2021-05-21 01:43:17.86+03	
bea76a4e-2814-8727-58cd-ef4f2448facd	2021-05-21 01:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:43:37.853+03	2021-05-21 01:43:37.861+03	
b9240b25-525c-2b2b-1e49-82888c9aaa69	2021-05-21 01:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:43:57.853+03	2021-05-21 01:43:57.861+03	
cf4cbe00-55b6-b722-7f14-d2e931182f82	2021-05-21 01:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:44:18.852+03	2021-05-21 01:44:18.858+03	
2b4a9afb-06d5-0b4e-8861-bbb4eeaaca6c	2021-05-21 01:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:44:38.852+03	2021-05-21 01:44:38.86+03	
60dcfbc6-fe1b-c7c2-39c5-81a33d333a67	2021-05-21 01:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:44:58.853+03	2021-05-21 01:44:58.859+03	
e24da588-46c1-03bf-11bd-d6718a31c457	2021-05-21 01:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:45:19.852+03	2021-05-21 01:45:19.859+03	
6496f29e-114f-005a-3691-29390a68e8cc	2021-05-21 01:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:45:39.853+03	2021-05-21 01:45:39.86+03	
1891c2f0-8ca9-b286-0c11-46cf7321dc89	2021-05-21 01:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:46:00.853+03	2021-05-21 01:46:00.861+03	
da84e3b5-291a-9124-5823-69d09824c73f	2021-05-21 01:46:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:46:21.854+03	2021-05-21 01:46:21.86+03	
4ac70da6-d4ef-6b7d-3377-43d73f3a7e79	2021-05-21 01:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:46:42.853+03	2021-05-21 01:46:42.859+03	
58bf87b4-bbb1-b815-f152-f02ae34e16cf	2021-05-21 01:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:47:02.853+03	2021-05-21 01:47:02.86+03	
b0ed574e-6cba-9465-74fc-ba7f55db1a1c	2021-05-21 01:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:47:23.852+03	2021-05-21 01:47:23.871+03	
b2f44a98-76b1-d0b0-d6ba-fc92208e636b	2021-05-21 01:47:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:47:43.853+03	2021-05-21 01:47:43.86+03	
34788995-32e0-1f8f-ed88-83132eb2594f	2021-05-21 01:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:48:04.852+03	2021-05-21 01:48:04.859+03	
a45c3ac4-037c-87f4-36e8-9bd6ecd07efd	2021-05-21 01:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:48:24.852+03	2021-05-21 01:48:24.86+03	
3d022fa2-a9a7-0c68-2da0-b1fdb2d3fbdc	2021-05-21 01:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:48:44.852+03	2021-05-21 01:48:44.86+03	
74a4afec-8e1b-bca9-b69b-a45ca96639dc	2021-05-21 01:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:49:04.852+03	2021-05-21 01:49:04.859+03	
7e8c4024-5f72-655b-44c2-8d00d9f33b35	2021-05-21 01:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:49:24.853+03	2021-05-21 01:49:24.893+03	
1b795424-57d9-857e-31a0-9b0eedeb9186	2021-05-21 01:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:49:45.853+03	2021-05-21 01:49:45.861+03	
e1eddd09-8248-01e6-7c90-699e44e86a63	2021-05-21 01:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 01:50:00.853+03	2021-05-21 01:50:00.858+03	ERROR
df292af2-bcfe-ab8f-4186-2cef9197151b	2021-05-21 01:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:50:17.853+03	2021-05-21 01:50:17.859+03	
d9469c6a-3b29-d9d0-4ac6-3f658b8f3bbb	2021-05-21 01:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:50:38.853+03	2021-05-21 01:50:38.871+03	
120084b6-8380-7d5f-cb91-13769c042f93	2021-05-21 01:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:50:58.853+03	2021-05-21 01:50:58.86+03	
c43f6010-8844-34dd-d4f4-7d3ca3e162f4	2021-05-21 01:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:51:18.853+03	2021-05-21 01:51:18.861+03	
7a278801-718e-1510-5010-72393fddcddf	2021-05-21 01:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:51:38.853+03	2021-05-21 01:51:38.86+03	
a1c3239c-11ad-a8ee-557f-2b8caa4141c2	2021-05-21 01:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:51:59.853+03	2021-05-21 01:51:59.86+03	
ab23bc32-69dc-b149-9023-b32ab9cf09bd	2021-05-21 01:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:52:19.853+03	2021-05-21 01:52:19.86+03	
6ae0c4a9-41c2-f134-0dd6-8987117a77f0	2021-05-21 01:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:52:39.853+03	2021-05-21 01:52:39.86+03	
7c898a37-8077-890f-870b-b1d05e853953	2021-05-21 01:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:52:59.853+03	2021-05-21 01:52:59.86+03	
04cef354-f5fe-54e8-8db1-3a75b541769f	2021-05-21 01:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:53:20.853+03	2021-05-21 01:53:20.865+03	
ca9f97d1-1ebb-b32e-868e-582cc93574d0	2021-05-21 01:53:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:53:41.853+03	2021-05-21 01:53:41.859+03	
3d214dc7-804d-7dff-ddd9-b12ea1bafc3e	2021-05-21 01:54:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:54:01.854+03	2021-05-21 01:54:01.88+03	
47b56b15-2eec-74ff-aa6f-874d59d3b9f4	2021-05-21 01:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:54:23.852+03	2021-05-21 01:54:23.872+03	
14591535-51c5-e23e-cffd-02b109b5b34b	2021-05-21 01:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:54:43.853+03	2021-05-21 01:54:43.859+03	
037d810e-90e7-3208-0a17-83b068d9c1ee	2021-05-21 01:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:55:03.853+03	2021-05-21 01:55:03.862+03	
5c583211-65c7-5b0e-0275-4e8e657c737d	2021-05-21 01:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:55:25.852+03	2021-05-21 01:55:25.859+03	
7b6c4b7e-f2ac-9a83-5093-bdf09ed7f1dd	2021-05-21 01:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:55:45.853+03	2021-05-21 01:55:45.859+03	
e0bed0dd-f492-1cd6-f1cd-a19fdd1c4ec5	2021-05-21 01:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:56:05.853+03	2021-05-21 01:56:05.861+03	
dae22a75-3ed3-be9a-3c2d-f8c85c5f3f4b	2021-05-21 01:56:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:56:26.853+03	2021-05-21 01:56:26.861+03	
f629ceb9-8260-b6b4-ed62-04fbf6a50ff0	2021-05-21 01:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:56:47.853+03	2021-05-21 01:56:47.87+03	
9c7288aa-7b77-c494-59b8-2abe0d00622e	2021-05-21 01:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:57:08.852+03	2021-05-21 01:57:08.859+03	
b67b0d8c-abd6-b4f6-9391-e696482d7d5c	2021-05-21 01:57:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:57:29.853+03	2021-05-21 01:57:29.86+03	
cf8204dc-2282-12b1-983b-1e511b549bfe	2021-05-21 01:57:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:57:49.853+03	2021-05-21 01:57:49.861+03	
b65661ae-c025-ace0-c19a-9984333d83f5	2021-05-21 01:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:58:09.853+03	2021-05-21 01:58:09.874+03	
721680d7-865c-1780-44f1-5672fd13fad8	2021-05-21 01:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:58:30.853+03	2021-05-21 01:58:30.859+03	
71d96d48-acbd-7ab1-503d-d1e38341550a	2021-05-21 01:58:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:58:51.854+03	2021-05-21 01:58:51.862+03	
b550caa1-4c73-1c0b-ce39-b58b747a49b3	2021-05-21 01:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:59:13.853+03	2021-05-21 01:59:13.86+03	
5a8e1579-a100-bc29-c3a5-3c665b367101	2021-05-21 01:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:59:33.853+03	2021-05-21 01:59:33.871+03	
e8d4add5-42cb-9d3e-3fcc-23518606938a	2021-05-21 01:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:59:54.853+03	2021-05-21 01:59:54.866+03	
4d078471-68d4-2e06-b81f-8028e79a1c68	2021-05-21 02:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:00:04.853+03	2021-05-21 02:00:04.869+03	
88916cd0-a4e0-d494-abac-27fce0dd2f32	2021-05-21 02:00:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:00:24.853+03	2021-05-21 02:00:24.904+03	
89f131d1-177b-66dc-81ff-acdd8ec63af2	2021-05-21 02:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:00:45.853+03	2021-05-21 02:00:45.864+03	
588608b7-fe02-6a4c-8fb0-d9437afcc953	2021-05-21 02:01:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:01:06.852+03	2021-05-21 02:01:06.86+03	
ad1731fe-d522-109e-1256-e337c773858a	2021-05-21 02:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:01:27.852+03	2021-05-21 02:01:27.858+03	
7b7c4052-bbb5-a1f5-acff-f54fe1d6038f	2021-05-21 02:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:01:48.852+03	2021-05-21 02:01:48.858+03	
87c117c5-2cc2-f8db-c238-cde3d4ab5ff3	2021-05-21 02:02:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:02:08.852+03	2021-05-21 02:02:08.859+03	
9c2d5ce1-9f9e-5e01-a013-959026bbb571	2021-05-21 02:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:02:28.853+03	2021-05-21 02:02:28.859+03	
ec3f41f7-1a36-ddc1-bc70-bf5c70dd971f	2021-05-21 02:02:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:02:49.853+03	2021-05-21 02:02:49.862+03	
0961d6d9-13d3-0fdf-639f-debcac737956	2021-05-21 02:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:03:09.853+03	2021-05-21 02:03:09.859+03	
7a07ca10-afb6-92e7-96dd-c91afb5c033c	2021-05-21 01:42:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:42:26.852+03	2021-05-21 01:42:26.863+03	
167152e6-9c42-774b-d3c1-44e651d70906	2021-05-21 01:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:42:47.853+03	2021-05-21 01:42:47.859+03	
3aa6091a-c566-0a33-a6c5-b8c5f8408ba6	2021-05-21 01:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:43:07.853+03	2021-05-21 01:43:07.859+03	
9e60d5a1-4665-5989-b68d-5671d8b55e79	2021-05-21 01:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:43:27.853+03	2021-05-21 01:43:27.872+03	
660cbce4-7d63-a29b-994d-109b648d66ce	2021-05-21 01:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:43:47.853+03	2021-05-21 01:43:47.86+03	
c1ce8da8-6673-aad9-e292-e06fc6b3a691	2021-05-21 01:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:44:07.853+03	2021-05-21 01:44:07.872+03	
b80e2f67-855d-460c-2565-b4058c581dfe	2021-05-21 01:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:44:28.852+03	2021-05-21 01:44:28.858+03	
fed01e91-8bf6-5a9b-b99c-bb7c39883842	2021-05-21 01:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:44:48.853+03	2021-05-21 01:44:48.861+03	
00751211-deaa-d0cb-bdca-846397ed4c2a	2021-05-21 01:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:45:09.852+03	2021-05-21 01:45:09.859+03	
70c3d48b-3659-b9f1-aa4d-5476f456c5dd	2021-05-21 01:45:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:45:29.853+03	2021-05-21 01:45:29.862+03	
42436648-763c-3359-ed05-09771d1eb9a2	2021-05-21 01:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:45:49.853+03	2021-05-21 01:45:49.859+03	
14f339ce-f302-6ad1-9d4d-f429396a31ed	2021-05-21 01:46:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:46:10.853+03	2021-05-21 01:46:10.859+03	
10b4b58f-cfdc-b203-e172-9154e7049aa8	2021-05-21 01:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:46:32.853+03	2021-05-21 01:46:32.869+03	
c007d604-05ee-e1d4-3e45-a01097005c52	2021-05-21 01:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:46:52.853+03	2021-05-21 01:46:52.859+03	
32dee831-e593-e7e9-dd4a-a2e17930258b	2021-05-21 01:47:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:47:13.852+03	2021-05-21 01:47:13.859+03	
52705ebd-564d-a0bc-4a62-af62d91511aa	2021-05-21 01:47:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:47:33.852+03	2021-05-21 01:47:33.859+03	
dbf838f9-bbc7-1548-4ed6-94ae893d1356	2021-05-21 01:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:47:53.853+03	2021-05-21 01:47:53.859+03	
a882b3cb-0349-de93-c3e9-94f9aa296ec7	2021-05-21 01:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:48:14.852+03	2021-05-21 01:48:14.859+03	
cd66a557-a8d9-d588-a18b-38a6681e6dc2	2021-05-21 01:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:48:34.852+03	2021-05-21 01:48:34.861+03	
e6ca19e8-7ce7-11a9-43af-75de436ee354	2021-05-21 01:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:48:54.852+03	2021-05-21 01:48:54.869+03	
f9807ef6-25e3-6a90-0a67-208fbe2f0357	2021-05-21 01:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:49:14.852+03	2021-05-21 01:49:14.863+03	
132de504-9294-4a58-561c-1fb226a2ab50	2021-05-21 01:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:49:34.853+03	2021-05-21 01:49:34.86+03	
765cf838-fcbe-258d-bbd0-29e789da5388	2021-05-21 01:49:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:49:56.853+03	2021-05-21 01:49:56.861+03	
9f582db3-7781-f0ab-8d14-87f09f72036a	2021-05-21 01:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:50:07.853+03	2021-05-21 01:50:07.859+03	
be255b72-d290-9a30-1d58-7d6cc4589f38	2021-05-21 01:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:50:27.853+03	2021-05-21 01:50:27.87+03	
80e4037c-ce7e-dad3-1dd5-141ca449354d	2021-05-21 01:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:50:48.853+03	2021-05-21 01:50:48.863+03	
7b6950d1-3649-0266-9dfe-fbec3faa2d6e	2021-05-21 01:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:51:08.853+03	2021-05-21 01:51:08.862+03	
e7be1111-0c64-293a-e01b-1a2bc8cbaea2	2021-05-21 01:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:51:28.853+03	2021-05-21 01:51:28.859+03	
249c4b48-5644-8dfd-fcc2-a6767a1bb8a9	2021-05-21 01:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:51:49.853+03	2021-05-21 01:51:49.859+03	
a4da4652-3ac2-7e6c-65ec-c5f2bfc4a069	2021-05-21 01:52:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:52:09.853+03	2021-05-21 01:52:09.859+03	
b7a754bf-0ae4-831f-1af3-423743be400e	2021-05-21 01:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:52:29.853+03	2021-05-21 01:52:29.86+03	
694a66ec-7754-1fbf-6f26-5d829b103a4b	2021-05-21 01:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:52:49.853+03	2021-05-21 01:52:49.87+03	
7a3086da-cdb1-5f20-2f0d-05491f5e8521	2021-05-21 01:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:53:10.852+03	2021-05-21 01:53:10.86+03	
beaccd74-47be-a01c-8bbc-c0ede33feceb	2021-05-21 01:53:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:53:31.853+03	2021-05-21 01:53:31.866+03	
ac9da1b4-6015-ed9c-3401-88b6884f9491	2021-05-21 01:53:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:53:51.854+03	2021-05-21 01:53:51.861+03	
91f149fa-d1f5-d107-1b9f-fcb51e1c3db8	2021-05-21 01:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:54:12.853+03	2021-05-21 01:54:12.86+03	
89694576-3757-a827-9b7f-3b93681ef820	2021-05-21 01:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:54:33.853+03	2021-05-21 01:54:33.872+03	
7a1b6932-a904-4786-58c4-7dc378508510	2021-05-21 01:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:54:53.853+03	2021-05-21 01:54:53.86+03	
dbf536af-86d1-1a55-7bb0-754b7b3ca9de	2021-05-21 01:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:55:14.853+03	2021-05-21 01:55:14.879+03	
5e94d194-d16f-08fd-0293-9e7f514c5431	2021-05-21 01:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:55:35.853+03	2021-05-21 01:55:35.86+03	
3b588a80-3d10-b93e-1bb4-f8e9f270182b	2021-05-21 01:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:55:55.853+03	2021-05-21 01:55:55.86+03	
84e0cef5-b064-9f5a-e405-dda0df60189d	2021-05-21 01:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:56:15.853+03	2021-05-21 01:56:15.871+03	
8338eef3-8f89-73c0-1641-3024e7d35d04	2021-05-21 01:56:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:56:36.854+03	2021-05-21 01:56:36.861+03	
afe40a6f-5f29-ef24-23a9-bfdd69cb7a87	2021-05-21 01:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:56:57.853+03	2021-05-21 01:56:57.858+03	
170132a1-6e2c-dc55-5389-4eb73a25ddd4	2021-05-21 01:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:57:18.853+03	2021-05-21 01:57:18.859+03	
c26eeca6-b375-1974-635d-f1b0fb1a0f53	2021-05-21 01:57:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:57:39.853+03	2021-05-21 01:57:39.86+03	
4763b712-8317-84e0-03c9-83f57ac4cd50	2021-05-21 01:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:57:59.853+03	2021-05-21 01:57:59.86+03	
5a7ca76e-ccc8-30d0-e574-69e645d43e51	2021-05-21 01:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:58:20.852+03	2021-05-21 01:58:20.858+03	
95dbd5e7-dc9b-e2fe-4f6a-38fe3bd8d653	2021-05-21 01:58:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:58:41.853+03	2021-05-21 01:58:41.86+03	
8edd1800-30c6-111e-04c9-6dd1fe2a7a55	2021-05-21 01:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:59:02.853+03	2021-05-21 01:59:02.859+03	
d8f6534d-42b5-780e-e859-1c6bbec8ae3d	2021-05-21 01:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:59:23.853+03	2021-05-21 01:59:23.872+03	
06e0c422-7eae-9de6-85d6-dc1755918ca9	2021-05-21 01:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 01:59:44.852+03	2021-05-21 01:59:44.858+03	
59caf47d-d376-eb60-2310-e9a74e8b328c	2021-05-21 02:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 02:00:00.853+03	2021-05-21 02:00:00.865+03	ERROR
441cfd6a-cafe-55ea-ca92-4750e079dd15	2021-05-21 02:00:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:00:14.853+03	2021-05-21 02:00:14.863+03	
397beca5-cd8f-a4dc-16e4-29746036d5a0	2021-05-21 02:00:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:00:34.853+03	2021-05-21 02:00:34.86+03	
b5b3a622-2b7e-5d4e-5bdd-e6b4053a3b24	2021-05-21 02:00:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:00:56.852+03	2021-05-21 02:00:56.859+03	
e593ebe7-eaa6-2d15-bf2a-6c225f2dc603	2021-05-21 02:01:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:01:16.853+03	2021-05-21 02:01:16.86+03	
f7696846-f0c5-59b3-fe4e-ab41a4f740ce	2021-05-21 02:01:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:01:37.853+03	2021-05-21 02:01:37.869+03	
0ae27d98-99f9-f99e-07ba-2a5ccfc1accd	2021-05-21 02:01:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:01:58.852+03	2021-05-21 02:01:58.858+03	
57995845-2519-5c97-acc9-e7a4007f4cc1	2021-05-21 02:02:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:02:18.852+03	2021-05-21 02:02:18.86+03	
8b8755dd-5fe6-dcea-0cdc-99a1a0ece66d	2021-05-21 02:02:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:02:39.853+03	2021-05-21 02:02:39.868+03	
8fbff557-a350-89c2-9551-cdd3b3b98974	2021-05-21 02:02:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:02:59.853+03	2021-05-21 02:02:59.86+03	
98df092c-e2f4-4575-053f-0e7c8fab3393	2021-05-21 02:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:03:19.853+03	2021-05-21 02:03:19.86+03	
f0cf3745-24d1-0789-2881-7adf1cbb7089	2021-05-23 02:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:35:32.853+03	2021-05-23 02:35:32.859+03	
c77e7876-e53b-7674-11b8-e9bc4f458b33	2021-05-21 02:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:03:29.853+03	2021-05-21 02:03:29.862+03	
9640297e-58f4-6e14-83a4-743f24236b80	2021-05-21 03:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:23:32.853+03	2021-05-21 03:23:32.86+03	
43b64e90-b85f-e867-32af-f907bb0877dd	2021-05-21 02:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:03:49.853+03	2021-05-21 02:03:49.86+03	
6085db47-e360-d50d-33a8-ed6a1e5300de	2021-05-21 02:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:04:10.853+03	2021-05-21 02:04:10.859+03	
ff364644-cf5a-444f-3390-f1ebca336471	2021-05-21 03:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:23:54.852+03	2021-05-21 03:23:54.861+03	
d19460b4-3632-34d0-b1bd-f9e3d17417f5	2021-05-21 02:04:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:04:31.853+03	2021-05-21 02:04:31.861+03	
f4d18a8d-ca06-c369-5208-a5bf74d9be77	2021-05-21 02:04:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:04:51.853+03	2021-05-21 02:04:51.86+03	
0ea92eb2-dff0-2c43-5ef6-9368a1798618	2021-05-21 03:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:24:14.853+03	2021-05-21 03:24:14.858+03	
bf397afb-cb3b-b1de-898c-1f8b9e391585	2021-05-21 02:05:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:05:11.853+03	2021-05-21 02:05:11.859+03	
815845f2-da04-82d0-3880-017626673b29	2021-05-21 02:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:05:32.853+03	2021-05-21 02:05:32.859+03	
b75fc082-6bfa-9bbc-a7e5-cc3ba205cfa8	2021-05-21 03:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:24:25.852+03	2021-05-21 03:24:25.859+03	
4540f0da-2a62-d380-ef4d-5ed3a57213ea	2021-05-21 02:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:05:52.853+03	2021-05-21 02:05:52.86+03	
381a82a6-1c4d-23eb-28ce-7bd0e95a4a68	2021-05-21 02:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:06:13.853+03	2021-05-21 02:06:13.86+03	
fdd9022e-59ea-4df5-72fb-ef1f093bdfa3	2021-05-21 03:24:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:24:46.852+03	2021-05-21 03:24:46.859+03	
59c1d861-4cfe-e593-715c-5b17a51b5fa8	2021-05-21 02:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:06:33.853+03	2021-05-21 02:06:33.861+03	
5a5023ff-817f-695e-865b-dbd4c7682212	2021-05-21 02:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:06:53.853+03	2021-05-21 02:06:53.863+03	
26a94918-11ee-1583-cf35-43d4acd4f155	2021-05-21 03:25:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:25:06.852+03	2021-05-21 03:25:06.859+03	
5f153fa8-99e9-016d-008e-2f3e338f8a97	2021-05-21 02:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:07:13.853+03	2021-05-21 02:07:13.858+03	
5db2e607-4ab6-6a5f-56df-67237caffd4d	2021-05-21 02:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:07:35.852+03	2021-05-21 02:07:35.86+03	
7f113132-bfc8-c0b4-ea75-ff6f1bb2fcb0	2021-05-21 03:25:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:25:36.852+03	2021-05-21 03:25:36.86+03	
9d359497-a02a-9d62-7326-98a0e89e48a8	2021-05-21 02:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:07:55.853+03	2021-05-21 02:07:55.861+03	
da308591-e351-b4a1-7ff9-bc1693ee26bc	2021-05-21 02:08:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:08:16.852+03	2021-05-21 02:08:16.861+03	
92811542-77d9-0b92-e9b5-cec0f0f50e25	2021-05-21 03:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:25:56.853+03	2021-05-21 03:25:56.859+03	
abe12348-b489-63db-5c0e-517ceab8f9a2	2021-05-21 02:08:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:08:36.854+03	2021-05-21 02:08:36.861+03	
043308e5-adb1-5c18-938b-048eaa7584f8	2021-05-21 02:08:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:08:56.854+03	2021-05-21 02:08:56.86+03	
ed2a5eff-4896-68c9-fd62-e3ef0b850acf	2021-05-21 03:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:26:17.853+03	2021-05-21 03:26:17.861+03	
8312ca1f-2d71-5c82-73fb-863ed614a9ab	2021-05-21 02:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:09:18.853+03	2021-05-21 02:09:18.859+03	
4fe31353-000b-9129-9bbd-c0e62fa8be76	2021-05-21 02:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:09:38.853+03	2021-05-21 02:09:38.871+03	
0e5fa491-2bc7-14a9-18bf-64837e713372	2021-05-21 03:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:26:27.853+03	2021-05-21 03:26:27.873+03	
85271973-ecb4-7ba2-93ec-e704c9f3a05a	2021-05-21 02:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:09:58.853+03	2021-05-21 02:09:58.86+03	
92c66bab-f70a-6b54-1955-9349a930fa99	2021-05-21 02:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:10:08.853+03	2021-05-21 02:10:08.859+03	
3cde36a6-2f9b-99b1-1b40-2d166e141698	2021-05-21 03:26:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:26:48.852+03	2021-05-21 03:26:48.861+03	
23955d85-5da2-abef-604d-92ff279cd7e1	2021-05-21 02:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:10:29.853+03	2021-05-21 02:10:29.859+03	
c1f152b5-1aa2-c4d3-d56f-f80ba549c63f	2021-05-21 03:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:27:08.852+03	2021-05-21 03:27:08.858+03	
2ccb33df-3856-dcd3-15ab-bd5fb205dbfc	2021-05-21 03:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:27:29.852+03	2021-05-21 03:27:29.859+03	
e978f80b-1dd2-c83f-3683-e3d48c9bdd19	2021-05-21 03:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:27:49.853+03	2021-05-21 03:27:49.86+03	
ae8b8b3c-f124-2d05-a90b-12587b55c826	2021-05-21 03:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:28:09.853+03	2021-05-21 03:28:09.86+03	
6b942721-090c-a5db-7ded-52d0f883fb22	2021-05-21 03:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:28:29.853+03	2021-05-21 03:28:29.859+03	
c2ae8a93-6f12-310b-ebc9-b865fcc8ff9b	2021-05-21 03:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:28:49.853+03	2021-05-21 03:28:49.859+03	
ac6660f2-34d3-4802-4793-b6cf6f06f245	2021-05-21 03:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:29:09.853+03	2021-05-21 03:29:09.86+03	
07aee645-cb95-3ab9-2384-a815d86a1b30	2021-05-21 03:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:29:40.852+03	2021-05-21 03:29:40.859+03	
03d4c9a2-27e2-8d49-5067-6b09db97191b	2021-05-21 03:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:30:00.853+03	2021-05-21 03:30:00.86+03	
6a1a6e9d-53e3-bb9e-5966-d5c410c2ad8d	2021-05-21 03:30:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:30:21.852+03	2021-05-21 03:30:21.86+03	
817cfb51-1ab5-61b8-f966-e81a0e948ba5	2021-05-21 03:30:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:30:31.854+03	2021-05-21 03:30:31.863+03	
842a2126-8f93-7706-8873-53c3145a61d7	2021-05-21 03:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:30:52.853+03	2021-05-21 03:30:52.859+03	
e9508d09-d24e-6749-bd59-b78b8e0944db	2021-05-21 03:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:31:13.852+03	2021-05-21 03:31:13.86+03	
40096407-7d25-042c-2156-ba0b41fada28	2021-05-21 03:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:31:43.853+03	2021-05-21 03:31:43.868+03	
102b8edd-1fda-f5a9-3884-e76289aa283f	2021-05-21 03:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:32:04.853+03	2021-05-21 03:32:04.859+03	
6d456c25-df54-30aa-2c4f-7f0af4f19199	2021-05-21 03:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:32:25.853+03	2021-05-21 03:32:25.869+03	
e271a42b-367a-1e18-4b6e-ad2609608f2b	2021-05-21 03:32:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:32:36.852+03	2021-05-21 03:32:36.87+03	
91bf1d89-e618-8f49-c03f-87ed38cc268f	2021-05-21 03:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:32:57.853+03	2021-05-21 03:32:57.861+03	
ba87d8ec-91c2-7cfe-bf99-9a75064742c8	2021-05-21 03:33:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:33:18.853+03	2021-05-21 03:33:18.859+03	
2820ad20-82f5-d4e2-90e7-b62b8109ff7a	2021-05-21 03:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:33:29.852+03	2021-05-21 03:33:29.858+03	
5ea68132-463e-bec5-4ec9-994f0de24ca7	2021-05-21 03:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:33:50.852+03	2021-05-21 03:33:50.859+03	
b6cdcdbc-9b5e-23cc-81b0-23a6f9de4bcf	2021-05-21 03:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:34:10.853+03	2021-05-21 03:34:10.866+03	
8e2c049d-eb6c-c2a2-0d44-95a17ba6ddd0	2021-05-21 03:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:34:40.853+03	2021-05-21 03:34:40.86+03	
87aad268-2a52-f7d2-936f-35f0012aa675	2021-05-21 03:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:35:01.853+03	2021-05-21 03:35:01.88+03	
3bac11d8-7949-7431-274f-82636b3f9268	2021-05-21 03:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:35:23.853+03	2021-05-21 03:35:23.859+03	
99c74653-3782-c3d6-b267-8a12a43b7b9d	2021-05-21 03:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:35:43.853+03	2021-05-21 03:35:43.869+03	
ba98cb87-68d7-aeee-d98c-335ce63b1720	2021-05-21 03:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:36:03.853+03	2021-05-21 03:36:03.859+03	
42f8bfc8-d648-9557-5861-f47baa1e3288	2021-05-21 03:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:36:23.853+03	2021-05-21 03:36:23.872+03	
22d8bfe4-fbca-643d-dc79-250fdc65f1d4	2021-05-21 03:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:36:33.853+03	2021-05-21 03:36:33.87+03	
95ed41e2-bc9e-8e24-ff4e-80b5c05bb2df	2021-05-21 03:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:36:55.853+03	2021-05-21 03:36:55.86+03	
4bc132af-6ea9-5761-7f96-7b30bcdc60d5	2021-05-21 02:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:03:39.853+03	2021-05-21 02:03:39.862+03	
315a1e5f-4e75-d0dc-ab93-7c30a3603935	2021-05-21 02:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:04:00.853+03	2021-05-21 02:04:00.86+03	
a5f08c26-a811-d8e0-83fc-40607a80c84d	2021-05-21 02:04:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:04:21.853+03	2021-05-21 02:04:21.869+03	
01064297-8513-3007-cd0d-a8d3684526a9	2021-05-21 02:04:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:04:41.853+03	2021-05-21 02:04:41.86+03	
b95e627b-b2a7-9e4a-db5f-72d915e55e4e	2021-05-21 02:05:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:05:01.853+03	2021-05-21 02:05:01.882+03	
8483d82c-b7e2-a9b6-9e82-bf52c46213c1	2021-05-21 02:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:05:22.853+03	2021-05-21 02:05:22.859+03	
fb1a88c9-9fcc-1086-6a1b-8bcd99d72406	2021-05-21 02:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:05:42.853+03	2021-05-21 02:05:42.859+03	
8df1477f-2850-8dda-774c-34d648b72cf9	2021-05-21 02:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:06:02.853+03	2021-05-21 02:06:02.859+03	
73be28ae-3b33-863e-2d84-d5c7c05bb54b	2021-05-21 02:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:06:23.853+03	2021-05-21 02:06:23.859+03	
cdfb63ea-e3c5-2037-75a3-c38723a608cc	2021-05-21 02:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:06:43.853+03	2021-05-21 02:06:43.859+03	
9055d102-7825-b4b9-1790-6d489df69e22	2021-05-21 02:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:07:03.853+03	2021-05-21 02:07:03.86+03	
4108cb17-fb2c-5e52-9e79-065f28a3e83f	2021-05-21 02:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:07:24.853+03	2021-05-21 02:07:24.86+03	
07abd806-7b1a-eefa-2cbe-7f9998287173	2021-05-21 02:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:07:45.853+03	2021-05-21 02:07:45.86+03	
1a98a9e5-ae36-de57-098f-8819f7d31d79	2021-05-21 02:08:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:08:06.852+03	2021-05-21 02:08:06.859+03	
33eadd89-7528-c44c-b0dd-88e5f65c5095	2021-05-21 02:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:08:26.852+03	2021-05-21 02:08:26.864+03	
801f1288-314d-1715-1a26-37663f7e07e5	2021-05-21 02:08:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:08:46.854+03	2021-05-21 02:08:46.861+03	
81ffebef-7834-09ac-9948-c360574dfdb8	2021-05-21 02:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:09:07.853+03	2021-05-21 02:09:07.86+03	
be328435-a136-4ca8-2e26-b5924533d4ea	2021-05-21 02:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:09:28.853+03	2021-05-21 02:09:28.863+03	
39a9d9ea-585d-9a91-5312-8594c55d06c5	2021-05-21 02:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:09:48.853+03	2021-05-21 02:09:48.861+03	
00aca6ed-646b-ae2f-c5bc-4ecc2bba6472	2021-05-21 02:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 02:10:00.853+03	2021-05-21 02:10:00.859+03	ERROR
6363f6aa-e87a-ad97-931f-4a15d81498b2	2021-05-21 02:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:10:19.852+03	2021-05-21 02:10:19.859+03	
59af5982-0733-71c0-c759-3ed33190f16e	2021-05-21 02:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:10:40.852+03	2021-05-21 02:10:40.859+03	
b8bb87d6-7a6e-b269-4940-20f10d4e7d34	2021-05-21 02:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:10:50.852+03	2021-05-21 02:10:50.859+03	
09f5e2b1-12d1-8a60-046f-432dc087866a	2021-05-21 02:11:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:11:00.853+03	2021-05-21 02:11:00.86+03	
e6993852-34ee-cce1-7016-63a95c89c866	2021-05-21 02:11:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:11:11.853+03	2021-05-21 02:11:11.859+03	
9380cbdd-8394-622b-c4fb-50812c077b9a	2021-05-21 02:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:11:22.853+03	2021-05-21 02:11:22.861+03	
a656421a-1936-6836-8767-97ada5646701	2021-05-21 02:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:11:33.852+03	2021-05-21 02:11:33.859+03	
beb33fed-08ee-2c50-57dd-6726df1fab21	2021-05-21 02:11:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:11:43.852+03	2021-05-21 02:11:43.859+03	
faa4cd1d-0f20-262c-47cf-8b31ad032856	2021-05-21 02:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:11:53.852+03	2021-05-21 02:11:53.858+03	
8f5a9edf-7fe6-5137-598d-8a7478520ffd	2021-05-21 02:12:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:12:03.852+03	2021-05-21 02:12:03.861+03	
1d9cf6f5-a8aa-fa87-7bb7-592fc8148711	2021-05-21 02:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:12:13.853+03	2021-05-21 02:12:13.858+03	
7bd6cc6e-d060-dc2c-f79f-b53d870ab37e	2021-05-21 02:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:12:24.853+03	2021-05-21 02:12:24.86+03	
21c05271-e025-c1ff-2e79-cbc6ba9da4d1	2021-05-21 02:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:12:34.853+03	2021-05-21 02:12:34.864+03	
a59847e7-0b43-a67b-dabe-13d114776cef	2021-05-21 02:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:12:44.853+03	2021-05-21 02:12:44.86+03	
13b34d47-60d2-f12a-342d-ae2063550eb1	2021-05-21 02:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:12:54.853+03	2021-05-21 02:12:54.872+03	
2816b4b5-07be-57ac-eadc-fa27fedad88b	2021-05-21 02:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:13:04.853+03	2021-05-21 02:13:04.86+03	
8ba04d90-0e32-da9a-7fa8-6199c68d3aca	2021-05-21 02:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:13:15.852+03	2021-05-21 02:13:15.859+03	
54671914-8f5b-896d-4bb5-6d717403bbf1	2021-05-21 02:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:13:25.852+03	2021-05-21 02:13:25.858+03	
35c23603-4bb5-0739-08c7-f7dfd322d84a	2021-05-21 02:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:13:35.852+03	2021-05-21 02:13:35.86+03	
6f075c7e-4558-4a1c-9593-37beb22dd718	2021-05-21 02:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:13:45.853+03	2021-05-21 02:13:45.859+03	
441bff5c-3d6e-4b1a-2a1f-675a77719957	2021-05-21 02:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:13:55.853+03	2021-05-21 02:13:55.863+03	
24dbf0be-fa84-8a75-f40d-c34ddf9b5a0e	2021-05-21 02:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:14:05.853+03	2021-05-21 02:14:05.859+03	
db8db51e-881b-08a2-b8ce-e75b48a8a039	2021-05-21 02:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:14:15.853+03	2021-05-21 02:14:15.859+03	
001b3abe-83d6-5242-3ad2-c422e70247ce	2021-05-21 02:14:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:14:26.853+03	2021-05-21 02:14:26.86+03	
860c2581-d61a-7aaa-7f8e-8465fbcdb848	2021-05-21 02:14:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:14:36.853+03	2021-05-21 02:14:36.861+03	
b2eb9658-2e8a-2318-70ec-d811bcbd5c94	2021-05-21 02:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:14:47.852+03	2021-05-21 02:14:47.859+03	
c1bc4e4f-a1da-8ea8-6710-08b016ae66b7	2021-05-21 02:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:14:57.852+03	2021-05-21 02:14:57.861+03	
07cfac6a-3be5-b27b-169f-3d4ffe070efb	2021-05-21 02:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:15:07.853+03	2021-05-21 02:15:07.859+03	
6f2a7b6d-cdbb-3b5c-013d-941b76faf0a3	2021-05-21 02:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:15:17.853+03	2021-05-21 02:15:17.859+03	
c8c0c163-9109-a9d4-a7a1-4e74e7d4025a	2021-05-21 02:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:15:28.852+03	2021-05-21 02:15:28.859+03	
2db54af0-cb5c-f384-7e15-7635f698fbec	2021-05-21 02:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:15:38.853+03	2021-05-21 02:15:38.862+03	
7006c67f-db8f-da97-d659-be4e814b5143	2021-05-21 02:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:15:48.853+03	2021-05-21 02:15:48.86+03	
c7ea7d94-ab0e-9280-b173-50eaf898cfb9	2021-05-21 02:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:15:58.853+03	2021-05-21 02:15:58.859+03	
a2549521-9113-706a-5ab8-0a24a9b695e6	2021-05-21 02:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:16:08.853+03	2021-05-21 02:16:08.859+03	
0fa242aa-a053-4b1b-a00b-b0adae17f35d	2021-05-21 02:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:16:18.853+03	2021-05-21 02:16:18.866+03	
15616a8c-7d45-895d-acd4-f42fa76b17c6	2021-05-21 02:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:16:29.853+03	2021-05-21 02:16:29.86+03	
bb86bad8-f5f9-1944-ce5e-2a2d6b03b017	2021-05-21 02:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:16:39.853+03	2021-05-21 02:16:39.859+03	
7342dded-0627-65b1-cd0e-d72d5edee5a9	2021-05-21 02:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:16:49.853+03	2021-05-21 02:16:49.864+03	
8a5b6f84-d912-88a9-823d-4fe231917279	2021-05-21 02:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:17:00.852+03	2021-05-21 02:17:00.861+03	
fdf0b754-09d3-1d4b-5d82-7d2ef133f4c7	2021-05-21 02:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:17:10.852+03	2021-05-21 02:17:10.859+03	
9c691fe1-8224-5465-e291-d54cf8e716f1	2021-05-21 02:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:17:20.852+03	2021-05-21 02:17:20.858+03	
41b9b227-0051-2d7e-0a14-db33075c1844	2021-05-21 02:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:17:30.852+03	2021-05-21 02:17:30.861+03	
d945bba6-acf1-47a0-51d2-d5459f3c60d3	2021-05-21 02:17:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:17:40.853+03	2021-05-21 02:17:40.865+03	
a2cf97f2-894a-0948-c11d-1c439460a132	2021-05-21 02:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:17:50.853+03	2021-05-21 02:17:50.859+03	
337bd826-6343-8f87-682f-2ddda983ec58	2021-05-21 02:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:18:11.853+03	2021-05-21 02:18:11.859+03	
b5eaeafe-d225-4260-0bfa-7636e7164a9a	2021-05-21 02:18:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:18:31.854+03	2021-05-21 02:18:31.861+03	
a9fbb9de-6312-1afe-4adb-ece34b4e8f31	2021-05-21 02:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:18:53.853+03	2021-05-21 02:18:53.871+03	
56c7c620-1a8b-3339-ccdc-025040dad531	2021-05-21 02:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:19:13.853+03	2021-05-21 02:19:13.859+03	
1f2c5339-1ce0-ef06-77d5-5ea7cf23f5c4	2021-05-21 02:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:19:33.853+03	2021-05-21 02:19:33.859+03	
3af9d59d-96cf-4e62-bf19-a7c9a4e94ecd	2021-05-21 02:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:19:54.853+03	2021-05-21 02:19:54.859+03	
02a550d8-a2cc-6c5d-3e6a-5f281213c472	2021-05-21 02:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:20:04.853+03	2021-05-21 02:20:04.858+03	
e0f0d132-1cc3-5ac8-56d7-12f484618c7b	2021-05-21 02:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:20:25.852+03	2021-05-21 02:20:26.191+03	
b3bc90f2-83d5-a4bd-39d2-0d457a6d383f	2021-05-21 02:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:20:46.853+03	2021-05-21 02:20:46.859+03	
6dbf8178-4bd9-ff54-6111-336f4554f26d	2021-05-21 02:21:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:21:06.853+03	2021-05-21 02:21:06.86+03	
00daccfd-a7fc-6cc2-f796-b6a81ee19429	2021-05-21 02:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:21:27.853+03	2021-05-21 02:21:27.859+03	
79a147ee-c5c6-a7a2-b45b-3f15faeac952	2021-05-21 02:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:21:48.853+03	2021-05-21 02:21:48.86+03	
50fe2ddd-8075-92a3-9db8-f1aefcec6c02	2021-05-21 02:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:22:08.853+03	2021-05-21 02:22:08.867+03	
5fb4ce43-c08b-9e8e-704c-91660762fbec	2021-05-21 02:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:22:29.853+03	2021-05-21 02:22:29.86+03	
56769166-8672-d709-5cc9-351539c98d0b	2021-05-21 02:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:22:49.853+03	2021-05-21 02:22:49.86+03	
5dee36cf-d6fd-dba6-e23d-2f85059f8f18	2021-05-21 02:23:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:23:11.853+03	2021-05-21 02:23:11.859+03	
d85a2c89-cac5-d80e-8caf-c823d5b10e54	2021-05-21 02:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:23:32.853+03	2021-05-21 02:23:32.859+03	
0b292758-8869-2e6a-5360-7e2d812e51ce	2021-05-21 02:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:23:53.853+03	2021-05-21 02:23:53.87+03	
c74466f1-ede2-f809-9012-efe196967295	2021-05-21 02:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:24:13.853+03	2021-05-21 02:24:13.859+03	
b9c086ae-edd6-5fff-2a31-c26970348a90	2021-05-21 02:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:24:34.852+03	2021-05-21 02:24:34.859+03	
873381c3-f375-4cb6-28ac-cf16e7d96153	2021-05-21 02:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:24:54.853+03	2021-05-21 02:24:54.859+03	
02a79df3-9a7b-0732-75ec-b4de7ea2fc9b	2021-05-21 02:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:25:15.852+03	2021-05-21 02:25:15.859+03	
9ffdcd86-51c0-9f04-857f-0ec6c35b4aff	2021-05-21 02:25:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:25:36.854+03	2021-05-21 02:25:36.861+03	
8a5c3e90-c88f-8280-1ab8-5ee7ad28f24c	2021-05-21 02:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:25:57.852+03	2021-05-21 02:25:57.859+03	
da0a5007-612f-505c-a616-177830cdbae4	2021-05-21 02:26:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:26:18.852+03	2021-05-21 02:26:18.859+03	
cc82ada1-c178-199f-84fe-8dade07d093d	2021-05-21 02:26:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:26:38.853+03	2021-05-21 02:26:38.859+03	
104e97ab-3f68-61c0-756c-993824bdf556	2021-05-21 02:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:26:58.853+03	2021-05-21 02:26:58.859+03	
7bcb502d-108c-f78b-16bf-631bf0db2680	2021-05-21 02:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:27:19.852+03	2021-05-21 02:27:19.86+03	
bd154e68-0f6c-8b48-f321-5726fe870745	2021-05-21 02:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:27:39.853+03	2021-05-21 02:27:39.859+03	
370ce2ec-6757-8732-ee7d-0efba34b5c7b	2021-05-21 02:28:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:28:00.853+03	2021-05-21 02:28:00.86+03	
2d954e75-7850-3ef5-c719-ab0598d7a19a	2021-05-21 02:28:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:28:21.853+03	2021-05-21 02:28:21.86+03	
735d6305-a720-a73a-3f5b-c12a28128bed	2021-05-21 02:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:28:42.853+03	2021-05-21 02:28:42.859+03	
73000c5d-a221-0bc1-84ff-a9c4a2fff2f8	2021-05-21 02:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:29:03.852+03	2021-05-21 02:29:03.861+03	
355c6cfe-d1a7-c77a-37ec-9471d8c9df2b	2021-05-21 02:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:29:23.852+03	2021-05-21 02:29:23.861+03	
e1f6287e-2639-ab1a-ccce-0b09c9f2f25b	2021-05-21 02:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:29:43.853+03	2021-05-21 02:29:43.861+03	
a9f1a022-8927-feff-f9a0-3e2896612430	2021-05-21 02:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 02:30:00.853+03	2021-05-21 02:30:00.858+03	ERROR
2bd9db20-166f-f421-6360-bdd8eded88b6	2021-05-21 02:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:30:14.853+03	2021-05-21 02:30:14.876+03	
c5a1aa1b-5cd6-d3a1-3faf-b7e03a1cbafc	2021-05-21 02:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:30:35.852+03	2021-05-21 02:30:35.859+03	
a2b38ee3-459c-0200-e832-60325aa7b623	2021-05-21 02:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:30:55.853+03	2021-05-21 02:30:55.859+03	
f715ce5f-3079-9a34-7390-befd83c21fe6	2021-05-21 02:31:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:31:16.853+03	2021-05-21 02:31:16.86+03	
45c4ee7c-f966-ceda-e7c3-ce4f2206cb08	2021-05-21 02:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:31:37.852+03	2021-05-21 02:31:37.859+03	
29891ad4-3226-641f-f89e-c53cde611435	2021-05-21 02:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:31:57.853+03	2021-05-21 02:31:57.859+03	
0283c99a-5a3f-08b6-1a51-aa56ba9f132a	2021-05-21 02:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:32:18.852+03	2021-05-21 02:32:18.858+03	
a408d2b4-ddc6-baa1-d97b-4651dddbdf17	2021-05-21 02:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:32:38.852+03	2021-05-21 02:32:38.859+03	
8103befb-e186-9d6a-0d25-44f5457393c8	2021-05-21 02:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:32:58.853+03	2021-05-21 02:32:58.863+03	
ebb5df05-3ac6-0de3-42c4-0c6b64dc0b87	2021-05-21 02:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:33:19.853+03	2021-05-21 02:33:19.859+03	
c5ed5903-3009-9b59-9a2d-39821d5940f5	2021-05-21 02:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:33:40.852+03	2021-05-21 02:33:40.86+03	
0c8276e0-bbcd-cfb0-4e75-334ee6a6eb2c	2021-05-21 02:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:34:00.852+03	2021-05-21 02:34:00.859+03	
b9d96daf-a258-1f37-7d35-6ddd6fe509de	2021-05-21 02:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:34:20.853+03	2021-05-21 02:34:20.861+03	
ec5cb1a8-aea7-7658-2ec4-0008caabc19a	2021-05-21 02:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:34:40.853+03	2021-05-21 02:34:40.86+03	
63004d93-d373-63b9-725a-0aa564d2f1e3	2021-05-21 02:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:35:00.853+03	2021-05-21 02:35:00.859+03	
e07e7db3-d1ab-9183-ecff-63497aeaf567	2021-05-21 02:35:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:35:21.852+03	2021-05-21 02:35:21.86+03	
fb920198-fc2e-d445-c9e7-bc886549b4bf	2021-05-21 02:35:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:35:41.852+03	2021-05-21 02:35:41.862+03	
ca564094-04b6-5a89-7282-e79b1f9c4687	2021-05-21 02:36:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:36:01.852+03	2021-05-21 02:36:01.86+03	
cd7b576c-a1fc-f33d-a7f1-569b63a09e9c	2021-05-21 02:36:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:36:21.854+03	2021-05-21 02:36:21.861+03	
66a7418f-7192-f1b4-f288-d5e804653eac	2021-05-21 02:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:36:42.853+03	2021-05-21 02:36:42.86+03	
99ac33de-e25d-99d2-d4cb-c052672f0150	2021-05-21 02:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:37:03.853+03	2021-05-21 02:37:03.862+03	
3ff49761-e373-f72a-5fe3-7641e62a27d1	2021-05-21 02:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:37:24.853+03	2021-05-21 02:37:24.858+03	
0d85150b-659d-5973-9899-d0d29498fb86	2021-05-21 02:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:37:46.852+03	2021-05-21 02:37:46.86+03	
0aeba180-dac9-deee-81eb-b50e7f67347d	2021-05-21 02:38:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:38:06.852+03	2021-05-21 02:38:06.874+03	
ea39f3a7-5d4e-ecf3-d6d6-f1c7ede9b541	2021-05-21 02:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:38:26.853+03	2021-05-21 02:38:26.86+03	
634f51e8-2eac-2ccb-7b4d-61681c9af574	2021-05-21 02:38:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:38:46.853+03	2021-05-21 02:38:46.861+03	
3766dd6b-cfd2-c0b8-65ae-2f3641dab0ab	2021-05-21 02:18:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:18:00.853+03	2021-05-21 02:18:00.862+03	
e6b7da0e-9236-cfb8-e588-41483499f2f4	2021-05-21 02:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:18:21.854+03	2021-05-21 02:18:21.862+03	
7d130e35-66da-4c2f-147c-9bff40c1a33d	2021-05-21 02:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:18:42.853+03	2021-05-21 02:18:42.86+03	
139bd710-83d0-20f0-3cf5-83c0b24fdadd	2021-05-21 02:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:19:03.853+03	2021-05-21 02:19:03.862+03	
33c5431a-b9b0-3319-e01c-f4b678ece9ca	2021-05-21 02:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:19:23.853+03	2021-05-21 02:19:23.865+03	
79b2468c-d525-ab1d-7dbe-8f385e5434d6	2021-05-21 02:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:19:44.853+03	2021-05-21 02:19:44.859+03	
04316a8d-613c-8955-4587-2197ad4c1480	2021-05-21 02:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 02:20:00.853+03	2021-05-21 02:20:00.863+03	ERROR
01988a14-d5aa-ccdb-577c-715ad88916b6	2021-05-21 02:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:20:14.853+03	2021-05-21 02:20:14.859+03	
ab212fbb-259e-3e89-5441-d4f61ee4eb3c	2021-05-21 02:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:20:35.853+03	2021-05-21 02:20:35.859+03	
053d9621-66ab-ebc7-68a5-858b8cddfe31	2021-05-21 02:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:20:56.853+03	2021-05-21 02:20:56.861+03	
bfbc6ff6-d1c4-df46-1762-e5ecc4fbb279	2021-05-21 02:21:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:21:16.854+03	2021-05-21 02:21:16.862+03	
1bb66956-b7d0-eb52-992f-5d2febd98145	2021-05-21 02:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:21:38.852+03	2021-05-21 02:21:38.859+03	
9c770ee6-6382-772b-4db0-5debf255ff64	2021-05-21 02:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:21:58.853+03	2021-05-21 02:21:58.861+03	
61f2335c-df09-f1f5-72e5-800d73bf0316	2021-05-21 02:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:22:19.853+03	2021-05-21 02:22:19.859+03	
ec416b1d-d614-e5ed-1453-54b4cc2d7850	2021-05-21 02:22:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:22:39.853+03	2021-05-21 02:22:39.862+03	
94c927d1-efdd-ca9a-04e6-9e84fb9002cf	2021-05-21 02:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:23:00.853+03	2021-05-21 02:23:00.861+03	
5d8540e3-9f65-a010-11ce-acc12fe9d7ae	2021-05-21 02:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:23:22.852+03	2021-05-21 02:23:22.871+03	
74dce226-0eab-3cfe-7101-956e48c18b09	2021-05-21 02:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:23:42.853+03	2021-05-21 02:23:42.859+03	
dcd90620-e352-a754-6bb1-71363ce8dbf9	2021-05-21 02:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:24:03.853+03	2021-05-21 02:24:03.86+03	
1078f32a-8b98-60cd-0b3e-06f227ead4f7	2021-05-21 02:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:24:23.853+03	2021-05-21 02:24:23.859+03	
fa0e1b90-8e91-7b05-7d2a-7e04f22d4cad	2021-05-21 02:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:24:44.852+03	2021-05-21 02:24:44.858+03	
3d90f0a4-250a-b5df-9c2c-35a14a7128ac	2021-05-21 02:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:25:04.853+03	2021-05-21 02:25:04.861+03	
46788e34-5848-5e35-f803-f45458b075c6	2021-05-21 02:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:25:25.853+03	2021-05-21 02:25:25.86+03	
24036eea-d23e-85d1-d345-c1372e3c9b86	2021-05-21 02:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:25:47.852+03	2021-05-21 02:25:47.859+03	
ea7a313b-43d2-75b2-89f2-f0ba3edb9adc	2021-05-21 02:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:26:07.853+03	2021-05-21 02:26:07.869+03	
c0f8df31-7e3c-834d-c209-91d2243f2798	2021-05-21 02:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:26:28.853+03	2021-05-21 02:26:28.86+03	
b91a49c9-fcc9-1368-1e4f-e85eb060b283	2021-05-21 02:26:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:26:48.853+03	2021-05-21 02:26:48.859+03	
8056305d-a04d-48c5-6b77-16aa9d012479	2021-05-21 02:27:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:27:09.852+03	2021-05-21 02:27:09.86+03	
ec78cff7-4699-9a1e-d6c9-17536126318e	2021-05-21 02:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:27:29.853+03	2021-05-21 02:27:29.859+03	
a64dc7f1-ee2c-fc30-94c2-b12cb36d4295	2021-05-21 02:27:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:27:50.852+03	2021-05-21 02:27:50.859+03	
3fcad3c6-8dc4-3bba-5b04-7c104577392c	2021-05-21 02:28:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:28:11.853+03	2021-05-21 02:28:11.86+03	
5aba6843-9fa7-640b-0b80-c8ad5ea10531	2021-05-21 02:28:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:28:31.854+03	2021-05-21 02:28:31.86+03	
e630d1a5-3ac9-a66b-8c06-5ba1f4510065	2021-05-21 02:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:28:53.852+03	2021-05-21 02:28:53.859+03	
25d66149-6687-ed5d-de19-bdf347048676	2021-05-21 02:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:29:13.852+03	2021-05-21 02:29:13.859+03	
0d293449-8475-5592-93ac-ae43f05124c1	2021-05-21 02:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:29:33.852+03	2021-05-21 02:29:33.906+03	
2fb676ed-fb61-581d-bd8b-cbe5bf7665c8	2021-05-21 02:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:29:53.853+03	2021-05-21 02:29:53.86+03	
863ef165-6677-5242-ba58-d54d384ff488	2021-05-21 02:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:30:03.853+03	2021-05-21 02:30:03.861+03	
37b5337f-be0c-5f4d-bb5a-fa266c04d223	2021-05-21 02:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:30:24.853+03	2021-05-21 02:30:24.859+03	
faacd649-6a47-813f-b2e1-0e7f729ab49a	2021-05-21 02:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:30:45.852+03	2021-05-21 02:30:45.858+03	
59898e42-64fb-95ac-db0b-89efce4aa506	2021-05-21 02:31:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:31:06.853+03	2021-05-21 02:31:06.859+03	
a200edc4-47b6-196f-6c9c-879aef96a248	2021-05-21 02:31:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:31:26.853+03	2021-05-21 02:31:26.861+03	
bb6178b4-bf10-d445-217e-d41ed1301ddf	2021-05-21 02:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:31:47.852+03	2021-05-21 02:31:47.859+03	
3ec5ebda-5a84-7134-bc30-18e06e3a9b9d	2021-05-21 02:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:32:08.852+03	2021-05-21 02:32:08.858+03	
50565e23-eec0-6e3c-567c-4a158b9c143c	2021-05-21 02:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:32:28.852+03	2021-05-21 02:32:28.859+03	
848accf2-9a54-6ad5-beb5-6fb588cb5bde	2021-05-21 02:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:32:48.853+03	2021-05-21 02:32:48.859+03	
d5ceb7b7-76f0-88a9-971b-e878f6948eaf	2021-05-21 02:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:33:09.852+03	2021-05-21 02:33:09.859+03	
552ae237-321c-bde8-ba0a-b1bf6a5a9cf1	2021-05-21 02:33:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:33:29.854+03	2021-05-21 02:33:29.86+03	
55922699-89d1-d5a2-516d-a28ae1ccf60b	2021-05-21 02:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:33:50.852+03	2021-05-21 02:33:50.861+03	
83eb73d5-7c1b-2868-c18d-18daed85286f	2021-05-21 02:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:34:10.853+03	2021-05-21 02:34:10.859+03	
48b71ec7-9739-535c-a072-f629041da31c	2021-05-21 02:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:34:30.853+03	2021-05-21 02:34:30.86+03	
24519dee-a45a-5ed3-db01-31176d86110d	2021-05-21 02:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:34:50.853+03	2021-05-21 02:34:50.86+03	
985c3989-10f4-1aff-2ec1-ae31e5cf01b8	2021-05-21 02:35:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:35:10.853+03	2021-05-21 02:35:10.86+03	
914c20ae-62b9-8198-6d44-1ddf2e3aaed8	2021-05-21 02:35:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:35:31.852+03	2021-05-21 02:35:31.859+03	
985f8fc2-4fba-d058-7e66-040270ed1734	2021-05-21 02:35:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:35:51.852+03	2021-05-21 02:35:51.859+03	
e101121e-3b5f-0a07-4d6e-21c9c17e071c	2021-05-21 02:36:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:36:11.854+03	2021-05-21 02:36:11.86+03	
9cec0cd9-6415-1fe4-5d90-5165e06b7b25	2021-05-21 02:36:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:36:31.854+03	2021-05-21 02:36:31.862+03	
79db0f6f-6060-4000-127a-be7db77086f5	2021-05-21 02:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:36:53.853+03	2021-05-21 02:36:53.861+03	
0cc299f1-2dd2-ca94-c8e8-600101a9db38	2021-05-21 02:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:37:14.853+03	2021-05-21 02:37:14.859+03	
b19e64e2-19ec-747c-eb0b-2f31fba4c705	2021-05-21 02:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:37:35.853+03	2021-05-21 02:37:35.864+03	
ffdc042a-8ec3-5584-fcb6-66550fe5fc0e	2021-05-21 02:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:37:56.852+03	2021-05-21 02:37:56.859+03	
83f83857-c636-4e8c-774f-a985e6fada36	2021-05-21 02:38:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:38:16.852+03	2021-05-21 02:38:16.861+03	
00525cc6-8cbd-548a-6517-28c05f0ac42e	2021-05-21 02:38:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:38:36.853+03	2021-05-21 02:38:36.86+03	
c2d6b85b-f095-a4fe-50eb-420dc3946343	2021-05-21 02:38:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:38:56.853+03	2021-05-21 02:38:56.862+03	
7f10284b-3553-6166-0561-e9c6b038c696	2021-05-21 02:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:39:07.852+03	2021-05-21 02:39:07.858+03	
3ab6502d-98f2-9273-b2ab-25ce1e985875	2021-05-21 02:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:39:27.853+03	2021-05-21 02:39:27.86+03	
3aed5af1-c334-f548-c92a-2fce22018b90	2021-05-21 02:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:39:47.853+03	2021-05-21 02:39:47.861+03	
3c078213-d4a6-2a20-f4b7-0f4aa674443c	2021-05-21 02:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 02:40:00.852+03	2021-05-21 02:40:00.862+03	ERROR
ad92546d-f0d5-6881-134e-e97f7afe52a3	2021-05-21 02:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:40:17.853+03	2021-05-21 02:40:17.859+03	
0433004a-dbab-8b46-8371-1035ea4fd634	2021-05-21 02:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:40:37.853+03	2021-05-21 02:40:37.861+03	
4e759a69-6b9c-ba01-751c-294f53c426e2	2021-05-21 02:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:40:58.852+03	2021-05-21 02:40:58.858+03	
19241c17-1e75-b4ea-c37e-5dd4ab1bb4b1	2021-05-21 02:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:41:18.853+03	2021-05-21 02:41:18.862+03	
e4cd89de-48e9-f712-9460-ace8e2139779	2021-05-21 02:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:41:39.852+03	2021-05-21 02:41:39.86+03	
7b13b57a-d80a-1df9-2524-82f2eb5d835e	2021-05-21 02:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:41:59.852+03	2021-05-21 02:41:59.859+03	
6e24ba87-01cb-f4fc-31c4-ee57d3132c04	2021-05-21 02:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:42:19.852+03	2021-05-21 02:42:19.858+03	
bdf41c0c-d3e3-728e-13ec-760c612ee1d4	2021-05-21 02:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:42:39.852+03	2021-05-21 02:42:39.858+03	
f40cc3e1-a449-a943-dc64-bcf06c5ca92f	2021-05-21 02:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:42:59.852+03	2021-05-21 02:42:59.859+03	
fcd202e7-7e3a-6408-713d-9136e748ce4c	2021-05-21 02:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:43:19.853+03	2021-05-21 02:43:19.859+03	
21afe2f0-a713-e210-d19e-0f209d46c8b0	2021-05-21 02:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:43:40.852+03	2021-05-21 02:43:40.863+03	
43c9762a-54b7-5aac-3857-9e6ca264d273	2021-05-21 02:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:44:00.853+03	2021-05-21 02:44:00.866+03	
ef5a6306-ff72-f5d6-5e55-43f8a863dfa1	2021-05-21 02:44:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:44:21.852+03	2021-05-21 02:44:21.858+03	
f7827af9-a690-09b0-4a90-fc45975d6728	2021-05-21 02:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:44:42.852+03	2021-05-21 02:44:42.86+03	
ceee7884-c83e-e9d7-ebb9-26c67ca47f48	2021-05-21 02:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:45:02.852+03	2021-05-21 02:45:02.861+03	
c121051c-58ae-2444-047e-157644f76faa	2021-05-21 02:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:45:23.852+03	2021-05-21 02:45:23.859+03	
ebd4aade-801d-f0dc-6f14-ace2d77533e7	2021-05-21 02:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:45:43.853+03	2021-05-21 02:45:43.859+03	
0ba7c7a9-3381-43fc-fde9-4e986fc0a28c	2021-05-21 02:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:46:05.852+03	2021-05-21 02:46:05.859+03	
07bc5174-c209-0ff7-aa3d-86c4dc8941bc	2021-05-21 02:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:46:25.853+03	2021-05-21 02:46:25.859+03	
2a1ee0bb-48a3-d6f9-99a1-b893820f16a4	2021-05-21 02:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:46:45.853+03	2021-05-21 02:46:45.859+03	
18ee2b2b-9791-b358-6f06-2e02fa0548b6	2021-05-21 02:47:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:47:06.853+03	2021-05-21 02:47:06.86+03	
4359c822-44f5-ebd2-1c5a-861497a16c7c	2021-05-21 02:47:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:47:27.853+03	2021-05-21 02:47:27.872+03	
2438b713-4608-9017-4a98-1335d32d5654	2021-05-21 02:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:47:48.853+03	2021-05-21 02:47:48.863+03	
0613c1d3-30fa-c92f-9923-6e98d7c35686	2021-05-21 02:48:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:48:10.852+03	2021-05-21 02:48:11.097+03	
6d3817b1-6904-fc6d-e1ca-c2e1d1042662	2021-05-21 02:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:48:30.852+03	2021-05-21 02:48:30.871+03	
3b10a986-b2cd-c8a4-38c4-d1a437efa39b	2021-05-21 02:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:48:50.852+03	2021-05-21 02:48:50.859+03	
73ab2a57-fab3-df05-a2b9-831c78eeab25	2021-05-21 02:49:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:49:11.853+03	2021-05-21 02:49:11.86+03	
89f56e32-3d23-c83f-1f49-ed4674d0f36d	2021-05-21 02:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:49:32.852+03	2021-05-21 02:49:32.859+03	
d753ad43-1165-9c0f-9277-c6c0c81280f8	2021-05-21 02:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:49:52.853+03	2021-05-21 02:49:52.859+03	
c11b681b-c45d-398d-e99f-3248842c19c2	2021-05-21 02:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:50:02.853+03	2021-05-21 02:50:02.859+03	
37319816-5b6f-85b9-3894-f2a74be750d7	2021-05-21 02:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:50:22.853+03	2021-05-21 02:50:22.859+03	
aa956369-9b0c-7354-a4eb-f2bcdac969d7	2021-05-21 02:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:50:43.853+03	2021-05-21 02:50:43.873+03	
d0c1a067-3bb1-ed3a-c22e-840ac32b053e	2021-05-21 02:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:51:03.853+03	2021-05-21 02:51:03.869+03	
bec32648-b614-784f-f8d3-71e714f7fc00	2021-05-21 02:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:51:24.852+03	2021-05-21 02:51:24.864+03	
f68bbe01-6afe-b5a4-0b20-84a100169043	2021-05-21 02:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:51:44.853+03	2021-05-21 02:51:44.859+03	
ebdc90fb-c178-2f9f-e40c-269998e6e8b0	2021-05-21 02:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:52:05.853+03	2021-05-21 02:52:05.861+03	
70a66a29-47f3-e3d0-cc42-cb2e19b870cf	2021-05-21 02:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:52:27.852+03	2021-05-21 02:52:27.859+03	
8a3046a8-b524-071d-9152-b9dba90ef91c	2021-05-21 02:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:52:47.853+03	2021-05-21 02:52:47.86+03	
621e41a7-9449-ab71-bc4c-a12b9e49ea97	2021-05-21 02:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:53:08.853+03	2021-05-21 02:53:08.861+03	
4f3952ee-9482-b531-fdee-c09ae6fd8afc	2021-05-21 02:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:53:29.853+03	2021-05-21 02:53:29.86+03	
f18cccf2-76b8-ada1-c14f-c31b34d11b28	2021-05-21 02:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:53:50.853+03	2021-05-21 02:53:50.861+03	
bac11a2b-11f4-6944-6564-44d887325aff	2021-05-21 02:54:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:54:11.852+03	2021-05-21 02:54:11.871+03	
7f358888-4f30-a897-3445-9581daca7495	2021-05-21 02:54:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:54:31.852+03	2021-05-21 02:54:31.859+03	
2f7e33bd-dafe-8730-b47c-c13a1307bdfd	2021-05-21 02:54:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:54:51.852+03	2021-05-21 02:54:51.859+03	
7c8b6864-19d5-31c6-119a-e1dc5d49b80d	2021-05-21 02:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:55:12.852+03	2021-05-21 02:55:12.859+03	
4669d647-19f2-f8f4-0655-8cb7ffd1adb5	2021-05-21 02:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:55:32.853+03	2021-05-21 02:55:32.86+03	
e049bf51-9d65-58e4-b8ce-9ca125a7f096	2021-05-21 02:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:55:53.852+03	2021-05-21 02:55:53.86+03	
a86986af-e97f-397f-0f11-db2c3fb501a5	2021-05-21 02:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:56:13.852+03	2021-05-21 02:56:13.858+03	
40c30b7a-3b9a-082b-d68c-f47be795247f	2021-05-21 02:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:56:34.853+03	2021-05-21 02:56:34.86+03	
068693d5-40f8-49c4-9344-b951a32d7760	2021-05-21 02:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:56:54.853+03	2021-05-21 02:56:54.861+03	
df9ef869-373c-fe0b-cb71-2c37df59f9c7	2021-05-21 02:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:57:15.853+03	2021-05-21 02:57:15.859+03	
30f4ca50-11a8-59e6-0046-e2cb691c0a7a	2021-05-21 02:57:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:57:36.852+03	2021-05-21 02:57:36.884+03	
ef3e3138-0dd1-632d-4ed8-64689b238e65	2021-05-21 02:57:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:57:56.854+03	2021-05-21 02:57:56.874+03	
8822634f-bd0e-9920-7474-8260db527e0c	2021-05-21 02:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:58:17.852+03	2021-05-21 02:58:17.859+03	
01027256-c971-cfb2-6e0b-f5b06faf9db5	2021-05-21 02:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:58:37.852+03	2021-05-21 02:58:37.859+03	
bc4fe774-77cb-f048-2b61-a1f0be0b82c5	2021-05-21 02:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:58:58.852+03	2021-05-21 02:58:58.859+03	
e8fe0155-45bc-69f0-e2bf-42f97ed5f90f	2021-05-21 02:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:59:19.852+03	2021-05-21 02:59:19.864+03	
f6dabf69-fd22-56d1-ebf2-b98cd3ed1155	2021-05-21 02:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:59:39.853+03	2021-05-21 02:59:39.859+03	
fe437db4-9310-d596-660e-5468e832bd93	2021-05-21 02:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:59:59.853+03	2021-05-21 02:59:59.86+03	
72b12e7e-35bb-ccf8-e387-7cd77ed1f8a4	2021-05-21 02:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:39:17.852+03	2021-05-21 02:39:17.878+03	
631bb300-0c56-c696-fa8a-aa114a87b884	2021-05-21 02:39:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:39:37.853+03	2021-05-21 02:39:37.869+03	
325c8cec-932e-6471-85e4-4156c70af9b4	2021-05-21 02:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:39:57.853+03	2021-05-21 02:39:57.859+03	
610bb75c-4cec-4d04-e029-17b41339031f	2021-05-21 02:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:40:07.853+03	2021-05-21 02:40:07.86+03	
9bc0d1b5-45fc-cd75-269e-574821acdc4f	2021-05-21 02:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:40:27.853+03	2021-05-21 02:40:27.86+03	
7636ab22-e16d-c4a1-4f93-6b5716adeb51	2021-05-21 02:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:40:47.853+03	2021-05-21 02:40:47.859+03	
8add5ded-114d-d784-40fb-01aed16d12db	2021-05-21 02:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:41:08.852+03	2021-05-21 02:41:08.858+03	
c43c86a7-a9d9-1a88-19ca-d9ef75df2cff	2021-05-21 02:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:41:28.853+03	2021-05-21 02:41:28.859+03	
3c4c9c75-ebea-0c64-5c83-300bea24ab63	2021-05-21 02:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:41:49.852+03	2021-05-21 02:41:49.859+03	
50929dec-e274-734b-5490-f2f21b5d8aa5	2021-05-21 02:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:42:09.852+03	2021-05-21 02:42:09.859+03	
b5a69976-29cd-937f-3b6e-c9682899c7eb	2021-05-21 02:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:42:29.852+03	2021-05-21 02:42:29.859+03	
e2698f5d-b6c0-815e-9042-8204de3ebed9	2021-05-21 02:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:42:49.852+03	2021-05-21 02:42:49.859+03	
34fb6b51-ccfd-ebaf-e443-b7c6e28e56a7	2021-05-21 02:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:43:09.853+03	2021-05-21 02:43:09.859+03	
e796407b-8d07-9898-c346-7ddf8e203e7d	2021-05-21 02:43:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:43:29.853+03	2021-05-21 02:43:29.859+03	
a3b9f2ff-35ee-8c99-70c2-2f4c850cce74	2021-05-21 02:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:43:50.853+03	2021-05-21 02:43:50.859+03	
adacbb09-bf4a-89ae-b281-1c2c35fd669c	2021-05-21 02:44:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:44:11.852+03	2021-05-21 02:44:11.859+03	
987b4389-8687-b49a-ee24-099fe6ab0ebf	2021-05-21 02:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:44:31.854+03	2021-05-21 02:44:31.86+03	
576bfb72-134d-5b01-50b8-72d6407cd237	2021-05-21 02:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:44:52.852+03	2021-05-21 02:44:52.859+03	
d02138eb-afad-f736-7ae0-60af15a0b13c	2021-05-21 02:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:45:12.853+03	2021-05-21 02:45:12.859+03	
ccb81da0-b906-f404-a52e-4d2a91d5a59a	2021-05-21 02:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:45:33.853+03	2021-05-21 02:45:33.864+03	
9174a992-12a5-e0f3-e5d3-2bf89525ca7f	2021-05-21 02:45:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:45:54.853+03	2021-05-21 02:45:54.86+03	
7fd94669-3296-4c78-69f5-8d83c854f70a	2021-05-21 02:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:46:15.853+03	2021-05-21 02:46:15.859+03	
17c27e04-e7b8-8146-78b8-ba20d2111757	2021-05-21 02:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:46:35.853+03	2021-05-21 02:46:35.873+03	
d4a6fad2-76a3-b5e1-094d-b81eb6190c0a	2021-05-21 02:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:46:55.853+03	2021-05-21 02:46:55.858+03	
a234c19f-5291-7f88-2b4f-b8811d8e824d	2021-05-21 02:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:47:17.852+03	2021-05-21 02:47:17.859+03	
41bde796-9f22-e204-ba8a-531aada3560e	2021-05-21 02:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:47:38.853+03	2021-05-21 02:47:38.873+03	
2761ce7e-74f9-858d-8b6e-cc943397b60a	2021-05-21 02:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:47:59.853+03	2021-05-21 02:47:59.86+03	
43606e39-dce1-74b1-0d41-d7c25e4c31a9	2021-05-21 02:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:48:20.852+03	2021-05-21 02:48:20.858+03	
16c28522-6e15-5b79-b562-60a28d87099a	2021-05-21 02:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:48:40.852+03	2021-05-21 02:48:40.869+03	
840c46e7-4517-e7c6-92fd-ebd5121f2a44	2021-05-21 02:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:49:00.853+03	2021-05-21 02:49:00.869+03	
ffbc600e-fe0f-9e42-f9a9-646ee20e504a	2021-05-21 02:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:49:22.852+03	2021-05-21 02:49:22.859+03	
09e061cb-0227-6dce-e937-409d77a27f78	2021-05-21 02:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:49:42.852+03	2021-05-21 02:49:43.09+03	
84c241d0-fe49-b2a1-4205-8d94e601b217	2021-05-21 02:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 02:50:00.853+03	2021-05-21 02:50:00.859+03	ERROR
52bd0231-b218-08b3-d185-1c112f96ea73	2021-05-21 02:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:50:12.853+03	2021-05-21 02:50:12.859+03	
8cbfbb71-5760-f980-c1b5-fb1faf7b3057	2021-05-21 02:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:50:33.852+03	2021-05-21 02:50:33.861+03	
0d500509-4d7d-322c-26bf-39884e86d541	2021-05-21 02:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:50:53.853+03	2021-05-21 02:50:53.859+03	
f06842fe-d408-9989-9c09-538f765d9b10	2021-05-21 02:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:51:13.853+03	2021-05-21 02:51:13.859+03	
69e0f5c3-d7d5-cca5-7a15-27c09f564424	2021-05-21 02:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:51:34.853+03	2021-05-21 02:51:34.859+03	
cdf5a6cf-3c53-10db-de04-de472272d514	2021-05-21 02:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:51:55.853+03	2021-05-21 02:51:55.859+03	
9f07c360-4cd8-937c-dee3-19793bbe42be	2021-05-21 02:52:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:52:16.854+03	2021-05-21 02:52:16.862+03	
d202abc7-f9f7-f181-c25a-eb0505dcb7a0	2021-05-21 02:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:52:37.853+03	2021-05-21 02:52:37.86+03	
2a21f507-c6b1-de9b-200c-a7b94249ad8d	2021-05-21 02:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:52:58.852+03	2021-05-21 02:52:58.859+03	
83222865-708f-1fa0-1a60-11c998e29d01	2021-05-21 02:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:53:19.853+03	2021-05-21 02:53:19.859+03	
bd4ba6f9-3e31-35d0-e431-12c02fc1d6ae	2021-05-21 02:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:53:39.853+03	2021-05-21 02:53:39.86+03	
794e948a-bbc3-2b39-0d8a-7cd9115773d7	2021-05-21 02:54:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:54:01.852+03	2021-05-21 02:54:01.859+03	
068391e3-98a7-c527-c690-df5e63156167	2021-05-21 02:54:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:54:21.852+03	2021-05-21 02:54:21.859+03	
d36b1a83-346a-668e-0e52-574572946fd8	2021-05-21 02:54:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:54:41.852+03	2021-05-21 02:54:41.859+03	
de162f0c-db49-dc88-cd57-7c9af1dc51a3	2021-05-21 02:55:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:55:01.854+03	2021-05-21 02:55:01.901+03	
ebc0484a-aaa1-b11e-64db-d0b28f8cafe2	2021-05-21 02:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:55:22.853+03	2021-05-21 02:55:22.86+03	
ec7cdbdf-7d0d-878c-d717-fc96c9014b4d	2021-05-21 02:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:55:42.853+03	2021-05-21 02:55:42.86+03	
6bcf0325-4add-88e2-9419-8273a1b67e24	2021-05-21 02:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:56:03.852+03	2021-05-21 02:56:03.859+03	
1d8b45a7-be43-dc23-b137-24fe27d76781	2021-05-21 02:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:56:23.853+03	2021-05-21 02:56:23.859+03	
51b35419-5cb5-cdc2-73f6-748940f5a89d	2021-05-21 02:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:56:44.853+03	2021-05-21 02:56:45.092+03	
67a21335-639b-30cf-bb78-34735ad3f891	2021-05-21 02:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:57:04.853+03	2021-05-21 02:57:04.863+03	
933a1151-41b3-991c-cf43-7630f34b6172	2021-05-21 02:57:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:57:26.852+03	2021-05-21 02:57:26.876+03	
6bd27cb0-66f0-43b1-ab01-97fec3d338f7	2021-05-21 02:57:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:57:46.852+03	2021-05-21 02:57:46.862+03	
a69c5ac9-4c9b-a10c-47cf-f0bbc24c8569	2021-05-21 02:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:58:07.852+03	2021-05-21 02:58:07.86+03	
d4e31bc7-3be9-0fb8-2f7c-2b631a2b5239	2021-05-21 02:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:58:27.852+03	2021-05-21 02:58:27.859+03	
7fea49b5-35b3-d4c0-1cbd-2445121470d9	2021-05-21 02:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:58:47.853+03	2021-05-21 02:58:47.859+03	
f663086d-51a1-37de-e9f7-34a0c335d511	2021-05-21 02:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:59:08.853+03	2021-05-21 02:59:08.859+03	
5f3cbb82-0c01-0b6c-c91e-5b5360cc7f99	2021-05-21 02:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:59:29.853+03	2021-05-21 02:59:29.859+03	
b6bd5e0a-d924-959e-bf80-9b7404f0575b	2021-05-21 02:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 02:59:49.853+03	2021-05-21 02:59:49.859+03	
5d03ccf4-eddc-d3fd-5b7e-bbd007173308	2021-05-21 03:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 03:00:00.853+03	2021-05-21 03:00:00.883+03	ERROR
15bb3b5e-49f9-9903-a083-bcd5fd81712a	2021-05-21 11:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:24:22.853+03	2021-05-21 11:24:22.865+03	
e1da05c3-1468-24ef-d9bd-456a24069562	2021-05-21 03:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:00:09.853+03	2021-05-21 03:00:09.879+03	
c7c4892d-c82a-45f3-6641-c48c56e90961	2021-05-21 03:25:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:25:26.852+03	2021-05-21 03:25:26.861+03	
d24ab232-a628-bf6d-dc77-21c4c95a7cf9	2021-05-21 03:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:00:39.853+03	2021-05-21 03:00:39.865+03	
e6eaec43-92f0-88b6-f976-4d10880cd4ac	2021-05-21 03:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:01:00.853+03	2021-05-21 03:01:00.864+03	
244ae8b6-335d-e584-b35e-1652869ed0d6	2021-05-21 03:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:25:46.852+03	2021-05-21 03:25:46.86+03	
96bcd27a-4c36-2e24-66bb-617c898ae3b8	2021-05-21 03:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:01:20.853+03	2021-05-21 03:01:20.86+03	
fe480c4b-27df-a527-0241-ae43d61a5580	2021-05-21 03:01:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:01:41.854+03	2021-05-21 03:01:41.86+03	
b47d3f8c-2a98-085c-3744-2970af4999c6	2021-05-21 03:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:26:07.853+03	2021-05-21 03:26:07.864+03	
51b77975-5f89-477f-94b3-8fcf9b683966	2021-05-21 03:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:02:03.853+03	2021-05-21 03:02:03.86+03	
3b663da1-228a-9ccb-7407-ac330e40419c	2021-05-21 03:02:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:02:23.853+03	2021-05-21 03:02:23.859+03	
ed6f5904-e10d-a70a-2a29-edbd7c7573ec	2021-05-21 03:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:26:37.853+03	2021-05-21 03:26:37.862+03	
00c39423-2782-913a-81cb-9cfdce75cf36	2021-05-21 03:02:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:02:43.853+03	2021-05-21 03:02:43.859+03	
0bb2d8f0-e93f-2f5a-3413-54aabb85efca	2021-05-21 03:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:03:03.853+03	2021-05-21 03:03:03.86+03	
8f458c2e-1e2d-87f7-a582-44810a2004d2	2021-05-21 03:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:26:58.852+03	2021-05-21 03:26:58.859+03	
bdf7023c-27bc-fb4d-684f-dcfafc0911fe	2021-05-21 03:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:03:24.852+03	2021-05-21 03:03:24.86+03	
7d9bfa8e-a3ee-5436-826a-264a0c4aac27	2021-05-21 03:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:03:44.852+03	2021-05-21 03:03:44.859+03	
3460454f-21c3-cc70-cd91-222874edf2e8	2021-05-21 03:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:27:18.853+03	2021-05-21 03:27:18.859+03	
49ff6e8a-b7b6-718f-47a9-a515c009d574	2021-05-21 03:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:04:04.852+03	2021-05-21 03:04:04.858+03	
cc1c3631-0dea-f171-41cb-7d861ad9820f	2021-05-21 03:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:04:25.852+03	2021-05-21 03:04:25.861+03	
620a8cf0-ea36-cce2-6ae5-45b3140556d5	2021-05-21 03:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:27:39.853+03	2021-05-21 03:27:39.86+03	
235e0ef0-6c77-4829-153c-fdc65ffc8548	2021-05-21 03:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:04:45.853+03	2021-05-21 03:04:45.859+03	
473cda98-76b9-8dbf-b73e-c8f6c2c22125	2021-05-21 03:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:05:05.853+03	2021-05-21 03:05:05.86+03	
d9c8af20-079c-f9be-cfc6-0c512903fea5	2021-05-21 03:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:27:59.853+03	2021-05-21 03:27:59.861+03	
6fefd365-b5f3-74e2-d098-5279eaec24d7	2021-05-21 03:05:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:05:26.852+03	2021-05-21 03:05:26.864+03	
39cc5aac-9d3e-3de4-c949-bba4d4ba6448	2021-05-21 03:05:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:05:46.854+03	2021-05-21 03:05:46.861+03	
e13a93aa-c000-ecfa-9c41-bc3e5b37168e	2021-05-21 03:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:28:19.853+03	2021-05-21 03:28:19.859+03	
1822109a-7d93-db4d-69ee-1ea1cfb8020d	2021-05-21 03:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:06:07.853+03	2021-05-21 03:06:07.859+03	
20808375-3eaf-ea32-a93b-bb67b4e471c8	2021-05-21 03:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:06:28.853+03	2021-05-21 03:06:28.86+03	
6c3837e3-1cb3-73c4-78a3-cb58189f8ff1	2021-05-21 03:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:28:39.853+03	2021-05-21 03:28:39.859+03	
61db2f84-e4cb-f35b-7adf-382453ead908	2021-05-21 03:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:06:49.853+03	2021-05-21 03:06:49.859+03	
022370ce-5473-c670-fa37-a5a327cb2a86	2021-05-21 03:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:07:10.853+03	2021-05-21 03:07:10.86+03	
0a6ec7d6-4d6e-aa2e-d0bd-c2e4079c1fd0	2021-05-21 03:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:28:59.853+03	2021-05-21 03:28:59.859+03	
b795e95a-531f-bdc1-401f-661cab1ab84f	2021-05-21 03:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:07:30.853+03	2021-05-21 03:07:30.86+03	
498dcccd-8e48-8705-c520-0c88a7083d4f	2021-05-21 03:07:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:07:50.853+03	2021-05-21 03:07:50.86+03	
3f224a2e-6963-b240-b090-314d28658dc9	2021-05-21 03:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:29:19.853+03	2021-05-21 03:29:19.859+03	
213b9c0c-06ef-773a-bb7e-247dca52e9e5	2021-05-21 03:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:29:30.852+03	2021-05-21 03:29:30.859+03	
3e0b7d34-50f8-1bff-3595-c515f0ca6022	2021-05-21 03:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:29:50.853+03	2021-05-21 03:29:50.861+03	
baee011a-97ba-088c-1e61-9765e109d252	2021-05-21 03:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:30:10.853+03	2021-05-21 03:30:10.859+03	
6b30b7a0-bbdc-1525-9111-eefb2d727e66	2021-05-21 03:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:30:42.853+03	2021-05-21 03:30:42.859+03	
cf56bf9f-5cbf-4a4f-4df6-500235339c0f	2021-05-21 03:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:31:03.852+03	2021-05-21 03:31:03.86+03	
7d0f7839-62b0-961d-65f5-00208bcf752e	2021-05-21 03:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:31:23.852+03	2021-05-21 03:31:23.864+03	
400b4c14-7293-8678-a390-977617ee4874	2021-05-21 03:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:31:33.852+03	2021-05-21 03:31:33.859+03	
58292597-4894-994f-ef87-49817f46344b	2021-05-21 03:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:31:53.853+03	2021-05-21 03:31:53.859+03	
273cc28c-5393-d032-55f9-446de7b57c1f	2021-05-21 03:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:32:15.852+03	2021-05-21 03:32:15.859+03	
5700deca-7095-a430-eb69-1d7b8edf75a6	2021-05-21 03:32:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:32:46.853+03	2021-05-21 03:32:46.861+03	
7f4cfa9e-50b2-477d-ef8a-75edd7b1f5b0	2021-05-21 03:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:33:08.853+03	2021-05-21 03:33:08.861+03	
ad92ba88-ef65-ab86-3124-bbf5694a45e9	2021-05-21 03:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:33:39.853+03	2021-05-21 03:33:39.859+03	
3b9f2990-6612-9357-66b6-f7e417230a6b	2021-05-21 03:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:34:00.853+03	2021-05-21 03:34:00.872+03	
338bb97b-86ec-a4c0-908f-11dd1b3929cc	2021-05-21 03:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:34:20.853+03	2021-05-21 03:34:20.859+03	
c3944aad-4010-0dc3-18d1-f3a81da08e9c	2021-05-21 03:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:34:30.853+03	2021-05-21 03:34:30.859+03	
cb8e0cd6-fbce-8489-8e74-97d30942d2b5	2021-05-21 03:34:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:34:51.853+03	2021-05-21 03:34:51.859+03	
815dbb64-3817-2c70-0edb-9ae390e6aa23	2021-05-21 03:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:35:12.853+03	2021-05-21 03:35:12.859+03	
5950c04a-e4b9-0cd2-4131-bc67f0c738d1	2021-05-21 03:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:35:33.853+03	2021-05-21 03:35:33.866+03	
028c2e38-fb7f-903c-88c2-a78c2bf8173e	2021-05-21 03:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:35:53.853+03	2021-05-21 03:35:53.86+03	
971b1bc4-5baa-1173-2767-1cf76e2511bf	2021-05-21 03:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:36:13.853+03	2021-05-21 03:36:13.859+03	
b3bd3896-e2f3-6732-ee66-9ebb3521eb21	2021-05-21 03:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:36:44.853+03	2021-05-21 03:36:44.859+03	
edaf0de2-5b46-c125-d4c5-4a420e9e6d66	2021-05-21 03:37:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:37:06.854+03	2021-05-21 03:37:06.861+03	
a20a44a3-2aeb-eb7c-8da5-d10c9ae2cd40	2021-05-21 03:37:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:37:16.854+03	2021-05-21 03:37:16.862+03	
9d7754ee-0db5-ca5f-1b52-09ba75e79867	2021-05-21 03:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:37:27.852+03	2021-05-21 03:37:27.859+03	
27383b76-3f9b-bd0b-4d15-cdd076f06eb6	2021-05-21 03:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:37:37.852+03	2021-05-21 03:37:37.859+03	
900d4f80-05de-f02c-2901-e3bfd414892a	2021-05-21 03:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:37:47.852+03	2021-05-21 03:37:47.858+03	
96eb2e7a-029f-5e70-2cee-31d9c87b7e62	2021-05-21 03:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:37:57.853+03	2021-05-21 03:37:57.861+03	
509e8d3c-9520-9edb-3672-07fd820b30ca	2021-05-21 03:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:38:07.853+03	2021-05-21 03:38:07.868+03	
6dcf44df-e70b-1c03-53a2-da2b82cdcb6a	2021-05-21 21:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:59:19.853+03	2021-05-21 21:59:19.86+03	
85fe91d1-fad4-4e2f-b6d4-b944d191fc79	2021-05-21 03:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:00:19.853+03	2021-05-21 03:00:19.86+03	
6427fd41-32e2-9c2e-bf61-193ba6aad2c7	2021-05-21 03:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 03:30:00.852+03	2021-05-21 03:30:00.871+03	ERROR
54183d7d-ef42-bcf5-4ab3-945e192e4b6c	2021-05-21 03:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:00:29.853+03	2021-05-21 03:00:29.861+03	
39c6ef77-defa-d554-da18-d30fd38980a7	2021-05-21 03:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:00:50.852+03	2021-05-21 03:00:50.859+03	
d317776e-0151-c06d-8ff2-695920ef7063	2021-05-21 03:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:38:17.853+03	2021-05-21 03:38:17.86+03	
1f8b1e41-0cbb-d53d-e2a9-1d1c9bbf8a5a	2021-05-21 03:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:01:10.853+03	2021-05-21 03:01:10.862+03	
8af9eda8-b38d-fdcc-510d-36fe063554d8	2021-05-21 03:01:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:01:31.853+03	2021-05-21 03:01:31.894+03	
8a2625f9-eb92-ebb3-75d3-884cb27dc8be	2021-05-21 03:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:38:27.853+03	2021-05-21 03:38:27.881+03	
f4f05df3-81bd-5b41-d2ef-aafd1f2f8797	2021-05-21 03:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:01:52.853+03	2021-05-21 03:01:52.859+03	
6fac7fa2-ff9c-9a9d-e8c7-a349f2282ece	2021-05-21 03:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:02:13.853+03	2021-05-21 03:02:13.874+03	
dd813041-e842-057f-4d62-eac8b2646ef3	2021-05-21 03:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:38:37.853+03	2021-05-21 03:38:37.86+03	
e27ac25d-6b9e-0f9e-5ba8-3fbbb3e589d5	2021-05-21 03:02:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:02:33.853+03	2021-05-21 03:02:33.875+03	
4606143d-0f1f-b726-2cc8-b93e14c01802	2021-05-21 03:02:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:02:53.853+03	2021-05-21 03:02:53.859+03	
1eb97a66-9522-4d1c-43bf-5b4d86784fbc	2021-05-21 03:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:38:47.853+03	2021-05-21 03:38:47.876+03	
5cfc8590-fdc2-c252-5efa-3bdbfd8c2cc4	2021-05-21 03:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:03:14.852+03	2021-05-21 03:03:14.859+03	
3b8f4014-bb42-98e9-108f-ea5e6fbde429	2021-05-21 03:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:03:34.852+03	2021-05-21 03:03:34.858+03	
5739d234-f03f-63de-9edd-c4df8173c0ec	2021-05-21 03:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:38:57.853+03	2021-05-21 03:38:57.86+03	
be1bed5a-d453-bc6b-a778-b14977d32508	2021-05-21 03:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:03:54.852+03	2021-05-21 03:03:54.861+03	
5281cd6e-292a-ef8b-02b3-15d9bc811f55	2021-05-21 03:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:04:14.853+03	2021-05-21 03:04:14.871+03	
8e1a62d3-e079-e70b-9e48-444e53d31636	2021-05-21 03:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:39:08.853+03	2021-05-21 03:39:08.859+03	
ad2d7ec3-2869-09f6-b373-42d160de262c	2021-05-21 03:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:04:35.853+03	2021-05-21 03:04:35.865+03	
06ee4eb6-d9dc-8f9a-2ce2-debae46f0ec9	2021-05-21 03:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:04:55.853+03	2021-05-21 03:04:55.858+03	
221cc60c-dff9-c1f9-db34-9d0276d0bbdd	2021-05-21 03:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:39:18.853+03	2021-05-21 03:39:18.863+03	
f2be3a2d-09c5-a51f-3f0c-659fa930dbd0	2021-05-21 03:05:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:05:16.852+03	2021-05-21 03:05:16.859+03	
f8068fd3-0e39-0f53-b111-a3e77da3a40c	2021-05-21 03:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:05:36.853+03	2021-05-21 03:05:36.858+03	
c7ba4a4e-a98c-41aa-ac06-5f07150f7f1d	2021-05-21 03:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:39:28.853+03	2021-05-21 03:39:28.86+03	
bf980ede-1a00-4757-f234-d49465cf96f9	2021-05-21 03:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:05:57.853+03	2021-05-21 03:05:57.859+03	
6119be99-f9cb-c6ae-996b-e71f28053433	2021-05-21 03:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:06:18.852+03	2021-05-21 03:06:18.86+03	
0723e309-8478-3532-83c0-c543327d7179	2021-05-21 03:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:39:39.852+03	2021-05-21 03:39:39.863+03	
32a72bc1-2134-eeae-26ab-d2688fc7f9ed	2021-05-21 03:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:06:39.852+03	2021-05-21 03:06:39.859+03	
3b4e3d33-85a2-bbc9-ff0f-2141d19b2cb4	2021-05-21 03:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:07:00.852+03	2021-05-21 03:07:00.858+03	
4bece79c-3422-753e-1bc1-88a0f92cbc33	2021-05-21 03:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:39:49.853+03	2021-05-21 03:39:49.86+03	
be253872-ec61-6e2b-15fb-c699ae9916c0	2021-05-21 03:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:07:20.853+03	2021-05-21 03:07:20.86+03	
3795505b-d061-4c4d-2427-51eb012afda3	2021-05-21 03:07:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:07:40.853+03	2021-05-21 03:07:40.86+03	
c04b38a9-b36d-75a1-076f-40ff4906e0d8	2021-05-21 03:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:39:59.853+03	2021-05-21 03:39:59.861+03	
bd2010ba-af92-0968-42e2-2050a1d80e50	2021-05-21 03:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 03:40:00.852+03	2021-05-21 03:40:00.861+03	ERROR
c1178e9a-a123-62d1-a64d-5a9a9545b027	2021-05-21 03:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:40:09.853+03	2021-05-21 03:40:09.861+03	
f1cca898-647d-6f8f-7d47-6fc6096c9081	2021-05-21 03:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:40:19.853+03	2021-05-21 03:40:19.859+03	
896b5316-b0af-3d8b-9758-7d0cfdb2b0cb	2021-05-21 03:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:40:30.853+03	2021-05-21 03:40:30.86+03	
b89cebba-65f7-3e72-416e-9c8a8db39091	2021-05-21 03:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:40:40.853+03	2021-05-21 03:40:40.861+03	
855a27bf-7929-978e-f1a5-2bae80d21e7f	2021-05-21 03:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:40:50.853+03	2021-05-21 03:40:50.862+03	
b714b212-e8af-bff6-117f-24c69243f995	2021-05-21 03:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:41:00.853+03	2021-05-21 03:41:00.859+03	
aae33705-a90f-e6f2-a7d3-33b28212e325	2021-05-21 03:41:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:41:10.853+03	2021-05-21 03:41:10.86+03	
30283415-ecd5-d737-16e2-51d7144bfce0	2021-05-21 03:41:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:41:20.853+03	2021-05-21 03:41:20.86+03	
67fd0bd0-0316-89a8-4fd7-265129d935b2	2021-05-21 03:41:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:41:30.853+03	2021-05-21 03:41:30.859+03	
a13957ed-2fbe-559c-96c6-6c9b03a20bfb	2021-05-21 03:41:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:41:41.853+03	2021-05-21 03:41:41.86+03	
440ec267-7d61-a49e-e830-ef1a004c99a2	2021-05-21 03:41:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:41:51.853+03	2021-05-21 03:41:51.86+03	
663216aa-a287-d3dd-8589-23afeedf5245	2021-05-21 03:42:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:42:01.853+03	2021-05-21 03:42:01.861+03	
f62bf322-12b8-ccc1-1737-00969d63080d	2021-05-21 03:42:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:42:11.854+03	2021-05-21 03:42:11.861+03	
12c1d822-1ea9-2b29-bcce-14086b902d77	2021-05-21 03:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:42:22.852+03	2021-05-21 03:42:22.86+03	
bf699c98-0ba4-9db3-7dce-44518b127cad	2021-05-21 03:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:42:32.853+03	2021-05-21 03:42:32.861+03	
911f0bff-0cf1-63b0-f015-c69ab35d4ab6	2021-05-21 03:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:42:43.852+03	2021-05-21 03:42:43.865+03	
31036e6d-2173-7cf9-4613-58fa2d64cdec	2021-05-21 03:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:42:53.853+03	2021-05-21 03:42:53.86+03	
2c6dfdb8-e93f-abec-3d10-eae086a5aa00	2021-05-21 03:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:43:04.852+03	2021-05-21 03:43:04.859+03	
10e316b1-f50b-81cf-3d3c-1a726332e91a	2021-05-21 03:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:43:14.852+03	2021-05-21 03:43:14.859+03	
b3f1a32b-a4fe-180b-fa87-11a352fa370f	2021-05-21 03:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:43:24.852+03	2021-05-21 03:43:24.858+03	
84db81fc-7407-eec7-77bf-4ec668b940ad	2021-05-21 03:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:43:34.852+03	2021-05-21 03:43:34.859+03	
d2764a5f-2483-e84d-0b11-ffa88ca4bb1b	2021-05-21 03:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:43:44.852+03	2021-05-21 03:43:44.86+03	
4dacc13c-3b42-de71-7ecf-ee60a45d9a48	2021-05-21 03:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:43:54.853+03	2021-05-21 03:43:54.86+03	
55a10477-49fb-4360-a2db-01da05a2a005	2021-05-21 03:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:44:04.853+03	2021-05-21 03:44:04.859+03	
347c7e72-9f7c-cb2a-1231-c4091ca0dc8f	2021-05-21 03:44:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:44:14.853+03	2021-05-21 03:44:14.86+03	
93197941-bcee-287c-d169-ea9f00efa80b	2021-05-21 03:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:44:24.853+03	2021-05-21 03:44:24.859+03	
305ea8be-5290-2e31-003d-f3b2d40adc90	2021-05-21 03:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:44:34.853+03	2021-05-21 03:44:34.859+03	
707bf58f-6b68-aa81-236f-3e1943fed7c7	2021-05-21 11:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:24:33.852+03	2021-05-21 11:24:33.86+03	
d349ba0a-1b59-93f6-50bb-f3836f307741	2021-05-21 03:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:44:45.852+03	2021-05-21 03:44:45.86+03	
a7ccdab7-c753-98f2-d12c-057f9bfc0b17	2021-05-21 03:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:45:05.852+03	2021-05-21 03:45:05.858+03	
86e54214-1fc1-bddc-c932-d771b708d097	2021-05-21 11:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:24:54.853+03	2021-05-21 11:24:54.859+03	
f43c7d77-ba5c-b10c-5f7b-5f16a1fc5063	2021-05-21 03:45:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:45:26.853+03	2021-05-21 03:45:26.862+03	
5052e3fa-c684-8ac8-4640-22b32f9e671e	2021-05-21 03:45:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:45:46.853+03	2021-05-21 03:45:46.859+03	
95484de0-b3fe-e717-208d-c64b18f264ac	2021-05-21 11:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:25:15.853+03	2021-05-21 11:25:15.86+03	
ff1d3810-63be-b6de-a395-bf8470dac421	2021-05-21 03:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:46:06.853+03	2021-05-21 03:46:06.861+03	
02eb7b2e-4972-5700-eb37-7c664a4b656e	2021-05-21 03:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:46:27.852+03	2021-05-21 03:46:27.86+03	
a573cfdd-e2e0-0fcb-4562-f96cbc1c05a0	2021-05-21 11:25:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:25:36.852+03	2021-05-21 11:25:36.859+03	
0fd19b7c-8878-fc30-c08c-a70c77355c14	2021-05-21 03:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:46:48.852+03	2021-05-21 03:46:48.858+03	
d563e3d4-dc11-b8ca-bcd7-3f0c0a59c4cf	2021-05-21 03:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:47:08.853+03	2021-05-21 03:47:08.86+03	
217237dc-ccf5-320a-617f-e14a179e02b8	2021-05-21 11:25:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:25:56.854+03	2021-05-21 11:25:56.861+03	
a9a9eeff-cc26-6a21-5f43-eeae2eaed052	2021-05-21 03:47:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:47:29.852+03	2021-05-21 03:47:29.859+03	
b05b8ac7-b44a-fbd3-e2e7-13b7c6e30589	2021-05-21 03:47:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:47:49.853+03	2021-05-21 03:47:49.869+03	
680e91e9-98d1-24d2-923b-853daecbdb23	2021-05-21 11:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:26:17.853+03	2021-05-21 11:26:17.862+03	
d55d5cfe-79d3-0f65-ad4a-3357464f04e3	2021-05-21 03:48:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:48:10.852+03	2021-05-21 03:48:10.859+03	
c33c9dc6-8110-103b-fd1e-661381e35b85	2021-05-21 03:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:48:30.853+03	2021-05-21 03:48:30.859+03	
76d11969-35bb-2dfb-fe19-21e507ee7131	2021-05-21 11:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:26:39.853+03	2021-05-21 11:26:39.859+03	
8eb60b9a-353c-d5ad-b8c8-d0af0bd71208	2021-05-21 03:48:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:48:51.852+03	2021-05-21 03:48:51.86+03	
38376274-9412-2202-251a-c0fe41d370a4	2021-05-21 03:49:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:49:11.852+03	2021-05-21 03:49:11.87+03	
f2e43949-3157-9add-802f-f98978868b38	2021-05-21 11:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:27:00.852+03	2021-05-21 11:27:00.862+03	
5f202f6a-2ece-8186-cee2-80c91675dbb9	2021-05-21 03:49:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:49:31.852+03	2021-05-21 03:49:31.86+03	
435fa52b-e68f-ff73-1adc-7d8697beef4b	2021-05-21 03:49:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:49:51.852+03	2021-05-21 03:49:51.858+03	
badfde27-481c-50a8-e7ec-597be110d655	2021-05-21 11:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:27:20.853+03	2021-05-21 11:27:20.872+03	
7ccd1fc8-77b9-05d3-fa8e-74c9ebba0ea8	2021-05-21 03:50:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:50:01.852+03	2021-05-21 03:50:01.859+03	
37b496bf-7b97-27c7-169b-70c262293e1e	2021-05-21 03:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:50:22.852+03	2021-05-21 03:50:22.858+03	
6cf04554-03a3-93a0-9375-37f2efb82c2e	2021-05-21 11:27:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:27:41.852+03	2021-05-21 11:27:41.865+03	
9c8cb10c-8545-7cfd-8e32-83f56592843f	2021-05-21 03:50:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:50:42.853+03	2021-05-21 03:50:42.859+03	
522a299c-b325-6643-2296-5125d3192390	2021-05-21 03:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:51:02.853+03	2021-05-21 03:51:02.861+03	
7d80f042-24a0-222e-422c-621ca5c3fd7d	2021-05-21 11:28:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:28:01.854+03	2021-05-21 11:28:02.355+03	
3fb95a56-619c-e642-e4f8-42cf6e51109c	2021-05-21 03:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:51:23.852+03	2021-05-21 03:51:23.867+03	
a0723ea6-1c57-b379-9037-192a2d00f2d1	2021-05-21 03:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:51:43.853+03	2021-05-21 03:51:43.86+03	
77b420fb-4bde-7461-eb70-962cf3c94798	2021-05-21 11:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:28:23.852+03	2021-05-21 11:28:24.156+03	
5afa9daf-05fe-48cf-fe6c-9b52191e6a9f	2021-05-21 03:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:52:04.853+03	2021-05-21 03:52:04.859+03	
6c2e41b5-b0a6-a3af-4932-41d10a30ceb1	2021-05-21 03:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:52:25.852+03	2021-05-21 03:52:25.859+03	
6ff5aa21-5f10-a6a8-ca2b-90ea42ffec98	2021-05-21 11:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:28:43.853+03	2021-05-21 11:28:43.872+03	
d02bf679-c905-89ba-021b-e951b27a0f5d	2021-05-21 03:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:52:45.852+03	2021-05-21 03:52:45.86+03	
7e794594-246c-f935-4a39-3cd2172bd425	2021-05-21 03:53:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:53:06.852+03	2021-05-21 03:53:06.858+03	
4f07e6e6-8960-eec4-8642-e9abad594e87	2021-05-21 11:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:29:04.853+03	2021-05-21 11:29:04.866+03	
182c3eaf-c276-5bea-d301-ec1aa11bf0ab	2021-05-21 03:53:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:53:26.852+03	2021-05-21 03:53:26.862+03	
72be62f2-00e4-1b0b-a3ff-fb34a8106ab1	2021-05-21 03:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:53:47.853+03	2021-05-21 03:53:47.859+03	
672944f1-6478-ef3e-2e1c-fadfd9a6f36c	2021-05-21 11:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:29:24.853+03	2021-05-21 11:29:24.86+03	
cf1b86a5-f82a-fc23-9e7d-4005cb5e65e1	2021-05-21 03:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:54:08.853+03	2021-05-21 03:54:08.861+03	
0a589438-508e-aace-7e45-2e82eb970b3d	2021-05-21 03:54:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:54:29.853+03	2021-05-21 03:54:29.859+03	
c6ca0c03-e3dc-454f-ffb2-e3cc3f77e3d3	2021-05-21 11:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:29:45.853+03	2021-05-21 11:29:45.86+03	
c188b4fe-d559-cd80-9f16-ba304bf07e90	2021-05-21 03:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:54:50.852+03	2021-05-21 03:54:50.861+03	
ed1436f8-f85c-ccb2-e188-20ab26138acd	2021-05-21 03:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:55:10.853+03	2021-05-21 03:55:10.86+03	
72bdad9e-f4b4-e5da-d7df-8f38294d0e90	2021-05-21 11:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 11:30:00.853+03	2021-05-21 11:30:00.858+03	ERROR
246d3ec1-754e-4934-0934-a37d4c93d998	2021-05-21 03:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:55:32.852+03	2021-05-21 03:55:32.859+03	
e4529660-f17a-6826-a097-d63c87dd92ed	2021-05-21 03:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:55:52.853+03	2021-05-21 03:55:52.859+03	
b7686cf2-3b12-0733-e4e2-43f66944b773	2021-05-21 11:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:30:16.852+03	2021-05-21 11:30:16.886+03	
aabacafa-063d-9b72-7cd5-3fc833d24617	2021-05-21 03:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:56:12.853+03	2021-05-21 03:56:12.859+03	
af216b25-ad26-539d-af5b-44305f11f52d	2021-05-21 03:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:56:33.853+03	2021-05-21 03:56:33.859+03	
9da74147-eeab-c87e-6057-fe38be753bca	2021-05-21 11:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:30:37.852+03	2021-05-21 11:30:37.859+03	
11993ec0-0af7-5224-d468-09413bfeeeca	2021-05-21 11:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:30:57.853+03	2021-05-21 11:30:57.861+03	
5ef09f79-ac4b-a149-b89e-82e3615b006c	2021-05-21 11:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:31:18.853+03	2021-05-21 11:31:18.86+03	
e0278f1a-5a53-8840-28a2-37a42e053d6d	2021-05-21 11:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:31:39.852+03	2021-05-21 11:31:39.859+03	
7841b759-9849-7c10-8425-bd3e2021a89c	2021-05-21 11:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:32:00.853+03	2021-05-21 11:32:00.86+03	
eca84ba8-a18f-6a6a-aaf7-2cc980f35b3b	2021-05-21 11:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:32:20.853+03	2021-05-21 11:32:20.86+03	
4b9190f9-1927-bd4b-5952-e7afbe624c40	2021-05-21 11:32:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:32:41.852+03	2021-05-21 11:32:41.859+03	
20ac632b-34a4-0265-8402-4d7e16395bb0	2021-05-21 11:33:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:33:01.854+03	2021-05-21 11:33:01.86+03	
e56f9ec0-14b6-337e-be73-680fa35b41f1	2021-05-21 11:33:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:33:22.852+03	2021-05-21 11:33:22.859+03	
9da46f4f-b7cb-b8f5-c5c2-e2293702479c	2021-05-21 11:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:33:42.853+03	2021-05-21 11:33:42.859+03	
9fab5e20-604c-b03e-0f8b-acfb2d6ba60b	2021-05-21 03:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:44:55.852+03	2021-05-21 03:44:55.858+03	
80692d68-cb98-e486-ebb1-35f00d285484	2021-05-21 03:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:45:15.853+03	2021-05-21 03:45:15.87+03	
553e07ac-25c4-0ffb-c6e0-6117c414bbb4	2021-05-21 03:45:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:45:36.853+03	2021-05-21 03:45:36.861+03	
199f965c-6626-ae1a-90d6-c820d9afdcf2	2021-05-21 03:45:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:45:56.853+03	2021-05-21 03:45:56.86+03	
ceffa568-acb6-359e-a677-19ce05ec476b	2021-05-21 03:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:46:17.852+03	2021-05-21 03:46:17.859+03	
684e5dae-4762-c428-3fbe-7d8dc2e27012	2021-05-21 03:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:46:37.853+03	2021-05-21 03:46:37.86+03	
b4c1dc2c-421a-580a-32d8-c37aa435151b	2021-05-21 03:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:46:58.852+03	2021-05-21 03:46:58.859+03	
9fa222c7-dc7f-3d3d-ed50-3d30791f8427	2021-05-21 03:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:47:19.852+03	2021-05-21 03:47:19.859+03	
762f0e81-ced1-2c81-ae91-7b1c40d3f08c	2021-05-21 03:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:47:39.852+03	2021-05-21 03:47:39.858+03	
65271e2b-6664-ae4f-9e62-dc950eb7d74a	2021-05-21 03:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:48:00.852+03	2021-05-21 03:48:00.865+03	
bebe1aa1-a7c2-d655-ef84-2b16a9c6b5c7	2021-05-21 03:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:48:20.852+03	2021-05-21 03:48:20.859+03	
b3513a9d-6d64-8a23-5cd8-e991aded7426	2021-05-21 03:48:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:48:41.852+03	2021-05-21 03:48:41.86+03	
264e3ee0-1910-015e-2625-e074d57cd92e	2021-05-21 03:49:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:49:01.852+03	2021-05-21 03:49:01.86+03	
2537acff-1849-bc64-e67d-f7cd37aaf839	2021-05-21 03:49:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:49:21.852+03	2021-05-21 03:49:21.858+03	
24312759-3e0c-303d-5479-bf1f597cdb46	2021-05-21 03:49:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:49:41.852+03	2021-05-21 03:49:41.861+03	
88a90b1b-6313-bd4d-d79f-dd2ccd7a37a2	2021-05-21 03:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 03:50:00.852+03	2021-05-21 03:50:00.857+03	ERROR
ee08ff80-42de-7de2-6e8a-294ab58d08a4	2021-05-21 03:50:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:50:11.853+03	2021-05-21 03:50:11.859+03	
2e192883-ac94-c7ed-30ab-f42b179561bb	2021-05-21 03:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:50:32.853+03	2021-05-21 03:50:32.859+03	
48b193db-8357-f93d-0d6c-8cdadb5c3abe	2021-05-21 03:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:50:52.853+03	2021-05-21 03:50:52.859+03	
9cbd1f94-d587-865d-4d2a-df5c01420616	2021-05-21 03:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:51:13.852+03	2021-05-21 03:51:13.858+03	
6a1cf952-9388-d82b-7116-b8427e7d5f45	2021-05-21 03:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:51:33.853+03	2021-05-21 03:51:33.859+03	
26e31a79-70fa-7d72-74a2-60837330fcfa	2021-05-21 03:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:51:54.853+03	2021-05-21 03:51:54.86+03	
fe7fb655-49a0-3e00-4dca-2d2291bdbe8c	2021-05-21 03:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:52:15.852+03	2021-05-21 03:52:15.859+03	
c89e60c8-b4cf-4b97-6d83-1710ffc79300	2021-05-21 03:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:52:35.852+03	2021-05-21 03:52:35.859+03	
2a9ffbc1-6252-7288-bebd-6bf1d61dfb92	2021-05-21 03:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:52:55.853+03	2021-05-21 03:52:55.86+03	
dfecdc63-f114-a3fe-93cd-64077251429b	2021-05-21 03:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:53:16.852+03	2021-05-21 03:53:16.858+03	
f23efb87-58f6-3f24-2dec-f9807c09b76b	2021-05-21 03:53:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:53:36.854+03	2021-05-21 03:53:36.861+03	
5aced945-9353-6ca4-c8c2-233241498e2e	2021-05-21 03:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:53:58.853+03	2021-05-21 03:53:58.86+03	
7802d8ae-1b4f-f037-7b09-79b6cc0796e1	2021-05-21 03:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:54:19.853+03	2021-05-21 03:54:19.859+03	
5f1e6c86-bafc-4cde-e02e-e9daef87a2a4	2021-05-21 03:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:54:40.852+03	2021-05-21 03:54:40.858+03	
8d77f910-1469-f3db-a347-806b3a271bee	2021-05-21 03:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:55:00.852+03	2021-05-21 03:55:00.861+03	
cb4a4338-d647-d92c-7a1f-b18a3ee5c6f4	2021-05-21 03:55:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:55:21.854+03	2021-05-21 03:55:21.861+03	
7fa0aae9-c6f5-666b-91c5-c0f449c686b0	2021-05-21 03:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:55:42.853+03	2021-05-21 03:55:42.859+03	
68d8b62b-5255-ebce-44af-112b234ee51a	2021-05-21 03:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:56:02.853+03	2021-05-21 03:56:02.859+03	
61b50ec2-e72a-15b6-e56f-1596544b7eb9	2021-05-21 03:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:56:23.852+03	2021-05-21 03:56:23.859+03	
e044c098-ff9c-8d01-3142-5ed5bf63ca87	2021-05-21 03:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:56:43.853+03	2021-05-21 03:56:43.871+03	
8f1b846a-bfc3-d7f8-b1e9-964e38e8b399	2021-05-21 03:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:56:53.853+03	2021-05-21 03:56:53.86+03	
3f3472eb-49eb-0991-b900-85f5e9ed3ffd	2021-05-21 03:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:57:03.853+03	2021-05-21 03:57:03.863+03	
2e1eb927-b91a-73d7-396a-636523b801f8	2021-05-21 03:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:57:13.853+03	2021-05-21 03:57:13.859+03	
60cfe797-0b79-0899-0067-786aaa30b739	2021-05-21 03:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:57:23.853+03	2021-05-21 03:57:23.86+03	
00272ea1-5b04-1bf9-b357-2237e1f57bf8	2021-05-21 03:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:57:33.853+03	2021-05-21 03:57:33.863+03	
8e043b18-bfad-2790-d282-c31ce375f44b	2021-05-21 03:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:57:44.852+03	2021-05-21 03:57:44.872+03	
7b24f2eb-106b-da5d-312d-4e4a1285a52d	2021-05-21 03:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:57:54.852+03	2021-05-21 03:57:54.859+03	
ec5cfac8-0849-79ef-0f96-1c1e0546fd3e	2021-05-21 03:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:58:04.852+03	2021-05-21 03:58:04.86+03	
5317bb88-5db8-cf64-b339-a8ecdd1d39d9	2021-05-21 03:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:58:14.852+03	2021-05-21 03:58:14.858+03	
64c90926-af2c-a7e3-f442-86553e0b00ff	2021-05-21 03:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:58:24.853+03	2021-05-21 03:58:24.86+03	
38ebb287-fc71-67f7-5991-c35f559f5a29	2021-05-21 03:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:58:34.853+03	2021-05-21 03:58:34.859+03	
a7138338-32a0-c7e9-b902-3d0db9652329	2021-05-21 03:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:58:45.852+03	2021-05-21 03:58:45.859+03	
65f2cc1c-924c-9df9-c0b6-9afdc06d000c	2021-05-21 03:58:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:58:55.852+03	2021-05-21 03:58:55.86+03	
9085afdc-62e3-d373-3632-2e4f11f98d62	2021-05-21 03:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:59:05.853+03	2021-05-21 03:59:05.86+03	
a5938615-3e95-b4bd-b409-ea0f87b064d3	2021-05-21 03:59:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:59:16.852+03	2021-05-21 03:59:16.864+03	
c62b53aa-cd34-26a7-8d85-68a652723e48	2021-05-21 03:59:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:59:26.853+03	2021-05-21 03:59:26.859+03	
a1593998-46ca-ff58-5805-d95ce64a8718	2021-05-21 03:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:59:36.853+03	2021-05-21 03:59:36.87+03	
1a6f7f82-513f-1a06-2581-38142854272d	2021-05-21 03:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:59:47.852+03	2021-05-21 03:59:47.86+03	
1349c745-96c0-4f87-e933-9511f7e343f6	2021-05-21 03:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 03:59:57.852+03	2021-05-21 03:59:57.858+03	
8492dcec-35c5-86da-2798-2a936f791a6b	2021-05-21 04:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 04:00:00.853+03	2021-05-21 04:00:00.859+03	ERROR
2a2b304b-f581-eb86-e316-3f3e0ea01c27	2021-05-21 04:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:00:07.853+03	2021-05-21 04:00:07.861+03	
028d1390-fc37-cf3b-af8c-3f152d6b671e	2021-05-21 04:00:17.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:00:17.855+03	2021-05-21 04:00:17.874+03	
62e34506-c61c-fe7a-9a95-f24fc260e269	2021-05-21 04:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:00:28.853+03	2021-05-21 04:00:28.864+03	
c15615ff-e7d5-9307-22d0-26fa6f4527e7	2021-05-21 04:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:00:38.853+03	2021-05-21 04:00:38.867+03	
13ed7e68-36a9-e834-b454-bb485026df68	2021-05-21 04:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:00:48.853+03	2021-05-21 04:00:48.86+03	
cd15457a-4685-9442-fb0d-cc0c4f96f5bd	2021-05-21 04:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:00:58.853+03	2021-05-21 04:00:58.861+03	
48b7abd9-e861-1a3c-a6e8-c944f25fe676	2021-05-21 04:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:01:08.853+03	2021-05-21 04:01:08.859+03	
dcc7598c-b3b9-6f9f-5f80-5b1f19fdcc3b	2021-05-21 04:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:01:19.852+03	2021-05-21 04:01:19.858+03	
00ba9e4d-d4a1-c5f4-d537-f39671069c03	2021-05-21 04:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:01:40.853+03	2021-05-21 04:01:40.859+03	
7a8c2e8e-5673-4043-77ad-7d48bdbde396	2021-05-21 04:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:02:00.853+03	2021-05-21 04:02:00.873+03	
a0cd5f4a-e6a9-666c-48c6-a78c89f13639	2021-05-21 04:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:02:20.853+03	2021-05-21 04:02:20.86+03	
831b9a86-ae6d-b3be-7a54-9246835e987a	2021-05-21 04:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:02:40.853+03	2021-05-21 04:02:40.859+03	
9693ebad-432f-de64-252c-021b1d2e7e02	2021-05-21 04:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:03:00.853+03	2021-05-21 04:03:00.861+03	
8ac1dd02-6bc0-d5ec-d761-610a24f619a3	2021-05-21 04:03:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:03:21.853+03	2021-05-21 04:03:21.86+03	
f0d8c225-2896-121e-6c11-d2604cb86ae7	2021-05-21 04:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:03:42.852+03	2021-05-21 04:03:42.858+03	
2d07ee52-721b-1c24-ccad-8c3b26a6292f	2021-05-21 04:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:04:02.853+03	2021-05-21 04:04:02.873+03	
7ed1b64a-e6d0-848f-487a-a20adfc4885c	2021-05-21 04:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:04:24.853+03	2021-05-21 04:04:24.859+03	
cb7a561c-9682-2e54-8108-cd27dbc1f192	2021-05-21 04:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:04:44.853+03	2021-05-21 04:04:44.86+03	
89483f44-9779-f99b-dfc1-77d536ea767b	2021-05-21 04:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:05:04.853+03	2021-05-21 04:05:04.859+03	
0cb4385b-5a6c-e50e-902e-e18999aefd62	2021-05-21 04:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:05:25.853+03	2021-05-21 04:05:25.859+03	
ddd57aa6-b1b6-ce5b-19bd-b8e1c87fa881	2021-05-21 04:05:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:05:46.853+03	2021-05-21 04:05:46.858+03	
4b59a414-fd43-f01a-ab14-f2d00d0cb347	2021-05-21 04:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:06:07.853+03	2021-05-21 04:06:07.859+03	
2bda8bdf-ac97-4441-af5f-106b53f38c7a	2021-05-21 04:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:06:27.853+03	2021-05-21 04:06:27.86+03	
5d2264e1-ae28-34b7-0920-716644732c3e	2021-05-21 04:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:06:48.853+03	2021-05-21 04:06:48.859+03	
edd2daac-f391-c564-b95e-987b4549d73b	2021-05-21 04:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:07:09.852+03	2021-05-21 04:07:09.859+03	
7af9ddbf-1f93-2122-e8f0-a9dfbbb5a135	2021-05-21 04:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:07:29.853+03	2021-05-21 04:07:29.859+03	
dc86c2ab-20c8-1bd1-ccb1-9855addda636	2021-05-21 04:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:07:49.853+03	2021-05-21 04:07:49.86+03	
e5d68a0c-524e-4b09-1e7b-b402834dc353	2021-05-21 04:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:08:09.853+03	2021-05-21 04:08:09.86+03	
69ad9d90-2544-a9d3-06a2-bc451e166744	2021-05-21 04:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:08:30.852+03	2021-05-21 04:08:30.859+03	
dce846fd-ed0f-50e1-63a0-f70c0717e960	2021-05-21 04:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:08:50.852+03	2021-05-21 04:08:50.861+03	
3fbb06b7-c19b-d486-68c1-ecd2183c4765	2021-05-21 04:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:09:10.852+03	2021-05-21 04:09:10.876+03	
d9f75e39-3176-ce63-4d84-e1bc57e1c372	2021-05-21 04:09:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:09:41.853+03	2021-05-21 04:09:41.86+03	
e5487f9e-e4e6-67a0-d198-1ced621cbbfb	2021-05-21 04:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 04:10:00.853+03	2021-05-21 04:10:00.86+03	ERROR
21c22c6b-b2ce-7b33-b303-cd2450af6b39	2021-05-21 04:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:10:13.852+03	2021-05-21 04:10:13.859+03	
66ac5c96-2dbe-8efd-ebae-92d12d83cc78	2021-05-21 04:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:10:33.853+03	2021-05-21 04:10:33.873+03	
1862968c-4fb6-7b99-0271-8733a63e2b76	2021-05-21 04:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:10:53.853+03	2021-05-21 04:10:53.863+03	
7ab94276-0d6c-09e2-fbd6-9a30937d8189	2021-05-21 04:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:11:13.853+03	2021-05-21 04:11:13.86+03	
52675ac2-3690-be6f-5525-d48addd04323	2021-05-21 04:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:11:34.853+03	2021-05-21 04:11:34.859+03	
000ba41d-6817-4d22-02d7-da59f387bfdd	2021-05-21 04:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:11:55.852+03	2021-05-21 04:11:55.859+03	
facf4851-daf9-deb2-7a0c-17eab8443eee	2021-05-21 04:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:12:15.853+03	2021-05-21 04:12:15.86+03	
c0afa3a9-abd8-2fb1-1eb8-fcea81fb7834	2021-05-21 04:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:12:45.853+03	2021-05-21 04:12:45.859+03	
e9972b0d-8228-3ee8-c246-0309d11ab6dc	2021-05-21 04:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:13:05.853+03	2021-05-21 04:13:05.86+03	
a65329f8-1e35-2751-1f67-f41a2530933b	2021-05-21 04:13:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:13:26.852+03	2021-05-21 04:13:26.858+03	
d2f7b757-0ef2-dc1f-9f86-02b6b154fd04	2021-05-21 04:13:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:13:46.852+03	2021-05-21 04:13:46.858+03	
2d7a3aed-660b-c616-f9fd-1c2e7a4a9132	2021-05-21 04:14:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:14:06.852+03	2021-05-21 04:14:06.859+03	
2a88f732-57c1-8c95-932b-1c5112effafe	2021-05-21 04:14:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:14:26.854+03	2021-05-21 04:14:26.86+03	
a9ec5dee-8fc0-3a9c-e555-2e31ec2063fe	2021-05-21 04:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:14:47.853+03	2021-05-21 04:14:47.859+03	
12fb67a5-8c65-42b4-ca24-560c7cc1e369	2021-05-21 04:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:15:08.853+03	2021-05-21 04:15:08.86+03	
9fb8e697-f00f-93c6-bcf7-a126da7d5955	2021-05-21 04:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:15:29.852+03	2021-05-21 04:15:29.861+03	
c9a0fea9-056c-987f-9aa3-3057d1e9751f	2021-05-21 04:15:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:15:49.852+03	2021-05-21 04:15:49.859+03	
12fa5a28-56a0-497a-8d3c-ace07989862a	2021-05-21 04:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:16:09.853+03	2021-05-21 04:16:09.86+03	
46de0954-1f03-ea1c-0b28-127790eb6f8e	2021-05-21 04:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:16:30.853+03	2021-05-21 04:16:30.859+03	
f757a5af-7a08-28fd-e4a6-26225b00cae0	2021-05-21 04:16:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:16:51.853+03	2021-05-21 04:16:51.859+03	
0922bbb5-9a19-16db-a375-d85fa2c728a7	2021-05-21 04:17:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:17:11.853+03	2021-05-21 04:17:11.859+03	
27e068b4-fe65-469c-df89-de1565db07b7	2021-05-21 04:17:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:17:31.853+03	2021-05-21 04:17:31.86+03	
7bb5407b-433c-68e4-1d01-203ac70f1646	2021-05-21 04:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:17:52.853+03	2021-05-21 04:17:52.862+03	
a8ac9775-c03b-27bc-da0f-c36124399c9f	2021-05-21 04:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:18:13.853+03	2021-05-21 04:18:13.859+03	
e0a6da1b-0c75-d452-c12c-e4a1ec2e9edb	2021-05-21 04:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:18:33.853+03	2021-05-21 04:18:33.858+03	
011c681b-fd55-d7ac-2311-1270cad94e49	2021-05-21 04:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:18:54.852+03	2021-05-21 04:18:54.872+03	
900be907-f16b-3aed-86c7-622113aba60d	2021-05-21 04:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:19:15.853+03	2021-05-21 04:19:15.86+03	
a8c9985e-90bd-b08a-2d00-1e89150188ea	2021-05-21 04:19:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:19:36.852+03	2021-05-21 04:19:36.86+03	
585f1ea3-ca92-db1a-99b6-4c64b7770970	2021-05-21 04:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:19:56.852+03	2021-05-21 04:19:56.859+03	
d8ed1b05-584e-9203-2212-21ba35f1f122	2021-05-21 04:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:20:06.852+03	2021-05-21 04:20:06.858+03	
f896a2fe-b9a3-bc6b-588c-aac5900c52c4	2021-05-21 04:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:20:26.852+03	2021-05-21 04:20:26.859+03	
37a1d4ef-f226-9954-2a00-9a27f5ff2e3a	2021-05-21 04:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:20:46.853+03	2021-05-21 04:20:46.859+03	
73a39753-99ac-2cff-a15a-e2aa26e62e3e	2021-05-21 04:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:21:07.853+03	2021-05-21 04:21:07.859+03	
60e6fde5-8f07-d056-f999-373c412c53a7	2021-05-21 04:21:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:21:28.853+03	2021-05-21 04:21:28.907+03	
cddabb3b-a981-a92b-48d5-1077f55bb551	2021-05-21 04:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:21:49.853+03	2021-05-21 04:21:49.859+03	
1e151570-b75a-6c40-ee04-287d21b8688c	2021-05-21 04:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:22:09.853+03	2021-05-21 04:22:09.86+03	
44e6a9d2-40d1-1e84-1287-29299861cd87	2021-05-21 04:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:22:29.853+03	2021-05-21 04:22:29.862+03	
5718fb42-9f02-a7e3-38dc-c36153bcdb54	2021-05-21 04:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:01:29.853+03	2021-05-21 04:01:29.859+03	
e2c986ab-e1f7-cdb8-7f37-b14efb9a21cd	2021-05-21 04:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:01:50.853+03	2021-05-21 04:01:50.871+03	
047f7b76-14f8-a809-a652-3fd507fe9920	2021-05-21 04:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:02:10.853+03	2021-05-21 04:02:10.861+03	
c0e7934a-bc53-3d0c-0845-566d0385e0b8	2021-05-21 04:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:02:30.853+03	2021-05-21 04:02:30.859+03	
ddea8338-e9d4-aafb-eb9d-9e030426d8ae	2021-05-21 04:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:02:50.853+03	2021-05-21 04:02:50.859+03	
633ba563-ec48-55cd-9710-6f9d524c95d2	2021-05-21 04:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:03:10.853+03	2021-05-21 04:03:10.86+03	
b89b1c22-f0c1-6191-ddbf-a24d134fdc65	2021-05-21 04:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:03:31.853+03	2021-05-21 04:03:31.859+03	
6abe2cfe-03bd-f661-4ccd-71912b69f079	2021-05-21 04:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:03:52.852+03	2021-05-21 04:03:52.859+03	
4780dd53-6108-5cf8-4e00-bae17c5ba9c1	2021-05-21 04:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:04:13.853+03	2021-05-21 04:04:13.863+03	
0be633cf-2be9-f5a7-e1a4-62d60103812a	2021-05-21 04:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:04:34.853+03	2021-05-21 04:04:34.859+03	
31b67261-e251-b6b2-b679-f4291660f843	2021-05-21 04:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:04:54.853+03	2021-05-21 04:04:54.859+03	
2025bf68-58a5-ff9b-4eae-5958b905a4bd	2021-05-21 04:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:05:15.853+03	2021-05-21 04:05:15.859+03	
7728bd9e-f039-37f3-a52d-5603c8e9ebc9	2021-05-21 04:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:05:36.852+03	2021-05-21 04:05:36.859+03	
7fe5c7fd-2834-b85f-0c00-0ac9a5d31465	2021-05-21 04:05:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:05:56.854+03	2021-05-21 04:05:56.86+03	
17980dd6-57ec-6af7-d3a7-8d52b33c9aa2	2021-05-21 04:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:06:17.853+03	2021-05-21 04:06:17.86+03	
0859ec15-89e3-b1b8-6c7f-49c121a5fee6	2021-05-21 04:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:06:37.853+03	2021-05-21 04:06:37.86+03	
fe78c8c3-ca98-dc4b-101c-b46c0b661161	2021-05-21 04:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:06:59.852+03	2021-05-21 04:06:59.858+03	
cc977fe6-c25f-0114-9803-2e7e444da81b	2021-05-21 04:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:07:19.852+03	2021-05-21 04:07:19.858+03	
42333a02-7d44-d445-28c5-3e1bc91c6a4b	2021-05-21 04:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:07:39.853+03	2021-05-21 04:07:39.859+03	
be4022b5-a8fa-defd-39bc-c474d6eb7c4f	2021-05-21 04:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:07:59.853+03	2021-05-21 04:07:59.86+03	
cdd2ddfd-57ea-cbc8-6602-646c3a6a0648	2021-05-21 04:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:08:19.853+03	2021-05-21 04:08:19.866+03	
a01e10a9-eef1-0c27-1801-7c1660a860b7	2021-05-21 04:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:08:40.852+03	2021-05-21 04:08:40.859+03	
0fc70ed4-006e-b337-99b7-2a67f5778701	2021-05-21 04:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:09:00.852+03	2021-05-21 04:09:00.859+03	
4a7f5ea6-6531-fabe-1f72-93310c75280a	2021-05-21 04:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:09:20.853+03	2021-05-21 04:09:20.859+03	
152a1929-c2f7-0004-077b-4cc9397f500b	2021-05-21 04:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:09:30.853+03	2021-05-21 04:09:30.868+03	
ce32fc72-b91a-bbaf-880f-fc2ec1c91ccc	2021-05-21 04:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:09:52.852+03	2021-05-21 04:09:52.86+03	
5d5b7a81-02cb-3ebc-a4e8-7e19ae376382	2021-05-21 04:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:10:02.853+03	2021-05-21 04:10:02.859+03	
64ab1f7f-f956-31b2-a692-cf879d8a361b	2021-05-21 04:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:10:23.852+03	2021-05-21 04:10:23.858+03	
f386bba9-533f-b4ce-a4da-86456964e4c4	2021-05-21 04:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:10:43.853+03	2021-05-21 04:10:43.86+03	
e153b91d-eb4e-d96d-f16b-c002d08f97b6	2021-05-21 04:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:11:03.853+03	2021-05-21 04:11:03.873+03	
3a577d19-98d6-260c-86aa-fdbfde0efa9a	2021-05-21 04:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:11:24.853+03	2021-05-21 04:11:24.873+03	
3e05aa19-0e19-581c-4552-2bdb54efaf46	2021-05-21 04:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:11:44.853+03	2021-05-21 04:11:44.859+03	
338f9a96-eef3-b948-1291-1e8256e9edb6	2021-05-21 04:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:12:05.852+03	2021-05-21 04:12:05.858+03	
1eeb717a-0f76-8836-eefb-380af5a4d62f	2021-05-21 04:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:12:25.853+03	2021-05-21 04:12:25.86+03	
99a4710d-a664-12dc-d578-3f9b760499f8	2021-05-21 04:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:12:35.853+03	2021-05-21 04:12:35.86+03	
eb338dbe-5d0c-0b72-e526-f7320f18c954	2021-05-21 04:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:12:55.853+03	2021-05-21 04:12:55.859+03	
9efc0e0a-a731-b2c9-bff1-2ec3e179be3a	2021-05-21 04:13:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:13:16.852+03	2021-05-21 04:13:16.86+03	
c7fede03-bc5b-eff5-e8f5-8338c4d889f0	2021-05-21 04:13:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:13:36.852+03	2021-05-21 04:13:36.859+03	
5ddb2703-3bf2-9e0c-8883-31f109a7d481	2021-05-21 04:13:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:13:56.852+03	2021-05-21 04:13:56.862+03	
8e6752ba-1c46-511b-8a7e-34b485ddeebf	2021-05-21 04:14:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:14:16.852+03	2021-05-21 04:14:16.859+03	
97ec5b88-f1e6-9176-2da6-36e2a63079f5	2021-05-21 04:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:14:37.852+03	2021-05-21 04:14:37.859+03	
706ba195-688d-04da-47b5-09f6fa58346e	2021-05-21 04:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:14:58.853+03	2021-05-21 04:14:58.86+03	
ab36b254-7214-9d0e-605a-9e6bd06f357d	2021-05-21 04:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:15:19.852+03	2021-05-21 04:15:19.858+03	
dce0187a-c03e-0700-f170-f58b01de121c	2021-05-21 04:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:15:39.852+03	2021-05-21 04:15:39.859+03	
bdb83f65-c661-d612-7eee-d95bf542ff82	2021-05-21 04:15:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:15:59.853+03	2021-05-21 04:15:59.86+03	
c5977b90-0946-0feb-9510-4e8865ace065	2021-05-21 04:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:16:20.853+03	2021-05-21 04:16:20.861+03	
20046432-dd6d-a5ed-9a7d-bc9469a5e7bd	2021-05-21 04:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:16:40.853+03	2021-05-21 04:16:40.859+03	
4b93f2b1-9982-3d04-3f72-5976c0074f84	2021-05-21 04:17:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:17:01.853+03	2021-05-21 04:17:01.859+03	
626b65dc-1e6f-f388-42fd-c9c80eeb6673	2021-05-21 04:17:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:17:21.853+03	2021-05-21 04:17:21.859+03	
e1a9c57d-7a67-c184-727a-5ebf688dbde7	2021-05-21 04:17:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:17:41.854+03	2021-05-21 04:17:41.86+03	
bcedd1b7-6044-491a-8d3a-4eec960ae7b5	2021-05-21 04:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:18:03.853+03	2021-05-21 04:18:03.876+03	
da59f6ec-8afb-42ef-1e25-5dbb125e053d	2021-05-21 04:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:18:23.853+03	2021-05-21 04:18:23.86+03	
6fadafec-a474-cf36-3f5a-36e0157ec1b3	2021-05-21 04:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:18:43.853+03	2021-05-21 04:18:43.869+03	
ee6fab68-98a2-b7e7-6985-011fe3c452fb	2021-05-21 04:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:19:04.853+03	2021-05-21 04:19:04.859+03	
6d089e0d-5b53-77fc-f965-21d5c56aed6f	2021-05-21 04:19:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:19:26.852+03	2021-05-21 04:19:26.859+03	
6b737e1f-933f-e35d-e45a-85cdd2c6805e	2021-05-21 04:19:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:19:46.852+03	2021-05-21 04:19:46.86+03	
bea8cea2-9e20-d631-6d45-1d4d95f69f9b	2021-05-21 04:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 04:20:00.853+03	2021-05-21 04:20:00.858+03	ERROR
97268643-b7d6-4c91-54c5-fe660d63a840	2021-05-21 04:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:20:16.852+03	2021-05-21 04:20:16.859+03	
65ec4627-4938-bc2f-0617-e6425fb420a2	2021-05-21 04:20:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:20:36.852+03	2021-05-21 04:20:36.859+03	
9f0c8de1-3177-0985-c616-35625d65f617	2021-05-21 04:20:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:20:56.854+03	2021-05-21 04:20:56.862+03	
1baa82b4-e381-6a94-4a46-0bb451c157b0	2021-05-21 04:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:21:18.853+03	2021-05-21 04:21:18.862+03	
023d0164-3827-5115-b070-ef937c5d3135	2021-05-21 04:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:21:38.853+03	2021-05-21 04:21:38.86+03	
1f7c2d73-aa1a-0dfe-02d7-d71e3e0bb0a0	2021-05-21 04:21:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:21:59.853+03	2021-05-21 04:21:59.859+03	
4bb70f52-29dd-eeb6-1f74-ad8b7996915d	2021-05-21 04:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:22:19.853+03	2021-05-21 04:22:19.86+03	
dafc1414-4753-b1de-f251-caab9cc107b5	2021-05-21 04:22:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:22:39.853+03	2021-05-21 04:22:39.863+03	
27e2006e-ba89-4201-a2ee-0f89147ea1f5	2021-05-21 04:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:23:00.853+03	2021-05-21 04:23:00.86+03	
919740c2-e3a6-e1eb-a64d-4bf84aadb6a7	2021-05-21 04:23:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:23:21.854+03	2021-05-21 04:23:21.86+03	
325bec23-a41e-c2ff-b636-00ec243674c8	2021-05-21 04:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:23:42.853+03	2021-05-21 04:23:42.859+03	
56727662-74af-0f8a-6a17-f6cf10871655	2021-05-21 04:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:24:02.853+03	2021-05-21 04:24:02.86+03	
d11ddc2b-5985-4df5-97fa-036109b9a391	2021-05-21 04:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:24:22.853+03	2021-05-21 04:24:22.86+03	
b9a5ef1e-3f18-507e-3f3d-0beb88e251f2	2021-05-21 04:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:24:42.853+03	2021-05-21 04:24:42.859+03	
f69e4955-90c1-c0d8-2a8c-92780de3dd17	2021-05-21 04:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:25:04.852+03	2021-05-21 04:25:04.859+03	
c0828253-8492-613b-c193-ecf5749ba7dd	2021-05-21 04:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:25:25.853+03	2021-05-21 04:25:25.862+03	
2c448780-5ec4-5892-1a0d-29ece2bd512c	2021-05-21 04:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:25:46.852+03	2021-05-21 04:25:46.859+03	
6ffda441-9ead-9f86-bb15-534cb039c61a	2021-05-21 04:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:26:07.852+03	2021-05-21 04:26:07.86+03	
402c9bfc-f637-24d7-d36d-ba4920c31590	2021-05-21 04:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:26:27.852+03	2021-05-21 04:26:27.865+03	
8b741331-e8e7-c345-8afb-17031ebbbca0	2021-05-21 04:26:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:26:48.852+03	2021-05-21 04:26:48.862+03	
5f91d444-f023-89e7-846e-c82eaee546ab	2021-05-21 04:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:27:08.853+03	2021-05-21 04:27:08.86+03	
ed048ffb-3dfc-787f-b759-4e0b02dd0112	2021-05-21 04:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:27:28.853+03	2021-05-21 04:27:28.864+03	
d8c07261-6cad-a7ad-3e67-e77449d638c7	2021-05-21 04:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:27:49.853+03	2021-05-21 04:27:49.86+03	
19679be1-67be-fd01-c14c-59d8e3458193	2021-05-21 04:28:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:28:10.852+03	2021-05-21 04:28:10.864+03	
b9679f2e-078d-3d2e-f719-1c8665666627	2021-05-21 04:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:28:30.852+03	2021-05-21 04:28:30.859+03	
8af0a2ec-19bd-715e-417e-4ce3cabd99bf	2021-05-21 04:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:28:50.852+03	2021-05-21 04:28:50.859+03	
f517c5fc-7360-54d2-2f61-cde1f955bef4	2021-05-21 04:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:29:10.853+03	2021-05-21 04:29:10.861+03	
6ba9fba5-c24f-d36e-ab06-d583e6fd21c5	2021-05-21 04:29:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:29:31.853+03	2021-05-21 04:29:31.862+03	
d24d1748-ffba-709f-d463-6e914e6e2eae	2021-05-21 04:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:29:52.853+03	2021-05-21 04:29:52.861+03	
d8061005-9a9b-3319-5fd0-57f4e61c66c7	2021-05-21 04:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:30:02.853+03	2021-05-21 04:30:02.859+03	
e43c2f19-9110-e8f4-e9f9-3c4625b723e2	2021-05-21 04:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:30:24.852+03	2021-05-21 04:30:24.859+03	
125fd7c7-9509-99dc-e301-4fc1366692b7	2021-05-21 04:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:30:44.853+03	2021-05-21 04:30:44.859+03	
478711cf-df5d-cc55-52bb-949943e67bc7	2021-05-21 04:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:31:04.853+03	2021-05-21 04:31:04.86+03	
6f996549-cfe9-8d8e-1915-443ea75afa49	2021-05-21 04:31:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:31:24.853+03	2021-05-21 04:31:24.859+03	
2dc710f3-a2ad-5d5d-bd1d-a360e4fbccd9	2021-05-21 04:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:31:44.853+03	2021-05-21 04:31:44.859+03	
fc07065c-ecaf-1e19-44c0-ed0b94fce1f3	2021-05-21 04:32:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:32:06.854+03	2021-05-21 04:32:06.861+03	
7ef01ebe-2585-4c46-ff91-a5ea1aea95b0	2021-05-21 04:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:32:27.853+03	2021-05-21 04:32:27.859+03	
4c724db9-31c6-6806-8a8c-dd5923e9e7b4	2021-05-21 04:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:32:48.852+03	2021-05-21 04:32:48.859+03	
e1a5a436-c7ee-b2c9-e3ab-1eb3c56c415d	2021-05-21 04:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:33:08.852+03	2021-05-21 04:33:08.859+03	
686bff6d-8504-7d1a-8437-d8ca198df4f8	2021-05-21 04:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:33:28.853+03	2021-05-21 04:33:28.859+03	
0e6aba7d-953a-8304-ce46-81ba641bc959	2021-05-21 04:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:33:50.852+03	2021-05-21 04:33:50.859+03	
20228654-7e9c-6e68-6a3a-cd98e553ae16	2021-05-21 04:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:34:11.853+03	2021-05-21 04:34:11.86+03	
ab74203f-8244-bee4-4d06-ed940d6c1a04	2021-05-21 04:34:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:34:31.853+03	2021-05-21 04:34:31.865+03	
f29dd8f2-60fa-05ba-8dff-b776c924c52e	2021-05-21 04:34:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:34:51.853+03	2021-05-21 04:34:51.859+03	
cc7dd713-8941-a1c9-46ae-1953c065f207	2021-05-21 04:35:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:35:11.853+03	2021-05-21 04:35:11.859+03	
bafcc582-7857-47b7-93fe-f6d4cdf71614	2021-05-21 04:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:35:32.853+03	2021-05-21 04:35:32.859+03	
d8800b25-ab2b-4ab2-c1c0-6737868c3a46	2021-05-21 04:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:35:53.853+03	2021-05-21 04:35:53.859+03	
4096c661-5a06-0f96-a2df-f5235ac15131	2021-05-21 04:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:36:15.853+03	2021-05-21 04:36:15.869+03	
5dfb6a2c-2602-7524-59bb-6b01c03cd19b	2021-05-21 04:36:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:36:36.853+03	2021-05-21 04:36:36.876+03	
1dbe9089-cc06-e3d2-d0a2-aae7adea4049	2021-05-21 04:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:36:57.853+03	2021-05-21 04:36:57.862+03	
99a092fe-4b66-29f6-c7c3-e997c1f29bb6	2021-05-21 04:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:37:18.852+03	2021-05-21 04:37:18.858+03	
6bc98dbe-1382-6740-7cad-9dbf2d50517a	2021-05-21 04:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:37:38.853+03	2021-05-21 04:37:38.863+03	
16e03265-70da-3b98-7147-551010ebe476	2021-05-21 04:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:37:58.853+03	2021-05-21 04:37:58.86+03	
51e2a4b8-1442-f552-c12c-b9e83a93a2f5	2021-05-21 04:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:38:19.852+03	2021-05-21 04:38:19.859+03	
b7ba28a0-e843-c5a3-a6c0-3bf8c447904f	2021-05-21 04:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:38:39.853+03	2021-05-21 04:38:39.86+03	
6579f539-bf93-ed6a-1448-fadd97be95ae	2021-05-21 04:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:39:00.853+03	2021-05-21 04:39:00.859+03	
0dabd7c5-4df9-d6ea-fab3-b0634d6bb1d9	2021-05-21 04:39:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:39:21.854+03	2021-05-21 04:39:21.86+03	
3aedcde9-8ff4-d960-2288-2619d7e5f7d3	2021-05-21 04:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:39:42.852+03	2021-05-21 04:39:42.86+03	
520af1d1-5629-77ea-b0db-4bc29cef4ca9	2021-05-21 04:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:39:52.852+03	2021-05-21 04:39:52.859+03	
09ab9032-915f-1e26-a8a5-b9f0b0486c9b	2021-05-21 04:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:40:02.853+03	2021-05-21 04:40:02.863+03	
110fa275-4e4b-437c-ddd2-23c5112445de	2021-05-21 04:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:40:23.852+03	2021-05-21 04:40:23.858+03	
e150a89b-d8e2-6e8a-e8aa-1cf93b144614	2021-05-21 04:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:40:43.852+03	2021-05-21 04:40:43.858+03	
dcc314ff-4810-d166-0555-e8dac22be473	2021-05-21 04:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:41:03.852+03	2021-05-21 04:41:03.866+03	
088837e2-e11b-761f-a7a8-962f9d4986fa	2021-05-21 04:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:41:23.852+03	2021-05-21 04:41:23.859+03	
ee23b3a3-46db-8094-1111-ed67588a0c1f	2021-05-21 04:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:41:43.853+03	2021-05-21 04:41:43.872+03	
01ed8f9d-2840-c8d1-7e35-ad98930d106f	2021-05-21 04:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:42:04.853+03	2021-05-21 04:42:04.871+03	
8fb9f715-8554-22de-3b17-3e905eb2f5ed	2021-05-21 04:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:42:25.853+03	2021-05-21 04:42:25.859+03	
b9ff3fa5-000f-05e9-68d9-6130d9bdddad	2021-05-21 04:42:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:42:46.854+03	2021-05-21 04:42:46.863+03	
2abafbaa-9f48-bca5-10a7-5d3ea5ba0a9a	2021-05-21 04:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:43:07.853+03	2021-05-21 04:43:07.861+03	
38048cf3-4b5e-afd2-7b64-aacacf53576a	2021-05-21 04:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:22:49.853+03	2021-05-21 04:22:49.859+03	
c1aa0816-104b-0ef4-36cc-d33003339776	2021-05-21 04:23:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:23:11.854+03	2021-05-21 04:23:11.859+03	
09cbef28-e037-06a7-e239-5f58f8a05a06	2021-05-21 04:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:23:32.852+03	2021-05-21 04:23:32.858+03	
d27074f0-5f6b-229a-51c6-2d844f16b4df	2021-05-21 04:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:23:52.853+03	2021-05-21 04:23:52.859+03	
5dd7a39c-fbca-5279-9ea9-cac1d94d2284	2021-05-21 04:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:24:12.853+03	2021-05-21 04:24:12.859+03	
5e8d1521-b540-351b-c7bf-5cd4eb23ea09	2021-05-21 04:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:24:32.853+03	2021-05-21 04:24:32.862+03	
dc15fcae-85a7-e98a-0e73-e751d9c98ac6	2021-05-21 04:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:24:53.853+03	2021-05-21 04:24:53.86+03	
4116171c-6398-5fe4-f352-2bd7e46575da	2021-05-21 04:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:25:14.853+03	2021-05-21 04:25:14.86+03	
b91b2264-d4ee-1235-c6f7-6bade55c092e	2021-05-21 04:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:25:35.853+03	2021-05-21 04:25:35.859+03	
e1e8e3a7-aa87-999d-aefa-91e255bf9a4e	2021-05-21 04:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:25:56.853+03	2021-05-21 04:25:56.86+03	
46362e1c-5b81-cee6-ac53-4ba11a5a5b8d	2021-05-21 04:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:26:17.852+03	2021-05-21 04:26:17.87+03	
f89499df-15fd-e043-445a-ce68324b9c7d	2021-05-21 04:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:26:37.853+03	2021-05-21 04:26:37.859+03	
1cb3c234-d108-33ea-4ab7-3bf786697bbb	2021-05-21 04:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:26:58.853+03	2021-05-21 04:26:58.86+03	
750e3ea9-6526-be01-0b7f-225ce08439c9	2021-05-21 04:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:27:18.853+03	2021-05-21 04:27:18.859+03	
accd853e-5fc0-b468-b4fd-a21d50c08355	2021-05-21 04:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:27:39.853+03	2021-05-21 04:27:39.86+03	
d26a091d-9f2d-0d4d-aac7-7d324bab0ff9	2021-05-21 04:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:27:59.853+03	2021-05-21 04:27:59.861+03	
3817cf02-6362-f3a2-e2ee-47aa7285c3b5	2021-05-21 04:28:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:28:20.852+03	2021-05-21 04:28:20.858+03	
9ec0a601-b73e-c6a8-4fe2-2dabd4136f82	2021-05-21 04:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:28:40.852+03	2021-05-21 04:28:40.859+03	
73c5b108-7c9f-2c55-68b1-06fc7d9872ca	2021-05-21 04:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:29:00.853+03	2021-05-21 04:29:00.86+03	
08deb1b7-1524-907a-2e05-5889cfb2a35d	2021-05-21 04:29:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:29:21.852+03	2021-05-21 04:29:21.859+03	
42f14a37-6ce6-f028-71fc-e46eb2b0d6b8	2021-05-21 04:29:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:29:41.853+03	2021-05-21 04:29:41.862+03	
ca28b12f-21b3-8b1f-e184-491a0d879dff	2021-05-21 04:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 04:30:00.853+03	2021-05-21 04:30:00.857+03	ERROR
1423e0eb-2fc0-7a73-69b3-3dc3e28b242e	2021-05-21 04:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:30:13.853+03	2021-05-21 04:30:13.859+03	
d9c48d47-f12c-8f43-4004-84ba1f98ff8b	2021-05-21 04:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:30:34.853+03	2021-05-21 04:30:34.86+03	
6aeb8839-853b-a89b-1cef-b6f4ba6212ae	2021-05-21 04:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:30:54.853+03	2021-05-21 04:30:54.862+03	
4ddc63dd-9896-3463-d31a-fe14865c6ec1	2021-05-21 04:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:31:14.853+03	2021-05-21 04:31:14.872+03	
7f47532c-57cd-263a-a24f-2c1d9af6ee62	2021-05-21 04:31:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:31:34.853+03	2021-05-21 04:31:34.873+03	
367229f3-2531-4789-809f-decd653934a4	2021-05-21 04:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:31:55.853+03	2021-05-21 04:31:55.862+03	
ccb019f2-2b47-da68-e56d-645f8457bf29	2021-05-21 04:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:32:17.853+03	2021-05-21 04:32:17.859+03	
546ee6c5-a5d4-617b-b316-e85f392a3c9d	2021-05-21 04:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:32:37.853+03	2021-05-21 04:32:37.86+03	
7b56dbea-f683-57b4-0316-7ed335a750bd	2021-05-21 04:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:32:58.852+03	2021-05-21 04:32:58.859+03	
e4440a4e-f4ff-c2ba-6d49-9085203b2898	2021-05-21 04:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:33:18.852+03	2021-05-21 04:33:18.858+03	
070e1d09-48ee-286d-a089-f3f5921b6528	2021-05-21 04:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:33:39.853+03	2021-05-21 04:33:39.869+03	
b535e114-2a27-48f5-7853-bf0470279bb4	2021-05-21 04:34:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:34:00.854+03	2021-05-21 04:34:00.86+03	
5accf4fb-0435-4806-87ff-7b83aa0c4e4f	2021-05-21 04:34:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:34:21.853+03	2021-05-21 04:34:21.871+03	
5601d15a-e351-1084-44c6-434444dd0284	2021-05-21 04:34:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:34:41.853+03	2021-05-21 04:34:41.859+03	
efc654b8-e173-5d4c-ebd9-7a531debd110	2021-05-21 04:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:35:01.853+03	2021-05-21 04:35:01.861+03	
c28ecc32-8cd0-7bcc-36ea-9ca1c32c9deb	2021-05-21 04:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:35:22.852+03	2021-05-21 04:35:22.859+03	
c25a3b41-1a60-4df2-7c14-f332412e4781	2021-05-21 04:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:35:43.853+03	2021-05-21 04:35:43.859+03	
9cc3c5b4-20fd-bc30-83ca-e6a086d209b1	2021-05-21 04:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:36:04.853+03	2021-05-21 04:36:04.859+03	
07ce56aa-4442-0b56-09ab-b0e08eb1223c	2021-05-21 04:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:36:25.853+03	2021-05-21 04:36:25.881+03	
8d8365d3-fe00-fce3-2cf6-fa1788b4fdcb	2021-05-21 04:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:36:47.852+03	2021-05-21 04:36:47.872+03	
f1bc907d-5682-9bb1-7a78-8e79eaad8afd	2021-05-21 04:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:37:08.852+03	2021-05-21 04:37:08.858+03	
ab0e36a8-1269-fdb7-2bc9-b85b30232e45	2021-05-21 04:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:37:28.852+03	2021-05-21 04:37:28.86+03	
36483cd4-9975-f673-e3f0-e7860e3fb390	2021-05-21 04:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:37:48.853+03	2021-05-21 04:37:48.859+03	
d2188371-3051-7432-0fe4-a5f874876e3f	2021-05-21 04:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:38:09.852+03	2021-05-21 04:38:09.86+03	
cf646190-4ca6-959d-4c2b-ae0a6a34aabc	2021-05-21 04:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:38:29.852+03	2021-05-21 04:38:29.86+03	
d7a81c84-71f3-3fd4-7ef8-811452d40ac9	2021-05-21 04:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:38:50.853+03	2021-05-21 04:38:50.858+03	
8f1f555e-771f-b22c-96aa-6d1319f60331	2021-05-21 04:39:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:39:11.852+03	2021-05-21 04:39:11.86+03	
c5d97773-2147-bc40-d7a4-c674899663c8	2021-05-21 04:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:39:32.852+03	2021-05-21 04:39:32.86+03	
92dd8535-1cf3-9a46-0626-0ef247e368e1	2021-05-21 04:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 04:40:00.852+03	2021-05-21 04:40:00.858+03	ERROR
52b056ed-f17b-3e04-aa83-acb969c02b8f	2021-05-21 04:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:40:13.852+03	2021-05-21 04:40:13.858+03	
96637278-c17c-0780-f515-f832a7ab38f6	2021-05-21 04:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:40:33.852+03	2021-05-21 04:40:33.859+03	
3d7bbe61-6489-1787-7c93-36494f229745	2021-05-21 04:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:40:53.852+03	2021-05-21 04:40:53.86+03	
aabfde93-cce3-39f2-ee85-5067a6e89fc4	2021-05-21 04:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:41:13.852+03	2021-05-21 04:41:13.859+03	
37d29ccf-012c-8ef3-1c7a-5183885310ae	2021-05-21 04:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:41:33.852+03	2021-05-21 04:41:33.859+03	
356b388c-6ca8-3793-e73e-b0ab538c24ff	2021-05-21 04:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:41:54.853+03	2021-05-21 04:41:54.872+03	
41b79163-824e-94fc-adca-1353c9a889c4	2021-05-21 04:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:42:15.852+03	2021-05-21 04:42:15.858+03	
ebb926ed-f947-cb08-e3cf-187f377e4acc	2021-05-21 04:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:42:35.853+03	2021-05-21 04:42:35.861+03	
f13e99b5-a087-2b7e-23c1-42a6fee4dc08	2021-05-21 04:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:42:57.853+03	2021-05-21 04:42:57.86+03	
4e6402bd-cbb1-3f32-a6f8-e05dfb713cc5	2021-05-21 04:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:43:17.853+03	2021-05-21 04:43:17.859+03	
02c8977b-91e2-6e1e-cacc-8fdf56f2749f	2021-05-21 04:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:43:37.853+03	2021-05-21 04:43:37.859+03	
edda3f37-906b-3ec9-3910-c601d7c7ad6a	2021-05-21 04:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:43:58.852+03	2021-05-21 04:43:58.86+03	
69f3c4d9-d97b-7719-d136-47782e365b81	2021-05-21 04:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:43:27.853+03	2021-05-21 04:43:27.859+03	
f81b5cb7-33ea-fef6-062d-d5ae064ceeb8	2021-05-21 04:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:43:48.852+03	2021-05-21 04:43:48.86+03	
1396b1b5-bbb1-5685-fa7d-86fc10b4ed6e	2021-05-21 04:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:44:08.852+03	2021-05-21 04:44:08.859+03	
783b9307-83a4-c8e7-50a3-c95ca5731926	2021-05-21 04:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:44:28.853+03	2021-05-21 04:44:28.86+03	
619202b5-a85e-e9e6-7231-cd670fcb6b94	2021-05-21 04:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:44:49.852+03	2021-05-21 04:44:49.859+03	
757f7cd6-87ff-748e-08ff-48c704107df8	2021-05-21 04:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:45:09.852+03	2021-05-21 04:45:09.859+03	
d50989b2-b235-63fc-6ae8-6b5385b90276	2021-05-21 04:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:45:29.852+03	2021-05-21 04:45:29.858+03	
758fd0cd-cfe4-719f-ff8b-df177264a9ea	2021-05-21 04:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:45:49.853+03	2021-05-21 04:45:49.872+03	
ee56b932-86e7-d219-7ad4-8ecb7c4ae5a6	2021-05-21 04:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:46:09.853+03	2021-05-21 04:46:09.859+03	
5b69c3c7-352c-09c2-8fe5-01ba3c050062	2021-05-21 04:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:46:30.852+03	2021-05-21 04:46:30.861+03	
c73681e0-f741-8462-01ce-42a7416eb101	2021-05-21 04:46:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:46:51.852+03	2021-05-21 04:46:51.86+03	
6b415fa0-a8d6-ddf5-3309-2fc5426ee40c	2021-05-21 04:47:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:47:11.853+03	2021-05-21 04:47:11.859+03	
5cade531-684c-237b-4b3b-00888a29f0a9	2021-05-21 04:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:47:32.853+03	2021-05-21 04:47:32.873+03	
3ce3af43-cbe8-f36b-b72f-9c6576014e29	2021-05-21 04:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:47:53.853+03	2021-05-21 04:47:53.859+03	
01b381db-41a6-3778-1438-a03bdec206f1	2021-05-21 04:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:48:14.852+03	2021-05-21 04:48:14.869+03	
28600c41-4ea3-46f5-2d76-0d1a194b2d6a	2021-05-21 04:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:48:34.853+03	2021-05-21 04:48:34.86+03	
24251c25-c194-9d4d-c6ec-7557805dc858	2021-05-21 04:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:48:55.853+03	2021-05-21 04:48:55.859+03	
b9a868a7-d813-e8a8-4d97-d5ae53a81dc9	2021-05-21 04:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:49:15.853+03	2021-05-21 04:49:15.859+03	
77c8c88e-8eae-f090-8234-3876415fcd54	2021-05-21 04:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:49:35.853+03	2021-05-21 04:49:35.862+03	
3f709985-c02c-dc9f-0220-8eac24b217ec	2021-05-21 04:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:49:55.853+03	2021-05-21 04:49:55.859+03	
fde6840e-70ea-36fd-c0ab-ea4bcc5ccfaa	2021-05-21 04:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:50:05.853+03	2021-05-21 04:50:05.859+03	
2601117a-fddd-c42d-9cea-c7405b0d7ec7	2021-05-21 04:50:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:50:26.852+03	2021-05-21 04:50:26.859+03	
84442d43-738a-01ed-b8d4-82f6dd00bfd1	2021-05-21 04:50:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:50:46.854+03	2021-05-21 04:50:46.86+03	
f54ec6dc-c7af-7889-eeb1-f758fdbe2dc0	2021-05-21 04:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:51:07.853+03	2021-05-21 04:51:07.859+03	
7f0b9a8f-74cf-d4ec-84a1-ed970d9eec54	2021-05-21 04:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:51:27.853+03	2021-05-21 04:51:27.859+03	
ced7c41f-5d05-6125-5189-855c619b8361	2021-05-21 04:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:51:47.853+03	2021-05-21 04:51:47.859+03	
8cd405ad-62fe-f77d-79b1-6ba7eba22824	2021-05-21 04:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:52:08.852+03	2021-05-21 04:52:08.858+03	
1df0311a-0bc7-9875-491b-84befebf234e	2021-05-21 04:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:52:29.852+03	2021-05-21 04:52:29.858+03	
39a24000-2a76-1990-ed20-2350ece73bbe	2021-05-21 04:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:52:49.853+03	2021-05-21 04:52:49.86+03	
b3c5f13c-448e-0151-bad9-200830239599	2021-05-21 04:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:53:10.853+03	2021-05-21 04:53:10.859+03	
a55844a2-50df-2948-1a76-2508117bca7e	2021-05-21 04:53:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:53:31.853+03	2021-05-21 04:53:31.86+03	
61c7b192-9e77-13a3-d3a9-40991ceb3a6d	2021-05-21 04:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:53:52.853+03	2021-05-21 04:53:52.86+03	
342ed644-616c-3d3c-845b-a50011d9356c	2021-05-21 04:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:54:13.852+03	2021-05-21 04:54:13.862+03	
5bd3098f-c99c-3fd6-db18-4d9e1003ec8b	2021-05-21 04:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:54:33.853+03	2021-05-21 04:54:33.861+03	
e0db2c3e-abb8-15c9-2459-ec7824cd157d	2021-05-21 04:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:54:53.853+03	2021-05-21 04:54:53.859+03	
d7924137-9f11-61ef-ae1b-0f61ff9a1b11	2021-05-21 04:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:55:14.853+03	2021-05-21 04:55:14.874+03	
f06ff1bf-9c68-c95d-f2b7-79befb058f34	2021-05-21 04:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:55:35.853+03	2021-05-21 04:55:35.861+03	
512779bf-c59e-40cc-418a-161192b1ff52	2021-05-21 04:55:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:55:56.854+03	2021-05-21 04:55:56.861+03	
d74212a7-1953-e753-c2f8-2339e9102d3e	2021-05-21 04:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:56:18.852+03	2021-05-21 04:56:18.867+03	
0be2fcd4-a2c0-c243-66ee-8f2c7647aaf0	2021-05-21 04:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:56:39.853+03	2021-05-21 04:56:39.861+03	
2a11f8af-d184-1908-0de8-104254a22eb9	2021-05-21 04:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:56:59.853+03	2021-05-21 04:56:59.863+03	
06b4b01f-8d5f-d66f-7862-df1ba5a22502	2021-05-21 04:57:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:57:19.853+03	2021-05-21 04:57:19.86+03	
b05c71d1-486f-8053-66a8-fe56212e12b1	2021-05-21 04:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:57:40.852+03	2021-05-21 04:57:40.859+03	
de98ccdb-20bc-7d90-e170-41bee969a935	2021-05-21 04:58:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:58:01.852+03	2021-05-21 04:58:01.862+03	
66eb8547-c661-a8f4-a6a0-910a63ad44b9	2021-05-21 04:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:58:22.852+03	2021-05-21 04:58:22.858+03	
18ccabce-468b-3001-dbce-418e5822a6df	2021-05-21 04:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:58:42.852+03	2021-05-21 04:58:42.86+03	
e15ef12c-0444-9f32-3b1b-9613145fb0a9	2021-05-21 04:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:59:02.852+03	2021-05-21 04:59:02.859+03	
390695c8-15c3-fd3b-b00c-7e47a7098f98	2021-05-21 04:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:59:22.852+03	2021-05-21 04:59:22.859+03	
5850ad6e-5c8c-e67a-f44a-bd42e188fffd	2021-05-21 04:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:59:42.852+03	2021-05-21 04:59:42.859+03	
a8e18501-4580-ceab-3985-58eb3e5fdafe	2021-05-21 05:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 05:00:00.853+03	2021-05-21 05:00:00.858+03	ERROR
06613310-636d-9e74-fcd7-037a84f4aac1	2021-05-21 05:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:00:12.853+03	2021-05-21 05:00:12.86+03	
d0320863-52f6-144c-e4d1-1c464c81015a	2021-05-21 05:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:00:32.853+03	2021-05-21 05:00:32.865+03	
e2c54b23-8ca7-7d57-9703-505da3c5c04f	2021-05-21 05:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:00:53.852+03	2021-05-21 05:00:53.858+03	
ab70ed46-3907-ef00-652b-b231d73e0ef5	2021-05-21 05:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:01:13.853+03	2021-05-21 05:01:13.859+03	
221ae89f-27f2-8d20-afb9-63fb8dab28ed	2021-05-21 05:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:01:34.853+03	2021-05-21 05:01:34.86+03	
3c6a4273-db72-5e05-512d-1ff6191fe137	2021-05-21 05:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:01:54.853+03	2021-05-21 05:01:54.863+03	
25d823e6-9574-78fc-8329-c75ffe4fb0ff	2021-05-21 05:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:02:14.853+03	2021-05-21 05:02:14.861+03	
5adcb639-f14b-43e8-dea4-cf1884f2b9d6	2021-05-21 05:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:02:35.853+03	2021-05-21 05:02:35.859+03	
316938e5-cb2a-3db2-ab48-fad1f6e8c70e	2021-05-21 05:02:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:02:56.852+03	2021-05-21 05:02:56.858+03	
0602186c-4f05-7270-4561-62366bc5985f	2021-05-21 05:03:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:03:16.854+03	2021-05-21 05:03:16.861+03	
4869080e-bb61-d7a1-bf3d-b4210703819a	2021-05-21 05:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:03:37.853+03	2021-05-21 05:03:37.861+03	
908026be-797d-fba7-23df-d40153f3c35c	2021-05-21 05:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:03:57.853+03	2021-05-21 05:03:57.859+03	
47fbd989-c878-548f-f003-59633c017880	2021-05-21 05:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:04:18.852+03	2021-05-21 05:04:18.858+03	
073b0dfd-48b0-dae5-8e31-4a31df264cdf	2021-05-21 04:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:44:18.853+03	2021-05-21 04:44:18.859+03	
37a570f0-cb24-a946-d52e-d964c010e7aa	2021-05-21 04:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:44:38.853+03	2021-05-21 04:44:38.859+03	
ba5beef0-9785-3eb2-4856-8567f108feaa	2021-05-21 04:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:44:59.852+03	2021-05-21 04:44:59.861+03	
3ef4ca4a-38b5-e147-387d-b8b6af94384f	2021-05-21 04:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:45:19.852+03	2021-05-21 04:45:19.858+03	
58b32592-245c-3cf6-1968-a69f7a01006d	2021-05-21 04:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:45:39.852+03	2021-05-21 04:45:39.86+03	
15a1dc6f-ea97-043a-53e3-9fbc1c1758a2	2021-05-21 04:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:45:59.853+03	2021-05-21 04:45:59.859+03	
b43f7d00-5ab2-8595-db54-cfbfd0df634e	2021-05-21 04:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:46:19.853+03	2021-05-21 04:46:19.859+03	
3738417e-9b60-68d7-a0c4-eee9ef2d223b	2021-05-21 04:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:46:40.853+03	2021-05-21 04:46:40.86+03	
35e5c718-f291-5049-56d5-6ba4c82c8a8f	2021-05-21 04:47:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:47:01.853+03	2021-05-21 04:47:01.884+03	
6e4753d7-60b3-73ca-632d-fe494db1fd55	2021-05-21 04:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:47:22.852+03	2021-05-21 04:47:22.859+03	
6ea3157a-3c74-8ee2-ce91-28f6049f65c0	2021-05-21 04:47:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:47:43.852+03	2021-05-21 04:47:43.859+03	
6539b21d-eb4f-7f4c-f960-02dd1908b41c	2021-05-21 04:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:48:04.852+03	2021-05-21 04:48:04.861+03	
ef8c7e5b-2686-c212-330d-ff3e58faa31d	2021-05-21 04:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:48:24.852+03	2021-05-21 04:48:24.859+03	
45b54efc-a291-ab8a-ea80-b950ad7c0d4d	2021-05-21 04:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:48:45.852+03	2021-05-21 04:48:45.859+03	
96ae5f1f-faa4-317b-9322-dbac9a1c6583	2021-05-21 04:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:49:05.853+03	2021-05-21 04:49:05.858+03	
ae95ef4f-bcf9-8e35-ee8c-99e2cee7ec51	2021-05-21 04:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:49:25.853+03	2021-05-21 04:49:25.86+03	
a3bdceb4-2dec-74e0-efb3-0e5e2a39708b	2021-05-21 04:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:49:45.853+03	2021-05-21 04:49:45.86+03	
99aee3d7-4a02-45d4-4e01-d1b5fd9b4c10	2021-05-21 04:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 04:50:00.852+03	2021-05-21 04:50:00.857+03	ERROR
a86f22ad-ae58-f388-33a3-ab9b3a9c789c	2021-05-21 04:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:50:15.853+03	2021-05-21 04:50:15.872+03	
302bdd37-2034-59ce-a017-b440ab6d0ef3	2021-05-21 04:50:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:50:36.852+03	2021-05-21 04:50:36.869+03	
26326036-f32e-8787-4a8e-b6e4cdabeb05	2021-05-21 04:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:50:57.853+03	2021-05-21 04:50:57.859+03	
3cd9fefe-aa51-ab11-5153-bdae6eec8ce1	2021-05-21 04:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:51:17.853+03	2021-05-21 04:51:17.859+03	
804c1a91-75f9-9316-f720-1558fc88a767	2021-05-21 04:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:51:37.853+03	2021-05-21 04:51:37.871+03	
6e440535-bbb5-8431-14c9-c6f243ee6dac	2021-05-21 04:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:51:58.852+03	2021-05-21 04:51:58.859+03	
77f84125-d9c5-ac82-8a35-c618bf0cab26	2021-05-21 04:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:52:18.853+03	2021-05-21 04:52:18.858+03	
7ae70b13-9bb4-d9fd-5fea-a53a63a9a654	2021-05-21 04:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:52:39.853+03	2021-05-21 04:52:39.859+03	
b2ac9b18-7697-80e4-93c6-38351ba73ef6	2021-05-21 04:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:53:00.853+03	2021-05-21 04:53:00.875+03	
7a6ae3a8-611f-a2af-d3dc-44f86a5464fa	2021-05-21 04:53:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:53:21.852+03	2021-05-21 04:53:21.858+03	
7732f919-a4cc-0b53-ed24-6abb0f150ce8	2021-05-21 04:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:53:42.852+03	2021-05-21 04:53:42.864+03	
4ba08f5c-f328-e4db-b22f-2cad092d6abf	2021-05-21 04:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:54:02.853+03	2021-05-21 04:54:02.859+03	
726916d8-bfb2-5fd0-d050-732ab6e0fbb8	2021-05-21 04:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:54:23.852+03	2021-05-21 04:54:23.859+03	
fb9169c4-93f9-d55e-eb2e-0ba073e1fbc4	2021-05-21 04:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:54:43.853+03	2021-05-21 04:54:43.859+03	
2404ed6f-d12f-ca1a-a8d0-acc3eff6a2ef	2021-05-21 04:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:55:04.852+03	2021-05-21 04:55:04.866+03	
293fe17c-9576-b56e-e143-d7a99611196e	2021-05-21 04:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:55:25.852+03	2021-05-21 04:55:25.858+03	
afe1d719-f370-dd81-0cbd-040e91378108	2021-05-21 04:55:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:55:45.854+03	2021-05-21 04:55:45.861+03	
8b634a9f-437f-fa07-37fd-7374250a8b52	2021-05-21 04:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:56:07.853+03	2021-05-21 04:56:07.859+03	
8cd10cb1-f616-6bd4-a632-981c0da523e9	2021-05-21 04:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:56:28.853+03	2021-05-21 04:56:28.858+03	
8150542d-0f5a-e551-6b46-b8734384234a	2021-05-21 04:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:56:49.853+03	2021-05-21 04:56:49.86+03	
b88e27a0-c849-dfa0-4a31-00bdd5615aa6	2021-05-21 04:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:57:09.853+03	2021-05-21 04:57:09.861+03	
ba35ad1d-5498-72bc-2c02-8eb86de52055	2021-05-21 04:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:57:30.852+03	2021-05-21 04:57:30.859+03	
6c566e96-360a-a5ff-47c1-e47a89753fc4	2021-05-21 04:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:57:50.853+03	2021-05-21 04:57:50.861+03	
f4c86106-4f5d-ce3b-acde-f365c4013651	2021-05-21 04:58:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:58:11.853+03	2021-05-21 04:58:11.86+03	
0c466990-16d8-fd09-7faa-7692571881fb	2021-05-21 04:58:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:58:32.852+03	2021-05-21 04:58:32.858+03	
9012ded9-fcd7-2e96-459d-a593da0377a8	2021-05-21 04:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:58:52.852+03	2021-05-21 04:58:52.859+03	
0ebf4170-352b-a908-1734-ac3fc83fe9b5	2021-05-21 04:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:59:12.852+03	2021-05-21 04:59:12.858+03	
a1a52e74-0764-0ca2-093b-a9811a41c44c	2021-05-21 04:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:59:32.852+03	2021-05-21 04:59:32.859+03	
c4aaede5-f7c6-a8a8-599e-1fe38c0df58f	2021-05-21 04:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 04:59:52.853+03	2021-05-21 04:59:52.866+03	
86938845-56fb-82b1-7b71-83c7fa091eb4	2021-05-21 05:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:00:02.853+03	2021-05-21 05:00:02.867+03	
fd69fbff-e2cc-decf-e182-3de5963373a8	2021-05-21 05:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:00:22.853+03	2021-05-21 05:00:22.872+03	
0a021cda-e5ca-6612-9155-2d8cde4369c6	2021-05-21 05:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:00:43.852+03	2021-05-21 05:00:43.872+03	
be052f9b-9c25-cb30-7f99-04b986835ec7	2021-05-21 05:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:01:03.853+03	2021-05-21 05:01:03.859+03	
068c8bc6-c99f-279a-8083-68c317964582	2021-05-21 05:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:01:24.852+03	2021-05-21 05:01:24.862+03	
8898f04d-527b-2ff8-5f25-b55b57c3f38d	2021-05-21 05:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:01:44.853+03	2021-05-21 05:01:44.86+03	
ab460720-dfa3-d0ba-d2ce-7a9def7da8bc	2021-05-21 05:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:02:04.853+03	2021-05-21 05:02:04.868+03	
7375aa80-fd66-62b8-7b7e-f131fa721304	2021-05-21 05:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:02:24.853+03	2021-05-21 05:02:24.86+03	
34a1503d-be85-e01b-be22-de364a080b90	2021-05-21 05:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:02:45.853+03	2021-05-21 05:02:45.859+03	
d351744e-1c62-b7b7-65d1-309316adc85f	2021-05-21 05:03:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:03:06.853+03	2021-05-21 05:03:06.861+03	
8899a3f3-bc32-27c9-a273-f29206f716e4	2021-05-21 05:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:03:27.852+03	2021-05-21 05:03:27.859+03	
356257f4-db36-c6d3-9be6-c85d1cb06a5f	2021-05-21 05:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:03:47.853+03	2021-05-21 05:03:47.862+03	
09554990-2fb2-cdf7-652c-c3bf2be6e5db	2021-05-21 05:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:04:07.853+03	2021-05-21 05:04:07.861+03	
a22a0200-0af5-73de-b996-27885d342fb0	2021-05-21 05:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:04:28.852+03	2021-05-21 05:04:28.859+03	
8e652b06-2e86-079a-db6d-a66778267c5d	2021-05-21 05:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:04:48.853+03	2021-05-21 05:04:48.859+03	
d27ec8fa-7e19-b572-2069-a16bc1764afc	2021-05-21 05:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:05:09.852+03	2021-05-21 05:05:09.861+03	
ddf3d727-1238-3528-d563-3cea26319ea1	2021-05-21 05:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:04:38.852+03	2021-05-21 05:04:38.86+03	
1dce7a8d-dbea-50b1-130f-9c3a75193969	2021-05-21 05:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:04:59.852+03	2021-05-21 05:04:59.859+03	
2d38d7a9-4667-9c6d-f94f-460ebdbc978e	2021-05-21 05:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:05:19.852+03	2021-05-21 05:05:19.859+03	
717ac50f-3f04-45e7-a96f-2a27f5911211	2021-05-21 05:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:05:39.853+03	2021-05-21 05:05:39.875+03	
0430dba3-e1a2-49d5-0057-a1dfc276bf58	2021-05-21 05:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:05:59.853+03	2021-05-21 05:05:59.865+03	
d3d4bb84-12a0-9298-9402-efd5ba56a175	2021-05-21 05:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:06:19.853+03	2021-05-21 05:06:19.86+03	
6365e2e1-f626-c6ce-52a3-e1530350825b	2021-05-21 05:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:06:39.853+03	2021-05-21 05:06:39.86+03	
12f7e13f-65fe-0f9e-af81-36e78feae79b	2021-05-21 05:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:06:59.853+03	2021-05-21 05:06:59.86+03	
2fb75c0e-48f6-7831-5644-39938e3da589	2021-05-21 05:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:07:19.853+03	2021-05-21 05:07:19.86+03	
f76244d6-cd81-159b-9d40-40f6bab8459b	2021-05-21 05:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:07:39.853+03	2021-05-21 05:07:39.866+03	
e32a16d3-421b-ce26-ad00-85b249fec076	2021-05-21 05:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:08:00.852+03	2021-05-21 05:08:00.859+03	
6a89b506-70f4-1ad6-c730-6b8d9dee2b20	2021-05-21 05:08:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:08:21.852+03	2021-05-21 05:08:21.861+03	
a9e3a82b-f5b2-6112-bf2e-b1de836028c3	2021-05-21 05:08:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:08:41.853+03	2021-05-21 05:08:41.86+03	
55753878-49ee-cd44-6170-6ec2d4371ce9	2021-05-21 05:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:09:02.852+03	2021-05-21 05:09:02.859+03	
129c88d5-54bc-8c6d-60b9-cafcf9b71d96	2021-05-21 05:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:09:22.852+03	2021-05-21 05:09:22.859+03	
d3bb0f5b-66c1-2f54-50f2-c5db9efc772d	2021-05-21 05:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:09:42.853+03	2021-05-21 05:09:42.859+03	
73d78772-9955-f4df-3e53-92929888440d	2021-05-21 05:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:09:53.852+03	2021-05-21 05:09:53.859+03	
32b82118-71bb-150e-a1b4-8fd0ae1c26e2	2021-05-21 05:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:10:03.852+03	2021-05-21 05:10:03.859+03	
86c2abe2-7362-d406-6280-305bc3fb1bf6	2021-05-21 05:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:10:23.853+03	2021-05-21 05:10:23.86+03	
6ece4d21-28c1-28b2-9b61-5cc4342eae7d	2021-05-21 05:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:10:45.853+03	2021-05-21 05:10:45.86+03	
48f4617a-92a9-9b9b-8f2f-d4678e8342f1	2021-05-21 05:11:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:11:06.852+03	2021-05-21 05:11:06.861+03	
4fc7dd50-4ec0-5c79-c1c7-b9545f7e6f70	2021-05-21 05:11:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:11:26.852+03	2021-05-21 05:11:26.86+03	
e4005f80-fa12-7c5c-90fb-7d99875cfc3c	2021-05-21 05:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:11:47.853+03	2021-05-21 05:11:47.86+03	
d226e3e6-57d4-8e30-30e0-c7b48d366ac3	2021-05-21 05:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:12:07.853+03	2021-05-21 05:12:07.862+03	
e8218436-f877-17c6-600d-3d6a954744c0	2021-05-21 05:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:12:28.852+03	2021-05-21 05:12:28.86+03	
10344724-3487-ea20-1878-b62d4cc14b8b	2021-05-21 05:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:12:48.852+03	2021-05-21 05:12:48.859+03	
b420d180-60a7-5388-f0cc-fda4222c16b9	2021-05-21 05:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:13:08.853+03	2021-05-21 05:13:08.86+03	
ffc270ed-a8a9-73d2-eabd-cfa8451cb4a5	2021-05-21 05:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:13:28.853+03	2021-05-21 05:13:28.86+03	
7523149c-358d-6d2a-bc47-6587611730ea	2021-05-21 05:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:13:49.852+03	2021-05-21 05:13:49.86+03	
ce0419b9-63cb-3845-ef92-6ed1bdb83458	2021-05-21 05:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:14:09.853+03	2021-05-21 05:14:09.861+03	
f92bedd2-8a80-115a-5270-d204c61b1a6f	2021-05-21 05:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:14:30.852+03	2021-05-21 05:14:30.858+03	
9d6d35f1-aea1-b73e-8e8f-35fa096932f9	2021-05-21 05:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:14:50.852+03	2021-05-21 05:14:50.859+03	
6c915d83-3f18-40e9-3ee2-abf485e7d3fa	2021-05-21 05:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:15:10.852+03	2021-05-21 05:15:10.86+03	
5b6530a3-36ba-9ad9-da2d-6823c92187b3	2021-05-21 05:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:15:30.853+03	2021-05-21 05:15:30.86+03	
25305841-d052-7dc7-1ba4-f41a4b79e9c5	2021-05-21 05:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:15:50.853+03	2021-05-21 05:15:50.86+03	
69785020-1afd-7522-8966-875a56129fcc	2021-05-21 05:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:16:10.853+03	2021-05-21 05:16:10.86+03	
eeff2e3a-d6b5-5086-c2d2-9a3a347b5e5f	2021-05-21 05:16:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:16:31.854+03	2021-05-21 05:16:31.86+03	
6e355e15-796e-bb9e-48d2-9d73c823f5e4	2021-05-21 05:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:16:52.853+03	2021-05-21 05:16:52.861+03	
15456759-dd28-0f81-40dc-cfc469177221	2021-05-21 05:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:17:12.853+03	2021-05-21 05:17:12.859+03	
eeaccddb-ef2c-ab81-fc13-63ad2b167831	2021-05-21 05:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:17:33.852+03	2021-05-21 05:17:33.858+03	
eb45332c-08df-59a1-7dbe-3056392edcd1	2021-05-21 05:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:17:53.852+03	2021-05-21 05:17:53.858+03	
f66b40c2-b63c-1ab2-94c5-5f7056567db0	2021-05-21 05:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:18:13.853+03	2021-05-21 05:18:13.867+03	
3b96f6c8-7865-721b-3f6f-6e3e9424904e	2021-05-21 05:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:18:34.852+03	2021-05-21 05:18:34.862+03	
e9cd9b33-32b3-47c8-2be6-10bfedd7ccef	2021-05-21 05:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:18:54.852+03	2021-05-21 05:18:54.859+03	
163626ca-c4d5-6598-9d06-f3c3f69c43b5	2021-05-21 05:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:19:14.853+03	2021-05-21 05:19:14.859+03	
566bde60-3930-11e2-c961-7e6355c7e2de	2021-05-21 05:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:19:34.853+03	2021-05-21 05:19:34.861+03	
84ade748-5a66-ec38-119e-b750c0841d5a	2021-05-21 05:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:19:55.852+03	2021-05-21 05:19:55.858+03	
2ee8ed7e-447a-1122-a97e-868eb9fee0ef	2021-05-21 05:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:20:05.852+03	2021-05-21 05:20:05.86+03	
855b93e8-9d35-c153-b5f1-92d66cffc651	2021-05-21 05:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:20:25.853+03	2021-05-21 05:20:25.859+03	
df019571-04dd-f7fc-69fb-96351ccce65b	2021-05-21 05:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:20:45.853+03	2021-05-21 05:20:45.86+03	
57cfdfb1-3b10-609f-2621-b333dbb7043e	2021-05-21 05:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:21:06.853+03	2021-05-21 05:21:06.859+03	
3936b9d3-9bff-81f7-a65e-a675ceaaffe0	2021-05-21 05:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:21:27.852+03	2021-05-21 05:21:27.858+03	
51b4b3dd-3738-5387-a67a-9503ccbff9c7	2021-05-21 05:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:21:47.852+03	2021-05-21 05:21:47.859+03	
54937b62-5b8c-c4e3-4b7d-16a86775ca7d	2021-05-21 05:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:22:07.853+03	2021-05-21 05:22:07.859+03	
60e6c561-7174-9d4d-5624-7a85b70a797b	2021-05-21 05:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:22:27.853+03	2021-05-21 05:22:27.867+03	
d7233f13-ed0f-d18c-3712-de4722393fed	2021-05-21 05:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:22:49.853+03	2021-05-21 05:22:49.859+03	
000c3a96-a6c8-771f-0709-a73b0aa13027	2021-05-21 05:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:23:10.853+03	2021-05-21 05:23:10.86+03	
79ff3815-b32d-d6d3-8ff4-29ef70d86c58	2021-05-21 05:23:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:23:31.854+03	2021-05-21 05:23:31.865+03	
0e11eea5-470d-ae90-1f32-d7149b47c8f6	2021-05-21 05:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:23:52.853+03	2021-05-21 05:23:52.86+03	
e755e442-4104-80ca-1939-a60d66db225c	2021-05-21 05:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:24:13.852+03	2021-05-21 05:24:13.86+03	
13c0a0e8-6c10-c9a9-ee19-af626ec19d93	2021-05-21 05:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:24:33.852+03	2021-05-21 05:24:33.863+03	
8eb5f249-94c6-c51a-e041-0f984177d7c7	2021-05-21 05:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:24:54.853+03	2021-05-21 05:24:54.861+03	
26ecd580-f4fd-8572-f229-c4d0f644347a	2021-05-21 05:25:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:25:16.853+03	2021-05-21 05:25:16.861+03	
5bdf3b28-809d-5d26-6269-9c2ef478671d	2021-05-21 05:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:05:29.853+03	2021-05-21 05:05:29.86+03	
49d97cff-bb4e-8868-3b60-d4d2fbe4ec43	2021-05-21 05:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:05:49.853+03	2021-05-21 05:05:49.859+03	
91c5f863-9874-e196-c8e4-73458a65aab2	2021-05-21 05:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:06:09.853+03	2021-05-21 05:06:09.86+03	
7c53bebb-1ebc-5f7b-7aa2-41492cd154d0	2021-05-21 05:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:06:29.853+03	2021-05-21 05:06:29.862+03	
f4abc21b-da92-e15d-90d2-703dc8ff5d1d	2021-05-21 05:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:06:49.853+03	2021-05-21 05:06:49.859+03	
fc2df586-b9a9-916b-aafb-d2773d9beceb	2021-05-21 05:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:07:09.853+03	2021-05-21 05:07:09.859+03	
806ce7e5-3818-7467-69b2-73f7009ec0ba	2021-05-21 05:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:07:29.853+03	2021-05-21 05:07:29.9+03	
7e096f7c-54c5-4f03-5482-6265e2f26174	2021-05-21 05:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:07:49.853+03	2021-05-21 05:07:49.865+03	
3bb4b388-700c-6c3a-9e98-df6ae83fb4fa	2021-05-21 05:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:08:10.853+03	2021-05-21 05:08:10.86+03	
6d8666c5-db96-a304-5a9d-3caf8a85ae71	2021-05-21 05:08:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:08:31.853+03	2021-05-21 05:08:31.86+03	
44d4c4c3-5055-00cb-fcf8-a8ec9c110d17	2021-05-21 05:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:08:52.852+03	2021-05-21 05:08:52.859+03	
29271a2a-72af-9108-ff8b-3cd43c7ff586	2021-05-21 05:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:09:12.852+03	2021-05-21 05:09:12.859+03	
18517fc0-0318-d2f5-7b0f-a6d5a13b421f	2021-05-21 05:09:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:09:32.852+03	2021-05-21 05:09:32.859+03	
ef0afdee-2c5c-b24d-c040-5b2c8e92714e	2021-05-21 05:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 05:10:00.852+03	2021-05-21 05:10:00.857+03	ERROR
ea3d9364-7397-cf2a-0945-50fae3d3cfd8	2021-05-21 05:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:10:13.853+03	2021-05-21 05:10:13.86+03	
7751c93c-7763-0dec-a783-0aebd574e77c	2021-05-21 05:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:10:34.853+03	2021-05-21 05:10:34.872+03	
648633dc-18ab-07a2-e821-6fe152c827ac	2021-05-21 05:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:10:55.853+03	2021-05-21 05:10:55.859+03	
228215bd-52b8-65ee-1d9c-f3c35d4a46d1	2021-05-21 05:11:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:11:16.852+03	2021-05-21 05:11:16.862+03	
7bd7a524-cbfc-4f8a-4f89-5876b9ed3145	2021-05-21 05:11:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:11:36.854+03	2021-05-21 05:11:36.86+03	
a8e3423e-1e4d-683c-5cee-63618ba5efce	2021-05-21 05:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:11:57.853+03	2021-05-21 05:11:57.867+03	
952786f9-f742-d39d-f8eb-3f5dbf971390	2021-05-21 05:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:12:18.852+03	2021-05-21 05:12:18.859+03	
8b4087fa-63b9-5cf8-2049-21961bc251c2	2021-05-21 05:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:12:38.852+03	2021-05-21 05:12:38.859+03	
3a333008-6f51-c6ec-bfb7-2cdb3827048f	2021-05-21 05:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:12:58.853+03	2021-05-21 05:12:58.86+03	
1e2df6a4-57f7-e562-3541-761be5de2f55	2021-05-21 05:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:13:18.853+03	2021-05-21 05:13:18.859+03	
7b79fdbe-d373-104f-0816-587d77ab47ab	2021-05-21 05:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:13:38.853+03	2021-05-21 05:13:38.859+03	
16f4f633-7327-10df-c92f-df9de624d9bb	2021-05-21 05:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:13:59.853+03	2021-05-21 05:13:59.859+03	
8558f15e-13f1-7745-b2ff-3b6f3833e9e3	2021-05-21 05:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:14:20.852+03	2021-05-21 05:14:20.858+03	
0cc24ca0-91de-572c-c76f-9a9d0c0c424c	2021-05-21 05:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:14:40.852+03	2021-05-21 05:14:40.86+03	
e07b6b26-0972-6b2b-02cf-c75a9563a22f	2021-05-21 05:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:15:00.852+03	2021-05-21 05:15:00.861+03	
6c56f522-afc3-57a4-7584-bd9ed9a5e2c1	2021-05-21 05:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:15:20.853+03	2021-05-21 05:15:20.86+03	
b470a638-e468-40ad-bb2b-a88355e2fa35	2021-05-21 05:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:15:40.853+03	2021-05-21 05:15:40.863+03	
0710d3d2-603e-cc2d-6c83-2f3109e756f9	2021-05-21 05:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:16:00.853+03	2021-05-21 05:16:00.862+03	
7564d502-29ab-d9aa-196e-ca51af8a4858	2021-05-21 05:16:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:16:21.852+03	2021-05-21 05:16:21.859+03	
53177348-12f0-3cc3-1e1e-5e9d6b701a1e	2021-05-21 05:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:16:42.852+03	2021-05-21 05:16:42.859+03	
f6c0c18a-4163-87b9-d5f1-09784bc1178d	2021-05-21 05:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:17:02.853+03	2021-05-21 05:17:02.859+03	
bd4d97b7-3d39-7bd4-6647-ec618458c758	2021-05-21 05:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:17:22.853+03	2021-05-21 05:17:22.859+03	
9c4537a8-eb6c-c709-1a82-c321c3cc31f7	2021-05-21 05:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:17:43.852+03	2021-05-21 05:17:43.861+03	
6cc1d743-75c7-d1f1-ea89-faaf443a2b74	2021-05-21 05:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:18:03.852+03	2021-05-21 05:18:03.87+03	
5f3e07eb-8f03-5329-4f3b-acba1da009f9	2021-05-21 05:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:18:24.852+03	2021-05-21 05:18:24.86+03	
9841fe0c-8f62-c25b-f633-1cf635117893	2021-05-21 05:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:18:44.852+03	2021-05-21 05:18:44.862+03	
a1783025-515a-92df-354b-8fdac26aa084	2021-05-21 05:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:19:04.852+03	2021-05-21 05:19:04.859+03	
4e52c685-dd36-d3d0-c328-44f9a35ba646	2021-05-21 05:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:19:24.853+03	2021-05-21 05:19:24.861+03	
25e41844-5a41-c406-5205-7dcbde5f5f95	2021-05-21 05:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:19:45.852+03	2021-05-21 05:19:45.859+03	
ed49292b-1b4f-d4fd-f8fc-47f6f1abcbe0	2021-05-21 05:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 05:20:00.852+03	2021-05-21 05:20:00.858+03	ERROR
326f4d6a-ea6d-f9bf-29e2-b46053e8875f	2021-05-21 05:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:20:15.852+03	2021-05-21 05:20:15.884+03	
165a4ef9-a84b-c857-1045-68efc174668e	2021-05-21 05:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:20:35.853+03	2021-05-21 05:20:35.86+03	
357f20b2-49bd-83a6-e80f-326b24c1c389	2021-05-21 05:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:20:56.853+03	2021-05-21 05:20:56.864+03	
857b4c10-fa84-d174-fd20-24a18c89c0ef	2021-05-21 05:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:21:17.852+03	2021-05-21 05:21:17.861+03	
23c7335d-8863-0dfc-13b8-c0d3bec2e18f	2021-05-21 05:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:21:37.852+03	2021-05-21 05:21:37.859+03	
aac28ca4-4dbc-8870-5b29-522954d8000f	2021-05-21 05:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:21:57.853+03	2021-05-21 05:21:57.859+03	
31403ce5-19f7-15f8-5f35-702d4a6ff94d	2021-05-21 05:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:22:17.853+03	2021-05-21 05:22:17.86+03	
4566c692-b634-cb94-e8a9-030825562251	2021-05-21 05:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:22:38.853+03	2021-05-21 05:22:38.871+03	
20557fa8-e9c3-3b79-ca57-1db5ac6e390a	2021-05-21 05:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:23:00.852+03	2021-05-21 05:23:00.86+03	
7e9606fe-4029-cf1f-3db0-2a1cba97fb8d	2021-05-21 05:23:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:23:21.852+03	2021-05-21 05:23:21.858+03	
0b4a4fe9-53ec-5e06-0eb4-f28bec163936	2021-05-21 05:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:23:42.852+03	2021-05-21 05:23:42.859+03	
c2902a8f-bbff-44f8-9095-bce10b95ec85	2021-05-21 05:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:24:03.852+03	2021-05-21 05:24:03.865+03	
93950705-15e0-dd07-bbb3-0e0deb2f5ca5	2021-05-21 05:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:24:23.852+03	2021-05-21 05:24:23.858+03	
5ebda67c-faac-9d18-6c5d-7b506218459d	2021-05-21 05:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:24:43.853+03	2021-05-21 05:24:43.859+03	
d1ccdc5c-76a7-3174-714d-becbbf39ef27	2021-05-21 05:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:25:05.853+03	2021-05-21 05:25:05.861+03	
a3424eb9-405b-19c6-b86c-bbe6fdbb2598	2021-05-21 05:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:25:27.852+03	2021-05-21 05:25:27.858+03	
37fbd1f6-9542-a2f1-f04a-be824ef3f834	2021-05-21 05:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:25:47.852+03	2021-05-21 05:25:47.861+03	
356c8ba8-fc68-3331-d04d-305cdffdffee	2021-05-21 05:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:26:08.853+03	2021-05-21 05:26:08.859+03	
73bbf75a-44ed-8b68-4e5a-dc989b796d09	2021-05-21 05:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:26:29.853+03	2021-05-21 05:26:29.862+03	
353e6db9-f8bf-2563-0979-eaf5b725cd36	2021-05-21 05:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:25:37.852+03	2021-05-21 05:25:37.859+03	
1214fe69-8425-8ab8-76cf-b56a9b0fea77	2021-05-21 11:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:24:43.853+03	2021-05-21 11:24:43.861+03	
9ab23984-7545-78fa-98a4-1afeaf8e5fae	2021-05-21 05:25:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:25:57.854+03	2021-05-21 05:25:57.864+03	
579d1c4d-834f-4f50-218f-38e506381a13	2021-05-21 05:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:26:19.853+03	2021-05-21 05:26:19.86+03	
1d6a583c-79d8-547d-0eaa-110f2fd42311	2021-05-21 11:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:25:04.853+03	2021-05-21 11:25:04.861+03	
8a09206e-0203-dbde-54f1-43bc5d7f9e44	2021-05-21 05:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:26:40.852+03	2021-05-21 05:26:40.861+03	
860d7f90-04b1-a0ff-09ac-5a3cbee194ce	2021-05-21 05:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:27:00.853+03	2021-05-21 05:27:00.862+03	
01ca7cd8-e238-846a-f356-8a8dbdbd0390	2021-05-21 11:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:25:25.853+03	2021-05-21 11:25:25.86+03	
00b984e1-8376-c45e-4975-a8e73d7557f5	2021-05-21 05:27:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:27:21.852+03	2021-05-21 05:27:21.858+03	
809b7c79-0560-f572-dcc6-88c7513d426e	2021-05-21 05:27:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:27:41.854+03	2021-05-21 05:27:41.863+03	
b923c3b3-06ea-bb11-25d5-549c86c9667c	2021-05-21 05:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:28:02.853+03	2021-05-21 05:28:02.861+03	
a2346eeb-842f-e0b4-0a35-064191058e03	2021-05-21 05:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:28:24.852+03	2021-05-21 05:28:24.859+03	
ff614e1e-603b-c7f6-b483-3abdd6b52ec5	2021-05-21 05:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:28:44.852+03	2021-05-21 05:28:44.859+03	
97eda2bb-3fa9-f9dc-20e7-653f106448ac	2021-05-21 05:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:29:04.853+03	2021-05-21 05:29:04.859+03	
2bdd3b62-f3c6-84b4-69d8-6b46cf3f61fb	2021-05-21 05:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:29:24.853+03	2021-05-21 05:29:24.859+03	
79856ad3-2bc4-dad3-8127-fc17222441b1	2021-05-21 05:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:29:45.852+03	2021-05-21 05:29:45.859+03	
20972522-cd4f-254b-229f-c48455bbffa5	2021-05-21 05:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 05:30:00.852+03	2021-05-21 05:30:00.857+03	ERROR
c5858328-67b6-6175-2d88-8ff8a99f220a	2021-05-21 05:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:30:15.852+03	2021-05-21 05:30:15.859+03	
def9b6d4-2d95-3d9d-3780-4e4d94fa5c8b	2021-05-21 05:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:30:35.853+03	2021-05-21 05:30:35.859+03	
df7df47c-9cc1-0bdc-4c9a-c409165d8665	2021-05-21 05:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:30:55.853+03	2021-05-21 05:30:55.866+03	
3eb787f0-c19a-e677-2c08-890d4d6f0970	2021-05-21 05:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:31:15.853+03	2021-05-21 05:31:15.863+03	
7a72d2c6-7bb7-9088-1256-0832927c753b	2021-05-21 05:31:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:31:35.854+03	2021-05-21 05:31:35.861+03	
83e02fb4-f9f0-e5b8-a89b-7754e67bc900	2021-05-21 05:31:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:31:56.852+03	2021-05-21 05:31:56.859+03	
a9386859-5988-da86-3001-da5e948df6bb	2021-05-21 05:32:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:32:16.853+03	2021-05-21 05:32:16.862+03	
37340309-88ba-2076-6c20-e010736d9cbc	2021-05-21 05:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:32:37.853+03	2021-05-21 05:32:38.171+03	
6de0aea0-3f3d-8781-9884-6b74123dc6bd	2021-05-21 05:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:32:57.853+03	2021-05-21 05:32:58.151+03	
eebc2085-ce8d-92f8-80c0-ffed50561d2a	2021-05-21 05:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:33:19.853+03	2021-05-21 05:33:19.864+03	
feeef59f-eabe-309c-c7ab-9b6427c7f5e9	2021-05-21 05:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:33:41.854+03	2021-05-21 05:33:41.86+03	
c2ed5641-d854-5861-f76f-c313ab4cbdaf	2021-05-21 05:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:34:02.853+03	2021-05-21 05:34:02.86+03	
5c403c48-d734-0586-0969-3adaaf63020d	2021-05-21 05:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:34:23.852+03	2021-05-21 05:34:23.859+03	
ec6c6caf-8219-68ef-a7c5-8d092ed86b60	2021-05-21 05:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:34:43.853+03	2021-05-21 05:34:43.859+03	
af215112-ebca-0957-fcfb-b735527377e9	2021-05-21 05:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:35:04.852+03	2021-05-21 05:35:04.859+03	
563f3a6e-d66e-7be1-f0d6-1e0c3c0d439d	2021-05-21 05:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:35:24.853+03	2021-05-21 05:35:24.873+03	
f5ec1097-37e7-4034-0c57-e104936204aa	2021-05-21 05:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:35:44.853+03	2021-05-21 05:35:44.865+03	
3f1a7a56-6fe5-4a2a-cf81-a680f53ba212	2021-05-21 05:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:36:05.852+03	2021-05-21 05:36:05.859+03	
c4aed5b9-4abc-14c7-95bc-55365e002ef6	2021-05-21 05:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:36:25.852+03	2021-05-21 05:36:25.859+03	
360a7d63-a78c-7766-f460-a039a223fe0f	2021-05-21 05:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:36:45.853+03	2021-05-21 05:36:45.859+03	
c8d987db-1397-863a-bc4f-7b75db743ffc	2021-05-21 05:37:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:37:06.853+03	2021-05-21 05:37:06.859+03	
d37e022e-260c-6057-f5cd-026a5aeb0a91	2021-05-21 05:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:37:27.853+03	2021-05-21 05:37:27.86+03	
ae2cba2e-30a2-95b0-403c-730411da78d5	2021-05-21 05:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:37:48.852+03	2021-05-21 05:37:48.858+03	
8dd37240-be21-3e5f-c523-86e90c3517b8	2021-05-21 05:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:38:08.852+03	2021-05-21 05:38:08.858+03	
82833f7d-add7-ac57-9f10-f0456c5ad7b7	2021-05-21 05:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:38:28.853+03	2021-05-21 05:38:28.86+03	
eddd9a91-7816-ca10-819b-fb26efb10f34	2021-05-21 05:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:38:48.853+03	2021-05-21 05:38:48.859+03	
0e37a99e-35c4-fe26-1441-8cb2b7220feb	2021-05-21 05:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:39:09.853+03	2021-05-21 05:39:09.87+03	
b68b78b0-d7af-4a47-3528-41682f221f25	2021-05-21 05:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:39:29.853+03	2021-05-21 05:39:29.859+03	
731640e2-e1a0-007c-fd58-c5a5c5011068	2021-05-21 05:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:39:50.853+03	2021-05-21 05:39:50.86+03	
ce69d421-bf83-8418-f927-1c15a1277b42	2021-05-21 05:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:40:11.853+03	2021-05-21 05:40:11.859+03	
25b661d6-a451-36af-bd22-5ca398193c30	2021-05-21 05:40:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:40:31.854+03	2021-05-21 05:40:31.861+03	
f48bc0f7-29ec-8da7-6587-9bfaf38d0225	2021-05-21 05:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:40:53.852+03	2021-05-21 05:40:53.859+03	
585124c9-3a62-c856-379a-60076c610a6e	2021-05-21 05:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:41:14.853+03	2021-05-21 05:41:14.859+03	
a6b422dc-b1ed-041c-aeba-039f50775544	2021-05-21 05:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:41:34.853+03	2021-05-21 05:41:34.859+03	
a2cd28da-425e-f4c3-002f-4aa9c8244fe7	2021-05-21 05:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:41:54.853+03	2021-05-21 05:41:54.859+03	
112e27cd-9bb2-a897-c972-ee0aa164f346	2021-05-21 05:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:42:14.853+03	2021-05-21 05:42:14.86+03	
778a15a0-5ac0-65ae-b338-fef5266e44ff	2021-05-21 05:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:42:34.853+03	2021-05-21 05:42:34.858+03	
eb032ed0-ceee-e9be-6b41-36fb8e4fc65c	2021-05-21 05:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:42:55.853+03	2021-05-21 05:42:55.859+03	
55aec56d-2f46-1b58-54cb-05b92b959335	2021-05-21 05:43:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:43:16.854+03	2021-05-21 05:43:16.861+03	
44fda3b6-832c-a430-f336-fac92810044c	2021-05-21 05:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:43:38.853+03	2021-05-21 05:43:38.859+03	
cefc3597-d976-7ea6-5f5f-03f887fb5d00	2021-05-21 05:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:43:59.853+03	2021-05-21 05:43:59.858+03	
78354a49-8eb4-c1c2-492e-37527444f532	2021-05-21 05:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:44:20.853+03	2021-05-21 05:44:20.86+03	
59787c2c-c1a3-19c3-0731-aa812c121035	2021-05-21 05:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:44:42.852+03	2021-05-21 05:44:42.859+03	
a0ca0085-34f3-6d7e-b985-0b8469c118aa	2021-05-21 05:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:45:02.853+03	2021-05-21 05:45:02.859+03	
2e9fecd1-5ae6-6e59-df66-9cd9f23aeedf	2021-05-21 05:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:45:23.852+03	2021-05-21 05:45:23.859+03	
88a83a03-4ed5-13fa-16e9-ab536946b504	2021-05-21 05:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:45:43.853+03	2021-05-21 05:45:43.87+03	
7360823a-12eb-3576-b9b6-f2b8bae5405e	2021-05-21 05:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:26:50.853+03	2021-05-21 05:26:50.86+03	
868588fd-d1b5-7128-198f-6469e2466579	2021-05-21 05:27:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:27:11.852+03	2021-05-21 05:27:11.859+03	
b6cd5162-db7a-af0b-7b05-b47c6ca4eede	2021-05-21 05:27:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:27:31.853+03	2021-05-21 05:27:31.859+03	
cc176e4b-1426-5bc8-3817-b6f02cb8b063	2021-05-21 05:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:27:52.853+03	2021-05-21 05:27:52.861+03	
916e32b2-f53d-7758-b31f-2eb49ba997fa	2021-05-21 05:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:28:13.853+03	2021-05-21 05:28:13.86+03	
17690983-58e1-cc5f-1aab-453379a6925a	2021-05-21 05:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:28:34.852+03	2021-05-21 05:28:34.859+03	
12927062-c924-adb4-9d81-9e32a89e3ae4	2021-05-21 05:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:28:54.853+03	2021-05-21 05:28:54.859+03	
f666ab8c-bfeb-5d74-23f3-dbbc7938cb41	2021-05-21 05:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:29:14.853+03	2021-05-21 05:29:14.869+03	
6adc44cb-db6c-8d17-cd99-87f819649ced	2021-05-21 05:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:29:34.853+03	2021-05-21 05:29:34.861+03	
3fc9a7e4-17f9-3e4f-9ff5-b14503eae2b4	2021-05-21 05:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:29:55.852+03	2021-05-21 05:29:55.871+03	
3d6e6ee8-e3b9-55e2-1875-699ade75151b	2021-05-21 05:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:30:05.852+03	2021-05-21 05:30:05.902+03	
0791a9dd-afa5-39ab-8595-9d98e7a85b23	2021-05-21 05:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:30:25.852+03	2021-05-21 05:30:25.858+03	
a4ef6ef6-0ff0-7a96-671c-2f8e0d8a905a	2021-05-21 05:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:30:45.853+03	2021-05-21 05:30:45.863+03	
809ec16a-06df-22c6-08d6-f0a854482ab3	2021-05-21 05:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:31:05.853+03	2021-05-21 05:31:05.86+03	
3c93621e-e04f-639c-476f-15c37d5eec5e	2021-05-21 05:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:31:25.853+03	2021-05-21 05:31:25.86+03	
8dcb913f-44e0-a767-9e36-636f911a59bf	2021-05-21 05:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:31:46.852+03	2021-05-21 05:31:46.86+03	
272c8700-7ed4-c5b1-a17a-630e178e6403	2021-05-21 05:32:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:32:06.852+03	2021-05-21 05:32:06.865+03	
d2adc778-d736-de3b-d993-210cf6b67720	2021-05-21 05:32:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:32:26.854+03	2021-05-21 05:32:26.86+03	
f07bb60f-5aa8-78a4-04f4-107343c5fc6b	2021-05-21 05:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:32:47.853+03	2021-05-21 05:32:47.863+03	
bd020ef3-532c-acac-e0b9-970951b25b25	2021-05-21 05:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:33:08.853+03	2021-05-21 05:33:08.86+03	
5650e0f3-c019-4981-350c-eadb7e286e4e	2021-05-21 05:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:33:30.853+03	2021-05-21 05:33:30.859+03	
71a58d37-8962-4df4-ec29-799338b2fbb8	2021-05-21 05:33:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:33:51.854+03	2021-05-21 05:33:51.861+03	
07f1c70a-4e00-b555-ff36-a52e86104f75	2021-05-21 05:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:34:13.852+03	2021-05-21 05:34:13.859+03	
4ab3d10f-860f-ed39-dfc0-1d356a01efd9	2021-05-21 05:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:34:33.853+03	2021-05-21 05:34:33.86+03	
c35a27d9-b4ce-54ad-b9af-93851669e7bf	2021-05-21 05:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:34:54.852+03	2021-05-21 05:34:54.859+03	
87aeffaf-fc5a-6888-e540-dec7eb8c7ffe	2021-05-21 05:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:35:14.852+03	2021-05-21 05:35:14.859+03	
21a3f310-bbd6-db5a-aac6-3e80f9f39479	2021-05-21 05:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:35:34.853+03	2021-05-21 05:35:34.86+03	
2fcefad3-abc1-b41c-e6d3-c6a1262abaff	2021-05-21 05:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:35:55.852+03	2021-05-21 05:35:55.859+03	
168f3b3b-f4b9-4120-bab1-a5f4f4c61d36	2021-05-21 05:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:36:15.852+03	2021-05-21 05:36:15.858+03	
096ddcc7-3ca2-418c-ff00-4b708c199d05	2021-05-21 05:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:36:35.853+03	2021-05-21 05:36:35.859+03	
aede9ed4-c07b-2258-5014-99aced45e014	2021-05-21 05:36:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:36:56.852+03	2021-05-21 05:36:56.859+03	
75623404-2fb8-ded1-145b-fb3aa54a74b9	2021-05-21 05:37:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:37:16.853+03	2021-05-21 05:37:16.864+03	
247c5fb8-53a2-45e7-fb86-d5fa4c8cdcda	2021-05-21 05:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:37:37.853+03	2021-05-21 05:37:37.86+03	
dc5fce6a-e30e-1f7f-8c0d-cdcdc99f3c8a	2021-05-21 05:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:37:58.852+03	2021-05-21 05:37:58.86+03	
2ae1a5ca-4103-6c5b-d6f6-061b8535ef34	2021-05-21 05:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:38:18.853+03	2021-05-21 05:38:18.86+03	
d688daa8-2368-f7b4-6ead-c7998f8b368c	2021-05-21 05:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:38:38.853+03	2021-05-21 05:38:38.86+03	
013ff8a0-f86d-9bb7-485a-f60d56b196e5	2021-05-21 05:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:38:58.853+03	2021-05-21 05:38:58.86+03	
6aca512f-ae00-5320-cfda-4652c7dff9ac	2021-05-21 05:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:39:19.853+03	2021-05-21 05:39:19.86+03	
2bd3ae6c-e112-1517-084a-b0a8fd53712f	2021-05-21 05:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:39:39.853+03	2021-05-21 05:39:39.86+03	
6200e9c6-7bc9-d531-6d47-91477c5560c0	2021-05-21 05:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:40:00.853+03	2021-05-21 05:40:00.87+03	
81f46d54-5cee-5297-8c96-734ba39ffa68	2021-05-21 05:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 05:40:00.852+03	2021-05-21 05:40:00.891+03	ERROR
5f773df3-061e-aa76-1ab3-340e23993b66	2021-05-21 05:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:40:21.853+03	2021-05-21 05:40:21.869+03	
10ece2f6-4688-653e-eb46-7e6f91a715b2	2021-05-21 05:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:40:42.853+03	2021-05-21 05:40:42.86+03	
99f99e72-2bfc-75ed-3372-32757462551d	2021-05-21 05:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:41:03.853+03	2021-05-21 05:41:03.864+03	
4e8fe999-2f72-457a-1e00-7607f7fb08b5	2021-05-21 05:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:41:24.853+03	2021-05-21 05:41:24.86+03	
b10a0085-157a-9ce1-b310-a843eb4ad6ab	2021-05-21 05:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:41:44.853+03	2021-05-21 05:41:44.859+03	
98a9c003-15b5-017b-dc94-b067a7bc560b	2021-05-21 05:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:42:04.853+03	2021-05-21 05:42:04.868+03	
b42a601d-08b2-bf4c-ac70-4d2eca5ef40a	2021-05-21 05:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:42:24.853+03	2021-05-21 05:42:24.859+03	
228db39b-56bd-1794-22eb-9675496a0c25	2021-05-21 05:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:42:45.852+03	2021-05-21 05:42:45.863+03	
3c5ae020-54e0-0641-5e54-8b5ae57d6dd9	2021-05-21 05:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:43:06.853+03	2021-05-21 05:43:06.865+03	
44c2b318-d5ed-4058-c017-80ab40192a7d	2021-05-21 05:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:43:27.853+03	2021-05-21 05:43:27.859+03	
7e8df7cd-7a67-60bd-5a34-d37f7cc24391	2021-05-21 05:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:43:48.853+03	2021-05-21 05:43:48.859+03	
e5370ded-d5e2-a4db-8f17-240b08d2bf65	2021-05-21 05:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:44:10.852+03	2021-05-21 05:44:10.86+03	
d2efbdf6-f806-6499-5a6d-c53c1d003f48	2021-05-21 05:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:44:31.854+03	2021-05-21 05:44:31.864+03	
7be33979-ae17-1af7-b054-1774a3905851	2021-05-21 05:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:44:52.853+03	2021-05-21 05:44:52.86+03	
17c28a8e-a12a-2134-f3a7-96362390b6fb	2021-05-21 05:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:45:13.852+03	2021-05-21 05:45:13.858+03	
12e31f77-8031-6d29-7c74-41712e9c258b	2021-05-21 05:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:45:33.852+03	2021-05-21 05:45:33.915+03	
0b3855ec-32d9-38f7-891e-2f6cf15d64b0	2021-05-21 05:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:45:53.853+03	2021-05-21 05:45:53.861+03	
10679b2b-03b2-8a8b-b0af-092db96fcc4d	2021-05-21 05:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:46:03.853+03	2021-05-21 05:46:03.866+03	
f14c6612-3436-e6c9-dc6c-393ff36b6822	2021-05-21 05:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:46:14.852+03	2021-05-21 05:46:14.86+03	
7e61c15f-07d1-1ce8-0561-0f84472e488c	2021-05-21 05:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:46:24.853+03	2021-05-21 05:46:24.859+03	
e6a74df4-c239-5042-eb44-e6b60a80e164	2021-05-21 05:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:46:35.853+03	2021-05-21 05:46:35.862+03	
4f2eb19a-bdf6-f223-8b65-5f678a092506	2021-05-21 05:46:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:46:46.852+03	2021-05-21 05:46:46.859+03	
0952e7e6-6ea9-d4c3-7338-a9480a1f0bb4	2021-05-21 05:46:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:46:56.853+03	2021-05-21 05:46:56.859+03	
206885f9-ec2a-ecc3-55a4-565bf961d53a	2021-05-21 05:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:47:17.853+03	2021-05-21 05:47:17.859+03	
7c33895c-16ef-cb31-dcd2-9e0d128c8a7f	2021-05-21 05:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:47:38.853+03	2021-05-21 05:47:38.859+03	
f58cc34e-eb0e-4cf8-fda9-3f1061b26868	2021-05-21 05:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:47:58.853+03	2021-05-21 05:47:58.861+03	
0f104646-518a-e497-21c6-24c959a60546	2021-05-21 05:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:48:20.852+03	2021-05-21 05:48:20.859+03	
4ece122c-18c2-e880-fb24-0d2deb5263f7	2021-05-21 05:48:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:48:41.853+03	2021-05-21 05:48:41.861+03	
ac9a4859-0f4e-b787-149a-1e230dd0c5d7	2021-05-21 05:49:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:49:01.853+03	2021-05-21 05:49:01.86+03	
87a1e5c8-2455-74b2-6df0-a1979e566dab	2021-05-21 05:49:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:49:21.854+03	2021-05-21 05:49:21.861+03	
6304dac5-9b7c-5d97-0686-682187db53d5	2021-05-21 05:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:49:43.853+03	2021-05-21 05:49:43.86+03	
de11e559-b0b0-624f-3f37-a9461ae1280c	2021-05-21 05:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 05:50:00.852+03	2021-05-21 05:50:00.864+03	ERROR
5c82e6df-9cd3-0d61-6c70-75e92563e7c5	2021-05-21 05:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:50:14.853+03	2021-05-21 05:50:14.859+03	
e0b37018-02d4-f0c1-c29b-9afc3d90114e	2021-05-21 05:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:50:34.853+03	2021-05-21 05:50:34.87+03	
7de9eaf0-2bbb-c24c-deb4-ba1b36dfad5e	2021-05-21 05:50:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:50:56.852+03	2021-05-21 05:50:56.859+03	
f433be18-4ab8-830f-51f6-7b0af4a649f8	2021-05-21 05:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:51:17.853+03	2021-05-21 05:51:17.861+03	
94a20a06-9645-a774-1d54-c23d2d817e07	2021-05-21 05:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:51:39.853+03	2021-05-21 05:51:39.859+03	
17a9f1fc-7d90-8ba5-943e-0175d935470f	2021-05-21 05:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:52:00.852+03	2021-05-21 05:52:00.858+03	
539bf4e8-2e5e-7d7a-cdf9-5c6fa4ef6c0d	2021-05-21 05:52:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:52:21.852+03	2021-05-21 05:52:21.861+03	
8dfd1a4a-6561-3a5e-f385-52be8088caa8	2021-05-21 05:52:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:52:41.854+03	2021-05-21 05:52:41.862+03	
972ff180-81f4-c6a0-1767-5aebc16b72c0	2021-05-21 05:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:53:02.853+03	2021-05-21 05:53:02.86+03	
5782363f-44ae-fd1b-7f94-52b5f3c59b1b	2021-05-21 05:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:53:23.852+03	2021-05-21 05:53:23.859+03	
43b965d6-0cb0-ccc6-cb9d-b02a190a1871	2021-05-21 05:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:53:43.853+03	2021-05-21 05:53:43.871+03	
beb7ee32-8cbd-5ce6-2149-0b38e4147b11	2021-05-21 05:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:54:04.852+03	2021-05-21 05:54:04.859+03	
77db7ed7-18c4-59fb-5d83-616ecd8d0e43	2021-05-21 05:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:54:24.853+03	2021-05-21 05:54:24.859+03	
f9d22ffa-583f-9f2e-e0f6-f72e190c25d1	2021-05-21 05:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:54:44.853+03	2021-05-21 05:54:44.86+03	
acb8b45b-5e18-7ab7-61ce-69ba81dd9245	2021-05-21 05:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:55:05.852+03	2021-05-21 05:55:05.858+03	
e0e2ac0f-9a5f-c9fa-b560-e4099889f102	2021-05-21 05:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:55:25.853+03	2021-05-21 05:55:25.859+03	
2e2db6ad-5d7c-b85d-4b28-bb916bc3dfb0	2021-05-21 05:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:55:45.853+03	2021-05-21 05:55:45.865+03	
48b103ff-2d89-e35f-980c-4b63af715679	2021-05-21 05:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:56:05.853+03	2021-05-21 05:56:05.858+03	
c11542b5-58f1-d94f-b3ae-5de611d347b1	2021-05-21 05:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:56:26.853+03	2021-05-21 05:56:26.86+03	
8526879d-37c9-cd99-01aa-49bd2e50db6d	2021-05-21 05:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:56:47.852+03	2021-05-21 05:56:47.858+03	
635bea1d-9ae3-d8b8-4ced-476c729ee8e5	2021-05-21 05:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:57:07.852+03	2021-05-21 05:57:07.859+03	
2d4190fa-18dd-8688-afdf-bf97816253f8	2021-05-21 05:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:57:27.852+03	2021-05-21 05:57:27.859+03	
9c688c15-9036-bf54-2b5a-03af1d397f9e	2021-05-21 05:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:57:47.853+03	2021-05-21 05:57:47.86+03	
d4cb17f4-c962-76c2-42b6-c78fb478dea3	2021-05-21 05:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:58:09.852+03	2021-05-21 05:58:09.861+03	
268fe3e9-4ff7-beb9-cce8-9f12af8e688f	2021-05-21 05:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:58:29.852+03	2021-05-21 05:58:29.897+03	
079061d7-bd95-f85e-8d1f-eacbce057c73	2021-05-21 05:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:58:50.852+03	2021-05-21 05:58:50.862+03	
f8af0779-961b-fd55-3d3d-fb4df1a62aed	2021-05-21 05:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:59:10.853+03	2021-05-21 05:59:10.86+03	
034291bf-52c8-d63d-da6f-9003ee6ac82c	2021-05-21 05:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:59:32.852+03	2021-05-21 05:59:32.86+03	
ec89ae1c-1787-b234-1b84-dd7d67d64654	2021-05-21 05:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:59:52.852+03	2021-05-21 05:59:52.858+03	
8c71d63a-4133-5e13-b555-9430d68bf3b1	2021-05-21 06:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:00:02.853+03	2021-05-21 06:00:02.863+03	
2953907e-d9ec-1cc4-d7b1-a54ef716376c	2021-05-21 06:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:00:22.853+03	2021-05-21 06:00:22.862+03	
696a8170-5e49-6cc2-7d30-1aba0393b9dd	2021-05-21 06:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:00:43.852+03	2021-05-21 06:00:43.86+03	
1e0de18d-a211-0915-ed4d-917f71fceba5	2021-05-21 06:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:01:03.852+03	2021-05-21 06:01:03.86+03	
2ea778c8-a0a5-5e38-da46-5f2c5053de20	2021-05-21 06:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:01:23.853+03	2021-05-21 06:01:23.86+03	
a44da648-2aff-d86f-65c9-0187720cb4c1	2021-05-21 06:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:01:44.852+03	2021-05-21 06:01:44.859+03	
daaf694b-3ab4-397d-596d-a179c6ed3f75	2021-05-21 06:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:02:04.853+03	2021-05-21 06:02:04.859+03	
c34aebc7-22ee-86dd-0d49-ac8a5f672d64	2021-05-21 06:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:02:25.852+03	2021-05-21 06:02:25.859+03	
b231faa8-79a5-d403-2f66-749bd45f2dfb	2021-05-21 06:02:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:02:46.853+03	2021-05-21 06:02:46.862+03	
1e49c0b4-b223-b28d-4715-784c845afaf1	2021-05-21 06:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:03:07.853+03	2021-05-21 06:03:07.861+03	
e38a639f-8c1b-d346-3f0b-ba9051f3355b	2021-05-21 06:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:03:27.853+03	2021-05-21 06:03:27.86+03	
5b0f0458-22a8-8c72-c9ae-c44102c57deb	2021-05-21 06:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:03:47.853+03	2021-05-21 06:03:47.861+03	
5e5009e6-4268-3b41-1c9b-0fd1a143f510	2021-05-21 06:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:04:07.853+03	2021-05-21 06:04:07.86+03	
d82be1ff-cd24-f828-b6a9-bd209960dc7f	2021-05-21 06:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:04:27.853+03	2021-05-21 06:04:27.86+03	
fbad9ca5-4262-01a6-3bcb-38b696e90321	2021-05-21 06:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:04:48.852+03	2021-05-21 06:04:48.859+03	
2588eb22-e396-eb39-a776-d171b4783232	2021-05-21 06:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:05:08.852+03	2021-05-21 06:05:08.86+03	
129a2f58-ffd5-cadc-bff3-4015e48c0cf8	2021-05-21 06:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:05:28.852+03	2021-05-21 06:05:28.859+03	
9f22773a-ce0a-ab72-6b19-b62899b1bebf	2021-05-21 06:05:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:05:48.853+03	2021-05-21 06:05:48.859+03	
25eab49b-acf8-f9c8-d8e8-6f00aa63081a	2021-05-21 06:06:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:06:08.853+03	2021-05-21 06:06:08.859+03	
8feae5a9-cb01-6b76-cb2d-11664d905ed1	2021-05-21 06:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:06:28.853+03	2021-05-21 06:06:28.86+03	
f4b7becc-db45-0c83-e0b2-52cd5a886a46	2021-05-21 06:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:06:48.853+03	2021-05-21 06:06:48.862+03	
53e573f7-b82a-2ac1-cf26-3cb79169a297	2021-05-21 06:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:07:09.852+03	2021-05-21 06:07:09.861+03	
4583c9ff-3a23-5321-f44e-f331582aeed5	2021-05-21 06:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:07:29.853+03	2021-05-21 06:07:29.86+03	
b3946149-dd42-3fd3-e9de-690c63e15f20	2021-05-21 06:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:07:49.853+03	2021-05-21 06:07:49.86+03	
062443b3-c53e-fcae-b312-cf0e38289aea	2021-05-21 05:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:47:07.852+03	2021-05-21 05:47:07.858+03	
0bef6f1f-43b9-9871-7c68-0ef287185776	2021-05-21 05:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:47:28.852+03	2021-05-21 05:47:28.859+03	
6f5a290f-f3ad-cb26-828a-9215133e8ad2	2021-05-21 05:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:47:48.853+03	2021-05-21 05:47:48.86+03	
7a38453e-6443-2ce4-18be-289b4ad2117f	2021-05-21 05:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:48:09.853+03	2021-05-21 05:48:09.859+03	
26df258b-87bd-9961-5d6e-9d2e1b29cdcd	2021-05-21 05:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:48:30.853+03	2021-05-21 05:48:30.86+03	
0848d6c9-0524-4775-c692-26f14182b930	2021-05-21 05:48:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:48:51.853+03	2021-05-21 05:48:51.859+03	
2ef4d8b8-9c20-69f5-28fe-27586c9ab114	2021-05-21 05:49:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:49:11.853+03	2021-05-21 05:49:11.859+03	
46e1b8e4-7066-7cb6-211c-b556f36b627c	2021-05-21 05:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:49:32.853+03	2021-05-21 05:49:32.858+03	
49f7a57e-b40c-cb6f-7579-2d78d2c7e573	2021-05-21 05:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:49:53.853+03	2021-05-21 05:49:53.86+03	
e4d2a566-f8ba-6783-b0f0-7dcb4cb67c42	2021-05-21 05:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:50:03.853+03	2021-05-21 05:50:03.859+03	
2df8bba7-16e2-6504-270e-4e272df25f61	2021-05-21 05:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:50:24.853+03	2021-05-21 05:50:24.861+03	
cbce2ee8-2540-d860-4fb9-246f5cf8aa8a	2021-05-21 05:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:50:45.853+03	2021-05-21 05:50:45.859+03	
83b3bcab-7f4e-1f4e-4377-379f98ffe122	2021-05-21 05:51:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:51:06.853+03	2021-05-21 05:51:06.86+03	
916d9e6f-682b-8025-4d13-b9eee114fa7d	2021-05-21 05:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:51:28.853+03	2021-05-21 05:51:28.86+03	
12cd8276-28df-dcb7-b0a0-22b45233bc91	2021-05-21 05:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:51:50.852+03	2021-05-21 05:51:50.859+03	
0d5d48cf-24a7-4a67-78d2-ae452d671005	2021-05-21 05:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:52:10.853+03	2021-05-21 05:52:10.859+03	
9dbc700d-1e11-1b4b-f771-416a1ea4278b	2021-05-21 05:52:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:52:31.853+03	2021-05-21 05:52:31.861+03	
f04fd84c-8274-fc3a-72a3-55dffca67e90	2021-05-21 05:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:52:52.852+03	2021-05-21 05:52:52.862+03	
8df08b21-4871-79b5-ed72-407dc4e90990	2021-05-21 05:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:53:13.852+03	2021-05-21 05:53:13.859+03	
00b3fcb7-adb0-abfa-dadc-04940e6239d8	2021-05-21 05:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:53:33.852+03	2021-05-21 05:53:33.859+03	
eaaec063-9d87-5066-cfa6-1119f422a172	2021-05-21 05:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:53:53.853+03	2021-05-21 05:53:53.86+03	
435b9220-81cf-5a1d-a638-6d60ea1baf45	2021-05-21 05:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:54:14.852+03	2021-05-21 05:54:14.858+03	
a78c4190-44c7-e419-f424-42122248f5e3	2021-05-21 05:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:54:34.853+03	2021-05-21 05:54:34.86+03	
e2a8d76e-5915-7841-092b-775e85267aef	2021-05-21 05:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:54:55.852+03	2021-05-21 05:54:55.858+03	
90f29a6a-2168-35b0-1911-92e30e5176e1	2021-05-21 05:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:55:15.853+03	2021-05-21 05:55:15.86+03	
045595b2-514e-1f19-79dc-e626e6dff00b	2021-05-21 05:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:55:35.853+03	2021-05-21 05:55:35.86+03	
9d6ed091-91d1-35e7-551a-0545ae1ef7fa	2021-05-21 05:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:55:55.853+03	2021-05-21 05:55:55.86+03	
dd99a357-d4f5-5ae7-3eca-e785e7d6ba8e	2021-05-21 05:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:56:15.853+03	2021-05-21 05:56:15.858+03	
b8fe4540-90f2-9538-daf8-271bd0612ece	2021-05-21 05:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:56:37.852+03	2021-05-21 05:56:37.858+03	
be2d1958-ad83-be48-07ed-e7cf60c7af43	2021-05-21 05:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:56:57.852+03	2021-05-21 05:56:57.861+03	
846e6235-2173-022e-9434-4b0ea7b2d9ab	2021-05-21 05:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:57:17.852+03	2021-05-21 05:57:17.869+03	
a2817e58-2aa5-4b4c-d730-7d0bdd8e09a2	2021-05-21 05:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:57:37.853+03	2021-05-21 05:57:37.86+03	
32f937fd-d210-0aec-e888-7e2cb59ee9fb	2021-05-21 05:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:57:58.853+03	2021-05-21 05:57:58.86+03	
eb9226b2-a260-06b2-5141-0288acf3925c	2021-05-21 05:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:58:19.852+03	2021-05-21 05:58:19.858+03	
768de109-ef00-12d0-cada-cede4c59d6c9	2021-05-21 05:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:58:39.853+03	2021-05-21 05:58:39.863+03	
5b86be95-cf03-95e2-a886-81a8d6c82635	2021-05-21 05:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:59:00.853+03	2021-05-21 05:59:00.86+03	
818ffa46-d13f-eb6f-1dcc-02c70c1e63c8	2021-05-21 05:59:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:59:21.854+03	2021-05-21 05:59:21.861+03	
0a8bb078-056a-3cd4-5992-82516d21f564	2021-05-21 05:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 05:59:42.852+03	2021-05-21 05:59:42.859+03	
dee79261-2cf9-0e79-2d56-6bf74e695713	2021-05-21 06:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 06:00:00.852+03	2021-05-21 06:00:00.861+03	ERROR
e043d7e0-dd0f-7299-ba5f-d5969aa9f483	2021-05-21 06:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:00:12.853+03	2021-05-21 06:00:12.86+03	
9de77af0-524d-71e9-ecf1-301838430869	2021-05-21 06:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:00:32.853+03	2021-05-21 06:00:32.873+03	
998b9d3e-ebeb-5c5e-6688-97fd74dd0523	2021-05-21 06:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:00:53.852+03	2021-05-21 06:00:53.871+03	
be508525-e7ab-d951-991a-125f07bfe882	2021-05-21 06:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:01:13.852+03	2021-05-21 06:01:13.858+03	
19c4cbdf-097d-9b68-4249-2d46a7dac493	2021-05-21 06:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:01:33.853+03	2021-05-21 06:01:33.95+03	
cfd9a8ba-e711-3290-7d95-bf41a739da35	2021-05-21 06:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:01:54.853+03	2021-05-21 06:01:54.858+03	
e525c6f8-a4ac-97f5-ea5f-a06b3b54f26d	2021-05-21 06:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:02:15.852+03	2021-05-21 06:02:15.861+03	
ed22f305-9d04-da81-f8ac-d136657dcce3	2021-05-21 06:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:02:35.853+03	2021-05-21 06:02:35.861+03	
cfd559c7-d7a8-47f7-78b2-350ba569abd5	2021-05-21 06:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:02:57.853+03	2021-05-21 06:02:57.859+03	
7b4685a3-d8d8-d2e3-2b42-568119030d66	2021-05-21 06:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:03:17.853+03	2021-05-21 06:03:17.86+03	
1a9d06b7-8bba-d99f-3980-f31ba95a725e	2021-05-21 06:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:03:37.853+03	2021-05-21 06:03:37.86+03	
0fd129d2-34ba-0898-104d-854ad204374c	2021-05-21 06:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:03:57.853+03	2021-05-21 06:03:57.86+03	
59023c57-225b-a031-1f08-4ca97f580070	2021-05-21 06:04:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:04:17.853+03	2021-05-21 06:04:17.873+03	
9b779c26-f6c3-821a-6a5e-34d89ec137fa	2021-05-21 06:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:04:37.853+03	2021-05-21 06:04:37.86+03	
4d7b9b60-1e69-4f57-6dce-302f84ac87ed	2021-05-21 06:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:04:58.852+03	2021-05-21 06:04:58.859+03	
ffaed5fb-652f-e547-40ab-f6a1435fe309	2021-05-21 06:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:05:18.852+03	2021-05-21 06:05:18.87+03	
3eca64f4-a219-e014-54cf-25dbc5a28ded	2021-05-21 06:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:05:38.853+03	2021-05-21 06:05:38.861+03	
69a85c09-c3bb-bca2-8c87-fed871eeb598	2021-05-21 06:05:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:05:58.853+03	2021-05-21 06:05:58.86+03	
5397d7f1-fb54-1f8e-24d9-ce5439be732d	2021-05-21 06:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:06:18.853+03	2021-05-21 06:06:18.86+03	
9746d6a4-2aff-32e2-a59c-02c2a4da9486	2021-05-21 06:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:06:38.853+03	2021-05-21 06:06:38.859+03	
cc632cec-d058-62ba-bf11-0edc880bd90e	2021-05-21 06:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:06:58.853+03	2021-05-21 06:06:58.86+03	
1fcd0b9e-a9c1-f6b1-2c38-695fdd53cfea	2021-05-21 06:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:07:19.853+03	2021-05-21 06:07:19.861+03	
f0d55d21-ae5b-45a3-60f5-25d899406d66	2021-05-21 06:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:07:39.853+03	2021-05-21 06:07:39.861+03	
f623e613-8d5a-ef85-c11a-c00c602c7525	2021-05-21 06:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:08:00.852+03	2021-05-21 06:08:00.864+03	
5367473f-7497-6280-8d99-04e3327af8bc	2021-05-21 06:08:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:08:10.853+03	2021-05-21 06:08:10.862+03	
0ac67063-bcdd-e80d-06bc-427d2d61aae4	2021-05-21 06:08:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:08:31.854+03	2021-05-21 06:08:31.863+03	
e109a098-668c-e2a6-075a-77536dc258f3	2021-05-21 06:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:08:52.852+03	2021-05-21 06:08:52.859+03	
dfe0ba99-64ba-0960-d1f9-6327cdf15135	2021-05-21 06:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:09:13.852+03	2021-05-21 06:09:13.859+03	
eaec573f-9dc2-3f21-e085-b50969919be0	2021-05-21 06:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:09:33.853+03	2021-05-21 06:09:33.86+03	
ae3add16-5515-d53d-e9bf-3487f01f32c9	2021-05-21 06:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:09:53.853+03	2021-05-21 06:09:53.859+03	
2ffadb4f-6bba-eb7f-6f4a-17a03c639fc4	2021-05-21 06:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:10:03.853+03	2021-05-21 06:10:03.859+03	
27d07f2d-37d6-1c65-ccfa-8db25c4fefbe	2021-05-21 06:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:10:24.852+03	2021-05-21 06:10:24.86+03	
c4a43204-c257-159e-f9ca-d8e8917e9373	2021-05-21 06:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:10:44.853+03	2021-05-21 06:10:44.861+03	
e40c1cc6-7663-5881-88fc-75a7b1dc8797	2021-05-21 06:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:11:05.852+03	2021-05-21 06:11:05.859+03	
57b220aa-8019-62ab-fb59-e66053b949d3	2021-05-21 06:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:11:25.853+03	2021-05-21 06:11:25.859+03	
92cea3f4-7ab3-a8f9-b61b-f2582b51b514	2021-05-21 06:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:11:45.853+03	2021-05-21 06:11:45.859+03	
baac5aca-1a70-fd2d-2027-9976ba847238	2021-05-21 06:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:12:05.853+03	2021-05-21 06:12:05.859+03	
c559b9d5-2810-f06b-ea8b-a983e94cb460	2021-05-21 06:12:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:12:26.853+03	2021-05-21 06:12:26.859+03	
0f59718a-0490-8f7c-65b6-65ff09ae9f76	2021-05-21 06:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:12:47.853+03	2021-05-21 06:12:47.863+03	
feaff840-30bf-50b8-e86d-2d2f019c660b	2021-05-21 06:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:13:08.852+03	2021-05-21 06:13:08.859+03	
e39af906-6b44-58e9-15cd-a2a4a78e69b6	2021-05-21 06:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:13:29.852+03	2021-05-21 06:13:29.858+03	
c1afdd74-1920-7ebc-9a25-595cf4774908	2021-05-21 06:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:13:50.852+03	2021-05-21 06:13:50.859+03	
a47d6e7c-54d0-5ab4-996f-5eb88cdabd57	2021-05-21 06:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:14:10.852+03	2021-05-21 06:14:10.859+03	
8266eb18-d798-a5a9-1ba3-0306a656c020	2021-05-21 06:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:14:30.853+03	2021-05-21 06:14:30.86+03	
1c688580-4d91-cda0-4e99-0ae2339ba4e0	2021-05-21 06:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:14:52.853+03	2021-05-21 06:14:52.859+03	
dcf87e5a-9df8-3307-b46c-fba87a509222	2021-05-21 06:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:15:13.853+03	2021-05-21 06:15:13.861+03	
16ddde7e-9848-fd32-afb1-fe7dcac75db0	2021-05-21 06:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:15:34.853+03	2021-05-21 06:15:34.862+03	
1614d4c9-fdc5-56d5-8fbf-b88e742b1b93	2021-05-21 06:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:15:56.852+03	2021-05-21 06:15:56.863+03	
1a95bdcc-4f06-16e5-fd8f-8d204c1a622b	2021-05-21 06:16:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:16:16.853+03	2021-05-21 06:16:16.859+03	
d1cbdd8d-75ec-6794-f9fe-31dadb0e7471	2021-05-21 06:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:16:37.853+03	2021-05-21 06:16:37.861+03	
805daff0-de04-0e0e-5560-ede70896fc1f	2021-05-21 06:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:16:57.853+03	2021-05-21 06:16:57.861+03	
fc94c373-5002-22dc-b304-460f329c4207	2021-05-21 06:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:17:19.852+03	2021-05-21 06:17:19.859+03	
56b7922c-352f-5656-3499-d88321fdbc99	2021-05-21 06:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:17:39.853+03	2021-05-21 06:17:39.859+03	
91654c1a-fb5a-1a7b-ac83-2b557881ab65	2021-05-21 06:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:18:00.853+03	2021-05-21 06:18:00.861+03	
6676962e-6e5d-7dfa-51c8-1abdaa75de6b	2021-05-21 06:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:18:21.853+03	2021-05-21 06:18:21.862+03	
1984f8c1-b18f-fe2a-038a-ce1795c8cb34	2021-05-21 06:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:18:41.853+03	2021-05-21 06:18:41.861+03	
00520952-d927-cf98-1d85-81d370aae483	2021-05-21 06:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:19:03.852+03	2021-05-21 06:19:03.859+03	
35a9dfd7-9074-3478-f964-797d3cdf2f79	2021-05-21 06:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:19:24.853+03	2021-05-21 06:19:24.86+03	
8b192156-b9f2-6a71-6dac-6068c6b9905c	2021-05-21 06:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:19:44.853+03	2021-05-21 06:19:44.86+03	
350a0904-a3be-2eab-7a68-68cd535fb0a9	2021-05-21 06:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 06:20:00.852+03	2021-05-21 06:20:00.857+03	ERROR
b455e071-f4ca-492b-4281-38c8a0d74530	2021-05-21 06:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:20:15.852+03	2021-05-21 06:20:15.858+03	
07a05858-47da-eb72-8bd3-bd0a873bc819	2021-05-21 06:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:20:35.853+03	2021-05-21 06:20:35.86+03	
a66372d9-adcd-5ecf-9844-a631a47ff187	2021-05-21 06:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:20:57.853+03	2021-05-21 06:20:57.862+03	
644a35a2-3473-da4a-4666-28a5c72280b5	2021-05-21 06:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:21:17.853+03	2021-05-21 06:21:17.859+03	
453e778a-2fd9-a18e-e771-a72fc01f9fd0	2021-05-21 06:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:21:38.852+03	2021-05-21 06:21:38.859+03	
ac2adef1-0035-3037-9d48-2acfe3f655e2	2021-05-21 06:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:21:58.852+03	2021-05-21 06:21:58.858+03	
6c9227dc-652e-8ae1-5f20-299927b84fbf	2021-05-21 06:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:22:18.853+03	2021-05-21 06:22:18.86+03	
3a7d8057-6514-4a7a-b098-9099e18cc5d5	2021-05-21 06:22:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:22:39.853+03	2021-05-21 06:22:39.86+03	
e9446e08-d286-b43e-1f56-f8ccace5a772	2021-05-21 06:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:22:59.853+03	2021-05-21 06:22:59.859+03	
e6e45e7d-c85c-a03b-445f-da96b20bfa08	2021-05-21 06:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:23:20.852+03	2021-05-21 06:23:20.859+03	
4c741d51-e0b2-5062-2bda-902a1555ebd2	2021-05-21 06:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:23:40.852+03	2021-05-21 06:23:40.859+03	
5d7b3700-8ef1-13ea-94d5-7d9980497b9a	2021-05-21 06:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:24:00.853+03	2021-05-21 06:24:00.86+03	
a2692dc9-9fac-841c-0f5a-509395f63302	2021-05-21 06:24:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:24:21.853+03	2021-05-21 06:24:21.86+03	
28083f31-5827-e388-3af9-2cb9bb9c8e67	2021-05-21 06:24:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:24:41.854+03	2021-05-21 06:24:41.866+03	
580c7db7-cba2-8f3f-ec62-6a67b6c8c076	2021-05-21 06:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:25:03.852+03	2021-05-21 06:25:03.858+03	
9b5fccd0-6c3b-763f-45f2-0dc1a46590a3	2021-05-21 06:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:25:23.852+03	2021-05-21 06:25:23.858+03	
b08eec0c-0c23-32cc-9d0c-2db3fef50d4d	2021-05-21 06:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:25:44.853+03	2021-05-21 06:25:44.859+03	
d25bdd5c-3dac-7c1a-9873-db2841e19baa	2021-05-21 06:26:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:26:04.853+03	2021-05-21 06:26:04.859+03	
4c0a65e4-51a6-1843-cbd6-3e5006900664	2021-05-21 06:26:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:26:24.853+03	2021-05-21 06:26:24.865+03	
1e91cec7-6d76-5473-9f70-31a132a0758c	2021-05-21 06:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:26:46.852+03	2021-05-21 06:26:46.859+03	
33b8c0b7-b512-0068-f61d-fcbc6545d219	2021-05-21 06:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:27:06.852+03	2021-05-21 06:27:06.86+03	
cda5a72c-37f6-f4fc-c3e9-ed76ee1a849e	2021-05-21 06:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:27:27.852+03	2021-05-21 06:27:27.86+03	
e92b556d-b2d8-35f6-963d-a056af5f45f6	2021-05-21 06:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:27:47.853+03	2021-05-21 06:27:47.86+03	
80fcae12-0890-0992-e897-9ec12f2be415	2021-05-21 06:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:28:09.852+03	2021-05-21 06:28:09.86+03	
95b2eec6-d8e3-a79b-702f-0d82260817b5	2021-05-21 06:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:28:29.852+03	2021-05-21 06:28:29.871+03	
d78c236b-a77b-18f4-a248-735ab0b1aab9	2021-05-21 06:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:28:49.853+03	2021-05-21 06:28:49.87+03	
2ca1fea6-fb75-1910-686d-ec9d8705b228	2021-05-21 06:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:29:10.853+03	2021-05-21 06:29:10.859+03	
1da540d6-1482-8184-9aff-8b9727c377aa	2021-05-21 06:08:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:08:21.853+03	2021-05-21 06:08:21.869+03	
d3d61509-c4c4-2971-68dc-86f2338dec1d	2021-05-21 06:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:08:42.852+03	2021-05-21 06:08:42.871+03	
17d962b7-802b-c4ed-182a-d27ca04e0f92	2021-05-21 06:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:09:02.853+03	2021-05-21 06:09:02.859+03	
29a7b1be-1143-67b8-2e7b-5e59fdd0c2f1	2021-05-21 06:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:09:23.853+03	2021-05-21 06:09:23.86+03	
d8f6d35c-5ab0-54bc-db7c-8abebced452b	2021-05-21 06:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:09:43.853+03	2021-05-21 06:09:43.86+03	
ee7fffaa-2674-bcc6-e8d5-e25ddfaea503	2021-05-21 06:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 06:10:00.852+03	2021-05-21 06:10:00.858+03	ERROR
d13acff3-1b86-3655-60aa-bf1dc5f82186	2021-05-21 06:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:10:13.853+03	2021-05-21 06:10:13.862+03	
0db4293c-1f32-8f45-284a-52fdd615c11e	2021-05-21 06:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:10:34.852+03	2021-05-21 06:10:34.858+03	
8b3d48d7-d39e-c0b0-f7ab-ad4fe2ecf5cf	2021-05-21 06:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:10:54.853+03	2021-05-21 06:10:55.178+03	
c3ba5238-f305-dd68-ad87-5533d3de8c78	2021-05-21 06:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:11:15.853+03	2021-05-21 06:11:15.862+03	
70cf4f6f-11a7-f651-e4f1-247dadef4599	2021-05-21 06:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:11:35.853+03	2021-05-21 06:11:35.859+03	
a52618ad-c38b-6849-483e-7786f4857dfe	2021-05-21 06:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:11:55.853+03	2021-05-21 06:11:55.86+03	
31d23b4a-d060-67f8-c1ad-f20c27c48a8e	2021-05-21 06:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:12:15.853+03	2021-05-21 06:12:15.862+03	
ffeeb528-8918-cd31-c789-13c1ee6e0e4c	2021-05-21 06:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:12:37.852+03	2021-05-21 06:12:37.859+03	
97a54d8d-3c5d-2bdb-c3ef-c4f315f407a8	2021-05-21 06:12:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:12:57.853+03	2021-05-21 06:12:57.86+03	
4cb1c481-5057-3391-19f5-3009217b3c62	2021-05-21 06:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:13:18.853+03	2021-05-21 06:13:18.86+03	
b10ef08a-d582-56e5-cbea-97270ad8bc8d	2021-05-21 06:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:13:39.853+03	2021-05-21 06:13:39.859+03	
c64c5a17-7d80-519a-0e42-e6b35e21a58d	2021-05-21 06:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:14:00.852+03	2021-05-21 06:14:00.86+03	
f3e0817f-5e14-6b1c-6f68-73dc5888dfdc	2021-05-21 06:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:14:20.853+03	2021-05-21 06:14:20.859+03	
fc461746-8c2e-f3c4-e6d5-47413811efb6	2021-05-21 06:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:14:41.853+03	2021-05-21 06:14:41.864+03	
eb500088-c7c5-d54f-5e0b-2597d6645be2	2021-05-21 06:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:15:03.852+03	2021-05-21 06:15:03.859+03	
028990c8-f054-9b5e-566c-b184ff01ea6e	2021-05-21 06:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:15:24.852+03	2021-05-21 06:15:24.861+03	
7952b9f9-7691-be9f-374c-19707d83bcf2	2021-05-21 06:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:15:45.853+03	2021-05-21 06:15:45.859+03	
d0fe4546-9976-d687-3185-4271b39c658c	2021-05-21 06:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:16:06.852+03	2021-05-21 06:16:06.859+03	
9c25b996-44ea-e153-a451-119c3236d929	2021-05-21 06:16:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:16:26.853+03	2021-05-21 06:16:26.859+03	
55988bf0-58be-27e7-a92a-49e6513940e2	2021-05-21 06:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:16:47.853+03	2021-05-21 06:16:47.859+03	
e81e991e-8168-bc58-835e-5df94f54b350	2021-05-21 06:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:17:08.853+03	2021-05-21 06:17:08.86+03	
d697e3af-6a1a-af4c-d480-1231e32758bf	2021-05-21 06:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:17:29.852+03	2021-05-21 06:17:29.859+03	
7139fa01-9459-4508-d68b-198c3910a8e9	2021-05-21 06:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:17:50.852+03	2021-05-21 06:17:50.86+03	
579c154a-ee37-7285-7eb2-3b780351d71b	2021-05-21 06:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:18:11.852+03	2021-05-21 06:18:11.86+03	
698a2455-af85-97a8-f222-172d6fa30af7	2021-05-21 06:18:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:18:31.853+03	2021-05-21 06:18:31.859+03	
4e0bc6ba-b685-d86f-20e6-bd102c724506	2021-05-21 06:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:18:52.853+03	2021-05-21 06:18:52.859+03	
6bd7644d-89c1-c8f0-5828-1357df9d27c7	2021-05-21 06:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:19:13.853+03	2021-05-21 06:19:13.859+03	
0b054ce3-75e7-03a6-b470-4dc7ba42f22c	2021-05-21 06:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:19:34.853+03	2021-05-21 06:19:34.86+03	
ec4f27b9-e4c5-96ec-7fcc-f9226ba50d44	2021-05-21 06:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:19:55.852+03	2021-05-21 06:19:55.86+03	
e5913b5f-1340-48cb-4642-b44c35b6dcb9	2021-05-21 06:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:20:05.852+03	2021-05-21 06:20:05.858+03	
641abc0b-c4fd-e917-16f5-0d0e7ae036a4	2021-05-21 06:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:20:25.852+03	2021-05-21 06:20:25.859+03	
4674ac07-1daa-e4f9-9f7c-e8ffde0e4078	2021-05-21 06:20:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:20:46.853+03	2021-05-21 06:20:46.862+03	
c9bfaa02-d223-7a7a-f11a-ee80ae54e7e0	2021-05-21 06:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:21:07.853+03	2021-05-21 06:21:07.861+03	
da3c3fab-cc09-5444-8182-483bb30328c7	2021-05-21 06:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:21:27.853+03	2021-05-21 06:21:27.86+03	
e476b76f-3b3b-04b9-7081-598a05c6a9b9	2021-05-21 06:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:21:48.852+03	2021-05-21 06:21:48.858+03	
79950e0c-c012-8634-d9f9-ce32b3c84cb5	2021-05-21 06:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:22:08.852+03	2021-05-21 06:22:08.859+03	
3641fe55-49e9-c364-e8b1-7f8050c36af5	2021-05-21 06:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:22:29.853+03	2021-05-21 06:22:29.859+03	
447f6ff7-ce5e-fe97-f110-077a968e08a8	2021-05-21 06:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:22:49.853+03	2021-05-21 06:22:49.859+03	
f366b0c4-a763-a8ba-00fd-676d915e2c63	2021-05-21 06:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:23:09.853+03	2021-05-21 06:23:09.859+03	
8d784ee0-8f97-a537-e473-787dbb2b4b75	2021-05-21 06:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:23:30.852+03	2021-05-21 06:23:30.859+03	
66f42e28-48fa-39db-f25a-7b8e848f0651	2021-05-21 06:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:23:50.852+03	2021-05-21 06:23:50.859+03	
8316eb16-1c30-88ad-1d58-777a09245246	2021-05-21 06:24:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:24:11.852+03	2021-05-21 06:24:11.86+03	
6f8d7bf7-8ca6-a860-c176-31e42c644443	2021-05-21 06:24:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:24:31.854+03	2021-05-21 06:24:31.862+03	
1d971351-c0ee-9a77-7af3-cc68cbfa1639	2021-05-21 06:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:24:52.853+03	2021-05-21 06:24:52.86+03	
6c7dcbd0-efec-e4e8-c790-d1badc3ba56f	2021-05-21 06:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:25:13.852+03	2021-05-21 06:25:13.865+03	
7e39a6a6-59e8-0b97-24e0-3ad20eb155a7	2021-05-21 06:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:25:33.853+03	2021-05-21 06:25:33.86+03	
3abcec3f-4348-4679-917e-148ca5ce2836	2021-05-21 06:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:25:54.853+03	2021-05-21 06:25:54.869+03	
e95b4f33-7e22-4027-8d7b-b35bccc828d6	2021-05-21 06:26:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:26:14.853+03	2021-05-21 06:26:14.86+03	
03428aab-4b90-201b-1ef1-00d304015a2e	2021-05-21 06:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:26:35.853+03	2021-05-21 06:26:35.861+03	
e601e2d8-d935-c0d3-9aef-7a4f9154d12f	2021-05-21 06:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:26:56.852+03	2021-05-21 06:26:56.86+03	
21f55acd-56ad-a941-3512-dbd7032d994a	2021-05-21 06:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:27:16.853+03	2021-05-21 06:27:16.861+03	
08bcc5bd-82ea-8910-d680-4c2fd4241ee2	2021-05-21 06:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:27:37.853+03	2021-05-21 06:27:37.86+03	
91687f30-f577-bc91-9606-3a0d25c05d75	2021-05-21 06:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:27:58.853+03	2021-05-21 06:27:58.86+03	
36bd6a39-50d2-495a-ffa5-056bd85d25a5	2021-05-21 06:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:28:19.852+03	2021-05-21 06:28:19.859+03	
8e5319f2-a4e2-602d-4750-a9fa5ab306aa	2021-05-21 06:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:28:39.853+03	2021-05-21 06:28:39.859+03	
5f330b32-2904-b3bd-a6d5-979390dac309	2021-05-21 06:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:29:00.853+03	2021-05-21 06:29:00.86+03	
225ad9e7-090f-fd72-c3f2-d8d9a567eeb1	2021-05-21 06:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:29:20.853+03	2021-05-21 06:29:20.86+03	
3be0a8bd-a863-6e30-3f0c-20ee0eea4087	2021-05-21 06:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:29:30.853+03	2021-05-21 06:29:30.859+03	
c7ceb3c7-4334-d0cc-6a21-35c4c0b43797	2021-05-21 06:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:29:52.853+03	2021-05-21 06:29:52.86+03	
711c760e-e62d-ddfc-7f03-5d03445ee353	2021-05-21 06:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:30:03.852+03	2021-05-21 06:30:03.859+03	
14d1f3f8-7bf1-0ef2-aca2-80d00409f882	2021-05-21 06:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:30:23.853+03	2021-05-21 06:30:23.86+03	
f4007a70-e23b-d33d-d630-202d36737c21	2021-05-21 06:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:30:44.853+03	2021-05-21 06:30:44.86+03	
48dd785d-d9a7-1515-ea4d-63c77e3b5a5a	2021-05-21 06:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:31:04.853+03	2021-05-21 06:31:04.859+03	
5ee2e0f6-c9b2-90e2-2f8b-fcfdb4d36674	2021-05-21 06:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:31:25.852+03	2021-05-21 06:31:25.859+03	
80e183db-6d94-c6ff-7267-f6f9a1604e26	2021-05-21 06:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:31:45.852+03	2021-05-21 06:31:45.861+03	
26f77349-1595-cc91-d64e-617b9670128b	2021-05-21 06:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:32:05.853+03	2021-05-21 06:32:05.859+03	
bc961fe4-fa31-0f09-ee9d-4a0498886c0a	2021-05-21 06:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:32:25.853+03	2021-05-21 06:32:25.859+03	
11732c11-b529-003e-5176-b5803bc76521	2021-05-21 06:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:32:45.853+03	2021-05-21 06:32:45.861+03	
13c75b20-2f54-9bf3-1d30-c0ab9e4d90fd	2021-05-21 06:33:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:33:06.852+03	2021-05-21 06:33:06.861+03	
805f0b3c-a602-e8f9-b954-dc4066f8ba8a	2021-05-21 06:33:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:33:26.853+03	2021-05-21 06:33:26.86+03	
9c0d2dfc-c668-9991-41b0-d9688a1a42bd	2021-05-21 06:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:33:47.853+03	2021-05-21 06:33:47.86+03	
6518c45e-e9ec-16cc-7128-5523107d5894	2021-05-21 06:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:34:07.853+03	2021-05-21 06:34:07.859+03	
10969291-a6a2-44ec-8983-f47fec491f40	2021-05-21 06:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:34:28.852+03	2021-05-21 06:34:28.858+03	
d2f7c1f5-7e3a-f412-f0f4-2d7e0910edd1	2021-05-21 06:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:34:48.852+03	2021-05-21 06:34:48.859+03	
50d79ec7-e96e-6434-06b0-a1f3b6109b13	2021-05-21 06:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:35:08.853+03	2021-05-21 06:35:08.86+03	
0b13f16a-d080-280f-d954-f97ef5088953	2021-05-21 06:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:35:29.853+03	2021-05-21 06:35:29.86+03	
df77b9fb-055d-3ab1-a2b1-16eaf141035c	2021-05-21 06:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:35:50.853+03	2021-05-21 06:35:50.861+03	
49ce2d70-95bf-c689-4b3a-20a0d47f8fcd	2021-05-21 06:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:36:10.853+03	2021-05-21 06:36:10.859+03	
4e99767f-cae5-b12b-7475-68e1f99ed1df	2021-05-21 06:36:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:36:31.853+03	2021-05-21 06:36:31.862+03	
c4ce7044-42d8-8844-19cb-9a404db4c891	2021-05-21 06:36:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:36:51.854+03	2021-05-21 06:36:51.861+03	
53e377df-5940-7456-9483-a26ae98ba5f9	2021-05-21 06:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:37:13.852+03	2021-05-21 06:37:13.859+03	
2396f0ec-6310-3942-1697-3c4f4d85cc26	2021-05-21 06:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:37:33.853+03	2021-05-21 06:37:33.858+03	
6b54380c-9ead-0352-5637-f843f32019a8	2021-05-21 06:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:37:54.852+03	2021-05-21 06:37:54.858+03	
9895bd4c-ca5b-363d-071a-0684834cab74	2021-05-21 06:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:38:14.853+03	2021-05-21 06:38:14.859+03	
bec5100f-25b9-fe6f-0084-1ca40abd52a0	2021-05-21 06:38:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:38:36.853+03	2021-05-21 06:38:36.86+03	
feb544c0-ea62-395c-d738-e1bd5410aa0b	2021-05-21 06:38:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:38:56.853+03	2021-05-21 06:38:56.86+03	
67454d7d-ee13-340c-c0d9-047b9b350eee	2021-05-21 06:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:39:18.853+03	2021-05-21 06:39:18.859+03	
5beb57f0-0f00-f61f-ebd3-44aff5f465ce	2021-05-21 06:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:39:38.853+03	2021-05-21 06:39:38.859+03	
6210c398-863e-870d-0cdc-2337d371b01f	2021-05-21 06:39:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:39:58.853+03	2021-05-21 06:39:58.866+03	
33b02bcb-ebf9-9ecb-ebec-772dbcdcc56c	2021-05-21 06:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:40:09.853+03	2021-05-21 06:40:09.86+03	
2fab9c58-6e01-881e-e85b-ab4f4d940fa1	2021-05-21 06:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:40:30.852+03	2021-05-21 06:40:30.86+03	
85a0d8e8-0272-2fea-1dd2-6c559e60e4a7	2021-05-21 06:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:40:50.852+03	2021-05-21 06:40:50.859+03	
bf30ad21-eca4-fa8d-343e-004c30b4f1dc	2021-05-21 06:41:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:41:11.853+03	2021-05-21 06:41:11.86+03	
b3452be7-372e-9520-7df6-3c9d77eec3df	2021-05-21 06:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:41:32.852+03	2021-05-21 06:41:32.859+03	
9c4a41cd-e95e-5a3c-a253-a432a061fde3	2021-05-21 06:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:41:52.852+03	2021-05-21 06:41:52.859+03	
60978fa1-3733-d729-b27a-ecf68bb7ddbe	2021-05-21 06:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:42:12.853+03	2021-05-21 06:42:12.859+03	
bf356faf-d3d4-12a0-293f-78f6624a2950	2021-05-21 06:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:42:32.853+03	2021-05-21 06:42:32.862+03	
9738d76c-569e-5db3-d5b7-32c8d5255d43	2021-05-21 06:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:42:52.853+03	2021-05-21 06:42:52.86+03	
63e1b1a7-8f56-2668-a97e-ce942bab1b3b	2021-05-21 06:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:43:13.853+03	2021-05-21 06:43:13.86+03	
f9d5d2e2-98fd-470b-5de8-2b3943727366	2021-05-21 06:43:34.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:43:34.862+03	2021-05-21 06:43:34.868+03	
5a216e06-2d75-59f2-d1af-809a90324d73	2021-05-21 06:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:43:55.852+03	2021-05-21 06:43:55.858+03	
abe8e3c4-7c00-0ac8-f9a9-7fa0197d8fd7	2021-05-21 06:44:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:44:16.852+03	2021-05-21 06:44:16.86+03	
c614a3c0-25e2-0556-551a-8f8e7017e927	2021-05-21 06:44:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:44:36.853+03	2021-05-21 06:44:36.859+03	
eda8ab46-1b94-b00d-9914-05d5115f4587	2021-05-21 06:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:44:58.852+03	2021-05-21 06:44:58.869+03	
30e91b17-da65-a21d-2841-e9624339a5c0	2021-05-21 06:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:45:18.852+03	2021-05-21 06:45:18.86+03	
9025aeea-6e8d-2306-392c-7005a7a04966	2021-05-21 06:45:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:45:38.853+03	2021-05-21 06:45:38.86+03	
53b368dc-17f8-9a96-532d-8011b625b72a	2021-05-21 06:45:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:45:58.853+03	2021-05-21 06:45:58.859+03	
3b736328-5f16-75be-28d2-9a3d02bf950d	2021-05-21 06:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:46:19.853+03	2021-05-21 06:46:19.884+03	
1c440f4d-de1f-8908-b33a-bf85dd03f970	2021-05-21 06:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:46:40.853+03	2021-05-21 06:46:41.177+03	
f35ba9be-29cb-7077-92da-0fa1f169dc0c	2021-05-21 06:47:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:47:01.852+03	2021-05-21 06:47:01.886+03	
b048990e-0d98-76a4-2ad2-9d388de1f0c1	2021-05-21 06:47:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:47:21.854+03	2021-05-21 06:47:21.86+03	
e1696dda-288a-f646-cbae-bc84d8abb360	2021-05-21 06:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:47:42.853+03	2021-05-21 06:47:42.863+03	
732a589e-ee5c-0791-8558-a5f0fa7e47b8	2021-05-21 06:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:48:02.853+03	2021-05-21 06:48:02.859+03	
6e12690c-0c16-d937-987e-c7420a61660a	2021-05-21 06:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:48:23.853+03	2021-05-21 06:48:23.859+03	
ce398dd4-01b0-c8ff-b3a1-e05d40247e38	2021-05-21 06:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:48:44.853+03	2021-05-21 06:48:44.859+03	
4ff69c8b-0429-cb5b-d751-7a1dbdc47989	2021-05-21 06:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:49:04.853+03	2021-05-21 06:49:04.862+03	
5aae0333-02b8-d73f-927c-d77c2287ff8f	2021-05-21 06:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:49:24.853+03	2021-05-21 06:49:24.859+03	
76e9d905-f660-12c1-c4e8-4b76baae81d5	2021-05-21 06:49:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:49:56.854+03	2021-05-21 06:49:56.862+03	
b1b3c616-6468-b885-6fe0-21ab9c0bd210	2021-05-21 06:50:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:50:06.854+03	2021-05-21 06:50:06.863+03	
67b4c46a-9881-e5ba-116b-0fff96e9f96c	2021-05-21 06:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:50:27.853+03	2021-05-21 06:50:27.859+03	
b59ff552-71b7-22df-d3fd-10da1e837760	2021-05-21 06:29:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:29:41.854+03	2021-05-21 06:29:41.86+03	
1f8e5210-dea2-ba3f-6ce6-13d4d28e2bca	2021-05-21 06:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 06:30:00.852+03	2021-05-21 06:30:00.858+03	ERROR
1b761745-d146-e810-3f77-17a0ed438f84	2021-05-21 06:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:30:13.852+03	2021-05-21 06:30:13.859+03	
69498f14-d76f-2d8d-4f0f-5fb3dba689e7	2021-05-21 06:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:30:34.853+03	2021-05-21 06:30:34.86+03	
5ed7379c-aaab-ebfd-3538-007fb18443b1	2021-05-21 06:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:30:54.853+03	2021-05-21 06:30:54.868+03	
b4dc50f5-dd8c-bc80-361e-fac616af6e8d	2021-05-21 06:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:31:15.852+03	2021-05-21 06:31:15.859+03	
048b14a9-21da-402e-94ae-132a4c308b64	2021-05-21 06:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:31:35.852+03	2021-05-21 06:31:35.858+03	
c02c58e8-a95e-63cd-d6df-3a7b8d3f8a8b	2021-05-21 06:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:31:55.852+03	2021-05-21 06:31:55.86+03	
12b9f4a6-1cf3-3988-34ce-eb672973186b	2021-05-21 06:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:32:15.853+03	2021-05-21 06:32:15.86+03	
97ca410b-f1e3-8083-05b5-284eddf726b6	2021-05-21 06:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:32:35.853+03	2021-05-21 06:32:35.859+03	
48b16145-c40f-aebe-8e3c-af1bf107ee50	2021-05-21 06:32:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:32:56.852+03	2021-05-21 06:32:56.858+03	
f39b4850-b2e4-e6c6-b1f1-50e12663d7f8	2021-05-21 06:33:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:33:16.852+03	2021-05-21 06:33:16.859+03	
a9199f22-485d-c8e3-35a0-bccab1105516	2021-05-21 06:33:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:33:36.854+03	2021-05-21 06:33:36.861+03	
ed4006d9-a2e9-20bd-ada5-dfe241a6b411	2021-05-21 06:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:33:57.853+03	2021-05-21 06:33:57.861+03	
40cb37ea-4742-de02-1af8-acf24bb54a6e	2021-05-21 06:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:34:18.852+03	2021-05-21 06:34:18.86+03	
b59e254a-0f5b-3eef-08d5-07fc7aadcbc2	2021-05-21 06:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:34:38.852+03	2021-05-21 06:34:38.859+03	
2b4f6727-ed1f-e308-df38-f2845270eb46	2021-05-21 06:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:34:58.852+03	2021-05-21 06:34:58.861+03	
4d6da3df-d7fe-d635-0da4-00ee9a890d9b	2021-05-21 06:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:35:18.853+03	2021-05-21 06:35:18.861+03	
01c2b159-dcc9-748d-ce59-4e5b7a7dbb87	2021-05-21 06:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:35:40.852+03	2021-05-21 06:35:40.859+03	
84bfb7a4-ce06-a376-ccb0-de703831bd79	2021-05-21 06:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:36:00.853+03	2021-05-21 06:36:00.859+03	
abd20d51-d977-99ed-6ba0-b7fbb0158b27	2021-05-21 06:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:36:20.853+03	2021-05-21 06:36:20.859+03	
9138efb3-a421-5fc6-2edb-b88495dfd783	2021-05-21 06:36:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:36:41.853+03	2021-05-21 06:36:41.86+03	
968d0b8c-5bf5-7c26-75c4-983869ade195	2021-05-21 06:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:37:02.853+03	2021-05-21 06:37:02.859+03	
f827e49d-b0e5-8b7e-ec86-8ebd21b3f50d	2021-05-21 06:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:37:23.853+03	2021-05-21 06:37:23.86+03	
c32affaf-f108-d342-039c-190c049761a4	2021-05-21 06:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:37:44.852+03	2021-05-21 06:37:44.858+03	
d7473c27-8c6a-d9c4-4375-91d1abff34ce	2021-05-21 06:38:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:38:04.853+03	2021-05-21 06:38:04.859+03	
3d378394-df4e-f22f-8068-77f57f9ccd7a	2021-05-21 06:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:38:25.853+03	2021-05-21 06:38:25.859+03	
4964f9d1-08a9-d197-b256-27b1f8750478	2021-05-21 06:38:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:38:46.853+03	2021-05-21 06:38:46.862+03	
40d8532b-807d-2022-02a0-78b315a391a1	2021-05-21 06:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:39:07.853+03	2021-05-21 06:39:07.859+03	
2169b285-d902-829e-b64d-2842bfbff16c	2021-05-21 06:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:39:28.853+03	2021-05-21 06:39:28.861+03	
5b639aa3-761e-78a6-bb7b-5dcebfeec9a8	2021-05-21 06:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:39:48.853+03	2021-05-21 06:39:48.861+03	
b661b4d8-36b2-5e85-c1ad-5e6c99c7a107	2021-05-21 06:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 06:40:00.852+03	2021-05-21 06:40:00.857+03	ERROR
44867ca0-e92b-6012-7b34-e9bf058922b4	2021-05-21 06:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:40:20.852+03	2021-05-21 06:40:20.858+03	
83c4c340-8d4d-64dc-84cc-9f59c1cef8db	2021-05-21 06:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:40:40.852+03	2021-05-21 06:40:40.859+03	
8a504044-28f9-98a3-f7a9-666757f4884d	2021-05-21 06:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:41:00.853+03	2021-05-21 06:41:00.861+03	
27dd0596-c0bf-6d39-807e-e485424d8ce8	2021-05-21 06:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:41:22.852+03	2021-05-21 06:41:22.86+03	
dc3c0169-318a-f4b4-9214-bd627b216e14	2021-05-21 06:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:41:42.852+03	2021-05-21 06:41:42.859+03	
ea702c80-4e22-0607-8919-4feb9712ad5e	2021-05-21 06:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:42:02.852+03	2021-05-21 06:42:02.868+03	
61c9db27-34b1-6a66-f990-490a7e9770f7	2021-05-21 06:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:42:22.853+03	2021-05-21 06:42:22.86+03	
dcfb8a26-3145-04dc-c884-6d45b5773d60	2021-05-21 06:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:42:42.853+03	2021-05-21 06:42:42.868+03	
bae7331b-8de2-9cea-9419-8c636556741c	2021-05-21 06:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:43:02.853+03	2021-05-21 06:43:02.859+03	
8cf5d9c6-d74a-bfe4-162e-cb41cbb1f440	2021-05-21 06:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:43:24.852+03	2021-05-21 06:43:24.858+03	
391b0119-460a-3866-1829-361443a347ef	2021-05-21 06:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:43:45.852+03	2021-05-21 06:43:45.858+03	
cb9f7a75-2478-d505-96b3-597756d55716	2021-05-21 06:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:44:05.853+03	2021-05-21 06:44:05.859+03	
0bafa49c-e5a7-4fbb-3c30-b5f1b12b97c5	2021-05-21 06:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:44:26.852+03	2021-05-21 06:44:26.859+03	
46a09674-f1a3-0615-4d67-c1eafa7e721e	2021-05-21 06:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:44:47.853+03	2021-05-21 06:44:47.86+03	
95cc3fa5-c544-345b-7f5b-4aa97b21a500	2021-05-21 06:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:45:08.852+03	2021-05-21 06:45:08.859+03	
3cf943cb-a974-bf9a-3edf-3edf463facae	2021-05-21 06:45:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:45:28.852+03	2021-05-21 06:45:28.862+03	
9bf0b210-a4c6-1cea-975f-6c436dad9a3a	2021-05-21 06:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:45:48.853+03	2021-05-21 06:45:48.863+03	
03270667-7429-f09a-9f0f-6b82cb169674	2021-05-21 06:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:46:09.853+03	2021-05-21 06:46:09.859+03	
7584c00d-d341-1acf-9dad-ab31850c5ce4	2021-05-21 06:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:46:30.852+03	2021-05-21 06:46:30.862+03	
6d1eca4d-68f2-851c-5a63-11b551870a78	2021-05-21 06:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:46:50.853+03	2021-05-21 06:46:50.859+03	
60bd354b-9e95-4d29-f842-92fb9c735493	2021-05-21 06:47:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:47:11.853+03	2021-05-21 06:47:11.859+03	
31312d9d-ae76-4884-8b23-1864a16265f8	2021-05-21 06:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:47:32.852+03	2021-05-21 06:47:32.859+03	
09533302-1e3c-a85e-9c9d-b46da6c5a457	2021-05-21 06:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:47:52.853+03	2021-05-21 06:47:52.865+03	
61dfc303-2759-390b-2d78-6f87f558aea9	2021-05-21 06:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:48:13.852+03	2021-05-21 06:48:13.859+03	
fc6b12ec-2ae5-56d7-907d-eda4a496de3c	2021-05-21 06:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:48:34.853+03	2021-05-21 06:48:34.859+03	
d56303a3-6345-874f-eb93-89a74ed0dfc7	2021-05-21 06:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:48:54.853+03	2021-05-21 06:48:54.86+03	
9700db63-b6b6-3f76-a679-ae60dbbe1285	2021-05-21 06:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:49:14.853+03	2021-05-21 06:49:14.859+03	
89620141-6cb3-ea81-c823-e395384f92bd	2021-05-21 06:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:49:35.853+03	2021-05-21 06:49:35.859+03	
d08668c0-65fb-4e98-528c-f01350403484	2021-05-21 06:49:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:49:46.854+03	2021-05-21 06:49:46.875+03	
01d9d8cc-132f-987c-10ba-35f95a6e3e3d	2021-05-21 06:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 06:50:00.853+03	2021-05-21 06:50:00.861+03	ERROR
55485109-ecba-ca6f-4ba5-c5e5c632c1df	2021-05-21 06:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:50:17.852+03	2021-05-21 06:50:17.866+03	
2d25be99-c2e7-5dbf-db60-cb302423e4e4	2021-05-21 06:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:50:38.852+03	2021-05-21 06:50:38.86+03	
550b25fc-0941-a36a-37e4-218d20c64c64	2021-05-21 06:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:50:58.852+03	2021-05-21 06:50:58.859+03	
e133f2fd-7647-d2f6-973c-cb06963a7ed5	2021-05-21 06:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:51:18.852+03	2021-05-21 06:51:18.86+03	
0026cc19-82d3-3e01-7f8e-103b4d45d32b	2021-05-21 06:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:51:38.852+03	2021-05-21 06:51:38.859+03	
c1d94e92-b1c4-9023-eb3e-0a21299cb778	2021-05-21 06:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:51:58.853+03	2021-05-21 06:51:58.861+03	
e1671f70-8a45-85b6-414c-47e94ee270ff	2021-05-21 06:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:52:18.853+03	2021-05-21 06:52:18.862+03	
ebe85921-3322-0210-7e7c-f4b39cb3daf0	2021-05-21 06:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:52:38.853+03	2021-05-21 06:52:38.864+03	
1877973f-aba1-b28b-8c2b-6578d3a4a0c9	2021-05-21 06:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:53:00.852+03	2021-05-21 06:53:00.86+03	
35401aa8-28a3-ebed-8409-8fc62f9f829a	2021-05-21 06:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:53:20.852+03	2021-05-21 06:53:20.859+03	
b4bc9517-a656-6cda-c7eb-61c3b015b20f	2021-05-21 06:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:53:40.853+03	2021-05-21 06:53:40.86+03	
782959f4-6344-5b61-4723-e179a036f677	2021-05-21 06:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:54:00.853+03	2021-05-21 06:54:00.862+03	
e8bb94fd-fe8a-b40b-2dba-e433fe1043de	2021-05-21 06:54:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:54:20.853+03	2021-05-21 06:54:20.862+03	
ba43b1db-9cf4-359c-a9e4-44218558112c	2021-05-21 06:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:54:40.853+03	2021-05-21 06:54:40.86+03	
a1beda51-3f98-1abc-871f-e63e590319ca	2021-05-21 06:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:55:00.853+03	2021-05-21 06:55:00.875+03	
4e481056-0915-2b9a-2ff2-6871ec859a2e	2021-05-21 06:55:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:55:21.854+03	2021-05-21 06:55:21.863+03	
bbeb9d06-946a-e7ee-cdcc-b291ae53dcb6	2021-05-21 06:55:42.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:55:42.854+03	2021-05-21 06:55:42.861+03	
8f693bd6-f844-f1c1-f268-0123e073628c	2021-05-21 06:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:56:03.853+03	2021-05-21 06:56:03.86+03	
78a49f3f-1057-0be7-d4ee-57444a9111f0	2021-05-21 06:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:56:24.853+03	2021-05-21 06:56:24.86+03	
9da397d7-cfcc-39a5-2cf3-77fba3560303	2021-05-21 06:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:56:45.853+03	2021-05-21 06:56:45.859+03	
2ccbe1d1-d8db-ebe6-9523-dd1a0abbc795	2021-05-21 06:57:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:57:06.854+03	2021-05-21 06:57:06.861+03	
2718de5a-cf24-32e2-f1fb-16630dbcffe7	2021-05-21 06:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:57:27.853+03	2021-05-21 06:57:27.861+03	
8f359b67-174f-b4e6-119f-d754c2eeec74	2021-05-21 06:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:57:48.853+03	2021-05-21 06:57:48.859+03	
ae4d6be0-d467-b349-93a8-9e1b7e20b6cf	2021-05-21 06:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:58:09.853+03	2021-05-21 06:58:09.859+03	
28d5ab56-567c-7a62-bd36-7edfc68c5ded	2021-05-21 06:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:58:30.853+03	2021-05-21 06:58:30.859+03	
e26e812a-05f1-2a3e-625c-7a8e263d0f9f	2021-05-21 06:58:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:58:51.854+03	2021-05-21 06:58:51.861+03	
750870f4-2470-a8e2-908e-d1a0cebe7baf	2021-05-21 06:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:59:12.853+03	2021-05-21 06:59:12.86+03	
2566cb6a-4455-cae6-7c4f-e6d126d33423	2021-05-21 06:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:59:33.852+03	2021-05-21 06:59:33.868+03	
48b08338-912d-bedf-3967-f17eea5fecc8	2021-05-21 06:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:59:53.852+03	2021-05-21 06:59:53.86+03	
2b04bdb2-a9f6-a947-e95d-e1dac392349d	2021-05-21 07:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:00:03.853+03	2021-05-21 07:00:03.861+03	
b709a3e5-4e16-1fc6-70c0-2aeb0ee3ebd5	2021-05-21 07:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:00:23.853+03	2021-05-21 07:00:23.862+03	
1b68bd49-572d-da45-5c8d-1a9236386e45	2021-05-21 07:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:00:44.853+03	2021-05-21 07:00:44.859+03	
19ee7ce1-e683-ca6a-2a15-4effb9cbe711	2021-05-21 07:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:01:04.853+03	2021-05-21 07:01:04.864+03	
b296690d-667d-d0ee-f215-8c4ef83d2fdf	2021-05-21 07:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:01:25.853+03	2021-05-21 07:01:25.861+03	
fc946e04-dfa9-7824-bad2-c35988538c11	2021-05-21 07:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:01:45.853+03	2021-05-21 07:01:45.86+03	
182750d0-8c4c-69aa-873b-944b2e447855	2021-05-21 07:02:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:02:06.852+03	2021-05-21 07:02:06.859+03	
702a1dda-3c25-bc08-d23f-b3229e23a553	2021-05-21 07:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:02:26.853+03	2021-05-21 07:02:26.86+03	
2de6fb4e-6d4d-cadb-6b73-b869b1d68e2e	2021-05-21 07:02:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:02:46.853+03	2021-05-21 07:02:46.859+03	
d6aef762-5f45-b59f-bd60-3498837f9b1f	2021-05-21 07:03:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:03:06.853+03	2021-05-21 07:03:06.861+03	
aa9c8a53-17dd-47d7-0dcc-e0b1487e2614	2021-05-21 07:03:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:03:26.854+03	2021-05-21 07:03:26.862+03	
3720369f-c1cf-9eea-d1ad-98ea77620b0f	2021-05-21 07:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:03:47.853+03	2021-05-21 07:03:47.86+03	
eea00ab1-0436-881e-2e22-41984dad1ad2	2021-05-21 07:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:04:09.853+03	2021-05-21 07:04:09.86+03	
d59d00f5-157c-d663-c8fc-70557bd07155	2021-05-21 07:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:04:30.853+03	2021-05-21 07:04:30.861+03	
8156773c-b6f5-8fc4-6c49-694e682ada6c	2021-05-21 07:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:04:50.853+03	2021-05-21 07:04:50.861+03	
666827b7-b698-fd34-2fca-f372c2326da4	2021-05-21 07:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:05:10.853+03	2021-05-21 07:05:10.862+03	
8557102e-b225-c89e-fe0c-9c3d6b309987	2021-05-21 07:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:05:32.852+03	2021-05-21 07:05:32.86+03	
25d2029c-7364-cf27-25ba-7578da416603	2021-05-21 07:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:05:52.853+03	2021-05-21 07:05:52.86+03	
fc61b84a-be8c-6be7-966f-f0e415b23370	2021-05-21 07:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:06:13.853+03	2021-05-21 07:06:13.861+03	
8353f15c-9e25-abe8-7946-3bc914fcddff	2021-05-21 07:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:06:33.853+03	2021-05-21 07:06:33.859+03	
d12f815e-2399-6d84-e13b-a40281c090f1	2021-05-21 07:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:06:54.852+03	2021-05-21 07:06:54.859+03	
95ffad85-fd6e-1668-ff7a-08d4272649a9	2021-05-21 07:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:07:14.852+03	2021-05-21 07:07:14.859+03	
5de0eca2-e3d3-353d-b83c-f9d29c5b6785	2021-05-21 07:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:07:34.853+03	2021-05-21 07:07:34.86+03	
1d479724-fed3-969f-cc48-d137a0e0d168	2021-05-21 07:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:07:55.853+03	2021-05-21 07:07:55.86+03	
720c4398-92cb-cd8a-2704-bfed654aec0f	2021-05-21 07:08:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:08:16.852+03	2021-05-21 07:08:16.86+03	
1b5a5e10-c855-8cd4-61ef-0dda30212858	2021-05-21 07:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:08:37.852+03	2021-05-21 07:08:37.859+03	
9cfe8d3f-3168-a3e5-fd7f-0807c0fbad89	2021-05-21 07:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:08:57.853+03	2021-05-21 07:08:57.86+03	
adf6f0a3-6731-d5fc-4d4b-6aaac657827a	2021-05-21 07:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:09:18.853+03	2021-05-21 07:09:18.859+03	
96d7b01d-0e8c-f0e9-1667-c6548b8a9431	2021-05-21 07:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:09:39.853+03	2021-05-21 07:09:39.859+03	
eee8ca8c-bde2-e7c7-fa73-d6befee6680a	2021-05-21 07:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 07:10:00.852+03	2021-05-21 07:10:00.864+03	ERROR
7287142e-475d-9e4c-6a64-9899c5a8812c	2021-05-21 07:10:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:10:11.852+03	2021-05-21 07:10:11.859+03	
ba500419-528e-d94b-7614-ee14d202cccd	2021-05-21 07:10:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:10:31.854+03	2021-05-21 07:10:31.861+03	
fcdc2afa-de83-d250-c081-2588ec9331a8	2021-05-21 07:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:10:53.853+03	2021-05-21 07:10:53.86+03	
1af77e8d-3dc5-930e-35e6-d819157748ca	2021-05-21 07:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:11:14.853+03	2021-05-21 07:11:14.859+03	
f5666dc1-f190-d14b-b920-ed06a6d3337d	2021-05-21 07:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:11:35.853+03	2021-05-21 07:11:35.862+03	
6158d88d-2f86-d840-0500-3eac1811d319	2021-05-21 06:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:50:48.852+03	2021-05-21 06:50:48.864+03	
569d02eb-ae5b-102f-6b66-e2508eceb89f	2021-05-21 06:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:51:08.852+03	2021-05-21 06:51:08.859+03	
15979e0c-eaf7-a2db-90f3-3f74027d401c	2021-05-21 06:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:51:28.852+03	2021-05-21 06:51:28.859+03	
618c3ee8-eb42-8f88-0e39-23a171290d14	2021-05-21 06:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:51:48.852+03	2021-05-21 06:51:48.86+03	
ebdeeb93-5ed8-a75e-f844-dc86ff0a1ef1	2021-05-21 06:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:52:08.853+03	2021-05-21 06:52:08.86+03	
5e227f09-cf0f-aadd-1235-0c98bb7762bf	2021-05-21 06:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:52:28.853+03	2021-05-21 06:52:28.861+03	
10468d8c-6943-0326-ed5c-37b73b422ce1	2021-05-21 06:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:52:49.853+03	2021-05-21 06:52:49.868+03	
ae432adf-1b94-15f5-13d8-e0435b19dc08	2021-05-21 06:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:53:10.852+03	2021-05-21 06:53:10.859+03	
39a84cb0-666f-e1bc-2d53-6b4edce658b6	2021-05-21 06:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:53:30.853+03	2021-05-21 06:53:30.861+03	
5a6925b2-7d05-ace0-2e76-4af46c6722d4	2021-05-21 06:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:53:50.853+03	2021-05-21 06:53:50.862+03	
60f29ec5-5f18-720f-c8f1-67bb3ce0d3bb	2021-05-21 06:54:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:54:10.853+03	2021-05-21 06:54:10.861+03	
ae7accb0-edb2-0760-d20b-added7846c4c	2021-05-21 06:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:54:30.853+03	2021-05-21 06:54:30.862+03	
e13b88d5-dec8-3575-228c-d8579d9c74d1	2021-05-21 06:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:54:50.853+03	2021-05-21 06:54:50.86+03	
c2aa0e75-a4ab-b9c1-8524-455238490444	2021-05-21 06:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:55:10.853+03	2021-05-21 06:55:10.859+03	
0f4fd8fa-b5e2-84f2-6996-4dab0cc1e6c0	2021-05-21 06:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:55:32.853+03	2021-05-21 06:55:32.862+03	
870acd0d-41de-6916-7b76-1a78237a0426	2021-05-21 06:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:55:53.853+03	2021-05-21 06:55:53.873+03	
b4258dae-9fee-ad3e-670a-29953af856f8	2021-05-21 06:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:56:14.853+03	2021-05-21 06:56:14.859+03	
85a48e2b-1604-1281-d673-0520d68c8af8	2021-05-21 06:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:56:35.853+03	2021-05-21 06:56:35.858+03	
a74bc7db-a273-7e2c-5013-3ef1626bf834	2021-05-21 06:56:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:56:56.854+03	2021-05-21 06:56:56.86+03	
5f53ab5a-70c5-d03f-cfbf-30a7d00bb4a8	2021-05-21 06:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:57:17.852+03	2021-05-21 06:57:17.872+03	
64aacd6b-72b9-a6e2-4d02-841a906d5a7a	2021-05-21 06:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:57:37.853+03	2021-05-21 06:57:37.864+03	
2897d525-80e9-8299-fb0a-9a182cff1156	2021-05-21 06:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:57:58.853+03	2021-05-21 06:57:58.859+03	
372575b2-c6d1-3c39-6a8d-ec1651838986	2021-05-21 06:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:58:19.853+03	2021-05-21 06:58:19.86+03	
e1ec95ab-de94-6501-a901-1bef7222962e	2021-05-21 06:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:58:40.853+03	2021-05-21 06:58:40.86+03	
da6edc1a-670a-1bea-322d-2032b4fb1799	2021-05-21 06:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:59:02.853+03	2021-05-21 06:59:02.861+03	
f527bce7-9159-cd50-8d8d-06e114cbfc95	2021-05-21 06:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:59:23.852+03	2021-05-21 06:59:23.859+03	
77935ce7-845c-4cbd-adb3-c729d1938fd3	2021-05-21 06:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 06:59:43.852+03	2021-05-21 06:59:43.858+03	
80724d45-74d8-55ec-4e6c-196ab69a64c2	2021-05-21 07:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 07:00:00.853+03	2021-05-21 07:00:00.858+03	ERROR
a6ee67e5-0356-8e93-90c7-80a3c5b6fee6	2021-05-21 07:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:00:13.853+03	2021-05-21 07:00:13.872+03	
b95dfa28-485e-7e89-f902-8253dc2cb2a3	2021-05-21 07:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:00:33.853+03	2021-05-21 07:00:33.86+03	
fbad609f-835c-2135-027f-75b5b8082168	2021-05-21 07:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:00:54.853+03	2021-05-21 07:00:54.86+03	
bbe3d847-2725-59e2-5a8b-a2c9eed2fc0d	2021-05-21 07:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:01:15.852+03	2021-05-21 07:01:15.861+03	
38732043-d736-8880-3cb4-75b1cee5b68e	2021-05-21 07:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:01:35.853+03	2021-05-21 07:01:35.86+03	
dcaabe49-b941-34d0-68d1-e502675a9903	2021-05-21 07:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:01:55.853+03	2021-05-21 07:01:55.86+03	
57f2f67e-a5e9-3248-6fdf-001fa1e93688	2021-05-21 07:02:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:02:16.852+03	2021-05-21 07:02:16.86+03	
df60e8a2-9524-a270-d89e-8e41189e151b	2021-05-21 07:02:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:02:36.853+03	2021-05-21 07:02:36.859+03	
e4f981ad-725c-1011-4f5f-f1a5be16d93f	2021-05-21 07:02:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:02:56.853+03	2021-05-21 07:02:56.859+03	
c44c8ac1-d788-ac8e-bd8c-2e629a193cc7	2021-05-21 07:03:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:03:16.854+03	2021-05-21 07:03:16.861+03	
3fb97c4b-fbca-5c45-c51e-a8798fb2b190	2021-05-21 07:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:03:37.852+03	2021-05-21 07:03:37.864+03	
d415732d-a102-4d48-058a-ef173d9c27b3	2021-05-21 07:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:03:58.853+03	2021-05-21 07:03:58.86+03	
6282fffa-5314-9148-e3ba-c221dbc702ec	2021-05-21 07:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:04:19.853+03	2021-05-21 07:04:19.862+03	
f75178c5-3c5c-cdf8-fe73-27c46c2d77a9	2021-05-21 07:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:04:40.853+03	2021-05-21 07:04:40.859+03	
a8e60ddc-301c-f2ba-a93c-f6777ee2bcfb	2021-05-21 07:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:05:00.853+03	2021-05-21 07:05:00.86+03	
a9318f31-f52d-eacc-a241-b26410ac92c1	2021-05-21 07:05:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:05:21.853+03	2021-05-21 07:05:21.859+03	
a9f5fe2a-76c2-1ace-20a0-13b29c110471	2021-05-21 07:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:05:42.853+03	2021-05-21 07:05:42.86+03	
a4d7e21d-9b22-0ab3-8861-14528804f031	2021-05-21 07:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:06:02.853+03	2021-05-21 07:06:02.859+03	
1829ee99-c11d-fb7c-b44c-3a84a820e103	2021-05-21 07:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:06:23.853+03	2021-05-21 07:06:23.859+03	
7400be89-ce39-825b-7f89-1ee5f964d1ab	2021-05-21 07:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:06:43.853+03	2021-05-21 07:06:43.861+03	
fc34f781-b88c-5c1a-09b4-a2b6c204f406	2021-05-21 07:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:07:04.852+03	2021-05-21 07:07:04.858+03	
17baec87-2923-ec7e-d763-e11d52b87e23	2021-05-21 07:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:07:24.853+03	2021-05-21 07:07:24.859+03	
dd7016bc-4865-b246-77ad-9bfadb44cdbd	2021-05-21 07:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:07:45.853+03	2021-05-21 07:07:45.859+03	
93f1f38e-3950-3836-23e8-079dba3d7317	2021-05-21 07:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:08:05.853+03	2021-05-21 07:08:05.86+03	
71976c12-452c-8cba-a7c2-dbc86d7d949e	2021-05-21 07:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:08:26.853+03	2021-05-21 07:08:26.859+03	
371bf915-21c8-48d6-c9c0-e36a40ab105a	2021-05-21 07:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:08:47.853+03	2021-05-21 07:08:47.859+03	
fdcdd822-e716-986b-fb31-e8ac237de257	2021-05-21 07:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:09:08.853+03	2021-05-21 07:09:08.86+03	
19b6d833-6532-fda4-421a-4162986820e6	2021-05-21 07:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:09:29.853+03	2021-05-21 07:09:29.865+03	
e84e2fec-0dea-f9d8-52f0-93ddac2f7a79	2021-05-21 07:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:09:50.853+03	2021-05-21 07:09:50.86+03	
b68bd169-9710-c203-9598-b6d50f8c4fa5	2021-05-21 07:10:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:10:01.852+03	2021-05-21 07:10:01.859+03	
7583f52b-d1a6-be7f-f483-7db6587bda69	2021-05-21 07:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:10:21.852+03	2021-05-21 07:10:21.859+03	
664ef64a-aa04-599e-f56a-57ed6c371625	2021-05-21 07:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:10:42.853+03	2021-05-21 07:10:42.86+03	
31ced00c-0d38-8659-bc50-ad4a1c305cf6	2021-05-21 07:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:11:04.852+03	2021-05-21 07:11:04.859+03	
ba2da7df-30ba-b682-b78c-5ee56accf379	2021-05-21 07:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:11:25.852+03	2021-05-21 07:11:25.858+03	
e36a1759-7ab2-097a-7450-b54ba8a6949a	2021-05-21 07:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:11:45.853+03	2021-05-21 07:11:45.86+03	
6e464325-171f-bc0c-94d3-727cca1d690a	2021-05-21 07:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:11:55.853+03	2021-05-21 07:11:55.86+03	
12edf8db-a6e7-4cfc-ebf5-3ff524342921	2021-05-21 07:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:12:15.853+03	2021-05-21 07:12:15.86+03	
209f83ea-59aa-cc3a-27de-c9ad811d1702	2021-05-21 07:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:12:37.852+03	2021-05-21 07:12:37.859+03	
1a9a817c-cc35-dd55-454c-0540d93ab20d	2021-05-21 07:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:12:58.852+03	2021-05-21 07:12:58.875+03	
6a34bbc9-42b7-b307-f45b-198cd6934902	2021-05-21 07:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:13:18.853+03	2021-05-21 07:13:18.859+03	
c10e22e0-5019-18bd-4b60-dd1f09c385f8	2021-05-21 07:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:13:38.853+03	2021-05-21 07:13:38.86+03	
04593bfa-adfe-ce78-fa16-798a0cfdf1c8	2021-05-21 07:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:13:59.853+03	2021-05-21 07:13:59.86+03	
1e7109ec-5a4a-7698-33f4-3d80b737a5b6	2021-05-21 07:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:14:19.853+03	2021-05-21 07:14:19.859+03	
12205b29-1676-641a-457f-a614e2354a00	2021-05-21 07:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:14:40.852+03	2021-05-21 07:14:40.859+03	
b2389869-3ba2-49c4-4dd4-953b85890f79	2021-05-21 07:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:15:00.852+03	2021-05-21 07:15:00.858+03	
a5d52d31-cd98-b443-8238-5aa9b9f1164f	2021-05-21 07:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:15:20.853+03	2021-05-21 07:15:20.859+03	
11a0459c-588a-ad64-4e3b-547c99d65669	2021-05-21 07:15:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:15:41.853+03	2021-05-21 07:15:41.861+03	
308fb5c8-c98b-b8eb-26dd-1ee1610f8f96	2021-05-21 07:16:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:16:01.853+03	2021-05-21 07:16:01.859+03	
529748eb-f5d4-8394-e4de-e9952d39ba92	2021-05-21 07:16:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:16:21.853+03	2021-05-21 07:16:21.859+03	
58bac2bf-e96a-dd92-c45f-54bfde07a15b	2021-05-21 07:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:16:42.852+03	2021-05-21 07:16:42.859+03	
8112f447-e033-893a-c9ad-620708ee81de	2021-05-21 07:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:17:02.852+03	2021-05-21 07:17:02.859+03	
85bb623e-6ec6-ff8b-6c6c-1dad1d1ff438	2021-05-21 07:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:17:22.852+03	2021-05-21 07:17:22.88+03	
52971be0-7a53-fa96-d821-c83561075bca	2021-05-21 07:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:17:42.852+03	2021-05-21 07:17:42.859+03	
1c11bda0-bfe2-ea3c-a455-3f2fc5104aa5	2021-05-21 07:18:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:18:02.852+03	2021-05-21 07:18:02.86+03	
763b847b-baba-9d7d-0f63-43edff77fd03	2021-05-21 07:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:18:23.852+03	2021-05-21 07:18:23.859+03	
9ea7efb2-56c9-63d3-1731-93cd0b63f683	2021-05-21 07:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:18:43.852+03	2021-05-21 07:18:43.86+03	
31b5ab53-e3f1-7764-282b-9380ea7588a5	2021-05-21 07:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:19:03.853+03	2021-05-21 07:19:03.861+03	
a606e51f-33b8-7be9-6208-b0820edce9af	2021-05-21 07:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:19:23.853+03	2021-05-21 07:19:23.861+03	
db8cf1ea-e0c2-ae5d-db86-75d787a1f400	2021-05-21 07:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:19:44.852+03	2021-05-21 07:19:44.859+03	
98d5b4a7-5dd3-5554-2226-a6940998a67b	2021-05-21 07:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 07:20:00.852+03	2021-05-21 07:20:00.857+03	ERROR
c47d34cd-52f2-5bfc-2375-9b7bbb0ff7e6	2021-05-21 07:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:20:14.852+03	2021-05-21 07:20:14.859+03	
24c81932-63c2-0f8d-4e12-bd757222d5a1	2021-05-21 07:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:20:34.852+03	2021-05-21 07:20:34.858+03	
a426d952-93e2-085d-ca8f-c9426a6530f7	2021-05-21 07:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:20:54.853+03	2021-05-21 07:20:54.86+03	
2989b4c7-207d-9ed7-8b87-1cfa0be09401	2021-05-21 07:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:21:15.853+03	2021-05-21 07:21:15.866+03	
f802facb-fca6-3c34-1162-dbcc6b9b6a48	2021-05-21 07:21:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:21:36.853+03	2021-05-21 07:21:36.877+03	
e499d445-ad00-3520-0905-29bfd0c82a13	2021-05-21 07:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:21:57.852+03	2021-05-21 07:21:57.858+03	
7e7e7e1d-76df-81b5-d72a-7a8ffe95ef6d	2021-05-21 07:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:22:17.853+03	2021-05-21 07:22:17.88+03	
243ce7c0-04b4-e9e6-645c-117172666401	2021-05-21 07:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:22:37.853+03	2021-05-21 07:22:37.861+03	
539716fb-d2b1-85c5-51f0-68281855745f	2021-05-21 07:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:22:57.853+03	2021-05-21 07:22:57.861+03	
23f405ed-7a7b-be2c-ab84-96bb8dfd72fa	2021-05-21 07:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:23:17.853+03	2021-05-21 07:23:17.876+03	
ac237685-2952-d576-9b9f-bbdd099a288d	2021-05-21 07:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:23:38.852+03	2021-05-21 07:23:38.862+03	
c49d7189-bbee-785f-c354-47998cef09f5	2021-05-21 07:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:23:58.852+03	2021-05-21 07:23:58.86+03	
28de2630-b6e8-7ca2-9e92-dd9131889ea8	2021-05-21 07:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:24:18.853+03	2021-05-21 07:24:18.859+03	
24a8ca4e-a55a-1dbe-56d2-dfb44523c405	2021-05-21 07:24:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:24:39.853+03	2021-05-21 07:24:39.861+03	
bf031dbe-f232-291b-670f-81ee838331cc	2021-05-21 07:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:24:59.853+03	2021-05-21 07:24:59.859+03	
bab8d018-e40b-8d2b-c200-2d12be1249ce	2021-05-21 07:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:25:20.852+03	2021-05-21 07:25:20.86+03	
1e3b414f-096c-77e0-a694-29d70b802d78	2021-05-21 07:25:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:25:41.853+03	2021-05-21 07:25:41.86+03	
fa28172a-a9af-5499-f4f8-e70eb20a04ee	2021-05-21 07:26:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:26:01.853+03	2021-05-21 07:26:01.86+03	
cd50183d-cd28-85b9-36b7-c0a9835bcc3b	2021-05-21 07:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:26:22.852+03	2021-05-21 07:26:22.859+03	
0f85a567-99e1-bc50-dc13-2ec2637c228d	2021-05-21 07:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:26:43.852+03	2021-05-21 07:26:43.86+03	
cc7a6e86-b6dd-c134-1735-36160ffa8efb	2021-05-21 07:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:27:04.853+03	2021-05-21 07:27:04.859+03	
c5f08638-0413-5f4f-c738-ddc930dc0958	2021-05-21 07:27:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:27:26.854+03	2021-05-21 07:27:26.861+03	
02c63ecd-dde1-0998-5553-f80e0ad881a2	2021-05-21 07:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:27:47.852+03	2021-05-21 07:27:47.86+03	
436e2c72-f3da-48aa-c752-44f5ceaac9b6	2021-05-21 07:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:28:07.853+03	2021-05-21 07:28:07.861+03	
b6d1e1f7-c004-8a0f-c133-15badfcbfb80	2021-05-21 07:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:28:28.852+03	2021-05-21 07:28:28.86+03	
02c11287-9478-22ca-541c-c714d0f98156	2021-05-21 07:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:28:48.852+03	2021-05-21 07:28:48.859+03	
b0f83ce7-90d3-bd98-6477-2b78744446b8	2021-05-21 07:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:29:08.852+03	2021-05-21 07:29:08.859+03	
9d078a5b-5927-14ab-3554-7be6afb77562	2021-05-21 07:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:29:29.853+03	2021-05-21 07:29:29.863+03	
0de81ed0-6a90-0ac0-f956-548701fbc03b	2021-05-21 07:29:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:29:51.852+03	2021-05-21 07:29:51.859+03	
21342350-c0fc-c51f-ab8f-697939337a36	2021-05-21 07:30:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:30:01.853+03	2021-05-21 07:30:01.859+03	
2a3f0e1d-4808-8312-6dae-81bc63035d16	2021-05-21 07:30:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:30:22.853+03	2021-05-21 07:30:22.86+03	
3887a12d-a5de-1bfb-043b-acde9758023a	2021-05-21 07:30:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:30:43.852+03	2021-05-21 07:30:43.858+03	
1add9c03-a5b4-82bd-6da6-63c2e2e53415	2021-05-21 07:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:31:04.852+03	2021-05-21 07:31:04.87+03	
cc9534f2-f537-f419-1541-b7ea1e621255	2021-05-21 07:31:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:31:24.852+03	2021-05-21 07:31:24.86+03	
37d630c3-867b-e88f-11e8-724ac22b4370	2021-05-21 07:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:31:44.853+03	2021-05-21 07:31:44.871+03	
73a85a10-dd4d-0a35-13d9-7fdf41b73eae	2021-05-21 07:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:32:05.853+03	2021-05-21 07:32:05.859+03	
5f6eb205-b231-0743-79ac-cbb88e802d68	2021-05-21 07:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:32:25.853+03	2021-05-21 07:32:25.864+03	
89c1867e-3e88-b539-b533-57c30b5eac5f	2021-05-21 07:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:32:45.853+03	2021-05-21 07:32:45.859+03	
ead6c7f1-2d7c-f3ee-63ed-be7233f403cb	2021-05-21 07:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:12:05.853+03	2021-05-21 07:12:05.867+03	
7282e9a7-6a63-a766-1dd6-d7aff94aafe2	2021-05-21 07:12:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:12:26.854+03	2021-05-21 07:12:26.862+03	
c8ec119a-8013-92ab-a5b8-d0157702f6bf	2021-05-21 07:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:12:47.853+03	2021-05-21 07:12:47.86+03	
9fe7351b-ce30-b216-20fb-45247a79f401	2021-05-21 07:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:13:08.852+03	2021-05-21 07:13:08.861+03	
a2489c51-6da7-8e99-32ad-cdc6c6f53482	2021-05-21 07:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:13:28.853+03	2021-05-21 07:13:28.859+03	
ef75de7a-5176-1b13-3981-e8bfdd9664da	2021-05-21 07:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:13:49.852+03	2021-05-21 07:13:49.86+03	
0b607c0f-4b23-7f7c-a069-5a773da4fec8	2021-05-21 07:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:14:09.853+03	2021-05-21 07:14:09.86+03	
0de845f1-6119-c889-69b5-d098879bca71	2021-05-21 07:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:14:29.853+03	2021-05-21 07:14:29.86+03	
85244ccd-c6ac-12d8-b6f4-18bf6ea2f2d8	2021-05-21 07:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:14:50.852+03	2021-05-21 07:14:50.858+03	
038ed5ab-5a9a-5986-d326-4f3a103346ae	2021-05-21 07:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:15:10.852+03	2021-05-21 07:15:10.859+03	
4f4c0458-48f6-03f6-85a0-0f8b20040c50	2021-05-21 07:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:15:30.853+03	2021-05-21 07:15:30.86+03	
a1f99533-d11e-3ff2-d28f-124a175d3600	2021-05-21 07:15:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:15:51.853+03	2021-05-21 07:15:51.859+03	
427f7ac5-d904-1f2f-4567-1eed0e0aea02	2021-05-21 07:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:16:11.853+03	2021-05-21 07:16:11.86+03	
e0cbec40-e6ec-7566-fdcb-3f80822f9c7d	2021-05-21 07:16:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:16:31.853+03	2021-05-21 07:16:31.861+03	
920efbc0-6700-5974-945b-23c1abcf3d80	2021-05-21 07:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:16:52.852+03	2021-05-21 07:16:52.87+03	
958f4c23-c729-42fb-0d56-8145b9e7ddfc	2021-05-21 07:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:17:12.852+03	2021-05-21 07:17:12.859+03	
bbc3ee16-d5b9-268e-838c-78e1de5645f4	2021-05-21 07:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:17:32.852+03	2021-05-21 07:17:32.879+03	
464e1aa1-e58c-ca84-485a-b47cdcd722f7	2021-05-21 07:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:17:52.852+03	2021-05-21 07:17:52.859+03	
be5b29e9-da11-dc8f-49f2-f1124e33ee8e	2021-05-21 07:18:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:18:12.853+03	2021-05-21 07:18:12.861+03	
cf84a8ad-cfcf-5892-890b-f76f41b4ce2f	2021-05-21 07:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:18:33.852+03	2021-05-21 07:18:33.859+03	
c25d4769-b367-eff2-16b0-68ef718ddbe6	2021-05-21 07:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:18:53.852+03	2021-05-21 07:18:53.859+03	
6bccaf62-8033-2446-9650-06a5cfb347c6	2021-05-21 07:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:19:13.853+03	2021-05-21 07:19:13.878+03	
5f1ff591-58d4-4564-64cb-80664f632124	2021-05-21 07:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:19:34.852+03	2021-05-21 07:19:34.86+03	
2480e2d1-219c-ab78-9213-146b59679b29	2021-05-21 07:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:19:54.852+03	2021-05-21 07:19:54.859+03	
d0ee8324-d9f6-1bfa-8e6f-8c4b2002bac3	2021-05-21 07:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:20:04.852+03	2021-05-21 07:20:04.859+03	
c26c2772-97c3-be44-a709-1b13b0909b23	2021-05-21 07:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:20:24.852+03	2021-05-21 07:20:24.859+03	
ba68f17f-3141-9a62-485a-63e93d34eda5	2021-05-21 07:20:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:20:44.852+03	2021-05-21 07:20:44.859+03	
98437f4b-ba32-b227-35bc-04b1d4200726	2021-05-21 07:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:21:04.853+03	2021-05-21 07:21:04.859+03	
354b015f-8dea-720e-2985-f513689fb602	2021-05-21 07:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:21:26.852+03	2021-05-21 07:21:26.86+03	
6e8dcb34-f68e-1473-e40f-76d2843e03f7	2021-05-21 07:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:21:46.853+03	2021-05-21 07:21:46.874+03	
d96974dc-c940-ec35-6701-f1ee460bbc72	2021-05-21 07:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:22:07.853+03	2021-05-21 07:22:07.861+03	
d73d1646-7546-7d4a-e758-8ed69adf748f	2021-05-21 07:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:22:27.853+03	2021-05-21 07:22:27.86+03	
cc72da00-8c18-5433-e4e9-67b386d249a7	2021-05-21 07:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:22:47.853+03	2021-05-21 07:22:47.859+03	
bde343dc-5078-60c7-f7da-86b663695adb	2021-05-21 07:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:23:07.853+03	2021-05-21 07:23:07.862+03	
3d2430d1-a0b0-f4a0-20fe-e7dd0323a5bb	2021-05-21 07:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:23:27.853+03	2021-05-21 07:23:27.9+03	
f5a2a0fd-4db1-e146-203e-f18b834a5432	2021-05-21 07:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:23:48.852+03	2021-05-21 07:23:48.859+03	
c88759fd-2d53-fe30-4dcf-86a6b76cfcd7	2021-05-21 07:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:24:08.853+03	2021-05-21 07:24:08.859+03	
2d88756c-eb05-0990-0ca6-f85d89baa077	2021-05-21 07:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:24:29.853+03	2021-05-21 07:24:29.861+03	
8c2b7853-07b4-35d7-2c49-35bb6665517f	2021-05-21 07:24:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:24:49.853+03	2021-05-21 07:24:49.859+03	
e11c80de-c223-9758-c9f7-8ae084527f22	2021-05-21 07:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:25:10.852+03	2021-05-21 07:25:10.858+03	
747feb10-4c1d-b16b-6c3a-54c84290592f	2021-05-21 07:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:25:30.853+03	2021-05-21 07:25:30.859+03	
42edf118-0630-fdf6-5f11-4877a9e19aa4	2021-05-21 07:25:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:25:51.853+03	2021-05-21 07:25:51.861+03	
0d8dbc38-e8ac-9c8a-fc44-68f5835413a0	2021-05-21 07:26:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:26:11.853+03	2021-05-21 07:26:11.86+03	
3e4337d8-2ca9-2145-622d-f88338de7ea5	2021-05-21 07:26:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:26:32.853+03	2021-05-21 07:26:32.859+03	
da6be70c-fa0d-a738-e713-c3dd7612b306	2021-05-21 07:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:26:53.853+03	2021-05-21 07:26:53.859+03	
5526c50e-d677-f0a7-aa6e-983f306f3544	2021-05-21 07:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:27:15.853+03	2021-05-21 07:27:15.861+03	
95de9c2f-27a8-0a30-25d5-2a3a72507fba	2021-05-21 07:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:27:37.852+03	2021-05-21 07:27:37.858+03	
2da29203-34f3-6762-3c96-8980e69f2125	2021-05-21 07:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:27:57.853+03	2021-05-21 07:27:57.859+03	
3ac221cf-9857-d074-fd44-5e2e6af99234	2021-05-21 07:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:28:17.853+03	2021-05-21 07:28:17.861+03	
2c6f00c0-aec0-2f49-e04a-ce049a1f67b4	2021-05-21 07:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:28:38.852+03	2021-05-21 07:28:38.859+03	
6b957877-d3d1-25e0-c074-61b5d76289ba	2021-05-21 07:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:28:58.852+03	2021-05-21 07:28:58.859+03	
73ce1545-76c8-a564-4231-056640436f46	2021-05-21 07:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:29:18.853+03	2021-05-21 07:29:18.86+03	
a20f4638-1930-9dda-3012-acfef5b25228	2021-05-21 07:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:29:40.853+03	2021-05-21 07:29:40.861+03	
7a31751e-f48d-95ff-d10c-6ab628ab60fd	2021-05-21 07:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 07:30:00.852+03	2021-05-21 07:30:00.858+03	ERROR
32c95539-69c5-82b2-8071-4147dcffac3f	2021-05-21 07:30:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:30:11.854+03	2021-05-21 07:30:11.86+03	
d7c98ef8-7862-31ad-593f-7ef0f61e20ad	2021-05-21 07:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:30:32.853+03	2021-05-21 07:30:32.86+03	
078622ae-034c-6ae4-c684-28912e0dbe40	2021-05-21 07:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:30:53.853+03	2021-05-21 07:30:53.871+03	
4f4308a6-a5a7-53d9-e91c-a0e9def830c2	2021-05-21 07:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:31:14.852+03	2021-05-21 07:31:14.859+03	
0a7fa607-429c-62ac-4478-f9865ec9d005	2021-05-21 07:31:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:31:34.853+03	2021-05-21 07:31:34.86+03	
8876d34f-28a2-1202-c14e-1cbb29f144d8	2021-05-21 07:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:31:55.853+03	2021-05-21 07:31:55.859+03	
9294b15e-b80f-7459-a5c1-84e1a6fdedd9	2021-05-21 07:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:32:15.853+03	2021-05-21 07:32:15.864+03	
de410d2d-1b6e-2bc4-5d45-9eec351f6727	2021-05-21 07:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:32:35.853+03	2021-05-21 07:32:35.863+03	
3909bdb1-6fd8-1de3-3e68-61ee4f1d49c2	2021-05-21 07:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:32:55.853+03	2021-05-21 07:32:55.858+03	
8a2f9ab1-3e9c-867c-f2db-49045bdaf5fe	2021-05-22 10:50:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:50:26.855+03	2021-05-22 10:50:26.864+03	
de179914-df62-19d7-4457-b1ff66cdcea2	2021-05-21 07:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:33:05.853+03	2021-05-21 07:33:05.86+03	
363abbdd-575b-f60d-0ffc-fee695c809b1	2021-05-21 11:25:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:25:46.854+03	2021-05-21 11:25:46.861+03	
e5444394-acd0-8dec-862e-c7961af5493f	2021-05-21 07:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:33:25.853+03	2021-05-21 07:33:25.86+03	
ef8d441e-afbc-ee1b-7cb1-486ff4bb5b8f	2021-05-21 07:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:33:45.853+03	2021-05-21 07:33:45.86+03	
9b8bb009-eabc-8880-3c0e-e624e1ca386b	2021-05-21 11:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:26:07.853+03	2021-05-21 11:26:07.865+03	
3d7ccf76-477e-e273-b87f-9be699abaa60	2021-05-21 07:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:34:07.853+03	2021-05-21 07:34:07.862+03	
f4249c09-7a4f-4d83-c9dc-9693e535c426	2021-05-21 07:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:34:28.852+03	2021-05-21 07:34:28.859+03	
07c34c3c-dab5-890f-1be7-67c070efa90b	2021-05-21 11:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:26:28.853+03	2021-05-21 11:26:28.859+03	
55467a9f-0e72-4874-2cde-9298b2d37874	2021-05-21 07:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:34:48.853+03	2021-05-21 07:34:48.86+03	
1ffedcb2-6960-c96e-3ebc-41176cbf3b16	2021-05-21 07:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:35:09.853+03	2021-05-21 07:35:09.859+03	
68ddd498-4da8-e8f6-7080-811c5b568be5	2021-05-21 11:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:26:50.852+03	2021-05-21 11:26:50.859+03	
555c0b16-d2ce-fb27-67b4-36b6be72b448	2021-05-21 07:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:35:30.853+03	2021-05-21 07:35:30.862+03	
e5f826b6-b922-74f0-52fa-edbe4dfbc894	2021-05-21 07:35:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:35:51.852+03	2021-05-21 07:35:51.86+03	
19ba9148-e5ab-13fc-6d8a-23da7e8f6f01	2021-05-21 11:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:27:10.852+03	2021-05-21 11:27:10.859+03	
0a3a035f-2c8b-3039-c13e-2ce0c45b73a4	2021-05-21 07:36:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:36:11.853+03	2021-05-21 07:36:11.861+03	
6fc00380-3c4e-d6b5-4506-f0b0d67e100d	2021-05-21 07:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:36:32.852+03	2021-05-21 07:36:32.87+03	
7515c688-6c69-1b8f-3f57-b01c3f626ebf	2021-05-21 11:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:27:30.853+03	2021-05-21 11:27:30.868+03	
139a37ed-09bb-e433-1319-867dca73fc93	2021-05-21 07:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:36:52.853+03	2021-05-21 07:36:52.859+03	
32f2f469-a3b1-cdbd-02e2-e8b63dedd4a0	2021-05-21 07:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:37:13.852+03	2021-05-21 07:37:13.859+03	
0414532b-990f-3756-37c8-cecd678bdc3f	2021-05-21 11:27:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:27:51.854+03	2021-05-21 11:27:51.861+03	
e100248a-4031-f04f-e710-7a620392badc	2021-05-21 07:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:37:33.852+03	2021-05-21 07:37:33.859+03	
d925d601-4c1d-4e21-2991-e0205a5c076b	2021-05-21 07:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:37:53.853+03	2021-05-21 07:37:53.86+03	
b47440e4-c31c-16d1-c90b-d861e881b54e	2021-05-21 11:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:28:12.853+03	2021-05-21 11:28:13.071+03	
936b1ceb-3a8f-44e8-97b0-c85b4107f7ad	2021-05-21 07:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:38:13.853+03	2021-05-21 07:38:13.861+03	
a4887ac9-7a66-b4d6-8de7-990bef677206	2021-05-21 07:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:38:34.853+03	2021-05-21 07:38:34.86+03	
c3c0df4c-928b-b9a2-3cb8-8925e4f16a5c	2021-05-21 11:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:28:33.852+03	2021-05-21 11:28:33.873+03	
ca6a6764-c049-260e-6a09-cbb43d0a56f8	2021-05-21 07:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:38:54.853+03	2021-05-21 07:38:54.859+03	
70f1eafc-35cb-4acb-33b2-1976d9698cdf	2021-05-21 07:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:39:15.852+03	2021-05-21 07:39:15.859+03	
5facb2e9-3836-e78e-f500-66c8fb267aba	2021-05-21 11:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:28:54.853+03	2021-05-21 11:28:54.86+03	
aed8c5ab-4ead-6217-e519-921f866fe776	2021-05-21 07:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:39:35.853+03	2021-05-21 07:39:35.86+03	
30a2a872-4295-536d-d4ca-8d54c1573c92	2021-05-21 07:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 07:40:00.852+03	2021-05-21 07:40:00.859+03	ERROR
aa2edde0-3037-a129-8c96-d05de916b885	2021-05-21 11:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:29:14.853+03	2021-05-21 11:29:14.956+03	
65d5e639-e869-a27e-f983-2a5d9e380b6a	2021-05-21 07:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:40:17.853+03	2021-05-21 07:40:17.859+03	
56601944-c29a-f6d4-01d4-30c5fde47c7c	2021-05-21 07:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:40:38.853+03	2021-05-21 07:40:38.868+03	
717d7e4d-411e-eecd-fe2a-077478debfb4	2021-05-21 11:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:29:34.853+03	2021-05-21 11:29:34.861+03	
2a7add33-abb6-cde5-5112-764e52a66935	2021-05-21 11:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:29:55.853+03	2021-05-21 11:29:55.864+03	
32e23c5e-bdde-494f-6565-55cec3ca1193	2021-05-21 11:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:30:05.853+03	2021-05-21 11:30:05.87+03	
6aa08a75-6d42-c3ab-7be7-b0d6adea4813	2021-05-21 11:30:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:30:26.853+03	2021-05-21 11:30:26.861+03	
8bd6ecc4-942e-3b31-5278-e5175f643d40	2021-05-21 11:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:30:47.853+03	2021-05-21 11:30:47.86+03	
ffa77bf5-dbef-3673-54f5-fc5916e6f9c4	2021-05-21 11:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:31:07.853+03	2021-05-21 11:31:07.859+03	
97cc5e78-6feb-b04a-d45c-adb2d2b1262a	2021-05-21 11:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:31:29.852+03	2021-05-21 11:31:29.858+03	
f34b0869-4508-7e44-a263-bb948722da2d	2021-05-21 11:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:31:49.853+03	2021-05-21 11:31:49.859+03	
29fc89c3-3641-81d8-a984-8bfba4efcce0	2021-05-21 11:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:32:10.853+03	2021-05-21 11:32:10.859+03	
d7cacfa1-6016-db75-a3d3-bd3e75a00347	2021-05-21 11:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:32:30.853+03	2021-05-21 11:32:30.86+03	
1a1d8cb4-ab65-a0cb-d37d-da41698461a9	2021-05-21 11:32:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:32:51.852+03	2021-05-21 11:32:51.861+03	
a36439be-4895-ad7b-733f-e8b7956dcacc	2021-05-21 11:33:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:33:12.852+03	2021-05-21 11:33:12.862+03	
88435d54-984c-4a9f-36fd-17e6883d2b2f	2021-05-21 11:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:33:32.853+03	2021-05-21 11:33:32.859+03	
b4087b00-8176-0d66-de42-d173b3f03d71	2021-05-21 11:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:33:52.853+03	2021-05-21 11:33:52.86+03	
281e9580-5dd0-b511-73f8-7a974e45f988	2021-05-21 11:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:34:12.853+03	2021-05-21 11:34:12.859+03	
34426a5b-2873-e8d3-8bcb-e3f73a3b0c17	2021-05-21 11:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:34:33.853+03	2021-05-21 11:34:33.871+03	
529fd2ac-ef12-8355-a789-8ab9ccf81f8e	2021-05-21 11:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:34:55.853+03	2021-05-21 11:34:55.859+03	
f97712e3-3729-d503-5c6a-9a020ecbbe4c	2021-05-21 11:35:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:35:16.854+03	2021-05-21 11:35:16.86+03	
83d31f01-d97f-87fd-f10b-86f72059ea41	2021-05-21 11:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:35:37.853+03	2021-05-21 11:35:37.859+03	
c4f34eb8-c09f-002a-dc21-c2ab7c256969	2021-05-21 11:35:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:35:57.853+03	2021-05-21 11:35:57.859+03	
14c83ca7-e21b-b8eb-5ba9-b1e3930f5f75	2021-05-21 11:36:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:36:17.853+03	2021-05-21 11:36:17.86+03	
be8b621c-75b0-bd3e-99a6-bc3dab8c4edd	2021-05-21 11:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:36:37.853+03	2021-05-21 11:36:37.861+03	
9decdf1e-a408-1bdb-4ee8-ba6e2b71c96c	2021-05-21 11:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:36:58.853+03	2021-05-21 11:36:58.859+03	
a0660280-b7ce-b081-93a8-88a60868b441	2021-05-21 11:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:37:19.853+03	2021-05-21 11:37:19.86+03	
c988692e-4f8f-ee88-8981-3f20a3a2cf4d	2021-05-21 11:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:37:39.853+03	2021-05-21 11:37:39.861+03	
fa612e81-085b-e3ca-e55d-71ca3fcf2d3f	2021-05-21 11:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:37:59.853+03	2021-05-21 11:37:59.861+03	
1db5b13b-50f1-6c71-c507-f564bb1671d1	2021-05-21 11:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:38:20.853+03	2021-05-21 11:38:20.861+03	
50fd0bb8-f013-3446-3f4b-2879c364eead	2021-05-21 11:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:38:40.853+03	2021-05-21 11:38:40.859+03	
e5a83487-cd8e-2459-bfd9-e63786615ad9	2021-05-21 11:39:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:39:01.853+03	2021-05-21 11:39:01.86+03	
cfa243a4-1c05-62ef-aec2-acb0d1f069b6	2021-05-21 07:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:33:15.853+03	2021-05-21 07:33:15.863+03	
47f3a224-27d6-b9b1-4eb4-0ea9a123d68c	2021-05-21 07:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:33:35.853+03	2021-05-21 07:33:35.86+03	
cd13938c-6206-2b24-3de0-5563549ab459	2021-05-21 07:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:33:56.853+03	2021-05-21 07:33:56.86+03	
dc1c9c06-09a6-ec57-76ff-5435892f5797	2021-05-21 07:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:34:17.853+03	2021-05-21 07:34:17.864+03	
b6d61fdf-4037-284b-6f0a-ce390bbf27fb	2021-05-21 07:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:34:38.852+03	2021-05-21 07:34:38.879+03	
64b7aab9-138c-3e7d-21d9-bf9557f77bad	2021-05-21 07:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:34:59.852+03	2021-05-21 07:34:59.859+03	
e55af43f-4937-a1b4-9ce3-3496341788c4	2021-05-21 07:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:35:20.852+03	2021-05-21 07:35:20.859+03	
ada3515f-68d0-5702-efd9-4d955c12b1da	2021-05-21 07:35:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:35:41.852+03	2021-05-21 07:35:41.86+03	
b9727741-dc57-5e25-f155-e17fd394bf63	2021-05-21 07:36:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:36:01.853+03	2021-05-21 07:36:01.86+03	
43ed98d7-7184-0105-0025-ce28ee96eb55	2021-05-21 07:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:36:22.852+03	2021-05-21 07:36:22.867+03	
7ac8c325-63a4-5239-e307-5aee04e924b5	2021-05-21 07:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:36:42.853+03	2021-05-21 07:36:42.859+03	
539c81cd-cdd5-a087-80a3-e7e3fc442a45	2021-05-21 07:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:37:02.853+03	2021-05-21 07:37:02.86+03	
b33cf2b7-64f0-b3df-0943-4d9823734d24	2021-05-21 07:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:37:23.852+03	2021-05-21 07:37:23.859+03	
28749bb8-8c54-9fcc-4762-eaf1c28d1489	2021-05-21 07:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:37:43.853+03	2021-05-21 07:37:43.876+03	
42d2bc50-5924-a702-f0b4-e91671d9f6ea	2021-05-21 07:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:38:03.853+03	2021-05-21 07:38:03.861+03	
a1f9d9c3-7d73-b47d-88bd-7011b01876ca	2021-05-21 07:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:38:23.853+03	2021-05-21 07:38:23.859+03	
e09ad536-b4f6-609f-c31e-58f6ee6ceb4d	2021-05-21 07:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:38:44.853+03	2021-05-21 07:38:44.864+03	
de1c924b-54d6-912b-14cb-d83e2d25e89a	2021-05-21 07:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:39:05.852+03	2021-05-21 07:39:05.86+03	
f419ba11-f7db-18b1-72d9-c3b832362a6f	2021-05-21 07:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:39:25.852+03	2021-05-21 07:39:25.859+03	
d7d58d26-135b-929b-f15a-523651b6fcf2	2021-05-21 07:39:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:39:46.852+03	2021-05-21 07:39:46.872+03	
79868bbe-a04a-20a9-87d4-e712cd96f71e	2021-05-21 07:39:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:39:56.853+03	2021-05-21 07:39:56.86+03	
dc077ed1-77e6-de30-75b8-9b3282752fec	2021-05-21 07:40:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:40:06.854+03	2021-05-21 07:40:06.862+03	
d7692dd0-4281-671d-38c6-4e7e7c5a7202	2021-05-21 07:40:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:40:27.854+03	2021-05-21 07:40:27.861+03	
493b5769-1ba0-1d64-f72a-3e76ed391c73	2021-05-21 07:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:40:49.852+03	2021-05-21 07:40:49.871+03	
bcad3e14-c01d-11ad-604a-945873aa0d1f	2021-05-21 07:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:40:59.853+03	2021-05-21 07:40:59.86+03	
1c663ac1-e414-12a3-bfd9-c336e29e94c3	2021-05-21 07:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:41:09.853+03	2021-05-21 07:41:09.859+03	
5e87f254-908f-9507-81d0-ce6bfdef48ca	2021-05-21 07:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:41:19.853+03	2021-05-21 07:41:19.86+03	
dc0be4c2-e7e9-d420-47b6-054994890559	2021-05-21 07:41:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:41:30.853+03	2021-05-21 07:41:30.861+03	
bd1bf761-7f83-2953-d6c9-d4f1233b4aa5	2021-05-21 07:41:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:41:40.853+03	2021-05-21 07:41:40.86+03	
eaacdbaa-2c40-2b2d-8c55-bd6657c970cf	2021-05-21 07:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:41:50.853+03	2021-05-21 07:41:50.859+03	
0a6a8262-d861-b65e-d6dc-dee4d4902a65	2021-05-21 07:42:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:42:01.852+03	2021-05-21 07:42:01.859+03	
abe628f8-b761-1c9f-b44c-f49d8284c5c3	2021-05-21 07:42:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:42:11.853+03	2021-05-21 07:42:11.859+03	
1b21590f-406f-df9e-eae9-a0e9dbc7e7a6	2021-05-21 07:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:42:22.853+03	2021-05-21 07:42:22.859+03	
f792e975-df65-bae9-b204-82ab730bfe5e	2021-05-21 07:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:42:32.853+03	2021-05-21 07:42:32.861+03	
a8373239-23be-55c5-6f44-3b584cede4aa	2021-05-21 07:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:42:42.853+03	2021-05-21 07:42:42.859+03	
75b65d5b-e1e5-f264-aafc-17c4b12cd76c	2021-05-21 07:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:42:53.853+03	2021-05-21 07:42:53.86+03	
40b613d6-02c3-dab8-60da-fa006d5e6105	2021-05-21 07:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:43:03.853+03	2021-05-21 07:43:03.86+03	
e57e9bc7-2749-a811-a57a-e8de65711cbc	2021-05-21 07:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:43:14.852+03	2021-05-21 07:43:14.859+03	
a647b92a-b631-86f5-69b8-fb32acbeb775	2021-05-21 07:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:43:24.852+03	2021-05-21 07:43:24.859+03	
700df443-73a4-8759-3574-d73dbd448139	2021-05-21 07:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:43:34.853+03	2021-05-21 07:43:34.859+03	
aaa1d209-3e36-aed2-5498-14a280e9b268	2021-05-21 07:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:43:44.853+03	2021-05-21 07:43:44.861+03	
fe0c38b5-75f9-49eb-8764-36929428f69a	2021-05-21 07:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:43:54.853+03	2021-05-21 07:43:54.859+03	
58ca305c-6637-013e-8897-d759dd75a034	2021-05-21 07:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:44:04.853+03	2021-05-21 07:44:04.86+03	
ee0c2bb5-dfdd-492e-c638-9fb4db98b6ca	2021-05-21 07:44:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:44:14.853+03	2021-05-21 07:44:14.86+03	
3a7a0a88-5ed3-a2e4-429b-0664d0b16776	2021-05-21 07:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:44:24.853+03	2021-05-21 07:44:24.863+03	
9575c9f0-bfec-7f30-a759-b33a7457db13	2021-05-21 07:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:44:34.853+03	2021-05-21 07:44:34.858+03	
a67682d8-6309-5944-1b58-d4932330f671	2021-05-21 07:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:44:44.853+03	2021-05-21 07:44:44.86+03	
a45f6d00-6f29-f48c-abe0-028f297ad40d	2021-05-21 07:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:44:54.853+03	2021-05-21 07:44:54.861+03	
d3387ec3-f05c-f3c4-b08d-aedc4f3b2ea6	2021-05-21 07:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:45:04.853+03	2021-05-21 07:45:04.859+03	
5ffd3930-81d1-080d-3e55-0a42119f38bb	2021-05-21 07:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:45:14.853+03	2021-05-21 07:45:14.859+03	
57ba5f59-25b5-2b0b-3ae4-d73fe86c7ab1	2021-05-21 07:45:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:45:24.853+03	2021-05-21 07:45:24.872+03	
8aa4ab20-23a8-5711-2cad-4ed02e2c06a7	2021-05-21 07:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:45:35.853+03	2021-05-21 07:45:35.86+03	
aec3d326-398f-b28b-42d6-58133c09dc85	2021-05-21 07:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:45:45.853+03	2021-05-21 07:45:45.86+03	
7de78469-3b4a-cbee-954e-558eb3bbdd98	2021-05-21 07:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:45:55.853+03	2021-05-21 07:45:55.859+03	
2fc64ffa-dbfc-20e5-97af-e24d0f6419d0	2021-05-21 07:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:46:05.853+03	2021-05-21 07:46:05.862+03	
43714d08-31df-8567-4d1a-43cdf6d17176	2021-05-21 07:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:46:15.853+03	2021-05-21 07:46:15.859+03	
a868eb72-8a3c-78a7-e4a1-bca24e972f06	2021-05-21 07:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:46:25.853+03	2021-05-21 07:46:25.86+03	
d4444f56-8d6a-a5c6-774b-d02c740bf119	2021-05-21 07:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:46:35.853+03	2021-05-21 07:46:35.861+03	
fe30b6b3-c6e9-384f-7b7a-125ecd9257e7	2021-05-21 07:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:46:45.853+03	2021-05-21 07:46:45.861+03	
669a98e5-3c11-a98a-d815-b8658d7444c3	2021-05-21 07:46:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:46:56.852+03	2021-05-21 07:46:56.859+03	
2182daf9-71c4-ec08-3ce9-da0479e43f99	2021-05-21 07:47:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:47:06.852+03	2021-05-21 07:47:06.859+03	
6990ec1d-048d-64ec-3956-77a89c937825	2021-05-21 07:47:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:47:16.852+03	2021-05-21 07:47:16.859+03	
f44178cd-054d-8918-406c-e7d6d082913c	2021-05-21 07:47:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:47:26.852+03	2021-05-21 07:47:26.891+03	
d9862c54-ea1b-86f6-e814-3c2329ba44d5	2021-05-21 07:47:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:47:36.852+03	2021-05-21 07:47:36.861+03	
0a54ec99-0302-c235-20ed-f12667545005	2021-05-21 07:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:47:57.853+03	2021-05-21 07:47:57.86+03	
256daf5b-6eda-d7bd-f69c-de71e3b527d8	2021-05-21 07:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:48:18.853+03	2021-05-21 07:48:18.859+03	
d1a62175-0acd-ebb5-f856-5c04bf1fa14d	2021-05-21 07:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:48:40.852+03	2021-05-21 07:48:40.859+03	
898c5631-674d-8f87-ac3e-5e12f815c4ce	2021-05-21 07:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:49:00.853+03	2021-05-21 07:49:00.86+03	
c9543c9b-b5c9-5b71-3f23-fc2bf32acad4	2021-05-21 07:49:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:49:21.852+03	2021-05-21 07:49:21.86+03	
07f59749-aaf9-5ece-6db6-fa093df3a95c	2021-05-21 07:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:49:42.853+03	2021-05-21 07:49:42.859+03	
3e13f5ad-52b5-592d-9e0b-752a29abef94	2021-05-21 07:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:49:53.852+03	2021-05-21 07:49:53.86+03	
43571f1d-a45b-8e00-2701-eda5ea0b2a25	2021-05-21 07:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:50:03.853+03	2021-05-21 07:50:03.861+03	
da373f04-72b3-8d1b-efab-425d50b114b0	2021-05-21 07:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:50:23.853+03	2021-05-21 07:50:23.861+03	
76b5149f-1762-68b9-fa80-ee55eab4953c	2021-05-21 07:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:50:43.853+03	2021-05-21 07:50:43.859+03	
9ab98f5e-1bdc-06e3-06f9-e49f1be225d4	2021-05-21 07:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:51:03.853+03	2021-05-21 07:51:03.86+03	
b5d72dc7-2163-7ec2-5da9-e4d5926b086c	2021-05-21 07:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:51:24.853+03	2021-05-21 07:51:24.86+03	
761a5c64-e5e0-3cc9-d1b3-cab3cb3d1639	2021-05-21 07:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:51:45.853+03	2021-05-21 07:51:45.859+03	
53932855-60f2-1fa1-1a1c-b9bb9d175ed2	2021-05-21 07:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:52:05.853+03	2021-05-21 07:52:05.86+03	
489e567c-7eff-2a5b-935e-c415bd104c24	2021-05-21 07:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:52:25.853+03	2021-05-21 07:52:25.86+03	
a8e54539-db41-9c08-6ecb-df4b5b53d3ea	2021-05-21 07:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:52:45.853+03	2021-05-21 07:52:45.86+03	
289de383-62c8-6308-4de1-2788a3904645	2021-05-21 07:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:53:07.852+03	2021-05-21 07:53:07.859+03	
0435986f-1649-b973-a69b-070061d20d9b	2021-05-21 07:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:53:27.853+03	2021-05-21 07:53:27.861+03	
edb44e1a-2e6f-db45-ba9b-f93960629861	2021-05-21 07:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:53:47.853+03	2021-05-21 07:53:47.859+03	
7a376e95-98b4-308b-bcd1-902472ac0574	2021-05-21 07:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:54:07.853+03	2021-05-21 07:54:07.86+03	
fb33ec84-fe41-763a-3541-85b19e4db8ba	2021-05-21 07:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:54:28.852+03	2021-05-21 07:54:28.859+03	
8b5d7ca2-98e5-cfc9-8145-59cde2205f19	2021-05-21 07:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:54:48.853+03	2021-05-21 07:54:48.859+03	
0c757b68-7c2b-2029-dc4a-6ef00f1511df	2021-05-21 07:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:55:09.853+03	2021-05-21 07:55:09.86+03	
90fac0fc-85d5-77f8-5acf-19317aeff888	2021-05-21 07:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:55:29.853+03	2021-05-21 07:55:29.859+03	
692052cf-3692-917f-8707-1280ce851e83	2021-05-21 07:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:55:49.853+03	2021-05-21 07:55:49.858+03	
9a1db690-92ce-b65f-8e03-5521720d602e	2021-05-21 07:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:56:09.853+03	2021-05-21 07:56:09.86+03	
4c4334a4-4957-4fcf-de87-3775dc43a441	2021-05-21 07:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:56:29.853+03	2021-05-21 07:56:29.86+03	
7429913e-b668-5e02-e6b5-1201e6ea8984	2021-05-21 07:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:56:50.853+03	2021-05-21 07:56:50.868+03	
df494599-e808-0dbe-bff2-df64dc19a4b4	2021-05-21 07:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:57:10.853+03	2021-05-21 07:57:10.859+03	
2e990ad1-ad6f-93a7-6306-b120d7b26475	2021-05-21 07:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:57:30.853+03	2021-05-21 07:57:30.861+03	
4c5bcd9a-76c7-e465-e2de-c21f36f50404	2021-05-21 07:57:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:57:51.852+03	2021-05-21 07:57:51.86+03	
12a36f82-ea2c-6dae-3cc6-2e0601bc2f18	2021-05-21 07:58:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:58:11.853+03	2021-05-21 07:58:11.86+03	
ee8bc3b2-789a-b81f-adf0-c247b4a185cd	2021-05-21 07:58:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:58:32.853+03	2021-05-21 07:58:32.86+03	
85a6f7b4-2c83-ea94-c37c-f6221d014af3	2021-05-21 07:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:58:52.853+03	2021-05-21 07:58:52.859+03	
ca0e977e-93e3-2b20-509b-d6d2da2cdda1	2021-05-21 07:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:59:13.852+03	2021-05-21 07:59:13.865+03	
09c21dcd-fefc-92c4-6ae9-fe9e6d6fb8ea	2021-05-21 07:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:59:33.852+03	2021-05-21 07:59:33.859+03	
545ecd9d-4060-c1c9-2101-73a7e0e8f53f	2021-05-21 07:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:59:53.853+03	2021-05-21 07:59:53.859+03	
51de6239-544c-8069-e162-037d828c3501	2021-05-21 08:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:00:03.853+03	2021-05-21 08:00:03.865+03	
50dc89c8-a5c6-a6ba-2261-f0beb80def17	2021-05-21 08:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:00:23.853+03	2021-05-21 08:00:23.862+03	
5bdcb7bb-1c65-3cce-e63b-08a20d3b5e83	2021-05-21 08:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:00:44.853+03	2021-05-21 08:00:44.861+03	
ff4a10d3-7003-83e2-a309-f686d742ed70	2021-05-21 08:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:01:05.853+03	2021-05-21 08:01:05.86+03	
ab7f6f81-d63e-89c5-0d0b-3a51d13942e5	2021-05-21 08:01:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:01:26.853+03	2021-05-21 08:01:26.861+03	
3c0f00b0-eb84-8b62-2d80-86c10a98fe6e	2021-05-21 08:01:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:01:47.852+03	2021-05-21 08:01:47.859+03	
ecec832a-9520-65c2-e7d2-ccb9bfaa8bab	2021-05-21 08:02:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:02:07.853+03	2021-05-21 08:02:07.859+03	
fc41a82d-3f90-c977-653e-ae9c0f52a624	2021-05-21 08:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:02:28.852+03	2021-05-21 08:02:28.858+03	
2cd5d9a9-c60b-dd67-11d7-8f073a012fe6	2021-05-21 08:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:02:48.853+03	2021-05-21 08:02:48.862+03	
f8902606-b8e8-a7dd-0861-777ef21bf99c	2021-05-21 08:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:03:09.853+03	2021-05-21 08:03:09.862+03	
2cd1ba52-5042-4d54-02ef-f4d2ebc22268	2021-05-21 08:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:03:30.853+03	2021-05-21 08:03:30.86+03	
aeb2145f-fef4-bfa3-345a-1e81fc361df8	2021-05-21 08:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:03:52.852+03	2021-05-21 08:03:52.859+03	
dc454955-0bbb-0844-d530-8ea1d06edf9f	2021-05-21 08:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:04:13.853+03	2021-05-21 08:04:13.867+03	
68f1c837-7106-ca41-0284-092c5a8a9069	2021-05-21 08:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:04:34.853+03	2021-05-21 08:04:34.859+03	
c6f9a577-ab5a-c5f9-8fab-91614e324e0e	2021-05-21 08:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:04:55.853+03	2021-05-21 08:04:55.861+03	
2c78c20c-810b-61d1-df28-6430bf951f15	2021-05-21 08:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:05:15.853+03	2021-05-21 08:05:15.859+03	
002b87ad-50c7-b6ac-cbee-83a7f5ff3e82	2021-05-21 08:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:05:36.852+03	2021-05-21 08:05:36.859+03	
5d245121-e8ba-7a06-b2eb-f2d87ebf8340	2021-05-21 08:05:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:05:56.854+03	2021-05-21 08:05:56.861+03	
33f5aa48-f36a-2839-b797-989c60aeb56e	2021-05-21 08:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:06:17.853+03	2021-05-21 08:06:17.859+03	
7a1c6830-6d90-ca45-2900-8415b0dc7523	2021-05-21 08:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:06:38.852+03	2021-05-21 08:06:38.859+03	
dc29e9fd-7ff6-a066-6f18-118235db30fd	2021-05-21 08:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:06:58.852+03	2021-05-21 08:06:58.858+03	
f3d0f94e-7deb-5889-252f-7ec2d29e6cdc	2021-05-21 08:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:07:18.853+03	2021-05-21 08:07:18.86+03	
b886ac1a-7946-366b-2239-09b9c8af7ecd	2021-05-21 08:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:07:39.852+03	2021-05-21 08:07:39.862+03	
0cbb4d36-cc1e-25e5-cacf-2e92251272d5	2021-05-21 08:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:07:59.853+03	2021-05-21 08:07:59.86+03	
0802c379-d546-d90e-d0d6-a368eecdbccc	2021-05-21 08:08:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:08:21.852+03	2021-05-21 08:08:21.859+03	
1bf40c05-2c1d-8689-f0bf-7e045cf1f640	2021-05-21 07:47:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:47:46.853+03	2021-05-21 07:47:46.86+03	
d0603840-e4fe-b388-51d4-ad0d035db917	2021-05-21 07:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:48:07.853+03	2021-05-21 07:48:07.86+03	
a7395e74-bd93-e4f7-0b8d-a9eebe728430	2021-05-21 07:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:48:29.853+03	2021-05-21 07:48:29.858+03	
3d56e4c2-5a65-75f5-e5d5-439245b4457c	2021-05-21 07:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:48:50.853+03	2021-05-21 07:48:50.859+03	
846f9842-0343-5195-832b-6118d73ef33e	2021-05-21 07:49:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:49:11.852+03	2021-05-21 07:49:11.859+03	
67927894-de3f-94aa-d54d-7c5852a2fd49	2021-05-21 07:49:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:49:31.854+03	2021-05-21 07:49:31.86+03	
394053d4-5bd5-9f4c-2fff-690a500357f3	2021-05-21 07:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 07:50:00.852+03	2021-05-21 07:50:00.858+03	ERROR
a8607b99-70bc-6ac9-6858-0509cf3d0a26	2021-05-21 07:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:50:13.853+03	2021-05-21 07:50:13.86+03	
18f2c1ef-9090-6af5-4da4-7de56199db75	2021-05-21 07:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:50:33.853+03	2021-05-21 07:50:33.86+03	
48e298c9-23bd-ddda-7667-293b645646a5	2021-05-21 07:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:50:53.853+03	2021-05-21 07:50:53.859+03	
5e89edaf-87d8-c27e-a44c-4b943eab5c86	2021-05-21 07:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:51:13.853+03	2021-05-21 07:51:13.861+03	
614a24ad-af36-8285-0cfa-e88c713930f6	2021-05-21 07:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:51:34.853+03	2021-05-21 07:51:34.859+03	
5c916f47-8c61-81e5-55a0-513c4eadcbd6	2021-05-21 07:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:51:55.853+03	2021-05-21 07:51:55.859+03	
49bf4040-4469-bc04-6259-9c6450a1db18	2021-05-21 07:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:52:15.853+03	2021-05-21 07:52:15.86+03	
5cf90fc9-4444-2b3d-3e74-07e23ef85fdf	2021-05-21 07:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:52:35.853+03	2021-05-21 07:52:35.861+03	
d80de260-64a6-b879-83ec-499c66e52a15	2021-05-21 07:52:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:52:56.854+03	2021-05-21 07:52:56.861+03	
305b35f8-f241-edfc-821a-167955d2fe9a	2021-05-21 07:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:53:17.853+03	2021-05-21 07:53:17.86+03	
9fbecf0f-a013-e09c-44ea-9535a85d75b7	2021-05-21 07:53:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:53:37.853+03	2021-05-21 07:53:37.864+03	
446a32e8-0694-4f8e-3f3e-884e2f36bc64	2021-05-21 07:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:53:57.853+03	2021-05-21 07:53:57.859+03	
893efc01-f517-1909-9975-7a954ee1fbea	2021-05-21 07:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:54:17.853+03	2021-05-21 07:54:17.859+03	
a1483a11-582a-058f-316a-151c41ddc186	2021-05-21 07:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:54:38.853+03	2021-05-21 07:54:38.859+03	
7761ce2b-09fb-6b5c-d7ae-c9e99601ef1e	2021-05-21 07:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:54:59.853+03	2021-05-21 07:54:59.861+03	
f38e0d47-49f1-5771-2f8f-b0f7277c3edb	2021-05-21 07:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:55:19.853+03	2021-05-21 07:55:19.86+03	
348f3bba-84fa-e1c1-5a55-638aad1fca59	2021-05-21 07:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:55:39.853+03	2021-05-21 07:55:39.859+03	
03d1eb49-e73f-a038-8fcb-f2264b5b7a8a	2021-05-21 07:55:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:55:59.853+03	2021-05-21 07:55:59.858+03	
4d23557c-4f66-e196-f881-fab88ae95578	2021-05-21 07:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:56:19.853+03	2021-05-21 07:56:19.859+03	
f4f19b18-eae8-91c5-af62-c97d85631971	2021-05-21 07:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:56:40.853+03	2021-05-21 07:56:40.859+03	
42a528fc-7aa0-7d6b-f5ca-53d9fcf86f36	2021-05-21 07:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:57:00.853+03	2021-05-21 07:57:00.86+03	
0b5f7b25-d702-97fb-9c98-f7191dbfc7ff	2021-05-21 07:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:57:20.853+03	2021-05-21 07:57:20.86+03	
d9033caa-7460-f901-0cf9-803110e9086d	2021-05-21 07:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:57:40.853+03	2021-05-21 07:57:40.858+03	
9334f0e5-909f-684d-d75d-8ab0a60c6a60	2021-05-21 07:58:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:58:01.852+03	2021-05-21 07:58:01.897+03	
32a38605-a651-aae3-4316-88b5e83a04df	2021-05-21 07:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:58:22.853+03	2021-05-21 07:58:22.859+03	
0bb41a91-8652-c1c6-a274-22dc2ff6f903	2021-05-21 07:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:58:42.853+03	2021-05-21 07:58:42.863+03	
3e073dd4-d3c3-2849-83d2-0845910a0bb2	2021-05-21 07:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:59:03.852+03	2021-05-21 07:59:03.859+03	
61e1606f-f303-1170-fad8-1f7eee841816	2021-05-21 07:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:59:23.852+03	2021-05-21 07:59:23.867+03	
e106082d-5c09-7a5b-c359-22354505c8b9	2021-05-21 07:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 07:59:43.852+03	2021-05-21 07:59:43.859+03	
2b36f713-7a0a-2882-1982-db708bf0a0f9	2021-05-21 08:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 08:00:00.852+03	2021-05-21 08:00:00.858+03	ERROR
c1878f83-d4b7-d4ec-2d55-baf76e74dd54	2021-05-21 08:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:00:13.853+03	2021-05-21 08:00:13.862+03	
89294e90-8121-845a-caa2-b4d41c1818ac	2021-05-21 08:00:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:00:34.853+03	2021-05-21 08:00:34.86+03	
25c6b5a0-72c7-c298-ecf7-c5221b7bf5b3	2021-05-21 08:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:00:55.852+03	2021-05-21 08:00:55.863+03	
34e51182-843a-421e-214a-1240dc6b26d1	2021-05-21 08:01:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:01:16.852+03	2021-05-21 08:01:16.873+03	
04f8bf4b-f3dd-1010-d2c7-3463848c03f1	2021-05-21 08:01:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:01:36.854+03	2021-05-21 08:01:36.863+03	
f99c8c22-4cd9-86cb-f468-06c8f280b1dc	2021-05-21 08:01:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:01:57.852+03	2021-05-21 08:01:57.86+03	
2a18c22b-0f24-d899-0407-145014274799	2021-05-21 08:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:02:17.853+03	2021-05-21 08:02:17.86+03	
93e71218-70e1-cac7-18bf-36be6a93a16a	2021-05-21 08:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:02:38.852+03	2021-05-21 08:02:38.863+03	
943b3f62-db01-475c-dd35-92cb328ea2d0	2021-05-21 08:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:02:58.853+03	2021-05-21 08:02:58.86+03	
51250a4a-7b17-5631-2206-2098d63b2b88	2021-05-21 08:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:03:19.853+03	2021-05-21 08:03:19.86+03	
9c5a412b-b75e-1dfe-7cbc-e8d9f63f41d6	2021-05-21 08:03:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:03:41.853+03	2021-05-21 08:03:41.861+03	
614635cc-9969-5438-7f88-e3a24d463f0c	2021-05-21 08:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:04:02.853+03	2021-05-21 08:04:02.864+03	
fe65c7c3-6c5d-0c63-094f-6dab9ee16a2f	2021-05-21 08:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:04:23.853+03	2021-05-21 08:04:23.869+03	
4c57b175-7ee2-d487-ca49-5100be639158	2021-05-21 08:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:04:45.853+03	2021-05-21 08:04:45.86+03	
96776130-e637-f37b-55a0-a55da9712378	2021-05-21 08:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:05:05.853+03	2021-05-21 08:05:05.861+03	
49185507-ccb9-a26b-bcf2-39b31793c0e4	2021-05-21 08:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:05:25.853+03	2021-05-21 08:05:25.859+03	
f966ffd8-607e-77d9-fd06-95c8982ec0f0	2021-05-21 08:05:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:05:46.853+03	2021-05-21 08:05:46.86+03	
2d78eaed-d332-b80a-4000-899d979f61f5	2021-05-21 08:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:06:07.852+03	2021-05-21 08:06:07.859+03	
a0c0c505-16a4-940d-6a4a-32c13d56abfe	2021-05-21 08:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:06:28.852+03	2021-05-21 08:06:28.858+03	
15d061dc-a2e7-9f09-f45d-b80548b229ab	2021-05-21 08:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:06:48.852+03	2021-05-21 08:06:48.858+03	
8463dcdb-96f6-6992-2d8f-c63d9f3ec0fa	2021-05-21 08:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:07:08.852+03	2021-05-21 08:07:08.858+03	
19a3193e-defa-4181-ab37-5948783d7e5f	2021-05-21 08:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:07:28.853+03	2021-05-21 08:07:28.86+03	
b86925e9-2a52-26c3-2068-84fc12eb39b7	2021-05-21 08:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:07:49.853+03	2021-05-21 08:07:49.859+03	
3a2ea7ca-0630-3f8f-0af7-c21b599f9794	2021-05-21 08:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:08:10.853+03	2021-05-21 08:08:10.861+03	
10123ab6-68fc-01d1-54fb-0de566a70b59	2021-05-21 08:08:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:08:31.852+03	2021-05-21 08:08:31.861+03	
8f4a9d8d-67e9-2198-b8bc-587a701782d5	2021-05-21 08:08:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:08:51.853+03	2021-05-21 08:08:51.86+03	
ce35041b-8c61-0459-8105-2934d345852b	2021-05-21 08:08:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:08:41.852+03	2021-05-21 08:08:41.859+03	
f765e8c5-e4df-d7d3-1c45-61b30e61fcaa	2021-05-21 08:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:09:02.852+03	2021-05-21 08:09:02.858+03	
af61ee47-fe4e-18a3-7faf-46afbfca240b	2021-05-21 08:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:09:23.853+03	2021-05-21 08:09:23.874+03	
d76bd211-50b2-1a59-8264-bbec869ae165	2021-05-21 08:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:09:43.853+03	2021-05-21 08:09:43.866+03	
155fd6cd-45e3-7392-fcee-d48444571915	2021-05-21 08:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 08:10:00.852+03	2021-05-21 08:10:00.858+03	ERROR
f6ee729b-f24d-4323-17b0-9c57aad5642a	2021-05-21 08:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:10:14.853+03	2021-05-21 08:10:14.859+03	
e33de2bc-b833-c76d-8f58-3c48f3414e6e	2021-05-21 08:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:10:35.853+03	2021-05-21 08:10:35.864+03	
40e0df73-c0d1-3f89-7033-10e327b6b056	2021-05-21 08:10:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:10:56.852+03	2021-05-21 08:10:56.859+03	
53defc74-9a51-52ed-2a03-0bcd1e030b51	2021-05-21 08:11:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:11:16.852+03	2021-05-21 08:11:16.861+03	
3f18999e-5406-bcaa-a6aa-17a7fadb600a	2021-05-21 08:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:11:37.853+03	2021-05-21 08:11:37.859+03	
2b460023-4606-8c4d-eef3-916b7c0a6d40	2021-05-21 08:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:11:58.853+03	2021-05-21 08:11:58.86+03	
90627998-6e7d-29e2-cce2-a514a07c42b1	2021-05-21 08:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:12:18.853+03	2021-05-21 08:12:18.86+03	
884f289b-4ff1-4317-a216-07fb9bd85bb0	2021-05-21 08:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:12:38.853+03	2021-05-21 08:12:38.86+03	
d1be9e49-68f3-68a1-ea2f-26aefe68548b	2021-05-21 08:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:12:58.853+03	2021-05-21 08:12:58.861+03	
0112f89b-c2a0-2dcf-9ef3-ee5d623fdee8	2021-05-21 08:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:13:19.852+03	2021-05-21 08:13:19.859+03	
592a2f3d-2bc7-5d64-f0e4-767015386ef0	2021-05-21 08:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:13:39.852+03	2021-05-21 08:13:39.859+03	
487d6c02-cb3f-6352-34a3-87445831458c	2021-05-21 08:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:13:59.853+03	2021-05-21 08:13:59.863+03	
938ebb3e-c6b0-c3ce-a11e-9a2a6afa20e2	2021-05-21 08:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:14:20.853+03	2021-05-21 08:14:20.875+03	
6e179076-357c-84f1-d09b-db5c2568c027	2021-05-21 08:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:14:41.852+03	2021-05-21 08:14:41.86+03	
28f7b97e-2e5f-8522-72e7-4ab7927b18e0	2021-05-21 08:15:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:15:01.854+03	2021-05-21 08:15:01.862+03	
6904767a-2b3b-df7d-50f8-0b5d7d83fd45	2021-05-21 08:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:15:22.853+03	2021-05-21 08:15:22.859+03	
fb5d7fcf-c0b2-fbc4-7cd3-9c85cba4b0a3	2021-05-21 08:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:15:43.853+03	2021-05-21 08:15:43.881+03	
3a8f4cac-4c9b-b061-617e-f7135858a1b1	2021-05-21 08:16:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:16:03.854+03	2021-05-21 08:16:03.872+03	
c3bf3b1e-ed7b-41a1-a3f7-85e0cd6840ab	2021-05-21 08:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:16:24.852+03	2021-05-21 08:16:24.859+03	
2beb82e5-9cb5-6e76-b023-dbe84138ce95	2021-05-21 08:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:16:44.853+03	2021-05-21 08:16:44.859+03	
145e1dee-2008-0ce3-3610-ffeea85f8f61	2021-05-21 08:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:17:05.853+03	2021-05-21 08:17:05.86+03	
8a2ae27c-85ae-8f65-9df2-9df9d74c1d22	2021-05-21 08:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:17:25.853+03	2021-05-21 08:17:25.861+03	
d7dbee90-bede-92c1-2137-0e9d92aa1f43	2021-05-21 08:17:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:17:46.853+03	2021-05-21 08:17:46.861+03	
0a34730e-eff3-0507-6d90-89d2f7f039f9	2021-05-21 08:18:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:18:06.853+03	2021-05-21 08:18:06.862+03	
3c9d663c-44da-e3a6-f439-7d36bddfc1d2	2021-05-21 08:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:18:27.853+03	2021-05-21 08:18:27.859+03	
7e45bab3-4f2b-c9f0-8bd2-0ada09348713	2021-05-21 08:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:18:47.853+03	2021-05-21 08:18:47.86+03	
305c4ed8-87cd-d0fb-ddbc-d329548dab2d	2021-05-21 08:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:19:08.853+03	2021-05-21 08:19:08.859+03	
27d2d752-a96b-e9fe-bef3-579fac28f9c0	2021-05-21 08:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:19:28.853+03	2021-05-21 08:19:28.859+03	
2fa94782-9a45-e9e1-317f-a1ce0dcd436b	2021-05-21 08:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:19:49.852+03	2021-05-21 08:19:49.858+03	
c1e703d2-87e5-31bf-4b68-036643e9b47a	2021-05-21 08:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 08:20:00.852+03	2021-05-21 08:20:00.857+03	ERROR
ca8f18ea-2ba1-b5b5-e305-6fd166c67bb2	2021-05-21 08:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:20:19.853+03	2021-05-21 08:20:19.861+03	
10a0c43a-a83e-bd10-49f2-35e35f0fa3d4	2021-05-21 08:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:20:40.853+03	2021-05-21 08:20:40.86+03	
d61bbfe4-bc9b-e3cc-0df7-a9642669af34	2021-05-21 08:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:21:00.853+03	2021-05-21 08:21:00.872+03	
bef5b350-a16c-7d7a-2d34-8ba311f6194f	2021-05-21 08:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:21:20.853+03	2021-05-21 08:21:20.859+03	
8586538c-2d0e-2030-4245-636f083936ba	2021-05-21 08:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:21:40.853+03	2021-05-21 08:21:40.86+03	
f286a4ce-a87b-4e78-4739-b8c265fb2e2a	2021-05-21 08:22:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:22:01.854+03	2021-05-21 08:22:01.861+03	
9c866981-a03e-f8d7-fdb5-46d6782d2ada	2021-05-21 08:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:22:22.853+03	2021-05-21 08:22:22.86+03	
bf96b46b-8896-3926-2559-c46c95c4e249	2021-05-21 08:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:22:42.853+03	2021-05-21 08:22:42.862+03	
72b534d2-1093-e793-81b6-53ed3bd9ab7c	2021-05-21 08:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:23:04.853+03	2021-05-21 08:23:04.859+03	
68f96843-354c-c1ab-915f-93e569c91892	2021-05-21 08:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:23:24.853+03	2021-05-21 08:23:24.86+03	
88abba95-20ea-9b18-da53-efbbc42b7338	2021-05-21 08:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:23:45.853+03	2021-05-21 08:23:45.86+03	
0213efd2-de72-ebdb-5fe3-b291fa4f84dc	2021-05-21 08:24:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:24:06.852+03	2021-05-21 08:24:06.859+03	
9dc3da76-c96d-debe-1cd4-8cad3053bf47	2021-05-21 08:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:24:27.853+03	2021-05-21 08:24:27.859+03	
29a06bb4-b42e-3c1b-22fa-9749a14fd21e	2021-05-21 08:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:24:48.852+03	2021-05-21 08:24:48.86+03	
1fc14b05-2e89-ca72-852c-7daddb978bb1	2021-05-21 08:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:25:08.852+03	2021-05-21 08:25:08.858+03	
f9ac60a2-e88f-5fdd-70b0-d97d3d8c59d9	2021-05-21 08:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:25:29.852+03	2021-05-21 08:25:29.863+03	
64350166-cc77-a483-0e9b-0dfefa5bf4ee	2021-05-21 08:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:25:49.853+03	2021-05-21 08:25:49.859+03	
4a5ea3b2-e23e-97eb-3403-dfa67d9e6508	2021-05-21 08:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:26:09.853+03	2021-05-21 08:26:09.861+03	
be0a13a4-fcd9-442e-4c4e-0efb4fb3248c	2021-05-21 08:26:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:26:31.852+03	2021-05-21 08:26:31.859+03	
b8ec82dc-2b91-08e4-9d27-340299a4ce03	2021-05-21 08:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:26:52.853+03	2021-05-21 08:26:52.863+03	
836a0cdd-40c1-ff8b-8ae0-380e07891c6e	2021-05-21 08:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:27:13.852+03	2021-05-21 08:27:13.859+03	
7b8cf9c2-a8f6-c153-d52e-a7d53b764677	2021-05-21 08:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:27:34.852+03	2021-05-21 08:27:34.868+03	
31bb8a09-d938-982e-1658-f5deca11d1ef	2021-05-21 08:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:27:54.853+03	2021-05-21 08:27:54.86+03	
dcb6dab1-d30e-1c5b-ab32-8d3a945fc264	2021-05-21 08:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:28:15.853+03	2021-05-21 08:28:15.859+03	
0ac9ec49-8e8c-a91b-558a-0a4e48b7e79a	2021-05-21 08:28:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:28:36.854+03	2021-05-21 08:28:36.861+03	
9ccb8e61-1c96-054e-cefc-3f44f095ad98	2021-05-21 08:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:28:58.852+03	2021-05-21 08:28:58.861+03	
9a3cd10d-1b4a-9a5e-f5d6-fe2272842490	2021-05-21 08:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:29:18.853+03	2021-05-21 08:29:18.86+03	
4a07f9bd-3926-a75f-30bb-8fae824453d9	2021-05-21 08:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:29:39.852+03	2021-05-21 08:29:39.859+03	
784448b0-f979-6a4f-53e3-379a9564b371	2021-05-21 08:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:09:12.853+03	2021-05-21 08:09:12.86+03	
f6b6e375-9a89-ded7-84ee-2d14de4d49b3	2021-05-21 08:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:09:33.853+03	2021-05-21 08:09:33.86+03	
5fcc0fc9-0e61-47f6-a130-85536880553b	2021-05-21 08:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:09:54.852+03	2021-05-21 08:09:54.859+03	
f5fb3a27-7ab4-f749-3cd4-b28d287d72c6	2021-05-21 08:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:10:04.852+03	2021-05-21 08:10:04.871+03	
9bee103f-0e9b-1e09-db5c-4f208360a23f	2021-05-21 08:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:10:25.853+03	2021-05-21 08:10:25.86+03	
068e33c4-c176-327e-8588-adb5afe0163b	2021-05-21 08:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:10:45.853+03	2021-05-21 08:10:45.87+03	
3a455718-0621-3939-433d-9d17d9d75663	2021-05-21 08:11:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:11:06.852+03	2021-05-21 08:11:06.859+03	
ac4b684b-38c1-3110-f0ac-9db3445008e8	2021-05-21 08:11:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:11:26.854+03	2021-05-21 08:11:26.862+03	
9d5de00f-d4e4-1ad0-cdf5-55b4c2495f03	2021-05-21 08:11:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:11:48.852+03	2021-05-21 08:11:48.863+03	
fcbb589c-eff8-1ba1-90a5-5507df69f89b	2021-05-21 08:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:12:08.853+03	2021-05-21 08:12:08.86+03	
7ad73e4e-bb0b-fc11-34c6-2126975984d2	2021-05-21 08:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:12:28.853+03	2021-05-21 08:12:28.859+03	
82df7ec0-4e76-bbe0-eb8e-d4de1db5a925	2021-05-21 08:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:12:48.853+03	2021-05-21 08:12:48.859+03	
bc0d7d13-e3cf-4f9e-6b89-37a517c45703	2021-05-21 08:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:13:08.853+03	2021-05-21 08:13:08.859+03	
3a3e9fd9-2fc1-bf25-8943-ce8a6c8cf6ac	2021-05-21 08:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:13:29.852+03	2021-05-21 08:13:29.871+03	
f2ac753e-5531-ee96-4aeb-203fe3b4e369	2021-05-21 08:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:13:49.852+03	2021-05-21 08:13:49.859+03	
d0136123-be05-71ac-1ffc-59e9d2693ec7	2021-05-21 08:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:14:10.853+03	2021-05-21 08:14:10.859+03	
749a25fd-4970-62f6-8617-8b14f5b12f71	2021-05-21 08:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:14:30.853+03	2021-05-21 08:14:30.859+03	
4f2ee579-d0f6-286b-3d36-409792c25819	2021-05-21 08:14:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:14:51.852+03	2021-05-21 08:14:51.858+03	
7f203c0f-af66-0044-2aa5-19430eea1375	2021-05-21 08:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:15:12.852+03	2021-05-21 08:15:12.867+03	
00f3117e-60a9-0e1d-0581-c5d557506613	2021-05-21 08:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:15:33.853+03	2021-05-21 08:15:33.864+03	
f833d1fe-6f7c-0637-1545-9b301a5ed828	2021-05-21 08:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:15:53.853+03	2021-05-21 08:15:53.861+03	
5e2b27bc-ac36-b3d9-d3fd-5e26805b04d0	2021-05-21 08:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:16:14.852+03	2021-05-21 08:16:14.859+03	
8086553b-cc0d-e4be-bb15-89d5c5e7ef8f	2021-05-21 08:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:16:34.853+03	2021-05-21 08:16:34.861+03	
6d72fa45-5025-8f17-bbfc-47e6aded1467	2021-05-21 08:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:16:55.853+03	2021-05-21 08:16:55.859+03	
2579b1bd-ba24-01fe-bbc7-8dfc8894bad7	2021-05-21 08:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:17:15.853+03	2021-05-21 08:17:15.86+03	
58099abf-ffc2-bab1-dc9f-4a6a42aee736	2021-05-21 08:17:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:17:36.852+03	2021-05-21 08:17:36.86+03	
20e32af6-c76d-f9e9-94cc-faf17ae1dcd4	2021-05-21 08:17:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:17:56.853+03	2021-05-21 08:17:56.859+03	
c5854061-da55-ed49-5d94-4746fe6d70e7	2021-05-21 08:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:18:17.853+03	2021-05-21 08:18:17.859+03	
f6fa572c-17b4-5785-620f-129eef0cd0d5	2021-05-21 08:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:18:37.853+03	2021-05-21 08:18:37.859+03	
d1c0613e-94cb-5813-5c99-beb00a7b9ef3	2021-05-21 08:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:18:58.853+03	2021-05-21 08:18:58.87+03	
62e6c630-c07f-be76-5cdf-4820ce2e2abf	2021-05-21 08:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:19:18.853+03	2021-05-21 08:19:18.86+03	
f79cf41b-e952-1de1-a399-6e218c307309	2021-05-21 08:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:19:38.853+03	2021-05-21 08:19:38.86+03	
b7a3963b-a4b4-a767-a4d0-37685723f019	2021-05-21 08:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:19:59.852+03	2021-05-21 08:19:59.859+03	
5168836d-ea05-379d-5da8-30a03ea45aa1	2021-05-21 08:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:20:09.852+03	2021-05-21 08:20:09.873+03	
4bc97459-7c18-80ed-611d-4560fc07e2dd	2021-05-21 08:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:20:29.853+03	2021-05-21 08:20:29.86+03	
1702143f-92b2-bfa6-c959-eaced265749b	2021-05-21 08:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:20:50.853+03	2021-05-21 08:20:50.859+03	
49192152-272c-2e5b-f136-876ab4f1d8f2	2021-05-21 08:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:21:10.853+03	2021-05-21 08:21:10.859+03	
ea2620a7-9639-4a1b-621c-d6d6f8a5103d	2021-05-21 08:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:21:30.853+03	2021-05-21 08:21:30.858+03	
c1d4c855-2119-c3f3-d9ff-320b3d9fe689	2021-05-21 08:21:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:21:51.853+03	2021-05-21 08:21:51.859+03	
4867d676-9a09-8f39-51c3-1629ca17699f	2021-05-21 08:22:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:22:11.854+03	2021-05-21 08:22:11.86+03	
3c2d4eaa-b39b-a3a3-0681-c9fa244a2836	2021-05-21 08:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:22:32.853+03	2021-05-21 08:22:32.859+03	
3c5466fc-72d1-81d6-2702-bddba037f9d6	2021-05-21 08:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:22:53.853+03	2021-05-21 08:22:53.862+03	
a9fef4ff-d14f-4f4a-f148-b5f8c24d3801	2021-05-21 08:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:23:14.853+03	2021-05-21 08:23:14.859+03	
3312b610-59f4-abf1-fda6-4fd46b514dde	2021-05-21 08:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:23:34.853+03	2021-05-21 08:23:34.877+03	
0e022d16-6424-75f2-6b51-f98834b39b59	2021-05-21 08:23:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:23:56.852+03	2021-05-21 08:23:56.861+03	
0c1c4bad-11a0-6961-d4d7-242c7ad0ab73	2021-05-21 08:24:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:24:16.854+03	2021-05-21 08:24:16.861+03	
bf02ea42-66ca-af72-c0d7-44d871c5190b	2021-05-21 08:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:24:37.853+03	2021-05-21 08:24:37.862+03	
76de4c9e-7df8-cc13-82b4-1af29fbad5b7	2021-05-21 08:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:24:58.852+03	2021-05-21 08:24:58.859+03	
b607ab42-072c-6d20-9866-d699e2cedae9	2021-05-21 08:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:25:18.853+03	2021-05-21 08:25:18.863+03	
29a577e8-cb83-e3e4-5cdb-3dc18c705233	2021-05-21 08:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:25:39.852+03	2021-05-21 08:25:39.858+03	
209298ef-278f-5952-271b-a10056ddca14	2021-05-21 08:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:25:59.853+03	2021-05-21 08:25:59.86+03	
224e5e94-bd50-9526-8650-168eaec5ebf8	2021-05-21 08:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:26:20.853+03	2021-05-21 08:26:20.86+03	
e6e430cd-6a02-2477-7062-3c350dd3dbfd	2021-05-21 08:26:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:26:41.854+03	2021-05-21 08:26:41.861+03	
e79b7f57-6ed5-9c84-2d86-127aa826344e	2021-05-21 08:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:27:03.852+03	2021-05-21 08:27:03.86+03	
356b1d87-6a48-1228-2e2b-096dbec53707	2021-05-21 08:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:27:23.853+03	2021-05-21 08:27:23.86+03	
4ebc2d68-10ea-cfb7-296f-4c0fd08f5ad1	2021-05-21 08:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:27:44.852+03	2021-05-21 08:27:44.916+03	
41d32a2f-6da6-a0eb-cf18-c5b9fceea737	2021-05-21 08:28:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:28:04.853+03	2021-05-21 08:28:04.86+03	
bc5f3db9-59e4-a330-9491-16bed792cec8	2021-05-21 08:28:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:28:26.853+03	2021-05-21 08:28:26.861+03	
e5dc1bd3-0bb0-59e7-af67-60295926edbb	2021-05-21 08:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:28:47.853+03	2021-05-21 08:28:47.859+03	
03f55435-877f-44de-54af-64c0a35c5988	2021-05-21 08:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:29:08.853+03	2021-05-21 08:29:08.86+03	
90978be2-6dde-f58e-9934-b2f80b59be01	2021-05-21 08:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:29:29.852+03	2021-05-21 08:29:29.859+03	
99b1c0ce-9d0d-cc0d-3941-d576d66dff82	2021-05-21 08:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:29:49.852+03	2021-05-21 08:29:49.859+03	
8e34c82e-71d2-7db9-6ad7-63962f3f9b8e	2021-05-21 08:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 08:30:00.852+03	2021-05-21 08:30:00.858+03	ERROR
538647ce-b4d3-03b1-9e2a-5bd8a3858196	2021-05-21 08:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:29:59.852+03	2021-05-21 08:29:59.86+03	
442ce2b6-e961-4706-bf99-32cb0580214e	2021-05-21 08:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:30:09.852+03	2021-05-21 08:30:09.859+03	
43c7b1ef-b77f-6c2d-3abe-880674199565	2021-05-21 08:30:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:30:29.853+03	2021-05-21 08:30:29.86+03	
2f5ce42b-d306-024b-036a-30bb54a7382b	2021-05-21 08:30:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:30:49.853+03	2021-05-21 08:30:49.86+03	
5340b9ab-5426-ba05-b599-72c77dfd4766	2021-05-21 08:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:31:10.853+03	2021-05-21 08:31:10.859+03	
980914f7-ded6-f8b2-5f12-c231265c4e52	2021-05-21 08:31:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:31:31.854+03	2021-05-21 08:31:31.86+03	
5c03c38a-00bc-7919-d622-0911b8827445	2021-05-21 08:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:31:52.853+03	2021-05-21 08:31:52.862+03	
ebac144c-fc44-fa31-21b1-63c86c619999	2021-05-21 08:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:32:12.853+03	2021-05-21 08:32:12.859+03	
02cf0a08-c1ad-0c9b-678e-1f98b388d865	2021-05-21 08:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:32:33.852+03	2021-05-21 08:32:33.86+03	
88ccb38e-f3e5-477e-1790-803d37a0547b	2021-05-21 08:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:32:53.852+03	2021-05-21 08:32:53.86+03	
8f79db77-c1ed-0a3d-4368-808966ed2f21	2021-05-21 08:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:33:13.852+03	2021-05-21 08:33:13.86+03	
c6c6377e-c622-d384-dd37-b0bfdffee94e	2021-05-21 08:33:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:33:33.852+03	2021-05-21 08:33:33.859+03	
4b817988-b8fa-7885-3af1-817894015891	2021-05-21 08:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:33:53.853+03	2021-05-21 08:33:53.862+03	
0dd2e433-28b9-ee57-c739-cecd3e797fc7	2021-05-21 08:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:34:14.853+03	2021-05-21 08:34:14.86+03	
194e7362-2294-df2f-c20d-6d2957a9965c	2021-05-21 08:34:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:34:36.852+03	2021-05-21 08:34:36.859+03	
237fab7e-9f59-7f58-479d-18c27ca258db	2021-05-21 08:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:34:57.853+03	2021-05-21 08:34:57.861+03	
29ee7827-60d3-17a2-f44a-298ca9b3d29e	2021-05-21 08:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:35:17.853+03	2021-05-21 08:35:17.861+03	
616d60a5-beb0-df3d-7016-f53130c86b90	2021-05-21 08:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:35:37.853+03	2021-05-21 08:35:37.861+03	
8f923881-9007-db30-6f92-b736c6ddfb08	2021-05-21 08:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:35:58.853+03	2021-05-21 08:35:58.859+03	
0ebb29cb-83f3-10fb-9121-d9e8d1de0d8a	2021-05-21 08:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:36:19.853+03	2021-05-21 08:36:19.859+03	
e3d5cc21-8eff-2a5e-c28f-ddff1d91e564	2021-05-21 08:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:36:40.853+03	2021-05-21 08:36:40.859+03	
cfde48fb-1207-a251-b390-43d50d8a01b5	2021-05-21 08:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:37:00.853+03	2021-05-21 08:37:00.861+03	
6534860b-29bb-8917-242a-49de3f6ab61f	2021-05-21 08:37:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:37:20.853+03	2021-05-21 08:37:20.892+03	
ef891c00-753d-a16f-18bf-16cc450be974	2021-05-21 08:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:37:42.853+03	2021-05-21 08:37:42.859+03	
f8eaa257-0d83-5263-10a4-40829bf347a9	2021-05-21 08:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:38:02.853+03	2021-05-21 08:38:02.861+03	
f14ae02e-057d-bf4e-b5de-c2d09fa498c1	2021-05-21 08:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:38:22.853+03	2021-05-21 08:38:22.859+03	
1afe770d-a7dc-acc7-dd7d-3fe1a44a9c4f	2021-05-21 08:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:38:43.853+03	2021-05-21 08:38:43.861+03	
3028618b-8816-86d0-046d-af86a37a8640	2021-05-21 08:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:39:05.853+03	2021-05-21 08:39:05.869+03	
741ae65e-2fd1-1e04-1533-fbea9664edb5	2021-05-21 08:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:39:25.853+03	2021-05-21 08:39:25.865+03	
98d3c4dd-dada-df2b-4a3c-b05f04eca46a	2021-05-21 08:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:39:45.853+03	2021-05-21 08:39:45.875+03	
175a5e6f-c6da-8563-a572-e12d6350e2d8	2021-05-21 08:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 08:40:00.853+03	2021-05-21 08:40:00.858+03	ERROR
66603b44-c40f-b3a7-d4a2-2c9fe0b263f4	2021-05-21 08:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:40:17.852+03	2021-05-21 08:40:17.86+03	
12198457-3e8c-3a8b-4ff2-ae2ee5c344c2	2021-05-21 08:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:40:37.853+03	2021-05-21 08:40:37.86+03	
661cf5d5-68f5-04a2-e2c6-4ac700a1292a	2021-05-21 08:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:40:59.853+03	2021-05-21 08:40:59.872+03	
5bd87e8d-6933-ed01-26fd-4e90a9394bf2	2021-05-21 08:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:41:19.853+03	2021-05-21 08:41:19.86+03	
f8f027d9-7a15-2c3e-65d4-28be62849eae	2021-05-21 08:41:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:41:41.853+03	2021-05-21 08:41:41.859+03	
b1d22498-8b88-5d8b-0ac3-c197f9fe909a	2021-05-21 08:42:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:42:01.854+03	2021-05-21 08:42:01.865+03	
b99acfda-2202-2039-8f19-2a3140cb5cd9	2021-05-21 08:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:42:22.853+03	2021-05-21 08:42:22.86+03	
af55da29-2177-fea4-8dc9-446b26103a5e	2021-05-21 08:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:42:42.853+03	2021-05-21 08:42:42.86+03	
a780119e-6a86-a7dd-7253-bd779a9f301a	2021-05-21 08:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:43:03.852+03	2021-05-21 08:43:03.859+03	
55f93ffb-38c0-3413-71d3-8017a9068ae9	2021-05-21 08:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:43:23.852+03	2021-05-21 08:43:23.858+03	
43c94fed-4797-9dac-eeef-a6907ef36d45	2021-05-21 08:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:43:43.853+03	2021-05-21 08:43:43.861+03	
fcb75423-bb7e-1438-017e-196d1472d219	2021-05-21 08:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:44:03.853+03	2021-05-21 08:44:03.86+03	
2b52ad08-ed44-727b-4643-29b17dc03ec2	2021-05-21 08:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:44:24.852+03	2021-05-21 08:44:24.859+03	
21b12dae-e6e5-b113-09b0-7cbf845b3888	2021-05-21 08:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:44:45.853+03	2021-05-21 08:44:45.859+03	
ef527817-c24e-0690-8672-22567c44cc6f	2021-05-21 08:45:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:45:06.852+03	2021-05-21 08:45:06.859+03	
95655b34-a02e-702e-c87b-6581e28ffb0a	2021-05-21 08:45:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:45:26.854+03	2021-05-21 08:45:26.861+03	
033ebe1c-c74b-8146-6a20-002be83a5cf2	2021-05-21 08:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:45:47.853+03	2021-05-21 08:45:47.86+03	
bd34ba9f-8069-c865-e278-379702903fb9	2021-05-21 08:46:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:46:08.853+03	2021-05-21 08:46:08.858+03	
940ec1a0-1072-1de8-62fb-7c3f2451779d	2021-05-21 08:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:46:30.853+03	2021-05-21 08:46:30.86+03	
131f50bd-92ee-91f6-12e6-c96c4b91cb94	2021-05-21 08:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:46:50.853+03	2021-05-21 08:46:50.86+03	
0c945e76-13a9-deda-284d-d83a71c94691	2021-05-21 08:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:47:10.853+03	2021-05-21 08:47:10.86+03	
15d24411-0470-fa0d-c42b-ecf2c8ea5c8f	2021-05-21 08:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:47:30.853+03	2021-05-21 08:47:30.859+03	
25201d7f-41c7-076f-12a2-736a5ec4367b	2021-05-21 08:47:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:47:51.852+03	2021-05-21 08:47:51.859+03	
106299fd-0fa8-2918-5397-883074570045	2021-05-21 08:48:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:48:11.852+03	2021-05-21 08:48:11.859+03	
288a2a36-92c9-bc5c-6fae-76287b886ee2	2021-05-21 08:48:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:48:31.853+03	2021-05-21 08:48:31.863+03	
9a628337-e1e1-0a7a-852a-41b4b8fbb450	2021-05-21 08:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:48:52.853+03	2021-05-21 08:48:52.86+03	
c7691f2c-984c-69d5-580d-835217f39fdf	2021-05-21 08:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:49:12.853+03	2021-05-21 08:49:12.86+03	
55c0cad6-4dee-e784-8fed-5914cd7f699a	2021-05-21 08:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:49:32.853+03	2021-05-21 08:49:32.859+03	
5c028ec8-2644-9159-13c1-3b13a2d4a614	2021-05-21 08:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:49:52.853+03	2021-05-21 08:49:52.86+03	
f2c02683-f7d3-3cb0-49f7-42328c28ff26	2021-05-21 08:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:50:02.853+03	2021-05-21 08:50:02.86+03	
23443fcf-0d7d-2f57-e23b-6d253fb04152	2021-05-21 08:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:50:22.853+03	2021-05-21 08:50:22.859+03	
4acf375c-e668-48fe-2d68-b76f6ce4ff51	2021-05-21 08:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:50:43.853+03	2021-05-21 08:50:43.874+03	
64503f34-5e33-85fe-f5dc-582217995548	2021-05-21 08:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:30:19.853+03	2021-05-21 08:30:19.86+03	
01c9f783-e16c-a535-3d44-7c1fb7e7af9c	2021-05-21 08:30:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:30:39.853+03	2021-05-21 08:30:39.86+03	
6c6dcffd-df3d-c3d5-6c72-cd8c7e0d2748	2021-05-21 08:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:31:00.853+03	2021-05-21 08:31:00.859+03	
8436df87-026d-5d02-8ade-811b98daff73	2021-05-21 08:31:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:31:21.852+03	2021-05-21 08:31:21.859+03	
4032afe5-6efb-bd36-ba33-1b55ab5ae0cd	2021-05-21 08:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:31:42.852+03	2021-05-21 08:31:42.859+03	
fde9124f-a8f7-489a-d156-bbea09dfcbc6	2021-05-21 08:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:32:02.853+03	2021-05-21 08:32:02.859+03	
251c0048-d1eb-2433-08ec-8195249197d3	2021-05-21 08:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:32:22.853+03	2021-05-21 08:32:22.862+03	
4c553784-3846-8e26-4f2c-4d0e6948d9f0	2021-05-21 08:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:32:43.852+03	2021-05-21 08:32:43.868+03	
71cb0d0a-abb4-72a1-74ed-58ce59e4716d	2021-05-21 08:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:33:03.852+03	2021-05-21 08:33:03.859+03	
4f857026-e36a-9712-c2fb-a94f4b1e7e98	2021-05-21 08:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:33:23.852+03	2021-05-21 08:33:23.875+03	
ff486ac8-5f69-3605-86d2-1488759f75d5	2021-05-21 08:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:33:43.852+03	2021-05-21 08:33:43.863+03	
ff195f58-af30-63c1-2b44-f36a919b626d	2021-05-21 08:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:34:04.853+03	2021-05-21 08:34:04.859+03	
41c2f015-7770-fafe-9208-95e7d88fd6b4	2021-05-21 08:34:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:34:25.853+03	2021-05-21 08:34:25.866+03	
bd08e79f-bfe4-6f12-c086-7f503b12d239	2021-05-21 08:34:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:34:46.854+03	2021-05-21 08:34:46.864+03	
e8cdcccb-06d0-bd6f-181d-d25d1e8397f4	2021-05-21 08:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:35:07.853+03	2021-05-21 08:35:07.859+03	
ef5f8f5c-e304-5cfc-d6c8-93827d158f4b	2021-05-21 08:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:35:27.853+03	2021-05-21 08:35:27.859+03	
5d9fa321-0ac3-37b4-d490-73f57b23caac	2021-05-21 08:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:35:48.853+03	2021-05-21 08:35:48.86+03	
26d8d381-dfc8-234e-61be-0b8386e2b247	2021-05-21 08:36:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:36:08.853+03	2021-05-21 08:36:08.858+03	
05d7f2e2-8370-98d8-6cf7-3efaa8c3a21e	2021-05-21 08:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:36:29.853+03	2021-05-21 08:36:29.86+03	
29c21c40-bf21-4eab-c6ad-3a2836d840a2	2021-05-21 08:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:36:50.853+03	2021-05-21 08:36:50.861+03	
f2129c38-8ed5-56d2-214b-3033afd28a6a	2021-05-21 08:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:37:10.853+03	2021-05-21 08:37:10.86+03	
70a23850-e33b-70b7-7d72-d4acb4c806d7	2021-05-21 08:37:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:37:31.853+03	2021-05-21 08:37:31.858+03	
c4198895-4a9d-22a1-04dc-66f988d28336	2021-05-21 08:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:37:52.853+03	2021-05-21 08:37:52.859+03	
fbb1240b-74ee-e133-2b6f-41aaa6d49cce	2021-05-21 08:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:38:12.853+03	2021-05-21 08:38:12.859+03	
121626d1-b6e7-c91e-d743-6c5e4cae37da	2021-05-21 08:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:38:33.853+03	2021-05-21 08:38:33.862+03	
131cec50-a047-4ee8-1cf7-b1b613e21f1d	2021-05-21 08:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:38:54.853+03	2021-05-21 08:38:54.858+03	
f7f61e0e-7835-d8e8-0ee2-7b1ef48c1888	2021-05-21 08:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:39:15.853+03	2021-05-21 08:39:15.861+03	
c333bde8-a6ea-2bca-22b5-73744ac9f4ea	2021-05-21 08:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:39:35.853+03	2021-05-21 08:39:35.861+03	
09c71b25-c076-d454-53ff-741e69c0ee7e	2021-05-21 08:39:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:39:56.853+03	2021-05-21 08:39:56.86+03	
f21cd321-7763-b027-d727-981146cfbe7f	2021-05-21 08:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:40:07.852+03	2021-05-21 08:40:07.859+03	
c8a241db-eb0d-ad2a-611d-0df1c7c3de8c	2021-05-21 08:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:40:27.852+03	2021-05-21 08:40:27.858+03	
c34e0bee-1a95-be4e-04ec-6872d5348ab7	2021-05-21 08:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:40:48.853+03	2021-05-21 08:40:48.861+03	
5f0bb72a-2871-e66f-ac06-a05dc8b63ec9	2021-05-21 08:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:41:09.853+03	2021-05-21 08:41:09.859+03	
7e06bbe6-e634-5ce5-e90e-d5a2b587487d	2021-05-21 08:41:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:41:30.853+03	2021-05-21 08:41:30.859+03	
fc26b605-f0cb-0aac-497d-a346139a1976	2021-05-21 08:41:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:41:51.853+03	2021-05-21 08:41:51.859+03	
8edb5c38-bbc5-44c0-3d4e-33acd67725ae	2021-05-21 08:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:42:12.853+03	2021-05-21 08:42:12.863+03	
5b4b0074-c2f8-e6ea-0156-843c0561fab3	2021-05-21 08:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:42:32.853+03	2021-05-21 08:42:32.859+03	
cb16cc90-93a6-8486-4b0e-3c2315fffddd	2021-05-21 08:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:42:52.853+03	2021-05-21 08:42:52.862+03	
c9427df3-6d46-b121-46dc-f4489fee1d97	2021-05-21 08:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:43:13.852+03	2021-05-21 08:43:13.859+03	
3d0444f6-fc6d-51df-20c1-b74bf96ca549	2021-05-21 08:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:43:33.853+03	2021-05-21 08:43:33.874+03	
b4c06459-cec8-95d9-8e58-484474061897	2021-05-21 08:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:43:53.853+03	2021-05-21 08:43:53.859+03	
da064876-c367-dadf-1e72-3d6be04ee212	2021-05-21 08:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:44:13.853+03	2021-05-21 08:44:13.859+03	
6e370532-05d5-00a6-e080-0b5ec8db8ec1	2021-05-21 08:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:44:34.853+03	2021-05-21 08:44:34.86+03	
4c7950d9-a6b4-f368-6222-1c93d1068ec4	2021-05-21 08:44:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:44:56.852+03	2021-05-21 08:44:56.861+03	
9879ec8a-0558-226a-9eb7-c8b30ad4affd	2021-05-21 08:45:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:45:16.852+03	2021-05-21 08:45:16.86+03	
9ca6f2c1-8ba7-07d4-68ff-61d572c86503	2021-05-21 08:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:45:37.853+03	2021-05-21 08:45:37.859+03	
10213977-72a0-e681-e567-4c926745cd20	2021-05-21 08:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:45:57.853+03	2021-05-21 08:45:57.859+03	
7ff1e346-9315-f20a-e1f0-67354099df1e	2021-05-21 08:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:46:19.853+03	2021-05-21 08:46:19.859+03	
6fbbdc15-b499-1502-3aff-bd65320aad15	2021-05-21 08:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:46:40.853+03	2021-05-21 08:46:40.859+03	
20a3b779-ef35-3c28-742e-2456e602f079	2021-05-21 08:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:47:00.853+03	2021-05-21 08:47:00.86+03	
b1921f78-876a-3a87-a4ba-6ba107499994	2021-05-21 08:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:47:20.853+03	2021-05-21 08:47:20.859+03	
de6372a5-485b-6e25-60e4-fd891fde6057	2021-05-21 08:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:47:40.853+03	2021-05-21 08:47:40.859+03	
88b5a952-1efb-c610-1ac4-7ac4c4529a64	2021-05-21 08:48:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:48:01.852+03	2021-05-21 08:48:01.868+03	
9a369b2b-f5b8-c5f0-0b23-8480edc1e785	2021-05-21 08:48:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:48:21.852+03	2021-05-21 08:48:21.859+03	
25ea98b4-5dd0-7024-0445-06ff2c9cae61	2021-05-21 08:48:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:48:41.855+03	2021-05-21 08:48:41.863+03	
2e6d8524-c77e-b471-73e2-6feb2150f2e6	2021-05-21 08:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:49:02.853+03	2021-05-21 08:49:02.861+03	
864b7453-8344-8575-c2ed-5dde18ae8def	2021-05-21 08:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:49:22.853+03	2021-05-21 08:49:22.86+03	
010b8783-3853-3851-57f0-14e33bb0d9fd	2021-05-21 08:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:49:42.853+03	2021-05-21 08:49:42.862+03	
0d7decd7-e0b4-96df-ad13-0f5a412f59c3	2021-05-21 08:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 08:50:00.853+03	2021-05-21 08:50:00.857+03	ERROR
6940c46e-7e71-1360-f2ae-86cc8b269168	2021-05-21 08:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:50:12.853+03	2021-05-21 08:50:12.862+03	
bafb9b90-ba8c-333a-2a56-3006d6281278	2021-05-21 08:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:50:33.852+03	2021-05-21 08:50:33.859+03	
faac32f2-4da5-bc15-ea82-be3096f8f38a	2021-05-21 08:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:50:53.853+03	2021-05-21 08:50:53.859+03	
b34cb0d5-9879-9e4f-4ac7-19fd21d5c5d7	2021-05-21 08:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:51:14.853+03	2021-05-21 08:51:14.866+03	
8fb912e4-f7a2-da87-e18b-7b1c4c72093c	2021-05-21 08:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:51:04.852+03	2021-05-21 08:51:04.859+03	
b1ca5410-0afd-adf9-747c-f7437b80ae55	2021-05-21 08:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:51:25.853+03	2021-05-21 08:51:25.86+03	
10637482-a6a5-eb58-4684-a8a11bdde658	2021-05-21 08:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:51:47.853+03	2021-05-21 08:51:47.875+03	
119ec461-6ed5-0a73-9109-43be27d8618e	2021-05-21 08:52:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:52:09.853+03	2021-05-21 08:52:09.863+03	
b3b583f6-82de-0672-e5d2-c8650b36eaaa	2021-05-21 08:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:52:30.853+03	2021-05-21 08:52:30.861+03	
2d2683bf-2397-4df3-6a8a-0cf1264de5c3	2021-05-21 08:52:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:52:50.854+03	2021-05-21 08:52:50.86+03	
c52c8601-ba43-48ef-994c-d978516a3992	2021-05-21 08:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:53:12.853+03	2021-05-21 08:53:12.858+03	
5ea41abc-7af5-31db-71da-06828e9a3ae0	2021-05-21 08:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:53:33.853+03	2021-05-21 08:53:33.86+03	
3aad8b45-67e3-d0f8-4937-c9a25866e509	2021-05-21 08:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:53:53.853+03	2021-05-21 08:53:53.863+03	
10ef7f00-3ee5-eda9-4880-9cc5ff76e203	2021-05-21 08:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:54:13.853+03	2021-05-21 08:54:13.875+03	
8a42cc9a-5785-a569-3d59-28dcb45df5db	2021-05-21 08:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:54:34.852+03	2021-05-21 08:54:34.86+03	
105b2f97-8877-5411-e8a4-e7249f8c452f	2021-05-21 08:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:54:55.853+03	2021-05-21 08:54:55.86+03	
9c99a0c1-f96c-c154-682e-09e789ecbc55	2021-05-21 08:55:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:55:16.852+03	2021-05-21 08:55:16.86+03	
9f399c1d-0b84-c709-87cc-defd5d6f3ae5	2021-05-21 08:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:55:36.852+03	2021-05-21 08:55:36.858+03	
eeafa15c-2757-447a-2ffa-1a4f5813d3b3	2021-05-21 08:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:55:57.852+03	2021-05-21 08:55:57.86+03	
e035c210-a4c0-50ba-6cdc-a14c6cea0e21	2021-05-21 08:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:56:18.853+03	2021-05-21 08:56:18.863+03	
e248951e-69b9-a34e-e12f-31e135f481a9	2021-05-21 08:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:56:39.853+03	2021-05-21 08:56:39.861+03	
8a4f57d1-509b-27a5-2861-c6f0c5d6cd67	2021-05-21 08:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:56:59.853+03	2021-05-21 08:56:59.862+03	
385695a9-2c93-c6dd-7066-68ada81cca2f	2021-05-21 08:57:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:57:19.853+03	2021-05-21 08:57:19.872+03	
b7bc35a6-5b5d-87f6-dd42-b0a7e9573112	2021-05-21 08:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:57:40.853+03	2021-05-21 08:57:40.86+03	
73ae6bbf-2b9a-e4a3-b31f-36887b80dcd8	2021-05-21 08:58:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:58:01.854+03	2021-05-21 08:58:01.861+03	
2c4db5ac-05f0-f4d4-8e53-f6bbdc69aefa	2021-05-21 08:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:58:22.853+03	2021-05-21 08:58:22.861+03	
40e78e48-3d0f-b96a-8dda-41348608eaf2	2021-05-21 08:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:58:42.853+03	2021-05-21 08:58:42.858+03	
282a779c-eaf2-b542-2447-12eb1c089d5b	2021-05-21 08:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:59:03.852+03	2021-05-21 08:59:03.858+03	
6fb8b8fb-d1d0-7fbf-bf19-5f6e99ce3623	2021-05-21 08:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:59:23.852+03	2021-05-21 08:59:23.872+03	
6d643d04-3848-583a-acb9-3a623384f550	2021-05-21 08:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:59:43.853+03	2021-05-21 08:59:43.871+03	
e1f96608-bc4d-2283-354b-e2cd85bf2861	2021-05-21 08:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:59:53.853+03	2021-05-21 08:59:53.861+03	
24614115-8902-65fb-2bc3-504b3eb7c59e	2021-05-21 09:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:00:03.853+03	2021-05-21 09:00:03.862+03	
ae94918a-5e1e-db4a-25a8-03684ae7941d	2021-05-21 09:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:00:23.853+03	2021-05-21 09:00:23.862+03	
27e8dcd4-0d44-48df-43a4-04c665e8b9ce	2021-05-21 09:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:00:43.853+03	2021-05-21 09:00:43.86+03	
36ac8262-3c30-3dd2-23ba-190c61b6d400	2021-05-21 09:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:01:03.853+03	2021-05-21 09:01:03.861+03	
92d1bfdc-921d-2500-4e6e-0b9202138a28	2021-05-21 09:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:01:24.852+03	2021-05-21 09:01:24.859+03	
b6bb9277-b84b-f255-3421-9ba9d1de9319	2021-05-21 09:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:01:44.852+03	2021-05-21 09:01:44.859+03	
72ef0a69-77ea-32d1-0cf3-dd8d2279ac89	2021-05-21 09:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:02:04.852+03	2021-05-21 09:02:04.863+03	
fa616a41-38cd-d582-9904-fc943a50e410	2021-05-21 09:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:02:24.853+03	2021-05-21 09:02:24.865+03	
0b6f158e-7b30-a7f3-c765-abf029c6a1b8	2021-05-21 09:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:02:44.853+03	2021-05-21 09:02:44.871+03	
bacc230c-8f0a-f55f-72ac-7b4e1a3a322a	2021-05-21 09:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:03:04.853+03	2021-05-21 09:03:04.86+03	
b86e0c3f-6dd9-3722-0d43-c6907d7ce5a2	2021-05-21 09:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:03:25.852+03	2021-05-21 09:03:25.859+03	
44eb58cd-e041-e0b7-85e0-430fe2531a1c	2021-05-21 09:03:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:03:46.853+03	2021-05-21 09:03:46.86+03	
000202bd-43fe-d5f2-348d-090286002d4a	2021-05-21 09:04:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:04:06.853+03	2021-05-21 09:04:06.862+03	
447cc7f5-0816-e829-8b6f-edc401cda6a9	2021-05-21 09:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:04:27.853+03	2021-05-21 09:04:27.859+03	
37728d31-b144-f12b-38e3-4381ad7dafba	2021-05-21 09:04:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:04:47.853+03	2021-05-21 09:04:47.859+03	
7d0d70ca-aeff-8860-f1a7-8c607244e5f8	2021-05-21 09:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:05:08.853+03	2021-05-21 09:05:08.861+03	
00b76066-c199-7318-b4ac-e88aa4f9608a	2021-05-21 09:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:05:28.853+03	2021-05-21 09:05:28.86+03	
ea8edd77-39c4-d3b8-694f-ae8b7e3e0b6e	2021-05-21 09:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:05:50.853+03	2021-05-21 09:05:50.861+03	
f078a1e7-b11d-a6b8-f3c3-67522f00cedc	2021-05-21 09:06:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:06:11.852+03	2021-05-21 09:06:11.861+03	
cc1ad5ce-0d63-1ef9-d26f-5c31eab9833f	2021-05-21 09:06:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:06:31.853+03	2021-05-21 09:06:31.865+03	
9c2c763f-6377-3594-7228-e5c5ddbe4750	2021-05-21 09:06:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:06:51.853+03	2021-05-21 09:06:51.86+03	
dec63de6-c5b3-e0cf-29ca-369757a61772	2021-05-21 09:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:07:12.852+03	2021-05-21 09:07:12.871+03	
74b2c19c-a5d5-ffdc-c750-44285da3820f	2021-05-21 09:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:07:32.853+03	2021-05-21 09:07:32.859+03	
830999ae-de6c-f052-075c-f49b17da9eb6	2021-05-21 09:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:07:53.852+03	2021-05-21 09:07:53.869+03	
a4824d74-eeb4-dcf7-6cbb-a792b0120fd0	2021-05-21 09:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:08:13.853+03	2021-05-21 09:08:13.86+03	
98c187ce-387c-c1e0-c32e-34bb261df243	2021-05-21 09:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:08:34.852+03	2021-05-21 09:08:34.86+03	
4f8c2663-496d-8a67-bea9-cf0c0f0a20c1	2021-05-21 09:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:08:55.853+03	2021-05-21 09:08:55.86+03	
8a2b7153-9ccf-aee4-b54a-da591317c774	2021-05-21 09:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:09:16.852+03	2021-05-21 09:09:16.859+03	
7e1ece15-a354-9a4a-e235-184158d5e7e6	2021-05-21 09:09:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:09:36.852+03	2021-05-21 09:09:36.86+03	
331be9f2-8519-0cb5-fbb9-041e0567e6e6	2021-05-21 09:09:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:09:57.853+03	2021-05-21 09:09:57.86+03	
94f5da41-dd52-dcf9-c56e-b67b966573d3	2021-05-21 09:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:10:07.853+03	2021-05-21 09:10:07.86+03	
c9dbb945-8396-4325-cf7c-46a7c7410984	2021-05-21 09:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:10:27.853+03	2021-05-21 09:10:27.86+03	
3866442c-7e2c-0838-5638-2b4697087a50	2021-05-21 09:10:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:10:47.853+03	2021-05-21 09:10:47.865+03	
11136a07-8b94-62f8-7d48-09bdaddef346	2021-05-21 09:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:11:08.852+03	2021-05-21 09:11:08.859+03	
f2c3dab6-6c64-9d63-eab1-475ead970f9a	2021-05-21 09:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:11:28.852+03	2021-05-21 09:11:28.859+03	
ab6fc6d6-bf05-cb4a-d56f-77777685687a	2021-05-21 09:11:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:11:48.853+03	2021-05-21 09:11:48.859+03	
72408258-bf77-d7a6-8b46-b15b4485fe57	2021-05-21 08:51:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:51:36.854+03	2021-05-21 08:51:36.862+03	
4add9f1e-3ef6-e488-227f-42e3678c3ce2	2021-05-21 08:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:51:58.853+03	2021-05-21 08:51:58.86+03	
e9cd8dfc-319c-5043-5094-fb348baa18ae	2021-05-21 08:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:52:20.853+03	2021-05-21 08:52:20.859+03	
6a64310f-6397-2b46-e674-4c2399dcd3a1	2021-05-21 08:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:52:40.853+03	2021-05-21 08:52:40.86+03	
e4c97bbd-a3ba-ccf0-9a1a-5c07c4301ac1	2021-05-21 08:53:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:53:01.854+03	2021-05-21 08:53:01.89+03	
448b2102-1c7b-50fe-62ba-a36396cbf815	2021-05-21 08:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:53:22.853+03	2021-05-21 08:53:22.86+03	
bbe35b02-9b5d-57d7-ab18-f265844c5711	2021-05-21 08:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:53:43.853+03	2021-05-21 08:53:43.862+03	
843f60ff-6004-ccd1-4781-ce5516e47659	2021-05-21 08:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:54:03.853+03	2021-05-21 08:54:03.866+03	
8480181d-a438-7b46-0703-123eabcbbd30	2021-05-21 08:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:54:23.853+03	2021-05-21 08:54:23.86+03	
62a6cd18-cbfb-dbed-902f-1820d8a8df3e	2021-05-21 08:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:54:44.853+03	2021-05-21 08:54:44.871+03	
172374c2-f155-1914-63cb-dad27cd0f6ea	2021-05-21 08:55:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:55:06.852+03	2021-05-21 08:55:06.859+03	
d72642c6-9725-ab30-e9e7-45223219f9f5	2021-05-21 08:55:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:55:26.852+03	2021-05-21 08:55:26.859+03	
692921ca-392b-fd26-c601-7f95d24b04c7	2021-05-21 08:55:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:55:46.853+03	2021-05-21 08:55:46.869+03	
951602fe-d494-2990-8851-574301edae5b	2021-05-21 08:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:56:07.853+03	2021-05-21 08:56:07.858+03	
e7bf4410-5005-2f8b-180d-ea62c43a44b5	2021-05-21 08:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:56:29.853+03	2021-05-21 08:56:29.859+03	
05565a72-c415-eea6-c267-961025184939	2021-05-21 08:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:56:49.853+03	2021-05-21 08:56:49.859+03	
fdf63fff-0d94-f354-4ac5-f8bbb7980a0f	2021-05-21 08:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:57:09.853+03	2021-05-21 08:57:09.859+03	
ef67dc24-da70-b763-c74b-060a54d4627a	2021-05-21 08:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:57:30.853+03	2021-05-21 08:57:30.859+03	
25cb6774-9d0b-0f35-5134-30dd936b07aa	2021-05-21 08:57:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:57:51.852+03	2021-05-21 08:57:51.86+03	
87fadac1-468c-adfe-dfda-84b459aeb008	2021-05-21 08:58:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:58:12.853+03	2021-05-21 08:58:12.859+03	
77a87abb-98a4-3fd5-d8d9-d42300541782	2021-05-21 08:58:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:58:32.853+03	2021-05-21 08:58:32.859+03	
83f872cc-5611-bb65-4195-7b93c69fcce8	2021-05-21 08:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:58:52.853+03	2021-05-21 08:58:52.859+03	
c3901e9a-9a45-4817-749e-ec57c7181351	2021-05-21 08:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:59:13.852+03	2021-05-21 08:59:13.859+03	
c5a61a7d-3e39-688c-ea24-b9f4b3cab75c	2021-05-21 08:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 08:59:33.853+03	2021-05-21 08:59:33.866+03	
0fdfba10-c52c-1166-30d2-e8b4105ede31	2021-05-21 09:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 09:00:00.853+03	2021-05-21 09:00:00.863+03	ERROR
b74b3051-e6cd-c636-02b8-346e66176d39	2021-05-21 09:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:00:13.853+03	2021-05-21 09:00:13.873+03	
1e84f262-f022-9682-150e-1a35f4d7229b	2021-05-21 09:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:00:33.853+03	2021-05-21 09:00:33.86+03	
8ca6da9b-d9c6-2d21-05e9-c1fd454a388e	2021-05-21 09:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:00:53.853+03	2021-05-21 09:00:53.862+03	
e431ef90-545b-31dd-be41-6276603ce9c4	2021-05-21 09:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:01:14.852+03	2021-05-21 09:01:14.858+03	
3b356650-da53-49f1-aa12-3ad2dbbaef0d	2021-05-21 09:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:01:34.852+03	2021-05-21 09:01:34.871+03	
8c3ceb57-cd57-fac3-ca51-7c28a0d153d8	2021-05-21 09:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:01:54.852+03	2021-05-21 09:01:54.859+03	
c32c5651-76d4-97da-6205-6dd25ba775a2	2021-05-21 09:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:02:14.852+03	2021-05-21 09:02:14.861+03	
e4a55e48-86db-028d-a0ad-337a6ff4b5fb	2021-05-21 09:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:02:34.853+03	2021-05-21 09:02:34.863+03	
e6244f96-3f13-6af7-198f-25d210e62404	2021-05-21 09:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:02:54.853+03	2021-05-21 09:02:54.861+03	
2d3af393-2f88-6243-f8e7-9b942b64b834	2021-05-21 09:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:03:15.852+03	2021-05-21 09:03:15.859+03	
29c29215-b2e7-9dba-9c3a-e754a8da2000	2021-05-21 09:03:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:03:35.853+03	2021-05-21 09:03:36.15+03	
afac6012-2e5e-4a0e-f7d1-de11ccf2e76a	2021-05-21 09:03:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:03:56.853+03	2021-05-21 09:03:56.862+03	
25b13d13-2d02-60c3-6ac6-6f1b6c41fe9c	2021-05-21 09:04:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:04:16.854+03	2021-05-21 09:04:16.86+03	
c94cb33f-961b-7db0-b082-5d8ac6b2e168	2021-05-21 09:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:04:37.853+03	2021-05-21 09:04:37.859+03	
33e158b6-d22c-35c1-abba-c716a6d51f46	2021-05-21 09:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:04:58.852+03	2021-05-21 09:04:58.859+03	
62fe6873-543b-9c0f-417a-f0d75a867a94	2021-05-21 09:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:05:18.853+03	2021-05-21 09:05:18.859+03	
d6babca9-b4a6-e1b6-7fbc-8c84097e746d	2021-05-21 09:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:05:39.853+03	2021-05-21 09:05:39.865+03	
090ccfac-a566-f83b-4311-1d3ed7806e44	2021-05-21 09:06:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:06:01.852+03	2021-05-21 09:06:01.859+03	
e25704c2-ee82-db1a-d247-e8ba70d39472	2021-05-21 09:06:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:06:21.852+03	2021-05-21 09:06:21.859+03	
1d8128a3-d3b2-8a66-a0b2-8c3aee023cd0	2021-05-21 09:06:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:06:41.853+03	2021-05-21 09:06:41.872+03	
74e4cde7-1a60-38e6-e956-600c2826f40d	2021-05-21 09:07:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:07:01.854+03	2021-05-21 09:07:01.86+03	
a36e4afa-5612-231a-2e37-ba006d113d07	2021-05-21 09:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:07:22.853+03	2021-05-21 09:07:22.86+03	
6ec92b01-d6b8-e603-9182-f76f74943c74	2021-05-21 09:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:07:43.852+03	2021-05-21 09:07:43.859+03	
58eba765-10a1-d256-96e7-b5f678c160bd	2021-05-21 09:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:08:03.852+03	2021-05-21 09:08:03.859+03	
41a24afa-e769-0d78-1abf-dbadb6ef2d0d	2021-05-21 09:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:08:23.853+03	2021-05-21 09:08:23.861+03	
49f6cc97-4a86-a940-9e57-0dc92fcda57d	2021-05-21 09:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:08:44.853+03	2021-05-21 09:08:44.859+03	
cf65483a-35a7-bc0b-8ff7-ed0298122ce8	2021-05-21 09:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:09:06.852+03	2021-05-21 09:09:06.859+03	
25f9e2c0-0116-0304-fc25-cb17d76327e6	2021-05-21 09:09:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:09:26.852+03	2021-05-21 09:09:26.859+03	
b5bfdda0-bf42-cd2a-6785-c77caff0ba8b	2021-05-21 09:09:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:09:46.854+03	2021-05-21 09:09:46.862+03	
309b1992-041c-1a5a-115c-483e345b4f21	2021-05-21 09:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 09:10:00.853+03	2021-05-21 09:10:00.857+03	ERROR
807356e8-dda0-5019-041b-d131282ba72b	2021-05-21 09:10:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:10:17.853+03	2021-05-21 09:10:17.86+03	
7be45339-7031-b9e6-f8de-06d51e763a38	2021-05-21 09:10:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:10:37.853+03	2021-05-21 09:10:37.861+03	
f6d9c3f5-83ef-33b1-a2f3-5dba57db8264	2021-05-21 09:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:10:58.852+03	2021-05-21 09:10:58.859+03	
9f33dec8-33b2-3e44-ffdd-e9f076000f70	2021-05-21 09:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:11:18.852+03	2021-05-21 09:11:18.86+03	
361115c8-beff-a127-96b0-50b27300730b	2021-05-21 09:11:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:11:38.853+03	2021-05-21 09:11:38.861+03	
f65693b8-5f89-3060-84ab-b20f6079c169	2021-05-21 09:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:11:59.852+03	2021-05-21 09:11:59.872+03	
746fe0c6-f340-9bd4-422c-9693d0311709	2021-05-21 09:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:12:20.852+03	2021-05-21 09:12:20.872+03	
27e4e855-ec6a-5ef0-d689-d98b13330808	2021-05-21 09:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:12:41.852+03	2021-05-21 09:12:41.86+03	
42fb0a69-b435-e09e-b354-e38aded110de	2021-05-21 09:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:12:09.853+03	2021-05-21 09:12:09.861+03	
efc74f25-7dd8-9c78-3a60-810159baf3ad	2021-05-21 09:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:12:30.853+03	2021-05-21 09:12:30.859+03	
345da9c6-3ace-02a9-c862-89c626a36f09	2021-05-21 09:12:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:12:51.853+03	2021-05-21 09:12:51.86+03	
9240743c-a50b-cd39-4074-0a49f4597b51	2021-05-21 09:13:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:13:11.853+03	2021-05-21 09:13:11.86+03	
fb851cd6-6e5f-d530-c991-575c051dbba9	2021-05-21 09:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:13:32.852+03	2021-05-21 09:13:32.859+03	
9ea100a4-9fb4-0294-d898-1d2d0a7fa34b	2021-05-21 09:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:13:52.853+03	2021-05-21 09:13:52.86+03	
0f7f3dca-14cb-4399-dbe1-2a69617c54e7	2021-05-21 09:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:14:13.852+03	2021-05-21 09:14:13.859+03	
78cb5c0e-1a26-3a4d-3beb-8082587abbb9	2021-05-21 09:14:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:14:33.853+03	2021-05-21 09:14:33.859+03	
6e93373a-c62e-3cb5-cfac-22e35a06c28f	2021-05-21 09:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:14:54.853+03	2021-05-21 09:14:54.859+03	
2f525f90-1158-6ac1-6a32-e049e8dbe3fd	2021-05-21 09:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:15:15.853+03	2021-05-21 09:15:15.859+03	
52efa43b-e369-aa18-2ad0-9f0c77b886b7	2021-05-21 09:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:15:36.852+03	2021-05-21 09:15:36.859+03	
1a900c75-ecdf-9faf-0c4a-cac0c88a50f2	2021-05-21 09:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:15:56.852+03	2021-05-21 09:15:56.859+03	
44495525-6c87-9eb2-f529-94a1f49fd189	2021-05-21 09:16:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:16:16.853+03	2021-05-21 09:16:16.87+03	
fb820a45-7c7a-6004-85ae-97d3bf36f28a	2021-05-21 09:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:16:37.852+03	2021-05-21 09:16:37.859+03	
ab4d48bd-3b62-3f4f-d953-3ac3a6566457	2021-05-21 09:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:16:57.853+03	2021-05-21 09:16:57.859+03	
6e6867ff-50a9-6985-2715-50d4501d3337	2021-05-21 09:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:17:18.852+03	2021-05-21 09:17:18.859+03	
87e242b7-4c72-2bd1-a5d4-d46dc38fcc10	2021-05-21 09:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:17:38.853+03	2021-05-21 09:17:38.869+03	
a3b1f2d0-0cb4-7188-2778-02d1b6ca506b	2021-05-21 09:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:17:59.852+03	2021-05-21 09:17:59.861+03	
dd88b4c1-c7a0-0f05-8fd1-87fd6adf631b	2021-05-21 09:18:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:18:19.853+03	2021-05-21 09:18:19.86+03	
59205731-3de3-2bf1-0997-f4563a77e77f	2021-05-21 09:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:18:41.853+03	2021-05-21 09:18:41.859+03	
2152ccd5-e849-5923-0e22-833a55635e0c	2021-05-21 09:19:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:19:01.853+03	2021-05-21 09:19:01.914+03	
aabf41cc-a65c-9f71-96c2-24f41c91ec27	2021-05-21 09:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:19:22.852+03	2021-05-21 09:19:22.86+03	
e237c4db-e508-799a-b195-8a7887603f5f	2021-05-21 09:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:19:42.853+03	2021-05-21 09:19:42.86+03	
774cfd35-2a30-dd35-a6b7-80f77f5a2319	2021-05-21 09:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 09:20:00.853+03	2021-05-21 09:20:00.858+03	ERROR
d78642f7-e91d-8f0c-d9a5-8bba9155fc69	2021-05-21 09:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:20:13.852+03	2021-05-21 09:20:13.858+03	
6223d5ea-12ef-afcd-5bdc-d9e9701418e6	2021-05-21 09:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:20:33.852+03	2021-05-21 09:20:33.859+03	
4afb56d0-3295-1b70-d26e-620f25d34810	2021-05-21 09:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:20:54.852+03	2021-05-21 09:20:54.861+03	
6f962e01-bd72-b7f9-60a2-ec460c2697a2	2021-05-21 09:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:21:14.853+03	2021-05-21 09:21:14.86+03	
601b2eb6-944d-841d-169a-c1a8d3fd62e1	2021-05-21 09:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:21:34.853+03	2021-05-21 09:21:34.86+03	
2446a641-e5ad-439a-a291-e0be1c99ad09	2021-05-21 09:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:21:54.853+03	2021-05-21 09:21:54.858+03	
bbec083f-4d45-fa5e-08a4-7fd0e696278a	2021-05-21 09:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:22:15.853+03	2021-05-21 09:22:15.859+03	
9214cf47-8d99-ba2e-f288-88d5569c2928	2021-05-21 09:22:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:22:36.853+03	2021-05-21 09:22:36.86+03	
d08b4366-8a48-d14c-3465-1a6f31e23fbd	2021-05-21 09:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:22:57.852+03	2021-05-21 09:22:57.858+03	
44ee4239-37d4-6e05-fec8-910cc518a0b1	2021-05-21 09:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:23:17.852+03	2021-05-21 09:23:17.86+03	
98a95d8b-08fb-763f-06be-96fa65fd80ea	2021-05-21 09:23:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:23:37.853+03	2021-05-21 09:23:37.862+03	
2412b35e-e627-b62d-b75d-256bb684699a	2021-05-21 09:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:23:58.852+03	2021-05-21 09:23:58.86+03	
7ee48d95-2d7c-111c-0c89-8bd3e4956c88	2021-05-21 09:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:24:18.853+03	2021-05-21 09:24:18.859+03	
9552a65f-c5bf-a463-fd58-10701b5b79f4	2021-05-21 09:24:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:24:39.852+03	2021-05-21 09:24:39.86+03	
c0a3f4c7-d8e1-2d24-132d-730026c6d836	2021-05-21 09:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:24:59.853+03	2021-05-21 09:24:59.859+03	
5103935b-eecb-769e-292f-e4d8b571bccf	2021-05-21 09:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:25:19.853+03	2021-05-21 09:25:19.859+03	
48c7259e-7810-ac19-533b-7b9ba504a555	2021-05-21 09:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:25:39.853+03	2021-05-21 09:25:39.859+03	
415de5c3-087c-464e-5a2e-3956fffbc2d1	2021-05-21 09:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:26:00.852+03	2021-05-21 09:26:00.859+03	
06471a20-12e3-2eeb-65db-b69afb32e9c6	2021-05-21 09:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:26:20.853+03	2021-05-21 09:26:20.859+03	
21bd6fdc-688f-5b28-e094-ce0c1e81809f	2021-05-21 09:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:26:40.853+03	2021-05-21 09:26:40.859+03	
0d981872-c804-278f-5670-b39a08ba2a1b	2021-05-21 09:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:27:00.853+03	2021-05-21 09:27:00.86+03	
9fc3496f-1f0a-4e5d-03d4-9e69dab002df	2021-05-21 09:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:27:20.853+03	2021-05-21 09:27:20.859+03	
1ddb61d8-d735-e103-28ce-ac59aadf7223	2021-05-21 09:27:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:27:41.853+03	2021-05-21 09:27:41.874+03	
8731bcc5-a65a-0a56-a03a-f5c665795f6b	2021-05-21 09:28:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:28:01.853+03	2021-05-21 09:28:01.86+03	
5871dfc0-b668-6b23-8919-811616c4c1e0	2021-05-21 09:28:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:28:21.853+03	2021-05-21 09:28:21.86+03	
cbd1daaf-6f75-346f-d772-05e381eabdad	2021-05-21 09:28:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:28:41.853+03	2021-05-21 09:28:41.86+03	
854e3572-3ed4-cf04-27bd-2e29c8d1f831	2021-05-21 09:29:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:29:01.854+03	2021-05-21 09:29:01.885+03	
8eb3e531-a139-47c0-e931-b4e3b53286e2	2021-05-21 09:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:29:22.853+03	2021-05-21 09:29:22.859+03	
4e6d4adc-4bcc-2016-bf2c-3281dbd39092	2021-05-21 09:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:29:42.853+03	2021-05-21 09:29:42.859+03	
3b04ec43-b235-87e2-78c9-b83a5c44da3f	2021-05-21 09:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:29:53.853+03	2021-05-21 09:29:53.86+03	
44e0dfee-f32a-0129-7dca-2286fb7ae876	2021-05-21 09:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:30:03.853+03	2021-05-21 09:30:03.859+03	
29cd11c6-2797-3370-cb99-d4ac06c33c24	2021-05-21 09:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:30:23.853+03	2021-05-21 09:30:23.86+03	
3e96ff95-ba0b-f980-0842-e1611085f901	2021-05-21 09:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:30:44.853+03	2021-05-21 09:30:44.871+03	
51f8f319-a341-9cf1-b291-000591762065	2021-05-21 09:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:31:05.853+03	2021-05-21 09:31:05.859+03	
9ea65b95-53fc-2ff3-6419-56c7fa5210e8	2021-05-21 09:31:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:31:26.853+03	2021-05-21 09:31:26.86+03	
ec8b9482-eecb-b3c1-ba5e-99d6b2c90a9b	2021-05-21 09:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:31:47.853+03	2021-05-21 09:31:47.859+03	
215624d4-1bd9-9087-265a-50543d80e7fc	2021-05-21 09:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:32:07.853+03	2021-05-21 09:32:07.86+03	
572efceb-bde7-f394-6c82-771d28d003a2	2021-05-21 09:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:32:29.852+03	2021-05-21 09:32:29.858+03	
30c1d473-0eac-a547-867d-af10d7dd4611	2021-05-21 09:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:32:49.853+03	2021-05-21 09:32:49.86+03	
ccf5948b-b642-8325-decc-2770dcb5165a	2021-05-21 09:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:13:01.853+03	2021-05-21 09:13:01.86+03	
6ed8f9f5-1d2c-3691-609f-94f53e53a04e	2021-05-21 09:13:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:13:21.853+03	2021-05-21 09:13:21.861+03	
255396e8-b679-4967-bfaa-8bbb0fde1aab	2021-05-21 09:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:13:42.853+03	2021-05-21 09:13:42.86+03	
fef9a220-2b15-0630-ab5b-7c524b80c70b	2021-05-21 09:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:14:02.853+03	2021-05-21 09:14:02.868+03	
ac9307ec-afcb-82d1-427d-49a30f1fcf99	2021-05-21 09:14:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:14:23.852+03	2021-05-21 09:14:23.86+03	
1352c87a-cbb1-55f2-8a60-1897220f5b5f	2021-05-21 09:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:14:43.853+03	2021-05-21 09:14:43.862+03	
ae8f8f23-4689-c050-3e27-0ea8e42480cd	2021-05-21 09:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:15:04.853+03	2021-05-21 09:15:04.859+03	
708e9378-4e85-a3e3-aa22-fd20b25ad880	2021-05-21 09:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:15:25.853+03	2021-05-21 09:15:25.859+03	
3e29ac5a-9132-eead-f700-9291b953293f	2021-05-21 09:15:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:15:46.852+03	2021-05-21 09:15:46.859+03	
cb7a6396-7bbd-97e8-ed55-0369f0620b7a	2021-05-21 09:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:16:06.852+03	2021-05-21 09:16:06.86+03	
7755dd20-0fbd-6e07-ca33-2c7db4bac091	2021-05-21 09:16:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:16:26.854+03	2021-05-21 09:16:26.868+03	
8a561860-d260-0f9b-fb6d-ecc7b629e600	2021-05-21 09:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:16:47.853+03	2021-05-21 09:16:47.86+03	
a1e52aab-e330-36ab-2077-05c1bb2c6322	2021-05-21 09:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:17:08.852+03	2021-05-21 09:17:08.86+03	
f94d95b2-b4b2-15a4-f647-b1e11661dbae	2021-05-21 09:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:17:28.852+03	2021-05-21 09:17:28.858+03	
929a7c61-7071-718d-1e16-24368801b5b2	2021-05-21 09:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:17:48.853+03	2021-05-21 09:17:48.859+03	
95b87bde-526c-2ff1-6331-89b207ef23a9	2021-05-21 09:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:18:09.853+03	2021-05-21 09:18:09.862+03	
c1cdcb98-1047-752c-5294-41d17b443d35	2021-05-21 09:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:18:30.853+03	2021-05-21 09:18:30.862+03	
6b53a7e6-8237-bf3d-f825-65fa554785a4	2021-05-21 09:18:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:18:51.853+03	2021-05-21 09:18:51.86+03	
3ae91a47-8819-6a69-4c1d-ff88a739334a	2021-05-21 09:19:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:19:11.853+03	2021-05-21 09:19:11.86+03	
caee1395-f9e3-059b-a0a5-cd8254b71ca6	2021-05-21 09:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:19:32.853+03	2021-05-21 09:19:32.859+03	
6e10d641-ef96-0d58-664d-4a7386b79c9a	2021-05-21 09:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:19:52.853+03	2021-05-21 09:19:52.859+03	
5f797d43-1e3a-ffce-2a33-c72684d79134	2021-05-21 09:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:20:02.853+03	2021-05-21 09:20:02.859+03	
a15fd821-9ea8-8ce5-6ec1-2a57358ac1c3	2021-05-21 09:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:20:23.852+03	2021-05-21 09:20:23.858+03	
bf86b887-b33e-8642-78a0-2473abbabf11	2021-05-21 09:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:20:43.853+03	2021-05-21 09:20:43.86+03	
91c73a76-fdd6-632f-a46e-00dbb27a5010	2021-05-21 09:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:21:04.852+03	2021-05-21 09:21:04.859+03	
03fe4daa-bf9f-aaf9-c012-b576be628c24	2021-05-21 09:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:21:24.853+03	2021-05-21 09:21:24.871+03	
f90bfdba-fc4c-f020-a8bc-2c141202581f	2021-05-21 09:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:21:44.853+03	2021-05-21 09:21:44.859+03	
5a721ca2-ade3-8138-0bf4-7d452ffefcd2	2021-05-21 09:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:22:05.852+03	2021-05-21 09:22:05.859+03	
fb0630bf-3134-ec77-8868-3fbf58b3a44d	2021-05-21 09:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:22:25.853+03	2021-05-21 09:22:25.859+03	
aec5c943-4ae8-4105-376c-d2e9c470e1cd	2021-05-21 09:22:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:22:46.853+03	2021-05-21 09:22:46.859+03	
74d27717-eac6-32ad-8076-7aef4645c59f	2021-05-21 09:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:23:07.852+03	2021-05-21 09:23:07.859+03	
e8a69d27-b462-bfcb-32ac-663afdd87785	2021-05-21 09:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:23:27.852+03	2021-05-21 09:23:27.859+03	
6d68d1b2-92f7-c615-e0e5-f0a7225d3733	2021-05-21 09:23:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:23:47.853+03	2021-05-21 09:23:47.862+03	
f4201f2e-8781-f32d-43fd-0c04f334e2c2	2021-05-21 09:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:24:08.853+03	2021-05-21 09:24:08.86+03	
b984b195-c983-66af-e349-07c90789f670	2021-05-21 09:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:24:29.852+03	2021-05-21 09:24:29.858+03	
fdcb1f80-424a-a3f3-37d8-747ff9d556f5	2021-05-21 09:24:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:24:49.853+03	2021-05-21 09:24:49.859+03	
e5c69386-f3ed-e28a-2518-d212b6ef6b32	2021-05-21 09:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:25:09.853+03	2021-05-21 09:25:09.872+03	
f371a8ce-3f09-558a-7ceb-223bba7e8030	2021-05-21 09:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:25:29.853+03	2021-05-21 09:25:29.859+03	
0a557578-d28b-5486-cf68-4e1ba73e36f6	2021-05-21 09:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:25:49.853+03	2021-05-21 09:25:49.86+03	
983d6eb1-2a99-e7a6-ffc6-fbd842352c85	2021-05-21 09:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:26:10.853+03	2021-05-21 09:26:10.859+03	
a420288f-4eab-21be-f537-76ef849ef5bf	2021-05-21 09:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:26:30.853+03	2021-05-21 09:26:30.859+03	
90e4559f-7424-9fb4-9663-ba1bf7053acb	2021-05-21 09:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:26:50.853+03	2021-05-21 09:26:50.86+03	
cb946fca-016b-4272-a351-63c8b600b59e	2021-05-21 09:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:27:10.853+03	2021-05-21 09:27:10.859+03	
d16ea171-8c22-4e2c-d38e-29ba5645638c	2021-05-21 09:27:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:27:31.853+03	2021-05-21 09:27:31.861+03	
15c13540-da0a-23e0-0301-dd6cce878a6e	2021-05-21 09:27:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:27:51.853+03	2021-05-21 09:27:51.859+03	
f6480c57-5b8e-9533-2725-384921efc350	2021-05-21 09:28:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:28:11.853+03	2021-05-21 09:28:11.86+03	
28a2d74a-5f40-92c5-d639-fdc04fa7b90f	2021-05-21 09:28:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:28:31.853+03	2021-05-21 09:28:31.86+03	
4afa1083-f2e9-5562-ea0a-15aca0dcb96c	2021-05-21 09:28:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:28:51.853+03	2021-05-21 09:28:51.859+03	
7cd3f560-c9f7-4af8-623e-2e8eda54d360	2021-05-21 09:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:29:12.852+03	2021-05-21 09:29:12.859+03	
9a258c76-680f-e188-9cfd-a59982d5ad17	2021-05-21 09:29:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:29:32.853+03	2021-05-21 09:29:32.859+03	
bac2d9ea-0074-800c-369c-79e68182e98e	2021-05-21 09:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 09:30:00.852+03	2021-05-21 09:30:00.858+03	ERROR
cda284ce-1d5c-85ef-d0e4-751f23d1a0f8	2021-05-21 09:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:30:13.853+03	2021-05-21 09:30:13.859+03	
767cbc43-b064-87b6-1bb7-0e94c4b21535	2021-05-21 09:30:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:30:33.853+03	2021-05-21 09:30:33.859+03	
9551e70e-7de5-5997-4ab9-19375eb0e6b6	2021-05-21 09:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:30:54.853+03	2021-05-21 09:30:54.875+03	
486c388c-c2a3-ecb6-67da-953dfdd9d0c6	2021-05-21 09:31:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:31:16.852+03	2021-05-21 09:31:16.876+03	
9c8a529e-b898-a838-372c-dff8aa1361d8	2021-05-21 09:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:31:37.852+03	2021-05-21 09:31:37.859+03	
58f2e8f1-d974-ab55-90d1-4c96683601a9	2021-05-21 09:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:31:57.853+03	2021-05-21 09:31:57.859+03	
aea8a57e-323c-2b5a-1931-7b0d55f81aa1	2021-05-21 09:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:32:18.853+03	2021-05-21 09:32:18.859+03	
69d5832f-df08-e14e-55e3-72d0bbe20c62	2021-05-21 09:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:32:39.852+03	2021-05-21 09:32:39.862+03	
0d8c5cd9-073e-557e-dd46-56be1e57beeb	2021-05-21 09:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:32:59.853+03	2021-05-21 09:32:59.859+03	
3b1fc358-190b-1f4f-bb95-276db7b822e3	2021-05-21 09:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:33:20.853+03	2021-05-21 09:33:20.864+03	
80634d89-a454-05b2-d3a5-267aac65e700	2021-05-21 09:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:33:40.853+03	2021-05-21 09:33:40.859+03	
4e187d58-e2e3-d02b-f798-5ab900335d35	2021-05-21 09:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:34:01.854+03	2021-05-21 09:34:01.861+03	
1ead7992-e438-e4c6-0412-7788472fdc71	2021-05-21 21:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:59:29.853+03	2021-05-21 21:59:29.861+03	
0ee0f61c-45d2-f8e2-b7df-2c4add855e38	2021-05-21 09:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:33:10.853+03	2021-05-21 09:33:10.863+03	
e0d8b3f7-1e23-b5d1-a21b-0d6535246c63	2021-05-21 11:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:34:02.853+03	2021-05-21 11:34:02.861+03	
fdecf423-832a-d25f-bc30-89ef4d376439	2021-05-21 09:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:33:30.853+03	2021-05-21 09:33:30.863+03	
46b83da9-9c81-7427-fe79-08a36a3cac41	2021-05-21 09:33:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:33:51.852+03	2021-05-21 09:33:51.861+03	
7374d5c6-2f74-889b-c376-01763e201193	2021-05-21 11:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:34:23.853+03	2021-05-21 11:34:23.868+03	
881ff4bf-4a9a-9d8a-4abc-96c4e1d0c39c	2021-05-21 09:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:34:12.853+03	2021-05-21 09:34:12.859+03	
8aa4d165-a765-7fcd-eaee-a27b32209889	2021-05-21 09:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:34:33.852+03	2021-05-21 09:34:33.859+03	
b077d603-d676-cc64-5099-adf172391957	2021-05-21 11:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:34:44.853+03	2021-05-21 11:34:44.859+03	
f3ec0357-07c9-92d8-a93c-b0f139e98039	2021-05-21 09:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:34:53.853+03	2021-05-21 09:34:53.861+03	
6f61c7b3-d545-2fa3-9946-dfd46f68904d	2021-05-21 09:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:35:14.852+03	2021-05-21 09:35:14.873+03	
dad52e60-2a7b-6e85-6c71-fab8f6d5a914	2021-05-21 11:35:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:35:06.852+03	2021-05-21 11:35:06.859+03	
a07d1331-92cd-6a85-64ba-eb1400fc0d6a	2021-05-21 09:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:35:34.852+03	2021-05-21 09:35:34.859+03	
f68cd198-0e2d-285c-78b4-6eae9fc8cf25	2021-05-21 09:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:35:54.853+03	2021-05-21 09:35:54.862+03	
3c46b1e3-1681-31c7-2443-5181ead72ab0	2021-05-21 11:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:35:27.853+03	2021-05-21 11:35:27.868+03	
452c458e-8d2d-9cf9-2533-32ae31cec93e	2021-05-21 09:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:36:14.853+03	2021-05-21 09:36:14.86+03	
efb1e6e9-05d8-1440-59de-65f41b891283	2021-05-21 09:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:36:35.853+03	2021-05-21 09:36:35.859+03	
4b76f101-defa-ef84-1165-8ef32ecb870e	2021-05-21 11:35:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:35:47.853+03	2021-05-21 11:35:47.861+03	
2c991511-7d6a-6b16-3ae3-693f733701d2	2021-05-21 09:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:36:57.852+03	2021-05-21 09:36:57.858+03	
1faa65e9-4e3a-ae31-1c4a-2df84ebdce73	2021-05-21 09:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:37:17.853+03	2021-05-21 09:37:17.861+03	
b93e8fdc-fc8f-875d-95de-8892cfcff9b3	2021-05-21 11:36:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:36:07.853+03	2021-05-21 11:36:07.862+03	
8e842dbb-c2b5-6166-6567-660f3f01e219	2021-05-21 09:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:37:37.853+03	2021-05-21 09:37:37.86+03	
8871babf-7e59-bf9f-f18a-f3cc539d7057	2021-05-21 09:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:37:57.853+03	2021-05-21 09:37:57.86+03	
5c75ca13-f340-4d91-b22a-23ef0d3d1cb1	2021-05-21 11:36:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:36:27.853+03	2021-05-21 11:36:27.859+03	
fc8da25b-f16f-2946-8438-95ac65f470ac	2021-05-21 09:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:38:17.853+03	2021-05-21 09:38:17.869+03	
e91243bc-5e10-abae-423b-094521403fa0	2021-05-21 09:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:38:38.852+03	2021-05-21 09:38:38.869+03	
36adb523-c412-6a50-7d07-422d9bca8ece	2021-05-21 11:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:36:47.853+03	2021-05-21 11:36:47.86+03	
a88b325b-1250-a2ee-ceb4-8239e666b5a6	2021-05-21 09:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:38:59.853+03	2021-05-21 09:38:59.86+03	
c1178fd0-0a73-41c9-2ea1-46f3b540bc9d	2021-05-21 09:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:39:19.853+03	2021-05-21 09:39:19.859+03	
83b502b9-8cb2-ffbc-881d-4cd25d718719	2021-05-21 11:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:37:09.853+03	2021-05-21 11:37:09.859+03	
b964a512-5f64-10d3-47be-ab6d50e98f23	2021-05-21 09:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:39:40.852+03	2021-05-21 09:39:40.86+03	
17b09134-fc0c-73e8-8dbc-d115195b0002	2021-05-21 09:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:39:50.853+03	2021-05-21 09:39:50.87+03	
830d7ef5-c3e0-3e58-ccc9-2bcc0188383d	2021-05-21 11:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:37:29.853+03	2021-05-21 11:37:29.859+03	
dced4eb2-c932-a82c-ada7-158f6d69e320	2021-05-21 09:40:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:40:01.853+03	2021-05-21 09:40:01.905+03	
e8f6cd00-4369-3ea6-b88f-4c57fb76af2d	2021-05-21 09:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:40:21.853+03	2021-05-21 09:40:21.86+03	
e21954df-c7a0-6768-b566-665fff809af6	2021-05-21 11:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:37:49.853+03	2021-05-21 11:37:49.859+03	
d40045fc-e902-affa-548b-e50388853dec	2021-05-21 09:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:40:41.853+03	2021-05-21 09:40:41.86+03	
7adabb6c-3b3f-5a7a-5241-d92db984b1ff	2021-05-21 09:41:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:41:01.853+03	2021-05-21 09:41:01.86+03	
7f05b7a0-adeb-ca4b-3310-a1f206aaa6e2	2021-05-21 11:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:38:10.852+03	2021-05-21 11:38:10.86+03	
cabfb1b9-7e1d-ca51-40e3-a75260d39f31	2021-05-21 09:41:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:41:21.853+03	2021-05-21 09:41:21.859+03	
22897667-619a-605f-e982-52ade669b5c8	2021-05-21 11:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:38:30.853+03	2021-05-21 11:38:30.86+03	
003420b3-4f64-5b72-7890-bea37a468669	2021-05-21 11:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:38:50.853+03	2021-05-21 11:38:50.859+03	
792dead5-0b66-b444-b3c1-3c9c30763366	2021-05-21 11:39:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:39:11.853+03	2021-05-21 11:39:11.861+03	
a28981a0-d1e4-4885-468b-a0406530c773	2021-05-21 11:39:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:39:31.853+03	2021-05-21 11:39:31.86+03	
f1a42d5e-5e81-8e73-47d7-e560ab7ffbcf	2021-05-21 11:39:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:39:51.853+03	2021-05-21 11:39:51.864+03	
c0903c69-422d-6420-ca80-47de83002212	2021-05-21 11:40:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:40:01.853+03	2021-05-21 11:40:01.859+03	
ef1806cf-1c6f-5cff-5520-387dc84f8197	2021-05-21 11:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:40:22.853+03	2021-05-21 11:40:22.86+03	
234af345-c79e-df7c-3182-d310c3af1c7a	2021-05-21 11:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:40:42.853+03	2021-05-21 11:40:42.859+03	
579a90a1-7a63-c0ff-6738-045ffc716329	2021-05-21 11:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:41:02.853+03	2021-05-21 11:41:02.862+03	
8666679a-6d9e-4f01-8684-a833af6d2a77	2021-05-21 11:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:41:23.852+03	2021-05-21 11:41:23.86+03	
87989abf-9eb8-816c-01eb-ecc0f97dc12e	2021-05-21 11:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:41:43.853+03	2021-05-21 11:41:43.859+03	
832ab66c-2e7b-3f1f-a92c-e39a4d415af9	2021-05-21 11:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:42:03.853+03	2021-05-21 11:42:03.861+03	
6a0e121f-672e-ff55-61b4-f3afe034a26a	2021-05-21 11:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:42:23.853+03	2021-05-21 11:42:23.861+03	
3563f0d2-5406-99e0-d5f1-a1e8ec837681	2021-05-21 11:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:42:43.853+03	2021-05-21 11:42:43.86+03	
f7700af0-bb6d-b277-c4ca-db22f912b044	2021-05-21 11:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:43:04.853+03	2021-05-21 11:43:04.868+03	
a5adeff0-5915-f7c3-185a-f463df452fa1	2021-05-21 11:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:43:25.853+03	2021-05-21 11:43:25.86+03	
5c7b6d3c-30e1-f532-9f82-a30b821fbce2	2021-05-21 11:43:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:43:46.854+03	2021-05-21 11:43:46.862+03	
adbf05ea-ac32-d68b-7ee5-fdb9e8833a54	2021-05-21 11:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:44:07.853+03	2021-05-21 11:44:07.862+03	
b07e0f61-6dfd-42e8-6c0f-27ad1c48c603	2021-05-21 11:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:44:28.853+03	2021-05-21 11:44:28.862+03	
b8832f6d-246d-3461-f765-82dba907fa6f	2021-05-21 11:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:44:49.852+03	2021-05-21 11:44:49.858+03	
027536fd-edf2-bbb7-4edc-c2339240bfb1	2021-05-21 11:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:45:10.852+03	2021-05-21 11:45:10.86+03	
1863fafc-96cf-73c8-2825-1232a8a4ba48	2021-05-21 11:45:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:45:31.855+03	2021-05-21 11:45:31.864+03	
f7abc9cb-6d46-6b08-92ff-abfc33ee6fd8	2021-05-21 11:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:45:53.852+03	2021-05-21 11:45:53.859+03	
e1d3a307-b44e-b306-c958-6f9223e01ead	2021-05-21 11:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:46:13.853+03	2021-05-21 11:46:13.867+03	
744f8812-ad00-b23c-0dac-81e08fd588d4	2021-05-21 09:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:34:23.852+03	2021-05-21 09:34:23.86+03	
aeaa6f92-36ab-01f9-0485-bc3f408a848b	2021-05-21 09:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:34:43.853+03	2021-05-21 09:34:43.872+03	
f62d1528-7791-8b65-802d-1500f81520ca	2021-05-21 09:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:35:03.853+03	2021-05-21 09:35:03.86+03	
5b863232-57ea-0d4a-7740-fb606e2860c6	2021-05-21 09:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:35:24.852+03	2021-05-21 09:35:24.859+03	
3e13fd60-5483-74d0-420e-76e78ff141b1	2021-05-21 09:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:35:44.853+03	2021-05-21 09:35:44.863+03	
aa12c7fa-150c-b1f9-48c2-3efabf0311a0	2021-05-21 09:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:36:04.853+03	2021-05-21 09:36:04.862+03	
c3432505-90fd-1182-c0a8-cdd9875145aa	2021-05-21 09:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:36:24.853+03	2021-05-21 09:36:24.86+03	
3a21ac77-c3f4-b2c8-3823-c3e2d97f41f7	2021-05-21 09:36:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:36:46.854+03	2021-05-21 09:36:46.86+03	
21f0f529-d207-f345-87b4-d6480bc8ad1e	2021-05-21 09:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:37:07.853+03	2021-05-21 09:37:07.86+03	
07795e07-1112-f6cb-0707-4fa2d7374f70	2021-05-21 09:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:37:27.853+03	2021-05-21 09:37:27.859+03	
75317d8f-9daa-dd50-7055-fee47e682aaf	2021-05-21 09:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:37:47.853+03	2021-05-21 09:37:47.861+03	
20c39fe6-d251-4820-8004-07b199aab7b0	2021-05-21 09:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:38:07.853+03	2021-05-21 09:38:07.859+03	
ff176c20-b310-5461-e95f-af9b454f2917	2021-05-21 09:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:38:28.852+03	2021-05-21 09:38:28.859+03	
66caf7f8-42b1-7553-443e-42b51358bc29	2021-05-21 09:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:38:48.853+03	2021-05-21 09:38:48.861+03	
99ae6473-3952-f810-8e8f-743f57b1f752	2021-05-21 09:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:39:09.853+03	2021-05-21 09:39:09.86+03	
e7f23552-5371-e03e-1731-696a9053f47e	2021-05-21 09:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:39:29.853+03	2021-05-21 09:39:29.899+03	
24323c6d-7123-928d-fa6c-35eea0bf5cee	2021-05-21 09:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 09:40:00.852+03	2021-05-21 09:40:00.857+03	ERROR
04598c4e-ac0e-7161-a4df-826b92a523f8	2021-05-21 09:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:40:11.853+03	2021-05-21 09:40:11.86+03	
06040472-8cca-da81-3b2f-c50c418a4b0d	2021-05-21 09:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:40:31.853+03	2021-05-21 09:40:31.863+03	
ac962e40-1271-8aee-732e-1c76fbd81135	2021-05-21 09:40:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:40:51.853+03	2021-05-21 09:40:51.861+03	
2dbfbab9-de24-a295-1386-d7631381819e	2021-05-21 09:41:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:41:11.853+03	2021-05-21 09:41:11.861+03	
431a3d3b-672d-9839-824d-8ac0a9136606	2021-05-21 09:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:41:31.853+03	2021-05-21 09:41:31.859+03	
8c3ef36b-61d5-e5f2-df5f-5a94c086dee6	2021-05-21 09:41:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:41:41.853+03	2021-05-21 09:41:41.859+03	
769e7add-36f4-a9eb-6028-15bb86b6e19a	2021-05-21 09:41:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:41:51.853+03	2021-05-21 09:41:51.864+03	
cb53f08b-5e45-2158-2c10-7c458163fa9c	2021-05-21 09:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:42:02.853+03	2021-05-21 09:42:02.861+03	
5d4f621f-0017-e535-6ae0-eecdf15a3b85	2021-05-21 09:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:42:13.853+03	2021-05-21 09:42:13.86+03	
30afc997-fed8-7212-50af-b0c54e55ecb7	2021-05-21 09:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:42:24.852+03	2021-05-21 09:42:24.859+03	
1d1c3245-ece4-3ef8-d930-1bac845de297	2021-05-21 09:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:42:34.853+03	2021-05-21 09:42:34.859+03	
52c425de-d0c7-5be3-d02d-867dd355955c	2021-05-21 09:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:42:45.853+03	2021-05-21 09:42:45.858+03	
69a56b7b-cffd-4686-8dc8-1a33e0d9a971	2021-05-21 09:42:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:42:56.852+03	2021-05-21 09:42:56.859+03	
ad618e7b-709d-215e-a69d-e095b4d2912c	2021-05-21 09:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:43:06.853+03	2021-05-21 09:43:06.859+03	
0e5025c9-5958-124d-931b-d3a545c2a43f	2021-05-21 09:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:43:17.853+03	2021-05-21 09:43:17.862+03	
80686868-b2be-8668-bbc3-262bc9bc7c80	2021-05-21 09:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:43:28.853+03	2021-05-21 09:43:28.861+03	
3c9fd929-03a7-fbcd-8ac2-cb585c69ce73	2021-05-21 09:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:43:38.853+03	2021-05-21 09:43:38.86+03	
0abb0bb2-223d-4162-395f-7d27c37cabb1	2021-05-21 09:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:43:48.853+03	2021-05-21 09:43:48.859+03	
26a297a8-7817-0615-cf7f-6bf7921c1fe9	2021-05-21 09:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:43:58.853+03	2021-05-21 09:43:58.861+03	
3a05a76a-433f-915c-d0f6-d5671179a901	2021-05-21 09:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:44:08.853+03	2021-05-21 09:44:08.86+03	
d6de6260-5570-a133-f61f-533b645f155a	2021-05-21 09:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:44:19.852+03	2021-05-21 09:44:19.858+03	
f2dc5ae9-edf3-9fee-40ba-6b979b5eca8f	2021-05-21 09:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:44:29.852+03	2021-05-21 09:44:29.859+03	
01d409ab-2066-df16-36a7-e79ce0bd71f3	2021-05-21 09:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:44:39.853+03	2021-05-21 09:44:39.861+03	
0b7c759c-7b47-c0b0-621f-d52a57a51322	2021-05-21 09:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:44:50.853+03	2021-05-21 09:44:50.861+03	
4edf5e56-ecaf-0677-a188-847614edec44	2021-05-21 09:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:45:00.853+03	2021-05-21 09:45:00.86+03	
6a8f69c3-3511-eee7-a5f0-02fd3cdf6697	2021-05-21 09:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:45:11.854+03	2021-05-21 09:45:11.86+03	
51c78373-b2eb-f20f-8594-cb06088d8ddc	2021-05-21 09:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:45:22.853+03	2021-05-21 09:45:22.86+03	
f9fc60be-fc1f-cabc-3fea-c0f967b330b4	2021-05-21 09:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:45:33.852+03	2021-05-21 09:45:33.858+03	
1c364a37-9669-2a3b-6d2f-92f03e199a2c	2021-05-21 09:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:45:43.852+03	2021-05-21 09:45:43.859+03	
ef1e1f87-9ddd-90e0-1c5a-d38542a3abb4	2021-05-21 09:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:45:53.853+03	2021-05-21 09:45:53.859+03	
4af16241-3f4a-16a1-4fb7-8f1027af7990	2021-05-21 09:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:46:03.853+03	2021-05-21 09:46:03.859+03	
f8c1fc37-5135-cecf-8563-7fcc0e046948	2021-05-21 09:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:46:13.853+03	2021-05-21 09:46:13.859+03	
8860caf4-8b2c-d937-bf8f-6a78eafcf3a1	2021-05-21 09:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:46:23.853+03	2021-05-21 09:46:23.859+03	
b6961064-2daf-45fb-25e3-3850b026edd5	2021-05-21 09:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:46:34.853+03	2021-05-21 09:46:34.861+03	
7fddfff1-4c56-3be3-163e-64b93ad57fa6	2021-05-21 09:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:46:44.853+03	2021-05-21 09:46:44.859+03	
15c304ba-12fc-ba83-26b9-a223e7ecf7bd	2021-05-21 09:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:46:54.853+03	2021-05-21 09:46:54.859+03	
40cd50a1-665f-6456-e3f6-8ce72f00ad3e	2021-05-21 09:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:47:04.853+03	2021-05-21 09:47:04.86+03	
ae031db1-7734-0bb8-94ca-774b9e5a3aaa	2021-05-21 09:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:47:15.853+03	2021-05-21 09:47:15.86+03	
efc17e0d-b3b4-389c-fa47-c828af4c31f3	2021-05-21 09:47:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:47:26.854+03	2021-05-21 09:47:26.86+03	
28aa4963-7603-0a48-7914-462910aa8b0a	2021-05-21 09:47:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:47:36.854+03	2021-05-21 09:47:36.862+03	
1f51b0b7-8423-7457-b99b-cbb31a3e4a82	2021-05-21 09:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:47:47.853+03	2021-05-21 09:47:47.861+03	
48ce8c7e-a3ed-4908-3ed2-6cffbb74bc58	2021-05-21 09:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:47:58.852+03	2021-05-21 09:47:58.859+03	
7ee089b6-8ec9-ff64-22de-6f750ac362cf	2021-05-21 09:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:48:08.853+03	2021-05-21 09:48:08.859+03	
e5f58a50-7b93-600f-7181-98f035af9ccd	2021-05-21 09:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:48:18.853+03	2021-05-21 09:48:18.859+03	
23bc45b4-02e4-3433-18ec-a0245f5dfc5f	2021-05-21 09:48:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:48:28.853+03	2021-05-21 09:48:28.861+03	
bdd3f223-a29c-4e37-78a6-1fa6f781b699	2021-05-21 09:48:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:48:39.853+03	2021-05-21 09:48:39.858+03	
fa07e7fd-daca-ffb0-3ebe-4b525aa549b7	2021-05-21 09:48:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:48:49.853+03	2021-05-21 09:48:49.861+03	
6ecf75f7-048e-8ba7-37a8-394fc394270e	2021-05-21 09:49:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:49:10.852+03	2021-05-21 09:49:10.859+03	
fc724b45-d6b4-3e77-f85f-d6185de47dd8	2021-05-21 09:49:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:49:30.852+03	2021-05-21 09:49:30.859+03	
611fd13f-0c9c-a9b3-d71f-ef1361864551	2021-05-21 09:49:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:49:51.852+03	2021-05-21 09:49:51.859+03	
e82e1448-abf2-ea75-fb06-e6be145aa644	2021-05-21 09:50:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:50:01.852+03	2021-05-21 09:50:01.89+03	
95ff2a3a-8166-026a-120b-362f7a5ba6d2	2021-05-21 09:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:50:22.853+03	2021-05-21 09:50:22.859+03	
1fb46397-03ba-141c-c842-45c0007e044e	2021-05-21 09:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:50:43.852+03	2021-05-21 09:50:43.861+03	
92913958-0def-8a24-abb7-608240f5d87d	2021-05-21 09:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:51:03.852+03	2021-05-21 09:51:03.859+03	
840295c0-762a-3350-e6c1-22436a89b9fd	2021-05-21 09:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:51:23.852+03	2021-05-21 09:51:23.859+03	
03dd66dd-ca37-7271-b32f-1bcb52403255	2021-05-21 09:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:51:43.853+03	2021-05-21 09:51:43.859+03	
46a1c785-4076-c087-cabe-8ad46cac17ac	2021-05-21 09:52:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:52:03.853+03	2021-05-21 09:52:03.859+03	
4e84312d-35e0-ba69-04dd-b140c0a27d99	2021-05-21 09:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:52:24.852+03	2021-05-21 09:52:24.859+03	
4a401bcd-b24e-1825-0c20-1d66743cbcd9	2021-05-21 09:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:52:44.853+03	2021-05-21 09:52:44.861+03	
10489020-268e-f640-2b77-215a8ffe5249	2021-05-21 09:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:53:04.853+03	2021-05-21 09:53:04.859+03	
37ff4ca3-5166-fbf7-35f7-0c4192dd38ca	2021-05-21 09:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:53:25.853+03	2021-05-21 09:53:25.859+03	
e2435a7e-5017-433a-9de8-3157975928b1	2021-05-21 09:53:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:53:46.852+03	2021-05-21 09:53:46.86+03	
ddf3f3a5-1805-4a2a-ced6-1c2eaa3b050f	2021-05-21 09:54:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:54:06.852+03	2021-05-21 09:54:06.86+03	
2d281eb4-fddc-fc77-e2a6-310653ab1bd0	2021-05-21 09:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:54:27.852+03	2021-05-21 09:54:27.861+03	
6eefec2f-b384-e813-af68-3a9b60619b05	2021-05-21 09:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:54:47.853+03	2021-05-21 09:54:47.861+03	
284e535d-38a4-c19e-8010-c9fb32a11c7c	2021-05-21 09:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:55:08.853+03	2021-05-21 09:55:08.86+03	
f2d3e97a-795b-9eca-a34e-71a60c2e4e1d	2021-05-21 09:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:55:28.853+03	2021-05-21 09:55:28.86+03	
431ab2b3-0536-01ab-eb78-ba66fbc362ed	2021-05-21 09:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:55:49.852+03	2021-05-21 09:55:49.859+03	
a963c53d-7ebd-c2dc-594b-7cc002f25d12	2021-05-21 09:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:56:09.852+03	2021-05-21 09:56:09.859+03	
467364d7-ff25-f835-8a84-ea106e863a71	2021-05-21 09:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:56:30.853+03	2021-05-21 09:56:30.86+03	
57117f41-f798-3ed1-c0b0-746d4fc71015	2021-05-21 09:56:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:56:51.853+03	2021-05-21 09:56:51.859+03	
f8bccaa8-a3d1-0b83-8105-6c942721d13f	2021-05-21 09:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:57:13.852+03	2021-05-21 09:57:13.859+03	
71b92550-7611-b6b5-cebb-da0bf250444f	2021-05-21 09:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:57:33.852+03	2021-05-21 09:57:33.86+03	
df631e38-e5d8-0f36-cdef-8b2a98bb014a	2021-05-21 09:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:57:53.853+03	2021-05-21 09:57:53.86+03	
b369f10b-4889-3be6-c9ae-b347fe64ec90	2021-05-21 09:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:58:13.853+03	2021-05-21 09:58:13.872+03	
f1ffae8d-9f1f-1ae6-ae1a-35d9176b1366	2021-05-21 09:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:58:33.853+03	2021-05-21 09:58:33.86+03	
c713cebe-63a8-39f8-405c-e45ac3b09ba5	2021-05-21 09:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:58:54.853+03	2021-05-21 09:58:54.86+03	
912caf6a-b82b-f096-6bbb-e58adeb14f3e	2021-05-21 09:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:59:15.852+03	2021-05-21 09:59:15.859+03	
6ff7e10c-c3ee-dc3d-88c6-a9ac21455035	2021-05-21 09:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:59:35.853+03	2021-05-21 09:59:35.86+03	
2dd8ab23-dc3c-1d62-41dd-d38948c504ce	2021-05-21 09:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:59:55.853+03	2021-05-21 09:59:55.859+03	
125dae05-8058-292f-b71d-717476d2acd5	2021-05-21 10:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:00:05.853+03	2021-05-21 10:00:05.867+03	
ed125c33-d6f0-047d-91ba-a713d56cc6ef	2021-05-21 10:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:00:25.853+03	2021-05-21 10:00:25.86+03	
23564950-0d8c-0d21-475c-83d73a359e6c	2021-05-21 10:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:00:45.853+03	2021-05-21 10:00:45.859+03	
844d058f-3f34-27ab-4c10-0fae2ed29d09	2021-05-21 10:01:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:01:06.853+03	2021-05-21 10:01:06.859+03	
96fa5884-48fa-19ca-7bd7-27b5846fdfc9	2021-05-21 10:01:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:01:26.853+03	2021-05-21 10:01:26.859+03	
ec628fbe-1b9e-d688-7864-668af82fc718	2021-05-21 10:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:01:48.853+03	2021-05-21 10:01:48.859+03	
e4d2a692-826b-6f4e-1da3-d5af17ae2fd7	2021-05-21 10:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:02:10.853+03	2021-05-21 10:02:10.859+03	
b87ed5d5-a206-35bc-64dc-3c8c1bf3a81d	2021-05-21 10:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:02:30.853+03	2021-05-21 10:02:30.86+03	
fb40c1cd-c33e-cc3c-d1dd-34f76476cf57	2021-05-21 10:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:02:50.853+03	2021-05-21 10:02:50.86+03	
e0630453-909c-07c9-db61-f1e25b1b23a1	2021-05-21 10:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:03:10.853+03	2021-05-21 10:03:10.861+03	
54abab04-c65a-561f-1853-5a35079cad3f	2021-05-21 10:03:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:03:31.852+03	2021-05-21 10:03:31.858+03	
c262f298-fa6b-b67f-24b1-c19b800ea1ee	2021-05-21 10:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:03:52.853+03	2021-05-21 10:03:52.859+03	
92b5a1d4-6ee9-53e9-23be-99039bf0b8b8	2021-05-21 10:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:04:13.853+03	2021-05-21 10:04:13.874+03	
46b2bd72-82e7-8235-48a7-b949d9d908da	2021-05-21 10:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:04:34.853+03	2021-05-21 10:04:34.87+03	
2851ed2a-785f-ca41-9d90-d7e824c168b8	2021-05-21 10:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:04:54.853+03	2021-05-21 10:04:54.86+03	
bb28e082-e945-6c00-144b-ddfbf741fba1	2021-05-21 10:05:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:05:16.852+03	2021-05-21 10:05:16.859+03	
9548f5f5-85d8-389c-b092-5b8b607c193f	2021-05-21 10:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:05:36.853+03	2021-05-21 10:05:36.86+03	
e823cf94-7383-9d4b-2136-51c812b940d3	2021-05-21 10:05:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:05:58.853+03	2021-05-21 10:05:58.86+03	
e2613adb-7cbe-d833-88c7-4fe0a0d2281a	2021-05-21 10:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:06:19.853+03	2021-05-21 10:06:19.859+03	
9d1eaab7-317d-f519-b9f8-22abf55d8181	2021-05-21 10:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:06:40.853+03	2021-05-21 10:06:40.86+03	
ca5c8bc8-2121-c6d9-34de-f1a4225a5084	2021-05-21 10:07:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:07:01.854+03	2021-05-21 10:07:01.861+03	
eca171ee-f7b9-88fa-6584-08c93cbb1f71	2021-05-21 10:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:07:22.853+03	2021-05-21 10:07:22.86+03	
9ddff439-6657-cf3d-89a8-48b87b2ae425	2021-05-21 10:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:07:43.853+03	2021-05-21 10:07:43.859+03	
27979705-3730-e641-b559-407790c1b34c	2021-05-21 10:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:08:03.853+03	2021-05-21 10:08:03.862+03	
e482527a-9ac3-4ab6-6bc8-d0f8815cb3cb	2021-05-21 10:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:08:23.853+03	2021-05-21 10:08:23.869+03	
94df9cfd-075e-1f78-0f71-2e5875a36c93	2021-05-21 10:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:08:44.853+03	2021-05-21 10:08:44.87+03	
194e9357-0a4c-4339-6b7f-dd5abd96ae47	2021-05-21 10:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:09:05.852+03	2021-05-21 10:09:05.858+03	
6dc60739-ea14-bd1e-bf74-4299b6ae28f8	2021-05-21 10:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:09:25.853+03	2021-05-21 10:09:25.86+03	
794ea7d7-4098-0842-2be8-bdfd13456bd0	2021-05-21 10:09:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:09:46.853+03	2021-05-21 10:09:46.863+03	
fcc844a1-ab56-0e41-c02a-40be324c9606	2021-05-21 09:48:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:48:59.853+03	2021-05-21 09:48:59.86+03	
3022813f-e446-1d90-e987-cd94e9de12ef	2021-05-21 09:49:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:49:20.852+03	2021-05-21 09:49:20.859+03	
e80d153d-5ea9-a841-f81f-0e4f46367266	2021-05-21 09:49:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:49:40.853+03	2021-05-21 09:49:40.858+03	
c9f4f008-6741-a69e-971a-b25af60b4737	2021-05-21 09:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 09:50:00.852+03	2021-05-21 09:50:00.857+03	ERROR
fa5d6c9b-f399-9f52-136b-8e8f47f5f0fc	2021-05-21 09:50:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:50:11.854+03	2021-05-21 09:50:11.86+03	
1368ab11-be9c-6364-7b7f-74d35bf972d8	2021-05-21 09:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:50:33.852+03	2021-05-21 09:50:33.859+03	
f1a6776b-6c6e-ab9d-806c-cf1ea7eb6578	2021-05-21 09:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:50:53.852+03	2021-05-21 09:50:53.873+03	
917d52e3-38c9-aa12-661b-55bf3134d0d8	2021-05-21 09:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:51:13.852+03	2021-05-21 09:51:13.858+03	
5a93d3f9-5d79-a726-9cec-4424ec1e96c8	2021-05-21 09:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:51:33.852+03	2021-05-21 09:51:33.859+03	
f3aa63e3-809d-0010-790f-3bddf61dee5d	2021-05-21 09:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:51:53.853+03	2021-05-21 09:51:53.859+03	
61ada2b2-3cc5-3a9a-0be1-d20087707e3c	2021-05-21 09:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:52:13.853+03	2021-05-21 09:52:13.859+03	
5e6e11b6-cdfc-7eb2-a580-aa6e582508a4	2021-05-21 09:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:52:34.853+03	2021-05-21 09:52:34.864+03	
04fdc296-18a8-030e-0fb3-0094b069e924	2021-05-21 09:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:52:54.853+03	2021-05-21 09:52:54.859+03	
26096f9a-401f-9358-2cfd-baef750c0321	2021-05-21 09:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:53:15.853+03	2021-05-21 09:53:15.859+03	
2f4edf8a-44c0-19d0-6a27-3e1d0287a2ef	2021-05-21 09:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:53:35.853+03	2021-05-21 09:53:35.861+03	
3fe3e484-9095-05c4-6422-3610948de7aa	2021-05-21 09:53:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:53:56.852+03	2021-05-21 09:53:56.86+03	
bf72d53a-a142-1bf5-e7d9-572598f107cd	2021-05-21 09:54:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:54:16.853+03	2021-05-21 09:54:16.86+03	
096d8dd4-3af3-ccb1-a56a-ff272996d26d	2021-05-21 09:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:54:37.852+03	2021-05-21 09:54:37.859+03	
2d9d94c2-d511-6584-b688-aec051b541c5	2021-05-21 09:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:54:58.852+03	2021-05-21 09:54:58.861+03	
e6590766-1d2d-6a12-ce2a-c19069c49c68	2021-05-21 09:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:55:18.853+03	2021-05-21 09:55:18.859+03	
13f3b8ba-398c-8d83-36a0-d12cacfb044a	2021-05-21 09:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:55:38.853+03	2021-05-21 09:55:38.859+03	
b7daab37-bec6-141b-f0ea-2b9aeb80f235	2021-05-21 09:55:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:55:59.852+03	2021-05-21 09:55:59.859+03	
df03de2c-dad8-d446-896c-562439540b96	2021-05-21 09:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:56:19.853+03	2021-05-21 09:56:19.862+03	
317c1627-c735-f79a-1baa-40249e872336	2021-05-21 09:56:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:56:41.853+03	2021-05-21 09:56:41.86+03	
ade91f1d-662c-5c84-74d9-8eac5f5acb23	2021-05-21 09:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:57:02.853+03	2021-05-21 09:57:02.861+03	
2a0a3c70-3b05-e9dd-6ec5-bc147f48de8d	2021-05-21 09:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:57:23.852+03	2021-05-21 09:57:23.859+03	
f592b8d8-8837-4353-b569-cdee5032b35a	2021-05-21 09:57:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:57:43.853+03	2021-05-21 09:57:43.861+03	
b42280e6-5112-b44c-60e1-7475e51c018d	2021-05-21 09:58:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:58:03.853+03	2021-05-21 09:58:03.872+03	
f421bfd6-2ad7-3fa8-c48e-d6db064c3b01	2021-05-21 09:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:58:23.853+03	2021-05-21 09:58:23.86+03	
90058756-d179-29b8-b04a-f7e609c7774b	2021-05-21 09:58:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:58:43.853+03	2021-05-21 09:58:43.874+03	
c33f7fb4-f3a9-18ec-848d-4a2f4df56074	2021-05-21 09:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:59:04.853+03	2021-05-21 09:59:04.871+03	
dbeb7bf5-63f3-c56c-6514-e067283ffedc	2021-05-21 09:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:59:25.853+03	2021-05-21 09:59:25.859+03	
7fa67537-5930-9b5a-7ca0-4673adfb3cb3	2021-05-21 09:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 09:59:45.853+03	2021-05-21 09:59:45.859+03	
922fbcb6-046d-409e-8b46-be944228a18a	2021-05-21 10:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 10:00:00.853+03	2021-05-21 10:00:00.861+03	ERROR
0c5bdddb-da5f-31cf-8d5a-84c899a0af9e	2021-05-21 10:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:00:15.853+03	2021-05-21 10:00:15.867+03	
f5c3d082-4ebe-d133-5b38-090b3288385b	2021-05-21 10:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:00:35.853+03	2021-05-21 10:00:35.861+03	
7277c04a-640d-a456-8dca-10b7b09a56e8	2021-05-21 10:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:00:55.853+03	2021-05-21 10:00:55.86+03	
fb9af202-1355-b612-a369-66ffa305c56a	2021-05-21 10:01:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:01:16.853+03	2021-05-21 10:01:16.859+03	
cff9c22b-7e9b-25fe-60a1-617e309d93c3	2021-05-21 10:01:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:01:37.853+03	2021-05-21 10:01:37.86+03	
0e4356f6-1d80-7aba-e015-a86cec9fda09	2021-05-21 10:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:01:59.853+03	2021-05-21 10:01:59.859+03	
c12afa18-4a6b-298a-35ba-a72ee346b427	2021-05-21 10:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:02:20.853+03	2021-05-21 10:02:20.861+03	
5886048c-d01e-2549-7e03-53603b887d75	2021-05-21 10:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:02:40.853+03	2021-05-21 10:02:40.86+03	
cad42aa5-943f-6055-4df3-1774f7e1bc66	2021-05-21 10:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:03:00.853+03	2021-05-21 10:03:00.86+03	
15bc6f9b-34dd-62b9-55cf-548ba4731e82	2021-05-21 10:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:03:20.853+03	2021-05-21 10:03:20.859+03	
c4392a2c-6a01-63ae-f0a5-f4ddffbdc57a	2021-05-21 10:03:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:03:41.855+03	2021-05-21 10:03:41.862+03	
8df2e17c-025b-e18a-49e9-d734cb7d1805	2021-05-21 10:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:04:03.853+03	2021-05-21 10:04:03.872+03	
170a46a4-19b7-b35e-fb61-4ca23c98da76	2021-05-21 10:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:04:24.853+03	2021-05-21 10:04:24.861+03	
23fa3639-ad41-bc52-ec3c-389f8b375f55	2021-05-21 10:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:04:44.853+03	2021-05-21 10:04:44.862+03	
ecec127c-ef4b-b5e0-6b08-039085b67001	2021-05-21 10:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:05:05.853+03	2021-05-21 10:05:05.858+03	
775e3473-16aa-8ddf-8763-303fc51651d4	2021-05-21 10:05:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:05:26.853+03	2021-05-21 10:05:26.859+03	
19029384-e541-b460-3055-90c6928873dd	2021-05-21 10:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:05:47.853+03	2021-05-21 10:05:47.859+03	
c93102a5-a58f-a4ab-4e3f-34fa5357ea0f	2021-05-21 10:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:06:09.852+03	2021-05-21 10:06:09.859+03	
8be38b10-edd4-2018-e662-9c87b81a5b30	2021-05-21 10:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:06:30.853+03	2021-05-21 10:06:30.86+03	
386a45c0-38cf-bce0-69f6-e1eece0619e7	2021-05-21 10:06:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:06:51.854+03	2021-05-21 10:06:51.86+03	
a4068101-2fff-b103-1188-c5edfae5d61a	2021-05-21 10:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:07:12.852+03	2021-05-21 10:07:12.859+03	
59d34411-4198-fc31-3864-6cb907e9a338	2021-05-21 10:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:07:33.852+03	2021-05-21 10:07:33.858+03	
85258e40-db71-12d8-7aee-e526b91ef62d	2021-05-21 10:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:07:53.853+03	2021-05-21 10:07:53.862+03	
9d20de94-40e4-44e9-2f8a-7d5a92862560	2021-05-21 10:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:08:13.853+03	2021-05-21 10:08:13.872+03	
47e2e3f9-e42e-f2f4-ef56-46c8cd5a310d	2021-05-21 10:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:08:33.853+03	2021-05-21 10:08:33.861+03	
2fa94457-5f20-54be-50ca-8fc77159ad45	2021-05-21 10:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:08:55.852+03	2021-05-21 10:08:55.858+03	
c8eecf14-6100-1730-947a-4b395437bc69	2021-05-21 10:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:09:15.853+03	2021-05-21 10:09:15.859+03	
fdda0d02-ce47-4a02-1dce-a41eeb260581	2021-05-21 10:09:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:09:36.852+03	2021-05-21 10:09:36.86+03	
feac8a0e-2945-e002-f217-d53a7531d4c9	2021-05-21 10:09:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:09:56.853+03	2021-05-21 10:09:56.86+03	
d996fd2d-0942-1abb-b234-ac05adc6d7f3	2021-05-21 10:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 10:10:00.853+03	2021-05-21 10:10:00.857+03	ERROR
950767ea-41a5-8b26-f263-84cb30a667ea	2021-05-21 10:10:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:10:17.852+03	2021-05-21 10:10:17.859+03	
10c50de8-3777-39c1-de32-908b11f84b1b	2021-05-21 10:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:10:38.852+03	2021-05-21 10:10:38.861+03	
dff57a49-c50f-1c84-f6bc-3f14795349ec	2021-05-21 10:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:10:58.852+03	2021-05-21 10:10:58.859+03	
da1d2949-b951-1d13-c1a2-1dd0aed314cf	2021-05-21 10:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:11:18.853+03	2021-05-21 10:11:18.859+03	
b4489193-8910-564a-266b-8b26fab00f2d	2021-05-21 10:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:11:39.853+03	2021-05-21 10:11:39.859+03	
c8965f02-4d6f-79c3-8da4-f0515369a233	2021-05-21 10:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:12:00.852+03	2021-05-21 10:12:00.869+03	
4fcadcca-ec39-8559-cd40-4ce8835c6a7a	2021-05-21 10:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:12:20.852+03	2021-05-21 10:12:20.858+03	
51b0a03a-07e9-88f3-bea3-31ca5692ba2b	2021-05-21 10:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:12:41.853+03	2021-05-21 10:12:41.859+03	
6fa93f98-0932-f632-4554-3ba6bf509fff	2021-05-21 10:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:13:02.853+03	2021-05-21 10:13:02.862+03	
7acefa98-60d7-562f-f505-abfde03d9a83	2021-05-21 10:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:13:23.852+03	2021-05-21 10:13:23.87+03	
24bdb758-219a-7261-9224-0a3fb9d1d9b0	2021-05-21 10:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:13:43.852+03	2021-05-21 10:13:43.871+03	
4757c173-6156-fc60-2aae-324b7884578a	2021-05-21 10:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:14:04.852+03	2021-05-21 10:14:04.859+03	
d6bd4222-0ff1-5cd0-18e2-8903a8026087	2021-05-21 10:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:14:24.853+03	2021-05-21 10:14:24.86+03	
a5e58c4a-b2b1-0d89-f448-8ad0ca6b698c	2021-05-21 10:14:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:14:46.852+03	2021-05-21 10:14:46.859+03	
b4c5f282-14df-9084-32f1-ebe693525674	2021-05-21 10:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:15:06.852+03	2021-05-21 10:15:06.859+03	
b3530c5e-045c-88a4-fad3-769bb5f7b96b	2021-05-21 10:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:15:26.852+03	2021-05-21 10:15:26.861+03	
3a15584e-660a-7dd3-d0ce-4865fb6ac82a	2021-05-21 10:15:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:15:46.852+03	2021-05-21 10:15:46.859+03	
6f8dd329-051f-3666-4a9d-095fc3ed752e	2021-05-21 10:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:16:07.852+03	2021-05-21 10:16:07.859+03	
1c46484d-3685-bf0e-2801-63cdc4451556	2021-05-21 10:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:16:27.853+03	2021-05-21 10:16:27.86+03	
af04bc21-154f-cf09-6085-88a7245b7620	2021-05-21 10:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:16:48.852+03	2021-05-21 10:16:48.859+03	
4670ab41-4131-c03a-29c2-a11cf28f9f70	2021-05-21 10:17:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:17:09.853+03	2021-05-21 10:17:09.859+03	
ab86088b-2d8b-9442-d096-5071eae9a7a2	2021-05-21 10:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:17:30.853+03	2021-05-21 10:17:30.862+03	
749081d2-5c1e-a8eb-506f-30782020e603	2021-05-21 10:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:17:50.853+03	2021-05-21 10:17:50.86+03	
87083d9d-2f80-3a0c-7487-3c655b17a183	2021-05-21 10:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:18:11.852+03	2021-05-21 10:18:11.865+03	
9792ed98-b6e5-277c-4641-b9323947dc6b	2021-05-21 10:18:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:18:31.852+03	2021-05-21 10:18:31.858+03	
5d3dd09f-aaaf-e36f-6898-e953ac2c751f	2021-05-21 10:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:18:52.853+03	2021-05-21 10:18:52.859+03	
2942fa6c-c592-4a31-7ec4-15c2c853825f	2021-05-21 10:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:19:13.852+03	2021-05-21 10:19:13.859+03	
ab475bc3-8aae-5299-6ec8-c362d6e3000d	2021-05-21 10:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:19:33.852+03	2021-05-21 10:19:33.868+03	
de63cdbc-20bb-7c7d-6059-e6ec17df89e5	2021-05-21 10:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 10:20:00.852+03	2021-05-21 10:20:00.857+03	ERROR
73672a65-f9fc-7b46-d9ea-c6a07fef6dd2	2021-05-21 10:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:20:13.853+03	2021-05-21 10:20:13.859+03	
ec8defba-41a1-6c6e-501a-7d658abc066b	2021-05-21 10:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:20:33.853+03	2021-05-21 10:20:33.86+03	
92faaadb-b37e-f15e-e109-e8d0542ba876	2021-05-21 10:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:20:54.853+03	2021-05-21 10:20:54.863+03	
10b7f107-4bfc-62c9-afbb-80d9370491d3	2021-05-21 10:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:21:15.852+03	2021-05-21 10:21:15.86+03	
fbe59cc6-08d1-3dd4-fba0-857c4e3c1dbe	2021-05-21 10:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:21:35.853+03	2021-05-21 10:21:35.861+03	
dbab9575-c0a5-e01d-446f-318af57f1a5b	2021-05-21 10:21:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:21:56.853+03	2021-05-21 10:21:56.859+03	
23ac3dd2-d263-062e-17f3-fc8532be5c22	2021-05-21 10:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:22:17.853+03	2021-05-21 10:22:17.859+03	
a257017e-0e88-388c-d037-8ce0230dc604	2021-05-21 10:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:22:38.852+03	2021-05-21 10:22:38.87+03	
8fa63f40-7f5a-c98e-4958-b7cd911d9b19	2021-05-21 10:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:22:58.852+03	2021-05-21 10:22:58.859+03	
7d5cc54c-1ea1-89d2-465a-7d045528de34	2021-05-21 10:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:23:18.852+03	2021-05-21 10:23:18.86+03	
902d5eea-021b-60e3-bc84-51570baa712d	2021-05-21 10:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:23:39.853+03	2021-05-21 10:23:39.859+03	
32ba992a-6b80-8598-5a0b-6d05a8454ad8	2021-05-21 10:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:23:59.853+03	2021-05-21 10:23:59.86+03	
136c26e4-98da-6946-6f83-36b1d940d262	2021-05-21 10:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:24:20.853+03	2021-05-21 10:24:20.859+03	
f9214597-465a-b946-d261-239ec4b735d4	2021-05-21 10:24:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:24:41.854+03	2021-05-21 10:24:41.861+03	
e1045dc3-0a24-615c-398a-487542aef780	2021-05-21 10:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:25:02.852+03	2021-05-21 10:25:02.859+03	
a105192b-a878-ce1e-5cd1-a22ac20dbec3	2021-05-21 10:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:25:22.853+03	2021-05-21 10:25:22.859+03	
eed8e467-f4b6-d075-6fd1-efdd5f7a1dd0	2021-05-21 10:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:25:43.853+03	2021-05-21 10:25:43.861+03	
20bb0dea-162c-7207-7f25-26821133d380	2021-05-21 10:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:26:03.853+03	2021-05-21 10:26:03.861+03	
2dbad699-6760-170b-538c-76d975f723fe	2021-05-21 10:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:26:23.853+03	2021-05-21 10:26:23.86+03	
406e85a1-97af-fb9c-cc87-b5c40471985e	2021-05-21 10:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:26:43.853+03	2021-05-21 10:26:43.86+03	
344da90b-1711-0ecf-b08e-4abac2def491	2021-05-21 10:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:27:04.852+03	2021-05-21 10:27:04.859+03	
29fcd339-d5b2-9e65-b0ca-a1e2dac899ef	2021-05-21 10:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:27:25.853+03	2021-05-21 10:27:25.859+03	
fc2e9288-81d5-ba1b-5424-68e4239b34cc	2021-05-21 10:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:27:47.852+03	2021-05-21 10:27:47.859+03	
31204aee-a84c-f995-a09e-8c6a50657a26	2021-05-21 10:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:28:07.852+03	2021-05-21 10:28:07.859+03	
f2f30ede-41ac-c764-1c95-11ffcf536a8c	2021-05-21 10:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:28:27.852+03	2021-05-21 10:28:27.862+03	
b1f896a0-b682-54de-6cfb-3ef35337522c	2021-05-21 10:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:28:47.852+03	2021-05-21 10:28:47.867+03	
05913619-389d-610b-626b-7a17024b9e92	2021-05-21 10:29:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:29:07.852+03	2021-05-21 10:29:07.862+03	
31b49d8e-effb-664b-8798-d41daac6905f	2021-05-21 10:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:29:28.853+03	2021-05-21 10:29:28.868+03	
4423838e-ab81-eed4-0490-0a9f74bba600	2021-05-21 10:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:29:49.853+03	2021-05-21 10:29:49.86+03	
7e0c3000-2787-b0d0-bdf8-5575467fec18	2021-05-21 10:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:30:10.852+03	2021-05-21 10:30:10.867+03	
78cc5c04-597a-56d4-e0cc-26d7955de2b2	2021-05-21 10:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:30:30.853+03	2021-05-21 10:30:30.859+03	
8c8a2054-e0a6-3108-1621-95b161ce94d0	2021-05-21 10:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:30:50.853+03	2021-05-21 10:30:50.861+03	
fe0833f5-2dd0-cee4-2449-ea6307306bd0	2021-05-21 10:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:31:10.853+03	2021-05-21 10:31:10.859+03	
a9abb565-e867-f758-a41e-a2233af41044	2021-05-21 10:10:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:10:06.853+03	2021-05-21 10:10:06.859+03	
41fcb64d-2ed8-0f77-03c8-a0d9d029f725	2021-05-21 10:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:10:27.853+03	2021-05-21 10:10:27.86+03	
f30ba5aa-3132-f181-874f-98f78e5b99cc	2021-05-21 10:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:10:48.852+03	2021-05-21 10:10:48.859+03	
44e7b009-3948-0e4c-f083-265165797b49	2021-05-21 10:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:11:08.852+03	2021-05-21 10:11:08.86+03	
eb8bdba9-691b-611c-191b-d023e534af05	2021-05-21 10:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:11:29.852+03	2021-05-21 10:11:29.859+03	
a7e707c6-7c65-1ad1-f141-887442af2982	2021-05-21 10:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:11:49.853+03	2021-05-21 10:11:49.859+03	
64769f40-49e6-c33c-d6a2-3caf7aad7889	2021-05-21 10:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:12:10.852+03	2021-05-21 10:12:10.858+03	
6a32dad6-1173-ddd2-e761-c82e883755e9	2021-05-21 10:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:12:30.853+03	2021-05-21 10:12:30.86+03	
85915f49-1631-7352-e1a9-e6681800c2ab	2021-05-21 10:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:12:52.852+03	2021-05-21 10:12:52.86+03	
d762d73e-5492-0f1a-b58b-a0924ff4d058	2021-05-21 10:13:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:13:13.852+03	2021-05-21 10:13:13.858+03	
c7d8b2ce-d811-ea7f-94d5-7ba914bcdf11	2021-05-21 10:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:13:33.852+03	2021-05-21 10:13:33.859+03	
883c6a72-77f4-1563-8e22-47d20aa56526	2021-05-21 10:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:13:53.853+03	2021-05-21 10:13:53.86+03	
8e902595-dc43-e105-9fd2-0d268a3a2d0d	2021-05-21 10:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:14:14.853+03	2021-05-21 10:14:14.859+03	
cf96c646-754d-cc6f-4c83-0ff1db5f3f1b	2021-05-21 10:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:14:35.853+03	2021-05-21 10:14:35.859+03	
bd927760-e76c-0f2d-318e-3119649eb851	2021-05-21 10:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:14:56.852+03	2021-05-21 10:14:56.861+03	
05e1d807-5e95-2f4b-71a7-b28dc1a72162	2021-05-21 10:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:15:16.852+03	2021-05-21 10:15:16.858+03	
c2233add-8ffd-920d-56d1-f6aeda9aba97	2021-05-21 10:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:15:36.852+03	2021-05-21 10:15:36.861+03	
6023484f-22cd-c1f8-28aa-464114496d04	2021-05-21 10:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:15:56.853+03	2021-05-21 10:15:56.859+03	
ba457ff8-a085-ca08-1dc5-3e643eba4535	2021-05-21 10:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:16:17.853+03	2021-05-21 10:16:17.859+03	
d80b9fe1-1c5e-2d82-8668-cd8535c575fd	2021-05-21 10:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:16:37.853+03	2021-05-21 10:16:37.876+03	
a068c2d8-457e-d2b7-25de-b85f6c559989	2021-05-21 10:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:16:58.853+03	2021-05-21 10:16:58.859+03	
61f7d6a8-29da-3a66-a295-20f6d2b43099	2021-05-21 10:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:17:20.853+03	2021-05-21 10:17:20.86+03	
5831df83-5b21-a567-3afa-a0d81158979b	2021-05-21 10:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:17:40.853+03	2021-05-21 10:17:40.865+03	
8fa1a8ca-991c-8c18-f732-408030c038bd	2021-05-21 10:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:18:00.853+03	2021-05-21 10:18:00.859+03	
004f5eb5-311d-a4c8-10dc-3f3c4eaea6ac	2021-05-21 10:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:18:21.852+03	2021-05-21 10:18:21.859+03	
e9e6c6d5-7732-a5e2-ddec-1bf65332dc6c	2021-05-21 10:18:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:18:41.854+03	2021-05-21 10:18:41.861+03	
ece7cac2-f865-8b9e-ce25-ffb0aa0d750a	2021-05-21 10:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:19:03.852+03	2021-05-21 10:19:03.86+03	
fe822f83-484e-840b-29cd-65b1491bb17a	2021-05-21 10:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:19:23.852+03	2021-05-21 10:19:23.867+03	
cd1c6471-f718-43eb-7d07-8a231b65733b	2021-05-21 10:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:19:43.852+03	2021-05-21 10:19:43.859+03	
bcad4250-1ca3-5758-9677-301bf82915f2	2021-05-21 10:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:19:53.852+03	2021-05-21 10:19:53.868+03	
ed85f124-c916-b32a-0fa1-e1d6162c4f58	2021-05-21 10:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:20:03.852+03	2021-05-21 10:20:03.859+03	
efeee3fe-e96b-1a9b-bded-6fd759e31c58	2021-05-21 10:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:20:23.853+03	2021-05-21 10:20:23.888+03	
87eb1efd-52cb-7822-33b8-0ee70e4ebbed	2021-05-21 10:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:20:43.853+03	2021-05-21 10:20:43.864+03	
51bef236-ca77-5e38-9495-212e263e0fa9	2021-05-21 10:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:21:05.852+03	2021-05-21 10:21:05.858+03	
cf8d2cbc-73c6-aaf7-2029-d0ed39dc47a0	2021-05-21 10:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:21:25.853+03	2021-05-21 10:21:25.858+03	
2d279a10-b1fe-486c-fc23-be320b382910	2021-05-21 10:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:21:45.853+03	2021-05-21 10:21:45.859+03	
4108887c-15da-2d6f-2e16-41a7d8252d14	2021-05-21 10:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:22:07.852+03	2021-05-21 10:22:07.86+03	
70791215-4184-f85f-5af1-5565fd66de5c	2021-05-21 10:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:22:27.853+03	2021-05-21 10:22:27.86+03	
1ee24f95-9348-a6d2-d2ea-5b1db70f5be9	2021-05-21 10:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:22:48.852+03	2021-05-21 10:22:48.859+03	
c6ba049b-729d-17c2-50a3-5e6bfa32b152	2021-05-21 10:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:23:08.852+03	2021-05-21 10:23:08.859+03	
4b9ce445-5f37-ec60-a218-9ebcd916a9cc	2021-05-21 10:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:23:28.853+03	2021-05-21 10:23:28.86+03	
35d91719-c6aa-1deb-0511-6cfa05e20371	2021-05-21 10:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:23:49.853+03	2021-05-21 10:23:49.861+03	
98204167-7f55-408c-bdf1-8156ab750900	2021-05-21 10:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:24:10.852+03	2021-05-21 10:24:10.859+03	
7ce241f0-13f2-8747-23a8-9f03ce891798	2021-05-21 10:24:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:24:31.854+03	2021-05-21 10:24:31.861+03	
e5b739e6-73ec-df3b-052b-9870dd9eaf1c	2021-05-21 10:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:24:52.852+03	2021-05-21 10:24:52.86+03	
c345800e-4110-3cfa-12ce-7fee79538b3b	2021-05-21 10:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:25:12.852+03	2021-05-21 10:25:12.858+03	
4042fff2-be77-4a0f-5830-8b98b9d9d7dd	2021-05-21 10:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:25:32.853+03	2021-05-21 10:25:32.859+03	
399ca665-8369-6c4d-634e-718708610b07	2021-05-21 10:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:25:53.853+03	2021-05-21 10:25:53.86+03	
f6e31d68-f933-e70b-7b84-f5a00ea1888d	2021-05-21 10:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:26:13.853+03	2021-05-21 10:26:13.865+03	
3cf4c2cc-9753-87c6-800c-c1f5ebefdee7	2021-05-21 10:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:26:33.853+03	2021-05-21 10:26:33.86+03	
498fefcf-08f0-d839-8104-13b74a7007fb	2021-05-21 10:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:26:53.853+03	2021-05-21 10:26:53.859+03	
f23d836e-d177-613a-da28-754a13690bb4	2021-05-21 10:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:27:14.853+03	2021-05-21 10:27:14.86+03	
77801ccd-7d17-b7cd-2620-5279b5890389	2021-05-21 10:27:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:27:36.854+03	2021-05-21 10:27:36.86+03	
0512de0d-a6e3-779b-02c3-464b00e37a30	2021-05-21 10:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:27:57.852+03	2021-05-21 10:27:57.863+03	
7a1e1ee1-98e2-78b2-9760-c551056e4eed	2021-05-21 10:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:28:17.852+03	2021-05-21 10:28:17.86+03	
9d44af84-cad3-ec71-f03b-99ecec6ea7b6	2021-05-21 10:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:28:37.852+03	2021-05-21 10:28:37.859+03	
ddb8758e-02e4-4838-51f7-6d54033dcb39	2021-05-21 10:28:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:28:57.852+03	2021-05-21 10:28:57.859+03	
0a1623c0-3bb0-9c89-8536-23252e51d99e	2021-05-21 10:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:29:17.853+03	2021-05-21 10:29:17.892+03	
4931ef42-1d35-b284-611e-256ffe8db11d	2021-05-21 10:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:29:39.852+03	2021-05-21 10:29:39.859+03	
0f54ded9-f589-0f75-9a8b-2b5fc0ce9cb4	2021-05-21 10:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:30:00.852+03	2021-05-21 10:30:00.86+03	
af4641a5-9241-f913-0473-f1d76bc837c9	2021-05-21 10:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 10:30:00.853+03	2021-05-21 10:30:00.87+03	ERROR
99b1626d-c975-4598-a7b0-115ece320ede	2021-05-21 10:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:30:20.852+03	2021-05-21 10:30:20.859+03	
75729472-a7af-4d16-1e5a-53c5a9d33151	2021-05-21 10:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:30:40.853+03	2021-05-21 10:30:40.859+03	
05fe22cb-142a-7bcb-31a4-2b0a00bfd709	2021-05-21 10:31:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:31:00.853+03	2021-05-21 10:31:00.86+03	
75c1d5fe-32a0-7e2a-8747-cc9f792ac9d5	2021-05-21 10:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:31:20.853+03	2021-05-21 10:31:20.86+03	
adcd56e3-115d-fc0b-a315-24cf165052a4	2021-05-21 10:31:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:31:41.853+03	2021-05-21 10:31:41.86+03	
bb66bb07-df12-bc6a-3c1f-8f87dff900aa	2021-05-21 10:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:32:02.853+03	2021-05-21 10:32:02.859+03	
7191fa16-160e-55a7-5c69-59a3a8b7f401	2021-05-21 10:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:32:23.853+03	2021-05-21 10:32:23.86+03	
9312d8ad-f945-5218-2900-bc5aa8ebac4a	2021-05-21 10:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:32:44.853+03	2021-05-21 10:32:44.859+03	
0617d0f0-8bca-8743-f189-4e7771d32525	2021-05-21 10:33:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:33:06.852+03	2021-05-21 10:33:06.859+03	
5794e319-abc5-3d39-d7a1-11be30002e9b	2021-05-21 10:33:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:33:26.853+03	2021-05-21 10:33:26.859+03	
687f51e3-2661-6fcc-1342-bd1c755b4f85	2021-05-21 10:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:33:47.853+03	2021-05-21 10:33:47.862+03	
b22bb789-3876-c4ee-189f-2cd32cb2dcb4	2021-05-21 10:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:34:07.853+03	2021-05-21 10:34:07.863+03	
a1616024-1202-0468-5a22-fdcbdd69b5d8	2021-05-21 10:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:34:28.853+03	2021-05-21 10:34:28.859+03	
1b682066-b007-aeab-2ca1-bc56e33a9119	2021-05-21 10:34:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:34:49.853+03	2021-05-21 10:34:49.86+03	
ea4a393e-cfc7-d579-5db9-3df3ba12cc74	2021-05-21 10:35:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:35:10.853+03	2021-05-21 10:35:10.861+03	
1f714b0e-a1ab-e545-ecff-4b420fdab046	2021-05-21 10:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:35:30.853+03	2021-05-21 10:35:30.865+03	
0f600147-5abe-1431-da34-38c15f5c6aac	2021-05-21 10:35:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:35:50.853+03	2021-05-21 10:35:50.861+03	
17cc114f-35c8-84f8-5385-179e9329f2ef	2021-05-21 10:36:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:36:11.852+03	2021-05-21 10:36:11.859+03	
82454cf0-e4e4-ff21-2ce4-96f2400585cf	2021-05-21 10:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:36:32.853+03	2021-05-21 10:36:32.874+03	
a2511425-f4ad-7a7a-2673-861e8f24990d	2021-05-21 10:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:36:52.853+03	2021-05-21 10:36:52.86+03	
0e74d740-a7c0-85a7-9ce9-3ca7142290d1	2021-05-21 10:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:37:12.853+03	2021-05-21 10:37:12.861+03	
46206b7c-a43b-ccbe-8286-f14c1ac34643	2021-05-21 10:37:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:37:32.853+03	2021-05-21 10:37:32.86+03	
9948c9a6-347f-971f-5b08-0e976e7a120d	2021-05-21 10:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:37:53.853+03	2021-05-21 10:37:53.866+03	
9197436a-83b3-43d1-237d-c66ba8d67034	2021-05-21 10:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:38:15.853+03	2021-05-21 10:38:15.872+03	
a6ed27f6-c7d4-959c-ff70-58633b3089f5	2021-05-21 10:38:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:38:36.854+03	2021-05-21 10:38:36.861+03	
ccec79f8-4b3e-45e2-6f84-3fef87ee1628	2021-05-21 10:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:38:58.852+03	2021-05-21 10:38:58.86+03	
6af1616d-9d96-4ff9-3fa4-afba77e9a845	2021-05-21 10:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:39:18.853+03	2021-05-21 10:39:18.858+03	
4757da8b-6154-5214-d1e0-0f1ea24d75f1	2021-05-21 10:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:39:39.853+03	2021-05-21 10:39:39.86+03	
5ef89d33-ed1d-0c16-243c-f196579f38b4	2021-05-21 10:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:39:59.853+03	2021-05-21 10:39:59.861+03	
a0d40eb6-0521-dab0-6c4a-34098d3be832	2021-05-21 10:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:40:09.853+03	2021-05-21 10:40:09.861+03	
dcc98b46-3770-c8fe-0200-0bae789c79c9	2021-05-21 10:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:40:30.853+03	2021-05-21 10:40:30.862+03	
332e8a4d-deed-42b2-e94d-3426920381a9	2021-05-21 10:40:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:40:51.853+03	2021-05-21 10:40:51.861+03	
3e2ce288-38c3-57f8-965d-c9fbf55449a4	2021-05-21 10:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:41:12.853+03	2021-05-21 10:41:12.859+03	
3c925c42-f085-92ed-7a93-da331c846708	2021-05-21 10:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:41:33.853+03	2021-05-21 10:41:33.859+03	
9ca3bbc3-551d-6611-1e02-654d86af4ca0	2021-05-21 10:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:41:54.853+03	2021-05-21 10:41:54.859+03	
c62f61e5-9076-1b67-c96a-43429ffe6377	2021-05-21 10:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:42:14.853+03	2021-05-21 10:42:14.863+03	
57cc457f-432a-3522-2142-9901199e63bd	2021-05-21 10:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:42:34.853+03	2021-05-21 10:42:34.863+03	
aef4ecc5-d0d3-08bf-ab67-45b1ece40c81	2021-05-21 10:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:42:54.853+03	2021-05-21 10:42:54.86+03	
160fc83a-3f38-3972-95a9-6e24c52aeff4	2021-05-21 10:43:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:43:16.854+03	2021-05-21 10:43:16.862+03	
533f5a18-b6e6-3039-744a-e3fe50ed6a30	2021-05-21 10:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:43:37.853+03	2021-05-21 10:43:37.86+03	
031bea07-fae6-fcfa-0ecd-4773f97223e8	2021-05-21 10:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:43:58.853+03	2021-05-21 10:43:58.861+03	
fe957495-626c-aa20-4e25-9cbc4cbaf295	2021-05-21 10:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:44:18.853+03	2021-05-21 10:44:18.86+03	
6d169e22-e201-c7a6-4b56-06403157c24d	2021-05-21 10:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:44:39.852+03	2021-05-21 10:44:39.871+03	
83417fc6-b98f-6450-6a6b-3bfb82e9d7f0	2021-05-21 10:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:44:59.853+03	2021-05-21 10:44:59.861+03	
06e4572e-5ca0-4597-e282-4be79a3b8eef	2021-05-21 10:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:45:20.853+03	2021-05-21 10:45:20.876+03	
8598487d-2efc-e2c2-df75-ec366e788aaf	2021-05-21 10:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:45:40.853+03	2021-05-21 10:45:40.859+03	
83dd8978-68b1-ffcd-504d-39c70df9b099	2021-05-21 10:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:46:01.853+03	2021-05-21 10:46:01.881+03	
37fb2f8e-d464-6259-a2dc-041c4acb2811	2021-05-21 10:46:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:46:21.854+03	2021-05-21 10:46:21.86+03	
79151d16-ee2b-7682-f9bc-14a70e5c62d6	2021-05-21 10:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:46:42.853+03	2021-05-21 10:46:42.86+03	
25aac507-7b3d-2a95-df98-b627477e4171	2021-05-21 10:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:47:02.853+03	2021-05-21 10:47:02.862+03	
49578bd9-bbe6-d01e-f87c-b1904ae25bc6	2021-05-21 10:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:47:22.853+03	2021-05-21 10:47:22.862+03	
80898003-b46f-804d-cd3f-839cd146a7b4	2021-05-21 10:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:47:42.853+03	2021-05-21 10:47:42.872+03	
edd1cdcb-2962-5ed4-b940-c3ca30e74f3d	2021-05-21 10:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:48:02.853+03	2021-05-21 10:48:02.864+03	
e2e99bb7-aa38-497c-fab5-52f37e40c20c	2021-05-21 10:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:48:22.853+03	2021-05-21 10:48:22.859+03	
7398b24e-be77-eac1-ae56-f6aaf21c1b83	2021-05-21 10:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:48:42.853+03	2021-05-21 10:48:42.864+03	
cae040a6-6c1d-2d7f-476a-ba0775341d6b	2021-05-21 10:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:49:02.853+03	2021-05-21 10:49:02.86+03	
dbf821e9-acec-0bed-6f72-8d24f9b4ed15	2021-05-21 10:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:49:23.852+03	2021-05-21 10:49:23.859+03	
d29a5ca1-228c-5ae4-fef2-0d3fd4b647ce	2021-05-21 10:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:49:44.852+03	2021-05-21 10:49:45.117+03	
15889138-a764-877f-3e72-589f2a4549f7	2021-05-21 10:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 10:50:00.853+03	2021-05-21 10:50:00.858+03	ERROR
5ef2a40c-5e64-de04-0080-a7c652f6a1e4	2021-05-21 10:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:50:14.853+03	2021-05-21 10:50:14.872+03	
a41ca8f3-a97a-f379-1cf7-268e5d230525	2021-05-21 10:50:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:50:34.853+03	2021-05-21 10:50:34.862+03	
2e67d53f-3818-7031-023b-69df140cea3a	2021-05-21 10:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:50:54.853+03	2021-05-21 10:50:55.106+03	
728ab443-97f2-321a-33d4-ee2e3fad7208	2021-05-21 10:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:51:14.853+03	2021-05-21 10:51:14.861+03	
2f75d221-16b5-83ac-aa3c-b3b276a9fc1f	2021-05-21 10:51:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:51:36.852+03	2021-05-21 10:51:36.865+03	
5e169f3f-b384-9507-f7d9-ab81eaaf52b3	2021-05-21 10:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:51:57.852+03	2021-05-21 10:51:57.859+03	
88a2292a-6dee-d231-8718-d87e053cb9ad	2021-05-21 10:31:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:31:31.853+03	2021-05-21 10:31:31.861+03	
9afa5ec4-8131-8cc0-3487-983ff5667870	2021-05-21 10:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:31:52.853+03	2021-05-21 10:31:52.859+03	
35c43948-008e-2adb-6f6d-301fce36d5a9	2021-05-21 10:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:32:12.853+03	2021-05-21 10:32:12.859+03	
6f100f80-d4be-421a-8816-b287f85b12bf	2021-05-21 10:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:32:34.852+03	2021-05-21 10:32:34.862+03	
2a69e653-5206-2594-484d-437da7f009e4	2021-05-21 10:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:32:55.853+03	2021-05-21 10:32:55.867+03	
a004c7bd-b209-4370-6bb8-93d26f45cbb8	2021-05-21 10:33:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:33:16.853+03	2021-05-21 10:33:16.861+03	
e935ab6f-97b8-c04b-b2c4-6bb7c128f672	2021-05-21 10:33:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:33:36.853+03	2021-05-21 10:33:36.859+03	
2f535fcb-59e9-c357-63c3-8e79d354eb5a	2021-05-21 10:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:33:57.853+03	2021-05-21 10:33:57.861+03	
fd1ae43b-dd5e-a05f-f155-7df464caf9bd	2021-05-21 10:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:34:18.852+03	2021-05-21 10:34:18.858+03	
bdf75ee5-185c-856c-11b3-831e3a5010dc	2021-05-21 10:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:34:39.852+03	2021-05-21 10:34:39.86+03	
f2402d8f-5fc2-d66e-5961-0d921dc8b047	2021-05-21 10:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:35:00.853+03	2021-05-21 10:35:00.871+03	
950f4ede-82ab-9718-a2d5-d26f9a993354	2021-05-21 10:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:35:20.853+03	2021-05-21 10:35:20.86+03	
5ec9f4f9-51cf-3a1e-9371-2e2b806a3cea	2021-05-21 10:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:35:40.853+03	2021-05-21 10:35:40.897+03	
57b39fcc-3ff3-6db3-81fb-5c2e9dd5c12d	2021-05-21 10:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:36:00.853+03	2021-05-21 10:36:00.859+03	
892d98bb-e040-7b65-9bbb-5b52d84185f0	2021-05-21 10:36:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:36:21.854+03	2021-05-21 10:36:21.873+03	
0e68ce88-c068-7d95-66f0-78149a5c88f7	2021-05-21 10:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:36:42.853+03	2021-05-21 10:36:42.859+03	
5ddbd0b8-c6bc-da9d-fd9a-5e572b6f7b48	2021-05-21 10:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:37:02.853+03	2021-05-21 10:37:02.861+03	
e7ca775c-67e2-eb7d-94ad-e33a6522acd6	2021-05-21 10:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:37:22.853+03	2021-05-21 10:37:22.86+03	
06a239df-679d-da33-7e55-84fb6038c703	2021-05-21 10:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:37:43.852+03	2021-05-21 10:37:43.87+03	
f6e4a231-090f-9170-8303-1e2174c34da1	2021-05-21 10:38:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:38:04.853+03	2021-05-21 10:38:04.862+03	
04e1907f-921b-a526-01ae-d8ca4a1ca93c	2021-05-21 10:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:38:26.852+03	2021-05-21 10:38:26.86+03	
e1913c01-3bd0-e3de-34de-020847668421	2021-05-21 10:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:38:47.853+03	2021-05-21 10:38:47.869+03	
11f19201-240d-a463-a241-674a827cbe37	2021-05-21 10:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:39:08.853+03	2021-05-21 10:39:08.86+03	
5460a6dc-b8ee-2ddc-c1a3-3b561ce5cf6c	2021-05-21 10:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:39:29.852+03	2021-05-21 10:39:29.858+03	
49bfd2df-8e56-c815-64c2-26b27a0ad928	2021-05-21 10:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:39:49.853+03	2021-05-21 10:39:49.86+03	
665d2dcf-3756-5d6c-5093-2cfcdeedcfc9	2021-05-21 10:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 10:40:00.852+03	2021-05-21 10:40:00.858+03	ERROR
1d94410a-2f95-3a5d-497f-97b0f5224fca	2021-05-21 10:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:40:19.853+03	2021-05-21 10:40:19.862+03	
ad2338b6-66f5-951a-a21f-013b937d1a02	2021-05-21 10:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:40:41.853+03	2021-05-21 10:40:41.859+03	
ee9fb725-f298-db85-d45c-bf2234b38928	2021-05-21 10:41:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:41:01.854+03	2021-05-21 10:41:01.88+03	
3f773fef-7c00-e0af-1c1e-c226458b06ac	2021-05-21 10:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:41:23.853+03	2021-05-21 10:41:23.859+03	
461d654a-ddb9-dbb3-f091-83db121261e9	2021-05-21 10:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:41:43.853+03	2021-05-21 10:41:43.865+03	
4d479f0f-f7b5-1a3a-7e91-490a40168cf5	2021-05-21 10:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:42:04.853+03	2021-05-21 10:42:04.861+03	
d655ff86-c3cc-6209-7839-975520de3431	2021-05-21 10:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:42:24.853+03	2021-05-21 10:42:24.859+03	
06a82e8a-c45d-801b-36d9-22f7158e3d55	2021-05-21 10:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:42:44.853+03	2021-05-21 10:42:44.86+03	
913b6e2d-d34a-5595-8e14-4be36a0956c9	2021-05-21 10:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:43:05.853+03	2021-05-21 10:43:05.859+03	
6a126e11-235f-3293-2eaf-1c5462fd24fe	2021-05-21 10:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:43:27.853+03	2021-05-21 10:43:27.86+03	
0e038516-3157-01b0-f8bc-acfc14ab5afb	2021-05-21 10:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:43:48.852+03	2021-05-21 10:43:48.859+03	
863e5dd4-f22f-2190-2f43-cf2a276d30b7	2021-05-21 10:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:44:08.853+03	2021-05-21 10:44:08.864+03	
9d552e1d-5717-bce9-a51b-b5844cab36e3	2021-05-21 10:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:44:28.853+03	2021-05-21 10:44:28.859+03	
57bdd7b4-8058-5c92-c289-efc9b4f3b059	2021-05-21 10:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:44:49.852+03	2021-05-21 10:44:49.874+03	
e1f9af77-a845-bce8-888d-364332d19aa6	2021-05-21 10:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:45:09.853+03	2021-05-21 10:45:09.86+03	
070c6552-4f0b-4ab9-29cd-8accbde0d086	2021-05-21 10:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:45:30.853+03	2021-05-21 10:45:30.859+03	
a96e48b7-e044-c236-16a5-a3d4bf30d7a6	2021-05-21 10:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:45:50.853+03	2021-05-21 10:45:50.862+03	
bfb9d625-9708-15f2-e145-8d623a32b0a3	2021-05-21 10:46:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:46:11.853+03	2021-05-21 10:46:11.859+03	
c27d079f-fb4c-3374-94b6-4478a03445b4	2021-05-21 10:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:46:32.853+03	2021-05-21 10:46:32.86+03	
ba2f280d-d8e3-48f9-e32c-5442cbd9ca4b	2021-05-21 10:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:46:52.853+03	2021-05-21 10:46:52.86+03	
d0f466e4-5139-84f4-9497-9e9e487c86df	2021-05-21 10:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:47:12.853+03	2021-05-21 10:47:12.861+03	
8eb76473-d02a-9c33-f3b9-224ad6ac3b8e	2021-05-21 10:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:47:32.853+03	2021-05-21 10:47:32.859+03	
71680d7b-183d-7513-b973-3c64ea2ddf83	2021-05-21 10:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:47:52.853+03	2021-05-21 10:47:52.861+03	
424e6b18-d585-ddf2-b9e2-3a67bb28d070	2021-05-21 10:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:48:12.853+03	2021-05-21 10:48:12.863+03	
00e55908-af57-63f6-3bf8-1fb85f261c8c	2021-05-21 10:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:48:32.853+03	2021-05-21 10:48:32.859+03	
c21364a7-209b-e458-b6b5-71444ce8d1e3	2021-05-21 10:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:48:52.853+03	2021-05-21 10:48:52.859+03	
a6d7e63c-cf4e-ecfc-ced9-1075429333ce	2021-05-21 10:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:49:12.853+03	2021-05-21 10:49:12.86+03	
ac18c6ae-f8a4-1d03-5d0a-5a71db8f7923	2021-05-21 10:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:49:33.853+03	2021-05-21 10:49:33.859+03	
e1254439-7627-3758-b646-f4528416ae6e	2021-05-21 10:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:49:54.853+03	2021-05-21 10:49:54.86+03	
53f0e34f-f8be-5690-d185-9f710072423c	2021-05-21 10:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:50:04.853+03	2021-05-21 10:50:04.859+03	
8ac0cce8-95c8-eb75-6b3d-8250a0a2e71b	2021-05-21 10:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:50:24.853+03	2021-05-21 10:50:25.337+03	
54d700f2-d3e1-566e-10d3-248c2dcf1c70	2021-05-21 10:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:50:44.853+03	2021-05-21 10:50:44.86+03	
7510e63f-b668-6c48-1325-34b2eb3f1d2d	2021-05-21 10:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:51:04.853+03	2021-05-21 10:51:04.859+03	
95920167-59a2-1922-e0ad-93dfd7af0b36	2021-05-21 10:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:51:25.853+03	2021-05-21 10:51:26.105+03	
474280bc-c70e-bc85-0f3b-d46f8c408b88	2021-05-21 10:51:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:51:46.854+03	2021-05-21 10:51:47.171+03	
fa70e36d-7891-2c02-1d28-5e72a5dc60e5	2021-05-21 10:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:52:07.853+03	2021-05-21 10:52:07.861+03	
26afa4b7-1ed5-cdf8-7e17-2d4ddd6bcd8f	2021-05-21 10:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:52:28.853+03	2021-05-21 10:52:28.883+03	
8de1de8e-53c7-2f79-8543-42f20bdcc916	2021-05-21 10:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:52:18.853+03	2021-05-21 10:52:18.863+03	
124bb104-9469-1510-3334-0fffcb7a8a78	2021-05-21 10:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:52:39.853+03	2021-05-21 10:52:40.203+03	
01d6f606-8c8f-568a-3d27-78159fae5d43	2021-05-21 10:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:52:59.853+03	2021-05-21 10:52:59.861+03	
5662198a-cdb4-2993-6f57-0eb30255aa70	2021-05-21 10:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:53:19.853+03	2021-05-21 10:53:19.861+03	
534905b2-ad93-9e7b-a769-af842a77f4f0	2021-05-21 10:53:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:53:41.853+03	2021-05-21 10:53:41.86+03	
6c5bf367-54a6-0b20-e0c7-ec7c30071b66	2021-05-21 10:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:54:02.852+03	2021-05-21 10:54:02.859+03	
f13af530-4009-b465-61bc-c9adfc1e636a	2021-05-21 10:54:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:54:22.852+03	2021-05-21 10:54:22.86+03	
19cb2b01-3ca2-6982-7c00-a05e26a0251a	2021-05-21 10:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:54:42.853+03	2021-05-21 10:54:42.861+03	
25cdd956-70c1-f6e2-5a14-2266f09836da	2021-05-21 10:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:55:02.853+03	2021-05-21 10:55:02.86+03	
5965af96-c2af-8239-09df-647bbd151c63	2021-05-21 10:55:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:55:23.852+03	2021-05-21 10:55:23.862+03	
45b2b545-af70-d3d1-8020-9efbc7d282fc	2021-05-21 10:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:55:43.852+03	2021-05-21 10:55:43.866+03	
21969915-8792-cbfe-e271-c5c30cb63b92	2021-05-21 10:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:56:03.852+03	2021-05-21 10:56:03.859+03	
8818eed1-5e08-9f00-a08a-4625aa0d07df	2021-05-21 10:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:56:23.853+03	2021-05-21 10:56:24.1+03	
9473a16b-1316-3bd9-0594-3796590a1ff9	2021-05-21 10:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:56:44.853+03	2021-05-21 10:56:44.86+03	
cff57505-c726-3d6e-f774-d01cf36281c3	2021-05-21 10:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:57:05.853+03	2021-05-21 10:57:05.859+03	
3fcd5c27-9833-5e35-8c89-0dcabb51ffa9	2021-05-21 10:57:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:57:26.852+03	2021-05-21 10:57:26.861+03	
174c5948-78fa-a523-6b48-dc642208e7bc	2021-05-21 10:57:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:57:46.853+03	2021-05-21 10:57:46.861+03	
d1807a63-ac45-8733-25d0-29e852b4dfcf	2021-05-21 10:58:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:58:06.854+03	2021-05-21 10:58:07.097+03	
d1f7a9e6-9bce-ed68-b852-63278b38ac28	2021-05-21 10:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:58:27.853+03	2021-05-21 10:58:27.87+03	
8f4658d4-b29f-1e6e-e67c-13bbef5be3e5	2021-05-21 10:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:58:47.853+03	2021-05-21 10:58:48.155+03	
ddf89aac-e80e-8cb3-48a9-63718cc72ab2	2021-05-21 10:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:59:08.852+03	2021-05-21 10:59:08.859+03	
4c32b525-f7b5-22de-ab4e-94e4bed6fb13	2021-05-21 10:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:59:28.852+03	2021-05-21 10:59:28.86+03	
45fce3f8-f859-52eb-ace3-25761beae691	2021-05-21 10:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:59:48.853+03	2021-05-21 10:59:48.86+03	
82f618c1-b592-f967-8dd6-17482039386a	2021-05-21 11:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 11:00:00.853+03	2021-05-21 11:00:01.139+03	ERROR
7a4fa8c3-52f6-8baa-2783-b1b5187b5bc0	2021-05-21 11:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:00:19.853+03	2021-05-21 11:00:19.869+03	
51e4979e-333b-0b6d-617a-e2d4d74fb0c5	2021-05-21 11:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:00:39.853+03	2021-05-21 11:00:39.861+03	
1c351982-d03a-9eeb-098f-02fe6cd49e92	2021-05-21 11:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:00:59.853+03	2021-05-21 11:00:59.859+03	
9465b313-7b5b-4a05-fa01-bc29d64f9983	2021-05-21 11:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:01:20.853+03	2021-05-21 11:01:20.859+03	
b25ade87-8ac2-10c0-5abc-573b6c4f7d66	2021-05-21 11:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:01:40.853+03	2021-05-21 11:01:40.86+03	
42027b0d-bbc8-73b8-d425-cab2ef6c984a	2021-05-21 11:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:02:00.853+03	2021-05-21 11:02:00.864+03	
8a57fd4e-77c9-38a9-52e8-36fe3d86c220	2021-05-21 11:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:02:20.853+03	2021-05-21 11:02:20.859+03	
faa35af0-ebd1-5bee-4791-f9dd21a0aab6	2021-05-21 11:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:02:41.853+03	2021-05-21 11:02:41.86+03	
f32fe3a5-fbb5-882f-f705-47f5c033267a	2021-05-21 11:03:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:03:01.853+03	2021-05-21 11:03:01.86+03	
dfb8df48-61b9-b5ac-c53a-b699b56f3377	2021-05-21 11:03:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:03:21.854+03	2021-05-21 11:03:21.861+03	
38f89e7d-4809-88fc-f482-94cc4fa8a76d	2021-05-21 11:03:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:03:43.852+03	2021-05-21 11:03:43.858+03	
27ec8816-46e3-5786-2ab7-de59925d79a8	2021-05-21 11:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:04:04.853+03	2021-05-21 11:04:04.862+03	
d5c779d5-b71a-2cdd-852c-8be66ae8450a	2021-05-21 11:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:04:24.853+03	2021-05-21 11:04:24.859+03	
f53da24d-d2cc-a80f-18ae-9181352c7e96	2021-05-21 11:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:04:44.853+03	2021-05-21 11:04:44.862+03	
7167df68-51a5-2998-40a9-d8c4473c7490	2021-05-21 11:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:05:04.853+03	2021-05-21 11:05:04.862+03	
c8d4e2a7-9452-ac4e-ce3b-a364446246e6	2021-05-21 11:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:05:24.853+03	2021-05-21 11:05:24.861+03	
88e611e1-3625-d110-60ec-0da0fa8c5cda	2021-05-21 11:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:05:44.853+03	2021-05-21 11:05:44.862+03	
6e4f1f51-dcfc-69c0-8f35-0310d78ec6c0	2021-05-21 11:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:06:04.853+03	2021-05-21 11:06:04.859+03	
b5a4cea6-ea63-be77-f71b-9a5ab64b910e	2021-05-21 11:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:06:25.852+03	2021-05-21 11:06:25.86+03	
92f9246e-38d0-bd74-42f9-f904d28c6d19	2021-05-21 11:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:06:45.853+03	2021-05-21 11:06:45.86+03	
979d57a6-f49a-fb75-43b7-bde59010d1c4	2021-05-21 11:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:07:06.852+03	2021-05-21 11:07:06.858+03	
10dbec1b-475f-0365-6ed1-7dffcdaabe38	2021-05-21 11:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:07:27.852+03	2021-05-21 11:07:27.859+03	
16a2e2e1-9fa8-f0dc-9930-fe6a06c31211	2021-05-21 11:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:07:47.853+03	2021-05-21 11:07:47.865+03	
b0f90bce-d139-ca15-74a1-e4f5a8355019	2021-05-21 11:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:08:08.852+03	2021-05-21 11:08:08.867+03	
02194492-e37d-bcd4-330f-3d0499ea8982	2021-05-21 11:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:08:28.852+03	2021-05-21 11:08:28.865+03	
af32a2b3-3095-6d84-0bb4-654a161a97a6	2021-05-21 11:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:08:48.853+03	2021-05-21 11:08:48.865+03	
1417dc18-0541-3a2c-334e-a05fccb24edf	2021-05-21 11:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:09:08.853+03	2021-05-21 11:09:08.87+03	
a987d318-e56c-5101-0b03-56ae069131a2	2021-05-21 11:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:09:28.853+03	2021-05-21 11:09:28.867+03	
b1e62ac5-d88b-ab0b-91b2-879026acf7c0	2021-05-21 11:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:09:48.853+03	2021-05-21 11:09:48.86+03	
14377dd3-a630-aaa2-c718-dac109accc04	2021-05-21 11:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 11:10:00.853+03	2021-05-21 11:10:00.863+03	ERROR
41ddfe67-843e-5a0a-49b4-07d52d9278ee	2021-05-21 11:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:10:19.852+03	2021-05-21 11:10:19.866+03	
6979acaf-9ff9-da36-26fd-9af02b6c2222	2021-05-21 11:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:10:39.853+03	2021-05-21 11:10:39.865+03	
bc68a1ab-0d3d-6979-e279-b100ac74564e	2021-05-21 11:11:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:11:00.853+03	2021-05-21 11:11:00.865+03	
9d2cf7d1-b81c-f24b-4763-f90687e53810	2021-05-21 11:11:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:11:21.853+03	2021-05-21 11:11:21.866+03	
6286cbfd-720a-70b7-0609-0f9f872b80ec	2021-05-21 11:11:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:11:41.854+03	2021-05-21 11:11:42.1+03	
619c76e0-09fd-77e8-0951-93ded01a69fc	2021-05-21 11:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:12:02.853+03	2021-05-21 11:12:02.872+03	
62ee589e-df2e-fdc3-e8cb-035eedea3de6	2021-05-21 11:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:12:23.852+03	2021-05-21 11:12:23.866+03	
4450b488-9228-dfac-9fb2-55bbf819b61e	2021-05-21 11:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:12:44.852+03	2021-05-21 11:12:44.865+03	
0cd4e57d-9617-12cd-32a5-2175b9180b91	2021-05-21 11:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:13:04.853+03	2021-05-21 11:13:04.865+03	
6be82dcf-75d1-c609-e275-9ab4cd307780	2021-05-21 10:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:52:49.853+03	2021-05-21 10:52:50.096+03	
a00e2edd-7d98-94a3-0bba-71f3be3cc4d0	2021-05-21 10:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:53:09.853+03	2021-05-21 10:53:10.093+03	
3f8c532c-7294-2660-429f-3c9b1e2d809a	2021-05-21 10:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:53:30.853+03	2021-05-21 10:53:30.871+03	
f36a8a43-3d09-95c9-326a-e2b23cdb4b13	2021-05-21 10:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:53:52.852+03	2021-05-21 10:53:52.859+03	
6c44e135-6acf-5708-bd2d-c408d0ca0a55	2021-05-21 10:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:54:12.852+03	2021-05-21 10:54:12.86+03	
ab20d301-96de-ace9-3008-23434198aee6	2021-05-21 10:54:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:54:32.853+03	2021-05-21 10:54:32.87+03	
44898593-e8d1-aec4-1127-820997c4dbd7	2021-05-21 10:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:54:52.853+03	2021-05-21 10:54:52.861+03	
cdbd53ef-b065-a8f3-053f-54123010225d	2021-05-21 10:55:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:55:13.852+03	2021-05-21 10:55:14.142+03	
9885e324-7140-be8f-a367-f20960fe202d	2021-05-21 10:55:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:55:33.852+03	2021-05-21 10:55:33.924+03	
e1c4628a-7f8f-94a9-a772-0cf5097353fc	2021-05-21 10:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:55:53.852+03	2021-05-21 10:55:53.875+03	
a291c2ae-50aa-6ba0-0769-06a24c18e9c2	2021-05-21 10:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:56:13.852+03	2021-05-21 10:56:13.86+03	
3d491715-bfaa-00bb-4389-7701d8db91fd	2021-05-21 10:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:56:34.853+03	2021-05-21 10:56:34.861+03	
a5616f73-6077-0b9c-0258-bd5da36b3ecb	2021-05-21 10:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:56:54.853+03	2021-05-21 10:56:54.859+03	
81abc1b6-fedb-5381-283d-1ebc57bb7d08	2021-05-21 10:57:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:57:16.852+03	2021-05-21 10:57:16.866+03	
f04cc3f8-3721-46e4-bc0a-9ac313a90e96	2021-05-21 10:57:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:57:36.853+03	2021-05-21 10:57:36.866+03	
c053fd2a-cfe0-18b4-d71c-51b1b55ef322	2021-05-21 10:57:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:57:56.853+03	2021-05-21 10:57:56.86+03	
4d23bf74-9b2a-2198-67fc-949695da61c5	2021-05-21 10:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:58:17.853+03	2021-05-21 10:58:18.196+03	
d030ad1f-70b3-41f8-2e76-91b1d53b2b93	2021-05-21 10:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:58:37.853+03	2021-05-21 10:58:37.86+03	
00d0065b-0f6f-fa00-3b94-755b0f5811ee	2021-05-21 10:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:58:58.852+03	2021-05-21 10:58:58.86+03	
2e76a7d9-b834-6743-fc50-5496f60af588	2021-05-21 10:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:59:18.852+03	2021-05-21 10:59:18.859+03	
1206413b-93e0-a152-182e-80e21b3c817d	2021-05-21 10:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:59:38.853+03	2021-05-21 10:59:39.186+03	
65e398b3-fe27-6bf8-e31e-03016d44eb09	2021-05-21 10:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 10:59:59.853+03	2021-05-21 10:59:59.859+03	
4e2791a6-b208-7568-38d9-b4890f736460	2021-05-21 11:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:00:09.853+03	2021-05-21 11:00:09.863+03	
d74a7781-3c2d-f976-d766-9e51565c7773	2021-05-21 11:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:00:29.853+03	2021-05-21 11:00:29.874+03	
5e470659-083e-69c6-fb9a-c0b0d88fb6b9	2021-05-21 11:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:00:49.853+03	2021-05-21 11:00:49.859+03	
a0942e3c-9a54-c716-d080-c594645fc772	2021-05-21 11:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:01:10.852+03	2021-05-21 11:01:10.86+03	
e4cb0514-8d6d-3624-93e5-eb41aaedf3eb	2021-05-21 11:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:01:30.853+03	2021-05-21 11:01:30.862+03	
c42a3647-6255-e1c3-b343-7a6781e6a921	2021-05-21 11:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:01:50.853+03	2021-05-21 11:01:51.092+03	
99314f0a-66e6-f224-df0b-8d4c18e7e5df	2021-05-21 11:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:02:10.853+03	2021-05-21 11:02:10.869+03	
600baffd-e9a7-9c36-46b3-ddb2859990e8	2021-05-21 11:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:02:31.853+03	2021-05-21 11:02:31.859+03	
4e6ae221-c8a2-62e8-961f-96d134c84b2d	2021-05-21 11:02:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:02:51.853+03	2021-05-21 11:02:51.86+03	
6906f90a-ee87-29e5-c0a7-4c6adb8b42df	2021-05-21 11:03:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:03:11.853+03	2021-05-21 11:03:11.859+03	
3a303598-eb87-7ad5-37f8-ed4fb8b33088	2021-05-21 11:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:03:32.853+03	2021-05-21 11:03:32.871+03	
24b1fc0a-6ec0-3c9a-168a-77a08dd5d7dd	2021-05-21 11:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:03:53.853+03	2021-05-21 11:03:53.859+03	
26e5e770-94da-a1b3-e97f-25888e78c440	2021-05-21 11:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:04:14.853+03	2021-05-21 11:04:14.859+03	
e2143351-96fb-a557-7910-43ed27dba71f	2021-05-21 11:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:04:34.853+03	2021-05-21 11:04:34.86+03	
8f7a6963-3506-fb2d-b5e3-fa8b7e9539f3	2021-05-21 11:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:04:54.853+03	2021-05-21 11:04:54.859+03	
82118527-5009-245f-187e-a77e411d94d7	2021-05-21 11:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:05:14.853+03	2021-05-21 11:05:14.861+03	
22464838-b55e-1601-eb06-77e113bac254	2021-05-21 11:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:05:34.853+03	2021-05-21 11:05:34.859+03	
1efacbf6-7f47-b62f-ff54-3c86b251a698	2021-05-21 11:05:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:05:54.853+03	2021-05-21 11:05:54.874+03	
924cfa5c-79d4-f195-ba07-5e280dd86d73	2021-05-21 11:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:06:14.853+03	2021-05-21 11:06:14.875+03	
c0010322-70a2-6ae3-eaf4-f2c95b7e6eed	2021-05-21 11:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:06:35.853+03	2021-05-21 11:06:35.859+03	
34e40d63-2789-df2e-fe8a-f2bfcf280008	2021-05-21 11:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:06:55.853+03	2021-05-21 11:06:55.861+03	
d4d6cfd6-f946-7c3a-763d-8d6356ff52ff	2021-05-21 11:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:07:16.853+03	2021-05-21 11:07:16.859+03	
4d065e10-d567-cab2-2183-cea76c417ba8	2021-05-21 11:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:07:37.853+03	2021-05-21 11:07:37.865+03	
4ab71ee0-8f31-d527-0db1-43e1fa45d6a8	2021-05-21 11:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:07:58.852+03	2021-05-21 11:07:58.867+03	
ee80a98b-301e-f0d9-e6a9-0f17944ec3ad	2021-05-21 11:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:08:18.852+03	2021-05-21 11:08:18.865+03	
309e5db4-8b8a-b7a6-8dfc-60a0bf364279	2021-05-21 11:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:08:38.853+03	2021-05-21 11:08:38.865+03	
8e26d243-2acb-6fd9-7564-84ac6b96d655	2021-05-21 11:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:08:58.853+03	2021-05-21 11:08:58.861+03	
542e04ab-1621-fea3-f4ad-cd85978ffa6b	2021-05-21 11:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:09:18.853+03	2021-05-21 11:09:18.865+03	
64809fda-9513-82a9-c96c-a85150fdbc88	2021-05-21 11:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:09:38.853+03	2021-05-21 11:09:38.862+03	
e072001d-7f44-325b-1f0f-26d5a4688e7c	2021-05-21 11:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:09:58.853+03	2021-05-21 11:09:58.873+03	
f70ab2c2-0a2c-316f-26c0-c2008464e8db	2021-05-21 11:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:10:08.853+03	2021-05-21 11:10:08.871+03	
cd9f22ff-e3e3-06cc-74c4-4570e6707fb9	2021-05-21 11:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:10:29.853+03	2021-05-21 11:10:29.865+03	
ae2c54f7-dc6e-cdf1-f386-f0bebb506baa	2021-05-21 11:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:10:50.853+03	2021-05-21 11:10:50.866+03	
e20d7bba-47d5-26ae-53c7-1cb19bf58a20	2021-05-21 11:11:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:11:11.852+03	2021-05-21 11:11:11.864+03	
d82fb7a5-5515-232e-3095-32abc7b69a81	2021-05-21 11:11:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:11:31.854+03	2021-05-21 11:11:31.868+03	
cc043351-e3a3-3ec0-25d7-32f40ecc2bd9	2021-05-21 11:11:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:11:52.853+03	2021-05-21 11:11:52.867+03	
b89a7dfd-a7bc-fb29-d596-b0aeba92c980	2021-05-21 11:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:12:13.852+03	2021-05-21 11:12:13.866+03	
3276dae2-6f70-52da-b308-e8c6627a6d13	2021-05-21 11:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:12:33.853+03	2021-05-21 11:12:33.86+03	
352538bb-cfa5-6d0b-42a9-31e58171ab7d	2021-05-21 11:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:12:54.853+03	2021-05-21 11:12:54.859+03	
192b998d-dd18-3c5a-5246-03fdf23bf1d0	2021-05-21 11:13:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:13:14.853+03	2021-05-21 11:13:14.864+03	
c25b2032-76f4-bbdb-946e-d23c43e03b08	2021-05-21 11:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:13:35.853+03	2021-05-21 11:13:35.866+03	
6da33401-c5b8-a333-d51e-a551c7ea3dca	2021-05-23 22:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:46:06.853+03	2021-05-23 22:46:06.86+03	
31a9cae0-e1d8-0ec7-eb43-ceb383415ffc	2021-05-21 11:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:13:25.853+03	2021-05-21 11:13:26.159+03	
54e76dc1-b902-b118-46f9-6cfc28b8116c	2021-05-21 11:39:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:39:21.853+03	2021-05-21 11:39:21.877+03	
d5e085e7-c9e3-9fe0-754c-431edc30e521	2021-05-21 11:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:13:45.853+03	2021-05-21 11:13:45.865+03	
070c7e5d-b235-7212-d0a3-95b027888968	2021-05-21 11:14:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:14:06.852+03	2021-05-21 11:14:06.865+03	
5e252e01-02ae-c831-0bdc-c6a4686e7143	2021-05-21 11:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:39:41.853+03	2021-05-21 11:39:41.861+03	
24ee5171-7802-46a3-a2d7-47c1b2b78339	2021-05-21 11:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:14:27.853+03	2021-05-21 11:14:27.861+03	
06da26a2-eb08-fc8d-854e-6636b5ffb6c2	2021-05-21 11:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:14:47.853+03	2021-05-21 11:14:47.866+03	
a41ea2c1-6cc3-38aa-0128-e5084b0bd85b	2021-05-21 11:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 11:40:00.853+03	2021-05-21 11:40:00.858+03	ERROR
b1987a25-1a9f-a582-d962-040cf1c77045	2021-05-21 11:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:15:08.852+03	2021-05-21 11:15:08.868+03	
e58891e3-2ef5-c075-0af1-3745b87aa1e4	2021-05-21 11:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:15:28.853+03	2021-05-21 11:15:28.861+03	
80990b79-6ff8-e043-d6da-8db6a37d03ae	2021-05-21 11:40:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:40:11.854+03	2021-05-21 11:40:11.861+03	
d5483e5f-019f-eabb-b12b-ecbca4bbd24c	2021-05-21 11:15:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:15:49.852+03	2021-05-21 11:15:49.863+03	
957317e1-be68-5221-6d56-b5fb9a662d90	2021-05-21 11:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:16:09.853+03	2021-05-21 11:16:09.862+03	
fba38af8-ca8e-0107-2e09-e0ca8311b579	2021-05-21 11:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:40:32.853+03	2021-05-21 11:40:32.86+03	
9a215ef3-8f77-216a-6518-dfade96ce16b	2021-05-21 11:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:16:30.853+03	2021-05-21 11:16:30.867+03	
8d232c63-38c5-a55b-dc09-8dcafafcd88c	2021-05-21 11:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:16:50.853+03	2021-05-21 11:16:50.875+03	
51994260-15a5-0f54-1256-636eaf34957c	2021-05-21 11:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:40:52.853+03	2021-05-21 11:40:52.859+03	
4d4ec833-e4fe-c724-cf56-b6b1cd2f5209	2021-05-21 11:17:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:17:11.852+03	2021-05-21 11:17:11.86+03	
a4f6502f-7c46-6742-9346-31948b5e5e7e	2021-05-21 11:17:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:17:31.854+03	2021-05-21 11:17:31.862+03	
02b59417-d021-0027-ff7d-44e4d6b7f140	2021-05-21 11:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:41:12.853+03	2021-05-21 11:41:12.858+03	
9bb2a3c2-4376-a572-bb08-e78b665040ca	2021-05-21 11:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:17:52.853+03	2021-05-21 11:17:52.859+03	
850a8598-175a-2f9c-34a2-adcb87d3a209	2021-05-21 11:18:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:18:12.853+03	2021-05-21 11:18:12.866+03	
ee22e242-7416-48fa-64c3-892d2b0ea707	2021-05-21 11:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:41:33.853+03	2021-05-21 11:41:33.86+03	
fa0e5140-d8a5-76c3-5838-7be3e1a31418	2021-05-21 11:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:18:32.853+03	2021-05-21 11:18:32.866+03	
d9fce596-f1cf-78c9-fe7f-841144e39851	2021-05-21 11:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:18:52.853+03	2021-05-21 11:18:52.862+03	
c5f19c82-5c74-8c46-eabf-d9dd17569b96	2021-05-21 11:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:41:53.853+03	2021-05-21 11:41:53.86+03	
5d7af847-9677-763b-3104-b3785985bd6e	2021-05-21 11:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:19:13.852+03	2021-05-21 11:19:14.148+03	
68560e18-719c-6157-fd06-03cee83407b3	2021-05-21 11:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:19:33.852+03	2021-05-21 11:19:34.256+03	
3a7a510a-5a39-b7ff-20b9-b73422aa1cf7	2021-05-21 11:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:42:13.853+03	2021-05-21 11:42:13.859+03	
1ac357a3-cd20-2f86-8390-25d3e21bf933	2021-05-21 11:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:19:54.852+03	2021-05-21 11:19:54.865+03	
8caf561f-468a-05b8-0db6-74863f923a2c	2021-05-21 11:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:20:04.853+03	2021-05-21 11:20:04.874+03	
a746b32d-2a48-0e1e-c064-70163e737227	2021-05-21 11:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:42:33.853+03	2021-05-21 11:42:33.859+03	
ccad4f36-a088-2fdf-50b7-2b6dbfb50de4	2021-05-21 11:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:20:24.853+03	2021-05-21 11:20:24.86+03	
82b436ee-c6a5-8403-010a-7003672af89e	2021-05-21 11:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:20:45.853+03	2021-05-21 11:20:46.176+03	
d868c51a-9a8e-aa7f-d067-9d6667b589e4	2021-05-21 11:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:42:54.852+03	2021-05-21 11:42:54.859+03	
110ccfce-a14f-f2f6-1762-92859a67f07e	2021-05-21 11:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:21:06.852+03	2021-05-21 11:21:06.865+03	
54f30363-1a86-feba-4505-886ff0a565bf	2021-05-21 11:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:21:26.852+03	2021-05-21 11:21:26.866+03	
2c855c88-961b-1494-1a79-a42b69b7236b	2021-05-21 11:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:43:14.853+03	2021-05-21 11:43:14.86+03	
80c2aefb-d0bb-3fc7-5ffc-2b34470a60bd	2021-05-21 11:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:21:46.853+03	2021-05-21 11:21:46.859+03	
bfee5297-b834-441b-08f2-5b3304acffec	2021-05-21 11:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:22:07.852+03	2021-05-21 11:22:07.86+03	
1d5c73f5-f092-3296-e0ed-90f6517b4930	2021-05-21 11:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:43:36.853+03	2021-05-21 11:43:36.859+03	
f2f6416a-1dac-1fd3-83b1-87568e0f2745	2021-05-21 11:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:22:28.852+03	2021-05-21 11:22:28.861+03	
6c664f10-0d80-ea21-d8f2-718ff0b7ebaf	2021-05-21 11:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:22:48.852+03	2021-05-21 11:22:48.861+03	
1616b58b-9932-9128-81b9-2ce801911786	2021-05-21 11:43:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:43:56.854+03	2021-05-21 11:43:56.86+03	
5208b22f-136d-9561-2714-9d2cfdfd050b	2021-05-21 11:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:23:08.853+03	2021-05-21 11:23:08.86+03	
fa9b3e41-70d6-ae85-b37d-c174ee166237	2021-05-21 11:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:23:29.853+03	2021-05-21 11:23:29.921+03	
bf15c7e9-1815-d16b-69d1-d4d7bad37ba9	2021-05-21 11:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:44:18.852+03	2021-05-21 11:44:18.859+03	
e72fd071-4152-2875-b870-9684b7642c9e	2021-05-21 11:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:44:39.852+03	2021-05-21 11:44:39.86+03	
b04840f8-cd43-84c7-ff2a-b42c910f5233	2021-05-21 11:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:44:59.853+03	2021-05-21 11:44:59.859+03	
d3bfbb4a-ee74-3435-c34a-2bb4b6a44d87	2021-05-21 11:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:45:20.853+03	2021-05-21 11:45:20.86+03	
5bc6463a-f258-61a2-6148-d0fe60fa65ab	2021-05-21 11:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:45:42.853+03	2021-05-21 11:45:42.86+03	
624b4b40-fad8-ea22-d57f-d3442739eb9a	2021-05-21 11:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:46:03.853+03	2021-05-21 11:46:03.87+03	
ffc73a13-c83a-ab74-c051-3b8e19bf4428	2021-05-21 11:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:46:24.853+03	2021-05-21 11:46:24.874+03	
8a68bb59-f0e4-853f-c95c-9fdb6afa7c93	2021-05-21 11:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:46:45.853+03	2021-05-21 11:46:45.861+03	
54f928f1-cd6d-f582-a515-0748981a7b4c	2021-05-21 11:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:47:07.853+03	2021-05-21 11:47:07.86+03	
89ffe5b7-67e9-cfc8-ad48-d7af2f5d98dd	2021-05-21 11:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:47:28.853+03	2021-05-21 11:47:28.859+03	
d0b54755-642f-5050-15c5-e42efcef6fc8	2021-05-21 11:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:47:48.853+03	2021-05-21 11:47:48.861+03	
c295683c-8aac-5ce4-c6d4-820d58e728f4	2021-05-21 11:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:48:09.852+03	2021-05-21 11:48:09.859+03	
3351b30e-fe47-b8ae-aa89-80a38c5ffb63	2021-05-21 11:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:48:29.853+03	2021-05-21 11:48:29.861+03	
44b131ad-aa00-a79e-7e6e-7ee3a5eeaff7	2021-05-21 11:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:48:50.853+03	2021-05-21 11:48:50.86+03	
cfccfd10-c18e-c477-3b1a-8b23ae3cc6ff	2021-05-21 11:49:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:49:11.852+03	2021-05-21 11:49:11.872+03	
8482054e-b3fc-ca79-ec84-3f66b248bb84	2021-05-21 11:49:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:49:31.853+03	2021-05-21 11:49:31.861+03	
7069691c-1c8b-9284-8ba9-cc422f57ef30	2021-05-21 11:49:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:49:51.854+03	2021-05-21 11:49:51.863+03	
3ff63d50-7075-d150-58c3-a0f9354026bb	2021-05-21 21:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:59:39.853+03	2021-05-21 21:59:39.86+03	
dede20c3-83c5-68e1-58c8-18aeebc5e461	2021-05-21 11:13:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:13:56.852+03	2021-05-21 11:13:56.868+03	
923ac56c-37ba-6373-306b-5cf61a8a6ba9	2021-05-21 11:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:46:34.853+03	2021-05-21 11:46:34.859+03	
ced587cd-4864-2294-61a6-98f0ccf09feb	2021-05-21 11:14:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:14:16.853+03	2021-05-21 11:14:17.097+03	
8a0aeed6-6594-cba2-2468-64444ac52ebf	2021-05-21 11:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:14:37.853+03	2021-05-21 11:14:37.862+03	
b0bb7356-59da-8e60-fa02-cd50c350ed4d	2021-05-21 11:46:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:46:56.853+03	2021-05-21 11:46:56.86+03	
e3121a49-028e-242b-76ee-59e6dcfda5fa	2021-05-21 11:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:14:57.853+03	2021-05-21 11:14:57.86+03	
e77c801b-704b-afee-3aff-d0fe748148b5	2021-05-21 11:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:15:18.852+03	2021-05-21 11:15:18.876+03	
ea4dbecd-8bb1-1d06-40b4-74cb6cc3926f	2021-05-21 11:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:47:17.853+03	2021-05-21 11:47:17.86+03	
907185a6-a55f-6458-c8f0-f081881b6ad1	2021-05-21 11:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:15:39.852+03	2021-05-21 11:15:40.171+03	
a00e468b-58fa-db47-c794-16c1508fa4f9	2021-05-21 11:15:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:15:59.853+03	2021-05-21 11:16:00.172+03	
9acb8dee-48cb-a526-a45f-7bf46d0c83b2	2021-05-21 11:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:47:38.853+03	2021-05-21 11:47:38.872+03	
c197fba3-8576-4373-32a4-006737578da9	2021-05-21 11:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:16:20.852+03	2021-05-21 11:16:20.86+03	
f5bb27a9-9bc4-4ed4-b93b-ea06105a0c55	2021-05-21 11:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:16:40.853+03	2021-05-21 11:16:41.047+03	
5aab6a89-c6f8-e977-e67a-c85ac5a9bdb7	2021-05-21 11:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:47:59.852+03	2021-05-21 11:47:59.86+03	
132f0dd2-90de-acd5-97ce-130a80d3e88b	2021-05-21 11:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:17:00.853+03	2021-05-21 11:17:00.859+03	
8bfbc22c-0cc0-2687-33d1-c4b10cb95ad3	2021-05-21 11:17:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:17:21.854+03	2021-05-21 11:17:21.86+03	
5473c657-c3db-3d7c-18b2-79c9abd5676b	2021-05-21 11:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:48:19.852+03	2021-05-21 11:48:19.86+03	
d2561c33-6e5a-6b4a-278f-6ceb806831df	2021-05-21 11:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:17:42.853+03	2021-05-21 11:17:42.86+03	
4fbc747b-db54-9e79-65c2-6c03fa802e17	2021-05-21 11:18:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:18:02.853+03	2021-05-21 11:18:02.869+03	
c39ed708-1ea2-e48c-2195-c276d72c1d59	2021-05-21 11:48:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:48:39.853+03	2021-05-21 11:48:39.86+03	
2df9e1a4-28c1-f692-45a6-b74081ad8904	2021-05-21 11:18:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:18:22.853+03	2021-05-21 11:18:22.865+03	
0332d635-e8ec-5b55-976c-5fc82e8621b4	2021-05-21 11:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:18:42.853+03	2021-05-21 11:18:42.866+03	
2cd3577f-1216-bbe7-37af-82a2207cc49a	2021-05-21 11:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:49:00.853+03	2021-05-21 11:49:00.861+03	
7952d96e-2aee-9fca-8107-168bbca5e063	2021-05-21 11:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:19:02.853+03	2021-05-21 11:19:02.865+03	
6aa78ebc-d2a4-1fb2-fc71-b6c90b50ef2f	2021-05-21 11:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:19:23.852+03	2021-05-21 11:19:23.989+03	
b57d291e-8d93-5b48-3637-7d2436d57a76	2021-05-21 11:49:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:49:21.853+03	2021-05-21 11:49:21.861+03	
1cf71048-00eb-e558-7acb-d8423b82461f	2021-05-21 11:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:19:43.853+03	2021-05-21 11:19:43.858+03	
76ecf8af-aa84-086a-91ec-bed0e9f95d05	2021-05-21 11:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 11:20:00.852+03	2021-05-21 11:20:00.862+03	ERROR
aba0d491-5f95-ed2f-6944-57aa87b8d044	2021-05-21 11:49:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:49:41.854+03	2021-05-21 11:49:41.861+03	
39577efe-6eb3-8355-849b-8c11b68aa4c0	2021-05-21 11:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:20:14.853+03	2021-05-21 11:20:14.868+03	
b26414b9-526c-626f-309c-1dd1f91b63aa	2021-05-21 11:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:20:35.853+03	2021-05-21 11:20:36.148+03	
89c98a36-0e9c-37ab-0f2b-f203ec9e4b4c	2021-05-21 11:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 11:50:00.853+03	2021-05-21 11:50:00.859+03	ERROR
fc4b62fe-1a51-19a3-4fbd-a8d9a5f5e6cd	2021-05-21 11:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:20:56.852+03	2021-05-21 11:20:56.863+03	
b6e9815a-b0e3-8961-a531-940e18b453e7	2021-05-21 11:50:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:50:01.854+03	2021-05-21 11:50:01.861+03	
44703b1f-3d42-4711-0b22-643b2806a9cc	2021-05-21 11:21:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:21:16.852+03	2021-05-21 11:21:17.094+03	
1c968bfc-3f42-bc61-7881-ca6fff4157c9	2021-05-21 11:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:21:36.853+03	2021-05-21 11:21:37.097+03	
3bb1f65e-acc9-19e0-8e29-18fef64fbb24	2021-05-21 11:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:50:12.853+03	2021-05-21 11:50:12.859+03	
5813723a-0f9d-6a49-0783-63bc9fa1f3dd	2021-05-21 11:21:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:21:56.853+03	2021-05-21 11:21:56.86+03	
32743123-e627-dfa6-fcc6-c95fad63d0a5	2021-05-21 11:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:22:17.853+03	2021-05-21 11:22:17.861+03	
3d7e8388-2759-da6e-f5fb-9f357ab02e78	2021-05-21 11:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:50:22.853+03	2021-05-21 11:50:22.861+03	
29b452ba-2a44-db27-ea4a-015db0505a3a	2021-05-21 11:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:22:38.852+03	2021-05-21 11:22:38.91+03	
0c125511-dcb8-3541-b723-0cee619c4cae	2021-05-21 11:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:22:58.852+03	2021-05-21 11:22:59.191+03	
9c3a5764-0dc7-ab98-3a37-99190e14fe16	2021-05-21 11:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:50:32.853+03	2021-05-21 11:50:32.86+03	
0f8ffe7c-4b5f-2a4f-473f-3eab4fc7ad13	2021-05-21 11:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:23:19.853+03	2021-05-21 11:23:19.861+03	
7b8695fe-1626-b734-ef32-ff09727983c2	2021-05-21 11:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:50:43.853+03	2021-05-21 11:50:43.859+03	
e4639441-8eed-d73c-f397-a6e46b3d1ddd	2021-05-21 11:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:50:53.853+03	2021-05-21 11:50:53.864+03	
0484c794-976b-a693-9c0e-ced984aea3f8	2021-05-21 11:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:51:03.853+03	2021-05-21 11:51:03.862+03	
bdb78533-6b5e-4758-18a5-c4dac0a41d62	2021-05-21 11:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:51:13.853+03	2021-05-21 11:51:13.868+03	
57cc833f-7cd8-0234-a830-685a11203fd9	2021-05-21 11:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:51:23.853+03	2021-05-21 11:51:23.86+03	
fb306f39-8541-744a-676b-e7460e706763	2021-05-21 11:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:51:33.853+03	2021-05-21 11:51:33.862+03	
49206411-d292-3392-da85-ed90b13be835	2021-05-21 11:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:51:43.853+03	2021-05-21 11:51:43.861+03	
e826d097-e679-68e8-6f5b-52cb69c69234	2021-05-21 11:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:51:53.853+03	2021-05-21 11:51:53.872+03	
945af852-7459-25dc-a459-bd46684687f0	2021-05-21 11:52:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:52:03.853+03	2021-05-21 11:52:03.861+03	
0aea3f3d-bd67-cea3-e094-d671f49df6f8	2021-05-21 11:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:52:13.853+03	2021-05-21 11:52:13.862+03	
6156eba6-dd47-25b9-a31e-31eb20e32373	2021-05-21 11:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:52:23.853+03	2021-05-21 11:52:23.861+03	
e315c5d6-9e37-9a15-5dd6-26d895c1a668	2021-05-21 11:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:52:33.853+03	2021-05-21 11:52:33.86+03	
bec8368f-d25a-6288-659b-c11d05f4537e	2021-05-21 11:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:52:43.853+03	2021-05-21 11:52:43.933+03	
ea7cb348-44c8-f4a2-4644-672f05946a01	2021-05-21 11:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:52:54.853+03	2021-05-21 11:52:54.86+03	
18588b50-1843-39f8-6093-b4e67d208cc4	2021-05-21 11:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:53:04.853+03	2021-05-21 11:53:04.907+03	
f0166b15-83b6-4ceb-c2c9-6734ed2a4ae3	2021-05-21 11:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:53:14.853+03	2021-05-21 11:53:15.18+03	
bc3da1cc-4009-37a5-ea84-ba6774113274	2021-05-21 11:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:53:24.853+03	2021-05-21 11:53:25.099+03	
adb1eac6-2581-a0b6-fd19-3a5d609fa3f9	2021-05-21 11:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:53:34.853+03	2021-05-21 11:53:34.86+03	
bbe0c1a0-b22b-76f6-2031-50ea62a85fc5	2021-05-21 11:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:53:44.853+03	2021-05-21 11:53:45.099+03	
41ecd6f5-7a5d-e439-7bb3-dda756ea170b	2021-05-21 11:53:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:53:55.853+03	2021-05-21 11:53:56.101+03	
0918c9ac-6b8f-f7b5-5fab-4e468f235476	2021-05-21 11:54:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:54:16.853+03	2021-05-21 11:54:16.86+03	
29f4e038-ec3c-2224-9b12-9c4360abe10b	2021-05-21 11:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:54:37.853+03	2021-05-21 11:54:37.861+03	
8be210a5-a714-6c63-ec1d-2ab72ed0f3f7	2021-05-21 11:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:54:57.853+03	2021-05-21 11:54:57.864+03	
6b9655a0-c3d6-0238-4f71-8ac9f3d41b55	2021-05-21 11:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:55:18.852+03	2021-05-21 11:55:18.862+03	
adfb6b12-32e9-694f-cc10-8db8620dccc2	2021-05-21 11:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:55:39.853+03	2021-05-21 11:55:39.859+03	
2b535fd3-9aaa-9b22-bf3c-b66661fc701a	2021-05-21 11:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:56:00.853+03	2021-05-21 11:56:00.862+03	
be845495-c757-f799-182a-d862b1a93e59	2021-05-21 11:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:56:20.853+03	2021-05-21 11:56:20.861+03	
da2cd27f-9baa-693e-5bc2-18d0844ac6aa	2021-05-21 11:56:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:56:41.853+03	2021-05-21 11:56:41.859+03	
40838a54-0939-0e03-6640-7c6647f9d05b	2021-05-21 11:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:57:02.852+03	2021-05-21 11:57:02.859+03	
3ab6a3e1-72ce-652e-c63b-ace99b9e7055	2021-05-21 11:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:57:22.853+03	2021-05-21 11:57:22.86+03	
1e184680-805b-13a2-520c-063185546c57	2021-05-21 11:57:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:57:43.853+03	2021-05-21 11:57:43.861+03	
ed1d07d7-2788-478e-ee9d-fddd25c38581	2021-05-21 11:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:58:04.853+03	2021-05-21 11:58:04.86+03	
88d3ee3c-1984-73f5-0331-0f529838a828	2021-05-21 11:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:58:24.853+03	2021-05-21 11:58:25.094+03	
3801bfab-ddc2-eea7-e584-1ba4e85232ee	2021-05-21 11:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:58:44.853+03	2021-05-21 11:58:45.152+03	
54848086-5037-73a0-148f-96ca336ebca9	2021-05-21 11:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:59:04.853+03	2021-05-21 11:59:04.975+03	
746a6ae5-690b-79c4-08ce-c9f22c28c0eb	2021-05-21 11:59:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:59:24.853+03	2021-05-21 11:59:24.862+03	
246573bb-3ed4-71ae-e5c5-c198935551fd	2021-05-21 11:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:59:45.853+03	2021-05-21 11:59:45.859+03	
4fe5437f-d750-e3ba-2332-eb6a3c2f3f38	2021-05-21 12:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 12:00:00.853+03	2021-05-21 12:00:00.861+03	ERROR
52ae3b63-3db4-1126-2af4-91afbd13f02c	2021-05-21 12:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:00:15.853+03	2021-05-21 12:00:15.872+03	
e08fcd4b-a194-7c32-2f53-a9ee38ed138f	2021-05-21 12:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:00:35.853+03	2021-05-21 12:00:35.876+03	
12180b42-196c-c260-54c5-8d0519055de2	2021-05-21 12:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:00:55.853+03	2021-05-21 12:00:56.207+03	
09a6b1b5-2456-17fe-cd4c-6a8e2efd995d	2021-05-21 12:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:01:15.853+03	2021-05-21 12:01:15.861+03	
372c7ddc-ec17-8d98-5002-b60d577027a1	2021-05-21 12:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:01:45.853+03	2021-05-21 12:01:46.188+03	
97b67f6e-6064-f3e0-030a-b7d8a48f3031	2021-05-21 12:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:02:05.853+03	2021-05-21 12:02:05.86+03	
0b449c29-77ea-0c01-485e-2ea18010c515	2021-05-21 12:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:02:26.852+03	2021-05-21 12:02:26.875+03	
5b7a8153-b1d0-ff08-9e69-d57eaddf523c	2021-05-21 12:02:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:02:46.854+03	2021-05-21 12:02:47.142+03	
5b551494-e253-f242-ffbb-46a5e29a8d11	2021-05-21 12:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:03:08.853+03	2021-05-21 12:03:08.859+03	
30f2e309-1406-7a83-3ef7-dbf194f71229	2021-05-21 12:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:03:29.853+03	2021-05-21 12:03:29.873+03	
735d8e4e-02a7-c7ea-d042-aa6cb155f040	2021-05-21 12:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:03:49.853+03	2021-05-21 12:03:49.87+03	
734b6fa9-39a2-49de-4ac0-bd0385a4abb8	2021-05-21 12:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:04:09.853+03	2021-05-21 12:04:09.862+03	
8b728e46-36a6-f2c1-3972-c1f3f1d49984	2021-05-21 12:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:04:30.852+03	2021-05-21 12:04:30.863+03	
7e056edb-3edb-afed-e67f-279ff35fad90	2021-05-21 12:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:04:50.852+03	2021-05-21 12:04:50.861+03	
76356f1f-4853-9ae5-0e5d-6bb0c12ec490	2021-05-21 12:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:05:10.852+03	2021-05-21 12:05:10.862+03	
e1c23881-5c8a-7e80-b6f6-5f35ddf8e52b	2021-05-21 12:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:05:30.853+03	2021-05-21 12:05:30.858+03	
0ccf2884-8e7b-d77d-b65f-7e2e0cf169e0	2021-05-21 12:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:05:50.853+03	2021-05-21 12:05:50.863+03	
5d451164-cd98-5152-a2fa-72efafc42230	2021-05-21 12:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:06:10.853+03	2021-05-21 12:06:10.86+03	
7d50c393-144a-fb39-3f7f-ae174edb38dc	2021-05-21 12:06:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:06:31.853+03	2021-05-21 12:06:31.859+03	
17d74134-153b-8f5b-f7e5-6a5f8b6fd79d	2021-05-21 12:06:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:06:52.852+03	2021-05-21 12:06:52.862+03	
575f36ce-b906-87ec-2f2e-ad87153d6c13	2021-05-21 12:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:07:12.853+03	2021-05-21 12:07:12.859+03	
fb15d7af-8e14-1a68-8ffc-dcc645eebed2	2021-05-21 12:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:07:32.853+03	2021-05-21 12:07:32.859+03	
2aa700e1-612c-541a-621d-c7505338c297	2021-05-21 12:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:07:52.853+03	2021-05-21 12:07:52.859+03	
5fa7352f-1b06-cc6e-bf36-237d850528a4	2021-05-21 12:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:08:13.852+03	2021-05-21 12:08:13.862+03	
849cf865-042c-d18b-3859-4af54542d0f7	2021-05-21 12:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:08:33.852+03	2021-05-21 12:08:33.86+03	
e1074cab-45be-e509-5c80-232d407c7391	2021-05-21 12:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:08:54.853+03	2021-05-21 12:08:54.867+03	
01a6ea01-cf2f-8df5-7118-5037fb1b3300	2021-05-21 12:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:09:14.853+03	2021-05-21 12:09:14.876+03	
b6c3e22b-08dc-4ad0-543f-a8a9b651f5e1	2021-05-21 12:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:09:34.853+03	2021-05-21 12:09:34.859+03	
6a8cc3c4-c231-8842-fc79-f491dd3cf970	2021-05-21 12:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:09:54.853+03	2021-05-21 12:09:54.86+03	
32e16aff-7ac7-8070-c43f-d2da73a9a5c0	2021-05-21 12:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:10:05.852+03	2021-05-21 12:10:05.873+03	
5fa06827-87ea-0609-05eb-f167f29a2964	2021-05-21 12:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:10:25.853+03	2021-05-21 12:10:25.86+03	
8c65038f-7577-2b2c-cd80-fad7d7762065	2021-05-21 12:10:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:10:46.853+03	2021-05-21 12:10:46.867+03	
34e866a3-b19a-d2e9-f714-3d8f4a37e15a	2021-05-21 12:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:11:07.853+03	2021-05-21 12:11:07.86+03	
8acf53fe-0e3f-b568-a480-59929b9da946	2021-05-21 12:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:11:28.853+03	2021-05-21 12:11:28.859+03	
e27a6494-8967-4cbd-0cab-8e09344130bf	2021-05-21 12:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:11:49.853+03	2021-05-21 12:11:49.859+03	
b5905bd7-feba-91f3-56f8-d19551d0ded6	2021-05-21 12:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:12:09.853+03	2021-05-21 12:12:09.859+03	
00a08bf3-32a3-64d7-4ea3-d828f10c7599	2021-05-21 12:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:12:30.853+03	2021-05-21 12:12:30.859+03	
fb2fcf7b-0c99-216e-9496-85158ac30e32	2021-05-21 12:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:12:51.852+03	2021-05-21 12:12:51.859+03	
c769b9c1-d437-7be8-9356-0f024a6e6e3c	2021-05-21 12:13:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:13:11.854+03	2021-05-21 12:13:11.865+03	
f320ed76-8798-75b8-41ec-cc3b332bdc8e	2021-05-21 12:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:13:32.853+03	2021-05-21 12:13:32.859+03	
761e3e6b-7516-55d3-016b-8f334d4cd222	2021-05-21 12:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:13:53.853+03	2021-05-21 12:13:53.86+03	
dbd2ff6a-d970-e2d2-8156-78432974360c	2021-05-21 12:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:14:14.852+03	2021-05-21 12:14:14.86+03	
a037d7a1-03d5-2105-7e46-3b45ef6fd3b7	2021-05-21 12:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:14:35.852+03	2021-05-21 12:14:35.86+03	
c9c99fd9-b327-636f-153b-a3d345935e6b	2021-05-21 12:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:14:55.853+03	2021-05-21 12:14:55.863+03	
50d6c9f9-7127-bca5-877f-ba46e15f6f37	2021-05-21 11:54:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:54:06.852+03	2021-05-21 11:54:06.861+03	
f5b83377-e265-b2b0-6729-297a8be5d603	2021-05-21 11:54:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:54:26.854+03	2021-05-21 11:54:26.86+03	
e6b20cf1-d140-f192-e1c7-2363627a15d6	2021-05-21 11:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:54:47.853+03	2021-05-21 11:54:47.957+03	
34d855a3-8284-685b-380e-cc50b384158a	2021-05-21 11:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:55:08.852+03	2021-05-21 11:55:08.86+03	
587de936-4506-7936-9eb5-195864db671b	2021-05-21 11:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:55:28.853+03	2021-05-21 11:55:29.097+03	
91e15d01-f96a-99df-a627-ae02bc6f5606	2021-05-21 11:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:55:50.853+03	2021-05-21 11:55:50.874+03	
0c56a911-0162-9aab-9e62-3c3f9cc5a1f4	2021-05-21 11:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:56:10.853+03	2021-05-21 11:56:11.098+03	
70a7306e-9dcf-9bbf-ca2c-500f6d4cd623	2021-05-21 11:56:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:56:31.853+03	2021-05-21 11:56:31.86+03	
19364bd2-06f0-180e-4e91-02b7a80656e3	2021-05-21 11:56:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:56:51.854+03	2021-05-21 11:56:51.863+03	
6e0423f3-a91d-af95-3f6b-8f224b2b9b71	2021-05-21 11:57:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:57:12.852+03	2021-05-21 11:57:12.858+03	
b795d1ac-8548-9526-aae6-aadcc3e36950	2021-05-21 11:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:57:33.853+03	2021-05-21 11:57:34.175+03	
4a33cd79-82d9-ef09-6ff8-47f49ad21db3	2021-05-21 11:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:57:54.852+03	2021-05-21 11:57:54.863+03	
3af1168e-df17-08d7-70d8-9dec6a0e72ab	2021-05-21 11:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:58:14.853+03	2021-05-21 11:58:14.926+03	
0e7be733-2b75-c943-325b-1d4147f3b183	2021-05-21 11:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:58:34.853+03	2021-05-21 11:58:34.999+03	
b9f1a640-0243-2326-e7e0-b95151ff8261	2021-05-21 11:58:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:58:54.853+03	2021-05-21 11:58:54.865+03	
036a171a-75be-2ee6-f9de-a23948d2bb07	2021-05-21 11:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:59:14.853+03	2021-05-21 11:59:14.865+03	
eaa2a35f-5614-d00a-df2f-08edc6d8265a	2021-05-21 11:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:59:35.852+03	2021-05-21 11:59:35.862+03	
10959982-d14f-09d5-1c07-450a263348cc	2021-05-21 11:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 11:59:55.853+03	2021-05-21 11:59:55.876+03	
f0f73934-017d-4316-a043-49901e435366	2021-05-21 12:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:00:05.853+03	2021-05-21 12:00:05.876+03	
546d47ff-971e-f19d-db3b-ced8769d5589	2021-05-21 12:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:00:25.853+03	2021-05-21 12:00:25.865+03	
e66a4dcb-14b9-f5f2-291c-dcdc1d12100b	2021-05-21 12:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:00:45.853+03	2021-05-21 12:00:45.864+03	
eed5ae41-c243-15fe-b1cb-811f6095e526	2021-05-21 12:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:01:05.853+03	2021-05-21 12:01:05.861+03	
c24e0215-1eae-2cee-01dd-be77732a61b2	2021-05-21 12:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:01:25.853+03	2021-05-21 12:01:26.159+03	
72d11320-f708-e5f7-8dc1-dda48f3d8391	2021-05-21 12:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:01:35.853+03	2021-05-21 12:01:36.104+03	
48e4b860-e36f-d295-6c77-14a168d3ecca	2021-05-21 12:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:01:55.853+03	2021-05-21 12:01:56.159+03	
664c9261-9949-362e-9c2c-f9338e9139b8	2021-05-21 12:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:02:15.853+03	2021-05-21 12:02:15.863+03	
2e9f5502-ded5-8750-b87f-c148c0884d71	2021-05-21 12:02:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:02:36.853+03	2021-05-21 12:02:36.862+03	
483e3a84-4b68-c27b-f88b-7268ae7a8667	2021-05-21 12:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:02:57.853+03	2021-05-21 12:02:57.86+03	
cfe011eb-bea4-09ce-ef3e-1a56cd638fb2	2021-05-21 12:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:03:19.853+03	2021-05-21 12:03:19.859+03	
68d595ad-bd6c-f1e7-a3ae-aa1c5918bf05	2021-05-21 12:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:03:39.853+03	2021-05-21 12:03:39.862+03	
c85a0747-df0a-a6cf-f24b-886f76266e0e	2021-05-21 12:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:03:59.853+03	2021-05-21 12:03:59.859+03	
1c2a59f3-1a66-6522-93a4-c97b509a6d65	2021-05-21 12:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:04:20.852+03	2021-05-21 12:04:20.86+03	
ae655b25-7a46-3671-8705-16e12d62a782	2021-05-21 12:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:04:40.852+03	2021-05-21 12:04:40.859+03	
726eda72-55fe-d999-580e-ef0bdf2e18ce	2021-05-21 12:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:05:00.852+03	2021-05-21 12:05:00.859+03	
ea9d60bf-bffb-9fb0-f2d0-4256eac73726	2021-05-21 12:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:05:20.853+03	2021-05-21 12:05:20.863+03	
dac7d390-0aa2-c581-e7da-22ad16fb3f0d	2021-05-21 12:05:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:05:40.853+03	2021-05-21 12:05:40.859+03	
4b2d9c20-d059-7402-3997-299a64952d04	2021-05-21 12:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:06:00.853+03	2021-05-21 12:06:00.859+03	
cf2beb6b-e627-2192-7a49-ce7c5e7d8e89	2021-05-21 12:06:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:06:21.853+03	2021-05-21 12:06:21.87+03	
c3bca77c-5551-41f9-c5d1-cc62c208508d	2021-05-21 12:06:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:06:41.853+03	2021-05-21 12:06:41.859+03	
9dad3e0c-db3f-cbe6-c98b-b21470688127	2021-05-21 12:07:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:07:02.852+03	2021-05-21 12:07:02.859+03	
477890d0-4320-4b5e-6b6c-b6ec3a2fcbb0	2021-05-21 12:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:07:22.853+03	2021-05-21 12:07:22.863+03	
90e399a8-f78c-e60f-5250-253fd7b63236	2021-05-21 12:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:07:42.853+03	2021-05-21 12:07:42.859+03	
3d9f3ce6-c37b-f068-185d-b0f6da586456	2021-05-21 12:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:08:02.853+03	2021-05-21 12:08:02.859+03	
beb47691-1ed1-f514-3578-1680487aa91e	2021-05-21 12:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:08:23.852+03	2021-05-21 12:08:23.863+03	
e80566b6-6efd-55ef-7054-d320224d392b	2021-05-21 12:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:08:43.853+03	2021-05-21 12:08:43.872+03	
3325f89c-695b-4299-a210-02c63045a716	2021-05-21 12:09:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:09:04.853+03	2021-05-21 12:09:04.876+03	
6fb95b23-e001-789c-2d85-d520fa70b7a6	2021-05-21 12:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:09:24.853+03	2021-05-21 12:09:24.868+03	
b8ff956b-b01a-7053-e3b9-2ec653c06108	2021-05-21 12:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:09:44.853+03	2021-05-21 12:09:44.859+03	
383b15ee-2769-d2d4-5ba5-8bbe2df2a12d	2021-05-21 12:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 12:10:00.852+03	2021-05-21 12:10:00.862+03	ERROR
e1ac6009-6015-27ca-4913-0935536d1593	2021-05-21 12:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:10:15.853+03	2021-05-21 12:10:15.859+03	
84f83f24-f2a0-84a8-aec9-cc3e2165c45a	2021-05-21 12:10:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:10:36.853+03	2021-05-21 12:10:36.871+03	
2d14d4b1-35b0-fd2d-d49d-1cb7fb175d0c	2021-05-21 12:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:10:57.853+03	2021-05-21 12:10:57.86+03	
dae695c7-84f8-fb7e-558f-91b77f8a4642	2021-05-21 12:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:11:18.852+03	2021-05-21 12:11:18.858+03	
6c33332d-47db-bdd0-0a63-3273e7d453c1	2021-05-21 12:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:11:39.853+03	2021-05-21 12:11:39.86+03	
4cd6ab79-e436-74dc-29df-84d236a1b6a0	2021-05-21 12:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:11:59.853+03	2021-05-21 12:11:59.86+03	
44fcc47a-74cb-97f2-a369-9177d004b6a1	2021-05-21 12:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:12:19.853+03	2021-05-21 12:12:19.861+03	
51600d51-1282-f77c-ccde-e259b462adf8	2021-05-21 12:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:12:41.852+03	2021-05-21 12:12:41.859+03	
749c3bc9-4f3a-aff7-ec76-896359cc3df5	2021-05-21 12:13:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:13:01.852+03	2021-05-21 12:13:01.862+03	
5cf11363-dbb2-b37d-3d85-0fcb2fc2a2c3	2021-05-21 12:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:13:22.853+03	2021-05-21 12:13:22.86+03	
408f26cd-663b-bcf7-f8fc-054c001fc965	2021-05-21 12:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:13:43.853+03	2021-05-21 12:13:43.872+03	
5e745028-14ff-a9a4-c34d-95d1ceb0dba8	2021-05-21 12:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:14:03.853+03	2021-05-21 12:14:03.858+03	
b5df5cc9-bcf6-0525-9fca-9c0228dc0b50	2021-05-21 12:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:14:24.853+03	2021-05-21 12:14:24.86+03	
5bc0266d-c870-daf0-9557-f1e8d7792f7a	2021-05-21 12:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:14:45.853+03	2021-05-21 12:14:45.86+03	
9b62c79d-5ae1-eb0f-41b2-9de7f7e44e70	2021-05-21 12:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:15:05.853+03	2021-05-21 12:15:05.86+03	
1bec525c-59de-34a6-3890-676e9e8892fb	2021-05-21 12:15:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:15:26.854+03	2021-05-21 12:15:26.892+03	
1c3ece65-53b4-1b7a-12ee-a15016f45a37	2021-05-21 12:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:15:47.853+03	2021-05-21 12:15:47.861+03	
184f3fc1-338a-1e10-7d5e-d55afcc7d470	2021-05-21 12:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:16:07.853+03	2021-05-21 12:16:07.863+03	
b266fae5-6f62-5e80-3a94-53bafa29e318	2021-05-21 12:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:16:27.853+03	2021-05-21 12:16:27.86+03	
2d0003a5-54b4-1505-118d-1057c88bda4a	2021-05-21 12:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:16:48.853+03	2021-05-21 12:16:48.86+03	
4bec701a-fe4a-2fc6-b5d3-0a6323c7102c	2021-05-21 12:17:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:17:09.853+03	2021-05-21 12:17:09.859+03	
3417330e-8f08-8733-ca48-f5a5ee4b973a	2021-05-21 12:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:17:30.853+03	2021-05-21 12:17:30.861+03	
355f3a1b-eee4-9978-65b3-3a48cae8a304	2021-05-21 12:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:17:50.853+03	2021-05-21 12:17:50.865+03	
e9ce6167-9c64-cd54-78f3-6b7cec239ca2	2021-05-21 12:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:18:10.853+03	2021-05-21 12:18:10.859+03	
c540cfd8-69a1-c3cc-5319-b631ef950a96	2021-05-21 12:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:18:30.853+03	2021-05-21 12:18:30.86+03	
17810025-48e5-a94b-fbc6-4a063f4d664d	2021-05-21 12:18:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:18:51.853+03	2021-05-21 12:18:51.859+03	
f3c4e63b-ca43-13c9-9346-2d5ec480d7fc	2021-05-21 12:19:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:19:11.853+03	2021-05-21 12:19:11.859+03	
8304467b-f603-d7cd-8db6-e193e27c5682	2021-05-21 12:19:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:19:31.853+03	2021-05-21 12:19:31.86+03	
28ee12c9-7773-ba30-6552-fe490b3abd5a	2021-05-21 12:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:19:52.853+03	2021-05-21 12:19:52.861+03	
285e79af-46ef-9f71-89a1-ed96817474c2	2021-05-21 12:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:20:02.853+03	2021-05-21 12:20:02.86+03	
51d5e01d-7a9b-89e1-1b60-8c1ab3188794	2021-05-21 12:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:20:23.852+03	2021-05-21 12:20:23.858+03	
9b24de24-3d07-9dcc-8575-79a7db4e5954	2021-05-21 12:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:20:43.853+03	2021-05-21 12:20:43.863+03	
e85d836b-ab3e-fb11-be42-64d6b8ac7ae1	2021-05-21 12:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:21:04.853+03	2021-05-21 12:21:04.86+03	
1710e26c-e7e5-86d0-6ba2-1a53e2e94d46	2021-05-21 12:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:21:25.852+03	2021-05-21 12:21:25.858+03	
28a6062a-66cf-b35d-943b-45f23bd9281b	2021-05-21 12:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:21:45.852+03	2021-05-21 12:21:45.859+03	
4aa6df8a-9201-306b-7ed0-18c770de4971	2021-05-21 12:22:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:22:06.852+03	2021-05-21 12:22:06.86+03	
e060a947-0d6c-0e67-df44-8155b6c0b2bd	2021-05-21 12:22:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:22:26.852+03	2021-05-21 12:22:26.859+03	
f3e88a4e-d33a-9671-6d6c-cf38b57470ce	2021-05-21 12:22:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:22:46.853+03	2021-05-21 12:22:46.861+03	
72bb57ce-a39a-d235-a652-5f9ff0aaf440	2021-05-21 12:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:23:08.852+03	2021-05-21 12:23:08.86+03	
eafbef51-8abe-11a8-65eb-2052326e98d8	2021-05-21 12:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:23:28.853+03	2021-05-21 12:23:28.86+03	
180836ab-e006-fa52-8caf-66c41db499f2	2021-05-21 12:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:23:48.853+03	2021-05-21 12:23:48.86+03	
6d6054b2-46b4-94a1-5c52-aa1e7e603f33	2021-05-21 12:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:24:08.853+03	2021-05-21 12:24:08.859+03	
b0e7b721-5f69-2b5e-65b0-2813bf9c3e39	2021-05-21 12:24:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:24:28.853+03	2021-05-21 12:24:28.859+03	
ca8cc969-aee4-06c9-e849-a3ed2db852b9	2021-05-21 12:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:24:48.853+03	2021-05-21 12:24:48.859+03	
8e0e6475-e235-d32d-4c0b-c851b8b038b1	2021-05-21 12:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:25:08.853+03	2021-05-21 12:25:08.859+03	
b9be80a6-b4e7-d915-004b-9ae2bfa82a81	2021-05-21 12:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:25:29.852+03	2021-05-21 12:25:29.859+03	
e5266f1e-9bbf-9084-f13b-f7457230c1ef	2021-05-21 12:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:25:49.853+03	2021-05-21 12:25:49.859+03	
3b379753-37c1-9f18-0e07-6e524c4517fa	2021-05-21 12:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:26:09.853+03	2021-05-21 12:26:09.859+03	
b8fd889c-de0c-978d-262a-d9af125d7535	2021-05-21 12:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:26:30.853+03	2021-05-21 12:26:30.86+03	
5b85be6f-a8f6-4e8a-64b8-e79e271e8717	2021-05-21 12:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:26:52.852+03	2021-05-21 12:26:52.869+03	
87cd784a-50ed-8ead-04f0-b1f0f5e21a32	2021-05-21 12:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:27:12.852+03	2021-05-21 12:27:12.859+03	
8371d4eb-3e58-c7ef-b4c7-733c4c992be7	2021-05-21 12:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:27:32.852+03	2021-05-21 12:27:32.863+03	
7afdcd74-700a-e05f-8560-44c31ebddade	2021-05-21 12:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:27:52.853+03	2021-05-21 12:27:52.871+03	
5943390c-bb3b-764d-6df0-1c3de0b5c672	2021-05-21 12:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:28:13.853+03	2021-05-21 12:28:13.86+03	
9fbeda7e-f0df-da17-2ad3-9604b8a0c73c	2021-05-21 12:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:28:35.852+03	2021-05-21 12:28:35.859+03	
048d3011-6a11-fc7c-e7ff-bbaf1d1ff09f	2021-05-21 12:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:28:55.853+03	2021-05-21 12:28:55.859+03	
4f0b13e5-2e4f-d0a7-b824-1789a64690c8	2021-05-21 12:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:29:15.853+03	2021-05-21 12:29:15.862+03	
3c8afbd6-453b-ca92-717a-3d0013038fbc	2021-05-21 12:29:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:29:36.853+03	2021-05-21 12:29:36.86+03	
ed26325b-9bfc-9b29-1034-dd4f972a6455	2021-05-21 12:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:29:57.852+03	2021-05-21 12:29:57.858+03	
51ba2809-cc64-d9ae-9793-2d594d1ac7c2	2021-05-21 12:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:30:07.852+03	2021-05-21 12:30:07.859+03	
96bd6c70-1cdd-5b66-9305-c5508734dc1b	2021-05-21 12:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:30:27.853+03	2021-05-21 12:30:27.859+03	
8caa3327-d964-c74e-4c1e-051c22564903	2021-05-21 12:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:30:47.853+03	2021-05-21 12:30:47.863+03	
74f81c44-e14d-8990-dafe-285677e94a56	2021-05-21 12:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:31:07.853+03	2021-05-21 12:31:07.859+03	
48f0b09d-c14c-49b4-0fb0-c8c4ce030c68	2021-05-21 12:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:31:28.853+03	2021-05-21 12:31:28.859+03	
57389312-449e-dd0d-0a2c-87ec45acdab7	2021-05-21 12:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:31:49.853+03	2021-05-21 12:31:49.859+03	
7d5688cb-edee-a9b9-4ec1-e1f7a027947b	2021-05-21 12:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:32:10.852+03	2021-05-21 12:32:10.86+03	
197a0b0c-141c-b05d-933e-46146514ea00	2021-05-21 12:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:32:30.853+03	2021-05-21 12:32:30.859+03	
6c7ceba9-8b61-591b-5d39-9aa1772c087f	2021-05-21 12:32:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:32:51.854+03	2021-05-21 12:32:51.862+03	
cfb6be17-98f6-5692-3aef-45daa2f9dd98	2021-05-21 12:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:33:13.853+03	2021-05-21 12:33:13.87+03	
00e04470-04b3-b120-6657-4ab23e5d06b4	2021-05-21 12:33:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:33:33.853+03	2021-05-21 12:33:33.859+03	
685b913a-d028-7bda-2d9d-dbc4a46f5216	2021-05-21 12:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:33:53.853+03	2021-05-21 12:33:53.862+03	
fcd3efb7-e420-6747-7aa6-3ff32c21034c	2021-05-21 12:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:34:14.853+03	2021-05-21 12:34:14.86+03	
d291e477-e13c-5217-0fc8-27c9a5c10bbb	2021-05-21 12:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:34:35.852+03	2021-05-21 12:34:35.858+03	
5e9eadd8-b21f-a3ca-7ae0-664d85ea35d5	2021-05-21 12:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:34:55.853+03	2021-05-21 12:34:55.861+03	
d8ea47a0-cd80-1793-9d50-0b71a8569570	2021-05-21 12:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:35:15.853+03	2021-05-21 12:35:15.86+03	
ce105080-a558-137c-cc13-a774ffb3a36a	2021-05-21 12:35:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:35:36.853+03	2021-05-21 12:35:36.859+03	
680f8107-dd60-0d5a-973f-0e73591a422c	2021-05-21 12:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:35:56.853+03	2021-05-21 12:35:56.861+03	
1cfc0d37-751e-ab6e-e52a-836fc8e22e28	2021-05-21 12:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:15:16.852+03	2021-05-21 12:15:16.859+03	
004525a8-32a8-a229-40cd-24ac3c13c0ab	2021-05-21 12:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:15:37.853+03	2021-05-21 12:15:37.859+03	
be12192e-3a2b-c273-8bca-dc1d7e2ad23e	2021-05-21 12:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:15:57.853+03	2021-05-21 12:15:57.859+03	
cf33c64b-69ed-84a9-8d1c-29212beac93c	2021-05-21 12:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:16:17.853+03	2021-05-21 12:16:17.864+03	
8e163a17-6203-1873-5164-f673fe54e89c	2021-05-21 12:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:16:38.853+03	2021-05-21 12:16:38.859+03	
70dc17cb-da5f-7ef0-7235-5a05d79488a3	2021-05-21 12:16:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:16:59.852+03	2021-05-21 12:16:59.859+03	
3eee351c-be6f-29a1-8158-3aeaccd9a967	2021-05-21 12:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:17:20.853+03	2021-05-21 12:17:20.861+03	
7e28116b-402b-0fff-0240-fbeed10d0f72	2021-05-21 12:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:17:40.853+03	2021-05-21 12:17:40.874+03	
1afd344e-a014-aaa9-1bf5-e8dd180edddd	2021-05-21 12:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:18:00.853+03	2021-05-21 12:18:00.861+03	
35198406-143a-82e5-e555-4e2f7a4ebf58	2021-05-21 12:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:18:20.853+03	2021-05-21 12:18:20.86+03	
d1e6e360-8e3c-6bde-44e9-404fe1aee714	2021-05-21 12:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:18:41.853+03	2021-05-21 12:18:41.862+03	
b2886ece-67b6-8482-3dd1-33274887dfb5	2021-05-21 12:19:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:19:01.853+03	2021-05-21 12:19:01.86+03	
9f3098e6-5359-1209-a891-384bfc6a594a	2021-05-21 12:19:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:19:21.853+03	2021-05-21 12:19:21.86+03	
b3cc9f76-6ed0-9607-b3b2-d79870272f9a	2021-05-21 12:19:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:19:41.854+03	2021-05-21 12:19:41.86+03	
44541b04-d25d-402d-5bd6-0492d2e7df0f	2021-05-21 12:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 12:20:00.853+03	2021-05-21 12:20:00.858+03	ERROR
397c9f7f-56ee-d412-2445-5af2d56bad1e	2021-05-21 12:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:20:12.853+03	2021-05-21 12:20:12.86+03	
ddf8b160-45ca-e858-e00c-9bb1a6a92446	2021-05-21 12:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:20:33.853+03	2021-05-21 12:20:33.871+03	
380dfe7c-e7b6-77c0-8308-4527c9673225	2021-05-21 12:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:20:54.853+03	2021-05-21 12:20:54.859+03	
5d0eee50-75d5-74ce-b288-2f2ea78af101	2021-05-21 12:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:21:14.853+03	2021-05-21 12:21:14.859+03	
2d9b2592-4e51-14a3-563e-48cf453942bf	2021-05-21 12:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:21:35.852+03	2021-05-21 12:21:35.862+03	
d10c18dd-ecf1-8bb1-631b-b5417f9c6cbc	2021-05-21 12:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:21:55.853+03	2021-05-21 12:21:55.859+03	
5870d5d5-2d6c-6b3b-0487-3b161a503f60	2021-05-21 12:22:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:22:16.852+03	2021-05-21 12:22:16.87+03	
9c969a28-b3c7-2151-2b91-7c3bf9e90f21	2021-05-21 12:22:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:22:36.853+03	2021-05-21 12:22:36.861+03	
ad4f14cc-0d90-dad6-5380-86de2f31ceb5	2021-05-21 12:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:22:57.853+03	2021-05-21 12:22:57.861+03	
94c748af-cfc0-1364-0f97-57ad4bf381f2	2021-05-21 12:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:23:18.853+03	2021-05-21 12:23:18.86+03	
b20537ec-d3e6-e85c-079d-5b8a9ca1bd98	2021-05-21 12:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:23:38.853+03	2021-05-21 12:23:38.861+03	
3af22469-1878-4ffe-22e5-130eb2fa67f6	2021-05-21 12:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:23:58.853+03	2021-05-21 12:23:58.867+03	
8efb59c0-b621-e6e6-8e23-31d3a6aaa6a8	2021-05-21 12:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:24:18.853+03	2021-05-21 12:24:18.86+03	
8a70c935-3192-bf19-098c-11583bbdbe2e	2021-05-21 12:24:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:24:38.853+03	2021-05-21 12:24:38.86+03	
da0aed0b-f4c9-b6e4-69b1-41007a0b91a1	2021-05-21 12:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:24:58.853+03	2021-05-21 12:24:58.859+03	
a50130e0-078d-4142-cdde-a152ce5d39fd	2021-05-21 12:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:25:18.853+03	2021-05-21 12:25:18.868+03	
538732e6-8341-bf81-6fbc-537317bf7326	2021-05-21 12:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:25:39.853+03	2021-05-21 12:25:39.859+03	
6e96b1e0-15a3-f5ca-4c30-6a5ce1d681aa	2021-05-21 12:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:25:59.853+03	2021-05-21 12:25:59.861+03	
a69d737a-55a6-148d-e9b7-027e9b3948ca	2021-05-21 12:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:26:19.853+03	2021-05-21 12:26:19.86+03	
4030b4a7-905d-f912-761a-e1bcb9f7acf9	2021-05-21 12:26:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:26:41.853+03	2021-05-21 12:26:41.858+03	
1b383f50-1d53-5f33-73de-c4eb39f01876	2021-05-21 12:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:27:02.852+03	2021-05-21 12:27:02.859+03	
1453522a-8681-eadd-773e-901816146b2a	2021-05-21 12:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:27:22.852+03	2021-05-21 12:27:22.859+03	
84509158-eb82-c58d-5023-5277472b746d	2021-05-21 12:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:27:42.852+03	2021-05-21 12:27:42.859+03	
4fd381cb-8b02-2b3e-a20c-6abb2a85f68b	2021-05-21 12:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:28:02.853+03	2021-05-21 12:28:02.859+03	
5d2f4aad-625f-f8aa-2aa8-564f6a97e5e6	2021-05-21 12:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:28:24.853+03	2021-05-21 12:28:24.859+03	
dc65060f-b4dd-942d-36c5-8d11c75db53f	2021-05-21 12:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:28:45.852+03	2021-05-21 12:28:45.86+03	
fd2c12f1-3830-a325-0220-bcc7d2c8c274	2021-05-21 12:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:29:05.853+03	2021-05-21 12:29:05.858+03	
193bcdb8-1c25-b465-2a77-6b9f2bf979ab	2021-05-21 12:29:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:29:26.852+03	2021-05-21 12:29:26.859+03	
ea3658e3-75cd-2bab-cbae-ef94d8254ca6	2021-05-21 12:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:29:47.852+03	2021-05-21 12:29:47.858+03	
584ad121-4ed0-fde1-4a91-1d9c0498d330	2021-05-21 12:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 12:30:00.853+03	2021-05-21 12:30:00.859+03	ERROR
45e1b062-83bc-4cee-cbfb-b32ab5d984d0	2021-05-21 12:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:30:17.852+03	2021-05-21 12:30:17.872+03	
dbb4dae0-c73d-20d7-251f-bdcad256d216	2021-05-21 12:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:30:37.853+03	2021-05-21 12:30:37.859+03	
979c073f-b654-5419-5018-e6d059b75c3e	2021-05-21 12:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:30:57.853+03	2021-05-21 12:30:57.861+03	
3b751510-4bec-1d10-f69a-57ed98b09b75	2021-05-21 12:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:31:17.853+03	2021-05-21 12:31:17.86+03	
2f5cfd88-e3a0-b289-954b-d8310acbbdf3	2021-05-21 12:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:31:39.852+03	2021-05-21 12:31:39.859+03	
5547135c-9a74-bd1f-dda1-e06b52157e22	2021-05-21 12:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:32:00.852+03	2021-05-21 12:32:00.858+03	
883e7175-5c47-9969-0072-cd976645012e	2021-05-21 12:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:32:20.853+03	2021-05-21 12:32:20.859+03	
bebd9a81-6efe-241f-3068-6424e18fc65e	2021-05-21 12:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:32:40.853+03	2021-05-21 12:32:40.865+03	
0ef62fb4-229d-cac2-faaa-f78ef8cba97b	2021-05-21 12:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:33:02.853+03	2021-05-21 12:33:02.861+03	
4dc8e903-9850-3a76-0a06-44f4266c8abd	2021-05-21 12:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:33:23.853+03	2021-05-21 12:33:23.859+03	
02dd1a1a-9051-17ed-6d75-79f46f03b01d	2021-05-21 12:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:33:43.853+03	2021-05-21 12:33:43.872+03	
2f0ff8f6-4e86-9b66-607b-28c3b8016beb	2021-05-21 12:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:34:04.853+03	2021-05-21 12:34:04.859+03	
645443a2-1dfb-565c-26da-fb1bb02f10f1	2021-05-21 12:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:34:24.853+03	2021-05-21 12:34:24.859+03	
66fe6fa7-8724-6e11-a91c-97a9b4735f93	2021-05-21 12:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:34:45.852+03	2021-05-21 12:34:45.859+03	
9a11c921-32d8-1942-dadf-491292192be0	2021-05-21 12:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:35:05.853+03	2021-05-21 12:35:05.859+03	
78c26256-5a83-c494-29ff-478aecffbc18	2021-05-21 12:35:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:35:26.853+03	2021-05-21 12:35:26.861+03	
4ededaa5-0757-f272-1576-4f1226d0e5d3	2021-05-21 12:35:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:35:46.853+03	2021-05-21 12:35:46.86+03	
22b0d433-9021-17f6-3848-522fa3fb3f48	2021-05-21 12:36:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:36:07.852+03	2021-05-21 12:36:07.859+03	
7e4b77e4-78b0-8fa9-b3c4-8a75e8567308	2021-05-21 12:36:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:36:17.852+03	2021-05-21 12:36:17.859+03	
c93b8b12-14bc-d3ce-4d6d-08cb75fe553c	2021-05-21 12:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:36:37.853+03	2021-05-21 12:36:37.86+03	
1e59d283-76c3-cb0b-7449-e98213c96ecd	2021-05-21 12:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:36:58.852+03	2021-05-21 12:36:58.862+03	
29b9349c-9265-d590-6f23-c89cbf6b7b32	2021-05-21 12:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:37:18.852+03	2021-05-21 12:37:18.86+03	
3dee0130-96c7-1ac6-e45e-2ee15c8ba870	2021-05-21 12:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:37:39.852+03	2021-05-21 12:37:39.858+03	
7e52ad74-8b5f-2800-1d5c-835daee59809	2021-05-21 12:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:37:59.852+03	2021-05-21 12:37:59.859+03	
84c38676-4457-e10f-e803-7b2eca035a36	2021-05-21 12:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:38:19.853+03	2021-05-21 12:38:19.861+03	
24b396eb-0c08-ec12-b8cb-f8795a063ee5	2021-05-21 12:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:38:39.853+03	2021-05-21 12:38:39.86+03	
a8f76ce4-4e6d-303d-1697-7126054f8aae	2021-05-21 12:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:38:59.853+03	2021-05-21 12:38:59.861+03	
a0ace428-1971-d7d2-c0b1-26a075bd849a	2021-05-21 12:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:39:20.852+03	2021-05-21 12:39:20.859+03	
9cddd158-b560-677a-cf71-b0241f181c42	2021-05-21 12:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:39:40.852+03	2021-05-21 12:39:40.861+03	
6369331c-cb58-f320-4b75-daa71fa99de2	2021-05-21 12:40:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:40:00.853+03	2021-05-21 12:40:00.864+03	
f01fc23b-ee15-0070-3e3a-9585dfd2c507	2021-05-21 12:40:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:40:21.853+03	2021-05-21 12:40:21.86+03	
46e396b5-a8e7-117e-37e3-6e79e3522aa3	2021-05-21 12:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:40:41.853+03	2021-05-21 12:40:41.86+03	
0f36e1e5-0a8b-e7fe-5a81-78354d574992	2021-05-21 12:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:41:02.853+03	2021-05-21 12:41:02.86+03	
b203a105-7e6f-4a22-51fb-b7f0c535cf3a	2021-05-21 12:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:41:22.853+03	2021-05-21 12:41:22.861+03	
9d07b765-5eb6-c9c0-bc7f-33ea3c6a48cd	2021-05-21 12:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:41:43.853+03	2021-05-21 12:41:43.875+03	
77ac53e1-47d9-6b8a-e8a8-03cd1bd67bcc	2021-05-21 12:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:42:03.853+03	2021-05-21 12:42:03.859+03	
b1ac65b8-d4da-3f3f-da04-c0489069282a	2021-05-21 12:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:42:24.853+03	2021-05-21 12:42:24.87+03	
5b3454f2-ba20-4549-4052-31e9727620b6	2021-05-21 12:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:42:45.853+03	2021-05-21 12:42:45.859+03	
8a2c060f-92f3-2887-f470-b085bce600f7	2021-05-21 12:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:43:06.853+03	2021-05-21 12:43:06.862+03	
ed74ff92-5cc0-2cd0-21c4-45a8135f2c51	2021-05-21 12:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:43:27.853+03	2021-05-21 12:43:27.86+03	
8a82cab7-1622-3878-ee7a-b9a0c26d37d6	2021-05-21 12:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:43:47.853+03	2021-05-21 12:43:47.859+03	
85e3571b-1a21-9c3c-a1b6-64aca3cd5219	2021-05-21 12:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:44:08.852+03	2021-05-21 12:44:08.858+03	
7ad77a27-30f9-b4ea-3000-7e9e6d45edf9	2021-05-21 12:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:44:28.853+03	2021-05-21 12:44:28.861+03	
f9b5e710-60ef-141e-ce12-76b3be2b0c7c	2021-05-21 12:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:44:49.852+03	2021-05-21 12:44:49.859+03	
6b2f6122-9a9b-b345-0c9d-4bd2fc55e441	2021-05-21 12:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:45:10.852+03	2021-05-21 12:45:10.86+03	
758fd251-fa0a-ebc9-1ff3-0a612589f9c7	2021-05-21 12:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:45:30.853+03	2021-05-21 12:45:30.859+03	
26d40322-a7d9-71eb-d4e2-858c51cce9eb	2021-05-21 12:45:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:45:51.853+03	2021-05-21 12:45:51.859+03	
3ffd7363-08d3-543f-d8ce-3908141e9124	2021-05-21 12:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:46:12.853+03	2021-05-21 12:46:12.859+03	
d2c847fe-fd97-29eb-f08e-031031ddcc78	2021-05-21 12:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:46:32.853+03	2021-05-21 12:46:32.905+03	
b7ff8014-5a8b-9cb1-9c9d-aa122b200e5e	2021-05-21 12:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:46:52.853+03	2021-05-21 12:46:52.859+03	
eec9276f-b655-d5b0-11dd-45db0ccfb0db	2021-05-21 12:47:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:47:13.853+03	2021-05-21 12:47:13.859+03	
8f932503-3d5f-b96c-d42a-b4cd2c49da11	2021-05-21 12:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:47:34.853+03	2021-05-21 12:47:34.859+03	
146e5f97-bd38-e555-f524-d42e93f42efa	2021-05-21 12:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:47:55.853+03	2021-05-21 12:47:55.86+03	
c94cb914-90d6-c34f-85d8-8f829e3be6c2	2021-05-21 12:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:48:15.853+03	2021-05-21 12:48:15.859+03	
2aa21ff9-a76f-9a43-658d-72e4d2f0f879	2021-05-21 12:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:48:37.853+03	2021-05-21 12:48:37.859+03	
946b9b54-7ce9-2cb6-8244-5f3e2e5bed0c	2021-05-21 12:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:48:58.853+03	2021-05-21 12:48:58.861+03	
6fd84180-0c07-5143-3658-2774a78be046	2021-05-21 12:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:49:19.852+03	2021-05-21 12:49:19.859+03	
3cc00600-b75a-5531-d194-1efe793455b8	2021-05-21 12:49:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:49:40.853+03	2021-05-21 12:49:40.873+03	
d9fc73dc-7cb3-fa4e-7eeb-6a1942f62b9d	2021-05-21 12:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 12:50:00.853+03	2021-05-21 12:50:00.858+03	ERROR
9c783cff-279e-cfc9-6f26-1f1b131eefdc	2021-05-21 12:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:50:12.853+03	2021-05-21 12:50:12.859+03	
214afc81-84ea-fbf4-fc47-7a85073afbfd	2021-05-21 12:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:50:34.852+03	2021-05-21 12:50:34.858+03	
f0ca5ba1-5cf1-dfc6-826b-fa3b5f427916	2021-05-21 12:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:50:54.853+03	2021-05-21 12:50:54.86+03	
9a20cf4c-c13d-44a1-5b54-81b43e2b9d48	2021-05-21 12:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:51:14.853+03	2021-05-21 12:51:14.86+03	
5fb2eb49-d644-f869-ef03-36ff6fcf1083	2021-05-21 12:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:51:34.853+03	2021-05-21 12:51:34.862+03	
6b4f9cf3-3d9e-fa2b-1d29-abfa61d8d6bc	2021-05-21 12:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:51:55.853+03	2021-05-21 12:51:55.872+03	
35548d7b-f08d-aee6-380b-45871e697c04	2021-05-21 12:52:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:52:16.852+03	2021-05-21 12:52:16.86+03	
881c28f3-874a-1c69-42b0-3aad00b47708	2021-05-21 12:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:52:36.853+03	2021-05-21 12:52:36.859+03	
04859a2b-fe41-8581-f0f9-6de344b2595f	2021-05-21 12:52:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:52:56.853+03	2021-05-21 12:52:56.86+03	
dd74ec81-a426-c8b5-a28f-39726daeac7c	2021-05-21 12:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:53:17.853+03	2021-05-21 12:53:17.859+03	
a778f411-3967-c956-52b1-fa62b440eac3	2021-05-21 12:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:53:38.852+03	2021-05-21 12:53:38.858+03	
6bc127eb-d9bd-98d7-441f-3be39fc142ca	2021-05-21 12:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:53:58.852+03	2021-05-21 12:53:58.86+03	
b363edca-25c2-4613-f51c-31a75c6907da	2021-05-21 12:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:54:18.852+03	2021-05-21 12:54:18.859+03	
75737258-79e3-a6cd-56b8-8f4d3cfb3e84	2021-05-21 12:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:54:38.852+03	2021-05-21 12:54:38.863+03	
dd3f6043-e1c4-982a-93ce-4a729dfa55b9	2021-05-21 12:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:54:58.853+03	2021-05-21 12:54:58.859+03	
c33aacaa-a952-7db6-bd69-cf7646b0e529	2021-05-21 12:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:55:18.853+03	2021-05-21 12:55:18.86+03	
cdd8b84f-4d75-d9ac-9879-6029b46568df	2021-05-21 12:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:55:38.853+03	2021-05-21 12:55:38.86+03	
3f8c29d1-3e1e-0550-adfe-7481483c3f22	2021-05-21 12:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:55:58.853+03	2021-05-21 12:55:58.861+03	
21aff811-214e-8c08-5403-0d3d5ee5f6da	2021-05-21 12:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:56:18.853+03	2021-05-21 12:56:18.877+03	
f01feccb-729d-535b-6cd4-7e1b48e3e048	2021-05-21 12:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:56:39.853+03	2021-05-21 12:56:39.859+03	
87606463-df22-1ea2-45af-06de4ed736a3	2021-05-21 12:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:57:00.852+03	2021-05-21 12:57:00.858+03	
884047ce-21fc-b7c5-3495-aff961876f47	2021-05-21 12:57:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:57:21.853+03	2021-05-21 12:57:21.859+03	
9bef7d2c-ae81-bb29-0d05-30285e2f8b19	2021-05-21 12:36:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:36:27.853+03	2021-05-21 12:36:27.859+03	
ab11ccb7-d239-2e7c-f3be-9742925694be	2021-05-21 12:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:36:48.852+03	2021-05-21 12:36:48.859+03	
15ff5cf2-ee5a-ae42-3916-b46b393d7bfa	2021-05-21 12:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:37:08.852+03	2021-05-21 12:37:08.859+03	
92eb8853-b4a8-2801-5368-d2b4d09323c8	2021-05-21 12:37:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:37:28.853+03	2021-05-21 12:37:28.863+03	
9ba487e8-fe6e-f934-e5de-17fa8b09980a	2021-05-21 12:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:37:49.852+03	2021-05-21 12:37:49.858+03	
6f3edae2-e6a5-ba99-9aa1-9faca8fd455e	2021-05-21 12:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:38:09.853+03	2021-05-21 12:38:09.862+03	
6d6f5a24-0ddd-b130-4038-ee7915b367fe	2021-05-21 12:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:38:29.853+03	2021-05-21 12:38:29.861+03	
86ecd079-7219-d0f3-8ab1-1a717f8f3644	2021-05-21 12:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:38:49.853+03	2021-05-21 12:38:49.86+03	
344de019-6541-8782-66db-212f747e4a1a	2021-05-21 12:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:39:10.852+03	2021-05-21 12:39:10.86+03	
04c428d4-bc9f-77ec-9ac6-406be5b0e299	2021-05-21 12:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:39:30.852+03	2021-05-21 12:39:30.86+03	
70579709-a534-892d-3372-1867df2e8fd7	2021-05-21 12:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:39:50.852+03	2021-05-21 12:39:50.859+03	
30b999d4-f717-f0ea-acb8-0f5edd861188	2021-05-21 12:40:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 12:40:00.853+03	2021-05-21 12:40:01.113+03	ERROR
d6f1289e-6c68-2a64-3bb1-51ad3cd85c81	2021-05-21 12:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:40:11.853+03	2021-05-21 12:40:11.864+03	
2cb1f8d2-3e88-5673-ff1f-1ab30f990ea6	2021-05-21 12:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:40:31.853+03	2021-05-21 12:40:31.86+03	
d0205051-5e66-398d-5cd0-c7dbf22cafdb	2021-05-21 12:40:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:40:51.854+03	2021-05-21 12:40:51.861+03	
7d094f3b-69f5-4c64-0aa5-9bbcc31583ac	2021-05-21 12:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:41:12.853+03	2021-05-21 12:41:12.859+03	
f9740b23-52ed-e33e-8695-a6f002037740	2021-05-21 12:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:41:32.853+03	2021-05-21 12:41:32.859+03	
b741265d-6f24-aa92-6fda-55b2fd949ce0	2021-05-21 12:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:41:53.853+03	2021-05-21 12:41:53.86+03	
639826e7-8369-337d-2d0d-2bea20f6473c	2021-05-21 12:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:42:14.852+03	2021-05-21 12:42:14.858+03	
5f00737e-7b69-ea62-1e9c-f658712f4c3c	2021-05-21 12:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:42:35.852+03	2021-05-21 12:42:35.859+03	
0d81a2d6-45c7-1fb8-1ed1-8792dec91276	2021-05-21 12:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:42:55.853+03	2021-05-21 12:42:55.874+03	
dbf6165e-9df5-ea1b-538f-39940a86d325	2021-05-21 12:43:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:43:16.854+03	2021-05-21 12:43:16.861+03	
9dbf5330-2e9c-cb47-1466-26d4257d8cfa	2021-05-21 12:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:43:37.853+03	2021-05-21 12:43:37.86+03	
e672b8ac-b7c9-e193-f9fe-f12f9d5dc897	2021-05-21 12:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:43:58.852+03	2021-05-21 12:43:58.861+03	
8df37f85-7fa7-ca14-ae71-682110e0d174	2021-05-21 12:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:44:18.852+03	2021-05-21 12:44:18.859+03	
02d16dab-36ca-6afa-9a3b-8b358826e676	2021-05-21 12:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:44:39.852+03	2021-05-21 12:44:39.86+03	
75c5fce6-de53-1771-b91b-a4d2fc238afb	2021-05-21 12:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:44:59.853+03	2021-05-21 12:44:59.861+03	
9934dfaf-1a62-c16e-4ad8-f8d8745dd032	2021-05-21 12:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:45:20.852+03	2021-05-21 12:45:20.863+03	
60b7ec64-4167-437b-fdd3-083711e78bca	2021-05-21 12:45:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:45:41.852+03	2021-05-21 12:45:41.859+03	
e9a6206f-7492-0d13-45da-8ba5c1ee3ead	2021-05-21 12:46:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:46:01.854+03	2021-05-21 12:46:01.862+03	
d9e1668c-5ce2-420a-c7a8-bd4b32c1240c	2021-05-21 12:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:46:22.853+03	2021-05-21 12:46:22.898+03	
1e80da5a-4d18-0bd7-28fd-88aba59cb07d	2021-05-21 12:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:46:42.853+03	2021-05-21 12:46:42.859+03	
977a1077-3ffe-abeb-4db8-47527bcd7717	2021-05-21 12:47:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:47:03.853+03	2021-05-21 12:47:03.858+03	
d2cb4f23-a917-1793-8296-d95dfaa170ff	2021-05-21 12:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:47:23.853+03	2021-05-21 12:47:23.866+03	
2722eddb-0af7-5a6b-8364-64207fb6746e	2021-05-21 12:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:47:45.853+03	2021-05-21 12:47:45.86+03	
836b386a-60f9-b80e-1c80-f8a65f9faaaf	2021-05-21 12:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:48:05.853+03	2021-05-21 12:48:05.862+03	
a402fff5-156a-b0e0-1767-5774f58dae51	2021-05-21 12:48:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:48:26.854+03	2021-05-21 12:48:26.865+03	
96ef72b2-0bab-d7ca-bf99-19e0c4843e53	2021-05-21 12:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:48:48.853+03	2021-05-21 12:48:48.859+03	
975be43d-ac68-6b2c-c30d-11dc9e772ada	2021-05-21 12:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:49:08.853+03	2021-05-21 12:49:08.86+03	
1e09bc5a-a17a-7273-4355-8cc7af9ae221	2021-05-21 12:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:49:29.853+03	2021-05-21 12:49:29.859+03	
c342f11d-e00c-9cba-fa0e-e93e81094988	2021-05-21 12:49:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:49:51.854+03	2021-05-21 12:49:51.863+03	
60bad698-bdd2-e2fb-5a8f-dd1b19ab52ec	2021-05-21 12:50:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:50:01.854+03	2021-05-21 12:50:01.901+03	
4d6ee620-0275-a79d-bb6d-dfb3b3021563	2021-05-21 12:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:50:23.853+03	2021-05-21 12:50:23.859+03	
c215520c-c872-4469-4dbe-306e104dd051	2021-05-21 12:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:50:44.853+03	2021-05-21 12:50:44.86+03	
2291db8c-be4f-5911-a222-f44d8cfefc6e	2021-05-21 12:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:51:04.853+03	2021-05-21 12:51:04.86+03	
adab18a6-dfcf-29cd-6057-f4202be49e2a	2021-05-21 12:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:51:24.853+03	2021-05-21 12:51:24.859+03	
9a7098a6-f065-4e9d-aab7-ce5cb1568ad9	2021-05-21 12:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:51:45.852+03	2021-05-21 12:51:45.862+03	
42335b65-9005-4f4e-28b7-fc5bdf5f41e9	2021-05-21 12:52:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:52:06.852+03	2021-05-21 12:52:06.859+03	
cd6a2178-b105-28a2-ae0f-e1476d6adc4f	2021-05-21 12:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:52:26.853+03	2021-05-21 12:52:26.859+03	
a610b886-029a-0e69-e087-d974e1e843d4	2021-05-21 12:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:52:46.853+03	2021-05-21 12:52:47.147+03	
351ea943-e98a-340b-f7de-ae0c5270070e	2021-05-21 12:53:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:53:06.854+03	2021-05-21 12:53:06.861+03	
f194fd1f-2d8e-2860-c97b-27eebbf2418d	2021-05-21 12:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:53:28.852+03	2021-05-21 12:53:28.858+03	
24e70031-b632-d213-62d5-1fe7485cbc59	2021-05-21 12:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:53:48.852+03	2021-05-21 12:53:48.859+03	
d9e937c9-b4ed-b278-0913-f4f7aea23318	2021-05-21 12:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:54:08.852+03	2021-05-21 12:54:08.858+03	
938b1c74-2cb4-643c-f493-13d012af6f65	2021-05-21 12:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:54:28.852+03	2021-05-21 12:54:28.87+03	
25cca4dd-827a-ad45-e191-ba675367856d	2021-05-21 12:54:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:54:48.853+03	2021-05-21 12:54:48.861+03	
97d7464c-4dbe-6c91-80dc-1a8d85ad02a7	2021-05-21 12:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:55:08.853+03	2021-05-21 12:55:08.86+03	
a698f118-2301-0864-f38e-a4c87ffffdae	2021-05-21 12:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:55:28.853+03	2021-05-21 12:55:28.86+03	
05ab1672-2095-8ef5-0642-2ac7a0aad8b4	2021-05-21 12:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:55:48.853+03	2021-05-21 12:55:48.86+03	
196d4f88-c98e-395e-c034-05427f5a2e9d	2021-05-21 12:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:56:08.853+03	2021-05-21 12:56:08.86+03	
702cf00b-df8d-1ee2-a3c6-da4df51ca0da	2021-05-21 12:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:56:29.852+03	2021-05-21 12:56:29.864+03	
34e070d5-d717-9b23-f861-45515d90dd07	2021-05-21 12:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:56:49.853+03	2021-05-21 12:56:49.859+03	
15b958ca-22b3-71d4-b935-933f3f849e1c	2021-05-21 12:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:57:10.853+03	2021-05-21 12:57:10.859+03	
5fd7176f-5258-27ab-51e8-49ad34278bc0	2021-05-21 12:57:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:57:31.854+03	2021-05-21 12:57:31.861+03	
61dc58be-be2e-ab78-be6f-d24cd92b0358	2021-05-21 12:57:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:57:52.853+03	2021-05-21 12:57:52.859+03	
37bc2193-dbd3-6207-cb03-1969a4c3ede8	2021-05-21 12:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:58:13.852+03	2021-05-21 12:58:13.859+03	
78d66615-f250-4c49-7aa0-3443b891db95	2021-05-21 12:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:58:34.852+03	2021-05-21 12:58:34.859+03	
a28c19f5-1c30-a7f1-9d48-ecb8f91bbd1b	2021-05-21 12:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:58:54.853+03	2021-05-21 12:58:54.86+03	
60e9d09a-cbc1-57ec-5114-ea0169b5b3b1	2021-05-21 12:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:59:15.853+03	2021-05-21 12:59:15.86+03	
672a9b7b-c991-3642-79fb-0e86264326e8	2021-05-21 12:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:59:36.853+03	2021-05-21 12:59:36.86+03	
65535e06-0805-e9ed-a1f2-1b6d99e576ee	2021-05-21 13:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 13:00:00.853+03	2021-05-21 13:00:00.865+03	ERROR
35bf3a85-9c27-6c62-6bf0-b1abaac5e9e1	2021-05-21 13:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:00:17.853+03	2021-05-21 13:00:17.875+03	
1ba4779f-a291-1bca-cdde-81f51dd774fb	2021-05-21 13:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:00:38.853+03	2021-05-21 13:00:38.861+03	
d668f157-34c1-ff78-991f-1a43babaea61	2021-05-21 13:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:00:59.853+03	2021-05-21 13:00:59.861+03	
3cda1a9d-481b-1c8d-32ea-278a6b924af8	2021-05-21 13:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:01:19.853+03	2021-05-21 13:01:19.862+03	
883ada7c-70fc-6462-b0f5-bad76b21e6c1	2021-05-21 13:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:01:39.853+03	2021-05-21 13:01:39.859+03	
489d88a7-412a-551e-db72-d8a2cd6796bb	2021-05-21 13:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:02:00.852+03	2021-05-21 13:02:00.861+03	
f1c8ac75-f3c0-a23b-98e1-4c49d75e40f4	2021-05-21 13:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:02:20.852+03	2021-05-21 13:02:20.859+03	
4becd32a-1556-025c-10a3-ddbc561dbdc4	2021-05-21 13:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:02:40.853+03	2021-05-21 13:02:40.86+03	
e94d3bde-70cf-6023-874d-547925dc82d8	2021-05-21 13:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:03:00.853+03	2021-05-21 13:03:00.859+03	
35f40d95-3167-162e-5b4e-5af962bd088e	2021-05-21 13:03:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:03:21.853+03	2021-05-21 13:03:21.859+03	
e9a7214a-a204-50ce-69fc-07a60cc1b01e	2021-05-21 13:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:03:42.853+03	2021-05-21 13:03:42.858+03	
c224da7b-7c39-f019-1be4-5108be25289c	2021-05-21 13:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:04:03.852+03	2021-05-21 13:04:03.861+03	
025861d8-8d0c-5db9-c9a7-07332c0b6219	2021-05-21 13:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:04:23.852+03	2021-05-21 13:04:23.859+03	
7306f65c-15ba-525b-e272-2499cae84e91	2021-05-21 13:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:04:43.852+03	2021-05-21 13:04:43.879+03	
20bebfd2-190d-e0d1-8352-1da46acd0e3c	2021-05-21 13:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:05:03.853+03	2021-05-21 13:05:03.864+03	
36619283-0582-9a17-61f9-5ad41511d926	2021-05-21 13:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:05:24.852+03	2021-05-21 13:05:24.858+03	
e27d046e-f6ea-4084-6797-644d9bff5367	2021-05-21 13:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:05:44.852+03	2021-05-21 13:05:44.87+03	
1322fddf-ec4d-648d-6457-7a1acf7d3c6b	2021-05-21 13:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:06:04.853+03	2021-05-21 13:06:04.859+03	
dea5cf07-94e3-f2c6-b716-9b5d9c8648e2	2021-05-21 13:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:06:24.853+03	2021-05-21 13:06:24.859+03	
3fbfb228-d31b-5d7e-f6e1-f0e0374f1a8a	2021-05-21 13:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:06:44.853+03	2021-05-21 13:06:44.87+03	
77066013-ed61-9d83-9415-39ff8e944967	2021-05-21 13:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:07:04.853+03	2021-05-21 13:07:04.86+03	
094671df-99a4-5767-9d68-997a5eb885e9	2021-05-21 13:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:07:24.853+03	2021-05-21 13:07:24.871+03	
264ff9d7-a15b-d882-a8c8-1b49f10a3a61	2021-05-21 13:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:07:45.853+03	2021-05-21 13:07:45.859+03	
1698168b-cec7-3ada-1e7b-27bc0e99fef9	2021-05-21 13:08:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:08:06.853+03	2021-05-21 13:08:06.861+03	
1b11b20e-66a3-bf1a-a468-e042c5220ce2	2021-05-21 13:08:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:08:27.853+03	2021-05-21 13:08:27.86+03	
16a6ed3e-452c-c505-81d0-3cec46b50702	2021-05-21 13:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:08:48.852+03	2021-05-21 13:08:48.859+03	
fe2a46a1-9a31-0e5e-ca24-050cc3c655db	2021-05-21 13:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:09:08.853+03	2021-05-21 13:09:08.858+03	
da53ccfe-4068-5157-660a-cb15f88aa805	2021-05-21 13:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:09:29.853+03	2021-05-21 13:09:29.859+03	
a6ad2f02-531a-0f8e-3369-8ce5029d0f9c	2021-05-21 13:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:09:49.853+03	2021-05-21 13:09:49.86+03	
7f439dba-d1fe-c6b4-98d6-79e92d45392b	2021-05-21 13:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 13:10:00.853+03	2021-05-21 13:10:00.858+03	ERROR
e3c05f6c-2946-b44e-e453-938b02133b7e	2021-05-21 13:10:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:10:20.852+03	2021-05-21 13:10:20.859+03	
02ad95fa-0690-bced-c6b4-3f79d44873d5	2021-05-21 13:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:10:40.852+03	2021-05-21 13:10:40.859+03	
8172362e-2ed9-2bff-b531-22a810dcb8ef	2021-05-21 13:11:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:11:01.853+03	2021-05-21 13:11:01.9+03	
404d2c1b-0925-4df0-63f9-a0b3892e1217	2021-05-21 13:11:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:11:21.854+03	2021-05-21 13:11:21.868+03	
0d2ab432-f363-8bca-bd30-edcc5d81f7ac	2021-05-21 13:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:11:42.853+03	2021-05-21 13:11:42.859+03	
1f735c0c-543b-c865-660f-c8d71fac581d	2021-05-21 13:12:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:12:03.853+03	2021-05-21 13:12:03.869+03	
e8c94b2c-ccfe-92b0-46ac-b969f26c26da	2021-05-21 13:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:12:23.853+03	2021-05-21 13:12:23.862+03	
7bf340c5-c4e9-addc-dd47-34155be746a8	2021-05-21 13:12:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:12:43.853+03	2021-05-21 13:12:43.871+03	
c34d58e7-f6e0-8dac-505c-4cec2a78052d	2021-05-21 13:13:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:13:03.853+03	2021-05-21 13:13:03.86+03	
906ac3de-4925-4960-a7bd-c492bd45c012	2021-05-21 13:13:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:13:24.852+03	2021-05-21 13:13:24.859+03	
b92ece37-5671-cd19-caad-a5090a846045	2021-05-21 13:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:13:45.852+03	2021-05-21 13:13:45.873+03	
29637450-ea0e-d26f-9ddf-f1bed9427b34	2021-05-21 13:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:14:05.852+03	2021-05-21 13:14:05.859+03	
07750ce0-e1c6-202e-eaa9-50c44bcd5b8e	2021-05-21 13:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:14:25.853+03	2021-05-21 13:14:25.859+03	
5ff55fb5-0e3c-3d0c-6bc3-041814f39bd2	2021-05-21 13:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:14:45.853+03	2021-05-21 13:14:45.86+03	
b4524ceb-5fdb-cbd0-4f9b-32dd44b1ffa7	2021-05-21 13:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:15:06.852+03	2021-05-21 13:15:06.858+03	
96bca340-4a79-a49d-d9e2-442a85a1253d	2021-05-21 13:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:15:27.852+03	2021-05-21 13:15:27.859+03	
ec484111-440a-d19d-73ac-30f039763c05	2021-05-21 13:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:15:47.853+03	2021-05-21 13:15:47.859+03	
536f05f4-2c0f-8d91-be93-4d503027ff86	2021-05-21 13:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:16:09.852+03	2021-05-21 13:16:09.863+03	
cdae7d3d-fd2e-0746-7464-161364e6dd58	2021-05-21 13:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:16:30.852+03	2021-05-21 13:16:30.859+03	
f5b50e88-de8c-4c30-3b96-98224b1d274f	2021-05-21 13:16:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:16:51.853+03	2021-05-21 13:16:51.859+03	
16a35a0b-529c-f0c4-8b09-cab692c7908b	2021-05-21 13:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:17:12.853+03	2021-05-21 13:17:12.86+03	
17cab826-2aef-2d43-6e2b-339298b47dfa	2021-05-21 13:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:17:32.853+03	2021-05-21 13:17:32.86+03	
0a89fbb5-2780-dba4-0c24-3c786ab53dd2	2021-05-21 13:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:17:53.852+03	2021-05-21 13:17:53.859+03	
8a2abe68-0a60-f526-1db2-5293613e1bb9	2021-05-21 13:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:18:13.852+03	2021-05-21 13:18:14.132+03	
fe9c4929-bb64-bcfc-6e77-8b3d150bf757	2021-05-21 13:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:18:33.853+03	2021-05-21 13:18:33.859+03	
28dc1a19-7091-a196-893b-c3603591a0db	2021-05-21 12:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:57:42.853+03	2021-05-21 12:57:42.861+03	
eb1de778-2358-8470-8396-3519c8a031f8	2021-05-21 12:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:58:02.853+03	2021-05-21 12:58:02.859+03	
b9e4c618-7605-1da2-c999-4214f0051e47	2021-05-21 12:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:58:23.853+03	2021-05-21 12:58:23.859+03	
08746612-11f6-6b03-2117-7b82a0b8787b	2021-05-21 12:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:58:44.852+03	2021-05-21 12:58:44.859+03	
878c3db4-f940-19f9-9e3f-76b499614dda	2021-05-21 12:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:59:05.852+03	2021-05-21 12:59:05.859+03	
3e60d5be-6011-b524-ef20-df9aceb25ebc	2021-05-21 12:59:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:59:26.852+03	2021-05-21 12:59:26.859+03	
5d7dc08c-4093-6757-d529-b2d06bad0195	2021-05-21 12:59:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:59:46.853+03	2021-05-21 12:59:46.87+03	
36fd7f3f-3c85-8957-6096-4b0c780339b8	2021-05-21 12:59:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 12:59:56.854+03	2021-05-21 12:59:56.869+03	
e397f817-c10b-6ba4-6fd4-78aebe8d98b9	2021-05-21 13:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:00:07.853+03	2021-05-21 13:00:07.863+03	
d3dd6a11-9c46-b496-ec59-16bfc9337489	2021-05-21 13:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:00:27.853+03	2021-05-21 13:00:27.863+03	
7d07de67-7296-8fd3-20da-ba95b1c9803c	2021-05-21 13:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:00:48.853+03	2021-05-21 13:00:48.859+03	
76d9b317-c6fc-793d-ea79-9d72e0956b48	2021-05-21 13:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:01:09.853+03	2021-05-21 13:01:09.859+03	
01c84acf-02b4-a4c4-9532-806d0d608d87	2021-05-21 13:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:01:29.853+03	2021-05-21 13:01:29.873+03	
9b5c5e34-8d3e-34de-8164-c8837f916d9d	2021-05-21 13:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:01:50.852+03	2021-05-21 13:01:50.858+03	
ea1d104a-235d-e6a3-3f93-f91bf35178cb	2021-05-21 13:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:02:10.852+03	2021-05-21 13:02:10.859+03	
088381f8-18a0-f7d5-7c87-90a27b891351	2021-05-21 13:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:02:30.853+03	2021-05-21 13:02:30.859+03	
cf6ccb58-98f5-ec7b-9081-22ccca845e4f	2021-05-21 13:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:02:50.853+03	2021-05-21 13:02:50.859+03	
1fa85b6a-c9ec-03a2-1559-04ccd04a2b35	2021-05-21 13:03:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:03:11.853+03	2021-05-21 13:03:11.863+03	
e8bf7ba4-086f-db76-4c99-c36251e56fe6	2021-05-21 13:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:03:32.853+03	2021-05-21 13:03:32.86+03	
659456aa-793e-2f5c-94b4-25831c3a2ac0	2021-05-21 13:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:03:52.853+03	2021-05-21 13:03:52.859+03	
67f3508e-76c2-29ab-3215-811fcfabb77e	2021-05-21 13:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:04:13.852+03	2021-05-21 13:04:13.859+03	
7c1cf23a-825e-09e3-c315-e704bc527dca	2021-05-21 13:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:04:33.852+03	2021-05-21 13:04:33.874+03	
7b82c85b-8ac4-30ff-88f8-ba083d18c939	2021-05-21 13:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:04:53.852+03	2021-05-21 13:04:53.859+03	
48f7ecb4-9bec-a334-f5d9-dd93880d4c7b	2021-05-21 13:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:05:13.853+03	2021-05-21 13:05:13.859+03	
68cc3b99-9a32-fc43-a6d3-0fbc671acd28	2021-05-21 13:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:05:34.852+03	2021-05-21 13:05:34.859+03	
c7f631dd-47b7-40f3-1cd2-5d2aca37a4b2	2021-05-21 13:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:05:54.853+03	2021-05-21 13:05:54.859+03	
d330a681-fde8-cea2-6128-912b8c119a73	2021-05-21 13:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:06:14.853+03	2021-05-21 13:06:14.866+03	
ad2a3c71-edc3-3593-d626-8dbe30641446	2021-05-21 13:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:06:34.853+03	2021-05-21 13:06:34.859+03	
78ec9bc7-8e7e-48aa-8a90-aa6e116ca17c	2021-05-21 13:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:06:54.853+03	2021-05-21 13:06:54.86+03	
6acdd449-259a-43ab-6390-8c4c5cb7a4ec	2021-05-21 13:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:07:14.853+03	2021-05-21 13:07:14.859+03	
fa225aa2-90d1-66ca-2bc6-9f388a475247	2021-05-21 13:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:07:35.853+03	2021-05-21 13:07:35.858+03	
f4535ad5-d1dd-fc8e-0703-c03f94dca0c2	2021-05-21 13:07:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:07:56.853+03	2021-05-21 13:07:56.871+03	
34455a38-aad4-b2c1-688e-5fc746aeae78	2021-05-21 13:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:08:17.853+03	2021-05-21 13:08:17.86+03	
3fa8528f-8aa6-f347-6291-fd8edc483fef	2021-05-21 13:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:08:38.852+03	2021-05-21 13:08:38.859+03	
face3d10-30ad-73ab-937b-4585e3b1e249	2021-05-21 13:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:08:58.853+03	2021-05-21 13:08:58.859+03	
7367a09e-cb69-d528-4750-9cbf50cd1e9c	2021-05-21 13:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:09:19.853+03	2021-05-21 13:09:19.859+03	
029a2952-693c-47ce-586d-3817207393bb	2021-05-21 13:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:09:39.853+03	2021-05-21 13:09:39.86+03	
203c1364-aa00-6a78-7b47-5dbe13737770	2021-05-21 13:09:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:09:59.853+03	2021-05-21 13:09:59.861+03	
6d388a16-3b12-9aec-04bf-9448c463a3f2	2021-05-21 13:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:10:09.853+03	2021-05-21 13:10:09.861+03	
c2d67f1d-408f-5d8a-3a91-82f4b40e4770	2021-05-21 13:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:10:30.852+03	2021-05-21 13:10:30.858+03	
e6972f21-87e8-19b7-c921-6799c02c4393	2021-05-21 13:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:10:50.853+03	2021-05-21 13:10:50.86+03	
345481f7-4702-b407-7a1c-22a4553418eb	2021-05-21 13:11:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:11:11.853+03	2021-05-21 13:11:11.86+03	
b6bdb6ca-fcd5-e033-4220-6055ccd0a541	2021-05-21 13:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:11:32.853+03	2021-05-21 13:11:32.881+03	
ea75c42c-3c70-0523-e3aa-56d0e5c3e789	2021-05-21 13:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:11:53.853+03	2021-05-21 13:11:53.859+03	
c6a16bc0-e840-7c47-4679-d95da639c492	2021-05-21 13:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:12:13.853+03	2021-05-21 13:12:13.868+03	
5d4c79e3-6063-2b2e-fbd4-53e2db33f569	2021-05-21 13:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:12:33.853+03	2021-05-21 13:12:33.861+03	
40e40799-e49e-fa8d-81ab-3ec001e3cd98	2021-05-21 13:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:12:53.853+03	2021-05-21 13:12:53.859+03	
70ee62bf-e3cd-6cb9-9b0e-09cb3f44bb95	2021-05-21 13:13:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:13:14.852+03	2021-05-21 13:13:14.859+03	
847bef75-e4a3-9446-125f-7a255a80c20d	2021-05-21 13:13:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:13:34.853+03	2021-05-21 13:13:34.859+03	
1f88defc-cdb2-8937-07a1-5f86e5c1eb2a	2021-05-21 13:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:13:55.852+03	2021-05-21 13:13:55.858+03	
6045c7d5-2144-8eee-89b7-2d52ef2c16fa	2021-05-21 13:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:14:15.852+03	2021-05-21 13:14:15.859+03	
ac4dc76d-8ee4-5eb1-39a4-b8816e23c7e4	2021-05-21 13:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:14:35.853+03	2021-05-21 13:14:35.87+03	
9390e0f4-c522-d443-33b6-4409fc9ebf28	2021-05-21 13:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:14:56.852+03	2021-05-21 13:14:56.86+03	
723eb6e4-7549-f89e-1f32-7f6ffc58d450	2021-05-21 13:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:15:16.853+03	2021-05-21 13:15:16.86+03	
bfcd5037-3283-28d2-9525-80d27ebf4fe3	2021-05-21 13:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:15:37.853+03	2021-05-21 13:15:37.87+03	
e1e6aa70-5ee6-f645-0aac-e7fe009cd61e	2021-05-21 13:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:15:58.853+03	2021-05-21 13:15:58.861+03	
cb34fbcb-f56b-f9f1-c222-5913a5dccc14	2021-05-21 13:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:16:19.853+03	2021-05-21 13:16:19.861+03	
190ed620-8ef2-25ba-0010-6d1609886460	2021-05-21 13:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:16:40.853+03	2021-05-21 13:16:40.859+03	
066dd5c9-f1d6-c176-1cdc-cb40350c1b00	2021-05-21 13:17:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:17:01.854+03	2021-05-21 13:17:01.861+03	
aaa1ffd1-9489-3632-2034-6e0c5b95fecf	2021-05-21 13:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:17:22.853+03	2021-05-21 13:17:22.859+03	
a3122cdb-e862-c991-d24f-aae9d607f7ed	2021-05-21 13:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:17:42.853+03	2021-05-21 13:17:42.858+03	
f9dbd524-a55c-4bb4-3397-1674ed1c1f19	2021-05-21 13:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:18:03.852+03	2021-05-21 13:18:03.87+03	
0b5d9d49-caac-04a4-37b6-8b847cf8514d	2021-05-21 13:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:18:23.853+03	2021-05-21 13:18:23.86+03	
bf1c2597-93b7-c580-c3f5-b43681d63100	2021-05-21 13:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:18:44.853+03	2021-05-21 13:18:44.859+03	
02c62bec-7f05-230a-6d90-f5c839b35781	2021-05-21 13:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:19:05.853+03	2021-05-21 13:19:05.859+03	
9a5bcc4e-80ee-edc3-6cb5-528e2f24aefe	2021-05-21 13:19:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:19:26.852+03	2021-05-21 13:19:26.859+03	
1d4601a5-2be6-493d-a6fd-de21d83a385e	2021-05-21 13:19:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:19:46.852+03	2021-05-21 13:19:46.864+03	
3e9d5536-96f7-72c7-a372-4b5b41959f0e	2021-05-21 13:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 13:20:00.852+03	2021-05-21 13:20:00.857+03	ERROR
fa972865-dae6-a124-2383-3a15a8ba19f8	2021-05-21 13:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:20:16.852+03	2021-05-21 13:20:16.864+03	
5381b49b-045b-b022-1312-05d35412116f	2021-05-21 13:20:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:20:36.854+03	2021-05-21 13:20:36.861+03	
64a6a221-27ac-d9d0-464e-4f49bacbdfd0	2021-05-21 13:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:20:57.852+03	2021-05-21 13:20:57.859+03	
1f0f9879-db72-23d0-5810-f43d56f63b59	2021-05-21 13:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:21:17.852+03	2021-05-21 13:21:17.859+03	
747b803f-beaa-4e48-3117-25a0aa3f01d5	2021-05-21 13:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:21:37.853+03	2021-05-21 13:21:37.859+03	
692fb265-71d2-62f0-a6f6-eeb7ca8d7496	2021-05-21 13:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:21:57.853+03	2021-05-21 13:21:57.86+03	
20359e46-8d47-ad97-5cfd-4dc2a500acc2	2021-05-21 13:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:22:18.852+03	2021-05-21 13:22:18.859+03	
c83f9539-885b-9bf4-4cae-3303d2377641	2021-05-21 13:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:22:38.853+03	2021-05-21 13:22:38.859+03	
01369f8e-36ee-e0e1-5113-7a3433af31e9	2021-05-21 13:22:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:22:58.853+03	2021-05-21 13:22:58.864+03	
383d7fa2-eaf6-25f4-ec4f-954a13e591ba	2021-05-21 13:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:23:18.853+03	2021-05-21 13:23:18.862+03	
b0762886-605b-37f2-e4eb-f96831ea0715	2021-05-21 13:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:23:38.853+03	2021-05-21 13:23:38.859+03	
121d2608-5299-5666-be5e-460054315720	2021-05-21 13:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:23:58.853+03	2021-05-21 13:23:58.86+03	
536b7254-db02-db92-7b49-dad5d7c5eb66	2021-05-21 13:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:24:18.853+03	2021-05-21 13:24:18.86+03	
0f4b603c-0854-5d32-83f3-ccf488da7131	2021-05-21 13:24:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:24:39.852+03	2021-05-21 13:24:39.858+03	
408248f9-6364-3ab3-9a2a-324a34bb2e50	2021-05-21 13:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:24:59.853+03	2021-05-21 13:24:59.86+03	
c7810d4e-88b6-74f3-24e6-eb9c39f8e6e5	2021-05-21 13:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:25:20.852+03	2021-05-21 13:25:20.859+03	
a7951c15-0dd7-40d9-4dc8-e05a8a01b787	2021-05-21 13:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:25:40.852+03	2021-05-21 13:25:40.859+03	
b36e4e61-69cd-1fac-cffe-23936387d335	2021-05-21 13:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:26:00.852+03	2021-05-21 13:26:00.859+03	
d8ad6f19-2668-6a42-282e-8baeb084c853	2021-05-21 13:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:26:20.852+03	2021-05-21 13:26:20.859+03	
7391006a-6fb6-ef8e-be75-17a5fe00b1b7	2021-05-21 13:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:26:40.852+03	2021-05-21 13:26:40.859+03	
53a44246-0c26-a6c1-08d7-6961b8006d5f	2021-05-21 13:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:27:00.853+03	2021-05-21 13:27:00.86+03	
38dff213-3199-3fed-94d5-6c732c741905	2021-05-21 13:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:27:20.853+03	2021-05-21 13:27:20.86+03	
08bb879d-3f29-ca00-f125-2dc34f87989c	2021-05-21 13:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:27:42.853+03	2021-05-21 13:27:42.859+03	
2585c8e1-ce38-36d6-ef13-7307a2e9468b	2021-05-21 13:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:28:03.853+03	2021-05-21 13:28:03.86+03	
776b49f1-449b-cea4-999e-0163a382c384	2021-05-21 13:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:28:23.853+03	2021-05-21 13:28:23.863+03	
bce9a958-9679-c68d-eb38-52847dd9721c	2021-05-21 13:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:28:43.853+03	2021-05-21 13:28:43.859+03	
5aae5f4c-6877-cc96-2927-18087c32af09	2021-05-21 13:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:29:04.853+03	2021-05-21 13:29:04.859+03	
1795315a-bd08-5c1c-1d80-46dbe9055fbe	2021-05-21 13:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:29:25.853+03	2021-05-21 13:29:25.86+03	
dfe97ad4-46c8-4e54-661e-3e9cb80f7fe6	2021-05-21 13:29:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:29:46.852+03	2021-05-21 13:29:46.872+03	
c8330d70-fd26-75eb-d4e2-30de7e2dcd37	2021-05-21 13:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 13:30:00.852+03	2021-05-21 13:30:00.858+03	ERROR
c8c53bc5-86cb-6ad6-03e9-c729adc67e91	2021-05-21 13:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:30:16.852+03	2021-05-21 13:30:16.859+03	
3fb11f38-ca27-cf19-45ff-10255ee4eae3	2021-05-21 13:30:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:30:36.853+03	2021-05-21 13:30:36.87+03	
bf739fe9-0e27-0219-bdf9-6d49deddfe89	2021-05-21 13:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:30:58.853+03	2021-05-21 13:30:58.861+03	
383e060d-7241-e1b9-21dc-365220181650	2021-05-21 13:31:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:31:19.852+03	2021-05-21 13:31:19.858+03	
cd2c153e-0bc8-7e5c-9dcd-b695c5d481b0	2021-05-21 13:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:31:40.853+03	2021-05-21 13:31:40.859+03	
500e8f0c-b7e9-eddd-a57f-9093122b230a	2021-05-21 13:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:32:00.853+03	2021-05-21 13:32:00.859+03	
d109e173-1b4f-6770-e768-e63ca4974135	2021-05-21 13:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:32:20.853+03	2021-05-21 13:32:20.862+03	
1686e410-eb32-dd7f-e5dd-c4a6e9932739	2021-05-21 13:32:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:32:42.852+03	2021-05-21 13:32:42.859+03	
08338d9e-a48f-8faa-30ba-abf65d1f4aaa	2021-05-21 13:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:33:02.852+03	2021-05-21 13:33:02.859+03	
f661a023-c7de-fb81-35dc-b10236dacca2	2021-05-21 13:33:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:33:22.852+03	2021-05-21 13:33:22.858+03	
0d252220-2928-b151-1a8f-0e3cbd613418	2021-05-21 13:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:33:42.853+03	2021-05-21 13:33:42.859+03	
6496e7f3-9030-381a-3a1e-4ed1e901f8ec	2021-05-21 13:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:34:03.853+03	2021-05-21 13:34:03.872+03	
724c596f-52af-2d2d-6e89-5bff116d91b7	2021-05-21 13:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:34:23.853+03	2021-05-21 13:34:23.862+03	
20939979-9cad-88e3-b245-0b58e8a29c64	2021-05-21 13:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:34:44.853+03	2021-05-21 13:34:44.859+03	
81f4751d-1207-dc56-67da-15d07a2a5504	2021-05-21 13:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:35:05.852+03	2021-05-21 13:35:05.86+03	
f37ec04e-3a7c-3e40-2f88-81bb1b3c813b	2021-05-21 13:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:35:25.852+03	2021-05-21 13:35:25.859+03	
c7a8b839-9215-b87d-30ea-48517d41fc37	2021-05-21 13:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:35:45.852+03	2021-05-21 13:35:45.859+03	
1ee04082-c23c-c761-f40d-5f7c82faa76a	2021-05-21 13:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:36:05.853+03	2021-05-21 13:36:05.86+03	
104f0702-1881-44db-7877-ef2737be08bd	2021-05-21 13:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:36:26.852+03	2021-05-21 13:36:26.86+03	
4f50bb51-136f-d493-8b88-ec4e50bd05a3	2021-05-21 13:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:36:46.853+03	2021-05-21 13:36:46.861+03	
43a8687a-3494-de9b-e56f-1bd93e004db6	2021-05-21 13:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:37:07.852+03	2021-05-21 13:37:07.859+03	
25444bac-45fa-3ecf-2c11-1d4de4c4e051	2021-05-21 13:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:37:27.853+03	2021-05-21 13:37:27.86+03	
0fbff9ae-999c-4705-e62c-5d50aae970a2	2021-05-21 13:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:37:48.853+03	2021-05-21 13:37:48.859+03	
ed25458c-267a-d378-c396-94364f0e1442	2021-05-21 13:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:38:10.852+03	2021-05-21 13:38:10.859+03	
56e5288f-325c-e2c0-7520-23868f92728a	2021-05-21 13:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:38:30.852+03	2021-05-21 13:38:30.86+03	
8bb8fd2a-755f-99db-b185-5672692014b7	2021-05-21 13:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:38:50.852+03	2021-05-21 13:38:50.86+03	
78e58f61-c076-909a-5399-42ee56743876	2021-05-21 13:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:39:10.852+03	2021-05-21 13:39:10.86+03	
496de783-11c1-8d65-66d2-7356345e35fe	2021-05-21 13:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:39:30.853+03	2021-05-21 13:39:30.861+03	
ae5718fe-89d5-b5a9-b691-37856ae2c44a	2021-05-21 13:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:18:55.853+03	2021-05-21 13:18:55.864+03	
f5e2c41d-149f-87fe-90cc-0fa2221d9f47	2021-05-21 13:19:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:19:16.852+03	2021-05-21 13:19:16.869+03	
88f36dba-27b7-409d-f79f-23ea0774bb9f	2021-05-21 13:19:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:19:36.852+03	2021-05-21 13:19:36.86+03	
a126cc37-333f-f21e-a519-f6f8d67dda3c	2021-05-21 13:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:19:56.852+03	2021-05-21 13:19:56.859+03	
7fcdb281-eb5c-6222-cefe-dd8f7563dbc5	2021-05-21 13:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:20:06.852+03	2021-05-21 13:20:06.86+03	
a9f78d29-e48b-0233-754f-635d8870d355	2021-05-21 13:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:20:26.853+03	2021-05-21 13:20:26.861+03	
bea26b21-c90f-bbfe-02b0-2dc3836227ef	2021-05-21 13:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:20:47.852+03	2021-05-21 13:20:47.859+03	
3651690d-2ebe-d0dd-bd5f-ad5911864dae	2021-05-21 13:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:21:07.852+03	2021-05-21 13:21:07.859+03	
1016abd6-738d-f304-b347-d15000312d33	2021-05-21 13:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:21:27.853+03	2021-05-21 13:21:27.859+03	
f1ce1ae8-7b08-ac72-6b8b-23e7d78fdfcf	2021-05-21 13:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:21:47.853+03	2021-05-21 13:21:47.86+03	
f53a4206-a249-3604-fae9-2c6cd6e678e5	2021-05-21 13:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:22:07.853+03	2021-05-21 13:22:07.859+03	
2ec90e49-c52b-aad5-5935-b47ce674630b	2021-05-21 13:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:22:28.853+03	2021-05-21 13:22:28.859+03	
0e1c02ac-bfcd-d487-9992-42569c17e2ce	2021-05-21 13:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:22:48.853+03	2021-05-21 13:22:48.86+03	
3d93a718-0974-29dd-6fb0-1c179a3f65e2	2021-05-21 13:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:23:08.853+03	2021-05-21 13:23:08.863+03	
a6ec0aba-619b-5bd1-af9a-24180244cd9c	2021-05-21 13:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:23:28.853+03	2021-05-21 13:23:28.862+03	
f958e2d3-4a64-8567-2d1b-da57b9c1f8fe	2021-05-21 13:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:23:48.853+03	2021-05-21 13:23:48.859+03	
6c1ce8b5-cb78-aba0-aad2-ed04bc195d19	2021-05-21 13:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:24:08.853+03	2021-05-21 13:24:08.86+03	
f51b55e5-c9a8-6871-fbd3-0a76850d7235	2021-05-21 13:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:24:29.852+03	2021-05-21 13:24:29.864+03	
e9e5f52b-2b99-439f-10de-75b0bb25a558	2021-05-21 13:24:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:24:49.852+03	2021-05-21 13:24:49.858+03	
cad6a93c-0d65-ae77-f09b-0cb1a2b0cf70	2021-05-21 13:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:25:10.852+03	2021-05-21 13:25:10.859+03	
46fd2501-eec3-e6b4-0865-baa804652799	2021-05-21 13:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:25:30.852+03	2021-05-21 13:25:30.859+03	
4b321e64-6919-8c1c-44a0-8c388839f907	2021-05-21 13:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:25:50.852+03	2021-05-21 13:25:50.86+03	
e4683a27-280c-f564-f3f6-f1562a63ac81	2021-05-21 13:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:26:10.852+03	2021-05-21 13:26:10.859+03	
625f25f6-7fb5-f5d1-2995-aa589c138265	2021-05-21 13:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:26:30.852+03	2021-05-21 13:26:30.859+03	
7a086e16-9b02-8c71-4ce2-f4a5c644d2bc	2021-05-21 13:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:26:50.853+03	2021-05-21 13:26:50.859+03	
f7f75b7e-08ad-ce61-a373-ecc8284ab17a	2021-05-21 13:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:27:10.853+03	2021-05-21 13:27:10.86+03	
a14b82b5-d011-b764-7339-70ca1454f070	2021-05-21 13:27:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:27:31.854+03	2021-05-21 13:27:31.86+03	
1b42f9ff-7e2e-9540-fe9a-6dd562e63d9c	2021-05-21 13:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:27:53.852+03	2021-05-21 13:27:53.858+03	
e32a52c6-3e6c-9942-86fa-eb0ae7392d41	2021-05-21 13:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:28:13.853+03	2021-05-21 13:28:13.876+03	
6a01ef91-5c8a-b6a4-6092-4ef5d960d322	2021-05-21 13:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:28:33.853+03	2021-05-21 13:28:33.867+03	
aa3c7cb6-c485-1e5d-5659-ed07920b91ff	2021-05-21 13:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:28:54.853+03	2021-05-21 13:28:54.861+03	
81ad30e6-fb34-c674-659f-43f583c670cf	2021-05-21 13:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:29:14.853+03	2021-05-21 13:29:14.861+03	
34339f85-e3b1-ab3e-6cad-9f1587c6dac3	2021-05-21 13:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:29:35.853+03	2021-05-21 13:29:35.861+03	
401758ed-ee2e-747a-0b67-1283eda1a8ae	2021-05-21 13:29:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:29:56.852+03	2021-05-21 13:29:56.859+03	
e141df7c-720e-5f41-9b1d-381b5219e2d4	2021-05-21 13:30:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:30:06.852+03	2021-05-21 13:30:06.859+03	
17691e7e-fb33-8c02-df55-d2f57926ad30	2021-05-21 13:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:30:26.852+03	2021-05-21 13:30:26.858+03	
b958e285-e206-2b9a-3477-65eb81d123fe	2021-05-21 13:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:30:47.853+03	2021-05-21 13:30:47.859+03	
0880dce1-f637-ba19-9b28-15d14525a377	2021-05-21 13:31:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:31:09.852+03	2021-05-21 13:31:09.858+03	
6dd5a92a-6624-eaa6-2e89-af0ef894ec01	2021-05-21 13:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:31:29.853+03	2021-05-21 13:31:29.859+03	
56af0f1a-7b60-39d0-39fb-45e6cdc97868	2021-05-21 13:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:31:50.853+03	2021-05-21 13:31:50.86+03	
985d501e-951f-1ab3-21b9-afebd8ceb338	2021-05-21 13:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:32:10.853+03	2021-05-21 13:32:10.859+03	
5bc2134b-f83c-dad9-f4ab-8908712656d1	2021-05-21 13:32:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:32:31.854+03	2021-05-21 13:32:31.861+03	
3cb1915a-96c4-5728-d4a1-a683432d2107	2021-05-21 13:32:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:32:52.852+03	2021-05-21 13:32:52.859+03	
12097275-f414-eba3-4a5f-6f1ecb36169a	2021-05-21 13:33:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:33:12.852+03	2021-05-21 13:33:12.86+03	
f7ee64e5-ec61-f71a-dc70-83d24a5387d1	2021-05-21 13:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:33:32.853+03	2021-05-21 13:33:32.859+03	
ba33d9e9-2c86-4fa0-81e3-0b68539a85e8	2021-05-21 13:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:33:53.852+03	2021-05-21 13:33:53.86+03	
ad833835-3fb6-a9a2-c198-1e71be3dfc27	2021-05-21 13:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:34:13.853+03	2021-05-21 13:34:13.86+03	
d134c3bc-c733-a5e3-375a-de12aa9fd276	2021-05-21 13:34:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:34:34.852+03	2021-05-21 13:34:34.875+03	
22dedc13-55f3-bf13-526d-25e41759d216	2021-05-21 13:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:34:55.852+03	2021-05-21 13:34:55.86+03	
29d85422-49b8-acc7-27ae-588a57a8181c	2021-05-21 13:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:35:15.852+03	2021-05-21 13:35:15.869+03	
2c9d5f14-89fe-bc3d-23a2-8e844fb65ba8	2021-05-21 13:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:35:35.852+03	2021-05-21 13:35:35.868+03	
6d0c5c33-78aa-8f86-b96f-435bad204441	2021-05-21 13:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:35:55.853+03	2021-05-21 13:35:55.863+03	
c221491c-51a3-f836-05f5-1ffaab2fdfa3	2021-05-21 13:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:36:15.853+03	2021-05-21 13:36:15.867+03	
d4c2f4ae-c9a1-d281-bc43-4a7f67a3a9a7	2021-05-21 13:36:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:36:36.852+03	2021-05-21 13:36:36.859+03	
e0d4c4f3-b627-6857-ef35-41ef2ded0581	2021-05-21 13:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:36:57.852+03	2021-05-21 13:36:57.861+03	
d051fc08-975f-c0a8-3a1c-03ed81705a58	2021-05-21 13:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:37:17.853+03	2021-05-21 13:37:17.86+03	
0b91890b-143a-2313-7b92-47357cb26d88	2021-05-21 13:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:37:38.853+03	2021-05-21 13:37:38.859+03	
a2a4c334-2021-ac71-e1e3-840d658a8045	2021-05-21 13:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:37:59.853+03	2021-05-21 13:37:59.859+03	
aade6c8b-c379-d862-6cd5-94c46d73614c	2021-05-21 13:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:38:20.852+03	2021-05-21 13:38:20.864+03	
9c3053fe-057c-62dd-e5a7-bc8160fe0c22	2021-05-21 13:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:38:40.852+03	2021-05-21 13:38:40.86+03	
4823ddde-9cd7-6210-1629-9dfaa68eb772	2021-05-21 13:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:39:00.852+03	2021-05-21 13:39:00.86+03	
b05c4408-f579-18a6-eff2-26dfe351c437	2021-05-21 13:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:39:20.853+03	2021-05-21 13:39:20.86+03	
30a5bdcf-be98-3e3e-df86-58da449cc233	2021-05-21 13:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:39:41.852+03	2021-05-21 13:39:41.859+03	
2821a36b-6ec7-e358-1292-c2dfcd1a5b2d	2021-05-21 13:39:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:39:51.853+03	2021-05-21 13:39:51.86+03	
fdf8a24a-0331-cb84-82ca-b886ebc0cf5f	2021-05-21 13:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:40:02.853+03	2021-05-21 13:40:02.86+03	
6b841ffd-6419-44ab-4ae5-ea8e4319a7bc	2021-05-21 13:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:40:22.853+03	2021-05-21 13:40:22.859+03	
cc0a41d3-b2e9-9342-8517-93dde555ca86	2021-05-21 13:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:40:42.853+03	2021-05-21 13:40:42.861+03	
95daccd6-eb7b-29c7-b522-612803a66d5e	2021-05-21 13:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:41:02.853+03	2021-05-21 13:41:02.86+03	
dc25a0b9-e261-3e8c-168b-835688663271	2021-05-21 13:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:41:22.853+03	2021-05-21 13:41:22.86+03	
873a214c-42f8-584a-4317-ff5217d60377	2021-05-21 13:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:41:42.853+03	2021-05-21 13:41:42.872+03	
e2611ada-33be-5806-50e4-637469f24ffe	2021-05-21 13:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:42:03.852+03	2021-05-21 13:42:03.864+03	
a21864d8-17c1-0fc9-2173-d4ea5dd81585	2021-05-21 13:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:42:23.853+03	2021-05-21 13:42:23.86+03	
55fd0cdd-c216-904c-1fc9-4fb7e471e77f	2021-05-21 13:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:42:44.852+03	2021-05-21 13:42:44.859+03	
7c1f3ca2-59e0-cd36-30ac-64eb76a7c318	2021-05-21 13:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:43:04.853+03	2021-05-21 13:43:04.861+03	
f0279b60-7612-e0cb-0373-bc1a3a862bef	2021-05-21 13:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:43:25.853+03	2021-05-21 13:43:25.86+03	
7312ed4f-aca2-7cf9-3ce4-b0e0d68a22cc	2021-05-21 13:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:43:45.853+03	2021-05-21 13:43:45.859+03	
66980ed4-941b-bba0-4bb6-71c80b6b5d0b	2021-05-21 13:44:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:44:06.852+03	2021-05-21 13:44:06.859+03	
28a988ef-06c9-ad10-ac58-971d2eac790d	2021-05-21 13:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:44:26.853+03	2021-05-21 13:44:26.86+03	
64a0cb85-10c7-ee86-23f4-d896be5bf078	2021-05-21 13:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:44:47.853+03	2021-05-21 13:44:47.86+03	
30c019e4-e28f-23d4-9071-fb07412b31b3	2021-05-21 13:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:45:08.853+03	2021-05-21 13:45:08.862+03	
385468ca-2c07-be4a-eae0-52f82752d93e	2021-05-21 13:45:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:45:28.853+03	2021-05-21 13:45:28.859+03	
1c56275e-66dc-1506-56cf-ee3f5a1f4237	2021-05-21 13:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:45:49.852+03	2021-05-21 13:45:49.859+03	
a216e27f-dcac-b0af-e311-e1732bc01a47	2021-05-21 13:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:46:09.852+03	2021-05-21 13:46:09.87+03	
c31a8730-c3b0-fd02-80d0-d4727151442a	2021-05-21 13:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:46:29.853+03	2021-05-21 13:46:29.859+03	
336e5849-28c3-3559-c7c0-2fde8b13b8db	2021-05-21 13:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:46:49.853+03	2021-05-21 13:46:49.86+03	
634ec35b-cf8f-81f3-5f19-f067bd52f96d	2021-05-21 13:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:47:10.853+03	2021-05-21 13:47:10.859+03	
51cfb65e-e105-f22f-61fd-e3a3622c9a2e	2021-05-21 13:47:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:47:31.853+03	2021-05-21 13:47:31.858+03	
a325b489-b7bd-b2a2-7533-f00022b92ac6	2021-05-21 13:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:47:52.852+03	2021-05-21 13:47:52.859+03	
0295c8a8-d72e-61f2-8611-c66f144bc319	2021-05-21 13:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:48:13.852+03	2021-05-21 13:48:13.861+03	
2ec6d2ae-0043-c5f8-7b41-7d7a3a138b42	2021-05-21 13:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:48:33.853+03	2021-05-21 13:48:33.859+03	
0aa22673-6f18-bfcc-8e90-2694231d8ae3	2021-05-21 13:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:48:54.852+03	2021-05-21 13:48:54.859+03	
1b72802d-4924-886d-b9f2-b8fe9adf9409	2021-05-21 13:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:49:14.852+03	2021-05-21 13:49:14.858+03	
0a63b449-b676-7300-b99e-823066c109a6	2021-05-21 13:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:49:34.852+03	2021-05-21 13:49:34.858+03	
7972d523-7345-04de-8caa-205e26638cc8	2021-05-21 13:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:49:54.852+03	2021-05-21 13:49:54.864+03	
52bce6c0-53a8-3a5a-9d28-1aefe84ed87b	2021-05-21 13:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:50:04.852+03	2021-05-21 13:50:04.862+03	
2f9345b0-8056-ca9c-5b73-09c04720e949	2021-05-21 13:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:50:24.853+03	2021-05-21 13:50:24.862+03	
6228b5b2-1793-8234-7385-198bb3851185	2021-05-21 13:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:50:44.853+03	2021-05-21 13:50:44.861+03	
33086009-ac11-08d2-117f-c73c73c86edc	2021-05-21 13:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:51:05.852+03	2021-05-21 13:51:05.859+03	
7dbd973d-ede6-e84a-b821-f5c466de0420	2021-05-21 13:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:51:25.852+03	2021-05-21 13:51:25.858+03	
4cea7d3a-3d3e-c526-7857-a67f345a1ed5	2021-05-21 13:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:51:45.853+03	2021-05-21 13:51:45.86+03	
21a19694-79d4-d235-2d3d-efba7c98127a	2021-05-21 13:52:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:52:06.852+03	2021-05-21 13:52:06.859+03	
6302f3ab-c2ae-c578-dad6-7f4b72945d2a	2021-05-21 13:52:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:52:26.854+03	2021-05-21 13:52:26.86+03	
a6d48c29-538a-c054-2656-f3671190fbd1	2021-05-21 13:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:52:47.852+03	2021-05-21 13:52:47.859+03	
c2473bd1-efc5-7e02-bac1-cecf46da5570	2021-05-21 13:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:53:07.852+03	2021-05-21 13:53:07.86+03	
0e8585ab-50fe-cf9d-f3cb-48a94b06f39e	2021-05-21 13:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:53:27.852+03	2021-05-21 13:53:27.86+03	
d05fc0f5-1e2c-ee41-c0ed-77b7ad167bf6	2021-05-21 13:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:53:47.853+03	2021-05-21 13:53:47.86+03	
8468b80b-f5d4-e180-afba-8abcee886a1e	2021-05-21 13:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:54:08.853+03	2021-05-21 13:54:08.86+03	
62fe0739-5ce2-32cf-c5d2-4abaffeb18b2	2021-05-21 13:54:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:54:29.852+03	2021-05-21 13:54:29.897+03	
a3ae2d5d-ea68-2836-b6d7-7202e4c7d8f2	2021-05-21 13:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:54:50.853+03	2021-05-21 13:54:50.859+03	
ee29cd98-f19e-769b-335e-dc6340c99ac7	2021-05-21 13:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:55:12.853+03	2021-05-21 13:55:12.86+03	
be609169-58bf-0873-cbfd-0798312e858b	2021-05-21 13:55:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:55:33.852+03	2021-05-21 13:55:33.859+03	
2d5ebf74-70c3-c771-5309-3d62495a31c0	2021-05-21 13:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:55:53.852+03	2021-05-21 13:55:53.859+03	
df8c14a6-c290-e046-3834-64f5c6fdae5a	2021-05-21 13:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:56:14.852+03	2021-05-21 13:56:14.859+03	
d3d4bf8d-c009-9b20-7725-f8df5821ff48	2021-05-21 13:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:56:34.853+03	2021-05-21 13:56:34.86+03	
d5d1b1f7-5d90-9a71-f1d0-2edd292156ac	2021-05-21 13:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:56:54.853+03	2021-05-21 13:56:54.859+03	
8ffd7b1a-b41b-378c-0c8d-710c5cb235af	2021-05-21 13:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:57:14.853+03	2021-05-21 13:57:14.865+03	
c11b39b4-e61d-9220-6a7c-65d971afac21	2021-05-21 13:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:57:35.852+03	2021-05-21 13:57:35.858+03	
40861c1f-f4b3-0a44-4a06-e5659e3655ee	2021-05-21 13:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:57:55.853+03	2021-05-21 13:57:55.86+03	
c416dd29-7957-79e3-3144-fd3e84898e83	2021-05-21 13:58:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:58:06.852+03	2021-05-21 13:58:06.86+03	
6819c585-1021-dea5-24a5-d251ca64c6cc	2021-05-21 13:58:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:58:26.852+03	2021-05-21 13:58:26.86+03	
d7878cf1-c520-2aa4-bae1-45782cadfd20	2021-05-21 13:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:58:47.852+03	2021-05-21 13:58:47.859+03	
05402eeb-8655-cd76-ed90-061a64b887f9	2021-05-21 13:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:59:08.852+03	2021-05-21 13:59:08.858+03	
19d1962f-6650-3d80-4e03-7fe36fa85f8d	2021-05-21 13:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:59:28.852+03	2021-05-21 13:59:28.862+03	
e3b6648f-eb3c-64e4-f858-d72a18bda6b1	2021-05-21 13:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:59:48.852+03	2021-05-21 13:59:48.859+03	
77a3c1b0-ba71-e953-e490-b414d280adfb	2021-05-21 14:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 14:00:00.853+03	2021-05-21 14:00:00.859+03	ERROR
afeabec7-017a-d6bc-760c-b93f7c222a60	2021-05-21 14:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:00:18.853+03	2021-05-21 14:00:18.86+03	
6cde99a2-0a62-9040-709e-b6f87361c3c6	2021-05-21 13:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 13:40:00.852+03	2021-05-21 13:40:00.858+03	ERROR
3a7ecebd-9df3-7e03-6ced-b9e51435d244	2021-05-21 13:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:40:12.853+03	2021-05-21 13:40:12.86+03	
55dc7e08-0146-af97-cc59-faa2e964cae3	2021-05-21 13:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:40:32.853+03	2021-05-21 13:40:32.859+03	
57ed3361-6d42-69d6-3d56-3b201bfb5fe0	2021-05-21 13:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:40:52.853+03	2021-05-21 13:40:52.859+03	
bbde1948-a308-05b6-d103-5371bafc9f12	2021-05-21 13:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:41:12.853+03	2021-05-21 13:41:12.859+03	
d52a2568-8480-ab7a-ac22-ec5ac93a26e0	2021-05-21 13:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:41:32.853+03	2021-05-21 13:41:32.904+03	
3618f36f-26a6-b02a-3218-c962f82d9961	2021-05-21 13:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:41:52.853+03	2021-05-21 13:41:52.861+03	
b061bb4c-9e4d-5bc7-fc60-1c22c28ef52e	2021-05-21 13:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:42:13.853+03	2021-05-21 13:42:13.871+03	
e6f9aa6f-9263-bc7a-92fe-593329d83ff2	2021-05-21 13:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:42:34.852+03	2021-05-21 13:42:34.86+03	
612eb9c0-15f4-3462-5d37-f409ab1de4fc	2021-05-21 13:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:42:54.853+03	2021-05-21 13:42:54.871+03	
ce47861e-c940-0dd9-9253-3e236511085b	2021-05-21 13:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:43:15.852+03	2021-05-21 13:43:15.859+03	
40a1a63c-ad51-965e-48df-0613889545cd	2021-05-21 13:43:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:43:35.853+03	2021-05-21 13:43:35.861+03	
0c69c698-9099-62c5-aa3e-dd0ec5971a60	2021-05-21 13:43:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:43:56.852+03	2021-05-21 13:43:56.859+03	
200ae8c1-3abb-9939-254f-e2edde35aa6b	2021-05-21 13:44:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:44:16.852+03	2021-05-21 13:44:16.866+03	
4e76e8e5-8a71-7b84-27dc-ce73e8604ed1	2021-05-21 13:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:44:37.852+03	2021-05-21 13:44:37.861+03	
12e2aac2-9171-e12a-b74f-007a8812c06e	2021-05-21 13:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:44:57.853+03	2021-05-21 13:44:57.86+03	
6198aec4-fce6-2a22-d139-586ccd949917	2021-05-21 13:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:45:18.853+03	2021-05-21 13:45:18.863+03	
5815f6ad-7b2d-7685-4655-a517dd3efa25	2021-05-21 13:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:45:39.852+03	2021-05-21 13:45:39.859+03	
b4141954-769f-017f-a065-4a31327eb2ac	2021-05-21 13:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:45:59.852+03	2021-05-21 13:45:59.861+03	
7e1609c0-a7d2-efe9-b94a-0a6ed3980c2e	2021-05-21 13:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:46:19.853+03	2021-05-21 13:46:19.86+03	
cc83f3bd-d1a1-30b6-3803-b722cf9c7e67	2021-05-21 13:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:46:39.853+03	2021-05-21 13:46:39.859+03	
c0542c83-d5d4-d8c2-6265-b7965343391e	2021-05-21 13:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:47:00.852+03	2021-05-21 13:47:00.859+03	
7f2a2c71-5224-d400-fdb7-ab7b72b16a21	2021-05-21 13:47:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:47:21.853+03	2021-05-21 13:47:21.863+03	
2822fb18-ef36-a5c9-2dc6-192ba7a1fd1b	2021-05-21 13:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:47:42.852+03	2021-05-21 13:47:42.906+03	
585aaafe-6347-5484-f23e-90987fa4356f	2021-05-21 13:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:48:02.853+03	2021-05-21 13:48:02.859+03	
69abe7c6-d1df-1f20-147b-0f6ac35703d3	2021-05-21 13:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:48:23.853+03	2021-05-21 13:48:23.87+03	
d66e2a24-5752-956a-7610-e122dff0c379	2021-05-21 13:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:48:43.853+03	2021-05-21 13:48:43.868+03	
318a209f-bca4-1d0f-ff46-9c3ca999d0b8	2021-05-21 13:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:49:04.852+03	2021-05-21 13:49:04.858+03	
aeb69d7c-0a0f-aafd-2256-797864690619	2021-05-21 13:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:49:24.852+03	2021-05-21 13:49:24.872+03	
5720afce-e6d0-a99a-4c4b-e7f6a48d7e00	2021-05-21 13:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:49:44.852+03	2021-05-21 13:49:44.863+03	
d12b1535-2cfe-df57-de9c-a6aa516eb3fd	2021-05-21 13:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 13:50:00.852+03	2021-05-21 13:50:00.857+03	ERROR
af2f5ef1-68e8-278d-38ff-eca48c7afb4b	2021-05-21 13:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:50:14.853+03	2021-05-21 13:50:14.861+03	
c467be3d-5327-acd6-c962-b636eafc1393	2021-05-21 13:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:50:34.853+03	2021-05-21 13:50:34.859+03	
fd451d66-76d3-acf4-8c0d-75b32a427a81	2021-05-21 13:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:50:55.852+03	2021-05-21 13:50:55.859+03	
69db2cce-a39b-8825-ba17-345e1eae5266	2021-05-21 13:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:51:15.852+03	2021-05-21 13:51:15.859+03	
bd04bb28-1903-3313-c689-e1e891b221f8	2021-05-21 13:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:51:35.853+03	2021-05-21 13:51:35.863+03	
9b9a2778-9a02-2768-1ca8-09b7bc2e0ee0	2021-05-21 13:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:51:55.853+03	2021-05-21 13:51:55.861+03	
013846ac-5a2e-5654-0def-37c1dec2b609	2021-05-21 13:52:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:52:16.853+03	2021-05-21 13:52:16.86+03	
b8a92c64-0e0b-43ac-88c1-390623b771bb	2021-05-21 13:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:52:37.852+03	2021-05-21 13:52:37.859+03	
2c71dce3-1dc0-10ae-f6f6-29a1a9832cd3	2021-05-21 13:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:52:57.852+03	2021-05-21 13:52:57.859+03	
3795ee2b-eb9a-a27b-119b-012f5b0c44e1	2021-05-21 13:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:53:17.852+03	2021-05-21 13:53:17.858+03	
89eee70b-0365-0972-341c-4879623322c4	2021-05-21 13:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:53:37.852+03	2021-05-21 13:53:37.86+03	
b56b9ef5-1f7a-bfc8-bb91-617396147cc2	2021-05-21 13:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:53:58.852+03	2021-05-21 13:53:58.86+03	
f55d0b9f-0a87-4417-6471-2a339a7f02b8	2021-05-21 13:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:54:19.852+03	2021-05-21 13:54:19.858+03	
2bc03f21-e4e6-a75b-1a7c-c6ccd91e184f	2021-05-21 13:54:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:54:39.853+03	2021-05-21 13:54:39.859+03	
a8d88f70-8f58-b4c8-4890-8e4af9fa9f4c	2021-05-21 13:55:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:55:01.854+03	2021-05-21 13:55:01.86+03	
f6a36f8d-3e7d-e25b-fddc-2cab89670ea1	2021-05-21 13:55:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:55:23.852+03	2021-05-21 13:55:23.871+03	
ad5cda21-ce7c-75c4-f2ae-c90c38398219	2021-05-21 13:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:55:43.852+03	2021-05-21 13:55:43.869+03	
cc164a60-0998-3704-db62-fc8de16bcf43	2021-05-21 13:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:56:03.853+03	2021-05-21 13:56:03.87+03	
2cde9100-97da-6459-3c84-1b659e732245	2021-05-21 13:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:56:24.853+03	2021-05-21 13:56:24.859+03	
61630131-74d4-276c-0679-2527bb1d0508	2021-05-21 13:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:56:44.853+03	2021-05-21 13:56:44.859+03	
2d5f08d5-547b-503f-2d65-eb08012f855d	2021-05-21 13:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:57:04.853+03	2021-05-21 13:57:04.859+03	
5c91b318-c716-7035-187b-d2abaea713cf	2021-05-21 13:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:57:24.853+03	2021-05-21 13:57:24.859+03	
1d0185d6-15a8-c22c-2866-0a56620d04a7	2021-05-21 13:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:57:45.852+03	2021-05-21 13:57:45.859+03	
fd36c186-b8ff-8dc0-a352-ea211f5a1f73	2021-05-21 13:58:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:58:16.852+03	2021-05-21 13:58:16.859+03	
5d57462f-042f-7290-d268-9f7d15fcb30f	2021-05-21 13:58:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:58:36.853+03	2021-05-21 13:58:36.859+03	
a161068e-2396-0e55-2142-8af451ff47ec	2021-05-21 13:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:58:57.853+03	2021-05-21 13:58:57.866+03	
7dfbbe02-3778-9b8f-8e7a-1ceb305b0aff	2021-05-21 13:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:59:18.852+03	2021-05-21 13:59:18.859+03	
4bd4bf58-2583-4587-6080-fee5fe7886e0	2021-05-21 13:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:59:38.852+03	2021-05-21 13:59:38.858+03	
c7ea45f8-0cfc-400d-2b57-f51c0f7d7b9d	2021-05-21 13:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 13:59:58.853+03	2021-05-21 13:59:58.86+03	
b5db6231-8488-24cf-212b-16ab7cce74c3	2021-05-21 14:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:00:08.853+03	2021-05-21 14:00:08.862+03	
7e6f2aae-cedc-0ec2-c20a-f82cf94cbda6	2021-05-21 14:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:00:28.853+03	2021-05-21 14:00:28.861+03	
ad442602-0aa4-f41b-2ea4-496a3afb7736	2021-05-21 14:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:00:49.853+03	2021-05-21 14:00:49.86+03	
48e794b3-9804-8b5c-55d3-c58a116d3e64	2021-05-22 10:50:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:50:36.855+03	2021-05-22 10:50:36.862+03	
68ccc58d-b67b-1d43-a6db-97ead2a511b4	2021-05-21 14:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:00:38.853+03	2021-05-21 14:00:38.859+03	
9999c1fb-a183-b16b-4ee3-01cf979712cf	2021-05-21 21:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:59:49.853+03	2021-05-21 21:59:49.866+03	
aa7b70e3-2c58-cb56-8071-0c6ab83a8d15	2021-05-21 14:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:00:59.853+03	2021-05-21 14:00:59.859+03	
1facf3b5-1967-9f76-e65d-8c81e2b876b0	2021-05-21 14:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:01:20.853+03	2021-05-21 14:01:20.859+03	
e6c53ad7-3221-4132-8a30-926d8ee0655d	2021-05-21 22:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 22:00:00.853+03	2021-05-21 22:00:00.863+03	ERROR
1b728f51-a838-fcb4-168d-811de505b3a5	2021-05-21 14:01:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:01:41.853+03	2021-05-21 14:01:41.859+03	
abaf7f1c-fb90-d6eb-b215-07105a7e789a	2021-05-21 14:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:02:02.852+03	2021-05-21 14:02:02.86+03	
c1c7fc7e-7682-7cf8-6c76-323ca125be4a	2021-05-21 22:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:00:19.853+03	2021-05-21 22:00:19.862+03	
8dc0c3bd-a61b-4f86-5b00-a674f85748bf	2021-05-21 14:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:02:22.852+03	2021-05-21 14:02:22.858+03	
138f119c-31b5-f4f6-9219-2d4a16ad107f	2021-05-21 14:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:02:42.852+03	2021-05-21 14:02:42.862+03	
9b812339-39f6-8d9d-c522-403e7b69af30	2021-05-21 22:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:00:39.853+03	2021-05-21 22:00:39.863+03	
dcee65ab-7958-5bda-5f8e-3dbd957632ac	2021-05-21 14:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:03:03.853+03	2021-05-21 14:03:03.862+03	
0a1f47e3-ee7f-a84d-ac03-3eec78ab4b92	2021-05-21 14:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:03:24.852+03	2021-05-21 14:03:24.86+03	
c952548e-fd24-7054-c928-331d5f67ce53	2021-05-21 22:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:00:59.853+03	2021-05-21 22:00:59.872+03	
0a705ca9-0d77-510c-174f-cb74490e5b95	2021-05-21 14:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:03:44.853+03	2021-05-21 14:03:44.86+03	
af8ef53e-fa9f-f845-eb58-6fcc32e9bd5e	2021-05-21 14:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:04:05.853+03	2021-05-21 14:04:05.86+03	
c2829d69-6a97-b6ac-0260-2b8f22aafd3f	2021-05-21 22:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:01:19.853+03	2021-05-21 22:01:19.859+03	
989c3d7c-3ba9-fb2a-abc3-e51baef6ec67	2021-05-21 14:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:04:27.853+03	2021-05-21 14:04:27.872+03	
7ee37442-b274-deec-fe67-be4e370bfc9e	2021-05-21 14:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:04:48.852+03	2021-05-21 14:04:48.865+03	
eaf84df9-bbbf-014c-646c-f3cac11f2a0b	2021-05-21 22:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:01:40.853+03	2021-05-21 22:01:40.859+03	
70a79918-77d1-cb98-70de-1050ac213ae7	2021-05-21 14:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:05:08.852+03	2021-05-21 14:05:08.858+03	
5ea9dcb3-1b6a-e7b5-f834-142b45f17d1e	2021-05-21 14:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:05:28.852+03	2021-05-21 14:05:28.858+03	
c4624b73-44ae-c62f-8a37-c6c3aff1b023	2021-05-21 22:02:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:02:01.853+03	2021-05-21 22:02:01.86+03	
ef394d09-023f-43c8-62e2-396e061cf68a	2021-05-21 22:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:02:22.853+03	2021-05-21 22:02:22.86+03	
4321d18b-55fb-1c19-a781-fe28a579b08f	2021-05-21 22:02:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:02:43.853+03	2021-05-21 22:02:43.86+03	
455411cd-8f0b-07c1-7286-ab5253c5af22	2021-05-21 22:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:03:05.853+03	2021-05-21 22:03:05.861+03	
be22bef9-2287-155c-f865-0d921dce8d7d	2021-05-21 22:03:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:03:26.853+03	2021-05-21 22:03:26.862+03	
beb6650a-1725-f761-214b-6ef146d3a324	2021-05-21 22:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:03:47.853+03	2021-05-21 22:03:47.86+03	
ad1983a9-e9bb-adf6-53af-c5316b99dea9	2021-05-21 22:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:04:09.853+03	2021-05-21 22:04:09.86+03	
e93d8d41-fb76-67b3-33c0-991553e4cc05	2021-05-21 22:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:04:30.853+03	2021-05-21 22:04:30.863+03	
a167f996-e3fc-edf0-01e6-8e876eccf232	2021-05-21 22:04:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:04:51.852+03	2021-05-21 22:04:51.872+03	
af6156d2-cdb1-8f3e-0350-e07c38849e21	2021-05-21 22:05:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:05:11.853+03	2021-05-21 22:05:11.859+03	
bf54d232-bfe1-722d-40c2-2dd54cfbf80c	2021-05-21 22:05:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:05:31.853+03	2021-05-21 22:05:31.86+03	
28d97b3c-df2b-4526-389c-6692f87f39f5	2021-05-21 22:05:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:05:51.854+03	2021-05-21 22:05:51.862+03	
ac157431-4728-42d6-57c8-65f96308bbd8	2021-05-21 22:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:06:13.852+03	2021-05-21 22:06:13.858+03	
db9f2f0e-48a8-0f0b-6bc2-c5b829c0dd36	2021-05-21 22:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:06:33.853+03	2021-05-21 22:06:33.859+03	
9ef63a1f-2257-b02b-eb9c-645cd6df4231	2021-05-21 22:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:06:54.853+03	2021-05-21 22:06:54.859+03	
d713fa7f-6e44-1ed0-83ab-38517410264e	2021-05-21 22:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:07:14.853+03	2021-05-21 22:07:14.861+03	
dae3ae43-02a4-f045-6d32-d5f23f0950d6	2021-05-21 22:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:07:34.853+03	2021-05-21 22:07:34.86+03	
c4c294b5-2907-26f9-dcfa-2a541138df07	2021-05-21 22:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:07:54.853+03	2021-05-21 22:07:54.871+03	
e0512a69-9781-cb10-f083-26f2576f52ef	2021-05-21 22:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:08:15.852+03	2021-05-21 22:08:15.86+03	
8678bc0d-e7af-1c17-8bc7-28e98038f680	2021-05-21 22:08:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:08:36.853+03	2021-05-21 22:08:36.86+03	
a35a0e1c-fd09-7323-d9d3-bbc906a128d5	2021-05-21 22:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:08:56.853+03	2021-05-21 22:08:56.861+03	
ddf190e4-7959-68f2-c0c8-438f549ae6d5	2021-05-21 22:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:09:16.853+03	2021-05-21 22:09:16.861+03	
03d75d16-215f-7405-a489-dcfc8d711e1f	2021-05-21 22:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:09:37.852+03	2021-05-21 22:09:37.859+03	
9404c9fe-2167-632c-14b7-f88ceb4f00e0	2021-05-21 22:09:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:09:57.852+03	2021-05-21 22:09:57.859+03	
e49f2023-4eef-3ad0-3a8f-99197e22759d	2021-05-21 22:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:10:07.852+03	2021-05-21 22:10:07.86+03	
ab2cdb3e-59ec-69fc-9293-c084e550d608	2021-05-21 22:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:10:27.853+03	2021-05-21 22:10:27.862+03	
0f5c2c43-08c2-6c3c-0c07-1a826dc90d08	2021-05-21 22:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:10:48.853+03	2021-05-21 22:10:48.86+03	
a4ec798e-9e92-3554-238a-4db2fd26a7ad	2021-05-21 22:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:11:08.853+03	2021-05-21 22:11:08.86+03	
3816b92f-1605-e50b-b067-313422cb3273	2021-05-21 22:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:11:29.853+03	2021-05-21 22:11:29.859+03	
fc2926de-3239-f92a-1d65-cf15db468e67	2021-05-21 22:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:11:50.853+03	2021-05-21 22:11:50.859+03	
0804c0b2-cc16-4ca1-7d47-c26858966ea3	2021-05-21 22:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:12:10.853+03	2021-05-21 22:12:10.86+03	
ba73f576-c9ed-6a4b-426f-fa6173368a14	2021-05-21 22:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:12:31.853+03	2021-05-21 22:12:31.858+03	
240a7d3e-c879-7547-3020-51900b7d2199	2021-05-21 22:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:12:53.853+03	2021-05-21 22:12:53.862+03	
74fff3bd-23f9-2e17-2984-91ee2090297d	2021-05-21 22:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:13:15.852+03	2021-05-21 22:13:15.861+03	
fa17f84d-0c80-403d-65c1-85da2d78270e	2021-05-21 22:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:13:35.853+03	2021-05-21 22:13:35.861+03	
c507991f-d667-5ac2-5ab6-167ce4cff499	2021-05-21 22:13:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:13:56.852+03	2021-05-21 22:13:56.858+03	
3dec8ebd-34f2-2b3c-b461-b9580c838f72	2021-05-21 22:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:14:17.852+03	2021-05-21 22:14:17.862+03	
21d12555-0c51-4842-bb3f-7b25815cb5ea	2021-05-21 22:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:14:38.853+03	2021-05-21 22:14:38.859+03	
9d6f4117-ab3a-28ca-190f-30b05c13158a	2021-05-21 22:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:14:59.853+03	2021-05-21 22:14:59.859+03	
8b6d9a74-d4f2-42a4-adc2-290caa08c236	2021-05-21 22:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:15:20.852+03	2021-05-21 22:15:20.859+03	
9427c41e-ba47-5988-85eb-d29866b8209c	2021-05-21 22:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:15:40.853+03	2021-05-21 22:15:40.86+03	
228f5814-a1da-4354-7c2f-aefa11469b02	2021-05-21 14:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:01:10.853+03	2021-05-21 14:01:10.859+03	
78ae182d-ac5d-f4ed-2481-adc99d1b30fe	2021-05-21 14:01:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:01:31.853+03	2021-05-21 14:01:31.859+03	
a3386eaa-0ab3-1289-b716-41927e099c2f	2021-05-21 14:01:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:01:51.853+03	2021-05-21 14:01:51.861+03	
20e6006a-2436-4e00-226f-7f21e52c4a9e	2021-05-21 14:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:02:12.852+03	2021-05-21 14:02:12.862+03	
83e057ab-4a6e-4993-0688-0236a7374c5f	2021-05-21 14:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:02:32.852+03	2021-05-21 14:02:32.858+03	
07184bd1-6e21-324a-834e-90f1114d90aa	2021-05-21 14:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:02:52.853+03	2021-05-21 14:02:52.858+03	
d49d7d4d-fa0d-dd2a-158e-995271ca969b	2021-05-21 14:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:03:14.852+03	2021-05-21 14:03:14.86+03	
877f8e68-e35f-8fff-8953-28bd9aa8abaa	2021-05-21 14:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:03:34.852+03	2021-05-21 14:03:34.861+03	
1f530c21-3e4a-517e-d840-8d9e8264e6f2	2021-05-21 14:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:03:55.853+03	2021-05-21 14:03:55.86+03	
7bc8b1f0-15aa-d474-37fb-00a6f70dab8f	2021-05-21 14:04:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:04:16.854+03	2021-05-21 14:04:16.877+03	
37eb6bfa-5867-2ec1-d99e-50462fa130ec	2021-05-21 14:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:04:37.853+03	2021-05-21 14:04:37.859+03	
c2fb5d88-c2ed-2878-c06b-e13a3e5babb2	2021-05-21 14:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:04:58.852+03	2021-05-21 14:04:58.859+03	
430f490a-8c06-9612-513d-d9c04f9e74af	2021-05-21 14:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:05:18.852+03	2021-05-21 14:05:18.859+03	
d7d0f873-18fb-47f3-c274-1a99db0db614	2021-05-21 14:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:05:38.852+03	2021-05-21 14:05:38.859+03	
abf38d97-e77d-8133-be82-b6e00cb3798a	2021-05-21 14:05:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:05:48.853+03	2021-05-21 14:05:48.864+03	
4fc33695-71fd-f5f7-9754-eb68e74413f2	2021-05-21 14:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:05:59.852+03	2021-05-21 14:05:59.861+03	
fd1d59d9-7a7f-0c30-0c5f-1799715b3665	2021-05-21 14:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:06:09.853+03	2021-05-21 14:06:09.86+03	
c1a13e86-a7fb-5ec8-9cfc-961e702fc776	2021-05-21 14:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:06:19.853+03	2021-05-21 14:06:19.86+03	
bf02a565-8d82-3e95-7d3c-b2347987e299	2021-05-21 14:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:06:30.852+03	2021-05-21 14:06:30.859+03	
6d25a4d5-2fa3-6a84-5174-89443365a926	2021-05-21 14:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:06:40.852+03	2021-05-21 14:06:40.859+03	
3fbe0627-6d0e-f412-609e-944a10883d2d	2021-05-21 14:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:06:50.852+03	2021-05-21 14:06:50.859+03	
48db29ff-e31c-ce7d-a554-69baa47fea43	2021-05-21 14:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:07:00.852+03	2021-05-21 14:07:00.86+03	
c798a594-035d-e8c5-0752-52b9606b1f6a	2021-05-21 14:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:07:10.852+03	2021-05-21 14:07:10.858+03	
d72ea866-1e81-9ea1-5efb-2afc8662881d	2021-05-21 14:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:07:20.852+03	2021-05-21 14:07:20.859+03	
f9a785d2-78dd-b363-b6f0-59a1964b12bd	2021-05-21 14:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:07:30.853+03	2021-05-21 14:07:30.859+03	
1a398ea2-1195-8eb8-b381-ff8569668643	2021-05-21 14:07:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:07:40.853+03	2021-05-21 14:07:40.859+03	
c20ca11c-4750-b059-d71e-234c7cf43c17	2021-05-21 14:07:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:07:50.853+03	2021-05-21 14:07:50.859+03	
97d07716-9a98-fb72-ceee-96ed3841b4d4	2021-05-21 14:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:08:00.853+03	2021-05-21 14:08:00.861+03	
9b471eb3-8f13-20b9-3d07-5b322d8e1213	2021-05-21 14:08:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:08:11.852+03	2021-05-21 14:08:11.863+03	
d3776589-85b3-ad54-0ba8-65199673f042	2021-05-21 14:08:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:08:21.852+03	2021-05-21 14:08:21.859+03	
d4acbe0a-78b5-fbc6-aae2-3fe3f4fa6cea	2021-05-21 14:08:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:08:31.852+03	2021-05-21 14:08:31.859+03	
f26982d9-50c1-f8c7-f86e-caaa1840b964	2021-05-21 14:08:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:08:41.854+03	2021-05-21 14:08:41.86+03	
36cb1d50-8a80-b70a-651b-4cc971f152a9	2021-05-21 14:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:08:52.853+03	2021-05-21 14:08:52.859+03	
9a1dda7d-56f0-33ec-470b-3e5e350aac06	2021-05-21 14:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:09:03.852+03	2021-05-21 14:09:03.868+03	
c8fe50e7-738c-0e02-aa1f-de23309f0214	2021-05-21 14:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:09:13.852+03	2021-05-21 14:09:13.868+03	
630d6a8a-effc-cd83-ba99-26fcdd042234	2021-05-21 14:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:09:23.852+03	2021-05-21 14:09:23.859+03	
353ded04-06d0-24ba-fa02-7892c77ccae3	2021-05-21 14:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:09:33.853+03	2021-05-21 14:09:34.17+03	
d8096e16-99bb-ac5e-34ac-f71ea8ff4bdc	2021-05-21 14:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:09:43.853+03	2021-05-21 14:09:43.859+03	
7c89819f-75fc-fc0f-1d1c-9a51daa0f61c	2021-05-21 14:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:09:53.853+03	2021-05-21 14:09:53.862+03	
24f2abe6-a845-2836-5f92-7dd7fde4cc52	2021-05-21 14:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 14:10:00.852+03	2021-05-21 14:10:00.858+03	ERROR
d91d8291-0716-e897-4cb3-201512976fff	2021-05-21 14:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:10:04.852+03	2021-05-21 14:10:04.861+03	
f39712de-c7f5-c2d8-14fe-17a5682f15e7	2021-05-21 14:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:10:14.853+03	2021-05-21 14:10:14.859+03	
905d2731-e324-4fcd-eeb4-e19560d0c488	2021-05-21 14:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:10:24.853+03	2021-05-21 14:10:24.858+03	
7cf0e39c-c54b-c553-469f-ac8db2453fc8	2021-05-21 14:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:10:35.852+03	2021-05-21 14:10:35.859+03	
b1e9dc47-5a64-d3fd-82cb-1043ad32137d	2021-05-21 14:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:10:45.853+03	2021-05-21 14:10:45.86+03	
71152a0e-2c69-3fce-ac1b-280352002691	2021-05-21 14:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:10:55.853+03	2021-05-21 14:10:55.873+03	
5518ae72-9df8-079c-2ae3-0fcf6bd5f4f3	2021-05-21 14:11:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:11:06.853+03	2021-05-21 14:11:06.859+03	
fa3959d6-9d5a-dab3-0fd4-8c90c56a15d4	2021-05-21 14:11:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:11:16.854+03	2021-05-21 14:11:16.861+03	
6dc70252-ab68-ea90-4b64-3a8e6821d44e	2021-05-21 14:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:11:27.853+03	2021-05-21 14:11:27.86+03	
e95edbf3-b8f9-a2ef-57d6-a81504bd74f2	2021-05-21 14:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:11:37.853+03	2021-05-21 14:11:37.865+03	
49093f3b-af82-169c-c9e5-f4a832dbf5fc	2021-05-21 14:11:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:11:48.852+03	2021-05-21 14:11:48.859+03	
87ffbfb5-2438-70d4-d166-6516962c5bd3	2021-05-21 14:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:11:58.852+03	2021-05-21 14:11:58.86+03	
98b8f4bc-8887-8278-6a7d-e2c357393ad4	2021-05-21 14:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:12:08.852+03	2021-05-21 14:12:08.859+03	
4fa65c84-c2d3-2db2-0f29-337d0d6bdeb4	2021-05-21 14:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:12:18.853+03	2021-05-21 14:12:18.859+03	
d79ef69c-4eb9-1465-ff10-bfe15d3fff5f	2021-05-21 14:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:12:28.853+03	2021-05-21 14:12:28.86+03	
792b44a5-8fc0-ae46-4045-b5eca6775812	2021-05-21 14:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:12:38.853+03	2021-05-21 14:12:38.862+03	
1abed7e6-3838-fbae-230a-5cd32350a1e9	2021-05-21 14:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:12:48.853+03	2021-05-21 14:12:48.86+03	
c7c284c0-486d-5fee-802e-59a19c2f0bd1	2021-05-21 14:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:12:58.853+03	2021-05-21 14:12:58.861+03	
912ca416-42b8-5685-062c-a7c01f90c36f	2021-05-21 14:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:13:08.853+03	2021-05-21 14:13:08.862+03	
25648089-8704-1175-8e46-c47de12ad165	2021-05-21 14:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:13:19.853+03	2021-05-21 14:13:19.859+03	
04c80200-6cf9-1075-5c5a-656f98811d5e	2021-05-21 14:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:13:30.852+03	2021-05-21 14:13:30.86+03	
9983702a-161f-4ed8-2e17-7cb7027290c6	2021-05-21 14:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:13:40.852+03	2021-05-21 14:13:40.859+03	
fe28af4c-c597-4453-a13f-a8322e88134c	2021-05-21 14:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:13:50.852+03	2021-05-21 14:13:50.859+03	
1698955e-4511-eb96-adf6-cbab7a28de5e	2021-05-21 14:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:14:00.853+03	2021-05-21 14:14:00.859+03	
163c3fb5-4d87-5a33-d625-536aa9f59b9d	2021-05-21 14:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:14:22.852+03	2021-05-21 14:14:22.86+03	
9a7947e1-7e1c-0e52-4b38-7996649930e7	2021-05-21 14:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:14:42.852+03	2021-05-21 14:14:42.861+03	
4f8d1a8e-192a-a01c-7b7e-b3260c2fd4a4	2021-05-21 14:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:15:02.852+03	2021-05-21 14:15:02.859+03	
aaa13eb4-384e-e57b-4b5d-ec4e9277c427	2021-05-21 14:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:15:22.852+03	2021-05-21 14:15:22.86+03	
5f983670-6dfa-a363-6ea9-c418f4e0b59f	2021-05-21 14:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:15:42.853+03	2021-05-21 14:15:42.863+03	
c070997a-978c-5237-2b31-cfda71b250f0	2021-05-21 14:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:16:02.853+03	2021-05-21 14:16:02.859+03	
c40117c8-1cc9-29b9-8d57-ae1a977b7053	2021-05-21 14:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:16:22.853+03	2021-05-21 14:16:22.859+03	
73be5b5c-fa2f-290e-0508-72c3766667b4	2021-05-21 14:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:16:42.853+03	2021-05-21 14:16:42.859+03	
2de7eeff-ce94-e2e3-b2d3-598ded6e43b5	2021-05-21 14:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:17:03.853+03	2021-05-21 14:17:04.161+03	
be85828a-1405-ff9e-3235-52caef3d640a	2021-05-21 14:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:17:24.853+03	2021-05-21 14:17:24.859+03	
df3e0006-21de-016d-6adb-9d79d9fedce6	2021-05-21 14:17:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:17:44.853+03	2021-05-21 14:17:44.858+03	
169b7f1f-6dc0-78c9-2d67-08145f677c2a	2021-05-21 14:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:18:05.853+03	2021-05-21 14:18:05.859+03	
ce5e7a7b-f893-ed35-8fe2-f1727c038bdb	2021-05-21 14:18:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:18:26.853+03	2021-05-21 14:18:26.863+03	
e2637bde-1232-5c99-088c-098e570c0f7f	2021-05-21 14:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:18:47.853+03	2021-05-21 14:18:47.859+03	
7d381c1e-cdf0-1eb3-0e23-26c78302e689	2021-05-21 14:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:19:08.852+03	2021-05-21 14:19:08.858+03	
917462f1-42e8-4c00-b993-70c168b21c77	2021-05-21 14:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:19:28.853+03	2021-05-21 14:19:28.876+03	
e6876b9d-66f8-df2f-7d6f-c5cc4f865bad	2021-05-21 14:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:19:49.853+03	2021-05-21 14:19:49.859+03	
b7fb3241-2408-c606-a579-f17c27b62c0e	2021-05-21 14:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 14:20:00.853+03	2021-05-21 14:20:00.859+03	ERROR
ae954e4c-b6e8-97ca-1008-046d51929bb9	2021-05-21 14:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:20:19.853+03	2021-05-21 14:20:19.859+03	
509fca1d-76aa-81b3-ccee-1d73cd799b3b	2021-05-21 14:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:20:40.852+03	2021-05-21 14:20:40.859+03	
cfbd72a1-ba9e-88b1-2502-92bcc18336c8	2021-05-21 14:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:21:00.852+03	2021-05-21 14:21:00.859+03	
fb5202c4-7837-575d-a8d7-8ec12776247a	2021-05-21 14:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:21:20.852+03	2021-05-21 14:21:20.859+03	
47aa717f-d7f2-601f-9664-4b56f104eda2	2021-05-21 14:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:21:40.852+03	2021-05-21 14:21:40.859+03	
bd7b0056-affc-708d-ebbf-1cd1f75266a9	2021-05-21 14:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:22:00.853+03	2021-05-21 14:22:00.861+03	
dac85c39-5c6a-ed1e-3e98-e13c7c47ae33	2021-05-21 14:22:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:22:21.853+03	2021-05-21 14:22:21.859+03	
514f2897-4df5-04dd-6579-f40031d70a6f	2021-05-21 14:22:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:22:41.853+03	2021-05-21 14:22:41.859+03	
21d48f0c-eaec-cff7-4290-23528c128ec7	2021-05-21 14:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:23:03.853+03	2021-05-21 14:23:03.86+03	
1ded424b-acfa-f7ea-4056-d48ebbed993b	2021-05-21 14:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:23:24.853+03	2021-05-21 14:23:24.862+03	
17b9f818-5cd1-7487-805c-e1e55c9ff17f	2021-05-21 14:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:23:44.853+03	2021-05-21 14:23:44.869+03	
656df7ea-5e76-667c-9202-0bb9d8a41a4f	2021-05-21 14:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:24:04.853+03	2021-05-21 14:24:04.859+03	
7ea14b82-402b-70a1-05a3-ab2ec20d8732	2021-05-21 14:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:24:25.853+03	2021-05-21 14:24:25.86+03	
b6440416-1dc2-2749-6b75-c85d83b067af	2021-05-21 14:24:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:24:46.853+03	2021-05-21 14:24:46.859+03	
8de6731b-ce6e-4386-b14e-5a09ffb898ae	2021-05-21 14:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:25:08.852+03	2021-05-21 14:25:08.859+03	
a0088b00-610f-1e9c-3906-a53e79452126	2021-05-21 14:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:25:28.852+03	2021-05-21 14:25:28.859+03	
7168a1e8-fabc-966f-0fbe-e11ea228fc5f	2021-05-21 14:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:25:48.853+03	2021-05-21 14:25:48.86+03	
acd096d1-bba2-bea0-31c1-6de02272ce30	2021-05-21 14:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:26:10.853+03	2021-05-21 14:26:10.859+03	
47b60f71-9fd8-7ee7-957f-53107bede063	2021-05-21 14:26:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:26:31.853+03	2021-05-21 14:26:31.859+03	
4641f2d4-44cc-3cad-3f0f-c5553f6399d5	2021-05-21 14:26:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:26:51.854+03	2021-05-21 14:26:51.86+03	
df8f3a64-63fe-382a-f170-4df9858ddd71	2021-05-21 14:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:27:12.853+03	2021-05-21 14:27:12.859+03	
00219e22-17fe-7674-608f-e00e83ae0b78	2021-05-21 14:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:27:32.853+03	2021-05-21 14:27:32.859+03	
9514b0de-4d30-d8d8-ebed-9f1f2bbb2f79	2021-05-21 14:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:27:53.852+03	2021-05-21 14:27:53.859+03	
dfe081ed-276f-6d77-488d-b7381fc86f38	2021-05-21 14:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:28:13.852+03	2021-05-21 14:28:13.859+03	
46f134b1-183b-dae6-1969-68307fa3104d	2021-05-21 14:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:28:33.853+03	2021-05-21 14:28:33.862+03	
0986ada6-6f1c-4433-48fa-bfbfd91c9e71	2021-05-21 14:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:28:54.852+03	2021-05-21 14:28:54.86+03	
548f865c-cb14-47a1-39fb-6a957069e3dc	2021-05-21 14:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:29:15.852+03	2021-05-21 14:29:15.858+03	
57fd4086-936a-f245-0122-7a202642349a	2021-05-21 14:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:29:35.852+03	2021-05-21 14:29:35.86+03	
a73c313d-5b2a-0182-0fe4-1903ea61b1db	2021-05-21 14:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:29:55.853+03	2021-05-21 14:29:55.86+03	
d69dadc2-ffcb-b88b-ea29-6f634e19005f	2021-05-21 14:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:30:05.853+03	2021-05-21 14:30:05.861+03	
6772b289-b476-8c3e-3563-76b6c14a561b	2021-05-21 14:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:30:26.853+03	2021-05-21 14:30:26.86+03	
34972a2e-e61d-20aa-c2b0-d09b5d312718	2021-05-21 14:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:30:47.852+03	2021-05-21 14:30:47.859+03	
bc337bd9-d85f-1a0c-e3fd-d69c5cd1d586	2021-05-21 14:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:31:08.853+03	2021-05-21 14:31:08.862+03	
edf63f84-65c4-64a8-0d4a-cb514637d6f5	2021-05-21 14:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:31:29.853+03	2021-05-21 14:31:29.859+03	
6c80045e-85ef-30d3-294b-dd5b2e39d4ef	2021-05-21 14:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:31:50.853+03	2021-05-21 14:31:50.859+03	
a4ab5d02-87ad-b4e6-2d33-de7bbefd98ae	2021-05-21 14:32:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:32:11.853+03	2021-05-21 14:32:11.859+03	
64416988-f690-029e-579a-6b11af205c1e	2021-05-21 14:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:32:32.853+03	2021-05-21 14:32:32.859+03	
f98dbbd7-b1dd-2890-f59f-437f79b1e565	2021-05-21 14:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:32:53.852+03	2021-05-21 14:32:53.859+03	
1ab6053c-4379-9fc2-dcc5-df1de8f295c2	2021-05-21 14:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:33:13.853+03	2021-05-21 14:33:13.86+03	
e08f860d-a68b-2f30-8587-263f0c125282	2021-05-21 14:33:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:33:33.853+03	2021-05-21 14:33:33.859+03	
09ad4050-c910-63a5-1769-d5d4c5cf608b	2021-05-21 14:33:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:33:54.852+03	2021-05-21 14:33:54.874+03	
8db4f3e3-49bb-ba71-dee2-d57b480a417d	2021-05-21 14:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:34:14.853+03	2021-05-21 14:34:14.862+03	
6e2d31ff-d28f-8991-2666-4339c2bde533	2021-05-21 14:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:34:35.852+03	2021-05-21 14:34:35.864+03	
226b887e-1e01-7bc6-1be9-4782525eee52	2021-05-21 14:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:34:55.853+03	2021-05-21 14:34:55.861+03	
dfbf3080-577b-ff03-8b8b-9af3704fb5c2	2021-05-21 14:14:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:14:11.854+03	2021-05-21 14:14:11.87+03	
f8a89e26-3978-decb-fcb4-e4ea3e5a6a14	2021-05-21 14:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:14:32.852+03	2021-05-21 14:14:32.86+03	
75b01158-69c6-d677-5f90-5621e41e4c19	2021-05-21 14:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:14:52.852+03	2021-05-21 14:14:52.87+03	
16cc4362-3473-49e4-9d93-23985cfd3336	2021-05-21 14:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:15:12.852+03	2021-05-21 14:15:12.86+03	
ada7ec26-dd48-9efa-27a0-964130cc95e0	2021-05-21 14:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:15:32.853+03	2021-05-21 14:15:32.859+03	
449e4618-22eb-bb45-bb1e-dfd2c6f50a8b	2021-05-21 14:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:15:52.853+03	2021-05-21 14:15:52.859+03	
dcc24018-1e04-13bf-4662-6aa128467bd0	2021-05-21 14:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:16:12.853+03	2021-05-21 14:16:12.86+03	
f542663f-9f8a-39b8-d1fb-71c24eb6a8ef	2021-05-21 14:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:16:32.853+03	2021-05-21 14:16:32.862+03	
bbb50e42-0779-9750-7b80-d23e9252c1a6	2021-05-21 14:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:16:52.853+03	2021-05-21 14:16:52.859+03	
75cf075d-2d7a-1abc-042f-11680a85927f	2021-05-21 14:17:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:17:14.853+03	2021-05-21 14:17:14.86+03	
40465355-48b9-ae37-c605-7b8850346dbd	2021-05-21 14:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:17:34.853+03	2021-05-21 14:17:34.859+03	
15d3f27c-9d8a-a928-3bc8-5ca003615e1a	2021-05-21 14:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:17:55.853+03	2021-05-21 14:17:55.859+03	
a5de7013-99af-6647-f6cf-f89d0359b887	2021-05-21 14:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:18:16.852+03	2021-05-21 14:18:16.859+03	
da4de1f6-b9ca-6f9b-4b75-c29079d04270	2021-05-21 14:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:18:37.852+03	2021-05-21 14:18:37.859+03	
816a3ecc-5cd3-f96b-f431-f0ec59f5e67c	2021-05-21 14:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:18:57.853+03	2021-05-21 14:18:57.86+03	
78d044fa-26f8-7d21-3fe3-23423bd55873	2021-05-21 14:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:19:18.852+03	2021-05-21 14:19:18.859+03	
bbc1c04a-6e26-7c68-ce2a-6a382a8f57a8	2021-05-21 14:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:19:39.852+03	2021-05-21 14:19:39.859+03	
d6b57e1b-7d95-5df1-e578-7e8576eb6815	2021-05-21 14:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:19:59.853+03	2021-05-21 14:19:59.86+03	
cbb68ddd-5d4a-fe3c-6f48-3a1f84e19ea4	2021-05-21 14:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:20:09.853+03	2021-05-21 14:20:09.859+03	
2ddfac36-e85d-bdd6-1dd6-ee61a83014fd	2021-05-21 14:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:20:30.852+03	2021-05-21 14:20:30.859+03	
85b02e98-ae6c-77dc-5405-770fbf1e6513	2021-05-21 14:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:20:50.852+03	2021-05-21 14:20:50.858+03	
b70fedea-5a15-a89e-0429-5fa680ca3de6	2021-05-21 14:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:21:10.852+03	2021-05-21 14:21:10.858+03	
4d363c98-0b20-2578-76be-a12f017cb40f	2021-05-21 14:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:21:30.852+03	2021-05-21 14:21:30.858+03	
64c4dc6a-4a56-ac12-5cfe-64850573d1d1	2021-05-21 14:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:21:50.853+03	2021-05-21 14:21:50.861+03	
b07df2e6-19ef-6a8c-f493-aa3579f576d2	2021-05-21 14:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:22:10.853+03	2021-05-21 14:22:10.859+03	
2fd61713-4c7f-c43f-5902-c8c12b218d81	2021-05-21 14:22:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:22:31.853+03	2021-05-21 14:22:31.861+03	
f4c59471-0d17-07ef-1d4e-bd3dfb838dc5	2021-05-21 14:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:22:52.853+03	2021-05-21 14:22:52.859+03	
3956da2d-3dfc-32e1-5592-f08984308a39	2021-05-21 14:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:23:14.853+03	2021-05-21 14:23:14.86+03	
6539e5f7-85d7-65b0-73b5-099167000df5	2021-05-21 14:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:23:34.853+03	2021-05-21 14:23:34.863+03	
fd3de135-de3f-5ccb-6c26-14c7a75d6472	2021-05-21 14:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:23:54.853+03	2021-05-21 14:23:54.859+03	
ff86b351-26af-a688-5bf0-f70324178056	2021-05-21 14:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:24:14.853+03	2021-05-21 14:24:14.858+03	
baa9d241-de4d-0e58-1b72-36a8e9b87282	2021-05-21 14:24:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:24:36.852+03	2021-05-21 14:24:36.863+03	
bce563a7-7825-375c-0f4e-56fa9150d0d0	2021-05-21 14:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:24:57.853+03	2021-05-21 14:24:57.861+03	
3d0d288d-c571-e674-1f1b-b4bb38072c5b	2021-05-21 14:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:25:18.852+03	2021-05-21 14:25:18.859+03	
db8fb3d3-32d1-f758-cc49-02cf310d8402	2021-05-21 14:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:25:38.853+03	2021-05-21 14:25:38.861+03	
8b8f1bc4-2781-832d-111e-083ff4824755	2021-05-21 14:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:25:59.853+03	2021-05-21 14:25:59.861+03	
10a3b60a-601f-acad-e75f-ba520e802921	2021-05-21 14:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:26:20.853+03	2021-05-21 14:26:20.868+03	
50d0aa5c-1985-4ddd-3195-dc78bc297dae	2021-05-21 14:26:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:26:41.854+03	2021-05-21 14:26:41.86+03	
b746eab9-d789-fde8-1ec0-002d6badb1d6	2021-05-21 14:27:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:27:01.854+03	2021-05-21 14:27:01.865+03	
ff091319-ffca-9bcc-7b29-6a2498203527	2021-05-21 14:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:27:22.853+03	2021-05-21 14:27:22.859+03	
e9b06696-ca92-f428-0859-0748f97f869a	2021-05-21 14:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:27:42.853+03	2021-05-21 14:27:42.86+03	
876c5b87-ddc3-38a3-53e0-0ed0875a3dc6	2021-05-21 14:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:28:03.852+03	2021-05-21 14:28:03.858+03	
b8ccf2cd-9e21-62d2-1bbb-af8f68486568	2021-05-21 14:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:28:23.853+03	2021-05-21 14:28:23.859+03	
40e71716-7cc8-bb41-a769-43766d5bde70	2021-05-21 14:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:28:43.853+03	2021-05-21 14:28:43.872+03	
8642ba53-e355-527f-5928-9d48df266195	2021-05-21 14:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:29:04.853+03	2021-05-21 14:29:04.86+03	
06e130eb-34f2-acc7-2840-9c2d550532cc	2021-05-21 14:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:29:25.852+03	2021-05-21 14:29:25.858+03	
c97f42f1-8489-ca97-c035-3e1313c4d219	2021-05-21 14:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:29:45.853+03	2021-05-21 14:29:45.861+03	
37363ecb-a3f7-7dc3-f5a9-636a8e19e9d9	2021-05-21 14:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 14:30:00.852+03	2021-05-21 14:30:00.859+03	ERROR
92cc35c5-8895-a3a0-d715-cdbe75703283	2021-05-21 14:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:30:16.853+03	2021-05-21 14:30:16.859+03	
0b92e296-6fa2-c813-9af3-651a968be8bd	2021-05-21 14:30:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:30:36.853+03	2021-05-21 14:30:36.859+03	
ee9931c2-ea75-1ff2-c693-e08f1efab54d	2021-05-21 14:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:30:57.853+03	2021-05-21 14:30:57.859+03	
3c2c52cc-ccb7-6ecb-da08-731ef212dbfb	2021-05-21 14:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:31:18.853+03	2021-05-21 14:31:18.86+03	
b5ca281c-2498-f448-d61e-3bc076a07796	2021-05-21 14:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:31:39.853+03	2021-05-21 14:31:39.86+03	
20a8ec8b-df90-8790-96ec-8b068e36aef6	2021-05-21 14:32:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:32:01.852+03	2021-05-21 14:32:01.859+03	
10e92ac4-7af5-07f9-40b7-846545759e70	2021-05-21 14:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:32:22.852+03	2021-05-21 14:32:22.861+03	
3516594d-e050-39e9-1677-482e5176b8cf	2021-05-21 14:32:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:32:42.853+03	2021-05-21 14:32:42.86+03	
83e8c53f-057d-e6aa-3812-744d4880b580	2021-05-21 14:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:33:03.853+03	2021-05-21 14:33:03.859+03	
39a25736-bc57-24e3-1ddc-596a58a8e2fb	2021-05-21 14:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:33:23.853+03	2021-05-21 14:33:23.861+03	
47826bec-1ed3-57f0-f025-026121446374	2021-05-21 14:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:33:43.853+03	2021-05-21 14:33:43.86+03	
b01eb7e6-de7b-59f0-d80d-0c515518a6d8	2021-05-21 14:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:34:04.852+03	2021-05-21 14:34:04.861+03	
63b1546b-2118-0071-4acb-4fdd79b90b64	2021-05-21 14:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:34:24.853+03	2021-05-21 14:34:24.859+03	
94ab20cd-6b07-7298-adf4-ce84b6a62b6a	2021-05-21 14:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:34:45.853+03	2021-05-21 14:34:45.859+03	
79d94544-b427-78bf-ab1f-e6850b212112	2021-05-21 14:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:35:05.853+03	2021-05-21 14:35:05.86+03	
13043dc1-c414-917d-67f3-4921ac090e09	2021-05-21 14:35:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:35:16.852+03	2021-05-21 14:35:16.859+03	
63a3d4e0-2018-ba4a-6de6-9cf5a2047066	2021-05-21 14:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:35:37.853+03	2021-05-21 14:35:37.859+03	
6a8d99ab-82aa-8ce3-7857-a603918f1b25	2021-05-21 14:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:35:58.853+03	2021-05-21 14:35:58.872+03	
6bf9055d-fdf5-b711-eb83-fb50f35a016a	2021-05-21 14:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:36:19.853+03	2021-05-21 14:36:19.871+03	
d0bbf79a-4ff7-158a-5302-f2daca7ad7d4	2021-05-21 14:36:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:36:39.853+03	2021-05-21 14:36:39.862+03	
fb227e84-d04d-388a-9b04-ac9390fd7c01	2021-05-21 14:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:36:59.853+03	2021-05-21 14:36:59.859+03	
2e4231c3-46b1-a5fd-478f-31ea4e2df4ea	2021-05-21 14:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:37:19.853+03	2021-05-21 14:37:19.87+03	
f59a5825-910b-eee3-e68c-10611741752d	2021-05-21 14:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:37:39.853+03	2021-05-21 14:37:39.859+03	
1a04b664-83f9-45df-6927-061c5b58b98b	2021-05-21 14:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:38:00.852+03	2021-05-21 14:38:00.859+03	
f542ac54-8b3a-df44-e72f-d1c433630f8f	2021-05-21 14:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:38:20.853+03	2021-05-21 14:38:20.872+03	
e8e338ab-b9df-1d9b-434d-17c586615e47	2021-05-21 14:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:38:40.853+03	2021-05-21 14:38:40.866+03	
899553fd-1323-cd89-5446-f23b9bf2fe46	2021-05-21 14:39:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:39:01.854+03	2021-05-21 14:39:01.871+03	
85899947-e727-3a52-27ed-94a5da60f731	2021-05-21 14:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:39:23.852+03	2021-05-21 14:39:23.86+03	
f935f620-55aa-984b-2642-3afd1483feed	2021-05-21 14:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:39:43.853+03	2021-05-21 14:39:43.873+03	
60f05d78-5c5e-4220-7efd-ff6c84affe3a	2021-05-21 14:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 14:40:00.852+03	2021-05-21 14:40:00.858+03	ERROR
105273ec-1c38-83db-fc07-692ff3312718	2021-05-21 14:40:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:40:14.853+03	2021-05-21 14:40:14.87+03	
9438e527-7cff-ba7b-d9ff-04c9033e190c	2021-05-21 14:40:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:40:34.853+03	2021-05-21 14:40:34.868+03	
0925c7c6-a0ed-5564-1d87-48eaad93921f	2021-05-21 14:40:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:40:55.853+03	2021-05-21 14:40:55.861+03	
55bce220-4b2c-3fd1-55f1-a793767924ba	2021-05-21 14:41:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:41:16.853+03	2021-05-21 14:41:16.859+03	
c48fe909-b30e-54f7-7a66-4943a1b56a45	2021-05-21 14:41:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:41:36.853+03	2021-05-21 14:41:36.859+03	
676015a5-67d4-9131-1fe0-08a305dcd80d	2021-05-21 14:41:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:41:56.854+03	2021-05-21 14:41:56.873+03	
dddcdff7-5249-ca17-5572-48abcc85f089	2021-05-21 14:42:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:42:17.853+03	2021-05-21 14:42:17.859+03	
4de82278-d75a-aea7-0d34-577636af2935	2021-05-21 14:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:42:38.852+03	2021-05-21 14:42:38.859+03	
252db342-59f9-b03d-02a5-efa4a51ae497	2021-05-21 14:42:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:42:58.852+03	2021-05-21 14:42:58.861+03	
4a194f47-cd54-4166-009e-7d23b41268f8	2021-05-21 14:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:43:19.853+03	2021-05-21 14:43:19.859+03	
89ffb9a3-e6fe-2641-4543-b0e480ff6f08	2021-05-21 14:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:43:40.853+03	2021-05-21 14:43:40.859+03	
89189db5-8412-d73d-dcb0-bd075180e793	2021-05-21 14:44:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:44:01.852+03	2021-05-21 14:44:01.874+03	
0fbdf4d7-cc1b-8891-70e9-62c79c638915	2021-05-21 14:44:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:44:21.853+03	2021-05-21 14:44:21.859+03	
8917be42-e976-65e4-6310-701fe742ca37	2021-05-21 14:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:44:42.853+03	2021-05-21 14:44:42.86+03	
b93e57ec-173d-8afc-3acc-b30381c3677a	2021-05-21 14:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:45:03.852+03	2021-05-21 14:45:03.86+03	
f61b9004-1e25-8990-bc75-501e47df852f	2021-05-21 14:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:45:23.853+03	2021-05-21 14:45:23.861+03	
52edc314-57ca-d389-768f-8a794fcf1e24	2021-05-21 14:45:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:45:44.853+03	2021-05-21 14:45:44.859+03	
a51fae7e-3460-fbe1-f213-0bcebd3ba98f	2021-05-21 14:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:46:05.853+03	2021-05-21 14:46:05.86+03	
23fd4f01-423e-c936-a7c5-a155d45c58f7	2021-05-21 14:46:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:46:26.853+03	2021-05-21 14:46:26.86+03	
5ccbc6d1-b33d-9c79-b573-e3dd15d717e8	2021-05-21 14:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:46:47.853+03	2021-05-21 14:46:47.859+03	
2721c7fc-fd43-6a3f-a67d-f29052d8b4ce	2021-05-21 14:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:47:08.852+03	2021-05-21 14:47:08.861+03	
152c085e-2cad-9416-25ba-a1fe95c102e6	2021-05-21 14:47:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:47:29.853+03	2021-05-21 14:47:29.861+03	
5b85c43d-ded1-34d6-be48-f9cc139d93a1	2021-05-21 14:47:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:47:49.853+03	2021-05-21 14:47:49.859+03	
6aa272a8-271b-89c3-a26a-70e551b748af	2021-05-21 14:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:48:09.853+03	2021-05-21 14:48:09.86+03	
398ca5cf-ecfb-14eb-70b9-8f8f4897048c	2021-05-21 14:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:48:30.853+03	2021-05-21 14:48:30.86+03	
13f8377a-08aa-12b1-3b71-879d09f2a544	2021-05-21 14:48:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:48:51.853+03	2021-05-21 14:48:51.859+03	
e7e3b3c0-1385-710f-3fe4-9d359d490c6f	2021-05-21 14:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:49:12.853+03	2021-05-21 14:49:12.861+03	
58498049-38ba-22a9-f39f-1f9d34a6c8e9	2021-05-21 14:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:49:32.853+03	2021-05-21 14:49:32.861+03	
172aeec5-5065-0d1f-7eb9-7168157cde6e	2021-05-21 14:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:49:52.853+03	2021-05-21 14:49:52.866+03	
ea166db6-64d5-77e0-64a4-ce81286a74b0	2021-05-21 14:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:50:03.852+03	2021-05-21 14:50:03.868+03	
53a556c6-dfbe-ed5d-c835-ea3177331e5a	2021-05-21 14:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:50:24.852+03	2021-05-21 14:50:24.865+03	
39ac4ac6-2b7d-8529-e36f-d5f71fce61a8	2021-05-21 14:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:50:44.853+03	2021-05-21 14:50:44.861+03	
8d1eecaf-587b-2036-f78e-90d4e425947c	2021-05-21 14:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:51:04.853+03	2021-05-21 14:51:04.859+03	
7c0a6ccc-9a49-0e81-95e0-5469e3f4d8db	2021-05-21 14:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:51:24.853+03	2021-05-21 14:51:24.861+03	
5c544c85-62ad-e954-7a36-1d72c1ef8ef9	2021-05-21 14:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:51:44.853+03	2021-05-21 14:51:44.861+03	
663aad97-0c51-6de4-879a-76f27586c041	2021-05-21 14:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:52:04.853+03	2021-05-21 14:52:04.87+03	
5770f932-fecd-85cc-1881-b1880058dc9e	2021-05-21 14:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:52:25.852+03	2021-05-21 14:52:25.86+03	
1953a2ff-03e6-def5-415b-1fa938435c73	2021-05-21 14:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:52:45.853+03	2021-05-21 14:52:45.87+03	
53c68af4-5861-eaa6-7f98-fc9fe4bc5ac5	2021-05-21 14:53:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:53:06.852+03	2021-05-21 14:53:06.874+03	
5aaed558-231a-01fa-afe4-72def3c24d07	2021-05-21 14:53:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:53:26.853+03	2021-05-21 14:53:26.873+03	
4ec856d2-0318-5731-c37b-3248a05e3c68	2021-05-21 14:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:53:47.853+03	2021-05-21 14:53:47.859+03	
3acba2a0-eab2-9d6b-18cd-39476ba524f2	2021-05-21 14:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:54:08.852+03	2021-05-21 14:54:08.859+03	
004b890f-6fc7-a825-78c1-0625a5c5fba1	2021-05-21 14:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:54:28.852+03	2021-05-21 14:54:28.861+03	
e3c2fd57-50bd-bfc9-a942-f39c659e4e1f	2021-05-21 14:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:54:48.852+03	2021-05-21 14:54:48.86+03	
96ad4275-b5f1-437e-305f-cf602415fcda	2021-05-21 14:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:55:08.853+03	2021-05-21 14:55:08.86+03	
4a3b9e8f-a596-b8d7-2b17-b002ded3c4b2	2021-05-21 14:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:55:28.853+03	2021-05-21 14:55:28.859+03	
cfb38fb4-e848-8526-e31e-426dda3b1ade	2021-05-21 14:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:55:48.853+03	2021-05-21 14:55:48.859+03	
56579e3a-b42b-3094-5a7d-556976ad4655	2021-05-21 14:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:56:08.853+03	2021-05-21 14:56:08.86+03	
8199f836-fee0-c944-3f67-8e231121217b	2021-05-21 14:35:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:35:26.854+03	2021-05-21 14:35:26.861+03	
59efa3d1-be20-dbf8-730b-e20c31c2f11c	2021-05-21 14:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:35:48.853+03	2021-05-21 14:35:48.86+03	
61ca2f73-e038-7e43-dca5-e58cbb8bafe2	2021-05-21 14:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:36:09.853+03	2021-05-21 14:36:09.862+03	
8492cdac-1d96-86bb-7f9d-fe9132c2ff94	2021-05-21 14:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:36:29.853+03	2021-05-21 14:36:29.86+03	
2311fbd5-4ab6-41d4-6b62-a87fa5971c14	2021-05-21 14:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:36:49.853+03	2021-05-21 14:36:49.861+03	
19b0457f-b9f3-bf82-7b73-8e0346d907fe	2021-05-21 14:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:37:09.853+03	2021-05-21 14:37:09.862+03	
ff9bb1f9-a4ca-b7f4-46b4-ea0d214e2ac9	2021-05-21 14:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:37:29.853+03	2021-05-21 14:37:29.86+03	
180f26c0-01f3-4a8b-e82f-05869899e7d0	2021-05-21 14:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:37:49.853+03	2021-05-21 14:37:49.859+03	
5f680eb9-22b9-934a-2f8e-cd02ddf2fecf	2021-05-21 14:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:38:10.852+03	2021-05-21 14:38:10.86+03	
9379ff04-4d9f-2743-e736-02abb3162373	2021-05-21 14:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:38:30.853+03	2021-05-21 14:38:30.86+03	
7a655887-fcdc-baa2-4cd1-40f1c241a638	2021-05-21 14:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:38:50.853+03	2021-05-21 14:38:50.859+03	
27786c7e-bbde-9f02-4bd0-1a1bdd528a2c	2021-05-21 14:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:39:12.853+03	2021-05-21 14:39:12.859+03	
46a42210-fa58-e22e-a424-46b2919c1c70	2021-05-21 14:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:39:33.852+03	2021-05-21 14:39:33.868+03	
c816cc3b-3810-9199-ff68-96f269e125e9	2021-05-21 14:39:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:39:54.852+03	2021-05-21 14:39:54.859+03	
694f134b-b811-7a92-feab-7a9722ae9c23	2021-05-21 14:40:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:40:04.853+03	2021-05-21 14:40:04.875+03	
bd4aa247-ae85-24bf-580b-d880013ad72b	2021-05-21 14:40:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:40:24.853+03	2021-05-21 14:40:24.861+03	
38b507a2-9be8-da78-229f-bbf9f3edb354	2021-05-21 14:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:40:44.853+03	2021-05-21 14:40:44.885+03	
3fefa7dd-9211-d5d8-594b-1c2f14de670b	2021-05-21 14:41:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:41:05.853+03	2021-05-21 14:41:05.859+03	
07225749-e5d5-3539-4702-eba10d1621c7	2021-05-21 14:41:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:41:26.853+03	2021-05-21 14:41:26.861+03	
6aaabdba-dd36-a5b2-0748-d03417268056	2021-05-21 14:41:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:41:46.853+03	2021-05-21 14:41:46.859+03	
12de494d-b224-f485-8dd3-4b789938e0c9	2021-05-21 14:42:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:42:06.854+03	2021-05-21 14:42:06.861+03	
9effe4ed-e1dc-f713-0bbd-9d3c05b0d7cc	2021-05-21 14:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:42:28.852+03	2021-05-21 14:42:28.858+03	
2f6c586a-5c1e-41f3-6d5d-67b5e44617a8	2021-05-21 14:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:42:48.852+03	2021-05-21 14:42:48.859+03	
ec41920f-1ee6-5964-e3e7-cc1e72d74d18	2021-05-21 14:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:43:08.853+03	2021-05-21 14:43:08.868+03	
19dd8238-4a86-943b-217e-9a3911e99763	2021-05-21 14:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:43:30.852+03	2021-05-21 14:43:30.861+03	
00d0d824-3816-974a-3525-af322266195b	2021-05-21 14:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:43:50.853+03	2021-05-21 14:43:50.86+03	
c1e6019b-33e0-9bf5-f87a-15c26ef6bb2e	2021-05-21 14:44:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:44:11.852+03	2021-05-21 14:44:11.859+03	
ff422e71-53d4-f4c1-c83c-a527e0104aab	2021-05-21 14:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:44:31.853+03	2021-05-21 14:44:31.859+03	
b213fe6e-ce87-dc08-a0fd-ee781baef9a3	2021-05-21 14:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:44:53.852+03	2021-05-21 14:44:53.869+03	
b3eb65d0-204b-f0b1-caf7-2d4e84116eb4	2021-05-21 14:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:45:13.853+03	2021-05-21 14:45:13.861+03	
5b148d6b-4f6e-b687-6dcd-a735e9ba342e	2021-05-21 14:45:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:45:34.853+03	2021-05-21 14:45:34.859+03	
212c3f7d-7ca1-3a6e-847d-0b7ecccbf6d4	2021-05-21 14:45:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:45:54.853+03	2021-05-21 14:45:54.873+03	
5adb2c2e-a848-b807-803c-a76f4dc7d132	2021-05-21 14:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:46:15.853+03	2021-05-21 14:46:15.859+03	
a61fa472-2ede-a647-e1ff-e4f67f1295d6	2021-05-21 14:46:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:46:36.853+03	2021-05-21 14:46:36.86+03	
01b77561-756a-2a75-61c3-e993f927035c	2021-05-21 14:46:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:46:57.853+03	2021-05-21 14:46:57.861+03	
ca3e982f-75b4-3b62-ed7c-83fca6d511c0	2021-05-21 14:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:47:18.853+03	2021-05-21 14:47:18.878+03	
22093c9e-a52b-49c7-a49c-b89b00d92aaa	2021-05-21 14:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:47:39.853+03	2021-05-21 14:47:39.86+03	
e7100e16-01c4-2a9a-dd8e-f9bd2f0b5ef3	2021-05-21 14:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:47:59.853+03	2021-05-21 14:47:59.86+03	
141fb45e-0d9a-8333-b8b9-8b0897403bad	2021-05-21 14:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:48:19.853+03	2021-05-21 14:48:19.861+03	
8969e730-bb5c-d147-cd8e-a6e83fea8b49	2021-05-21 14:48:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:48:41.852+03	2021-05-21 14:48:41.859+03	
d5a5e28e-904b-0cf0-1797-a7ab46fdd385	2021-05-21 14:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:49:02.852+03	2021-05-21 14:49:02.87+03	
df9d5b7a-ab0c-b97c-5f82-699a5ef8b6dd	2021-05-21 14:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:49:22.853+03	2021-05-21 14:49:22.873+03	
684614bc-ae07-ff0e-ec9c-a103e59cbe46	2021-05-21 14:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:49:42.853+03	2021-05-21 14:49:42.865+03	
a4a00314-306a-7caf-dfb3-6504b03f67ab	2021-05-21 14:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 14:50:00.852+03	2021-05-21 14:50:00.857+03	ERROR
32e4abdc-605c-547b-0f3b-479cb3f6d79b	2021-05-21 14:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:50:13.853+03	2021-05-21 14:50:13.864+03	
28425c7a-17ea-7257-ee81-40bd95870dad	2021-05-21 14:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:50:34.853+03	2021-05-21 14:50:34.86+03	
e81a756e-2b71-ba4a-1cc1-f2caaf94592a	2021-05-21 14:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:50:54.853+03	2021-05-21 14:50:54.86+03	
616107e9-0c7b-ff9f-f3f7-3572a6a9ed67	2021-05-21 14:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:51:14.853+03	2021-05-21 14:51:14.859+03	
e96f8c4c-54cd-6574-2b41-3ebf9774e002	2021-05-21 14:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:51:34.853+03	2021-05-21 14:51:34.861+03	
77b271c8-080c-05d9-9c14-6e3de41d376a	2021-05-21 14:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:51:54.853+03	2021-05-21 14:51:54.862+03	
d37e0753-544f-f5bd-e18e-47ceb4817655	2021-05-21 14:52:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:52:14.853+03	2021-05-21 14:52:14.862+03	
2b32926f-bff2-2b92-0693-1628bffa8a69	2021-05-21 14:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:52:35.853+03	2021-05-21 14:52:35.986+03	
c5a584b8-2d22-95db-1b1a-1150fb3086c6	2021-05-21 14:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:52:55.853+03	2021-05-21 14:52:55.864+03	
911bbdeb-a589-f73e-2c0d-b89c4daed363	2021-05-21 14:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:53:16.852+03	2021-05-21 14:53:16.874+03	
30b2313a-b9f9-ec15-67fc-4ea237a7aec3	2021-05-21 14:53:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:53:36.855+03	2021-05-21 14:53:36.864+03	
d915d416-e039-851d-ff2a-5bcc8c5ab1ec	2021-05-21 14:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:53:58.852+03	2021-05-21 14:53:58.861+03	
5d155c8e-b4d8-7457-c5e5-a1105b81ea15	2021-05-21 14:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:54:18.852+03	2021-05-21 14:54:18.859+03	
f6355cbc-d292-9d4d-7b41-ab4962248f07	2021-05-21 14:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:54:38.852+03	2021-05-21 14:54:38.859+03	
72c644ef-3ead-de59-7dc7-ed2bb5df0419	2021-05-21 14:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:54:58.853+03	2021-05-21 14:54:58.86+03	
aae7ec22-f8fc-ff02-df76-63e65c70081d	2021-05-21 14:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:55:18.853+03	2021-05-21 14:55:18.859+03	
abeb7ea4-a00f-bd69-477c-14f941fe2c63	2021-05-21 14:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:55:38.853+03	2021-05-21 14:55:38.86+03	
35a39f3d-2da6-f4a1-fa67-76c4cfdae7d5	2021-05-21 14:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:55:58.853+03	2021-05-21 14:55:58.862+03	
d660e2d5-f7df-42f5-cace-b191a1c06866	2021-05-21 14:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:56:18.853+03	2021-05-21 14:56:18.87+03	
cda0903c-d862-2128-b892-466612980f04	2021-05-21 14:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:56:28.853+03	2021-05-21 14:56:28.86+03	
c91ed456-7a8e-2532-f7bf-80ac2eb85240	2021-05-21 14:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:56:49.852+03	2021-05-21 14:56:49.858+03	
6d4daee3-0a2c-dbeb-be0c-852369ba1296	2021-05-21 14:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:57:09.853+03	2021-05-21 14:57:09.859+03	
82008681-585b-f1f7-4d67-04914b7aab27	2021-05-21 14:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:57:30.853+03	2021-05-21 14:57:30.859+03	
0e744849-b819-0df2-6938-0380d94552d7	2021-05-21 14:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:57:50.853+03	2021-05-21 14:57:50.862+03	
77fc170b-6073-1d12-3e56-358c78debe70	2021-05-21 14:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:58:10.853+03	2021-05-21 14:58:10.859+03	
a650fdbc-a54a-40fe-a6ad-41866ca9e395	2021-05-21 14:58:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:58:31.853+03	2021-05-21 14:58:31.86+03	
7913aa44-960e-1bab-caa6-614d77047d15	2021-05-21 14:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:58:52.852+03	2021-05-21 14:58:52.858+03	
7da39c83-518c-f0a1-d5a3-db7c44fa730f	2021-05-21 14:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:59:13.853+03	2021-05-21 14:59:13.877+03	
62d3ee48-5332-e1b0-6588-775a9d7bee92	2021-05-21 14:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:59:33.853+03	2021-05-21 14:59:33.869+03	
f02e9a00-de41-258d-ec11-e1c3d8751cfc	2021-05-21 14:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:59:54.852+03	2021-05-21 14:59:54.86+03	
e7a15a86-b623-a2ef-319b-23f12160c6a1	2021-05-21 15:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:00:04.853+03	2021-05-21 15:00:04.869+03	
d4ac3175-a646-f500-900f-322819f0e4f4	2021-05-21 15:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:00:25.853+03	2021-05-21 15:00:25.871+03	
a7d9295d-22d9-a471-4351-e0585f16393f	2021-05-21 15:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:00:45.853+03	2021-05-21 15:00:45.873+03	
42e50bee-4b7f-704a-7f08-972b490aa614	2021-05-21 15:01:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:01:06.853+03	2021-05-21 15:01:06.869+03	
dd62f9be-9804-ee5a-06a1-b20282837c03	2021-05-21 15:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:01:27.853+03	2021-05-21 15:01:27.86+03	
4fdcaadf-ab65-73ca-48ed-1cccceaff5f4	2021-05-21 15:01:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:01:47.853+03	2021-05-21 15:01:47.86+03	
6ba73e16-47ae-5e48-443c-568880bebb98	2021-05-21 15:02:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:02:07.853+03	2021-05-21 15:02:07.859+03	
4278770a-6483-ada3-2534-53800d8ab2fa	2021-05-21 15:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:02:27.853+03	2021-05-21 15:02:27.867+03	
eb1d456a-c550-25a1-8c3a-fdcfad997d44	2021-05-21 15:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:02:48.852+03	2021-05-21 15:02:48.86+03	
d29fe28b-e74b-4c06-5e94-dff013628e4f	2021-05-21 15:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:03:08.853+03	2021-05-21 15:03:08.86+03	
4d014527-d9bf-ffdd-b827-4c533223121a	2021-05-21 15:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:03:29.853+03	2021-05-21 15:03:29.86+03	
3bcf78f6-239e-0ebf-e82e-65e09e6b6209	2021-05-21 15:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:03:50.853+03	2021-05-21 15:03:50.86+03	
1741c133-f85c-708d-29d7-eda6a019330c	2021-05-21 15:04:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:04:11.852+03	2021-05-21 15:04:11.858+03	
d0d80b3b-1679-f973-385c-7b3d796aeb5a	2021-05-21 15:04:31.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:04:31.86+03	2021-05-21 15:04:31.867+03	
ce23732f-ec6f-afa7-2cac-8c5647fd0e5c	2021-05-21 15:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:04:52.853+03	2021-05-21 15:04:52.859+03	
87b13dae-bc1c-be64-c638-261dac3e3187	2021-05-21 15:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:05:13.852+03	2021-05-21 15:05:13.859+03	
f64e918b-dbf9-8dc0-d3e2-370fd02320e9	2021-05-21 15:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:05:33.852+03	2021-05-21 15:05:33.954+03	
af22b782-cad9-ac4f-1c74-5e4943973ff2	2021-05-21 15:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:05:53.853+03	2021-05-21 15:05:53.864+03	
e5355476-0a02-fc3b-c4e9-42a16498556c	2021-05-21 15:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:06:13.853+03	2021-05-21 15:06:13.869+03	
3ff3d6c5-f8ca-7426-1120-19cec71e8cc7	2021-05-21 15:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:06:34.853+03	2021-05-21 15:06:34.958+03	
85dc9ea6-9c08-94bb-7471-64a5c3ca2f6e	2021-05-21 15:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:06:54.853+03	2021-05-21 15:06:54.868+03	
132d0d2e-96db-d1f2-478d-ed93aa730b2a	2021-05-21 15:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:07:15.853+03	2021-05-21 15:07:15.859+03	
eb0bbb98-079e-7403-e94e-7cc8013b61b1	2021-05-21 15:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:07:35.853+03	2021-05-21 15:07:35.859+03	
00e91483-33d4-6dc6-173f-e5a780b5e12d	2021-05-21 15:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:07:55.853+03	2021-05-21 15:07:55.861+03	
c16dffef-267f-8c06-ccd9-a7dc9fd13f2c	2021-05-21 15:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:08:15.853+03	2021-05-21 15:08:15.86+03	
a4832348-adec-4928-4139-b6d09e0327e2	2021-05-21 15:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:08:35.853+03	2021-05-21 15:08:35.859+03	
2e0015db-f6a6-569f-ae6f-3ef13d8a42d7	2021-05-21 15:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:08:56.852+03	2021-05-21 15:08:56.859+03	
e14334e3-7915-247a-0cb9-90860c5e7c4c	2021-05-21 15:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:09:17.853+03	2021-05-21 15:09:17.861+03	
696a02db-def6-ec82-ef34-7ec6bad2b4bf	2021-05-21 15:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:09:38.853+03	2021-05-21 15:09:38.86+03	
28d8ea2a-5886-63ba-95f7-dd40866a5df9	2021-05-21 15:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:09:59.853+03	2021-05-21 15:09:59.859+03	
54c66bda-c117-558c-729e-50b8fecf96b4	2021-05-21 15:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:10:10.852+03	2021-05-21 15:10:10.859+03	
3844dc5f-88e0-a078-4e21-24c0f20bd18f	2021-05-21 15:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:10:30.853+03	2021-05-21 15:10:30.859+03	
47a9738d-aef2-21c8-3f60-69a7204177d3	2021-05-21 15:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:10:50.853+03	2021-05-21 15:10:50.86+03	
4c58bec0-16c0-11ba-beca-87b0c008e024	2021-05-21 15:11:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:11:11.852+03	2021-05-21 15:11:11.873+03	
08f74188-7fb2-4b60-eb4f-b061c037975f	2021-05-21 15:11:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:11:31.853+03	2021-05-21 15:11:31.859+03	
d10e325d-1ccc-32e2-6294-e7ef21c2f814	2021-05-21 15:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:11:53.852+03	2021-05-21 15:11:53.859+03	
2e9bb3bc-a48a-7823-e4e4-3591bdf3ebd5	2021-05-21 15:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:12:13.853+03	2021-05-21 15:12:13.86+03	
40501aa4-9d12-0be8-3c5a-438ea246e2b0	2021-05-21 15:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:12:33.853+03	2021-05-21 15:12:33.86+03	
37912794-8124-f61d-8b43-9e8b3dcb4687	2021-05-21 15:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:12:54.853+03	2021-05-21 15:12:54.86+03	
2e85ee3a-d3c4-a614-dd66-7c335caccbaf	2021-05-21 15:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:13:15.852+03	2021-05-21 15:13:15.875+03	
1db21d44-9143-88fd-ce63-aed58cdd3a37	2021-05-21 15:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:13:35.852+03	2021-05-21 15:13:35.866+03	
c78363d1-6a46-6c0e-7f96-4b967083ed00	2021-05-21 15:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:13:55.853+03	2021-05-21 15:13:55.861+03	
1c36c564-7fa2-8830-8ece-463a6a5891d5	2021-05-21 15:14:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:14:16.852+03	2021-05-21 15:14:16.861+03	
fbe398ca-e668-7475-0781-0da9e5e64d47	2021-05-21 15:14:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:14:36.854+03	2021-05-21 15:14:36.86+03	
e82d9a07-07bd-c78a-6327-9a17f4b8fd96	2021-05-21 15:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:14:57.852+03	2021-05-21 15:14:57.891+03	
350796d9-a7b7-7857-2567-96fc351f8913	2021-05-21 15:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:15:17.853+03	2021-05-21 15:15:17.86+03	
7ea17bcc-fd58-43bc-9d8f-2e47fbd5fe96	2021-05-21 15:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:15:38.853+03	2021-05-21 15:15:38.861+03	
d86e6761-022e-df60-c11f-b1fea744d9e2	2021-05-21 15:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:15:58.853+03	2021-05-21 15:15:58.86+03	
6c2607e9-e2ec-2357-a3f3-3e7eb828881c	2021-05-21 15:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:16:18.853+03	2021-05-21 15:16:18.859+03	
b44f9cfd-bd83-426e-6caa-6c23b516e0d1	2021-05-21 15:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:16:38.853+03	2021-05-21 15:16:38.86+03	
c84424e8-4c57-c1f5-c359-f7ae7ac7d842	2021-05-21 15:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:16:58.853+03	2021-05-21 15:16:58.86+03	
20c01982-7ea2-eec2-4a9c-c5843f0866d6	2021-05-21 15:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:17:19.853+03	2021-05-21 15:17:19.86+03	
e55349e1-9a8a-9524-3239-6ca2d29c9449	2021-05-21 14:56:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:56:38.853+03	2021-05-21 14:56:38.859+03	
ac5c9177-a960-cdd7-5397-c8628e16a30d	2021-05-21 14:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:56:59.853+03	2021-05-21 14:56:59.859+03	
e575e815-e9d6-545e-983a-34682c2281e8	2021-05-21 14:57:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:57:19.853+03	2021-05-21 14:57:19.865+03	
63f8d742-7cfa-4c35-ee9c-89ee016e6531	2021-05-21 14:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:57:40.853+03	2021-05-21 14:57:40.861+03	
0ef8af38-999c-b3dc-2e7b-232f9a02437f	2021-05-21 14:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:58:00.853+03	2021-05-21 14:58:00.859+03	
5b8815ac-a6d6-e648-16bd-269abaf1ef66	2021-05-21 14:58:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:58:21.852+03	2021-05-21 14:58:21.859+03	
956592e3-d752-91b0-856b-5204bc37c6b2	2021-05-21 14:58:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:58:41.854+03	2021-05-21 14:58:41.862+03	
1f71547d-f765-d08d-bbd2-8c59713f7236	2021-05-21 14:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:59:02.853+03	2021-05-21 14:59:02.861+03	
a8a7e682-9e9d-c362-fc9e-3a5146e348fa	2021-05-21 14:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:59:23.853+03	2021-05-21 14:59:23.869+03	
1641aa3c-c2a3-7e1a-5d85-19382561fbab	2021-05-21 14:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 14:59:44.852+03	2021-05-21 14:59:44.859+03	
987096d0-31b1-0129-a550-51fb0f30120b	2021-05-21 15:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 15:00:00.853+03	2021-05-21 15:00:00.861+03	ERROR
297dd0f2-abdf-4de8-6e55-65e79e4b071f	2021-05-21 15:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:00:15.853+03	2021-05-21 15:00:15.859+03	
6f0374ca-b286-b5dd-de79-1279adec9bee	2021-05-21 15:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:00:35.853+03	2021-05-21 15:00:35.869+03	
0b5553a7-eb45-a88e-4864-b17425f6d608	2021-05-21 15:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:00:55.853+03	2021-05-21 15:00:55.859+03	
cadf6d97-1968-5e44-d6ce-08719193918f	2021-05-21 15:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:01:17.853+03	2021-05-21 15:01:17.861+03	
4da7774a-8f39-c81a-efe3-c05e36bf7243	2021-05-21 15:01:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:01:37.853+03	2021-05-21 15:01:37.861+03	
3068fcf7-6aaf-ad28-c64f-7f4b269ff5af	2021-05-21 15:01:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:01:57.853+03	2021-05-21 15:01:57.86+03	
1d25dd16-7a5f-a6e6-92b0-9633d7d9e797	2021-05-21 15:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:02:17.853+03	2021-05-21 15:02:17.861+03	
cfd1ff44-6832-cc6c-50b2-39377742f3a1	2021-05-21 15:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:02:37.853+03	2021-05-21 15:02:37.859+03	
059a9b6d-536f-a743-fe51-4e48c0fe5d54	2021-05-21 15:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:02:58.853+03	2021-05-21 15:02:58.86+03	
c0325182-ff0e-917d-cb52-df86a4bc5a3d	2021-05-21 15:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:03:18.853+03	2021-05-21 15:03:18.872+03	
ff7327ee-5b6d-1f79-a6ca-d0ec1e824b0b	2021-05-21 15:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:03:40.852+03	2021-05-21 15:03:40.859+03	
bbf0d280-6598-f933-38c8-af359c11ae8a	2021-05-21 15:04:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:04:01.852+03	2021-05-21 15:04:01.86+03	
419f97fe-d0c2-5f92-5a17-3d55cc37742e	2021-05-21 15:04:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:04:21.853+03	2021-05-21 15:04:21.872+03	
bd78077b-df54-237b-9449-6f048dc2f88d	2021-05-21 15:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:04:42.853+03	2021-05-21 15:04:42.86+03	
aafe3a08-54d7-6b2f-b20d-6b4875dc8b91	2021-05-21 15:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:05:03.852+03	2021-05-21 15:05:03.871+03	
8c20825c-5e34-1a0a-88da-12c9d440cd74	2021-05-21 15:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:05:23.852+03	2021-05-21 15:05:23.859+03	
aee1909e-cc65-590a-1795-e42ad659fb83	2021-05-21 15:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:05:43.853+03	2021-05-21 15:05:43.869+03	
ea8f551a-fbed-e9cc-cf60-3448b613316a	2021-05-21 15:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:06:03.853+03	2021-05-21 15:06:03.859+03	
9d411623-c882-a33c-a2bd-93b3c021828b	2021-05-21 15:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:06:23.853+03	2021-05-21 15:06:23.873+03	
a1e2d79f-3bb1-c3ee-eff7-db9bb13d18c6	2021-05-21 15:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:06:44.853+03	2021-05-21 15:06:44.868+03	
180bf7c1-ff80-1cde-9f0b-00ee9a8864de	2021-05-21 15:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:07:05.853+03	2021-05-21 15:07:05.859+03	
632bc6ff-827f-71ac-4a78-bc55a386a834	2021-05-21 15:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:07:25.853+03	2021-05-21 15:07:25.859+03	
a75472eb-05a4-679e-5207-511466373458	2021-05-21 15:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:07:45.853+03	2021-05-21 15:07:45.86+03	
4f9a5b36-94b1-db85-07b8-bf5285d9a190	2021-05-21 15:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:08:05.853+03	2021-05-21 15:08:05.86+03	
c7320fb8-0b1d-b0ab-aa51-3caba6e5ac2f	2021-05-21 15:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:08:25.853+03	2021-05-21 15:08:25.862+03	
d78b8749-9cc6-6910-5df1-52bc7744a4c4	2021-05-21 15:08:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:08:46.852+03	2021-05-21 15:08:46.859+03	
0608eed6-37bb-69bb-64f1-f2d03673f48f	2021-05-21 15:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:09:06.853+03	2021-05-21 15:09:06.858+03	
69e44b9f-3fe8-24d0-ad1d-5a01dfe42a6d	2021-05-21 15:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:09:27.853+03	2021-05-21 15:09:27.859+03	
6a1a51e8-90fd-3a4e-a184-d3c5fb1f7804	2021-05-21 15:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:09:48.853+03	2021-05-21 15:09:48.87+03	
236104cd-b58e-a2eb-300d-27b51a24f0f1	2021-05-21 15:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 15:10:00.852+03	2021-05-21 15:10:00.863+03	ERROR
29113235-a4be-8071-81df-6249d5f046e7	2021-05-21 15:10:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:10:20.852+03	2021-05-21 15:10:20.859+03	
6ca7cf82-0a65-4767-6910-8c744268d861	2021-05-21 15:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:10:40.853+03	2021-05-21 15:10:40.859+03	
c20681f8-3ac1-7175-c1e9-b4c5001cd2f8	2021-05-21 15:11:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:11:00.853+03	2021-05-21 15:11:00.861+03	
67cc3764-cb58-9eb1-8ffc-85b6d04848d3	2021-05-21 15:11:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:11:21.852+03	2021-05-21 15:11:21.86+03	
01d0f4e0-d683-ef00-e0d7-7eff76fcd2de	2021-05-21 15:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:11:42.853+03	2021-05-21 15:11:42.859+03	
7bcad18e-0b0e-867d-271b-3c63dd5bff0d	2021-05-21 15:12:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:12:03.853+03	2021-05-21 15:12:03.871+03	
902091c7-8915-0655-2b94-3a9496ca26b9	2021-05-21 15:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:12:23.853+03	2021-05-21 15:12:23.859+03	
295869d8-2660-9a62-1905-413d19bf26f5	2021-05-21 15:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:12:44.853+03	2021-05-21 15:12:44.859+03	
e8c497ec-d917-7bbd-5837-aacb4e89ffef	2021-05-21 15:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:13:05.852+03	2021-05-21 15:13:05.859+03	
26093bcb-9ec0-ac3a-73ab-b1b46cf28ddb	2021-05-21 15:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:13:25.852+03	2021-05-21 15:13:25.86+03	
4ed53aeb-ca98-b9f3-b1f8-cd4dd6fdd47e	2021-05-21 15:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:13:45.852+03	2021-05-21 15:13:45.859+03	
c2d9f076-0830-76a2-46fa-4887ba3a773e	2021-05-21 15:14:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:14:06.852+03	2021-05-21 15:14:06.863+03	
73330fd1-6f10-ad19-e9b9-fb6c218511f1	2021-05-21 15:14:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:14:26.853+03	2021-05-21 15:14:26.86+03	
54432655-0a9a-dc17-1e78-ac876fc1532a	2021-05-21 15:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:14:47.852+03	2021-05-21 15:14:47.86+03	
b70ae206-b8c4-7e7d-8b73-01025e3db753	2021-05-21 15:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:15:07.852+03	2021-05-21 15:15:07.859+03	
596b994f-03dd-d14a-4ecc-026d7d58e5e5	2021-05-21 15:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:15:28.853+03	2021-05-21 15:15:28.859+03	
11253f90-0447-4071-a549-8a27fd2ee08b	2021-05-21 15:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:15:48.853+03	2021-05-21 15:15:48.86+03	
0dddc737-ae06-d396-54ea-8ee4792eb4b2	2021-05-21 15:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:16:08.853+03	2021-05-21 15:16:08.859+03	
e1a985bd-528a-fc0f-3a89-468209ade0ee	2021-05-21 15:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:16:28.853+03	2021-05-21 15:16:28.86+03	
0f755b44-0e74-0b8e-1359-ed87330cdf13	2021-05-21 15:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:16:48.853+03	2021-05-21 15:16:48.858+03	
389c986d-0862-ca60-2569-5058b623fe58	2021-05-21 15:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:17:08.853+03	2021-05-21 15:17:08.859+03	
18477a5c-53a0-4044-fc6b-a120af46fb92	2021-05-21 15:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:17:29.853+03	2021-05-21 15:17:29.859+03	
92e1bfdc-d200-7c84-c1ae-798f1bdcca00	2021-05-21 15:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:17:39.853+03	2021-05-21 15:17:39.862+03	
9e4d1ec4-1ff8-1b16-69d6-ee6ba410da51	2021-05-21 15:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:17:59.853+03	2021-05-21 15:17:59.86+03	
4a5a284f-92aa-9ccf-2bf5-9dd1de15eac3	2021-05-21 15:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:18:20.852+03	2021-05-21 15:18:20.859+03	
d4944fa6-644b-ef5b-13d4-02a4977b689c	2021-05-21 15:18:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:18:40.852+03	2021-05-21 15:18:40.859+03	
222b703b-73a7-2bf6-d074-d85a7fb0c83c	2021-05-21 15:19:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:19:00.853+03	2021-05-21 15:19:00.861+03	
efcd7bc5-51f8-4ba6-a2eb-22230d847f1e	2021-05-21 15:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:19:20.853+03	2021-05-21 15:19:20.86+03	
7254fcb7-c964-c954-33c9-f3eb8975dfbb	2021-05-21 15:19:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:19:41.853+03	2021-05-21 15:19:41.86+03	
29d2fb23-42b2-137f-167d-f0b93e51e5d6	2021-05-21 15:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 15:20:00.852+03	2021-05-21 15:20:00.897+03	ERROR
97ed052c-056e-9d9e-591d-3f8b220a71d1	2021-05-21 15:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:20:12.853+03	2021-05-21 15:20:12.86+03	
fec3724c-72f3-86cb-240e-d5987dc1a214	2021-05-21 15:20:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:20:32.853+03	2021-05-21 15:20:32.859+03	
739b093c-8b4e-623b-dcce-394797b6d535	2021-05-21 15:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:20:52.853+03	2021-05-21 15:20:52.859+03	
266e4116-e6b8-8444-42d7-05b4355af12f	2021-05-21 15:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:21:12.853+03	2021-05-21 15:21:12.86+03	
9da78185-3ac9-fc90-cd62-8c1fbca6a721	2021-05-21 15:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:21:33.852+03	2021-05-21 15:21:33.868+03	
c44db616-123c-344a-7a56-7670193d7407	2021-05-21 15:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:21:53.852+03	2021-05-21 15:21:53.859+03	
2e859983-e4e9-2f1a-d995-9658119d1d4d	2021-05-21 15:22:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:22:13.853+03	2021-05-21 15:22:13.861+03	
5b5a9240-0c35-9fcf-ebb1-fd9425448d15	2021-05-21 15:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:22:34.853+03	2021-05-21 15:22:34.86+03	
cb756e9f-5be8-bb65-a8cb-e8209ef9157b	2021-05-21 15:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:22:54.853+03	2021-05-21 15:22:54.871+03	
6bb2087f-82ad-9ced-5a5c-1629ca141b4f	2021-05-21 15:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:23:14.853+03	2021-05-21 15:23:14.859+03	
7b9b7f00-8a7f-ca2e-1578-02d1b1568901	2021-05-21 15:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:23:35.852+03	2021-05-21 15:23:35.859+03	
c357e6c2-d594-1cea-f6cc-675b3b530395	2021-05-21 15:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:23:55.853+03	2021-05-21 15:23:55.86+03	
776c6900-e852-2d51-8d3e-6504e507edab	2021-05-21 15:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:24:15.853+03	2021-05-21 15:24:15.915+03	
7f170fea-f6bc-c2d5-ef87-0f19d23b1e0c	2021-05-21 15:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:24:37.853+03	2021-05-21 15:24:37.859+03	
a27a283a-3d96-9b46-6c6d-df8d1310184e	2021-05-21 15:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:24:58.852+03	2021-05-21 15:24:58.859+03	
4364030d-d6ee-8ffc-06c1-ae2fa2b6e47a	2021-05-21 15:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:25:18.853+03	2021-05-21 15:25:18.859+03	
a9a6368c-b88d-d4f7-c365-9a07d60933b4	2021-05-21 15:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:25:38.853+03	2021-05-21 15:25:38.859+03	
3c5bd537-4fb7-af13-c1db-d1ff8d74205c	2021-05-21 15:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:26:00.852+03	2021-05-21 15:26:00.861+03	
dad0ccf2-3908-a18a-665c-da0a728465a5	2021-05-21 15:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:26:20.852+03	2021-05-21 15:26:20.859+03	
79a2f405-05d9-6e50-de00-cbf9214c5847	2021-05-21 15:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:26:40.853+03	2021-05-21 15:26:40.859+03	
e6aa8852-094a-83bf-3f6e-197db4b09f35	2021-05-21 15:27:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:27:01.853+03	2021-05-21 15:27:01.86+03	
0b89277b-a007-2536-1035-1409290a8830	2021-05-21 15:27:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:27:21.853+03	2021-05-21 15:27:21.861+03	
864dc97d-eefb-9d8f-9242-30a14a874d08	2021-05-21 15:27:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:27:41.853+03	2021-05-21 15:27:41.859+03	
2cc3099d-5153-e794-46f6-0d9159d6e696	2021-05-21 15:28:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:28:01.853+03	2021-05-21 15:28:01.859+03	
d7847020-2807-6479-0725-9abc7aa6e89a	2021-05-21 15:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:28:22.853+03	2021-05-21 15:28:22.859+03	
f5a3c884-9be1-a5f6-0c1d-b6c8b73f5c9c	2021-05-21 15:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:28:42.853+03	2021-05-21 15:28:42.862+03	
600f9d15-b0c7-5dc0-ab9e-2fc69a5b490d	2021-05-21 15:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:29:04.853+03	2021-05-21 15:29:04.86+03	
ee695a8f-572c-08ff-959d-e639ae177e8f	2021-05-21 15:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:29:24.853+03	2021-05-21 15:29:24.861+03	
b92a5843-2718-c0da-b68c-422c4483f4a7	2021-05-21 15:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:29:45.852+03	2021-05-21 15:29:45.859+03	
673c54c0-08b0-ae91-3c1c-a5629f5d7d0c	2021-05-21 15:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 15:30:00.852+03	2021-05-21 15:30:00.858+03	ERROR
dc8db0a9-9e39-dc35-78f3-f60f74b9ffcb	2021-05-21 15:30:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:30:16.854+03	2021-05-21 15:30:16.86+03	
820090bb-7d05-34ac-979e-a966aca874e7	2021-05-21 15:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:30:37.853+03	2021-05-21 15:30:37.86+03	
f601fb5c-b244-0a88-8cf0-c89bc616d44d	2021-05-21 15:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:30:58.853+03	2021-05-21 15:30:58.859+03	
73986c58-f456-cfd2-0b3d-7e3b343ec31e	2021-05-21 15:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:31:18.853+03	2021-05-21 15:31:18.859+03	
bd7686cb-1a3f-c7f6-6592-16973fc805ec	2021-05-21 15:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:31:39.853+03	2021-05-21 15:31:39.861+03	
8b6156f9-e383-1849-d866-df0aa276dc36	2021-05-21 15:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:31:59.853+03	2021-05-21 15:31:59.864+03	
4c84f0fb-9b0b-dafe-e1d0-b84e5ecbf1bd	2021-05-21 15:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:32:20.853+03	2021-05-21 15:32:20.859+03	
6c6f1b4e-4062-06c2-9b09-6a7469b87dda	2021-05-21 15:32:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:32:41.852+03	2021-05-21 15:32:41.859+03	
c54d45bf-ffec-eb98-3f70-1f4bc3de6e5c	2021-05-21 15:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:33:02.852+03	2021-05-21 15:33:02.864+03	
fce82e8b-ec52-672c-5a51-61145280d397	2021-05-21 15:33:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:33:22.853+03	2021-05-21 15:33:22.86+03	
96e20a91-901a-8f96-81f0-b975cd1a0b8d	2021-05-21 15:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:33:43.853+03	2021-05-21 15:33:44.202+03	
08cb6eea-2315-312b-7fb4-9f5062710c38	2021-05-21 15:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:34:03.853+03	2021-05-21 15:34:03.859+03	
4ceaaa41-bf7c-ea51-45b7-5f8ac6188144	2021-05-21 15:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:34:24.852+03	2021-05-21 15:34:24.862+03	
142b44db-6d73-c411-c7bb-253922fc09da	2021-05-21 15:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:34:44.852+03	2021-05-21 15:34:44.958+03	
53b94093-8d69-0e3c-f6d1-1d02291e97ff	2021-05-21 15:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:35:04.853+03	2021-05-21 15:35:04.861+03	
716d3d19-ad23-fb4c-c2cb-47f40ee4e356	2021-05-21 15:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:35:25.852+03	2021-05-21 15:35:25.859+03	
99058362-6285-a548-5b5f-2151782d6a71	2021-05-21 15:35:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:35:45.853+03	2021-05-21 15:35:45.861+03	
de880547-35a9-d9f0-921b-f4bc79ba532e	2021-05-21 15:36:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:36:06.852+03	2021-05-21 15:36:06.859+03	
39630fd6-81e3-eff7-591a-830286bccf6d	2021-05-21 15:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:36:26.852+03	2021-05-21 15:36:26.859+03	
721d48c7-ead2-e3a8-b382-61da9d4ee3c0	2021-05-21 15:36:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:36:46.854+03	2021-05-21 15:36:46.864+03	
eda58ad3-d67f-b039-39c6-26fcf82607d8	2021-05-21 15:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:37:07.853+03	2021-05-21 15:37:07.863+03	
224f8daf-fc03-1cdc-e711-f05625a984e9	2021-05-21 15:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:37:27.853+03	2021-05-21 15:37:27.873+03	
59ef91ab-250e-c0e1-e0de-18b748bba69c	2021-05-21 15:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:37:47.853+03	2021-05-21 15:37:47.86+03	
ba1cd186-d594-a105-525b-d7c7399b75c9	2021-05-21 15:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:38:08.853+03	2021-05-21 15:38:08.86+03	
347ae335-b8e2-12f9-0ab5-e2cff283a249	2021-05-21 15:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:38:28.853+03	2021-05-21 15:38:28.86+03	
cd995467-c7fa-87de-73b3-042288f97ad2	2021-05-21 15:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:17:49.853+03	2021-05-21 15:17:49.859+03	
c2f3a91f-fe57-45a2-8577-d134f5447ea6	2021-05-21 15:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:18:10.852+03	2021-05-21 15:18:10.86+03	
c381c0bd-1a90-f490-fcb0-11949d16f458	2021-05-21 15:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:18:30.852+03	2021-05-21 15:18:30.859+03	
be1cc604-3296-9bb6-e8e3-c0d3feb896f9	2021-05-21 15:18:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:18:50.852+03	2021-05-21 15:18:50.876+03	
50852d06-4472-a13b-2c53-1c1c98be07f0	2021-05-21 15:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:19:10.853+03	2021-05-21 15:19:10.86+03	
ec808ea0-548d-6d2c-997e-4bd759f68561	2021-05-21 15:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:19:30.853+03	2021-05-21 15:19:30.859+03	
60ceebc2-a518-8290-52f1-923f9a5c6eb2	2021-05-21 15:19:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:19:51.853+03	2021-05-21 15:19:51.869+03	
43c7de00-524b-1de6-099b-786bc5e26abc	2021-05-21 15:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:20:02.852+03	2021-05-21 15:20:02.859+03	
e0bf1115-1d24-0f7f-a396-182ce4e342ff	2021-05-21 15:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:20:22.853+03	2021-05-21 15:20:22.859+03	
002c02e0-f37f-49ac-5eb0-598c6401a5ed	2021-05-21 15:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:20:42.853+03	2021-05-21 15:20:42.859+03	
a1d56345-7166-eeed-0ca1-ac96248bad99	2021-05-21 15:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:21:02.853+03	2021-05-21 15:21:02.869+03	
dc6b3dc9-5b34-a6a6-1ec8-565ef0c173e0	2021-05-21 15:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:21:22.853+03	2021-05-21 15:21:22.86+03	
72b520d1-f983-69e1-073f-93738ad3315c	2021-05-21 15:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:21:43.852+03	2021-05-21 15:21:43.868+03	
f14d5a79-5602-7ee0-9530-7984ddafcac4	2021-05-21 15:22:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:22:03.852+03	2021-05-21 15:22:03.869+03	
bf27ec29-bd92-1a14-034d-190f54119540	2021-05-21 15:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:22:24.853+03	2021-05-21 15:22:24.871+03	
a1fc628a-3587-9784-f5f2-815fd7710ded	2021-05-21 15:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:22:44.853+03	2021-05-21 15:22:44.903+03	
0b3c56e3-0193-9272-566a-47c8908b9618	2021-05-21 15:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:23:04.853+03	2021-05-21 15:23:04.861+03	
9460a238-165f-7e28-cff3-77a5d6796b7a	2021-05-21 15:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:23:25.852+03	2021-05-21 15:23:25.858+03	
5dfac950-01b2-d7d6-7098-2c4e72f36440	2021-05-21 15:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:23:45.853+03	2021-05-21 15:23:45.861+03	
8bad312f-537b-8227-7eda-364386db9452	2021-05-21 15:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:24:05.853+03	2021-05-21 15:24:05.865+03	
0867de82-86c3-8af6-a315-213ffc2da5dd	2021-05-21 15:24:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:24:26.853+03	2021-05-21 15:24:26.86+03	
351d4e34-82a5-4472-c750-18032c5d1690	2021-05-21 15:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:24:47.853+03	2021-05-21 15:24:47.86+03	
e3b2b8fe-cb3e-7c58-8393-4973079ff5c3	2021-05-21 15:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:25:08.852+03	2021-05-21 15:25:08.859+03	
87b073bc-09e8-04ff-fa5c-42e946bd6141	2021-05-21 15:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:25:28.853+03	2021-05-21 15:25:28.861+03	
b3093bc4-3ed3-ff85-25aa-f8490b33a8f2	2021-05-21 15:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:25:49.853+03	2021-05-21 15:25:49.86+03	
8a92b00c-1826-3cf6-9343-3b394737b914	2021-05-21 15:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:26:10.852+03	2021-05-21 15:26:10.858+03	
d239353b-806a-9567-3227-3de0ab7dfd40	2021-05-21 15:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:26:30.853+03	2021-05-21 15:26:30.868+03	
5b4c46dc-5876-bce3-f364-f49765bf0eb7	2021-05-21 15:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:26:50.853+03	2021-05-21 15:26:50.859+03	
d2a6ccd8-2570-dde7-7818-d8b7ad8e66b4	2021-05-21 15:27:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:27:11.853+03	2021-05-21 15:27:11.859+03	
9853afd4-babe-39b7-beb8-739ff0657388	2021-05-21 15:27:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:27:31.853+03	2021-05-21 15:27:31.86+03	
5312abd2-77f6-5a6d-3eec-e7906000f1d3	2021-05-21 15:27:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:27:51.853+03	2021-05-21 15:27:51.86+03	
5a0bf69c-fe73-2e23-17f1-e0eaa914e2fd	2021-05-21 15:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:28:12.852+03	2021-05-21 15:28:12.859+03	
dcdb410c-e0bc-403a-6ab6-56a771f6473d	2021-05-21 15:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:28:32.853+03	2021-05-21 15:28:32.865+03	
b86a7b3f-d1b4-043b-18f3-265f8025129f	2021-05-21 15:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:28:53.853+03	2021-05-21 15:28:54.168+03	
3ed3b3a6-1c13-70c3-07d9-282f7ea5cdd0	2021-05-21 15:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:29:14.853+03	2021-05-21 15:29:14.859+03	
5eccd359-6f69-009d-0d06-fe2c1f3a7932	2021-05-21 15:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:29:35.852+03	2021-05-21 15:29:35.898+03	
8362164b-e15d-f35d-bb31-880107fac367	2021-05-21 15:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:29:55.853+03	2021-05-21 15:29:55.86+03	
01618aad-56b1-a34b-0df8-cccb7ae1ff79	2021-05-21 15:30:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:30:06.853+03	2021-05-21 15:30:06.873+03	
37369a0f-1c30-6ced-1edb-3cc384f3fc76	2021-05-21 15:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:30:27.853+03	2021-05-21 15:30:27.867+03	
85be552a-1790-4639-1dec-99dbf50f4a53	2021-05-21 15:30:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:30:48.853+03	2021-05-21 15:30:48.862+03	
63d4cc82-f44e-2655-403d-01ad811bffc1	2021-05-21 15:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:31:08.853+03	2021-05-21 15:31:08.859+03	
d9dfa9c5-4ae0-195d-3765-7d72990b47da	2021-05-21 15:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:31:29.853+03	2021-05-21 15:31:29.858+03	
43f7ac19-29db-9bd7-44d0-12a4dcaa81ff	2021-05-21 15:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:31:49.853+03	2021-05-21 15:31:49.86+03	
47dbfa0a-2e30-51a6-eead-be8e968aadd0	2021-05-21 15:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:32:10.853+03	2021-05-21 15:32:10.86+03	
2bd1ceb0-35d5-fab9-65d0-7ab3876e097e	2021-05-21 15:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:32:30.853+03	2021-05-21 15:32:30.859+03	
e8361c85-d98b-3b8b-4916-a6146d5b191a	2021-05-21 15:32:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:32:51.854+03	2021-05-21 15:32:51.86+03	
3a81c167-5408-4c91-f6b0-0d29591f083e	2021-05-21 15:33:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:33:12.853+03	2021-05-21 15:33:12.86+03	
291fd0b4-db86-17e3-2e4c-b8f9c7c43bc8	2021-05-21 15:33:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:33:33.853+03	2021-05-21 15:33:33.871+03	
95d51c3c-7b9d-5a92-3da5-f73a78258b3f	2021-05-21 15:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:33:53.853+03	2021-05-21 15:33:53.86+03	
e4974ce9-ffe7-8c13-8118-0cc21994b280	2021-05-21 15:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:34:14.852+03	2021-05-21 15:34:14.859+03	
b531d270-7a6e-c628-70d1-bb3d8705e7ed	2021-05-21 15:34:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:34:34.852+03	2021-05-21 15:34:34.859+03	
ef6cc16e-24a5-b256-ef4d-0f461977b033	2021-05-21 15:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:34:54.853+03	2021-05-21 15:34:54.859+03	
7a15c357-ae86-8099-aba7-c9ee6e382eac	2021-05-21 15:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:35:14.853+03	2021-05-21 15:35:14.871+03	
2a15cb8d-15b4-cbe6-54e5-8fa2ad0f2089	2021-05-21 15:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:35:35.853+03	2021-05-21 15:35:35.859+03	
a3388d85-a00c-4dfb-3556-a17441712299	2021-05-21 15:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:35:56.852+03	2021-05-21 15:35:56.86+03	
66e71f63-1249-cb15-5b24-583eea511515	2021-05-21 15:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:36:16.852+03	2021-05-21 15:36:16.858+03	
d5d3d65e-e084-a5f3-add8-e40e2296bd70	2021-05-21 15:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:36:36.852+03	2021-05-21 15:36:36.859+03	
9247bb68-f51a-c1f6-fb9e-8a4ac9dcf291	2021-05-21 15:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:36:57.852+03	2021-05-21 15:36:57.86+03	
cba9bd83-b6cf-4cce-ec33-b42f7d1dd752	2021-05-21 15:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:37:17.853+03	2021-05-21 15:37:17.86+03	
c0b53005-00b0-0cda-7f6e-b895f690f8c8	2021-05-21 15:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:37:37.853+03	2021-05-21 15:37:37.862+03	
247b1118-8259-81bb-85b4-f30d8a7ee15b	2021-05-21 15:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:37:57.853+03	2021-05-21 15:37:57.859+03	
cb46c9a5-d460-d0e4-39bb-cde5c51556a6	2021-05-21 15:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:38:18.853+03	2021-05-21 15:38:18.86+03	
7b620b96-50d9-d449-1727-528d3e07080f	2021-05-21 15:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:38:38.853+03	2021-05-21 15:38:38.872+03	
4cebd80d-fdba-a731-7f32-171b9bb0cfbc	2021-05-21 15:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:38:48.853+03	2021-05-21 15:38:48.862+03	
e1c800b0-99fd-aa28-4e43-4f505c4f302f	2021-05-21 15:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:39:08.853+03	2021-05-21 15:39:08.859+03	
3ab22620-1839-129b-d4bf-7a5b3437e83d	2021-05-21 15:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:39:28.853+03	2021-05-21 15:39:28.86+03	
35f22397-11af-2f6b-97f9-a617bc068b5f	2021-05-21 15:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:39:49.853+03	2021-05-21 15:39:49.866+03	
85173ffb-b3ce-921d-2156-b401f0b61f24	2021-05-21 15:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 15:40:00.853+03	2021-05-21 15:40:00.857+03	ERROR
47be797e-b184-9ed5-74e0-048372b0d929	2021-05-21 15:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:40:21.852+03	2021-05-21 15:40:21.859+03	
4f771598-0e16-df00-073e-b1c6b834070f	2021-05-21 15:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:40:42.852+03	2021-05-21 15:40:42.859+03	
3318b59a-cec0-eeee-722f-4116d7fe649d	2021-05-21 15:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:41:03.852+03	2021-05-21 15:41:03.871+03	
6309b7e1-f9fe-62a1-5af2-5efd1725a136	2021-05-21 15:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:41:23.852+03	2021-05-21 15:41:23.869+03	
d1aabe2c-2062-0a0a-c85d-cded1bbeca57	2021-05-21 15:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:41:43.853+03	2021-05-21 15:41:43.868+03	
6250425c-0a51-2f2f-667c-0301287bd821	2021-05-21 15:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:42:04.853+03	2021-05-21 15:42:04.861+03	
649ea97b-2e34-897f-14d5-eb06b7b4999e	2021-05-21 15:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:42:25.853+03	2021-05-21 15:42:25.869+03	
971822eb-07df-185a-27b2-d23fab2030b5	2021-05-21 15:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:42:46.853+03	2021-05-21 15:42:46.86+03	
1a30fbc5-cc96-99aa-5540-e1d1b6437a5f	2021-05-21 15:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:43:08.853+03	2021-05-21 15:43:08.861+03	
32bafcdc-19dd-59e6-d922-a673b327187a	2021-05-21 15:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:43:28.853+03	2021-05-21 15:43:28.86+03	
fb1e3fce-7986-2190-64bf-eae787f196ef	2021-05-21 15:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:43:48.853+03	2021-05-21 15:43:48.86+03	
783561ef-b94a-440d-9df1-073d0aa9240f	2021-05-21 15:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:44:09.852+03	2021-05-21 15:44:09.86+03	
5aa7e3de-ac99-4612-3176-ff28366fde85	2021-05-21 15:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:44:29.853+03	2021-05-21 15:44:29.859+03	
7950c847-e4fd-d4ae-3580-e4353fbb7c7b	2021-05-21 15:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:44:50.853+03	2021-05-21 15:44:50.862+03	
05f7e754-6c7c-e232-80fe-be2ae3483414	2021-05-21 15:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:45:10.853+03	2021-05-21 15:45:10.86+03	
3b4c9a27-4a3f-0d64-3260-1130fe3b45f7	2021-05-21 15:45:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:45:31.852+03	2021-05-21 15:45:31.859+03	
b5b6818e-7335-852e-69d6-9e53f55181b5	2021-05-21 15:45:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:45:51.853+03	2021-05-21 15:45:51.859+03	
d2d26011-1e0d-26e7-2dc8-6ecd618b1bb2	2021-05-21 15:46:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:46:11.853+03	2021-05-21 15:46:11.859+03	
f6733a5d-6b9e-7fa2-0086-14bd31b1221c	2021-05-21 15:46:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:46:31.853+03	2021-05-21 15:46:31.86+03	
ec71937b-b1bf-36a1-56be-80b7c6615896	2021-05-21 15:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:46:52.853+03	2021-05-21 15:46:52.861+03	
4c784766-1daa-93a7-27e2-bafe8f219473	2021-05-21 15:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:47:12.853+03	2021-05-21 15:47:12.861+03	
7f364999-6ea0-e158-fb55-74febc3b953b	2021-05-21 15:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:47:34.852+03	2021-05-21 15:47:34.859+03	
d58cf96c-47e0-3634-2826-f8915dd881a6	2021-05-21 15:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:47:54.853+03	2021-05-21 15:47:54.859+03	
37afd895-cb5d-b9b9-b9c3-751864f89f02	2021-05-21 15:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:48:14.853+03	2021-05-21 15:48:14.861+03	
d25400a2-bb08-23d8-f1d4-cfb81fccd943	2021-05-21 15:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:48:34.853+03	2021-05-21 15:48:34.867+03	
2e682e10-f7f0-2d07-0aa1-7f8dfad43109	2021-05-21 15:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:48:56.852+03	2021-05-21 15:48:56.859+03	
bf08e1eb-ea61-1c89-96b2-ecfdc8403346	2021-05-21 15:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:49:16.853+03	2021-05-21 15:49:16.861+03	
b313d63e-5514-17ac-976a-9bfc117762d7	2021-05-21 15:49:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:49:36.854+03	2021-05-21 15:49:36.86+03	
b567a5ce-87a9-6d90-6bab-7ff964c20503	2021-05-21 15:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:49:57.853+03	2021-05-21 15:49:57.859+03	
943daf86-6570-a5c7-843f-8ac900725e1a	2021-05-21 15:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:50:08.852+03	2021-05-21 15:50:08.861+03	
ee1b7bdd-246b-5038-5ca8-f790a97620f9	2021-05-21 15:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:50:28.853+03	2021-05-21 15:50:28.859+03	
e08dca4d-5717-e11c-56e2-93d4c10e833d	2021-05-21 15:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:50:48.853+03	2021-05-21 15:50:48.859+03	
878dbaa0-db4e-5994-22d1-9c59c1d382b2	2021-05-21 15:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:51:09.852+03	2021-05-21 15:51:09.859+03	
6dda6c73-4a46-9bb9-2b39-152b89e1a59b	2021-05-21 15:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:51:29.853+03	2021-05-21 15:51:29.987+03	
fd21f683-edff-e8a2-c58c-3753b3958d64	2021-05-21 15:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:51:49.853+03	2021-05-21 15:51:49.862+03	
99cd8ad2-c037-3dd6-3f7a-092272842b5a	2021-05-21 15:52:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:52:11.853+03	2021-05-21 15:52:11.86+03	
a6010989-54a3-e687-306b-ba6aebf82ec8	2021-05-21 15:52:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:52:31.854+03	2021-05-21 15:52:31.861+03	
971a0459-5930-f11e-fd6e-df9c8d66e7ca	2021-05-21 15:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:52:52.852+03	2021-05-21 15:52:52.858+03	
c66b29f4-9f72-2dd2-eeb0-a632daf7d6f1	2021-05-21 15:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:53:12.853+03	2021-05-21 15:53:12.874+03	
fdbfb736-a446-fba3-4b30-a6ec898e6461	2021-05-21 15:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:53:33.852+03	2021-05-21 15:53:33.859+03	
e70b16d9-f4bc-0980-e458-510d966548b3	2021-05-21 15:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:53:54.852+03	2021-05-21 15:53:54.859+03	
8e7cbba8-13c3-38e2-4ffd-7d9fcf067a18	2021-05-21 15:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:54:14.852+03	2021-05-21 15:54:14.859+03	
f8fb5c63-8d49-7fcf-4089-ef601c300d53	2021-05-21 15:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:54:34.852+03	2021-05-21 15:54:34.858+03	
aa1606a6-edf6-dfee-91cc-2890bbdbe31f	2021-05-21 15:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:54:54.852+03	2021-05-21 15:54:54.86+03	
6f472934-0947-f164-5209-3c32f5022bd8	2021-05-21 15:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:55:14.853+03	2021-05-21 15:55:14.86+03	
114bb20e-7576-410e-2a08-087b940d9ab7	2021-05-21 15:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:55:34.853+03	2021-05-21 15:55:34.86+03	
a5678380-989d-6b4e-b38f-b57035c5e245	2021-05-21 15:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:55:55.853+03	2021-05-21 15:55:55.859+03	
a3eaabc6-5450-e1d6-9d1f-2347febcdaa3	2021-05-21 15:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:56:15.853+03	2021-05-21 15:56:15.861+03	
561b78f8-f965-8bc1-9cc8-d6ff2dc68c2d	2021-05-21 15:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:56:35.853+03	2021-05-21 15:56:35.859+03	
8e142ac8-ad9d-fa7b-5ce9-6c7c44f72f6d	2021-05-21 15:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:56:57.853+03	2021-05-21 15:56:57.86+03	
6613f470-72c9-2f48-6af6-6e3da94aed68	2021-05-21 15:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:57:17.853+03	2021-05-21 15:57:17.862+03	
4facb746-b2eb-cdce-8c0a-f55c3c6a6379	2021-05-21 15:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:57:37.853+03	2021-05-21 15:57:37.861+03	
30e72987-d6ba-576d-8941-30b751e17d59	2021-05-21 15:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:57:57.853+03	2021-05-21 15:57:57.86+03	
fab31d23-1195-342f-93e1-931cf968d40e	2021-05-21 15:58:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:58:18.853+03	2021-05-21 15:58:18.865+03	
0df7390c-de92-91d1-c6a8-c08f42c2c37a	2021-05-21 15:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:58:39.853+03	2021-05-21 15:58:39.86+03	
f481a3de-d953-07ff-9a11-aa52517b187d	2021-05-21 15:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:59:00.853+03	2021-05-21 15:59:00.865+03	
b6176303-3ab2-bcbf-dc4d-c487c57e4ba0	2021-05-21 15:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:59:20.853+03	2021-05-21 15:59:20.86+03	
7b90e55d-5612-6d71-883c-ea11d6a46d46	2021-05-21 15:59:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:59:41.853+03	2021-05-21 15:59:41.86+03	
3fcb2702-418d-d5d8-0c7a-ca1ec5f410ae	2021-05-21 15:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:38:58.853+03	2021-05-21 15:38:58.861+03	
7708fe16-b8c5-54c5-8dfa-5e6885d5c67c	2021-05-21 15:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:39:18.853+03	2021-05-21 15:39:18.872+03	
fd3ace48-23d8-53a4-d41f-4140393e9f0b	2021-05-21 15:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:39:39.853+03	2021-05-21 15:39:39.861+03	
82918094-a985-8860-c0d5-00882b9a87c5	2021-05-21 15:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:39:59.853+03	2021-05-21 15:39:59.859+03	
605b9821-69e4-1dce-e335-a1cccdda1bfc	2021-05-21 15:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:40:10.853+03	2021-05-21 15:40:10.867+03	
9361e15a-1a3d-a414-6c9a-c89a57a29e13	2021-05-21 15:40:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:40:31.854+03	2021-05-21 15:40:31.862+03	
9ecfce6c-805c-9184-349b-2be27ebca698	2021-05-21 15:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:40:52.853+03	2021-05-21 15:40:52.859+03	
d8c30820-4e86-95d2-a2ed-d6b4f86e2ce7	2021-05-21 15:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:41:13.852+03	2021-05-21 15:41:13.859+03	
224485b3-c7a6-8350-81cc-7650fc03d27d	2021-05-21 15:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:41:33.853+03	2021-05-21 15:41:33.86+03	
37f5a989-572d-4c7d-f8e1-fd36c7f2634b	2021-05-21 15:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:41:54.853+03	2021-05-21 15:41:54.859+03	
59bbce49-769f-424b-9bc8-27b25f143a1c	2021-05-21 15:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:42:14.853+03	2021-05-21 15:42:14.869+03	
da5434a6-8dc2-b147-4620-4cd550933727	2021-05-21 15:42:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:42:36.852+03	2021-05-21 15:42:36.859+03	
287821ce-9c32-4b37-2fff-13f1c5834c61	2021-05-21 15:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:42:57.853+03	2021-05-21 15:42:57.859+03	
a6211e87-0bd7-27cc-71b2-f4e1d98fefdb	2021-05-21 15:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:43:18.853+03	2021-05-21 15:43:18.859+03	
ceaf7eaf-6324-164c-daf3-61f4eb151d1d	2021-05-21 15:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:43:38.853+03	2021-05-21 15:43:38.891+03	
575767f8-d1a0-87eb-a9fa-ea27d5edf3f0	2021-05-21 15:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:43:58.853+03	2021-05-21 15:43:58.859+03	
93671128-f1b2-2cfa-3c5d-fae406762930	2021-05-21 15:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:44:19.852+03	2021-05-21 15:44:19.859+03	
68704b15-f417-f7dd-2d27-05df8da35c4c	2021-05-21 15:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:44:40.853+03	2021-05-21 15:44:40.859+03	
cd500959-c9c4-08ea-57c6-5b19ee3dd769	2021-05-21 15:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:45:00.853+03	2021-05-21 15:45:00.86+03	
1f2c2dfc-fb44-6fa7-49b5-052b72efc70a	2021-05-21 15:45:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:45:21.852+03	2021-05-21 15:45:21.86+03	
4ee5046c-c1e4-5ced-89f9-e4220a130f1c	2021-05-21 15:45:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:45:41.852+03	2021-05-21 15:45:41.859+03	
f0431829-b456-d432-5553-5ecfb57721af	2021-05-21 15:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:46:01.853+03	2021-05-21 15:46:01.859+03	
aa408e89-d47c-3a65-0842-f96114385189	2021-05-21 15:46:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:46:21.853+03	2021-05-21 15:46:21.861+03	
404b4a59-2f0b-6b27-616e-baf39c502fbf	2021-05-21 15:46:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:46:41.854+03	2021-05-21 15:46:41.864+03	
80d5381f-43a4-7561-5660-b14ab6dc3b78	2021-05-21 15:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:47:02.853+03	2021-05-21 15:47:02.859+03	
822415b4-199e-1a59-26c5-3357040af9d9	2021-05-21 15:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:47:23.853+03	2021-05-21 15:47:23.863+03	
ebecf018-7534-8826-55fb-fe6a3260e1e1	2021-05-21 15:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:47:44.853+03	2021-05-21 15:47:44.858+03	
700db644-a104-7cda-975d-e17c8943176e	2021-05-21 15:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:48:04.853+03	2021-05-21 15:48:04.86+03	
1d838bfe-a20e-2ac7-46da-5519e2faf329	2021-05-21 15:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:48:24.853+03	2021-05-21 15:48:24.859+03	
24ef2ccd-7be5-35c8-94e2-8b384932dec6	2021-05-21 15:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:48:45.853+03	2021-05-21 15:48:45.859+03	
f4327f01-621d-c219-135e-6b85fede9513	2021-05-21 15:49:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:49:06.852+03	2021-05-21 15:49:06.858+03	
04597b94-aac9-7475-bb8f-3bfaefba9a03	2021-05-21 15:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:49:26.853+03	2021-05-21 15:49:26.859+03	
4b063715-6dba-3342-136c-131ccb15be9f	2021-05-21 15:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:49:47.852+03	2021-05-21 15:49:47.859+03	
be77f8ac-687b-183a-8279-29819c4146b1	2021-05-21 15:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 15:50:00.853+03	2021-05-21 15:50:00.858+03	ERROR
76d28eb9-f2ed-bdf3-b9ea-4bec2f5f7e39	2021-05-21 15:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:50:18.853+03	2021-05-21 15:50:18.859+03	
287c8c69-16dc-b361-dde5-933588d55447	2021-05-21 15:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:50:38.853+03	2021-05-21 15:50:38.859+03	
9444a615-656c-7b2d-5123-7f6d76f76233	2021-05-21 15:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:50:58.853+03	2021-05-21 15:50:58.877+03	
b21b7adb-01b6-c3aa-7c0c-f38b2673cc82	2021-05-21 15:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:51:19.853+03	2021-05-21 15:51:19.86+03	
3bfd7a6c-8ee0-a2da-046c-f0665b27fe40	2021-05-21 15:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:51:39.853+03	2021-05-21 15:51:39.862+03	
55435464-65b9-90e5-b4ae-3270df5d125b	2021-05-21 15:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:52:00.853+03	2021-05-21 15:52:00.86+03	
e186a3a4-d0bb-5f30-0996-9d547fc97a06	2021-05-21 15:52:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:52:21.854+03	2021-05-21 15:52:21.864+03	
a84b20a6-ca12-4418-36f4-1cdbfc493c4c	2021-05-21 15:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:52:42.852+03	2021-05-21 15:52:42.859+03	
1ed14a5b-d05f-0b81-2583-8d52ae84528f	2021-05-21 15:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:53:02.853+03	2021-05-21 15:53:02.859+03	
1b73bf17-309f-ec46-7739-7e9634d827f5	2021-05-21 15:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:53:23.852+03	2021-05-21 15:53:23.86+03	
f8a5af86-634d-0848-9d7f-136358ad5211	2021-05-21 15:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:53:43.853+03	2021-05-21 15:53:43.873+03	
9dbe4411-bd49-43e1-19dc-2b9dd0698ce6	2021-05-21 15:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:54:04.852+03	2021-05-21 15:54:04.86+03	
ce84f4e7-8b27-79f1-3ea3-08497ad17483	2021-05-21 15:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:54:24.852+03	2021-05-21 15:54:24.858+03	
56babf0c-9515-3b2b-adf6-29be5b2c9c25	2021-05-21 15:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:54:44.852+03	2021-05-21 15:54:44.859+03	
4defd943-0a65-8f60-a832-3cc887c766be	2021-05-21 15:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:55:04.853+03	2021-05-21 15:55:04.867+03	
64ca2faa-0356-be2c-1ac7-9b68762f5070	2021-05-21 15:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:55:24.853+03	2021-05-21 15:55:24.859+03	
854547d9-7a97-b900-9943-355471b926dc	2021-05-21 15:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:55:45.853+03	2021-05-21 15:55:45.86+03	
124a3016-c4cf-0966-220f-0a345e2df311	2021-05-21 15:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:56:05.853+03	2021-05-21 15:56:05.871+03	
32dae42f-c20a-d809-3c98-583dafd46896	2021-05-21 15:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:56:25.853+03	2021-05-21 15:56:25.86+03	
43ef361b-cb06-ca78-da6b-c99fc4f746ca	2021-05-21 15:56:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:56:46.854+03	2021-05-21 15:56:46.869+03	
ba961612-b793-423e-3faf-e39c2272b9a7	2021-05-21 15:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:57:07.853+03	2021-05-21 15:57:07.862+03	
f1bbfefa-e928-9788-3bb9-f338407b977f	2021-05-21 15:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:57:27.853+03	2021-05-21 15:57:27.86+03	
1bfc0036-b2f0-402b-d36c-25445ee24575	2021-05-21 15:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:57:47.853+03	2021-05-21 15:57:47.861+03	
5ec71835-28da-c315-6b20-f5f5e6b0830a	2021-05-21 15:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:58:07.853+03	2021-05-21 15:58:07.86+03	
4ef9d007-abed-6c85-b603-270fdb1f04d6	2021-05-21 15:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:58:29.852+03	2021-05-21 15:58:29.859+03	
20d7c255-32d0-8acc-780a-30126ca0fa12	2021-05-21 15:58:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:58:49.853+03	2021-05-21 15:58:49.859+03	
5748bee5-6841-88db-f8d6-a38f5625e43b	2021-05-21 15:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:59:10.853+03	2021-05-21 15:59:10.862+03	
0097c815-6f05-647e-c3de-4880f28b1f38	2021-05-21 15:59:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:59:31.853+03	2021-05-21 15:59:31.882+03	
a4d48187-6705-5e96-e173-fd4f2ca2f810	2021-05-21 15:59:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 15:59:51.854+03	2021-05-21 15:59:51.863+03	
ae78f9a1-1e62-03e5-b6ac-47b74ae63c43	2021-05-21 16:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 16:00:00.853+03	2021-05-21 16:00:00.859+03	ERROR
866eaab4-4f68-8baa-e4cf-7ca494e98e73	2021-05-21 16:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:00:12.853+03	2021-05-21 16:00:12.863+03	
cb6c94a8-43f0-007d-98ae-2e87c9597eb7	2021-05-21 16:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:00:32.853+03	2021-05-21 16:00:32.873+03	
c7254a9c-2cff-595d-1b31-1800a12ccde6	2021-05-21 16:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:00:53.853+03	2021-05-21 16:00:53.862+03	
c015bcaa-cee3-8535-bac1-60c778cd98a9	2021-05-21 16:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:01:14.853+03	2021-05-21 16:01:14.859+03	
3af7ddcb-6e0b-e516-817d-3ed3f507e511	2021-05-21 16:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:01:34.853+03	2021-05-21 16:01:34.859+03	
1116cf1b-923a-2c85-3d8b-9c58c733ffdb	2021-05-21 16:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:01:55.852+03	2021-05-21 16:01:55.86+03	
3af7d9ed-0277-2e75-49fe-8afd752695bb	2021-05-21 16:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:02:15.853+03	2021-05-21 16:02:15.877+03	
b7d6e8f5-5cb9-4908-34c0-c45ebb61828b	2021-05-21 16:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:02:37.853+03	2021-05-21 16:02:37.86+03	
416306c8-5327-8bea-3f85-67e66749e622	2021-05-21 16:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:02:58.853+03	2021-05-21 16:02:58.861+03	
e3606627-c5eb-c482-afb3-80a0aa932c2b	2021-05-21 16:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:03:19.852+03	2021-05-21 16:03:19.859+03	
76c65338-10fd-b0eb-216c-dd00ff830636	2021-05-21 16:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:03:39.852+03	2021-05-21 16:03:39.86+03	
766c4bd0-efa6-7b9f-9272-3cabd7fe395c	2021-05-21 16:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:03:59.852+03	2021-05-21 16:03:59.859+03	
1a2ec24a-bee9-62e2-16d2-a7f8beb3b322	2021-05-21 16:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:04:19.853+03	2021-05-21 16:04:19.869+03	
254299fe-ea12-83af-9a89-e91f3518c522	2021-05-21 16:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:04:39.853+03	2021-05-21 16:04:39.872+03	
5632e647-9e4b-1698-9311-ddd7c37b7aa0	2021-05-21 16:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:04:59.853+03	2021-05-21 16:04:59.859+03	
780c3d80-87ea-fb23-ecd0-1b940d851a97	2021-05-21 16:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:05:20.853+03	2021-05-21 16:05:20.861+03	
84050831-8e29-5043-691d-bb439419fe64	2021-05-21 16:05:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:05:41.854+03	2021-05-21 16:05:41.859+03	
21801076-39d5-5aab-c51a-d7d503f515d3	2021-05-21 16:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:06:02.853+03	2021-05-21 16:06:02.859+03	
41bcbc22-d57f-26f7-3705-4e9378c8c0c2	2021-05-21 16:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:06:22.853+03	2021-05-21 16:06:22.86+03	
f6f128ef-4cb4-62ce-7a4d-5e86df89b6ee	2021-05-21 16:06:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:06:42.853+03	2021-05-21 16:06:42.86+03	
b3f7f062-ffdd-6757-49b6-59ce449aa0c8	2021-05-21 16:07:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:07:03.854+03	2021-05-21 16:07:03.865+03	
e96dd416-4234-95d9-8ab5-95afd0a6f0e7	2021-05-21 16:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:07:25.853+03	2021-05-21 16:07:25.86+03	
df7833d0-45ef-8c87-68e6-78d18e606abc	2021-05-21 16:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:07:45.853+03	2021-05-21 16:07:45.86+03	
6d7895b0-dc23-737b-d8c3-adef51d51ea5	2021-05-21 16:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:08:05.853+03	2021-05-21 16:08:05.859+03	
3091ec9d-0ded-b49e-a220-ec4c557d6212	2021-05-21 16:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:08:25.853+03	2021-05-21 16:08:25.872+03	
c0ebc9bc-e51e-7f3d-b41e-b2f66ee26426	2021-05-21 16:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:08:45.853+03	2021-05-21 16:08:45.861+03	
6ac6c61f-4551-5084-de66-450fb5f87937	2021-05-21 16:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:09:06.852+03	2021-05-21 16:09:06.859+03	
da6ea291-0560-3fe8-392c-5ffc22500167	2021-05-21 16:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:09:27.853+03	2021-05-21 16:09:27.861+03	
f6b1e7d1-59ed-e76c-55f0-4c161510dc56	2021-05-21 16:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:09:48.852+03	2021-05-21 16:09:48.859+03	
0649aac5-7ee2-7a72-46e8-141e3312b130	2021-05-21 16:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 16:10:00.853+03	2021-05-21 16:10:00.859+03	ERROR
8e5a72f9-acff-8e48-c1d4-e61a4e631118	2021-05-21 16:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:10:18.853+03	2021-05-21 16:10:18.86+03	
15978443-6343-1cf4-e008-6e6f9ae17fd7	2021-05-21 16:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:10:39.852+03	2021-05-21 16:10:39.859+03	
e9999534-42a0-a81e-71ac-792a1eb48df4	2021-05-21 16:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:10:59.853+03	2021-05-21 16:10:59.861+03	
3f719f07-0a88-c94a-fb12-d8d51523bfb4	2021-05-21 16:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:11:19.853+03	2021-05-21 16:11:19.859+03	
515ef098-4bcd-87f0-a262-74313a86227b	2021-05-21 16:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:11:39.853+03	2021-05-21 16:11:39.86+03	
61b00d65-16d8-3e47-88d6-2488d3ce24c6	2021-05-21 16:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:11:59.853+03	2021-05-21 16:11:59.86+03	
2fd558ce-3943-ef49-b67f-98a8df4bf1f0	2021-05-21 16:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:12:20.853+03	2021-05-21 16:12:20.86+03	
0ca52899-2263-fb9c-f116-7578ca54ed61	2021-05-21 16:12:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:12:41.853+03	2021-05-21 16:12:41.859+03	
41a94122-3bcc-b680-8cd4-5355f5cf0de6	2021-05-21 16:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:13:01.854+03	2021-05-21 16:13:01.861+03	
6b68b13f-3da1-35e2-0ccf-777dcc1826b8	2021-05-21 16:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:13:23.852+03	2021-05-21 16:13:23.859+03	
95fb6a37-4c46-4a1e-4f86-6f45f002e74d	2021-05-21 16:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:13:44.853+03	2021-05-21 16:13:44.872+03	
a59e42ba-d24a-3256-6135-c0d09b72ae3d	2021-05-21 16:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:14:04.853+03	2021-05-21 16:14:04.86+03	
ee09f821-d760-46ac-c690-e94bfb3f5c40	2021-05-21 16:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:14:25.853+03	2021-05-21 16:14:25.86+03	
69c17ddf-713e-1383-feed-9492e4612625	2021-05-21 16:14:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:14:46.853+03	2021-05-21 16:14:46.86+03	
456edd20-8cde-9ae8-0394-e46e927df42b	2021-05-21 16:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:15:07.853+03	2021-05-21 16:15:07.859+03	
2f61df97-2407-97de-e71f-3b2517d9cbc5	2021-05-21 16:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:15:28.852+03	2021-05-21 16:15:28.863+03	
88f1c582-bb13-9eab-63b6-e6129979bb8c	2021-05-21 16:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:15:48.852+03	2021-05-21 16:15:48.859+03	
162ef863-7745-a1f9-4d94-16ce52db8621	2021-05-21 16:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:16:08.853+03	2021-05-21 16:16:08.859+03	
6319869b-aec6-c265-2072-72f8fcbb2411	2021-05-21 16:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:16:29.853+03	2021-05-21 16:16:29.86+03	
b20f852f-f782-dd3d-d896-2f105ee50e50	2021-05-21 16:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:16:49.853+03	2021-05-21 16:16:49.861+03	
9573280a-3a9c-e3f6-24d4-7c6989e09fe7	2021-05-21 16:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:17:10.852+03	2021-05-21 16:17:10.859+03	
525c99db-9af0-d6f4-31b3-fbfc8206c901	2021-05-21 16:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:17:30.852+03	2021-05-21 16:17:30.859+03	
6dcc47f1-825c-3b4b-c285-ac7c8795ccc9	2021-05-21 16:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:17:50.852+03	2021-05-21 16:17:50.859+03	
d35bc55a-b890-cb28-38bd-8d1de87cf60c	2021-05-21 16:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:18:10.853+03	2021-05-21 16:18:10.862+03	
93af19c8-b47d-8b65-09dd-681916bf9e63	2021-05-21 16:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:18:32.852+03	2021-05-21 16:18:32.859+03	
ef872503-db08-c9e4-2e28-d9fdc64a929c	2021-05-21 16:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:18:52.853+03	2021-05-21 16:18:52.86+03	
1e0d971c-e430-2525-2129-30526f6ff651	2021-05-21 16:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:19:13.853+03	2021-05-21 16:19:13.859+03	
5213afab-50b9-faf5-42e5-396d2cf8a12f	2021-05-21 16:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:19:34.853+03	2021-05-21 16:19:34.859+03	
6af15021-a670-f07b-323f-386aacac7f5a	2021-05-21 16:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:19:55.853+03	2021-05-21 16:19:55.859+03	
f6c8b716-6fd8-296f-cf83-e94689febf28	2021-05-21 16:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:20:06.852+03	2021-05-21 16:20:06.859+03	
6b935349-c690-740b-54b3-d698f02c7db1	2021-05-21 16:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:20:26.853+03	2021-05-21 16:20:26.859+03	
7c9db0f4-98d9-1a86-6f0b-4f405930b808	2021-05-21 16:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:20:47.853+03	2021-05-21 16:20:47.859+03	
5413157b-4765-b423-b1e9-c51c352273e0	2021-05-21 16:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:00:02.852+03	2021-05-21 16:00:02.879+03	
6623fae1-a4ed-4ab7-3e10-067ae58f10cb	2021-05-21 16:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:00:22.853+03	2021-05-21 16:00:22.863+03	
58f380a0-48fb-2d3c-f8c7-5d962aec68bc	2021-05-21 16:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:00:43.853+03	2021-05-21 16:00:43.873+03	
08cc79e2-34b9-f11b-0552-0e0e5e69c061	2021-05-21 16:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:01:04.853+03	2021-05-21 16:01:04.869+03	
8f6529d8-4cd5-d190-17e4-8d0b7d513f50	2021-05-21 16:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:01:24.853+03	2021-05-21 16:01:24.861+03	
b4cd353f-9acb-3aac-aa68-492e1295a95a	2021-05-21 16:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:01:44.853+03	2021-05-21 16:01:44.859+03	
16d2d798-a107-f49b-2659-adbcfca8855a	2021-05-21 16:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:02:05.852+03	2021-05-21 16:02:05.859+03	
5d1a3365-29eb-ef6d-219f-86c227372b3f	2021-05-21 16:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:02:26.853+03	2021-05-21 16:02:26.86+03	
c7e9f4aa-8e56-06ca-6370-1cafa6914e0f	2021-05-21 16:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:02:48.853+03	2021-05-21 16:02:48.861+03	
b7f50ee8-0426-db07-ad13-9d446b415814	2021-05-21 16:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:03:09.852+03	2021-05-21 16:03:09.861+03	
c027fcd9-f61e-3ddd-c53a-d86fd337872b	2021-05-21 16:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:03:29.852+03	2021-05-21 16:03:29.891+03	
ae049228-032d-9061-139f-95b624daba3d	2021-05-21 16:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:03:49.852+03	2021-05-21 16:03:49.859+03	
d35bcede-499b-ba0f-071c-1d78d176fcc9	2021-05-21 16:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:04:09.852+03	2021-05-21 16:04:09.859+03	
42a596df-0c8f-489a-06fe-0adc5a39ddfd	2021-05-21 16:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:04:29.853+03	2021-05-21 16:04:29.86+03	
0cbd3a20-01d2-aef9-d0be-2c9286e3e7e4	2021-05-21 16:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:04:49.853+03	2021-05-21 16:04:49.859+03	
3bfaf6e8-fb23-fd7b-0fc3-1aaa09ead32f	2021-05-21 16:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:05:10.852+03	2021-05-21 16:05:10.86+03	
6dd5bfa7-07fd-99eb-3c70-278b0599a175	2021-05-21 16:05:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:05:31.853+03	2021-05-21 16:05:31.859+03	
f52b3b12-da2b-22cb-1852-c5c0d5138041	2021-05-21 16:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:05:52.853+03	2021-05-21 16:05:52.861+03	
e8c59840-a936-9bdc-6d28-5e99eaf1c399	2021-05-21 16:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:06:12.853+03	2021-05-21 16:06:12.86+03	
1801dd60-3b17-56ab-e567-723c1b19c987	2021-05-21 16:06:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:06:32.853+03	2021-05-21 16:06:32.861+03	
aa565739-26ab-f4a5-9dd3-7dc269c9a3af	2021-05-21 16:06:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:06:52.853+03	2021-05-21 16:06:52.86+03	
0d00e210-2a16-0254-1b74-7ebab748bf1a	2021-05-21 16:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:07:14.853+03	2021-05-21 16:07:14.859+03	
4c06431a-e5e3-c434-1c87-83c0183e81ec	2021-05-21 16:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:07:35.853+03	2021-05-21 16:07:35.86+03	
3724a999-2d04-9a0f-4013-7c313547fab4	2021-05-21 16:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:07:55.853+03	2021-05-21 16:07:55.865+03	
038b18b1-6eef-4f7f-6574-d7d2e438051c	2021-05-21 16:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:08:15.853+03	2021-05-21 16:08:15.86+03	
ffe1a43b-5a5f-81cc-8a8e-9f9cfb01b816	2021-05-21 16:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:08:35.853+03	2021-05-21 16:08:35.86+03	
55de1eb5-675e-43a0-b88f-683e907defea	2021-05-21 16:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:08:56.852+03	2021-05-21 16:08:56.86+03	
3c1eb1a0-e0ca-9235-adeb-76d6845d5807	2021-05-21 16:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:09:16.853+03	2021-05-21 16:09:16.865+03	
02532dc7-222a-2697-269f-cfdef6965066	2021-05-21 16:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:09:37.853+03	2021-05-21 16:09:37.861+03	
56c7deda-dbbb-ede7-28ba-72b9d9bc6be2	2021-05-21 16:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:09:58.853+03	2021-05-21 16:09:58.86+03	
ec5636f3-d13d-0469-395a-3eff4440a779	2021-05-21 16:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:10:08.853+03	2021-05-21 16:10:08.86+03	
91c17142-939b-071e-cb3a-c3b2f44a1850	2021-05-21 16:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:10:29.852+03	2021-05-21 16:10:29.86+03	
566fee93-8db9-f83b-a1af-d1de28c00515	2021-05-21 16:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:10:49.853+03	2021-05-21 16:10:49.859+03	
41123efb-6d39-3516-8a73-cafaf468b3ce	2021-05-21 16:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:11:09.853+03	2021-05-21 16:11:09.861+03	
ef021312-7f12-7c11-f41b-011c92af59f6	2021-05-21 16:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:11:29.853+03	2021-05-21 16:11:29.868+03	
3d82cbea-b86a-6e77-2237-121e74e983e8	2021-05-21 16:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:11:49.853+03	2021-05-21 16:11:49.86+03	
0cd99495-0920-b27e-6ffd-ae52561e33e8	2021-05-21 16:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:12:09.853+03	2021-05-21 16:12:09.865+03	
3aae763e-ae4e-f679-2aec-72a03882836c	2021-05-21 16:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:12:31.852+03	2021-05-21 16:12:31.859+03	
7db4556e-6dfb-3018-4246-ae8c42954fc1	2021-05-21 16:12:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:12:51.854+03	2021-05-21 16:12:51.86+03	
ad041f62-1646-cb16-f0a8-0a67ac63f4be	2021-05-21 16:13:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:13:12.853+03	2021-05-21 16:13:12.862+03	
870ab160-2465-c020-2bf7-63c4561021ba	2021-05-21 16:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:13:33.853+03	2021-05-21 16:13:33.861+03	
cebab90b-b196-3b36-29ca-600de8739ce5	2021-05-21 16:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:13:54.853+03	2021-05-21 16:13:54.859+03	
8a053c9a-2b14-005a-6f0e-5e89f48b9261	2021-05-21 16:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:14:15.852+03	2021-05-21 16:14:15.86+03	
7904a7d3-dbc1-731a-9f74-f492959db22b	2021-05-21 16:14:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:14:36.852+03	2021-05-21 16:14:36.859+03	
06ddb08e-f079-78b8-0e89-d8b1db79bbf4	2021-05-21 16:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:14:56.853+03	2021-05-21 16:14:56.861+03	
9c5d8eac-ab3c-c138-efb7-47b82987a17f	2021-05-21 16:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:15:17.853+03	2021-05-21 16:15:17.859+03	
be019ef2-684a-80e2-182d-71fae872ce3f	2021-05-21 16:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:15:38.852+03	2021-05-21 16:15:38.859+03	
52416bf2-2bf1-ae5e-2c9c-e27c4632c5bc	2021-05-21 16:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:15:58.853+03	2021-05-21 16:15:58.859+03	
81e54eb7-796f-22ec-7699-da268c65a5eb	2021-05-21 16:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:16:19.853+03	2021-05-21 16:16:19.86+03	
a7f22fc6-35d5-cb3a-16ab-1f6105ebc11f	2021-05-21 16:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:16:39.853+03	2021-05-21 16:16:39.859+03	
5ce13b97-a127-f850-0b22-5eaeda78c5f0	2021-05-21 16:16:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:16:59.853+03	2021-05-21 16:16:59.859+03	
f08c4236-7b9d-8aa5-e221-1739ba8da472	2021-05-21 16:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:17:20.852+03	2021-05-21 16:17:20.859+03	
1af05d7a-3462-8705-924d-6042da05ffc6	2021-05-21 16:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:17:40.852+03	2021-05-21 16:17:40.859+03	
2bdc3142-7421-b4d6-170d-cde5b77a3d38	2021-05-21 16:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:18:00.853+03	2021-05-21 16:18:00.859+03	
8694b303-4799-6074-83f6-495f75a1c350	2021-05-21 16:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:18:21.853+03	2021-05-21 16:18:21.862+03	
6db8183d-e8eb-143d-a3e6-a17936e434f3	2021-05-21 16:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:18:42.852+03	2021-05-21 16:18:42.86+03	
c4f456f4-de5a-58dd-3b59-60c810047e9e	2021-05-21 16:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:19:03.853+03	2021-05-21 16:19:03.869+03	
f09f84b1-0ce5-fd6e-4e2c-31770ee6bcaf	2021-05-21 16:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:19:24.853+03	2021-05-21 16:19:24.861+03	
042c3728-93d1-6fdb-a70e-313c17f76cf4	2021-05-21 16:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:19:45.852+03	2021-05-21 16:19:45.86+03	
f7766baa-32ad-dd1e-6430-9073ee7a00ed	2021-05-21 16:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 16:20:00.853+03	2021-05-21 16:20:00.86+03	ERROR
a68de3a6-e3f4-0f28-fafc-026d0cf53e49	2021-05-21 16:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:20:16.852+03	2021-05-21 16:20:16.859+03	
cf9c096e-3626-0546-6b45-797691fb0e0e	2021-05-21 16:20:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:20:36.854+03	2021-05-21 16:20:36.868+03	
6442bb58-554a-cc00-c106-6ae02e803925	2021-05-21 16:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:20:57.853+03	2021-05-21 16:20:57.859+03	
467a6202-64f2-6c37-54c9-3e8ef8127ed8	2021-05-23 02:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:35:42.853+03	2021-05-23 02:35:42.86+03	
ff49d17e-e64e-39bf-4c08-1c74f7ac429e	2021-05-21 16:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:21:07.853+03	2021-05-21 16:21:07.859+03	
063c1b02-dc9c-89af-e7ab-f4e2df071fdf	2021-05-21 21:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:59:59.853+03	2021-05-21 21:59:59.86+03	
c4052676-5f55-51e4-cf49-4bd7ca9c8061	2021-05-21 16:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:21:27.853+03	2021-05-21 16:21:27.86+03	
5f2771f9-67c9-508d-8a59-a6674a490883	2021-05-21 16:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:21:47.853+03	2021-05-21 16:21:47.859+03	
d2351898-3c29-336e-2613-2f7be7379707	2021-05-21 22:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:00:09.853+03	2021-05-21 22:00:09.867+03	
5d4e7469-5311-af29-3e22-a9c57927c394	2021-05-21 16:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:22:08.852+03	2021-05-21 16:22:08.858+03	
18cfad20-cf36-715a-1979-a6730fea6e37	2021-05-21 16:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:22:29.853+03	2021-05-21 16:22:29.86+03	
5c9e9d88-83a6-a3e6-9b20-11b9ea5c9620	2021-05-21 22:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:00:29.853+03	2021-05-21 22:00:29.898+03	
482e5508-120b-0024-7bfb-f4841f9ca0ce	2021-05-21 16:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:22:49.853+03	2021-05-21 16:22:49.859+03	
13a2cfde-42f4-2fb2-8006-471ae7b0a0df	2021-05-21 16:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:23:10.852+03	2021-05-21 16:23:10.859+03	
8cae07eb-63ef-4315-4189-689b59796240	2021-05-21 22:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:00:49.853+03	2021-05-21 22:00:49.861+03	
8bd47fd5-f147-7b42-d31e-a36f0304b02e	2021-05-21 16:23:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:23:31.852+03	2021-05-21 16:23:31.86+03	
7152dbfc-06d5-5685-0edb-289e573012cd	2021-05-21 16:23:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:23:51.852+03	2021-05-21 16:23:51.86+03	
1ba86e64-97f9-2a8c-c20b-93800043c7ba	2021-05-21 22:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:01:09.853+03	2021-05-21 22:01:09.859+03	
139d1533-b650-3e90-695f-474c5c1c38f0	2021-05-21 16:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:24:12.852+03	2021-05-21 16:24:12.859+03	
4231ce58-d7c4-7c47-b5bd-54a8c74117fd	2021-05-21 16:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:24:32.852+03	2021-05-21 16:24:32.859+03	
143cbeb5-61cf-f604-6013-bbb4003a0383	2021-05-21 22:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:01:29.853+03	2021-05-21 22:01:29.86+03	
2c9e093f-eaca-751f-aa46-571692e12f9b	2021-05-21 22:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:01:50.853+03	2021-05-21 22:01:50.859+03	
a4d07823-cf2b-1bd6-696d-ed715550a3a6	2021-05-21 22:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:02:11.853+03	2021-05-21 22:02:11.859+03	
b4f92904-e0f8-3f93-d680-c544ccdc9145	2021-05-21 22:02:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:02:33.853+03	2021-05-21 22:02:33.865+03	
951b86c0-5b35-a131-1706-04285287edae	2021-05-21 22:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:02:54.853+03	2021-05-21 22:02:54.859+03	
445d1fc4-b8c3-8f12-06cf-ed55ff880ae5	2021-05-21 22:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:03:15.853+03	2021-05-21 22:03:15.86+03	
68d5109f-8ad2-32a9-2a8f-dea7137a9a92	2021-05-21 22:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:03:37.853+03	2021-05-21 22:03:37.859+03	
117a7ed5-0b69-18da-e3dd-d74a0b7f9d85	2021-05-21 22:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:03:58.853+03	2021-05-21 22:03:58.86+03	
07f43d15-fbe1-5601-88ed-01978ab449e0	2021-05-21 22:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:04:20.852+03	2021-05-21 22:04:20.858+03	
bc9974b2-5ee7-5f0f-f8a8-d50bb401735b	2021-05-21 22:04:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:04:41.852+03	2021-05-21 22:04:41.86+03	
f40a5750-dcd9-a99f-5758-d6e7387cdbcd	2021-05-21 22:05:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:05:01.852+03	2021-05-21 22:05:01.883+03	
eebe8ddd-aa85-eec1-492f-3a21ad498196	2021-05-21 22:05:21.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:05:21.853+03	2021-05-21 22:05:21.871+03	
834d3c10-7877-084b-fa85-441518716295	2021-05-21 22:05:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:05:41.853+03	2021-05-21 22:05:41.859+03	
e4e1123e-e71c-f2bc-0bf6-78e5f4af4081	2021-05-21 22:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:06:02.853+03	2021-05-21 22:06:02.861+03	
34cddb75-7e56-c1cf-1072-c6bcce298f6a	2021-05-21 22:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:06:23.852+03	2021-05-21 22:06:23.871+03	
09331aa0-c0e9-422a-da33-be0aceca1517	2021-05-21 22:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:06:44.853+03	2021-05-21 22:06:44.859+03	
3202ce09-cfa6-977d-edd8-25911392505a	2021-05-21 22:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:07:04.853+03	2021-05-21 22:07:04.86+03	
50bdd562-3a3d-6196-920b-65edd15c1e49	2021-05-21 22:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:07:24.853+03	2021-05-21 22:07:24.86+03	
a2f9b1e6-1561-65e7-63a1-ff4ddfcb4fac	2021-05-21 22:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:07:44.853+03	2021-05-21 22:07:44.859+03	
b2facd6b-582d-5c2b-49ec-222375ba2987	2021-05-21 22:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:08:05.852+03	2021-05-21 22:08:05.859+03	
48f592b4-07ee-2c0c-ece7-03cf84ea4895	2021-05-21 22:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:08:25.853+03	2021-05-21 22:08:25.868+03	
d3153c63-cee5-fcf7-1efc-53ed133e8f71	2021-05-21 22:08:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:08:46.853+03	2021-05-21 22:08:46.863+03	
ecc21d19-0346-7971-cd4d-44f44ec6dfee	2021-05-21 22:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:09:06.853+03	2021-05-21 22:09:06.867+03	
bc20d540-aabd-dea8-4d9b-70f6b3bb04dc	2021-05-21 22:09:26.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:09:26.86+03	2021-05-21 22:09:26.868+03	
633e5932-375d-df2d-6c0a-df0a8c739c78	2021-05-21 22:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:09:47.852+03	2021-05-21 22:09:47.864+03	
1e99302e-63ec-7831-16e6-78e691f7deaa	2021-05-21 22:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 22:10:00.853+03	2021-05-21 22:10:00.858+03	ERROR
fc55cb50-f828-23dc-bdc8-6ee212f5d852	2021-05-21 22:10:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:10:17.852+03	2021-05-21 22:10:17.859+03	
cc5966f6-c90d-d4b1-913f-7d68d66723ac	2021-05-21 22:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:10:38.853+03	2021-05-21 22:10:38.859+03	
c3ce95e6-46a2-1d7e-0a74-44385a718232	2021-05-21 22:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:10:58.853+03	2021-05-21 22:10:58.86+03	
8e5c5f41-8eab-a810-5a7d-f69acf337c56	2021-05-21 22:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:11:19.852+03	2021-05-21 22:11:19.858+03	
4b6a6907-5084-6398-0e3c-3267f2d5de0b	2021-05-21 22:11:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:11:40.853+03	2021-05-21 22:11:40.859+03	
b6305e2f-afe6-5826-6585-3e1dd5691e22	2021-05-21 22:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:12:00.853+03	2021-05-21 22:12:00.86+03	
b60d7e55-ef84-cefe-d4f0-bab562e81a20	2021-05-21 22:12:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:12:21.852+03	2021-05-21 22:12:21.859+03	
a14a3f87-7f23-948a-26ef-e2c5839ab77b	2021-05-21 22:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:12:42.853+03	2021-05-21 22:12:42.858+03	
0f8a48d0-cbc3-a961-f51b-4c4c0e662fbe	2021-05-21 22:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:13:04.853+03	2021-05-21 22:13:04.86+03	
7fe821fc-46c2-7ab0-e16b-2c0f39971373	2021-05-21 22:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:13:25.853+03	2021-05-21 22:13:25.859+03	
4635fddc-c0cf-d02f-d1cf-ddf59d18f5bb	2021-05-21 22:13:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:13:46.852+03	2021-05-21 22:13:46.859+03	
6d900981-5896-fdd8-d58f-71636b19755e	2021-05-21 22:14:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:14:06.854+03	2021-05-21 22:14:06.86+03	
80d184ae-ccec-d816-2c8f-8eb94c67c782	2021-05-21 22:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:14:27.853+03	2021-05-21 22:14:27.86+03	
2f31e098-9e04-278e-96b3-c9cfcf0c7d5a	2021-05-21 22:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:14:49.853+03	2021-05-21 22:14:49.859+03	
7889174a-5a69-fd65-f972-8ec5adab451c	2021-05-21 22:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:15:09.853+03	2021-05-21 22:15:09.86+03	
9d6ab1d1-de00-0e03-58b7-2ec4dd8ba789	2021-05-21 22:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:15:30.852+03	2021-05-21 22:15:30.859+03	
1c54bd6e-8832-c3db-b812-0db780daa5fb	2021-05-21 22:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:15:50.853+03	2021-05-21 22:15:50.859+03	
55fb97cf-db30-9bf3-e73d-fe2e40d4237b	2021-05-21 22:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:16:10.853+03	2021-05-21 22:16:10.86+03	
470e413b-f657-6ab5-2502-b788b6e2216a	2021-05-21 22:16:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:16:31.852+03	2021-05-21 22:16:31.866+03	
9528b1b8-39f1-cecd-bea0-d28d5bb07923	2021-05-21 22:16:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:16:51.854+03	2021-05-21 22:16:51.861+03	
edee1685-10c2-5495-2646-6e15fba5de35	2021-05-21 22:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:17:12.853+03	2021-05-21 22:17:12.86+03	
2bc791fd-5ed6-e95d-3a7b-d763c8735531	2021-05-21 16:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:21:17.853+03	2021-05-21 16:21:17.86+03	
dfb0aae0-308a-cc23-ec5f-d53b2ec99c0a	2021-05-21 16:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:21:37.853+03	2021-05-21 16:21:37.859+03	
5f9621e3-cbef-7283-7107-65c32582d510	2021-05-21 16:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:21:58.852+03	2021-05-21 16:21:58.859+03	
7f040082-1276-df4a-1d91-087d197b15fd	2021-05-21 16:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:22:18.853+03	2021-05-21 16:22:18.858+03	
333fea1f-f706-b41a-8a01-026e2315d5f1	2021-05-21 16:22:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:22:39.853+03	2021-05-21 16:22:39.859+03	
891759d6-11b9-5c74-e203-c4abf1a86502	2021-05-21 16:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:22:59.853+03	2021-05-21 16:22:59.86+03	
bbdb18d0-285f-d2e3-a397-546c5ab52f46	2021-05-21 16:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:23:20.853+03	2021-05-21 16:23:20.859+03	
14b81bed-295c-b130-c45e-cd1853a7e041	2021-05-21 16:23:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:23:41.852+03	2021-05-21 16:23:41.859+03	
d58f103c-4c55-7dbf-c6a2-7ea21b18b0ef	2021-05-21 16:24:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:24:01.853+03	2021-05-21 16:24:01.86+03	
cefeff37-1edd-f751-6c2f-05425eee91a2	2021-05-21 16:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:24:22.852+03	2021-05-21 16:24:22.859+03	
24483bea-7d8d-d306-0afb-d44dc099b4d0	2021-05-21 16:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:24:42.853+03	2021-05-21 16:24:42.86+03	
63208add-2adb-dbd8-36bd-b776d4a01920	2021-05-21 16:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:24:52.853+03	2021-05-21 16:24:52.86+03	
e328a4bf-ad4b-0f02-d234-b1b18b40a2c3	2021-05-21 16:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:25:03.853+03	2021-05-21 16:25:03.864+03	
88075c3e-c15d-b98b-fc46-50c6305d2db2	2021-05-21 16:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:25:13.853+03	2021-05-21 16:25:13.859+03	
572a4fa8-12bf-99d5-cc99-5b65dbab95a3	2021-05-21 16:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:25:24.852+03	2021-05-21 16:25:24.859+03	
17a0be52-022e-cfee-831a-aa1ffcb80a09	2021-05-21 16:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:25:34.853+03	2021-05-21 16:25:34.859+03	
643a80b4-5643-8310-113e-75e27f55b646	2021-05-21 16:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:25:45.853+03	2021-05-21 16:25:45.871+03	
3044e2b8-a8af-73ff-4039-a7cf6a296814	2021-05-21 16:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:25:56.852+03	2021-05-21 16:25:56.861+03	
079556a3-f73d-0f1c-e8f2-25bb89f2d6e4	2021-05-21 16:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:26:06.853+03	2021-05-21 16:26:06.861+03	
89953b03-56c5-c5af-624b-6ac2a49cab41	2021-05-21 16:26:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:26:16.854+03	2021-05-21 16:26:16.864+03	
64ace6cb-b5e5-1de8-3533-52a73ee5ed83	2021-05-21 16:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:26:27.853+03	2021-05-21 16:26:27.875+03	
7a15f192-6a57-9e90-efb1-0df05367ab63	2021-05-21 16:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:26:37.853+03	2021-05-21 16:26:37.862+03	
272cdda7-4bd6-3028-c09c-5f73539dc06c	2021-05-21 16:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:26:47.853+03	2021-05-21 16:26:47.86+03	
f1c703cd-2c47-168a-5528-252194e21127	2021-05-21 16:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:26:57.853+03	2021-05-21 16:26:57.859+03	
8820cda7-0cc9-d828-95c6-73cd3d44170a	2021-05-21 16:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:27:07.853+03	2021-05-21 16:27:07.874+03	
17fe83cb-4c9f-ff77-0752-65e42baf5e77	2021-05-21 16:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:27:18.852+03	2021-05-21 16:27:18.859+03	
76ff48f3-1ff5-b498-7620-c8b24a48c5cd	2021-05-21 16:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:27:28.853+03	2021-05-21 16:27:28.859+03	
585c2e3d-24ed-3a0c-0814-0571cb147cd7	2021-05-21 16:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:27:39.853+03	2021-05-21 16:27:39.859+03	
314bf61c-8194-9d3d-02da-bc45facca200	2021-05-21 16:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:27:49.853+03	2021-05-21 16:27:49.863+03	
d484b9b6-5931-1fee-e823-966edc031001	2021-05-21 16:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:27:59.853+03	2021-05-21 16:27:59.859+03	
8a8c3ee9-3fe5-97e0-f48b-fbc95ca5c3ea	2021-05-21 16:28:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:28:10.853+03	2021-05-21 16:28:10.86+03	
5a43b03f-4839-27fe-29d4-041b7d2f9759	2021-05-21 16:28:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:28:21.853+03	2021-05-21 16:28:21.86+03	
a54eedac-e2bf-4e0d-bfc0-0c4940cb8021	2021-05-21 16:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:28:32.853+03	2021-05-21 16:28:32.861+03	
8828ef60-bdbe-66d5-e887-24c63d1ffac8	2021-05-21 16:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:28:42.853+03	2021-05-21 16:28:42.861+03	
763fafc3-b92a-2dc0-849d-ffffd071ef94	2021-05-21 16:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:28:52.853+03	2021-05-21 16:28:52.859+03	
4aa31f86-275c-09ef-4f65-727f4f20c37f	2021-05-21 16:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:29:02.853+03	2021-05-21 16:29:02.865+03	
9ca3a1b8-a8c0-a4f5-b9b4-9d178db2184f	2021-05-21 16:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:29:12.853+03	2021-05-21 16:29:12.86+03	
104eed0d-49f1-f97c-45c3-8044cbef8c61	2021-05-21 16:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:29:22.853+03	2021-05-21 16:29:22.859+03	
80d5135d-58b9-81fe-d8f2-cbf977b63d6f	2021-05-21 16:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:29:33.853+03	2021-05-21 16:29:33.86+03	
b054492e-ce24-1fca-ddf9-4d4f9371461f	2021-05-21 16:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:29:44.853+03	2021-05-21 16:29:44.872+03	
6db20121-c7bd-95c6-bcb9-80ae14c23ade	2021-05-21 16:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:29:54.853+03	2021-05-21 16:29:54.859+03	
4ea5dad9-7bb0-0256-40d1-79f683aabf22	2021-05-21 16:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 16:30:00.853+03	2021-05-21 16:30:00.857+03	ERROR
f0242e3a-d117-2ef8-c13a-0a96ddb314a5	2021-05-21 16:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:30:05.852+03	2021-05-21 16:30:05.861+03	
24d21340-47d3-9be1-e4af-b5421f62ebd9	2021-05-21 16:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:30:15.852+03	2021-05-21 16:30:15.859+03	
4866307a-36f0-f530-b33e-a753fb47909c	2021-05-21 16:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:30:25.853+03	2021-05-21 16:30:25.859+03	
df23092d-827d-1355-dac1-ba11e0ccf74e	2021-05-21 16:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:30:35.853+03	2021-05-21 16:30:35.862+03	
cedd31b3-2432-ee3a-4815-22ba406478a8	2021-05-21 16:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:30:45.853+03	2021-05-21 16:30:45.861+03	
2733d630-fd3b-f438-e7d5-eac42bcded4b	2021-05-21 16:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:30:55.853+03	2021-05-21 16:30:55.861+03	
a47fb076-f424-1509-9ded-bc3e72f915d1	2021-05-21 16:31:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:31:05.853+03	2021-05-21 16:31:05.861+03	
9934570e-10fa-5c26-feaa-0e5cd5d4cd62	2021-05-21 16:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:31:15.853+03	2021-05-21 16:31:15.86+03	
81077b9e-9376-8b4f-a153-8857040e77a9	2021-05-21 16:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:31:25.853+03	2021-05-21 16:31:25.86+03	
5068d5ee-3cc0-8112-b345-feb9a6637676	2021-05-21 16:31:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:31:36.852+03	2021-05-21 16:31:36.86+03	
28a52bb8-af93-3560-df07-9d7dd568de77	2021-05-21 16:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:31:46.853+03	2021-05-21 16:31:46.861+03	
941057c4-c8b9-7270-7722-ee007fef6a51	2021-05-21 16:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:31:57.853+03	2021-05-21 16:31:57.86+03	
0c922efd-07bd-8c6d-1003-40155bc9c682	2021-05-21 16:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:32:07.853+03	2021-05-21 16:32:07.859+03	
b0c218f8-bcc7-754c-2c9e-d640a49dd2b4	2021-05-21 16:32:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:32:18.854+03	2021-05-21 16:32:18.86+03	
fed44bd8-03a8-68d1-fdb9-92456e301751	2021-05-21 16:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:32:29.853+03	2021-05-21 16:32:29.859+03	
9f5b5cc4-e7e7-3cfb-a28e-f60f0df20dc0	2021-05-21 16:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:32:40.852+03	2021-05-21 16:32:40.859+03	
df6b77fd-21fb-9b46-0fd3-8a1e362227b7	2021-05-21 16:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:32:50.852+03	2021-05-21 16:32:50.858+03	
c266850d-4177-2e8a-760e-b3c7c37debc3	2021-05-21 16:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:33:00.853+03	2021-05-21 16:33:00.86+03	
be196dc4-420b-0ce4-f28e-c1999353f41e	2021-05-21 16:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:33:10.853+03	2021-05-21 16:33:10.859+03	
848dcfe3-ae89-5473-497a-496cf6a4cf0b	2021-05-21 16:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:33:20.853+03	2021-05-21 16:33:20.859+03	
38ad3454-7a71-0cbd-f22c-59c7177e742f	2021-05-21 16:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:33:31.853+03	2021-05-21 16:33:31.859+03	
d9905d4b-2229-59dc-7a67-c402f2adf573	2021-05-21 16:33:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:33:41.853+03	2021-05-21 16:33:41.859+03	
38084bc6-5b34-9a45-846e-c68306beb504	2021-05-21 16:34:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:34:01.853+03	2021-05-21 16:34:01.907+03	
b1643d07-4d87-1800-b41c-b3934a357783	2021-05-21 16:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:34:22.853+03	2021-05-21 16:34:22.877+03	
9372431d-eb27-2531-c3b9-a8da0b9b4b2a	2021-05-21 16:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:34:44.853+03	2021-05-21 16:34:44.875+03	
40d74127-829e-e552-21a7-c05d36cf24de	2021-05-21 16:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:35:04.853+03	2021-05-21 16:35:04.86+03	
3a15a063-0f53-a560-a677-049ab276c007	2021-05-21 16:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:35:25.852+03	2021-05-21 16:35:25.86+03	
8026db64-f071-42ff-5e7b-c5c19764b436	2021-05-21 16:35:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:35:46.853+03	2021-05-21 16:35:46.86+03	
bbde51fb-5c6c-968c-ae9f-cf4eea2e1016	2021-05-21 16:36:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:36:07.853+03	2021-05-21 16:36:07.859+03	
ca00e86b-e749-da6a-a5a1-b0cea4b34638	2021-05-21 16:36:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:36:28.853+03	2021-05-21 16:36:28.86+03	
6b574e5d-527e-d576-c132-f6494ca52e3f	2021-05-21 16:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:36:49.852+03	2021-05-21 16:36:49.858+03	
897151ad-fb53-dc75-07a9-f88d3d472603	2021-05-21 16:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:37:09.853+03	2021-05-21 16:37:09.861+03	
069658c2-36d0-53cf-801a-2a51aa2aa037	2021-05-21 16:37:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:37:30.853+03	2021-05-21 16:37:30.86+03	
6d5780be-61b0-3da9-bb2f-777f04428537	2021-05-21 16:37:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:37:51.853+03	2021-05-21 16:37:51.859+03	
3166cf6b-34f1-553f-f8f1-5dcf4edb3874	2021-05-21 16:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:38:12.853+03	2021-05-21 16:38:12.86+03	
685d6a0b-b9d3-d7c0-a1c9-6046812bc804	2021-05-21 16:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:38:32.853+03	2021-05-21 16:38:32.861+03	
d2fbf857-8498-77f0-07b2-43c6f55e7dca	2021-05-21 16:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:38:52.853+03	2021-05-21 16:38:52.859+03	
548b7742-ceba-8c19-54d1-310a0fa257d1	2021-05-21 16:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:39:12.853+03	2021-05-21 16:39:12.859+03	
fc30bdfe-fb34-4deb-4e84-26acc17bd1dc	2021-05-21 16:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:39:32.853+03	2021-05-21 16:39:32.87+03	
0f936536-e176-1df7-3ff1-52acaeaeb5b4	2021-05-21 16:39:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:39:53.853+03	2021-05-21 16:39:53.863+03	
b7fdb8e2-e2f0-0d9f-676e-9e6591afd8ed	2021-05-21 16:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:40:03.853+03	2021-05-21 16:40:03.869+03	
f5992fbc-4756-9f33-bc71-85c2e07b8c13	2021-05-21 16:40:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:40:24.853+03	2021-05-21 16:40:24.867+03	
68cf3430-fd26-ed24-9fa2-d2d3f47c8819	2021-05-21 16:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:40:44.853+03	2021-05-21 16:40:44.859+03	
22bee95c-c716-a0cd-33bf-674a2d385ad8	2021-05-21 16:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:41:04.853+03	2021-05-21 16:41:04.86+03	
e512e39f-0313-5167-bc28-d1bed8d2ef52	2021-05-21 16:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:41:25.853+03	2021-05-21 16:41:25.862+03	
67b0a1a9-7395-234a-70cc-4d49e4f1f872	2021-05-21 16:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:41:45.853+03	2021-05-21 16:41:45.863+03	
42790f09-ad76-6800-23f7-a50f41186e4c	2021-05-21 16:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:42:05.853+03	2021-05-21 16:42:05.859+03	
2c73c9c7-876b-6b2b-67a1-1e523cc77f19	2021-05-21 16:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:42:25.853+03	2021-05-21 16:42:25.86+03	
a94fd971-9da6-e8fa-9ea9-dc414edd4d68	2021-05-21 16:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:42:46.852+03	2021-05-21 16:42:46.86+03	
a7853aa4-10ad-4a88-1d68-75faf8e4710e	2021-05-21 16:43:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:43:06.852+03	2021-05-21 16:43:06.859+03	
63f2e4ae-29d6-230b-3c7d-2049eac6d82a	2021-05-21 16:43:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:43:26.853+03	2021-05-21 16:43:26.86+03	
fbb3c938-a60e-b3bd-2b59-e9d812bd34be	2021-05-21 16:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:43:47.853+03	2021-05-21 16:43:47.86+03	
b5999927-4672-eb62-0f63-a0ca89c13a9e	2021-05-21 16:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:44:08.853+03	2021-05-21 16:44:08.86+03	
bf7f871a-725f-99b7-9a11-6691c87ce601	2021-05-21 16:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:44:30.852+03	2021-05-21 16:44:30.859+03	
69ae257c-747f-f3a8-3989-69d5995fc3c9	2021-05-21 16:44:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:44:51.853+03	2021-05-21 16:44:51.859+03	
5f53950b-3bf0-c7ee-0da5-1367776d239e	2021-05-21 16:45:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:45:11.853+03	2021-05-21 16:45:11.862+03	
adbbb762-8251-18c0-f7d5-97c0ff1357a1	2021-05-21 16:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:45:32.853+03	2021-05-21 16:45:32.862+03	
72df7bab-2982-a57e-29b9-09a4c2eb1195	2021-05-21 16:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:45:53.853+03	2021-05-21 16:45:53.867+03	
60d52ae6-3eb5-71bd-5d6b-77334a689ac6	2021-05-21 16:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:46:13.853+03	2021-05-21 16:46:13.861+03	
c4b65907-cbe0-1a58-b4b9-c4a22ab8c524	2021-05-21 16:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:46:33.853+03	2021-05-21 16:46:33.861+03	
4ad0c768-c4d0-bc23-323f-c7fc8ec56ce5	2021-05-21 16:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:46:53.853+03	2021-05-21 16:46:53.86+03	
406714e9-4d07-e18b-1a0e-b6dbb6694a75	2021-05-21 16:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:47:14.853+03	2021-05-21 16:47:14.861+03	
6b3a6490-192f-74f5-5167-764088c2d96e	2021-05-21 16:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:47:35.853+03	2021-05-21 16:47:35.859+03	
3f86a2a3-2b51-9054-ed3a-5cc23d62b050	2021-05-21 16:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:47:55.853+03	2021-05-21 16:47:55.859+03	
a09625a6-fcd9-2369-c691-0786778f826d	2021-05-21 16:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:48:15.853+03	2021-05-21 16:48:15.863+03	
93d89206-c895-0e90-0d17-03554f13559f	2021-05-21 16:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:48:35.853+03	2021-05-21 16:48:35.869+03	
16653e29-1137-3b24-6e64-91445e691eba	2021-05-21 16:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:48:55.853+03	2021-05-21 16:48:55.86+03	
fe64c607-7e5e-ca40-7336-9fafcdab7368	2021-05-21 16:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:49:15.853+03	2021-05-21 16:49:15.861+03	
8b6f5184-632c-742a-ba71-0e09136aad0e	2021-05-21 16:49:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:49:36.852+03	2021-05-21 16:49:36.859+03	
dbabd9ee-dba9-de3b-12dd-1aac306868cd	2021-05-21 16:50:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 16:50:00.853+03	2021-05-21 16:50:00.86+03	ERROR
5878f647-224f-f6e9-5595-9e023213eeb9	2021-05-21 16:50:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:50:16.852+03	2021-05-21 16:50:16.861+03	
7ad28ccf-65fa-1e69-f5c7-c7f6ed61c32a	2021-05-21 16:50:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:50:36.853+03	2021-05-21 16:50:36.861+03	
013318d7-876f-bf76-430e-19a205c6271b	2021-05-21 16:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:50:57.853+03	2021-05-21 16:50:57.861+03	
a489bbaa-0774-9332-b5fd-0e98728ed034	2021-05-21 16:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:51:17.853+03	2021-05-21 16:51:17.859+03	
81cc048f-8a50-9149-ed8c-7ec5d82a2241	2021-05-21 16:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:51:38.852+03	2021-05-21 16:51:38.859+03	
63425b12-1ef3-bd72-561a-5dfd1a2c8211	2021-05-21 16:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:51:58.852+03	2021-05-21 16:51:58.859+03	
653a6bb0-0587-7257-b737-477374976784	2021-05-21 16:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:52:18.853+03	2021-05-21 16:52:18.859+03	
a55d6db0-aaad-5266-471a-02ff9952d4f3	2021-05-21 16:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:52:38.853+03	2021-05-21 16:52:38.86+03	
31911f82-e261-8790-24a1-23b093106282	2021-05-21 16:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:52:58.853+03	2021-05-21 16:52:58.859+03	
072d8fb4-05a7-0897-7116-241291cc7d28	2021-05-21 16:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:53:19.852+03	2021-05-21 16:53:19.859+03	
bb5f9389-e8a6-a6e1-506e-7e4bec096533	2021-05-21 16:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:53:39.852+03	2021-05-21 16:53:39.859+03	
c44dec75-90e5-6e4c-b3b8-8e1567e8b7e9	2021-05-21 16:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:54:00.853+03	2021-05-21 16:54:00.859+03	
58ec6da1-4114-ff61-f15a-5781ccb18452	2021-05-21 16:54:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:54:21.853+03	2021-05-21 16:54:21.859+03	
c7cc0228-f60a-0a53-1fe2-9e0489369a45	2021-05-21 16:54:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:54:41.854+03	2021-05-21 16:54:41.86+03	
7067844c-8436-be4b-a3bc-fa7ee1512ba6	2021-05-21 16:33:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:33:51.853+03	2021-05-21 16:33:51.861+03	
b44a7c09-1855-cf23-3783-f5f2aef1748a	2021-05-21 16:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:34:11.853+03	2021-05-21 16:34:11.859+03	
5462d680-2888-47a9-6759-97edc54336a9	2021-05-21 16:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:34:33.853+03	2021-05-21 16:34:33.864+03	
b63b8b15-971e-8db5-2610-200882f0d8a1	2021-05-21 16:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:34:54.853+03	2021-05-21 16:34:54.859+03	
253cff8c-3911-6aa7-ba97-4889d1e47a39	2021-05-21 16:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:35:14.853+03	2021-05-21 16:35:14.863+03	
bc305c4b-501d-35b6-811b-4905903a1d3c	2021-05-21 16:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:35:35.853+03	2021-05-21 16:35:35.873+03	
fd694f0f-6d35-3ad2-22b6-960000eb8e5c	2021-05-21 16:35:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:35:57.853+03	2021-05-21 16:35:57.861+03	
88d8ff2f-0f03-9ac8-21cb-5eea4767b6dd	2021-05-21 16:36:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:36:18.852+03	2021-05-21 16:36:18.863+03	
76052e6a-0570-9ad6-dcc1-e8fa57db2d39	2021-05-21 16:36:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:36:38.853+03	2021-05-21 16:36:38.86+03	
049087c2-4adc-4a20-c493-547fb0252819	2021-05-21 16:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:36:59.853+03	2021-05-21 16:36:59.861+03	
b1348d05-632f-491f-b354-a1be5f451e1e	2021-05-21 16:37:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:37:20.853+03	2021-05-21 16:37:20.859+03	
aa2c41f7-52ee-c7f5-b2f7-4fbc5ac989e9	2021-05-21 16:37:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:37:41.852+03	2021-05-21 16:37:41.859+03	
a8581d16-46cf-91da-f957-b907d0aaa61e	2021-05-21 16:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:38:02.853+03	2021-05-21 16:38:02.861+03	
999981d5-b7db-eb4b-3c54-fb95d85b0b52	2021-05-21 16:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:38:22.853+03	2021-05-21 16:38:22.863+03	
6d3f6ed6-479f-1fb1-9a6c-950ffa44e287	2021-05-21 16:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:38:42.853+03	2021-05-21 16:38:42.86+03	
9d38f2c7-7c9b-a515-2cf9-306852b476d6	2021-05-21 16:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:39:02.853+03	2021-05-21 16:39:02.86+03	
87affea0-d0a2-818a-060e-14ecf56b4e6d	2021-05-21 16:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:39:22.853+03	2021-05-21 16:39:22.859+03	
9778d056-9a31-b112-f4b7-a3b536807dba	2021-05-21 16:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:39:42.853+03	2021-05-21 16:39:42.859+03	
a93d9a86-edc4-db04-f7f7-760a81820785	2021-05-21 16:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 16:40:00.853+03	2021-05-21 16:40:00.858+03	ERROR
34a199eb-4d5e-56f4-6f12-96955c13f007	2021-05-21 16:40:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:40:14.853+03	2021-05-21 16:40:14.859+03	
a3aff2f3-55d2-5723-954a-f4ffb3f1e620	2021-05-21 16:40:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:40:34.853+03	2021-05-21 16:40:34.871+03	
1a5c4e2e-2ae8-0a22-969a-4e0d0569a00f	2021-05-21 16:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:40:54.853+03	2021-05-21 16:40:54.863+03	
ad7618cd-1a64-747e-9cf5-70b7eaa6eccd	2021-05-21 16:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:41:15.853+03	2021-05-21 16:41:15.861+03	
ef3d5764-57bb-8c21-f2db-1ad76fe81c24	2021-05-21 16:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:41:35.853+03	2021-05-21 16:41:35.859+03	
de374f64-6c1f-e0f3-8314-c27ebbfc0116	2021-05-21 16:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:41:55.853+03	2021-05-21 16:41:55.859+03	
08830a13-82e9-f86a-50da-fe536e6ad492	2021-05-21 16:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:42:15.853+03	2021-05-21 16:42:15.861+03	
f4144200-4426-f2d7-df38-a5ba0d888b9b	2021-05-21 16:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:42:35.853+03	2021-05-21 16:42:35.868+03	
a6fa573f-eb46-c556-80cd-4d97a2ff087f	2021-05-21 16:42:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:42:56.852+03	2021-05-21 16:42:56.872+03	
adbc28ee-0085-5add-734e-7ae3ceb68be7	2021-05-21 16:43:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:43:16.852+03	2021-05-21 16:43:16.861+03	
561fc0eb-1a0e-fb38-e807-54f59b4ea4ea	2021-05-21 16:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:43:37.852+03	2021-05-21 16:43:37.859+03	
5563fe0d-3661-d5cf-cb16-60bdd29c670b	2021-05-21 16:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:43:57.853+03	2021-05-21 16:43:57.864+03	
1758470a-61ea-8e44-3b00-b52a4932f6c5	2021-05-21 16:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:44:19.853+03	2021-05-21 16:44:19.859+03	
c4f26577-bdab-cd5c-b84f-d01c6b87c5a6	2021-05-21 16:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:44:40.853+03	2021-05-21 16:44:40.863+03	
31bad5b7-fbb6-f42b-4f70-e13cafff3383	2021-05-21 16:45:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:45:01.853+03	2021-05-21 16:45:01.86+03	
7f1266db-b078-f45f-71ef-a3151ed612da	2021-05-21 16:45:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:45:21.854+03	2021-05-21 16:45:21.859+03	
503cd581-f0da-9a36-fc07-cc94c6762047	2021-05-21 16:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:45:43.853+03	2021-05-21 16:45:43.869+03	
ad7e9250-5d78-7446-9fbc-c9cdf7883bc1	2021-05-21 16:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:46:03.853+03	2021-05-21 16:46:03.859+03	
393cc58d-4f0e-bc4b-7f82-a4e8f48164b8	2021-05-21 16:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:46:23.853+03	2021-05-21 16:46:23.86+03	
204e2078-631a-b8ff-aaa0-8a8d0488ce56	2021-05-21 16:46:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:46:43.853+03	2021-05-21 16:46:43.859+03	
2fc0c3d2-72b6-32fc-cf76-5b1a71cef8ff	2021-05-21 16:47:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:47:03.853+03	2021-05-21 16:47:03.86+03	
c943d1ad-d036-48e0-e6e5-4220cc025f40	2021-05-21 16:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:47:24.853+03	2021-05-21 16:47:24.86+03	
ebdf3e7b-83f2-0669-8e87-c1613c6d82dc	2021-05-21 16:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:47:45.853+03	2021-05-21 16:47:45.859+03	
5cc40831-2672-ec98-d0ab-ec056ea2832c	2021-05-21 16:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:48:05.853+03	2021-05-21 16:48:05.861+03	
8ce51bd9-e8e8-f4b6-ecb7-ca6ff3b6c612	2021-05-21 16:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:48:25.853+03	2021-05-21 16:48:25.859+03	
700c738d-cc31-399d-c253-2f6da0864c04	2021-05-21 16:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:48:45.853+03	2021-05-21 16:48:45.86+03	
0ad1e712-ce1e-ea23-04ce-c6d75839880a	2021-05-21 16:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:49:05.853+03	2021-05-21 16:49:05.859+03	
976f4475-6cf3-2fc0-2b2b-c6afd3ea3e26	2021-05-21 16:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:49:26.852+03	2021-05-21 16:49:26.859+03	
4c630a74-2f2b-e707-c21e-c02bc2722829	2021-05-21 16:49:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:49:46.852+03	2021-05-21 16:49:46.869+03	
eeee7774-a96f-455f-a528-c628653524d7	2021-05-21 16:49:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:49:56.852+03	2021-05-21 16:49:56.859+03	
8b3ba275-f932-5624-2ea4-d9d20aa8690e	2021-05-21 16:50:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:50:06.852+03	2021-05-21 16:50:06.86+03	
123ae599-43c1-b238-357c-c1fe099711b7	2021-05-21 16:50:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:50:26.852+03	2021-05-21 16:50:26.859+03	
a48c2a4a-37f3-d248-0dd8-91c8856517bc	2021-05-21 16:50:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:50:46.853+03	2021-05-21 16:50:46.861+03	
d077f2d6-0d8f-1c87-0772-9d5a168932d6	2021-05-21 16:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:51:07.853+03	2021-05-21 16:51:07.86+03	
56b6a40f-b2b0-4364-72ae-2245ac479b45	2021-05-21 16:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:51:28.852+03	2021-05-21 16:51:28.861+03	
b3f63da9-fec3-9f72-26a4-fc596f37e56d	2021-05-21 16:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:51:48.852+03	2021-05-21 16:51:48.871+03	
8aafd246-5c69-55f0-eaee-efdf3afb600b	2021-05-21 16:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:52:08.852+03	2021-05-21 16:52:08.858+03	
c0cacaeb-1ba9-4ff1-463c-d7b3a1089480	2021-05-21 16:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:52:28.853+03	2021-05-21 16:52:28.86+03	
8bf63d9e-1b0a-8374-89f9-2ee3de30128c	2021-05-21 16:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:52:48.853+03	2021-05-21 16:52:48.859+03	
3268eaa9-d0a8-2ba0-fe72-e145feb4960c	2021-05-21 16:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:53:08.853+03	2021-05-21 16:53:08.868+03	
cbfcdd46-4ccf-e685-de2a-60b6d2ffba14	2021-05-21 16:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:53:29.852+03	2021-05-21 16:53:29.86+03	
6991c8d1-e560-c16d-0515-7e4871dd4c24	2021-05-21 16:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:53:49.853+03	2021-05-21 16:53:49.859+03	
93bea039-3ade-23a4-a870-a52003df05ac	2021-05-21 16:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:54:10.853+03	2021-05-21 16:54:10.86+03	
92551667-3a2b-8a20-81db-50bcf18bfed6	2021-05-21 16:54:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:54:31.853+03	2021-05-21 16:54:31.875+03	
fb3f2d40-2a7d-eb5e-01f2-243a1f1a6861	2021-05-21 16:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:54:52.852+03	2021-05-21 16:54:52.859+03	
c12f86fb-7ad3-f5a2-bfcc-77e81502abcf	2021-05-21 16:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:55:12.853+03	2021-05-21 16:55:12.859+03	
cc96c068-a3ca-bc98-f5f5-1235626d0ac3	2021-05-21 16:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:55:32.853+03	2021-05-21 16:55:32.859+03	
70aad585-e84a-2157-75c9-f3f4338caa72	2021-05-21 16:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:55:53.853+03	2021-05-21 16:55:53.859+03	
45aa2f7a-84b5-2418-9752-2d9797fd140c	2021-05-21 16:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:56:14.853+03	2021-05-21 16:56:14.887+03	
fde9b2e9-ee14-0348-f227-f6da1fd983e3	2021-05-21 16:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:56:34.853+03	2021-05-21 16:56:34.859+03	
19a0bdb3-7afb-9467-43c5-2944be6796cd	2021-05-21 16:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:56:54.853+03	2021-05-21 16:56:54.86+03	
f2f01218-97f0-843f-f20e-cc3e4f1b23d0	2021-05-21 16:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:57:14.853+03	2021-05-21 16:57:14.859+03	
b6e9156b-015f-820f-ba6d-8f107d2591be	2021-05-21 16:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:57:35.852+03	2021-05-21 16:57:35.859+03	
e9002aaf-2454-0884-61d0-19fa989a1721	2021-05-21 16:57:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:57:56.854+03	2021-05-21 16:57:56.864+03	
68403632-75c8-a734-b23d-ad8fb505dc4d	2021-05-21 16:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:58:17.853+03	2021-05-21 16:58:17.86+03	
8759d687-e78d-9a58-992c-ba23b504d468	2021-05-21 16:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:58:37.853+03	2021-05-21 16:58:37.86+03	
cfb4bd77-0d91-bcf5-3b16-14a2ff355c38	2021-05-21 16:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:58:57.853+03	2021-05-21 16:58:57.86+03	
449366aa-5c1f-5693-de84-700ef830ccfa	2021-05-21 16:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:59:17.853+03	2021-05-21 16:59:17.865+03	
9032da60-d376-5276-a6e9-23d31aef6bc4	2021-05-21 16:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:59:37.853+03	2021-05-21 16:59:37.859+03	
4a5a6b71-b980-4eb2-b8e9-06fc03a7f3df	2021-05-21 16:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:59:58.853+03	2021-05-21 16:59:58.859+03	
6847ac8a-73e8-1da8-1da3-4b1f75c8a056	2021-05-21 17:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:00:08.853+03	2021-05-21 17:00:08.867+03	
b5d552db-6c63-3e1a-9575-d7bc5656eeda	2021-05-21 17:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:00:28.853+03	2021-05-21 17:00:28.862+03	
73484617-c271-e847-dc6f-bd7164f7224e	2021-05-21 17:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:00:48.853+03	2021-05-21 17:00:48.86+03	
afaf6f69-d3f2-3672-7a4c-5b488878f228	2021-05-21 17:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:01:09.853+03	2021-05-21 17:01:09.859+03	
ecd9f4a8-d3e3-ae83-e46b-1f99faa722e9	2021-05-21 17:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:01:30.853+03	2021-05-21 17:01:30.859+03	
08a7a9b2-c094-2565-efe0-e81068c26c90	2021-05-21 17:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:01:50.853+03	2021-05-21 17:01:50.86+03	
c770f5e0-545b-f8b1-3065-683bad0bb02f	2021-05-21 17:02:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:02:11.852+03	2021-05-21 17:02:11.859+03	
f65a3805-5eb3-fb5c-c765-dc6b0fadcc7c	2021-05-21 17:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:02:32.852+03	2021-05-21 17:02:32.859+03	
3e75be0e-233e-a933-2e98-686238ca8804	2021-05-21 17:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:02:52.852+03	2021-05-21 17:02:52.859+03	
b3885755-ef9c-5af2-b572-757df3e3aee9	2021-05-21 17:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:03:12.852+03	2021-05-21 17:03:12.859+03	
af09eb1e-c113-bb2e-3914-9f1007a5cfa4	2021-05-21 17:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:03:32.853+03	2021-05-21 17:03:32.876+03	
e984228c-8eba-543d-0ea3-968f19274e2b	2021-05-21 17:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:03:52.853+03	2021-05-21 17:03:52.862+03	
34e9c2e9-47f4-fe9b-6547-4cc4c46b5bd8	2021-05-21 17:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:04:13.852+03	2021-05-21 17:04:13.871+03	
1db1f1e8-55c2-9419-91ea-a7721bd23cc1	2021-05-21 17:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:04:33.852+03	2021-05-21 17:04:33.859+03	
10a88306-ece1-ad80-ca9e-cfd3702de80b	2021-05-21 17:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:04:54.852+03	2021-05-21 17:04:54.858+03	
88cbc547-2a56-52b8-942a-f8c69e31c754	2021-05-21 17:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:05:14.853+03	2021-05-21 17:05:14.86+03	
c528c5a1-b063-2a54-eaf5-42430dc42bdc	2021-05-21 17:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:05:35.852+03	2021-05-21 17:05:35.859+03	
0844f2db-2762-e095-2949-cda4fc0008c9	2021-05-21 17:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:05:55.853+03	2021-05-21 17:05:55.865+03	
bd8e1925-ba0e-b4c9-0c15-3d4307c9699c	2021-05-21 17:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:06:15.853+03	2021-05-21 17:06:15.861+03	
2fa5c882-b873-09ad-bf2d-18a2c48899ae	2021-05-21 17:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:06:35.853+03	2021-05-21 17:06:35.86+03	
07f695f1-4afa-bd79-53d8-d1416001d32a	2021-05-21 17:06:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:06:56.854+03	2021-05-21 17:06:56.861+03	
b2c642dc-55dd-bf21-fad6-43577bd347c8	2021-05-21 17:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:07:17.853+03	2021-05-21 17:07:17.859+03	
bbeb90e9-41a7-aa85-9189-312085fd78b7	2021-05-21 17:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:07:37.853+03	2021-05-21 17:07:37.861+03	
fe89110f-2349-80b8-1c1e-03e936ed6b69	2021-05-21 17:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:07:57.853+03	2021-05-21 17:07:57.859+03	
6cddb96d-5fec-b0ff-8b34-521c94140531	2021-05-21 17:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:08:18.852+03	2021-05-21 17:08:18.859+03	
a90e0cd1-504b-1d60-2793-0fdb9b312115	2021-05-21 17:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:08:38.852+03	2021-05-21 17:08:38.863+03	
67e9fb0c-fbd7-9cd1-778d-03f0325a5152	2021-05-21 17:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:08:58.852+03	2021-05-21 17:08:58.86+03	
4c093997-aa68-14e4-4278-1b70b3f4fb50	2021-05-21 17:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:09:19.853+03	2021-05-21 17:09:19.868+03	
1f95a79d-e03d-a372-22a9-7ed274275d63	2021-05-21 17:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:09:40.853+03	2021-05-21 17:09:40.859+03	
5fe5c5ea-aa9e-895e-a49f-181e273b626a	2021-05-21 17:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:10:00.853+03	2021-05-21 17:10:00.874+03	
887f8f1b-2f05-4992-bf71-07a3e048386e	2021-05-21 17:10:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:10:21.854+03	2021-05-21 17:10:21.861+03	
0fc896ff-9139-b89e-e5ce-73276836bf82	2021-05-21 17:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:10:42.853+03	2021-05-21 17:10:42.859+03	
8b44de20-0eab-a500-5aab-ed8e4d33c2e8	2021-05-21 17:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:11:03.853+03	2021-05-21 17:11:03.859+03	
e5c756b7-f0a6-ebad-34f1-a418ccf04f8f	2021-05-21 17:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:11:24.853+03	2021-05-21 17:11:24.861+03	
ab32e74f-9e98-3f40-317c-3478c1a1ebad	2021-05-21 17:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:11:44.853+03	2021-05-21 17:11:44.863+03	
0a7b8cfa-2c33-aaa9-55d3-95600646cd61	2021-05-21 17:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:12:05.852+03	2021-05-21 17:12:05.859+03	
b040d450-f1a6-4581-c208-da46471064d0	2021-05-21 17:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:12:25.853+03	2021-05-21 17:12:25.873+03	
6d3a6b39-8ea7-3ee8-2645-eea76068d1b6	2021-05-21 17:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:12:47.853+03	2021-05-21 17:12:47.86+03	
9bf8e12a-f112-718a-f14f-70fe2f1a3893	2021-05-21 17:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:13:07.853+03	2021-05-21 17:13:07.86+03	
1b7b60a2-9be5-47c2-ff5f-4dae0c8fce0f	2021-05-21 17:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:13:28.853+03	2021-05-21 17:13:28.858+03	
6fb817b8-d3c5-e0d0-f14c-c9adb4706e13	2021-05-21 17:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:13:49.853+03	2021-05-21 17:13:49.859+03	
39b70274-6b92-d1d4-1607-63df815787f1	2021-05-21 17:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:14:10.852+03	2021-05-21 17:14:10.86+03	
7eaa3ee2-1dae-9f2d-5322-4cf74de8d173	2021-05-21 17:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:14:30.852+03	2021-05-21 17:14:30.859+03	
fbe8a3ff-5ebd-82db-0cf5-6605d0ae45f6	2021-05-21 17:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:14:50.853+03	2021-05-21 17:14:50.859+03	
3b9633ec-b56d-b484-b343-d63898e84dc6	2021-05-21 17:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:15:12.852+03	2021-05-21 17:15:12.869+03	
f0b11d6b-fe0e-3465-2311-214eac89f14a	2021-05-21 17:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:15:32.852+03	2021-05-21 17:15:32.879+03	
73136925-532f-a7a7-bdac-5828033fe8ca	2021-05-21 17:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:15:52.852+03	2021-05-21 17:15:52.859+03	
1c7ddea3-c6d7-d743-fc1d-87896e109a68	2021-05-21 16:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:55:02.853+03	2021-05-21 16:55:02.863+03	
21b4f249-8fb2-1e1e-1b6f-76021a160d06	2021-05-21 16:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:55:22.853+03	2021-05-21 16:55:22.859+03	
200e2fcd-7123-172d-c703-0b01a444e72c	2021-05-21 16:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:55:43.852+03	2021-05-21 16:55:43.864+03	
0cfb01e4-e84c-4d76-8e4d-a4a56be99f68	2021-05-21 16:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:56:04.853+03	2021-05-21 16:56:04.862+03	
7c67b32a-9544-bee2-481b-2b201ce12247	2021-05-21 16:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:56:24.853+03	2021-05-21 16:56:24.873+03	
7b85165c-32af-1c7e-6fcf-ca80f73747c3	2021-05-21 16:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:56:44.853+03	2021-05-21 16:56:44.859+03	
4f11ae47-79b7-1890-dba7-0dd7ad0b4df2	2021-05-21 16:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:57:04.853+03	2021-05-21 16:57:04.861+03	
30773e01-30cd-a219-1569-c961d4c54383	2021-05-21 16:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:57:24.853+03	2021-05-21 16:57:24.868+03	
9076bf06-e72e-8c31-3a13-f7ca077dd7ad	2021-05-21 16:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:57:45.853+03	2021-05-21 16:57:45.859+03	
64d8225b-14ff-9a9f-626b-b04108ca3167	2021-05-21 16:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:58:07.853+03	2021-05-21 16:58:07.861+03	
d0b11373-c7ea-05fc-8448-735a392a4d4d	2021-05-21 16:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:58:27.853+03	2021-05-21 16:58:27.861+03	
1c2779de-3b40-8862-6d07-5076cb5e791b	2021-05-21 16:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:58:47.853+03	2021-05-21 16:58:47.86+03	
eef280b6-4311-2d6e-485a-318fb09e3e9f	2021-05-21 16:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:59:07.853+03	2021-05-21 16:59:07.874+03	
44cf393e-72a3-c0b8-da93-87f4131fc8a1	2021-05-21 16:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:59:27.853+03	2021-05-21 16:59:27.859+03	
57b48efa-ef33-99b8-4d21-f58be476af8e	2021-05-21 16:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 16:59:48.852+03	2021-05-21 16:59:48.87+03	
52697fb4-907c-d6ca-7fce-9de5bb71eeeb	2021-05-21 17:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 17:00:00.853+03	2021-05-21 17:00:00.868+03	ERROR
293b0f01-408e-426a-6943-771f33bee605	2021-05-21 17:00:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:00:18.853+03	2021-05-21 17:00:18.864+03	
a18a4a0d-a574-afca-5e3e-f03e31cc5c04	2021-05-21 17:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:00:38.853+03	2021-05-21 17:00:38.86+03	
df9510a8-a400-b44f-3095-a7d6eb6f143d	2021-05-21 17:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:00:58.853+03	2021-05-21 17:00:58.861+03	
01c9e942-b0cd-e90e-aefb-b6f996ca36ff	2021-05-21 17:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:01:20.852+03	2021-05-21 17:01:20.869+03	
84e8360a-81af-af98-4009-f427790b7666	2021-05-21 17:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:01:40.853+03	2021-05-21 17:01:40.859+03	
0cd2a6e3-1d3e-3d33-248b-c1f2f8646b77	2021-05-21 17:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:02:00.853+03	2021-05-21 17:02:00.861+03	
beb4a61b-2324-c61d-40dc-8e3e394a84ed	2021-05-21 17:02:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:02:21.854+03	2021-05-21 17:02:21.86+03	
41cf6567-07d6-8464-0965-c8d7e485824c	2021-05-21 17:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:02:42.852+03	2021-05-21 17:02:42.858+03	
906c663f-ee97-991f-9c22-1ef712221b6b	2021-05-21 17:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:03:02.852+03	2021-05-21 17:03:02.858+03	
289f03bd-1bb1-a4d2-7cea-6839cdf780ed	2021-05-21 17:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:03:22.853+03	2021-05-21 17:03:22.859+03	
70b4a639-5bec-545d-e64a-67ae639540fe	2021-05-21 17:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:03:42.853+03	2021-05-21 17:03:42.861+03	
1d2c768e-ca61-5664-e9cc-79f3bcc65757	2021-05-21 17:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:04:03.852+03	2021-05-21 17:04:03.861+03	
368dbbd8-f961-6a9a-5ed7-d865b3f7392f	2021-05-21 17:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:04:23.852+03	2021-05-21 17:04:23.859+03	
5ae6e3bd-1b7c-53ae-2353-08ca0c4d59af	2021-05-21 17:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:04:43.853+03	2021-05-21 17:04:43.859+03	
85aae5ff-2419-fda5-b5cc-c296a6632006	2021-05-21 17:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:05:04.852+03	2021-05-21 17:05:04.871+03	
a4efb37b-20bc-0d44-735a-48492c971e88	2021-05-21 17:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:05:25.852+03	2021-05-21 17:05:25.865+03	
1e6bb983-1e06-1fc0-433d-8b7d11a1d708	2021-05-21 17:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:05:45.853+03	2021-05-21 17:05:45.86+03	
76f2036c-43c9-5758-bb61-11450629ed6f	2021-05-21 17:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:06:05.853+03	2021-05-21 17:06:05.863+03	
7dd728e3-283e-e300-4447-b0d197114ce1	2021-05-21 17:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:06:25.853+03	2021-05-21 17:06:25.861+03	
1bd82d83-ba03-12b0-1472-b60a5e473ca6	2021-05-21 17:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:06:45.853+03	2021-05-21 17:06:45.873+03	
2d1abead-4be6-7b18-b24c-b8a1c18bc419	2021-05-21 17:07:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:07:07.853+03	2021-05-21 17:07:07.862+03	
7bd53770-c249-6627-ffdb-61f7e90b0e00	2021-05-21 17:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:07:27.853+03	2021-05-21 17:07:27.859+03	
49a44fdd-201c-e583-56cc-d029b9ed62b5	2021-05-21 17:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:07:47.853+03	2021-05-21 17:07:47.859+03	
026c70ca-cf54-6d3b-3912-210a37c21741	2021-05-21 17:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:08:08.852+03	2021-05-21 17:08:08.872+03	
742916a1-b33d-ef23-4c37-93892955ce6c	2021-05-21 17:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:08:28.852+03	2021-05-21 17:08:28.858+03	
000f2bd9-b46a-55f6-cb57-dbb673f656eb	2021-05-21 17:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:08:48.852+03	2021-05-21 17:08:48.859+03	
09596924-dbfd-b5af-67bc-5108769b47e4	2021-05-21 17:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:09:08.853+03	2021-05-21 17:09:08.862+03	
de903ed0-9bd1-f1b2-4c1b-f2b14948c622	2021-05-21 17:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:09:29.853+03	2021-05-21 17:09:29.86+03	
94f40c09-940f-2f87-5183-df9eda10cb9f	2021-05-21 17:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:09:50.853+03	2021-05-21 17:09:50.859+03	
6e80a753-e5df-5852-8153-b67d6fb213a8	2021-05-21 17:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 17:10:00.853+03	2021-05-21 17:10:00.894+03	ERROR
d1e35b30-83a8-960b-0a1d-cc8d012511b6	2021-05-21 17:10:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:10:11.852+03	2021-05-21 17:10:11.859+03	
6b9730a5-3556-7526-780a-75caa1e3f0d8	2021-05-21 17:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:10:32.852+03	2021-05-21 17:10:32.858+03	
499f8f7e-9818-59e5-3d9c-0fca62dfb083	2021-05-21 17:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:10:52.853+03	2021-05-21 17:10:52.86+03	
590841b4-4806-7f9f-6e7d-a9e9b0d61afd	2021-05-21 17:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:11:13.853+03	2021-05-21 17:11:13.871+03	
23ab8dd5-4cbb-fc8e-448b-9f7aa6773afc	2021-05-21 17:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:11:34.853+03	2021-05-21 17:11:34.859+03	
f756a972-c0ce-f53c-e5d0-1478d34f1d03	2021-05-21 17:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:11:54.853+03	2021-05-21 17:11:54.867+03	
8f12db1e-3977-1094-61c0-771c274a01aa	2021-05-21 17:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:12:15.852+03	2021-05-21 17:12:15.859+03	
4261f00f-f45a-d7b3-ae42-d174a1776602	2021-05-21 17:12:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:12:36.853+03	2021-05-21 17:12:36.865+03	
c9449e63-88bf-28a6-6b0c-c4f6034b15c0	2021-05-21 17:12:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:12:57.853+03	2021-05-21 17:12:57.859+03	
ef0e5a6b-2260-cfb8-a6e6-53567aed8c98	2021-05-21 17:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:13:17.853+03	2021-05-21 17:13:17.862+03	
b0182845-3e42-4542-06f4-0611e18d327b	2021-05-21 17:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:13:38.853+03	2021-05-21 17:13:38.86+03	
2337e232-14d1-4cf0-9985-38c693d30582	2021-05-21 17:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:13:59.853+03	2021-05-21 17:13:59.861+03	
4b5778b7-f945-f55f-a2c4-2c916a134c81	2021-05-21 17:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:14:20.852+03	2021-05-21 17:14:20.859+03	
2e3b8037-0b02-5454-99e2-dd50f3a4e814	2021-05-21 17:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:14:40.852+03	2021-05-21 17:14:40.86+03	
6fa7aa55-da8c-9386-76a2-00877fb316e4	2021-05-21 17:15:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:15:01.853+03	2021-05-21 17:15:01.859+03	
9e0e60cb-9aed-f2f3-1540-b79adff9c5d6	2021-05-21 17:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:15:22.852+03	2021-05-21 17:15:22.859+03	
47fcf335-3e6d-1e54-8281-90f1ea0bf9c1	2021-05-21 17:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:15:42.852+03	2021-05-21 17:15:42.859+03	
01b63371-9b64-2523-fd16-181a981b5fdf	2021-05-21 17:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:16:02.853+03	2021-05-21 17:16:02.859+03	
abc7b49b-ce0e-c9ed-573f-751888fd3e22	2021-05-21 17:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:16:22.853+03	2021-05-21 17:16:22.86+03	
d6e28994-d765-7d76-dc91-201c650b21c6	2021-05-21 17:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:16:42.853+03	2021-05-21 17:16:42.86+03	
3beba349-01ce-20e1-c278-a2fff321fa54	2021-05-21 17:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:17:02.853+03	2021-05-21 17:17:03.168+03	
b93fa1e5-b52c-522d-5d77-a30bde3cc402	2021-05-21 17:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:17:23.853+03	2021-05-21 17:17:23.872+03	
b48e2ec6-26af-e0dd-2abe-95e3920863bb	2021-05-21 17:17:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:17:44.852+03	2021-05-21 17:17:44.858+03	
d05a06d6-1a2d-e605-5566-23ff2d238a29	2021-05-21 17:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:18:04.852+03	2021-05-21 17:18:04.871+03	
4231e147-cfe0-aafc-a9fc-4b9cf56a3a92	2021-05-21 17:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:18:24.853+03	2021-05-21 17:18:24.86+03	
9160ed05-6f39-a18f-def8-f8dc717318d2	2021-05-21 17:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:18:44.853+03	2021-05-21 17:18:44.86+03	
758349a3-7fea-7169-8b61-e4556df6905a	2021-05-21 17:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:19:05.853+03	2021-05-21 17:19:05.865+03	
8ee2c272-693f-43eb-2e1d-84fcbbe55065	2021-05-21 17:19:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:19:26.853+03	2021-05-21 17:19:26.861+03	
bca16559-98db-5766-7481-d992ad13390f	2021-05-21 17:19:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:19:47.853+03	2021-05-21 17:19:47.86+03	
8e2544a8-afc4-779a-91d0-371af8dc3441	2021-05-21 17:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 17:20:00.853+03	2021-05-21 17:20:00.858+03	ERROR
fa76c02c-dd87-506a-b2cc-7aec188fcf08	2021-05-21 17:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:20:18.853+03	2021-05-21 17:20:18.868+03	
362c78ab-99c7-38ae-19e2-a7b435e62c1d	2021-05-21 17:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:20:38.853+03	2021-05-21 17:20:38.873+03	
e51dfd99-8ebe-28cb-2e6e-d96d90d9b9f0	2021-05-21 17:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:20:58.853+03	2021-05-21 17:20:58.86+03	
a058857d-815c-a1ff-d37e-1ce537c14219	2021-05-21 17:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:21:20.853+03	2021-05-21 17:21:20.859+03	
7f38da5d-71b0-c7c5-3a2d-038469f86fb3	2021-05-21 17:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:21:40.853+03	2021-05-21 17:21:40.86+03	
4f4c92b5-2259-e2c3-d1c6-d70a23289364	2021-05-21 17:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:22:00.853+03	2021-05-21 17:22:00.86+03	
501982e2-550d-3d31-dd9a-20b39df18dad	2021-05-21 17:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:22:20.853+03	2021-05-21 17:22:20.86+03	
07bab975-bde1-b079-80b6-c466bbbd0c26	2021-05-21 17:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:22:40.853+03	2021-05-21 17:22:40.863+03	
d910c340-9d44-0d3b-09a0-2ca1ec6fa718	2021-05-21 17:23:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:23:01.853+03	2021-05-21 17:23:01.871+03	
f1943499-5782-545f-4a77-644dc9415200	2021-05-21 17:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:23:22.853+03	2021-05-21 17:23:22.86+03	
cac239bf-0f3b-a9e3-2ca2-3dbcb2ba1fa8	2021-05-21 17:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:23:43.852+03	2021-05-21 17:23:43.858+03	
032032ee-8003-a53b-a063-c62c169f480d	2021-05-21 17:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:24:03.852+03	2021-05-21 17:24:03.859+03	
d801806d-f99f-320e-4af5-83077b06cd00	2021-05-21 17:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:24:23.853+03	2021-05-21 17:24:23.874+03	
c36cedf9-b649-5bc5-a859-28ab975ff6b8	2021-05-21 17:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:24:44.853+03	2021-05-21 17:24:44.861+03	
0d489366-66c9-b289-bcc3-856aa89f8299	2021-05-21 17:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:25:05.852+03	2021-05-21 17:25:05.859+03	
65afb58d-7638-acf8-4ddb-50565f52a394	2021-05-21 17:25:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:25:26.853+03	2021-05-21 17:25:26.859+03	
92f40a54-0e69-fa6d-b064-e268f9388a79	2021-05-21 17:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:25:48.853+03	2021-05-21 17:25:48.861+03	
28179a0d-b75b-6669-1f36-e77bdef88a8d	2021-05-21 17:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:26:09.853+03	2021-05-21 17:26:09.86+03	
5d1450aa-a2ab-f54b-c3ba-802a231e34ca	2021-05-21 17:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:26:30.852+03	2021-05-21 17:26:30.859+03	
63f67afe-a187-08a6-74ec-556035eb9dad	2021-05-21 17:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:26:50.853+03	2021-05-21 17:26:50.859+03	
abc3bbf9-7531-c247-c3a8-5af0fb4ac682	2021-05-21 17:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:27:10.853+03	2021-05-21 17:27:10.861+03	
5c0d7c3c-52ff-787c-3add-f2238f65ad17	2021-05-21 17:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:27:32.853+03	2021-05-21 17:27:32.86+03	
55bd420a-5166-075d-111d-48b727aa8aa3	2021-05-21 17:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:27:52.853+03	2021-05-21 17:27:52.859+03	
0ab4321b-6504-aa9b-5a47-fedfbdf9e8b5	2021-05-21 17:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:28:13.852+03	2021-05-21 17:28:13.86+03	
f840dbeb-8c6e-1ba1-fae5-74f5f81dd688	2021-05-21 17:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:28:33.853+03	2021-05-21 17:28:33.86+03	
5f60f85b-a29c-d6a0-df23-abe360f924a7	2021-05-21 17:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:28:54.853+03	2021-05-21 17:28:54.86+03	
2cfa4dfa-697f-b306-f8df-e0cdff21b255	2021-05-21 17:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:29:14.853+03	2021-05-21 17:29:14.859+03	
322b48f9-e552-f682-9f5f-fe04aa0f35ce	2021-05-21 17:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:29:35.852+03	2021-05-21 17:29:35.859+03	
18adce8d-ff85-6795-bb3c-49b3531ab6c6	2021-05-21 17:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:29:55.852+03	2021-05-21 17:29:55.86+03	
e1c34945-7d7a-667d-516d-0146c3fc14ff	2021-05-21 17:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:30:05.853+03	2021-05-21 17:30:05.859+03	
342e9bca-54a3-f44c-1a74-b04e70342344	2021-05-21 17:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:30:25.853+03	2021-05-21 17:30:25.871+03	
58adbd52-e771-226e-c74f-9c06fa85c407	2021-05-21 17:30:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:30:46.853+03	2021-05-21 17:30:46.86+03	
87c5be45-ccd6-9b84-38a7-f4b570acb7a9	2021-05-21 17:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:31:07.852+03	2021-05-21 17:31:07.858+03	
7a01025c-4cee-3824-8535-29903656177c	2021-05-21 17:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:31:28.852+03	2021-05-21 17:31:28.859+03	
64151098-afa3-2ad0-236e-50c54f682b7f	2021-05-21 17:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:31:48.853+03	2021-05-21 17:31:48.859+03	
08ac37c5-ad83-c20a-531f-52bbe0d88416	2021-05-21 17:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:32:08.853+03	2021-05-21 17:32:08.859+03	
6924f071-e5e1-5ada-8775-aed4d5036ab4	2021-05-21 17:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:32:29.852+03	2021-05-21 17:32:29.858+03	
7262b0a7-8d03-80ec-c9db-124a2ce58e64	2021-05-21 17:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:32:49.852+03	2021-05-21 17:32:49.859+03	
36aca388-50ed-7bdf-12b4-b282fc4b3a2f	2021-05-21 17:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:33:09.853+03	2021-05-21 17:33:09.86+03	
32d27b24-7faf-9d8b-eed6-b4196929e2ed	2021-05-21 17:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:33:29.853+03	2021-05-21 17:33:29.859+03	
5fff1abb-85ca-b91e-c524-7f3a2363ebc9	2021-05-21 17:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:33:50.853+03	2021-05-21 17:33:50.859+03	
d5ba323a-6219-e51f-8b90-95180965271e	2021-05-21 17:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:34:11.853+03	2021-05-21 17:34:11.859+03	
81eb1dcf-a404-ad05-17a7-e3c5965041bb	2021-05-21 17:34:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:34:31.853+03	2021-05-21 17:34:31.859+03	
a8294d40-40b0-6f0d-9266-92b12a4bbb6f	2021-05-21 17:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:34:52.853+03	2021-05-21 17:34:52.861+03	
45f90a36-4cbb-f53c-fe9b-01fa2e028e04	2021-05-21 17:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:35:12.853+03	2021-05-21 17:35:12.86+03	
0da4cef7-174b-ee07-d9ae-c89b9540517c	2021-05-21 17:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:35:33.853+03	2021-05-21 17:35:33.86+03	
059fd679-ae9d-89a6-9852-0890624c3b47	2021-05-21 17:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:35:54.852+03	2021-05-21 17:35:54.859+03	
689e7a5f-66fa-66e7-c722-2025edb25ace	2021-05-21 17:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:36:14.853+03	2021-05-21 17:36:14.865+03	
7be5df93-b65c-bc66-1975-8d4d015a1ef3	2021-05-21 17:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:36:34.853+03	2021-05-21 17:36:34.859+03	
c238c968-4caa-14e6-111c-4e63240d4f35	2021-05-21 17:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:36:55.853+03	2021-05-21 17:36:55.862+03	
c21d8171-2e4d-6bbb-eb9e-337d418ed486	2021-05-21 17:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:16:12.853+03	2021-05-21 17:16:12.861+03	
23b778b9-e4ed-2af2-ad03-b8eb0b558b01	2021-05-21 17:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:16:32.853+03	2021-05-21 17:16:32.859+03	
e3a82ba0-3f56-0a5d-b430-4ea2e7e308c1	2021-05-21 17:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:16:52.853+03	2021-05-21 17:16:52.859+03	
fa063aef-638f-4257-51a5-a62892a92bb6	2021-05-21 17:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:17:13.853+03	2021-05-21 17:17:13.859+03	
294e1059-4796-253f-edf7-c8bbd35f58fc	2021-05-21 17:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:17:34.852+03	2021-05-21 17:17:34.869+03	
3b3801b7-29d8-c815-5adc-cf6aef3033ef	2021-05-21 17:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:17:54.852+03	2021-05-21 17:17:54.858+03	
c890c7c8-d274-a0a1-151b-1c3668999fda	2021-05-21 17:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:18:14.852+03	2021-05-21 17:18:14.86+03	
9ffe297e-53e0-6712-de91-8ad010d22734	2021-05-21 17:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:18:34.853+03	2021-05-21 17:18:34.86+03	
b08b700a-3a2f-c0f9-add7-60b5947d4e98	2021-05-21 17:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:18:54.853+03	2021-05-21 17:18:54.86+03	
3e4f811b-e223-bd4c-161a-c49f4d624561	2021-05-21 17:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:19:15.853+03	2021-05-21 17:19:15.86+03	
7f483a64-e5f4-4c11-7ad3-b4f0118e2298	2021-05-21 17:19:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:19:37.853+03	2021-05-21 17:19:37.86+03	
620b68bd-fdbb-6971-792e-a2277d05795b	2021-05-21 17:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:19:58.853+03	2021-05-21 17:19:58.861+03	
2a96a73a-ab25-e88a-0d37-13990e4dd029	2021-05-21 17:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:20:08.853+03	2021-05-21 17:20:08.86+03	
7c825273-a281-8461-487e-87ff4088db47	2021-05-21 17:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:20:28.853+03	2021-05-21 17:20:28.859+03	
6745362a-699e-3865-9c14-25444baea6ba	2021-05-21 17:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:20:48.853+03	2021-05-21 17:20:48.859+03	
6ede0e3e-5a62-804b-f74d-46be71c76c48	2021-05-21 17:21:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:21:09.853+03	2021-05-21 17:21:09.859+03	
559cf64b-3192-445d-3793-e9bc4722da8b	2021-05-21 17:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:21:30.853+03	2021-05-21 17:21:30.859+03	
e0b0980f-f8a5-440c-a569-4881314eb9b1	2021-05-21 17:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:21:50.853+03	2021-05-21 17:21:50.859+03	
e4c77323-c18a-4280-0d21-26414a3d580a	2021-05-21 17:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:22:10.853+03	2021-05-21 17:22:10.861+03	
f665a584-92f0-8cb0-65bc-0b57f2de8c4c	2021-05-21 17:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:22:30.853+03	2021-05-21 17:22:30.86+03	
779865b3-4817-945c-17e0-dc9984a32c93	2021-05-21 17:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:22:50.853+03	2021-05-21 17:22:50.859+03	
052eb164-135b-0424-8351-762e46b19575	2021-05-21 17:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:23:12.852+03	2021-05-21 17:23:12.859+03	
507c60f6-c625-e350-e882-6f2ec06dd965	2021-05-21 17:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:23:33.852+03	2021-05-21 17:23:33.858+03	
835cf32a-b1a7-6e72-6977-fb69e0ca735a	2021-05-21 17:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:23:53.852+03	2021-05-21 17:23:53.873+03	
f72ac7db-9094-b143-ee7b-26a6c465d7de	2021-05-21 17:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:24:13.852+03	2021-05-21 17:24:13.859+03	
3d3808d2-dcb6-d3cb-1c0a-401f29e58d36	2021-05-21 17:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:24:33.853+03	2021-05-21 17:24:33.871+03	
3886506a-fc50-b55b-b8c5-c447464974d7	2021-05-21 17:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:24:54.853+03	2021-05-21 17:24:54.861+03	
2da57ab2-2b05-3bf6-f8d9-968078e7d4ed	2021-05-21 17:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:25:15.853+03	2021-05-21 17:25:15.859+03	
8f56b617-f100-3e06-5248-2ed45bb456fc	2021-05-21 17:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:25:37.853+03	2021-05-21 17:25:37.861+03	
f47e99db-2009-7e2e-5e0c-6c3469ec4f9d	2021-05-21 17:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:25:59.853+03	2021-05-21 17:25:59.862+03	
b8ee8c4e-dafa-9e88-788f-09e9f74bfe2a	2021-05-21 17:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:26:19.853+03	2021-05-21 17:26:19.871+03	
7dfd4f8e-37f6-ca82-d813-6aa3c154bf4c	2021-05-21 17:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:26:40.853+03	2021-05-21 17:26:40.859+03	
fa6ada4e-8507-def0-ea04-987d28c70c4d	2021-05-21 17:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:27:00.853+03	2021-05-21 17:27:00.859+03	
ad7273d0-dcbf-1f1d-ac83-17eb478f41ee	2021-05-21 17:27:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:27:21.854+03	2021-05-21 17:27:21.86+03	
1f3bc827-7bd0-3ebb-45b5-46bd01cb4406	2021-05-21 17:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:27:42.853+03	2021-05-21 17:27:42.86+03	
385c3103-9558-4457-b2be-0e7bafbb55ff	2021-05-21 17:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:28:03.852+03	2021-05-21 17:28:03.871+03	
a9a93d66-a26c-2747-cef4-e1fd8fa31869	2021-05-21 17:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:28:23.852+03	2021-05-21 17:28:23.859+03	
a7765000-b8b5-e818-87fa-9300201cfd90	2021-05-21 17:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:28:44.853+03	2021-05-21 17:28:44.86+03	
201cb8cd-94ea-498f-f107-c3ceb586f4f7	2021-05-21 17:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:29:04.853+03	2021-05-21 17:29:04.859+03	
c1435101-50c1-7d58-7201-74a1daace69f	2021-05-21 17:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:29:24.853+03	2021-05-21 17:29:24.86+03	
c0160bff-3daf-e8a8-1911-d7f42887838b	2021-05-21 17:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:29:45.852+03	2021-05-21 17:29:45.872+03	
ed0dce37-a614-6918-07f1-0354b9a5c766	2021-05-21 17:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 17:30:00.853+03	2021-05-21 17:30:00.863+03	ERROR
7957afc8-0db4-0408-b423-8d6cbfc817ee	2021-05-21 17:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:30:15.853+03	2021-05-21 17:30:15.86+03	
dfa4d99b-a674-224c-3384-1b1d42f30a08	2021-05-21 17:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:30:35.853+03	2021-05-21 17:30:35.861+03	
06c57a96-9372-5434-d4d8-05906cfdddb5	2021-05-21 17:30:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:30:56.854+03	2021-05-21 17:30:56.873+03	
54ec0b97-04be-aa47-4651-abc96ef21e0b	2021-05-21 17:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:31:17.853+03	2021-05-21 17:31:17.859+03	
148a794d-c082-6546-e8d6-d26d82ed2355	2021-05-21 17:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:31:38.852+03	2021-05-21 17:31:38.859+03	
9218073b-da88-b3fd-f75a-b26fb8075c71	2021-05-21 17:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:31:58.853+03	2021-05-21 17:31:58.859+03	
8a81a872-5951-06ca-8793-5a7b339328b8	2021-05-21 17:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:32:19.852+03	2021-05-21 17:32:19.859+03	
2d056b6c-ea90-4b75-c222-1e707f9ca1ad	2021-05-21 17:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:32:39.852+03	2021-05-21 17:32:39.858+03	
0c20b154-2634-d6be-1946-d179dfdb9575	2021-05-21 17:32:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:32:59.853+03	2021-05-21 17:32:59.86+03	
e546dd7e-7939-632f-d750-609490431790	2021-05-21 17:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:33:19.853+03	2021-05-21 17:33:19.86+03	
71c89984-ef79-36d1-d7b0-5b75659efb2a	2021-05-21 17:33:39.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:33:39.853+03	2021-05-21 17:33:39.867+03	
5f1522b1-7d8b-6d2f-43de-29dcffe2e72c	2021-05-21 17:34:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:34:01.852+03	2021-05-21 17:34:01.892+03	
f1b6c36a-bfed-2e39-7323-54d5fecec61b	2021-05-21 17:34:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:34:21.853+03	2021-05-21 17:34:21.86+03	
bfdc3fd5-79cd-b65b-2482-754b892c2bcd	2021-05-21 17:34:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:34:41.854+03	2021-05-21 17:34:41.861+03	
5252c993-df29-d2c2-a2a9-1d5c68a694aa	2021-05-21 17:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:35:02.853+03	2021-05-21 17:35:02.86+03	
df08e0bd-e945-5630-41b3-b48200031673	2021-05-21 17:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:35:23.852+03	2021-05-21 17:35:23.86+03	
1f916834-e7ea-9445-47e2-3aa497b13c04	2021-05-21 17:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:35:43.853+03	2021-05-21 17:35:43.87+03	
f6c81b52-0716-ae70-b665-d60f9973471e	2021-05-21 17:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:36:04.852+03	2021-05-21 17:36:04.862+03	
5ecd8e32-8990-7da6-377a-0facf75be749	2021-05-21 17:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:36:24.853+03	2021-05-21 17:36:24.86+03	
690df2b2-46e2-f001-78a1-df6188d1e80e	2021-05-21 17:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:36:45.853+03	2021-05-21 17:36:45.863+03	
10d3750d-877d-5d41-c9e9-36b686d077fb	2021-05-21 17:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:37:05.853+03	2021-05-21 17:37:05.859+03	
21e04259-6070-8528-8bc3-3877ff67718e	2021-05-21 17:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:37:15.853+03	2021-05-21 17:37:15.86+03	
2015be0f-fe5b-b0bf-1c1a-d0ac9eee3c06	2021-05-21 17:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:37:37.852+03	2021-05-21 17:37:37.859+03	
4bc9d71a-c7be-8005-e442-ab45ad8b1ca9	2021-05-21 17:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:37:58.853+03	2021-05-21 17:37:58.859+03	
e4c0529a-a1cd-d88d-f28c-a44c8c038b3c	2021-05-21 17:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:38:18.853+03	2021-05-21 17:38:18.859+03	
500f66d0-0bee-fd4e-0812-bb864748c41f	2021-05-21 17:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:38:38.853+03	2021-05-21 17:38:38.86+03	
4e2b91b0-0c24-ceb0-b9e0-ae0b4033b721	2021-05-21 17:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:38:58.853+03	2021-05-21 17:38:58.862+03	
f09074be-b2ad-fdbb-5fb7-69b3fe6ec7f3	2021-05-21 17:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:39:18.853+03	2021-05-21 17:39:18.858+03	
21afca0c-f509-fb49-4125-95e4107f1912	2021-05-21 17:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:39:39.853+03	2021-05-21 17:39:39.86+03	
e170d392-51de-2a75-caef-49304b792362	2021-05-21 17:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:39:59.853+03	2021-05-21 17:39:59.86+03	
615c045e-a4f5-0b75-b64f-12edbbe775dd	2021-05-21 17:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:40:09.853+03	2021-05-21 17:40:09.859+03	
305ba3fe-32ab-eeea-288a-1ba9193c22a5	2021-05-21 17:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:40:30.853+03	2021-05-21 17:40:30.862+03	
292ffca2-ba35-aa60-e928-6eb3d524c22e	2021-05-21 17:40:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:40:51.853+03	2021-05-21 17:40:51.874+03	
f5cbc4c4-5c2e-0639-5e71-13485d2e3055	2021-05-21 17:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:41:13.852+03	2021-05-21 17:41:13.863+03	
624d9a87-949c-fd59-e9a3-7a7f2d9fea2f	2021-05-21 17:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:41:33.853+03	2021-05-21 17:41:33.86+03	
d24c7f03-6f4e-8f79-0a0f-d209fe9203f5	2021-05-21 17:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:41:53.853+03	2021-05-21 17:41:53.859+03	
6184eb9c-2844-a39a-a25d-7b85be5dc747	2021-05-21 17:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:42:14.853+03	2021-05-21 17:42:14.859+03	
4fafb37b-ce98-78b3-9af1-29ef2613b1ca	2021-05-21 17:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:42:35.852+03	2021-05-21 17:42:35.858+03	
1ab00eed-b887-769d-4455-a6e39ecb434b	2021-05-21 17:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:42:55.853+03	2021-05-21 17:42:55.867+03	
5c2d6768-48cb-bca0-ca2e-011148c4325c	2021-05-21 17:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:43:17.853+03	2021-05-21 17:43:17.865+03	
83164c4f-d3ed-ff9d-0a2c-e2e0b8c2142c	2021-05-21 17:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:43:37.853+03	2021-05-21 17:43:37.86+03	
5e4c0b2f-7b93-5a0f-bc42-cc0d4e066bda	2021-05-21 17:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:43:57.853+03	2021-05-21 17:43:57.862+03	
3cd09c30-04da-6dfa-0abf-ad29d526fb72	2021-05-21 17:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:44:17.853+03	2021-05-21 17:44:17.859+03	
cea795ff-0cc7-44c4-7958-d3ebc5d86ed8	2021-05-21 17:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:44:37.853+03	2021-05-21 17:44:37.868+03	
7dcd1794-46f6-47c3-1ca9-5eac0d250b46	2021-05-21 17:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:44:57.853+03	2021-05-21 17:44:57.86+03	
fec5b52d-c93f-7780-e11f-f56aeff3f058	2021-05-21 17:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:45:19.853+03	2021-05-21 17:45:19.86+03	
edcfccc2-056a-fe8a-24c9-8acbc9ef37ec	2021-05-21 17:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:45:40.853+03	2021-05-21 17:45:40.86+03	
6a2c7bc8-d169-611a-1be7-bd4b9bd94972	2021-05-21 17:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:46:00.853+03	2021-05-21 17:46:00.861+03	
8f37333f-fb50-83e1-5752-15e927fed9ae	2021-05-21 17:46:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:46:21.853+03	2021-05-21 17:46:21.858+03	
aab6732b-44b7-b1fa-0833-d4a99b41ecc6	2021-05-21 17:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:46:42.852+03	2021-05-21 17:46:42.86+03	
ffb28e48-1aeb-7a1e-01ca-f7728140876b	2021-05-21 17:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:47:02.853+03	2021-05-21 17:47:03.119+03	
455fb087-f874-78ae-f262-382beb74f696	2021-05-21 17:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:47:23.853+03	2021-05-21 17:47:23.875+03	
da2ea780-66c1-8f77-a98b-72b0a406bc55	2021-05-21 17:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:47:44.853+03	2021-05-21 17:47:44.867+03	
94deff7e-9c95-b6ba-e5c0-845098604353	2021-05-21 17:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:48:04.853+03	2021-05-21 17:48:04.862+03	
0de7e98a-6cb0-5fc4-1b78-d4253285fc02	2021-05-21 17:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:48:24.853+03	2021-05-21 17:48:24.86+03	
124b5e47-4d8c-f7bf-64c4-b83108e3cfb9	2021-05-21 17:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:48:44.853+03	2021-05-21 17:48:44.859+03	
5ef46bca-897d-8a57-611b-476b039ad089	2021-05-21 17:49:04.868	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:49:04.853+03	2021-05-21 17:49:04.875+03	
fe9a60fd-159a-4cb4-bd39-aaa7e2736cfb	2021-05-21 17:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:49:25.853+03	2021-05-21 17:49:25.86+03	
58aeae15-8b0d-ae90-1115-444329a09b44	2021-05-21 17:49:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:49:56.853+03	2021-05-21 17:49:56.859+03	
ed401e6c-016c-ab95-921c-09fcd808dec4	2021-05-21 17:50:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:50:06.853+03	2021-05-21 17:50:06.862+03	
7cc5b23e-ddc6-d5eb-d612-1a8099a1af14	2021-05-21 17:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:50:27.853+03	2021-05-21 17:50:27.862+03	
672166e3-7fd7-376c-1e16-6aa1d70b6d2b	2021-05-21 17:50:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:50:47.853+03	2021-05-21 17:50:47.87+03	
8220a196-3b75-b618-38d0-8f31291a856a	2021-05-21 17:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:51:07.853+03	2021-05-21 17:51:07.861+03	
f9295b9d-4b09-cb7b-0aeb-d30c2e9ef786	2021-05-21 17:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:51:27.853+03	2021-05-21 17:51:27.859+03	
7c637459-6782-8319-9685-eaf873923198	2021-05-21 17:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:51:47.853+03	2021-05-21 17:51:47.86+03	
673059d7-2593-bd4c-c20c-fb027ba15eaf	2021-05-21 17:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:52:07.853+03	2021-05-21 17:52:07.859+03	
bcfd49e1-f5a3-6980-62a1-a70ede88141c	2021-05-21 17:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:52:27.853+03	2021-05-21 17:52:27.862+03	
482201cb-6e3e-644d-3bb5-7ff184d364d2	2021-05-21 17:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:52:47.853+03	2021-05-21 17:52:47.86+03	
c9b16b8b-599c-b8c2-088b-ce81e3402b71	2021-05-21 17:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:53:07.853+03	2021-05-21 17:53:07.864+03	
79a66387-76d8-2439-4ee2-f7b55186de6f	2021-05-21 17:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:53:27.853+03	2021-05-21 17:53:27.862+03	
b434bb38-3cac-ccb6-34c1-ddadbd979a02	2021-05-21 17:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:53:47.853+03	2021-05-21 17:53:47.859+03	
b2101515-d694-5970-3212-69ca482bc417	2021-05-21 17:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:54:08.853+03	2021-05-21 17:54:08.862+03	
26525f81-b07e-8210-4e1c-fd722e180be4	2021-05-21 17:54:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:54:29.852+03	2021-05-21 17:54:29.859+03	
e7c10d36-7a22-dd89-b226-c22a125ffd11	2021-05-21 17:54:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:54:49.853+03	2021-05-21 17:54:49.87+03	
aa739b84-4d92-dc00-aa5d-e5d55e10e20d	2021-05-21 17:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:55:09.853+03	2021-05-21 17:55:09.872+03	
aa396ea6-2121-7de7-4179-c8ef595c74d1	2021-05-21 17:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:55:29.853+03	2021-05-21 17:55:29.86+03	
39b1e52b-c391-9b63-d02e-3c838a87d230	2021-05-21 17:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:55:50.853+03	2021-05-21 17:55:50.861+03	
d0193ff2-9e03-685c-ee01-d912e70e5a94	2021-05-21 17:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:56:11.854+03	2021-05-21 17:56:11.86+03	
bcd82110-f527-f1c2-30fd-f65281e5185f	2021-05-21 17:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:56:32.853+03	2021-05-21 17:56:32.861+03	
a1401ba4-1623-656d-8c9a-f621217f1121	2021-05-21 17:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:56:53.853+03	2021-05-21 17:56:53.864+03	
a352ede5-2a62-084e-4b07-e88205f6e366	2021-05-21 17:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:57:13.853+03	2021-05-21 17:57:13.86+03	
f6c84c51-b68e-f2cb-ecea-f1c7fa7dbae2	2021-05-21 17:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:57:34.853+03	2021-05-21 17:57:34.859+03	
219c5c85-ae10-9ceb-9b53-48b9adc87e15	2021-05-21 17:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:57:54.853+03	2021-05-21 17:57:54.866+03	
bf64174e-f1c9-f7c8-4837-93c61af1fe14	2021-05-21 17:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:58:15.853+03	2021-05-21 17:58:15.861+03	
dffea1fd-a171-2d85-4ed8-7f933affe0eb	2021-05-21 17:37:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:37:26.853+03	2021-05-21 17:37:26.859+03	
85fe55e2-9d7a-2797-90a3-d0057d08394b	2021-05-21 17:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:37:47.853+03	2021-05-21 17:37:47.863+03	
44cc7ca9-5e3a-7ac4-af5c-cf733cc801c8	2021-05-21 17:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:38:08.853+03	2021-05-21 17:38:08.868+03	
6d813ebd-b2a2-9fef-7127-f43c3c083515	2021-05-21 17:38:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:38:28.853+03	2021-05-21 17:38:28.865+03	
f4a5b223-04ec-346d-c86b-b0046082fb8e	2021-05-21 17:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:38:48.853+03	2021-05-21 17:38:48.859+03	
417a2ce8-64c5-feaa-f61f-1a2c44ccdc1b	2021-05-21 17:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:39:08.853+03	2021-05-21 17:39:08.861+03	
9bf96a35-fec5-15a0-eda3-e4ae3bcecb9e	2021-05-21 17:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:39:29.853+03	2021-05-21 17:39:29.858+03	
2853e3b2-2426-fefc-0b10-6b2b5de60d87	2021-05-21 17:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:39:49.853+03	2021-05-21 17:39:49.859+03	
d17d9e7c-eb7c-1684-1426-6748432a7abb	2021-05-21 17:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 17:40:00.852+03	2021-05-21 17:40:00.859+03	ERROR
768bb8ac-de2a-7a17-b43a-c34b08873fa7	2021-05-21 17:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:40:20.852+03	2021-05-21 17:40:20.859+03	
703cdab3-2bb0-395e-0226-d92df7f197ec	2021-05-21 17:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:40:40.853+03	2021-05-21 17:40:40.86+03	
5591c413-df80-ea58-6196-746c9c3d6e20	2021-05-21 17:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:41:02.853+03	2021-05-21 17:41:02.863+03	
c7ce181c-e16e-92d6-8002-476866865f63	2021-05-21 17:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:41:23.853+03	2021-05-21 17:41:23.862+03	
2a266f1b-6314-e5df-c905-c16d292a4681	2021-05-21 17:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:41:43.853+03	2021-05-21 17:41:43.859+03	
2a7eba3b-c02b-45f6-610d-0cc63f301970	2021-05-21 17:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:42:03.853+03	2021-05-21 17:42:03.861+03	
636f3e94-fd08-d99b-2950-d3d1940b08cf	2021-05-21 17:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:42:25.852+03	2021-05-21 17:42:25.868+03	
9525222d-b8a9-16de-a689-8c09eec66874	2021-05-21 17:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:42:45.853+03	2021-05-21 17:42:45.858+03	
982244b3-05ab-4bce-81f0-e2ef8450bb9b	2021-05-21 17:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:43:06.853+03	2021-05-21 17:43:06.871+03	
e5ec96d3-eedf-3700-fb57-47b4eb9ca872	2021-05-21 17:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:43:27.853+03	2021-05-21 17:43:27.86+03	
8a4fc8d4-e44d-2735-9ce3-51d09cf5971f	2021-05-21 17:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:43:47.853+03	2021-05-21 17:43:47.87+03	
5514abe7-ac85-bab9-d19b-fb2b1058ff20	2021-05-21 17:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:44:07.853+03	2021-05-21 17:44:07.861+03	
2cc9c495-711e-dd4a-30a1-18a3ec38632a	2021-05-21 17:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:44:27.853+03	2021-05-21 17:44:27.86+03	
bbaf0d0b-f49e-7a66-79f0-603223b73ba6	2021-05-21 17:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:44:47.853+03	2021-05-21 17:44:47.861+03	
2ac8f525-b753-5daf-78df-baa159cf3d43	2021-05-21 17:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:45:08.853+03	2021-05-21 17:45:08.862+03	
fcaeb9b3-1f15-31f6-b12b-70260beecf57	2021-05-21 17:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:45:30.853+03	2021-05-21 17:45:30.859+03	
2442bfb4-0258-a2db-aab6-1b13e252833e	2021-05-21 17:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:45:50.853+03	2021-05-21 17:45:50.859+03	
27cf1f0d-62fb-221f-22a3-8581a1f53e71	2021-05-21 17:46:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:46:11.852+03	2021-05-21 17:46:11.858+03	
8d6f762d-0917-8107-0f6e-d4d29d02344a	2021-05-21 17:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:46:32.852+03	2021-05-21 17:46:32.858+03	
c661d7a7-7b58-ad5c-938f-f440689ad3d6	2021-05-21 17:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:46:52.853+03	2021-05-21 17:46:52.86+03	
f2ee5ee6-745a-aef5-73b0-8ba9fb17c59c	2021-05-21 17:47:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:47:13.853+03	2021-05-21 17:47:13.872+03	
61955421-72cd-4c18-68e9-264639c3eb77	2021-05-21 17:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:47:34.852+03	2021-05-21 17:47:34.874+03	
95cbf6af-94bb-7ab5-f44d-0ca3cddad297	2021-05-21 17:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:47:54.853+03	2021-05-21 17:47:54.863+03	
e634b22b-bbca-6d7a-48ba-89441f3311e6	2021-05-21 17:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:48:14.853+03	2021-05-21 17:48:14.861+03	
38caef06-f56f-f230-2bac-0ac1973ac50d	2021-05-21 17:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:48:34.853+03	2021-05-21 17:48:34.871+03	
f3685f87-eda7-63d6-faeb-d8dfd8e35d0d	2021-05-21 17:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:48:54.853+03	2021-05-21 17:48:54.876+03	
6f10d04f-963c-4799-62b5-a60cf8affc22	2021-05-21 17:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:49:15.853+03	2021-05-21 17:49:15.859+03	
22b0ec9f-5476-33f9-1546-136b941ad830	2021-05-21 17:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:49:35.853+03	2021-05-21 17:49:35.859+03	
96fdc038-e7ad-6b54-53df-e31e58222259	2021-05-21 17:49:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:49:46.853+03	2021-05-21 17:49:46.877+03	
1db538dd-4d18-12f5-a068-a31e13a96f99	2021-05-21 17:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 17:50:00.853+03	2021-05-21 17:50:00.858+03	ERROR
ce99d2cd-ae3f-d255-b3f2-832fa65fe28b	2021-05-21 17:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:50:17.853+03	2021-05-21 17:50:17.87+03	
7e4b555a-5663-8273-0319-3f4a980a67b5	2021-05-21 17:50:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:50:37.853+03	2021-05-21 17:50:37.859+03	
d371c4c7-78bc-c03e-e6d9-a6f500504711	2021-05-21 17:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:50:57.853+03	2021-05-21 17:50:57.86+03	
e17f16b6-b497-341c-bc9f-4dcf27029d2c	2021-05-21 17:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:51:17.853+03	2021-05-21 17:51:17.861+03	
481f4652-3b5f-8996-be32-b33e63e12618	2021-05-21 17:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:51:37.853+03	2021-05-21 17:51:37.859+03	
c6781067-14e0-f99e-76eb-a56899993c8f	2021-05-21 17:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:51:57.853+03	2021-05-21 17:51:57.858+03	
5236886c-ad53-dc5a-3ec4-b48c25512d4a	2021-05-21 17:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:52:17.853+03	2021-05-21 17:52:17.86+03	
ebce9736-6044-2c36-64ed-91763969af3e	2021-05-21 17:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:52:37.853+03	2021-05-21 17:52:37.859+03	
8acdc309-802a-24fa-67e4-254a82254441	2021-05-21 17:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:52:57.853+03	2021-05-21 17:52:57.861+03	
d3243896-ee98-911c-a8d3-5b435c7ee683	2021-05-21 17:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:53:17.853+03	2021-05-21 17:53:17.861+03	
2f666c58-3715-3acf-0919-2ff6325c2c9a	2021-05-21 17:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:53:37.853+03	2021-05-21 17:53:37.865+03	
a7eab1ed-56b1-f3f6-0458-5b395aef05f4	2021-05-21 17:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:53:58.853+03	2021-05-21 17:53:58.861+03	
4c611886-fd76-f6cd-9a5a-ddb6ddea3cf2	2021-05-21 17:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:54:19.852+03	2021-05-21 17:54:19.873+03	
72a869b8-8548-137c-e296-bd8b97ec05ec	2021-05-21 17:54:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:54:39.852+03	2021-05-21 17:54:39.867+03	
f7b845d9-16bd-8d0b-58b6-2b29192d9dc1	2021-05-21 17:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:54:59.853+03	2021-05-21 17:54:59.859+03	
52115cb0-cc3a-952a-6687-08228d43b0f7	2021-05-21 17:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:55:19.853+03	2021-05-21 17:55:19.859+03	
eb4c1a4f-74ab-916f-0948-0b6e4ea28141	2021-05-21 17:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:55:40.853+03	2021-05-21 17:55:40.859+03	
2eacfbc4-3097-f3e6-6dbd-5016bb9fbc65	2021-05-21 17:56:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:56:01.852+03	2021-05-21 17:56:01.859+03	
24a9fabd-d46d-3dff-f2c4-aab848015ced	2021-05-21 17:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:56:22.853+03	2021-05-21 17:56:22.859+03	
d06fa302-771c-9723-ea51-17305a934f0a	2021-05-21 17:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:56:42.853+03	2021-05-21 17:56:42.871+03	
94a398ba-8742-c4be-3a81-3faab2ca68c8	2021-05-21 17:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:57:03.853+03	2021-05-21 17:57:03.861+03	
6d8ffc3a-af6f-91ee-aa0b-ddcc1dae92ca	2021-05-21 17:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:57:24.852+03	2021-05-21 17:57:24.867+03	
2826b5e3-8a61-4181-c222-5a75da805ea1	2021-05-21 17:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:57:44.853+03	2021-05-21 17:57:44.859+03	
8a44eddd-b4d3-4195-0656-024e5aa09ad4	2021-05-21 17:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:58:05.853+03	2021-05-21 17:58:05.859+03	
c775e3e9-b676-9728-e38b-66ce84323b2c	2021-05-21 17:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:58:25.853+03	2021-05-21 17:58:25.882+03	
a44112e2-1532-0d1a-0333-3a6b4fa59f15	2021-05-21 17:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:58:46.852+03	2021-05-21 17:58:46.858+03	
ba514c51-b391-b99b-f341-366ea769da84	2021-05-21 17:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:59:06.852+03	2021-05-21 17:59:06.86+03	
49604422-e202-77d6-b616-d43c9b92464a	2021-05-21 17:59:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:59:26.854+03	2021-05-21 17:59:26.86+03	
a239a55a-8e8b-f081-9ef1-3d824ba5b72b	2021-05-21 17:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:59:47.853+03	2021-05-21 17:59:47.859+03	
fc698eef-e414-0f05-dbc6-0cae0de321e8	2021-05-21 18:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 18:00:00.853+03	2021-05-21 18:00:00.859+03	ERROR
57ea9ad8-9fdd-8820-d327-2438c588171d	2021-05-21 18:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:00:17.853+03	2021-05-21 18:00:17.874+03	
108bba7a-fc4c-e32f-a316-85967f234bc5	2021-05-21 18:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:00:37.853+03	2021-05-21 18:00:37.863+03	
3298b8bf-ed7e-2c9f-a4f0-b4e62a4e724f	2021-05-21 18:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:00:57.853+03	2021-05-21 18:00:57.859+03	
b61fd873-cfd7-3780-8b93-e57121380d0a	2021-05-21 18:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:01:19.853+03	2021-05-21 18:01:19.859+03	
b7b6fc20-9e75-d54f-f042-c11f56e9df59	2021-05-21 18:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:01:40.852+03	2021-05-21 18:01:40.859+03	
a1922516-f5ae-e43d-98ba-84a0f391ebd4	2021-05-21 18:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:02:00.853+03	2021-05-21 18:02:00.86+03	
7ed2a624-0cc8-8102-fb47-bc7b43396fa2	2021-05-21 18:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:02:20.853+03	2021-05-21 18:02:20.866+03	
266bff1a-13f0-892f-1396-451daca0fa8b	2021-05-21 18:02:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:02:41.854+03	2021-05-21 18:02:41.863+03	
0667ef43-256b-645a-7e5d-767aa244ee83	2021-05-21 18:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:03:02.853+03	2021-05-21 18:03:02.86+03	
35ca06a8-dcbd-a164-7c47-75164fe617a9	2021-05-21 18:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:03:23.852+03	2021-05-21 18:03:23.859+03	
ed9e2c7c-b2e6-c840-f012-66ae760e403c	2021-05-21 18:03:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:03:43.852+03	2021-05-21 18:03:43.859+03	
178547d8-0bfc-3fcc-f957-54e56566bcaa	2021-05-21 18:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:04:03.853+03	2021-05-21 18:04:03.861+03	
805ad550-4a71-2dd6-4329-6fd5f362832d	2021-05-21 18:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:04:24.852+03	2021-05-21 18:04:24.865+03	
d64fd98a-dbad-4b22-7f04-57d0f1732226	2021-05-21 18:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:04:44.853+03	2021-05-21 18:04:44.864+03	
3de17a5d-07a7-957b-3c89-b41133e005c7	2021-05-21 18:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:05:05.852+03	2021-05-21 18:05:05.859+03	
f63a8b23-f44b-cb3b-e8ca-ea2181c41978	2021-05-21 18:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:05:25.852+03	2021-05-21 18:05:25.86+03	
fd07ea16-c2fc-6e8a-0dae-8b3a2d08bfe1	2021-05-21 18:05:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:05:46.854+03	2021-05-21 18:05:46.86+03	
f13bbe03-94a7-86f9-285b-fbeca0e5a52f	2021-05-21 18:06:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:06:08.852+03	2021-05-21 18:06:08.859+03	
5f316b8a-0a6f-a843-9a67-efcfe96c525c	2021-05-21 18:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:06:28.852+03	2021-05-21 18:06:28.859+03	
d7840b4b-7cee-e6c2-f43d-0ae8ec6b5a18	2021-05-21 18:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:06:48.853+03	2021-05-21 18:06:48.914+03	
b8171b76-0247-5d2b-aabc-be55d4b5c38e	2021-05-21 18:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:07:08.853+03	2021-05-21 18:07:08.86+03	
08ac9023-0874-ad58-e13b-d12d44fa9ac7	2021-05-21 18:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:07:28.853+03	2021-05-21 18:07:28.862+03	
7994ed0b-42dc-cff4-10ea-812baa789b1f	2021-05-21 18:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:07:49.853+03	2021-05-21 18:07:49.86+03	
c57fd157-6d74-9e0c-0887-45f2d83a5a40	2021-05-21 18:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:08:09.853+03	2021-05-21 18:08:09.874+03	
0ff5733c-88ad-0972-d727-3858640e3f9a	2021-05-21 18:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:08:30.852+03	2021-05-21 18:08:30.859+03	
bddd9804-813f-e1b6-647f-2092a6be00f3	2021-05-21 18:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:08:50.853+03	2021-05-21 18:08:50.86+03	
7a2d4f5f-9e67-3f8e-1903-49b65e4683a1	2021-05-21 18:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:09:10.853+03	2021-05-21 18:09:10.862+03	
35d9f456-129d-89a9-4ca6-97d4bc8369e4	2021-05-21 18:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:09:30.853+03	2021-05-21 18:09:30.86+03	
73a1e31f-feb6-dd6e-e522-686e6fe580fd	2021-05-21 18:09:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:09:51.853+03	2021-05-21 18:09:51.86+03	
2bb161c0-2e34-1ec1-ba92-abfd1d6b5603	2021-05-21 18:10:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:10:01.853+03	2021-05-21 18:10:01.862+03	
a983fcbd-c4e4-5563-0694-aeee14798acf	2021-05-21 18:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:10:23.853+03	2021-05-21 18:10:23.87+03	
46569aa2-a569-989f-efa5-47a38846431b	2021-05-21 18:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:10:43.853+03	2021-05-21 18:10:43.871+03	
62ced6ff-1fe2-ec73-5738-daa61f8eebad	2021-05-21 18:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:11:05.852+03	2021-05-21 18:11:05.871+03	
d698493f-5297-de22-f3b9-efdd5b171fc2	2021-05-21 18:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:11:25.853+03	2021-05-21 18:11:25.859+03	
68dc9bfb-3744-5384-1b65-e5b96dc27c70	2021-05-21 18:11:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:11:46.853+03	2021-05-21 18:11:46.866+03	
1e5260c9-608e-c4b3-0065-03a8cdc8b52c	2021-05-21 18:12:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:12:06.854+03	2021-05-21 18:12:06.862+03	
1e8e6780-1932-dfda-45fa-0e605908cd16	2021-05-21 18:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:12:27.852+03	2021-05-21 18:12:27.866+03	
220044f6-fd59-640a-d6b8-043e93d0e43a	2021-05-21 18:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:12:47.853+03	2021-05-21 18:12:47.859+03	
15d5b746-05ea-bc38-a729-3547d437e25e	2021-05-21 18:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:13:08.853+03	2021-05-21 18:13:08.863+03	
119e5bd3-07b0-56ca-aa75-067f86f2d6a8	2021-05-21 18:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:13:29.853+03	2021-05-21 18:13:29.86+03	
3b314102-a8c0-14fd-f810-ccb154cb4e0f	2021-05-21 18:13:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:13:51.853+03	2021-05-21 18:13:51.859+03	
e6ad4c54-fe8c-5443-c337-b0d8b6a07e2b	2021-05-21 18:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:14:12.853+03	2021-05-21 18:14:12.86+03	
64a1d496-ecef-ec2c-11a3-7f04ac88d830	2021-05-21 18:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:14:43.853+03	2021-05-21 18:14:43.859+03	
5fc5bafc-279e-bd87-4992-ed0cbc8d1b1a	2021-05-21 18:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:15:03.853+03	2021-05-21 18:15:03.872+03	
3c3e828c-34a6-a1c5-cee0-360c1a4c643e	2021-05-21 18:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:15:24.852+03	2021-05-21 18:15:24.871+03	
74d23e18-3e00-18e3-9b6b-f9a1b253e646	2021-05-21 18:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:15:45.853+03	2021-05-21 18:15:45.86+03	
16ebf4e2-05b0-77d0-8a87-f493c8c763cc	2021-05-21 18:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:16:05.853+03	2021-05-21 18:16:05.87+03	
8e4c353c-dbe6-a342-44ca-cb72fa87a8b1	2021-05-21 18:16:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:16:26.852+03	2021-05-21 18:16:26.859+03	
23392115-936c-3e29-2258-c5c6395c3657	2021-05-21 18:16:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:16:46.854+03	2021-05-21 18:16:46.863+03	
319dd365-1d74-054a-d0b2-777ca7ec0495	2021-05-21 18:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:17:07.852+03	2021-05-21 18:17:07.859+03	
ef1077f0-73c9-7632-000f-85ef60dbcf21	2021-05-21 18:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:17:28.852+03	2021-05-21 18:17:28.859+03	
1fc062ce-07ad-628f-4eda-9ff198b79c5a	2021-05-21 18:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:17:49.853+03	2021-05-21 18:17:49.861+03	
f7d08b72-15bf-af9f-2de8-39fc61228a93	2021-05-21 18:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:18:10.853+03	2021-05-21 18:18:10.859+03	
877b8e2c-504e-fad2-3757-3c3c3394d0bd	2021-05-21 18:18:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:18:31.853+03	2021-05-21 18:18:31.859+03	
c8d4d3ae-d970-531d-1ddd-d4c1f1007b48	2021-05-21 18:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:18:52.853+03	2021-05-21 18:18:52.859+03	
3971861b-8923-7912-919c-6389c68e10ad	2021-05-21 18:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:19:12.853+03	2021-05-21 18:19:12.861+03	
66613ac6-dfb3-0b9c-a275-7c3b281a391e	2021-05-21 18:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:19:32.853+03	2021-05-21 18:19:32.859+03	
99ea8259-14a3-423b-0d66-f1bfe15cf6e9	2021-05-21 17:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:58:35.853+03	2021-05-21 17:58:35.86+03	
9b358c50-8e2c-6903-6508-90fd003aa850	2021-05-21 17:58:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:58:56.852+03	2021-05-21 17:58:56.86+03	
5ddde852-4ac6-bee5-06a5-6f12e7dfe08c	2021-05-21 17:59:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:59:16.852+03	2021-05-21 17:59:16.866+03	
f4ada2a7-9bae-823b-b297-3ad384714784	2021-05-21 17:59:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:59:36.854+03	2021-05-21 17:59:36.861+03	
8a609bf5-427d-91cd-d50c-c56db595afbc	2021-05-21 17:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 17:59:57.853+03	2021-05-21 17:59:57.86+03	
2d8aff7c-353f-cb00-8d43-7bb669fb86b3	2021-05-21 18:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:00:07.853+03	2021-05-21 18:00:08.18+03	
692d8ef0-cc89-c394-3c69-d3b27f66a64a	2021-05-21 18:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:00:27.853+03	2021-05-21 18:00:27.864+03	
8441d88f-fdf7-860c-3fdd-af4bf8b6059d	2021-05-21 18:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:00:47.853+03	2021-05-21 18:00:47.86+03	
ad52f124-057a-95f8-47f4-099f94396a36	2021-05-21 18:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:01:08.853+03	2021-05-21 18:01:08.86+03	
08861254-909b-56ba-b906-297f4f3091b5	2021-05-21 18:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:01:30.852+03	2021-05-21 18:01:30.858+03	
9e4aa6cd-11b5-1170-8db0-729d4c319b3c	2021-05-21 18:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:01:50.853+03	2021-05-21 18:01:50.872+03	
aff929ad-ff0e-1af8-ad27-bffbcd14ebd9	2021-05-21 18:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:02:10.853+03	2021-05-21 18:02:10.86+03	
386d3c76-5f29-a273-a22a-03174860de86	2021-05-21 18:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:02:31.852+03	2021-05-21 18:02:31.872+03	
0e6c85ca-def5-a988-dfa3-f6781525dddd	2021-05-21 18:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:02:52.853+03	2021-05-21 18:02:52.859+03	
b348b296-0bc1-bba3-d2c5-a511e2329f3c	2021-05-21 18:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:03:12.853+03	2021-05-21 18:03:12.859+03	
daa4a1b6-52a8-9137-57a7-e74f74a5e3e8	2021-05-21 18:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:03:33.852+03	2021-05-21 18:03:33.872+03	
27e5b72e-d33b-f966-0245-44bb8a070050	2021-05-21 18:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:03:53.853+03	2021-05-21 18:03:53.859+03	
9a02c88f-7b4e-1e62-d33f-a916122c095d	2021-05-21 18:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:04:13.853+03	2021-05-21 18:04:13.866+03	
b12d7c21-8387-c484-4211-08e3f857228e	2021-05-21 18:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:04:34.852+03	2021-05-21 18:04:34.859+03	
9a1699f7-7099-14e5-8259-1191ed269c86	2021-05-21 18:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:04:55.852+03	2021-05-21 18:04:55.873+03	
f416f5ad-2b79-5e83-3ed9-4e4521d2bc22	2021-05-21 18:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:05:15.852+03	2021-05-21 18:05:15.859+03	
605907db-9161-f79d-2631-bc3c219e8469	2021-05-21 18:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:05:35.853+03	2021-05-21 18:05:35.86+03	
58dcc3a1-5b6c-c5bd-d77f-1896045372f1	2021-05-21 18:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:05:57.853+03	2021-05-21 18:05:57.859+03	
5834d2f8-5a61-cb6d-b46c-d56aafd863a7	2021-05-21 18:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:06:18.852+03	2021-05-21 18:06:18.86+03	
a41d1db3-76ed-69d7-842f-63d5f68dda5e	2021-05-21 18:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:06:38.853+03	2021-05-21 18:06:38.86+03	
1e9bc06f-7681-59ef-c87c-10344ab2c82a	2021-05-21 18:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:06:58.853+03	2021-05-21 18:06:58.859+03	
c7ce1302-abb9-cfee-d986-4edd0eaa9bd3	2021-05-21 18:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:07:18.853+03	2021-05-21 18:07:18.862+03	
4df36303-9db5-fa7d-13a9-8504c0420c05	2021-05-21 18:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:07:38.853+03	2021-05-21 18:07:38.86+03	
e06b9dfb-dbae-3af1-4747-d977ef2f3c8d	2021-05-21 18:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:07:59.853+03	2021-05-21 18:07:59.865+03	
67e82390-4e7f-e2d4-d1be-bdb358353545	2021-05-21 18:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:08:20.852+03	2021-05-21 18:08:20.859+03	
fd1e0d4b-848f-bf89-7475-2e24d31d5121	2021-05-21 18:08:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:08:40.853+03	2021-05-21 18:08:40.86+03	
cc6a519b-2cfe-03d0-e5fb-f8e696ef6d6c	2021-05-21 18:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:09:00.853+03	2021-05-21 18:09:00.86+03	
7f45bd76-4842-3a75-0ee5-49f553f53ea8	2021-05-21 18:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:09:20.853+03	2021-05-21 18:09:20.867+03	
672a11fb-0813-9ebd-7711-a956f5d84964	2021-05-21 18:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:09:40.853+03	2021-05-21 18:09:40.86+03	
f55711da-ab5b-a22e-7d61-88952a59f7e7	2021-05-21 18:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 18:10:00.852+03	2021-05-21 18:10:00.858+03	ERROR
f0aeed30-4524-e439-78e7-a3e06e03b796	2021-05-21 18:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:10:12.853+03	2021-05-21 18:10:12.863+03	
80c12b1f-fe5b-afcd-6871-de2cc9bc8af2	2021-05-21 18:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:10:33.853+03	2021-05-21 18:10:33.86+03	
1a185e2b-aa41-95b5-9598-b81094e8a939	2021-05-21 18:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:10:54.853+03	2021-05-21 18:10:54.859+03	
30544dfa-c522-6761-ac14-b8cb9ab51cf0	2021-05-21 18:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:11:15.853+03	2021-05-21 18:11:15.865+03	
a28292d1-b5b1-7f1e-a124-0da5e1073c74	2021-05-21 18:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:11:35.853+03	2021-05-21 18:11:35.861+03	
a21037eb-b138-78c9-b420-b88cf0bf0951	2021-05-21 18:11:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:11:56.854+03	2021-05-21 18:11:56.862+03	
2161c5f8-6fec-1125-1f5f-528c82010cc5	2021-05-21 18:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:12:17.852+03	2021-05-21 18:12:17.868+03	
9116e640-e4c3-ba79-ec33-f5085aa026a7	2021-05-21 18:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:12:37.853+03	2021-05-21 18:12:37.859+03	
5fddf8ec-21d6-22d0-cffe-73dd6034fc28	2021-05-21 18:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:12:58.853+03	2021-05-21 18:12:58.858+03	
8fd4b14d-cdde-0a9a-fa5b-aafc88010c83	2021-05-21 18:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:13:19.852+03	2021-05-21 18:13:19.863+03	
ba33bb0a-fb20-680f-d610-c05d1d1dd7bf	2021-05-21 18:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:13:40.853+03	2021-05-21 18:13:40.86+03	
75f93fcd-68dc-3f11-c3d5-343024ec90c6	2021-05-21 18:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:14:02.852+03	2021-05-21 18:14:02.86+03	
cddc39de-528d-9131-5d28-c7d6a2b0fcf2	2021-05-21 18:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:14:22.853+03	2021-05-21 18:14:22.86+03	
e5a03404-33b4-3025-9d61-bb81d0dd72d9	2021-05-21 18:14:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:14:33.853+03	2021-05-21 18:14:33.861+03	
88a987cf-48f9-2ce1-ef3f-04474f3cd832	2021-05-21 18:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:14:53.853+03	2021-05-21 18:14:53.863+03	
61592562-a46e-164c-a232-47e8fb934ef2	2021-05-21 18:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:15:13.853+03	2021-05-21 18:15:13.859+03	
aa2c5b4f-9f4a-59a8-58b0-f3f32ca8db20	2021-05-21 18:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:15:34.853+03	2021-05-21 18:15:34.87+03	
3fe128c4-9675-e47f-0c94-83e80e1fc8ab	2021-05-21 18:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:15:55.853+03	2021-05-21 18:15:55.875+03	
feee2aee-5517-9225-9369-a727b7ec6e54	2021-05-21 18:16:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:16:16.852+03	2021-05-21 18:16:16.859+03	
155c4ec0-812e-0985-65ba-08475084bc10	2021-05-21 18:16:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:16:36.852+03	2021-05-21 18:16:36.86+03	
97df71d0-7405-4d2d-1fb3-dc5faf3fb94e	2021-05-21 18:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:16:57.852+03	2021-05-21 18:16:57.859+03	
471798eb-f4db-2010-268b-aa3a6c219fea	2021-05-21 18:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:17:17.853+03	2021-05-21 18:17:17.861+03	
12d37e30-93b9-5db7-9bc3-8052ef016e5d	2021-05-21 18:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:17:38.853+03	2021-05-21 18:17:38.86+03	
9f46f94b-3ca9-e665-2b60-70c36e9ce3a5	2021-05-21 18:17:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:17:59.853+03	2021-05-21 18:17:59.86+03	
e383a578-5a7e-d960-9909-b798e108d9c6	2021-05-21 18:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:18:20.853+03	2021-05-21 18:18:20.86+03	
03cffb3d-e2af-541c-beb3-7961227585e6	2021-05-21 18:18:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:18:41.854+03	2021-05-21 18:18:41.86+03	
558b88f7-d6d4-745b-d9b2-7040c3a2b918	2021-05-21 18:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:19:02.853+03	2021-05-21 18:19:02.86+03	
658190ff-2fa8-14b0-6482-dd9a007711ee	2021-05-21 18:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:19:22.853+03	2021-05-21 18:19:22.86+03	
702a2233-5b83-c8de-2dad-e6caf374d075	2021-05-21 18:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:19:43.853+03	2021-05-21 18:19:43.861+03	
f7bf3ac7-e9dc-e73b-c1d5-d1570de59c9c	2021-05-21 18:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 18:20:00.852+03	2021-05-21 18:20:00.858+03	ERROR
be6b3364-f47c-a8c8-2dfc-78e649d6bde5	2021-05-21 18:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:20:14.853+03	2021-05-21 18:20:14.86+03	
fd261573-13cc-7fce-3fcc-1b98aca00a1c	2021-05-21 18:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:20:35.853+03	2021-05-21 18:20:35.86+03	
dad08968-6202-8c07-81b4-952661276fc3	2021-05-21 18:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:20:55.853+03	2021-05-21 18:20:55.859+03	
8e2a6a1c-007b-5a41-7a64-221b22c12286	2021-05-21 18:21:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:21:16.853+03	2021-05-21 18:21:16.86+03	
73a83e28-3db8-6a78-853e-3a0010a949b5	2021-05-21 18:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:21:36.853+03	2021-05-21 18:21:36.859+03	
bb84e242-06e2-6176-a051-180143c67acf	2021-05-21 18:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:21:57.853+03	2021-05-21 18:21:57.858+03	
4b7a60b5-2419-d409-1b7f-38d6942ced3c	2021-05-21 18:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:22:17.853+03	2021-05-21 18:22:17.859+03	
e1155d0f-22f0-4956-0e6e-f055486d13bc	2021-05-21 18:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:22:37.853+03	2021-05-21 18:22:37.859+03	
e8d73fb1-549f-0650-3b1b-3dd5657185c3	2021-05-21 18:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:22:57.853+03	2021-05-21 18:22:57.86+03	
2ade9d42-6609-c1a2-11b5-6ba44b40f52c	2021-05-21 18:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:23:18.852+03	2021-05-21 18:23:18.859+03	
4d773101-adc6-3dc8-3272-60deae86836b	2021-05-21 18:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:23:38.853+03	2021-05-21 18:23:38.86+03	
1e743388-5c5d-f2c6-06fc-06822f9dc63f	2021-05-21 18:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:23:58.853+03	2021-05-21 18:23:58.86+03	
e8fbedbb-399f-cbe9-5953-2a81cbfb4230	2021-05-21 18:24:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:24:18.853+03	2021-05-21 18:24:18.861+03	
83861ed5-abb1-824f-0d39-2c60773313d8	2021-05-21 18:24:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:24:39.853+03	2021-05-21 18:24:39.861+03	
d23c3a73-c491-4498-4a7d-b6ed5229168f	2021-05-21 18:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:24:59.853+03	2021-05-21 18:24:59.859+03	
0cbebdb8-5d99-c20f-28da-5e6aa1c622ea	2021-05-21 18:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:25:20.853+03	2021-05-21 18:25:20.861+03	
e28484f3-d6d3-aa85-5dfd-754ea277e841	2021-05-21 18:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:25:40.853+03	2021-05-21 18:25:40.86+03	
c1901fc1-12c8-7b77-5706-af8a50e11557	2021-05-21 18:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:26:00.853+03	2021-05-21 18:26:00.859+03	
09d48b0d-417e-f9b4-e69f-eb4310d2e06b	2021-05-21 18:26:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:26:21.852+03	2021-05-21 18:26:21.859+03	
dc63c928-d564-41c7-1e2d-9c79e9b00db3	2021-05-21 18:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:26:42.853+03	2021-05-21 18:26:42.861+03	
b3c65eda-f7f3-7f8e-7aeb-ad138c284e88	2021-05-21 18:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:27:03.852+03	2021-05-21 18:27:03.859+03	
713db0d9-c58b-f7ef-9d03-c57a49ed70c7	2021-05-21 18:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:27:23.853+03	2021-05-21 18:27:23.859+03	
3f81a601-9478-4dad-e3d9-175505960ba0	2021-05-21 18:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:27:44.853+03	2021-05-21 18:27:44.859+03	
f53c017b-70a5-ab67-3d0b-193309488918	2021-05-21 18:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:28:05.852+03	2021-05-21 18:28:05.859+03	
e9d4dd09-3d9a-ec02-99d6-7ef2c00bff32	2021-05-21 18:28:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:28:25.852+03	2021-05-21 18:28:25.86+03	
aa4518eb-0bc9-e06c-6b42-8f95b26beb46	2021-05-21 18:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:28:45.852+03	2021-05-21 18:28:45.86+03	
29e6a4b9-78b4-099c-4e77-ce0534b2f0b8	2021-05-21 18:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:29:05.853+03	2021-05-21 18:29:05.859+03	
036d34ea-fe64-5461-f1e0-a3c0aa7a5a79	2021-05-21 18:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:29:25.853+03	2021-05-21 18:29:25.865+03	
9060eef4-c483-a40a-0af3-b1558085ee2e	2021-05-21 18:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:29:45.853+03	2021-05-21 18:29:45.86+03	
ebf8b770-8145-2ae0-087b-f341f521bcc3	2021-05-21 18:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 18:30:00.852+03	2021-05-21 18:30:00.858+03	ERROR
659a01ee-b2fc-89e5-d6cd-47e9cf672f46	2021-05-21 18:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:30:16.852+03	2021-05-21 18:30:16.873+03	
d09aedec-96cb-ca30-4dce-861e6256556a	2021-05-21 18:30:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:30:36.853+03	2021-05-21 18:30:36.86+03	
cbd3cc01-5bc2-2eb1-2dfe-2c364e088e85	2021-05-21 18:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:30:57.853+03	2021-05-21 18:30:57.86+03	
33546b06-5a6f-9c10-4fd5-ef6b473dfbce	2021-05-21 18:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:31:18.853+03	2021-05-21 18:31:18.859+03	
9792d6dc-9a9c-7787-664d-e0a18ccb137d	2021-05-21 18:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:31:40.852+03	2021-05-21 18:31:40.86+03	
8b0e9b4d-9087-3356-631b-0c65d41e90b8	2021-05-21 18:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:32:00.853+03	2021-05-21 18:32:00.86+03	
a4698e27-6770-82de-15cc-d60c50523d1d	2021-05-21 18:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:32:20.853+03	2021-05-21 18:32:20.866+03	
0374a5a9-6b3f-1d15-4d95-c0f6d46dfc20	2021-05-21 18:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:32:40.853+03	2021-05-21 18:32:40.859+03	
844ce49a-12de-e7de-a7f3-e04a4eeeaabc	2021-05-21 18:33:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:33:01.854+03	2021-05-21 18:33:01.89+03	
2cb4348e-aba9-81b6-98af-337acc0fb6bd	2021-05-21 18:33:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:33:22.853+03	2021-05-21 18:33:22.859+03	
7e01be2e-ac10-2895-3f6a-d0e9ac0d416a	2021-05-21 18:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:33:42.853+03	2021-05-21 18:33:42.859+03	
bd734a60-ff35-f33b-ac8f-b5428c0ab5d7	2021-05-21 18:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:34:02.853+03	2021-05-21 18:34:02.86+03	
603d5975-3efd-d706-4f73-2db2047d950c	2021-05-21 18:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:34:23.852+03	2021-05-21 18:34:23.858+03	
30ad9115-0e0d-e11a-b3cd-c7772168dc06	2021-05-21 18:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:34:43.852+03	2021-05-21 18:34:43.867+03	
7f0b8175-e20e-bc22-5d6d-fa20e7946d6a	2021-05-21 18:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:35:03.853+03	2021-05-21 18:35:03.871+03	
f0cbe6fa-39a9-0d52-aaeb-413db0534d32	2021-05-21 18:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:35:23.853+03	2021-05-21 18:35:23.86+03	
b3b4094e-a3a7-ef6e-d6c5-86b5726a29a0	2021-05-21 18:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:35:43.853+03	2021-05-21 18:35:43.86+03	
7664582c-e93a-6195-09cb-804e67f34aa3	2021-05-21 18:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:36:03.853+03	2021-05-21 18:36:03.869+03	
a8728b27-0e17-62e4-24cb-9173a4687d09	2021-05-21 18:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:36:24.853+03	2021-05-21 18:36:24.858+03	
45eb56e4-6e9f-830a-cc71-a1d67168b2d5	2021-05-21 18:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:36:44.853+03	2021-05-21 18:36:44.859+03	
39656045-f579-43ba-3250-d724418fb7f0	2021-05-21 18:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:37:04.853+03	2021-05-21 18:37:04.86+03	
6531ad1a-9690-7db3-d4f5-0350b74e79a2	2021-05-21 18:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:37:25.852+03	2021-05-21 18:37:25.859+03	
39607611-c390-0e66-ae83-d7aa21f61153	2021-05-21 18:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:37:45.853+03	2021-05-21 18:37:45.859+03	
c3cc6458-64b7-d6fc-29d9-9da19fdaeda1	2021-05-21 18:38:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:38:06.853+03	2021-05-21 18:38:06.859+03	
543b09f6-9878-3f00-61f0-4f654974ffe4	2021-05-21 18:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:38:27.853+03	2021-05-21 18:38:27.86+03	
2d47f0f8-02a7-67f1-4721-88bdd56b4e57	2021-05-21 18:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:38:48.853+03	2021-05-21 18:38:48.86+03	
6036ae50-0742-d9e0-7f9c-b9ef3d2e3a9d	2021-05-21 18:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:39:09.852+03	2021-05-21 18:39:09.863+03	
3b5e5cb4-450e-030b-0154-2766781e4e6c	2021-05-21 18:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:39:29.853+03	2021-05-21 18:39:29.859+03	
ef007687-9cda-0884-5915-62f0e24c0454	2021-05-21 18:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:39:50.852+03	2021-05-21 18:39:50.859+03	
f34dd684-0ce6-4eb8-5d15-67f739c4d929	2021-05-21 18:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:40:11.853+03	2021-05-21 18:40:11.866+03	
581af6b7-42b7-e582-1a5b-ce9e243c4cd4	2021-05-21 18:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:40:31.853+03	2021-05-21 18:40:31.859+03	
3a0128d3-7eb4-6522-e185-b199b57b9da1	2021-05-21 18:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:19:53.853+03	2021-05-21 18:19:53.862+03	
78dba3f6-1680-7485-6fb4-734a6900a2ec	2021-05-21 18:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:20:04.853+03	2021-05-21 18:20:04.859+03	
ad1db3fc-ad87-30fc-1c38-0b3e1fe32733	2021-05-21 18:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:20:25.853+03	2021-05-21 18:20:25.867+03	
49ed8d64-89b1-64e2-e59c-64cdd304fc8b	2021-05-21 18:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:20:45.853+03	2021-05-21 18:20:45.859+03	
bdbffe11-775d-a9c8-b5cf-b17f65a653a0	2021-05-21 18:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:21:06.852+03	2021-05-21 18:21:06.86+03	
3e85478c-278b-1e35-0e78-59016f0902c7	2021-05-21 18:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:21:26.853+03	2021-05-21 18:21:26.859+03	
bf668525-e01b-bc44-6c36-2284860f7920	2021-05-21 18:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:21:47.853+03	2021-05-21 18:21:47.872+03	
e42f568a-04db-44ba-88fa-3e61ef8a414f	2021-05-21 18:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:22:07.853+03	2021-05-21 18:22:07.859+03	
66e6ce5e-692e-2177-71a3-78d0d00cc1c3	2021-05-21 18:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:22:27.853+03	2021-05-21 18:22:27.859+03	
46a16654-bae4-1f87-c232-1342c6981ac4	2021-05-21 18:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:22:47.853+03	2021-05-21 18:22:47.861+03	
3019588f-0d35-6ab2-a9d3-3afebfe095bd	2021-05-21 18:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:23:07.853+03	2021-05-21 18:23:07.86+03	
f233b937-2f9f-21f7-bbfd-e2714f49a4f8	2021-05-21 18:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:23:28.853+03	2021-05-21 18:23:28.861+03	
a5846c0f-6d2f-52b6-3c9f-cec3b5f2cf05	2021-05-21 18:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:23:48.853+03	2021-05-21 18:23:48.861+03	
74ad5c8a-9489-cf8c-40d9-b433b74730b1	2021-05-21 18:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:24:08.853+03	2021-05-21 18:24:08.86+03	
273de0db-c171-3151-b33f-26ff20d92fc2	2021-05-21 18:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:24:29.853+03	2021-05-21 18:24:29.86+03	
769a2f33-2883-9ebe-1136-1737cd596412	2021-05-21 18:24:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:24:49.853+03	2021-05-21 18:24:49.867+03	
8fba672c-7705-0be9-81ad-deb30d02fbee	2021-05-21 18:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:25:10.853+03	2021-05-21 18:25:10.86+03	
2df79372-4049-fb48-1984-627e5e7e4ead	2021-05-21 18:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:25:30.853+03	2021-05-21 18:25:30.859+03	
b06c988a-4d22-1d4b-8b5c-ce8044194fbe	2021-05-21 18:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:25:50.853+03	2021-05-21 18:25:50.86+03	
080c291a-1388-2ed6-044d-1f1e6c93d7d9	2021-05-21 18:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:26:10.853+03	2021-05-21 18:26:10.865+03	
bf4321a9-4af7-787d-981f-71a01f45b2bb	2021-05-21 18:26:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:26:31.853+03	2021-05-21 18:26:31.86+03	
735074cf-61ce-980f-fd46-d4338d1452ca	2021-05-21 18:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:26:53.852+03	2021-05-21 18:26:53.859+03	
dafebc15-d1f0-7033-dbe1-9d1ec595655c	2021-05-21 18:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:27:13.853+03	2021-05-21 18:27:13.86+03	
92ea1869-d460-e374-7c0f-f903c9f7c797	2021-05-21 18:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:27:34.853+03	2021-05-21 18:27:34.86+03	
e088783d-3d5f-f6be-c6ca-eadefa0ee028	2021-05-21 18:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:27:55.852+03	2021-05-21 18:27:55.858+03	
e80cc16c-b52c-77d4-0613-b19580550abc	2021-05-21 18:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:28:15.852+03	2021-05-21 18:28:15.859+03	
4661b6cb-4cd0-0d07-8bcc-30f86e356fd3	2021-05-21 18:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:28:35.852+03	2021-05-21 18:28:35.859+03	
a05bd718-998d-09c0-9d20-3c30e6485421	2021-05-21 18:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:28:55.852+03	2021-05-21 18:28:55.863+03	
a317fa70-57d2-6a6e-d414-5cc44a600ba7	2021-05-21 18:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:29:15.853+03	2021-05-21 18:29:15.86+03	
311bbfb1-5048-1846-b74d-4d4a3aac3a19	2021-05-21 18:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:29:35.853+03	2021-05-21 18:29:35.861+03	
72c7c329-977b-2d06-31e9-3b74c4231e06	2021-05-21 18:29:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:29:56.852+03	2021-05-21 18:29:56.858+03	
457da8c5-7649-6c44-1425-d06695e1aa05	2021-05-21 18:30:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:30:06.852+03	2021-05-21 18:30:06.859+03	
b8ffcc12-4d4c-b9cb-1f9c-56cd6122df35	2021-05-21 18:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:30:26.852+03	2021-05-21 18:30:26.861+03	
b1575c05-342f-8c29-0a4c-076e0600d4b1	2021-05-21 18:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:30:47.852+03	2021-05-21 18:30:47.87+03	
731a5c13-0f35-ee30-b0dd-a1bbb139e2b6	2021-05-21 18:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:31:08.852+03	2021-05-21 18:31:08.859+03	
064e7dda-0169-e69e-d827-0bcf8175c698	2021-05-21 18:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:31:29.853+03	2021-05-21 18:31:29.859+03	
2b26ba59-8372-cc10-a479-316eb4a97c44	2021-05-21 18:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:31:50.853+03	2021-05-21 18:31:50.86+03	
a727dd9f-d3d0-2668-ca71-b2a970df3281	2021-05-21 18:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:32:10.853+03	2021-05-21 18:32:10.86+03	
cc691a35-9794-2025-ccb7-d5a14ee021c6	2021-05-21 18:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:32:30.853+03	2021-05-21 18:32:30.86+03	
fba6b37e-6850-02c2-25b0-b5228211a0fe	2021-05-21 18:32:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:32:51.852+03	2021-05-21 18:32:51.859+03	
d0b2aac1-35f3-62b4-94a3-7ebc3753856c	2021-05-21 18:33:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:33:12.853+03	2021-05-21 18:33:12.861+03	
a6b42990-5fc6-e93e-8c97-da9bf2561cc0	2021-05-21 18:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:33:32.853+03	2021-05-21 18:33:32.859+03	
060f9683-e688-c6b0-b873-e6a57ac935b8	2021-05-21 18:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:33:52.853+03	2021-05-21 18:33:52.86+03	
97a90597-a069-6ac6-8b1e-0d96075e2b31	2021-05-21 18:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:34:13.852+03	2021-05-21 18:34:13.86+03	
1fb393d8-dfc8-9af7-1b31-e259051aa023	2021-05-21 18:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:34:33.852+03	2021-05-21 18:34:33.871+03	
297d42a1-5b9f-d4b5-99ee-d12fee3dd609	2021-05-21 18:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:34:53.853+03	2021-05-21 18:34:53.869+03	
ac710f96-8d5e-538f-a15f-9d55da91d27d	2021-05-21 18:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:35:13.853+03	2021-05-21 18:35:13.868+03	
fa950bc6-0de7-5337-5428-9e3f618365c6	2021-05-21 18:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:35:33.853+03	2021-05-21 18:35:33.865+03	
ce30753e-5906-61d7-42d1-a9e3e328f883	2021-05-21 18:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:35:53.853+03	2021-05-21 18:35:53.859+03	
9ce72139-ff7a-ef8c-fca2-4efddcc2ce52	2021-05-21 18:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:36:14.853+03	2021-05-21 18:36:14.861+03	
ec13069e-a8b2-dfe8-9e6c-19ee18e6e795	2021-05-21 18:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:36:34.853+03	2021-05-21 18:36:34.859+03	
41e9a5c1-5cf4-87fe-bece-ce3513864d8a	2021-05-21 18:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:36:54.853+03	2021-05-21 18:36:54.859+03	
6ed6f0cb-e51e-f8c2-5a36-14d1471370d7	2021-05-21 18:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:37:15.852+03	2021-05-21 18:37:15.859+03	
019c7fcd-8c73-81a8-c6d7-15fcb49488ae	2021-05-21 18:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:37:35.853+03	2021-05-21 18:37:35.86+03	
302e3c89-7ecb-8459-c207-06360163e513	2021-05-21 18:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:37:56.852+03	2021-05-21 18:37:56.859+03	
6863fb8c-c1ee-6dd6-2f7e-da7e89707de7	2021-05-21 18:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:38:17.853+03	2021-05-21 18:38:17.862+03	
87d38a06-24c2-5eec-7fdc-6f5a33db4e4f	2021-05-21 18:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:38:38.852+03	2021-05-21 18:38:38.86+03	
f9059314-7998-9a6c-9032-b2627d116975	2021-05-21 18:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:38:58.853+03	2021-05-21 18:38:58.859+03	
397b8dfa-5ecc-26e3-2bff-f5242a37df01	2021-05-21 18:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:39:19.852+03	2021-05-21 18:39:19.859+03	
f520adbd-803c-a83b-d9f3-2fd4a563dda3	2021-05-21 18:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:39:40.852+03	2021-05-21 18:39:40.866+03	
06485419-9fa1-1ff7-19b0-6d84a347ae8b	2021-05-21 18:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:40:00.853+03	2021-05-21 18:40:00.862+03	
11978cf6-db4e-6ad7-c7c6-1614c1c79dee	2021-05-21 18:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 18:40:00.853+03	2021-05-21 18:40:00.872+03	ERROR
9bac7ee1-97b8-9100-6d55-db3fe367bfce	2021-05-21 18:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:40:21.853+03	2021-05-21 18:40:21.86+03	
dad65168-b494-d1e7-7b39-e4627be65c8d	2021-05-22 10:50:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:50:47.853+03	2021-05-22 10:50:47.862+03	
c3cc3ebc-e522-3979-f41d-3bfbe281b4c1	2021-05-21 18:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:40:42.852+03	2021-05-21 18:40:42.858+03	
2153714c-8d33-8d70-96f1-1697a896f6ee	2021-05-21 22:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:16:00.853+03	2021-05-21 22:16:00.859+03	
ba1987f7-6bca-26ca-435d-f0bc8ab47910	2021-05-21 18:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:41:03.853+03	2021-05-21 18:41:03.872+03	
7256aeef-b55e-6146-3b5b-05728887af14	2021-05-21 18:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:41:23.853+03	2021-05-21 18:41:23.87+03	
8681829a-1302-bbd1-7d31-d25be38096e1	2021-05-21 22:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:16:20.853+03	2021-05-21 22:16:20.859+03	
104db6a0-439f-4dcf-f8a9-c91d579b95a0	2021-05-21 18:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:41:43.853+03	2021-05-21 18:41:43.871+03	
c9f94b57-056a-1c1c-bb3a-e99916aec8d4	2021-05-21 18:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:42:03.853+03	2021-05-21 18:42:03.869+03	
f3e1abb8-4527-8ee9-9ae5-240da2825c24	2021-05-21 22:16:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:16:41.852+03	2021-05-21 22:16:41.859+03	
2fae92f7-1ede-ed35-affe-e0955799f396	2021-05-21 18:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:42:24.852+03	2021-05-21 18:42:24.859+03	
df7a207a-2447-edef-16c9-abbf28a1017d	2021-05-21 18:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:42:45.852+03	2021-05-21 18:42:45.86+03	
f316616a-5e60-7e32-23da-1ebc14e5efa9	2021-05-21 22:17:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:17:01.854+03	2021-05-21 22:17:01.863+03	
67b5a380-3294-bbf0-a4b5-b13771b8425f	2021-05-21 18:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:43:05.853+03	2021-05-21 18:43:05.86+03	
31b45d45-8c71-7bbc-71c8-438a876b2e82	2021-05-21 18:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:43:25.853+03	2021-05-21 18:43:25.862+03	
c0b6b52d-42a7-31aa-eeea-9f9b19a198e3	2021-05-21 22:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:17:23.852+03	2021-05-21 22:17:23.859+03	
8dd7fff0-4228-0d4a-9208-c34d014a408e	2021-05-21 18:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:43:47.853+03	2021-05-21 18:43:47.859+03	
bb157138-548f-fa7a-0f5d-181968a6ce85	2021-05-21 18:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:44:07.853+03	2021-05-21 18:44:07.86+03	
e2fa8b46-9e5d-257f-df7d-1ab0e5f45303	2021-05-21 22:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:17:43.853+03	2021-05-21 22:17:43.864+03	
33d700e2-d312-b6cd-9d6f-8be7ba40e634	2021-05-21 18:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:44:28.853+03	2021-05-21 18:44:28.859+03	
5407da2f-64cc-9c84-01ae-38add900ccfd	2021-05-21 18:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:44:50.852+03	2021-05-21 18:44:50.859+03	
f3e284c9-7bf0-dfce-3876-432f04f9eae8	2021-05-21 22:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:18:03.853+03	2021-05-21 22:18:03.859+03	
a9209fe9-2ce9-e7f9-54f2-73f010c17534	2021-05-21 18:45:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:45:11.853+03	2021-05-21 18:45:11.865+03	
0764e073-5d85-ca95-43bf-449d2947e4e5	2021-05-21 18:45:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:45:31.853+03	2021-05-21 18:45:31.86+03	
2e24d777-4952-eca6-8651-ec72fdb53b31	2021-05-21 22:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:18:24.853+03	2021-05-21 22:18:24.859+03	
838c6d4f-0372-8d59-b66c-f8bed95545ee	2021-05-21 18:45:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:45:51.853+03	2021-05-21 18:45:51.859+03	
4ed59c01-112a-937a-8c93-c1f07b28ebba	2021-05-21 18:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:46:12.853+03	2021-05-21 18:46:12.859+03	
e427cb16-492f-e09a-679d-ef7e3eb87a69	2021-05-21 22:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:18:44.853+03	2021-05-21 22:18:44.859+03	
a64c338f-8442-c46d-3756-faefdabf1eb2	2021-05-21 18:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:46:33.852+03	2021-05-21 18:46:33.873+03	
c148ea58-78f8-cbda-114b-beebe6422a06	2021-05-21 18:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:46:53.853+03	2021-05-21 18:46:53.864+03	
18a8a933-3eee-ea4d-3bf9-9024a727f9b7	2021-05-21 22:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:19:05.853+03	2021-05-21 22:19:05.859+03	
d8a30fc6-095e-c535-5e0c-01979c274564	2021-05-21 18:47:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:47:13.853+03	2021-05-21 18:47:13.86+03	
a1bef83e-319a-a750-b608-de330e0460b4	2021-05-21 18:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:47:34.852+03	2021-05-21 18:47:34.861+03	
38a3a854-ba49-5d43-793e-612408750e9b	2021-05-21 22:19:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:19:26.853+03	2021-05-21 22:19:26.86+03	
637256d4-0bfb-f165-f92d-bbe7dbeb2b70	2021-05-21 18:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:47:54.852+03	2021-05-21 18:47:54.859+03	
3f796183-cb76-35b0-6db2-b7f95bbcb9bc	2021-05-21 18:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:48:14.853+03	2021-05-21 18:48:14.86+03	
24f3b9a8-1b51-43d7-84de-f672ad99f480	2021-05-21 22:19:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:19:57.852+03	2021-05-21 22:19:57.859+03	
11a12fd2-d3a0-daf0-9191-ff7620987be2	2021-05-21 18:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:48:34.853+03	2021-05-21 18:48:34.86+03	
6c7fb5be-130e-7c41-adf1-837227ee91dc	2021-05-21 18:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:48:54.853+03	2021-05-21 18:48:54.862+03	
8efaa226-d89a-196c-b69b-48236da94ab3	2021-05-21 22:20:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:20:07.853+03	2021-05-21 22:20:07.865+03	
3cc22942-d306-d478-e1be-f26e4c0d3aab	2021-05-21 18:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:49:14.853+03	2021-05-21 18:49:14.861+03	
1dacb622-3049-2745-c438-78b1857b06af	2021-05-21 18:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:49:35.852+03	2021-05-21 18:49:35.859+03	
fad33aaf-33a6-464e-7be9-cd4f1a312792	2021-05-21 22:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:20:28.852+03	2021-05-21 22:20:28.86+03	
08d5b8aa-f2f9-4492-480c-51ba01b0b0cb	2021-05-21 18:49:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:49:56.855+03	2021-05-21 18:49:56.866+03	
641644f5-c8b2-28ba-9b6d-571ba0ccbbbd	2021-05-21 18:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:50:07.853+03	2021-05-21 18:50:07.86+03	
774fdf4e-229c-7efb-a745-d168f7bd2bc8	2021-05-21 22:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:20:48.852+03	2021-05-21 22:20:48.86+03	
da017fa1-95ca-d9fe-b598-5fca37fb03bf	2021-05-21 18:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:50:27.853+03	2021-05-21 18:50:27.866+03	
cd115774-e1b4-9780-2a26-7e8cc9eee7e3	2021-05-21 22:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:21:08.853+03	2021-05-21 22:21:08.86+03	
1057e3a7-8281-9b93-ed95-a026831d51dd	2021-05-21 22:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:21:29.853+03	2021-05-21 22:21:29.859+03	
6de29c82-d8d5-9238-11fa-dbdd44461217	2021-05-21 22:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:21:50.852+03	2021-05-21 22:21:50.859+03	
f32e8429-40c0-af87-4f3f-afa89ac9b34c	2021-05-21 22:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:22:10.852+03	2021-05-21 22:22:10.859+03	
64cbef3a-26e2-5944-cdfd-935de8667325	2021-05-21 22:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:22:30.852+03	2021-05-21 22:22:30.859+03	
5275aa34-3e90-db28-6628-77c50b42d721	2021-05-21 22:22:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:22:51.854+03	2021-05-21 22:22:51.86+03	
12025b72-a2cf-4ce8-e710-f7b2cde81d94	2021-05-21 22:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:23:12.853+03	2021-05-21 22:23:12.86+03	
b0cddc47-f6f3-879c-eda4-3b1dc5143e7d	2021-05-21 22:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:23:34.853+03	2021-05-21 22:23:34.859+03	
90eccc14-37e7-f190-b31a-f95efa87bca1	2021-05-21 22:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:23:54.853+03	2021-05-21 22:23:55.079+03	
1b7bed02-f1ca-d156-b8e0-e73c05fd71cc	2021-05-21 22:24:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:24:16.854+03	2021-05-21 22:24:16.861+03	
ad5f96f2-19e9-e580-d3aa-adbf6b951aa7	2021-05-21 22:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:24:37.853+03	2021-05-21 22:24:37.859+03	
753293f5-d26a-3973-6730-899543c6ff12	2021-05-21 22:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:24:57.853+03	2021-05-21 22:24:57.86+03	
c869c65b-3010-994b-edf6-2381376161c8	2021-05-21 22:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:25:18.853+03	2021-05-21 22:25:18.859+03	
6071a18e-4e19-2392-a36f-6247a6214c07	2021-05-21 22:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:25:39.852+03	2021-05-21 22:25:39.859+03	
817b2962-407b-ed68-c718-000dc6f246ad	2021-05-21 22:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:25:49.853+03	2021-05-21 22:25:49.861+03	
69bc4e51-08e2-127f-d90d-c498ee9c0587	2021-05-21 22:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:25:59.853+03	2021-05-21 22:26:00.098+03	
820480ba-3c59-3112-5705-c25bc2f25534	2021-05-21 22:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:26:10.853+03	2021-05-21 22:26:10.859+03	
b598fe93-4d08-80a2-2e85-692c03f294eb	2021-05-21 22:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:26:20.853+03	2021-05-21 22:26:20.859+03	
ad8de1f4-d92a-343f-5bef-cf8284249682	2021-05-21 18:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:40:52.853+03	2021-05-21 18:40:52.859+03	
f6c68a18-16a5-620e-7bff-d7ea61083a45	2021-05-21 18:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:41:13.853+03	2021-05-21 18:41:13.87+03	
c0034ec9-f9ed-ad29-d788-7643dc3fcfb8	2021-05-21 18:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:41:33.853+03	2021-05-21 18:41:33.86+03	
bb258dca-e124-3898-eefe-a4b56253c720	2021-05-21 18:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:41:53.853+03	2021-05-21 18:41:53.859+03	
eab78285-f9f9-c3d2-ee74-5c11a44b01d1	2021-05-21 18:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:42:14.852+03	2021-05-21 18:42:14.859+03	
fb5099d1-ea25-fbdc-3384-2b18db707a63	2021-05-21 18:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:42:34.853+03	2021-05-21 18:42:34.858+03	
baf52761-0fc7-2f8f-3e8b-1afa9d375cab	2021-05-21 18:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:42:55.853+03	2021-05-21 18:42:55.86+03	
0be47ffd-883a-dd26-0e01-a5df42b13c0e	2021-05-21 18:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:43:15.853+03	2021-05-21 18:43:15.86+03	
f95b4919-5e9d-2e6b-2c22-78337a1a2b5c	2021-05-21 18:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:43:36.853+03	2021-05-21 18:43:36.859+03	
eef869d7-5bff-8f0f-62fe-dc1e6414b6d3	2021-05-21 18:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:43:57.853+03	2021-05-21 18:43:57.867+03	
30ed2d35-dea3-9818-d444-941b267e5c08	2021-05-21 18:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:44:18.852+03	2021-05-21 18:44:18.86+03	
409c5d39-ec90-1104-985c-214b5267a041	2021-05-21 18:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:44:39.853+03	2021-05-21 18:44:39.86+03	
e80858c5-5885-ec6a-508a-e38f82aab302	2021-05-21 18:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:45:00.853+03	2021-05-21 18:45:00.859+03	
0d9b66f4-f7cc-35af-59a4-c706b4b731e0	2021-05-21 18:45:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:45:21.853+03	2021-05-21 18:45:21.859+03	
34ed2984-dbdb-5252-0ab8-6d558614da5a	2021-05-21 18:45:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:45:41.853+03	2021-05-21 18:45:41.861+03	
4853ad61-d9c2-666f-0f94-39d13130d267	2021-05-21 18:46:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:46:01.853+03	2021-05-21 18:46:01.861+03	
3e0ef7fb-e396-d3c3-e985-f67e8360f5e8	2021-05-21 18:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:46:22.853+03	2021-05-21 18:46:22.874+03	
2df5e205-2f65-1ca2-5aec-16e331570bd8	2021-05-21 18:46:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:46:43.852+03	2021-05-21 18:46:43.86+03	
4be239fa-8284-ef00-e298-93ac8b18752b	2021-05-21 18:47:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:47:03.853+03	2021-05-21 18:47:03.86+03	
d031bd3d-b87f-4ce4-143e-15587e25f97b	2021-05-21 18:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:47:24.852+03	2021-05-21 18:47:24.86+03	
4c0a226f-f79e-b678-d4a4-1c40c2c590da	2021-05-21 18:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:47:44.852+03	2021-05-21 18:47:44.859+03	
d1b3697e-dda0-dccc-3e7c-728b65bac094	2021-05-21 18:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:48:04.852+03	2021-05-21 18:48:04.86+03	
67b036c7-c8d6-e3ee-7e2d-39e729271842	2021-05-21 18:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:48:24.853+03	2021-05-21 18:48:24.86+03	
d7343e8b-3f60-a0f2-9fb6-bdbf924f2738	2021-05-21 18:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:48:44.853+03	2021-05-21 18:48:44.861+03	
b94b9671-f2c0-d514-04d5-721a19a8cc6b	2021-05-21 18:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:49:04.853+03	2021-05-21 18:49:04.861+03	
8015d611-3204-9b27-201f-141bedc062eb	2021-05-21 18:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:49:24.853+03	2021-05-21 18:49:24.869+03	
40dfc5e4-da8a-f395-d97b-b5da6ad74268	2021-05-21 18:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:49:45.853+03	2021-05-21 18:49:45.86+03	
0ab90e8f-660f-4c1d-d4f3-68b9d52ed163	2021-05-21 18:50:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 18:50:00.853+03	2021-05-21 18:50:00.859+03	ERROR
3ff50490-2c6e-6f37-71e6-76e9b64a3978	2021-05-21 18:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:50:17.853+03	2021-05-21 18:50:17.865+03	
53b597a9-eef2-4240-1bea-d497a4c43f84	2021-05-21 18:50:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:50:37.853+03	2021-05-21 18:50:37.861+03	
eeeb1fa3-93a6-e1ca-3576-69e3445fc155	2021-05-21 18:50:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:50:47.854+03	2021-05-21 18:50:47.862+03	
40d5f8d3-6c7d-26c5-f13d-00a2a7738043	2021-05-21 18:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:50:58.853+03	2021-05-21 18:50:58.86+03	
6a561d70-5f6c-b40d-7eed-f054284b4312	2021-05-21 18:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:51:08.853+03	2021-05-21 18:51:08.859+03	
50928019-b1f3-a35b-da72-0aa15b28083b	2021-05-21 18:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:51:18.853+03	2021-05-21 18:51:18.859+03	
465edf0b-8a51-cded-68c1-b4595545bcfc	2021-05-21 18:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:51:28.853+03	2021-05-21 18:51:28.86+03	
30f091ec-cbd6-4f90-24d3-a8453d6306e7	2021-05-21 18:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:51:38.853+03	2021-05-21 18:51:38.86+03	
ad91a962-dd1e-e352-00c7-f2eeaac228a6	2021-05-21 18:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:51:48.853+03	2021-05-21 18:51:48.863+03	
0b764fa0-896f-3f48-b673-5fe36c0cd43e	2021-05-21 18:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:51:58.853+03	2021-05-21 18:51:58.866+03	
d3341168-bf1d-aff2-ab37-b6a64cf7fc60	2021-05-21 18:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:52:08.853+03	2021-05-21 18:52:08.863+03	
85db7fda-cc21-4c07-8dc1-a3459f04ff4c	2021-05-21 18:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:52:18.853+03	2021-05-21 18:52:18.86+03	
485d8a91-0cd1-19c4-e3c0-e2c5bffa8dee	2021-05-21 18:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:52:29.853+03	2021-05-21 18:52:29.86+03	
935fb2a3-04c0-6bb9-ee2b-383faa1def33	2021-05-21 18:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:52:39.853+03	2021-05-21 18:52:39.86+03	
3836ad60-2088-a611-8d2e-b71103d08948	2021-05-21 18:52:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:52:50.853+03	2021-05-21 18:52:50.859+03	
5ec56918-7a69-c4a9-abc7-fb0d84a15094	2021-05-21 18:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:53:00.853+03	2021-05-21 18:53:00.861+03	
ddeba6e4-9c86-b2fd-9204-e7131f7fc3ba	2021-05-21 18:53:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:53:11.853+03	2021-05-21 18:53:11.861+03	
37feefc7-1ccb-3bea-494d-133863dd66d5	2021-05-21 18:53:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:53:21.854+03	2021-05-21 18:53:21.866+03	
4d33816e-0356-57e6-6b87-2ccff74b094c	2021-05-21 18:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:53:32.853+03	2021-05-21 18:53:32.859+03	
1a5a5051-e6c2-b478-3421-e118e6c49af5	2021-05-21 18:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:53:42.853+03	2021-05-21 18:53:42.861+03	
b2d2d8ba-c5ad-410b-3109-344a53abbf6e	2021-05-21 18:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:53:52.853+03	2021-05-21 18:53:52.859+03	
0c1a550b-9160-c660-4d09-2d04b79861db	2021-05-21 18:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:54:02.853+03	2021-05-21 18:54:02.862+03	
f82ecf93-7612-66af-3598-ce38808e01a1	2021-05-21 18:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:54:12.853+03	2021-05-21 18:54:12.859+03	
a3d1bbf2-4b40-bafa-1e07-ce6fb8a6aaed	2021-05-21 18:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:54:23.853+03	2021-05-21 18:54:23.867+03	
3b9852f9-03bd-07a2-c523-c72d2bd33f56	2021-05-21 18:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:54:33.853+03	2021-05-21 18:54:33.86+03	
e2f4ca40-8520-8924-7473-6c48ec169e61	2021-05-21 18:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:54:44.852+03	2021-05-21 18:54:44.86+03	
de730bb7-1c66-b5a8-5bd7-368d76fb05c1	2021-05-21 18:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:54:54.852+03	2021-05-21 18:54:54.876+03	
8530dbde-a5ac-bdaf-97fb-fb9c4fb7f67a	2021-05-21 18:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:55:04.853+03	2021-05-21 18:55:04.861+03	
389e772b-e152-a182-18b7-d9b71305b6f6	2021-05-21 18:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:55:14.853+03	2021-05-21 18:55:14.862+03	
5a0176b7-48b7-f2eb-2e34-c13b1cb8bce4	2021-05-21 18:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:55:25.852+03	2021-05-21 18:55:25.858+03	
4bb9b8f2-ede9-4657-2908-0a7eddaa2ad7	2021-05-21 18:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:55:35.853+03	2021-05-21 18:55:35.859+03	
891d5399-3425-8bec-32d6-ac760d582562	2021-05-21 18:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:55:45.853+03	2021-05-21 18:55:45.859+03	
5a269ece-08cc-53b7-5805-3884fb766765	2021-05-21 18:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:55:55.853+03	2021-05-21 18:55:55.859+03	
8e89aa8a-56b6-8170-33af-ff9c04d08ccd	2021-05-21 18:56:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:56:06.853+03	2021-05-21 18:56:06.86+03	
ab90a60a-95b4-3f4a-191a-bb4c94af8f17	2021-05-21 18:56:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:56:16.854+03	2021-05-21 18:56:16.864+03	
89bc0234-d90a-f0c7-3d8d-cd60e737c0b6	2021-05-21 18:56:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:56:26.854+03	2021-05-21 18:56:26.861+03	
98a7f218-2f7f-9fbc-78ad-637c69adfa9c	2021-05-21 18:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:56:47.853+03	2021-05-21 18:56:47.861+03	
ef193af8-f4e6-1524-99c7-e3da34393d79	2021-05-21 18:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:57:07.853+03	2021-05-21 18:57:07.859+03	
47594127-e51e-7090-12b2-0be143365116	2021-05-21 18:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:57:27.853+03	2021-05-21 18:57:27.861+03	
552ff46a-2d5a-c77e-b363-fb593e233ee6	2021-05-21 18:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:57:47.853+03	2021-05-21 18:57:47.86+03	
6866949c-c1a1-6f92-1103-1531cefd287b	2021-05-21 18:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:58:07.853+03	2021-05-21 18:58:07.874+03	
297d1cdc-a70f-ae5b-2128-accd6989fdda	2021-05-21 18:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:58:27.853+03	2021-05-21 18:58:27.859+03	
e5c42063-3ee7-64c9-08ea-2a3d5f8e5d4a	2021-05-21 18:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:58:47.853+03	2021-05-21 18:58:47.86+03	
f99d28c3-6dbd-5619-c461-597e578f0e43	2021-05-21 18:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:59:07.853+03	2021-05-21 18:59:07.877+03	
f7234d90-abba-e162-482e-fc2228495758	2021-05-21 18:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:59:29.853+03	2021-05-21 18:59:29.86+03	
2f413e90-d3eb-2690-0670-8a1d42e9e771	2021-05-21 18:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:59:49.853+03	2021-05-21 18:59:49.909+03	
30d1b493-83cf-b83b-79ef-3b620407720e	2021-05-21 19:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 19:00:00.853+03	2021-05-21 19:00:00.858+03	ERROR
e2daea25-cf54-27ca-d8bf-9add9f6eacc9	2021-05-21 19:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:00:19.853+03	2021-05-21 19:00:19.864+03	
4d5cef6e-7759-8768-238b-4a9538e333c7	2021-05-21 19:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:00:39.853+03	2021-05-21 19:00:39.865+03	
59ae6ce8-973d-fc36-0406-60241cd25899	2021-05-21 19:00:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:00:59.853+03	2021-05-21 19:00:59.861+03	
1629518d-b78b-98e1-7c63-39964452728a	2021-05-21 19:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:01:20.853+03	2021-05-21 19:01:20.86+03	
a8b3d4e2-8a37-ca2d-e978-5f7c21c86f3c	2021-05-21 19:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:01:40.853+03	2021-05-21 19:01:40.859+03	
861251ec-5191-52b2-8849-8dda26d4c405	2021-05-21 19:02:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:02:01.853+03	2021-05-21 19:02:01.862+03	
0955561c-1c03-d6f1-55b5-e0a10193406b	2021-05-21 19:02:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:02:21.853+03	2021-05-21 19:02:21.859+03	
30272ef3-9372-a479-39c4-69c92384a107	2021-05-21 19:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:02:42.853+03	2021-05-21 19:02:42.859+03	
b0bf379d-45af-5adf-60e8-a5d42063cce7	2021-05-21 19:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:03:02.853+03	2021-05-21 19:03:02.859+03	
2f61e833-d3a9-218a-579e-7ef82434b7b8	2021-05-21 19:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:03:23.853+03	2021-05-21 19:03:23.859+03	
9e3bee73-11e9-8670-ad31-ea09638341bc	2021-05-21 19:03:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:03:43.853+03	2021-05-21 19:03:43.869+03	
0ad9175b-2a58-066d-7891-ca198249ba78	2021-05-21 19:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:04:03.853+03	2021-05-21 19:04:03.861+03	
781ef792-b8ea-2458-389b-3287dec1452d	2021-05-21 19:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:04:23.853+03	2021-05-21 19:04:23.86+03	
a79c4479-e08a-009d-9e73-8c7888a22a83	2021-05-21 19:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:04:43.853+03	2021-05-21 19:04:43.859+03	
1fa9a057-3098-a7da-de92-125a66d8c5ad	2021-05-21 19:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:05:03.853+03	2021-05-21 19:05:03.86+03	
c9e6bb59-4b12-1eab-2b30-feb4499f249d	2021-05-21 19:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:05:23.853+03	2021-05-21 19:05:23.872+03	
ad2d73a8-da5b-ec84-e557-8482d8badf44	2021-05-21 19:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:05:45.853+03	2021-05-21 19:05:45.86+03	
f65f3d0f-b66c-2557-f223-1ee92a81ec95	2021-05-21 19:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:06:05.853+03	2021-05-21 19:06:06.323+03	
64e4ab51-ec63-6b21-99bc-fb8ca3e0bc17	2021-05-21 19:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:06:25.853+03	2021-05-21 19:06:25.86+03	
7e1de64e-4c35-2781-f162-4a5d82fb7a6d	2021-05-21 19:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:06:45.853+03	2021-05-21 19:06:45.859+03	
ce755c77-9f40-bdb1-5509-2ab0e198757c	2021-05-21 19:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:07:06.853+03	2021-05-21 19:07:06.86+03	
ed0b8095-2873-3bb0-17a3-a01ef84cd79b	2021-05-21 19:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:07:27.852+03	2021-05-21 19:07:27.859+03	
3f08b755-2832-1b09-89e7-2a086c03f5af	2021-05-21 19:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:07:47.853+03	2021-05-21 19:07:47.86+03	
421f2e1a-d9b7-54a2-9429-3d72656ffa16	2021-05-21 19:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:08:07.853+03	2021-05-21 19:08:07.859+03	
9e228e47-1eef-ec10-5727-2c96b5bc4ef3	2021-05-21 19:08:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:08:27.853+03	2021-05-21 19:08:27.86+03	
b276ead4-029a-f00b-da17-18104dab0d2f	2021-05-21 19:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:08:47.853+03	2021-05-21 19:08:47.859+03	
147a102c-38ef-5190-99a3-2d9be0909472	2021-05-21 19:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:09:08.852+03	2021-05-21 19:09:08.859+03	
27917009-474d-f51d-d49c-88b80d1e1b37	2021-05-21 19:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:09:28.853+03	2021-05-21 19:09:28.859+03	
a0fb7775-3b87-81fc-34e3-42a07090e86e	2021-05-21 19:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:09:49.853+03	2021-05-21 19:09:49.859+03	
741c082e-7403-437d-a366-279c3f2e0244	2021-05-21 19:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 19:10:00.853+03	2021-05-21 19:10:00.858+03	ERROR
98b7c247-374b-78fa-d87b-28197c82de55	2021-05-21 19:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:10:19.853+03	2021-05-21 19:10:19.861+03	
69451950-fe17-7885-29bb-d43a0afc1d09	2021-05-21 19:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:10:39.853+03	2021-05-21 19:10:39.873+03	
cdef297d-3796-322e-96ef-e3f430827304	2021-05-21 19:11:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:11:01.854+03	2021-05-21 19:11:01.86+03	
e6ab6311-fa30-0e5f-80ea-c461615b84a8	2021-05-21 19:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:11:22.853+03	2021-05-21 19:11:22.86+03	
22841ea3-95f6-dc84-ffe9-af9969459f61	2021-05-21 19:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:11:42.853+03	2021-05-21 19:11:42.862+03	
0f8c1298-37ff-ccc2-d05c-10a7d55aca16	2021-05-21 19:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:12:02.853+03	2021-05-21 19:12:02.86+03	
3c551ed5-2b4a-cfb0-59ee-b8507c3bd53f	2021-05-21 19:12:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:12:22.853+03	2021-05-21 19:12:22.861+03	
a385c038-469e-5230-8607-783d46db6f79	2021-05-21 19:12:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:12:43.852+03	2021-05-21 19:12:43.859+03	
0ee07728-2d25-eace-8bfa-edb8d4bf82e7	2021-05-21 19:13:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:13:03.853+03	2021-05-21 19:13:03.87+03	
b081376e-95bb-c162-72d3-4ab4d21f7489	2021-05-21 19:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:13:23.853+03	2021-05-21 19:13:23.87+03	
dbd5e897-fbf4-356e-a72f-6b9b917eb7cf	2021-05-21 19:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:13:44.853+03	2021-05-21 19:13:44.86+03	
74c6cd08-1efd-fae0-3e1e-7a0b36c0d829	2021-05-21 19:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:14:04.853+03	2021-05-21 19:14:04.859+03	
1d7178d2-01d4-2a1f-fc2a-25072574d5aa	2021-05-21 19:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:14:24.853+03	2021-05-21 19:14:24.863+03	
590001b0-986f-2c54-813c-2348a65c0a4b	2021-05-21 19:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:14:45.853+03	2021-05-21 19:14:45.87+03	
f32ec125-ae6d-ade7-a277-f61804038778	2021-05-21 19:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:15:05.853+03	2021-05-21 19:15:05.861+03	
0e0525b4-15b5-a593-800f-3123a8a8c0f8	2021-05-21 19:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:15:25.853+03	2021-05-21 19:15:25.862+03	
c465b127-cdbb-77dc-78b3-dc01a0c477ce	2021-05-21 19:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:15:45.853+03	2021-05-21 19:15:45.86+03	
ca373ae6-f397-febd-a9f4-2d59f8be67c9	2021-05-21 19:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:16:05.853+03	2021-05-21 19:16:05.866+03	
6a43bf21-fdb6-ff2a-be74-d66cd738d7be	2021-05-21 19:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:16:25.853+03	2021-05-21 19:16:25.861+03	
840b0c34-f8a2-867f-1ce4-aca9bba8f016	2021-05-21 19:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:16:47.853+03	2021-05-21 19:16:47.859+03	
c77e68fb-d37a-3015-346d-81a2b14a9cd0	2021-05-21 19:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:17:08.853+03	2021-05-21 19:17:08.86+03	
17033aaf-c690-55cc-acf2-b68670c0d060	2021-05-21 18:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:56:37.853+03	2021-05-21 18:56:37.859+03	
372f83d9-7854-dedf-3bac-71baa7eeb2fe	2021-05-21 18:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:56:57.853+03	2021-05-21 18:56:57.864+03	
bd3c845d-3e6e-4a84-2bb0-a55a8990a9ca	2021-05-21 18:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:57:17.853+03	2021-05-21 18:57:17.86+03	
c8550205-ad6e-a55d-df01-32577b1bf80e	2021-05-21 18:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:57:37.853+03	2021-05-21 18:57:37.86+03	
efe78f62-3b07-aa47-d8bb-b2fafc8a6f35	2021-05-21 18:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:57:57.853+03	2021-05-21 18:57:57.86+03	
b55a8942-a5f1-1e1f-233c-3311f8545c35	2021-05-21 18:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:58:17.853+03	2021-05-21 18:58:17.874+03	
0bec78d7-7143-ae48-f9f8-be327db9a949	2021-05-21 18:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:58:37.853+03	2021-05-21 18:58:37.863+03	
718774d8-08dd-603e-cd06-456d54b05c12	2021-05-21 18:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:58:57.853+03	2021-05-21 18:58:57.86+03	
069c6feb-bfc5-8145-70aa-0dd6c0247676	2021-05-21 18:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:59:18.853+03	2021-05-21 18:59:18.86+03	
bcb2e537-6d12-7b40-63a2-f58480306010	2021-05-21 18:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:59:39.853+03	2021-05-21 18:59:39.863+03	
1701fd30-0680-169b-c152-49dcfc23090c	2021-05-21 18:59:59.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 18:59:59.853+03	2021-05-21 18:59:59.871+03	
6af802b1-e463-0b54-a915-1e927e755651	2021-05-21 19:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:00:09.853+03	2021-05-21 19:00:09.862+03	
186ae52b-994d-158d-4c44-4a95c36c29aa	2021-05-21 19:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:00:29.853+03	2021-05-21 19:00:29.865+03	
c3c57684-6ea4-3fd2-7185-a3e11566f4fa	2021-05-21 19:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:00:49.853+03	2021-05-21 19:00:49.861+03	
468099e8-8dc1-962d-1616-a7f4b2759259	2021-05-21 19:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:01:10.853+03	2021-05-21 19:01:10.86+03	
7f2ca741-a44c-e941-54fd-b63e4bd55df2	2021-05-21 19:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:01:30.853+03	2021-05-21 19:01:30.86+03	
6f8eecaa-0199-3e58-f202-a71e21275fb8	2021-05-21 19:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:01:50.853+03	2021-05-21 19:01:50.858+03	
ccd15bb6-99bf-17a0-5a0f-1da0cdddac4d	2021-05-21 19:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:02:11.853+03	2021-05-21 19:02:11.864+03	
6ff6522a-b018-9ba9-adb3-031b15db2db5	2021-05-21 19:02:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:02:31.854+03	2021-05-21 19:02:31.861+03	
bc2b6a5b-96b4-a08d-e4b9-b9a80b9471b0	2021-05-21 19:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:02:52.853+03	2021-05-21 19:02:52.86+03	
348096fe-04f2-eec4-e1e4-c6d3a46b12ef	2021-05-21 19:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:03:12.853+03	2021-05-21 19:03:12.86+03	
4efeca0d-d280-212f-33a6-93b5d8566e95	2021-05-21 19:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:03:33.853+03	2021-05-21 19:03:33.867+03	
e21cc86b-a748-cb00-59f6-38650e9f2489	2021-05-21 19:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:03:53.853+03	2021-05-21 19:03:53.859+03	
d265b2cf-5348-7a75-262e-9db4055a5a1a	2021-05-21 19:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:04:13.853+03	2021-05-21 19:04:13.86+03	
a6152f55-e092-dcc6-ad55-37b3ecbc3f34	2021-05-21 19:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:04:33.853+03	2021-05-21 19:04:33.86+03	
7bfcd0c9-7236-8c32-172a-2eaeda7c1eea	2021-05-21 19:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:04:53.853+03	2021-05-21 19:04:53.859+03	
f4da7dd8-c629-066f-a1d4-4209eb435612	2021-05-21 19:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:05:13.853+03	2021-05-21 19:05:13.86+03	
10892aeb-73c3-e4be-e01f-30ebd5894341	2021-05-21 19:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:05:34.853+03	2021-05-21 19:05:34.859+03	
a733bf36-6d91-4249-7b40-f14f8a8e18bf	2021-05-21 19:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:05:55.853+03	2021-05-21 19:05:55.861+03	
8ef69f97-8396-9324-4e4f-a5efb6e87b39	2021-05-21 19:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:06:15.853+03	2021-05-21 19:06:15.859+03	
8ffdd83e-f51b-0d55-5854-4de565df226d	2021-05-21 19:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:06:35.853+03	2021-05-21 19:06:35.859+03	
4bc6fd0c-e00e-1efc-9a18-93a1c6550592	2021-05-21 19:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:06:56.853+03	2021-05-21 19:06:56.867+03	
266d6606-9e1e-e268-3a2a-9ebe7be67d01	2021-05-21 19:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:07:17.852+03	2021-05-21 19:07:17.867+03	
601c1c1b-e763-c310-3821-d234801cdd32	2021-05-21 19:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:07:37.853+03	2021-05-21 19:07:37.868+03	
11c4293d-81b4-1d99-5047-a6dd1f006443	2021-05-21 19:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:07:57.853+03	2021-05-21 19:07:57.861+03	
00bb1f15-707c-fff6-00d7-7ac6801f5515	2021-05-21 19:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:08:17.853+03	2021-05-21 19:08:17.861+03	
96c3f539-1902-56c7-392d-980049d95eed	2021-05-21 19:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:08:37.853+03	2021-05-21 19:08:37.86+03	
5f3c71de-3862-cd27-ac2c-5d1bea9117c2	2021-05-21 19:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:08:57.853+03	2021-05-21 19:08:57.859+03	
fc5bd1eb-c708-3fd5-6a75-84676246c9ae	2021-05-21 19:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:09:18.852+03	2021-05-21 19:09:18.859+03	
c72ac583-08cb-4f78-642e-518209b3dfd1	2021-05-21 19:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:09:38.853+03	2021-05-21 19:09:38.859+03	
6aa80ac6-e152-0841-e391-a8d3672a61bb	2021-05-21 19:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:09:59.853+03	2021-05-21 19:09:59.861+03	
f67f1da7-296c-588f-33dd-9d29b9478e8e	2021-05-21 19:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:10:09.853+03	2021-05-21 19:10:09.86+03	
26ab9791-87e6-e107-6a0e-be403df0a774	2021-05-21 19:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:10:29.853+03	2021-05-21 19:10:29.86+03	
f2703029-cc31-f6c0-7f43-9579ef75b9c8	2021-05-21 19:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:10:50.853+03	2021-05-21 19:10:50.859+03	
ce972184-57a2-3c2c-7c49-86e8866d3510	2021-05-21 19:11:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:11:11.854+03	2021-05-21 19:11:11.861+03	
de4d066f-22cc-ecf8-3507-e12583c8880b	2021-05-21 19:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:11:32.853+03	2021-05-21 19:11:32.86+03	
b3fcec34-8ff1-2bdc-6b2e-e12eaface069	2021-05-21 19:11:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:11:52.853+03	2021-05-21 19:11:52.859+03	
e2b48db5-f4ec-5e3b-e69d-c4d110f5eedd	2021-05-21 19:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:12:12.853+03	2021-05-21 19:12:12.86+03	
666918ba-6364-371f-2059-055b115582b2	2021-05-21 19:12:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:12:32.853+03	2021-05-21 19:12:32.86+03	
6c3bc215-b652-e0cf-c924-44d92888f443	2021-05-21 19:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:12:53.852+03	2021-05-21 19:12:53.858+03	
22101367-201e-694e-8150-3c1a8a488b2e	2021-05-21 19:13:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:13:13.853+03	2021-05-21 19:13:13.862+03	
81768e53-e239-b31c-8203-aff6383152bc	2021-05-21 19:13:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:13:34.853+03	2021-05-21 19:13:34.86+03	
2a213e1e-57ca-1c6a-57fe-3df60f3f6365	2021-05-21 19:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:13:54.853+03	2021-05-21 19:13:54.861+03	
326af06a-bc43-2071-e17c-7b259acb056e	2021-05-21 19:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:14:14.853+03	2021-05-21 19:14:14.859+03	
73a6471f-a162-1069-c4f2-75e25f6a246d	2021-05-21 19:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:14:35.853+03	2021-05-21 19:14:35.859+03	
4901cf27-6052-89df-f957-2948b7763275	2021-05-21 19:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:14:55.853+03	2021-05-21 19:14:55.862+03	
72f2b067-238c-a494-a03b-93d9ce302fbb	2021-05-21 19:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:15:15.853+03	2021-05-21 19:15:15.859+03	
ff574d02-c20a-ff6b-1ce1-2c92a6baea6c	2021-05-21 19:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:15:35.853+03	2021-05-21 19:15:35.861+03	
9fafe16f-c2c5-1a4c-2ff6-857efd388c85	2021-05-21 19:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:15:55.853+03	2021-05-21 19:15:55.861+03	
def196cb-89a1-edd6-7817-72ad2cfc099c	2021-05-21 19:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:16:15.853+03	2021-05-21 19:16:15.861+03	
c2132753-5f12-8678-7c15-2473000e5c55	2021-05-21 19:16:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:16:36.854+03	2021-05-21 19:16:36.86+03	
7cd7179d-94ee-7047-b681-6b239ea46fa3	2021-05-21 19:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:16:58.852+03	2021-05-21 19:16:58.866+03	
ddd99539-22fe-f652-0a36-7ee69de82fe9	2021-05-21 19:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:17:18.853+03	2021-05-21 19:17:18.859+03	
b80007a0-fa98-2175-115a-5af6b7c692cc	2021-05-21 19:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:17:29.853+03	2021-05-21 19:17:29.859+03	
68ea6e7b-b70b-e173-53b5-7105802e37c5	2021-05-21 19:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:17:50.852+03	2021-05-21 19:17:50.858+03	
45455306-efb4-35cc-eab2-373185a06a57	2021-05-21 19:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:18:11.853+03	2021-05-21 19:18:11.86+03	
0c60c372-cead-c223-63d7-ac27257ef2cc	2021-05-21 19:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:18:32.853+03	2021-05-21 19:18:32.859+03	
a952fa57-94d1-3273-c8d7-eb3127cd0b32	2021-05-21 19:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:18:53.852+03	2021-05-21 19:18:53.858+03	
0a850e3a-a6b7-9428-e925-d149bf5a514d	2021-05-21 19:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:19:13.852+03	2021-05-21 19:19:13.859+03	
4a947289-b7c6-2008-07d1-9293a46544f7	2021-05-21 19:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:19:33.852+03	2021-05-21 19:19:33.868+03	
396ab013-3b87-9de2-ac4f-e805e47c31c0	2021-05-21 19:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:19:53.853+03	2021-05-21 19:19:53.86+03	
c9021859-e6a5-e46d-8160-e951d9dd55d4	2021-05-21 19:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:20:03.853+03	2021-05-21 19:20:03.859+03	
711dae90-58d3-32af-9b23-e558a09fccd7	2021-05-21 19:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:20:24.853+03	2021-05-21 19:20:24.86+03	
d807928c-f7f7-11ba-3f61-af602f0ad114	2021-05-21 19:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:20:45.852+03	2021-05-21 19:20:45.859+03	
dbf368b9-7f29-d09d-544f-794efedb21dc	2021-05-21 19:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:21:05.853+03	2021-05-21 19:21:05.859+03	
76566cd7-deee-96ab-17ac-a63410279bdd	2021-05-21 19:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:21:25.853+03	2021-05-21 19:21:25.86+03	
01f4c2f5-6cde-8c30-cb84-2214ad379b3e	2021-05-21 19:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:21:45.853+03	2021-05-21 19:21:45.86+03	
c7506682-c421-eacb-5452-e0b904d21cf4	2021-05-21 19:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:22:05.853+03	2021-05-21 19:22:05.86+03	
2ded7c65-317d-5086-6804-5c1742129c89	2021-05-21 19:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:22:25.853+03	2021-05-21 19:22:25.859+03	
34066151-4792-79bc-d22a-5f0cfeb8b712	2021-05-21 19:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:22:45.853+03	2021-05-21 19:22:45.869+03	
4552caf3-4851-2e30-759c-9d59d6a85aff	2021-05-21 19:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:23:07.852+03	2021-05-21 19:23:07.86+03	
d6d257f0-56e5-7858-d63c-d25968718513	2021-05-21 19:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:23:28.853+03	2021-05-21 19:23:28.861+03	
0631f392-1a71-d9f7-a09d-c1851c421ae5	2021-05-21 19:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:23:48.853+03	2021-05-21 19:23:48.859+03	
86af700b-c5a9-87b9-6e0c-0bcd736459c7	2021-05-21 19:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:24:10.853+03	2021-05-21 19:24:10.859+03	
a1cd736a-2b5c-7b8a-fae2-25fa52cb976f	2021-05-21 19:24:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:24:31.852+03	2021-05-21 19:24:31.866+03	
eb64e309-1f06-08e4-3eea-c908d2288056	2021-05-21 19:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:24:52.853+03	2021-05-21 19:24:52.859+03	
d1f1a739-f814-06f3-9a99-71a4ce93a066	2021-05-21 19:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:25:14.852+03	2021-05-21 19:25:14.858+03	
2aad327c-c47f-8fee-afd6-202adb71573e	2021-05-21 19:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:25:34.853+03	2021-05-21 19:25:34.877+03	
d0241941-5e14-d51d-4c39-38b0e22a400f	2021-05-21 19:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:25:55.852+03	2021-05-21 19:25:55.86+03	
2b220f8b-6d48-c44d-6868-c5c364e0a041	2021-05-21 19:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:26:15.853+03	2021-05-21 19:26:15.86+03	
2934ea11-937c-dc57-669f-eb38ccf15fe1	2021-05-21 19:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:26:35.853+03	2021-05-21 19:26:35.859+03	
e3c1791b-65cb-5e07-60ea-e2c8afb916aa	2021-05-21 19:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:26:55.853+03	2021-05-21 19:26:55.859+03	
815a1cd5-ba18-6222-e94d-fc22a4ab2637	2021-05-21 19:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:27:16.852+03	2021-05-21 19:27:16.859+03	
3169b01e-8ae9-f74a-ee04-34c3bbce5bf9	2021-05-21 19:27:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:27:36.853+03	2021-05-21 19:27:36.864+03	
ad529d63-3346-45ac-6f11-2e4a970b50ec	2021-05-21 19:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:27:57.853+03	2021-05-21 19:27:57.86+03	
8a455e46-e4bf-426b-d1b1-f6c84f0b459f	2021-05-21 19:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:28:17.853+03	2021-05-21 19:28:17.86+03	
809a6d4e-919a-096c-f8ef-844f14fed24f	2021-05-21 19:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:28:37.853+03	2021-05-21 19:28:37.862+03	
a7df87ec-e5dc-fc0c-e468-babf8284be15	2021-05-21 19:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:28:58.852+03	2021-05-21 19:28:58.859+03	
deb8be2c-84b1-8f86-1fa6-7d4daa555c14	2021-05-21 19:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:29:18.853+03	2021-05-21 19:29:18.861+03	
c652b106-2864-39a4-cd98-6f175f788331	2021-05-21 19:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:29:38.853+03	2021-05-21 19:29:38.86+03	
dbedae43-2c9c-149f-c980-896b8ce7c1c9	2021-05-21 19:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:29:59.853+03	2021-05-21 19:29:59.859+03	
1964fcef-cc13-e1e5-67b7-b4ea5592ff50	2021-05-21 19:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:30:10.852+03	2021-05-21 19:30:10.858+03	
85715baf-c402-87c9-56a6-784ebc5f94e2	2021-05-21 19:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:30:30.853+03	2021-05-21 19:30:30.861+03	
136e8f15-ff38-186b-0758-edffaab855a7	2021-05-21 19:30:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:30:51.854+03	2021-05-21 19:30:51.861+03	
581acd13-06a6-10e0-f21c-349b7764a2d2	2021-05-21 19:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:31:02.853+03	2021-05-21 19:31:02.872+03	
a621a164-e577-d7c6-cf1f-7188e507bf7d	2021-05-21 19:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:31:22.853+03	2021-05-21 19:31:22.86+03	
021793ce-04ea-6c81-e62f-ce04e02d6af7	2021-05-21 19:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:31:42.853+03	2021-05-21 19:31:42.86+03	
f6ca5aa1-8fa8-26cc-71a7-314fc733b56d	2021-05-21 19:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:32:02.853+03	2021-05-21 19:32:02.859+03	
cd2e3a07-0f9f-6031-9b35-1d00839dd9e4	2021-05-21 19:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:32:23.852+03	2021-05-21 19:32:23.858+03	
d8bf2520-d7bd-92f0-f8ed-d7ef71354a9b	2021-05-21 19:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:32:43.853+03	2021-05-21 19:32:43.865+03	
90c738aa-aead-afc5-71ca-9e74d1b59c82	2021-05-21 19:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:33:04.853+03	2021-05-21 19:33:04.86+03	
7b477f20-d1f4-e2d1-3af3-0529025a8635	2021-05-21 19:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:33:24.853+03	2021-05-21 19:33:24.86+03	
107aedef-2bd8-aa67-3861-dfef2de74883	2021-05-21 19:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:33:45.853+03	2021-05-21 19:33:45.859+03	
f7616cd9-72b1-7a70-33ac-ae6f8dd795e4	2021-05-21 19:34:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:34:06.853+03	2021-05-21 19:34:06.862+03	
48e18fc0-20a2-3c40-1a54-7e948d6666fc	2021-05-21 19:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:34:27.853+03	2021-05-21 19:34:27.859+03	
f5b0cf8e-eb2e-ca36-7f66-c9af29b6b8cd	2021-05-21 19:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:34:47.853+03	2021-05-21 19:34:47.859+03	
fdf5c9dc-8864-9af6-6a53-b9e541661fe9	2021-05-21 19:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:35:07.853+03	2021-05-21 19:35:07.859+03	
8063517e-b3c4-361c-2e79-530c7a6e4fb4	2021-05-21 19:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:35:27.853+03	2021-05-21 19:35:27.86+03	
d83e3d5e-1077-7c16-5b39-d0a6ea3e7866	2021-05-21 19:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:35:48.853+03	2021-05-21 19:35:48.859+03	
fafefff8-9c7d-ea57-690f-85de42adadf5	2021-05-21 19:36:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:36:08.853+03	2021-05-21 19:36:08.859+03	
d8ec0345-a8f9-67fd-5e17-18c47ad002ed	2021-05-21 19:36:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:36:28.853+03	2021-05-21 19:36:28.86+03	
865ae7d9-0f55-53ba-9605-de695dd77ac5	2021-05-21 19:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:36:48.853+03	2021-05-21 19:36:48.859+03	
43f520fc-e868-8ed8-3e1e-307a4368f7c6	2021-05-21 19:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:37:08.853+03	2021-05-21 19:37:08.859+03	
790c31aa-a575-da0a-3359-0e1d7a28951a	2021-05-21 19:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:37:28.853+03	2021-05-21 19:37:28.859+03	
fc5e3594-f60d-1e83-e0cb-58f383389044	2021-05-21 19:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:37:49.853+03	2021-05-21 19:37:49.858+03	
07e14ee8-24a5-6915-5e84-528e9f88a4bb	2021-05-21 19:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:38:09.853+03	2021-05-21 19:38:09.86+03	
494c3c2c-05f6-686f-53e9-8bca730801bd	2021-05-21 19:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:17:39.853+03	2021-05-21 19:17:39.859+03	
b38ffc55-c110-63d0-9866-de0b2c4b3c43	2021-05-21 19:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:18:00.853+03	2021-05-21 19:18:00.859+03	
be18a7e6-8c29-12fc-2e55-869063714411	2021-05-21 19:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:18:21.854+03	2021-05-21 19:18:21.86+03	
be829622-8b17-d2d4-6f36-b9a138b3fb5d	2021-05-21 19:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:18:42.853+03	2021-05-21 19:18:42.859+03	
90543817-979c-13ed-dfb5-a2258df3c4ed	2021-05-21 19:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:19:03.852+03	2021-05-21 19:19:03.859+03	
f570e2ef-6941-de22-1ca8-e585cef35294	2021-05-21 19:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:19:23.852+03	2021-05-21 19:19:23.861+03	
eb1ccc59-5e36-6dd7-c409-fcf25b0dfe8b	2021-05-21 19:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:19:43.853+03	2021-05-21 19:19:43.874+03	
97ab88c8-7f6d-aab1-c283-167154d88bf8	2021-05-21 19:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 19:20:00.852+03	2021-05-21 19:20:00.858+03	ERROR
c088137b-99d3-fce4-e6d1-c0d02e085db5	2021-05-21 19:20:13.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:20:13.86+03	2021-05-21 19:20:13.88+03	
343b1700-1597-2f66-37d4-df861ee8bc1c	2021-05-21 19:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:20:34.853+03	2021-05-21 19:20:34.859+03	
fd284604-3b2c-8b48-c3fc-8a57e11cc496	2021-05-21 19:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:20:55.853+03	2021-05-21 19:20:55.86+03	
bd87f003-c0e0-4b28-4c4a-de3e2ec361d7	2021-05-21 19:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:21:15.853+03	2021-05-21 19:21:15.86+03	
f5d8f9db-093d-ab05-ab5a-f581bfbbf16a	2021-05-21 19:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:21:35.853+03	2021-05-21 19:21:35.862+03	
86e9b0e8-98c7-3d1b-5bd9-1f0dccb879f5	2021-05-21 19:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:21:55.853+03	2021-05-21 19:21:55.861+03	
c7ea2276-7f0c-625f-45e3-18403a8a363b	2021-05-21 19:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:22:15.853+03	2021-05-21 19:22:15.865+03	
832ee897-aeb0-efaa-30ad-549f9c1fa002	2021-05-21 19:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:22:35.853+03	2021-05-21 19:22:35.86+03	
886dbcbd-4137-c3fe-658a-8fe2f62963c2	2021-05-21 19:22:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:22:56.853+03	2021-05-21 19:22:56.861+03	
af31c307-3251-81d5-c46d-5b799fa4a59c	2021-05-21 19:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:23:17.853+03	2021-05-21 19:23:17.86+03	
adb97282-9046-c3db-fa64-7cc18af77dc5	2021-05-21 19:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:23:38.853+03	2021-05-21 19:23:38.859+03	
c4254bd4-63a0-1356-4496-14e6d1978d03	2021-05-21 19:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:23:59.853+03	2021-05-21 19:23:59.869+03	
5a0162f2-722b-f463-8646-a67996973f9d	2021-05-21 19:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:24:20.853+03	2021-05-21 19:24:20.862+03	
6bf26f2b-556d-947c-086f-6ecccded6a59	2021-05-21 19:24:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:24:41.853+03	2021-05-21 19:24:41.859+03	
d271efd4-41d7-2c0b-a7ba-09f2942ef0bf	2021-05-21 19:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:25:03.853+03	2021-05-21 19:25:03.87+03	
892df5e0-7186-5e21-eaf7-f54efea2d332	2021-05-21 19:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:25:24.852+03	2021-05-21 19:25:24.859+03	
671bd117-0c71-d8d1-2db3-3972106e8381	2021-05-21 19:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:25:45.852+03	2021-05-21 19:25:45.859+03	
4058ec29-f6b0-e396-1058-ee7553e17163	2021-05-21 19:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:26:05.853+03	2021-05-21 19:26:05.861+03	
7f3a8894-bf24-e3de-b0b8-484bac07ce5d	2021-05-21 19:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:26:25.853+03	2021-05-21 19:26:25.866+03	
0e2366f4-5f13-1a61-a330-407095997cd6	2021-05-21 19:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:26:45.853+03	2021-05-21 19:26:45.86+03	
de6ce8be-1621-58af-26d6-776337d73a8a	2021-05-21 19:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:27:06.852+03	2021-05-21 19:27:06.872+03	
ec457863-4290-930a-299d-5f8e9fbbdd1b	2021-05-21 19:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:27:26.852+03	2021-05-21 19:27:26.86+03	
a2218135-b901-cad9-51f5-2ed04aa6e2de	2021-05-21 19:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:27:47.853+03	2021-05-21 19:27:47.873+03	
2c8e47a6-03d1-3d4b-e431-528a85cdf8b6	2021-05-21 19:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:28:07.853+03	2021-05-21 19:28:07.859+03	
c37b53a9-e0cd-1201-858d-15d7ccdfafb9	2021-05-21 19:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:28:27.853+03	2021-05-21 19:28:27.861+03	
8470f337-ffd3-be67-ef36-af5bb7eb37d7	2021-05-21 19:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:28:47.853+03	2021-05-21 19:28:47.859+03	
0df029a4-7a20-169a-d1a8-45a1f935f88a	2021-05-21 19:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:29:08.853+03	2021-05-21 19:29:08.859+03	
bd077613-3049-c5eb-032a-013cc12a4b73	2021-05-21 19:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:29:28.853+03	2021-05-21 19:29:28.86+03	
ee887dde-2661-fbde-e354-87b15258ebce	2021-05-21 19:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:29:49.853+03	2021-05-21 19:29:49.859+03	
5c6f6a72-bf5a-5587-f430-4b2d48f1629a	2021-05-21 19:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 19:30:00.853+03	2021-05-21 19:30:00.858+03	ERROR
9707918c-51d8-75ee-25b7-67b21654a4dc	2021-05-21 19:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:30:20.853+03	2021-05-21 19:30:20.861+03	
db30a676-b8e1-4d16-9b01-558129744234	2021-05-21 19:30:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:30:41.852+03	2021-05-21 19:30:41.859+03	
198483db-f07b-0448-89b5-242a1f17306d	2021-05-21 19:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:31:12.853+03	2021-05-21 19:31:12.859+03	
49e9ed34-565d-6e8c-a739-a24424dfbcd4	2021-05-21 19:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:31:32.853+03	2021-05-21 19:31:32.859+03	
c693f10a-b076-67e8-c484-550a6b01b1f4	2021-05-21 19:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:31:52.853+03	2021-05-21 19:31:52.86+03	
a7a14316-6fd5-ad6d-4e74-8f6f9f0c096d	2021-05-21 19:32:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:32:13.852+03	2021-05-21 19:32:13.867+03	
8c073988-0df7-7115-7dec-321910831fd6	2021-05-21 19:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:32:33.852+03	2021-05-21 19:32:33.859+03	
b1de0d4d-29f1-626e-7999-d0df0d604bb7	2021-05-21 19:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:32:54.853+03	2021-05-21 19:32:54.86+03	
becb04cc-0f48-72c4-22d2-eb27acfb47d0	2021-05-21 19:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:33:14.853+03	2021-05-21 19:33:14.873+03	
f4b1ea8c-a224-48a9-2201-339e4399f97a	2021-05-21 19:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:33:35.852+03	2021-05-21 19:33:35.86+03	
6aa95d1a-c4a0-f5c3-51c0-6b9078071a77	2021-05-21 19:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:33:55.853+03	2021-05-21 19:33:55.859+03	
ab3cee5a-8c57-f5ad-db2f-da9249184426	2021-05-21 19:34:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:34:16.855+03	2021-05-21 19:34:16.863+03	
35849c00-ddef-65fa-c18e-17bbcbbe2bfa	2021-05-21 19:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:34:37.853+03	2021-05-21 19:34:37.859+03	
f3254816-2dbc-eefd-4477-ddd9fe4225e4	2021-05-21 19:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:34:57.853+03	2021-05-21 19:34:57.859+03	
9b16f31e-dc51-ec5e-8545-fdcc9668c43f	2021-05-21 19:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:35:17.853+03	2021-05-21 19:35:17.859+03	
dc10bed6-520e-eacf-dd40-dbdc9cebddd8	2021-05-21 19:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:35:38.852+03	2021-05-21 19:35:38.858+03	
2fd00b82-cc72-ab0c-2c55-3b49d9814f70	2021-05-21 19:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:35:58.853+03	2021-05-21 19:35:58.859+03	
ae3efe03-24e8-a127-54e9-bb79d5324bbe	2021-05-21 19:36:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:36:18.853+03	2021-05-21 19:36:18.86+03	
8fef8ebb-b00d-7c11-d83b-4f4b33b37e93	2021-05-21 19:36:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:36:38.853+03	2021-05-21 19:36:38.86+03	
53a4ab1c-40dc-6c29-960b-303350e62682	2021-05-21 19:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:36:58.853+03	2021-05-21 19:36:58.859+03	
4e8157ab-fcc3-df27-7368-218d5fb4743e	2021-05-21 19:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:37:18.853+03	2021-05-21 19:37:18.859+03	
ccb36d14-3361-7f64-758f-535240254b04	2021-05-21 19:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:37:39.852+03	2021-05-21 19:37:39.858+03	
d3d90e5d-3f6f-c66d-402d-68cf6d6ee303	2021-05-21 19:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:37:59.853+03	2021-05-21 19:37:59.86+03	
a61547b9-3ed1-d60a-d70d-f053cce48096	2021-05-21 19:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:38:19.853+03	2021-05-21 19:38:19.86+03	
c1f7d478-e7b5-63b8-8fa2-c45767b2df36	2021-05-21 19:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:38:39.853+03	2021-05-21 19:38:39.86+03	
2384fdf6-d661-085f-e2b0-53c6f31b4614	2021-05-21 19:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:38:29.853+03	2021-05-21 19:38:29.86+03	
3a4e237c-83ce-5281-265d-c74908493016	2021-05-21 19:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:38:49.853+03	2021-05-21 19:38:49.859+03	
7de249aa-7b7a-ab13-5c23-993c0230a47f	2021-05-21 19:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:39:09.853+03	2021-05-21 19:39:09.859+03	
4b5fc04b-712e-44e8-64ad-ae07f6c4aca4	2021-05-21 19:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:39:30.853+03	2021-05-21 19:39:30.859+03	
db27f120-24f8-1a37-1453-43c62877a163	2021-05-21 19:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:39:50.853+03	2021-05-21 19:39:50.862+03	
fd55db69-a0ad-2037-16f4-c48e9bfdd917	2021-05-21 19:40:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:40:01.853+03	2021-05-21 19:40:01.878+03	
cc7d72b9-6a34-fd36-95c2-51dfd30731e7	2021-05-21 19:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:40:21.853+03	2021-05-21 19:40:21.859+03	
1ef5d648-1a06-cced-77b0-1867a8974cbe	2021-05-21 19:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:40:42.853+03	2021-05-21 19:40:42.86+03	
1d6d0658-a2a7-298d-4fc8-014ea3710300	2021-05-21 19:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:41:03.853+03	2021-05-21 19:41:03.866+03	
43f89047-6341-2a84-6ed6-fa63e409e66d	2021-05-21 19:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:41:24.853+03	2021-05-21 19:41:24.869+03	
fe9ed9c8-2e8a-f904-ef7a-1010f0d28cd5	2021-05-21 19:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:41:44.853+03	2021-05-21 19:41:44.861+03	
4ddd9c83-5b2c-2e6a-fb4d-c9597319c922	2021-05-21 19:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:42:05.853+03	2021-05-21 19:42:05.86+03	
a1f77914-4602-4514-f4fa-0985247562e5	2021-05-21 19:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:42:25.853+03	2021-05-21 19:42:25.859+03	
9f5483f6-bf28-0adb-2c4a-237621ff654c	2021-05-21 19:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:42:47.853+03	2021-05-21 19:42:47.859+03	
4e718294-eaff-c029-39d0-0916d1baec81	2021-05-21 19:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:43:07.853+03	2021-05-21 19:43:07.86+03	
d1ae2b87-cced-7eab-079f-ae9a1ce9e03f	2021-05-21 19:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:43:27.853+03	2021-05-21 19:43:27.864+03	
998a895d-066d-61ce-a7ef-f50e5b0c70eb	2021-05-21 19:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:43:47.853+03	2021-05-21 19:43:47.861+03	
2a48ed1d-8947-54dd-9835-dc8c359b7339	2021-05-21 19:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:44:08.852+03	2021-05-21 19:44:08.859+03	
8919eb6a-5bcd-7862-fda5-422d8fc9477a	2021-05-21 19:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:44:28.852+03	2021-05-21 19:44:28.859+03	
2deb61ad-1fa9-b9f5-36b4-69d733245b13	2021-05-21 19:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:44:48.852+03	2021-05-21 19:44:48.86+03	
fc899372-4c64-d55c-d19d-f3060a632f7b	2021-05-21 19:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:45:09.852+03	2021-05-21 19:45:09.859+03	
a1ecdec8-5519-19ae-ec04-1fadda48cec2	2021-05-21 19:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:45:29.853+03	2021-05-21 19:45:29.861+03	
f87a2d4f-25f1-1192-8a4f-8e328dfb3c7a	2021-05-21 19:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:45:49.853+03	2021-05-21 19:45:49.859+03	
b1d919a6-1294-55c3-588b-549b71ac138b	2021-05-21 19:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:46:09.853+03	2021-05-21 19:46:09.86+03	
9b12c1a0-3fe8-1737-221a-a03d4db579de	2021-05-21 19:46:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:46:31.854+03	2021-05-21 19:46:31.86+03	
2fb42a98-4010-d4d2-ce24-93d5b50e51d3	2021-05-21 19:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:46:52.853+03	2021-05-21 19:46:52.86+03	
ef344d97-344f-86b9-53be-000ccc7c91ec	2021-05-21 19:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:47:12.853+03	2021-05-21 19:47:12.86+03	
e214e40c-a966-b674-2935-11dcfae4d8af	2021-05-21 19:47:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:47:33.853+03	2021-05-21 19:47:33.859+03	
066b1e7f-0659-61d7-2381-289a62e0e6e2	2021-05-21 19:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:47:54.853+03	2021-05-21 19:47:54.859+03	
c29421b1-dcf8-bf3a-52a1-72b6186dee87	2021-05-21 19:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:48:14.853+03	2021-05-21 19:48:14.861+03	
8559d3d0-66d1-87c8-ba36-701c27f5fd36	2021-05-21 19:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:48:34.853+03	2021-05-21 19:48:34.862+03	
67da52fb-d680-250d-ad49-cc4f5f470b21	2021-05-21 19:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:48:55.852+03	2021-05-21 19:48:55.86+03	
f7511537-f684-836b-d9d9-bb56a8708d05	2021-05-21 19:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:49:15.853+03	2021-05-21 19:49:15.862+03	
b5fa8810-7520-61bf-fcf7-af2ec2d24b4c	2021-05-21 19:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:49:37.853+03	2021-05-21 19:49:37.86+03	
68fd997e-c058-e340-8c3a-4e6792cbfb14	2021-05-21 19:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:49:57.853+03	2021-05-21 19:49:57.862+03	
fde844a0-6f5e-a832-e365-189ef622079c	2021-05-21 19:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:50:08.853+03	2021-05-21 19:50:08.86+03	
3ad9a84a-b14b-78be-cee2-f34dc1c5f9a1	2021-05-21 19:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:50:29.852+03	2021-05-21 19:50:29.859+03	
e08137b3-8880-cae9-9041-5a7466424d41	2021-05-21 19:50:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:50:50.852+03	2021-05-21 19:50:50.859+03	
3029d0a9-1575-ceb4-b2bf-7fae5525f9b0	2021-05-21 19:51:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:51:10.853+03	2021-05-21 19:51:10.86+03	
1abeda1b-f1b4-496b-a711-6a6680870872	2021-05-21 19:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:51:30.853+03	2021-05-21 19:51:30.86+03	
b2f90589-614c-eec8-bd84-ca5b558df7d6	2021-05-21 19:51:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:51:51.854+03	2021-05-21 19:51:51.862+03	
1bb27362-a06e-3f7c-78be-ae8bf2c72914	2021-05-21 19:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:52:12.853+03	2021-05-21 19:52:12.864+03	
c5c5f81f-6394-e9f9-0fc1-e0a4c770acd2	2021-05-21 19:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:52:32.853+03	2021-05-21 19:52:32.86+03	
8610f9fa-b9da-7c29-fc1d-e06dd959509d	2021-05-21 19:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:52:53.852+03	2021-05-21 19:52:53.859+03	
d04d8378-90ef-cc86-bd09-ee51a5f1c526	2021-05-21 19:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:53:14.853+03	2021-05-21 19:53:14.863+03	
46b1df38-9ed8-bd8a-b6da-aa15287aebbe	2021-05-21 19:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:53:34.853+03	2021-05-21 19:53:34.86+03	
52f1fec9-7c07-5ce0-a7b4-20238be3eb80	2021-05-21 19:53:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:53:55.853+03	2021-05-21 19:53:55.859+03	
e49b9187-9f90-c128-aa17-ca219dd53d69	2021-05-21 19:54:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:54:16.853+03	2021-05-21 19:54:16.86+03	
083acdc7-2789-f6e2-0ef6-85c583d459e8	2021-05-21 19:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:54:37.853+03	2021-05-21 19:54:37.86+03	
984fdffa-e2ff-a995-bd77-02a6b140caa7	2021-05-21 19:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:54:58.852+03	2021-05-21 19:54:58.859+03	
59a0307a-f4fa-0f0a-1fb4-c550b509c51e	2021-05-21 19:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:55:18.852+03	2021-05-21 19:55:18.859+03	
a00cdb1a-b59f-23e1-cc26-7d1a9e68a537	2021-05-21 19:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:55:38.852+03	2021-05-21 19:55:38.86+03	
ea9785a0-7367-54e4-1198-a3aac8badf6c	2021-05-21 19:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:55:58.853+03	2021-05-21 19:55:58.859+03	
f69897c8-a438-47fa-cdc3-e2e1b519abd8	2021-05-21 19:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:56:18.853+03	2021-05-21 19:56:18.859+03	
299cef2a-1268-cefb-7236-11bf6efd94f2	2021-05-21 19:56:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:56:38.853+03	2021-05-21 19:56:38.86+03	
4e39a4e8-4ddb-a60d-3749-34924fe85ddb	2021-05-21 19:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:56:59.852+03	2021-05-21 19:56:59.859+03	
105ad5f7-0710-f151-eafb-ff0ec5e2d459	2021-05-21 19:57:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:57:19.852+03	2021-05-21 19:57:19.86+03	
5e4d3aaa-2227-4872-df48-bb106e74e097	2021-05-21 19:57:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:57:39.853+03	2021-05-21 19:57:39.86+03	
9b0e1a0e-4a00-76ea-ff17-1535ee0c3126	2021-05-21 19:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:57:59.853+03	2021-05-21 19:57:59.86+03	
3a0319f3-7acb-7920-0d2d-522f76975e4e	2021-05-21 19:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:58:19.853+03	2021-05-21 19:58:19.86+03	
ade06b19-bb04-dbf1-47b6-8caf5fdd2dea	2021-05-21 19:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:58:39.853+03	2021-05-21 19:58:39.86+03	
e6d9fb39-42d7-293c-4dc5-03cad88b4076	2021-05-21 19:58:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:58:59.853+03	2021-05-21 19:58:59.858+03	
a0009f41-d0f1-32b3-6222-fab04ac52f37	2021-05-21 19:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:59:20.852+03	2021-05-21 19:59:20.859+03	
78d7b207-aa25-8148-1f97-f64c7a8fb76f	2021-05-21 19:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:38:59.853+03	2021-05-21 19:38:59.861+03	
447bcbda-6757-2050-50ea-bc360145c06f	2021-05-21 19:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:39:19.853+03	2021-05-21 19:39:19.865+03	
9359ab27-b1ba-f59f-8887-59e70cf5a954	2021-05-21 19:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:39:40.853+03	2021-05-21 19:39:40.859+03	
ab9c05b6-1b4c-4944-3a24-ec903da7d0a9	2021-05-21 19:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 19:40:00.852+03	2021-05-21 19:40:00.859+03	ERROR
004ea751-6c21-6508-338e-3e5d2c51cf10	2021-05-21 19:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:40:11.853+03	2021-05-21 19:40:11.859+03	
54bdb6b5-e3d5-addf-ffae-f8fb4ade4c6c	2021-05-21 19:40:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:40:31.854+03	2021-05-21 19:40:31.862+03	
892a127f-5e17-d1dc-9de5-aabcca279ea7	2021-05-21 19:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:40:52.853+03	2021-05-21 19:40:52.86+03	
94baff96-b4c6-3b6e-bad5-a8b632d99430	2021-05-21 19:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:41:14.853+03	2021-05-21 19:41:14.859+03	
bee5c736-c282-f646-6aee-6fd836a445c4	2021-05-21 19:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:41:34.853+03	2021-05-21 19:41:34.861+03	
aac91049-1959-7b18-32be-4e9adc6a19f0	2021-05-21 19:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:41:55.853+03	2021-05-21 19:41:55.859+03	
3bb49dab-d1bf-b0f8-99db-c207c811243e	2021-05-21 19:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:42:15.853+03	2021-05-21 19:42:15.863+03	
cf6539f4-45ec-7d27-ebfb-672b8cc27126	2021-05-21 19:42:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:42:36.853+03	2021-05-21 19:42:36.859+03	
fca0863a-67fb-9d73-3679-e9bc47ba5381	2021-05-21 19:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:42:57.853+03	2021-05-21 19:42:57.859+03	
590d35de-90c8-1955-2506-15db8071a387	2021-05-21 19:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:43:17.853+03	2021-05-21 19:43:17.861+03	
b83a04bc-095c-d24f-353e-aa7c37904815	2021-05-21 19:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:43:37.853+03	2021-05-21 19:43:37.86+03	
d42bec4e-bca5-5c62-d293-9c73c79b1d56	2021-05-21 19:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:43:57.853+03	2021-05-21 19:43:57.865+03	
2e090ed2-64d3-067a-72d2-3a8b755f1670	2021-05-21 19:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:44:18.852+03	2021-05-21 19:44:18.86+03	
f6f592ec-fb59-d57e-1408-dea2d1523d36	2021-05-21 19:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:44:38.852+03	2021-05-21 19:44:38.86+03	
4dc502f7-39ea-5c89-9010-1966b7006b28	2021-05-21 19:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:44:58.853+03	2021-05-21 19:44:58.859+03	
12813a8e-ecc9-0810-b21b-68f1c41d5eb2	2021-05-21 19:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:45:19.853+03	2021-05-21 19:45:19.86+03	
f6d91cbf-e5d1-aea2-42f9-6228e3f5ac4c	2021-05-21 19:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:45:39.853+03	2021-05-21 19:45:39.859+03	
0c3fe27e-80ec-bd91-da3c-67e16ad6c046	2021-05-21 19:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:45:59.853+03	2021-05-21 19:45:59.859+03	
41d69238-fce3-3753-49a0-db61d8effac6	2021-05-21 19:46:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:46:20.853+03	2021-05-21 19:46:20.859+03	
280f63e4-1bcc-1065-4f1d-efba0bd4b1c1	2021-05-21 19:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:46:42.853+03	2021-05-21 19:46:42.86+03	
a3f1c962-8e4a-0182-890b-018721dff183	2021-05-21 19:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:47:02.853+03	2021-05-21 19:47:02.859+03	
374aaf43-4e6b-94e4-8db7-d623eb73769d	2021-05-21 19:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:47:23.853+03	2021-05-21 19:47:23.866+03	
e8a35955-9f5e-6b33-7ddf-0e93ae0cc150	2021-05-21 19:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:47:44.853+03	2021-05-21 19:47:44.86+03	
852b2225-435a-2589-d807-031af1d05b27	2021-05-21 19:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:48:04.853+03	2021-05-21 19:48:04.859+03	
d1d191f2-b7f8-b55d-fcbb-18a275d8f6cf	2021-05-21 19:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:48:24.853+03	2021-05-21 19:48:24.86+03	
d42a91a4-6c53-a2aa-4a2a-4f0e0fe503bc	2021-05-21 19:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:48:44.853+03	2021-05-21 19:48:44.86+03	
d958d17b-58cd-dc88-9d1d-defdd095dfe9	2021-05-21 19:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:49:05.852+03	2021-05-21 19:49:05.859+03	
ebf0c97f-4a0a-355d-3c0d-467829773610	2021-05-21 19:49:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:49:26.854+03	2021-05-21 19:49:26.86+03	
da53ad05-dda8-9820-ddf6-cd825056b5b3	2021-05-21 19:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:49:47.853+03	2021-05-21 19:49:47.86+03	
5c0953e0-2237-f5b2-f8d3-3e1f873bbf60	2021-05-21 19:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 19:50:00.852+03	2021-05-21 19:50:00.857+03	ERROR
cf66fa0c-ceff-05a5-c0e1-ad4cf584cdca	2021-05-21 19:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:50:18.853+03	2021-05-21 19:50:18.86+03	
3e6d818a-6e42-4ef6-afac-9f7a360b5723	2021-05-21 19:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:50:39.853+03	2021-05-21 19:50:39.86+03	
8bb99b3b-8fc7-7508-e2f8-b02963160627	2021-05-21 19:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:51:00.852+03	2021-05-21 19:51:00.859+03	
d0347a68-58e9-d853-a9d1-9416426a28af	2021-05-21 19:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:51:20.853+03	2021-05-21 19:51:20.86+03	
75568a8c-132c-7006-d668-61cfeafd7839	2021-05-21 19:51:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:51:41.853+03	2021-05-21 19:51:41.859+03	
c315483a-6f56-690d-9840-d6c27df8ddb1	2021-05-21 19:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:52:02.853+03	2021-05-21 19:52:02.873+03	
c5f1f310-d23f-bf0a-d485-e7dc2b611e07	2021-05-21 19:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:52:22.853+03	2021-05-21 19:52:22.859+03	
b45cc683-e300-4e63-1022-91cc4f64c9f8	2021-05-21 19:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:52:43.852+03	2021-05-21 19:52:43.858+03	
e378f133-82b4-2fd4-0739-54b0cfad74f5	2021-05-21 19:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:53:03.853+03	2021-05-21 19:53:03.864+03	
c8ee0360-04d9-2833-cd0e-8b7ee6085b3f	2021-05-21 19:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:53:24.853+03	2021-05-21 19:53:24.861+03	
76724c1b-75eb-e41e-8187-b5560f949d41	2021-05-21 19:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:53:45.852+03	2021-05-21 19:53:45.858+03	
bd8a272d-337c-56cb-c3aa-406bd173a0b0	2021-05-21 19:54:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:54:06.852+03	2021-05-21 19:54:06.86+03	
1d199c16-4fc3-d4cc-3625-15cd6da28f74	2021-05-21 19:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:54:27.853+03	2021-05-21 19:54:27.86+03	
ee92f630-89f3-b65f-170f-03b41bd10eb5	2021-05-21 19:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:54:47.853+03	2021-05-21 19:54:47.859+03	
277eee36-864a-5998-b9f2-9b996486060f	2021-05-21 19:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:55:08.852+03	2021-05-21 19:55:08.858+03	
6020c55c-8993-b96d-78d3-5ae80e36a71f	2021-05-21 19:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:55:28.852+03	2021-05-21 19:55:28.859+03	
a7310642-49e9-117e-e519-cf94e90ce027	2021-05-21 19:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:55:48.852+03	2021-05-21 19:55:48.879+03	
5bf3ba62-115f-6ff2-b0f7-fbbf0e658805	2021-05-21 19:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:56:08.853+03	2021-05-21 19:56:08.859+03	
379afec8-9001-fa63-9035-1973bbf015ff	2021-05-21 19:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:56:28.853+03	2021-05-21 19:56:28.86+03	
4de5479b-ccb3-72dc-9a69-47fbd708ace5	2021-05-21 19:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:56:49.852+03	2021-05-21 19:56:49.861+03	
4533a27f-a236-ddf5-3660-e72f9ffc7e06	2021-05-21 19:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:57:09.852+03	2021-05-21 19:57:09.869+03	
143e3614-ad3c-23a1-b0b0-6c7c141f092a	2021-05-21 19:57:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:57:29.853+03	2021-05-21 19:57:29.859+03	
b63a7c65-427a-7429-ed81-1f03f3c67212	2021-05-21 19:57:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:57:49.853+03	2021-05-21 19:57:49.86+03	
2416c2e4-d54c-99d4-249a-02989ef336b4	2021-05-21 19:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:58:09.853+03	2021-05-21 19:58:09.863+03	
e5809594-3492-9b3c-1cd8-257b4f6b34ca	2021-05-21 19:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:58:29.853+03	2021-05-21 19:58:29.86+03	
db1ba9cf-6d64-3432-78fc-fb03ec70d529	2021-05-21 19:58:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:58:49.853+03	2021-05-21 19:58:49.859+03	
adf49614-14a8-b8df-a250-03700c11ffd6	2021-05-21 19:59:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:59:09.853+03	2021-05-21 19:59:09.859+03	
e896ebc1-e702-721e-a731-652644794e81	2021-05-21 19:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:59:30.852+03	2021-05-21 19:59:30.859+03	
ae1da3e6-78c3-c54b-ccdb-f18494d13254	2021-05-21 19:59:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:59:50.853+03	2021-05-21 19:59:50.86+03	
590222a8-ecfa-fc4e-4e1a-c5cf3734db85	2021-05-21 19:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 19:59:40.853+03	2021-05-21 19:59:40.86+03	
ce35b05a-a0ce-11c9-6d70-daa6a667e2ef	2021-05-21 20:00:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:00:00.853+03	2021-05-21 20:00:00.866+03	
5bb9e671-8096-2ac3-d8af-cfdd273b4955	2021-05-21 20:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 20:00:00.853+03	2021-05-21 20:00:00.876+03	ERROR
b5e26c61-e16a-7fd9-3509-e99cb742be4f	2021-05-21 20:00:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:00:20.853+03	2021-05-21 20:00:20.866+03	
04f3627c-030a-ce2b-0e4a-0db97b8edd5d	2021-05-21 20:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:00:40.853+03	2021-05-21 20:00:40.861+03	
dfeccffc-a971-3831-051c-3307f9b70960	2021-05-21 20:01:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:01:01.854+03	2021-05-21 20:01:01.864+03	
709dcb34-d360-8fc0-a3ff-4a32ea1d5646	2021-05-21 20:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:01:22.853+03	2021-05-21 20:01:22.86+03	
617b009f-2593-b444-981c-010b74e17185	2021-05-21 20:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:01:42.853+03	2021-05-21 20:01:42.865+03	
1dba0058-b753-c712-7381-38b1b2d602c7	2021-05-21 20:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:02:02.853+03	2021-05-21 20:02:02.86+03	
54c929b7-3088-6978-642c-4c8fda0a9eba	2021-05-21 20:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:02:22.853+03	2021-05-21 20:02:22.865+03	
465a56a7-f414-b83d-6f00-386cea9f6d8b	2021-05-21 20:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:02:42.853+03	2021-05-21 20:02:42.859+03	
d70c6b0b-43d3-4715-be65-7946ea031ffe	2021-05-21 20:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:03:03.853+03	2021-05-21 20:03:03.861+03	
7fedca3d-5321-2e92-0e3e-e0fd1e75ccda	2021-05-21 20:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:03:23.853+03	2021-05-21 20:03:23.861+03	
dd1a79ff-cd29-9cce-2d98-9a008bdf7046	2021-05-21 20:03:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:03:44.853+03	2021-05-21 20:03:44.86+03	
cc30abb1-15e1-cff2-9985-eb39d920c740	2021-05-21 20:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:04:04.853+03	2021-05-21 20:04:04.86+03	
3c75c522-1f1b-9c84-ebd0-69fbce232223	2021-05-21 20:04:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:04:24.853+03	2021-05-21 20:04:24.86+03	
c1e73c50-cd78-498a-e4c0-ef12d051869d	2021-05-21 20:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:04:45.853+03	2021-05-21 20:04:45.861+03	
46a40170-1bdd-2729-681d-616fa97ef2fb	2021-05-21 20:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:05:05.853+03	2021-05-21 20:05:05.861+03	
1336fb40-c49a-39b5-e7ee-0f3d4d70850a	2021-05-21 20:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:05:25.853+03	2021-05-21 20:05:25.86+03	
4c9e4b25-ce79-10e4-f937-ae65bdcd05d4	2021-05-21 20:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:05:47.853+03	2021-05-21 20:05:47.859+03	
a81e0596-faa1-655b-2379-1c34fb2ee60e	2021-05-21 20:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:06:07.853+03	2021-05-21 20:06:07.86+03	
d0b98071-d985-df8b-2036-719706abb03a	2021-05-21 20:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:06:27.853+03	2021-05-21 20:06:27.86+03	
6e323424-d2d4-bd48-9d6d-884a7dee3d29	2021-05-21 20:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:06:48.853+03	2021-05-21 20:06:48.863+03	
079fb720-5d7e-8bf6-ff1e-f0194ef5bd0b	2021-05-21 20:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:07:09.852+03	2021-05-21 20:07:09.859+03	
0592cfb0-00f1-4bb8-72bc-fc34ede27927	2021-05-21 20:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:07:30.853+03	2021-05-21 20:07:30.859+03	
91b22152-4ef1-2cc6-c711-531d6687bafe	2021-05-21 20:07:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:07:51.852+03	2021-05-21 20:07:51.86+03	
a569a17b-e5ed-b289-b691-330792039700	2021-05-21 20:08:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:08:11.854+03	2021-05-21 20:08:11.865+03	
4fa4cb3e-2dfb-1efc-7035-86baece5a89b	2021-05-21 20:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:08:32.853+03	2021-05-21 20:08:32.859+03	
c5478f50-238c-4d7f-154e-7a85ab0682c4	2021-05-21 20:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:08:53.853+03	2021-05-21 20:08:53.864+03	
9958447a-cc42-9778-b5ee-5df868117b9a	2021-05-21 20:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:09:13.853+03	2021-05-21 20:09:13.872+03	
8dbf7f3b-68f6-c6f6-b91f-54da25f53874	2021-05-21 20:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:09:34.852+03	2021-05-21 20:09:34.859+03	
8f2f8073-c50a-4b2c-936c-c05d33e8fbdf	2021-05-21 20:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:09:54.853+03	2021-05-21 20:09:54.861+03	
801c55c2-fe95-1c18-12c7-5ccdf119478a	2021-05-21 20:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:10:05.852+03	2021-05-21 20:10:05.858+03	
7cdfb246-f088-e1e3-4fde-b4507818ce57	2021-05-21 20:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:10:25.853+03	2021-05-21 20:10:25.86+03	
fb28e6e2-13a8-1608-6414-cabf82448b76	2021-05-21 20:10:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:10:47.853+03	2021-05-21 20:10:47.859+03	
8f1cdb52-7f0c-075c-c2a5-330da1901918	2021-05-21 20:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:11:07.853+03	2021-05-21 20:11:07.869+03	
6e901b90-41c0-965e-ba3f-f78164630cc4	2021-05-21 20:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:11:27.853+03	2021-05-21 20:11:27.872+03	
eb799790-21d5-05b4-479a-2d75e4952f13	2021-05-21 20:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:11:47.853+03	2021-05-21 20:11:47.861+03	
634385a3-30fb-fb80-2b3d-b9e3753e3376	2021-05-21 20:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:12:07.853+03	2021-05-21 20:12:07.859+03	
e063390d-f156-0199-94a1-4cc5405a0047	2021-05-21 20:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:12:28.852+03	2021-05-21 20:12:28.859+03	
043e3209-1cc1-7451-c6fc-524fd441d5e0	2021-05-21 20:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:12:48.853+03	2021-05-21 20:12:48.86+03	
4925c752-9574-98bd-4940-779c13fc4cf3	2021-05-21 20:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:13:08.853+03	2021-05-21 20:13:08.86+03	
b2285ceb-458c-7cc3-bd0b-24903a09dac0	2021-05-21 20:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:13:28.853+03	2021-05-21 20:13:28.859+03	
e4fb660d-0e93-1000-9eb7-3f0e2a9ca7c2	2021-05-21 20:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:13:48.853+03	2021-05-21 20:13:48.86+03	
ab4e4e9e-8e15-c335-429c-193d0b512ba3	2021-05-21 20:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:14:08.853+03	2021-05-21 20:14:08.859+03	
4248acee-2742-9692-92d4-4023e75a4259	2021-05-21 20:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:14:29.853+03	2021-05-21 20:14:29.861+03	
f854f9d2-9339-9c58-7c28-57f7a526615c	2021-05-21 20:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:14:50.853+03	2021-05-21 20:14:50.863+03	
f04a8a46-8118-5203-8110-1c5219057472	2021-05-21 20:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:15:10.853+03	2021-05-21 20:15:10.86+03	
d81498a6-e0f3-1f05-263b-0aab682aab69	2021-05-21 20:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:15:30.853+03	2021-05-21 20:15:30.86+03	
88498c9b-13f4-7212-0f23-1c42e748e526	2021-05-21 20:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:15:50.853+03	2021-05-21 20:15:50.862+03	
2f9dbcf5-c9f2-b0d8-ed8f-8ea791b99211	2021-05-21 20:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:16:10.853+03	2021-05-21 20:16:10.859+03	
9a7eda49-5a49-5317-a18c-4a883839f4a5	2021-05-21 20:16:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:16:31.854+03	2021-05-21 20:16:31.873+03	
418e76c7-6eb2-9a3e-a908-74a3636fa6d5	2021-05-21 20:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:16:52.853+03	2021-05-21 20:16:52.859+03	
b4e19c1d-38a1-5914-0e81-0a480efe7dce	2021-05-21 20:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:17:12.853+03	2021-05-21 20:17:12.86+03	
74e85f1e-e7ad-1f4c-5550-11a474e62f59	2021-05-21 20:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:17:32.853+03	2021-05-21 20:17:32.859+03	
c1aa1bf8-2e22-7923-9acf-39549ec61096	2021-05-21 20:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:17:53.852+03	2021-05-21 20:17:53.859+03	
9bc1dfba-174d-82ef-8e30-dc36b5af5888	2021-05-21 20:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:18:13.852+03	2021-05-21 20:18:13.859+03	
758e3161-df78-cd8e-182c-2fa093410888	2021-05-21 20:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:18:34.853+03	2021-05-21 20:18:34.86+03	
05ae9a2c-92f1-ba97-98d9-6e0f81781d86	2021-05-21 20:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:18:54.853+03	2021-05-21 20:18:54.861+03	
f549a670-7ae5-bd0c-d0dc-2958d3b67b36	2021-05-21 20:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:19:14.853+03	2021-05-21 20:19:14.86+03	
3ad26cfa-5f3f-6245-e140-ddbffd3d659f	2021-05-21 20:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:19:35.853+03	2021-05-21 20:19:35.861+03	
001c0d41-5ab3-fc5c-561a-88880a37df3f	2021-05-21 20:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 20:20:00.852+03	2021-05-21 20:20:00.858+03	ERROR
7d47aa58-b295-12ef-f0e4-7863b1b8a43d	2021-05-21 20:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:20:16.853+03	2021-05-21 20:20:16.86+03	
c86d2aad-247a-fd9d-c7ca-92089abced4a	2021-05-21 20:00:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:00:10.853+03	2021-05-21 20:00:10.861+03	
b7164eeb-caf0-0bcc-f57f-6391393238d4	2021-05-21 20:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:00:30.853+03	2021-05-21 20:00:30.864+03	
5c3c822d-a11c-688b-35b1-8be07cb105ad	2021-05-21 20:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:00:50.853+03	2021-05-21 20:00:50.859+03	
139d99e9-cf83-3d74-4346-1cfa05ff533d	2021-05-21 20:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:01:12.853+03	2021-05-21 20:01:12.859+03	
eaa0d551-8257-dbe8-150a-f0afad3166ca	2021-05-21 20:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:01:32.853+03	2021-05-21 20:01:32.863+03	
249493d2-46dc-b29d-ba4c-33482f27a3f9	2021-05-21 20:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:01:52.853+03	2021-05-21 20:01:52.861+03	
1d3b0bf8-c279-436e-670c-74e3f89ced44	2021-05-21 20:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:02:12.853+03	2021-05-21 20:02:12.861+03	
5444fcf6-8d2a-bf29-82cd-535971080322	2021-05-21 20:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:02:32.853+03	2021-05-21 20:02:32.86+03	
1bc8fb02-023e-7f81-7792-9218e93760e9	2021-05-21 20:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:02:52.853+03	2021-05-21 20:02:52.858+03	
457df484-41df-4e41-d952-5c310df90301	2021-05-21 20:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:03:13.853+03	2021-05-21 20:03:13.859+03	
cc8aa81a-c5a7-dabd-ba85-3495aa6c3691	2021-05-21 20:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:03:34.852+03	2021-05-21 20:03:34.859+03	
b7a55e14-ab34-8eac-3fe7-d7bee18e82af	2021-05-21 20:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:03:54.853+03	2021-05-21 20:03:54.861+03	
9ff46de6-928b-e75d-d7a9-765ff97f9b3f	2021-05-21 20:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:04:14.853+03	2021-05-21 20:04:14.859+03	
65bfb64f-4b6c-1aca-d678-fe3f04f46d50	2021-05-21 20:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:04:34.853+03	2021-05-21 20:04:34.861+03	
750d6364-e225-b5c8-57ba-5823f5cceff0	2021-05-21 20:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:04:55.853+03	2021-05-21 20:04:55.86+03	
ead5d6bb-9648-5968-d60d-40c9844e15cf	2021-05-21 20:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:05:15.853+03	2021-05-21 20:05:15.864+03	
0a1fd1da-d0f9-0ca5-17a7-d8989e61bfd4	2021-05-21 20:05:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:05:36.854+03	2021-05-21 20:05:36.861+03	
dad3e5e1-ff4f-80b5-ed01-3a376cf8fc46	2021-05-21 20:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:05:57.853+03	2021-05-21 20:05:57.859+03	
fef63da9-4c01-f93e-d759-d6b139247eea	2021-05-21 20:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:06:17.853+03	2021-05-21 20:06:17.859+03	
2a5d96dd-aea2-fd08-6d49-ba3f63739d23	2021-05-21 20:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:06:38.853+03	2021-05-21 20:06:38.862+03	
13547505-b0ca-b3b8-905f-33711f44247a	2021-05-21 20:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:06:59.852+03	2021-05-21 20:06:59.858+03	
1a94357d-28a9-5fd6-f7a7-a14c9f0b3992	2021-05-21 20:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:07:19.853+03	2021-05-21 20:07:19.859+03	
6d5486aa-0308-906f-a13c-46a5ecd6b53f	2021-05-21 20:07:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:07:41.852+03	2021-05-21 20:07:41.859+03	
0a767def-b84c-5ee8-4cf7-bc5f8c1bdf8a	2021-05-21 20:08:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:08:01.854+03	2021-05-21 20:08:01.878+03	
1c51f1ef-5f7c-6b32-74f2-9a41d4aa2abd	2021-05-21 20:08:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:08:21.854+03	2021-05-21 20:08:21.871+03	
d3bf1682-aeee-3201-92da-d8f8be3a2cf8	2021-05-21 20:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:08:43.853+03	2021-05-21 20:08:43.86+03	
15da7b6d-8af6-5f5e-67ad-d853bb0013cd	2021-05-21 20:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:09:03.853+03	2021-05-21 20:09:03.86+03	
d4b292ff-f27b-bfa1-9504-be4435285532	2021-05-21 20:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:09:23.853+03	2021-05-21 20:09:23.868+03	
872b5d4b-c667-9e71-a097-1a6f6b5d0cda	2021-05-21 20:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:09:44.853+03	2021-05-21 20:09:44.862+03	
7596691d-60c0-808f-422d-883c397270e0	2021-05-21 20:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 20:10:00.853+03	2021-05-21 20:10:00.858+03	ERROR
7033cc22-a0bc-f010-0f87-56167d427390	2021-05-21 20:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:10:15.853+03	2021-05-21 20:10:15.859+03	
6b42b394-d12d-fe18-519e-961be9685c11	2021-05-21 20:10:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:10:36.854+03	2021-05-21 20:10:36.859+03	
017b4169-baf1-5d7b-e4b0-fdc4acbe5927	2021-05-21 20:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:10:57.853+03	2021-05-21 20:10:57.859+03	
1b5840ad-1416-cb8a-71be-0ba6659184c2	2021-05-21 20:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:11:17.853+03	2021-05-21 20:11:17.863+03	
a943cfeb-1685-584d-fa9b-f016fb50d7ca	2021-05-21 20:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:11:37.853+03	2021-05-21 20:11:37.86+03	
a68798ce-7b26-04a0-5504-3a3f0e2b7149	2021-05-21 20:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:11:57.853+03	2021-05-21 20:11:57.871+03	
fd624bdd-a13e-6f31-6a1b-f5ead5a38be0	2021-05-21 20:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:12:17.853+03	2021-05-21 20:12:17.859+03	
c9469ce5-c5eb-10c3-5a31-791b33b49a7d	2021-05-21 20:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:12:38.853+03	2021-05-21 20:12:38.862+03	
15e6a6ac-511a-d4a1-76cc-1ccd4f4997c8	2021-05-21 20:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:12:58.853+03	2021-05-21 20:12:58.871+03	
2e078198-3337-3823-7373-42911ebd53fe	2021-05-21 20:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:13:18.853+03	2021-05-21 20:13:18.86+03	
26e64867-8238-016b-27f2-b1622e7705e8	2021-05-21 20:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:13:38.853+03	2021-05-21 20:13:38.865+03	
1c21c486-3eed-d5ec-6041-6b7089c6c456	2021-05-21 20:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:13:58.853+03	2021-05-21 20:13:58.859+03	
3b414136-e224-7c53-e135-4440f5a628f1	2021-05-21 20:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:14:19.853+03	2021-05-21 20:14:19.861+03	
25eee571-a52b-23a7-49b3-84842f3106b1	2021-05-21 20:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:14:39.853+03	2021-05-21 20:14:39.86+03	
c2397ae5-49d0-2723-13b1-04e9f9ede77c	2021-05-21 20:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:15:00.853+03	2021-05-21 20:15:00.867+03	
321eb75a-f835-996e-6373-9f20a4e80222	2021-05-21 20:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:15:20.853+03	2021-05-21 20:15:20.859+03	
1aeac83b-2d76-cbe0-7314-cf0572627c87	2021-05-21 20:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:15:40.853+03	2021-05-21 20:15:40.863+03	
6bed5f64-12e6-29b0-fa43-83ac870fef32	2021-05-21 20:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:16:00.853+03	2021-05-21 20:16:00.86+03	
03e71b3f-1f26-2631-efae-df74f8c127e0	2021-05-21 20:16:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:16:21.854+03	2021-05-21 20:16:21.861+03	
8cc79cf7-12a4-72d2-eb87-903167bb0332	2021-05-21 20:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:16:42.853+03	2021-05-21 20:16:42.86+03	
46e2e68c-e93d-c1e2-ecea-1a108d1bd8a1	2021-05-21 20:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:17:02.853+03	2021-05-21 20:17:02.86+03	
80df212a-b30c-42b2-4e76-bbbddf458289	2021-05-21 20:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:17:22.853+03	2021-05-21 20:17:22.859+03	
1aa3b342-288f-e6d8-814b-da0c8f7b91a1	2021-05-21 20:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:17:43.852+03	2021-05-21 20:17:43.86+03	
8bf172f3-61f2-b05c-a9bb-2c860ee69ef9	2021-05-21 20:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:18:03.852+03	2021-05-21 20:18:03.859+03	
0f20c5a5-53f6-6637-d035-cdcd694543cc	2021-05-21 20:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:18:23.853+03	2021-05-21 20:18:23.86+03	
006fc953-905b-a45a-6f44-eb24444828e2	2021-05-21 20:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:18:44.853+03	2021-05-21 20:18:44.859+03	
4ba69ac1-0c33-f9b3-d3ce-8e2c5846b329	2021-05-21 20:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:19:04.853+03	2021-05-21 20:19:04.86+03	
5c91702c-9d66-7b89-e49a-0af7ae5f42fc	2021-05-21 20:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:19:25.852+03	2021-05-21 20:19:25.86+03	
56e690ad-a7e2-a855-8b89-8be2f70a711c	2021-05-21 20:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:19:45.853+03	2021-05-21 20:19:45.859+03	
7e6507aa-3deb-ed7f-dc5b-c1dcdaa6cd8c	2021-05-21 20:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:19:55.853+03	2021-05-21 20:19:55.86+03	
3a80a8b9-abd0-e42f-d743-971bdef00eaa	2021-05-21 20:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:20:06.853+03	2021-05-21 20:20:06.861+03	
2dcd1849-9493-0be2-0d13-ab20039ababd	2021-05-21 20:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:20:26.853+03	2021-05-21 20:20:26.859+03	
a2e7140c-964a-d38f-8e6c-ccecb78a85aa	2021-05-21 20:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:20:47.853+03	2021-05-21 20:20:47.864+03	
309cb826-b6ee-0fd4-a7f0-a991419b7bd5	2021-05-21 20:20:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:20:36.853+03	2021-05-21 20:20:36.861+03	
1e1c3927-0662-b095-2878-0f6dbcd6752d	2021-05-21 20:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:20:57.853+03	2021-05-21 20:20:57.864+03	
83fdeb9a-f499-8a59-7875-5f8c19c60818	2021-05-21 20:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:21:18.853+03	2021-05-21 20:21:18.861+03	
1feb375e-5597-50b0-15e2-afc3b20acb54	2021-05-21 20:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:21:38.853+03	2021-05-21 20:21:38.861+03	
7d185a96-20ac-e43d-1fe5-9b5f862bb12e	2021-05-21 20:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:21:58.853+03	2021-05-21 20:21:58.861+03	
94c2f08e-22f5-e8d2-5d23-d1757e86ab91	2021-05-21 20:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:22:19.852+03	2021-05-21 20:22:19.858+03	
fcd4b4ba-9b8c-2a2e-92a6-99e93badee59	2021-05-21 20:22:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:22:39.853+03	2021-05-21 20:22:39.86+03	
3b1088a6-0721-3b60-3fd6-1634a9ae7faa	2021-05-21 20:23:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:23:01.853+03	2021-05-21 20:23:01.861+03	
d3c37434-32de-4b05-0a45-6e87ce2894c4	2021-05-21 20:23:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:23:21.854+03	2021-05-21 20:23:21.865+03	
1856a9b6-071a-4dee-5185-427568c0e169	2021-05-21 20:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:23:42.853+03	2021-05-21 20:23:42.859+03	
cdec5ff1-f25b-7024-2bc6-6d9b4643edbc	2021-05-21 20:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:24:03.853+03	2021-05-21 20:24:03.859+03	
4bdd06b9-1f9d-a9e7-4107-414ad6dd75b2	2021-05-21 20:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:24:24.853+03	2021-05-21 20:24:24.86+03	
c15786b2-98d2-f685-e099-9df1d4b5adcb	2021-05-21 20:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:24:44.853+03	2021-05-21 20:24:44.905+03	
385e728e-a3d7-9c0a-4189-14bb0655a438	2021-05-21 20:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:25:05.853+03	2021-05-21 20:25:05.86+03	
ad67c189-7586-bf74-e0b5-29f9efc8c952	2021-05-21 20:25:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:25:26.852+03	2021-05-21 20:25:26.86+03	
81347254-4652-e093-2a39-c36f1ce75da1	2021-05-21 20:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:25:47.853+03	2021-05-21 20:25:47.872+03	
5eb17e7d-ae0b-a40e-708a-20ca5eb769cc	2021-05-21 20:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:26:07.853+03	2021-05-21 20:26:07.86+03	
17d0709a-55af-cbea-000b-27099ab6000c	2021-05-21 20:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:26:27.853+03	2021-05-21 20:26:27.861+03	
09be6bc2-215c-8043-a014-0c9271ed2b7e	2021-05-21 20:26:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:26:47.853+03	2021-05-21 20:26:47.863+03	
c1ab6371-b490-0bae-36ec-2cf7384fd66d	2021-05-21 20:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:27:08.853+03	2021-05-21 20:27:08.859+03	
452140de-658d-b97e-2aca-1c5d8308b891	2021-05-21 20:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:27:29.853+03	2021-05-21 20:27:29.86+03	
75216416-6451-f8e0-687a-88f823bde92b	2021-05-21 20:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:27:49.853+03	2021-05-21 20:27:49.859+03	
106793be-5f4c-a442-ce0c-0fce2b787f74	2021-05-21 20:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:28:09.853+03	2021-05-21 20:28:09.859+03	
8c8ec74b-dc8e-b2b8-6f36-62507410becc	2021-05-21 20:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:28:29.853+03	2021-05-21 20:28:29.86+03	
baf25321-8be5-2a26-7915-0e989725ec61	2021-05-21 20:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:28:50.853+03	2021-05-21 20:28:50.861+03	
f6d3bd15-6317-9240-d47f-d6ae942bd809	2021-05-21 20:29:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:29:11.854+03	2021-05-21 20:29:11.86+03	
31a0b0ef-a12a-5c12-ff48-cf036bc0818f	2021-05-21 20:29:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:29:32.853+03	2021-05-21 20:29:32.859+03	
b3ac8838-9aa7-2c24-3a40-0261d4551fbe	2021-05-21 20:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:29:53.853+03	2021-05-21 20:29:53.859+03	
8d4daf7b-5fbc-a753-5ce9-c0c609f99c01	2021-05-21 20:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:30:04.853+03	2021-05-21 20:30:04.873+03	
af382c0a-3419-5a00-31aa-e71a02b7a7a6	2021-05-21 20:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:30:25.852+03	2021-05-21 20:30:25.859+03	
cae0258f-243c-c43c-83f8-95adada3cf98	2021-05-21 20:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:30:45.853+03	2021-05-21 20:30:45.859+03	
3417170c-5f43-4b25-60ec-2a5690926ca4	2021-05-21 20:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:31:05.853+03	2021-05-21 20:31:05.86+03	
dea34e2c-f472-e532-63b8-652b7dc19215	2021-05-21 20:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:31:25.853+03	2021-05-21 20:31:25.86+03	
c5839e80-f445-7616-333c-18cfe97493dc	2021-05-21 20:31:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:31:46.853+03	2021-05-21 20:31:46.86+03	
89ff574a-66bd-ad26-2798-95fd319a6f3f	2021-05-21 20:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:32:07.852+03	2021-05-21 20:32:07.86+03	
0d93997a-4cf7-fc16-ecf8-0281f9cc62e5	2021-05-21 20:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:32:27.853+03	2021-05-21 20:32:27.861+03	
465de0c7-7c44-1a33-8f53-c78a98fc69f1	2021-05-21 20:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:32:47.853+03	2021-05-21 20:32:47.86+03	
535e0531-a89f-81f1-3145-47f49d743e36	2021-05-21 20:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:33:08.853+03	2021-05-21 20:33:08.86+03	
7c7fae02-c68e-aebf-eb73-ac3294cb4cef	2021-05-21 20:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:33:29.853+03	2021-05-21 20:33:29.859+03	
a6cb7bfa-7466-d0cb-0968-75a5817df1c2	2021-05-21 20:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:33:49.853+03	2021-05-21 20:33:49.858+03	
ec842fb1-ef23-c690-693e-02b0517dfe5a	2021-05-21 20:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:34:10.853+03	2021-05-21 20:34:10.867+03	
a2677b36-fcf4-3169-b104-7bffd7dd9a56	2021-05-21 20:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:34:30.853+03	2021-05-21 20:34:30.859+03	
a363403c-541f-2731-d213-c74a068177b9	2021-05-21 20:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:34:50.853+03	2021-05-21 20:34:50.859+03	
db169e55-cf70-cb3d-0e49-e8a859a4c0f7	2021-05-21 20:35:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:35:11.853+03	2021-05-21 20:35:11.86+03	
3863a77b-f945-8686-9023-371fa8efc383	2021-05-21 20:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:35:32.853+03	2021-05-21 20:35:32.861+03	
25617f1f-c571-f786-87a9-48fc05fe9fb6	2021-05-21 20:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:35:53.853+03	2021-05-21 20:35:53.859+03	
2e3ab49d-b2a5-695e-c751-9be584ddac3f	2021-05-21 20:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:36:13.853+03	2021-05-21 20:36:13.86+03	
bb6e3857-1994-4392-45e0-88dac5a973a5	2021-05-21 20:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:36:33.853+03	2021-05-21 20:36:33.87+03	
a2fabd0a-c75f-0ec2-ec72-7333f31fa8b5	2021-05-21 20:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:36:55.853+03	2021-05-21 20:36:55.86+03	
83ee306f-bb4b-81ac-5105-4cb5b67db489	2021-05-21 20:37:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:37:26.852+03	2021-05-21 20:37:26.858+03	
22245675-67e6-9eff-664d-7515c32a9a26	2021-05-21 20:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:37:46.853+03	2021-05-21 20:37:46.86+03	
e2431e76-2890-0c77-a6cd-2f5a668f6a3c	2021-05-21 20:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:38:07.853+03	2021-05-21 20:38:07.861+03	
579dd229-4c69-7d3d-b144-5208d610371c	2021-05-21 20:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:38:27.853+03	2021-05-21 20:38:27.862+03	
97ed48e4-c7ef-7797-f7ac-09b751e1f2cb	2021-05-21 20:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:38:49.852+03	2021-05-21 20:38:49.872+03	
d48d1d9e-5783-c8f2-c0d3-506ed6b9d70d	2021-05-21 20:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:39:09.853+03	2021-05-21 20:39:09.859+03	
87e3e92e-6962-44d8-9087-dab5cd07a69d	2021-05-21 20:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:39:30.852+03	2021-05-21 20:39:30.882+03	
68943348-4255-13b5-833d-82b5a1167952	2021-05-21 20:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:39:50.853+03	2021-05-21 20:39:50.86+03	
77b06a92-16c5-f4b1-cf39-a804ecf74ae0	2021-05-21 20:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:40:11.852+03	2021-05-21 20:40:11.863+03	
eac69f46-d8bc-cc31-d51e-84af83112591	2021-05-21 20:40:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:40:31.853+03	2021-05-21 20:40:31.859+03	
4a88e123-438d-285a-5788-b23731de86d7	2021-05-21 20:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:40:52.853+03	2021-05-21 20:40:52.859+03	
9114b17c-742c-af2d-4336-a33a2cbcc5b8	2021-05-21 20:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:41:12.853+03	2021-05-21 20:41:12.859+03	
e703cd0b-10f7-d6b5-64b2-7056f3561ee7	2021-05-21 20:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:41:32.853+03	2021-05-21 20:41:32.86+03	
7b775f10-f20b-91a4-d775-0d98aec5082a	2021-05-21 20:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:41:53.853+03	2021-05-21 20:41:53.86+03	
31ead3b0-2aaf-ad38-78c4-9af0dc3df217	2021-05-21 20:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:21:08.853+03	2021-05-21 20:21:08.868+03	
b606e989-240e-2e9a-181c-760d567eca80	2021-05-21 20:21:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:21:28.853+03	2021-05-21 20:21:28.86+03	
e6e25268-b702-8d7c-c98e-22c4b0aad22b	2021-05-21 20:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:21:48.853+03	2021-05-21 20:21:48.859+03	
99727d9a-9fbd-57e3-ab67-bac82394f746	2021-05-21 20:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:22:08.853+03	2021-05-21 20:22:08.859+03	
cf8305ca-c6f1-1e41-0ee0-e1b8deff9293	2021-05-21 20:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:22:29.852+03	2021-05-21 20:22:29.859+03	
95590ce1-2297-1e38-2b31-d863d43f7f93	2021-05-21 20:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:22:50.853+03	2021-05-21 20:22:50.86+03	
a0f22219-b549-9613-1688-40f1cd9d24bb	2021-05-21 20:23:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:23:11.854+03	2021-05-21 20:23:11.862+03	
ac718f5a-cc34-015d-5c74-17ad4447daa2	2021-05-21 20:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:23:32.853+03	2021-05-21 20:23:32.862+03	
3672bd0d-1354-466d-9b50-8d090bdb4e46	2021-05-21 20:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:23:53.852+03	2021-05-21 20:23:53.859+03	
6171d91f-3a5e-3c93-0771-00217264e190	2021-05-21 20:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:24:14.853+03	2021-05-21 20:24:14.859+03	
2d637315-9fa1-5e58-2ba3-0171ff033bfd	2021-05-21 20:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:24:34.853+03	2021-05-21 20:24:34.859+03	
24224a91-d34f-bb59-5acb-eb3ecb60b19f	2021-05-21 20:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:24:55.853+03	2021-05-21 20:24:55.861+03	
93f0684c-adec-7ead-c763-c84c18ad1671	2021-05-21 20:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:25:15.853+03	2021-05-21 20:25:15.865+03	
dd6407d9-a9ba-4853-47c6-3adc62e0b44c	2021-05-21 20:25:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:25:36.853+03	2021-05-21 20:25:36.872+03	
de0dd092-c066-2401-c90b-c45a36812d97	2021-05-21 20:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:25:57.853+03	2021-05-21 20:25:57.861+03	
254a3f90-080d-d068-13a5-f5d6df6422a3	2021-05-21 20:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:26:17.853+03	2021-05-21 20:26:17.859+03	
b6c91580-d3af-5e33-f1ed-638ac421f1b4	2021-05-21 20:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:26:37.853+03	2021-05-21 20:26:37.862+03	
9c8a7800-530c-6afa-9f17-ed01edd7df9c	2021-05-21 20:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:26:57.853+03	2021-05-21 20:26:57.861+03	
2a83c10c-3d65-b8a0-85c0-5e10eafde055	2021-05-21 20:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:27:19.852+03	2021-05-21 20:27:19.859+03	
2dea4ca4-6433-27f2-2bd6-7125fa64081c	2021-05-21 20:27:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:27:39.853+03	2021-05-21 20:27:39.861+03	
38dcd21d-6c88-be37-b6ab-d3f6235839c1	2021-05-21 20:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:27:59.853+03	2021-05-21 20:27:59.86+03	
147532b6-a628-bdb3-a6b1-fc9117bc3200	2021-05-21 20:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:28:19.853+03	2021-05-21 20:28:19.861+03	
d5d10f9f-17eb-da96-ebda-47caece1efb7	2021-05-21 20:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:28:39.853+03	2021-05-21 20:28:39.859+03	
3638e6e1-1583-49f0-5c65-7ad0756f3e87	2021-05-21 20:29:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:29:01.853+03	2021-05-21 20:29:01.864+03	
a377d83b-4e39-200c-627f-f39e9767f1ce	2021-05-21 20:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:29:22.853+03	2021-05-21 20:29:22.859+03	
5e66db3b-b2f7-59fb-d9fe-36b194c1e668	2021-05-21 20:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:29:42.853+03	2021-05-21 20:29:42.859+03	
fbac15cf-a48f-6108-06c5-5a2b96d20fac	2021-05-21 20:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 20:30:00.853+03	2021-05-21 20:30:00.857+03	ERROR
3787e4bf-8df4-076c-a973-418411f5608d	2021-05-21 20:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:30:14.853+03	2021-05-21 20:30:14.858+03	
9ecc4530-d88c-84cc-4062-98550272eb5c	2021-05-21 20:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:30:35.853+03	2021-05-21 20:30:35.86+03	
d076afb7-6372-ad9c-ba85-0c09812e43c6	2021-05-21 20:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:30:55.853+03	2021-05-21 20:30:55.859+03	
f4d8d2ce-3503-f943-45f7-dda5cb0392d5	2021-05-21 20:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:31:15.853+03	2021-05-21 20:31:15.86+03	
6e9e0165-c3b9-8206-75f5-ddd01fc7eecb	2021-05-21 20:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:31:35.853+03	2021-05-21 20:31:35.859+03	
c26ab82c-2232-69fe-fbe2-32df606856d3	2021-05-21 20:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:31:57.852+03	2021-05-21 20:31:57.859+03	
86f61535-5c5b-7fd0-27f9-b7fe6d3190b4	2021-05-21 20:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:32:17.852+03	2021-05-21 20:32:17.871+03	
6d52afbf-049b-d02c-050f-96074585717f	2021-05-21 20:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:32:37.853+03	2021-05-21 20:32:37.873+03	
1fbe1df2-d2b1-1ff1-b87b-ee8912bda6b5	2021-05-21 20:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:32:58.852+03	2021-05-21 20:32:58.86+03	
a66d707e-30cf-a334-935a-b75fa9b9c727	2021-05-21 20:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:33:19.852+03	2021-05-21 20:33:19.86+03	
6c7fe971-2bc3-0753-492b-e432870334c7	2021-05-21 20:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:33:39.853+03	2021-05-21 20:33:39.858+03	
08e2f0dd-4989-8562-3dcb-5445afc3e569	2021-05-21 20:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:34:00.852+03	2021-05-21 20:34:00.858+03	
b63d79ea-d4fb-5fdc-aaaa-78c5f4f8c252	2021-05-21 20:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:34:20.853+03	2021-05-21 20:34:20.86+03	
6247b259-946a-6345-1eb9-4a410fa3574c	2021-05-21 20:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:34:40.853+03	2021-05-21 20:34:40.86+03	
49e0660a-1801-adcc-7c4f-b034d2477850	2021-05-21 20:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:35:00.853+03	2021-05-21 20:35:00.862+03	
e8989b0f-c95a-cf41-9270-677be9276450	2021-05-21 20:35:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:35:21.854+03	2021-05-21 20:35:21.86+03	
b7c9c837-7ef1-efde-ea31-cf73470479bb	2021-05-21 20:35:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:35:43.853+03	2021-05-21 20:35:43.865+03	
66a7b11a-b40e-b11d-ffdd-fdd861e5e0e9	2021-05-21 20:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:36:03.853+03	2021-05-21 20:36:03.86+03	
c0fc3398-758d-efaa-cc19-a697230b65f8	2021-05-21 20:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:36:23.853+03	2021-05-21 20:36:23.859+03	
9900f18c-7762-211a-c717-cc35822908c3	2021-05-21 20:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:36:44.853+03	2021-05-21 20:36:44.861+03	
cc908b4c-55eb-218e-9455-a95bc881df77	2021-05-21 20:37:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:37:06.852+03	2021-05-21 20:37:06.867+03	
2aa0ee5c-68c0-5a51-a161-06c26d67dc5b	2021-05-21 20:37:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:37:16.852+03	2021-05-21 20:37:16.859+03	
81e30e36-e9da-b31d-5cf4-ff6a165264c0	2021-05-21 20:37:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:37:36.853+03	2021-05-21 20:37:36.86+03	
05ea0d1b-38aa-b476-e92a-caffbfd9df87	2021-05-21 20:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:37:57.853+03	2021-05-21 20:37:57.86+03	
ddc30acb-b71b-2412-dea0-e2ee57f7e7e5	2021-05-21 20:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:38:17.853+03	2021-05-21 20:38:17.86+03	
b273f1e7-f954-d276-21d3-c44bb51f3a25	2021-05-21 20:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:38:38.853+03	2021-05-21 20:38:38.86+03	
24a082cf-8b52-b797-75b5-2375236d93ae	2021-05-21 20:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:38:59.852+03	2021-05-21 20:38:59.858+03	
aa51140b-418c-0bcf-06cb-eecc0e406fd6	2021-05-21 20:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:39:19.853+03	2021-05-21 20:39:19.86+03	
78896339-1151-854e-3cde-4d2e5dcd1e21	2021-05-21 20:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:39:40.853+03	2021-05-21 20:39:40.86+03	
2d478d8a-9bea-6066-3759-5f70734769cf	2021-05-21 20:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:40:00.853+03	2021-05-21 20:40:00.86+03	
92f27d1b-10d5-86e6-b4c6-c0170b647eb2	2021-05-21 20:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 20:40:00.853+03	2021-05-21 20:40:00.871+03	ERROR
c4cdc117-04aa-9a2a-cccc-8696fefead9a	2021-05-21 20:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:40:21.852+03	2021-05-21 20:40:21.859+03	
e1e3f60a-a115-25b3-6484-f6bb993007a0	2021-05-21 20:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:40:42.852+03	2021-05-21 20:40:42.859+03	
11a512f0-ef76-f6be-fec1-1d39f870797a	2021-05-21 20:41:02.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:41:02.853+03	2021-05-21 20:41:02.868+03	
bc81e397-ae5b-4242-e566-ccc68db6a8de	2021-05-21 20:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:41:22.853+03	2021-05-21 20:41:22.86+03	
8ca32f2f-26a6-d9d2-6bb9-0a653fad87db	2021-05-21 20:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:41:42.853+03	2021-05-21 20:41:42.86+03	
d9298a3d-6728-4b60-132a-6ad75d01878d	2021-05-21 20:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:42:04.853+03	2021-05-21 20:42:04.859+03	
5242b947-28af-a9fd-33a8-c42cfa95e448	2021-05-21 20:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:42:24.853+03	2021-05-21 20:42:24.859+03	
61620250-6e6b-f933-c7cf-b2b8d61dbbeb	2021-05-21 20:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:42:45.853+03	2021-05-21 20:42:45.861+03	
754af826-ecaa-fbab-2722-bfb8ddfe743f	2021-05-21 20:43:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:43:06.853+03	2021-05-21 20:43:06.861+03	
a0fe1901-5399-1670-0639-cc1e2215f2f3	2021-05-21 20:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:43:27.853+03	2021-05-21 20:43:27.861+03	
4f729b63-cef4-681e-4326-fa2c17518f2a	2021-05-21 20:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:43:49.853+03	2021-05-21 20:43:49.859+03	
93a08872-8ac9-f009-9093-15a3dc46e972	2021-05-21 20:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:44:09.853+03	2021-05-21 20:44:09.859+03	
08beadde-25ea-11c7-fbca-dd18ebcefcba	2021-05-21 20:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:44:30.853+03	2021-05-21 20:44:30.882+03	
7a302235-a22e-3bfd-4304-a986c3f169a6	2021-05-21 20:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:44:52.853+03	2021-05-21 20:44:52.86+03	
fd1a7d6b-bb57-c63f-8e89-edac4885afba	2021-05-21 20:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:45:13.853+03	2021-05-21 20:45:13.86+03	
1c649281-988d-3874-6ce5-3a38d8c40543	2021-05-21 20:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:45:33.853+03	2021-05-21 20:45:33.86+03	
f5da5476-c776-27d5-16dc-1ea1d59c7923	2021-05-21 20:45:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:45:54.853+03	2021-05-21 20:45:54.859+03	
bdbd220d-906e-11ed-6c4b-fb99dc3bb2de	2021-05-21 20:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:46:14.853+03	2021-05-21 20:46:14.86+03	
97ee7bee-5464-a04a-4748-3f4fd3ca71b8	2021-05-21 20:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:46:35.852+03	2021-05-21 20:46:35.859+03	
bc294a62-0674-bb90-87ad-a578e4bcafb9	2021-05-21 20:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:46:55.853+03	2021-05-21 20:46:55.86+03	
986f7f40-a1c8-01ce-efae-7094c93e0421	2021-05-21 20:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:47:15.853+03	2021-05-21 20:47:15.862+03	
615acafd-6ff9-b5d4-0150-6cb9d0e31a1d	2021-05-21 20:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:47:35.853+03	2021-05-21 20:47:35.86+03	
2c6ebe94-0c73-56aa-623d-538780b87458	2021-05-21 20:47:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:47:56.854+03	2021-05-21 20:47:56.86+03	
88df8652-61d6-9c5a-7a40-115214750bac	2021-05-21 20:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:48:17.852+03	2021-05-21 20:48:17.86+03	
8b179c37-86e9-d2e0-6269-c2b71e5bc7c8	2021-05-21 20:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:48:37.853+03	2021-05-21 20:48:37.859+03	
b8854f57-ba82-5dcf-ffcc-82f27131bbf3	2021-05-21 20:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:48:57.853+03	2021-05-21 20:48:57.861+03	
2576975b-24ff-56fc-d7ca-b706da9d0426	2021-05-21 20:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:49:18.852+03	2021-05-21 20:49:18.859+03	
43d87a25-9277-07fa-c0a1-7de41adfd209	2021-05-21 20:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:49:38.852+03	2021-05-21 20:49:38.859+03	
5394c4ba-8798-0c67-3bbb-a58339801b8e	2021-05-21 20:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:49:58.852+03	2021-05-21 20:49:58.859+03	
b7a98af5-79a0-84d4-e199-dd1d8f68630c	2021-05-21 20:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:50:08.852+03	2021-05-21 20:50:08.859+03	
784e8385-4e09-70df-a5e5-b6d712791a64	2021-05-21 20:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:50:28.853+03	2021-05-21 20:50:28.861+03	
1edb331b-e974-fc9f-b697-e8e3ff6a661e	2021-05-21 20:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:50:48.853+03	2021-05-21 20:50:48.859+03	
70a586d4-9b69-bf75-d8af-122bedfe396b	2021-05-21 20:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:51:09.853+03	2021-05-21 20:51:09.87+03	
5f33e924-53c9-c4fd-ff65-c2a4071f4f7b	2021-05-21 20:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:51:29.853+03	2021-05-21 20:51:29.858+03	
5bbbba84-8eae-0fab-3a55-6f8611bc0dc5	2021-05-21 20:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:51:50.853+03	2021-05-21 20:51:50.877+03	
636b099a-9cfc-706d-2e5d-78627f224f22	2021-05-21 20:52:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:52:11.853+03	2021-05-21 20:52:11.859+03	
042a5a31-df53-fc82-d959-830bd0b78c7c	2021-05-21 20:52:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:52:31.854+03	2021-05-21 20:52:31.862+03	
d64ecf4d-78a2-3383-03a7-d10d3095bcc2	2021-05-21 20:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:52:52.853+03	2021-05-21 20:52:52.917+03	
c28e818b-2f00-e540-ff9c-5c92b4e52634	2021-05-21 20:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:53:13.852+03	2021-05-21 20:53:13.861+03	
6ce442c3-edf3-ded2-4b83-1fa916f151fc	2021-05-21 20:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:53:33.853+03	2021-05-21 20:53:33.869+03	
c8465f2c-9841-b39f-58b4-e53abea06951	2021-05-21 20:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:53:53.853+03	2021-05-21 20:53:53.867+03	
79cec467-a4c4-080a-1238-b7f94c4e0bb7	2021-05-21 20:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:54:14.853+03	2021-05-21 20:54:14.86+03	
d640b74d-e7a7-ed12-0a69-e2124d3cddfe	2021-05-21 20:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:54:35.853+03	2021-05-21 20:54:35.86+03	
eaeb6809-b82f-c479-0c13-69eb569cafcf	2021-05-21 20:54:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:54:56.852+03	2021-05-21 20:54:56.859+03	
5fc24022-f5ce-819c-2d2d-fff3c0a6de53	2021-05-21 20:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:55:17.853+03	2021-05-21 20:55:17.868+03	
a161b16c-3cb7-4898-f5de-6651cfa2034d	2021-05-21 20:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:55:38.853+03	2021-05-21 20:55:38.933+03	
378e1ca4-f9e9-1fb0-672b-8805bd0cdb7f	2021-05-21 20:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:55:58.853+03	2021-05-21 20:55:58.868+03	
cfceafe8-f80f-0098-3ba4-92d2d52d9786	2021-05-21 20:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:56:19.852+03	2021-05-21 20:56:19.859+03	
4ceeebb1-56a0-3b56-3728-25ac838927ca	2021-05-21 20:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:56:39.853+03	2021-05-21 20:56:39.859+03	
522b7817-cf1c-9e04-3955-d1a37b5ef6a0	2021-05-21 20:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:57:00.853+03	2021-05-21 20:57:00.87+03	
4648cf1c-d367-f2d7-a21c-4bf20748163c	2021-05-21 20:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:57:20.853+03	2021-05-21 20:57:20.86+03	
cc485123-f989-3183-2090-f6686e25bb0b	2021-05-21 20:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:57:40.853+03	2021-05-21 20:57:40.859+03	
68f9b596-e14b-5f1e-b7f2-74cac593693f	2021-05-21 20:58:01.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:58:01.854+03	2021-05-21 20:58:01.867+03	
85fa59c8-39d7-1f3c-6dc5-c14d41b84324	2021-05-21 20:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:58:22.853+03	2021-05-21 20:58:22.868+03	
fd8b59f1-ece6-57e8-824b-d361b6fa549e	2021-05-21 20:58:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:58:43.853+03	2021-05-21 20:58:43.872+03	
3ec8816e-8bb0-45f8-4a20-18c25bcaa1bd	2021-05-21 20:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:59:03.853+03	2021-05-21 20:59:03.86+03	
a4f0f21f-ecf3-d64b-1509-60de07e2dcc9	2021-05-21 20:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:59:23.853+03	2021-05-21 20:59:23.86+03	
745b63e7-2aff-ab04-a1eb-b31fc0b4c7f5	2021-05-21 20:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:59:43.853+03	2021-05-21 20:59:43.865+03	
630f0b8e-8dee-503f-b5ed-23384d57bb77	2021-05-21 21:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 21:00:00.853+03	2021-05-21 21:00:00.858+03	ERROR
66583b6f-f7c4-f6a7-72cc-ca8bc694f33a	2021-05-21 21:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:00:13.853+03	2021-05-21 21:00:13.861+03	
031e2335-9719-425a-8f83-25bf6ce79a2c	2021-05-21 21:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:00:33.853+03	2021-05-21 21:00:33.866+03	
ed752ed9-6f3d-8186-932d-4c140ff148ee	2021-05-21 21:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:00:54.853+03	2021-05-21 21:00:54.86+03	
d90afde8-5b6e-0623-42af-176bae5befba	2021-05-21 21:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:01:15.853+03	2021-05-21 21:01:15.859+03	
b8a8c3b3-6c12-c822-c945-691669f9786d	2021-05-21 21:01:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:01:36.853+03	2021-05-21 21:01:36.868+03	
05e6e131-232f-3c5c-b50f-7d8ed74b0310	2021-05-21 21:01:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:01:57.853+03	2021-05-21 21:01:57.86+03	
c2204ca5-d4b8-ee66-a955-517decd74348	2021-05-21 21:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:02:17.853+03	2021-05-21 21:02:17.859+03	
8f12efcf-dce7-5a40-56c2-94c8e10b99ea	2021-05-21 21:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:02:37.853+03	2021-05-21 21:02:37.859+03	
e1687198-8c23-b38b-a4ef-b40ffc0dcc7c	2021-05-21 21:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:02:57.853+03	2021-05-21 21:02:57.859+03	
048ab627-c384-daff-d487-63a907e7ca03	2021-05-21 20:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:42:14.853+03	2021-05-21 20:42:14.859+03	
1832f54c-7d18-1597-22f1-7685e1ef4c7e	2021-05-21 20:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:42:35.853+03	2021-05-21 20:42:35.86+03	
5c929a58-7999-c63c-1ea8-aba4a378d4d2	2021-05-21 20:42:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:42:56.853+03	2021-05-21 20:42:56.86+03	
6d430d50-a9a5-fb1b-2897-86bbffdd59f5	2021-05-21 20:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:43:17.853+03	2021-05-21 20:43:17.859+03	
32e05ada-ab88-4be8-9e4a-c87ade61d55c	2021-05-21 20:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:43:38.853+03	2021-05-21 20:43:38.86+03	
fe845d20-8c56-cdca-c596-fe4c5b05ff71	2021-05-21 20:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:43:59.853+03	2021-05-21 20:43:59.867+03	
b867805b-c86c-3e82-8397-967aa34ae11f	2021-05-21 20:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:44:20.852+03	2021-05-21 20:44:20.86+03	
b652e73d-a607-5893-134a-d7ae4467daa2	2021-05-21 20:44:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:44:41.854+03	2021-05-21 20:44:41.862+03	
9d913ef9-44f1-d2ff-1d78-f8ad339f226c	2021-05-21 20:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:45:03.853+03	2021-05-21 20:45:03.86+03	
1650faec-82a3-010b-167f-6f6c257f4e79	2021-05-21 20:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:45:23.853+03	2021-05-21 20:45:23.86+03	
1a69bca3-5574-437b-6199-27c5b8431c1e	2021-05-21 20:45:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:45:44.853+03	2021-05-21 20:45:44.86+03	
273e4531-16d0-8936-2906-30483997d9e8	2021-05-21 20:46:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:46:04.853+03	2021-05-21 20:46:04.86+03	
a9a9901d-e709-b1d7-2901-21a77f848f31	2021-05-21 20:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:46:24.853+03	2021-05-21 20:46:24.859+03	
045f9b3d-6237-479b-52a1-588228c5731c	2021-05-21 20:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:46:45.853+03	2021-05-21 20:46:45.859+03	
40dd05c6-ed17-3c16-c240-7b96070244e9	2021-05-21 20:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:47:05.853+03	2021-05-21 20:47:05.863+03	
5c7abb15-dc5a-c0b8-efc4-bcd7c85b97b5	2021-05-21 20:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:47:25.853+03	2021-05-21 20:47:25.871+03	
36b88920-9f33-2da4-4c8c-67b1e603453c	2021-05-21 20:47:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:47:46.852+03	2021-05-21 20:47:46.868+03	
50e6869d-9aec-7a82-1d2f-cf02ca04b2dc	2021-05-21 20:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:48:07.852+03	2021-05-21 20:48:07.859+03	
fbf9c21a-9656-55b6-f761-acd6057bcb69	2021-05-21 20:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:48:27.853+03	2021-05-21 20:48:27.861+03	
b0f2eaa7-be54-fec0-3816-2b37fead64c6	2021-05-21 20:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:48:47.853+03	2021-05-21 20:48:47.86+03	
f8c77b6b-52da-842b-928d-b3d45c26a5d2	2021-05-21 20:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:49:07.853+03	2021-05-21 20:49:07.86+03	
dcedc3cc-9d67-df34-e744-8c194dea8d77	2021-05-21 20:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:49:28.852+03	2021-05-21 20:49:28.86+03	
d5e06cdb-8ed3-3eca-08c8-66fabfed07eb	2021-05-21 20:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:49:48.852+03	2021-05-21 20:49:48.858+03	
91b59435-d1d2-5942-115d-37ba8305bdd7	2021-05-21 20:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 20:50:00.853+03	2021-05-21 20:50:00.858+03	ERROR
557daf25-9714-c409-aa15-a0b65a25519b	2021-05-21 20:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:50:18.853+03	2021-05-21 20:50:18.859+03	
aa797222-20fd-dc23-7cfa-1eef8041f420	2021-05-21 20:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:50:38.853+03	2021-05-21 20:50:38.863+03	
350513ea-7cab-e96e-f8b5-7f0b9601b411	2021-05-21 20:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:50:59.853+03	2021-05-21 20:50:59.859+03	
4407a348-4a86-3928-a952-e26b2cc51436	2021-05-21 20:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:51:19.853+03	2021-05-21 20:51:19.862+03	
79c77dc3-0736-94bb-78e9-fdc539d7bb61	2021-05-21 20:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:51:39.853+03	2021-05-21 20:51:39.861+03	
2b1718bd-5f42-4a7f-0235-7b11b6d15914	2021-05-21 20:52:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:52:01.853+03	2021-05-21 20:52:01.859+03	
5eb23845-d6e1-314f-dee4-33e0373356c2	2021-05-21 20:52:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:52:21.853+03	2021-05-21 20:52:21.869+03	
2060bd5f-ea2a-de51-77f4-78d5dd791664	2021-05-21 20:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:52:42.852+03	2021-05-21 20:52:42.859+03	
1d7ecf0f-c684-a382-3fd7-e4ff7c30ec76	2021-05-21 20:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:53:02.853+03	2021-05-21 20:53:02.859+03	
8ed30f6e-b36f-a7c9-d36a-cc5ddc124fe7	2021-05-21 20:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:53:23.852+03	2021-05-21 20:53:23.859+03	
c3001b9b-9cb3-b164-b4e6-21d336c8a194	2021-05-21 20:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:53:43.853+03	2021-05-21 20:53:43.86+03	
aa486591-debe-4fa5-5021-e756f2654968	2021-05-21 20:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:54:04.852+03	2021-05-21 20:54:04.861+03	
55211113-e2f3-9ca1-9e90-dc65736777b6	2021-05-21 20:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:54:25.853+03	2021-05-21 20:54:25.861+03	
a949dbfa-746a-2abc-bfc2-60b23e394dbc	2021-05-21 20:54:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:54:45.853+03	2021-05-21 20:54:45.863+03	
a81831e3-8226-8bba-e915-a91780bfb344	2021-05-21 20:55:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:55:06.853+03	2021-05-21 20:55:06.861+03	
ae4e94d5-19db-c5e5-7e9a-04cfa5416a37	2021-05-21 20:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:55:28.853+03	2021-05-21 20:55:28.859+03	
e0007b3a-9861-eb2e-2642-55e47f9a97bb	2021-05-21 20:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:55:48.853+03	2021-05-21 20:55:48.869+03	
033ba7ec-88d5-a5d8-8a43-d0c5a7445d6c	2021-05-21 20:56:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:56:08.853+03	2021-05-21 20:56:08.861+03	
95e52211-6647-1bb1-2816-6b946bab05b0	2021-05-21 20:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:56:29.853+03	2021-05-21 20:56:29.859+03	
6255652f-3641-a328-9726-39cb3e939889	2021-05-21 20:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:56:49.853+03	2021-05-21 20:56:49.86+03	
95682c68-5aeb-6b46-e279-8b9df8f5489b	2021-05-21 20:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:57:10.853+03	2021-05-21 20:57:10.86+03	
58ccf756-ceab-dc7c-2593-1c79871084d7	2021-05-21 20:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:57:30.853+03	2021-05-21 20:57:30.86+03	
6757a83e-c8ee-e3dd-2407-ed95d119e91a	2021-05-21 20:57:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:57:51.852+03	2021-05-21 20:57:51.859+03	
d30c08dc-cdee-927b-c0e1-d075a2ef2a58	2021-05-21 20:58:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:58:12.852+03	2021-05-21 20:58:12.859+03	
d41936d9-4a32-643e-65bd-5628255b42be	2021-05-21 20:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:58:33.853+03	2021-05-21 20:58:33.859+03	
d4c2f0ae-d802-0f96-5255-a05f7b62c89c	2021-05-21 20:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:58:53.853+03	2021-05-21 20:58:53.859+03	
29f52675-a6e5-4a82-0fb7-724548bd6ed4	2021-05-21 20:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:59:13.853+03	2021-05-21 20:59:13.859+03	
83a5a628-1001-0a0a-0df4-9821296b2d00	2021-05-21 20:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:59:33.853+03	2021-05-21 20:59:33.871+03	
35b88327-055f-f572-345c-1410d58e99a7	2021-05-21 20:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 20:59:53.853+03	2021-05-21 20:59:53.86+03	
789cf58d-46da-2c5f-68de-4d532be32ff5	2021-05-21 21:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:00:03.853+03	2021-05-21 21:00:03.861+03	
895b43d3-3ecb-6922-786b-86c1c48b1553	2021-05-21 21:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:00:23.853+03	2021-05-21 21:00:23.861+03	
4d6bf7d3-588a-8ade-3762-e96a1fcb4128	2021-05-21 21:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:00:43.853+03	2021-05-21 21:00:43.863+03	
0eee92b3-0f85-55b4-149d-2cd53beeff8d	2021-05-21 21:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:01:04.853+03	2021-05-21 21:01:04.86+03	
1470dcba-2033-e852-322f-2f1508bb2edd	2021-05-21 21:01:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:01:26.852+03	2021-05-21 21:01:26.859+03	
4f616012-02fa-8e6a-0609-8f2b0dea8aaf	2021-05-21 21:01:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:01:47.853+03	2021-05-21 21:01:47.863+03	
ad93caae-fac0-9d44-dafb-8b302482c212	2021-05-21 21:02:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:02:07.853+03	2021-05-21 21:02:07.861+03	
7407a026-9e96-26db-eb51-4067d3580c07	2021-05-21 21:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:02:27.853+03	2021-05-21 21:02:27.861+03	
4b51a3b5-67a2-6575-3dad-d932a7d947c7	2021-05-21 21:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:02:47.853+03	2021-05-21 21:02:47.859+03	
a6ac8ef7-490a-62cd-dd9d-b4a2a0744c7b	2021-05-21 21:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:03:07.853+03	2021-05-21 21:03:07.86+03	
c50e13c1-56d6-1073-3733-5d07d48a6991	2021-05-21 21:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:03:17.853+03	2021-05-21 21:03:17.861+03	
dbd09681-5853-f17b-1971-ec834260094c	2021-05-21 22:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:17:33.853+03	2021-05-21 22:17:33.86+03	
691d1289-f9b1-3741-2d2a-5e6f12f2cfe0	2021-05-21 21:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:03:38.853+03	2021-05-21 21:03:38.86+03	
97b9e685-cda8-4666-04df-3a9f69a91de6	2021-05-21 21:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:03:59.853+03	2021-05-21 21:03:59.86+03	
c90d66ab-b963-83fa-b3ec-e0df7cbceb38	2021-05-21 21:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:04:20.853+03	2021-05-21 21:04:20.86+03	
3ecf2bea-9cb1-aac1-a40d-b62837dfc564	2021-05-21 21:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:04:40.853+03	2021-05-21 21:04:40.859+03	
c07a64b0-2b0a-8f6a-14a8-a5a291fd35a7	2021-05-21 21:05:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:05:01.853+03	2021-05-21 21:05:01.86+03	
9f08bd88-6c93-4062-0e32-50c915f88d5c	2021-05-21 21:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:05:22.852+03	2021-05-21 21:05:22.859+03	
3c53704a-5880-e3f2-8551-89a34aaaf0bc	2021-05-21 21:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:05:42.853+03	2021-05-21 21:05:42.86+03	
b32bf1c1-89e2-db67-7c2d-757d539470c6	2021-05-21 21:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:06:02.853+03	2021-05-21 21:06:02.859+03	
08ae90bd-e469-9829-9a2f-03c402a6c3ca	2021-05-21 21:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:06:22.853+03	2021-05-21 21:06:22.862+03	
d43001e7-e636-ba7a-b179-ce72d0a75782	2021-05-21 21:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:06:43.853+03	2021-05-21 21:06:43.864+03	
db3a35a4-8dfe-894c-7c2b-7d72ec017bc5	2021-05-21 21:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:07:04.853+03	2021-05-21 21:07:04.859+03	
5c315e70-d30b-2b07-dcc3-d6b931c90f49	2021-05-21 21:07:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:07:24.853+03	2021-05-21 21:07:24.864+03	
5683d773-f900-f611-28ca-2ea87cea2be3	2021-05-21 21:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:07:44.853+03	2021-05-21 21:07:44.859+03	
7291d141-3983-fb03-9317-504b86989d47	2021-05-21 21:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:08:04.853+03	2021-05-21 21:08:04.86+03	
059b1d41-8b18-e69b-e821-8ab394cd873a	2021-05-21 21:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:08:25.853+03	2021-05-21 21:08:25.883+03	
112aa8ca-e777-7052-40df-7fd173d64357	2021-05-21 21:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:08:45.853+03	2021-05-21 21:08:45.859+03	
e4eb879d-d611-9c45-df2b-72cf27947cf6	2021-05-21 21:09:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:09:05.853+03	2021-05-21 21:09:05.862+03	
4ef9cabe-9e37-129d-c9a7-f5ce02575e64	2021-05-21 21:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:09:25.853+03	2021-05-21 21:09:25.861+03	
e59b11b7-c0a4-c165-1704-c7fe011b024c	2021-05-21 21:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:09:45.853+03	2021-05-21 21:09:45.861+03	
6c2d9b59-ae02-9bd5-bfaa-38c884eec6b7	2021-05-21 21:10:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 21:10:00.853+03	2021-05-21 21:10:00.871+03	ERROR
77265e05-fa68-ae1d-5e44-b33161b80635	2021-05-21 21:10:15.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:10:15.859+03	2021-05-21 21:10:15.867+03	
855d3fe4-c756-bcfd-4aa4-9543832fa15d	2021-05-21 21:10:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:10:36.853+03	2021-05-21 21:10:36.859+03	
62664040-f59e-9213-b437-37956393d179	2021-05-21 21:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:10:57.853+03	2021-05-21 21:10:57.86+03	
487aeaac-e1fa-3a83-7ea0-b9234aac4f0e	2021-05-21 21:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:11:17.853+03	2021-05-21 21:11:17.859+03	
a391ff31-0cb3-18d4-7562-60f2ff0c1aec	2021-05-21 21:11:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:11:38.853+03	2021-05-21 21:11:38.859+03	
4dedb2f0-4884-d9da-14cd-1cc39306b7e0	2021-05-21 21:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:12:00.853+03	2021-05-21 21:12:00.866+03	
ffa72471-6be6-a204-c1f9-f37374e09a30	2021-05-21 21:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:12:20.853+03	2021-05-21 21:12:20.859+03	
2ab69452-5366-b4ec-2554-2f99a7505348	2021-05-21 21:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:12:41.854+03	2021-05-21 21:12:41.86+03	
9ed605ff-12ba-9ca9-013d-0ef33065f592	2021-05-21 21:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:13:01.854+03	2021-05-21 21:13:01.917+03	
78943cfc-6866-25b1-7ebf-1a9cb4766a51	2021-05-21 21:13:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:13:21.854+03	2021-05-21 21:13:21.861+03	
0590d741-2ad0-3c1c-4540-56239cbb5553	2021-05-21 21:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:13:42.853+03	2021-05-21 21:13:42.859+03	
0aa3ef26-204c-af29-791d-78a0c71e747a	2021-05-21 21:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:14:02.853+03	2021-05-21 21:14:02.859+03	
be63c4ef-d4b9-7448-6541-269ea88e98f0	2021-05-21 21:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:14:22.853+03	2021-05-21 21:14:22.859+03	
a668b9d6-8645-f615-82b7-44e660113768	2021-05-21 21:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:14:43.853+03	2021-05-21 21:14:43.865+03	
b1cdf390-656d-832b-5472-2db730471034	2021-05-21 21:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:15:03.853+03	2021-05-21 21:15:03.864+03	
93b51f64-3787-80f4-0581-13bd8e253d08	2021-05-21 21:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:15:23.853+03	2021-05-21 21:15:23.861+03	
528b3389-574b-518d-d2be-a9391037ca1c	2021-05-21 21:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:15:44.853+03	2021-05-21 21:15:44.86+03	
0f9b7920-c0db-8a25-157e-7ceacf7f4bfc	2021-05-21 21:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:16:05.853+03	2021-05-21 21:16:05.859+03	
a6e3ccf0-b28f-0339-c5b9-6502b548b3e1	2021-05-21 21:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:16:25.853+03	2021-05-21 21:16:25.86+03	
0dcf3b22-4898-70c2-aec9-3d3df3ee011b	2021-05-21 21:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:16:45.853+03	2021-05-21 21:16:45.86+03	
5ce3fb7e-7421-16b0-747f-12f76379d377	2021-05-21 21:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:17:05.853+03	2021-05-21 21:17:05.86+03	
9fd612b6-fb4d-01cb-bbfa-502c3255ed9d	2021-05-21 21:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:17:25.853+03	2021-05-21 21:17:25.873+03	
07713a9b-ad4f-5b25-2011-f4e914be3b34	2021-05-21 21:17:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:17:46.853+03	2021-05-21 21:17:46.86+03	
d8f834a3-e95c-e2e9-8873-0467fccb1442	2021-05-21 21:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:18:07.853+03	2021-05-21 21:18:07.859+03	
a2877544-5188-556d-0674-2cfee503812b	2021-05-21 21:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:18:27.853+03	2021-05-21 21:18:27.861+03	
52708c75-4650-93a3-f532-b04c8c5f4ae9	2021-05-21 21:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:18:47.853+03	2021-05-21 21:18:47.86+03	
255e9898-7c52-9215-227f-113e84b0b7d9	2021-05-21 21:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:19:07.853+03	2021-05-21 21:19:07.864+03	
3a1516fd-4d0c-b74d-3fe4-c6a92e5295b3	2021-05-21 21:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:19:28.852+03	2021-05-21 21:19:28.86+03	
f1217719-d98d-9f59-da1c-6cef970b05da	2021-05-21 21:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:19:48.852+03	2021-05-21 21:19:48.862+03	
803e4cf7-5487-84e9-adf6-0f43ddea9159	2021-05-21 21:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 21:20:00.853+03	2021-05-21 21:20:00.858+03	ERROR
96d0aba2-e1b6-bb80-fcc8-8fc7a362224d	2021-05-21 21:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:20:18.853+03	2021-05-21 21:20:18.859+03	
0ba6124f-5c9b-fce9-3117-21b75eaefe9c	2021-05-21 21:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:20:38.853+03	2021-05-21 21:20:38.861+03	
0bf992e9-d848-f6f8-1f11-2e89d98a849e	2021-05-21 21:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:20:58.853+03	2021-05-21 21:20:58.86+03	
1032ec80-e57b-a379-47f6-cda72f70795a	2021-05-21 21:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:21:18.853+03	2021-05-21 21:21:18.865+03	
657e22b7-2b05-6f12-457c-b4ef449e1d1c	2021-05-21 21:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:21:38.853+03	2021-05-21 21:21:38.86+03	
4dc446a0-d97c-740d-2f8e-bb87998ed7bd	2021-05-21 21:21:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:21:59.853+03	2021-05-21 21:21:59.86+03	
5dfd80b4-cd3d-9bd3-0b6e-5666f838e8e4	2021-05-21 21:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:22:20.853+03	2021-05-21 21:22:20.86+03	
aca9f8e7-825e-3c34-4f08-dcc888e7cc3e	2021-05-21 21:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:22:40.853+03	2021-05-21 21:22:40.86+03	
3c5ac352-4dee-16c4-2b10-d9401ef067ce	2021-05-21 21:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:23:00.853+03	2021-05-21 21:23:00.86+03	
cfa05d80-fafa-36ab-c311-8581de0e9646	2021-05-21 21:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:23:20.853+03	2021-05-21 21:23:20.86+03	
67176581-8d3c-fb23-536a-cedf610e0a3d	2021-05-21 21:23:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:23:41.852+03	2021-05-21 21:23:41.859+03	
570478eb-8729-5124-4f4b-f9903cc6efec	2021-05-21 21:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:03:28.852+03	2021-05-21 21:03:28.859+03	
fe397e74-6570-8af1-a8ea-7db384ef8197	2021-05-21 21:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:03:49.853+03	2021-05-21 21:03:49.859+03	
9525dd55-f21e-f738-a9c3-adaa81c8d9dc	2021-05-21 21:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:04:10.853+03	2021-05-21 21:04:10.874+03	
aa7caf9f-60a7-8897-2bba-b930c69273c1	2021-05-21 21:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:04:30.853+03	2021-05-21 21:04:30.86+03	
2c35ec78-bead-3904-613e-612329984b60	2021-05-21 21:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:04:50.853+03	2021-05-21 21:04:50.859+03	
63f249b5-a58d-c8c0-29ae-44dc886a5e9d	2021-05-21 21:05:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:05:11.854+03	2021-05-21 21:05:11.86+03	
0ec55cf1-5011-2fd2-afb5-df1fd95bf344	2021-05-21 21:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:05:32.853+03	2021-05-21 21:05:32.859+03	
3f869500-319e-48ef-af6a-d0a86c43a4a8	2021-05-21 21:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:05:52.853+03	2021-05-21 21:05:52.861+03	
682109c2-2e1d-4e3d-8b44-93c3efe6e422	2021-05-21 21:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:06:12.853+03	2021-05-21 21:06:12.86+03	
4539f16b-3b6d-fbf4-82cb-e832112eea31	2021-05-21 21:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:06:33.853+03	2021-05-21 21:06:33.86+03	
a55d3416-fceb-dc26-ded2-b768acfd47f2	2021-05-21 21:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:06:54.853+03	2021-05-21 21:06:54.868+03	
a082105e-a2cd-d55d-0d41-5542511a8900	2021-05-21 21:07:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:07:14.853+03	2021-05-21 21:07:14.861+03	
dd0c6657-d582-6ae1-6cfd-67886892c763	2021-05-21 21:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:07:34.853+03	2021-05-21 21:07:34.86+03	
979576b1-1e12-2138-ee0e-0b8df09af2cb	2021-05-21 21:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:07:54.853+03	2021-05-21 21:07:54.861+03	
1e84bfad-5fd0-fd6d-44a8-22fa31dc90a2	2021-05-21 21:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:08:15.853+03	2021-05-21 21:08:15.862+03	
dba03ae1-76ee-3e7b-756c-6a66a063166a	2021-05-21 21:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:08:35.853+03	2021-05-21 21:08:35.861+03	
fb19859b-cbc1-a2c3-6a5b-fe55393ac0ea	2021-05-21 21:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:08:55.853+03	2021-05-21 21:08:55.86+03	
5db438e0-982e-c5a4-8fad-acfc1aa4de14	2021-05-21 21:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:09:15.853+03	2021-05-21 21:09:15.86+03	
b8ddaeeb-4bbd-ba4c-f76b-9cd959c3f958	2021-05-21 21:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:09:35.853+03	2021-05-21 21:09:35.863+03	
c4c3f600-0210-3089-05d0-8ef9e27a10c7	2021-05-21 21:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:09:55.853+03	2021-05-21 21:09:55.867+03	
8056ddb8-79c0-3b49-57b5-f11f2985677c	2021-05-21 21:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:10:05.853+03	2021-05-21 21:10:05.86+03	
af38df7e-9994-5c93-f2dc-62e858d508a3	2021-05-21 21:10:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:10:26.853+03	2021-05-21 21:10:26.861+03	
51959c82-d34d-eed1-0613-f017a03403c2	2021-05-21 21:10:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:10:46.854+03	2021-05-21 21:10:46.86+03	
34e2f2ae-603e-a265-a7bb-9c31d902114e	2021-05-21 21:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:11:07.853+03	2021-05-21 21:11:07.86+03	
6fb26431-853f-e519-2e86-ccc00c29795a	2021-05-21 21:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:11:28.853+03	2021-05-21 21:11:28.86+03	
1576d0ff-02ba-b249-a480-b56daf1e1b88	2021-05-21 21:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:11:49.853+03	2021-05-21 21:11:49.86+03	
e4b9384e-caf5-71d4-9bb1-5c32261b8b80	2021-05-21 21:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:12:10.853+03	2021-05-21 21:12:10.859+03	
bc75824e-35a7-71ef-ac0f-3cf9d3431f38	2021-05-21 21:12:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:12:31.853+03	2021-05-21 21:12:31.859+03	
499a13b4-301c-ba37-f631-5027707049f6	2021-05-21 21:12:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:12:51.854+03	2021-05-21 21:12:51.862+03	
abf041ce-254f-010e-0e27-dd9e0a5a52b2	2021-05-21 21:13:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:13:11.854+03	2021-05-21 21:13:11.864+03	
cf081b74-f42f-d1a6-13c1-3c572e0797ef	2021-05-21 21:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:13:32.853+03	2021-05-21 21:13:32.861+03	
620e110b-f5b6-d272-da86-eddaa10e9034	2021-05-21 21:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:13:52.853+03	2021-05-21 21:13:52.862+03	
9667c5e9-a7e9-cfdd-4861-1e6e4c5d5d37	2021-05-21 21:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:14:12.853+03	2021-05-21 21:14:12.859+03	
fa303a98-10d9-ba25-5e78-3c25ec9e5782	2021-05-21 21:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:14:32.853+03	2021-05-21 21:14:32.859+03	
1a49aa22-57ba-b306-e75d-4c92d323566e	2021-05-21 21:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:14:53.853+03	2021-05-21 21:14:53.86+03	
e394e135-72fc-70ba-85ac-cb9261182fa3	2021-05-21 21:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:15:13.853+03	2021-05-21 21:15:13.86+03	
d18896cf-adfd-4b8e-5216-01ad67c7b152	2021-05-21 21:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:15:34.853+03	2021-05-21 21:15:34.869+03	
60db5a9b-7149-60b3-7e24-1908783b1691	2021-05-21 21:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:15:54.853+03	2021-05-21 21:15:54.859+03	
6b59fed1-d876-0465-2741-eb6e8455fd3f	2021-05-21 21:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:16:15.853+03	2021-05-21 21:16:15.859+03	
265439ae-cb92-e7df-5dee-485ab12cbeb8	2021-05-21 21:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:16:35.853+03	2021-05-21 21:16:35.859+03	
5a4431d3-f871-ff86-b1fe-534e66fa7a0c	2021-05-21 21:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:16:55.853+03	2021-05-21 21:16:55.86+03	
f6b34c62-8431-969c-0580-e84bfbf55d90	2021-05-21 21:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:17:15.853+03	2021-05-21 21:17:15.861+03	
28ec3ae4-32bc-377a-8038-5ae65e9ddc62	2021-05-21 21:17:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:17:36.852+03	2021-05-21 21:17:36.86+03	
932f1ef3-a762-119f-74e0-addc52fc46a3	2021-05-21 21:17:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:17:56.853+03	2021-05-21 21:17:56.859+03	
6f14162a-a47e-ad15-6c77-e23066e8d814	2021-05-21 21:18:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:18:17.853+03	2021-05-21 21:18:17.875+03	
174e3606-4226-7c26-e9b1-9c1c05bec0b2	2021-05-21 21:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:18:37.853+03	2021-05-21 21:18:37.859+03	
1e51b29d-5041-7752-260d-1a352f9e6f40	2021-05-21 21:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:18:57.853+03	2021-05-21 21:18:57.859+03	
d1725480-0cf7-c7cf-ebfe-704cf6fd03e5	2021-05-21 21:19:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:19:17.854+03	2021-05-21 21:19:17.861+03	
bdfb5141-3fc8-99c0-f6a9-fd75449d7124	2021-05-21 21:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:19:38.852+03	2021-05-21 21:19:38.859+03	
b90f132c-254c-45ea-a148-32595a781f70	2021-05-21 21:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:19:58.852+03	2021-05-21 21:19:58.86+03	
a76d5c12-0ecb-1bbe-f3e5-553273aca6b0	2021-05-21 21:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:20:08.852+03	2021-05-21 21:20:08.859+03	
85e4f697-3c7a-9855-548c-6217773983eb	2021-05-21 21:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:20:28.853+03	2021-05-21 21:20:28.86+03	
2c0492fe-0546-1385-9abc-6b40c5f3c832	2021-05-21 21:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:20:48.853+03	2021-05-21 21:20:48.859+03	
bbf8ece7-4f90-02d5-c8fb-4e95d213b815	2021-05-21 21:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:21:08.853+03	2021-05-21 21:21:08.861+03	
40ba8692-cbba-0c36-fdbd-6fbebc8b30d9	2021-05-21 21:21:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:21:28.853+03	2021-05-21 21:21:28.865+03	
9dac598d-cad6-3ed2-9a53-7c40047f8bfe	2021-05-21 21:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:21:48.853+03	2021-05-21 21:21:48.86+03	
a6b6db67-4a94-120c-3062-dbaef8b2d0e7	2021-05-21 21:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:22:09.853+03	2021-05-21 21:22:09.86+03	
557c0fb6-a04e-1951-6944-d1d944c4bd23	2021-05-21 21:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:22:30.853+03	2021-05-21 21:22:30.859+03	
26c6d71c-d616-f62f-addf-f457d8e84c73	2021-05-21 21:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:22:50.853+03	2021-05-21 21:22:50.867+03	
3e6f179c-ed50-51e0-963e-9597c0cf844a	2021-05-21 21:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:23:10.853+03	2021-05-21 21:23:10.861+03	
449d4aa5-b77b-6620-998b-a3e2bc1fe75b	2021-05-21 21:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:23:30.853+03	2021-05-21 21:23:30.906+03	
cd98fdc3-2f43-21d8-659b-f7192c5e852a	2021-05-21 21:23:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:23:51.852+03	2021-05-21 21:23:51.859+03	
68777dbc-49f8-aa92-125d-2c236913a0b7	2021-05-21 21:24:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:24:01.854+03	2021-05-21 21:24:01.86+03	
83f90dd1-ee18-eefe-63e3-cdccfc951b1c	2021-05-21 21:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:24:12.853+03	2021-05-21 21:24:12.865+03	
92922bf8-21d5-5198-5933-9830cdbef035	2021-05-21 21:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:24:32.853+03	2021-05-21 21:24:32.86+03	
fc87b8a5-8750-566f-d40e-cbf56d55e06b	2021-05-21 21:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:24:52.853+03	2021-05-21 21:24:52.859+03	
41cf3ed4-176e-06c1-1574-fccbab231cb5	2021-05-21 21:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:25:12.853+03	2021-05-21 21:25:12.859+03	
02660155-54cd-9f11-f8bf-e1b80404631d	2021-05-21 21:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:25:33.852+03	2021-05-21 21:25:33.868+03	
86240173-26dd-bba9-efff-f0a8fa548255	2021-05-21 21:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:25:54.853+03	2021-05-21 21:25:54.859+03	
ed6a305d-c0b8-b271-12f7-76749b9006b4	2021-05-21 21:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:26:15.853+03	2021-05-21 21:26:15.86+03	
a26854e7-684d-ab3f-96f3-1af18628d27c	2021-05-21 21:26:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:26:36.852+03	2021-05-21 21:26:36.859+03	
6e95349d-38cf-f817-dabf-19bdd9121273	2021-05-21 21:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:26:56.852+03	2021-05-21 21:26:56.86+03	
c224443e-9c58-3199-fbec-fd9196e639ce	2021-05-21 21:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:27:16.853+03	2021-05-21 21:27:16.859+03	
6ffc75b5-2803-27b6-0eac-52ddaddba6c3	2021-05-21 21:27:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:27:36.853+03	2021-05-21 21:27:36.866+03	
9bf3a0f2-3c6c-133c-3106-79152f8e3677	2021-05-21 21:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:27:57.853+03	2021-05-21 21:27:57.859+03	
d12ff5b5-949e-d97d-774a-ad94b41770b1	2021-05-21 21:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:28:17.853+03	2021-05-21 21:28:17.863+03	
d1663ea0-686f-c7ae-202b-349732f0b769	2021-05-21 21:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:28:37.853+03	2021-05-21 21:28:37.859+03	
46ab1609-9f4d-5009-fa20-fd9435d04f33	2021-05-21 21:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:28:58.852+03	2021-05-21 21:28:58.873+03	
59415d70-a32f-936b-839e-dc7acc96373b	2021-05-21 21:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:29:18.853+03	2021-05-21 21:29:18.859+03	
cb60a566-2d79-2812-ecd7-4ced98665503	2021-05-21 21:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:29:38.853+03	2021-05-21 21:29:38.861+03	
0f0e7ba1-77e2-b7f4-c4df-59cd937a655b	2021-05-21 21:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:29:48.853+03	2021-05-21 21:29:48.86+03	
b17e1fc8-2615-5e6f-f56b-22aafafd064a	2021-05-21 21:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 21:30:00.852+03	2021-05-21 21:30:00.857+03	ERROR
370d3724-bfb1-5da2-2a8f-8a53e81e6082	2021-05-21 21:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:30:19.853+03	2021-05-21 21:30:19.859+03	
dc872634-fed5-c365-e37c-cf914c31c1e3	2021-05-21 21:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:30:40.852+03	2021-05-21 21:30:40.868+03	
844429b3-2903-ca67-d742-f5c82ac2ffea	2021-05-21 21:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:31:00.852+03	2021-05-21 21:31:00.859+03	
559c3ade-922e-d91f-58b4-8c66acd874fb	2021-05-21 21:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:31:20.852+03	2021-05-21 21:31:20.858+03	
91a33e54-0a47-4364-753a-951a09d3ce4d	2021-05-21 21:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:31:40.853+03	2021-05-21 21:31:40.86+03	
74b2058d-a4d9-0da9-e3f6-656b6322a2e1	2021-05-21 21:32:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:32:01.853+03	2021-05-21 21:32:01.86+03	
ba0ba936-a1cb-f802-bb7b-48510dd828c9	2021-05-21 21:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:32:22.853+03	2021-05-21 21:32:22.861+03	
8a8dbf9c-1ef1-a461-1233-d99d593db33b	2021-05-21 21:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:32:43.852+03	2021-05-21 21:32:43.859+03	
e05887db-ae1c-83c8-6198-8c3135dd58fc	2021-05-21 21:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:33:04.852+03	2021-05-21 21:33:04.859+03	
64b58f5f-3467-6b7b-2084-f82c4426b7d0	2021-05-21 21:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:33:24.853+03	2021-05-21 21:33:24.873+03	
df5ef1e8-0b9b-cc6d-7d3d-586589df3cbf	2021-05-21 21:33:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:33:44.853+03	2021-05-21 21:33:44.871+03	
8bf63f19-a3d1-f2ae-c094-bfb16d953c5d	2021-05-21 21:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:34:04.853+03	2021-05-21 21:34:04.861+03	
7e35c3c4-fcbe-aee6-2c39-afb1fbfc4239	2021-05-21 21:34:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:34:26.853+03	2021-05-21 21:34:26.86+03	
4768bba0-b33a-0d94-6058-33863946e096	2021-05-21 21:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:34:47.852+03	2021-05-21 21:34:47.86+03	
d7cea8a7-5685-b5fb-7702-6d8ded68839f	2021-05-21 21:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:35:07.853+03	2021-05-21 21:35:07.861+03	
f6405439-3a43-7529-41db-318c49fe29d6	2021-05-21 21:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:35:27.853+03	2021-05-21 21:35:27.871+03	
1be6258b-73a1-024f-c60f-cc83022b1a75	2021-05-21 21:35:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:35:47.853+03	2021-05-21 21:35:47.859+03	
f3999753-89ea-97b0-4e6d-79bf46b934e1	2021-05-21 21:36:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:36:08.853+03	2021-05-21 21:36:08.86+03	
763dddad-5ffa-ac13-cf60-3b2214b879f9	2021-05-21 21:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:36:29.852+03	2021-05-21 21:36:29.859+03	
4e6655d6-cf7c-9ac0-569a-364377ab7a43	2021-05-21 21:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:36:49.852+03	2021-05-21 21:36:49.859+03	
ef5d6a31-e9d7-15e7-f133-2407c4c8f794	2021-05-21 21:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:37:09.853+03	2021-05-21 21:37:09.859+03	
f0c34e04-95bc-097c-f272-ee92344d969d	2021-05-21 21:37:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:37:30.852+03	2021-05-21 21:37:30.859+03	
446e126b-2d8c-8877-05c3-94fb3694fc20	2021-05-21 21:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:37:50.852+03	2021-05-21 21:37:50.859+03	
9127f8c4-daa1-ae4a-c1b6-b35a0aa80f4a	2021-05-21 21:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:38:10.853+03	2021-05-21 21:38:10.863+03	
1e802536-4990-b046-5145-2e78659d8eaa	2021-05-21 21:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:38:30.853+03	2021-05-21 21:38:30.86+03	
5defabd4-192b-324d-a842-6ad456386a43	2021-05-21 21:38:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:38:51.854+03	2021-05-21 21:38:51.86+03	
1717d37e-a97a-0b4c-5914-5f95dd18a9b8	2021-05-21 21:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:39:12.852+03	2021-05-21 21:39:12.864+03	
4201db86-2e24-969d-9ea4-b48de1c38aa3	2021-05-21 21:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:39:32.852+03	2021-05-21 21:39:32.859+03	
c8ce2a01-afec-2840-bfef-ce5a7393ea96	2021-05-21 21:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:39:52.852+03	2021-05-21 21:39:52.862+03	
b081459f-e275-b902-3be6-b7d844904e32	2021-05-21 21:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:40:02.852+03	2021-05-21 21:40:02.858+03	
c7707d3f-d110-c2d6-d17a-eddfa4cce73e	2021-05-21 21:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:40:22.853+03	2021-05-21 21:40:22.859+03	
883b7847-abc1-9551-454e-f8c7100db82c	2021-05-21 21:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:40:42.853+03	2021-05-21 21:40:42.86+03	
50e2e0b2-d273-a912-5222-b47d6bd46f9d	2021-05-21 21:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:41:02.853+03	2021-05-21 21:41:02.86+03	
3effe32c-60e3-9533-7d48-93e3fe64fa65	2021-05-21 21:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:41:22.853+03	2021-05-21 21:41:22.859+03	
567fa933-2867-7759-35ea-aebd3f13ef2d	2021-05-21 21:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:41:43.852+03	2021-05-21 21:41:43.859+03	
69ea477e-9f7f-35a4-0210-d39adab182c9	2021-05-21 21:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:42:03.853+03	2021-05-21 21:42:03.859+03	
2a4a6118-27b5-22a8-f816-e3fbc0861655	2021-05-21 21:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:42:23.853+03	2021-05-21 21:42:23.861+03	
285439f8-9459-c9e3-c1c1-57a4491eae45	2021-05-21 21:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:42:45.852+03	2021-05-21 21:42:45.859+03	
63800e13-0d7f-b2b2-1920-939c1d32097e	2021-05-21 21:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:43:05.852+03	2021-05-21 21:43:05.859+03	
35f528a1-0fc7-51b8-422a-59a72789ad4f	2021-05-21 21:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:43:25.853+03	2021-05-21 21:43:25.872+03	
49e9a499-b64b-07c6-20c9-bb40442eb97c	2021-05-21 21:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:43:45.853+03	2021-05-21 21:43:45.86+03	
a24fe551-88b5-d46f-20b3-d2f179101406	2021-05-21 21:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:44:05.853+03	2021-05-21 21:44:05.861+03	
6e2fb777-4eee-742b-1c4f-be871ec3ebf5	2021-05-21 21:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:44:25.853+03	2021-05-21 21:44:25.864+03	
2c4aacc6-a1bc-5d93-166f-3a8e683ca8a0	2021-05-21 21:44:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:44:46.854+03	2021-05-21 21:44:46.863+03	
d7cc891b-0e8c-f160-9c7e-c3c97824cda9	2021-05-21 21:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:24:22.853+03	2021-05-21 21:24:22.86+03	
bbcc3f11-340a-38d7-3d4a-d58132017fad	2021-05-21 21:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:24:42.853+03	2021-05-21 21:24:42.859+03	
eb181538-fec4-2334-39f9-f677bcdaa62e	2021-05-21 21:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:25:02.853+03	2021-05-21 21:25:02.859+03	
9660bceb-581e-4120-6bbd-f687688e379c	2021-05-21 21:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:25:23.852+03	2021-05-21 21:25:23.861+03	
9f7eb27c-fb28-9921-519a-c7bf4acb9047	2021-05-21 21:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:25:43.853+03	2021-05-21 21:25:43.859+03	
190e1f0e-5cd7-23fb-b8c3-afc12dd83673	2021-05-21 21:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:26:05.853+03	2021-05-21 21:26:05.86+03	
03cd653b-3861-6078-7f8b-a5be32dca15b	2021-05-21 21:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:26:25.853+03	2021-05-21 21:26:25.859+03	
770ffa19-812c-4c60-3cc2-6699854aeb1f	2021-05-21 21:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:26:46.852+03	2021-05-21 21:26:46.858+03	
1533bb50-4279-35ff-4c4a-884fdbd99a8c	2021-05-21 21:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:27:06.853+03	2021-05-21 21:27:06.871+03	
b0182443-35b1-1867-8a55-6d0df1446e8a	2021-05-21 21:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:27:26.853+03	2021-05-21 21:27:26.859+03	
39cda522-5870-88c6-d2da-56e5a20c44c3	2021-05-21 21:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:27:47.853+03	2021-05-21 21:27:47.859+03	
b0cf823f-6167-62fc-af08-8bb35c094f1e	2021-05-21 21:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:28:07.853+03	2021-05-21 21:28:07.86+03	
00758a90-6026-5564-f27b-65d7d5ff03ff	2021-05-21 21:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:28:27.853+03	2021-05-21 21:28:27.859+03	
fd60957b-1cd8-9c7a-6428-8c95c8c768f1	2021-05-21 21:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:28:47.853+03	2021-05-21 21:28:47.876+03	
16c7ffc6-9b15-54a6-35a5-3dc96cfe4c16	2021-05-21 21:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:29:08.852+03	2021-05-21 21:29:08.859+03	
a0a72126-68d1-511c-dd83-fa6a3bc02192	2021-05-21 21:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:29:28.853+03	2021-05-21 21:29:28.86+03	
47f6fef5-1af7-9918-3de1-66ee53486c0a	2021-05-21 21:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:29:58.853+03	2021-05-21 21:29:58.861+03	
9c4f90ab-52e8-f8cc-9060-2364771b8b94	2021-05-21 21:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:30:09.853+03	2021-05-21 21:30:09.859+03	
34a880b0-c3ca-a8ed-b3d5-10e8d2f1982b	2021-05-21 21:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:30:30.852+03	2021-05-21 21:30:30.859+03	
1a305708-bd8e-2944-a5c3-342ce56cf4fe	2021-05-21 21:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:30:50.852+03	2021-05-21 21:30:50.859+03	
46b82dcc-97e1-7fd8-91b3-a1ee0d9a3b7e	2021-05-21 21:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:31:10.852+03	2021-05-21 21:31:10.859+03	
09f16e81-fd4a-1f4c-1fe0-780a16d15474	2021-05-21 21:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:31:30.853+03	2021-05-21 21:31:30.859+03	
3fa1cf23-5807-aff4-199e-ab2bb61a51a7	2021-05-21 21:31:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:31:51.852+03	2021-05-21 21:31:51.86+03	
98f45d97-94ed-78a5-8ac5-5f9eb850d8af	2021-05-21 21:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:32:12.852+03	2021-05-21 21:32:12.859+03	
d2782b56-ea9d-139c-8345-a0a163b2213b	2021-05-21 21:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:32:32.853+03	2021-05-21 21:32:32.861+03	
736e9b8a-8824-5048-3437-734e2824334a	2021-05-21 21:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:32:53.853+03	2021-05-21 21:32:53.877+03	
efb330c5-b6c0-28f0-5a9f-87aa7d29d261	2021-05-21 21:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:33:14.853+03	2021-05-21 21:33:14.86+03	
c105c319-c7fa-6b26-0711-632b7d495bc8	2021-05-21 21:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:33:34.853+03	2021-05-21 21:33:34.861+03	
e78d8d0b-9cf3-0239-f0e4-d502f13a6914	2021-05-21 21:33:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:33:54.853+03	2021-05-21 21:33:54.86+03	
e31712c9-82ee-1b55-588f-c1b3e1fdd708	2021-05-21 21:34:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:34:15.853+03	2021-05-21 21:34:15.859+03	
b41f2b27-fce9-fc22-0fa0-87d0485e56c0	2021-05-21 21:34:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:34:36.853+03	2021-05-21 21:34:36.859+03	
358d09f0-db5d-1c99-d48a-cebe4f436a28	2021-05-21 21:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:34:57.853+03	2021-05-21 21:34:57.859+03	
8bd68102-793a-e9de-2d36-848d57201983	2021-05-21 21:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:35:17.853+03	2021-05-21 21:35:17.869+03	
1aa97d0f-c660-dfb6-c45e-212ac020c80c	2021-05-21 21:35:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:35:37.853+03	2021-05-21 21:35:37.86+03	
18040a6c-49b9-44a6-0802-d33d4172fcce	2021-05-21 21:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:35:58.852+03	2021-05-21 21:35:58.86+03	
dfc96cfc-5ab5-c6e5-bf2e-3d2e063ec735	2021-05-21 21:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:36:19.852+03	2021-05-21 21:36:19.858+03	
f69b462c-943e-33f9-3e46-067c54147b18	2021-05-21 21:36:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:36:39.852+03	2021-05-21 21:36:39.86+03	
32caf5da-4262-a81e-fe44-6646a9b0a1d2	2021-05-21 21:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:36:59.853+03	2021-05-21 21:36:59.873+03	
b1565a69-4a0e-f9b7-aae7-bf24ac5c12bb	2021-05-21 21:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:37:19.853+03	2021-05-21 21:37:19.869+03	
b250df41-ab23-9b7d-b8bd-eb087c99a0be	2021-05-21 21:37:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:37:40.852+03	2021-05-21 21:37:40.859+03	
45dc30bb-6229-92f3-5608-f1bbfa8f0019	2021-05-21 21:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:38:00.852+03	2021-05-21 21:38:00.859+03	
8ba65c59-4dd0-8eea-93f4-846b0929a205	2021-05-21 21:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:38:20.853+03	2021-05-21 21:38:20.859+03	
c9ff4665-786b-761b-be14-9f4a11c36398	2021-05-21 21:38:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:38:41.853+03	2021-05-21 21:38:41.859+03	
18a8150a-f87c-50da-b681-c3e5538d452d	2021-05-21 21:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:39:02.852+03	2021-05-21 21:39:02.86+03	
5bab1d0a-c8e1-0c8a-ae4e-41dfbd2aaccd	2021-05-21 21:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:39:22.852+03	2021-05-21 21:39:22.868+03	
c9180dfc-4a49-56ca-4e54-1ae88ac5c98b	2021-05-21 21:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:39:42.852+03	2021-05-21 21:39:42.858+03	
5ae2266d-4b1f-d3a2-a2e7-98176073fbec	2021-05-21 21:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 21:40:00.852+03	2021-05-21 21:40:00.857+03	ERROR
d462f8c0-ebc9-bff8-3c22-a9a24f0ce8ae	2021-05-21 21:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:40:12.853+03	2021-05-21 21:40:12.86+03	
49eb1332-f623-120d-752b-ed47a21feea6	2021-05-21 21:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:40:32.853+03	2021-05-21 21:40:32.861+03	
60579952-39d1-fd67-69bb-e58d0810bba6	2021-05-21 21:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:40:52.853+03	2021-05-21 21:40:52.864+03	
71493c07-5048-2e37-57b6-bc9511d0c3a4	2021-05-21 21:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:41:12.853+03	2021-05-21 21:41:12.859+03	
6ae27b7f-5805-bf07-52ba-44ccaae94939	2021-05-21 21:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:41:32.853+03	2021-05-21 21:41:32.859+03	
2cc62d00-f8b1-a70a-b004-782ff09b7cf1	2021-05-21 21:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:41:53.853+03	2021-05-21 21:41:53.861+03	
f395cb73-235b-4a02-7afa-da08544a7540	2021-05-21 21:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:42:13.853+03	2021-05-21 21:42:13.859+03	
2d600b9a-6ea5-9d9b-47e4-d6a83095d34e	2021-05-21 21:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:42:34.853+03	2021-05-21 21:42:34.861+03	
3f7eb055-4eea-2597-ca5c-fa8b82d2186c	2021-05-21 21:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:42:55.852+03	2021-05-21 21:42:55.859+03	
29a24ce3-5805-8789-17f7-24c9e60fb0bc	2021-05-21 21:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:43:15.852+03	2021-05-21 21:43:15.859+03	
a762a4db-7885-ea74-fe46-7c111b465bbb	2021-05-21 21:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:43:35.853+03	2021-05-21 21:43:35.86+03	
512fccba-618b-9044-3445-1e70d7b3bfd0	2021-05-21 21:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:43:55.853+03	2021-05-21 21:43:55.873+03	
ce5169ae-7f3a-c893-56c5-554288b7b0ec	2021-05-21 21:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:44:15.853+03	2021-05-21 21:44:15.859+03	
e5da6f78-c5a6-e082-6cd5-f9b9828f4264	2021-05-21 21:44:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:44:36.853+03	2021-05-21 21:44:36.861+03	
4d2a430f-768a-4203-983b-eacc8a2f4de4	2021-05-21 21:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:44:57.852+03	2021-05-21 21:44:57.859+03	
2985904c-5780-6424-2c44-637acaf9803f	2021-05-21 21:45:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:45:17.852+03	2021-05-21 21:45:17.86+03	
0009e6b2-b048-9f37-2a69-2947e95ec6ab	2021-05-24 23:00:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:00:11.877+03	2021-05-24 23:00:11.883+03	
9f683ca0-efa0-f82e-a5c9-ddd467c10a4e	2021-05-21 21:45:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:45:07.852+03	2021-05-21 21:45:07.859+03	
0d6f8937-b587-921c-cdc1-53b6b0344889	2021-05-21 22:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:17:53.853+03	2021-05-21 22:17:53.859+03	
7b1ccc57-259a-3fbb-00cf-90239728a105	2021-05-21 21:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:45:27.853+03	2021-05-21 21:45:27.86+03	
b0aa0897-6bfb-741c-3d65-71ac11b49476	2021-05-21 21:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:45:47.853+03	2021-05-21 21:45:47.86+03	
da01e1ad-32f7-3392-1c2b-dc5a3d65bc5d	2021-05-21 22:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:18:13.853+03	2021-05-21 22:18:13.86+03	
f5ddfbad-df1b-fa0d-fe26-d2a4d9a86cdf	2021-05-21 21:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:46:07.853+03	2021-05-21 21:46:07.86+03	
efb1bada-d0dc-08f5-45c6-d34f9d6ae7cb	2021-05-21 21:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:46:27.853+03	2021-05-21 21:46:27.86+03	
3c1f73a2-e762-8f28-bf2b-43ce1347803b	2021-05-21 22:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:18:34.853+03	2021-05-21 22:18:34.86+03	
1ce5e767-c890-61d5-2aed-917153fbc454	2021-05-21 21:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:46:48.853+03	2021-05-21 21:46:48.867+03	
95500272-e550-601e-46d6-cf5646d4d98c	2021-05-21 21:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:47:09.853+03	2021-05-21 21:47:09.86+03	
ddf9099c-1f50-539b-3c2c-a4b0f57b47ba	2021-05-21 22:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:18:54.853+03	2021-05-21 22:18:54.861+03	
3108df1b-306f-e9bf-88a3-2470a47576b0	2021-05-21 21:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:47:30.853+03	2021-05-21 21:47:30.86+03	
baec482c-7a82-261f-a9e5-bf228aa8bd8d	2021-05-21 21:47:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:47:51.853+03	2021-05-21 21:47:51.861+03	
32796b12-17fa-70cf-4ce7-3df01ac7af86	2021-05-21 22:19:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:19:16.852+03	2021-05-21 22:19:16.859+03	
91a80ff5-2710-39fd-5c76-11f94d715801	2021-05-21 21:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:48:12.853+03	2021-05-21 21:48:12.859+03	
ec6994dd-7911-6e53-6d65-ea98848a6d14	2021-05-21 21:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:48:33.852+03	2021-05-21 21:48:33.862+03	
4e65924f-7ac6-d9aa-118e-91c3c506b6de	2021-05-21 22:19:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:19:36.853+03	2021-05-21 22:19:36.869+03	
ed3c0c42-df7c-80c1-5ba9-61e84488e2a8	2021-05-21 21:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:48:53.853+03	2021-05-21 21:48:53.909+03	
7cdbd0a4-c93b-f129-f957-4e216e40233d	2021-05-21 21:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:49:14.853+03	2021-05-21 21:49:14.861+03	
73b22a23-c636-cd6e-fbf4-25e318d7ed93	2021-05-21 22:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 22:20:00.852+03	2021-05-21 22:20:00.857+03	ERROR
e32e2641-ec77-250b-0899-5d0825c6bf3c	2021-05-21 21:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:49:35.852+03	2021-05-21 21:49:35.861+03	
e31b3d85-801d-0067-820b-74b04575ca6e	2021-05-21 21:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:49:55.852+03	2021-05-21 21:49:55.859+03	
e519d241-e214-2e71-129f-74ebe4764c3a	2021-05-21 22:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:20:17.853+03	2021-05-21 22:20:17.859+03	
2eac723e-3212-a68e-6713-d33bd572ba07	2021-05-21 21:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:50:05.852+03	2021-05-21 21:50:05.858+03	
77d8adc8-edf8-f163-4bcd-4ffc563fe0de	2021-05-21 21:50:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:50:26.853+03	2021-05-21 21:50:26.861+03	
2bebe4e4-b04c-75c1-a740-52a33d093054	2021-05-21 22:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:20:38.852+03	2021-05-21 22:20:38.859+03	
d13b5549-6c41-c01f-52c5-b4da56458ca8	2021-05-21 21:50:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:50:46.853+03	2021-05-21 21:50:46.866+03	
fae08c7b-e790-83a0-bdac-8b2cc46ee173	2021-05-21 21:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:51:08.852+03	2021-05-21 21:51:08.859+03	
a5adb89d-c812-eee7-b0f2-370d21875737	2021-05-21 22:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:20:58.852+03	2021-05-21 22:20:58.86+03	
c4b20a00-1a65-6061-a136-6aa4be3d2833	2021-05-21 21:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:51:28.852+03	2021-05-21 21:51:28.859+03	
aa5ae56f-2c2f-7c8b-bd93-c6c9e93bc0e8	2021-05-21 21:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:51:48.852+03	2021-05-21 21:51:48.858+03	
58632d96-affa-4023-7d0d-6b076c9db93b	2021-05-21 22:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:21:19.853+03	2021-05-21 22:21:19.86+03	
05f3824a-1843-5392-d598-3a8eea1bc55d	2021-05-21 21:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:52:08.852+03	2021-05-21 21:52:08.86+03	
bda5b5c1-327a-10ad-387e-bffcc57d2d5d	2021-05-21 21:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:52:28.853+03	2021-05-21 21:52:28.86+03	
0d40ae7b-45d5-9926-31e8-8d1eb736c85e	2021-05-21 22:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:21:39.853+03	2021-05-21 22:21:39.865+03	
b8e354fb-78aa-869b-aeda-15e00e869d41	2021-05-21 21:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:52:49.852+03	2021-05-21 21:52:49.859+03	
0a8301eb-3b98-da2c-5931-31c241be136e	2021-05-21 21:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:53:09.852+03	2021-05-21 21:53:09.86+03	
b9f15fca-0993-977d-870d-5fccf74f61f2	2021-05-21 22:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:22:00.852+03	2021-05-21 22:22:00.859+03	
3b0d0cb0-fe52-0325-6ce6-c8ba577e01e9	2021-05-21 21:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:53:30.852+03	2021-05-21 21:53:30.86+03	
94455bf0-9b07-3839-24ba-99a6db3694a7	2021-05-21 21:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:53:50.852+03	2021-05-21 21:53:50.858+03	
8e9646c0-15db-2983-d2ba-8c84af6b51ee	2021-05-21 22:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:22:20.852+03	2021-05-21 22:22:20.86+03	
3a6935a1-bbeb-2538-742a-35df1c5d69fd	2021-05-21 21:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:54:10.853+03	2021-05-21 21:54:10.859+03	
fc571d1b-3acd-a408-3b25-24a2812bf674	2021-05-21 21:54:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:54:31.853+03	2021-05-21 21:54:31.87+03	
8b5c692b-9b3e-ff6d-4d4d-df5ebb10f87c	2021-05-21 22:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:22:40.853+03	2021-05-21 22:22:40.859+03	
de211467-4839-4a3b-7a14-de4f70b86444	2021-05-21 21:54:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:54:51.854+03	2021-05-21 21:54:51.86+03	
9dd8258c-5cd5-86a6-43b8-ee6b57b3b830	2021-05-21 21:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:55:12.852+03	2021-05-21 21:55:12.859+03	
622fb596-465b-038b-876f-64caf47ca13d	2021-05-21 22:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:23:02.853+03	2021-05-21 22:23:02.861+03	
21d60e83-d07c-aa4a-aaa0-4e32125ac35e	2021-05-21 21:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:55:32.852+03	2021-05-21 21:55:32.859+03	
3fe2afac-8d4a-e5d8-2c6b-eafea7863ec4	2021-05-21 21:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:55:52.853+03	2021-05-21 21:55:52.86+03	
6543d22c-2535-8e30-2bf1-f58d9250006c	2021-05-21 22:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:23:23.853+03	2021-05-21 22:23:23.86+03	
fe1b0e03-888d-9421-b257-478a4cf1ec3a	2021-05-21 21:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:56:12.853+03	2021-05-21 21:56:12.86+03	
7923e301-075a-d444-655f-ceb38247730d	2021-05-21 21:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:56:32.853+03	2021-05-21 21:56:32.859+03	
963bad8a-dae2-c044-e1c1-b8307bd1f9ac	2021-05-21 22:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:23:44.853+03	2021-05-21 22:23:44.86+03	
a4c25073-b9b8-a8de-58b2-9b2c3fc84464	2021-05-21 21:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:56:54.853+03	2021-05-21 21:56:54.859+03	
5a818f73-e7ef-90e2-e277-76096411ef30	2021-05-21 21:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:57:15.853+03	2021-05-21 21:57:15.859+03	
29d0f0e8-1337-9e8d-a236-ddd8bbf75dc2	2021-05-21 22:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:24:05.853+03	2021-05-21 22:24:05.859+03	
435b20b7-f1af-d680-fc30-4f2dd9ea259e	2021-05-21 21:57:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:57:36.854+03	2021-05-21 21:57:36.863+03	
59f713ae-bfc8-f47a-9d60-37cdef0c62ce	2021-05-21 21:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:57:57.853+03	2021-05-21 21:57:57.86+03	
be6beff3-e872-3b11-aa28-f56495434ad2	2021-05-21 22:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:24:27.852+03	2021-05-21 22:24:27.859+03	
c9c6238e-4140-80e7-81dd-faed515f53f9	2021-05-21 21:58:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:58:18.852+03	2021-05-21 21:58:18.859+03	
0b81f436-d179-f2cd-1fcd-ccd308c7ec64	2021-05-21 21:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:58:38.852+03	2021-05-21 21:58:38.858+03	
cfd8e9d2-c52d-82d4-b247-c6029a0b6e8f	2021-05-21 22:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:24:47.853+03	2021-05-21 22:24:47.859+03	
75c7501e-a9c8-c35b-8872-93c48f6750bc	2021-05-21 22:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:25:07.853+03	2021-05-21 22:25:07.86+03	
03c9e402-5d8a-fc3d-9013-36b457db187e	2021-05-21 22:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:25:29.852+03	2021-05-21 22:25:29.874+03	
1398a991-8c01-45af-6070-cde264fa45b3	2021-05-22 10:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:50:57.853+03	2021-05-22 10:50:57.863+03	
242244ad-8d22-3d19-e3a9-9669a2a334b8	2021-05-21 21:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:45:37.853+03	2021-05-21 21:45:37.86+03	
5a4d3789-a163-64e1-cd27-5e12401beb9e	2021-05-21 22:19:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:19:46.853+03	2021-05-21 22:19:46.87+03	
8b3eff6b-41e3-e05e-fcc9-3cfa71a25e19	2021-05-21 21:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:45:57.853+03	2021-05-21 21:45:57.861+03	
893c2dc0-8857-9c6e-d583-eb72b8046b82	2021-05-21 22:26:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:26:31.853+03	2021-05-21 22:26:31.862+03	
5f4efe9a-9524-a418-0bb5-15b0c7527183	2021-05-21 21:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:46:17.853+03	2021-05-21 21:46:17.895+03	
56adbf6e-44eb-db65-177b-972d00220a84	2021-05-21 22:26:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:26:41.853+03	2021-05-21 22:26:41.871+03	
709c01b5-62ff-3b1b-3754-4f5d5d320ef4	2021-05-21 21:46:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:46:38.852+03	2021-05-21 21:46:38.86+03	
579567e8-7ec4-086f-5466-ff5aad0665e4	2021-05-21 21:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:46:59.853+03	2021-05-21 21:46:59.872+03	
8441eb13-f52f-2599-4de2-5b2cd5760fa4	2021-05-21 22:26:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:26:51.853+03	2021-05-21 22:26:51.859+03	
e5b6b6ae-b268-9d2c-db01-a7b7c727ed16	2021-05-21 21:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:47:19.853+03	2021-05-21 21:47:19.86+03	
37c73a8b-b88a-64a2-9d80-952285e53394	2021-05-21 21:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:47:40.853+03	2021-05-21 21:47:40.861+03	
5acfe0c5-137b-98e3-99e4-7814c021fa33	2021-05-21 22:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:27:02.852+03	2021-05-21 22:27:02.859+03	
5ae75a9a-0f6d-082e-db1d-586ee4cec22e	2021-05-21 21:48:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:48:01.853+03	2021-05-21 21:48:01.882+03	
d2652669-0621-ad47-6c5f-854fce0e8873	2021-05-21 21:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:48:23.852+03	2021-05-21 21:48:23.909+03	
a6d0e894-d4b8-84bf-b02d-c262fc994f6f	2021-05-21 22:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:27:12.852+03	2021-05-21 22:27:12.86+03	
05f04bbb-a1ef-e238-cc27-608aaae648e5	2021-05-21 21:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:48:43.853+03	2021-05-21 21:48:43.86+03	
63c422e4-5c18-d2fa-96c7-9bb6be229d9c	2021-05-21 21:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:49:03.853+03	2021-05-21 21:49:03.863+03	
fab45925-b14c-86fc-c611-8585c5fe807a	2021-05-21 22:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:27:22.852+03	2021-05-21 22:27:22.863+03	
7a70cc01-c739-ad6c-432c-f8432e781888	2021-05-21 21:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:49:24.853+03	2021-05-21 21:49:24.867+03	
09b33264-c88b-6df3-a016-20fee4c0d2ef	2021-05-21 21:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:49:45.852+03	2021-05-21 21:49:45.86+03	
01688a90-a15f-5c93-68b5-f206f67ca0e5	2021-05-21 22:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:27:32.853+03	2021-05-21 22:27:32.86+03	
de163eab-9df1-d00a-6fb1-7796e033ba2e	2021-05-21 21:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 21:50:00.852+03	2021-05-21 21:50:00.857+03	ERROR
f579eb63-2fab-e03e-2a59-45a51ddfd354	2021-05-21 21:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:50:15.853+03	2021-05-21 21:50:15.859+03	
06df6d01-bdc6-8741-df79-0457523efedb	2021-05-21 22:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:27:43.853+03	2021-05-21 22:27:43.859+03	
960f298f-6544-66c3-48e5-72145cf1c670	2021-05-21 21:50:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:50:36.853+03	2021-05-21 21:50:36.859+03	
d1c9c5eb-4edb-be2e-765a-d3f64eace686	2021-05-21 21:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:50:57.853+03	2021-05-21 21:50:57.86+03	
526b09b5-57d5-ad2f-a9b5-e37da81466d6	2021-05-21 22:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:27:53.853+03	2021-05-21 22:27:53.86+03	
4cff412e-6bc3-ff71-99df-39146b076a6f	2021-05-21 21:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:51:18.852+03	2021-05-21 21:51:18.862+03	
f08dc57b-82f4-c732-d2e8-31e2c16ef3b1	2021-05-21 21:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:51:38.852+03	2021-05-21 21:51:38.859+03	
3b1c9a8e-5764-c1b4-e376-64a04b247928	2021-05-21 22:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:28:03.853+03	2021-05-21 22:28:03.861+03	
1093fa1d-625d-8998-a84f-b6a7a14a1b05	2021-05-21 21:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:51:58.852+03	2021-05-21 21:51:58.872+03	
f79f5f0c-0f98-e25b-2dd2-f42c5f5541b2	2021-05-21 21:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:52:18.852+03	2021-05-21 21:52:18.863+03	
d1b48de2-f364-6c56-c051-566b52d3a203	2021-05-21 22:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:28:13.853+03	2021-05-21 22:28:13.86+03	
9c7bd5ec-7d6a-4e33-eb25-49ab06ad87af	2021-05-21 21:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:52:39.852+03	2021-05-21 21:52:39.86+03	
76fa78e8-b029-8c88-f4c4-acd044c67870	2021-05-21 21:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:52:59.852+03	2021-05-21 21:52:59.861+03	
8fd94d69-8077-117f-1225-b4c88168dffc	2021-05-21 22:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:28:23.853+03	2021-05-21 22:28:23.86+03	
b51f0fad-0ca0-015b-6550-0cff28ac6249	2021-05-21 21:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:53:19.853+03	2021-05-21 21:53:19.86+03	
feb6a7d5-850c-dbd3-34d7-2f1a04fbdeee	2021-05-21 21:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:53:40.852+03	2021-05-21 21:53:40.86+03	
1695f7d6-20ed-7722-4dd6-ab408e918a40	2021-05-21 22:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:28:33.853+03	2021-05-21 22:28:33.859+03	
edfcdd68-e6e2-4cb9-824f-902b0c1f279b	2021-05-21 21:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:54:00.852+03	2021-05-21 21:54:00.859+03	
4d6d98e7-0a7b-8174-9a7d-def12d250b7b	2021-05-21 21:54:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:54:21.852+03	2021-05-21 21:54:21.859+03	
3063ee2a-6e4d-f96f-678e-afe22abe2c5b	2021-05-21 22:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:28:43.853+03	2021-05-21 22:28:43.861+03	
8e05e40b-0394-bf1b-1471-cbce4e20db78	2021-05-21 21:54:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:54:41.853+03	2021-05-21 21:54:41.859+03	
fdc13d05-de8c-3091-5690-3e5e0eaf1c00	2021-05-21 21:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:55:02.852+03	2021-05-21 21:55:02.859+03	
0767d33b-5d55-7a83-8bf3-65474f8ecc46	2021-05-21 22:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:28:53.853+03	2021-05-21 22:28:53.86+03	
a27a91a9-87a0-1f37-6760-c2d4fb7d168f	2021-05-21 21:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:55:22.852+03	2021-05-21 21:55:22.859+03	
92bba283-dfb7-d5ec-61d9-c6f698f63904	2021-05-21 21:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:55:42.853+03	2021-05-21 21:55:42.859+03	
72d3564e-f3ba-1737-2a85-c5ef3a8b6094	2021-05-21 22:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:29:03.853+03	2021-05-21 22:29:03.859+03	
1fab4ac6-64ad-9bc7-f805-240327ea603d	2021-05-21 21:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:56:02.853+03	2021-05-21 21:56:02.86+03	
83b1ad39-64d8-8339-546c-33d7378cb4f0	2021-05-21 21:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:56:22.853+03	2021-05-21 21:56:22.859+03	
8f21ca82-3d40-8304-f42f-7148ff333c4a	2021-05-21 22:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:29:14.853+03	2021-05-21 22:29:14.859+03	
0c139c6d-6ade-6cdc-a151-1a94e5bc49f6	2021-05-21 21:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:56:43.853+03	2021-05-21 21:56:43.866+03	
38c93630-17e4-0df6-874e-522e19544c49	2021-05-21 21:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:57:05.852+03	2021-05-21 21:57:05.859+03	
7f963f2d-760b-cfcd-bafe-bc745efb2e86	2021-05-21 22:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:29:24.853+03	2021-05-21 22:29:24.86+03	
24aff7b4-ce50-c280-4990-e91b8844de1a	2021-05-21 21:57:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:57:26.854+03	2021-05-21 21:57:26.861+03	
124066ad-8ea4-7469-9733-411ba14c5428	2021-05-21 21:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:57:47.853+03	2021-05-21 21:57:47.859+03	
b8ab9ce7-9117-de66-3ac0-ef8913eb8dbe	2021-05-21 22:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:29:35.853+03	2021-05-21 22:29:35.86+03	
175abc5c-defb-e2c7-a79e-4a60b56e1ecd	2021-05-21 21:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:58:07.853+03	2021-05-21 21:58:07.86+03	
4b63a3b4-4a96-c91f-2b6f-37802e2c6cd9	2021-05-21 21:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:58:28.852+03	2021-05-21 21:58:28.859+03	
a0c2e28e-04f0-1426-9001-5843ff9cd15a	2021-05-21 21:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 21:58:48.852+03	2021-05-21 21:58:48.86+03	
08dc2b1c-3621-8e8a-07c7-524dd6d7ce27	2021-05-21 22:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:29:45.853+03	2021-05-21 22:29:45.86+03	
1da0226a-b8b6-281f-a116-bca5e131edfa	2021-05-21 22:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:29:55.853+03	2021-05-21 22:29:55.863+03	
3bf4a73a-f5bf-f2a3-9c2c-ab708abd8b03	2021-05-21 22:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 22:30:00.853+03	2021-05-21 22:30:00.858+03	ERROR
2a91a47d-5f35-b842-968c-eb36b1b63401	2021-05-21 22:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:30:05.853+03	2021-05-21 22:30:05.859+03	
2da70ec6-e8fc-062e-2644-8e3b6b592cdb	2021-05-21 22:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:30:15.853+03	2021-05-21 22:30:15.861+03	
64c71fb6-bfe4-0b3b-a6ca-b3ec0f4b013b	2021-05-21 22:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:30:37.853+03	2021-05-21 22:30:37.859+03	
1bac5574-69d6-3312-f5e0-19661026c5f1	2021-05-21 22:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:30:58.852+03	2021-05-21 22:30:58.86+03	
aea9f9fa-b203-9e62-4ca0-3acec81d7f8e	2021-05-21 22:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:31:18.853+03	2021-05-21 22:31:18.862+03	
2992def5-74dd-6f1b-2ab5-e6fe8981fe2f	2021-05-21 22:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:31:38.853+03	2021-05-21 22:31:38.861+03	
750d44cc-abec-3a73-32a1-e556ea5fea3f	2021-05-21 22:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:31:58.853+03	2021-05-21 22:31:58.859+03	
3eceae6e-20d2-85ad-b650-20df04756c3f	2021-05-21 22:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:32:18.853+03	2021-05-21 22:32:18.86+03	
a3f78949-d67f-743e-e2ae-cd8f5228706b	2021-05-21 22:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:32:40.852+03	2021-05-21 22:32:40.859+03	
6f2417f0-9338-9d11-3049-78e33a934e10	2021-05-21 22:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:33:00.853+03	2021-05-21 22:33:00.872+03	
e756478c-ed87-a327-81d2-6f3d1b25e508	2021-05-21 22:33:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:33:21.853+03	2021-05-21 22:33:21.861+03	
177ba120-9574-ecf5-7909-49561a68bbe0	2021-05-21 22:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:33:41.853+03	2021-05-21 22:33:41.86+03	
99bcd8c9-c6c4-6442-8217-08b847b0357b	2021-05-21 22:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:34:02.853+03	2021-05-21 22:34:02.858+03	
3b9c8dba-8e6a-17a4-1545-f5cd07b98d90	2021-05-21 22:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:34:22.853+03	2021-05-21 22:34:22.86+03	
2919a995-1930-20bd-2a77-faea98bd0b74	2021-05-21 22:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:34:43.852+03	2021-05-21 22:34:43.86+03	
f9476ba4-2190-4074-a19a-19d56df46f80	2021-05-21 22:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:35:03.853+03	2021-05-21 22:35:03.86+03	
2245f585-923f-46cb-a7a2-2c8a08659daa	2021-05-21 22:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:35:24.852+03	2021-05-21 22:35:24.859+03	
236e6dfe-176b-9f85-d1fd-e5def393aa52	2021-05-21 22:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:35:44.853+03	2021-05-21 22:35:44.859+03	
3b4bea36-8365-d97e-08a6-8575574bb419	2021-05-21 22:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:36:05.853+03	2021-05-21 22:36:05.859+03	
251779f1-f5d8-4802-7ffe-c4e3c1e73053	2021-05-21 22:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:36:25.853+03	2021-05-21 22:36:25.86+03	
46520881-3c7d-0bbc-5792-4ea47d11a448	2021-05-21 22:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:36:46.852+03	2021-05-21 22:36:46.859+03	
526bbbfa-319a-9dd5-5d6a-8fb280b1ef00	2021-05-21 22:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:37:07.852+03	2021-05-21 22:37:07.858+03	
5b9ab2d7-e8d6-ef19-7ddb-6023c9281340	2021-05-21 22:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:37:27.853+03	2021-05-21 22:37:27.861+03	
8e202fb7-1603-18ab-3bdf-fc96d157feb4	2021-05-21 22:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:37:47.853+03	2021-05-21 22:37:47.859+03	
f2758da8-868e-a359-bf3e-376b8577836f	2021-05-21 22:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:38:07.853+03	2021-05-21 22:38:07.859+03	
67f83078-d16d-8e12-bca9-dd3ccaaca67a	2021-05-21 22:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:38:28.853+03	2021-05-21 22:38:28.862+03	
4b38d295-688d-2e06-08d4-a8822215781e	2021-05-21 22:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:38:50.852+03	2021-05-21 22:38:50.859+03	
69a13973-c309-1b63-a104-71de3148769d	2021-05-21 22:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:39:10.853+03	2021-05-21 22:39:10.86+03	
20c1e3cf-8968-5ca3-34b9-298681d9f0a6	2021-05-21 22:39:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:39:41.854+03	2021-05-21 22:39:41.86+03	
7a7afa5f-1118-ef4e-958b-af56e872a8cc	2021-05-21 22:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 22:40:00.853+03	2021-05-21 22:40:00.858+03	ERROR
0027701e-f9dc-b477-8870-9f2183434684	2021-05-21 22:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:40:12.852+03	2021-05-21 22:40:12.858+03	
fdec1d6d-2595-2b28-54b4-151a365e4991	2021-05-21 22:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:40:32.852+03	2021-05-21 22:40:32.861+03	
fb91750e-d41f-deb9-a958-6267466eb469	2021-05-21 22:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:40:52.853+03	2021-05-21 22:40:52.859+03	
7f457874-d438-c6ec-0abb-3d488418c00e	2021-05-21 22:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:41:13.853+03	2021-05-21 22:41:13.86+03	
df77aee5-4b62-3512-6071-0aff3f7c5371	2021-05-21 22:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:41:34.853+03	2021-05-21 22:41:34.859+03	
e523d92c-d0f0-b5c1-9bd8-49eb65edaf27	2021-05-21 22:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:41:55.852+03	2021-05-21 22:41:55.859+03	
93af4538-3cd0-e7d6-815a-347843bb6d43	2021-05-21 22:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:42:15.852+03	2021-05-21 22:42:15.861+03	
b112e6e2-78a6-bd3e-da93-8c14280e0b0f	2021-05-21 22:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:42:35.853+03	2021-05-21 22:42:35.861+03	
62566a3c-1039-a20f-cbe5-8f49d562357d	2021-05-21 22:42:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:42:56.853+03	2021-05-21 22:42:56.861+03	
cb85c779-9c90-30a2-8433-c23f6ab0f3ca	2021-05-21 22:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:43:17.853+03	2021-05-21 22:43:17.865+03	
98250887-b088-235f-6a2f-3b483c326dbc	2021-05-21 22:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:43:39.853+03	2021-05-21 22:43:39.87+03	
a0f0d66f-ca5e-d036-3710-8fae3c419a69	2021-05-21 22:44:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:44:01.853+03	2021-05-21 22:44:01.859+03	
26dfbaf7-1a0c-87db-b9de-a68ee0a130ca	2021-05-21 22:44:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:44:21.853+03	2021-05-21 22:44:21.863+03	
eedcaec4-be11-87db-2dac-b7163290f576	2021-05-21 22:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:44:42.852+03	2021-05-21 22:44:42.859+03	
32356c1d-4894-a4f7-1494-89faaf8be345	2021-05-21 22:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:45:02.852+03	2021-05-21 22:45:02.858+03	
b5154988-f92c-9cfd-f2dd-45c5c1d02323	2021-05-21 22:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:45:22.853+03	2021-05-21 22:45:22.86+03	
a769e634-0aaa-a4e4-1b96-914212fd6821	2021-05-21 22:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:45:43.853+03	2021-05-21 22:45:43.861+03	
4183ce68-6c06-cb7a-ecdb-345359747401	2021-05-21 22:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:46:03.853+03	2021-05-21 22:46:03.861+03	
fa841d0b-ee3b-c837-d0c3-622d7cc76ceb	2021-05-21 22:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:46:23.853+03	2021-05-21 22:46:23.859+03	
e36e3b0d-8713-256d-5da7-2661f07d228c	2021-05-21 22:46:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:46:43.853+03	2021-05-21 22:46:43.861+03	
483d816a-6efb-b0f6-1c69-956a3765bef4	2021-05-21 22:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:47:04.853+03	2021-05-21 22:47:04.86+03	
f9138424-e5c1-ba7e-042f-5d6494ce7366	2021-05-21 22:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:47:25.852+03	2021-05-21 22:47:25.872+03	
a9a7eaf1-7824-031f-23d7-95ffa6eb857f	2021-05-21 22:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:47:45.853+03	2021-05-21 22:47:45.866+03	
2a7cfb02-806d-1fe0-299f-21ab0f278642	2021-05-21 22:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:48:06.853+03	2021-05-21 22:48:06.861+03	
ec22a9f9-ea2d-2554-4a2a-7d5000a22cc8	2021-05-21 22:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:48:27.853+03	2021-05-21 22:48:27.863+03	
7dfba430-b175-a359-c939-84ac13985b09	2021-05-21 22:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:48:47.853+03	2021-05-21 22:48:47.859+03	
b70e16ad-f15e-c1c7-6b61-1839878ada4f	2021-05-21 22:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:49:08.853+03	2021-05-21 22:49:08.86+03	
9b273ea1-8dc3-830f-bf37-0de17801c852	2021-05-21 22:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:49:28.853+03	2021-05-21 22:49:28.86+03	
1621ad10-afcd-f085-fd43-7d8eaa27ec7e	2021-05-21 22:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:49:49.853+03	2021-05-21 22:49:49.861+03	
0bd28b47-af36-a2bc-9cc0-17a1d1598033	2021-05-21 22:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:50:10.853+03	2021-05-21 22:50:10.86+03	
c782a977-ec97-369f-ffe3-251754588111	2021-05-21 22:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:50:30.853+03	2021-05-21 22:50:30.86+03	
5d9bde65-3b0d-8dda-c7d3-ff3229ed80f5	2021-05-21 22:50:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:50:50.853+03	2021-05-21 22:50:50.859+03	
9ec85e63-95ae-acde-1d13-7537d6c36807	2021-05-21 22:51:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:51:11.853+03	2021-05-21 22:51:11.86+03	
14ea25c9-16b3-e670-7b84-2d11f473a450	2021-05-21 22:51:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:51:32.852+03	2021-05-21 22:51:32.859+03	
8deac39c-c249-0cc5-46fb-e28e67307a5a	2021-05-21 22:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:30:26.853+03	2021-05-21 22:30:26.859+03	
e6933a17-7795-cee0-d1c5-86d034ad0ae2	2021-05-21 22:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:30:47.853+03	2021-05-21 22:30:47.86+03	
16c5d974-583d-5700-fb97-8e7040acba62	2021-05-21 22:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:31:08.853+03	2021-05-21 22:31:08.86+03	
87a5b4d8-72ef-e2c7-ca06-aa81639bd3fe	2021-05-21 22:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:31:28.853+03	2021-05-21 22:31:28.871+03	
9f386308-0a38-330c-0779-f39720267df8	2021-05-21 22:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:31:48.853+03	2021-05-21 22:31:48.862+03	
603ac881-c516-d66d-fb8a-c848b101aa82	2021-05-21 22:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:32:08.853+03	2021-05-21 22:32:08.859+03	
e1140daf-b676-cd85-1cf2-8a5f6cf30a83	2021-05-21 22:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:32:29.853+03	2021-05-21 22:32:29.86+03	
52bf166f-3489-66f9-8137-0f737f044bd9	2021-05-21 22:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:32:50.852+03	2021-05-21 22:32:50.86+03	
d1360bb5-1e9c-13f7-60fb-44ecb2039d55	2021-05-21 22:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:33:10.853+03	2021-05-21 22:33:10.86+03	
44676fd6-29e2-3c0d-7bf4-9e84a9ceded6	2021-05-21 22:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:33:31.853+03	2021-05-21 22:33:31.86+03	
043cef21-0c7e-e55d-3d69-14ebdbdbe6ea	2021-05-21 22:33:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:33:51.854+03	2021-05-21 22:33:51.86+03	
9ba241c6-ce99-28fa-187d-a5bbb93910cf	2021-05-21 22:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:34:12.853+03	2021-05-21 22:34:12.859+03	
ff7268bc-6163-b241-cdc1-6d1ad22f46ec	2021-05-21 22:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:34:32.853+03	2021-05-21 22:34:32.859+03	
7cd45a4b-e9e6-864d-49a7-b1e37177d2ef	2021-05-21 22:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:34:53.853+03	2021-05-21 22:34:53.872+03	
2553a049-e9a4-1a0e-1c8e-42cfab6f4102	2021-05-21 22:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:35:13.853+03	2021-05-21 22:35:13.86+03	
aaeef125-e9e8-d35f-86c5-b6e0923635c2	2021-05-21 22:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:35:34.852+03	2021-05-21 22:35:34.859+03	
8b6c4dc8-7f09-e709-74d6-6838b0d56e31	2021-05-21 22:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:35:55.853+03	2021-05-21 22:35:55.859+03	
13ec322d-deaa-0809-b6b4-3457005bc89f	2021-05-21 22:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:36:15.853+03	2021-05-21 22:36:15.865+03	
c52f1d83-1167-58bf-baec-2212b9355599	2021-05-21 22:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:36:35.853+03	2021-05-21 22:36:35.859+03	
548e7ca5-ed56-7252-29de-016f3be93170	2021-05-21 22:36:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:36:56.853+03	2021-05-21 22:36:56.859+03	
19ce2f68-710b-7916-aeb2-1d7a502d8bca	2021-05-21 22:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:37:17.852+03	2021-05-21 22:37:17.858+03	
34bb1621-f9ef-2451-203f-fa0639bd6008	2021-05-21 22:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:37:37.853+03	2021-05-21 22:37:37.859+03	
a535b20d-34dd-d097-380a-8d8ae43c3dab	2021-05-21 22:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:37:57.853+03	2021-05-21 22:37:57.859+03	
9a5388d4-a4e8-f723-dc60-17931a8aa834	2021-05-21 22:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:38:18.853+03	2021-05-21 22:38:18.864+03	
3181a0ae-a7cb-c227-73da-62a06d047a4e	2021-05-21 22:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:38:39.853+03	2021-05-21 22:38:39.859+03	
0080bf9c-12ae-a6c1-b4b1-daf5318d2a57	2021-05-21 22:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:39:00.853+03	2021-05-21 22:39:00.859+03	
f17646bc-9fea-5438-f131-ed221f3585d8	2021-05-21 22:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:39:20.853+03	2021-05-21 22:39:20.86+03	
8c021caf-79b1-0aa6-ab50-116196b60138	2021-05-21 22:39:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:39:31.852+03	2021-05-21 22:39:31.859+03	
1ae06686-e293-638c-f669-db4ca5150b79	2021-05-21 22:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:39:52.852+03	2021-05-21 22:39:52.859+03	
4b2314c5-0ce9-8262-718d-f54604f15b48	2021-05-21 22:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:40:02.852+03	2021-05-21 22:40:02.866+03	
8530d75f-1376-e508-5c1a-e7deb65213cb	2021-05-21 22:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:40:22.852+03	2021-05-21 22:40:22.859+03	
ab71996c-a389-f8b3-be02-2fe2d132ffc2	2021-05-21 22:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:40:42.852+03	2021-05-21 22:40:42.858+03	
6d4c742f-b645-4dc9-2720-d7b7fc92fbc8	2021-05-21 22:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:41:02.853+03	2021-05-21 22:41:02.86+03	
581d774d-3d96-b44c-0ae9-608f136bd699	2021-05-21 22:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:41:24.853+03	2021-05-21 22:41:24.859+03	
6818ada8-ff91-c3c0-648a-aa011c724ad4	2021-05-21 22:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:41:44.853+03	2021-05-21 22:41:44.859+03	
59a9b50f-4721-b9c3-d9f4-4c5f5c6c9ef2	2021-05-21 22:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:42:05.852+03	2021-05-21 22:42:05.866+03	
52e1a93e-171e-5720-2731-d0bbdcde66c7	2021-05-21 22:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:42:25.852+03	2021-05-21 22:42:25.86+03	
3908b53b-f775-fefa-cc15-fe0da9b9f2de	2021-05-21 22:42:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:42:46.852+03	2021-05-21 22:42:46.86+03	
108b3a66-b1a0-e413-81d9-fc90072709f3	2021-05-21 22:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:43:07.853+03	2021-05-21 22:43:07.86+03	
43ae568e-f9df-6260-8541-32aac76a5ac9	2021-05-21 22:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:43:28.853+03	2021-05-21 22:43:28.862+03	
9ca1452d-bac5-b2de-4256-96342feef351	2021-05-21 22:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:43:50.853+03	2021-05-21 22:43:50.86+03	
104a13bc-1d8f-232b-b259-54b47bc5b852	2021-05-21 22:44:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:44:11.853+03	2021-05-21 22:44:11.86+03	
2736d398-2226-2b4a-15c9-fae9b50f1e38	2021-05-21 22:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:44:31.854+03	2021-05-21 22:44:31.86+03	
c3116353-9c03-1481-24b5-5a8bd3599ea9	2021-05-21 22:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:44:52.852+03	2021-05-21 22:44:52.858+03	
ae949aae-27e4-20a0-5501-f2c698aaf9d2	2021-05-21 22:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:45:12.853+03	2021-05-21 22:45:12.86+03	
9302a46d-5302-7e98-926a-a381e321e8bd	2021-05-21 22:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:45:33.852+03	2021-05-21 22:45:33.859+03	
3b6a61ef-e0a4-4582-83fb-855d2fe08250	2021-05-21 22:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:45:53.853+03	2021-05-21 22:45:53.859+03	
2771df95-a103-300f-1ebd-d69036b3fcee	2021-05-21 22:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:46:13.853+03	2021-05-21 22:46:13.86+03	
f7c757db-7a30-6116-f649-2f61538fdd2a	2021-05-21 22:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:46:33.853+03	2021-05-21 22:46:33.859+03	
77bf361d-e036-aaac-5bff-06eac061a7df	2021-05-21 22:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:46:54.852+03	2021-05-21 22:46:54.87+03	
f2241880-eb96-bcb6-29a9-c0b1e645beea	2021-05-21 22:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:47:14.853+03	2021-05-21 22:47:14.861+03	
a3da8795-a1dd-4f47-0a2b-bf4297d3074a	2021-05-21 22:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:47:35.853+03	2021-05-21 22:47:35.86+03	
18fa50d5-d1ac-a11f-f749-5623fc09b0b8	2021-05-21 22:47:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:47:56.853+03	2021-05-21 22:47:56.861+03	
10894121-f342-cfb1-f76b-48f2da14aef3	2021-05-21 22:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:48:17.852+03	2021-05-21 22:48:17.871+03	
edaca6bf-502d-c195-e44e-f5fce1dd7b1f	2021-05-21 22:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:48:37.853+03	2021-05-21 22:48:37.859+03	
a572decb-3ba9-f43a-411f-19b4906f226e	2021-05-21 22:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:48:57.853+03	2021-05-21 22:48:57.86+03	
85c6e389-4194-4b7c-dfee-21b6a2c2c718	2021-05-21 22:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:49:18.853+03	2021-05-21 22:49:18.86+03	
58ad51e9-b4ee-d6d9-8d40-c30906dd11e2	2021-05-21 22:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:49:38.853+03	2021-05-21 22:49:38.861+03	
8e71df4d-6e55-e585-3c22-9ecfc39c06f0	2021-05-21 22:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:50:00.852+03	2021-05-21 22:50:00.86+03	
9caae6f9-eeed-31dc-ae49-5d6fe47e450f	2021-05-21 22:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 22:50:00.853+03	2021-05-21 22:50:00.871+03	ERROR
eea3a3a0-3bd9-d604-8c3d-1fda73e3edb2	2021-05-21 22:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:50:20.853+03	2021-05-21 22:50:20.859+03	
e5b13d62-def7-c050-9dde-c805f82017f5	2021-05-21 22:50:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:50:40.853+03	2021-05-21 22:50:40.86+03	
320f522b-5fa5-1283-c72e-07a99f2a2968	2021-05-21 22:51:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:51:01.853+03	2021-05-21 22:51:01.879+03	
bd4f2e3c-3255-c4af-4bcd-49f0f231e95e	2021-05-21 22:51:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:51:22.852+03	2021-05-21 22:51:22.859+03	
90dd86a6-f155-3a8b-933f-1ea37f989365	2021-05-21 22:51:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:51:42.852+03	2021-05-21 22:51:42.858+03	
c167d1fb-10b1-8612-a7a2-3386e15658bc	2021-05-21 22:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:52:02.852+03	2021-05-21 22:52:02.867+03	
f8a344e0-e8cf-fd9d-3494-9cfd19ef9566	2021-05-21 22:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:52:23.853+03	2021-05-21 22:52:23.862+03	
5dc86ec4-345b-8be3-642a-434f3a497ad7	2021-05-21 22:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:52:44.853+03	2021-05-21 22:52:44.861+03	
4dbcd17d-5b3b-80ce-6186-9df0e3c965e2	2021-05-21 22:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:53:05.852+03	2021-05-21 22:53:05.858+03	
d26545cb-2f67-63ab-648a-35d5e9291e9a	2021-05-21 22:53:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:53:26.854+03	2021-05-21 22:53:26.862+03	
d0b04851-7968-0cf6-ae59-af2267cfc640	2021-05-21 22:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:53:47.853+03	2021-05-21 22:53:47.861+03	
68a0796f-dfb8-98b8-0f20-af7916c9875f	2021-05-21 22:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:54:07.853+03	2021-05-21 22:54:07.862+03	
576e384f-3604-2123-294f-bdfc8cd2deca	2021-05-21 22:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:54:28.852+03	2021-05-21 22:54:28.859+03	
e32b8bdd-cc83-4aff-bc27-057217fb0c96	2021-05-21 22:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:54:48.852+03	2021-05-21 22:54:48.858+03	
cd395fdf-9cc2-f414-f8f3-572355fa69a0	2021-05-21 22:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:55:08.852+03	2021-05-21 22:55:08.869+03	
22feec59-39d7-97d2-ab2e-db25d497b5b3	2021-05-21 22:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:55:29.852+03	2021-05-21 22:55:29.86+03	
ccaf5576-2285-58ef-9f0d-43405d39916d	2021-05-21 22:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:55:50.852+03	2021-05-21 22:55:50.859+03	
e3ba4cb1-1374-51a8-b1ff-127f546b5857	2021-05-21 22:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:56:10.853+03	2021-05-21 22:56:10.861+03	
27c27761-050e-ca28-9eb9-2e21a97a62d4	2021-05-21 22:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:56:30.853+03	2021-05-21 22:56:30.86+03	
38514a33-eae1-d4e7-2eec-e0f6eca90e98	2021-05-21 22:56:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:56:51.854+03	2021-05-21 22:56:51.86+03	
ad78704f-9591-1712-6dca-156331fae20c	2021-05-21 22:57:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:57:12.853+03	2021-05-21 22:57:12.859+03	
b1b1c7c6-470b-651c-1330-3b8d94bd30cc	2021-05-21 22:57:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:57:32.853+03	2021-05-21 22:57:32.86+03	
1d990d2f-10aa-328a-8fa5-46d9e4c8ff47	2021-05-21 22:57:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:57:52.853+03	2021-05-21 22:57:52.859+03	
650e307c-f1e1-07b9-71ca-3119ab1b2f8f	2021-05-21 22:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:58:13.852+03	2021-05-21 22:58:13.87+03	
d30b5dbd-e957-03b3-37bf-fb57f019830a	2021-05-21 22:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:58:34.852+03	2021-05-21 22:58:34.858+03	
58f3644e-15f4-a178-7004-a2d86e939d42	2021-05-21 22:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:58:54.853+03	2021-05-21 22:58:54.861+03	
655b2279-5d21-e111-a6f1-f75fc7933c2a	2021-05-21 22:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:59:14.853+03	2021-05-21 22:59:14.864+03	
e002be99-62bc-5c28-9d2d-b69f4a98cb18	2021-05-21 22:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:59:35.853+03	2021-05-21 22:59:35.861+03	
e6693c7a-bd9b-253e-2a09-4a2c4ddae788	2021-05-21 22:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:59:55.853+03	2021-05-21 22:59:55.86+03	
71eebfb2-3bc9-d002-60c3-decf4f38a5e7	2021-05-21 23:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:00:05.853+03	2021-05-21 23:00:05.861+03	
870646a1-3902-18d8-36d2-d05b8e19912a	2021-05-21 23:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:00:25.853+03	2021-05-21 23:00:25.859+03	
d66cbd24-fe87-95b8-5a50-f504c780a339	2021-05-21 23:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:00:45.853+03	2021-05-21 23:00:45.86+03	
577fdc30-eea3-3f59-6021-de7851c9ed84	2021-05-21 23:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:01:05.853+03	2021-05-21 23:01:05.863+03	
b0af3244-0b41-9dad-53b0-41606a2c536d	2021-05-21 23:01:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:01:26.852+03	2021-05-21 23:01:26.858+03	
a3f1504c-4f28-e5ce-53b4-fc7b41382058	2021-05-21 23:01:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:01:46.852+03	2021-05-21 23:01:46.859+03	
bb9d0037-3d41-a60f-2c93-a293129369b1	2021-05-21 23:02:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:02:07.852+03	2021-05-21 23:02:07.861+03	
b25e0808-0b4b-d3ee-9a89-6a001643269f	2021-05-21 23:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:02:27.853+03	2021-05-21 23:02:27.859+03	
4d7ee011-31ae-928f-db3e-4fd22df518f6	2021-05-21 23:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:02:48.853+03	2021-05-21 23:02:48.864+03	
23d9a99b-d82e-10e7-eed4-07fd99431034	2021-05-21 23:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:03:08.853+03	2021-05-21 23:03:08.86+03	
81177c14-3ac2-712b-fc86-b15ed1877872	2021-05-21 23:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:03:28.853+03	2021-05-21 23:03:28.861+03	
c6829017-233a-e539-7fec-16e45f858a02	2021-05-21 23:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:03:49.853+03	2021-05-21 23:03:49.861+03	
b7effa6e-195a-c9b8-7911-efd091e83609	2021-05-21 23:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:04:10.853+03	2021-05-21 23:04:10.861+03	
4fcb7b51-1364-742c-1462-dec2ee9b65bd	2021-05-21 23:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:04:30.853+03	2021-05-21 23:04:30.86+03	
de2fec33-dd40-bf7f-4100-aa9e1b915a91	2021-05-21 23:04:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:04:51.854+03	2021-05-21 23:04:51.86+03	
90a28a60-770d-095e-15b5-00333de23449	2021-05-21 23:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:05:12.853+03	2021-05-21 23:05:12.86+03	
d6de5e3f-9ffd-1e96-a1d4-44d0f7618c60	2021-05-21 23:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:05:33.853+03	2021-05-21 23:05:33.859+03	
71c3e265-498e-8818-209a-ab4bd772f129	2021-05-21 23:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:05:53.853+03	2021-05-21 23:05:53.859+03	
8b9dc63e-0dd8-eede-5158-f78905a5a554	2021-05-21 23:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:06:14.852+03	2021-05-21 23:06:14.858+03	
65909269-d7fe-ff31-7064-6a6a623c3e3b	2021-05-21 23:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:06:34.852+03	2021-05-21 23:06:34.865+03	
4ff29282-a968-9e2d-f15b-95258ad5df12	2021-05-21 23:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:06:54.853+03	2021-05-21 23:06:54.874+03	
8b43449b-66dc-caf9-5876-25cc883697fc	2021-05-21 23:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:07:14.853+03	2021-05-21 23:07:14.859+03	
0cf6c9cb-5319-000c-d295-9f4e75045df8	2021-05-21 23:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:07:35.852+03	2021-05-21 23:07:35.87+03	
3381ebcb-638f-bfd5-7cc4-0fcd98cd1a83	2021-05-21 23:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:07:55.853+03	2021-05-21 23:07:55.859+03	
01ab9c21-e052-f5b6-35a2-8e378ab5fef4	2021-05-21 23:08:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:08:16.852+03	2021-05-21 23:08:16.859+03	
49c9a789-9a79-e34d-eaa4-63dd7b5da8ce	2021-05-21 23:08:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:08:36.853+03	2021-05-21 23:08:36.861+03	
ecb3224e-79f2-8ba7-1a1e-2d8b203ae8ee	2021-05-21 23:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:08:57.853+03	2021-05-21 23:08:57.859+03	
13807dc4-8ca1-e33a-1b30-458a04a39511	2021-05-21 23:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:09:17.853+03	2021-05-21 23:09:17.868+03	
ec861a92-ff52-8141-ebfc-2ae04ad12fb0	2021-05-21 23:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:09:37.853+03	2021-05-21 23:09:37.858+03	
568834d4-7062-ffac-ab28-16a4bdde3759	2021-05-21 23:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:09:58.853+03	2021-05-21 23:09:58.86+03	
336b6493-99bd-eb86-0e60-38e845f85281	2021-05-21 23:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:10:09.853+03	2021-05-21 23:10:09.859+03	
e359fe2d-4c8e-23de-8e6f-9df317ee20a2	2021-05-21 23:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:10:29.853+03	2021-05-21 23:10:29.86+03	
b1a1500c-17ba-e4cd-c234-4a0336b76df2	2021-05-21 23:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:10:49.853+03	2021-05-21 23:10:49.861+03	
9e761db1-aa1c-fe0a-a620-6c28a4bf6b9e	2021-05-21 23:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:11:09.853+03	2021-05-21 23:11:09.861+03	
537b2b5c-1034-f601-1162-d845624365c0	2021-05-21 23:11:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:11:30.853+03	2021-05-21 23:11:30.86+03	
f0bfc06a-b846-67f0-919a-62cc903b146d	2021-05-21 23:11:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:11:51.853+03	2021-05-21 23:11:51.87+03	
d6486c61-04da-f673-0828-05e271ce364b	2021-05-21 23:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:12:12.853+03	2021-05-21 23:12:12.859+03	
7bbe9109-a4f2-4454-ee8d-c6ba5f407baa	2021-05-21 22:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:51:52.852+03	2021-05-21 22:51:52.859+03	
fbf483d2-c662-5dd0-c60c-b96402ad5c33	2021-05-21 22:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:52:12.853+03	2021-05-21 22:52:12.859+03	
9905d034-0470-2756-be35-7c75ba7a169c	2021-05-21 22:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:52:34.852+03	2021-05-21 22:52:34.859+03	
9dd8eab8-3b8f-4638-7cc1-8f0812bae5e6	2021-05-21 22:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:52:54.853+03	2021-05-21 22:52:54.86+03	
2c26961b-132c-a247-5896-27ec8de42781	2021-05-21 22:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:53:15.853+03	2021-05-21 22:53:15.859+03	
6ba8c3c1-1c5e-84a2-5f09-d3960101cebd	2021-05-21 22:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:53:37.853+03	2021-05-21 22:53:37.86+03	
7c63101e-1ad9-09d3-a290-6bcf50f31e0e	2021-05-21 22:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:53:57.853+03	2021-05-21 22:53:57.859+03	
d92a4bd3-17ae-50ec-3b12-432847ca1887	2021-05-21 22:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:54:18.852+03	2021-05-21 22:54:18.858+03	
5341538d-4458-a70d-7b89-778873629186	2021-05-21 22:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:54:38.852+03	2021-05-21 22:54:38.858+03	
e8e9b569-a37a-1cb9-635f-0d1c5d81fdfb	2021-05-21 22:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:54:58.852+03	2021-05-21 22:54:58.859+03	
569fa788-a66b-01fe-9557-8386e7a3649a	2021-05-21 22:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:55:18.853+03	2021-05-21 22:55:18.86+03	
c2cd2cac-fe50-2280-edb4-102b0f620e33	2021-05-21 22:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:55:39.853+03	2021-05-21 22:55:39.859+03	
ca34b2e0-25b1-945c-26c8-1b8c33c63f21	2021-05-21 22:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:56:00.853+03	2021-05-21 22:56:00.86+03	
fe16cdb7-acdd-1148-064f-ead8a1c6a758	2021-05-21 22:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:56:20.853+03	2021-05-21 22:56:20.859+03	
c08ed8a4-e244-3740-3f16-32b8e7551a7d	2021-05-21 22:56:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:56:41.852+03	2021-05-21 22:56:41.86+03	
cde5ccfb-114c-5f5e-a52a-ee37f88591a8	2021-05-21 22:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:57:02.853+03	2021-05-21 22:57:02.859+03	
acadcc1f-e0a4-9ad9-0d83-6dea74806ad2	2021-05-21 22:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:57:22.853+03	2021-05-21 22:57:22.863+03	
47c9a688-1b43-8b8e-d1ec-2af0786d7d8e	2021-05-21 22:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:57:42.853+03	2021-05-21 22:57:42.859+03	
ccac5d51-08d7-9599-1357-02bd3ac4fc1d	2021-05-21 22:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:58:02.853+03	2021-05-21 22:58:02.859+03	
17a7fb01-8096-0c38-fefa-307d080ed9a2	2021-05-21 22:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:58:23.853+03	2021-05-21 22:58:23.859+03	
7d48ddc5-8f17-9945-e3ae-1ebf7c0ee0a1	2021-05-21 22:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:58:44.852+03	2021-05-21 22:58:44.859+03	
dbe3c997-d268-d8e3-25f5-070e2c3adb6b	2021-05-21 22:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:59:04.853+03	2021-05-21 22:59:04.86+03	
f8b12711-835e-a1ef-d412-6b135e15dc86	2021-05-21 22:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:59:25.853+03	2021-05-21 22:59:25.878+03	
522908cd-dd84-2931-eefd-f5bb9bc438a0	2021-05-21 22:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 22:59:45.853+03	2021-05-21 22:59:45.86+03	
ce7e4910-e3b3-1bf3-fe46-18908abac9fc	2021-05-21 23:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 23:00:00.853+03	2021-05-21 23:00:00.859+03	ERROR
8f562d2f-3110-965d-7f30-77a1e4f1f8f0	2021-05-21 23:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:00:15.853+03	2021-05-21 23:00:15.863+03	
e6fa2a74-dda1-5132-7869-7431d19ee1e2	2021-05-21 23:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:00:35.853+03	2021-05-21 23:00:35.863+03	
3c0c0cc5-6a5d-2b03-51e2-f5ee6fca73d2	2021-05-21 23:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:00:55.853+03	2021-05-21 23:00:55.862+03	
fd88f20c-f4a9-c773-c6e7-f0b775711131	2021-05-21 23:01:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:01:16.852+03	2021-05-21 23:01:16.859+03	
c88046d9-a64f-5257-de85-02cd9109f74e	2021-05-21 23:01:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:01:36.852+03	2021-05-21 23:01:36.859+03	
05bac6cb-e9b6-a211-2886-f4723c7f6636	2021-05-21 23:01:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:01:56.853+03	2021-05-21 23:01:56.86+03	
a7731506-20a5-934c-381a-fa7750141c6c	2021-05-21 23:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:02:17.853+03	2021-05-21 23:02:17.862+03	
c8d380a6-7638-c4d9-f222-5e809dbaa309	2021-05-21 23:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:02:37.853+03	2021-05-21 23:02:37.864+03	
dea4e711-aa0f-8588-6988-e77c6a6df325	2021-05-21 23:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:02:58.853+03	2021-05-21 23:02:58.859+03	
636d68ba-585b-7900-55be-34268457d696	2021-05-21 23:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:03:18.853+03	2021-05-21 23:03:18.86+03	
6775c3cc-45b5-dd01-0948-10fa57078834	2021-05-21 23:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:03:39.853+03	2021-05-21 23:03:39.863+03	
fa4b87ae-4fda-4364-2e3b-c547b0aecdc4	2021-05-21 23:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:04:00.852+03	2021-05-21 23:04:00.862+03	
4102df01-3fef-9b59-b7ba-c039b8fea99d	2021-05-21 23:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:04:20.853+03	2021-05-21 23:04:20.859+03	
4720cc24-7732-5aac-32d0-cf70bba8fda6	2021-05-21 23:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:04:40.853+03	2021-05-21 23:04:40.86+03	
e69c4b75-88b0-5f7b-73e0-17114bc49e9f	2021-05-21 23:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:05:02.852+03	2021-05-21 23:05:02.858+03	
fcbb4910-a06d-89f2-4ed6-916944a7311d	2021-05-21 23:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:05:23.853+03	2021-05-21 23:05:23.859+03	
bc9807a3-1a62-8d81-b732-00b18e88ab80	2021-05-21 23:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:05:43.853+03	2021-05-21 23:05:43.863+03	
cd6137d5-0e71-71dc-9953-dc4958060a0b	2021-05-21 23:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:06:03.853+03	2021-05-21 23:06:03.859+03	
235a18fd-f9a3-d26f-847a-643fcdce33e3	2021-05-21 23:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:06:24.852+03	2021-05-21 23:06:24.858+03	
31bee83b-f793-4390-547d-b776564e3292	2021-05-21 23:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:06:44.853+03	2021-05-21 23:06:44.859+03	
366c17a2-5062-4b70-b127-77eda5a79540	2021-05-21 23:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:07:04.853+03	2021-05-21 23:07:04.859+03	
492f9c61-2e68-d915-607b-53a76c92f345	2021-05-21 23:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:07:25.852+03	2021-05-21 23:07:25.859+03	
f2702d7f-8003-2307-6147-a16f241a0329	2021-05-21 23:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:07:45.852+03	2021-05-21 23:07:45.86+03	
4266df9c-06f8-fbc5-dace-81d38e6d618e	2021-05-21 23:08:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:08:06.852+03	2021-05-21 23:08:06.86+03	
41abcb3b-683d-98fe-6dfd-49f8473b19cc	2021-05-21 23:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:08:26.853+03	2021-05-21 23:08:26.868+03	
e5108c44-6630-63ed-6f76-38814c28a7fe	2021-05-21 23:08:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:08:46.854+03	2021-05-21 23:08:46.861+03	
b4d9d774-4d8c-95f7-c3ed-5b9a18b756ac	2021-05-21 23:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:09:07.853+03	2021-05-21 23:09:07.86+03	
f2b0fdd0-65d4-c336-83cc-71cff6c0228a	2021-05-21 23:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:09:27.853+03	2021-05-21 23:09:27.859+03	
e0eee9df-3f04-cdd8-04a4-95af52c78709	2021-05-21 23:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:09:48.852+03	2021-05-21 23:09:48.859+03	
058e8f1f-bf2e-47d5-dfda-a1b92449c403	2021-05-21 23:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 23:10:00.852+03	2021-05-21 23:10:00.858+03	ERROR
486a794c-4345-268d-7fcf-2d5a76020408	2021-05-21 23:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:10:19.853+03	2021-05-21 23:10:19.859+03	
33ebe361-bf15-0acb-958c-6883c36a49cd	2021-05-21 23:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:10:39.853+03	2021-05-21 23:10:39.869+03	
d0b789ff-4af0-b4b9-bc49-8f47279c8bc9	2021-05-21 23:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:10:59.853+03	2021-05-21 23:10:59.896+03	
f232b645-648e-fbb3-2eab-d9d81dfd806f	2021-05-21 23:11:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:11:20.853+03	2021-05-21 23:11:20.86+03	
37dac706-78a2-3135-d70d-e023e160a763	2021-05-21 23:11:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:11:41.853+03	2021-05-21 23:11:41.859+03	
0762e8aa-c50d-92cc-a16a-1439e290f4ee	2021-05-21 23:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:12:02.853+03	2021-05-21 23:12:02.86+03	
e2618fcc-aadc-8be1-b26a-f9e85002649f	2021-05-21 23:12:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:12:22.853+03	2021-05-21 23:12:22.86+03	
d0341c62-9bbf-bcda-3534-2e2a1489745d	2021-05-21 23:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:12:42.853+03	2021-05-21 23:12:42.865+03	
2d38232c-12f2-8183-44af-59c8fc595a3e	2021-05-21 23:12:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:12:32.853+03	2021-05-21 23:12:32.86+03	
0c847723-73c8-0c0e-982b-a156aa68dd08	2021-05-21 23:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:12:52.853+03	2021-05-21 23:12:52.86+03	
3f4ee546-ba36-cf12-d7f8-efee9232f5c9	2021-05-21 23:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:13:12.853+03	2021-05-21 23:13:12.859+03	
31277b1a-d0d5-c2d8-16a2-5ea1a59df2e0	2021-05-21 23:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:13:32.853+03	2021-05-21 23:13:32.866+03	
db720380-65e8-3b34-ac87-82001248901f	2021-05-21 23:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:13:53.852+03	2021-05-21 23:13:53.859+03	
1f4794fe-3ac4-27b2-85b5-4b1b80055116	2021-05-21 23:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:14:13.853+03	2021-05-21 23:14:13.86+03	
4a53a730-d0fd-ca8f-f4bd-af676381d4f8	2021-05-21 23:14:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:14:33.853+03	2021-05-21 23:14:33.872+03	
8281a335-4a3f-b5bd-a479-4c51282ad7ec	2021-05-21 23:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:14:53.853+03	2021-05-21 23:14:53.859+03	
75e9594c-bc68-491c-91b1-c101adc5982e	2021-05-21 23:15:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:15:14.853+03	2021-05-21 23:15:14.86+03	
34fe917b-3f34-b2b4-32cc-2e060ca1a231	2021-05-21 23:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:15:35.853+03	2021-05-21 23:15:35.859+03	
b01f7c77-6cb2-69c1-ac84-37de02279906	2021-05-21 23:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:15:55.853+03	2021-05-21 23:15:55.86+03	
8c94f710-daad-1a46-463b-92ffe4a038ec	2021-05-21 23:16:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:16:16.854+03	2021-05-21 23:16:16.862+03	
cebc230b-548d-c3fa-5ec5-8f1b08b316a0	2021-05-21 23:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:16:37.853+03	2021-05-21 23:16:37.859+03	
4c12cf7f-9d5b-9729-9f0b-ae6c706a0088	2021-05-21 23:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:16:57.853+03	2021-05-21 23:16:57.859+03	
d68361e3-7f0d-aedc-fd54-f580231fb34a	2021-05-21 23:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:17:17.853+03	2021-05-21 23:17:17.859+03	
fa1d0c74-affc-142f-3cac-c0e827e1f8fa	2021-05-21 23:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:17:39.852+03	2021-05-21 23:17:39.859+03	
3852ebaa-ada2-335e-7010-0fa664ec2451	2021-05-21 23:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:18:00.852+03	2021-05-21 23:18:00.859+03	
8ee06663-7dac-fd1b-c62c-ad544c95c327	2021-05-21 23:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:18:21.852+03	2021-05-21 23:18:21.859+03	
1255c0f3-50b1-8fc7-6a8a-68083e99dca9	2021-05-21 23:18:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:18:41.853+03	2021-05-21 23:18:41.86+03	
4665adb8-cbda-70d2-7251-a51a4990e7ac	2021-05-21 23:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:19:02.852+03	2021-05-21 23:19:02.858+03	
97e2a5c6-46a8-a769-84bb-5576dfaad8f6	2021-05-21 23:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:19:22.853+03	2021-05-21 23:19:22.864+03	
de4fd2e9-8517-1920-ac96-84175a33aa28	2021-05-21 23:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:19:43.852+03	2021-05-21 23:19:43.858+03	
97d6571d-8699-bbbc-678b-c3138d324a69	2021-05-21 23:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 23:20:00.853+03	2021-05-21 23:20:00.858+03	ERROR
bb1ea72f-b67a-946a-6935-7d94d2aac84d	2021-05-21 23:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:20:13.852+03	2021-05-21 23:20:13.859+03	
eda53645-c07c-808e-c8ef-cdd7cc370020	2021-05-21 23:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:20:33.852+03	2021-05-21 23:20:33.859+03	
8a773aa2-1397-e7f3-d61c-ccd4ae6e1516	2021-05-21 23:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:20:53.853+03	2021-05-21 23:20:53.86+03	
90475e56-14fd-32a4-8328-e0879b89669e	2021-05-21 23:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:21:13.853+03	2021-05-21 23:21:13.861+03	
954a8833-1949-4f13-5cea-030d11512d72	2021-05-21 23:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:21:34.853+03	2021-05-21 23:21:34.859+03	
091640fe-396d-d809-32e9-315993081eb0	2021-05-21 23:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:21:54.853+03	2021-05-21 23:21:54.859+03	
7d97401c-74a1-1170-a520-87aef42c3c2d	2021-05-21 23:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:22:15.853+03	2021-05-21 23:22:15.861+03	
38244fe5-98ff-c3a7-3c7b-d13d5193484f	2021-05-21 23:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:22:35.853+03	2021-05-21 23:22:35.861+03	
8bb88a2e-8b92-24d6-4e7d-06468f26c562	2021-05-21 23:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:22:55.853+03	2021-05-21 23:22:55.869+03	
3cb9ab77-d277-fe7e-58f6-7a3f7dbc7e19	2021-05-21 23:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:23:15.853+03	2021-05-21 23:23:15.866+03	
5c01f231-c0fa-79f8-a4d4-f2b48b1459e6	2021-05-21 23:23:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:23:36.852+03	2021-05-21 23:23:36.867+03	
08dfcb76-c157-2df4-a180-5dbee01da55e	2021-05-21 23:23:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:23:56.853+03	2021-05-21 23:23:56.861+03	
29cc7288-f92b-f557-5513-1b0df2c6dd9a	2021-05-21 23:24:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:24:16.853+03	2021-05-21 23:24:16.86+03	
5698e99b-15c5-2f77-7ac0-0ad89dd63622	2021-05-21 23:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:24:37.853+03	2021-05-21 23:24:37.859+03	
f2f7d2e5-7c50-c6d3-db09-e4da1c907d5b	2021-05-21 23:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:24:57.853+03	2021-05-21 23:24:57.867+03	
e8864b15-82f1-5e5b-e3fc-8cc9464f44eb	2021-05-21 23:25:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:25:17.853+03	2021-05-21 23:25:17.859+03	
8cb122d8-3094-a873-5197-179d7f38c475	2021-05-21 23:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:25:37.853+03	2021-05-21 23:25:37.859+03	
647b0236-8155-d46d-ba5a-12f7953a2ca4	2021-05-21 23:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:25:57.853+03	2021-05-21 23:25:57.859+03	
cb21bd0d-47b4-eef0-fcff-9b61608887d6	2021-05-21 23:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:26:17.853+03	2021-05-21 23:26:17.859+03	
b6293a75-c97e-00cd-8cc9-75823ca8b15d	2021-05-21 23:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:26:37.853+03	2021-05-21 23:26:37.859+03	
a2bd00af-6846-6f4c-c725-f76360a131ac	2021-05-21 23:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:26:57.853+03	2021-05-21 23:26:57.859+03	
6e4c0f9b-dd00-a37c-f746-fdf0dd1f77b5	2021-05-21 23:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:27:17.853+03	2021-05-21 23:27:17.86+03	
c133197d-f800-654b-7d0e-a7b41724daa0	2021-05-21 23:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:27:38.853+03	2021-05-21 23:27:38.86+03	
fae2d5df-55c2-2d99-d8af-858599c66ee1	2021-05-21 23:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:27:59.853+03	2021-05-21 23:27:59.865+03	
c252cbd4-c14e-554f-34a6-aa29d4ac7989	2021-05-21 23:28:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:28:20.853+03	2021-05-21 23:28:20.859+03	
4d6c41bb-de86-91ff-fa8f-3201b6cb01cf	2021-05-21 23:28:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:28:41.853+03	2021-05-21 23:28:41.859+03	
d1c579a7-fb99-0cab-3d5a-a449b7e41d03	2021-05-21 23:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:29:02.852+03	2021-05-21 23:29:02.866+03	
a81603f3-f4bc-3e1b-6dc7-331ea52a20eb	2021-05-21 23:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:29:22.853+03	2021-05-21 23:29:22.862+03	
fba01939-5b6c-ec5e-6f31-633144360487	2021-05-21 23:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:29:42.853+03	2021-05-21 23:29:42.859+03	
acba7a90-ec4b-841f-e39f-e74a9ba2ed8f	2021-05-21 23:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 23:30:00.853+03	2021-05-21 23:30:00.857+03	ERROR
0463e6f4-9c27-ab6d-dda8-7528bce0e327	2021-05-21 23:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:30:12.853+03	2021-05-21 23:30:12.86+03	
cbb4d4ed-f51a-15fa-4507-2d7489b6cf6b	2021-05-21 23:30:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:30:33.853+03	2021-05-21 23:30:33.859+03	
11a5524e-b72c-31a2-560f-1468fb1c941f	2021-05-21 23:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:30:54.853+03	2021-05-21 23:30:54.86+03	
1a9adc56-0750-063c-3f43-538a00253375	2021-05-21 23:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:31:14.853+03	2021-05-21 23:31:14.861+03	
a8c67437-edcd-bd3a-4d56-a7078d25f1f1	2021-05-21 23:31:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:31:34.853+03	2021-05-21 23:31:34.859+03	
44bb2d0e-1c69-a585-453c-f3f8b4f99a67	2021-05-21 23:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:31:55.853+03	2021-05-21 23:31:55.86+03	
19ba5be9-d03f-c307-f653-67827af691af	2021-05-21 23:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:32:15.853+03	2021-05-21 23:32:15.859+03	
d758ffbc-b68f-3005-7cce-fc717170f034	2021-05-21 23:32:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:32:36.854+03	2021-05-21 23:32:36.877+03	
9d26e008-a146-a705-d565-9d5714d53704	2021-05-21 23:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:32:57.853+03	2021-05-21 23:32:57.87+03	
af721b88-a2df-bfdf-5847-c9b76d235664	2021-05-21 23:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:33:18.853+03	2021-05-21 23:33:18.861+03	
7a9fb070-31d8-2796-f77c-72b9992891d4	2021-05-21 23:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:13:02.853+03	2021-05-21 23:13:02.86+03	
22cc2b00-5906-55d2-13c8-dbe06fcf2f22	2021-05-21 23:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:13:22.853+03	2021-05-21 23:13:22.86+03	
eef327f1-650b-7316-2e65-845d2c7419fb	2021-05-21 23:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:13:42.853+03	2021-05-21 23:13:42.861+03	
4ff296b5-4d05-2b97-5e65-fc1adc3c77a9	2021-05-21 23:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:14:03.853+03	2021-05-21 23:14:03.859+03	
aa0b429f-1a1d-051c-6308-9ae65019cfb3	2021-05-21 23:14:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:14:23.853+03	2021-05-21 23:14:23.868+03	
1f8e7b30-c253-441c-4c1a-8f704f6661a9	2021-05-21 23:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:14:43.853+03	2021-05-21 23:14:43.866+03	
bd438c1b-2fc9-6a91-13af-374dbc9cfc11	2021-05-21 23:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:15:04.853+03	2021-05-21 23:15:04.859+03	
fe1ae90f-9361-fc0a-286e-cac4d1ce14f7	2021-05-21 23:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:15:25.852+03	2021-05-21 23:15:25.86+03	
e1205fb1-a877-19ba-4be6-4126af3d31eb	2021-05-21 23:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:15:45.853+03	2021-05-21 23:15:45.859+03	
06aaa432-515d-f193-272e-9fbd911cebeb	2021-05-21 23:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:16:05.853+03	2021-05-21 23:16:05.861+03	
ff3cffda-0c8d-3400-ebb6-8cb92e9049ad	2021-05-21 23:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:16:27.853+03	2021-05-21 23:16:27.859+03	
c6bbd627-3c82-1774-2e4b-e7a52a5bba13	2021-05-21 23:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:16:47.853+03	2021-05-21 23:16:47.865+03	
28900cd0-c2f7-acbf-4723-77304d6886c5	2021-05-21 23:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:17:07.853+03	2021-05-21 23:17:07.861+03	
2fd42a3c-5b9f-96b0-42a9-17bded376c5d	2021-05-21 23:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:17:28.853+03	2021-05-21 23:17:28.862+03	
cd251345-fbd3-1084-1777-52c13df57efa	2021-05-21 23:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:17:49.853+03	2021-05-21 23:17:49.859+03	
d9b6b415-5e1d-9090-4558-bc16ebe1b606	2021-05-21 23:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:18:10.853+03	2021-05-21 23:18:10.859+03	
db48a639-5f8b-6a2f-64a1-1afd3ce3446d	2021-05-21 23:18:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:18:31.852+03	2021-05-21 23:18:31.859+03	
ce888fc8-1ee3-661e-762c-10e563cbe43a	2021-05-21 23:18:51.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:18:51.86+03	2021-05-21 23:18:51.867+03	
e7aa43f9-43dc-7c3c-60c2-7e94591375c7	2021-05-21 23:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:19:12.852+03	2021-05-21 23:19:12.859+03	
9bfdf707-e22d-0459-38b2-d29892afd48d	2021-05-21 23:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:19:33.852+03	2021-05-21 23:19:33.867+03	
2ccd71c2-4312-ac81-7da4-80e77675797d	2021-05-21 23:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:19:53.852+03	2021-05-21 23:19:53.86+03	
d0199e1f-989c-0184-8e56-f1e20f53251a	2021-05-21 23:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:20:03.852+03	2021-05-21 23:20:03.862+03	
fed31037-b4fa-df3c-359a-e01aa1f22ac7	2021-05-21 23:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:20:23.852+03	2021-05-21 23:20:23.859+03	
7af9ff0d-4976-63bc-a6a2-c661487a590b	2021-05-21 23:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:20:43.853+03	2021-05-21 23:20:43.86+03	
1c06eca8-7e86-1dd2-8dd3-7f95912fcb40	2021-05-21 23:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:21:03.853+03	2021-05-21 23:21:03.859+03	
3a7fd021-31f8-09cb-2653-2ed3157419a5	2021-05-21 23:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:21:24.853+03	2021-05-21 23:21:24.86+03	
91d6cc0e-5810-5ec5-9f0a-121f3518770c	2021-05-21 23:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:21:44.853+03	2021-05-21 23:21:44.858+03	
5c104257-b764-7e02-f30b-2cee2f23701e	2021-05-21 23:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:22:05.852+03	2021-05-21 23:22:05.859+03	
d93ecf62-a4b2-c5f2-5d5f-803d2f47ba81	2021-05-21 23:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:22:25.853+03	2021-05-21 23:22:25.876+03	
c27a2cb9-c48e-b6ea-6c85-9ce4dac91a90	2021-05-21 23:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:22:45.853+03	2021-05-21 23:22:45.864+03	
0f22d8d4-18a4-dae7-1488-aa013590079d	2021-05-21 23:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:23:05.853+03	2021-05-21 23:23:05.86+03	
5720bf4b-7824-9370-ef17-d934168e0e81	2021-05-21 23:23:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:23:26.852+03	2021-05-21 23:23:26.859+03	
484863f3-4beb-ffc2-fc60-4f611a3abbe3	2021-05-21 23:23:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:23:46.852+03	2021-05-21 23:23:46.86+03	
8e4784b1-1749-5e6e-9f04-26540d4109fd	2021-05-21 23:24:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:24:06.853+03	2021-05-21 23:24:06.859+03	
839049aa-39d0-ffeb-c006-20f4ca74ec54	2021-05-21 23:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:24:27.852+03	2021-05-21 23:24:27.859+03	
16f4ce99-bbdf-52c5-158f-e012db612a5b	2021-05-21 23:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:24:47.853+03	2021-05-21 23:24:47.86+03	
d62ac01a-e3bd-d3d4-fd22-e35f42cddf38	2021-05-21 23:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:25:07.853+03	2021-05-21 23:25:07.859+03	
71c88956-d33e-e5fd-683b-d7bc5d9d1e97	2021-05-21 23:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:25:27.853+03	2021-05-21 23:25:27.86+03	
f7de5351-8ff0-fc01-ab8d-81e33ad72f29	2021-05-21 23:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:25:47.853+03	2021-05-21 23:25:47.86+03	
72e0b12d-7141-511a-bb34-c42b6c3026a7	2021-05-21 23:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:26:07.853+03	2021-05-21 23:26:07.86+03	
1a9e2bd4-d5c3-ec67-1b1f-82ef75d84170	2021-05-21 23:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:26:27.853+03	2021-05-21 23:26:27.86+03	
9ca918a6-3082-4346-0aca-4ac8b559021e	2021-05-21 23:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:26:47.853+03	2021-05-21 23:26:47.859+03	
c6f95b8b-5098-70fd-61b9-a4bdbaa3667a	2021-05-21 23:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:27:07.853+03	2021-05-21 23:27:07.859+03	
662ae2dc-ab43-0368-d7cc-772fd0f74875	2021-05-21 23:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:27:27.853+03	2021-05-21 23:27:27.861+03	
d00eb012-f6ae-12df-ef95-71049eefed70	2021-05-21 23:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:27:49.853+03	2021-05-21 23:27:49.865+03	
7729c1f1-c8ca-420d-d082-072156d4ae9a	2021-05-21 23:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:28:09.853+03	2021-05-21 23:28:09.859+03	
14d1d363-2638-14e0-4a55-bb45acee470c	2021-05-21 23:28:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:28:31.853+03	2021-05-21 23:28:31.859+03	
b5f8633a-ecbb-0834-de64-a2fd6b6f2b4f	2021-05-21 23:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:28:52.852+03	2021-05-21 23:28:52.858+03	
006dbd66-fbdd-3bda-5057-e3a1cf246544	2021-05-21 23:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:29:12.853+03	2021-05-21 23:29:12.859+03	
2347c285-9f0d-95fb-c693-8e64c111ecb0	2021-05-21 23:29:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:29:32.853+03	2021-05-21 23:29:32.862+03	
86a89091-fe82-5dcf-c75a-da008e51118b	2021-05-21 23:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:29:52.853+03	2021-05-21 23:29:52.859+03	
9cab85f6-b7dd-6b8f-136c-ac3b0d0e28cc	2021-05-21 23:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:30:02.853+03	2021-05-21 23:30:02.859+03	
ed67b54f-409d-db48-e6da-f5cfe4aa3477	2021-05-21 23:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:30:23.852+03	2021-05-21 23:30:23.858+03	
5e3fb17e-c91e-07e8-5903-63d24b6ce9b3	2021-05-21 23:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:30:44.853+03	2021-05-21 23:30:44.86+03	
c53b1352-a0b8-b0ee-ba21-de92a01f2fee	2021-05-21 23:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:31:04.853+03	2021-05-21 23:31:04.867+03	
4f5ef08d-7633-d043-e1b5-2903fa39cddc	2021-05-21 23:31:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:31:24.853+03	2021-05-21 23:31:24.86+03	
9bbed81e-b3d9-3f51-f2ae-0582fa2acb26	2021-05-21 23:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:31:45.853+03	2021-05-21 23:31:45.866+03	
d797b5e5-2f0a-3143-9f2b-b6ed3bc6c703	2021-05-21 23:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:32:05.853+03	2021-05-21 23:32:05.859+03	
a378a073-000d-65fe-7a24-4ccdb791b6a1	2021-05-21 23:32:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:32:26.852+03	2021-05-21 23:32:26.859+03	
ba84e7b0-3ab6-71a1-bb71-7315fc7c943f	2021-05-21 23:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:32:47.853+03	2021-05-21 23:32:47.861+03	
8a5bd748-5380-7cb9-13dd-9d13269d824f	2021-05-21 23:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:33:07.853+03	2021-05-21 23:33:07.86+03	
6bfe877f-74cf-a3e3-8dee-dbea62ec66d2	2021-05-21 23:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:33:29.852+03	2021-05-21 23:33:29.859+03	
22652f0d-17b0-fc1b-eb15-6b2cd9402fdf	2021-05-21 23:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:33:49.852+03	2021-05-21 23:33:49.86+03	
ba0f5f29-66d8-57c0-eb1c-569f77b701d2	2021-05-21 23:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:33:39.852+03	2021-05-21 23:33:39.859+03	
e1a098d6-6d26-9e4c-63f0-3fd5fcf0c3df	2021-05-21 23:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:33:59.853+03	2021-05-21 23:33:59.859+03	
52995be3-43a6-1be7-fbdf-6f8de8cdc740	2021-05-21 23:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:34:20.853+03	2021-05-21 23:34:20.864+03	
4c274f20-193c-9dce-3f23-a3d67eca6e33	2021-05-21 23:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:34:40.853+03	2021-05-21 23:34:40.859+03	
94000c09-4a8c-8bcf-49c6-5a6ccb5d5100	2021-05-21 23:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:35:01.853+03	2021-05-21 23:35:01.897+03	
56bb965a-6012-9d12-ce30-5ff99cc17980	2021-05-21 23:35:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:35:21.854+03	2021-05-21 23:35:21.86+03	
6761cf7e-9bfe-66fb-f9cf-39f8edf20220	2021-05-21 23:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:35:42.853+03	2021-05-21 23:35:42.86+03	
a7f5b99c-5add-99a6-cd4e-7f207d5bd84b	2021-05-21 23:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:36:02.853+03	2021-05-21 23:36:02.86+03	
3b037358-6f38-f7a6-fda5-951ae6836aa3	2021-05-21 23:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:36:22.853+03	2021-05-21 23:36:22.867+03	
c5b7c6a7-5c1d-64e4-94fe-96a11dcdd755	2021-05-21 23:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:36:42.853+03	2021-05-21 23:36:42.859+03	
84e0cd07-804f-f423-e40b-b6dc63c1084a	2021-05-21 23:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:37:03.852+03	2021-05-21 23:37:03.864+03	
1c7d6120-07be-c1db-cceb-25438f9ab389	2021-05-21 23:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:37:24.852+03	2021-05-21 23:37:24.859+03	
7a0a3323-a0ed-06f4-01a5-634840a52236	2021-05-21 23:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:37:44.853+03	2021-05-21 23:37:44.86+03	
ae490744-7050-408e-c6df-a4081ec944f1	2021-05-21 23:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:38:05.852+03	2021-05-21 23:38:05.859+03	
924ef155-1058-5d9c-5cd9-5fe8ba589b30	2021-05-21 23:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:38:25.853+03	2021-05-21 23:38:25.859+03	
aba7fbad-457b-d0fd-daad-7cd823ceeec6	2021-05-21 23:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:38:45.853+03	2021-05-21 23:38:45.859+03	
0fe5bc8e-1c1b-0ddf-8d72-9cedada6c2b4	2021-05-21 23:39:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:39:06.852+03	2021-05-21 23:39:06.86+03	
3f219a24-db8a-70fc-287b-4f5acb8999db	2021-05-21 23:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:39:27.853+03	2021-05-21 23:39:27.858+03	
dff112f1-b1da-af02-88e7-c7a0dab3b15b	2021-05-21 23:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:39:48.852+03	2021-05-21 23:39:48.859+03	
60e2d8c9-9a50-6502-4862-457db9acf744	2021-05-21 23:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 23:40:00.853+03	2021-05-21 23:40:00.857+03	ERROR
42f71515-6c3e-bed7-7bb2-7bd40578c110	2021-05-21 23:40:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:40:18.853+03	2021-05-21 23:40:18.86+03	
cb61b566-3770-7e0b-95de-ad72d0cc8e7f	2021-05-21 23:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:40:38.853+03	2021-05-21 23:40:38.86+03	
772d4c02-d1b2-6247-9bcf-c0e4da12078f	2021-05-21 23:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:40:59.852+03	2021-05-21 23:40:59.859+03	
1cd28308-1b8c-17e4-6584-0de35fa926f3	2021-05-21 23:41:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:41:20.852+03	2021-05-21 23:41:20.859+03	
dc04fd64-24b8-7b71-e126-f6912c090538	2021-05-21 23:41:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:41:40.854+03	2021-05-21 23:41:40.862+03	
d5da3888-9113-3324-af24-c012595c64bd	2021-05-21 23:42:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:42:01.854+03	2021-05-21 23:42:01.887+03	
36ff03bb-277e-c5e0-7ceb-5571bfede4a6	2021-05-21 23:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:42:22.853+03	2021-05-21 23:42:22.861+03	
00a1942c-5614-4db3-5c60-ced691c2f54d	2021-05-21 23:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:42:43.852+03	2021-05-21 23:42:43.86+03	
449ad376-8092-9997-e17a-57c38812b898	2021-05-21 23:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:43:03.853+03	2021-05-21 23:43:03.859+03	
ca9f0a3b-087b-91b2-af7b-01c35aeee402	2021-05-21 23:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:43:24.852+03	2021-05-21 23:43:24.859+03	
7f5dc319-2796-7851-af95-1047ef11089d	2021-05-21 23:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:43:44.853+03	2021-05-21 23:43:44.859+03	
d972f49b-8469-45cb-0698-7ddeed6f3df5	2021-05-21 23:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:44:05.852+03	2021-05-21 23:44:05.859+03	
5a5e3b27-3bf3-83f1-8d8c-8933436273c0	2021-05-21 23:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:44:25.852+03	2021-05-21 23:44:25.859+03	
401a0d3c-2a54-c70c-f307-6e6b69b5b9b9	2021-05-21 23:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:44:45.853+03	2021-05-21 23:44:45.859+03	
4c0b880b-c191-6714-e144-f25f75f33d33	2021-05-21 23:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:45:05.853+03	2021-05-21 23:45:05.861+03	
3a850a80-c07d-bfda-bd99-f836dd15e04e	2021-05-21 23:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:45:25.853+03	2021-05-21 23:45:25.859+03	
39055241-695c-bdfa-f968-68ce579b8156	2021-05-21 23:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:45:45.853+03	2021-05-21 23:45:45.86+03	
3e87ebb3-f3de-5891-f1c8-ecd9bfae6f75	2021-05-21 23:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:46:06.852+03	2021-05-21 23:46:06.859+03	
e17cdc04-1999-c012-7831-78c9b74faffa	2021-05-21 23:46:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:46:26.853+03	2021-05-21 23:46:26.859+03	
aef072ba-b9d2-1598-b846-f97c8c2a02db	2021-05-21 23:46:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:46:46.853+03	2021-05-21 23:46:46.86+03	
624dfb5e-0be7-66b1-c564-4aa36c4a2994	2021-05-21 23:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:47:07.853+03	2021-05-21 23:47:07.861+03	
c2b9a0b2-fde9-3875-6598-a77827ab5950	2021-05-21 23:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:47:28.853+03	2021-05-21 23:47:28.859+03	
aff58f3a-2275-0562-fcbe-f0029730335b	2021-05-21 23:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:47:48.853+03	2021-05-21 23:47:48.858+03	
f4de0f15-d806-d73d-d112-adb8da7add0a	2021-05-21 23:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:48:09.853+03	2021-05-21 23:48:09.859+03	
63c2043b-ad6c-173f-bc88-c50367b2bcb2	2021-05-21 23:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:48:30.852+03	2021-05-21 23:48:30.859+03	
5aa51f12-d33e-b13d-53a5-954e19dd93ec	2021-05-21 23:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:48:50.853+03	2021-05-21 23:48:50.859+03	
a8e4cb81-8c95-1a5c-2a4b-b5f3f7712f95	2021-05-21 23:49:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:49:11.853+03	2021-05-21 23:49:11.859+03	
4b3be6d2-88d2-0e33-fa45-1343fa68663f	2021-05-21 23:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:49:32.853+03	2021-05-21 23:49:32.86+03	
5a1f168d-b55c-b9e6-f46e-76b7f1f0839f	2021-05-21 23:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:49:52.853+03	2021-05-21 23:49:52.862+03	
d968f647-f313-d9a5-19eb-b17433750163	2021-05-21 23:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:50:03.852+03	2021-05-21 23:50:03.859+03	
8d80c22e-7cc6-5d31-fe00-54d00c9d7f3f	2021-05-21 23:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:50:23.853+03	2021-05-21 23:50:23.859+03	
cb1a86e1-0ea6-4ece-cfd7-d870f989dd8d	2021-05-21 23:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:50:43.853+03	2021-05-21 23:50:43.861+03	
ea148b87-deb7-4d7d-a99c-70c9d7f653a8	2021-05-21 23:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:51:03.853+03	2021-05-21 23:51:03.859+03	
27136b97-5dcd-bbeb-53c4-a5544756bdde	2021-05-21 23:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:51:25.852+03	2021-05-21 23:51:25.86+03	
26e1a8b5-76c9-e3c3-e7bd-afda23d4aaa8	2021-05-21 23:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:51:45.853+03	2021-05-21 23:51:45.859+03	
27309d70-154b-6a12-09af-f2cd78e8cc60	2021-05-21 23:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:52:05.853+03	2021-05-21 23:52:05.861+03	
002e913e-91cc-33ce-54b5-7882997bcbc9	2021-05-21 23:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:52:27.852+03	2021-05-21 23:52:27.86+03	
23f3058f-f4bf-e157-9405-e84863a2a09d	2021-05-21 23:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:52:47.853+03	2021-05-21 23:52:47.861+03	
1848777d-e908-7ce3-80ab-06703e10ef92	2021-05-21 23:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:53:07.853+03	2021-05-21 23:53:07.86+03	
8f36bb79-a3b0-051d-cba9-8055f87e021f	2021-05-21 23:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:53:28.852+03	2021-05-21 23:53:28.859+03	
5a845352-97c3-8d71-0f69-af0d810d8fea	2021-05-21 23:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:53:48.853+03	2021-05-21 23:53:48.859+03	
c1f8658f-9803-bcb7-3d5c-0257af1b150d	2021-05-21 23:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:54:10.852+03	2021-05-21 23:54:10.859+03	
d7152dcf-20f1-4b55-f75d-ebc875fa6d66	2021-05-21 23:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:54:30.852+03	2021-05-21 23:54:30.861+03	
ee5e72d5-d60a-a0af-0134-d17bff8a32a9	2021-05-21 23:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:34:10.853+03	2021-05-21 23:34:10.86+03	
1e5445b8-c322-f810-c30b-c13620609c0a	2021-05-21 23:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:34:30.853+03	2021-05-21 23:34:30.859+03	
19978328-d178-8c5d-f249-faceaf503e87	2021-05-21 23:34:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:34:51.853+03	2021-05-21 23:34:51.86+03	
bdf270fc-6086-93a4-a8eb-69bace7adc28	2021-05-21 23:35:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:35:11.854+03	2021-05-21 23:35:11.86+03	
29671308-80d7-8508-7d62-afae79d57083	2021-05-21 23:35:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:35:31.854+03	2021-05-21 23:35:31.864+03	
8506b337-d335-3637-bac1-9b279e9836a1	2021-05-21 23:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:35:52.853+03	2021-05-21 23:35:52.859+03	
49395a1b-49cc-d1ea-6cce-a00b8c13e745	2021-05-21 23:36:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:36:12.853+03	2021-05-21 23:36:12.859+03	
7bed9dfb-4632-b176-99c5-1cd2a06ef216	2021-05-21 23:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:36:32.853+03	2021-05-21 23:36:32.86+03	
05315650-f3b5-4676-aaf8-790e4d29d973	2021-05-21 23:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:36:52.853+03	2021-05-21 23:36:52.859+03	
6c34235a-eb51-bbf9-bea1-df38fbd3c5d4	2021-05-21 23:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:37:13.853+03	2021-05-21 23:37:13.859+03	
fcf4c591-93fe-39f0-6701-cbc374ac5dc2	2021-05-21 23:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:37:34.853+03	2021-05-21 23:37:34.859+03	
a0977ab5-abd7-035c-dcee-e30d71a9209c	2021-05-21 23:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:37:54.853+03	2021-05-21 23:37:54.859+03	
5bab6e56-1bce-7e04-248f-9b0e4eeee74e	2021-05-21 23:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:38:15.852+03	2021-05-21 23:38:15.859+03	
176129f1-bf82-0407-1c0b-d3eaa7af8b06	2021-05-21 23:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:38:35.853+03	2021-05-21 23:38:35.862+03	
2033a128-fc2b-cd16-2ec8-0a4b22788628	2021-05-21 23:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:38:55.853+03	2021-05-21 23:38:55.86+03	
f448d609-84e5-14fd-a808-2521d347e5dd	2021-05-21 23:39:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:39:16.854+03	2021-05-21 23:39:16.86+03	
5ab40dd0-f627-bf70-0001-41e31d59b40f	2021-05-21 23:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:39:38.852+03	2021-05-21 23:39:38.858+03	
58282097-df26-29b1-2a99-93197a7c3dd5	2021-05-21 23:39:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:39:58.853+03	2021-05-21 23:39:58.859+03	
88ab45b6-eff0-728f-548e-5559983a126b	2021-05-21 23:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:40:08.853+03	2021-05-21 23:40:08.859+03	
3a8480c9-d937-9844-4569-f5a269b08c2c	2021-05-21 23:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:40:28.853+03	2021-05-21 23:40:28.861+03	
e8e2e6e8-66ab-9fc7-4d5f-f2783bc34236	2021-05-21 23:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:40:49.852+03	2021-05-21 23:40:49.859+03	
5a7bd56c-49c7-c47f-dcdf-1c9a6007f6ee	2021-05-21 23:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:41:09.853+03	2021-05-21 23:41:09.859+03	
7ce15242-0fc0-39c8-faaa-ee8d7c418997	2021-05-21 23:41:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:41:30.852+03	2021-05-21 23:41:30.859+03	
cd69e043-6664-5745-d1bd-1d933f18bbbb	2021-05-21 23:41:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:41:51.853+03	2021-05-21 23:41:51.86+03	
a0e233eb-facd-b681-e195-2c6d4d10b210	2021-05-21 23:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:42:12.852+03	2021-05-21 23:42:12.86+03	
a2005c46-6163-72fa-fc50-b92ce1b7b6ff	2021-05-21 23:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:42:32.853+03	2021-05-21 23:42:32.858+03	
e5d0b879-d080-d653-ba2b-b511659f646b	2021-05-21 23:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:42:53.852+03	2021-05-21 23:42:53.858+03	
ba2f863f-f9aa-424a-792e-285f5717206d	2021-05-21 23:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:43:13.853+03	2021-05-21 23:43:13.876+03	
8931de4f-cd31-2e3c-4308-8d03ed7c9552	2021-05-21 23:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:43:34.853+03	2021-05-21 23:43:34.863+03	
fd3bfea7-d76a-b5ae-6364-74863b383b03	2021-05-21 23:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:43:55.852+03	2021-05-21 23:43:55.87+03	
a61973b1-d551-c3b9-4802-dd45e131110f	2021-05-21 23:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:44:15.852+03	2021-05-21 23:44:15.873+03	
a1c31086-a725-39ad-3e06-63d32cec1bb2	2021-05-21 23:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:44:35.853+03	2021-05-21 23:44:35.859+03	
8e5bb027-a8ec-8096-bd1e-75be2b43d466	2021-05-21 23:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:44:55.853+03	2021-05-21 23:44:55.86+03	
2e4a5e13-ab7a-54eb-37b9-8eb6ab29dc2c	2021-05-21 23:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:45:15.853+03	2021-05-21 23:45:15.871+03	
5a56de43-34d9-25a2-4dec-1ceaa3f058a4	2021-05-21 23:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:45:35.853+03	2021-05-21 23:45:35.861+03	
2ed3684d-5327-23de-e2c6-cb9f355c715b	2021-05-21 23:45:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:45:56.852+03	2021-05-21 23:45:56.858+03	
32c1270f-35ba-b854-7c37-b9a576bb2799	2021-05-21 23:46:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:46:16.852+03	2021-05-21 23:46:16.859+03	
76be4220-c2c7-82b3-e6f2-fa8d38269ad6	2021-05-21 23:46:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:46:36.853+03	2021-05-21 23:46:36.861+03	
7a21da34-fa75-b278-c4ae-322d6eb3cc94	2021-05-21 23:46:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:46:56.853+03	2021-05-21 23:46:56.86+03	
bee88349-96e3-dfc3-7d32-6c14658f42df	2021-05-21 23:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:47:17.853+03	2021-05-21 23:47:17.859+03	
2aa0066a-1857-ec0c-4c21-f59ca5ea9d2f	2021-05-21 23:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:47:38.853+03	2021-05-21 23:47:38.859+03	
72108abb-1341-3ecd-0107-7f4df532d10a	2021-05-21 23:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:47:58.853+03	2021-05-21 23:47:58.859+03	
30566146-43ef-ea90-4688-1106d0b48369	2021-05-21 23:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:48:19.853+03	2021-05-21 23:48:19.862+03	
085739c5-c985-4ea0-d4cb-84145b873c48	2021-05-21 23:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:48:40.852+03	2021-05-21 23:48:40.859+03	
ffa70d9c-4041-2314-f831-615e452f7a35	2021-05-21 23:49:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:49:01.853+03	2021-05-21 23:49:01.859+03	
fa9cf175-dabb-fc59-6e34-6200b8f0b09f	2021-05-21 23:49:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:49:21.854+03	2021-05-21 23:49:21.927+03	
8a352cfd-24bd-93ed-b755-b7c5c260ef0b	2021-05-21 23:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:49:42.853+03	2021-05-21 23:49:42.861+03	
64a6131d-686d-20dc-2b25-422fa972a86e	2021-05-21 23:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-21 23:50:00.853+03	2021-05-21 23:50:00.858+03	ERROR
1b1886e5-f71d-c527-3579-24a3001609f3	2021-05-21 23:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:50:13.853+03	2021-05-21 23:50:13.873+03	
d886e89d-f98e-af11-5ed2-e1111f25d743	2021-05-21 23:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:50:33.853+03	2021-05-21 23:50:33.859+03	
cc53b2f9-d0be-6460-f5f9-da1d8086f1ac	2021-05-21 23:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:50:53.853+03	2021-05-21 23:50:53.859+03	
9249ea71-b2f4-8f28-37c0-06cb911dd6f1	2021-05-21 23:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:51:14.853+03	2021-05-21 23:51:14.86+03	
3972d1a0-8fd1-ca42-4fdd-6fcc8bfd67ee	2021-05-21 23:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:51:35.852+03	2021-05-21 23:51:35.859+03	
3965dee5-a35d-0ab8-ea6a-7ee6b7814141	2021-05-21 23:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:51:55.853+03	2021-05-21 23:51:55.859+03	
bd5f0564-8804-76d2-d224-b5c66b4956f6	2021-05-21 23:52:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:52:16.853+03	2021-05-21 23:52:16.859+03	
2d4887ac-f959-739d-c454-550dd46607f4	2021-05-21 23:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:52:37.853+03	2021-05-21 23:52:37.86+03	
82921857-aa78-fe83-8038-1b074e5eee3b	2021-05-21 23:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:52:57.853+03	2021-05-21 23:52:57.86+03	
31d6fd17-c9de-eb49-754f-a208ae73c0d4	2021-05-21 23:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:53:17.853+03	2021-05-21 23:53:17.865+03	
69e34942-2bf1-5f59-157c-0db70fff2169	2021-05-21 23:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:53:38.853+03	2021-05-21 23:53:38.861+03	
237c3dd8-21a3-c2cb-d483-f28229e8f08c	2021-05-21 23:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:53:59.853+03	2021-05-21 23:53:59.86+03	
ce4fa122-6450-7df3-2d52-94eb2f315c1c	2021-05-21 23:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:54:20.852+03	2021-05-21 23:54:20.861+03	
ed2b48b8-4d41-0d97-e179-a8e4943ffeeb	2021-05-21 23:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:54:40.853+03	2021-05-21 23:54:40.869+03	
fb646717-4b24-180e-fe7e-667d548477b6	2021-05-21 23:55:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:55:01.852+03	2021-05-21 23:55:01.859+03	
a422469f-97c6-2580-fb61-912c6eaab7bb	2021-05-21 23:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:54:50.853+03	2021-05-21 23:54:50.861+03	
07c36194-6077-dac2-e9ce-ac23a46d18d8	2021-05-22 10:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:51:07.853+03	2021-05-22 10:51:07.862+03	
0b73e676-3937-1f6f-4c29-06abf4c3977b	2021-05-21 23:55:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:55:11.852+03	2021-05-21 23:55:11.859+03	
d08aad88-5881-c7f2-a918-194a75c6b39f	2021-05-21 23:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:55:32.853+03	2021-05-21 23:55:32.867+03	
3ee1b198-a26f-ca0c-8008-74ac12314a87	2021-05-22 10:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:51:27.853+03	2021-05-22 10:51:27.86+03	
520af960-6d8d-35fe-0256-3f303527e31c	2021-05-21 23:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:55:52.853+03	2021-05-21 23:55:52.864+03	
a0cb7f89-bd3c-cacc-0e72-8da73fdad602	2021-05-21 23:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:56:13.853+03	2021-05-21 23:56:13.861+03	
09dc4478-03b9-253a-b256-295f40e6fc94	2021-05-22 10:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:51:47.853+03	2021-05-22 10:51:47.861+03	
a9b895c0-4997-b6c6-8d33-adfebbd80f33	2021-05-21 23:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:56:34.852+03	2021-05-21 23:56:34.858+03	
ab67512e-0c66-beef-ef5e-0f08a6d76f3f	2021-05-21 23:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:56:54.853+03	2021-05-21 23:56:54.859+03	
53ee6309-9183-68a2-0988-594cd6e7bee1	2021-05-22 10:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:52:08.852+03	2021-05-22 10:52:08.896+03	
294c512e-3c3a-ee22-3d79-b9cbcea2b57a	2021-05-21 23:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:57:15.853+03	2021-05-21 23:57:15.86+03	
05ef3c37-8736-f188-92b0-e2d22c5e6898	2021-05-21 23:57:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:57:36.852+03	2021-05-21 23:57:36.868+03	
94a16836-97eb-6cff-a093-beec06d6618d	2021-05-22 10:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:52:28.853+03	2021-05-22 10:52:28.864+03	
8a232719-fd20-d72d-e24f-0163c6840884	2021-05-21 23:57:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:57:56.852+03	2021-05-21 23:57:56.861+03	
44207297-e478-66f2-ac3f-5e32d88244b4	2021-05-21 23:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:58:17.852+03	2021-05-21 23:58:17.859+03	
0feb94da-f0bf-86a1-5ff7-6e91572b4749	2021-05-22 10:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:52:49.852+03	2021-05-22 10:52:49.86+03	
3f7c5a6c-2e6b-eb71-9801-3d926f77e0d3	2021-05-21 23:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:58:37.852+03	2021-05-21 23:58:37.859+03	
f6a8eb13-7ba8-b2ef-d0f9-aee2ed2a1d85	2021-05-21 23:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:58:57.853+03	2021-05-21 23:58:57.86+03	
9437954d-4a00-6831-a0ce-8ac29ad5fc7e	2021-05-22 10:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:53:09.853+03	2021-05-22 10:53:09.861+03	
c14d5352-afc7-fcb0-98cd-e368c1df8d9d	2021-05-21 23:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:59:17.853+03	2021-05-21 23:59:17.86+03	
7472ff6f-7415-222c-90d7-24aaaf7b3816	2021-05-21 23:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:59:37.853+03	2021-05-21 23:59:37.866+03	
7fa68646-2085-db6a-5435-aba99f2c2c6d	2021-05-22 10:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:53:29.853+03	2021-05-22 10:53:29.868+03	
521d8249-75d7-754e-7eda-0a84e75948a8	2021-05-21 23:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:59:58.853+03	2021-05-21 23:59:58.858+03	
0c808480-b945-f8dd-b1ca-8a2abe3aa5a9	2021-05-22 00:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:00:08.853+03	2021-05-22 00:00:08.87+03	
33e54edd-412a-8339-92c8-4e8a5c47d401	2021-05-22 10:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:53:49.853+03	2021-05-22 10:53:49.859+03	
170eb4bb-268a-96cd-a884-9c8a9899c88f	2021-05-22 00:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:00:28.853+03	2021-05-22 00:00:28.867+03	
8ff1e191-1b4d-c962-6a67-1403e3c82437	2021-05-22 00:00:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:00:48.853+03	2021-05-22 00:00:48.861+03	
a58ab2c0-bbdc-fcdc-a2da-82cbe7086d8d	2021-05-22 10:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:54:09.853+03	2021-05-22 10:54:09.861+03	
705634f3-830d-eb62-6776-b8e8476f892c	2021-05-22 00:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:01:08.853+03	2021-05-22 00:01:08.862+03	
910c670b-f31e-9856-a880-bcbb325c37b4	2021-05-22 00:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:01:29.853+03	2021-05-22 00:01:29.862+03	
2045d708-b6ec-1838-057d-d0e1737c051d	2021-05-22 10:54:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:54:29.853+03	2021-05-22 10:54:29.864+03	
066c84a8-7e8d-9b08-9d31-7761be98af5c	2021-05-22 00:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:01:50.853+03	2021-05-22 00:01:50.86+03	
a0217479-2dd1-504c-151a-8063f6fff99a	2021-05-22 00:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:02:11.853+03	2021-05-22 00:02:11.863+03	
37a2dd6f-3242-1a9b-1734-eab4f3d50de1	2021-05-22 10:54:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:54:49.853+03	2021-05-22 10:54:49.866+03	
eb95b1e6-bcd9-8544-2a6f-840f7afd5967	2021-05-22 00:02:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:02:31.855+03	2021-05-22 00:02:31.863+03	
fdc0aa4e-b294-c599-2a93-84a9b2eef8a0	2021-05-22 00:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:02:52.853+03	2021-05-22 00:02:52.861+03	
94d82b4e-c4cd-e23b-d267-3062a49f9314	2021-05-22 10:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:55:09.853+03	2021-05-22 10:55:09.861+03	
ca0e8912-d81e-7a07-bc2b-4a4198b506a5	2021-05-22 00:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:03:13.853+03	2021-05-22 00:03:13.861+03	
309f033b-f5d0-5bbf-3db6-e667cdeca489	2021-05-22 00:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:03:34.853+03	2021-05-22 00:03:34.859+03	
c04d0f4e-1166-87a8-5233-8e829626b501	2021-05-22 10:55:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:55:29.853+03	2021-05-22 10:55:29.862+03	
6d8d6848-390b-0bcc-23a6-89a42e1444ab	2021-05-22 00:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:03:55.852+03	2021-05-22 00:03:55.86+03	
5c3dc9a5-9095-d5c9-deb0-9fcab9dc9f18	2021-05-22 00:04:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:04:15.853+03	2021-05-22 00:04:15.859+03	
6432644d-caf4-b828-c8b1-42809ab00c30	2021-05-22 10:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:55:49.853+03	2021-05-22 10:55:49.862+03	
e8181967-2bdd-3c04-5ee4-69888a6dc2d0	2021-05-22 00:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:04:35.853+03	2021-05-22 00:04:35.86+03	
2e1fa79a-9057-a54f-ecda-235a47d18377	2021-05-22 00:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:04:55.853+03	2021-05-22 00:04:55.862+03	
ced5294e-f772-2fbd-0d3d-568af53642a4	2021-05-22 10:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:56:09.853+03	2021-05-22 10:56:09.862+03	
2a006e82-4387-ecb2-3cee-d54667bcfbfd	2021-05-22 00:05:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:05:17.852+03	2021-05-22 00:05:17.858+03	
c865e401-caf3-7be6-5f49-7c55f2e6246e	2021-05-22 00:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:05:37.852+03	2021-05-22 00:05:37.858+03	
99f7525e-8da2-2c2b-e295-d528d9c6e87e	2021-05-22 10:56:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:56:29.853+03	2021-05-22 10:56:29.874+03	
a410dde7-bccf-fbcb-c177-cfb731209f3d	2021-05-22 10:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:56:49.853+03	2021-05-22 10:56:49.862+03	
e97bc2cb-0117-e173-7ec0-dfd6ef4465dd	2021-05-22 10:57:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:57:11.853+03	2021-05-22 10:57:11.858+03	
b2946910-2abc-f020-93b4-affda66c73ca	2021-05-22 10:57:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:57:31.854+03	2021-05-22 10:57:31.861+03	
4ba5b8b0-8a14-1937-247a-c11a7bffbad9	2021-05-22 10:57:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:57:52.853+03	2021-05-22 10:57:52.87+03	
894f942d-4442-ca7b-0025-94fedbe6edff	2021-05-22 10:58:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:58:12.853+03	2021-05-22 10:58:12.859+03	
52dd7fd6-dec2-5937-8d98-175d189310cb	2021-05-22 10:58:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:58:32.853+03	2021-05-22 10:58:32.865+03	
b91f5a37-5315-c3ae-5509-3c2074433793	2021-05-22 10:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:58:52.853+03	2021-05-22 10:58:52.86+03	
6a4d2b78-e030-0443-7b96-1f7096e5a294	2021-05-22 10:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:59:12.853+03	2021-05-22 10:59:12.862+03	
06ea0f11-3189-b2ae-9527-96b4a5427fae	2021-05-22 10:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:59:32.853+03	2021-05-22 10:59:32.861+03	
edfd7ab9-582a-3074-99fe-01a7d76ce61d	2021-05-22 10:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:59:52.853+03	2021-05-22 10:59:52.86+03	
7c073029-4845-4b8b-ffbd-abfaaeb13dac	2021-05-22 11:00:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:00:02.853+03	2021-05-22 11:00:02.88+03	
4fb73d77-adff-51cf-5ec7-c5fdb8b7d981	2021-05-22 11:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:00:22.853+03	2021-05-22 11:00:22.869+03	
42709d03-c412-f9eb-4fc8-1c796db5391e	2021-05-22 11:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:00:42.853+03	2021-05-22 11:00:42.863+03	
d6e966d3-28eb-5ab7-bbed-4c86a4d11d0c	2021-05-22 11:01:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:01:02.853+03	2021-05-22 11:01:02.872+03	
774fa363-177b-efc7-d517-540034bd8a3c	2021-05-21 23:55:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:55:21.854+03	2021-05-21 23:55:21.86+03	
7c187f2b-59c1-6754-7f4e-6993ddcc7739	2021-05-21 23:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:55:42.853+03	2021-05-21 23:55:42.859+03	
4106bcab-c6b3-1b82-9fc5-30ea52ca2901	2021-05-21 23:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:56:02.853+03	2021-05-21 23:56:02.859+03	
62b3ff97-16d3-3704-5ac5-4aeda889d2ff	2021-05-21 23:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:56:23.853+03	2021-05-21 23:56:23.859+03	
8e1ac37c-e340-d9d0-beaf-03640a8d9a48	2021-05-21 23:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:56:44.852+03	2021-05-21 23:56:44.86+03	
d5cc388f-7065-6f75-e1b6-a18855734de4	2021-05-21 23:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:57:05.853+03	2021-05-21 23:57:05.866+03	
4507f38c-132f-5ab4-1b16-abb8fc11afbb	2021-05-21 23:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:57:25.853+03	2021-05-21 23:57:25.862+03	
d94f6d96-d96f-89b1-acdc-a9f833f7a931	2021-05-21 23:57:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:57:46.852+03	2021-05-21 23:57:46.861+03	
e3e5bdb2-5e63-866e-2b3d-0eb581b22b1e	2021-05-21 23:58:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:58:06.853+03	2021-05-21 23:58:06.86+03	
84994162-b32c-5a35-76c6-a7295ccec03a	2021-05-21 23:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:58:27.852+03	2021-05-21 23:58:27.859+03	
dc4fc879-dd19-7f38-8224-74d9a8c807ac	2021-05-21 23:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:58:47.853+03	2021-05-21 23:58:48.097+03	
44db7519-ab7e-0ba2-bd03-b08e73648c9f	2021-05-21 23:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:59:07.853+03	2021-05-21 23:59:07.861+03	
bb105973-0e45-620d-e71f-5c5de3d50501	2021-05-21 23:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:59:27.853+03	2021-05-21 23:59:27.86+03	
a816a67c-4c7c-ed2e-ed36-62fdf6f5ce1f	2021-05-21 23:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-21 23:59:47.853+03	2021-05-21 23:59:47.861+03	
cec716ee-6359-5345-559b-7c8183529d29	2021-05-22 00:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 00:00:00.852+03	2021-05-22 00:00:00.858+03	ERROR
612b4612-5f9f-dee3-0a8e-72bd372b1d78	2021-05-22 00:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:00:18.853+03	2021-05-22 00:00:18.871+03	
308a5718-79dd-2e9c-7e47-768823a9f655	2021-05-22 00:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:00:38.853+03	2021-05-22 00:00:38.874+03	
dec388da-e84f-e276-9089-e4aaa9d4865d	2021-05-22 00:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:00:58.853+03	2021-05-22 00:00:58.869+03	
c0e61764-ce9a-b557-b04b-a7c6e624ef2e	2021-05-22 00:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:01:18.853+03	2021-05-22 00:01:18.86+03	
c6d2aab7-93dd-b0e4-6208-30f497303119	2021-05-22 00:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:01:39.853+03	2021-05-22 00:01:39.869+03	
1ea3fb6e-f9d9-9f95-5bed-6bbc769981ca	2021-05-22 00:02:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:02:01.853+03	2021-05-22 00:02:01.86+03	
33c6c746-2279-da77-482b-81bea1f607ab	2021-05-22 00:02:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:02:21.854+03	2021-05-22 00:02:21.864+03	
39ba2317-025f-cf47-990a-1401f629aa42	2021-05-22 00:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:02:42.853+03	2021-05-22 00:02:42.861+03	
960cf7b4-699b-7979-cc53-560b65f769f4	2021-05-22 00:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:03:03.852+03	2021-05-22 00:03:03.86+03	
7776512d-0af0-ccb9-5e27-a4266e6b3228	2021-05-22 00:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:03:24.853+03	2021-05-22 00:03:24.862+03	
0449567c-f192-c2e5-64fd-06a9cf7c9912	2021-05-22 00:03:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:03:45.852+03	2021-05-22 00:03:45.858+03	
5bc2840a-134c-9533-aa51-0615cd875043	2021-05-22 00:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:04:05.853+03	2021-05-22 00:04:05.867+03	
776e25a3-a75f-c9a4-91bb-845bdd56a67d	2021-05-22 00:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:04:25.853+03	2021-05-22 00:04:25.862+03	
d33b4637-e1b8-cd1c-1541-d1ac13331d84	2021-05-22 00:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:04:45.853+03	2021-05-22 00:04:45.86+03	
77f779c1-fa76-0004-231d-3b90e5c67b5a	2021-05-22 00:05:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:05:06.853+03	2021-05-22 00:05:06.861+03	
15503caf-1af5-d371-04db-a14e28f229d3	2021-05-22 00:05:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:05:27.852+03	2021-05-22 00:05:27.859+03	
45cf733a-0ca0-82a5-3f25-8ea08a26558e	2021-05-22 00:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:05:47.853+03	2021-05-22 00:05:47.859+03	
b1ac1786-4747-142a-130d-f00c2ba4efb3	2021-05-22 00:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:05:57.853+03	2021-05-22 00:05:57.865+03	
9cea7240-0c89-96f4-57ce-8ee4b22a872f	2021-05-22 00:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:06:07.853+03	2021-05-22 00:06:07.86+03	
6b137a6a-c29d-2032-dccb-d6a9869507df	2021-05-22 00:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:06:17.853+03	2021-05-22 00:06:17.86+03	
ecca39f6-c5b4-5940-0f0c-a783a758735b	2021-05-22 00:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:06:27.853+03	2021-05-22 00:06:27.884+03	
ac24d646-617b-2a25-7e1c-b9b0a8582faa	2021-05-22 00:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:06:37.853+03	2021-05-22 00:06:37.859+03	
84992a65-7fc1-b1c2-2527-4a5c1c80a8e6	2021-05-22 00:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:06:47.853+03	2021-05-22 00:06:47.859+03	
32c8855b-5e2a-b308-43dc-4e524f72c314	2021-05-22 00:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:06:57.853+03	2021-05-22 00:06:57.86+03	
e8ad006e-4fc5-bf1e-8fd5-ab7a33877e75	2021-05-22 00:07:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:07:07.853+03	2021-05-22 00:07:07.86+03	
983be915-f0f4-01e2-e639-cd9d97684886	2021-05-22 00:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:07:18.852+03	2021-05-22 00:07:18.859+03	
6b48737f-a719-46b4-43ea-28936ca50860	2021-05-22 00:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:07:28.853+03	2021-05-22 00:07:28.871+03	
25df7329-a469-623f-db25-e654e19d0caf	2021-05-22 00:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:07:39.853+03	2021-05-22 00:07:39.859+03	
fed38e09-0c73-cafa-dd5f-d2643150d157	2021-05-22 00:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:07:49.853+03	2021-05-22 00:07:49.864+03	
d7c9dff9-bc80-8bc3-7743-cb41368032da	2021-05-22 00:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:07:59.853+03	2021-05-22 00:07:59.86+03	
7f094697-71ec-936a-ab9e-517e4b412e04	2021-05-22 00:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:08:10.852+03	2021-05-22 00:08:10.86+03	
62682e6c-45d5-5ce7-7a81-fbe042e6ab6a	2021-05-22 00:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:08:20.852+03	2021-05-22 00:08:20.861+03	
41007d29-b7a6-a91c-5c59-fff334a662bc	2021-05-22 00:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:08:30.852+03	2021-05-22 00:08:30.86+03	
3b5081f0-45bc-be5e-3dd4-33db41f87abe	2021-05-22 00:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:08:40.853+03	2021-05-22 00:08:40.863+03	
982b9b02-dbe0-aeca-cada-69050893a226	2021-05-22 00:08:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:08:51.853+03	2021-05-22 00:08:51.862+03	
0132ee19-355b-569a-60fe-a2f12ce7ff1a	2021-05-22 00:09:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:09:01.854+03	2021-05-22 00:09:01.901+03	
87e8983f-d624-c00e-29f1-5a3107a05c06	2021-05-22 00:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:09:12.852+03	2021-05-22 00:09:12.873+03	
53a4eb4a-6400-213a-29d8-342818d584c2	2021-05-22 00:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:09:22.852+03	2021-05-22 00:09:22.858+03	
32c822bc-7e5e-357f-288c-96c1c209da1b	2021-05-22 00:09:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:09:32.852+03	2021-05-22 00:09:32.86+03	
922ca95a-ed4e-37c6-dc17-d1994ecc593d	2021-05-22 00:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:09:42.852+03	2021-05-22 00:09:42.859+03	
c58dc307-1ebf-bc28-ff3b-dd4b7e6f75ea	2021-05-22 00:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:09:52.853+03	2021-05-22 00:09:52.859+03	
7d403242-29bb-68ae-04bb-8bd7622c2712	2021-05-22 00:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 00:10:00.852+03	2021-05-22 00:10:00.872+03	ERROR
ac56502e-ad27-61cb-b0ae-8fd28749d4a4	2021-05-22 00:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:10:03.852+03	2021-05-22 00:10:03.864+03	
26e05cb6-70a8-adde-92ec-a11ecb475626	2021-05-22 00:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:10:13.853+03	2021-05-22 00:10:13.862+03	
73bde278-9d0b-e18b-8831-05995d325001	2021-05-22 00:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:10:23.853+03	2021-05-22 00:10:23.862+03	
8366164a-c142-b0df-0a95-258a2affe788	2021-05-22 00:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:10:33.853+03	2021-05-22 00:10:33.86+03	
183f742d-9cae-8cfe-46d6-989faf278972	2021-05-22 00:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:10:43.853+03	2021-05-22 00:10:43.861+03	
8ff97a49-3cf4-4f9f-caa3-ef05bdc5bd13	2021-05-22 00:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:10:53.853+03	2021-05-22 00:10:53.859+03	
e70d5bea-11b9-6e4b-bdfd-66a377348f63	2021-05-22 00:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:11:03.853+03	2021-05-22 00:11:03.862+03	
b04a9e85-0f65-82de-02e1-86a8216838ce	2021-05-22 00:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:11:24.853+03	2021-05-22 00:11:24.864+03	
c2786686-99df-05c3-5a6a-b74b920c386f	2021-05-22 00:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:11:44.853+03	2021-05-22 00:11:44.862+03	
7616e004-cd07-03f2-97c9-5296d1249c96	2021-05-22 00:12:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:12:05.853+03	2021-05-22 00:12:05.861+03	
34b25b74-c615-cae3-992b-a2362bb1f935	2021-05-22 00:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:12:27.853+03	2021-05-22 00:12:27.87+03	
9cd4002e-4af0-6f17-55f5-4ef56f6dd62b	2021-05-22 00:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:12:48.853+03	2021-05-22 00:12:48.87+03	
a52fcd02-0917-f233-6dbe-9597f41751d8	2021-05-22 00:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:13:09.853+03	2021-05-22 00:13:09.861+03	
f8b1fa9e-fd8d-07aa-4ff4-8624c90361fe	2021-05-22 00:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:13:29.853+03	2021-05-22 00:13:29.863+03	
fd983230-5b37-ed40-af4d-47be6b124936	2021-05-22 00:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:13:49.853+03	2021-05-22 00:13:49.86+03	
a263eb8b-9d0a-945c-ca98-61cf9a90acd7	2021-05-22 00:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:14:10.853+03	2021-05-22 00:14:10.861+03	
45a840ee-c498-fb17-5ac5-8d1b2e8cdd0b	2021-05-22 00:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:14:30.853+03	2021-05-22 00:14:30.863+03	
7449af7c-7981-04e7-7fcc-a2bf4aa2b128	2021-05-22 00:14:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:14:51.853+03	2021-05-22 00:14:51.862+03	
2f0c0344-59a6-e7b9-3ffa-7b70de0a00df	2021-05-22 00:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:15:12.853+03	2021-05-22 00:15:12.861+03	
9fc006d2-c6e1-2e2d-3db8-e5e444931c0a	2021-05-22 00:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:15:32.853+03	2021-05-22 00:15:32.863+03	
42337079-40e8-ad59-96f7-01d2abb75136	2021-05-22 00:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:15:52.853+03	2021-05-22 00:15:52.863+03	
fd19e65f-a274-c7bb-921e-992d7d6d8e72	2021-05-22 00:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:16:12.853+03	2021-05-22 00:16:12.863+03	
daf8eca4-bfb7-860e-d84a-0247fcc7ae9f	2021-05-22 00:16:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:16:33.853+03	2021-05-22 00:16:33.859+03	
606171cb-8267-6510-0f9a-b242ce001486	2021-05-22 00:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:16:53.853+03	2021-05-22 00:16:53.86+03	
96fd87b8-24c4-68fb-78b5-7d5150183f46	2021-05-22 00:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:17:13.853+03	2021-05-22 00:17:13.861+03	
95015447-8dae-e60b-b543-b051a5745cc1	2021-05-22 00:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:17:33.853+03	2021-05-22 00:17:33.86+03	
db890150-3bae-4733-bda9-32082aa3b598	2021-05-22 00:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:17:53.853+03	2021-05-22 00:17:53.859+03	
ce6b104f-9086-f14e-73e9-6c89934129e9	2021-05-22 00:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:18:14.853+03	2021-05-22 00:18:14.864+03	
fc99ca03-4716-fdbb-56de-32acd14e8e6a	2021-05-22 00:18:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:18:35.853+03	2021-05-22 00:18:35.861+03	
16595036-66be-5fb8-ae8c-4d1f2f44dcce	2021-05-22 00:18:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:18:56.855+03	2021-05-22 00:18:56.863+03	
1e944250-5efa-68ea-2dff-643fc70c8acd	2021-05-22 00:19:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:19:17.853+03	2021-05-22 00:19:17.875+03	
994ec90f-91ef-c6f2-b86d-f34f899b92aa	2021-05-22 00:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:19:38.853+03	2021-05-22 00:19:38.874+03	
a5c55430-9a88-9394-d3b3-786a282080eb	2021-05-22 00:19:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:19:48.854+03	2021-05-22 00:19:48.862+03	
157d79bc-2c30-641b-a3dd-7ca546d8a6cb	2021-05-22 00:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 00:20:00.852+03	2021-05-22 00:20:00.857+03	ERROR
747e82ee-f257-4be1-ac53-a17149b2a088	2021-05-22 00:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:20:20.852+03	2021-05-22 00:20:20.859+03	
3f304e33-f1e2-ad49-1bff-6a95bcdbae52	2021-05-22 00:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:20:40.853+03	2021-05-22 00:20:40.859+03	
9bd8dcb7-f049-8164-7ee0-c32af24070ee	2021-05-22 00:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:21:00.853+03	2021-05-22 00:21:00.861+03	
a3cb884c-9009-e3bf-e57a-0ee7508949e0	2021-05-22 00:21:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:21:21.852+03	2021-05-22 00:21:21.859+03	
e192214c-e055-a9b9-2fe1-9bd93e6e93b7	2021-05-22 00:21:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:21:41.854+03	2021-05-22 00:21:41.86+03	
dfe4827f-f03c-597e-0d04-9f121c3a575f	2021-05-22 00:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:22:02.853+03	2021-05-22 00:22:02.861+03	
fc8d0cc0-798a-da3e-5d71-9b73bddcef86	2021-05-22 00:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:22:22.853+03	2021-05-22 00:22:22.86+03	
414d0cee-3e08-57b2-8bbe-5b267669e122	2021-05-22 00:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:22:42.853+03	2021-05-22 00:22:42.861+03	
c1b9a06a-f701-9030-00ab-82f7df387568	2021-05-22 00:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:23:02.853+03	2021-05-22 00:23:02.86+03	
89ddff62-6f5d-3917-3398-2507282fffc3	2021-05-22 00:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:23:22.853+03	2021-05-22 00:23:22.861+03	
d47842c3-6e9d-3f05-f0b5-e6450243ccc3	2021-05-22 00:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:23:42.853+03	2021-05-22 00:23:42.862+03	
f898a4b4-53a3-4d34-6cc7-09501b9ff6e0	2021-05-22 00:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:24:03.852+03	2021-05-22 00:24:03.861+03	
e66c1910-74b8-fa40-6135-2611a657614d	2021-05-22 00:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:24:23.853+03	2021-05-22 00:24:23.86+03	
f296cf40-e8a4-71c2-fa8f-706ad744b28f	2021-05-22 00:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:24:43.853+03	2021-05-22 00:24:43.863+03	
e6fbb97f-25a8-f7fa-82a1-4c53d88c6cde	2021-05-22 00:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:25:04.853+03	2021-05-22 00:25:04.861+03	
823141d3-305e-f5d0-2962-8636350dbe8d	2021-05-22 00:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:25:25.852+03	2021-05-22 00:25:25.859+03	
5bf2ad49-7183-b534-b4fe-514eebe1b453	2021-05-22 00:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:25:45.853+03	2021-05-22 00:25:45.862+03	
2229cc67-237a-d55f-36b6-a3f77476531d	2021-05-22 00:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:26:05.853+03	2021-05-22 00:26:05.859+03	
c0034f12-aea4-cc75-1b8f-fa6c52d9492a	2021-05-22 00:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:26:25.853+03	2021-05-22 00:26:25.859+03	
54ec86c0-775d-36bc-ad9e-3bd22e371e32	2021-05-22 00:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:26:45.853+03	2021-05-22 00:26:45.871+03	
4fcd296a-ed41-ce04-1c23-7b6aacb106fd	2021-05-22 00:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:27:05.853+03	2021-05-22 00:27:05.859+03	
654c5caf-8bc4-b964-1fc2-84dd7ce5c029	2021-05-22 00:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:27:25.853+03	2021-05-22 00:27:25.859+03	
390b25ee-2a3e-6632-fca8-397ffd5d7ed0	2021-05-22 00:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:27:45.853+03	2021-05-22 00:27:45.86+03	
046a3c60-bdbc-3e2e-bb2b-9104a96d43dc	2021-05-22 00:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:28:05.853+03	2021-05-22 00:28:05.861+03	
27ced9ea-5cd7-2ba7-c761-b27f53b9ec33	2021-05-22 00:28:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:28:25.853+03	2021-05-22 00:28:25.861+03	
77813db6-c776-58b7-6b79-a2219e65a958	2021-05-22 00:28:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:28:46.854+03	2021-05-22 00:28:46.861+03	
ae0b079c-9a21-2725-231b-4717d6d2c1dc	2021-05-22 00:29:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:29:07.853+03	2021-05-22 00:29:07.865+03	
29b736ad-9c5d-0e72-d866-dc34783fb30f	2021-05-22 00:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:29:27.853+03	2021-05-22 00:29:27.909+03	
14f76c15-6d9e-3611-6dba-b3c6ec771a93	2021-05-22 00:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:29:47.853+03	2021-05-22 00:29:47.859+03	
34c477e8-ed00-7440-f96a-78e183dfb4fc	2021-05-22 00:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 00:30:00.852+03	2021-05-22 00:30:00.858+03	ERROR
50c9235c-46c3-2840-4753-31a6dcb3d57f	2021-05-22 00:30:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:30:18.853+03	2021-05-22 00:30:18.862+03	
c5e0c288-b536-b6de-5cab-6f879acf91ab	2021-05-22 00:30:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:30:38.853+03	2021-05-22 00:30:39.103+03	
2e0e0ce6-0a3a-d347-7fcd-b6b3b7f8afc6	2021-05-22 00:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:30:58.853+03	2021-05-22 00:30:58.861+03	
dc82aa89-3c32-e62d-49d0-908aa25d2333	2021-05-22 00:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:31:18.853+03	2021-05-22 00:31:18.861+03	
9e6232ef-f325-757c-94a6-9705585902ce	2021-05-22 00:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:31:38.853+03	2021-05-22 00:31:38.86+03	
7bf9d76b-ea23-2ea6-088d-a3311fa5bda5	2021-05-22 00:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:11:13.853+03	2021-05-22 00:11:13.86+03	
1576c1a0-e397-1c99-a268-2f5e0cf40d19	2021-05-22 00:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:11:34.853+03	2021-05-22 00:11:34.865+03	
a5c533f2-24da-2380-ce0b-18f3899f5aa8	2021-05-22 00:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:11:54.853+03	2021-05-22 00:11:54.872+03	
e64bc82d-930f-b8cd-8f03-4feacd617627	2021-05-22 00:12:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:12:16.854+03	2021-05-22 00:12:16.861+03	
d68ba8b9-8f75-9ace-3743-f2d07a511965	2021-05-22 00:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:12:37.853+03	2021-05-22 00:12:37.861+03	
44b7d5c9-22bb-b42a-07e3-b676f000686b	2021-05-22 00:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:12:58.853+03	2021-05-22 00:12:58.86+03	
7beae6ef-72bd-34c6-7c9f-a8f0c1ce489b	2021-05-22 00:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:13:19.853+03	2021-05-22 00:13:19.862+03	
daaefb38-7bc6-f7d9-0944-2b72f01f5b11	2021-05-22 00:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:13:39.853+03	2021-05-22 00:13:39.863+03	
65536758-aa66-204b-4692-9b4c455827e4	2021-05-22 00:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:14:00.853+03	2021-05-22 00:14:00.86+03	
168688d7-843a-781a-81df-411f40b8c707	2021-05-22 00:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:14:20.853+03	2021-05-22 00:14:20.861+03	
89cf88cd-8964-8b8f-aa09-202346b4b591	2021-05-22 00:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:14:41.853+03	2021-05-22 00:14:41.865+03	
9eb6414c-9e73-4955-733e-0a8a178d485f	2021-05-22 00:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:15:02.853+03	2021-05-22 00:15:02.86+03	
9d79c0e6-e7d5-be68-7983-db90eecf8c67	2021-05-22 00:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:15:22.853+03	2021-05-22 00:15:22.86+03	
f5d2c5f8-20d7-8143-d813-3ce27d0e9c80	2021-05-22 00:15:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:15:42.853+03	2021-05-22 00:15:42.864+03	
60396517-3edc-0308-23cb-d7f0fda00218	2021-05-22 00:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:16:02.853+03	2021-05-22 00:16:02.859+03	
5f0a0827-6aae-4e08-09ce-ecdeb8f04265	2021-05-22 00:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:16:22.853+03	2021-05-22 00:16:22.859+03	
8ae8a21a-f1ca-0caa-b964-cd0ae8ec6469	2021-05-22 00:16:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:16:43.853+03	2021-05-22 00:16:43.862+03	
f2330ca5-2378-c53a-fc46-a20c1f0a918e	2021-05-22 00:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:17:03.853+03	2021-05-22 00:17:03.861+03	
881e13cc-260a-77a2-1135-dce44f7d52ca	2021-05-22 00:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:17:23.853+03	2021-05-22 00:17:23.859+03	
26926290-c4a1-fdd6-be3b-a4a2d491d6b5	2021-05-22 00:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:17:43.853+03	2021-05-22 00:17:43.862+03	
10219b28-3bf2-d845-1854-31e046430dcd	2021-05-22 00:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:18:04.853+03	2021-05-22 00:18:04.86+03	
23214395-b8a3-f742-c3a1-b243a6b8c9c6	2021-05-22 00:18:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:18:25.852+03	2021-05-22 00:18:25.86+03	
c2e07ad2-cccb-980b-db2c-54d08c53851e	2021-05-22 00:18:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:18:45.853+03	2021-05-22 00:18:45.86+03	
e2fd52be-e17f-5c55-5fd2-a593edafe857	2021-05-22 00:19:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:19:06.855+03	2021-05-22 00:19:06.864+03	
5ad345cd-7fdd-2eff-e598-d5e749e446aa	2021-05-22 00:19:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:19:27.853+03	2021-05-22 00:19:27.861+03	
f9fbf0c5-a79d-73c9-79f3-f7737855de57	2021-05-22 00:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:19:59.853+03	2021-05-22 00:19:59.86+03	
479b0a0f-a388-08ee-aadd-6561b07c0837	2021-05-22 00:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:20:10.852+03	2021-05-22 00:20:10.86+03	
54680c86-44fd-1b45-97f3-d1966d877a04	2021-05-22 00:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:20:30.853+03	2021-05-22 00:20:30.86+03	
9e31cced-3dd4-43f0-4860-0eec42695421	2021-05-22 00:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:20:50.853+03	2021-05-22 00:20:50.859+03	
3bf4e180-86c6-70fb-48e8-15a4536f7d64	2021-05-22 00:21:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:21:10.853+03	2021-05-22 00:21:10.862+03	
780e16d9-9aad-1dd6-3d48-1ebe984b326a	2021-05-22 00:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:21:31.853+03	2021-05-22 00:21:31.861+03	
1fe7e34a-907f-fed8-f7be-cbd3d9e312e6	2021-05-22 00:21:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:21:51.854+03	2021-05-22 00:21:51.86+03	
c8c6a497-2e53-d6fa-f8ce-8d8a3be0b5a9	2021-05-22 00:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:22:12.853+03	2021-05-22 00:22:12.861+03	
319cb27d-7378-d1bd-9ea2-6a09f7740d64	2021-05-22 00:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:22:32.853+03	2021-05-22 00:22:32.862+03	
f76f13cd-ecf7-8822-842f-3f1158657e90	2021-05-22 00:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:22:52.853+03	2021-05-22 00:22:52.862+03	
6665d521-454a-6b2b-f99d-f416d965b59d	2021-05-22 00:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:23:12.853+03	2021-05-22 00:23:12.862+03	
8e111bda-7794-5a00-3abc-7f7aa5f4d232	2021-05-22 00:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:23:32.853+03	2021-05-22 00:23:32.86+03	
a786008f-b9b7-3a4c-edd4-d9bab73ddee9	2021-05-22 00:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:23:52.853+03	2021-05-22 00:23:52.864+03	
d15478a1-8e87-9655-58c6-48ae915c6fb3	2021-05-22 00:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:24:13.853+03	2021-05-22 00:24:13.859+03	
3c4f15ff-ecc1-b524-6db6-a5e5e00dbe78	2021-05-22 00:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:24:33.853+03	2021-05-22 00:24:33.86+03	
91a0a046-9f8a-c976-2ae2-9666a9a4f68d	2021-05-22 00:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:24:54.852+03	2021-05-22 00:24:54.872+03	
70b9204a-20d4-9eae-da6e-7c85e4c42914	2021-05-22 00:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:25:15.852+03	2021-05-22 00:25:15.859+03	
6265439e-fd01-05fc-dda1-a18df20a39a0	2021-05-22 00:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:25:35.853+03	2021-05-22 00:25:35.859+03	
6a9c1360-56d2-c728-ebc0-41c98bb1e4df	2021-05-22 00:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:25:55.853+03	2021-05-22 00:25:55.86+03	
bc6a96a1-861e-dd14-a8fc-6486aa11fce5	2021-05-22 00:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:26:15.853+03	2021-05-22 00:26:15.859+03	
61fa7cff-df56-6a0b-640b-e2391e97fbc2	2021-05-22 00:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:26:35.853+03	2021-05-22 00:26:35.86+03	
6b00c6c0-8d4e-1aa2-6bfb-4529552ddd14	2021-05-22 00:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:26:55.853+03	2021-05-22 00:26:55.859+03	
72e027bf-c627-84c1-4f81-6575ee040eb9	2021-05-22 00:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:27:15.853+03	2021-05-22 00:27:15.859+03	
658deb0b-c622-0b76-72fb-872b56e84f6a	2021-05-22 00:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:27:35.853+03	2021-05-22 00:27:35.858+03	
b146a05e-774e-940f-1e89-cb6a4a21f091	2021-05-22 00:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:27:55.853+03	2021-05-22 00:27:55.859+03	
4a624ff4-4d4b-061f-1dcb-93c93e824830	2021-05-22 00:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:28:15.853+03	2021-05-22 00:28:15.86+03	
b05cc84d-c265-e34b-3fb0-c25f9af3c3c2	2021-05-22 00:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:28:35.853+03	2021-05-22 00:28:35.862+03	
7541db73-4b9e-d58e-a182-dc1d6167107e	2021-05-22 00:28:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:28:57.852+03	2021-05-22 00:28:57.862+03	
46c0217c-f875-9159-29e2-101c898401b2	2021-05-22 00:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:29:17.853+03	2021-05-22 00:29:17.862+03	
d090e574-48a6-7e28-08d7-574db467ccbe	2021-05-22 00:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:29:37.853+03	2021-05-22 00:29:37.861+03	
05e72f2a-6369-a332-ba03-56732e0c41b5	2021-05-22 00:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:29:58.853+03	2021-05-22 00:29:58.894+03	
6a30da92-597f-1542-a47d-e6cc300566ee	2021-05-22 00:30:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:30:08.853+03	2021-05-22 00:30:08.863+03	
b74184dd-ce12-a34d-685a-6dc88c4143df	2021-05-22 00:30:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:30:28.853+03	2021-05-22 00:30:28.868+03	
d59c7c6e-355d-a9e4-e0da-aff130988437	2021-05-22 00:30:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:30:48.853+03	2021-05-22 00:30:48.86+03	
53346ea1-7c66-6eb0-3482-95d030d8d02f	2021-05-22 00:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:31:08.853+03	2021-05-22 00:31:08.862+03	
97c46cd5-782f-1759-f396-90550ff9e098	2021-05-22 00:31:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:31:28.853+03	2021-05-22 00:31:28.861+03	
86b9166d-109b-7b09-aa33-a296e65be6b6	2021-05-22 00:31:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:31:48.853+03	2021-05-22 00:31:48.867+03	
694f304b-a663-6be4-f009-4bc9e127710e	2021-05-22 00:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:32:08.853+03	2021-05-22 00:32:08.863+03	
55714b7a-3087-d3c0-4bbd-da8c99a6c31a	2021-05-22 00:31:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:31:58.853+03	2021-05-22 00:31:58.865+03	
f6a879a5-311d-ca76-80f1-c23d106d1e10	2021-05-22 00:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:32:18.853+03	2021-05-22 00:32:18.864+03	
15b19019-ab05-2ccb-05d6-738302e59bd6	2021-05-22 00:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:32:38.853+03	2021-05-22 00:32:38.863+03	
bc9af72e-bd39-cd07-234b-715cc1538f5a	2021-05-22 00:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:32:58.853+03	2021-05-22 00:32:58.86+03	
c26f2ea0-59d8-358e-a20e-9dc2126f44a7	2021-05-22 00:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:33:19.853+03	2021-05-22 00:33:19.86+03	
f03d025f-1e96-433d-a9ca-e2595024b799	2021-05-22 00:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:33:39.853+03	2021-05-22 00:33:39.862+03	
aad508fc-8f94-8ca1-4d19-eea040373781	2021-05-22 00:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:34:00.852+03	2021-05-22 00:34:00.862+03	
f2eb6c07-4c7f-2bbc-6d87-4b64c57f90e6	2021-05-22 00:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:34:20.853+03	2021-05-22 00:34:20.863+03	
2c637156-b5b3-d672-d517-30f327009312	2021-05-22 00:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:34:40.853+03	2021-05-22 00:34:40.861+03	
2ce2be2d-fb04-adf0-8987-88fa8ba9e1ff	2021-05-22 00:35:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:35:01.853+03	2021-05-22 00:35:01.869+03	
22e0262b-308c-e23c-f4d8-bd63513cfd5a	2021-05-22 00:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:35:22.853+03	2021-05-22 00:35:22.861+03	
02629dbe-a104-df1a-feb7-5c6b10bcb4c8	2021-05-22 00:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:35:42.853+03	2021-05-22 00:35:42.861+03	
2173aaf3-88e6-3980-929c-30a151002d18	2021-05-22 00:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:36:03.853+03	2021-05-22 00:36:03.859+03	
7c29592b-3a2e-b388-66ff-072867fa0a66	2021-05-22 00:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:36:23.853+03	2021-05-22 00:36:23.859+03	
31a900f4-daa0-1958-4515-7fa52f0810dc	2021-05-22 00:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:36:43.853+03	2021-05-22 00:36:43.865+03	
0a7e3589-5c6d-b9d4-d4ea-1fb2071d1c82	2021-05-22 00:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:37:03.853+03	2021-05-22 00:37:03.861+03	
209927ee-c27b-ed24-95ac-b1d3945efd0a	2021-05-22 00:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:37:23.853+03	2021-05-22 00:37:23.859+03	
7007b0be-5094-44b5-e650-735ea2bd17c8	2021-05-22 00:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:37:43.853+03	2021-05-22 00:37:43.859+03	
7228e757-85c1-ba3f-0ca8-b0e750e29084	2021-05-22 00:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:38:03.853+03	2021-05-22 00:38:03.859+03	
4f39946c-6064-a3c2-5e0e-b264f49244a5	2021-05-22 00:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:38:24.853+03	2021-05-22 00:38:24.86+03	
04a190f2-3c91-8c03-21c7-ae5bb829ac0f	2021-05-22 00:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:38:45.852+03	2021-05-22 00:38:45.859+03	
4d27f020-5a6b-ad3f-de57-3c12f242a1a0	2021-05-22 00:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:39:05.853+03	2021-05-22 00:39:05.86+03	
162bb1ef-ec2f-984c-19f8-f9e1834697a9	2021-05-22 00:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:39:25.853+03	2021-05-22 00:39:25.861+03	
e676ca3e-e4fc-023b-0cda-7a21539de638	2021-05-22 00:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:39:45.853+03	2021-05-22 00:39:45.859+03	
c614146a-4a65-748b-40c6-c13bcf9706cb	2021-05-22 00:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 00:40:00.852+03	2021-05-22 00:40:00.859+03	ERROR
458aba53-781d-ffb8-9638-0f25f501123d	2021-05-22 00:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:40:15.853+03	2021-05-22 00:40:15.86+03	
a9d62cf3-a0c2-3e73-4f96-54865c86228f	2021-05-22 00:40:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:40:36.854+03	2021-05-22 00:40:36.866+03	
e9251666-20f9-9b2f-fa9d-d8a6f6efdccc	2021-05-22 00:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:40:57.853+03	2021-05-22 00:40:57.865+03	
e9775ee1-08ac-84cb-4143-3dd88c40a540	2021-05-22 00:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:41:17.853+03	2021-05-22 00:41:17.859+03	
ac248c16-e9b9-9514-63a4-9b4b97d9b193	2021-05-22 00:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:41:38.853+03	2021-05-22 00:41:38.86+03	
0f36821e-081f-1788-5174-0500510b296c	2021-05-22 00:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:41:59.853+03	2021-05-22 00:41:59.86+03	
9ae26f86-0d97-4741-1cd7-208a1affbfbb	2021-05-22 00:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:42:19.853+03	2021-05-22 00:42:19.86+03	
e562cf10-afc7-4c74-4bd4-cb6eb795ac23	2021-05-22 00:42:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:42:39.854+03	2021-05-22 00:42:39.86+03	
8bc40f85-961b-dd03-fa8e-70015d98f330	2021-05-22 00:43:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:43:00.853+03	2021-05-22 00:43:00.86+03	
afaf1615-3241-7cf2-bec1-e0ec63a341d2	2021-05-22 00:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:43:20.853+03	2021-05-22 00:43:20.86+03	
685a8bc8-bf0c-0677-d199-c99fcb817590	2021-05-22 00:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:43:40.853+03	2021-05-22 00:43:40.861+03	
c1aaaa86-f1be-1dd6-6df6-b411aa42054c	2021-05-22 00:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:44:00.853+03	2021-05-22 00:44:00.861+03	
be624305-a73e-1d4b-0c48-db22b3d03b21	2021-05-22 00:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:44:20.853+03	2021-05-22 00:44:20.861+03	
d9351c5f-39a9-10e7-fa85-d2aa7923454a	2021-05-22 00:44:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:44:41.852+03	2021-05-22 00:44:41.859+03	
0c741193-b25b-ed62-663c-d7a29a8fca20	2021-05-22 00:45:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:45:01.852+03	2021-05-22 00:45:01.861+03	
0bde972d-72b7-d0cf-9303-36c22a6cd921	2021-05-22 00:45:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:45:21.854+03	2021-05-22 00:45:21.864+03	
f1706ea1-e919-896a-4f0a-26aec8e5afef	2021-05-22 00:45:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:45:41.854+03	2021-05-22 00:45:41.865+03	
c4eb0321-3a88-b0d0-fd6e-3c96665bc5e1	2021-05-22 00:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:46:02.852+03	2021-05-22 00:46:02.86+03	
f0b02a60-7ffb-d652-89e3-6386f869b053	2021-05-22 00:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:46:22.852+03	2021-05-22 00:46:22.862+03	
598df2fa-0455-f7d8-5423-8d745af86faa	2021-05-22 00:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:46:42.853+03	2021-05-22 00:46:42.86+03	
51388b78-706c-f379-7509-ffb3b007664e	2021-05-22 00:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:47:02.853+03	2021-05-22 00:47:02.86+03	
6b5b2ed0-5295-6527-aeeb-c4dab1ae02ba	2021-05-22 00:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:47:22.853+03	2021-05-22 00:47:22.864+03	
18354bf9-8a88-f504-00a6-6fd0fadec12e	2021-05-22 00:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:47:42.853+03	2021-05-22 00:47:42.859+03	
9df7a104-2524-ed15-c573-a838422c45a9	2021-05-22 00:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:48:03.852+03	2021-05-22 00:48:03.859+03	
db29cecf-1c55-12ae-e0a4-c9cc8bae2578	2021-05-22 00:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:48:24.853+03	2021-05-22 00:48:24.86+03	
02c03385-8a08-06f5-e9ed-03e767f20899	2021-05-22 00:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:48:44.853+03	2021-05-22 00:48:44.859+03	
ee2e49fa-89cc-d068-0ca0-0c17ee8d6d8c	2021-05-22 00:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:49:04.853+03	2021-05-22 00:49:04.876+03	
321ca665-a67b-b05c-78a2-740a254de101	2021-05-22 00:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:49:24.853+03	2021-05-22 00:49:24.859+03	
d605e0ac-3258-2e02-8376-2c696239001f	2021-05-22 00:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:49:44.853+03	2021-05-22 00:49:44.86+03	
873603ca-2c7d-1c65-bb06-0ad16dfbda61	2021-05-22 00:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:49:55.853+03	2021-05-22 00:49:55.863+03	
ae00b7a2-faa9-3b0a-b3b0-189474f331c3	2021-05-22 00:50:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:50:06.852+03	2021-05-22 00:50:06.861+03	
8d589675-16ea-1d95-4f3e-fb6cc28c86d6	2021-05-22 00:50:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:50:26.853+03	2021-05-22 00:50:26.863+03	
2fcbbb64-d983-d911-0149-bef1deb6bd2d	2021-05-22 00:50:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:50:47.853+03	2021-05-22 00:50:47.86+03	
c62d25b2-fb0b-04c6-f77e-7057e229a7cc	2021-05-22 00:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:51:08.852+03	2021-05-22 00:51:08.859+03	
66371c44-d969-e43b-885c-52c2a8cef9ea	2021-05-22 00:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:51:28.853+03	2021-05-22 00:51:28.859+03	
49569b49-ab5d-323b-ef2e-46f5dd31bf0a	2021-05-22 00:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:51:48.853+03	2021-05-22 00:51:48.861+03	
c067dcc6-889d-45ec-bffe-1ab4b5dda8e0	2021-05-22 00:52:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:52:08.853+03	2021-05-22 00:52:08.862+03	
2cc33760-2e93-e9f0-88a6-14c8325c4601	2021-05-22 00:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:52:28.853+03	2021-05-22 00:52:28.874+03	
49bfe1c4-68da-2431-e3df-0f09fab2d5da	2021-05-22 00:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:32:28.853+03	2021-05-22 00:32:28.876+03	
e7d8f2c6-2bfd-eac4-b443-628a3a8e93d3	2021-05-22 00:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:32:48.853+03	2021-05-22 00:32:48.86+03	
095bba47-0cc2-edc7-feb7-2726cb53ab33	2021-05-22 00:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:33:09.853+03	2021-05-22 00:33:09.859+03	
228eadb3-8ab8-30fa-e08b-73afcf75fde7	2021-05-22 00:33:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:33:29.853+03	2021-05-22 00:33:29.863+03	
b7cfaa8c-9018-eeb9-6196-681b252b3137	2021-05-22 00:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:33:49.853+03	2021-05-22 00:33:49.861+03	
fdf3ae21-bb79-9016-0363-15bf6ac34b0b	2021-05-22 00:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:34:10.853+03	2021-05-22 00:34:10.859+03	
0936b7bf-e84e-d710-7016-bd5394b0807d	2021-05-22 00:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:34:30.853+03	2021-05-22 00:34:30.859+03	
23647365-11ca-a84a-a1c9-1fad6e4d55e4	2021-05-22 00:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:34:50.853+03	2021-05-22 00:34:50.864+03	
41de1a1e-16a6-edad-becb-08c79bc74547	2021-05-22 00:35:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:35:11.854+03	2021-05-22 00:35:11.86+03	
6863830e-9986-de3b-3fe2-b0175b520319	2021-05-22 00:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:35:32.853+03	2021-05-22 00:35:32.864+03	
61198555-f332-6cdc-85cf-49c753b62124	2021-05-22 00:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:35:52.853+03	2021-05-22 00:35:52.86+03	
892a1dbb-2cd7-34ce-751a-1830b351e52d	2021-05-22 00:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:36:13.853+03	2021-05-22 00:36:13.862+03	
5ae52e70-e922-ad46-d2f4-5e339dcf6864	2021-05-22 00:36:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:36:33.853+03	2021-05-22 00:36:33.862+03	
9ab5b490-6165-8ac6-15fe-87f48c2cef2d	2021-05-22 00:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:36:53.853+03	2021-05-22 00:36:53.86+03	
d0b29da8-bdba-c1b5-f5b7-2a247792afbd	2021-05-22 00:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:37:13.853+03	2021-05-22 00:37:13.86+03	
3beeb71c-1caa-b0e1-0da5-80b72bdf4da6	2021-05-22 00:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:37:33.853+03	2021-05-22 00:37:33.86+03	
ce998e81-743d-ec06-03cd-2050e164c093	2021-05-22 00:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:37:53.853+03	2021-05-22 00:37:53.859+03	
c541eede-b70e-c6c6-562d-fa61605811fe	2021-05-22 00:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:38:13.853+03	2021-05-22 00:38:13.86+03	
26022073-e502-0e38-3e9b-1aeba684ac83	2021-05-22 00:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:38:34.853+03	2021-05-22 00:38:34.86+03	
416ac34c-bf18-0fdc-3622-4fe9abb3aacf	2021-05-22 00:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:38:55.853+03	2021-05-22 00:38:55.859+03	
0d2f11a3-02ac-9a05-5028-e2395da05d3e	2021-05-22 00:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:39:15.853+03	2021-05-22 00:39:15.859+03	
cf003550-0639-8dce-6fec-2177f5c9dd94	2021-05-22 00:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:39:35.853+03	2021-05-22 00:39:35.86+03	
d82575d7-4319-1249-2d9e-8d95657fc8f7	2021-05-22 00:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:39:55.853+03	2021-05-22 00:39:55.863+03	
f5e64546-d2d6-7c3f-b152-4e320fa12fb4	2021-05-22 00:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:40:05.853+03	2021-05-22 00:40:05.859+03	
967e893e-54bc-7d33-9be4-700cfa8bdf4e	2021-05-22 00:40:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:40:26.852+03	2021-05-22 00:40:26.859+03	
e3e13aeb-7c8a-a415-8073-4a139d8a2372	2021-05-22 00:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:40:47.853+03	2021-05-22 00:40:47.859+03	
3e54d7fc-81bc-5037-8a99-791ff09d1fb0	2021-05-22 00:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:41:07.853+03	2021-05-22 00:41:07.861+03	
0e225613-302f-546e-99a3-f218ea088464	2021-05-22 00:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:41:27.853+03	2021-05-22 00:41:27.917+03	
93e76eab-ccce-6619-ec7f-dd3ff9d29614	2021-05-22 00:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:41:49.852+03	2021-05-22 00:41:49.859+03	
289a7fd1-cc2d-9c14-1638-020412b1e195	2021-05-22 00:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:42:09.853+03	2021-05-22 00:42:09.858+03	
9c9e4b89-9243-1f0f-0457-20da64e69a3d	2021-05-22 00:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:42:29.853+03	2021-05-22 00:42:29.859+03	
b9b8be5d-81ea-6b2e-a256-060137b5c82c	2021-05-22 00:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:42:50.853+03	2021-05-22 00:42:50.86+03	
d78b2a34-33cd-4128-1fe1-56b19148e55b	2021-05-22 00:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:43:10.853+03	2021-05-22 00:43:10.86+03	
056be3a1-6cf4-12d8-ba68-144378caf089	2021-05-22 00:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:43:30.853+03	2021-05-22 00:43:30.864+03	
6e965961-cca1-225a-ef08-a9b7f3108eec	2021-05-22 00:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:43:50.853+03	2021-05-22 00:43:50.863+03	
7dfe549a-8671-69e8-b598-5d7354d3de8f	2021-05-22 00:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:44:10.853+03	2021-05-22 00:44:10.859+03	
e15938eb-e2c1-d6da-30f7-bfbb105bda9e	2021-05-22 00:44:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:44:31.852+03	2021-05-22 00:44:31.859+03	
99a2c9f4-746e-539b-8be6-75161c258590	2021-05-22 00:44:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:44:51.852+03	2021-05-22 00:44:51.859+03	
64336e38-574b-934b-2fd7-29515a8c1b92	2021-05-22 00:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:45:11.854+03	2021-05-22 00:45:11.861+03	
ef901927-123d-1a72-1812-eab43295b022	2021-05-22 00:45:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:45:31.854+03	2021-05-22 00:45:31.861+03	
447fb274-f55b-b6d4-3dde-329322851e07	2021-05-22 00:45:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:45:51.854+03	2021-05-22 00:45:51.861+03	
9ba4ac45-4045-6061-345c-5565d7f6b83d	2021-05-22 00:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:46:12.852+03	2021-05-22 00:46:12.86+03	
99945d99-0dd3-563a-358d-6719adabd9a1	2021-05-22 00:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:46:32.852+03	2021-05-22 00:46:32.859+03	
7189a303-7f13-8fba-574b-af85d2ed3b8a	2021-05-22 00:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:46:52.853+03	2021-05-22 00:46:52.86+03	
02ab0dcd-a296-4ad1-8a24-93aaf5ed31f6	2021-05-22 00:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:47:12.853+03	2021-05-22 00:47:12.859+03	
54e66fde-bc5f-8cc8-60c8-9d408079b581	2021-05-22 00:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:47:32.853+03	2021-05-22 00:47:32.86+03	
29edde7e-0c29-5f93-c498-99908d2d9a4c	2021-05-22 00:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:47:52.853+03	2021-05-22 00:47:52.86+03	
ddf869c5-d2ab-bfd3-3cb7-a4f79bdf9ff5	2021-05-22 00:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:48:13.853+03	2021-05-22 00:48:13.86+03	
0682d8bb-8d05-c610-9c0a-c328badeddfe	2021-05-22 00:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:48:34.853+03	2021-05-22 00:48:34.873+03	
7de4aa58-fbaa-abe8-1ef0-ee10e8cfe224	2021-05-22 00:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:48:54.853+03	2021-05-22 00:48:54.861+03	
76b3cdb9-b963-4faa-fa03-84d03214b6ef	2021-05-22 00:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:49:14.853+03	2021-05-22 00:49:14.861+03	
1161e955-d255-fed0-52dc-d42052d44257	2021-05-22 00:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:49:34.853+03	2021-05-22 00:49:34.859+03	
f8f9ffa8-e561-a3ef-1ae2-506ea128f60f	2021-05-22 00:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 00:50:00.853+03	2021-05-22 00:50:00.863+03	ERROR
8065eef7-6051-3f03-0c35-f17482cc7bc5	2021-05-22 00:50:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:50:16.853+03	2021-05-22 00:50:16.86+03	
d0f4d516-d972-664d-2ba3-6e2fcdb12ad7	2021-05-22 00:50:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:50:36.854+03	2021-05-22 00:50:36.862+03	
4cbb23f5-703c-fa96-3fde-ec4c988f9501	2021-05-22 00:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:50:57.853+03	2021-05-22 00:50:57.859+03	
cd1c225b-91dc-84ad-6cd3-1aefd8ce98a1	2021-05-22 00:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:51:18.853+03	2021-05-22 00:51:18.862+03	
28752072-381f-9b33-eb62-251f23278864	2021-05-22 00:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:51:38.853+03	2021-05-22 00:51:38.86+03	
2e53d961-a1e3-cbdb-5cfb-ac8b1c654496	2021-05-22 00:51:58.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:51:58.853+03	2021-05-22 00:51:58.863+03	
412ce15a-d378-0150-eace-6ba77b67a8fc	2021-05-22 00:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:52:18.853+03	2021-05-22 00:52:18.864+03	
130d9b5d-7f2c-351b-a89a-0be73509e821	2021-05-22 00:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:52:38.853+03	2021-05-22 00:52:38.872+03	
9d35e006-54c9-8014-42e6-268045de4ad5	2021-05-22 00:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:52:58.853+03	2021-05-22 00:52:58.859+03	
2af87b08-9a3b-43b0-e59f-2d7a1b8b75ae	2021-05-22 00:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:53:18.853+03	2021-05-22 00:53:18.866+03	
7da7e378-e0a7-3e17-4d96-2a6c07b15cd2	2021-05-22 00:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:52:48.853+03	2021-05-22 00:52:48.863+03	
bb6feafa-7d9c-db7a-2efb-4c54c4fdfc14	2021-05-22 00:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:53:08.853+03	2021-05-22 00:53:08.861+03	
8d09d722-8567-d41c-db12-14de61280ba5	2021-05-22 00:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:53:28.853+03	2021-05-22 00:53:28.862+03	
9cb3dec2-b364-9d32-045b-13043079a516	2021-05-22 00:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:53:48.853+03	2021-05-22 00:53:48.86+03	
36788b02-d988-20c8-df22-d924a665a0c4	2021-05-22 00:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:54:09.853+03	2021-05-22 00:54:09.86+03	
6a161094-dd0f-e0e6-52ff-90e242c01a95	2021-05-22 00:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:54:30.853+03	2021-05-22 00:54:30.862+03	
8ea55c0a-fa89-3582-f7b5-e467dbefe7e2	2021-05-22 00:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:54:50.853+03	2021-05-22 00:54:50.861+03	
40e59672-0787-0326-c5b4-2f76ae80de1e	2021-05-22 00:55:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:55:10.853+03	2021-05-22 00:55:10.863+03	
19907de0-6b9f-17e3-f13b-56c070eb9a9d	2021-05-22 00:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:55:30.853+03	2021-05-22 00:55:30.871+03	
c1ac5f38-452a-9d6d-b4e0-1752195808d8	2021-05-22 00:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:55:50.853+03	2021-05-22 00:55:50.862+03	
2d89a6e4-c0c8-318e-b1af-1924457890f4	2021-05-22 00:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:56:11.853+03	2021-05-22 00:56:11.859+03	
0e7398fb-37d5-5c0c-396b-3366858615ef	2021-05-22 00:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:56:32.853+03	2021-05-22 00:56:32.86+03	
a37a079d-3336-2611-8e75-0c83d94e9edf	2021-05-22 00:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:56:52.853+03	2021-05-22 00:56:52.86+03	
f9551a19-f377-9895-acf4-bc786314ec56	2021-05-22 00:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:57:13.853+03	2021-05-22 00:57:13.861+03	
6819f8c6-5fda-aff3-ed99-1a0b836e976f	2021-05-22 00:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:57:33.853+03	2021-05-22 00:57:33.86+03	
8a836498-8ac5-6365-d296-a7eda94c84fa	2021-05-22 00:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:57:53.853+03	2021-05-22 00:57:53.86+03	
a46c0dc5-d64b-5d6d-4fc8-38b34d88e1fb	2021-05-22 00:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:58:13.853+03	2021-05-22 00:58:13.861+03	
0e0d274a-2a89-569f-5e8f-4c0f913f18a0	2021-05-22 00:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:58:33.853+03	2021-05-22 00:58:33.864+03	
07eb0607-ed40-7847-3c18-3536437fb5c6	2021-05-22 00:58:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:58:53.853+03	2021-05-22 00:58:53.864+03	
a2d4c179-92a2-5040-8f60-226527a98bca	2021-05-22 00:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:59:13.853+03	2021-05-22 00:59:13.865+03	
2a21bbb7-b919-d783-0ad0-08c41d8c683d	2021-05-22 00:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:59:33.853+03	2021-05-22 00:59:33.862+03	
74ed89f0-6822-02c0-be7a-ecce8ab587de	2021-05-22 00:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:59:53.853+03	2021-05-22 00:59:53.859+03	
9ddcd750-926b-7cf6-a995-acaaa09dae0d	2021-05-22 01:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:00:03.853+03	2021-05-22 01:00:03.918+03	
15d7b791-27a7-dde2-aa00-77b3482b9b4f	2021-05-22 01:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:00:23.853+03	2021-05-22 01:00:23.864+03	
6d7af46b-6681-df3b-2c65-54a0413639ce	2021-05-22 01:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:00:43.853+03	2021-05-22 01:00:43.87+03	
8e937ac0-0c7c-37da-8ff3-32b89848f1cc	2021-05-22 01:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:01:04.853+03	2021-05-22 01:01:04.861+03	
5327dbd5-5a07-fa08-5f1e-25f41013e6c3	2021-05-22 01:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:01:24.853+03	2021-05-22 01:01:24.86+03	
0d5c5dcc-e9bd-cff7-0b6d-1a137556cd45	2021-05-22 01:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:01:44.853+03	2021-05-22 01:01:44.861+03	
241f2b4e-dd76-1f25-28d5-7c26fc6362b2	2021-05-22 01:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:02:04.853+03	2021-05-22 01:02:04.861+03	
853e620e-aab0-4d01-e9fb-a68b96b2cbec	2021-05-22 01:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:02:24.853+03	2021-05-22 01:02:24.87+03	
88728c33-c3f7-679f-5e26-573c67293e0b	2021-05-22 01:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:02:44.853+03	2021-05-22 01:02:44.861+03	
d845385c-af3f-8fa6-c495-01a7c9f334d9	2021-05-22 01:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:03:04.853+03	2021-05-22 01:03:04.863+03	
dfd0a120-1f45-8779-135f-40003c12a429	2021-05-22 01:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:03:24.853+03	2021-05-22 01:03:24.861+03	
478746fa-6303-2818-5826-a8d3ad6ff6fb	2021-05-22 01:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:03:44.853+03	2021-05-22 01:03:44.86+03	
be5b06d8-0a2e-2ca4-7153-92f46db3bd8b	2021-05-22 01:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:04:04.853+03	2021-05-22 01:04:04.865+03	
e7e41167-2ae0-14ab-88f3-683a79007e72	2021-05-22 01:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:04:24.853+03	2021-05-22 01:04:24.864+03	
391a1ca3-c3cc-4a87-b726-15ccdb01ae86	2021-05-22 01:04:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:04:44.853+03	2021-05-22 01:04:44.861+03	
8e21df1b-cb3a-33da-2b99-3d07572e0d73	2021-05-22 01:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:05:05.853+03	2021-05-22 01:05:05.86+03	
1718986d-a5ce-3c73-823d-2c82deb84797	2021-05-22 01:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:05:25.853+03	2021-05-22 01:05:25.872+03	
bd9a7c52-76a5-e40c-c0c6-7301216fb6b4	2021-05-22 01:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:05:45.853+03	2021-05-22 01:05:45.86+03	
cbd03eb1-095b-9f4b-d57a-53f71f1ba0cc	2021-05-22 01:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:06:05.853+03	2021-05-22 01:06:05.86+03	
0e944036-e661-10eb-4427-2e3a2c83c119	2021-05-22 01:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:06:26.853+03	2021-05-22 01:06:26.863+03	
4c60473f-d3f1-50c0-7114-b8785fa588b0	2021-05-22 01:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:06:47.853+03	2021-05-22 01:06:47.859+03	
ec72aed8-4297-e2ca-5339-8acba87352af	2021-05-22 01:07:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:07:07.853+03	2021-05-22 01:07:07.868+03	
5b6be1e3-e12d-85c3-a2a7-0dba78e91882	2021-05-22 01:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:07:28.853+03	2021-05-22 01:07:28.859+03	
429f2b08-7352-535d-d024-8ca5c7490365	2021-05-22 01:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:07:48.853+03	2021-05-22 01:07:48.859+03	
68c5cd62-c552-781c-1443-fd6c07657f22	2021-05-22 01:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:08:08.853+03	2021-05-22 01:08:08.861+03	
1b98614f-396b-2f8f-1488-6f70527da449	2021-05-22 01:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:08:28.853+03	2021-05-22 01:08:28.861+03	
82eb4880-62fc-b0e6-fff6-e8e4376d5921	2021-05-22 01:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:08:48.853+03	2021-05-22 01:08:48.862+03	
463751d0-41b6-a7a2-a7d7-dd49911a4201	2021-05-22 01:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:09:08.853+03	2021-05-22 01:09:08.874+03	
0be4a8b6-741a-a183-09e9-0fc1691f038a	2021-05-22 01:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:09:29.853+03	2021-05-22 01:09:29.86+03	
1db0083a-f333-eb55-1674-3c53454263f8	2021-05-22 01:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:09:50.853+03	2021-05-22 01:09:50.859+03	
79e8e8bf-e363-c38e-5682-24a72ea5e427	2021-05-22 01:10:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:10:11.854+03	2021-05-22 01:10:11.861+03	
2a09b23e-1fd1-e212-5328-4382b5e549e1	2021-05-22 01:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:10:32.853+03	2021-05-22 01:10:32.873+03	
1bf2a59a-3feb-9a9e-a44a-72016c64c809	2021-05-22 01:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:10:52.853+03	2021-05-22 01:10:52.862+03	
77b58d4f-0788-1bbe-dec1-1570aa75341e	2021-05-22 01:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:11:12.853+03	2021-05-22 01:11:12.864+03	
971beeb2-fa15-542c-8c23-54d1e076d8d3	2021-05-22 01:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:11:33.853+03	2021-05-22 01:11:33.861+03	
067a61ae-0880-1484-02b4-1f33983b086c	2021-05-22 01:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:11:54.853+03	2021-05-22 01:11:54.876+03	
f38fabbf-8b24-5e4f-7c7c-e74919d34e40	2021-05-22 01:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:12:14.853+03	2021-05-22 01:12:14.86+03	
bc7db033-2257-b490-e7ff-208aeb667f3b	2021-05-22 01:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:12:34.853+03	2021-05-22 01:12:34.861+03	
dea2edcb-482e-90e1-79bb-611ca83371c7	2021-05-22 01:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:12:55.853+03	2021-05-22 01:12:55.859+03	
76eaa73c-ecbf-1325-5c98-1682c034ada5	2021-05-22 01:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:13:15.853+03	2021-05-22 01:13:15.861+03	
45c0ce55-0077-71d7-1e59-69915525ccf3	2021-05-22 01:13:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:13:36.853+03	2021-05-22 01:13:36.861+03	
927cb268-36fa-add0-df15-d6955b96c7e7	2021-05-22 00:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:53:38.853+03	2021-05-22 00:53:38.862+03	
d4cd7654-bd57-e12f-b2ea-45b1a5906d8b	2021-05-22 00:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:53:58.853+03	2021-05-22 00:53:58.874+03	
91730488-28d1-2a85-2886-f48d66e3bcd6	2021-05-22 00:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:54:20.853+03	2021-05-22 00:54:20.908+03	
b9db66a3-b8b0-6192-bb06-cff463c3f5d8	2021-05-22 00:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:54:40.853+03	2021-05-22 00:54:40.868+03	
b1aecf93-6f16-1ce6-8e62-8a5d7a410038	2021-05-22 00:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:55:00.853+03	2021-05-22 00:55:00.872+03	
f113854d-2c9f-13c2-9c55-743f483faff7	2021-05-22 00:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:55:20.853+03	2021-05-22 00:55:20.862+03	
1da2618d-14df-68f4-7f8c-8ce5e27b29a5	2021-05-22 00:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:55:40.853+03	2021-05-22 00:55:40.861+03	
b3f9a34d-ce01-0c06-073c-24d0066a38fe	2021-05-22 00:56:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:56:01.853+03	2021-05-22 00:56:01.859+03	
43a0d849-229c-4b75-c994-6b7d3ef68bfd	2021-05-22 00:56:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:56:21.854+03	2021-05-22 00:56:21.87+03	
ffda4360-3fa5-887d-e37b-95c92b22b238	2021-05-22 00:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:56:42.853+03	2021-05-22 00:56:42.868+03	
c4afd250-ba6f-106e-3f74-46b5871e4300	2021-05-22 00:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:57:03.853+03	2021-05-22 00:57:03.86+03	
738b7f2c-a5f3-3615-4cc1-7a73879899c0	2021-05-22 00:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:57:23.853+03	2021-05-22 00:57:23.871+03	
abff8484-ec76-3ed8-62d6-9cee46f2331f	2021-05-22 00:57:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:57:43.853+03	2021-05-22 00:57:43.868+03	
b8d994df-e16b-2531-b75c-b8aa35408a99	2021-05-22 00:58:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:58:03.853+03	2021-05-22 00:58:03.86+03	
7a85adcb-6155-aa7e-5b7f-e87295f7304a	2021-05-22 00:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:58:23.853+03	2021-05-22 00:58:23.862+03	
beb7a09e-70c7-f624-d972-52112a6d9098	2021-05-22 00:58:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:58:43.853+03	2021-05-22 00:58:43.869+03	
b417c8b6-8c46-f30f-000e-1fd3adf5058c	2021-05-22 00:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:59:03.853+03	2021-05-22 00:59:03.861+03	
3ef583fc-9b09-1af6-6247-a8c77a97a211	2021-05-22 00:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:59:23.853+03	2021-05-22 00:59:23.883+03	
6873c716-1471-dfae-76b1-69e8e19b4f96	2021-05-22 00:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 00:59:43.853+03	2021-05-22 00:59:43.867+03	
4c2aef10-f899-0bcf-70ae-245980df6cc9	2021-05-22 01:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 01:00:00.853+03	2021-05-22 01:00:00.859+03	ERROR
d0ba5df8-8183-3a88-a70c-3f47f5750a07	2021-05-22 01:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:00:13.853+03	2021-05-22 01:00:13.863+03	
8c53cd8b-33f6-a407-6d5d-b65ebf28c8af	2021-05-22 01:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:00:33.853+03	2021-05-22 01:00:33.863+03	
24919327-c8a7-0754-4b49-e2376b70f29f	2021-05-22 01:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:00:54.853+03	2021-05-22 01:00:54.863+03	
79ac8acf-487e-7f42-c8a3-0f99a0ee9f24	2021-05-22 01:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:01:14.853+03	2021-05-22 01:01:14.861+03	
268a1517-6e71-e5eb-c5a3-775e589bca5d	2021-05-22 01:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:01:34.853+03	2021-05-22 01:01:34.86+03	
aa5a2dba-b1d8-4af0-13c7-650667403226	2021-05-22 01:01:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:01:54.853+03	2021-05-22 01:01:54.862+03	
adf2c86b-3c78-8e64-c773-1b5c80d42f53	2021-05-22 01:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:02:14.853+03	2021-05-22 01:02:14.871+03	
a3c09936-673b-da3f-7386-c5ad2dab24b2	2021-05-22 01:02:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:02:34.853+03	2021-05-22 01:02:34.861+03	
75473312-8b5e-b4e8-8c18-fe3577d109b8	2021-05-22 01:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:02:54.853+03	2021-05-22 01:02:54.862+03	
6505d7d2-a7c4-f401-043b-2388f6567186	2021-05-22 01:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:03:14.853+03	2021-05-22 01:03:14.861+03	
02419c22-7676-71b6-12b6-44f572b92224	2021-05-22 01:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:03:34.853+03	2021-05-22 01:03:34.86+03	
768a7b3d-d1b0-7ff7-7445-fd83f369cb09	2021-05-22 01:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:03:54.853+03	2021-05-22 01:03:54.86+03	
4d8b94c5-3f83-8355-1f33-4d6cbd1476a5	2021-05-22 01:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:04:14.853+03	2021-05-22 01:04:14.862+03	
d02dd811-651e-e5bf-c041-17ef6556f3a6	2021-05-22 01:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:04:34.853+03	2021-05-22 01:04:34.863+03	
fc8ea4ad-854e-131d-16cd-5d512e7b022e	2021-05-22 01:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:04:55.852+03	2021-05-22 01:04:55.859+03	
76398872-0a31-0362-90f7-5448f2d83e89	2021-05-22 01:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:05:15.853+03	2021-05-22 01:05:15.883+03	
ff51b265-65b5-2de0-6ae3-fc6f024d9544	2021-05-22 01:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:05:35.853+03	2021-05-22 01:05:35.861+03	
68b8d150-9800-76c8-3103-39a24587695d	2021-05-22 01:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:05:55.853+03	2021-05-22 01:05:55.861+03	
facffc44-4573-ee65-dba2-ab217dc13456	2021-05-22 01:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:06:15.853+03	2021-05-22 01:06:15.865+03	
7e7f8a35-f1c1-220f-edbd-f5163ef7d164	2021-05-22 01:06:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:06:36.854+03	2021-05-22 01:06:36.873+03	
bc27e397-b6c7-08d3-7350-f6f5c5014580	2021-05-22 01:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:06:57.853+03	2021-05-22 01:06:57.859+03	
fa0fb320-0cc1-d3d2-9d93-4d2fa86025c7	2021-05-22 01:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:07:18.853+03	2021-05-22 01:07:18.859+03	
bad66755-03a8-d10b-2acd-63d2ec9bec76	2021-05-22 01:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:07:38.853+03	2021-05-22 01:07:38.859+03	
ae1848e8-7274-8825-45f6-9a27269a7b66	2021-05-22 01:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:07:58.853+03	2021-05-22 01:07:58.862+03	
748272e1-78b4-bd26-b3b6-07b62dcecfe4	2021-05-22 01:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:08:18.853+03	2021-05-22 01:08:18.877+03	
d852d0bc-6901-51c9-5edb-54f81377505d	2021-05-22 01:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:08:38.853+03	2021-05-22 01:08:38.86+03	
bc8319fe-895c-7485-e898-8b19ac18f05a	2021-05-22 01:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:08:58.853+03	2021-05-22 01:08:58.913+03	
0d873b99-2ec6-89f8-8c55-1cc01fed8be8	2021-05-22 01:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:09:19.852+03	2021-05-22 01:09:19.859+03	
48695827-dc66-bd71-c6e0-b1a5d85a289d	2021-05-22 01:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:09:40.853+03	2021-05-22 01:09:40.86+03	
3c6340fc-4ffa-6e53-c6ef-c0abb7d7c644	2021-05-22 01:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:10:00.853+03	2021-05-22 01:10:00.861+03	
f409b5b6-167d-1f6b-5aba-4606858c4f08	2021-05-22 01:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 01:10:00.853+03	2021-05-22 01:10:00.877+03	ERROR
115645ad-1f3e-8b91-e8be-a2435fbff81e	2021-05-22 01:10:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:10:22.853+03	2021-05-22 01:10:22.86+03	
a7bd16da-b3a2-bd8e-76c7-2d760f093e4e	2021-05-22 01:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:10:42.853+03	2021-05-22 01:10:42.861+03	
34c64191-8ef0-a004-2463-52f8718ee83c	2021-05-22 01:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:11:02.853+03	2021-05-22 01:11:02.862+03	
5cdffb5f-c1d3-d2ca-db66-b679152d5192	2021-05-22 01:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:11:22.853+03	2021-05-22 01:11:22.859+03	
b130d5df-3049-66a3-2e72-6441df827289	2021-05-22 01:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:11:44.853+03	2021-05-22 01:11:44.87+03	
635cd9ab-e2b6-86cd-e84c-332e447f323c	2021-05-22 01:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:12:04.853+03	2021-05-22 01:12:04.863+03	
4e8859a4-0efb-843f-8692-6c520635fa8b	2021-05-22 01:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:12:24.853+03	2021-05-22 01:12:24.861+03	
b85a1cc5-b59d-a8bf-e871-51d7d0455e6c	2021-05-22 01:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:12:45.853+03	2021-05-22 01:12:45.864+03	
6aa02e1a-7b40-7440-bad0-e327bb07eeeb	2021-05-22 01:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:13:05.853+03	2021-05-22 01:13:05.861+03	
8421b482-965b-498b-88a1-981fd01eb8eb	2021-05-22 01:13:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:13:26.853+03	2021-05-22 01:13:26.868+03	
06652e64-8d0d-660c-dcfd-3f19a87e617e	2021-05-22 01:13:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:13:46.854+03	2021-05-22 01:13:46.863+03	
6c339554-09e8-6b2c-8ca8-cdd306d74aa9	2021-05-22 01:14:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:14:07.853+03	2021-05-22 01:14:07.859+03	
8308cbeb-264a-7a8e-fdbb-ba05b0f6e26d	2021-05-22 01:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:13:57.852+03	2021-05-22 01:13:57.858+03	
567905c8-2ca8-f34d-7012-6f6bd200498d	2021-05-22 01:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:14:17.853+03	2021-05-22 01:14:17.908+03	
29e5d1af-3f34-79cd-f3af-12f64830b661	2021-05-22 01:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:14:38.852+03	2021-05-22 01:14:38.859+03	
28bf4715-9e59-b601-478e-5f92beacac82	2021-05-22 01:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:14:58.852+03	2021-05-22 01:14:58.859+03	
3f8d2a99-abda-c48d-954f-1c4829340dec	2021-05-22 01:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:15:18.853+03	2021-05-22 01:15:18.86+03	
794d8e77-7f92-69b4-71a2-bbbf6d8e8316	2021-05-22 01:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:15:38.853+03	2021-05-22 01:15:38.861+03	
2e9ee4dd-7090-3a8b-f7ba-a392b066124c	2021-05-22 01:15:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:15:59.853+03	2021-05-22 01:15:59.86+03	
559dfea8-23ae-bfd7-888e-563c9adaa6d2	2021-05-22 01:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:16:20.852+03	2021-05-22 01:16:20.859+03	
32b4a237-1f2e-364b-36b0-a6e8faae3832	2021-05-22 01:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:16:40.852+03	2021-05-22 01:16:40.86+03	
bcac6e17-7c9f-2519-cf71-60fc318da502	2021-05-22 01:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:17:00.853+03	2021-05-22 01:17:00.86+03	
20c314a8-a773-588d-cbe4-ec9f5bf80a1d	2021-05-22 01:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:17:20.853+03	2021-05-22 01:17:20.86+03	
2023d93e-656b-426d-164c-8d63f27a17a7	2021-05-22 01:17:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:17:41.852+03	2021-05-22 01:17:41.873+03	
cf7d0d17-73a7-9aa4-b27f-17799582a958	2021-05-22 01:18:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:18:01.853+03	2021-05-22 01:18:01.861+03	
b8b3e23c-2e81-ee6e-1255-e32960353e2e	2021-05-22 01:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:18:21.854+03	2021-05-22 01:18:21.861+03	
1add4bd1-be9a-86e4-0210-a0ea8495d924	2021-05-22 01:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:18:42.853+03	2021-05-22 01:18:42.86+03	
4db27b3b-91fc-c942-dfde-22fffa4d631d	2021-05-22 01:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:19:03.852+03	2021-05-22 01:19:03.859+03	
616d4170-d7b0-d944-8fd4-3505d68944cc	2021-05-22 01:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:19:23.853+03	2021-05-22 01:19:23.862+03	
85903526-d500-00d6-f72e-ce18a6c0cfc5	2021-05-22 01:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:19:43.853+03	2021-05-22 01:19:43.859+03	
f8669d70-54e6-d2c2-e230-7211015e4af8	2021-05-22 01:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 01:20:00.852+03	2021-05-22 01:20:00.868+03	ERROR
3630f9df-d357-3c61-cd56-7db12c2af49d	2021-05-22 01:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:20:14.853+03	2021-05-22 01:20:14.859+03	
1521e844-301c-9417-1944-80f510f3f198	2021-05-22 01:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:20:34.853+03	2021-05-22 01:20:34.873+03	
808ec3af-9f9a-da73-e13c-71720e88d945	2021-05-22 01:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:20:54.853+03	2021-05-22 01:20:54.86+03	
ce7bdfcc-573e-4c92-a7e2-8d47dadd998e	2021-05-22 01:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:21:15.853+03	2021-05-22 01:21:15.859+03	
6d4b5bfe-2a94-d6e0-027b-8dc963edb4ae	2021-05-22 01:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:21:37.853+03	2021-05-22 01:21:37.86+03	
dda53e05-164a-78c5-7db8-ff45db96b5b1	2021-05-22 01:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:21:58.852+03	2021-05-22 01:21:58.859+03	
434d39d2-0ed1-cecd-bf6d-a67d9d548b88	2021-05-22 01:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:22:18.852+03	2021-05-22 01:22:18.859+03	
c6b9ca87-56d7-457f-b2d8-368d1eb5ef1a	2021-05-22 01:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:22:38.853+03	2021-05-22 01:22:38.861+03	
96dfbac2-8406-8ca4-9446-8b1ea3e39253	2021-05-22 01:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:22:59.853+03	2021-05-22 01:22:59.859+03	
362caccb-f341-8770-d849-81cda56000de	2021-05-22 01:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:23:20.852+03	2021-05-22 01:23:20.86+03	
9aea6a87-024a-ae50-3886-58f258d4edf5	2021-05-22 01:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:23:40.853+03	2021-05-22 01:23:40.861+03	
203a9970-9ed5-80ba-35c7-7654ed23eaf1	2021-05-22 01:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:24:00.853+03	2021-05-22 01:24:00.86+03	
fc02c372-c16a-86a7-006c-5a752be0552e	2021-05-22 01:24:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:24:21.853+03	2021-05-22 01:24:21.86+03	
dec72aa0-9ce9-d424-829b-1bc30c581273	2021-05-22 01:24:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:24:41.853+03	2021-05-22 01:24:41.859+03	
5d3af0d8-0116-31d2-67ab-6f58eb3b593a	2021-05-22 01:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:25:02.853+03	2021-05-22 01:25:02.861+03	
ffa1c25b-fa43-a01a-6df7-891d86ddaef2	2021-05-22 01:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:25:22.853+03	2021-05-22 01:25:22.865+03	
fee181b4-c206-1f64-8afc-cac67f1af518	2021-05-22 01:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:25:42.853+03	2021-05-22 01:25:42.871+03	
acc86c59-6c65-4443-15ed-23dbcb029657	2021-05-22 01:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:26:03.853+03	2021-05-22 01:26:03.861+03	
b28c11da-01ae-0977-9f7f-77153e12dfa9	2021-05-22 01:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:26:23.853+03	2021-05-22 01:26:23.861+03	
d43a861d-1ddd-5eb1-8559-043ef9b4f8f6	2021-05-22 01:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:26:43.853+03	2021-05-22 01:26:43.862+03	
9dbe3c33-6cc0-342e-4556-8e47d65cec3f	2021-05-22 01:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:27:04.852+03	2021-05-22 01:27:04.863+03	
7c7845e5-47f3-7108-7ab1-4585177a0e44	2021-05-22 01:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:27:24.853+03	2021-05-22 01:27:24.861+03	
2f035788-745f-34b3-5920-969393713e57	2021-05-22 01:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:27:45.853+03	2021-05-22 01:27:45.859+03	
b1150487-ee81-723e-2f4a-8d738537005b	2021-05-22 01:28:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:28:06.852+03	2021-05-22 01:28:06.862+03	
5338ddc9-be1e-6bf4-b7af-4a1014e2f78d	2021-05-22 01:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:28:27.853+03	2021-05-22 01:28:27.859+03	
5aca5995-1c72-ed7f-6505-fcb49f25ae77	2021-05-22 01:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:28:48.852+03	2021-05-22 01:28:48.859+03	
a74e0a7b-88e2-4a42-9733-4244074c4a7e	2021-05-22 01:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:29:08.853+03	2021-05-22 01:29:08.859+03	
f66152b6-2255-6b25-5201-815ccaa74563	2021-05-22 01:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:29:29.853+03	2021-05-22 01:29:29.868+03	
473b0101-cc9e-a1dd-d30b-d748477ba32d	2021-05-22 01:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:29:49.853+03	2021-05-22 01:29:49.873+03	
54e8eb54-a085-739e-5593-7aed7905fa69	2021-05-22 01:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:30:10.853+03	2021-05-22 01:30:10.86+03	
47cf2811-d173-f9d8-bb52-989c07143a45	2021-05-22 01:30:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:30:31.855+03	2021-05-22 01:30:31.862+03	
2b438d1a-6527-349b-fef5-9e720cbed8a9	2021-05-22 01:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:30:53.852+03	2021-05-22 01:30:53.859+03	
0f8eb797-f0d3-f5d4-2c8b-3905c3754f56	2021-05-22 01:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:31:13.853+03	2021-05-22 01:31:13.861+03	
55887b1c-fbe0-b795-32b6-0c3c28f199e3	2021-05-22 01:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:31:33.853+03	2021-05-22 01:31:33.866+03	
c026b085-671a-f6b1-9b8e-9f947224a809	2021-05-22 01:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:31:55.852+03	2021-05-22 01:31:55.859+03	
427faa91-c240-b857-b83d-920dc97b6d0f	2021-05-22 01:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:32:15.853+03	2021-05-22 01:32:15.861+03	
1f995c91-e71a-ee75-1fb2-49ecbb34267f	2021-05-22 01:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:32:35.853+03	2021-05-22 01:32:35.86+03	
cf45304e-1a6f-87fe-bbb7-b5531cab9409	2021-05-22 01:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:32:55.853+03	2021-05-22 01:32:55.859+03	
190d582e-d249-e77d-a435-2a95440ea9fc	2021-05-22 01:33:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:33:16.852+03	2021-05-22 01:33:16.859+03	
7ea0851f-1a19-cfab-ec7d-9e6a0028498a	2021-05-22 01:33:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:33:36.853+03	2021-05-22 01:33:36.861+03	
d94864b2-48f9-cea3-076b-4d65654837e8	2021-05-22 01:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:33:57.853+03	2021-05-22 01:33:57.863+03	
2e5385f6-1272-3add-e7b6-ca34b513b564	2021-05-22 01:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:34:18.853+03	2021-05-22 01:34:18.863+03	
fbf7ac3d-013a-03ca-0b4a-6694328449e3	2021-05-22 01:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:34:39.853+03	2021-05-22 01:34:39.861+03	
d75551ad-719d-1128-db63-12b1b7b0c270	2021-05-22 01:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:35:01.853+03	2021-05-22 01:35:01.861+03	
3f927035-78a6-e3be-a281-511c8d87fef4	2021-05-22 01:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:14:27.853+03	2021-05-22 01:14:27.86+03	
6bd9ce33-c2eb-a9d9-db91-87678486eb8e	2021-05-22 01:14:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:14:48.852+03	2021-05-22 01:14:48.859+03	
364ede57-8aa5-97dc-35c3-fa0f5555f7c5	2021-05-22 01:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:15:08.852+03	2021-05-22 01:15:08.859+03	
ff57653a-792f-11ac-513f-3c6b82de72e9	2021-05-22 01:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:15:28.853+03	2021-05-22 01:15:28.862+03	
b2736711-dc27-4aa5-efd2-29de575cde00	2021-05-22 01:15:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:15:49.853+03	2021-05-22 01:15:49.862+03	
467a3919-fb11-ffa7-1f4f-9bc175b8b504	2021-05-22 01:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:16:09.853+03	2021-05-22 01:16:09.86+03	
2b53bf31-8423-a6d4-9667-f0ceaf70fa92	2021-05-22 01:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:16:30.852+03	2021-05-22 01:16:30.859+03	
0adfa446-da19-2f0e-0250-e9ce516f670c	2021-05-22 01:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:16:50.853+03	2021-05-22 01:16:50.86+03	
2146ecf3-2398-b56e-88da-c2f7bf7eb0bb	2021-05-22 01:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:17:10.853+03	2021-05-22 01:17:10.859+03	
5a1631e2-a0c0-160b-91e3-d281762afb34	2021-05-22 01:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:17:30.853+03	2021-05-22 01:17:30.861+03	
567f54e0-c83a-0b37-f422-c47004b4de29	2021-05-22 01:17:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:17:51.853+03	2021-05-22 01:17:51.859+03	
bb3c6d2a-a9c0-6402-f7c8-5e7d43a37c6d	2021-05-22 01:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:18:11.853+03	2021-05-22 01:18:11.872+03	
9859934a-66de-14ec-b5d9-87175e2ede16	2021-05-22 01:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:18:32.852+03	2021-05-22 01:18:32.86+03	
a5d744f5-7e64-8eee-7ce0-94017b43cf09	2021-05-22 01:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:18:53.852+03	2021-05-22 01:18:53.858+03	
a0cf13eb-c2e1-b38f-7765-079866a7a623	2021-05-22 01:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:19:13.852+03	2021-05-22 01:19:13.859+03	
a12ed4c3-03ab-1ec1-fa2b-9af73ef4f253	2021-05-22 01:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:19:33.853+03	2021-05-22 01:19:33.872+03	
d6a2fd0a-0330-f0a4-0610-86b5e34ae4dc	2021-05-22 01:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:19:53.853+03	2021-05-22 01:19:53.86+03	
ce12152a-6618-f680-e15b-9fac34774118	2021-05-22 01:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:20:04.853+03	2021-05-22 01:20:04.86+03	
13acd909-2f32-8e63-1ca0-6e31ed80741b	2021-05-22 01:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:20:24.853+03	2021-05-22 01:20:24.87+03	
fceee729-bf5f-fbdc-35f3-9dc1cfb403b1	2021-05-22 01:20:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:20:44.853+03	2021-05-22 01:20:44.861+03	
166315b3-1b37-c8e0-9d4f-634cedae8f0b	2021-05-22 01:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:21:05.853+03	2021-05-22 01:21:05.859+03	
66d87e20-7f45-3494-d842-95ce8af46123	2021-05-22 01:21:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:21:26.854+03	2021-05-22 01:21:26.861+03	
a1f60560-8a3b-7a08-007b-ae1451ca864b	2021-05-22 01:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:21:47.853+03	2021-05-22 01:21:47.859+03	
44117ffb-d796-43cd-4193-5e96097cfcf4	2021-05-22 01:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:22:08.852+03	2021-05-22 01:22:08.859+03	
0ce20879-30eb-212a-f75a-2af6632a6f4d	2021-05-22 01:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:22:28.853+03	2021-05-22 01:22:28.867+03	
8392ce0c-e68c-28ec-c73f-102852af6e6f	2021-05-22 01:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:22:49.853+03	2021-05-22 01:22:49.861+03	
c2b80ba0-dfdd-b0c2-c481-7d4e98788239	2021-05-22 01:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:23:09.853+03	2021-05-22 01:23:09.871+03	
ae9070c5-2e2b-a7ee-d7cb-13d9bf1d68a0	2021-05-22 01:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:23:30.852+03	2021-05-22 01:23:30.86+03	
8b57a982-7c1e-1a97-2bd6-503d15dddd4a	2021-05-22 01:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:23:50.853+03	2021-05-22 01:23:50.859+03	
87088715-3b0c-6b31-2649-a6c94d5880b2	2021-05-22 01:24:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:24:11.853+03	2021-05-22 01:24:11.861+03	
b3696abf-0e1e-25f6-b273-fda47bf4dc9c	2021-05-22 01:24:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:24:31.853+03	2021-05-22 01:24:31.864+03	
987c187d-5276-203d-748d-f033bcfde4df	2021-05-22 01:24:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:24:51.853+03	2021-05-22 01:24:51.861+03	
0ebf70b3-cf32-40c4-7bb8-39ac0d1e4134	2021-05-22 01:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:25:12.853+03	2021-05-22 01:25:12.868+03	
f4462fc0-e24b-4033-6c59-3bb440d90b3b	2021-05-22 01:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:25:32.853+03	2021-05-22 01:25:32.861+03	
8aeb5d37-7fb2-affe-9509-f3cc55108493	2021-05-22 01:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:25:52.853+03	2021-05-22 01:25:52.86+03	
903824a3-64f5-fe1b-dbba-29939fa2c61e	2021-05-22 01:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:26:13.853+03	2021-05-22 01:26:13.861+03	
e64c20d8-a9cd-e4ed-8854-9ef30b5f7f16	2021-05-22 01:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:26:33.853+03	2021-05-22 01:26:33.862+03	
e28ec140-b425-9926-31c5-85198678dc4b	2021-05-22 01:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:26:54.852+03	2021-05-22 01:26:54.859+03	
3d8b8e60-1c77-7d5a-5bfe-19ca847ca682	2021-05-22 01:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:27:14.852+03	2021-05-22 01:27:14.867+03	
b1fa54e1-d062-453a-6844-533d4b48543c	2021-05-22 01:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:27:34.853+03	2021-05-22 01:27:34.862+03	
0f3b0a96-9177-18a3-7de2-1b3d2b52ea06	2021-05-22 01:27:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:27:56.852+03	2021-05-22 01:27:56.859+03	
ef967a2a-46de-194c-cf45-06909f9644f5	2021-05-22 01:28:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:28:16.853+03	2021-05-22 01:28:16.871+03	
984fe5e6-24c1-c5ac-05d4-421c18796299	2021-05-22 01:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:28:37.853+03	2021-05-22 01:28:37.861+03	
e6015134-9d63-1d79-c25b-1dd9fba03777	2021-05-22 01:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:28:58.852+03	2021-05-22 01:28:58.859+03	
3d1e52fc-b207-f7d9-c52f-76429a92f561	2021-05-22 01:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:29:19.853+03	2021-05-22 01:29:19.861+03	
e586d893-2e34-1657-0b39-c8b8fb8a1fc0	2021-05-22 01:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:29:39.853+03	2021-05-22 01:29:39.86+03	
51830347-35d7-9167-c6ea-b2dd718ddc7d	2021-05-22 01:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:30:00.852+03	2021-05-22 01:30:00.861+03	
2c3c512f-6861-688c-f05c-a0b50bb63d29	2021-05-22 01:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 01:30:00.853+03	2021-05-22 01:30:00.873+03	ERROR
2e05db52-53d4-98d5-7036-fdf915e17466	2021-05-22 01:30:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:30:21.853+03	2021-05-22 01:30:21.86+03	
c2791eed-6528-a8b4-9339-4f91518785df	2021-05-22 01:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:30:42.853+03	2021-05-22 01:30:42.859+03	
ea4d4262-4f20-b4b8-d8bd-a7e6d3ccb566	2021-05-22 01:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:31:03.852+03	2021-05-22 01:31:03.859+03	
3f9c14b7-1cfa-086f-b5f2-ade0e45e561f	2021-05-22 01:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:31:23.853+03	2021-05-22 01:31:23.86+03	
39422e11-e9f0-8d80-a05c-0b7b76727490	2021-05-22 01:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:31:44.853+03	2021-05-22 01:31:44.869+03	
cb39f506-343d-a25c-dd94-ace3362056ef	2021-05-22 01:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:32:05.853+03	2021-05-22 01:32:05.859+03	
f5f07add-4715-9e68-c163-890446a1784c	2021-05-22 01:32:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:32:25.853+03	2021-05-22 01:32:25.876+03	
b359f6b6-c35d-d79e-a16e-b43288dba425	2021-05-22 01:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:32:45.853+03	2021-05-22 01:32:45.867+03	
31b15dd0-cce9-357c-dc2c-82fb5af0db79	2021-05-22 01:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:33:05.853+03	2021-05-22 01:33:05.864+03	
df4858f7-1e05-8c78-7501-e42df3b29cda	2021-05-22 01:33:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:33:26.852+03	2021-05-22 01:33:26.859+03	
9f371cd5-061c-8c9c-6718-c387f9cac621	2021-05-22 01:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:33:47.853+03	2021-05-22 01:33:47.859+03	
78b9f84b-a4f8-3320-804b-58c696719d57	2021-05-22 01:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:34:08.853+03	2021-05-22 01:34:08.861+03	
23558f10-886c-eca0-0192-8776a5bf6dff	2021-05-22 01:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:34:29.852+03	2021-05-22 01:34:29.86+03	
73192f40-f8d7-119a-eec0-26d589b03765	2021-05-22 01:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:34:50.853+03	2021-05-22 01:34:50.864+03	
8c40ec71-8663-4a02-4e34-06783a733835	2021-05-22 01:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:35:12.853+03	2021-05-22 01:35:12.87+03	
0242d16a-4e23-bf12-10dc-bb8fd10c0b23	2021-05-22 01:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:35:23.853+03	2021-05-22 01:35:23.86+03	
8ac526a2-73a3-a0a7-fdea-ed073cf4fe3e	2021-05-22 01:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:35:43.853+03	2021-05-22 01:35:43.861+03	
97bf0d19-e259-c9e3-8ad9-3ec0c8c1f189	2021-05-22 01:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:36:03.853+03	2021-05-22 01:36:03.863+03	
95cc06d8-e2c9-e66d-fdaf-3beba74f3e04	2021-05-22 01:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:36:23.853+03	2021-05-22 01:36:23.87+03	
461e2fd1-54be-2d49-13b1-bfb011be3be9	2021-05-22 01:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:36:43.853+03	2021-05-22 01:36:43.862+03	
9b592625-2e33-5b2e-bc95-f7528aed42ed	2021-05-22 01:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:37:03.853+03	2021-05-22 01:37:03.859+03	
d1481c61-fdd8-e079-1cee-cc295242967f	2021-05-22 01:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:37:23.853+03	2021-05-22 01:37:23.86+03	
8cecb565-2935-1b6d-5298-783135221b97	2021-05-22 01:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:37:43.853+03	2021-05-22 01:37:43.86+03	
42333fa4-942c-fec1-df2f-cdf7a4cafd43	2021-05-22 01:38:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:38:04.853+03	2021-05-22 01:38:04.882+03	
af1fb53f-5601-ee23-047f-c23f1c4aad1d	2021-05-22 01:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:38:25.853+03	2021-05-22 01:38:25.86+03	
5fdae126-59e6-7a2f-d6a6-878b1ad1030c	2021-05-22 01:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:38:45.853+03	2021-05-22 01:38:45.861+03	
b3225527-e6f2-6f54-003b-d04e46305f15	2021-05-22 01:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:39:05.853+03	2021-05-22 01:39:05.861+03	
96bdfc65-b7c9-3fc9-5c21-856f9d91c378	2021-05-22 01:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:39:25.853+03	2021-05-22 01:39:25.862+03	
7efdf3f2-10be-a5a8-1a82-4f675ec42d11	2021-05-22 01:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:39:57.853+03	2021-05-22 01:39:57.862+03	
d4f343b3-65af-c3af-0918-6fe6f62ac271	2021-05-22 01:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:40:07.853+03	2021-05-22 01:40:07.86+03	
72e8e97b-c635-7cb0-27e3-8ece9b43197e	2021-05-22 01:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:40:27.853+03	2021-05-22 01:40:27.86+03	
18dc9b6a-68a4-349c-78a3-fca5a8526943	2021-05-22 01:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:40:47.853+03	2021-05-22 01:40:47.859+03	
50682f65-043c-4043-44b6-93e6b23b96b7	2021-05-22 01:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:41:07.853+03	2021-05-22 01:41:07.863+03	
8e6a767e-e75e-9f56-5d4a-15a21e1de778	2021-05-22 01:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:41:28.853+03	2021-05-22 01:41:28.861+03	
ab626cfd-6acc-96c0-8d28-69c7c3bede8e	2021-05-22 01:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:41:49.853+03	2021-05-22 01:41:49.872+03	
c4f24fd0-56b6-706f-34e9-34c2988e73bf	2021-05-22 01:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:42:10.853+03	2021-05-22 01:42:10.861+03	
7b2b46c0-9035-8d27-2636-bdabaaaf1d6e	2021-05-22 01:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:42:32.852+03	2021-05-22 01:42:32.859+03	
c040a7f2-a4ba-8bad-46e7-ab321b5d32ea	2021-05-22 01:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:42:52.853+03	2021-05-22 01:42:52.859+03	
868f5f54-f01c-4222-2e27-c06edf6d1d2e	2021-05-22 01:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:43:13.852+03	2021-05-22 01:43:13.859+03	
6c7a1df8-975c-0996-061a-9f393c945c67	2021-05-22 01:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:43:33.852+03	2021-05-22 01:43:33.867+03	
0b3b64b6-235b-66bd-4644-cdf873b18e0a	2021-05-22 01:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:43:53.853+03	2021-05-22 01:43:53.859+03	
c96d077c-47dc-eebe-793e-d72f0c1809ad	2021-05-22 01:44:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:44:14.852+03	2021-05-22 01:44:14.859+03	
4f431cd4-0413-6279-a79d-4cb7bccccc99	2021-05-22 01:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:44:34.853+03	2021-05-22 01:44:34.86+03	
c4aa917f-0f28-58fb-adef-8fff476366cd	2021-05-22 01:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:44:55.852+03	2021-05-22 01:44:55.871+03	
679b7ccc-d527-dd43-c6b0-e43016cd61b2	2021-05-22 01:45:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:45:16.852+03	2021-05-22 01:45:16.859+03	
1386fbe0-d854-e5d6-18f3-5abdd29f73ac	2021-05-22 01:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:45:37.852+03	2021-05-22 01:45:37.865+03	
18ab1cd9-4766-064a-7303-2ee8ca0fdd26	2021-05-22 01:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:45:57.853+03	2021-05-22 01:45:57.876+03	
6f581014-68dc-23bf-24b6-8bc51c6320dc	2021-05-22 01:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:46:17.853+03	2021-05-22 01:46:17.875+03	
1ed235b4-0b14-8485-f935-7d5a6e515b78	2021-05-22 01:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:46:37.853+03	2021-05-22 01:46:37.859+03	
b8cbf3ed-8177-e5f4-b9cc-59d6b1edec85	2021-05-22 01:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:46:58.852+03	2021-05-22 01:46:58.859+03	
adb79d2f-9ad6-bef6-04c8-21ec71e69afd	2021-05-22 01:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:47:19.853+03	2021-05-22 01:47:19.859+03	
cbf32ecb-6e41-4fc5-530f-584a0050a36a	2021-05-22 01:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:47:40.853+03	2021-05-22 01:47:40.866+03	
225865c7-6cff-34fc-0a9e-53452760bedb	2021-05-22 01:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:48:02.852+03	2021-05-22 01:48:02.859+03	
b87b6469-b2a0-f7d4-4739-a5e40f3e0fb9	2021-05-22 01:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:48:22.852+03	2021-05-22 01:48:22.859+03	
653e481f-ef36-0329-69ba-9090194a9d9b	2021-05-22 01:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:48:43.852+03	2021-05-22 01:48:43.862+03	
44d3bb51-b254-0b85-2917-78d28e9fcedb	2021-05-22 01:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:49:04.852+03	2021-05-22 01:49:04.86+03	
4ba110aa-d699-948b-f937-5bbc96df004e	2021-05-22 01:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:49:25.853+03	2021-05-22 01:49:25.86+03	
52d72061-1d42-277d-b2a4-92815094036c	2021-05-22 01:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:49:57.852+03	2021-05-22 01:49:57.859+03	
3613496c-02a8-67a5-075d-e2bea9e1489e	2021-05-22 01:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:50:07.853+03	2021-05-22 01:50:07.86+03	
0b0b8db9-d144-774b-ae84-aba5ac62d0bd	2021-05-22 01:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:50:29.852+03	2021-05-22 01:50:29.87+03	
bb1d5bd6-8969-8b50-883d-b14f19586909	2021-05-22 01:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:50:49.853+03	2021-05-22 01:50:49.86+03	
fda96b1e-2935-0611-a435-3e931cc64bc5	2021-05-22 01:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:51:09.853+03	2021-05-22 01:51:09.86+03	
adb7096b-e14c-df6e-7a49-3815f987361d	2021-05-22 01:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:51:29.853+03	2021-05-22 01:51:29.867+03	
346efcc5-eb6f-cc02-e1fd-8c4d125ccf67	2021-05-22 01:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:51:49.853+03	2021-05-22 01:51:49.864+03	
992700ff-1ddc-cf2f-9b17-ae6744b0609d	2021-05-22 01:52:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:52:09.853+03	2021-05-22 01:52:09.861+03	
95226a81-6150-d009-75ce-3a499c38c7fa	2021-05-22 01:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:52:29.853+03	2021-05-22 01:52:29.879+03	
25165c85-18e8-4735-8ef6-9f111e751b7b	2021-05-22 01:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:52:49.853+03	2021-05-22 01:52:49.86+03	
6874bad1-378b-5d9a-aa5f-52b2f9ca938d	2021-05-22 01:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:53:10.853+03	2021-05-22 01:53:10.86+03	
549e2dbb-c69a-6d9e-9e49-c9e2768f7ce0	2021-05-22 01:53:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:53:31.853+03	2021-05-22 01:53:31.861+03	
c4df1058-315a-cdc2-21dc-567d07861a9a	2021-05-22 01:53:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:53:51.854+03	2021-05-22 01:53:51.86+03	
be25905a-0546-6c7b-0b74-4335a0fa8270	2021-05-22 01:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:54:13.852+03	2021-05-22 01:54:13.862+03	
ee04560d-b51a-a397-be67-5d4448d5ee6d	2021-05-22 01:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:54:33.853+03	2021-05-22 01:54:34.136+03	
2ad4863b-7874-2b70-c36b-fb92dbf50882	2021-05-22 01:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:54:53.853+03	2021-05-22 01:54:53.871+03	
4c607740-4e1d-4c97-103c-d4ac15edc2d3	2021-05-22 01:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:55:14.852+03	2021-05-22 01:55:14.868+03	
d5b8777c-345d-b243-e6b0-8476d6bf64b6	2021-05-22 01:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:55:34.852+03	2021-05-22 01:55:34.859+03	
1e71246e-1791-5598-aeac-d80c70c504f4	2021-05-22 01:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:55:54.853+03	2021-05-22 01:55:54.859+03	
369c368e-e89e-6158-358f-aeffa6e74444	2021-05-22 01:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:56:14.853+03	2021-05-22 01:56:14.861+03	
b586f9a4-6613-9932-eb54-06a8b839569c	2021-05-22 01:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:56:34.853+03	2021-05-22 01:56:34.862+03	
a21f987a-cf64-be58-ed84-53104321aa31	2021-05-22 01:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:35:33.853+03	2021-05-22 01:35:33.863+03	
fe826518-5607-5179-a51d-986fc52620f5	2021-05-22 01:35:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:35:53.853+03	2021-05-22 01:35:53.862+03	
0857236a-ddb9-32e5-edb4-3ff372bbb099	2021-05-22 01:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:36:13.853+03	2021-05-22 01:36:13.861+03	
1fc1a537-000a-72ee-268e-211e29cf8bf4	2021-05-22 01:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:36:33.853+03	2021-05-22 01:36:33.862+03	
0fc474d2-74fa-7667-a189-75d43e2c8934	2021-05-22 01:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:36:53.853+03	2021-05-22 01:36:53.861+03	
401ef2c3-8539-fcbe-727c-e5f636b5e908	2021-05-22 01:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:37:13.853+03	2021-05-22 01:37:13.865+03	
d4323ba9-e26e-b994-efc9-bd4d8223529a	2021-05-22 01:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:37:33.853+03	2021-05-22 01:37:33.859+03	
d814958f-2afa-f84f-9509-a55c9a272f18	2021-05-22 01:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:37:54.852+03	2021-05-22 01:37:54.859+03	
f1e5cfce-0487-4dbd-edc7-a6db5f8813bd	2021-05-22 01:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:38:15.853+03	2021-05-22 01:38:15.861+03	
4f892efa-7f98-50de-3ab6-0cdca966d306	2021-05-22 01:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:38:35.853+03	2021-05-22 01:38:35.861+03	
f0657a71-0a6c-2351-8e4f-3bbfef4c6ae5	2021-05-22 01:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:38:55.853+03	2021-05-22 01:38:55.86+03	
3f253992-432d-69b6-9838-206a10a89085	2021-05-22 01:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:39:15.853+03	2021-05-22 01:39:15.861+03	
61a61476-aa7d-e433-8f1a-7655a914a8d8	2021-05-22 01:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:39:35.853+03	2021-05-22 01:39:35.862+03	
a2c8edb4-14f1-acef-817f-f71265439301	2021-05-22 01:39:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:39:46.854+03	2021-05-22 01:39:46.874+03	
c62842ac-c48d-9264-d2f2-7475b5b40436	2021-05-22 01:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 01:40:00.852+03	2021-05-22 01:40:00.857+03	ERROR
d6297723-d502-9dc5-c3d9-7beb9df452a2	2021-05-22 01:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:40:17.853+03	2021-05-22 01:40:17.865+03	
f0d2281b-771a-c11d-ee94-806cb46987ca	2021-05-22 01:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:40:37.853+03	2021-05-22 01:40:37.861+03	
f64df09a-07c4-acd1-83a3-494171e6795f	2021-05-22 01:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:40:57.853+03	2021-05-22 01:40:57.861+03	
9030260e-e259-e035-7de4-b399837c43b3	2021-05-22 01:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:41:18.852+03	2021-05-22 01:41:18.89+03	
59ddadf4-25ce-d27b-f440-e8b61da76857	2021-05-22 01:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:41:39.853+03	2021-05-22 01:41:39.861+03	
deec3b4c-29a9-e1f3-eaee-bdaa1820fc2e	2021-05-22 01:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:42:00.853+03	2021-05-22 01:42:00.859+03	
9fc4f821-5bf1-83f9-ee33-8892cde94158	2021-05-22 01:42:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:42:21.853+03	2021-05-22 01:42:21.86+03	
c64559e4-d1eb-2c12-65b9-d796fcaba36d	2021-05-22 01:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:42:42.852+03	2021-05-22 01:42:42.859+03	
7a045e77-b1d6-7c08-815c-985d7252ddad	2021-05-22 01:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:43:02.853+03	2021-05-22 01:43:02.859+03	
a553aefd-a66d-c1a5-7c90-9adb56b5e557	2021-05-22 01:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:43:23.852+03	2021-05-22 01:43:23.859+03	
b7ecc32d-05e9-13c1-0bb9-18cdb29edfba	2021-05-22 01:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:43:43.853+03	2021-05-22 01:43:43.862+03	
0dbaf2d5-062a-952d-bc7b-8a6591442ccc	2021-05-22 01:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:44:04.852+03	2021-05-22 01:44:04.875+03	
b80784b5-5c32-1d92-21de-fb414d459df9	2021-05-22 01:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:44:24.853+03	2021-05-22 01:44:24.863+03	
8c5ece57-a505-ef0d-4d8e-d792e0a53d91	2021-05-22 01:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:44:44.853+03	2021-05-22 01:44:44.86+03	
0d4c041a-bf20-84d0-d6fd-a9eae0da4f8b	2021-05-22 01:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:45:05.853+03	2021-05-22 01:45:05.859+03	
f25b2052-1d67-294c-16e3-d89d5da17533	2021-05-22 01:45:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:45:26.854+03	2021-05-22 01:45:26.863+03	
ba1d0467-c296-1cdb-e661-90c653f13ddd	2021-05-22 01:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:45:47.852+03	2021-05-22 01:45:47.865+03	
446c9c8f-47e8-f4c5-c119-b7aec7c14794	2021-05-22 01:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:46:07.853+03	2021-05-22 01:46:07.859+03	
f09fcbd0-d56c-78b1-0012-a6a3b3567f5b	2021-05-22 01:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:46:27.853+03	2021-05-22 01:46:27.86+03	
123ac79d-126e-dab2-12e8-bb4e8a7e38a1	2021-05-22 01:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:46:47.853+03	2021-05-22 01:46:47.859+03	
22e9d83b-1ba3-02ea-41a4-f227a95444fa	2021-05-22 01:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:47:08.853+03	2021-05-22 01:47:08.859+03	
37792f5b-3942-1b0e-3731-c8b0bf6117e9	2021-05-22 01:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:47:30.852+03	2021-05-22 01:47:30.866+03	
ce711b07-3452-20db-385b-44bf193d1afc	2021-05-22 01:47:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:47:51.853+03	2021-05-22 01:47:51.859+03	
c8ad9d2b-0483-b909-f52c-56afc2c90f58	2021-05-22 01:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:48:12.852+03	2021-05-22 01:48:12.862+03	
761886d4-4d9e-e53c-596c-5ee6f5101e47	2021-05-22 01:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:48:32.853+03	2021-05-22 01:48:32.86+03	
49b7857f-925a-1f9a-50b9-0c491e395bb3	2021-05-22 01:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:48:53.853+03	2021-05-22 01:48:53.865+03	
dd8c9064-d8e4-b82f-769d-42d64bc9de31	2021-05-22 01:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:49:14.853+03	2021-05-22 01:49:14.859+03	
957af637-b3b4-09da-c479-2aef2fa10d0c	2021-05-22 01:49:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:49:36.853+03	2021-05-22 01:49:36.861+03	
58fb9fe8-9ec6-183d-1a7b-d474804b23f4	2021-05-22 01:49:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:49:46.854+03	2021-05-22 01:49:46.883+03	
6c90065a-2d46-355b-d434-223dc99f9247	2021-05-22 01:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 01:50:00.852+03	2021-05-22 01:50:00.863+03	ERROR
1ede1e83-a5c7-cf0a-f222-f2ffddde6d19	2021-05-22 01:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:50:18.853+03	2021-05-22 01:50:18.871+03	
33a37e42-7945-74b3-bc94-daa68518592d	2021-05-22 01:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:50:39.853+03	2021-05-22 01:50:39.859+03	
c2fcb4db-f7dc-9dd6-7d7d-ae675d52b3c3	2021-05-22 01:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:50:59.853+03	2021-05-22 01:50:59.86+03	
d536ad28-6735-d290-8c47-a364e4e38be9	2021-05-22 01:51:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:51:19.853+03	2021-05-22 01:51:19.864+03	
5948be45-2f4c-715a-9aa4-ca4663411dde	2021-05-22 01:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:51:39.853+03	2021-05-22 01:51:39.86+03	
1e3189f1-d8c2-aa3a-2830-710e2c4703bd	2021-05-22 01:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:51:59.853+03	2021-05-22 01:51:59.86+03	
dc52af3f-c356-a305-aca3-cc27fc261f79	2021-05-22 01:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:52:19.853+03	2021-05-22 01:52:19.862+03	
e5c8b0a4-1d0d-7eba-cc73-2e5aa7e884c4	2021-05-22 01:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:52:39.853+03	2021-05-22 01:52:39.862+03	
f0b89bff-7204-5ff2-281c-d3e9862bb224	2021-05-22 01:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:53:00.852+03	2021-05-22 01:53:00.873+03	
ac0bc623-1f9c-cb2e-3c3a-a7816c626208	2021-05-22 01:53:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:53:21.853+03	2021-05-22 01:53:21.86+03	
2dfb144c-c27a-f2ed-5a81-d63dd4884b6d	2021-05-22 01:53:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:53:41.854+03	2021-05-22 01:53:41.86+03	
cd0b57d7-9c02-735e-e6f6-c216d57f32e8	2021-05-22 01:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:54:02.853+03	2021-05-22 01:54:02.859+03	
72531cd4-da67-d8cc-8921-5a717bb3293c	2021-05-22 01:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:54:23.852+03	2021-05-22 01:54:23.859+03	
40039880-cc33-82ae-c867-37854c85b542	2021-05-22 01:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:54:43.853+03	2021-05-22 01:54:43.86+03	
f00fdbea-d76d-ee66-b99f-2e566f8486c0	2021-05-22 01:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:55:03.853+03	2021-05-22 01:55:03.863+03	
1cdc73ef-b222-665c-3d1d-ff83b77ed24c	2021-05-22 01:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:55:24.852+03	2021-05-22 01:55:24.859+03	
a119aa89-151d-4074-8fd1-d95581081b96	2021-05-22 01:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:55:44.853+03	2021-05-22 01:55:44.859+03	
59165c4c-5337-8c65-7272-8c31cd0498bf	2021-05-22 01:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:56:04.853+03	2021-05-22 01:56:04.872+03	
0dd8bed8-abc2-451e-665f-9f44c8b95b27	2021-05-22 01:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:56:24.853+03	2021-05-22 01:56:24.869+03	
025909b0-90c7-bd8f-5ada-d781d38484ab	2021-05-22 01:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:56:44.853+03	2021-05-22 01:56:44.861+03	
af29dbd1-22be-df0e-aef7-9d88f5829153	2021-05-22 01:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:57:05.853+03	2021-05-22 01:57:05.859+03	
e6c626d9-188f-107e-a7a8-3f14b94a1bdf	2021-05-22 01:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:57:25.853+03	2021-05-22 01:57:25.859+03	
3eb8a545-a01b-bf6c-2729-5f76d9875a36	2021-05-22 01:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:57:45.853+03	2021-05-22 01:57:45.859+03	
16d6e566-ac7a-2dd0-3f1a-3b6dbd0b5877	2021-05-22 01:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:58:05.853+03	2021-05-22 01:58:05.86+03	
17346d7c-f948-95a3-1c88-b4baa2539918	2021-05-22 01:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:58:27.853+03	2021-05-22 01:58:27.859+03	
858011ca-04fb-9ff7-0250-0c1af8e874c0	2021-05-22 01:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:58:47.853+03	2021-05-22 01:58:47.86+03	
7202e96a-0297-1798-881d-41ff0f550fbc	2021-05-22 01:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:59:08.852+03	2021-05-22 01:59:08.859+03	
a88e5b11-23fc-3143-dc0c-cc2446071b69	2021-05-22 01:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:59:28.853+03	2021-05-22 01:59:28.859+03	
b199506a-e3e4-7f3d-11f4-e1f54af24bbb	2021-05-22 01:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:59:48.853+03	2021-05-22 01:59:48.859+03	
18503576-9c46-267b-cd8e-589f78e5078f	2021-05-22 02:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 02:00:00.853+03	2021-05-22 02:00:00.865+03	ERROR
7187b5eb-17da-703a-78c7-a8daaa23edc1	2021-05-22 02:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:00:18.853+03	2021-05-22 02:00:18.861+03	
f62c3999-704c-37d2-d4f8-3cbd02ff1f1f	2021-05-22 02:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:00:38.853+03	2021-05-22 02:00:38.869+03	
6903c90f-e2e3-2e3b-cbf6-14e80847d4b6	2021-05-22 02:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:00:58.853+03	2021-05-22 02:00:58.861+03	
e9c98408-1b49-0695-8fec-ee368b6e4499	2021-05-22 02:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:01:18.853+03	2021-05-22 02:01:18.86+03	
ba171609-6c7b-6a13-b728-93cc1582b1c7	2021-05-22 02:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:01:38.853+03	2021-05-22 02:01:38.861+03	
d239f863-85d9-8387-9b09-9cd76ce2aad2	2021-05-22 02:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:01:59.852+03	2021-05-22 02:01:59.858+03	
403b5ccf-dd8c-d509-3ed5-5e968611c0d2	2021-05-22 02:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:02:20.853+03	2021-05-22 02:02:20.86+03	
298d40b4-bad8-86f9-17de-5f492924298c	2021-05-22 02:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:02:40.853+03	2021-05-22 02:02:40.872+03	
773b0aff-2566-cdd3-afab-42bc954dece3	2021-05-22 02:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:03:00.853+03	2021-05-22 02:03:00.865+03	
2bd0567f-d0b7-d968-83b4-7aa2c432aa1a	2021-05-22 02:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:03:20.853+03	2021-05-22 02:03:20.863+03	
094e4148-bad0-a85c-23b3-256ca81d9639	2021-05-22 02:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:03:42.852+03	2021-05-22 02:03:42.859+03	
027f300f-4dbf-5c36-798f-b1087ab30881	2021-05-22 02:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:04:02.853+03	2021-05-22 02:04:02.86+03	
ba308241-7a60-a2b3-9167-480c105fefb8	2021-05-22 02:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:04:23.852+03	2021-05-22 02:04:23.859+03	
932ed74e-2934-1ae0-fead-362d0efcf3c6	2021-05-22 02:04:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:04:43.853+03	2021-05-22 02:04:43.862+03	
19410691-704e-11d3-6a0e-1724ab023fca	2021-05-22 02:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:05:03.853+03	2021-05-22 02:05:03.861+03	
c646178a-f591-9d92-73c5-e0a57184dd4b	2021-05-22 02:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:05:23.853+03	2021-05-22 02:05:23.861+03	
1906e3db-09a6-3630-6298-18c6bd724623	2021-05-22 02:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:05:43.853+03	2021-05-22 02:05:43.859+03	
04d1bcb5-c4e8-3e4b-f8db-d9b1c3f313e7	2021-05-22 02:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:06:04.853+03	2021-05-22 02:06:04.869+03	
53795a0c-af73-786b-3cc1-3c8d96eaad95	2021-05-22 02:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:06:25.853+03	2021-05-22 02:06:25.859+03	
5524ccc7-2290-45b7-f013-353ef0205bc1	2021-05-22 02:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:06:45.853+03	2021-05-22 02:06:45.862+03	
275ad1e3-d063-20b2-ab73-074a97829f21	2021-05-22 02:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:07:05.853+03	2021-05-22 02:07:05.861+03	
219d99cc-153d-4d37-43cd-85902507a029	2021-05-22 02:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:07:25.853+03	2021-05-22 02:07:25.861+03	
c834b9bf-27c7-b533-1072-72228a961907	2021-05-22 02:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:07:45.853+03	2021-05-22 02:07:45.874+03	
0c23353d-3b14-5601-4b58-45eceff953ef	2021-05-22 02:08:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:08:06.854+03	2021-05-22 02:08:06.863+03	
f0255956-8b4b-7ff1-d601-d256820510b6	2021-05-22 02:08:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:08:27.852+03	2021-05-22 02:08:27.86+03	
a3fa4f49-b6cc-a697-1383-d3d6bb1be684	2021-05-22 02:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:08:47.853+03	2021-05-22 02:08:47.859+03	
d0d52b3c-fa50-2277-5065-7ba41ca535e7	2021-05-22 02:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:09:07.853+03	2021-05-22 02:09:07.86+03	
bcfd095e-9977-ba21-5b04-5d5b0d8a74f3	2021-05-22 02:09:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:09:27.853+03	2021-05-22 02:09:27.861+03	
ef217d04-570a-7458-7377-c66b58c1174c	2021-05-22 02:09:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:09:47.853+03	2021-05-22 02:09:47.862+03	
1156fec3-b4e6-c64b-7006-e3dc8580c8f0	2021-05-22 02:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 02:10:00.853+03	2021-05-22 02:10:00.868+03	ERROR
d091178a-cee0-127f-7be4-65e3f4296de5	2021-05-22 02:10:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:10:17.853+03	2021-05-22 02:10:17.862+03	
e086bb54-bb6e-05d1-0aaa-2f52d3dd4038	2021-05-22 02:10:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:10:37.853+03	2021-05-22 02:10:37.864+03	
5a3e4322-1581-fd8c-1837-8c97b34a434f	2021-05-22 02:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:10:58.853+03	2021-05-22 02:10:58.864+03	
0ead1313-26e6-6553-4bea-bef1916aa840	2021-05-22 02:11:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:11:18.853+03	2021-05-22 02:11:18.861+03	
5d438200-d0b2-968d-a6c6-091a4353c95d	2021-05-22 02:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:11:39.853+03	2021-05-22 02:11:39.861+03	
f2f8bef5-0feb-fbad-13de-7b6a86af0776	2021-05-22 02:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:12:00.853+03	2021-05-22 02:12:00.861+03	
8e3e58da-d3a0-08e9-70f1-ace3549a7037	2021-05-22 02:12:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:12:21.853+03	2021-05-22 02:12:21.861+03	
57d6cbe4-793f-4809-e648-b30283ffa10a	2021-05-22 02:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:12:41.854+03	2021-05-22 02:12:41.861+03	
b74bbdc9-dbaa-eb2f-b79a-3cbb058802d4	2021-05-22 02:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:13:02.853+03	2021-05-22 02:13:02.862+03	
55d73b7a-a3f3-618a-ec13-79d6989496e6	2021-05-22 02:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:13:22.853+03	2021-05-22 02:13:22.861+03	
58172185-7b67-f24a-d399-7a7c7f81e89d	2021-05-22 02:13:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:13:43.853+03	2021-05-22 02:13:43.861+03	
d17c2869-a783-4fc8-f087-cd30bd038610	2021-05-22 02:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:14:03.853+03	2021-05-22 02:14:03.86+03	
d0b325a5-1ba0-2619-fcc6-d9c76418f867	2021-05-22 02:14:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:14:23.853+03	2021-05-22 02:14:23.861+03	
d6958e0e-5a8d-7a35-6c41-c479594c8629	2021-05-22 02:14:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:14:43.853+03	2021-05-22 02:14:43.861+03	
08312fa2-d6b0-c249-44dd-5cca208877ce	2021-05-22 02:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:15:03.853+03	2021-05-22 02:15:03.861+03	
0c8528a1-56c1-a590-7f8f-eea31de8f2ba	2021-05-22 02:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:15:23.853+03	2021-05-22 02:15:23.86+03	
a4f61635-939e-af50-6c47-ccea54e7dc68	2021-05-22 02:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:15:43.853+03	2021-05-22 02:15:43.861+03	
b005b029-138e-092e-d5e0-fee33f855006	2021-05-22 02:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:16:04.853+03	2021-05-22 02:16:04.86+03	
1bf92920-f5a8-53ea-ced0-15d712ef784c	2021-05-22 02:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:16:24.853+03	2021-05-22 02:16:24.86+03	
f93fc0de-979a-ca40-81c1-f28d41f389bd	2021-05-22 02:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:16:45.853+03	2021-05-22 02:16:45.859+03	
9e05c32a-5b3b-fd18-68aa-b11302a90515	2021-05-22 02:17:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:17:05.854+03	2021-05-22 02:17:05.864+03	
e87cdc84-3804-e863-c811-0256effda1e4	2021-05-22 01:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:56:55.853+03	2021-05-22 01:56:55.859+03	
4f5f2e15-9586-15b7-5baa-6d36c0e7362c	2021-05-22 01:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:57:15.853+03	2021-05-22 01:57:15.86+03	
8a8cd54c-3366-4c89-17d6-f3cfba70fa8b	2021-05-22 01:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:57:35.853+03	2021-05-22 01:57:35.86+03	
6c137007-3602-6f67-7114-703d16712cf4	2021-05-22 01:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:57:55.853+03	2021-05-22 01:57:55.861+03	
a933ebd7-7dc1-81c7-5301-e600a30caf6f	2021-05-22 01:58:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:58:16.854+03	2021-05-22 01:58:16.861+03	
5dde977f-76d1-6681-4b50-485c0f5a246a	2021-05-22 01:58:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:58:37.853+03	2021-05-22 01:58:37.864+03	
7159ba1d-76cf-6889-f90a-192a5439768f	2021-05-22 01:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:58:57.853+03	2021-05-22 01:58:57.859+03	
a79d1145-6cbf-f831-1fcf-8879e72e5830	2021-05-22 01:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:59:18.852+03	2021-05-22 01:59:18.858+03	
ee313cbc-57be-ce71-be02-772b1e9d1d66	2021-05-22 01:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:59:38.853+03	2021-05-22 01:59:38.859+03	
94ec2207-e940-3c85-3472-f87f63ca5fa3	2021-05-22 01:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 01:59:58.853+03	2021-05-22 01:59:58.86+03	
d3ba8954-b207-d60b-ca9d-abb4a0007b0b	2021-05-22 02:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:00:08.853+03	2021-05-22 02:00:08.863+03	
6d0522d4-ad02-9e03-8115-3a6f238d54e0	2021-05-22 02:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:00:28.853+03	2021-05-22 02:00:28.871+03	
1dbb9e4b-3b8d-b23b-3fcc-e425068e82fc	2021-05-22 02:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:00:48.853+03	2021-05-22 02:00:48.859+03	
bb5f8cfd-64c3-9112-5537-40f48410978f	2021-05-22 02:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:01:08.853+03	2021-05-22 02:01:08.859+03	
a7e04503-e82c-4edd-c3b9-02b3feedc087	2021-05-22 02:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:01:28.853+03	2021-05-22 02:01:28.859+03	
8a8c0ccd-e17a-94f0-487f-bfca606978e3	2021-05-22 02:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:01:48.853+03	2021-05-22 02:01:48.86+03	
728d2f25-7f98-4350-5fa3-b6ec7b3d3767	2021-05-22 02:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:02:09.853+03	2021-05-22 02:02:09.861+03	
e2199109-e04f-be03-b85c-647f29aab558	2021-05-22 02:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:02:30.853+03	2021-05-22 02:02:30.861+03	
0046eefb-382c-f385-1035-d349f554f872	2021-05-22 02:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:02:50.853+03	2021-05-22 02:02:50.86+03	
a993137b-5221-2dfb-c84d-829eeb59b627	2021-05-22 02:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:03:10.853+03	2021-05-22 02:03:10.86+03	
096b1932-2184-c0c7-684a-10b94d7e9af5	2021-05-22 02:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:03:31.854+03	2021-05-22 02:03:31.863+03	
4e6f73cf-3f21-4a86-0447-53e5735dcf1a	2021-05-22 02:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:03:52.852+03	2021-05-22 02:03:52.859+03	
2d6c9d06-4107-9005-a63b-08c6bbb832b5	2021-05-22 02:04:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:04:12.853+03	2021-05-22 02:04:12.86+03	
23676379-8538-8ff6-7ae2-64e142969498	2021-05-22 02:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:04:33.853+03	2021-05-22 02:04:33.862+03	
d1ea680d-a9c4-e8f0-e8d4-e147a363875d	2021-05-22 02:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:04:53.853+03	2021-05-22 02:04:53.862+03	
29e68dc0-b42c-0e7b-2b9f-a66ea80e1280	2021-05-22 02:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:05:13.853+03	2021-05-22 02:05:13.86+03	
486a1e4b-3a5d-1ff3-45e0-0009776a57ba	2021-05-22 02:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:05:33.853+03	2021-05-22 02:05:33.862+03	
360e30ed-ac4f-07f8-cb88-54da42b6b900	2021-05-22 02:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:05:54.852+03	2021-05-22 02:05:54.859+03	
ab4e5cd6-c6e2-6596-0f67-bd0a3f00b125	2021-05-22 02:06:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:06:14.853+03	2021-05-22 02:06:14.86+03	
1fd80789-7bd5-0667-b56b-b2fec612444a	2021-05-22 02:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:06:35.853+03	2021-05-22 02:06:35.861+03	
60eca0bc-d7e7-2673-3022-9cfb2c6e4013	2021-05-22 02:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:06:55.853+03	2021-05-22 02:06:55.862+03	
101203e3-b19d-a844-18b3-229ccf5d209f	2021-05-22 02:07:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:07:15.853+03	2021-05-22 02:07:15.862+03	
28023a25-4e56-6744-6fbf-9857898874e9	2021-05-22 02:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:07:35.853+03	2021-05-22 02:07:35.862+03	
f6d2673e-03df-5fcf-f578-78ba2422e2e3	2021-05-22 02:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:07:55.853+03	2021-05-22 02:07:55.872+03	
968f7e14-f2b4-5611-c93c-9c9ed6817cf1	2021-05-22 02:08:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:08:16.854+03	2021-05-22 02:08:16.861+03	
806dab4e-a73c-eb1e-b787-a427f244d8af	2021-05-22 02:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:08:37.853+03	2021-05-22 02:08:37.86+03	
2bb0c3e7-7561-807e-80a4-2a9dff77ff1a	2021-05-22 02:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:08:57.853+03	2021-05-22 02:08:57.86+03	
466c224e-0d10-18fd-1951-1311b149fa34	2021-05-22 02:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:09:17.853+03	2021-05-22 02:09:17.862+03	
0ed395f3-d693-9f0d-53fd-403b26b7dd05	2021-05-22 02:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:09:37.853+03	2021-05-22 02:09:37.864+03	
be167546-6635-3ae7-5dc8-1397d3df3536	2021-05-22 02:09:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:09:57.853+03	2021-05-22 02:09:57.862+03	
7dedc464-2758-6aeb-3b09-a7166e29a739	2021-05-22 02:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:10:07.853+03	2021-05-22 02:10:07.859+03	
17563070-520e-7542-934a-ce8c539ec505	2021-05-22 02:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:10:27.853+03	2021-05-22 02:10:27.864+03	
a6fa3da9-3647-7cb5-f0db-b304164872d8	2021-05-22 02:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:10:48.853+03	2021-05-22 02:10:48.86+03	
89114350-e99f-55b9-3d98-57c93417064e	2021-05-22 02:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:11:08.853+03	2021-05-22 02:11:08.863+03	
d24baf3c-de43-ef46-e5dc-bec78e8e3488	2021-05-22 02:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:11:29.852+03	2021-05-22 02:11:29.861+03	
9852396c-3be5-44ee-2ae7-05aa7bf293bf	2021-05-22 02:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:11:50.853+03	2021-05-22 02:11:50.86+03	
4db4802e-cfd0-5e1c-50f7-f8eb4bb5ec90	2021-05-22 02:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:12:10.853+03	2021-05-22 02:12:10.863+03	
989d1521-cd4a-c7f6-e864-54ba1dc478f8	2021-05-22 02:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:12:31.853+03	2021-05-22 02:12:31.86+03	
326c03b6-60a8-9621-c768-9d00f0588374	2021-05-22 02:12:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:12:51.854+03	2021-05-22 02:12:51.861+03	
e7e4da85-7988-7f2a-b1ff-4ee1e55e233c	2021-05-22 02:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:13:12.853+03	2021-05-22 02:13:12.864+03	
05621393-d8b3-82db-bc26-a9a95e119b6f	2021-05-22 02:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:13:32.853+03	2021-05-22 02:13:32.86+03	
ba6a6105-3d2e-74c4-eb7c-204ce80238fa	2021-05-22 02:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:13:53.853+03	2021-05-22 02:13:53.859+03	
c5827ac8-74e7-9aea-bb3f-4854013d1d0b	2021-05-22 02:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:14:13.853+03	2021-05-22 02:14:13.861+03	
35b097eb-809f-248c-6b83-7d6feebfbbb7	2021-05-22 02:14:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:14:33.853+03	2021-05-22 02:14:33.859+03	
4135928e-3bf5-6ed0-9e90-2db77c8a2b3b	2021-05-22 02:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:14:53.853+03	2021-05-22 02:14:53.859+03	
5cbd5f90-f5c3-75df-3790-5c14eb834f69	2021-05-22 02:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:15:13.853+03	2021-05-22 02:15:13.861+03	
684ede33-fea8-3a71-c4f3-8d98d62334f2	2021-05-22 02:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:15:33.853+03	2021-05-22 02:15:33.859+03	
fbef1409-e450-3e8a-9673-a76fd2c09a6e	2021-05-22 02:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:15:54.852+03	2021-05-22 02:15:54.86+03	
8f26f42e-19ff-c96d-6e62-63559938c4f6	2021-05-22 02:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:16:14.853+03	2021-05-22 02:16:14.871+03	
86dd44c0-c3ed-5a00-7a3a-4a90a4d31a75	2021-05-22 02:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:16:35.853+03	2021-05-22 02:16:35.86+03	
fdb7da6f-f398-a086-c500-fd14a74f603e	2021-05-22 02:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:16:55.853+03	2021-05-22 02:16:55.859+03	
995e965f-64a1-f399-b2cc-4016197fd6eb	2021-05-22 02:17:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:17:16.854+03	2021-05-22 02:17:16.862+03	
2534ec92-5f83-917d-4f19-cb99ecc43b30	2021-05-22 02:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:17:38.853+03	2021-05-22 02:17:38.864+03	
19665596-f705-b5e7-437a-a6a3f8eb1682	2021-05-22 02:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:17:27.853+03	2021-05-22 02:17:27.87+03	
d5e4748d-cf23-2bd3-160f-09b6c5628510	2021-05-22 02:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:17:48.853+03	2021-05-22 02:17:48.86+03	
e0f9f5bb-63d9-5470-ba44-9bcb36657cb0	2021-05-22 02:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:18:08.853+03	2021-05-22 02:18:08.861+03	
e435dab9-5e01-96a7-d355-4bc5665695b2	2021-05-22 02:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:18:28.853+03	2021-05-22 02:18:28.859+03	
4ea600be-5132-d1bd-4f61-401cf22db905	2021-05-22 02:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:18:48.853+03	2021-05-22 02:18:48.86+03	
68ba29b4-7e8a-d473-ac6d-64a50aa3f28c	2021-05-22 02:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:19:08.853+03	2021-05-22 02:19:08.859+03	
c02a1794-749a-768d-2eb1-eb77b79fad58	2021-05-22 02:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:19:29.853+03	2021-05-22 02:19:29.86+03	
2c65fdfd-6823-65d4-1fe8-f9949dae6d9d	2021-05-22 02:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:19:49.853+03	2021-05-22 02:19:49.863+03	
d9665cd7-3d5c-6586-35dc-b566c8191dec	2021-05-22 02:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 02:20:00.853+03	2021-05-22 02:20:00.86+03	ERROR
90611029-e3cf-30eb-514c-4a4424c07cc6	2021-05-22 02:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:20:19.853+03	2021-05-22 02:20:19.861+03	
8fdc550b-3a90-a61e-dca3-de6b0feed8a3	2021-05-22 02:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:20:39.853+03	2021-05-22 02:20:39.869+03	
14914500-d9f3-ac4e-601c-78e01f6c5ec8	2021-05-22 02:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:20:59.853+03	2021-05-22 02:20:59.861+03	
9c13b794-26dc-5fc5-6291-eaa05a9b7387	2021-05-22 02:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:21:20.853+03	2021-05-22 02:21:20.864+03	
5f62fbbe-18bb-1bcd-c15e-ffa2104ae819	2021-05-22 02:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:21:40.853+03	2021-05-22 02:21:40.861+03	
b6d651a2-9517-f894-7856-78baac5b998b	2021-05-22 02:22:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:22:01.852+03	2021-05-22 02:22:01.904+03	
272564c3-fdd5-63ba-1b85-c72bcfac2438	2021-05-22 02:22:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:22:21.853+03	2021-05-22 02:22:21.859+03	
4ce07845-6fb2-8474-99dd-7542b692bd87	2021-05-22 02:22:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:22:41.854+03	2021-05-22 02:22:41.861+03	
79edf4f5-c8d9-14a4-e4fa-0c78beca62e1	2021-05-22 02:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:23:02.853+03	2021-05-22 02:23:02.863+03	
3e5b6bfe-eded-59dc-2ccc-f54288a825a6	2021-05-22 02:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:23:22.853+03	2021-05-22 02:23:22.862+03	
54d6ff3c-5d32-e3d7-0647-6702d62664d3	2021-05-22 02:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:23:42.853+03	2021-05-22 02:23:42.859+03	
dd3e2c94-f3d6-76ab-0270-fe7bb0e424b4	2021-05-22 02:24:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:24:02.853+03	2021-05-22 02:24:02.862+03	
e543b34a-1f33-949e-10a0-b48177222c1f	2021-05-22 02:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:24:22.853+03	2021-05-22 02:24:22.861+03	
51438e1e-a47d-e2b3-757f-c3f50875151f	2021-05-22 02:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:24:42.853+03	2021-05-22 02:24:42.861+03	
fa924d59-2004-be44-d6e3-46616dd884e0	2021-05-22 02:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:25:03.853+03	2021-05-22 02:25:03.861+03	
0031ecb0-e9a2-ca68-a04f-919b52f358c8	2021-05-22 02:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:25:24.853+03	2021-05-22 02:25:24.861+03	
23c7e2bb-f42f-1db3-df8e-dea3295e4ce7	2021-05-22 02:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:25:45.853+03	2021-05-22 02:25:45.868+03	
a8362013-44a0-7efc-62e0-66ccd0509807	2021-05-22 02:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:26:05.853+03	2021-05-22 02:26:05.865+03	
4edc2cd4-f192-c9ba-d719-f9424f7f4646	2021-05-22 02:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:26:25.853+03	2021-05-22 02:26:25.862+03	
b98109c2-7224-039c-a8e4-a61c1baa4f54	2021-05-22 02:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:26:45.853+03	2021-05-22 02:26:45.861+03	
a6b421f8-8931-c20b-2b9c-92d76bde31d1	2021-05-22 02:27:06.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:27:06.855+03	2021-05-22 02:27:06.873+03	
ef020b27-4da6-e747-cbec-d6fcd43fbd56	2021-05-22 02:27:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:27:27.853+03	2021-05-22 02:27:27.863+03	
82882ab5-52d0-0c6d-8d75-f62d19e5558c	2021-05-22 02:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:27:47.853+03	2021-05-22 02:27:47.861+03	
71ae6889-9fb7-dc25-47e7-6c5099c725ad	2021-05-22 02:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:28:08.853+03	2021-05-22 02:28:08.861+03	
ae0f0e81-792a-9a70-3e3b-4ddb43ec8e76	2021-05-22 02:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:28:29.853+03	2021-05-22 02:28:29.863+03	
7b528ef5-3fa4-e79c-ff1f-5c55e71d5433	2021-05-22 02:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:28:49.853+03	2021-05-22 02:28:49.859+03	
56e29e70-0f85-925d-5613-f4d761169188	2021-05-22 02:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:29:09.853+03	2021-05-22 02:29:09.863+03	
e0887940-1721-680d-0524-28c49f2bc355	2021-05-22 02:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:29:30.853+03	2021-05-22 02:29:30.86+03	
e7af69ac-d826-48f6-739a-9b717a1317f7	2021-05-22 02:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:29:50.853+03	2021-05-22 02:29:50.86+03	
72c5d4fd-b360-e055-6325-7113b9bfa789	2021-05-22 02:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:30:10.853+03	2021-05-22 02:30:10.862+03	
f9f10097-6f4e-b49a-c536-db65506d7722	2021-05-22 02:30:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:30:31.853+03	2021-05-22 02:30:31.864+03	
d2a7bfe3-14c4-ab78-dfc0-c66d1ed960a1	2021-05-22 02:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:30:52.853+03	2021-05-22 02:30:52.86+03	
fa8884a7-1110-13d7-fd09-43f6e99c2803	2021-05-22 02:31:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:31:12.853+03	2021-05-22 02:31:12.862+03	
9d171e3e-c8ce-454a-cc05-8f2dcccbad88	2021-05-22 02:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:31:33.853+03	2021-05-22 02:31:33.861+03	
72d41a22-8170-22b7-bac2-f631c1bc6b7a	2021-05-22 02:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:31:54.852+03	2021-05-22 02:31:54.859+03	
d2cb45cb-08fc-8ddb-e788-64f9b1f6a834	2021-05-22 02:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:32:14.852+03	2021-05-22 02:32:14.87+03	
7ecd7044-c8e9-426b-b32f-a08e7ebc1203	2021-05-22 02:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:32:34.853+03	2021-05-22 02:32:34.859+03	
c5cb8455-ca34-d0a8-9685-ca508dfcde9f	2021-05-22 02:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:32:54.853+03	2021-05-22 02:32:54.873+03	
3c1fd191-8ae0-d961-b9af-3bd783a05e28	2021-05-22 02:33:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:33:15.853+03	2021-05-22 02:33:15.862+03	
abd41357-bde1-64b2-cd68-707a111a8dc6	2021-05-22 02:33:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:33:36.853+03	2021-05-22 02:33:36.861+03	
16e92578-0309-0ba0-07e4-b75158a5b81e	2021-05-22 02:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:33:57.852+03	2021-05-22 02:33:57.859+03	
51e67609-bdb4-4623-6451-aac556f52680	2021-05-22 02:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:34:17.852+03	2021-05-22 02:34:17.863+03	
6354ea6c-d884-f509-e742-0281a5279bd0	2021-05-22 02:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:34:37.853+03	2021-05-22 02:34:37.861+03	
c6f6b752-d330-4037-a030-90e984b94099	2021-05-22 02:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:34:57.853+03	2021-05-22 02:34:57.859+03	
b2b349c7-c246-65c5-6b58-d90cb000510c	2021-05-22 02:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:35:18.853+03	2021-05-22 02:35:18.859+03	
68b6b14c-da66-4a25-40f2-6ea445b3526d	2021-05-22 02:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:35:38.853+03	2021-05-22 02:35:38.874+03	
a375dcec-2f64-a2bb-b9e2-59341bcc10a4	2021-05-22 02:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:35:58.853+03	2021-05-22 02:35:58.865+03	
b47c4a51-d046-9e45-7a93-9c8001738eda	2021-05-22 02:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:36:19.853+03	2021-05-22 02:36:19.873+03	
a104db82-74bc-f55c-4496-d11a8779350b	2021-05-22 02:36:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:36:39.853+03	2021-05-22 02:36:39.86+03	
d3b629e9-804f-8221-6b9e-fc3ebdb04e26	2021-05-22 02:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:36:59.853+03	2021-05-22 02:36:59.859+03	
7c1eba00-9d7b-5e65-e265-8a55e50078d5	2021-05-22 02:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:37:19.853+03	2021-05-22 02:37:19.859+03	
46cd2dc3-554b-99fe-c16f-24a709b45db0	2021-05-22 02:37:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:37:40.852+03	2021-05-22 02:37:40.859+03	
a73a6e07-dc77-1842-4dd1-ca8669934fa3	2021-05-22 02:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:38:00.852+03	2021-05-22 02:38:00.86+03	
0e45276b-ae94-5dbf-fe8e-64227c0bf21d	2021-05-22 02:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:38:20.853+03	2021-05-22 02:38:20.861+03	
9cae3cab-72ad-204a-607b-5c7cbc4c96f3	2021-05-22 02:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:17:58.853+03	2021-05-22 02:17:58.862+03	
e10e3675-f498-1a22-48ba-0024c55e664f	2021-05-22 02:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:18:18.853+03	2021-05-22 02:18:18.866+03	
341e5f7a-b74f-387f-31b0-1da498a66c46	2021-05-22 02:18:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:18:38.853+03	2021-05-22 02:18:38.863+03	
91285f2e-f94f-6ded-d26c-b656ff6b4acd	2021-05-22 02:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:18:58.853+03	2021-05-22 02:18:58.859+03	
d1ebf613-ba83-59db-82ba-90e024f136d2	2021-05-22 02:19:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:19:19.853+03	2021-05-22 02:19:19.861+03	
8712c47c-f30e-27d1-5fa6-242663f68e06	2021-05-22 02:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:19:39.853+03	2021-05-22 02:19:39.864+03	
d748357b-a9f5-36fd-3711-91b1517b8897	2021-05-22 02:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:19:59.853+03	2021-05-22 02:19:59.859+03	
4e6ebc9e-01da-4200-db19-18630bc49552	2021-05-22 02:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:20:09.853+03	2021-05-22 02:20:09.863+03	
0c76d584-e7c2-d794-915d-8ba1132d800f	2021-05-22 02:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:20:29.853+03	2021-05-22 02:20:29.86+03	
95bbaffd-4068-7df8-07c5-21e20d75080c	2021-05-22 02:20:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:20:49.853+03	2021-05-22 02:20:49.867+03	
816aeb7d-6a29-7890-ac84-73ebb4d5eb81	2021-05-22 02:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:21:10.853+03	2021-05-22 02:21:10.862+03	
4c9dd41f-b4f0-637e-0ea2-af809ae5da08	2021-05-22 02:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:21:30.853+03	2021-05-22 02:21:30.859+03	
dd31e750-0e10-a994-b1c9-e60eebadf5f3	2021-05-22 02:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:21:50.853+03	2021-05-22 02:21:50.86+03	
d09e4aba-85b7-3b31-b052-ef01febb48df	2021-05-22 02:22:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:22:11.852+03	2021-05-22 02:22:11.859+03	
0db4a4bf-a085-a880-f530-aae43214010c	2021-05-22 02:22:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:22:31.853+03	2021-05-22 02:22:31.859+03	
4a3f3018-75d5-2ad6-9079-4a80fc11b0d7	2021-05-22 02:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:22:52.853+03	2021-05-22 02:22:52.859+03	
51a28cf0-b5fd-e694-55b0-ef0d8e73f5db	2021-05-22 02:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:23:12.853+03	2021-05-22 02:23:12.861+03	
759d1ccc-a830-78c4-eddd-9d9a0e68a2a2	2021-05-22 02:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:23:32.853+03	2021-05-22 02:23:32.862+03	
1a0c57b7-b68f-374a-2f94-c62322d631db	2021-05-22 02:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:23:52.853+03	2021-05-22 02:23:52.861+03	
c5e83e91-eac3-6872-0d22-620314322c85	2021-05-22 02:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:24:12.853+03	2021-05-22 02:24:12.872+03	
dfc3659d-d3c8-3fdc-95b8-c928f31a7dd5	2021-05-22 02:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:24:32.853+03	2021-05-22 02:24:32.862+03	
c99e6197-f4df-ebf5-0fd6-f22440464f91	2021-05-22 02:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:24:53.853+03	2021-05-22 02:24:53.874+03	
bbe867a0-aa21-0b12-bb79-ac88ad3416fe	2021-05-22 02:25:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:25:13.853+03	2021-05-22 02:25:13.863+03	
aed3ffad-c364-b616-aad4-c38d51624bf0	2021-05-22 02:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:25:35.853+03	2021-05-22 02:25:35.86+03	
612ddd57-4a76-fbeb-4e6f-6fa5542f0a6d	2021-05-22 02:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:25:55.853+03	2021-05-22 02:25:55.866+03	
a3f40313-0f82-4a32-345b-19cb5176a9a3	2021-05-22 02:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:26:15.853+03	2021-05-22 02:26:15.864+03	
b60e82e9-a3da-3a81-cb78-4beadd3b3bfa	2021-05-22 02:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:26:35.853+03	2021-05-22 02:26:35.862+03	
c9b7a3fd-59f9-55da-71bc-d2a9ca2da816	2021-05-22 02:26:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:26:56.853+03	2021-05-22 02:26:56.86+03	
441ac436-4ad6-208b-4f84-49ccf194cd85	2021-05-22 02:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:27:17.853+03	2021-05-22 02:27:17.861+03	
c225f027-198b-0979-f7e9-ae04c94f4858	2021-05-22 02:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:27:37.853+03	2021-05-22 02:27:37.864+03	
83103d83-c366-773c-2b41-f9c563978465	2021-05-22 02:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:27:58.853+03	2021-05-22 02:27:58.864+03	
3c62abdf-86ca-31f5-819e-8cc7defeed51	2021-05-22 02:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:28:19.853+03	2021-05-22 02:28:19.86+03	
bf8597de-4887-4284-8614-607880b98930	2021-05-22 02:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:28:39.853+03	2021-05-22 02:28:39.861+03	
cc6cd9c8-3b22-0c75-0278-e47375792dc2	2021-05-22 02:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:28:59.853+03	2021-05-22 02:28:59.861+03	
31e04e75-706c-e527-415b-c7adb660b390	2021-05-22 02:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:29:19.853+03	2021-05-22 02:29:19.862+03	
77216849-0ea3-ffbf-9e8c-359a38d3fa8d	2021-05-22 02:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:29:40.853+03	2021-05-22 02:29:40.861+03	
590d5a22-4183-36cb-b015-374b86289cd5	2021-05-22 02:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:30:00.853+03	2021-05-22 02:30:00.861+03	
b7c0d864-9784-42e2-5e00-4d9a90e74aec	2021-05-22 02:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 02:30:00.853+03	2021-05-22 02:30:00.869+03	ERROR
9eec27ec-818b-e30d-9a27-8a63f2a0f61b	2021-05-22 02:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:30:20.853+03	2021-05-22 02:30:20.861+03	
cbb35b4b-bb18-9ab9-b497-507a3768ee54	2021-05-22 02:30:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:30:41.854+03	2021-05-22 02:30:41.862+03	
0a90c29f-53d1-c45a-c258-88d6649a3ff4	2021-05-22 02:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:31:02.853+03	2021-05-22 02:31:02.861+03	
9149966a-01f8-fde2-c0ea-873d0c4ae64b	2021-05-22 02:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:31:23.853+03	2021-05-22 02:31:23.86+03	
8dfaa0f6-3a35-417a-f311-cf8a53026fd1	2021-05-22 02:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:31:43.853+03	2021-05-22 02:31:43.87+03	
16fcff95-1d08-96c7-4e93-96bca3d8f5da	2021-05-22 02:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:32:04.852+03	2021-05-22 02:32:04.86+03	
1bbe84e0-5c7a-fdc8-dbb6-7c5b4eb8d2b8	2021-05-22 02:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:32:24.853+03	2021-05-22 02:32:24.869+03	
87e14eb7-d10c-bf1c-4d0c-ddce852d98d9	2021-05-22 02:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:32:44.853+03	2021-05-22 02:32:44.862+03	
1eee003a-e626-ccf8-101e-d9dec642a669	2021-05-22 02:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:33:04.853+03	2021-05-22 02:33:04.871+03	
86d215ab-7c3e-1ef3-8cf0-f2698cd60abc	2021-05-22 02:33:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:33:26.852+03	2021-05-22 02:33:26.859+03	
044f1c72-e8ca-6903-7f94-0156c213ce35	2021-05-22 02:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:33:47.852+03	2021-05-22 02:33:47.859+03	
9b654726-400d-0caa-dae9-0f2761d7bfdc	2021-05-22 02:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:34:07.852+03	2021-05-22 02:34:07.858+03	
801570c8-a3f0-5df4-6e22-6edeb2ad922d	2021-05-22 02:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:34:27.853+03	2021-05-22 02:34:27.859+03	
2ecbcab3-3ffc-0699-34b4-4adcc7702f41	2021-05-22 02:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:34:47.853+03	2021-05-22 02:34:47.86+03	
76705df3-33ca-728d-9c8c-c86b9db7e36d	2021-05-22 02:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:35:08.852+03	2021-05-22 02:35:08.859+03	
cbf088f6-1a2e-a64f-d9cf-23ad5717a36b	2021-05-22 02:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:35:28.853+03	2021-05-22 02:35:28.86+03	
d4a2cd68-01d4-5cf8-4a3f-55c3699421e8	2021-05-22 02:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:35:48.853+03	2021-05-22 02:35:48.859+03	
2067133b-0158-51d5-6f37-fc713cc0e26a	2021-05-22 02:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:36:09.853+03	2021-05-22 02:36:09.859+03	
494a1cac-1e01-e534-9109-339ef81a57bf	2021-05-22 02:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:36:29.853+03	2021-05-22 02:36:29.863+03	
72828926-6a0a-b8c2-1908-9c72ce0c80de	2021-05-22 02:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:36:49.853+03	2021-05-22 02:36:49.861+03	
ce7185f2-1937-885d-8cc7-e9825f7348fb	2021-05-22 02:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:37:09.853+03	2021-05-22 02:37:09.864+03	
891e040c-3baa-835d-35d8-7a4f468fd8fc	2021-05-22 02:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:37:29.853+03	2021-05-22 02:37:29.859+03	
2f3b7594-c5b2-0c47-da9e-5e123930f4c0	2021-05-22 02:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:37:50.852+03	2021-05-22 02:37:50.859+03	
9b5c0b55-04a3-9ef4-b981-83d4cde082ed	2021-05-22 02:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:38:10.852+03	2021-05-22 02:38:10.859+03	
0d92a174-2933-18ae-0cdf-b505b621c597	2021-05-22 02:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:38:30.853+03	2021-05-22 02:38:30.861+03	
6640fab4-7fea-3c65-da56-7ad116bc3ae8	2021-05-22 02:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:38:40.853+03	2021-05-22 02:38:40.859+03	
c98608ec-3861-f68a-6501-7d525029dd63	2021-05-22 10:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:51:17.853+03	2021-05-22 10:51:17.862+03	
10ef4b68-b4b4-350a-e140-6a26707daee1	2021-05-22 02:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:39:02.852+03	2021-05-22 02:39:02.858+03	
be9d1b4a-e31e-1284-d95b-e4421e0cfc5e	2021-05-22 02:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:39:22.852+03	2021-05-22 02:39:22.859+03	
6e204525-1e95-f2d5-c53a-944ab3c5aafb	2021-05-22 10:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:51:37.853+03	2021-05-22 10:51:37.863+03	
520b050b-2faf-7729-5498-e283b9f7b7cc	2021-05-22 02:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:39:42.853+03	2021-05-22 02:39:42.86+03	
5e28e262-31df-8dfb-94dd-8c1632f8e44b	2021-05-22 02:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 02:40:00.852+03	2021-05-22 02:40:00.859+03	ERROR
fe89581e-4c1b-7838-0507-cc38abdce285	2021-05-22 10:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:51:57.853+03	2021-05-22 10:51:57.866+03	
fb4151dc-361d-957d-b1f4-fa804cc4df58	2021-05-22 02:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:40:12.853+03	2021-05-22 02:40:12.859+03	
188dfa89-2a63-059b-5cd2-f28a044b6ed5	2021-05-22 02:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:40:32.853+03	2021-05-22 02:40:32.86+03	
0febd9c2-3de2-5e24-738b-6579eb37fbff	2021-05-22 10:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:52:18.852+03	2021-05-22 10:52:18.861+03	
0b33e82e-7897-0951-03a8-402a6cdfa62c	2021-05-22 02:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:40:53.852+03	2021-05-22 02:40:53.861+03	
cb6422a8-7b09-d6d2-159b-abf1d359357e	2021-05-22 02:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:41:13.853+03	2021-05-22 02:41:13.859+03	
68b4c599-7dcb-4cb8-3e0f-2a213db1b9f4	2021-05-22 10:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:52:38.853+03	2021-05-22 10:52:38.862+03	
da044a5c-68cc-0948-8b3b-527d63c5b928	2021-05-22 02:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:41:33.853+03	2021-05-22 02:41:33.86+03	
451c882a-2f41-8ad1-7424-b6e24f62ad5e	2021-05-22 02:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:41:54.853+03	2021-05-22 02:41:54.872+03	
eed23ea6-6083-1633-6728-6be6b5e969f5	2021-05-22 10:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:52:59.852+03	2021-05-22 10:52:59.858+03	
d0627c5f-4a67-1bc2-c141-836a55eb12fa	2021-05-22 02:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:42:15.853+03	2021-05-22 02:42:15.862+03	
8a583d17-248a-8c32-0027-2e174e9b378b	2021-05-22 02:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:42:35.853+03	2021-05-22 02:42:35.861+03	
454ff4ce-efcc-e1af-e2bd-89827dfff54e	2021-05-22 10:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:53:19.853+03	2021-05-22 10:53:19.861+03	
a8334cbb-97cf-9e16-3992-85e6f40a7d7b	2021-05-22 02:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:42:55.853+03	2021-05-22 02:42:55.86+03	
abe27128-65fb-5fb2-d2de-021ca2e3acc0	2021-05-22 02:43:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:43:16.852+03	2021-05-22 02:43:16.862+03	
aaec4729-4d3b-20b9-ea23-6bf26fce1f05	2021-05-22 10:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:53:39.853+03	2021-05-22 10:53:39.859+03	
0219f8bf-e18c-560f-cb11-49b7363e08f5	2021-05-22 02:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:43:36.852+03	2021-05-22 02:43:36.859+03	
2adfa549-8262-76bc-876a-1a3dbf27ffc9	2021-05-22 02:43:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:43:56.852+03	2021-05-22 02:43:56.867+03	
49fd8fa2-08d1-d7b8-d8e7-82dddaae92a2	2021-05-22 10:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:53:59.853+03	2021-05-22 10:53:59.863+03	
b9b8bd46-5bc6-add3-d4d9-9669d911d4b9	2021-05-22 02:44:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:44:16.853+03	2021-05-22 02:44:16.86+03	
48405a7d-b898-aef4-ec1a-3163cc7583f8	2021-05-22 02:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:44:37.852+03	2021-05-22 02:44:37.859+03	
5f48d6e8-078a-18cc-b174-4893ddb2ce43	2021-05-22 10:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:54:19.853+03	2021-05-22 10:54:19.873+03	
5df7ff51-8cd5-3b67-b05b-77f98f72f0f3	2021-05-22 02:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:44:57.853+03	2021-05-22 02:44:57.86+03	
989a1f4b-b579-a3a7-1eec-fa7d75b8d8f1	2021-05-22 02:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:45:19.852+03	2021-05-22 02:45:19.892+03	
8ba1989b-1f9a-b667-b574-caa9b3f2c7e0	2021-05-22 10:54:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:54:39.853+03	2021-05-22 10:54:39.862+03	
443aff63-54b1-dfd3-63cd-c3e422e15d10	2021-05-22 02:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:45:39.853+03	2021-05-22 02:45:39.86+03	
5215610b-a936-e715-2b86-c37150fa26ef	2021-05-22 02:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:46:00.853+03	2021-05-22 02:46:00.859+03	
4c7ac7df-0010-2fba-e7fd-d9020ce09315	2021-05-22 10:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:54:59.853+03	2021-05-22 10:54:59.861+03	
d1f37541-fe9d-401b-00d4-5044ffa030ca	2021-05-22 02:46:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:46:21.853+03	2021-05-22 02:46:21.86+03	
4d4657a7-659a-17c7-3349-1a126b7bb9b3	2021-05-22 02:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:46:42.853+03	2021-05-22 02:46:42.859+03	
91596619-bd4e-38df-76e1-6a658dffcc2a	2021-05-22 10:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:55:19.853+03	2021-05-22 10:55:19.872+03	
2519c658-09fd-85f4-0f90-af01cd573ed3	2021-05-22 02:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:47:02.853+03	2021-05-22 02:47:02.899+03	
6ba14240-4796-1451-b023-0fe42b2459c5	2021-05-22 02:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:47:22.853+03	2021-05-22 02:47:22.859+03	
11e02dae-b2ba-d368-b0c6-c03d3122395b	2021-05-22 10:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:55:39.853+03	2021-05-22 10:55:39.86+03	
d5f8c572-d95b-ae03-9b52-96a820fde55f	2021-05-22 02:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:47:42.853+03	2021-05-22 02:47:42.861+03	
3d637a7f-29bf-b948-ba62-ffb8a728a7f3	2021-05-22 02:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:48:03.852+03	2021-05-22 02:48:03.859+03	
9d592da5-4d72-e969-8042-7be153abcf5f	2021-05-22 10:55:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:55:59.853+03	2021-05-22 10:55:59.869+03	
7072552f-7397-2c3e-faf7-c77f22a0f6e1	2021-05-22 02:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:48:23.853+03	2021-05-22 02:48:23.86+03	
09d0f1bd-5312-1c65-0ca2-585cc39a9dae	2021-05-22 02:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:48:43.853+03	2021-05-22 02:48:43.859+03	
6d54602b-14a3-da58-e52d-5f0c8e391432	2021-05-22 10:56:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:56:19.853+03	2021-05-22 10:56:19.873+03	
d0b49561-4959-c36d-db18-34076d5e14ac	2021-05-22 02:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:49:03.853+03	2021-05-22 02:49:03.859+03	
1ae33ec7-517c-5564-d973-e761e5073c7d	2021-05-22 02:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:49:24.853+03	2021-05-22 02:49:24.86+03	
c99f4247-59ae-80df-1163-5d2b930d6036	2021-05-22 10:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:56:39.853+03	2021-05-22 10:56:39.862+03	
83244444-40b1-cfc9-f86b-6729d1f0c24f	2021-05-22 02:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:49:44.853+03	2021-05-22 02:49:44.861+03	
81dfd4a6-bd06-24d0-4d4a-80bc052d507c	2021-05-22 02:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 02:50:00.852+03	2021-05-22 02:50:00.857+03	ERROR
d74df3b0-f694-4cd1-6ccb-fc2266e2f17a	2021-05-22 10:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:57:00.853+03	2021-05-22 10:57:00.859+03	
ca1ea8c3-3d5f-cd38-2294-14cfaae20c92	2021-05-22 02:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:50:15.853+03	2021-05-22 02:50:15.861+03	
7dc07029-94b2-2c47-ac68-12b772117d79	2021-05-22 02:50:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:50:35.853+03	2021-05-22 02:50:35.86+03	
5c9f4866-f4dc-9b45-4803-464fb1be1979	2021-05-22 02:50:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:50:56.853+03	2021-05-22 02:50:56.86+03	
25c39eeb-ee13-aec4-8f6b-6a8d2605b6e4	2021-05-22 02:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:51:17.853+03	2021-05-22 02:51:17.86+03	
453891e0-2034-55ba-e840-73fcd1abc908	2021-05-22 02:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:51:37.853+03	2021-05-22 02:51:37.859+03	
268b663e-2b47-9b0a-694d-20fa2812654f	2021-05-22 02:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:51:57.853+03	2021-05-22 02:51:57.86+03	
90954ac2-509a-6c16-68fc-700c171386a3	2021-05-22 02:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:52:17.853+03	2021-05-22 02:52:17.859+03	
883caccf-3ab4-6d6b-3ee0-282a104b61b9	2021-05-22 02:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:52:38.852+03	2021-05-22 02:52:38.859+03	
2c184bcd-ab71-6063-d70f-adde01c795d0	2021-05-22 02:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:52:59.853+03	2021-05-22 02:52:59.861+03	
b4aa9b45-2133-97f3-d571-6933ce9a8c07	2021-05-22 02:53:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:53:19.853+03	2021-05-22 02:53:19.867+03	
bd0d0ee1-39c3-4a27-ab65-abc0623d0cff	2021-05-22 02:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:53:39.853+03	2021-05-22 02:53:39.862+03	
c4e2b89e-2af8-8501-8790-1d4a3949a216	2021-05-22 02:38:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:38:51.853+03	2021-05-22 02:38:51.86+03	
ea4da447-29dc-110b-500a-ec5876719899	2021-05-22 02:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:39:12.852+03	2021-05-22 02:39:12.858+03	
70bf2b0c-97b2-c610-c25b-339060b1515a	2021-05-22 02:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:39:32.853+03	2021-05-22 02:39:32.859+03	
e0b103a2-f1d5-ae24-7176-cf24330b8fed	2021-05-22 02:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:39:52.853+03	2021-05-22 02:39:52.864+03	
312b2568-82f3-90d8-2434-82e47a7cea55	2021-05-22 02:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:40:02.853+03	2021-05-22 02:40:02.858+03	
0a519865-cc67-ece7-bbe0-c8e15ff54a27	2021-05-22 02:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:40:22.853+03	2021-05-22 02:40:22.859+03	
c3acd328-edc3-ce4b-9b51-c9f23dede0ca	2021-05-22 02:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:40:42.853+03	2021-05-22 02:40:42.86+03	
b4ab6ab5-bc7f-e78e-bfdd-fc9e5daa9a56	2021-05-22 02:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:41:03.853+03	2021-05-22 02:41:03.86+03	
036fbda3-dbb4-1e6f-f650-d8df40bd9be1	2021-05-22 02:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:41:23.853+03	2021-05-22 02:41:23.862+03	
efb96150-f081-b054-adaa-84b8ce0892a3	2021-05-22 02:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:41:44.853+03	2021-05-22 02:41:44.859+03	
25159e42-0a57-0c30-9d13-87df0cd0e0d0	2021-05-22 02:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:42:05.852+03	2021-05-22 02:42:05.861+03	
0e690461-722a-9365-647f-fcad7c61afbd	2021-05-22 02:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:42:25.853+03	2021-05-22 02:42:25.86+03	
37d92491-37ff-e51d-e311-5aef749581cd	2021-05-22 02:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:42:45.853+03	2021-05-22 02:42:45.866+03	
9253f60c-df82-76b1-815b-5991f714ca8a	2021-05-22 02:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:43:05.853+03	2021-05-22 02:43:05.875+03	
66a63308-db33-6b01-d820-f8d924b9bc1b	2021-05-22 02:43:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:43:26.852+03	2021-05-22 02:43:26.861+03	
8afafb3e-e751-2f1e-9ad3-534102b907a7	2021-05-22 02:43:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:43:46.852+03	2021-05-22 02:43:46.859+03	
0534debe-30f1-7c74-14f7-860dac692748	2021-05-22 02:44:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:44:06.853+03	2021-05-22 02:44:06.86+03	
d75f9af7-33e7-0453-de39-d44e1be08fca	2021-05-22 02:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:44:27.852+03	2021-05-22 02:44:27.859+03	
8197db65-874d-951f-3589-4168a971a153	2021-05-22 02:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:44:47.852+03	2021-05-22 02:44:47.859+03	
8d2714c6-f9b9-1913-56fb-0c521c6bbd2c	2021-05-22 02:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:45:08.853+03	2021-05-22 02:45:08.863+03	
87e64dca-6b6a-f822-6b43-b0c3766035b6	2021-05-22 02:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:45:29.853+03	2021-05-22 02:45:29.861+03	
5a1bc9a3-e5c9-e20f-9362-c1154dd7e023	2021-05-22 02:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:45:49.853+03	2021-05-22 02:45:49.859+03	
5bf388cd-de9a-80de-7b59-e8dd9e84f1f8	2021-05-22 02:46:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:46:10.853+03	2021-05-22 02:46:10.86+03	
6d8c8b63-fcd0-60dd-d36e-caed2acce03c	2021-05-22 02:46:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:46:31.854+03	2021-05-22 02:46:31.872+03	
78f17c00-a501-eeb4-f9ae-20f94a68018c	2021-05-22 02:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:46:52.853+03	2021-05-22 02:46:52.859+03	
4cfb2a11-d5f3-61da-69ec-ffed61796d10	2021-05-22 02:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:47:12.853+03	2021-05-22 02:47:12.859+03	
56381cac-4bd4-3055-2745-08dd3ad5ccde	2021-05-22 02:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:47:32.853+03	2021-05-22 02:47:32.86+03	
f9fab97a-90c5-c4ca-7259-7d1e3804d261	2021-05-22 02:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:47:52.853+03	2021-05-22 02:47:52.86+03	
fad6d051-8c7a-fbb3-6207-43aef46d3d4e	2021-05-22 02:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:48:13.853+03	2021-05-22 02:48:13.86+03	
0ee2dc73-4384-e589-4461-2c42ae1bea44	2021-05-22 02:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:48:33.853+03	2021-05-22 02:48:33.86+03	
600d11fa-e52a-e583-543d-7b3cee231350	2021-05-22 02:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:48:53.853+03	2021-05-22 02:48:53.861+03	
09d9a714-659e-3fef-3be2-172dd5691b5f	2021-05-22 02:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:49:14.853+03	2021-05-22 02:49:14.859+03	
35282cee-85bc-5255-9c1b-c28cd6bc24b8	2021-05-22 02:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:49:34.853+03	2021-05-22 02:49:34.861+03	
0b73200b-96af-e464-94be-270e3ae5359c	2021-05-22 02:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:49:55.853+03	2021-05-22 02:49:55.875+03	
8b3eb11a-8f33-a3fd-60e5-ddc25c2fd814	2021-05-22 02:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:50:05.853+03	2021-05-22 02:50:05.872+03	
acbcb7cb-eeea-a5ec-1dee-8e0ca01495c1	2021-05-22 02:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:50:25.853+03	2021-05-22 02:50:25.859+03	
6cca1b2d-8d48-69b6-9d85-32e4f250133b	2021-05-22 02:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:50:45.853+03	2021-05-22 02:50:45.86+03	
d65bde94-9d3a-19ba-9989-5c5254420ef0	2021-05-22 02:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:51:07.853+03	2021-05-22 02:51:07.913+03	
c25fc3ad-b47d-579e-3afb-77badd4f65bf	2021-05-22 02:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:51:27.853+03	2021-05-22 02:51:27.859+03	
cabf06ea-344d-444b-bc6c-7e5d678a0fb0	2021-05-22 02:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:51:47.853+03	2021-05-22 02:51:47.86+03	
3547eb82-16fc-034d-b52a-ac6d55779380	2021-05-22 02:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:52:07.853+03	2021-05-22 02:52:07.861+03	
58deaa25-70e2-4936-df71-b60e2c4a943d	2021-05-22 02:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:52:27.853+03	2021-05-22 02:52:27.859+03	
52de0d39-123d-7c1d-f052-c044c896f132	2021-05-22 02:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:52:48.853+03	2021-05-22 02:52:48.866+03	
f5e2531b-460b-7167-983f-5f11185277e5	2021-05-22 02:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:53:09.853+03	2021-05-22 02:53:09.863+03	
c835eb92-90f9-f312-2ea3-a96ead378c70	2021-05-22 02:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:53:29.853+03	2021-05-22 02:53:29.86+03	
89198e58-3141-6a77-dac7-7da0c35bcbaa	2021-05-22 02:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:53:50.853+03	2021-05-22 02:53:50.862+03	
387c042b-0f3b-dfaa-c628-6c3e9be9f059	2021-05-22 02:54:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:54:01.853+03	2021-05-22 02:54:01.882+03	
27afb516-759f-00ab-4881-125c2f66d430	2021-05-22 02:54:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:54:11.853+03	2021-05-22 02:54:11.862+03	
125bdfe5-b586-b062-ace4-f9febe4bdd07	2021-05-22 02:54:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:54:21.854+03	2021-05-22 02:54:21.861+03	
9e9d80c9-35f9-9348-bc2e-38e59f9b970c	2021-05-22 02:54:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:54:31.854+03	2021-05-22 02:54:31.869+03	
f8bebd4c-5564-489d-0bc6-0e6c5580a879	2021-05-22 02:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:54:42.853+03	2021-05-22 02:54:42.862+03	
64025a0e-4f01-c400-9a74-1dc6bf72c1ae	2021-05-22 02:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:54:52.853+03	2021-05-22 02:54:52.861+03	
15836e3e-2b3a-bb2f-5a74-0706fa8a7b47	2021-05-22 02:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:55:02.853+03	2021-05-22 02:55:02.86+03	
ee242344-4866-70a6-a56a-97e5587dc600	2021-05-22 02:55:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:55:13.853+03	2021-05-22 02:55:13.862+03	
4c79a50d-23a4-88eb-f05e-15410b1203a5	2021-05-22 02:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:55:24.853+03	2021-05-22 02:55:24.86+03	
6629e85f-627a-5f13-2765-b8d4e742d152	2021-05-22 02:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:55:35.853+03	2021-05-22 02:55:35.868+03	
ad368417-4fe2-f21e-a911-99d45e8f9671	2021-05-22 02:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:55:45.853+03	2021-05-22 02:55:45.863+03	
5567015b-c77d-cf64-330d-acc07c37ed17	2021-05-22 02:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:55:55.853+03	2021-05-22 02:55:55.86+03	
20aba550-bb4c-d91a-9eef-661dc4d32f12	2021-05-22 02:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:56:05.853+03	2021-05-22 02:56:05.859+03	
f2dbd69d-9508-3012-9423-c4290633792a	2021-05-22 02:56:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:56:15.853+03	2021-05-22 02:56:15.862+03	
6e060017-b58c-8886-f512-d8e77eaabe9c	2021-05-22 02:56:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:56:25.853+03	2021-05-22 02:56:25.86+03	
8341d35e-3497-e168-0147-c18602cdd901	2021-05-22 02:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:56:35.853+03	2021-05-22 02:56:35.861+03	
a16d9e3f-e635-8cc5-992a-e4631861396b	2021-05-22 02:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:56:45.853+03	2021-05-22 02:56:45.861+03	
ee9651d3-133f-e941-d51d-639d50f1ac69	2021-05-22 02:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:56:55.853+03	2021-05-22 02:56:55.859+03	
51e1da39-ab10-47d1-de20-f2580dc5d064	2021-05-22 02:57:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:57:16.853+03	2021-05-22 02:57:16.863+03	
baa3bace-10ea-72be-f41c-18bda964cc8b	2021-05-22 02:57:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:57:36.853+03	2021-05-22 02:57:36.859+03	
68ce88b0-71d3-6cd3-1c3c-418a01a5c42c	2021-05-22 02:57:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:57:56.853+03	2021-05-22 02:57:56.859+03	
26e503aa-73c1-4af5-9fe8-68fc2fcdcc2b	2021-05-22 02:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:58:17.853+03	2021-05-22 02:58:17.862+03	
54e422df-5ea7-2ada-d21b-0d6a05efaa6f	2021-05-22 02:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:58:37.853+03	2021-05-22 02:58:37.864+03	
6cc59552-8bf1-20ae-e192-d68606acc8a2	2021-05-22 02:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:58:57.853+03	2021-05-22 02:58:57.86+03	
af79ce69-043f-5986-eb72-c9c7caf58b2b	2021-05-22 02:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:59:18.852+03	2021-05-22 02:59:18.86+03	
54faddc1-aee0-2aa7-923e-87b6e77a0987	2021-05-22 02:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:59:38.853+03	2021-05-22 02:59:38.86+03	
cc5eb75f-2e86-2b7c-189f-681b5ddb3c9b	2021-05-22 02:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:59:59.853+03	2021-05-22 02:59:59.872+03	
304a2bdb-efcd-2660-1d5b-d4d58c827972	2021-05-22 03:00:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:00:09.853+03	2021-05-22 03:00:09.866+03	
c2e74150-c501-9f23-3346-456b146b0444	2021-05-22 03:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:00:29.853+03	2021-05-22 03:00:29.873+03	
ffd7aec7-94c2-d885-abde-81837e68a143	2021-05-22 03:00:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:00:49.853+03	2021-05-22 03:00:49.863+03	
6bbb03c9-e904-f327-97d6-831530a38ed9	2021-05-22 03:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:01:09.853+03	2021-05-22 03:01:09.871+03	
aab5b5c8-db58-98a1-0b39-9866e3e4872d	2021-05-22 03:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:01:29.853+03	2021-05-22 03:01:29.872+03	
4882bbf1-dbec-6c15-70f0-0c9f77116608	2021-05-22 03:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:01:49.853+03	2021-05-22 03:01:49.861+03	
f3eca960-4bd6-596b-daa2-7d580d505157	2021-05-22 03:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:02:09.853+03	2021-05-22 03:02:09.861+03	
8db3febe-a33c-bcee-3044-5879783c677d	2021-05-22 03:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:02:30.852+03	2021-05-22 03:02:30.863+03	
ee92330f-905a-f8bb-d75d-fa8ae3cdb12f	2021-05-22 03:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:02:50.852+03	2021-05-22 03:02:50.859+03	
0ee87b34-622b-0f02-ba98-0e33f2ae6d3c	2021-05-22 03:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:03:10.853+03	2021-05-22 03:03:10.861+03	
7be1d966-8f61-b787-a629-bfbacfb3138b	2021-05-22 03:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:03:30.853+03	2021-05-22 03:03:30.862+03	
d525c5b0-aef7-7c04-64a0-a5ab9600acf9	2021-05-22 03:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:03:50.853+03	2021-05-22 03:03:50.86+03	
1016e936-2912-8404-640b-18108fcfab5c	2021-05-22 03:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:04:10.853+03	2021-05-22 03:04:10.86+03	
41cbc4a4-132f-288a-c568-c169abade653	2021-05-22 03:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:04:30.853+03	2021-05-22 03:04:30.867+03	
5ea2cdb2-5591-473e-2ce4-e7851d9db366	2021-05-22 03:04:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:04:51.853+03	2021-05-22 03:04:51.871+03	
6bc7bfa3-4f18-ab31-1fcd-b002c46af6f7	2021-05-22 03:05:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:05:11.855+03	2021-05-22 03:05:11.864+03	
9135d6d9-cb4e-7fa1-1402-f3f50b6d1be2	2021-05-22 03:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:05:32.853+03	2021-05-22 03:05:32.858+03	
817f526b-6d17-1520-2aef-30b38b5f87f1	2021-05-22 03:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:05:53.853+03	2021-05-22 03:05:53.862+03	
abf62d79-b319-4a10-a2a8-4dc6aa213722	2021-05-22 03:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:06:14.853+03	2021-05-22 03:06:14.861+03	
d608b59b-b0e3-e239-fd2d-3752d7805001	2021-05-22 03:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:06:34.853+03	2021-05-22 03:06:34.874+03	
ff0832df-17c9-dc1e-37e8-5402fc2ee982	2021-05-22 03:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:06:54.853+03	2021-05-22 03:06:54.86+03	
e1866b12-c387-0fcb-b27f-a36cb6453b13	2021-05-22 03:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:07:14.853+03	2021-05-22 03:07:14.862+03	
84eba05d-fe27-1fac-ee94-4791a110c8c8	2021-05-22 03:07:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:07:34.853+03	2021-05-22 03:07:34.861+03	
0a0bc250-e9b5-c225-bf62-028b931a0f7d	2021-05-22 03:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:07:54.853+03	2021-05-22 03:07:54.861+03	
f8739c2a-50cd-4d65-4eda-655f57076f90	2021-05-22 03:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:08:14.853+03	2021-05-22 03:08:14.863+03	
6b8da2c6-4a44-992f-3520-000ae6c08c30	2021-05-22 03:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:08:34.853+03	2021-05-22 03:08:34.861+03	
6af06f10-c65e-7230-b64c-d3266291b908	2021-05-22 03:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:08:54.853+03	2021-05-22 03:08:54.861+03	
476ac202-904c-f0b0-8acb-184a1f54b699	2021-05-22 03:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:09:15.853+03	2021-05-22 03:09:15.865+03	
7a629247-26ca-1ae3-d446-dd3bb45dde5b	2021-05-22 03:09:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:09:36.853+03	2021-05-22 03:09:36.86+03	
e4e3db28-7b5c-8cee-4baa-55a4350ac9e5	2021-05-22 03:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:09:58.852+03	2021-05-22 03:09:58.859+03	
d1c6423b-d5d1-7ea3-8aad-d11cfdc5b957	2021-05-22 03:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:10:08.853+03	2021-05-22 03:10:08.866+03	
a25af0fd-c30f-8f50-5d76-da3b04d86ffc	2021-05-22 03:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:10:28.853+03	2021-05-22 03:10:28.859+03	
c94df843-2a23-aa37-a19f-375e73e1de0c	2021-05-22 03:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:10:48.853+03	2021-05-22 03:10:49.11+03	
f4b312a0-2141-e04f-e6fb-cf4b2f61c49e	2021-05-22 03:11:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:11:09.853+03	2021-05-22 03:11:09.864+03	
36d135c3-5500-a0cd-6ec4-d6f48b2768f8	2021-05-22 03:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:11:29.853+03	2021-05-22 03:11:29.862+03	
231ec5f4-cec4-ea0d-d055-8a6e798dba17	2021-05-22 03:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:11:49.853+03	2021-05-22 03:11:49.862+03	
b54ebcc7-f9ba-2a67-eba7-2df841a881b4	2021-05-22 03:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:12:09.853+03	2021-05-22 03:12:09.859+03	
d1a09365-5ddf-b870-13c7-7da4b3f3817e	2021-05-22 03:12:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:12:29.853+03	2021-05-22 03:12:29.86+03	
29af3153-ee0b-7811-fedb-f8d34519dc6e	2021-05-22 03:12:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:12:49.853+03	2021-05-22 03:12:49.862+03	
e0a00827-0eac-83f7-cb32-7fbd0fe2da3f	2021-05-22 03:13:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:13:11.854+03	2021-05-22 03:13:11.861+03	
15ee48f4-e4f4-cae6-9663-467e367fe68a	2021-05-22 03:13:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:13:31.854+03	2021-05-22 03:13:31.86+03	
38006e1d-6954-a0fd-69fa-ea330160d344	2021-05-22 03:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:13:52.852+03	2021-05-22 03:13:52.859+03	
4aba7c9c-7b1f-b237-312e-2fb4bb0fa081	2021-05-22 03:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:14:12.852+03	2021-05-22 03:14:12.862+03	
190145f2-eea0-4e94-8b20-3d005022c970	2021-05-22 03:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:14:32.853+03	2021-05-22 03:14:32.861+03	
c67d8b9c-b1b4-5f7c-96ae-fbbe6e9bfe01	2021-05-22 03:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:14:52.853+03	2021-05-22 03:14:52.861+03	
704596a0-35a2-158c-ac08-96ba4e2914d7	2021-05-22 03:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:15:13.853+03	2021-05-22 03:15:13.859+03	
cd134505-c796-c64e-d7a2-ac0b1c90dc06	2021-05-22 03:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:15:33.853+03	2021-05-22 03:15:33.859+03	
71f1a16d-da74-2f3b-7110-730f3d4141bf	2021-05-22 03:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:15:54.853+03	2021-05-22 03:15:54.859+03	
1a4df5f1-7406-b60a-9584-6cb197dac062	2021-05-22 03:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:16:14.853+03	2021-05-22 03:16:14.86+03	
6e1ba32d-dfc7-e4c7-ef8a-196348cc6981	2021-05-22 03:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:16:34.853+03	2021-05-22 03:16:34.873+03	
26efaf8e-7eb0-5668-362a-77b1269e2183	2021-05-22 03:16:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:16:54.853+03	2021-05-22 03:16:54.859+03	
ad77426a-8436-0c19-9171-931490fe61d2	2021-05-22 03:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:17:15.853+03	2021-05-22 03:17:15.875+03	
215fb438-1d20-9e36-be4a-bb4b94044641	2021-05-22 03:17:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:17:36.853+03	2021-05-22 03:17:36.861+03	
a40a20fe-9fbe-d79c-d806-0e683a094579	2021-05-22 02:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:57:05.853+03	2021-05-22 02:57:05.861+03	
377b4c05-55c8-829e-18f8-d89513f8d67a	2021-05-22 02:57:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:57:26.853+03	2021-05-22 02:57:26.86+03	
a6b14869-f4e4-acc8-0ad8-faff038fcce8	2021-05-22 02:57:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:57:46.853+03	2021-05-22 02:57:46.862+03	
ce216a87-164e-e61c-8543-e98297736978	2021-05-22 02:58:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:58:06.853+03	2021-05-22 02:58:06.874+03	
a3e59732-d18a-0cf5-109a-cbb3203b11c3	2021-05-22 02:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:58:27.853+03	2021-05-22 02:58:27.862+03	
ff191654-713f-6252-ca68-a1fc244ae59b	2021-05-22 02:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:58:47.853+03	2021-05-22 02:58:47.86+03	
8a7aa308-c30e-babb-518f-672f3cb30b39	2021-05-22 02:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:59:08.852+03	2021-05-22 02:59:08.86+03	
eb384815-c8c0-1979-ca33-8415a1eb8c67	2021-05-22 02:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:59:28.852+03	2021-05-22 02:59:28.859+03	
667a5558-b12a-0de3-5db9-8162ea7ed311	2021-05-22 02:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 02:59:48.853+03	2021-05-22 02:59:48.861+03	
ca6edfc2-803f-6b00-45c0-803579cad07a	2021-05-22 03:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 03:00:00.853+03	2021-05-22 03:00:00.86+03	ERROR
d2b43795-1276-0c64-f4fa-36bb5d1d2161	2021-05-22 03:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:00:19.853+03	2021-05-22 03:00:19.874+03	
57695ef6-d828-8975-def1-572e4e7bd134	2021-05-22 03:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:00:39.853+03	2021-05-22 03:00:39.868+03	
69deced2-d273-a696-ffba-1b191868db0d	2021-05-22 03:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:00:59.853+03	2021-05-22 03:00:59.86+03	
f3957c9d-63a1-d452-16fe-2777637f81b2	2021-05-22 03:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:01:19.853+03	2021-05-22 03:01:19.87+03	
80360ae7-0502-e250-3ed9-92cc31d2752d	2021-05-22 03:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:01:39.853+03	2021-05-22 03:01:39.861+03	
c48a78d6-d85d-cca3-5602-0a1a12f3d146	2021-05-22 03:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:01:59.853+03	2021-05-22 03:01:59.874+03	
cf48c0bb-fbd0-90b3-1d05-2d569ec95e57	2021-05-22 03:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:02:19.853+03	2021-05-22 03:02:19.86+03	
9cec1b9d-0f2c-c9ab-22f4-35d5144df84d	2021-05-22 03:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:02:40.852+03	2021-05-22 03:02:40.858+03	
bfe7e5a5-3dc2-2a3f-d7eb-deef53debab5	2021-05-22 03:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:03:00.853+03	2021-05-22 03:03:00.859+03	
dabf8447-af29-9691-b32f-1b7f5261ab76	2021-05-22 03:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:03:20.853+03	2021-05-22 03:03:20.865+03	
125d5501-70b2-eb90-388d-4b28e7f05556	2021-05-22 03:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:03:40.853+03	2021-05-22 03:03:40.862+03	
34d66785-17a2-abb8-b6c8-ac98d2a7ac75	2021-05-22 03:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:04:00.853+03	2021-05-22 03:04:00.862+03	
3247d93d-9b41-fbc1-9434-db5b75bea2c6	2021-05-22 03:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:04:20.853+03	2021-05-22 03:04:20.875+03	
73147322-fa0b-e492-3106-f117a85348b6	2021-05-22 03:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:04:40.853+03	2021-05-22 03:04:40.869+03	
49f7853a-ff60-a64d-297f-28ee58e8b6fc	2021-05-22 03:05:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:05:01.853+03	2021-05-22 03:05:01.861+03	
77b7e2f5-d0a7-ebaa-635f-bcfd516a9b7f	2021-05-22 03:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:05:22.853+03	2021-05-22 03:05:22.861+03	
5b547221-dda4-2c5e-6de1-b57d388be7b1	2021-05-22 03:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:05:42.853+03	2021-05-22 03:05:42.86+03	
4d08cd21-9c18-a185-a7e2-043704ab79cc	2021-05-22 03:06:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:06:03.854+03	2021-05-22 03:06:03.862+03	
d6b247fb-ade9-5a93-7a1c-da8c64a16e3e	2021-05-22 03:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:06:24.853+03	2021-05-22 03:06:24.859+03	
620d5259-1d00-767d-2a2a-f89218b91253	2021-05-22 03:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:06:44.853+03	2021-05-22 03:06:44.864+03	
6062e2d3-1ba2-f61e-1fd6-50fd5d84758f	2021-05-22 03:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:07:04.853+03	2021-05-22 03:07:04.871+03	
76faf55e-5285-3752-9553-8db8033c0597	2021-05-22 03:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:07:24.853+03	2021-05-22 03:07:24.874+03	
efdb3a36-5993-265a-7129-982b77bd6a80	2021-05-22 03:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:07:44.853+03	2021-05-22 03:07:44.86+03	
06e8f285-61af-7a80-69d7-7cac02996bb0	2021-05-22 03:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:08:04.853+03	2021-05-22 03:08:04.864+03	
5a313df2-e629-f7c0-993b-fff532a71e49	2021-05-22 03:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:08:24.853+03	2021-05-22 03:08:24.861+03	
2fb8652f-3925-3822-845b-2fcf82fc48be	2021-05-22 03:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:08:44.853+03	2021-05-22 03:08:44.865+03	
94e30864-c146-d0d1-7c17-a142194b3bb6	2021-05-22 03:09:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:09:05.853+03	2021-05-22 03:09:05.863+03	
eea057e9-4e36-c7f9-d5a3-319fb0f108d2	2021-05-22 03:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:09:25.853+03	2021-05-22 03:09:25.859+03	
ee1c816a-e5a2-a5a5-f92c-4b5a3d3918f2	2021-05-22 03:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:09:47.853+03	2021-05-22 03:09:47.86+03	
37591d28-87b2-f23a-cbf2-caeb1de9f590	2021-05-22 03:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 03:10:00.853+03	2021-05-22 03:10:00.87+03	ERROR
ad93b360-d32c-859c-4020-db716618fb6c	2021-05-22 03:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:10:18.853+03	2021-05-22 03:10:18.861+03	
a50a7e43-aea3-0a6d-a70b-78bf52328d94	2021-05-22 03:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:10:38.853+03	2021-05-22 03:10:38.86+03	
6987066e-94e4-e404-fe66-dc528f3cf823	2021-05-22 03:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:10:59.852+03	2021-05-22 03:10:59.86+03	
2ba7c986-27c2-4fc1-beb0-f72bf3d03427	2021-05-22 03:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:11:19.853+03	2021-05-22 03:11:19.86+03	
438e5502-bb5a-c080-c196-0dea4f701c44	2021-05-22 03:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:11:39.853+03	2021-05-22 03:11:39.861+03	
8d97c51e-931d-56eb-5fc6-f1288cbaa34a	2021-05-22 03:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:11:59.853+03	2021-05-22 03:11:59.86+03	
6916777c-2c20-b2b2-d4a0-edd56b32dfd2	2021-05-22 03:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:12:19.853+03	2021-05-22 03:12:19.86+03	
d05bb2b4-abed-3b0b-b9f8-40c8126d0f31	2021-05-22 03:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:12:39.853+03	2021-05-22 03:12:39.859+03	
bee3009b-5ee8-e3fe-ba71-99fcd7a8ccc0	2021-05-22 03:13:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:13:00.853+03	2021-05-22 03:13:00.862+03	
da06ee4d-fd14-5091-f9cd-17a25feb67e3	2021-05-22 03:13:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:13:21.854+03	2021-05-22 03:13:21.861+03	
70ad4361-f567-e4bb-af4e-b0a2438fae48	2021-05-22 03:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:13:42.852+03	2021-05-22 03:13:42.859+03	
e5e4d963-4b4d-7d8f-f4af-3c6dc58076b6	2021-05-22 03:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:14:02.852+03	2021-05-22 03:14:02.872+03	
803510c7-be5c-d677-aca5-66eeff27ec13	2021-05-22 03:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:14:22.852+03	2021-05-22 03:14:22.859+03	
583dffeb-77f8-94ff-1272-3b7e83d258ef	2021-05-22 03:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:14:42.853+03	2021-05-22 03:14:42.859+03	
ae04c3d6-e330-44a2-32a1-a42293ed4f31	2021-05-22 03:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:15:03.853+03	2021-05-22 03:15:03.86+03	
12798418-15d9-91f0-f09c-a238d43b1a24	2021-05-22 03:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:15:23.853+03	2021-05-22 03:15:23.861+03	
c8cc3e14-0f3f-0bb0-cf6a-c751951bca2d	2021-05-22 03:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:15:44.852+03	2021-05-22 03:15:44.864+03	
6301c45f-3a4e-fd28-dffb-cb963e5adc3b	2021-05-22 03:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:16:04.853+03	2021-05-22 03:16:04.86+03	
52675b6c-56fc-6cc6-f622-d0df3819afae	2021-05-22 03:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:16:24.853+03	2021-05-22 03:16:24.86+03	
2b5eaa86-bc10-67e3-8b8d-def14a700755	2021-05-22 03:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:16:44.853+03	2021-05-22 03:16:44.859+03	
ce1aced7-fb0b-e810-7a69-5a5f6f339cd2	2021-05-22 03:17:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:17:04.853+03	2021-05-22 03:17:04.859+03	
9fe29fad-88a6-4e00-2d3a-cc0afe12551f	2021-05-22 03:17:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:17:26.853+03	2021-05-22 03:17:26.86+03	
88fc17da-da7e-d068-7e02-0646f9bc5b09	2021-05-22 03:17:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:17:46.853+03	2021-05-22 03:17:46.86+03	
91a81bf7-7c4f-bd52-852f-bf46cdb2db50	2021-05-22 03:17:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:17:56.853+03	2021-05-22 03:17:56.86+03	
3bc704dc-467d-cebb-ccaf-3acd274d7980	2021-05-22 03:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:18:16.853+03	2021-05-22 03:18:16.859+03	
c8294ee4-1a07-7dcb-e8f6-5a7dbd70bddb	2021-05-22 03:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:18:37.853+03	2021-05-22 03:18:37.859+03	
68b73c11-a904-1871-3c95-e38b1028b27f	2021-05-22 03:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:18:58.853+03	2021-05-22 03:18:58.859+03	
c009b742-71ce-2722-8dcd-6033c6a1e67d	2021-05-22 03:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:19:19.853+03	2021-05-22 03:19:19.861+03	
44ab8f37-80a7-ff21-8ba1-806c3e63e9fc	2021-05-22 03:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:19:39.853+03	2021-05-22 03:19:39.86+03	
fdce89da-5905-5dbe-75d4-e7c01b5198f0	2021-05-22 03:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:20:00.852+03	2021-05-22 03:20:00.86+03	
d640d28b-2a9c-75d7-556c-0c23f0a65c4c	2021-05-22 03:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:20:20.853+03	2021-05-22 03:20:20.875+03	
d73989f5-e49b-8a8c-5776-b28d6c57092a	2021-05-22 03:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:20:40.853+03	2021-05-22 03:20:40.861+03	
fb0f3e92-7951-8a27-8201-28944a642076	2021-05-22 03:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:21:00.853+03	2021-05-22 03:21:00.862+03	
63d70fc7-b8a6-4389-cad5-23dc18f8bda5	2021-05-22 03:21:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:21:21.853+03	2021-05-22 03:21:21.862+03	
c118f357-e727-c935-adda-a4a18b2625cf	2021-05-22 03:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:21:42.853+03	2021-05-22 03:21:42.859+03	
03e791cf-94c7-ac22-90d1-172e5e8c9ddc	2021-05-22 03:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:22:02.853+03	2021-05-22 03:22:02.868+03	
dd8cd7d3-2314-cf0e-b2ac-00d08d64f1db	2021-05-22 03:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:22:22.853+03	2021-05-22 03:22:22.86+03	
872aa1ad-7962-cf07-86f0-f82a1e3e8661	2021-05-22 03:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:22:43.852+03	2021-05-22 03:22:43.859+03	
7c94f7d1-2a82-219e-6aac-94fde330fef2	2021-05-22 03:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:23:03.852+03	2021-05-22 03:23:03.859+03	
4a7707af-e69a-f347-69dc-6e33857d86e6	2021-05-22 03:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:23:24.853+03	2021-05-22 03:23:24.863+03	
481d9291-c4d7-05e3-acb0-bcaeb5d3c3fc	2021-05-22 03:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:23:44.853+03	2021-05-22 03:23:44.863+03	
63dd618f-5025-7bd5-ca48-270b6c907f57	2021-05-22 03:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:24:05.853+03	2021-05-22 03:24:05.859+03	
232f4f00-092a-b3d4-303c-1711b17eeeb7	2021-05-22 03:24:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:24:26.852+03	2021-05-22 03:24:26.86+03	
9968c031-f321-11fa-a9ae-fc4f741b1862	2021-05-22 03:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:24:47.853+03	2021-05-22 03:24:47.861+03	
80d2368a-c31c-35c1-4949-2163a4ab2ba0	2021-05-22 03:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:25:08.852+03	2021-05-22 03:25:08.859+03	
28bd1daf-8ac6-2153-e761-4f4e57aa8cfc	2021-05-22 03:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:25:28.852+03	2021-05-22 03:25:28.87+03	
423e3e3d-da35-4ce2-e46c-afa4fe091936	2021-05-22 03:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:25:48.853+03	2021-05-22 03:25:48.86+03	
f3298e8a-fdf3-3a9d-0097-c545417e83f3	2021-05-22 03:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:26:09.853+03	2021-05-22 03:26:09.859+03	
90ea89f0-4aa9-212a-a9e8-afc9113ff891	2021-05-22 03:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:26:30.853+03	2021-05-22 03:26:30.859+03	
593cab1f-2f15-864a-f21b-05b9b2d04d6a	2021-05-22 03:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:26:52.852+03	2021-05-22 03:26:52.859+03	
b8f2ac80-d429-21be-09dd-9ff8f0cd1cdd	2021-05-22 03:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:27:12.853+03	2021-05-22 03:27:12.86+03	
a0014b0d-525e-96c7-1879-e41004122bee	2021-05-22 03:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:27:33.853+03	2021-05-22 03:27:33.865+03	
dec831d2-c386-cc25-a7d9-70a16657ba55	2021-05-22 03:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:27:53.853+03	2021-05-22 03:27:53.86+03	
c55b73e1-21ea-06f0-3d10-31024fe5f5c9	2021-05-22 03:28:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:28:14.853+03	2021-05-22 03:28:14.859+03	
4d506726-715a-18b7-8159-b996ff1d9d12	2021-05-22 03:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:28:34.853+03	2021-05-22 03:28:34.87+03	
7b367001-7f28-ba7e-d29f-30529d8ba47b	2021-05-22 03:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:28:54.853+03	2021-05-22 03:28:54.861+03	
dc1dca74-cc26-d248-9cb9-73f57887d47b	2021-05-22 03:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:29:14.853+03	2021-05-22 03:29:14.859+03	
7cb2dbb6-0101-0ed1-74ec-e556e97adb21	2021-05-22 03:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:29:35.852+03	2021-05-22 03:29:35.866+03	
3c431e75-0178-1c3f-55a4-84212e826463	2021-05-22 03:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:29:55.853+03	2021-05-22 03:29:55.859+03	
f3257a8b-4664-d6ea-d224-a915ab3ce1ec	2021-05-22 03:30:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:30:06.853+03	2021-05-22 03:30:06.861+03	
034ff926-3522-6f2a-297c-088ada6ad28c	2021-05-22 03:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:30:27.853+03	2021-05-22 03:30:27.86+03	
e11dc9b2-a6aa-1baa-6759-b34ba1c9bc34	2021-05-22 03:30:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:30:49.852+03	2021-05-22 03:30:49.86+03	
1a2eee5a-c28d-b8f0-7911-e97c7ce77f43	2021-05-22 03:31:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:31:09.853+03	2021-05-22 03:31:09.859+03	
2b7192fd-d78b-5bc3-032c-e43d02e2a833	2021-05-22 03:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:31:30.853+03	2021-05-22 03:31:30.861+03	
44aea6b4-5dec-1557-7348-fd13c5e3ac58	2021-05-22 03:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:31:50.853+03	2021-05-22 03:31:50.86+03	
23e7e219-1703-e5b8-92b4-77917d08a910	2021-05-22 03:32:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:32:11.852+03	2021-05-22 03:32:11.858+03	
cbc8882f-3905-d6ef-5101-f5e8c61318a2	2021-05-22 03:32:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:32:31.852+03	2021-05-22 03:32:31.859+03	
c33bd85b-0905-fd00-39d0-5820eb1461c8	2021-05-22 03:32:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:32:52.852+03	2021-05-22 03:32:52.859+03	
7a71845c-b9d3-10a5-2f3f-9dcffe5b3d48	2021-05-22 03:33:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:33:12.853+03	2021-05-22 03:33:12.859+03	
8fa9f868-dba3-6855-55ad-9580c905471d	2021-05-22 03:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:33:34.852+03	2021-05-22 03:33:34.88+03	
7bf77b96-eeac-94e4-9973-bd3abd83dd41	2021-05-22 03:33:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:33:54.852+03	2021-05-22 03:33:54.859+03	
4d9f2612-8db4-ff46-bc8e-156f11185b1c	2021-05-22 03:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:34:14.853+03	2021-05-22 03:34:14.869+03	
c34f0497-86f7-fd5d-477f-39b5b7ae6775	2021-05-22 03:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:34:35.852+03	2021-05-22 03:34:35.86+03	
17deb70f-0109-fe12-5918-4c86c88f7f55	2021-05-22 03:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:34:55.853+03	2021-05-22 03:34:55.871+03	
8cdbf94b-aa04-3251-cc73-4f1bd658a388	2021-05-22 03:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:35:15.853+03	2021-05-22 03:35:15.86+03	
248fe8bd-e4f7-0107-927d-295f563666b8	2021-05-22 03:35:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:35:36.852+03	2021-05-22 03:35:36.859+03	
87ceb14a-16c5-0388-019c-dde3d8b836b3	2021-05-22 03:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:35:56.853+03	2021-05-22 03:35:56.86+03	
68e8636e-870e-7ff1-0e5f-8baec86561aa	2021-05-22 03:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:36:16.853+03	2021-05-22 03:36:16.86+03	
e8416799-baeb-5084-6e0b-1805e3ecb74d	2021-05-22 03:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:36:36.853+03	2021-05-22 03:36:36.873+03	
60335def-e0c4-570b-9cbd-447c328b0850	2021-05-22 03:36:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:36:57.853+03	2021-05-22 03:36:57.863+03	
3b0d43cf-6c8e-3a1c-bb04-de515b4a9be7	2021-05-22 03:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:37:17.853+03	2021-05-22 03:37:17.862+03	
9c2467e6-0171-55ef-18f1-430c2cc95c9d	2021-05-22 03:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:37:38.853+03	2021-05-22 03:37:38.865+03	
8fdb06ea-f2a9-dd18-a96f-8039998909d3	2021-05-22 03:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:37:58.853+03	2021-05-22 03:37:58.875+03	
964eb803-a68b-2154-7354-9075ce0e995b	2021-05-22 03:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:38:19.853+03	2021-05-22 03:38:19.909+03	
d4628092-5d8b-d8f2-0439-fd3bac8d99b1	2021-05-22 03:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:38:40.853+03	2021-05-22 03:38:40.861+03	
b53e2233-ad0c-5b33-489c-f1b58dbc2127	2021-05-22 03:39:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:39:01.853+03	2021-05-22 03:39:01.861+03	
5cf92813-bd70-bd17-4beb-ccab67530041	2021-05-22 03:18:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:18:06.853+03	2021-05-22 03:18:06.86+03	
830d40bd-c16e-6111-7284-bc9f5bcfb01d	2021-05-22 03:18:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:18:26.854+03	2021-05-22 03:18:26.915+03	
57826373-0685-48c2-ef1b-c4ab5d51ac9b	2021-05-22 03:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:18:48.852+03	2021-05-22 03:18:48.859+03	
412c3e8c-ac2b-d710-3f0e-a3f8e09e2136	2021-05-22 03:19:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:19:09.853+03	2021-05-22 03:19:09.861+03	
609f713a-9601-3a51-4abc-056ce87c67d5	2021-05-22 03:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:19:29.853+03	2021-05-22 03:19:29.862+03	
ed9438a9-0e1c-5795-93c4-5aa812d9c984	2021-05-22 03:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:19:50.852+03	2021-05-22 03:19:50.859+03	
9af5b70b-24d4-e280-47a3-4513185e8f97	2021-05-22 03:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 03:20:00.852+03	2021-05-22 03:20:00.868+03	ERROR
904c4bd5-3d1a-d025-8308-f8fa8f005d14	2021-05-22 03:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:20:10.853+03	2021-05-22 03:20:10.859+03	
b79226f1-4735-6968-2895-f296c42f227e	2021-05-22 03:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:20:30.853+03	2021-05-22 03:20:30.86+03	
1e1cbd87-ca29-6e22-a6f2-bbeb3bc3fe05	2021-05-22 03:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:20:50.853+03	2021-05-22 03:20:50.859+03	
48889b61-a071-f304-05b4-d961b1b9ba87	2021-05-22 03:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:21:10.853+03	2021-05-22 03:21:10.859+03	
e60119c0-ba5a-84e3-e45e-ff1bbdc1e5d2	2021-05-22 03:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:21:32.852+03	2021-05-22 03:21:32.859+03	
79486aad-901c-2aa7-964d-b55735a49c4f	2021-05-22 03:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:21:52.853+03	2021-05-22 03:21:52.86+03	
220fb34b-53dc-b6e3-3a43-349f089d6112	2021-05-22 03:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:22:12.853+03	2021-05-22 03:22:12.86+03	
002a5827-35d0-0614-7cc3-3bc261927c6a	2021-05-22 03:22:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:22:33.852+03	2021-05-22 03:22:33.859+03	
2da98489-fda6-9652-e268-4e1fb65d1e0b	2021-05-22 03:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:22:53.852+03	2021-05-22 03:22:53.859+03	
214320c9-4890-7110-e630-65bf050706f3	2021-05-22 03:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:23:13.853+03	2021-05-22 03:23:13.86+03	
abbb9dd9-293a-12fa-65af-38d0bb6be8e7	2021-05-22 03:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:23:34.853+03	2021-05-22 03:23:34.86+03	
792b1bf4-896b-4a2a-ca8f-599f185b9624	2021-05-22 03:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:23:55.852+03	2021-05-22 03:23:55.873+03	
9e48a28a-12bd-501d-a47d-3d97d2e6ceed	2021-05-22 03:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:24:15.853+03	2021-05-22 03:24:15.86+03	
0af2c056-5d83-313f-d5cf-3d6b6e3ab630	2021-05-22 03:24:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:24:36.854+03	2021-05-22 03:24:36.86+03	
1c6ed44f-ad2a-ee7f-9e09-f3296c651a31	2021-05-22 03:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:24:58.852+03	2021-05-22 03:24:58.859+03	
c7204442-ded4-0d6e-fdf7-046b49e72738	2021-05-22 03:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:25:18.852+03	2021-05-22 03:25:18.862+03	
9099e459-0499-90ef-d20e-2bb6d25fb00e	2021-05-22 03:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:25:38.852+03	2021-05-22 03:25:38.861+03	
3ddb2d73-5c1a-167b-1210-1bc1ebf3c0bb	2021-05-22 03:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:25:58.853+03	2021-05-22 03:25:58.86+03	
0ebb4955-793d-0505-a30e-6b34aae24543	2021-05-22 03:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:26:19.853+03	2021-05-22 03:26:19.861+03	
1bdf37ca-b910-3357-fce8-996628538989	2021-05-22 03:26:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:26:41.854+03	2021-05-22 03:26:41.86+03	
29147ec3-d547-a989-3753-6d9e37676785	2021-05-22 03:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:27:02.853+03	2021-05-22 03:27:02.86+03	
b239476d-43a0-7046-bc2f-80ad32ac97de	2021-05-22 03:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:27:22.853+03	2021-05-22 03:27:22.859+03	
34c321fd-b165-ca60-dc42-fba91c73acb7	2021-05-22 03:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:27:43.853+03	2021-05-22 03:27:43.861+03	
96a53bb2-0ef5-4173-2eb5-c1e051b5e109	2021-05-22 03:28:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:28:04.852+03	2021-05-22 03:28:04.858+03	
41501f96-2a1d-f939-f46d-f1221ad230c3	2021-05-22 03:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:28:24.853+03	2021-05-22 03:28:24.859+03	
9bf1f6f0-8549-bb0d-9219-300b26ad5fc1	2021-05-22 03:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:28:44.853+03	2021-05-22 03:28:44.86+03	
37dc0745-e1fd-3868-96e8-556e90f12e5e	2021-05-22 03:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:29:04.853+03	2021-05-22 03:29:04.868+03	
3fc35850-a293-e56c-c707-96d7695b5a92	2021-05-22 03:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:29:24.853+03	2021-05-22 03:29:24.861+03	
42b5c707-753d-4e5c-0c94-2d3f82b37c33	2021-05-22 03:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:29:45.853+03	2021-05-22 03:29:45.868+03	
3dc3fb63-3f5a-a116-b5a3-a97c3e49ac29	2021-05-22 03:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 03:30:00.853+03	2021-05-22 03:30:00.866+03	ERROR
fe551f3d-58c1-b2fa-f550-29b04ae66537	2021-05-22 03:30:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:30:16.854+03	2021-05-22 03:30:16.862+03	
58c89075-2531-08ec-ef28-2d4c653135ef	2021-05-22 03:30:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:30:38.853+03	2021-05-22 03:30:38.859+03	
995b4cad-bdc0-6dce-b253-e2ca2cacf7d4	2021-05-22 03:30:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:30:59.852+03	2021-05-22 03:30:59.859+03	
c755705a-f9d3-479b-2df6-7cc02923e28d	2021-05-22 03:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:31:20.853+03	2021-05-22 03:31:20.882+03	
8a1b6f70-e045-c716-4f7f-382134e8fa2f	2021-05-22 03:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:31:40.853+03	2021-05-22 03:31:40.859+03	
2d7f1167-dfe5-afac-e8f3-34494596dbfb	2021-05-22 03:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:32:00.853+03	2021-05-22 03:32:00.862+03	
aee38e8f-6a35-6652-82d7-9dcf8ea5b24b	2021-05-22 03:32:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:32:21.852+03	2021-05-22 03:32:21.859+03	
9285eb34-4283-32be-af72-ac05f39a8129	2021-05-22 03:32:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:32:41.853+03	2021-05-22 03:32:41.859+03	
5fcfb00c-d16a-f286-1e8f-658da37c7814	2021-05-22 03:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:33:02.853+03	2021-05-22 03:33:02.859+03	
eded202e-bb25-aa9d-738d-68508953fe0e	2021-05-22 03:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:33:23.853+03	2021-05-22 03:33:23.861+03	
efd67732-5bec-4f06-c4c7-33a09c0a7eb7	2021-05-22 03:33:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:33:44.852+03	2021-05-22 03:33:44.858+03	
1d894a96-c45e-8ce3-e980-a659f25d6a1c	2021-05-22 03:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:34:04.853+03	2021-05-22 03:34:04.868+03	
ba9821be-672a-cdc0-2955-9aaabd746d94	2021-05-22 03:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:34:24.853+03	2021-05-22 03:34:24.86+03	
a4f6d40d-172f-e5e8-c268-9845b51b7efe	2021-05-22 03:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:34:45.853+03	2021-05-22 03:34:45.86+03	
905e62bc-a3f7-5064-4c4e-743270f6e0b4	2021-05-22 03:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:35:05.853+03	2021-05-22 03:35:05.859+03	
be416633-26e8-24a3-3116-9335911e4589	2021-05-22 03:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:35:25.853+03	2021-05-22 03:35:25.86+03	
2ed16217-2c41-69be-92cc-5ecce3f95dd3	2021-05-22 03:35:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:35:46.852+03	2021-05-22 03:35:46.859+03	
b7829b60-7546-aea9-a0cf-9a667e4dedd9	2021-05-22 03:36:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:36:06.853+03	2021-05-22 03:36:06.862+03	
6552176c-8fa6-dea5-4e55-cd3303cd7c7a	2021-05-22 03:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:36:26.853+03	2021-05-22 03:36:26.863+03	
f086ae87-d812-1f0f-f05e-73c652c91213	2021-05-22 03:36:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:36:46.854+03	2021-05-22 03:36:46.863+03	
e295bed9-1050-07ef-0d99-4a0b33b33c0e	2021-05-22 03:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:37:07.853+03	2021-05-22 03:37:07.863+03	
24e83b0a-2d89-c615-2e4c-38126eb495fb	2021-05-22 03:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:37:27.853+03	2021-05-22 03:37:27.86+03	
07b0d423-b8b9-abde-eba1-a9815ae26e92	2021-05-22 03:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:37:48.853+03	2021-05-22 03:37:48.867+03	
14de6803-da69-10ca-206e-ce86754cf5c6	2021-05-22 03:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:38:08.853+03	2021-05-22 03:38:08.91+03	
7eb0eae8-0fbb-8141-5b1f-74b1334f1ca8	2021-05-22 03:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:38:30.852+03	2021-05-22 03:38:30.859+03	
65d38872-f9f8-e7bb-dd27-50d2d54118f7	2021-05-22 03:38:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:38:51.852+03	2021-05-22 03:38:51.859+03	
b6b0184d-06d0-3245-cffd-1b7ed5880041	2021-05-22 03:39:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:39:11.854+03	2021-05-22 03:39:11.861+03	
c149b247-0b96-26a2-6cfc-869ddde592e0	2021-05-22 03:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:39:32.853+03	2021-05-22 03:39:32.861+03	
66e79906-9560-1d4c-61df-691c9760349c	2021-05-22 03:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 03:40:00.853+03	2021-05-22 03:40:00.858+03	ERROR
928cd9e5-0d76-0674-5094-094263858a71	2021-05-22 03:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:40:12.853+03	2021-05-22 03:40:12.863+03	
771bc588-18f1-06e0-2948-cbdcf07669d5	2021-05-22 03:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:40:32.853+03	2021-05-22 03:40:32.861+03	
1fab9df8-b3b8-9b0f-98d3-8959ba980e32	2021-05-22 03:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:40:52.853+03	2021-05-22 03:40:52.861+03	
95a93efc-b129-91e6-2a08-4b3ae1d2f021	2021-05-22 03:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:41:12.853+03	2021-05-22 03:41:12.862+03	
d6f5e86f-0d2a-e55c-3fcf-2015aa2478ae	2021-05-22 03:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:41:32.853+03	2021-05-22 03:41:32.86+03	
7bcc1e80-7f0b-fdcf-3d93-3b465d4e37b3	2021-05-22 03:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:41:52.853+03	2021-05-22 03:41:52.861+03	
b1d71b73-5e5e-f9d3-cc20-ee6b8cbaf18f	2021-05-22 03:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:42:12.853+03	2021-05-22 03:42:12.863+03	
3ae8255a-22ca-ab4a-1b33-5c199c67b9af	2021-05-22 03:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:42:33.853+03	2021-05-22 03:42:33.861+03	
86db8e37-3cf9-45f3-9586-532be6956206	2021-05-22 03:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:42:54.853+03	2021-05-22 03:42:54.859+03	
6d0c7a80-5c43-992e-502e-fffd930fb662	2021-05-22 03:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:43:14.853+03	2021-05-22 03:43:14.876+03	
8e55f205-1fbf-05e7-b0c7-2abd0e3f5e6c	2021-05-22 03:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:43:35.853+03	2021-05-22 03:43:35.863+03	
886ae5b8-794e-760d-a472-3c3fe6352350	2021-05-22 03:43:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:43:56.854+03	2021-05-22 03:43:56.863+03	
c23063e1-2836-569a-6e6e-c9f949306658	2021-05-22 03:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:44:17.853+03	2021-05-22 03:44:17.862+03	
c8de92d5-79df-787d-0241-d2e36d1e95b1	2021-05-22 03:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:44:38.852+03	2021-05-22 03:44:38.86+03	
e4bf6fdd-3276-4615-a687-c0828ff37395	2021-05-22 03:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:44:59.852+03	2021-05-22 03:44:59.859+03	
d86f51b0-0ef5-d93b-74c2-a64489a63e10	2021-05-22 03:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:45:20.852+03	2021-05-22 03:45:20.859+03	
c982720d-04cb-c915-b9c2-1379033ca81a	2021-05-22 03:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:45:40.853+03	2021-05-22 03:45:40.859+03	
4cc13301-a2c1-819f-993b-193a1f877d7f	2021-05-22 03:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:46:00.853+03	2021-05-22 03:46:00.869+03	
a6dbb51a-f029-7699-2a9a-b1d5a9f52bfe	2021-05-22 03:46:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:46:20.853+03	2021-05-22 03:46:20.859+03	
b3256309-090f-8f8d-aeec-326aa3caab4e	2021-05-22 03:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:46:40.853+03	2021-05-22 03:46:40.86+03	
86519761-f631-ab72-9284-17fb26007274	2021-05-22 03:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:47:00.853+03	2021-05-22 03:47:00.86+03	
6b12cdbd-9fd4-c2ac-82c6-7ba6158b3c99	2021-05-22 03:47:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:47:21.854+03	2021-05-22 03:47:21.86+03	
c9d1de2a-b9d9-f2d6-ef7c-7704a09e756c	2021-05-22 03:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:47:42.853+03	2021-05-22 03:47:42.86+03	
53aa28ed-69dd-55ab-ac0b-0dbfe48ebd1f	2021-05-22 03:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:48:03.853+03	2021-05-22 03:48:03.859+03	
da78e5e8-a690-9943-c969-9ddc688fda71	2021-05-22 03:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:48:23.853+03	2021-05-22 03:48:23.861+03	
38d5ddb8-92b8-e4a1-81ec-24903c79d4be	2021-05-22 03:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:48:44.853+03	2021-05-22 03:48:44.861+03	
1d442a5d-5348-85f8-28fa-3141222d842c	2021-05-22 03:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:49:05.853+03	2021-05-22 03:49:05.862+03	
c4a2664c-55a1-e22a-d5d9-099ffbb102a8	2021-05-22 03:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:49:25.853+03	2021-05-22 03:49:25.863+03	
e95512c8-d24a-9022-fff7-407f8d93bf15	2021-05-22 03:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:49:45.853+03	2021-05-22 03:49:45.86+03	
a20ffacd-952f-6aed-95ff-47afc426e66e	2021-05-22 03:50:00.86	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 03:50:00.859+03	2021-05-22 03:50:00.868+03	ERROR
5ed7ffd7-2e41-9018-e6aa-34d0f4df0eac	2021-05-22 03:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:50:15.853+03	2021-05-22 03:50:15.861+03	
a1ac61b4-e9dc-ee7b-ed09-0f335b4a1d48	2021-05-22 03:50:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:50:35.853+03	2021-05-22 03:50:35.86+03	
2cdf7fbf-4f88-286d-ef87-86a57f79fb07	2021-05-22 03:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:50:55.853+03	2021-05-22 03:50:55.861+03	
91d98338-3bb5-8dea-9ded-0640b937597b	2021-05-22 03:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:51:15.853+03	2021-05-22 03:51:15.872+03	
1c47dee6-3d66-e9e9-7102-1c2361b34efd	2021-05-22 03:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:51:35.853+03	2021-05-22 03:51:35.864+03	
69488755-28df-d1d0-fa85-0425d398e0f7	2021-05-22 03:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:51:55.853+03	2021-05-22 03:51:55.867+03	
28024ec7-6cc4-90be-95c0-da7e9a60eea0	2021-05-22 03:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:52:17.853+03	2021-05-22 03:52:17.86+03	
de79c6d8-ec9c-4b5f-42c1-36c1478907a3	2021-05-22 03:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:52:37.853+03	2021-05-22 03:52:37.863+03	
8122d2e1-36c6-c530-8db1-83d1544a4c97	2021-05-22 03:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:52:57.853+03	2021-05-22 03:52:57.859+03	
111753c5-67b9-0bfe-ab90-389aa2c7299c	2021-05-22 03:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:53:19.852+03	2021-05-22 03:53:19.861+03	
9d3d67d3-b7fe-07ff-ef88-559da447dc82	2021-05-22 03:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:53:39.853+03	2021-05-22 03:53:39.859+03	
076f0ea8-72fd-6eb5-967b-e5281d7ab55e	2021-05-22 03:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:54:00.852+03	2021-05-22 03:54:00.859+03	
fd161660-241c-26f0-9af3-fd52bff1f5b9	2021-05-22 03:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:54:20.852+03	2021-05-22 03:54:20.859+03	
400751bc-eba2-7e60-49e3-92030c273047	2021-05-22 03:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:54:40.853+03	2021-05-22 03:54:40.86+03	
238be872-4882-99f7-be4e-b3b28bc152c1	2021-05-22 03:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:55:00.853+03	2021-05-22 03:55:00.863+03	
0f55f7b2-4a74-31e5-35bd-dc45d1ac5848	2021-05-22 03:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:55:22.852+03	2021-05-22 03:55:22.859+03	
62a7a885-1406-6dfe-5a33-f67e027c9e10	2021-05-22 03:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:55:42.853+03	2021-05-22 03:55:42.86+03	
1d805be0-14ff-23df-c67f-6776974489d0	2021-05-22 03:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:56:02.853+03	2021-05-22 03:56:02.859+03	
c7c0b1f1-58f3-ad24-54bf-b622efb2d756	2021-05-22 03:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:56:22.853+03	2021-05-22 03:56:22.86+03	
d3ce5934-8637-9298-b120-90214f71314b	2021-05-22 03:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:56:43.852+03	2021-05-22 03:56:43.859+03	
105e1f75-0ff1-dfd9-8e67-5405eb192f5c	2021-05-22 03:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:57:04.852+03	2021-05-22 03:57:04.859+03	
5632b682-8891-4b24-23e9-cfce05667c1f	2021-05-22 03:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:57:24.853+03	2021-05-22 03:57:24.859+03	
b6ab75cf-7ec3-8475-42b1-0b38ff9fd6e5	2021-05-22 03:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:57:44.853+03	2021-05-22 03:57:44.859+03	
7fef5c8f-7ac0-d474-c5d4-feedefc905fb	2021-05-22 03:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:58:05.853+03	2021-05-22 03:58:05.86+03	
f70fef7e-8788-e23e-5c79-3daa1de39486	2021-05-22 03:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:58:25.853+03	2021-05-22 03:58:25.859+03	
625af568-66aa-481a-1eae-35e9a4d0c93c	2021-05-22 03:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:58:46.852+03	2021-05-22 03:58:46.859+03	
761fa220-b9cf-01c8-386a-7579935a67cc	2021-05-22 03:59:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:59:06.853+03	2021-05-22 03:59:06.86+03	
0402d35f-0765-2c53-7980-3f786af39696	2021-05-22 03:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:59:27.853+03	2021-05-22 03:59:27.861+03	
c48365e4-0294-7f3b-4563-20bfc4b4bdca	2021-05-22 03:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:59:48.852+03	2021-05-22 03:59:48.858+03	
e28e8a6d-c735-b3e5-c3c0-b4080da7fbdb	2021-05-22 04:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 04:00:00.853+03	2021-05-22 04:00:00.866+03	ERROR
869ee994-85e8-108b-3be1-ea3940e5de76	2021-05-22 03:39:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:39:21.854+03	2021-05-22 03:39:21.864+03	
4b6d2d8a-0130-b781-b7eb-8da86ae42f2c	2021-05-22 03:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:39:42.853+03	2021-05-22 03:39:42.859+03	
d10e54b7-b760-30a2-ae12-b86c00ee2ca2	2021-05-22 03:39:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:39:52.853+03	2021-05-22 03:39:52.861+03	
ebce481a-9fbf-fef1-5ec0-2e75dea86c31	2021-05-22 03:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:40:02.853+03	2021-05-22 03:40:02.864+03	
87087aae-3ff4-75d3-a30e-1fec7ce6154f	2021-05-22 03:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:40:22.853+03	2021-05-22 03:40:22.874+03	
e322d94d-b31b-f6eb-1e3f-6fd11b07a0eb	2021-05-22 03:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:40:42.853+03	2021-05-22 03:40:42.861+03	
38e2e68f-5058-46f7-a04b-aa25e6ebe843	2021-05-22 03:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:41:02.853+03	2021-05-22 03:41:02.863+03	
409b73b5-b167-72bf-d0d6-c0e9afefbffb	2021-05-22 03:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:41:22.853+03	2021-05-22 03:41:22.861+03	
cd8e1990-7010-7c90-8ca1-17ad2c4dc6fc	2021-05-22 03:41:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:41:42.853+03	2021-05-22 03:41:42.861+03	
d22eff28-7b57-0b2d-4e7b-fd6858b414b9	2021-05-22 03:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:42:02.853+03	2021-05-22 03:42:02.86+03	
226d26fe-7a0e-b2d9-5d21-07482227b661	2021-05-22 03:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:42:23.853+03	2021-05-22 03:42:23.862+03	
e2c89f53-cc36-7e4d-8d9c-2ce17b18c5be	2021-05-22 03:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:42:44.852+03	2021-05-22 03:42:44.859+03	
2ee9bb88-ac22-386a-6328-a51e206c8a27	2021-05-22 03:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:43:04.853+03	2021-05-22 03:43:04.86+03	
c9f3f3c9-f405-e5ee-c5e7-6d49d052cc80	2021-05-22 03:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:43:25.853+03	2021-05-22 03:43:25.859+03	
1ebe1e91-a9f6-9a27-f95d-5fe1057b6baa	2021-05-22 03:43:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:43:46.853+03	2021-05-22 03:43:46.861+03	
4dc3c6f1-03f0-455d-0323-7ccc97fe4d3f	2021-05-22 03:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:44:07.853+03	2021-05-22 03:44:07.861+03	
8f4716fa-abb4-b537-0c61-1c7c34ef2e34	2021-05-22 03:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:44:27.853+03	2021-05-22 03:44:27.862+03	
d28de476-db5f-247c-a768-652585edf1f2	2021-05-22 03:44:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:44:48.853+03	2021-05-22 03:44:48.875+03	
7a13d27f-cf6c-ae80-9994-c4ae2cbd8552	2021-05-22 03:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:45:09.853+03	2021-05-22 03:45:09.859+03	
b1502a13-7872-4612-ae5d-b7e3f2c809d6	2021-05-22 03:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:45:30.853+03	2021-05-22 03:45:30.862+03	
52e1f5d5-8b34-bc8f-b059-1c7b37fc40b6	2021-05-22 03:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:45:50.853+03	2021-05-22 03:45:50.872+03	
84269d03-0e7f-4b2d-3200-8e04db5e6ccd	2021-05-22 03:46:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:46:10.853+03	2021-05-22 03:46:10.859+03	
73708491-aaa8-ef70-6045-d0978dde9a3e	2021-05-22 03:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:46:30.853+03	2021-05-22 03:46:30.861+03	
2b8550e4-59d0-38dc-30d0-cd9e82862700	2021-05-22 03:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:46:50.853+03	2021-05-22 03:46:50.859+03	
663e3564-f898-615a-e308-601386ddda72	2021-05-22 03:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:47:10.853+03	2021-05-22 03:47:10.867+03	
7766a778-1950-d88a-0ad7-1f6ea21ecc99	2021-05-22 03:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:47:32.853+03	2021-05-22 03:47:32.861+03	
56172b0a-1d55-a870-df56-aab395bb5497	2021-05-22 03:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:47:52.853+03	2021-05-22 03:47:52.858+03	
9709692e-89f7-f4cc-58b6-c91c70412835	2021-05-22 03:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:48:13.853+03	2021-05-22 03:48:13.862+03	
0e43bc0b-f242-629d-680f-70c318e065e6	2021-05-22 03:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:48:34.852+03	2021-05-22 03:48:34.872+03	
d5a4ab94-efe5-903f-6501-a96ee8691682	2021-05-22 03:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:48:55.853+03	2021-05-22 03:48:55.86+03	
dbf7418c-2133-dbb8-4dd9-ab55b35d56a7	2021-05-22 03:49:15.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:49:15.853+03	2021-05-22 03:49:15.864+03	
c3b11698-5bf3-5e5d-0055-c9de67b75d0b	2021-05-22 03:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:49:35.853+03	2021-05-22 03:49:35.861+03	
ac0d3cba-c368-a58f-ac38-23469fedc69b	2021-05-22 03:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:49:55.853+03	2021-05-22 03:49:55.859+03	
be149d62-3c45-13c3-df30-7491a73603ee	2021-05-22 03:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:50:05.853+03	2021-05-22 03:50:05.875+03	
1f728f60-490c-0372-a26b-baa35fd7255a	2021-05-22 03:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:50:25.853+03	2021-05-22 03:50:25.862+03	
e6992686-6eb5-b976-4994-626ab03bb690	2021-05-22 03:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:50:45.853+03	2021-05-22 03:50:45.869+03	
e5de103a-661c-bae0-fa0a-e117dfa1571c	2021-05-22 03:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:51:05.853+03	2021-05-22 03:51:05.859+03	
b1fb4985-d593-fe02-ed26-79e753d3a7ef	2021-05-22 03:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:51:25.853+03	2021-05-22 03:51:25.861+03	
2bfbef18-83af-e6ec-efed-47026155e2f2	2021-05-22 03:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:51:45.853+03	2021-05-22 03:51:45.862+03	
4f8778d8-19a0-132f-5375-46df54d35229	2021-05-22 03:52:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:52:06.854+03	2021-05-22 03:52:06.864+03	
b41e2ef7-340d-74b5-4b23-8fa5da7729e5	2021-05-22 03:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:52:27.853+03	2021-05-22 03:52:27.873+03	
d7fa940e-4eb8-4520-6dd6-cd08752b9609	2021-05-22 03:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:52:47.853+03	2021-05-22 03:52:47.862+03	
7012c176-64e8-2d08-d226-c40ccea73711	2021-05-22 03:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:53:08.853+03	2021-05-22 03:53:08.859+03	
26b1fb12-25f7-52c6-1638-e8d22b8bfca2	2021-05-22 03:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:53:29.853+03	2021-05-22 03:53:29.866+03	
c3bf3738-52fb-96ea-1fb5-3167f92b6b82	2021-05-22 03:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:53:50.852+03	2021-05-22 03:53:50.862+03	
b975e018-6fcb-027b-ad2d-f973447b6fea	2021-05-22 03:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:54:10.852+03	2021-05-22 03:54:10.858+03	
d760a742-5750-c5d5-8aa6-8bed86138233	2021-05-22 03:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:54:30.853+03	2021-05-22 03:54:30.875+03	
b58e6283-f67c-4a32-5f24-9ee5b13f41fb	2021-05-22 03:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:54:50.853+03	2021-05-22 03:54:50.859+03	
87d826c3-d99a-3eac-ed68-2fa6c8464777	2021-05-22 03:55:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:55:11.853+03	2021-05-22 03:55:11.862+03	
cf3c2ae0-bbb9-f213-393c-81d4b42db1e0	2021-05-22 03:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:55:32.853+03	2021-05-22 03:55:32.859+03	
a623e2e2-f272-7b34-6714-50ad570cdd7f	2021-05-22 03:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:55:52.853+03	2021-05-22 03:55:52.859+03	
dcd1ea0b-6148-d4aa-e55c-43c3eb495787	2021-05-22 03:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:56:12.853+03	2021-05-22 03:56:12.86+03	
9f3ae64d-d276-58b3-5152-28200dacb439	2021-05-22 03:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:56:32.853+03	2021-05-22 03:56:32.862+03	
db6f73e4-73f5-8dda-8fab-5073c8403859	2021-05-22 03:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:56:53.853+03	2021-05-22 03:56:53.859+03	
1c89d942-c47a-439c-94d0-761123f8bb8a	2021-05-22 03:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:57:14.853+03	2021-05-22 03:57:14.859+03	
42ae6da2-9874-2854-56f1-ea3bb78c6b2a	2021-05-22 03:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:57:34.853+03	2021-05-22 03:57:34.859+03	
6215f4b8-393b-8489-0952-6390fc5e6691	2021-05-22 03:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:57:55.852+03	2021-05-22 03:57:55.859+03	
b16fb4d4-10ce-3400-5c18-980beff0efe4	2021-05-22 03:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:58:15.853+03	2021-05-22 03:58:15.874+03	
3f824419-f3dc-4768-cd97-48915e452bd8	2021-05-22 03:58:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:58:36.852+03	2021-05-22 03:58:36.859+03	
6d7c1c32-743c-361b-50d9-48d26ff0b354	2021-05-22 03:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:58:56.853+03	2021-05-22 03:58:56.859+03	
b58147a9-0df3-95d9-99a3-8fef18cc837a	2021-05-22 03:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:59:17.853+03	2021-05-22 03:59:17.861+03	
830e6309-0bf8-fa0d-31d8-d6a6bb597508	2021-05-22 03:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:59:38.852+03	2021-05-22 03:59:38.873+03	
6476ddcd-5484-3d36-07fd-ca6eaa2d728e	2021-05-22 03:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 03:59:58.853+03	2021-05-22 03:59:58.859+03	
51b692b5-c083-f48a-5c1d-7a9ef6d94971	2021-05-22 04:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:00:09.853+03	2021-05-22 04:00:09.868+03	
84f2ca11-563e-c1be-6674-3522342e0dff	2021-05-22 04:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:00:29.853+03	2021-05-22 04:00:29.861+03	
52bd2c73-cf5d-ec44-cb04-8c2aaffd811b	2021-05-22 04:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:00:49.853+03	2021-05-22 04:00:49.866+03	
292e061c-ab80-7600-8774-927d5f4986bd	2021-05-22 04:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:01:10.852+03	2021-05-22 04:01:10.859+03	
661bc522-5e10-9246-40c6-2def495426d9	2021-05-22 04:01:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:01:31.853+03	2021-05-22 04:01:31.861+03	
dc8925fe-30ca-e983-c8ad-9f5d8816d64f	2021-05-22 04:01:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:01:51.853+03	2021-05-22 04:01:51.86+03	
08fa3149-0a6e-51d3-534d-0605550db5cc	2021-05-22 04:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:02:11.853+03	2021-05-22 04:02:11.86+03	
6f413e84-e4b5-7c48-9460-de142328544c	2021-05-22 04:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:02:31.853+03	2021-05-22 04:02:31.859+03	
17306d92-7077-1327-ae49-42bb37977a88	2021-05-22 04:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:02:52.852+03	2021-05-22 04:02:52.859+03	
a912b659-86bc-9318-331d-0ae92e70bbf1	2021-05-22 04:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:03:12.853+03	2021-05-22 04:03:12.859+03	
23e34be7-5d67-72c4-52ac-00a768a31226	2021-05-22 04:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:03:32.853+03	2021-05-22 04:03:32.861+03	
b7f6a464-160e-be57-16bd-0594cfa2d666	2021-05-22 04:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:03:52.853+03	2021-05-22 04:03:52.906+03	
ff9132ce-d15a-1410-b323-b2ac17e8ac40	2021-05-22 04:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:04:13.853+03	2021-05-22 04:04:13.86+03	
c1b0e7d0-03fa-5901-1d58-945a272c9ff4	2021-05-22 04:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:04:34.853+03	2021-05-22 04:04:34.862+03	
1c51fb4d-2153-fded-5b45-ea152d5838dc	2021-05-22 04:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:04:55.852+03	2021-05-22 04:04:55.86+03	
c5dc76c6-7c51-c3ad-4d09-970ba19b8f24	2021-05-22 04:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:05:15.853+03	2021-05-22 04:05:15.86+03	
21a27a69-6e6b-f8da-6a12-0e48ff5cbfa6	2021-05-22 04:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:05:36.853+03	2021-05-22 04:05:36.868+03	
b1cf4302-937d-a5e8-7178-ddfaf3ed3a4b	2021-05-22 04:05:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:05:56.853+03	2021-05-22 04:05:56.859+03	
b87d4fd5-59c3-71d6-8fa1-ac42172fdc80	2021-05-22 04:06:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:06:16.854+03	2021-05-22 04:06:16.86+03	
94524250-0e1c-5a14-d318-2fe423ac2b74	2021-05-22 04:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:06:37.853+03	2021-05-22 04:06:37.86+03	
9d2a7899-ac87-0e80-b811-cd02fdae2765	2021-05-22 04:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:06:58.852+03	2021-05-22 04:06:58.859+03	
7cf079fd-b3a0-d347-3e13-707cc86b27ff	2021-05-22 04:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:07:19.853+03	2021-05-22 04:07:19.863+03	
54450e1a-cf97-6577-29f8-0ff927d09706	2021-05-22 04:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:07:39.853+03	2021-05-22 04:07:39.859+03	
325c44a7-82fc-96fe-9125-584c1d4606e3	2021-05-22 04:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:07:59.853+03	2021-05-22 04:07:59.859+03	
0a3bcdaa-c8c7-4b08-dcf9-e32cb94eef0d	2021-05-22 04:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:08:20.852+03	2021-05-22 04:08:20.86+03	
92f8e181-83d6-497d-cb33-b8901bd29a75	2021-05-22 04:08:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:08:41.852+03	2021-05-22 04:08:41.86+03	
a86eb826-628a-4ce3-fa05-79ee74bdbcce	2021-05-22 04:09:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:09:01.853+03	2021-05-22 04:09:01.859+03	
5faf1fff-61cf-9004-7698-64b7957e087d	2021-05-22 04:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:09:22.853+03	2021-05-22 04:09:22.859+03	
01ce050f-12bd-f1f0-bd28-8288c6fb2670	2021-05-22 04:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:09:43.852+03	2021-05-22 04:09:43.861+03	
65d4e26f-977a-8665-c6e6-a21eb7b2f9fd	2021-05-22 04:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 04:10:00.853+03	2021-05-22 04:10:00.858+03	ERROR
be19fe34-d6f5-c759-9265-de635ab9b28c	2021-05-22 04:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:10:13.853+03	2021-05-22 04:10:13.861+03	
83c8032f-f523-16a9-f959-ccf74d3d1a98	2021-05-22 04:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:10:33.853+03	2021-05-22 04:10:33.859+03	
4465b862-3203-a43e-e92b-78b2aefa32a0	2021-05-22 04:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:10:54.853+03	2021-05-22 04:10:54.859+03	
5179bb71-a455-04ca-6545-d6a521a9f328	2021-05-22 04:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:11:14.853+03	2021-05-22 04:11:14.86+03	
d2e9dcf6-9348-2aa3-6a1c-62bcb5363eaf	2021-05-22 04:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:11:34.853+03	2021-05-22 04:11:34.86+03	
78004553-dfe8-c3c4-1f94-67bd75efaec0	2021-05-22 04:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:11:55.853+03	2021-05-22 04:11:55.86+03	
0c2f1f9b-e66e-de42-0944-5b280a0672f1	2021-05-22 04:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:12:15.853+03	2021-05-22 04:12:15.865+03	
2479982d-d584-d376-a1ce-69d7c6caa936	2021-05-22 04:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:12:37.853+03	2021-05-22 04:12:37.862+03	
21fa9cc6-3be1-2e3f-b329-159cb30a25cf	2021-05-22 04:12:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:12:57.853+03	2021-05-22 04:12:57.86+03	
9660847b-5e28-6de1-f180-220e29dde84e	2021-05-22 04:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:13:17.853+03	2021-05-22 04:13:17.861+03	
b5ebd1d3-0ddb-2508-1162-886d266a0b95	2021-05-22 04:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:13:38.852+03	2021-05-22 04:13:38.859+03	
9189f2de-27dc-e55a-1f6a-62a46369a632	2021-05-22 04:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:13:58.853+03	2021-05-22 04:13:58.86+03	
96730480-5370-1803-4ee7-9f8211def7da	2021-05-22 04:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:14:18.853+03	2021-05-22 04:14:18.86+03	
fcc0fabc-bab5-8c9d-0f58-67176a43c58d	2021-05-22 04:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:14:38.853+03	2021-05-22 04:14:38.86+03	
70018f27-12f9-aa09-9a6f-3640307a0535	2021-05-22 04:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:14:59.852+03	2021-05-22 04:14:59.862+03	
c149da09-29c5-5076-7daa-acab728b5984	2021-05-22 04:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:15:20.852+03	2021-05-22 04:15:20.859+03	
2d1fe839-839c-f175-aefe-4fac927d1988	2021-05-22 04:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:15:40.853+03	2021-05-22 04:15:40.86+03	
e0e6b94b-28ee-0937-b9c0-05f0a3ad8937	2021-05-22 04:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:16:02.852+03	2021-05-22 04:16:02.86+03	
a0bf5db0-b867-74c5-5174-288a7c40610a	2021-05-22 04:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:16:23.852+03	2021-05-22 04:16:23.858+03	
78d3d544-ff0c-1d5c-4b57-458a5accb255	2021-05-22 04:16:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:16:43.852+03	2021-05-22 04:16:43.859+03	
d683fd90-d9a9-2d33-7e71-1d1157ba84ce	2021-05-22 04:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:17:03.853+03	2021-05-22 04:17:03.861+03	
388414e1-bf49-af35-6602-6f8a470bda40	2021-05-22 04:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:17:23.853+03	2021-05-22 04:17:23.864+03	
c0c9d8e6-01cc-f98b-170d-aeef10af2a5c	2021-05-22 04:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:17:43.853+03	2021-05-22 04:17:43.86+03	
d10954c0-4401-3289-53db-6bb31c7097a3	2021-05-22 04:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:18:04.853+03	2021-05-22 04:18:04.86+03	
d3c9422b-8c58-0075-9489-62a9be363730	2021-05-22 04:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:18:24.853+03	2021-05-22 04:18:24.859+03	
cedb5a07-f754-6dcb-37f7-059a934dfd5c	2021-05-22 04:18:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:18:45.852+03	2021-05-22 04:18:45.858+03	
2e4930f1-ed0e-bc7e-7e27-b43e084c8a07	2021-05-22 04:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:19:05.853+03	2021-05-22 04:19:05.87+03	
e880c244-0eaa-347e-d3b6-f535ec84f9a0	2021-05-22 04:19:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:19:26.853+03	2021-05-22 04:19:26.86+03	
68cb5ad5-6ed6-dc2c-0c0d-3735ef64f678	2021-05-22 04:19:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:19:47.852+03	2021-05-22 04:19:47.859+03	
1318cd0a-7e48-c7fa-606a-2af546f79d46	2021-05-22 04:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 04:20:00.852+03	2021-05-22 04:20:00.861+03	ERROR
f802e641-b93b-013f-2c2f-400997b9e1e4	2021-05-22 04:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:20:17.853+03	2021-05-22 04:20:17.871+03	
354fcad8-52ba-6097-66be-00c09ed25e36	2021-05-22 04:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:20:37.853+03	2021-05-22 04:20:37.859+03	
11234d2b-018b-69fd-d22e-3a8724e9cf40	2021-05-22 04:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:20:57.853+03	2021-05-22 04:20:57.865+03	
276a7b6d-d306-3341-0557-7ebbf9306be4	2021-05-22 04:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:00:19.853+03	2021-05-22 04:00:19.861+03	
39b6ee2a-bcb7-56e7-84b1-0925cc9fefb4	2021-05-22 04:00:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:00:39.853+03	2021-05-22 04:00:39.869+03	
fd01f1d2-2c77-824f-75ed-6de7fceb87f6	2021-05-22 04:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:00:59.853+03	2021-05-22 04:00:59.867+03	
8a46db2c-c21c-ca5a-8941-894ebac03080	2021-05-22 04:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:01:20.853+03	2021-05-22 04:01:20.863+03	
1082a15d-a95f-cbb4-56d4-22317a4cdd0e	2021-05-22 04:01:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:01:41.853+03	2021-05-22 04:01:41.86+03	
83cd3c46-f2be-07b5-2663-6e6512e30389	2021-05-22 04:02:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:02:01.853+03	2021-05-22 04:02:01.867+03	
82f6e213-96a5-43a9-a02a-5fcbe0cb16cc	2021-05-22 04:02:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:02:21.853+03	2021-05-22 04:02:21.86+03	
dee495ad-304b-5ce8-b5eb-8194650af61d	2021-05-22 04:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:02:41.853+03	2021-05-22 04:02:41.859+03	
cd5c839e-e28e-35bc-21e5-4f89b17b92fd	2021-05-22 04:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:03:02.853+03	2021-05-22 04:03:02.861+03	
eff460fa-a69f-f449-da39-ac0733d320d1	2021-05-22 04:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:03:22.853+03	2021-05-22 04:03:22.861+03	
6474b35e-3fa4-0906-2030-067b84a181b2	2021-05-22 04:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:03:42.853+03	2021-05-22 04:03:42.86+03	
30063575-ed82-36a6-3134-2c3041e504df	2021-05-22 04:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:04:02.853+03	2021-05-22 04:04:02.86+03	
7f11e3b8-7b65-5c10-c375-71d63a8b86b1	2021-05-22 04:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:04:24.853+03	2021-05-22 04:04:24.859+03	
dfe3e419-5599-3447-989e-0563b413c3af	2021-05-22 04:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:04:45.852+03	2021-05-22 04:04:45.859+03	
35e5acbe-106c-b7e0-c2ff-fd40067656ca	2021-05-22 04:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:05:05.853+03	2021-05-22 04:05:05.86+03	
af95d6d6-5413-4b52-08cf-480b846d4d43	2021-05-22 04:05:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:05:26.852+03	2021-05-22 04:05:26.859+03	
10e5d341-d986-ef9b-2373-f0a98ddbdaeb	2021-05-22 04:05:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:05:46.853+03	2021-05-22 04:05:46.859+03	
659fedfc-3d6b-8496-bbc0-493a2ffe8322	2021-05-22 04:06:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:06:06.853+03	2021-05-22 04:06:06.861+03	
ed2fbc41-543f-8c39-278b-0029a0798dc9	2021-05-22 04:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:06:27.853+03	2021-05-22 04:06:27.861+03	
66ad0656-37e3-f45b-a488-e1ba4b6cf3a5	2021-05-22 04:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:06:47.853+03	2021-05-22 04:06:47.859+03	
4a94fcdb-c206-1cd1-8681-9d483ae720ac	2021-05-22 04:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:07:08.853+03	2021-05-22 04:07:08.859+03	
b7f6e4e0-fca4-14d6-1c57-9ee1837c1278	2021-05-22 04:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:07:29.853+03	2021-05-22 04:07:29.871+03	
5cdeefbc-d9c1-8cf9-3445-8e96dc2f91f5	2021-05-22 04:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:07:49.853+03	2021-05-22 04:07:49.859+03	
b7b1c6b8-701b-326d-3227-42b5cf3e3e07	2021-05-22 04:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:08:10.852+03	2021-05-22 04:08:10.858+03	
b6fda437-fbd6-ca3c-204a-c3cf2937ffac	2021-05-22 04:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:08:30.853+03	2021-05-22 04:08:30.86+03	
7df35081-f43d-37d8-90ff-c71f91544eae	2021-05-22 04:08:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:08:51.853+03	2021-05-22 04:08:51.864+03	
3f698d53-f23d-08cb-6c6e-503f64f42c9d	2021-05-22 04:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:09:12.853+03	2021-05-22 04:09:12.86+03	
433022e3-7c0d-392b-e6ac-a9cbfd47fd77	2021-05-22 04:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:09:33.852+03	2021-05-22 04:09:33.872+03	
c05724d0-816a-7351-eabe-646f4cfe0ba8	2021-05-22 04:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:09:53.853+03	2021-05-22 04:09:53.86+03	
264ba3fc-a672-e7ed-84b0-e362b1449886	2021-05-22 04:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:10:03.853+03	2021-05-22 04:10:03.864+03	
de133ff5-1661-a5f7-03fc-7fde2a10205b	2021-05-22 04:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:10:23.853+03	2021-05-22 04:10:23.864+03	
6d25f260-f57f-4a8f-5ebe-bea8599eb648	2021-05-22 04:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:10:43.853+03	2021-05-22 04:10:43.861+03	
dc7dda5b-f119-4996-7725-b9092d5d5ad0	2021-05-22 04:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:11:04.853+03	2021-05-22 04:11:04.868+03	
b10c20db-9971-c36f-6fae-93eac1dd3f86	2021-05-22 04:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:11:24.853+03	2021-05-22 04:11:24.861+03	
d0ed5788-9348-6e0d-3213-562c4ca2520b	2021-05-22 04:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:11:45.853+03	2021-05-22 04:11:45.861+03	
ce7e60c7-1469-f7e1-0806-88f8b985a0e4	2021-05-22 04:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:12:05.853+03	2021-05-22 04:12:05.86+03	
0e99ce11-80a3-342e-1c2c-8b2bc811714a	2021-05-22 04:12:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:12:26.853+03	2021-05-22 04:12:26.871+03	
962a9764-2f9b-da01-80b3-f501e9c0f25a	2021-05-22 04:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:12:47.853+03	2021-05-22 04:12:47.861+03	
48fe1869-f007-cd98-7f56-77100b3f0bb4	2021-05-22 04:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:13:07.853+03	2021-05-22 04:13:07.864+03	
266ff836-1320-5dcd-f770-0c5733dcb6ac	2021-05-22 04:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:13:27.853+03	2021-05-22 04:13:27.86+03	
ee718d3e-c63a-dd30-131c-9dec787f3a41	2021-05-22 04:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:13:48.853+03	2021-05-22 04:13:48.867+03	
0db550fc-ce14-9ce9-50f1-925a1668cd67	2021-05-22 04:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:14:08.853+03	2021-05-22 04:14:08.86+03	
96b376a5-39d6-beac-b2cd-04f94adabd03	2021-05-22 04:14:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:14:28.853+03	2021-05-22 04:14:28.865+03	
1f2d73df-4d95-02bd-3dbd-aa07957ead5d	2021-05-22 04:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:14:49.852+03	2021-05-22 04:14:49.86+03	
bbd54667-73a8-1554-5b81-8ccce4e32792	2021-05-22 04:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:15:09.853+03	2021-05-22 04:15:09.86+03	
5c740ebc-73bd-f51a-eb83-b4e7b6af8b53	2021-05-22 04:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:15:30.852+03	2021-05-22 04:15:30.86+03	
da226cdc-9917-298c-7b5e-8c8681a4f9e2	2021-05-22 04:15:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:15:51.854+03	2021-05-22 04:15:51.862+03	
bb34e55c-2c02-ceff-0703-b5476a66e706	2021-05-22 04:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:16:12.853+03	2021-05-22 04:16:12.86+03	
14162378-1095-f427-495f-b75261ec0db2	2021-05-22 04:16:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:16:33.852+03	2021-05-22 04:16:33.859+03	
117299b8-54ca-c6a7-cdca-466a72c2c226	2021-05-22 04:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:16:53.853+03	2021-05-22 04:16:53.861+03	
370577f0-ad80-aebd-603d-2f498ecd08a3	2021-05-22 04:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:17:13.853+03	2021-05-22 04:17:13.86+03	
effca004-97af-bcf3-5026-b3a92dc27f09	2021-05-22 04:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:17:33.853+03	2021-05-22 04:17:33.861+03	
99e89a13-242e-1bbb-8228-122f7744d031	2021-05-22 04:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:17:54.853+03	2021-05-22 04:17:54.865+03	
bb41402a-c51a-fbeb-ebce-b9ea997d1a49	2021-05-22 04:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:18:14.853+03	2021-05-22 04:18:14.86+03	
d4da26d8-19a9-99bd-bbb4-2beb4650ba42	2021-05-22 04:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:18:34.853+03	2021-05-22 04:18:34.877+03	
a2c60c58-373c-f68b-0e7a-54823d25d996	2021-05-22 04:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:18:55.853+03	2021-05-22 04:18:55.861+03	
554853e0-f45f-c974-ffda-8dfb98e3712b	2021-05-22 04:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:19:15.853+03	2021-05-22 04:19:15.861+03	
b77c4be3-3af2-cc14-8321-dcae8389195b	2021-05-22 04:19:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:19:36.853+03	2021-05-22 04:19:36.86+03	
d2f1a663-b7c6-8c41-634a-106e10fa5f17	2021-05-22 04:19:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:19:57.852+03	2021-05-22 04:19:57.859+03	
779aed4a-1616-2378-2568-54735ebbdf2a	2021-05-22 04:20:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:20:07.853+03	2021-05-22 04:20:07.859+03	
7128f8b0-c6c5-b5af-ec51-24fb068c4a82	2021-05-22 04:20:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:20:27.853+03	2021-05-22 04:20:27.86+03	
9e6cd680-4bdf-77b1-6cb4-90e897304427	2021-05-22 04:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:20:47.853+03	2021-05-22 04:20:47.86+03	
90dbfed5-a451-2c32-ff7e-0107b15c141f	2021-05-22 04:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:21:07.853+03	2021-05-22 04:21:07.86+03	
4ba5ce4c-97b9-c2c9-e2f2-f0582a13cfb8	2021-05-22 04:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:21:17.853+03	2021-05-22 04:21:17.858+03	
a93c1c6e-93d1-39ba-757e-099ee81b34ac	2021-05-22 04:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:21:38.853+03	2021-05-22 04:21:38.86+03	
28682205-45ff-6eb1-bad2-01dc94ffe08e	2021-05-22 04:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:21:58.853+03	2021-05-22 04:21:58.86+03	
60a4ca05-44a4-0c12-49e3-35e9ae5a5b30	2021-05-22 04:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:22:18.853+03	2021-05-22 04:22:18.86+03	
8e5a943c-af8e-0330-df14-dbff4adeb3e8	2021-05-22 04:22:38.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:22:38.86+03	2021-05-22 04:22:38.868+03	
d68286ec-459c-5faa-05d5-3e636cd5dbde	2021-05-22 04:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:22:59.853+03	2021-05-22 04:22:59.859+03	
b9ad314f-9ed0-7b3d-0439-56ecce3063d4	2021-05-22 04:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:23:19.853+03	2021-05-22 04:23:19.861+03	
d01f4c74-6241-228d-ea6d-3d99d811a532	2021-05-22 04:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:23:39.853+03	2021-05-22 04:23:39.859+03	
03955ce5-3fa3-be36-0553-bfd490084a52	2021-05-22 04:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:23:59.853+03	2021-05-22 04:23:59.859+03	
77116e7d-4e8d-324a-cf8b-ea7b9620b7fe	2021-05-22 04:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:24:20.852+03	2021-05-22 04:24:20.913+03	
a6420981-2b58-dbd8-9dbd-6528e45ef611	2021-05-22 04:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:24:40.853+03	2021-05-22 04:24:40.866+03	
aa5e0427-81e1-63c3-691e-f6c470545d98	2021-05-22 04:25:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:25:01.852+03	2021-05-22 04:25:01.859+03	
10048f6b-cbb0-b32d-8ff4-dab89e954e25	2021-05-22 04:25:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:25:21.853+03	2021-05-22 04:25:21.864+03	
e370e617-3b52-0be8-3cc5-0790d54ccfe3	2021-05-22 04:25:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:25:41.853+03	2021-05-22 04:25:41.861+03	
6ab24451-30f2-0bd2-3de4-15376c153a10	2021-05-22 04:26:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:26:01.853+03	2021-05-22 04:26:01.861+03	
f717243d-9cd1-08e7-623a-444c5951fddd	2021-05-22 04:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:26:22.853+03	2021-05-22 04:26:22.86+03	
2d15ebb3-47b8-e615-d865-9a7750533fd3	2021-05-22 04:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:26:43.853+03	2021-05-22 04:26:43.859+03	
3cf4ab85-173a-7f7d-aca2-1c7cfd685150	2021-05-22 04:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:27:03.853+03	2021-05-22 04:27:03.863+03	
06647d73-d2cd-2aa9-0a0b-80708feee761	2021-05-22 04:27:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:27:23.853+03	2021-05-22 04:27:23.868+03	
db147432-c77a-7204-ee42-cd980595c157	2021-05-22 04:27:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:27:43.853+03	2021-05-22 04:27:43.865+03	
ba77f561-09a1-328c-17c3-2c20279fcd47	2021-05-22 04:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:28:03.853+03	2021-05-22 04:28:03.862+03	
0ed8f315-0aad-820d-d8af-4efb7fc23c9b	2021-05-22 04:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:28:23.853+03	2021-05-22 04:28:23.859+03	
c8968b13-a90a-dc38-a7cc-c13e5c0906ec	2021-05-22 04:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:28:44.853+03	2021-05-22 04:28:44.867+03	
9f3f4f46-b926-10d3-7a5a-d0c38cc5062a	2021-05-22 04:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:29:05.853+03	2021-05-22 04:29:05.86+03	
d3ed6ac0-67d2-2104-eb41-623ea604b1a1	2021-05-22 04:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:29:25.853+03	2021-05-22 04:29:25.887+03	
9a420352-f317-2009-7107-8eb25feecd4a	2021-05-22 04:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:29:45.853+03	2021-05-22 04:29:45.872+03	
4b6eef4b-aca5-7e88-e831-4fb4301efc26	2021-05-22 04:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 04:30:00.853+03	2021-05-22 04:30:00.859+03	ERROR
93633e5e-a9ef-92e3-253d-09d8e65fbcfb	2021-05-22 04:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:30:17.852+03	2021-05-22 04:30:17.867+03	
f533b722-4f4d-31c6-6999-acd66ba3dc47	2021-05-22 04:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:30:37.853+03	2021-05-22 04:30:37.859+03	
50093cfb-13e6-39b3-c9d3-caabf3b601ef	2021-05-22 04:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:30:57.853+03	2021-05-22 04:30:57.862+03	
e8adf9ba-0053-799a-8963-74076fbea90a	2021-05-22 04:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:31:17.853+03	2021-05-22 04:31:17.861+03	
67c5a63e-f7ae-d12f-34b5-98eb71a42335	2021-05-22 04:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:31:37.853+03	2021-05-22 04:31:37.859+03	
891b3177-94b9-0789-e9ef-b1708752a0a2	2021-05-22 04:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:31:57.853+03	2021-05-22 04:31:57.873+03	
72f34ec9-c07c-bb5a-8e46-a5bf066e421e	2021-05-22 04:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:32:18.852+03	2021-05-22 04:32:18.859+03	
3d106dce-7803-0b4b-4eb2-27ab2da85fed	2021-05-22 04:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:32:38.853+03	2021-05-22 04:32:38.877+03	
be7117be-315a-aa9f-09c3-1f7faef2e134	2021-05-22 04:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:32:58.853+03	2021-05-22 04:32:58.868+03	
bf0bd4d3-c444-179f-67f6-3f772cfb051e	2021-05-22 04:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:33:18.853+03	2021-05-22 04:33:18.86+03	
88d06859-50fe-0b6f-0c35-1cbdea4f78d0	2021-05-22 04:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:33:38.853+03	2021-05-22 04:33:38.861+03	
1046ba3e-8f04-e50a-d11f-c5c31f110ccb	2021-05-22 04:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:34:00.853+03	2021-05-22 04:34:00.859+03	
4f5ad3a1-7ad7-fa39-335a-13d012dd6d33	2021-05-22 04:34:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:34:21.854+03	2021-05-22 04:34:21.864+03	
4eeef8b7-88aa-7970-b1de-1a663ff7c75b	2021-05-22 04:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:34:42.853+03	2021-05-22 04:34:42.862+03	
277dd54b-5aa4-00d1-f774-40aeb8285365	2021-05-22 04:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:35:03.852+03	2021-05-22 04:35:03.864+03	
cd0ed695-a36d-c5c0-3fea-ea580a3c89dd	2021-05-22 04:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:35:23.853+03	2021-05-22 04:35:23.861+03	
ad8a9f59-d4df-d428-45d9-0dc08850d7c4	2021-05-22 04:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:35:44.853+03	2021-05-22 04:35:44.86+03	
3b71da9e-d772-60d9-7fa7-87e8f3dc5afe	2021-05-22 04:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:36:04.853+03	2021-05-22 04:36:04.896+03	
27534fc7-ea8c-a77a-4629-35b431c4c4c0	2021-05-22 04:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:36:24.853+03	2021-05-22 04:36:24.86+03	
a7382d61-8273-de9d-05bf-cd0b88a72835	2021-05-22 04:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:36:44.853+03	2021-05-22 04:36:44.868+03	
f31302af-bbc5-269a-2feb-8deadb2a229b	2021-05-22 04:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:37:05.853+03	2021-05-22 04:37:05.859+03	
543fc4e1-55da-98ca-94ff-2363bf0c47b3	2021-05-22 04:37:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:37:26.854+03	2021-05-22 04:37:26.863+03	
1aae6ff8-7363-b2db-22e6-3c6da410f9ed	2021-05-22 04:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:37:47.853+03	2021-05-22 04:37:47.86+03	
6d0bc22a-06e9-7649-740d-2862180ada94	2021-05-22 04:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:38:07.853+03	2021-05-22 04:38:07.872+03	
f22f45e5-f559-38c6-a534-3e638120095d	2021-05-22 04:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:38:27.853+03	2021-05-22 04:38:27.864+03	
7d80ddf8-6ccd-440c-0272-46ea4d2397f5	2021-05-22 04:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:38:47.853+03	2021-05-22 04:38:47.87+03	
5d6a9127-af54-8029-6bdf-9004f87998d7	2021-05-22 04:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:39:07.853+03	2021-05-22 04:39:07.86+03	
786c8fc3-f4a8-c947-7bb2-152849891846	2021-05-22 04:39:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:39:27.853+03	2021-05-22 04:39:27.865+03	
a803eae6-c98e-6ddb-29fb-9c251f19b85e	2021-05-22 04:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:39:47.853+03	2021-05-22 04:39:47.862+03	
4ed14b56-741e-88ac-6f53-8092315d480b	2021-05-22 04:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 04:40:00.853+03	2021-05-22 04:40:00.872+03	ERROR
63133ffe-f063-6a59-0cb5-041a8527b0c4	2021-05-22 04:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:40:17.853+03	2021-05-22 04:40:17.861+03	
5bc5e264-cc5a-fd9d-b7db-8d3f6be7fd0d	2021-05-22 04:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:40:37.853+03	2021-05-22 04:40:37.861+03	
cd68091a-3520-0412-b74c-86fce153ff17	2021-05-22 04:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:40:57.853+03	2021-05-22 04:40:57.871+03	
2eceded8-3787-e520-33b9-ff4535821bdf	2021-05-22 04:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:41:18.853+03	2021-05-22 04:41:18.894+03	
abe12b19-139c-a0db-63a4-26d93db364f8	2021-05-22 04:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:41:39.853+03	2021-05-22 04:41:39.866+03	
23c1126b-b543-11d5-c0e9-f17371096a63	2021-05-22 04:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:41:59.853+03	2021-05-22 04:41:59.864+03	
8ad50abf-6855-5d5f-ef4f-00cf142b2622	2021-05-22 04:21:27.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:21:27.854+03	2021-05-22 04:21:27.864+03	
226904b4-928b-ee94-9911-16e46332f9f1	2021-05-22 04:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:21:48.853+03	2021-05-22 04:21:48.86+03	
db3f2f23-89fe-ed76-9a67-42d285f138a6	2021-05-22 04:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:22:08.853+03	2021-05-22 04:22:08.86+03	
99d39c2a-b276-27cf-7bc8-7e18235849a9	2021-05-22 04:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:22:28.853+03	2021-05-22 04:22:28.861+03	
b062c52c-5d50-6bf4-3c71-49a9bce4415f	2021-05-22 04:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:22:49.853+03	2021-05-22 04:22:49.862+03	
0f8ecb3e-6c5a-df64-a64f-8db67dca38bf	2021-05-22 04:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:23:09.853+03	2021-05-22 04:23:09.861+03	
95e063ee-f706-80a8-874f-64bf7de0eef8	2021-05-22 04:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:23:29.853+03	2021-05-22 04:23:29.861+03	
5a0d70e2-e5ae-dbb9-f4ac-656fe9f71793	2021-05-22 04:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:23:49.853+03	2021-05-22 04:23:49.86+03	
55377845-8c00-5390-26e4-d26a614be195	2021-05-22 04:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:24:09.853+03	2021-05-22 04:24:09.859+03	
2f1a4097-d1c2-f4cb-ab77-f9d2d2834cd2	2021-05-22 04:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:24:30.852+03	2021-05-22 04:24:30.86+03	
a129c7b4-2ccc-0c23-2c54-165cd364f522	2021-05-22 04:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:24:50.853+03	2021-05-22 04:24:50.86+03	
8027279e-80d5-ba16-0c72-e8f38d574d83	2021-05-22 04:25:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:25:11.853+03	2021-05-22 04:25:11.86+03	
86fc6a6d-0791-4227-9f14-c547c0f0f205	2021-05-22 04:25:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:25:31.853+03	2021-05-22 04:25:31.862+03	
ca8b2c27-f97e-153e-2386-8779fa9a2324	2021-05-22 04:25:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:25:51.853+03	2021-05-22 04:25:51.86+03	
2a90ebc8-9cb2-38dc-0adc-6124af994938	2021-05-22 04:26:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:26:11.854+03	2021-05-22 04:26:11.862+03	
b61bbcc0-31f1-eebf-ac20-010b23722fd4	2021-05-22 04:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:26:33.852+03	2021-05-22 04:26:33.859+03	
1a4a1c70-beb2-4d1b-67db-cc4abdd44d9c	2021-05-22 04:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:26:53.853+03	2021-05-22 04:26:53.86+03	
593eb5c2-c27b-8328-35dc-59d225ff6e90	2021-05-22 04:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:27:13.853+03	2021-05-22 04:27:13.86+03	
f496e90d-8f59-7059-b03f-f97759f2429e	2021-05-22 04:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:27:33.853+03	2021-05-22 04:27:33.86+03	
093b7bf5-8ca7-a55e-84be-420962795a92	2021-05-22 04:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:27:53.853+03	2021-05-22 04:27:53.859+03	
74c5f33c-6284-9ea3-f7e6-96ef38c99812	2021-05-22 04:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:28:13.853+03	2021-05-22 04:28:13.86+03	
b639c19b-bb2c-b5a1-5daf-63f4a3d88e17	2021-05-22 04:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:28:34.853+03	2021-05-22 04:28:34.872+03	
5d18f7e4-7e26-0487-56c6-17f3ad620a62	2021-05-22 04:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:28:55.853+03	2021-05-22 04:28:55.86+03	
eece4583-dc2a-438c-8a7c-bf5fb22af239	2021-05-22 04:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:29:15.853+03	2021-05-22 04:29:15.859+03	
6482f190-88e7-7658-5d58-a2837e021097	2021-05-22 04:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:29:35.853+03	2021-05-22 04:29:35.859+03	
80b1fe2e-0adb-2996-27bd-0fabd7b1bfa7	2021-05-22 04:29:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:29:56.853+03	2021-05-22 04:29:56.861+03	
31381d5e-22c8-3f1f-f0e8-0031fa5fedec	2021-05-22 04:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:30:07.852+03	2021-05-22 04:30:07.859+03	
b58180e4-4c15-90fa-aff2-c5ad0e912743	2021-05-22 04:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:30:27.853+03	2021-05-22 04:30:27.859+03	
041d91a0-fd41-6469-8c9a-3c2419f5f260	2021-05-22 04:30:47.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:30:47.853+03	2021-05-22 04:30:47.867+03	
92a0ad30-f292-199e-0956-1d59866306b6	2021-05-22 04:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:31:07.853+03	2021-05-22 04:31:07.859+03	
ba3f7940-5de9-1028-44f6-bb93b8c0d986	2021-05-22 04:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:31:27.853+03	2021-05-22 04:31:27.863+03	
04576592-9356-d3e4-4930-9be0118fcee9	2021-05-22 04:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:31:47.853+03	2021-05-22 04:31:47.862+03	
e58254fa-41ca-71a0-e8fe-7dc7cdc9f960	2021-05-22 04:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:32:07.853+03	2021-05-22 04:32:07.859+03	
8a3d9ee6-4030-22f8-fd2d-b8b76d95c858	2021-05-22 04:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:32:28.853+03	2021-05-22 04:32:28.861+03	
e9b4938a-22e4-e266-c7df-d96c27d93d6a	2021-05-22 04:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:32:48.853+03	2021-05-22 04:32:48.867+03	
0a3180d9-0e0c-6af3-3cce-2993990a196d	2021-05-22 04:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:33:08.853+03	2021-05-22 04:33:08.862+03	
5ec351d2-bd8a-8eb5-2b73-daf2fa379137	2021-05-22 04:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:33:28.853+03	2021-05-22 04:33:28.86+03	
d2cb2d53-43a5-837c-78dc-0f428235e54a	2021-05-22 04:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:33:49.853+03	2021-05-22 04:33:49.859+03	
f7554b35-d590-f639-dd2b-d0bd0eef3bd9	2021-05-22 04:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:34:11.852+03	2021-05-22 04:34:11.859+03	
e14cc146-25b1-2c99-19df-6e851d483b20	2021-05-22 04:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:34:32.853+03	2021-05-22 04:34:32.871+03	
f622c723-ce35-dd9c-fdcf-8147fe982876	2021-05-22 04:34:52.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:34:52.862+03	2021-05-22 04:34:52.871+03	
630267c6-4fe6-ad5a-bcc5-ac2ae4720004	2021-05-22 04:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:35:13.853+03	2021-05-22 04:35:13.86+03	
87308b83-e58c-4fe8-e06f-fa4acbda285e	2021-05-22 04:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:35:34.853+03	2021-05-22 04:35:34.861+03	
901632a2-e6e7-05fb-695c-a9d50ee4f0f7	2021-05-22 04:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:35:54.853+03	2021-05-22 04:35:54.873+03	
40ce570c-5b5e-33d6-98b5-6777a47e176b	2021-05-22 04:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:36:14.853+03	2021-05-22 04:36:14.86+03	
c90db636-6ef5-6477-986f-0c17916fa686	2021-05-22 04:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:36:34.853+03	2021-05-22 04:36:34.861+03	
0e5ca27e-bcc9-2a03-50ff-9e0ce01db529	2021-05-22 04:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:36:55.852+03	2021-05-22 04:36:55.86+03	
9e45f5f4-0d07-ab50-9e72-71bfc0577cc9	2021-05-22 04:37:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:37:16.852+03	2021-05-22 04:37:16.872+03	
b8b0a0fb-a8e3-2bf3-2b3c-c991c1e44640	2021-05-22 04:37:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:37:36.854+03	2021-05-22 04:37:36.862+03	
8fad52a9-3b8c-86c9-c639-f1a82332713d	2021-05-22 04:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:37:57.853+03	2021-05-22 04:37:57.859+03	
d6996149-8d6a-310e-3f9e-f155bb4b9167	2021-05-22 04:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:38:17.853+03	2021-05-22 04:38:17.874+03	
03068f7f-b6e4-9aac-2fc0-427d2be53e9f	2021-05-22 04:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:38:37.853+03	2021-05-22 04:38:37.862+03	
0f13d349-beb3-12da-cf63-8e1350587c6b	2021-05-22 04:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:38:57.853+03	2021-05-22 04:38:57.862+03	
ef3c9cfe-1e3d-9235-9c09-fdafe87ddba4	2021-05-22 04:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:39:17.853+03	2021-05-22 04:39:17.864+03	
5a80bdc0-f204-db70-2291-41a40c3795dc	2021-05-22 04:39:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:39:37.853+03	2021-05-22 04:39:37.862+03	
aac68c43-b53c-93cf-453e-68543f80fe22	2021-05-22 04:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:39:57.853+03	2021-05-22 04:39:57.86+03	
2358178b-5cff-16ec-579f-8126aa74d58f	2021-05-22 04:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:40:07.853+03	2021-05-22 04:40:07.864+03	
326411dd-5d36-75df-d98f-117139a6771f	2021-05-22 04:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:40:27.853+03	2021-05-22 04:40:27.869+03	
f98adc75-8b97-3a5b-1cbb-1c43382ae3f7	2021-05-22 04:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:40:47.853+03	2021-05-22 04:40:47.863+03	
47277897-fd9c-52c0-3798-5cdb9caae5a2	2021-05-22 04:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:41:08.852+03	2021-05-22 04:41:08.859+03	
d4689a7e-2af6-79ba-8d02-22f692081e0b	2021-05-22 04:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:41:28.853+03	2021-05-22 04:41:28.861+03	
17c94a86-2555-e724-ee0a-b31a3d5288f2	2021-05-22 04:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:41:49.853+03	2021-05-22 04:41:49.862+03	
265e66e0-757a-a869-f84f-b76218600291	2021-05-22 04:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:42:09.853+03	2021-05-22 04:42:09.861+03	
dcfebab9-33c5-ef1f-7b82-247ae8fe8413	2021-05-22 04:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:42:19.853+03	2021-05-22 04:42:19.899+03	
e364aa33-2b4f-871e-6d15-863a43b8e91c	2021-05-22 04:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:42:39.853+03	2021-05-22 04:42:39.872+03	
b0d25e58-b973-3b8b-e423-a40be2d9055a	2021-05-22 04:42:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:42:59.853+03	2021-05-22 04:42:59.872+03	
371f2d79-a300-a2dd-65b7-d3f0e6948743	2021-05-22 04:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:43:19.853+03	2021-05-22 04:43:19.861+03	
7567c6e4-5ca4-2903-88b3-dc1af447fec3	2021-05-22 04:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:43:39.853+03	2021-05-22 04:43:39.861+03	
b2406172-d22c-dc95-13da-efdef3dcdca6	2021-05-22 04:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:43:59.853+03	2021-05-22 04:43:59.859+03	
8f4a53bd-2710-f4a2-d0b7-62fd98dda5b4	2021-05-22 04:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:44:20.853+03	2021-05-22 04:44:20.862+03	
e67d85fb-cac7-c6ed-a611-ecdae11a10e4	2021-05-22 04:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:44:40.853+03	2021-05-22 04:44:40.862+03	
62d81472-f3fa-dda6-4ac9-176c0eee2e5b	2021-05-22 04:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:45:00.853+03	2021-05-22 04:45:00.871+03	
abb20e4c-b41d-fdab-7677-25e7d0c89d42	2021-05-22 04:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:45:20.853+03	2021-05-22 04:45:20.871+03	
54983b83-ad74-bea2-e28a-8833aa2173e0	2021-05-22 04:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:45:40.853+03	2021-05-22 04:45:40.861+03	
21632098-6b2e-cb9a-edf2-8c0644865c9a	2021-05-22 04:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:46:01.853+03	2021-05-22 04:46:01.859+03	
1b65120c-ed55-3fec-1274-3e1bbfab84a5	2021-05-22 04:46:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:46:21.853+03	2021-05-22 04:46:21.864+03	
96f39bc8-6c81-18b3-dadf-9cb5a142c73e	2021-05-22 04:46:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:46:41.853+03	2021-05-22 04:46:41.861+03	
fe110774-43e6-b222-8991-259c7f3c1896	2021-05-22 04:47:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:47:01.853+03	2021-05-22 04:47:01.875+03	
f431c090-ddf5-9285-1325-2c3ea16add81	2021-05-22 04:47:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:47:21.855+03	2021-05-22 04:47:21.863+03	
b66e0fd2-85ab-8cbd-e73c-a23a6012a6ca	2021-05-22 04:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:47:42.853+03	2021-05-22 04:47:42.861+03	
396241f4-50b4-ccea-cf76-125846601165	2021-05-22 04:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:48:02.853+03	2021-05-22 04:48:02.86+03	
86d1dd42-ddd7-9bb5-ebd4-dadd8185e56c	2021-05-22 04:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:48:22.853+03	2021-05-22 04:48:22.862+03	
d1d24528-27ea-f0e7-8198-6a4c335373c3	2021-05-22 04:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:48:43.852+03	2021-05-22 04:48:43.873+03	
959f6e9a-e2a8-b6a9-2691-6878688027f6	2021-05-22 04:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:49:03.853+03	2021-05-22 04:49:03.869+03	
1bab5b73-788d-c469-5a3c-270d9477c796	2021-05-22 04:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:49:23.853+03	2021-05-22 04:49:23.86+03	
2ff2e5c2-910e-3253-9d89-cdeb28845a50	2021-05-22 04:49:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:49:43.853+03	2021-05-22 04:49:43.861+03	
6e918a73-f70e-7551-1fb7-09473a788421	2021-05-22 04:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 04:50:00.853+03	2021-05-22 04:50:00.858+03	ERROR
f80570ae-9839-fa6f-1b79-d35959e768d6	2021-05-22 04:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:50:13.853+03	2021-05-22 04:50:13.861+03	
cab123dc-8eba-3ff0-9fb1-5843fb4ade97	2021-05-22 04:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:50:33.853+03	2021-05-22 04:50:33.867+03	
76cfcd73-54eb-4fca-695d-bc3eb07fe304	2021-05-22 04:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:50:53.853+03	2021-05-22 04:50:53.87+03	
fcba1757-f712-3ce1-b4e2-de323c3d7e58	2021-05-22 04:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:51:13.853+03	2021-05-22 04:51:13.861+03	
5135ca77-810b-cc4a-cc5b-507a3c2c1e07	2021-05-22 04:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:51:34.853+03	2021-05-22 04:51:34.86+03	
6f08cade-68da-24eb-fba6-9070b0243775	2021-05-22 04:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:51:54.853+03	2021-05-22 04:51:54.861+03	
5e02cd39-84bb-9914-39f4-73fc83d1ca3b	2021-05-22 04:52:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:52:14.853+03	2021-05-22 04:52:14.875+03	
acc039ba-cc5a-f0db-5929-64f7dffec2db	2021-05-22 04:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:52:34.853+03	2021-05-22 04:52:34.866+03	
5ec4cbfb-c88b-efed-64a7-ad24386863d3	2021-05-22 04:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:52:54.853+03	2021-05-22 04:52:54.862+03	
b024440b-0a8b-7a92-5585-a9d2c30c64d1	2021-05-22 04:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:53:14.853+03	2021-05-22 04:53:14.873+03	
bcf1af03-460a-0bc1-853f-112c05d298a0	2021-05-22 04:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:53:34.853+03	2021-05-22 04:53:34.864+03	
8550b969-d467-47af-d74d-79c4464b15d1	2021-05-22 04:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:53:54.853+03	2021-05-22 04:53:54.864+03	
143ceab9-dc9d-f75b-108c-aa8ab14518ba	2021-05-22 04:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:54:14.853+03	2021-05-22 04:54:14.872+03	
b16751cb-180d-5cfb-3774-b321d3353360	2021-05-22 04:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:54:34.853+03	2021-05-22 04:54:34.862+03	
464efed6-4b77-69f3-5f0f-97cd775acf4b	2021-05-22 04:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:54:55.853+03	2021-05-22 04:54:55.859+03	
9291d54b-029a-9400-a0e8-6ec04f3bba56	2021-05-22 04:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:55:15.853+03	2021-05-22 04:55:15.859+03	
12c91f1b-d39f-992b-e382-c4ac39e52fa7	2021-05-22 04:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:55:36.852+03	2021-05-22 04:55:36.859+03	
1816a5bf-8e57-ae0a-ccfa-65c4bf014cd3	2021-05-22 04:55:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:55:56.854+03	2021-05-22 04:55:56.861+03	
9c9a6b4e-4272-fb23-079d-9dc66299e0ef	2021-05-22 04:56:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:56:17.852+03	2021-05-22 04:56:17.859+03	
48fb4446-6f7e-355b-d904-4fa9369f117c	2021-05-22 04:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:56:37.852+03	2021-05-22 04:56:37.859+03	
724fcbf9-187f-0a0f-e862-be4ab4006e76	2021-05-22 04:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:56:57.853+03	2021-05-22 04:56:57.86+03	
c9e82411-1b7b-8518-c947-db93e14c97cc	2021-05-22 04:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:57:17.853+03	2021-05-22 04:57:17.859+03	
ed7030d8-5d83-ec59-2cca-db8415c83162	2021-05-22 04:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:57:38.852+03	2021-05-22 04:57:38.859+03	
7cb4dfc6-aab2-4b2f-e2a9-f568fdb4e5bf	2021-05-22 04:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:57:58.852+03	2021-05-22 04:57:58.86+03	
7ab534bc-343e-ec65-13bc-4673a53147e0	2021-05-22 04:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:58:19.853+03	2021-05-22 04:58:19.86+03	
b0fecc3f-cccb-d9a9-2ada-29a90563257f	2021-05-22 04:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:58:39.853+03	2021-05-22 04:58:39.863+03	
170ca3eb-38cc-059d-0f8f-91d4628c36a7	2021-05-22 04:59:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:59:01.854+03	2021-05-22 04:59:01.86+03	
2eb5fb6b-acb1-3ac1-bdb1-cf273cdb3b39	2021-05-22 04:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:59:22.852+03	2021-05-22 04:59:22.859+03	
a9405f48-c85c-2543-1771-b962993b6e67	2021-05-22 04:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:59:42.852+03	2021-05-22 04:59:42.859+03	
f8fcfe34-1f3a-33ae-108e-3fdbf8396374	2021-05-22 05:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 05:00:00.852+03	2021-05-22 05:00:00.859+03	ERROR
1ec965da-7612-faf1-a2b6-053e7455acaf	2021-05-22 05:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:00:12.853+03	2021-05-22 05:00:12.865+03	
051c9934-d52f-2c8d-26f7-124cf3e34118	2021-05-22 05:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:00:32.853+03	2021-05-22 05:00:32.862+03	
10f7b05f-0c58-eea5-75aa-bccb1b4140c6	2021-05-22 05:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:00:53.853+03	2021-05-22 05:00:53.86+03	
c03b30d6-8f55-2d6f-e494-b7757d003d0f	2021-05-22 05:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:01:14.853+03	2021-05-22 05:01:14.868+03	
8aaaa717-c8b7-22b8-df1f-0e9c92fd9fc0	2021-05-22 05:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:01:34.853+03	2021-05-22 05:01:34.86+03	
a8e244ed-262f-b5a6-2549-98f388cf9086	2021-05-22 05:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:01:54.853+03	2021-05-22 05:01:54.86+03	
f35873aa-c262-8685-456f-63b09a29401f	2021-05-22 05:02:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:02:16.852+03	2021-05-22 05:02:16.859+03	
a06f3657-88f2-7a40-5da0-0a5e45b2ec8b	2021-05-22 05:02:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:02:36.853+03	2021-05-22 05:02:36.86+03	
ae4b27c1-cfa5-b697-d11f-8b59126002a3	2021-05-22 05:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:02:57.853+03	2021-05-22 05:02:57.862+03	
c8979d3e-dadf-9388-d423-3001de73fb6a	2021-05-22 04:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:42:29.853+03	2021-05-22 04:42:29.863+03	
b32c3c32-4cf7-743c-d34e-4fc33f4deca7	2021-05-22 04:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:42:49.853+03	2021-05-22 04:42:49.861+03	
02f2a445-b5dd-be33-8b3e-cf0ecff349e7	2021-05-22 04:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:43:09.853+03	2021-05-22 04:43:09.861+03	
6370f02e-29c8-5d69-03dd-2760f4b35717	2021-05-22 04:43:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:43:29.853+03	2021-05-22 04:43:29.86+03	
b0132821-ec7f-f675-a484-caed153735d8	2021-05-22 04:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:43:49.853+03	2021-05-22 04:43:49.86+03	
4337ce31-c50d-5f68-2c29-6b6608f8480d	2021-05-22 04:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:44:10.852+03	2021-05-22 04:44:10.859+03	
6c207883-ab10-2274-ece8-406952f557ec	2021-05-22 04:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:44:30.853+03	2021-05-22 04:44:30.861+03	
8631f064-a2fc-b456-3aef-2b4b65fadfc0	2021-05-22 04:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:44:50.853+03	2021-05-22 04:44:50.865+03	
d3d4abb8-20ea-3d60-949f-7e8fe3f83599	2021-05-22 04:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:45:10.853+03	2021-05-22 04:45:10.859+03	
7a189ae0-7b57-d77b-ad9c-c5c9471207ce	2021-05-22 04:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:45:30.853+03	2021-05-22 04:45:30.859+03	
d66ed80f-b260-f360-4bc8-8aaa21f2ff97	2021-05-22 04:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:45:50.853+03	2021-05-22 04:45:50.86+03	
08ab09cd-797f-953a-6899-4f13ac090302	2021-05-22 04:46:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:46:11.853+03	2021-05-22 04:46:11.861+03	
e487ac39-7fc2-3239-d127-a1323091073f	2021-05-22 04:46:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:46:31.853+03	2021-05-22 04:46:31.861+03	
4b1a8b47-01a7-c187-a719-e60dbd2b03b2	2021-05-22 04:46:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:46:51.853+03	2021-05-22 04:46:51.871+03	
ae0b0170-2c9e-2c75-8511-5facec2b6cd2	2021-05-22 04:47:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:47:11.854+03	2021-05-22 04:47:11.863+03	
dc737ced-dc16-dd2d-d3a4-8b0391022011	2021-05-22 04:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:47:32.853+03	2021-05-22 04:47:32.859+03	
e9e2437f-8554-f315-2b58-9b2e7904a21b	2021-05-22 04:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:47:52.853+03	2021-05-22 04:47:52.869+03	
1b44e625-bbec-b666-48ee-f1d608e4bbc8	2021-05-22 04:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:48:12.853+03	2021-05-22 04:48:12.86+03	
e0612cbe-39ed-72d4-d444-94107c056c49	2021-05-22 04:48:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:48:32.854+03	2021-05-22 04:48:32.866+03	
7e8679f6-4eaf-871c-cddc-593d1831df73	2021-05-22 04:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:48:53.853+03	2021-05-22 04:48:53.861+03	
14ebebbf-b920-9b64-022c-48ca1ac10245	2021-05-22 04:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:49:13.853+03	2021-05-22 04:49:13.859+03	
6c399b71-0cde-6327-54a4-9b2773184771	2021-05-22 04:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:49:33.853+03	2021-05-22 04:49:33.861+03	
e2e23b3c-647f-3f6a-6552-3f5e83235f02	2021-05-22 04:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:49:53.853+03	2021-05-22 04:49:54.178+03	
1bdb3fb1-b8db-e666-5b35-11918603e568	2021-05-22 04:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:50:03.853+03	2021-05-22 04:50:03.861+03	
002727ba-fdb2-77f3-7030-c3c7b4d23510	2021-05-22 04:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:50:23.853+03	2021-05-22 04:50:23.863+03	
2bfa2d7b-d090-0906-2277-8885f807cebc	2021-05-22 04:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:50:43.853+03	2021-05-22 04:50:43.862+03	
8270e68a-c62b-0661-08c3-d1c6b01fda5f	2021-05-22 04:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:51:03.853+03	2021-05-22 04:51:03.861+03	
a785fe73-363b-835e-5e82-6c68aa99396c	2021-05-22 04:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:51:23.853+03	2021-05-22 04:51:23.86+03	
dea0bc0d-b36b-70f7-7e4c-a48f12b3d992	2021-05-22 04:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:51:44.853+03	2021-05-22 04:51:44.86+03	
e6eef497-2113-0720-7312-c8ea30ca0f8f	2021-05-22 04:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:52:04.853+03	2021-05-22 04:52:04.88+03	
12b2ea7e-e229-3f10-05b4-15c125c6adc1	2021-05-22 04:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:52:24.853+03	2021-05-22 04:52:24.866+03	
1029b095-e4d5-0b63-c3f1-e61a05b905d8	2021-05-22 04:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:52:44.853+03	2021-05-22 04:52:44.875+03	
1c74677a-3e19-4ef6-8092-566ca65e90c8	2021-05-22 04:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:53:04.853+03	2021-05-22 04:53:04.877+03	
1039f126-59b6-5fb8-ca65-6ab6cef911e0	2021-05-22 04:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:53:24.853+03	2021-05-22 04:53:24.872+03	
84682dbb-e420-cafe-1728-0f69eb826580	2021-05-22 04:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:53:44.853+03	2021-05-22 04:53:44.864+03	
c2c323fc-1f3b-a3b4-ffeb-accceb82120e	2021-05-22 04:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:54:04.853+03	2021-05-22 04:54:04.911+03	
f89ef768-f5c6-6dc3-c8f2-1b50e227aa72	2021-05-22 04:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:54:24.853+03	2021-05-22 04:54:24.875+03	
748f9483-088d-96bb-f363-93de54f3d265	2021-05-22 04:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:54:44.853+03	2021-05-22 04:54:44.862+03	
2724d112-693a-9778-6c7e-e56c2cd7a778	2021-05-22 04:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:55:05.853+03	2021-05-22 04:55:05.859+03	
07319e17-10a6-a6e1-06cd-346843f0e296	2021-05-22 04:55:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:55:26.852+03	2021-05-22 04:55:26.861+03	
8ee66816-66e2-114e-e790-4200cc3cdb8a	2021-05-22 04:55:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:55:46.853+03	2021-05-22 04:55:46.874+03	
34e762eb-89ee-79cf-3672-54af468dff77	2021-05-22 04:56:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:56:06.854+03	2021-05-22 04:56:06.874+03	
cbdef61b-ecc2-920f-a6a3-0d7a910c366a	2021-05-22 04:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:56:27.852+03	2021-05-22 04:56:27.859+03	
26fb1e3a-522a-6eb4-e4a9-4c4d7e691094	2021-05-22 04:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:56:47.852+03	2021-05-22 04:56:47.859+03	
6e90ad78-df5a-1a2c-e670-e9bcd4d97b17	2021-05-22 04:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:57:07.853+03	2021-05-22 04:57:07.859+03	
f5624a62-8a00-1338-22c4-b0019bb4c8d3	2021-05-22 04:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:57:27.853+03	2021-05-22 04:57:27.859+03	
6022bc31-daeb-2959-91f1-8c7515d9a3d7	2021-05-22 04:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:57:48.852+03	2021-05-22 04:57:48.859+03	
c80fc594-2e7b-d8c1-0540-aa71b1f47b43	2021-05-22 04:58:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:58:08.853+03	2021-05-22 04:58:08.859+03	
61e147b0-0123-0d63-b2f7-ffc2b57a9393	2021-05-22 04:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:58:29.853+03	2021-05-22 04:58:29.86+03	
38c80f11-7128-af8f-ec65-8cd9c098994b	2021-05-22 04:58:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:58:50.854+03	2021-05-22 04:58:50.866+03	
cf7e7151-b4b7-ed38-03e9-6db2a84f36f5	2021-05-22 04:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:59:12.852+03	2021-05-22 04:59:12.859+03	
eac60c06-cf6e-1505-265c-a75843342467	2021-05-22 04:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:59:32.852+03	2021-05-22 04:59:32.859+03	
0a88eb1e-db7d-f482-0b6a-c2b521c10a32	2021-05-22 04:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 04:59:52.852+03	2021-05-22 04:59:52.86+03	
c3a3cbc1-ece1-4069-1023-189c34a27da0	2021-05-22 05:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:00:02.853+03	2021-05-22 05:00:02.874+03	
75242024-14f1-3289-c98c-9aed892cd22a	2021-05-22 05:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:00:22.853+03	2021-05-22 05:00:22.864+03	
71f032b8-061b-6da1-a765-a1cceba5709a	2021-05-22 05:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:00:42.853+03	2021-05-22 05:00:42.859+03	
2cfcc4bd-3222-385e-00b3-67e56c125360	2021-05-22 05:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:01:04.853+03	2021-05-22 05:01:04.865+03	
131e1b8b-cf87-e6e4-6108-e3c48d70667b	2021-05-22 05:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:01:24.853+03	2021-05-22 05:01:24.863+03	
65f4814a-f78f-6256-68f2-a05adc1c16a1	2021-05-22 05:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:01:44.853+03	2021-05-22 05:01:44.86+03	
0644af73-0f29-d69d-7029-2996b8195c07	2021-05-22 05:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:02:05.853+03	2021-05-22 05:02:05.861+03	
a7009d2f-0d68-35b6-d040-5897a07bdd76	2021-05-22 05:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:02:26.852+03	2021-05-22 05:02:26.868+03	
c1e2b45f-8934-e9f2-a668-bb8a49ed88e4	2021-05-22 05:02:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:02:46.855+03	2021-05-22 05:02:46.864+03	
dade6b5e-bcfb-1f23-1994-36ded53f3113	2021-05-22 05:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:03:07.853+03	2021-05-22 05:03:07.87+03	
8a6eba9d-f583-d6c1-ad8f-9e317d9708cb	2021-05-22 05:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:03:17.853+03	2021-05-22 05:03:17.874+03	
5d849a89-f968-d0f6-45eb-6c4d7684bc35	2021-05-22 05:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:03:37.853+03	2021-05-22 05:03:37.861+03	
ee021794-672d-d5d1-d3db-4f675fbb9a1b	2021-05-22 05:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:03:57.853+03	2021-05-22 05:03:57.86+03	
d32f3b88-5206-9909-1421-5adc3505f551	2021-05-22 05:04:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:04:17.853+03	2021-05-22 05:04:17.86+03	
f2a2626e-2da4-a8f5-421d-3070d2961f4c	2021-05-22 05:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:04:38.852+03	2021-05-22 05:04:38.858+03	
e46f9d80-aac5-17a4-015d-4abd0079bf61	2021-05-22 05:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:04:58.852+03	2021-05-22 05:04:58.859+03	
a9fc02a2-12ff-b1cb-361f-f0c412c36434	2021-05-22 05:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:05:18.853+03	2021-05-22 05:05:18.863+03	
8d22490f-8fd4-d60a-a189-cabb75ef4cae	2021-05-22 05:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:05:38.853+03	2021-05-22 05:05:38.859+03	
45d746ac-71b1-c94d-7c4e-36a673aad72b	2021-05-22 05:05:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:05:58.853+03	2021-05-22 05:05:58.859+03	
bcdf6ec5-f390-90fd-c318-eaf0720c5240	2021-05-22 05:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:06:18.853+03	2021-05-22 05:06:18.871+03	
dd31d7f7-abae-7d62-dd74-61dbe81a8a2d	2021-05-22 05:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:06:39.853+03	2021-05-22 05:06:39.861+03	
c67fb489-09fe-aac2-004a-7523fa6d9ae5	2021-05-22 05:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:07:00.852+03	2021-05-22 05:07:00.858+03	
86d5d593-05ce-8b06-d9fe-e41a183b4321	2021-05-22 05:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:07:20.852+03	2021-05-22 05:07:20.883+03	
71809380-cd8d-9c9e-ee37-a53b4892323b	2021-05-22 05:07:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:07:41.853+03	2021-05-22 05:07:41.859+03	
83996402-660e-ca3c-db68-e59d0fdc1c98	2021-05-22 05:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:08:03.852+03	2021-05-22 05:08:03.86+03	
b3aed1ac-c0b8-dd82-f8f7-9ee1c740cc80	2021-05-22 05:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:08:23.852+03	2021-05-22 05:08:23.859+03	
d77fab53-68ec-2040-897e-73dd8134ecb2	2021-05-22 05:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:08:44.852+03	2021-05-22 05:08:44.871+03	
d867056b-484a-8aa1-818d-e6b539edbf5e	2021-05-22 05:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:09:05.852+03	2021-05-22 05:09:05.859+03	
4fb57dbb-c02b-5063-59cd-0cb17de94c98	2021-05-22 05:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:09:25.852+03	2021-05-22 05:09:25.859+03	
e0028360-66b2-9e23-6ed6-21a7d36cc98c	2021-05-22 05:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:09:45.853+03	2021-05-22 05:09:45.861+03	
6e2c2bb2-26d3-2c2f-3d83-a29de25912ba	2021-05-22 05:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 05:10:00.853+03	2021-05-22 05:10:00.858+03	ERROR
18a3637c-b85e-d304-a5e6-05095a2649b3	2021-05-22 05:10:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:10:16.853+03	2021-05-22 05:10:16.861+03	
943cab38-7a46-924c-be5b-f60304437abd	2021-05-22 05:10:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:10:36.854+03	2021-05-22 05:10:36.867+03	
b9053b73-c7f3-daf2-668d-c8acdbbd2543	2021-05-22 05:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:10:57.853+03	2021-05-22 05:10:57.861+03	
ca30734f-7881-c5d1-c920-a570a2303ecf	2021-05-22 05:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:11:17.853+03	2021-05-22 05:11:17.859+03	
09d5d330-497f-52e7-d951-ec87b87e50c2	2021-05-22 05:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:11:37.853+03	2021-05-22 05:11:37.861+03	
5e41879a-7e66-9961-4fbc-fbae897ccb86	2021-05-22 05:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:11:57.853+03	2021-05-22 05:11:57.862+03	
e5eb5fe5-9607-0477-3503-696f07197a6f	2021-05-22 05:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:12:18.853+03	2021-05-22 05:12:18.862+03	
13e8f5e5-e841-dbc4-04e6-88a79e382624	2021-05-22 05:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:12:38.853+03	2021-05-22 05:12:38.873+03	
ba776d55-f8bb-e4f2-a6cd-7227b9ebe1ef	2021-05-22 05:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:12:59.853+03	2021-05-22 05:12:59.861+03	
6186427d-c75f-182c-292b-b20b355a302d	2021-05-22 05:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:13:19.853+03	2021-05-22 05:13:19.862+03	
9a300e0e-1378-3075-1ba1-9f6d7b8b0ac1	2021-05-22 05:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:13:39.853+03	2021-05-22 05:13:39.873+03	
06c43f60-30e0-1a38-ce2a-50ebde508c40	2021-05-22 05:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:13:59.853+03	2021-05-22 05:13:59.861+03	
00dc8759-2ea9-4959-3145-9788bd4623cd	2021-05-22 05:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:14:20.853+03	2021-05-22 05:14:20.86+03	
d959786f-cabd-9123-e15a-a432ee0b4f66	2021-05-22 05:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:14:41.853+03	2021-05-22 05:14:41.86+03	
c23857bc-663a-51b6-b46e-f1bf32316e6d	2021-05-22 05:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:15:02.853+03	2021-05-22 05:15:02.86+03	
2053c5f6-4e55-ef57-40af-31650921bded	2021-05-22 05:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:15:22.853+03	2021-05-22 05:15:22.874+03	
32eda350-2e3d-81df-efcd-386862ee5270	2021-05-22 05:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:15:43.853+03	2021-05-22 05:15:43.868+03	
79cf5db0-24fe-9356-7b79-2d0c20092401	2021-05-22 05:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:16:03.853+03	2021-05-22 05:16:03.86+03	
61eab58c-2480-aa95-b80a-057388239791	2021-05-22 05:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:16:23.853+03	2021-05-22 05:16:23.859+03	
31cadfc7-080f-f4bc-46a7-45d373280980	2021-05-22 05:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:16:45.853+03	2021-05-22 05:16:45.859+03	
4a9fa512-66ca-e21e-c431-bb55783d8fbc	2021-05-22 05:17:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:17:06.854+03	2021-05-22 05:17:06.861+03	
da80d589-14db-d14c-2564-1a45eedf816c	2021-05-22 05:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:17:27.853+03	2021-05-22 05:17:27.862+03	
0a32cbd4-cf93-f7fe-5815-89867a9bd15a	2021-05-22 05:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:17:48.852+03	2021-05-22 05:17:48.859+03	
36835b12-3a7c-3311-3dce-930125f89950	2021-05-22 05:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:18:09.853+03	2021-05-22 05:18:10.103+03	
f1258d65-169e-b5cb-8552-e06ec34fba58	2021-05-22 05:18:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:18:29.853+03	2021-05-22 05:18:29.861+03	
9483c0c9-c37d-a365-6acc-71ef6a87aeff	2021-05-22 05:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:18:49.853+03	2021-05-22 05:18:49.859+03	
256f04de-a5a7-ced1-c449-a4547768508e	2021-05-22 05:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:19:10.852+03	2021-05-22 05:19:10.862+03	
12949198-6c58-39b4-35eb-69293bd98f3f	2021-05-22 05:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:19:30.852+03	2021-05-22 05:19:30.858+03	
ed4aaff5-afe7-c72d-4d4b-54cc3e9359e3	2021-05-22 05:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:20:00.853+03	2021-05-22 05:20:00.867+03	
54b15a77-1cda-7201-f7ca-303ffc4cc57f	2021-05-22 05:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:20:20.853+03	2021-05-22 05:20:20.862+03	
f800bdc1-a32f-ef44-415e-0d375ce08108	2021-05-22 05:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:20:42.852+03	2021-05-22 05:20:42.859+03	
19cc1ab3-5b2c-0e65-4cd0-57bc9ed3137f	2021-05-22 05:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:21:02.853+03	2021-05-22 05:21:02.86+03	
0ebb03bf-501a-f70b-22b4-fe66e9546122	2021-05-22 05:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:21:23.853+03	2021-05-22 05:21:23.86+03	
89a448c8-71b7-44b4-bc59-fa8a2d6f4848	2021-05-22 05:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:21:44.853+03	2021-05-22 05:21:44.868+03	
53f43b47-7e28-b6c6-15bd-63a285a38318	2021-05-22 05:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:22:05.852+03	2021-05-22 05:22:05.869+03	
37294566-bd37-8a43-d252-09f8351b56f2	2021-05-22 05:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:22:25.853+03	2021-05-22 05:22:25.871+03	
542f7921-65b6-4868-5741-562afd4c2c22	2021-05-22 05:22:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:22:45.853+03	2021-05-22 05:22:45.863+03	
eaf5b950-808a-5f2f-c985-8581e400e8c5	2021-05-22 05:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:23:05.853+03	2021-05-22 05:23:05.864+03	
8e2c9c25-4f74-ecaf-8077-22dfdf933d1e	2021-05-22 05:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:23:25.853+03	2021-05-22 05:23:25.861+03	
24d76479-8d61-12e5-11b4-35ec2cfda68b	2021-05-22 05:23:45.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:23:45.853+03	2021-05-22 05:23:45.867+03	
790982df-d044-6f27-6b63-e39f3fce4e59	2021-05-22 05:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:24:05.853+03	2021-05-22 05:24:05.861+03	
7a5f61ac-74e8-81f5-9aa8-0560af7fff5e	2021-05-22 05:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:24:25.853+03	2021-05-22 05:24:25.86+03	
6c37493a-5e47-33ea-276b-386c547b37f4	2021-05-22 05:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:03:27.853+03	2021-05-22 05:03:27.861+03	
ce722afc-57fb-7c9b-63f2-77591ef492c9	2021-05-22 05:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:03:47.853+03	2021-05-22 05:03:47.861+03	
ed711489-695f-2c47-fdb2-0160f256376f	2021-05-22 05:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:04:07.853+03	2021-05-22 05:04:07.861+03	
99bc45a1-dccf-24df-7cd5-ccf51d377187	2021-05-22 05:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:04:28.852+03	2021-05-22 05:04:28.859+03	
08fb0ef4-eb6a-167e-71a9-bdccfd290ec7	2021-05-22 05:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:04:48.852+03	2021-05-22 05:04:48.862+03	
75e77f4b-0494-43cc-8964-0f7858cf6e01	2021-05-22 05:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:05:08.853+03	2021-05-22 05:05:08.859+03	
e7302b10-232b-16c9-f2a3-662dc898098d	2021-05-22 05:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:05:28.853+03	2021-05-22 05:05:28.86+03	
3124d45c-1a0d-82eb-72c6-87c3a4906eba	2021-05-22 05:05:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:05:48.853+03	2021-05-22 05:05:48.86+03	
fd6d5fcf-ce26-c9d2-a5c3-ab100be4a842	2021-05-22 05:06:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:06:08.853+03	2021-05-22 05:06:08.859+03	
0b90a64d-17d3-45de-50be-355d93eea351	2021-05-22 05:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:06:28.853+03	2021-05-22 05:06:28.859+03	
e708a791-e7d7-26b5-9857-01c4d1c336e8	2021-05-22 05:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:06:49.853+03	2021-05-22 05:06:49.86+03	
2aaa1c78-b630-329f-6555-be45f058b0e6	2021-05-22 05:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:07:10.852+03	2021-05-22 05:07:10.859+03	
f38ce0c0-5c9f-0682-5fc2-f5bf994b21fe	2021-05-22 05:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:07:30.853+03	2021-05-22 05:07:30.859+03	
5aed48a3-7ea5-79c2-7064-a6ddbd4a1030	2021-05-22 05:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:07:52.853+03	2021-05-22 05:07:52.863+03	
eddf5edb-3f5d-70b0-6887-6269c05ff4a6	2021-05-22 05:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:08:13.852+03	2021-05-22 05:08:13.858+03	
f80783cb-1d87-ad71-750c-cb378638ba01	2021-05-22 05:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:08:33.853+03	2021-05-22 05:08:33.859+03	
2140c383-b6a9-8634-bb0a-cd6b8a2fb39e	2021-05-22 05:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:08:54.853+03	2021-05-22 05:08:54.87+03	
5a7e85ab-5d6d-6caa-a4b8-45db4b48ed07	2021-05-22 05:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:09:15.852+03	2021-05-22 05:09:15.86+03	
aaecc223-1f8a-6d19-6892-001039046081	2021-05-22 05:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:09:35.853+03	2021-05-22 05:09:35.871+03	
52fe4507-2f85-7658-9330-60a54bc8e0a6	2021-05-22 05:09:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:09:56.852+03	2021-05-22 05:09:56.858+03	
80db8f44-02e9-c75b-4c40-08501ad0634b	2021-05-22 05:10:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:10:06.852+03	2021-05-22 05:10:06.858+03	
afb1efea-6893-b9d4-a18f-f996cb430413	2021-05-22 05:10:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:10:26.853+03	2021-05-22 05:10:26.869+03	
26570084-e6e0-1b84-4508-212ffb7f11b7	2021-05-22 05:10:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:10:47.853+03	2021-05-22 05:10:47.868+03	
d977f19f-f205-dcb1-d3e8-e3811d9fb99f	2021-05-22 05:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:11:07.853+03	2021-05-22 05:11:07.86+03	
c69a2f62-7021-5957-e930-be4ffc71d6ad	2021-05-22 05:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:11:27.853+03	2021-05-22 05:11:27.86+03	
3ab9df14-54e4-79cf-55ab-ec0cfa2c57eb	2021-05-22 05:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:11:47.853+03	2021-05-22 05:11:47.864+03	
be5f188e-68c7-f215-5e44-23ab2cf8002b	2021-05-22 05:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:12:08.853+03	2021-05-22 05:12:08.861+03	
5af10435-2a0d-eea3-bd79-f5c741d15ed5	2021-05-22 05:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:12:28.853+03	2021-05-22 05:12:28.863+03	
f083a58a-da56-e86f-f4e1-2a6555ad9771	2021-05-22 05:12:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:12:49.853+03	2021-05-22 05:12:49.862+03	
98b65ece-80be-7614-2054-7cd1ca57ba64	2021-05-22 05:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:13:09.853+03	2021-05-22 05:13:09.862+03	
315c5685-39ca-9477-91f5-f4d68234b3fe	2021-05-22 05:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:13:29.853+03	2021-05-22 05:13:29.861+03	
7adb8b8d-86b7-7c7b-65fe-8f5c3a080bcc	2021-05-22 05:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:13:49.853+03	2021-05-22 05:13:49.861+03	
61ff147b-fac8-6ef4-dff4-d7614d802408	2021-05-22 05:14:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:14:10.853+03	2021-05-22 05:14:10.863+03	
8ac04c17-cef5-6e7c-55e6-fbfbc87a94b4	2021-05-22 05:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:14:30.853+03	2021-05-22 05:14:30.861+03	
8c6dbb69-4156-cac4-308d-95cc9b9a53cc	2021-05-22 05:14:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:14:51.854+03	2021-05-22 05:14:51.859+03	
06a14faa-f8f1-c5cb-5171-86a6a0ee1d00	2021-05-22 05:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:15:12.853+03	2021-05-22 05:15:12.861+03	
48cc797f-7b2e-8ef2-5df8-283334796522	2021-05-22 05:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:15:32.853+03	2021-05-22 05:15:32.863+03	
cc5c6ec6-7326-125c-a44c-b53b839eabcc	2021-05-22 05:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:15:53.853+03	2021-05-22 05:15:53.859+03	
18862d6f-c5f8-dd76-6da5-966ed87cf51a	2021-05-22 05:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:16:13.853+03	2021-05-22 05:16:13.86+03	
2412460e-749c-b3c5-d404-105f187c08a6	2021-05-22 05:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:16:34.853+03	2021-05-22 05:16:34.862+03	
7d2d5071-e50b-db3b-16f0-86971d3406ee	2021-05-22 05:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:16:55.853+03	2021-05-22 05:16:55.867+03	
1855e57f-f381-62cc-b892-6d29fb95bfae	2021-05-22 05:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:17:17.852+03	2021-05-22 05:17:17.875+03	
2059d3a0-0889-3bd5-034d-4beb7112a352	2021-05-22 05:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:17:38.852+03	2021-05-22 05:17:38.859+03	
9fe6db73-c12f-a808-f2be-85b61d8624b2	2021-05-22 05:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:17:58.853+03	2021-05-22 05:17:58.859+03	
2c4bde15-4489-a975-7697-f154a56624c4	2021-05-22 05:18:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:18:19.853+03	2021-05-22 05:18:19.862+03	
75b6bef3-6ad4-57fc-094d-c2698557ff1e	2021-05-22 05:18:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:18:39.853+03	2021-05-22 05:18:39.871+03	
7e0bf510-be51-a80a-02a8-383435e11086	2021-05-22 05:18:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:18:59.854+03	2021-05-22 05:18:59.863+03	
232b3150-3ce4-75d9-7073-9249d69d56d3	2021-05-22 05:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:19:20.852+03	2021-05-22 05:19:20.859+03	
ea305959-f611-a638-6ec6-e0b04c551d57	2021-05-22 05:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:19:40.852+03	2021-05-22 05:19:40.866+03	
d62368c3-0df7-77e4-ffe3-959c3361fb08	2021-05-22 05:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:19:50.852+03	2021-05-22 05:19:50.86+03	
d8eb68f7-722f-96f2-076c-13589f50cd4b	2021-05-22 05:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 05:20:00.853+03	2021-05-22 05:20:00.875+03	ERROR
4bdde83d-bf36-2d3a-6a78-5bc917542c8d	2021-05-22 05:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:20:10.853+03	2021-05-22 05:20:10.86+03	
10f5a99a-8621-c353-77c5-5997a14505a0	2021-05-22 05:20:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:20:31.853+03	2021-05-22 05:20:31.861+03	
c3a70b56-147f-ee81-b8b5-fbee18317f2d	2021-05-22 05:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:20:52.852+03	2021-05-22 05:20:52.859+03	
2f2ca690-49b8-389a-9131-511cf74cb636	2021-05-22 05:21:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:21:13.853+03	2021-05-22 05:21:13.861+03	
499a813a-94a1-87de-1d10-8009960c6826	2021-05-22 05:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:21:33.853+03	2021-05-22 05:21:33.86+03	
e6598e03-77df-a393-d680-8db2702be759	2021-05-22 05:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:21:55.852+03	2021-05-22 05:21:55.872+03	
27dad958-901c-98f6-f754-aaa80f3a0858	2021-05-22 05:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:22:15.853+03	2021-05-22 05:22:15.86+03	
4dbb3a24-7ea8-4019-fbae-0a173820353c	2021-05-22 05:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:22:35.853+03	2021-05-22 05:22:35.861+03	
719fe861-db12-668d-e522-9f6fc4d1e96f	2021-05-22 05:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:22:55.853+03	2021-05-22 05:22:55.871+03	
3deaa5da-c4cb-6a1f-888e-9813361c0555	2021-05-22 05:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:23:15.853+03	2021-05-22 05:23:15.865+03	
c5bd6425-5223-54d7-87c0-2b0d4d3d0193	2021-05-22 05:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:23:35.853+03	2021-05-22 05:23:35.862+03	
f08a9d66-9dae-7dff-1d0e-8d12a91a93a7	2021-05-22 05:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:23:55.853+03	2021-05-22 05:23:55.863+03	
8919efb2-ca99-6399-0ada-0e418101634e	2021-05-22 05:24:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:24:15.853+03	2021-05-22 05:24:15.865+03	
b9e76b4a-255e-7719-f2e0-3ef368b58ac2	2021-05-22 05:24:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:24:36.853+03	2021-05-22 05:24:36.863+03	
aca9826a-911b-15d8-c51d-b3088e7f6244	2021-05-22 05:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:24:57.853+03	2021-05-22 05:24:57.859+03	
7b1e42a3-af66-8e74-6d4a-2b33c8c52668	2021-05-22 05:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:25:18.852+03	2021-05-22 05:25:18.86+03	
506890e7-d88c-0453-85c7-09235087affc	2021-05-22 05:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:25:39.853+03	2021-05-22 05:25:39.865+03	
f704f3b0-a194-fce2-d736-a5252eb2d76c	2021-05-22 05:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:26:00.853+03	2021-05-22 05:26:00.861+03	
b0337a5e-7b3d-084e-6cd6-bde99f2aaa8e	2021-05-22 05:26:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:26:21.854+03	2021-05-22 05:26:21.863+03	
245edf20-62b0-f6b3-0d7c-ea01cd553b5b	2021-05-22 05:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:26:42.853+03	2021-05-22 05:26:42.864+03	
d2e7bb66-3450-1f2a-0eb6-4bc8b3a20d5d	2021-05-22 05:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:27:02.853+03	2021-05-22 05:27:02.863+03	
8ffd5794-1e45-f273-5c05-5142f456fb20	2021-05-22 05:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:27:23.852+03	2021-05-22 05:27:23.859+03	
aba7244a-b6a8-4159-5b81-ee8c3c0f7b88	2021-05-22 05:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:27:43.853+03	2021-05-22 05:27:43.87+03	
53af09c0-aa18-8c4c-988c-592a358f23c4	2021-05-22 05:28:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:28:04.853+03	2021-05-22 05:28:04.875+03	
087587a6-23a8-6607-a832-79ed6e3cdea8	2021-05-22 05:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:28:24.853+03	2021-05-22 05:28:24.859+03	
c1371840-b3bd-8210-12f6-7d0d4a051b79	2021-05-22 05:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:28:44.853+03	2021-05-22 05:28:44.86+03	
dffb0760-2617-d6aa-4764-781a0b9ef9a4	2021-05-22 05:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:29:05.852+03	2021-05-22 05:29:05.859+03	
5ffb8e50-648f-f8ac-bd02-0797759a6656	2021-05-22 05:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:29:25.853+03	2021-05-22 05:29:25.859+03	
00e41cb2-af3d-22dd-7bbc-a0fa09d5f8d1	2021-05-22 05:29:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:29:46.852+03	2021-05-22 05:29:46.86+03	
be6ce7d0-db51-d300-a732-66f7e0b2ef2e	2021-05-22 05:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 05:30:00.853+03	2021-05-22 05:30:00.869+03	ERROR
46310d1b-e755-3ae9-82d6-88b43e357bde	2021-05-22 05:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:30:17.853+03	2021-05-22 05:30:17.862+03	
7fcdf665-f9e8-66a8-5040-ca2b50e988ad	2021-05-22 05:30:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:30:38.853+03	2021-05-22 05:30:38.862+03	
0e433010-99a6-fb04-b49e-38e54c769200	2021-05-22 05:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:30:58.853+03	2021-05-22 05:30:58.86+03	
15184072-19d7-9978-fcbc-8830616bb0c4	2021-05-22 05:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:31:18.853+03	2021-05-22 05:31:18.86+03	
a3bb6767-9ed6-27ee-11ac-e9e9dce842aa	2021-05-22 05:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:31:38.853+03	2021-05-22 05:31:38.86+03	
b6cd840d-87d0-71ca-5de3-5c41f99142fa	2021-05-22 05:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:31:59.853+03	2021-05-22 05:31:59.86+03	
3ed83e06-6dc8-ab05-d1c3-3819ab591888	2021-05-22 05:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:32:19.853+03	2021-05-22 05:32:19.878+03	
191ab088-7ba8-defe-c496-2c0a45ac9af5	2021-05-22 05:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:32:39.853+03	2021-05-22 05:32:39.869+03	
96f44de7-95e6-5fbc-3ebf-a2a4be11315a	2021-05-22 05:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:32:59.853+03	2021-05-22 05:32:59.859+03	
65ba6092-0ca0-1bd6-34f3-d0708002c076	2021-05-22 05:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:33:19.853+03	2021-05-22 05:33:19.86+03	
95805aa9-887c-e120-3d9d-2c8a51ec0667	2021-05-22 05:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:33:39.853+03	2021-05-22 05:33:39.865+03	
a049eff3-2c0b-5d60-a440-e9ec3ce698dc	2021-05-22 05:34:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:34:00.853+03	2021-05-22 05:34:00.871+03	
f6c03d46-fd25-3ec0-3ecb-d625d1f3a409	2021-05-22 05:34:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:34:21.853+03	2021-05-22 05:34:21.869+03	
2980705f-fb85-b2fa-cb0a-4ad0f71bdb73	2021-05-22 05:34:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:34:41.853+03	2021-05-22 05:34:41.862+03	
3d1e1dcf-bde8-3aef-a2dd-83401582b756	2021-05-22 05:35:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:35:01.853+03	2021-05-22 05:35:01.904+03	
da85bdbc-498f-353e-cbbd-ab9ec4cff1a1	2021-05-22 05:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:35:22.852+03	2021-05-22 05:35:22.859+03	
cb18c698-3dd5-950b-94bd-03f2da63af48	2021-05-22 05:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:35:42.853+03	2021-05-22 05:35:42.859+03	
998df9be-3598-6fee-9880-f8a1db1c6002	2021-05-22 05:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:36:03.853+03	2021-05-22 05:36:03.862+03	
6121886b-83f3-2838-c41a-6d1ad0ea90b5	2021-05-22 05:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:36:23.853+03	2021-05-22 05:36:23.862+03	
8c392d34-d5a5-8ec3-6ad0-028a586af311	2021-05-22 05:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:36:43.853+03	2021-05-22 05:36:43.871+03	
9781889c-f0a4-75bf-d141-b60f4e26b654	2021-05-22 05:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:37:04.852+03	2021-05-22 05:37:04.862+03	
64a439a4-f941-b435-cb39-098ca374404f	2021-05-22 05:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:37:25.853+03	2021-05-22 05:37:25.859+03	
c5ec7ee4-6360-b98b-c8ef-cb5e3b06dd24	2021-05-22 05:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:37:45.853+03	2021-05-22 05:37:45.86+03	
ecbd5047-2605-35bd-0637-b3f6a4328859	2021-05-22 05:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:38:05.853+03	2021-05-22 05:38:05.862+03	
11d96b5d-0ac0-ccd2-ef35-8fc8931ab090	2021-05-22 05:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:38:26.853+03	2021-05-22 05:38:26.866+03	
ebb3b7fd-3bb5-60f6-b7ba-18fab04d9f42	2021-05-22 05:38:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:38:46.853+03	2021-05-22 05:38:46.861+03	
8ee2e607-7c7e-f3d1-9808-72b1c1621875	2021-05-22 05:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:39:07.853+03	2021-05-22 05:39:07.86+03	
91e1966b-3e5c-f7b5-55f5-79fb82d3693e	2021-05-22 05:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:39:27.853+03	2021-05-22 05:39:27.86+03	
9891ab5c-4c9e-8855-7edc-03773d5f623a	2021-05-22 05:39:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:39:58.853+03	2021-05-22 05:39:58.862+03	
3695af38-9cf3-3e90-bbc9-df412128d68c	2021-05-22 05:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:40:08.853+03	2021-05-22 05:40:08.862+03	
1f1bddb5-eed2-34cb-c300-5dd69d129142	2021-05-22 05:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:40:29.853+03	2021-05-22 05:40:29.872+03	
35dac14d-0359-abff-c38e-a1ab0a0fd8c8	2021-05-22 05:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:40:49.853+03	2021-05-22 05:40:49.86+03	
f474bd91-d10b-5769-9b38-df0d6809f490	2021-05-22 05:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:41:09.853+03	2021-05-22 05:41:09.863+03	
774020cf-05a9-a575-bebf-22ca939b3358	2021-05-22 05:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:41:29.853+03	2021-05-22 05:41:29.861+03	
3e827fb0-e817-da9a-0155-bb756480ec63	2021-05-22 05:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:41:49.853+03	2021-05-22 05:41:49.861+03	
49c47c05-f058-f836-c0fd-e2ef2ca03656	2021-05-22 05:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:42:09.853+03	2021-05-22 05:42:09.861+03	
402e3f0d-0b8f-7b07-5b9c-6f287259455f	2021-05-22 05:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:42:30.852+03	2021-05-22 05:42:30.859+03	
df869d52-2c43-9eb5-2303-ba93da4ba86f	2021-05-22 05:42:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:42:51.853+03	2021-05-22 05:42:51.861+03	
d5c70d7a-397c-3e3c-424b-8094eb03b0c8	2021-05-22 05:43:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:43:11.854+03	2021-05-22 05:43:11.862+03	
ee7afe27-2850-1062-9868-c2fa5ae6b3e2	2021-05-22 05:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:43:32.853+03	2021-05-22 05:43:32.859+03	
9b8ceddd-2bb2-15ed-e0b1-f6ce01c0b520	2021-05-22 05:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:43:52.853+03	2021-05-22 05:43:52.861+03	
7d86719c-dc28-f2e0-eb2e-a12c3e3c430f	2021-05-22 05:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:44:12.853+03	2021-05-22 05:44:12.863+03	
a19d141b-8699-86a4-fa80-f3f8797c2552	2021-05-22 05:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:44:33.853+03	2021-05-22 05:44:33.864+03	
360831ac-940a-5ad5-c9a8-d3bfae122505	2021-05-22 05:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:44:53.853+03	2021-05-22 05:44:53.86+03	
3156ec88-878b-e9a0-3d3c-2405ea69ac06	2021-05-22 05:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:45:13.853+03	2021-05-22 05:45:13.869+03	
b07a9e9f-1684-81e7-844a-705d07e758d3	2021-05-22 05:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:24:47.852+03	2021-05-22 05:24:47.86+03	
49bea139-af01-92bf-05ba-ce58f2d5c514	2021-05-22 05:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:25:08.852+03	2021-05-22 05:25:08.863+03	
3fe8647e-9288-5d6e-ff8b-3032777b06a0	2021-05-22 05:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:25:28.853+03	2021-05-22 05:25:28.86+03	
472fe679-6c6b-deec-293d-51303b7afcc7	2021-05-22 05:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:25:49.853+03	2021-05-22 05:25:49.861+03	
d7963a64-c234-282a-8a73-20ff4af6f6df	2021-05-22 05:26:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:26:11.853+03	2021-05-22 05:26:11.916+03	
a4bdaa86-e45e-2f05-3883-602b189cf02f	2021-05-22 05:26:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:26:32.853+03	2021-05-22 05:26:32.86+03	
f966cbba-9752-50d1-1085-0feea1baabff	2021-05-22 05:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:26:52.853+03	2021-05-22 05:26:52.873+03	
2346167c-1d0a-5e63-17af-0f797d4f0d5b	2021-05-22 05:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:27:13.852+03	2021-05-22 05:27:13.864+03	
0807bf96-4f2a-d324-cef7-abac883ca76e	2021-05-22 05:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:27:33.852+03	2021-05-22 05:27:33.858+03	
c8d1a52f-d253-837d-13cb-63b404b510f6	2021-05-22 05:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:27:53.853+03	2021-05-22 05:27:53.859+03	
f9449b37-37e3-688d-3fcf-03511f01dda9	2021-05-22 05:28:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:28:14.853+03	2021-05-22 05:28:14.865+03	
74c03aa3-90a2-672e-874a-b68e7a3efab2	2021-05-22 05:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:28:34.853+03	2021-05-22 05:28:34.864+03	
e7cacbff-9d22-7863-a929-d9f70e597e30	2021-05-22 05:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:28:55.852+03	2021-05-22 05:28:55.872+03	
f7fae53f-12a9-eb10-708c-80c84372945b	2021-05-22 05:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:29:15.852+03	2021-05-22 05:29:15.87+03	
f74cd3d9-e298-d8fe-5dfb-db1eccc10aed	2021-05-22 05:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:29:35.853+03	2021-05-22 05:29:35.861+03	
13735049-14fb-c0c6-bc30-1fb6771c84af	2021-05-22 05:29:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:29:56.854+03	2021-05-22 05:29:56.861+03	
434b5873-c894-987f-f0d9-8a7d2181cd7a	2021-05-22 05:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:30:07.853+03	2021-05-22 05:30:07.859+03	
408a90f4-de69-0937-73f9-f57e12167924	2021-05-22 05:30:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:30:28.853+03	2021-05-22 05:30:28.859+03	
0e73a60d-937e-64b4-bd83-2087f8b9b1c3	2021-05-22 05:30:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:30:48.853+03	2021-05-22 05:30:48.86+03	
5a043634-8314-eae0-bd44-5649f12e1b0e	2021-05-22 05:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:31:08.853+03	2021-05-22 05:31:08.864+03	
1548ddf9-371f-e9af-9813-edf6ab32d2df	2021-05-22 05:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:31:28.853+03	2021-05-22 05:31:28.865+03	
88f4750d-e3e9-92db-af6e-156248bae561	2021-05-22 05:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:31:49.853+03	2021-05-22 05:31:49.859+03	
dc113051-d7f5-d226-26c7-04e4baf9cb96	2021-05-22 05:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:32:09.853+03	2021-05-22 05:32:09.859+03	
b30f34fa-ca9d-84df-1c88-61e34df6a8aa	2021-05-22 05:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:32:29.853+03	2021-05-22 05:32:29.859+03	
9fe26b76-55ef-29f4-9ef9-3bdaeab2ed24	2021-05-22 05:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:32:49.853+03	2021-05-22 05:32:49.862+03	
dec57c8d-7a1a-77c4-1ebe-b4150082dc3e	2021-05-22 05:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:33:09.853+03	2021-05-22 05:33:09.86+03	
2c4b054b-6920-e65c-1f46-99d8dd91be7c	2021-05-22 05:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:33:29.853+03	2021-05-22 05:33:29.861+03	
d20dd592-cf00-3373-a39d-3c453f4f980e	2021-05-22 05:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:33:49.853+03	2021-05-22 05:33:49.86+03	
7eb7e007-97a3-6bc1-8af7-3756f3f54015	2021-05-22 05:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:34:11.853+03	2021-05-22 05:34:11.859+03	
ea1820e5-6685-1974-7306-c18c8358fe68	2021-05-22 05:34:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:34:31.853+03	2021-05-22 05:34:31.868+03	
00c17c1a-570f-1ea2-4d29-cb25ffa6db5a	2021-05-22 05:34:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:34:51.853+03	2021-05-22 05:34:51.861+03	
22ba9a9a-37be-c140-4bbf-4f0d2bc3c595	2021-05-22 05:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:35:12.852+03	2021-05-22 05:35:12.859+03	
23474a1b-67b3-b1d6-f7c1-b32f961fbad6	2021-05-22 05:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:35:32.853+03	2021-05-22 05:35:32.862+03	
114f9aa9-b14c-5332-77e7-951fb13a47d4	2021-05-22 05:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:35:53.852+03	2021-05-22 05:35:53.861+03	
791eb25f-6af3-d16a-4f20-40cb4d8a5b14	2021-05-22 05:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:36:13.853+03	2021-05-22 05:36:13.859+03	
c8d18c4d-e8b9-09a8-e9d0-abfa29bc93f4	2021-05-22 05:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:36:33.853+03	2021-05-22 05:36:33.859+03	
771aa62d-c9cd-5401-cdc1-73e4097abb8e	2021-05-22 05:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:36:54.852+03	2021-05-22 05:36:54.86+03	
8a133a0c-4fca-ecb8-c12b-1df29159b623	2021-05-22 05:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:37:14.853+03	2021-05-22 05:37:14.864+03	
19da5311-0e34-4ac7-20e2-396bc33e5ffa	2021-05-22 05:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:37:35.853+03	2021-05-22 05:37:35.86+03	
46f94487-c8b1-e08f-4257-49a9effb5aed	2021-05-22 05:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:37:55.853+03	2021-05-22 05:37:55.861+03	
e50a706f-733b-745b-d458-a8e614989850	2021-05-22 05:38:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:38:16.852+03	2021-05-22 05:38:16.86+03	
72583c97-5683-55d3-087c-fb7b99c3aa1d	2021-05-22 05:38:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:38:36.853+03	2021-05-22 05:38:36.861+03	
b6958d32-c047-8806-1ad7-35163c7a89ae	2021-05-22 05:38:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:38:56.854+03	2021-05-22 05:38:56.864+03	
e9026d1c-d920-b889-1bbe-d46de0eaffb4	2021-05-22 05:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:39:17.853+03	2021-05-22 05:39:17.86+03	
5b2a24c6-b70c-bd4a-480c-b02cb3f7b158	2021-05-22 05:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:39:38.853+03	2021-05-22 05:39:38.859+03	
5c2adb3e-d6ed-9dae-7d4a-488b3581a389	2021-05-22 05:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:39:48.853+03	2021-05-22 05:39:48.86+03	
b951429c-bc06-9d99-035a-2a5d0f909ec1	2021-05-22 05:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 05:40:00.853+03	2021-05-22 05:40:00.866+03	ERROR
8172f216-4122-196e-89cc-60737dde1678	2021-05-22 05:40:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:40:18.853+03	2021-05-22 05:40:18.863+03	
f2b971b1-1a57-5531-9058-7b60d1f835be	2021-05-22 05:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:40:39.853+03	2021-05-22 05:40:39.861+03	
377af174-5de0-6b3b-e9df-55ca873310f5	2021-05-22 05:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:40:59.853+03	2021-05-22 05:40:59.862+03	
04359602-fc2c-9199-6918-d9d0ca477c84	2021-05-22 05:41:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:41:19.853+03	2021-05-22 05:41:19.861+03	
a996a8d3-8c4c-ea93-dca6-20ac3cc7a1ef	2021-05-22 05:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:41:39.853+03	2021-05-22 05:41:39.862+03	
e1713b24-1fbe-f382-ea9b-8fc313ef0b1f	2021-05-22 05:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:41:59.853+03	2021-05-22 05:41:59.862+03	
e3c9be41-f083-c0c7-0b9c-e78b346a0ba4	2021-05-22 05:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:42:19.853+03	2021-05-22 05:42:19.861+03	
b022137d-b9f3-c5f3-4a48-6ec7f10a57a4	2021-05-22 05:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:42:40.853+03	2021-05-22 05:42:40.859+03	
8bd9714e-8390-0b71-c308-d8e2c627f25a	2021-05-22 05:43:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:43:01.854+03	2021-05-22 05:43:01.863+03	
ad4d32f6-a2f4-f221-2bc1-da29a23ebc23	2021-05-22 05:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:43:22.853+03	2021-05-22 05:43:22.862+03	
13c4a14e-ac98-a023-6c65-6857d4aa3d29	2021-05-22 05:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:43:42.853+03	2021-05-22 05:43:42.861+03	
0b15aa9d-fd5a-6a5b-b4f3-fbf3850d1729	2021-05-22 05:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:44:02.853+03	2021-05-22 05:44:02.86+03	
e366769b-5498-39c1-6a76-9acfc47e9fa2	2021-05-22 05:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:44:23.853+03	2021-05-22 05:44:23.861+03	
1c9ccb2b-a2ee-5ad7-32bf-0313eb47dccb	2021-05-22 05:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:44:43.853+03	2021-05-22 05:44:43.863+03	
85e00e6f-ec7e-a28c-0377-16fac23b739b	2021-05-22 05:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:45:03.853+03	2021-05-22 05:45:03.861+03	
869c4c41-6f85-3447-8644-5969ddb536cc	2021-05-22 05:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:45:23.853+03	2021-05-22 05:45:23.862+03	
8bc283f3-2fc9-4ac8-c618-3cb9a8171cbe	2021-05-23 02:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:35:52.853+03	2021-05-23 02:35:52.861+03	
9e066df4-e002-36c9-5641-f0c335d7ba97	2021-05-22 05:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:45:33.853+03	2021-05-22 05:45:33.869+03	
66993b73-667e-adbc-0b40-dc8a9e14dfb0	2021-05-22 10:57:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:57:21.854+03	2021-05-22 10:57:21.862+03	
424f4026-df62-5961-b4f6-f53217b890ab	2021-05-22 05:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:45:53.853+03	2021-05-22 05:45:53.859+03	
2f6ccdd9-8dbd-c8f9-34fe-d5a76eaa913c	2021-05-22 05:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:46:14.853+03	2021-05-22 05:46:14.859+03	
4f292ad7-9918-a59f-0043-1b13c18ed21c	2021-05-22 10:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:57:42.853+03	2021-05-22 10:57:42.862+03	
a08b7e7a-7037-7024-dabe-ba1f9283582c	2021-05-22 05:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:46:35.853+03	2021-05-22 05:46:35.861+03	
07cd09c4-ad8a-3fda-2fef-4cc7abd8a2f9	2021-05-22 05:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:46:55.853+03	2021-05-22 05:46:55.873+03	
34ea66ae-bf1f-c4f4-294b-6eec34bd5dbe	2021-05-22 10:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:58:02.853+03	2021-05-22 10:58:02.873+03	
e8c40bf0-01a6-8b82-025f-08314b16b72d	2021-05-22 05:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:47:15.853+03	2021-05-22 05:47:15.859+03	
52e718c7-4f81-c31f-f5df-b47f1697b74a	2021-05-22 05:47:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:47:36.854+03	2021-05-22 05:47:36.86+03	
eff45a75-8c10-39a4-402f-fb0597c9a656	2021-05-22 10:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:58:22.853+03	2021-05-22 10:58:22.861+03	
a1a60b32-c5d3-79c0-c91d-e162c8189413	2021-05-22 05:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:47:57.853+03	2021-05-22 05:47:57.859+03	
96a0ac1b-d4c5-f48d-a5b3-d28dce395c6a	2021-05-22 05:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:48:17.853+03	2021-05-22 05:48:17.862+03	
ab0c7f8c-c788-b3ed-879d-164f7b103b38	2021-05-22 10:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:58:42.853+03	2021-05-22 10:58:42.861+03	
9b994b4f-2c06-a7d9-1806-88f9ac4cb172	2021-05-22 05:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:48:38.853+03	2021-05-22 05:48:38.859+03	
7501a2a0-6e23-37a1-1182-1d856e927312	2021-05-22 05:48:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:48:59.852+03	2021-05-22 05:48:59.859+03	
0a939ab9-9365-1d84-0463-69c12fb61d16	2021-05-22 10:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:59:02.853+03	2021-05-22 10:59:02.861+03	
2a6fea30-b716-baf0-92c0-90299adfa258	2021-05-22 05:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:49:19.853+03	2021-05-22 05:49:19.861+03	
17b3e623-8830-21ff-e05b-a51bb4ec2721	2021-05-22 05:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:49:39.853+03	2021-05-22 05:49:39.861+03	
c9756839-7454-699a-0c37-ee5529f11a52	2021-05-22 10:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:59:22.853+03	2021-05-22 10:59:22.859+03	
2abc62ab-ae95-658f-56fc-40ae025c7a77	2021-05-22 05:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:49:59.853+03	2021-05-22 05:49:59.86+03	
f5a5b840-0dcf-db09-32c5-fa118b178621	2021-05-22 05:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:50:09.853+03	2021-05-22 05:50:09.861+03	
feb4cfbf-6c67-efce-1ddb-5c86adcbed7c	2021-05-22 10:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:59:42.853+03	2021-05-22 10:59:42.861+03	
c929b188-dd9f-08cf-4138-8b463d12b113	2021-05-22 05:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:50:30.853+03	2021-05-22 05:50:30.861+03	
a8e44f63-e9ad-4445-ff0c-4ef1ce9d673f	2021-05-22 05:50:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:50:50.853+03	2021-05-22 05:50:50.861+03	
a3799833-07d3-f4b6-4758-0d468ff7c1c7	2021-05-22 11:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 11:00:00.853+03	2021-05-22 11:00:00.859+03	ERROR
b50be3fb-320f-4ca6-7d5f-ea0798d59e70	2021-05-22 11:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:00:12.853+03	2021-05-22 11:00:12.861+03	
9918519c-8d34-72d3-557f-cf020d0038fa	2021-05-22 11:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:00:32.853+03	2021-05-22 11:00:32.865+03	
96b9b433-0bad-11a5-0925-bbca1a5cf1ba	2021-05-22 11:00:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:00:52.853+03	2021-05-22 11:00:52.86+03	
0d742c54-34e5-cd6a-6065-2f45bc35082b	2021-05-22 11:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:01:12.853+03	2021-05-22 11:01:12.86+03	
756a01fd-3144-2252-c2e7-3d67ae878d91	2021-05-22 11:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:01:32.853+03	2021-05-22 11:01:32.862+03	
830dc97e-fe66-55c0-953b-800c490871bf	2021-05-22 11:01:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:01:52.853+03	2021-05-22 11:01:52.863+03	
c08f940b-9032-99d3-0258-769c3906f121	2021-05-22 11:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:02:12.853+03	2021-05-22 11:02:12.89+03	
643d8d28-0176-100f-8df2-88d2e6ab41cd	2021-05-22 11:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:02:32.853+03	2021-05-22 11:02:32.862+03	
a671541b-71df-251c-98e3-848677d20344	2021-05-22 11:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:02:52.853+03	2021-05-22 11:02:52.86+03	
ec3f4928-dd0f-a717-e3f7-deb3cf6c6149	2021-05-22 11:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:03:12.853+03	2021-05-22 11:03:12.863+03	
717e7d47-e583-d16f-e180-a2e808e6e41d	2021-05-22 11:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:03:32.853+03	2021-05-22 11:03:32.878+03	
0d86d2ba-5272-e186-0721-59506bf96c52	2021-05-22 11:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:03:52.853+03	2021-05-22 11:03:52.862+03	
d7fc94e1-0a4f-f227-3279-19fdade3d823	2021-05-22 11:04:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:04:12.853+03	2021-05-22 11:04:12.861+03	
b34d01a7-cd09-b6b9-2b95-2813b1176861	2021-05-22 11:04:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:04:32.853+03	2021-05-22 11:04:32.861+03	
610279bd-510c-e392-d0f0-1058f715e340	2021-05-22 11:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:04:52.853+03	2021-05-22 11:04:52.862+03	
89d71017-b6e2-6bef-bef9-a0f38decc404	2021-05-22 11:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:05:13.852+03	2021-05-22 11:05:13.901+03	
13f0ccf7-14a6-caf0-0e24-86ac55dfd0b0	2021-05-22 11:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:05:33.853+03	2021-05-22 11:05:33.859+03	
6846dbc7-2a11-4ad3-3872-1c2f58c8d0a4	2021-05-22 11:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:05:53.853+03	2021-05-22 11:05:53.864+03	
df61e906-99ad-fb9f-3912-3c556ee77b30	2021-05-22 11:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:06:14.853+03	2021-05-22 11:06:14.86+03	
04890d1b-7a9b-49fe-099d-91468843ecc2	2021-05-22 11:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:06:35.853+03	2021-05-22 11:06:35.859+03	
0daf49eb-ea54-e130-e3b3-1ac3603ac9bc	2021-05-22 11:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:06:55.853+03	2021-05-22 11:06:55.859+03	
fa6dfbb1-c8f4-9fba-9d76-515207814e01	2021-05-22 11:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:07:16.853+03	2021-05-22 11:07:16.864+03	
b4f49d72-76b7-c74c-c650-965c554baa91	2021-05-22 11:07:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:07:36.853+03	2021-05-22 11:07:36.868+03	
fd711ce5-ed36-1d3a-b518-87a87dac5b72	2021-05-22 11:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:07:58.853+03	2021-05-22 11:07:58.862+03	
36ba95f1-cf1c-c359-e1f6-8e25d4144f84	2021-05-22 11:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:08:19.852+03	2021-05-22 11:08:19.86+03	
44852e35-5cd6-832b-d2c0-a9b6f2363430	2021-05-22 11:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:08:39.853+03	2021-05-22 11:08:39.861+03	
85187c5b-121f-0c3b-eeca-767ac5a938d6	2021-05-22 11:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:09:00.853+03	2021-05-22 11:09:00.86+03	
065166f6-d3d5-37c1-333e-fc655eaa291a	2021-05-22 11:09:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:09:21.852+03	2021-05-22 11:09:21.862+03	
9370871d-f1bf-6496-e488-e7a5f9ef6dca	2021-05-22 11:09:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:09:41.854+03	2021-05-22 11:09:41.863+03	
c12c319c-1980-69bb-6e1a-2fbe5b791519	2021-05-22 11:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 11:10:00.853+03	2021-05-22 11:10:00.859+03	ERROR
248bd26c-ef82-da0b-572c-dc5f5e2066f0	2021-05-22 11:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:10:12.853+03	2021-05-22 11:10:12.869+03	
f3d59ee2-513c-51ce-c944-66875b8d56c4	2021-05-22 11:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:10:33.853+03	2021-05-22 11:10:33.864+03	
26838ba1-c479-5f60-0d48-6e105f69068d	2021-05-22 11:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:10:54.853+03	2021-05-22 11:10:54.86+03	
9f1da851-42d8-8eaf-05d7-2ba9f13239b8	2021-05-22 11:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:11:14.853+03	2021-05-22 11:11:14.86+03	
ee941efe-4180-c0bb-4d7e-daacea6e5712	2021-05-22 11:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:11:34.853+03	2021-05-22 11:11:34.859+03	
391ee0d9-2393-a043-9495-ab677c024bea	2021-05-22 11:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:11:55.852+03	2021-05-22 11:11:55.86+03	
9214c55c-6110-2a5b-5f75-0d55441db7a6	2021-05-22 11:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:12:15.852+03	2021-05-22 11:12:15.867+03	
0ee32bc3-6c49-09e6-0a0c-80e4f21d9075	2021-05-22 05:45:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:45:43.853+03	2021-05-22 05:45:43.871+03	
d1b095b0-6514-d850-7451-361e354babc7	2021-05-22 05:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:46:03.853+03	2021-05-22 05:46:03.86+03	
79fd32a3-9f37-3b8e-7dba-f55a784644a8	2021-05-22 05:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:46:24.853+03	2021-05-22 05:46:24.872+03	
957e9758-478c-5ee5-347f-1020b25c7d6c	2021-05-22 05:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:46:45.853+03	2021-05-22 05:46:45.863+03	
e6d4a65e-17a7-43b4-b970-04524685b422	2021-05-22 05:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:47:05.853+03	2021-05-22 05:47:05.861+03	
caf8b12b-7915-2976-7450-34d55fc022d6	2021-05-22 05:47:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:47:26.852+03	2021-05-22 05:47:26.861+03	
755069a0-0c45-b59b-2fd0-6f59e3636c1e	2021-05-22 05:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:47:47.853+03	2021-05-22 05:47:47.859+03	
b791e361-2373-9d59-333c-34520c76602a	2021-05-22 05:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:48:07.853+03	2021-05-22 05:48:07.862+03	
c3a73c07-b467-55e0-c521-c15a46243722	2021-05-22 05:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:48:27.853+03	2021-05-22 05:48:27.86+03	
b3dec90b-68b9-56fc-176e-bfc897932676	2021-05-22 05:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:48:48.853+03	2021-05-22 05:48:48.86+03	
43cc3cef-e196-3333-99a7-065ad9420686	2021-05-22 05:49:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:49:09.852+03	2021-05-22 05:49:09.859+03	
e977d1f4-51a4-bbd2-148e-cabc75e40afa	2021-05-22 05:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:49:29.853+03	2021-05-22 05:49:29.859+03	
be595567-91ff-f54d-2370-9fbd90d121b5	2021-05-22 05:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:49:49.853+03	2021-05-22 05:49:49.86+03	
2ab0d18d-a498-0708-6cd7-0e17399ec04c	2021-05-22 05:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 05:50:00.853+03	2021-05-22 05:50:00.857+03	ERROR
afb5c723-28fc-f12c-29a0-ea9647646fa3	2021-05-22 05:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:50:19.853+03	2021-05-22 05:50:19.859+03	
a41cee74-8b09-d9f4-8534-d414e2d6c9a8	2021-05-22 05:50:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:50:40.853+03	2021-05-22 05:50:40.862+03	
00f6e9ad-299f-fc08-0ddc-845490599bb4	2021-05-22 05:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:51:00.853+03	2021-05-22 05:51:00.86+03	
95d46acd-92f4-aa17-b771-957ad8bcf3ad	2021-05-22 05:51:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:51:10.853+03	2021-05-22 05:51:10.862+03	
6aff994a-0839-3546-e1a3-68aa6ac0c6bd	2021-05-22 05:51:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:51:20.853+03	2021-05-22 05:51:20.861+03	
1d47f350-23a1-f7f7-2368-5b15cd332059	2021-05-22 05:51:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:51:31.853+03	2021-05-22 05:51:31.861+03	
605b2b3c-9ee0-f793-fd88-a0562785e447	2021-05-22 05:51:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:51:42.853+03	2021-05-22 05:51:42.861+03	
da08d7c3-90ea-4f36-26ed-5b53a267f76d	2021-05-22 05:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:51:52.853+03	2021-05-22 05:51:52.859+03	
4f85c45b-a5c9-f9f8-9ea5-523e9a39ef67	2021-05-22 05:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:52:02.853+03	2021-05-22 05:52:02.859+03	
b00a48e6-c295-734b-64e8-9dbebd62c38a	2021-05-22 05:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:52:13.853+03	2021-05-22 05:52:13.859+03	
4e532146-f02f-926b-b08f-4f8537bd2ce8	2021-05-22 05:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:52:24.853+03	2021-05-22 05:52:24.869+03	
323c5708-d05c-2fb0-9321-7c657a1841c5	2021-05-22 05:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:52:34.853+03	2021-05-22 05:52:34.859+03	
e2dc623f-561c-ad11-8962-f0a2167ffe9b	2021-05-22 05:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:52:45.852+03	2021-05-22 05:52:45.86+03	
54033431-e7d8-de0b-f0c7-ec5082938f97	2021-05-22 05:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:52:55.853+03	2021-05-22 05:52:55.869+03	
4ddad637-856b-4d8d-929c-2710386a5d8c	2021-05-22 05:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:53:05.853+03	2021-05-22 05:53:05.862+03	
646c2c26-8dc4-a977-5730-b34e422935d6	2021-05-22 05:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:53:15.853+03	2021-05-22 05:53:15.86+03	
951f7a52-0edc-b028-4466-d9346ab70804	2021-05-22 05:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:53:25.853+03	2021-05-22 05:53:25.861+03	
b3e7e8ec-84b5-1362-44c4-9f6c77f5362b	2021-05-22 05:53:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:53:36.852+03	2021-05-22 05:53:36.859+03	
bf2463fc-fb5b-aca5-90b9-2500c06964f7	2021-05-22 05:53:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:53:46.852+03	2021-05-22 05:53:46.859+03	
15769355-0542-3029-2223-8b234a9d07c2	2021-05-22 05:53:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:53:56.853+03	2021-05-22 05:53:56.861+03	
aa06d2e3-8f1e-631b-a854-615f25b398d9	2021-05-22 05:54:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:54:06.853+03	2021-05-22 05:54:06.859+03	
b8a7d6ea-dfbf-87e6-b70a-762a68b84c32	2021-05-22 05:54:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:54:16.855+03	2021-05-22 05:54:16.863+03	
4e7026c0-14e6-b2da-6bb6-c942cb442be8	2021-05-22 05:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:54:27.852+03	2021-05-22 05:54:27.86+03	
16e8b6f6-538f-6815-2ab4-fdf6a4c39b45	2021-05-22 05:54:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:54:37.853+03	2021-05-22 05:54:37.86+03	
900951bc-b9d0-e4fe-9121-ac6f210d4888	2021-05-22 05:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:54:47.853+03	2021-05-22 05:54:47.861+03	
1feb6610-3ed0-c9ea-c60a-76c2abef7208	2021-05-22 05:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:54:57.853+03	2021-05-22 05:54:57.859+03	
22344fc6-2023-59b2-a524-75261d9a94d1	2021-05-22 05:55:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:55:07.853+03	2021-05-22 05:55:07.861+03	
9e508abb-188a-ee8e-ad76-193f54d3d354	2021-05-22 05:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:55:17.853+03	2021-05-22 05:55:17.86+03	
4667c70a-6ef4-7b3e-a000-54bb708c016c	2021-05-22 05:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:55:28.853+03	2021-05-22 05:55:28.86+03	
e4390ae6-42a3-287a-39bf-cb5af4a0fb72	2021-05-22 05:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:55:38.853+03	2021-05-22 05:55:38.859+03	
a4ac86ee-ab03-f720-84bd-284fc9697088	2021-05-22 05:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:55:48.853+03	2021-05-22 05:55:48.86+03	
c9cbc6b6-0706-7ede-b17e-39f426c2e784	2021-05-22 05:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:55:58.853+03	2021-05-22 05:55:58.86+03	
ec261259-23fb-69ec-5489-deda1a42b8b1	2021-05-22 05:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:56:09.853+03	2021-05-22 05:56:09.863+03	
d78554a2-e2de-8be0-daa0-cacf76f60c15	2021-05-22 05:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:56:19.853+03	2021-05-22 05:56:19.86+03	
40c94406-80db-a080-467c-03f30fee9820	2021-05-22 05:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:56:29.853+03	2021-05-22 05:56:29.86+03	
6124b95a-c32d-15bf-1d60-32a2d68707dd	2021-05-22 05:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:56:40.853+03	2021-05-22 05:56:40.872+03	
3da22b50-c5f2-d378-aaef-0592ad3dd80e	2021-05-22 05:56:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:56:50.853+03	2021-05-22 05:56:50.863+03	
17fd1f66-fd19-b710-3c7e-afc26b4b3c0a	2021-05-22 05:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:57:00.853+03	2021-05-22 05:57:00.86+03	
fb1c09ab-5e8e-2062-7795-7f7822ea86ea	2021-05-22 05:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:57:10.853+03	2021-05-22 05:57:10.859+03	
e9722f15-2fd7-266c-36f1-227f415962d2	2021-05-22 05:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:57:20.853+03	2021-05-22 05:57:20.86+03	
3627a025-b28b-ee19-3419-ea96fb356c2c	2021-05-22 05:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:57:30.853+03	2021-05-22 05:57:30.86+03	
18275d97-8c46-c4b7-c963-05de13c87b72	2021-05-22 05:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:57:40.853+03	2021-05-22 05:57:40.859+03	
c90c4b05-d61a-4ca2-e5ee-4d766cab9cf6	2021-05-22 05:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:57:50.853+03	2021-05-22 05:57:50.867+03	
70850207-6b14-6344-af8d-529632bfbf9e	2021-05-22 05:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:58:00.853+03	2021-05-22 05:58:00.861+03	
6a17058b-c14a-456f-ad25-1efc2f40d0e0	2021-05-22 05:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:58:10.853+03	2021-05-22 05:58:10.863+03	
1100c565-17b9-6a44-2779-09fc44fa5962	2021-05-22 05:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:58:20.853+03	2021-05-22 05:58:20.86+03	
c09e3b90-6692-9ebc-9756-ba4e8ed0dbfb	2021-05-22 05:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:58:30.853+03	2021-05-22 05:58:30.862+03	
c1c158af-6215-aa48-97d3-8a4c3f06cbce	2021-05-22 05:58:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:58:41.852+03	2021-05-22 05:58:41.861+03	
2d353a09-2a35-18ae-4891-c34485abe4cb	2021-05-22 05:58:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:58:51.854+03	2021-05-22 05:58:51.877+03	
473394da-6206-1569-b641-b01158442b5c	2021-05-22 05:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:59:02.853+03	2021-05-22 05:59:02.861+03	
b4040f75-4c6e-59a5-845e-f6e4f6b91b90	2021-05-22 05:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:59:23.853+03	2021-05-22 05:59:23.861+03	
ffcfe4ea-4258-26cf-02eb-7c8a14cb7574	2021-05-22 05:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:59:43.853+03	2021-05-22 05:59:43.862+03	
1f84122c-faf8-0e78-1f63-f033c0a0b9a8	2021-05-22 06:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 06:00:00.853+03	2021-05-22 06:00:00.858+03	ERROR
ebdb9a94-b7a4-dff1-e1b1-9896f5f47094	2021-05-22 06:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:00:13.853+03	2021-05-22 06:00:13.88+03	
d67b0d86-0e6c-67c4-0a53-1c690aacfcd7	2021-05-22 06:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:00:33.853+03	2021-05-22 06:00:33.871+03	
c6554532-0274-7c19-d8a9-3ea16a424324	2021-05-22 06:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:00:54.853+03	2021-05-22 06:00:54.871+03	
2d667e92-2456-6397-922f-1453be5194cb	2021-05-22 06:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:01:14.853+03	2021-05-22 06:01:14.861+03	
9f94e5a7-57b3-16d8-7c64-bf1c6be68540	2021-05-22 06:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:01:35.853+03	2021-05-22 06:01:35.862+03	
5bfca39d-486b-aae5-5682-92051373396f	2021-05-22 06:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:01:55.853+03	2021-05-22 06:01:55.859+03	
0c8c6426-0398-406e-29fa-f2df02746a6b	2021-05-22 06:02:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:02:16.853+03	2021-05-22 06:02:16.86+03	
d456d688-4fde-525b-1f12-ba0168746416	2021-05-22 06:02:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:02:36.853+03	2021-05-22 06:02:36.861+03	
8b4db393-f3ab-f8ef-e820-6b6872ca2354	2021-05-22 06:02:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:02:56.853+03	2021-05-22 06:02:56.86+03	
fe376377-fad9-db50-bbd0-c3404f141eca	2021-05-22 06:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:03:17.852+03	2021-05-22 06:03:17.873+03	
8f56486f-a740-34fe-4b71-842569f76d37	2021-05-22 06:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:03:37.853+03	2021-05-22 06:03:37.859+03	
9da0085f-c965-97c3-c265-fd10b6d4951a	2021-05-22 06:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:03:57.853+03	2021-05-22 06:03:57.859+03	
87c6db4e-3f87-e0a9-7817-508b1ab70010	2021-05-22 06:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:04:18.853+03	2021-05-22 06:04:18.862+03	
12a3332b-ea23-930a-b501-04fec09409fb	2021-05-22 06:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:04:39.853+03	2021-05-22 06:04:39.86+03	
7fc24203-3739-31ed-26fb-6b1a5952141e	2021-05-22 06:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:05:00.853+03	2021-05-22 06:05:00.861+03	
17732587-71f8-9181-af02-d8f4fc31f5f6	2021-05-22 06:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:05:20.853+03	2021-05-22 06:05:20.859+03	
8cd127a8-9fc3-12f3-b4d8-521271d9d647	2021-05-22 06:05:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:05:41.853+03	2021-05-22 06:05:41.859+03	
d747bdca-fa03-1bd0-1e90-6e98a5960fdc	2021-05-22 06:06:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:06:01.853+03	2021-05-22 06:06:01.861+03	
493175fe-416f-f577-9931-19d51dea119f	2021-05-22 06:06:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:06:21.854+03	2021-05-22 06:06:21.86+03	
6f9e764c-1f2d-013e-0a3d-332d91bfadfe	2021-05-22 06:06:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:06:42.852+03	2021-05-22 06:06:42.859+03	
144a23c8-35a1-bc4b-207e-a124f9ee23d7	2021-05-22 06:07:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:07:02.853+03	2021-05-22 06:07:02.86+03	
aa47c33e-ac6f-1be8-3fcf-64bf29e60dd8	2021-05-22 06:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:07:23.853+03	2021-05-22 06:07:23.859+03	
97c20cdb-b4f7-3ea4-b81c-a90021352465	2021-05-22 06:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:07:44.853+03	2021-05-22 06:07:44.859+03	
6749833a-c504-b40d-a5c6-6303a6d77945	2021-05-22 06:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:08:04.853+03	2021-05-22 06:08:04.86+03	
38f8acf6-a3f8-4122-cba0-08f72626c150	2021-05-22 06:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:08:24.853+03	2021-05-22 06:08:24.861+03	
f57004b1-bb76-c742-d3fe-9d959b3391c2	2021-05-22 06:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:08:44.853+03	2021-05-22 06:08:44.863+03	
d75c7247-aca1-b3d5-953d-e2496655de07	2021-05-22 06:09:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:09:04.853+03	2021-05-22 06:09:04.862+03	
3597cfbc-9bd4-91ed-dbbb-fb1f2f3a07c4	2021-05-22 06:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:09:24.853+03	2021-05-22 06:09:24.862+03	
310d60bc-bcf2-d9ec-d51a-5b0456e603b3	2021-05-22 06:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:09:44.853+03	2021-05-22 06:09:44.861+03	
602d9e6b-9752-a049-e8f9-07a1874e74df	2021-05-22 06:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 06:10:00.853+03	2021-05-22 06:10:00.858+03	ERROR
8f389dd3-d54e-c883-171b-00e8ec6512fd	2021-05-22 06:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:10:15.852+03	2021-05-22 06:10:15.859+03	
496e8dfa-1e03-2371-30f5-80606a32e6c8	2021-05-22 06:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:10:35.853+03	2021-05-22 06:10:35.864+03	
68591590-db1e-5afa-2f2e-22f507f68719	2021-05-22 06:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:10:55.853+03	2021-05-22 06:10:55.86+03	
5dc76a2b-0d22-9a46-3285-054c6cff5379	2021-05-22 06:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:11:15.853+03	2021-05-22 06:11:15.863+03	
e2818669-716c-98ab-4769-f52eb9e5a2d4	2021-05-22 06:11:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:11:36.853+03	2021-05-22 06:11:36.861+03	
bf2ae7d1-c921-85c6-b27a-10a23368643c	2021-05-22 06:11:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:11:56.855+03	2021-05-22 06:11:56.862+03	
2f9d8a2f-835b-be2c-6e8c-cb04547c09bf	2021-05-22 06:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:12:17.853+03	2021-05-22 06:12:17.861+03	
99869def-2445-8710-6d5b-6a58321ff6e1	2021-05-22 06:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:12:38.852+03	2021-05-22 06:12:38.865+03	
30e05432-49d0-7baf-490b-d5c282adde53	2021-05-22 06:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:12:59.853+03	2021-05-22 06:12:59.86+03	
47ae6daf-e17d-7579-da8d-9ad165cff608	2021-05-22 06:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:13:19.853+03	2021-05-22 06:13:19.863+03	
c5523f41-7e02-196e-eadf-599b6bea9a0e	2021-05-22 06:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:13:39.853+03	2021-05-22 06:13:39.861+03	
6a7cc8d7-c9ea-2494-30e8-096122b8f456	2021-05-22 06:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:13:59.853+03	2021-05-22 06:13:59.86+03	
79f60383-2704-c804-86aa-3b60093a9d01	2021-05-22 06:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:14:20.853+03	2021-05-22 06:14:20.862+03	
2664a838-0efd-cff1-4b3c-e698a288a751	2021-05-22 06:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:14:40.853+03	2021-05-22 06:14:40.86+03	
9cb93494-b72a-1e4d-2002-eaf23c4d3697	2021-05-22 06:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:15:00.853+03	2021-05-22 06:15:00.859+03	
39f98e79-94ad-ddf9-edcc-001e8658832b	2021-05-22 06:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:15:20.853+03	2021-05-22 06:15:20.859+03	
8f127ef0-ca0f-7318-f7fe-f35de3bfaacb	2021-05-22 06:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:15:40.853+03	2021-05-22 06:15:40.859+03	
f8e42711-f0cf-fceb-5df6-7f399bc4253c	2021-05-22 06:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:16:02.853+03	2021-05-22 06:16:02.859+03	
484ce30c-24e8-13f8-af81-18bc7dc23ef8	2021-05-22 06:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:16:23.853+03	2021-05-22 06:16:23.861+03	
0f4e92b9-c0b0-539d-11d8-15258e2d653f	2021-05-22 06:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:16:44.853+03	2021-05-22 06:16:44.877+03	
0fae7e46-3af2-2784-4b16-92833c0b1fb9	2021-05-22 06:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:17:05.852+03	2021-05-22 06:17:05.859+03	
e3944b97-1959-770c-86c8-a7018b1713b5	2021-05-22 06:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:17:25.853+03	2021-05-22 06:17:25.86+03	
772758ea-5d1a-2fdf-a6bb-46576595f802	2021-05-22 06:17:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:17:46.852+03	2021-05-22 06:17:46.862+03	
8f9d744a-2666-c30d-aa5d-7314a16eefde	2021-05-22 06:18:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:18:06.854+03	2021-05-22 06:18:06.86+03	
e3fb33ba-286b-f2fa-1bd2-f8f63c489ba8	2021-05-22 06:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:18:27.852+03	2021-05-22 06:18:27.874+03	
661b71d8-bfe9-5316-e537-bebe344d9e04	2021-05-22 06:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:18:47.853+03	2021-05-22 06:18:47.868+03	
384bae20-eaee-f3fc-addb-5896ebf72f1c	2021-05-22 06:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:19:08.852+03	2021-05-22 06:19:08.864+03	
67519d41-15cc-f478-f0ac-e7bf6012a324	2021-05-22 06:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:19:28.852+03	2021-05-22 06:19:28.859+03	
5696d3fe-878a-d710-c989-d42214c2e5f9	2021-05-22 06:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:19:49.853+03	2021-05-22 06:19:49.861+03	
ae1fe582-9e8f-6620-e6d3-a0fa224b96d7	2021-05-22 05:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:59:13.852+03	2021-05-22 05:59:13.859+03	
ab4a76a7-fd6e-6409-9fa3-6c256014f716	2021-05-22 05:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:59:33.853+03	2021-05-22 05:59:33.869+03	
f398d2fe-30cd-07d4-e143-a1aab493e85b	2021-05-22 05:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 05:59:53.853+03	2021-05-22 05:59:53.862+03	
5b2f2787-5c90-27fd-df03-5a3ad5dec510	2021-05-22 06:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:00:03.853+03	2021-05-22 06:00:03.865+03	
677b3a6f-a77b-eebe-07fa-28e6c356ba00	2021-05-22 06:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:00:23.853+03	2021-05-22 06:00:23.861+03	
88bf13e7-fe69-6121-8365-772e72e47ead	2021-05-22 06:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:00:44.853+03	2021-05-22 06:00:44.871+03	
60d8cab0-4f3f-ad86-e9b8-1f59f7feacc3	2021-05-22 06:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:01:04.853+03	2021-05-22 06:01:04.868+03	
e2220b95-49e0-cf7f-fa1a-9982a131a956	2021-05-22 06:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:01:24.853+03	2021-05-22 06:01:24.86+03	
6499034e-b3be-7be1-3867-d196d8becb17	2021-05-22 06:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:01:45.853+03	2021-05-22 06:01:45.859+03	
19d9a475-d61c-1b7e-abcf-d1f042890477	2021-05-22 06:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:02:05.853+03	2021-05-22 06:02:05.86+03	
d4537dea-905e-7536-854b-ff98a0a5d595	2021-05-22 06:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:02:26.853+03	2021-05-22 06:02:26.867+03	
9aea1ea6-1555-d167-7afd-a36eb6ed69be	2021-05-22 06:02:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:02:46.853+03	2021-05-22 06:02:46.859+03	
27126342-6e3b-32d8-59e2-99b726f1157e	2021-05-22 06:03:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:03:06.854+03	2021-05-22 06:03:06.861+03	
7791ca42-44eb-8466-8366-02966caf6e31	2021-05-22 06:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:03:27.852+03	2021-05-22 06:03:27.859+03	
368d4666-a88e-4681-ded6-e5f426e9cab7	2021-05-22 06:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:03:47.853+03	2021-05-22 06:03:47.859+03	
e5a83b67-2031-e0d4-6edb-ee97f79e7f30	2021-05-22 06:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:04:08.853+03	2021-05-22 06:04:08.859+03	
08e0cdf0-25ce-6dd5-11bd-519707ca355b	2021-05-22 06:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:04:28.853+03	2021-05-22 06:04:28.86+03	
f03ed3b4-4421-bdb7-950f-49b3e631e473	2021-05-22 06:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:04:49.853+03	2021-05-22 06:04:49.863+03	
ae5ab0ee-f10a-b0e4-f67c-617cda26d136	2021-05-22 06:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:05:10.853+03	2021-05-22 06:05:10.861+03	
9f51f6a3-c892-7be4-d32a-6e6025624e51	2021-05-22 06:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:05:30.853+03	2021-05-22 06:05:30.859+03	
9646c9e5-dcb2-d025-f3b9-c97da7e03a58	2021-05-22 06:05:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:05:51.853+03	2021-05-22 06:05:51.859+03	
56dba40a-857f-b4c0-72bf-2fd503914e50	2021-05-22 06:06:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:06:11.854+03	2021-05-22 06:06:11.863+03	
d56d1c60-2b60-9f45-b3d7-0b7e848fc968	2021-05-22 06:06:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:06:31.854+03	2021-05-22 06:06:31.86+03	
d8e39788-d32c-97f5-5773-c814b9233022	2021-05-22 06:06:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:06:52.853+03	2021-05-22 06:06:52.859+03	
6e23d0f1-c322-70c2-86e0-114ead34d67e	2021-05-22 06:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:07:13.853+03	2021-05-22 06:07:13.859+03	
55636ca5-4d51-1ea7-43e2-b7261881077e	2021-05-22 06:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:07:34.852+03	2021-05-22 06:07:34.859+03	
e719a24a-45c9-8ff0-02b1-1617528a54e0	2021-05-22 06:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:07:54.853+03	2021-05-22 06:07:54.868+03	
f783ff53-5fd6-8bf4-2493-36ef5fd2a5f5	2021-05-22 06:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:08:14.853+03	2021-05-22 06:08:14.865+03	
8b6ac50e-9312-2a78-169f-dec0b43b61a6	2021-05-22 06:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:08:34.853+03	2021-05-22 06:08:34.871+03	
136a682a-9789-b75f-6820-28b3d0ba7dce	2021-05-22 06:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:08:54.853+03	2021-05-22 06:08:54.861+03	
952f91fa-1045-7e66-bb3d-67c5e5212bea	2021-05-22 06:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:09:14.853+03	2021-05-22 06:09:14.872+03	
6ec6a3c8-24c5-c954-a654-58842fb7ea5e	2021-05-22 06:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:09:34.853+03	2021-05-22 06:09:34.879+03	
492f4c98-ea1c-9529-e136-58bd72912e25	2021-05-22 06:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:09:55.852+03	2021-05-22 06:09:55.866+03	
f2aad7ad-1501-f48e-aa5d-c9010c1f3a72	2021-05-22 06:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:10:05.852+03	2021-05-22 06:10:05.859+03	
da92a6ad-09fd-801b-22ef-10fa59343452	2021-05-22 06:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:10:25.853+03	2021-05-22 06:10:25.87+03	
ac60f80d-222a-6fee-13b6-450c8b772f36	2021-05-22 06:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:10:45.853+03	2021-05-22 06:10:45.861+03	
eae0ad0e-d4b0-7b7a-b922-8fd7d4759fcb	2021-05-22 06:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:11:05.853+03	2021-05-22 06:11:05.86+03	
0029c246-48c7-6e36-79cc-29cc118364c7	2021-05-22 06:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:11:25.853+03	2021-05-22 06:11:25.87+03	
8fce015d-b4b7-06f5-ab3b-16a28b4dbc26	2021-05-22 06:11:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:11:46.853+03	2021-05-22 06:11:46.871+03	
9966d4e6-cb60-b7a3-2107-6c5471d06ffd	2021-05-22 06:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:12:07.853+03	2021-05-22 06:12:07.86+03	
fc18850c-00a8-3f0e-91bc-876b0ccb392b	2021-05-22 06:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:12:27.853+03	2021-05-22 06:12:27.86+03	
23cf6793-fac3-ca64-bcaf-36f1f725fd9c	2021-05-22 06:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:12:48.853+03	2021-05-22 06:12:48.859+03	
d39e357f-84fb-1ab8-699b-8439dcedcf92	2021-05-22 06:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:13:09.853+03	2021-05-22 06:13:09.859+03	
ced70a20-d414-dbb5-425c-a33e61aeef35	2021-05-22 06:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:13:29.853+03	2021-05-22 06:13:29.862+03	
a1b2f5bf-0023-6431-2e18-5f453a90541b	2021-05-22 06:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:13:49.853+03	2021-05-22 06:13:49.862+03	
a249e7bc-c9ff-4d32-c58e-9393c630c553	2021-05-22 06:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:14:09.853+03	2021-05-22 06:14:09.865+03	
4189a704-3137-2ab1-03c3-f6c393f04352	2021-05-22 06:14:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:14:30.853+03	2021-05-22 06:14:30.861+03	
a78f4977-3209-e11a-b1f2-ad81d65de91d	2021-05-22 06:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:14:50.853+03	2021-05-22 06:14:50.861+03	
1259b928-48ee-0b23-b53a-9dcaf9c68bf3	2021-05-22 06:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:15:10.853+03	2021-05-22 06:15:10.862+03	
764be100-bd16-ad12-8362-48ab644931f5	2021-05-22 06:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:15:30.853+03	2021-05-22 06:15:30.86+03	
d219adc1-5d24-fe09-43df-1d6ac42eb987	2021-05-22 06:15:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:15:51.853+03	2021-05-22 06:15:51.859+03	
2a9ca61f-b494-1806-bfa9-87789a88e6ac	2021-05-22 06:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:16:13.852+03	2021-05-22 06:16:13.897+03	
d6d20196-cc19-9c7e-f3f9-2e555addadce	2021-05-22 06:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:16:34.852+03	2021-05-22 06:16:34.872+03	
9c3e204c-7722-7085-5c7a-ecb2b580e848	2021-05-22 06:16:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:16:54.853+03	2021-05-22 06:16:54.86+03	
70d25830-d3ac-4e79-0112-07116d716217	2021-05-22 06:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:17:15.852+03	2021-05-22 06:17:15.875+03	
8271b65b-dd44-5cf2-d799-9b7ce35d942b	2021-05-22 06:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:17:35.853+03	2021-05-22 06:17:35.909+03	
cf5de821-9bc7-95a5-04dc-bbc868cf57da	2021-05-22 06:17:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:17:56.853+03	2021-05-22 06:17:56.861+03	
ca8a6da7-9d04-8279-554f-505c3729e9a0	2021-05-22 06:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:18:17.852+03	2021-05-22 06:18:17.859+03	
96d33368-4792-5aaf-082b-ba5dfb5c5512	2021-05-22 06:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:18:37.853+03	2021-05-22 06:18:37.86+03	
8c1d45fa-56f4-af8d-9e23-050c713ad8f4	2021-05-22 06:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:18:58.852+03	2021-05-22 06:18:58.859+03	
7cfdbbbf-e3a4-b05d-9069-480f3c6a4b3e	2021-05-22 06:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:19:18.852+03	2021-05-22 06:19:18.861+03	
c572ce8f-0baa-afc9-80f5-2ea8a51ac41a	2021-05-22 06:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:19:38.853+03	2021-05-22 06:19:38.862+03	
a3eb0b39-aed1-04d9-7edc-0af4f26496d2	2021-05-22 06:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:19:59.853+03	2021-05-22 06:19:59.862+03	
846087d7-5ed1-0ecc-8e0a-85a2e3a73994	2021-05-22 06:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 06:20:00.853+03	2021-05-22 06:20:00.879+03	ERROR
f680d6d2-da84-fccb-2ae8-8ec5db14f45a	2021-05-22 06:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:20:20.853+03	2021-05-22 06:20:20.859+03	
b27e6534-cc74-7368-944b-57cad49b3632	2021-05-22 06:20:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:20:41.853+03	2021-05-22 06:20:41.859+03	
646f511b-24b5-4253-bb03-586648d4da82	2021-05-22 06:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:21:02.853+03	2021-05-22 06:21:02.86+03	
68d2f9e2-547d-ccf6-477a-2ab72dcbd1c6	2021-05-22 06:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:21:22.853+03	2021-05-22 06:21:22.862+03	
a9e4fedc-8f1f-36bc-5fed-881f37ba9151	2021-05-22 06:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:21:42.853+03	2021-05-22 06:21:42.861+03	
09ede669-e60b-a7f8-700d-f9140055540d	2021-05-22 06:22:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:22:03.852+03	2021-05-22 06:22:03.859+03	
599d9f25-e96a-286f-2ab0-998034f58c03	2021-05-22 06:22:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:22:23.853+03	2021-05-22 06:22:23.86+03	
99f67273-d1ae-fef9-3ab6-cd83358aef2e	2021-05-22 06:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:22:44.853+03	2021-05-22 06:22:44.862+03	
1c30a5b1-caf0-f04a-9cec-ac4521b217b9	2021-05-22 06:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:23:05.853+03	2021-05-22 06:23:05.861+03	
20058780-5909-968b-59d0-b8943d28ac01	2021-05-22 06:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:23:25.853+03	2021-05-22 06:23:25.86+03	
615ccc42-c03b-1ed3-b444-d0a2788141f0	2021-05-22 06:23:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:23:45.853+03	2021-05-22 06:23:45.863+03	
850a8caa-695d-e5a6-2844-25fb47a9a6be	2021-05-22 06:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:24:05.853+03	2021-05-22 06:24:05.86+03	
1f80426e-5862-96b9-d135-857af48deda1	2021-05-22 06:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:24:25.853+03	2021-05-22 06:24:25.873+03	
bb063b09-4d17-40ed-1fc1-8c65bd34e1fc	2021-05-22 06:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:24:45.853+03	2021-05-22 06:24:45.86+03	
5b9c9071-a47d-ecf4-c627-e4580c1ad94d	2021-05-22 06:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:25:07.852+03	2021-05-22 06:25:07.873+03	
14e777c7-025b-db57-1e91-2e902156b519	2021-05-22 06:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:25:28.852+03	2021-05-22 06:25:28.859+03	
f11fa3dd-9929-1c8e-cd7e-48dcb485e0eb	2021-05-22 06:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:25:48.853+03	2021-05-22 06:25:48.86+03	
a8042335-aef3-d53b-6d9d-91b38a12eff1	2021-05-22 06:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:26:08.853+03	2021-05-22 06:26:08.86+03	
15bab609-4bf5-8448-3ad4-e2fdf4bd8d41	2021-05-22 06:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:26:29.853+03	2021-05-22 06:26:29.859+03	
188ac249-df54-2939-e5e6-24e4aa9830f4	2021-05-22 06:26:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:26:49.853+03	2021-05-22 06:26:49.863+03	
775292c8-3e64-0e1a-9264-db8928e186ed	2021-05-22 06:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:27:10.853+03	2021-05-22 06:27:10.858+03	
520efdd6-615e-811f-e5ea-dbe5f938cf69	2021-05-22 06:27:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:27:31.854+03	2021-05-22 06:27:31.862+03	
921f26a7-553b-d4dc-dd14-1d1b58bce6ad	2021-05-22 06:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:27:52.852+03	2021-05-22 06:27:52.859+03	
475ac35e-2304-aaad-01e5-4eab600c8905	2021-05-22 06:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:28:13.852+03	2021-05-22 06:28:13.859+03	
70ca5912-eb31-6a42-b3d5-ad63a6dc73c3	2021-05-22 06:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:28:33.852+03	2021-05-22 06:28:33.859+03	
77142aa8-885d-9194-24c6-4449cf9cb8ea	2021-05-22 06:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:28:53.853+03	2021-05-22 06:28:53.862+03	
78eebdc4-c240-eb56-4fa4-c3c958404a35	2021-05-22 06:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:29:13.853+03	2021-05-22 06:29:13.859+03	
879e341a-26ba-49c2-2eaf-64e9f45a564c	2021-05-22 06:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:29:34.852+03	2021-05-22 06:29:34.87+03	
80559928-5709-2fe4-9335-b0d4a66e1fce	2021-05-22 06:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:29:54.853+03	2021-05-22 06:29:54.861+03	
7a2cf19b-10eb-8212-d707-9cf9e9b0eeb4	2021-05-22 06:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:30:04.853+03	2021-05-22 06:30:04.86+03	
64c892d3-4561-e8e5-5f87-952d6fc96eec	2021-05-22 06:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:30:26.853+03	2021-05-22 06:30:26.862+03	
f8575984-2b50-56f6-1992-f9ce275576cb	2021-05-22 06:30:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:30:46.853+03	2021-05-22 06:30:46.86+03	
6de50875-93eb-c964-2360-85c5b299a90e	2021-05-22 06:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:31:07.853+03	2021-05-22 06:31:07.859+03	
49351859-423b-a794-a0ac-ebe8db5fe36e	2021-05-22 06:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:31:28.853+03	2021-05-22 06:31:28.859+03	
ad2137d6-ec5d-c661-ce56-2cf5509a3ec0	2021-05-22 06:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:31:48.853+03	2021-05-22 06:31:48.862+03	
a706cb2a-be01-0adf-8b0c-0f834bf47dd7	2021-05-22 06:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:32:08.853+03	2021-05-22 06:32:08.859+03	
383a7380-6939-ffa1-a884-232882195fa7	2021-05-22 06:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:32:29.853+03	2021-05-22 06:32:29.861+03	
a47f988e-b14f-f883-5876-7c7f8896762c	2021-05-22 06:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:32:50.852+03	2021-05-22 06:32:50.872+03	
8e38346f-f074-ec3b-fa2e-8ab41bf938f2	2021-05-22 06:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:33:10.852+03	2021-05-22 06:33:10.859+03	
017d6443-7e4a-c8ef-65b2-607d2d93f728	2021-05-22 06:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:33:30.853+03	2021-05-22 06:33:30.86+03	
319fe6bb-c51c-bf31-56b4-8afc0722d85e	2021-05-22 06:33:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:33:51.853+03	2021-05-22 06:33:51.86+03	
b6c8bcfb-0b55-3a62-4d12-0e07c6796f18	2021-05-22 06:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:34:12.852+03	2021-05-22 06:34:12.859+03	
720d18be-bd0d-4356-8cf0-69aeb777615a	2021-05-22 06:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:34:32.853+03	2021-05-22 06:34:32.859+03	
5bad3ffd-2288-ef65-0c99-ef819056c010	2021-05-22 06:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:34:53.853+03	2021-05-22 06:34:53.86+03	
434f42ed-d550-263e-39c7-1bbaeee8ac11	2021-05-22 06:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:35:15.852+03	2021-05-22 06:35:15.858+03	
60d4f7ed-6d8b-798c-14e0-0ba0d36ce066	2021-05-22 06:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:35:35.853+03	2021-05-22 06:35:35.86+03	
fee77b71-5942-5d55-7eac-d38e3a5aae7c	2021-05-22 06:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:35:56.852+03	2021-05-22 06:35:56.86+03	
c6401352-cea0-e9fb-8c93-6aa715880924	2021-05-22 06:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:36:16.853+03	2021-05-22 06:36:16.86+03	
eeea0fa2-8a1c-3a0c-2e24-6fef47589894	2021-05-22 06:36:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:36:38.853+03	2021-05-22 06:36:38.866+03	
5344e72e-7f57-6e65-cc19-f25df63334e5	2021-05-22 06:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:36:58.853+03	2021-05-22 06:36:58.902+03	
f6327f47-f42d-5012-2a69-89e2fda63b4b	2021-05-22 06:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:37:18.853+03	2021-05-22 06:37:18.86+03	
0f83ac07-2a90-8360-e48e-26400c7b6e11	2021-05-22 06:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:37:38.853+03	2021-05-22 06:37:38.86+03	
5a181134-718a-2342-3ded-fe16567feb66	2021-05-22 06:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:37:58.853+03	2021-05-22 06:37:58.866+03	
9a06c55e-3170-f263-94ca-116d7a56831a	2021-05-22 06:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:38:18.853+03	2021-05-22 06:38:18.861+03	
e51a3470-17ba-4b13-df2e-24c11858fb39	2021-05-22 06:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:38:39.853+03	2021-05-22 06:38:39.859+03	
84287cf5-1cf4-fa84-5b88-fd767c6bedbc	2021-05-22 06:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:38:59.853+03	2021-05-22 06:38:59.866+03	
d1cf3bda-4802-c509-bfb1-ad995692fda3	2021-05-22 06:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:39:19.853+03	2021-05-22 06:39:19.859+03	
dd268330-0be0-8c76-3aa4-d511822116d5	2021-05-22 06:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:39:39.853+03	2021-05-22 06:39:39.861+03	
9d395907-2cf6-67e7-db95-c8e8fd45af40	2021-05-22 06:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:39:59.853+03	2021-05-22 06:40:00.094+03	
85a363fb-a0ab-90e8-87c6-2c15e780bda6	2021-05-22 06:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:40:09.853+03	2021-05-22 06:40:09.864+03	
06d9f73d-3ea1-a4a8-edef-7730c57137c1	2021-05-22 06:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:40:29.853+03	2021-05-22 06:40:29.86+03	
3e380166-1d1b-4687-dc5f-a3383b14c407	2021-05-22 06:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:40:49.853+03	2021-05-22 06:40:49.862+03	
7af51818-8cf3-3268-ce69-de47917bd991	2021-05-22 06:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:20:10.852+03	2021-05-22 06:20:10.859+03	
93b617ef-dd3f-82d6-1550-69dd6050544d	2021-05-22 06:20:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:20:31.853+03	2021-05-22 06:20:31.859+03	
d81d6c16-50d9-b180-517b-69119ea66566	2021-05-22 06:20:51.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:20:51.859+03	2021-05-22 06:20:51.867+03	
13ca4b07-c129-8898-012a-a0addcea93a6	2021-05-22 06:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:21:12.853+03	2021-05-22 06:21:12.891+03	
4655fd20-9565-6047-977e-5696618dad1f	2021-05-22 06:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:21:32.853+03	2021-05-22 06:21:32.86+03	
dea1ae0d-d27e-db25-2b28-fe5fed03cd4b	2021-05-22 06:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:21:52.853+03	2021-05-22 06:21:52.864+03	
41fc8a14-4002-15ae-5bf6-2d0600d34396	2021-05-22 06:22:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:22:13.852+03	2021-05-22 06:22:13.859+03	
6f1252f3-21da-7249-85c7-7f072b49828d	2021-05-22 06:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:22:34.852+03	2021-05-22 06:22:34.861+03	
812a8fc7-633a-3355-abc2-ab958d0c9cf4	2021-05-22 06:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:22:54.853+03	2021-05-22 06:22:54.874+03	
81b073a4-d630-07bd-1e11-91ece278205c	2021-05-22 06:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:23:15.853+03	2021-05-22 06:23:15.873+03	
b26690f8-8fad-178d-ea75-cb244eb3cc61	2021-05-22 06:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:23:35.853+03	2021-05-22 06:23:35.863+03	
3c2f9626-9ca0-0b26-f5eb-09094a00fd9b	2021-05-22 06:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:23:55.853+03	2021-05-22 06:23:55.872+03	
8f209504-f731-9173-30c7-5ea241725f99	2021-05-22 06:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:24:15.853+03	2021-05-22 06:24:15.875+03	
423cd7b4-ad13-033e-df49-43a97f7d99e3	2021-05-22 06:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:24:35.853+03	2021-05-22 06:24:35.872+03	
a5fb14b2-9833-3c0f-250c-e1c25cc0c9f3	2021-05-22 06:24:56.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:24:56.861+03	2021-05-22 06:24:56.869+03	
bb49dc3d-a5e0-7533-e4db-9593762f7b7a	2021-05-22 06:25:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:25:17.853+03	2021-05-22 06:25:17.869+03	
b3e0a87d-c5b2-6bb8-763c-46fe3955ee5b	2021-05-22 06:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:25:38.853+03	2021-05-22 06:25:38.86+03	
536fa2f1-591b-e196-8b2e-5e29c7af3318	2021-05-22 06:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:25:58.853+03	2021-05-22 06:25:58.861+03	
41d9067b-c293-87f9-c820-2e1bdc3bfe32	2021-05-22 06:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:26:19.853+03	2021-05-22 06:26:19.871+03	
46c25709-f1dd-4f29-381d-a42560a5d3c4	2021-05-22 06:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:26:39.853+03	2021-05-22 06:26:39.86+03	
2706b1e5-3ddf-77fe-7d4f-d5eb47ba6283	2021-05-22 06:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:27:00.852+03	2021-05-22 06:27:00.859+03	
6cd18a3c-3567-23ce-1535-1d28fa0a4137	2021-05-22 06:27:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:27:21.853+03	2021-05-22 06:27:21.861+03	
22b7dfd5-2488-8c7f-435f-2197acb97746	2021-05-22 06:27:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:27:41.854+03	2021-05-22 06:27:41.86+03	
1e16dd9b-e17d-b33e-4c04-18de926b97f6	2021-05-22 06:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:28:02.853+03	2021-05-22 06:28:02.86+03	
a435ae07-6a3b-6b17-d739-008455892d8c	2021-05-22 06:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:28:23.852+03	2021-05-22 06:28:24.022+03	
418a56f2-0143-cf65-18d4-e712d76840f3	2021-05-22 06:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:28:43.853+03	2021-05-22 06:28:43.863+03	
cf7aae6c-2900-0066-c5a4-cd3221c5e870	2021-05-22 06:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:29:03.853+03	2021-05-22 06:29:03.859+03	
202b449c-6dc7-3d0e-2cf6-118bf865bab4	2021-05-22 06:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:29:23.853+03	2021-05-22 06:29:23.86+03	
9d9d35e7-5859-6072-2b79-130ffcec9ac2	2021-05-22 06:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:29:44.853+03	2021-05-22 06:29:44.859+03	
57ea304f-f159-5b8f-72d5-bd9376e9eefd	2021-05-22 06:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 06:30:00.853+03	2021-05-22 06:30:00.873+03	ERROR
9293b522-1b97-5ed7-0255-c5b2f03a305b	2021-05-22 06:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:30:15.853+03	2021-05-22 06:30:15.859+03	
3645999e-f92f-f317-584e-0131471d43b0	2021-05-22 06:30:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:30:36.853+03	2021-05-22 06:30:36.865+03	
402baab1-1a37-c95e-a5a5-269077614930	2021-05-22 06:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:30:57.852+03	2021-05-22 06:30:57.871+03	
f34f3ebb-bcbe-f1d9-2764-8d8638ecc170	2021-05-22 06:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:31:18.853+03	2021-05-22 06:31:18.859+03	
b093084d-9e06-5052-dc21-f4b41d9e9dfe	2021-05-22 06:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:31:38.853+03	2021-05-22 06:31:38.86+03	
b4e1a8b2-d3a6-7246-ad6e-bd0020c4394d	2021-05-22 06:31:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:31:58.853+03	2021-05-22 06:31:58.86+03	
1d05c678-a00d-265e-e721-9f8b96e36188	2021-05-22 06:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:32:19.852+03	2021-05-22 06:32:19.86+03	
e90d6ce3-3428-a287-9894-e445dfc132e4	2021-05-22 06:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:32:39.853+03	2021-05-22 06:32:39.861+03	
63f4e041-f032-4d11-28e8-026c75ebac85	2021-05-22 06:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:33:00.852+03	2021-05-22 06:33:00.858+03	
fa93b539-7494-6df2-b252-7bcb651a4833	2021-05-22 06:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:33:20.853+03	2021-05-22 06:33:20.859+03	
dcdaeb48-de95-b3ce-2ae9-bd6ead7df87a	2021-05-22 06:33:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:33:40.853+03	2021-05-22 06:33:40.859+03	
d227cad3-0ecb-f2c0-9821-d77e182de6ba	2021-05-22 06:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:34:02.852+03	2021-05-22 06:34:02.858+03	
bc55e725-6132-a4ef-d83d-66aa129b4e57	2021-05-22 06:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:34:22.852+03	2021-05-22 06:34:22.859+03	
21b44b8a-396e-078a-7547-823aad3820e4	2021-05-22 06:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:34:43.852+03	2021-05-22 06:34:43.862+03	
bc3166f9-e724-9b87-ecc9-edf91c3d8c19	2021-05-22 06:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:35:04.853+03	2021-05-22 06:35:04.859+03	
34a29c6a-f450-1344-7460-35e43109f7e4	2021-05-22 06:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:35:25.853+03	2021-05-22 06:35:25.859+03	
daff0de3-d51a-0bd2-5caa-340b7502762e	2021-05-22 06:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:35:45.853+03	2021-05-22 06:35:45.859+03	
de569590-274c-4d2a-3da7-1e8914c5c438	2021-05-22 06:36:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:36:06.853+03	2021-05-22 06:36:06.914+03	
2a40d54d-c312-95f6-38d3-fecb81fc815a	2021-05-22 06:36:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:36:27.853+03	2021-05-22 06:36:27.859+03	
293fa37f-e65f-bbe7-06df-9f38e13fb517	2021-05-22 06:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:36:48.853+03	2021-05-22 06:36:48.86+03	
e4db96a4-9192-6287-bfcf-d7b053d83a47	2021-05-22 06:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:37:08.853+03	2021-05-22 06:37:08.871+03	
544de134-28ff-f047-f688-78dd151fb0b4	2021-05-22 06:37:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:37:28.853+03	2021-05-22 06:37:28.87+03	
8da7f743-8880-8739-b2ce-3187152a7147	2021-05-22 06:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:37:48.853+03	2021-05-22 06:37:48.865+03	
acbb2bf6-d2e0-6d2b-feb8-7657dd29c6bb	2021-05-22 06:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:38:08.853+03	2021-05-22 06:38:08.861+03	
1486d723-e8b7-e225-1c26-1944be80f7e1	2021-05-22 06:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:38:28.853+03	2021-05-22 06:38:28.862+03	
56b85cc1-706d-8996-fb04-2a256ff86e1a	2021-05-22 06:38:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:38:49.853+03	2021-05-22 06:38:49.865+03	
4e4b0d07-d0c8-1688-d0ed-cfe1835625d0	2021-05-22 06:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:39:09.853+03	2021-05-22 06:39:09.873+03	
39bb719f-0ff9-80b4-1a93-745d61aab146	2021-05-22 06:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:39:29.853+03	2021-05-22 06:39:29.861+03	
eaae5a3d-b666-4e73-37bd-28c6dbd15376	2021-05-22 06:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:39:49.853+03	2021-05-22 06:39:49.868+03	
b46475f0-63e3-6aa6-c963-23604e3c20d9	2021-05-22 06:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 06:40:00.852+03	2021-05-22 06:40:00.859+03	ERROR
11639191-4008-d76a-bf5d-cf2927e02e8f	2021-05-22 06:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:40:19.853+03	2021-05-22 06:40:19.862+03	
1ec46140-66fc-db6f-dc01-bca645c99044	2021-05-22 06:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:40:39.853+03	2021-05-22 06:40:39.861+03	
8ff44bfa-a2a6-4f4f-1ce9-eba5f6de168b	2021-05-22 06:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:40:59.853+03	2021-05-22 06:40:59.86+03	
1c10bc4b-8111-e877-d852-ae07e3bee206	2021-05-22 06:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:41:09.853+03	2021-05-22 06:41:09.863+03	
e8b03e17-b4e3-7543-784a-0dc09b839a77	2021-05-22 06:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:41:29.853+03	2021-05-22 06:41:29.86+03	
0d6e4952-4bf7-30fd-c302-adcdf2b30d66	2021-05-22 06:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:41:49.853+03	2021-05-22 06:41:49.863+03	
29c08c30-9c17-ed46-c122-fac0e5053853	2021-05-22 06:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:42:09.853+03	2021-05-22 06:42:09.859+03	
b77aaa23-7ddd-4cef-4724-f111e42f0a55	2021-05-22 06:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:42:29.853+03	2021-05-22 06:42:29.86+03	
767885ef-c396-b10a-5927-6815ff0302ea	2021-05-22 06:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:42:49.853+03	2021-05-22 06:42:49.863+03	
a69974c6-afb0-24d2-749a-3a9efb68a6be	2021-05-22 06:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:43:10.853+03	2021-05-22 06:43:10.861+03	
0c611aee-0edc-64d0-057a-74a529b4ce1d	2021-05-22 06:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:43:30.853+03	2021-05-22 06:43:30.861+03	
5915ef58-d810-1fc4-79e0-529c8ec7cf9d	2021-05-22 06:43:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:43:51.854+03	2021-05-22 06:43:51.861+03	
b537bcca-f375-fd7f-4b36-fb451c54e61d	2021-05-22 06:44:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:44:11.854+03	2021-05-22 06:44:11.861+03	
d64cdd1d-e937-3667-5f57-e33d7640c61c	2021-05-22 06:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:44:33.853+03	2021-05-22 06:44:33.861+03	
300e9a8e-9f26-e8c1-6b85-f969d061158c	2021-05-22 06:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:44:53.853+03	2021-05-22 06:44:53.86+03	
010f9034-537f-0eec-865f-31aa54bca685	2021-05-22 06:45:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:45:13.853+03	2021-05-22 06:45:13.864+03	
4759357d-c508-8e82-e179-c38902ee815d	2021-05-22 06:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:45:33.853+03	2021-05-22 06:45:33.86+03	
ce54ec15-a0a7-1f77-eb7f-105a24330b01	2021-05-22 06:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:45:53.853+03	2021-05-22 06:45:53.86+03	
4e45e4de-c948-69f4-fc1e-e2417aabf321	2021-05-22 06:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:46:13.853+03	2021-05-22 06:46:13.86+03	
be2ca90b-677b-238a-ba33-7789ab325325	2021-05-22 06:46:34.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:46:34.854+03	2021-05-22 06:46:34.863+03	
073b0194-7f42-2252-e5db-340be27e758d	2021-05-22 06:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:46:55.853+03	2021-05-22 06:46:55.863+03	
bec3b5e7-72e3-fb64-328e-933b042f3442	2021-05-22 06:47:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:47:16.854+03	2021-05-22 06:47:16.861+03	
49c98145-08ce-35a9-6715-b2dbdd8ccf0b	2021-05-22 06:47:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:47:37.853+03	2021-05-22 06:47:37.862+03	
7b0c6379-7c1b-0e48-cf90-37f55d81ccb5	2021-05-22 06:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:47:57.853+03	2021-05-22 06:47:57.859+03	
65a9b5c7-931e-d25e-fb2f-6072a4601e63	2021-05-22 06:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:48:17.853+03	2021-05-22 06:48:17.861+03	
7b2dafff-1d2d-4f60-9abb-427fe6e30a59	2021-05-22 06:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:48:37.853+03	2021-05-22 06:48:37.872+03	
5bacd146-204b-c5b2-9cb9-9357243cbcc6	2021-05-22 06:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:48:57.853+03	2021-05-22 06:48:57.861+03	
6814e30b-e4c5-ef80-8401-dcfb024e4f10	2021-05-22 06:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:49:17.853+03	2021-05-22 06:49:17.865+03	
4ed22c47-187e-3463-0977-f020097dbfe6	2021-05-22 06:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:49:37.853+03	2021-05-22 06:49:37.861+03	
a755c7a2-17b9-644c-625d-3148c8c51e12	2021-05-22 06:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:49:57.853+03	2021-05-22 06:49:57.859+03	
b93620c7-1d59-0627-4b16-5419b3f0e01b	2021-05-22 06:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:50:07.853+03	2021-05-22 06:50:07.861+03	
dfb5ecb1-728d-9a84-69c1-0e6cd2db653d	2021-05-22 06:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:50:28.853+03	2021-05-22 06:50:28.862+03	
c90dff37-7fc9-a876-d073-85983c3ddeb7	2021-05-22 06:50:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:50:49.853+03	2021-05-22 06:50:49.861+03	
0a03f794-0460-ba07-1c62-3813671bc8cf	2021-05-22 06:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:51:09.853+03	2021-05-22 06:51:09.86+03	
dbdacae2-87bf-d6bb-3e09-901bf8a7117f	2021-05-22 06:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:51:29.853+03	2021-05-22 06:51:29.86+03	
50a127cd-f354-f8f0-55cc-b3a0c6142607	2021-05-22 06:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:51:49.853+03	2021-05-22 06:51:49.861+03	
1bc763ee-d514-0c47-6776-4f636dcab36a	2021-05-22 06:52:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:52:09.853+03	2021-05-22 06:52:09.86+03	
030317ab-e8a8-9231-78ca-19dd4ebf75e6	2021-05-22 06:52:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:52:29.854+03	2021-05-22 06:52:29.862+03	
a276193a-98dc-475c-a3c5-7a35f83ea369	2021-05-22 06:52:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:52:51.854+03	2021-05-22 06:52:51.861+03	
dfd09896-cf2b-a51f-d2b5-f4c387ff22f3	2021-05-22 06:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:53:13.852+03	2021-05-22 06:53:13.859+03	
e59857cf-fd8b-64a4-c688-997aed644bde	2021-05-22 06:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:53:33.853+03	2021-05-22 06:53:33.87+03	
2c9ad3d0-400d-d45f-1616-d9decd04f7c9	2021-05-22 06:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:53:53.853+03	2021-05-22 06:53:53.861+03	
9d213035-14d5-fda6-ab8e-251706c67f1a	2021-05-22 06:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:54:14.852+03	2021-05-22 06:54:14.866+03	
093ad689-dd46-d20e-3210-37bc426dc54c	2021-05-22 06:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:54:34.853+03	2021-05-22 06:54:34.861+03	
3156b64c-2246-f901-8ce8-a669236559ad	2021-05-22 06:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:54:54.853+03	2021-05-22 06:54:54.861+03	
6b831ea7-bece-3130-535d-987c46bb2cb0	2021-05-22 06:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:55:14.853+03	2021-05-22 06:55:14.863+03	
3ebcfef4-663f-1930-73c9-a0db747f3e38	2021-05-22 06:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:55:34.853+03	2021-05-22 06:55:34.86+03	
fcfa7d36-1d85-6a91-fbee-aeefefee396e	2021-05-22 06:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:55:54.853+03	2021-05-22 06:55:54.863+03	
32ca0448-f68a-8307-a7f8-c9e4c2264d8d	2021-05-22 06:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:56:14.853+03	2021-05-22 06:56:14.869+03	
7188bd87-192f-c58c-7e11-d9463e285251	2021-05-22 06:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:56:34.853+03	2021-05-22 06:56:34.86+03	
95d69613-c015-ec22-a274-246760dbdbf3	2021-05-22 06:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:56:54.853+03	2021-05-22 06:56:54.859+03	
e7f82724-6a06-6fb3-44ef-003e62c7c315	2021-05-22 06:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:57:14.853+03	2021-05-22 06:57:14.86+03	
ed6ec71a-dac3-8431-da4c-681b09e0e998	2021-05-22 06:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:57:34.853+03	2021-05-22 06:57:34.861+03	
45410801-289f-5c83-2eed-70a27dd3d0ac	2021-05-22 06:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:57:54.853+03	2021-05-22 06:57:54.868+03	
53114480-7e3f-5874-cff1-6cbe13edd862	2021-05-22 06:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:58:14.853+03	2021-05-22 06:58:14.876+03	
49b1647b-b4a7-f8f2-c8ac-19e974e0c862	2021-05-22 06:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:58:34.853+03	2021-05-22 06:58:34.861+03	
9463f270-b8ee-67e6-562f-b522feedc28d	2021-05-22 06:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:58:54.853+03	2021-05-22 06:58:54.862+03	
ad30524a-db50-c7b3-e86f-351714c5f44c	2021-05-22 06:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:59:14.853+03	2021-05-22 06:59:14.86+03	
6866358a-cc88-fdbe-3570-184e59d51c80	2021-05-22 06:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:59:34.853+03	2021-05-22 06:59:34.872+03	
302b9d37-72f8-3731-f256-ea4d01ac0163	2021-05-22 06:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:59:54.853+03	2021-05-22 06:59:54.86+03	
a0a177f1-95e1-fd09-bf05-3a182556d68e	2021-05-22 07:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:00:04.853+03	2021-05-22 07:00:04.861+03	
a39d0dbc-d7a1-4f3b-21a9-7c6b8c5ae052	2021-05-22 07:00:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:00:24.853+03	2021-05-22 07:00:24.866+03	
1ee9bb8d-5f49-58dc-f3c0-a736172a6712	2021-05-22 07:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:00:44.853+03	2021-05-22 07:00:44.861+03	
717f6378-535b-e997-25b1-432de5ebc184	2021-05-22 07:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:01:05.853+03	2021-05-22 07:01:05.859+03	
b49a58be-0bdf-9707-3688-941dbfe097e0	2021-05-22 07:01:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:01:26.852+03	2021-05-22 07:01:26.858+03	
6c74a789-22c8-e8bb-75d0-4ffe3aa92f78	2021-05-22 07:01:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:01:46.853+03	2021-05-22 07:01:46.863+03	
62f65221-7f14-4e64-557f-550bc17dbc09	2021-05-22 06:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:41:19.853+03	2021-05-22 06:41:19.874+03	
2b2cbaaf-013c-f6b4-cc52-ccd15ba5e14e	2021-05-22 06:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:41:39.853+03	2021-05-22 06:41:39.861+03	
4d708df2-94c6-24ea-a078-608afa8a79b9	2021-05-22 06:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:41:59.853+03	2021-05-22 06:41:59.864+03	
20f1be31-06f5-440c-aa49-290bb3d3c667	2021-05-22 06:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:42:19.853+03	2021-05-22 06:42:19.861+03	
f7525917-79b5-579e-153b-ee5f2841494c	2021-05-22 06:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:42:39.853+03	2021-05-22 06:42:39.86+03	
3f0b1878-a37c-a829-64c6-5df43477b2e5	2021-05-22 06:43:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:43:00.852+03	2021-05-22 06:43:00.86+03	
d5835884-ad09-de4b-6573-219eb672b4ef	2021-05-22 06:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:43:20.853+03	2021-05-22 06:43:20.864+03	
b3daa165-35b7-c716-16fc-f71c1b6e81cc	2021-05-22 06:43:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:43:41.853+03	2021-05-22 06:43:41.866+03	
91b13160-99ba-f1fe-e5b4-ddc5b68c92b1	2021-05-22 06:44:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:44:01.854+03	2021-05-22 06:44:01.861+03	
857e8060-a043-d8a4-bab5-193424f1f945	2021-05-22 06:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:44:22.853+03	2021-05-22 06:44:22.862+03	
225c89c3-c7bf-98ff-6956-3a7ea13219cd	2021-05-22 06:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:44:43.853+03	2021-05-22 06:44:43.864+03	
dd677dcd-8c93-f854-3cb0-28c3e091c828	2021-05-22 06:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:45:03.853+03	2021-05-22 06:45:03.859+03	
6709ce70-16a1-b2e5-15b4-e6e87b44dd87	2021-05-22 06:45:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:45:23.853+03	2021-05-22 06:45:23.86+03	
b85f0408-0490-2767-2aab-c518fd9b7212	2021-05-22 06:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:45:43.853+03	2021-05-22 06:45:43.864+03	
9f8fb0f0-eb32-c994-875e-cb8e80861cb3	2021-05-22 06:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:46:03.853+03	2021-05-22 06:46:03.86+03	
6e3cb7d9-6563-9baf-c6bd-78b58de02381	2021-05-22 06:46:24.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:46:24.854+03	2021-05-22 06:46:24.874+03	
e0503ede-8493-7fab-684a-4b713339d6c3	2021-05-22 06:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:46:45.852+03	2021-05-22 06:46:45.859+03	
55722d67-962c-bbcb-a300-e160633495bc	2021-05-22 06:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:47:05.853+03	2021-05-22 06:47:05.864+03	
7a383cf3-66cf-47d2-39a1-0c0ae7d234be	2021-05-22 06:47:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:47:27.853+03	2021-05-22 06:47:27.862+03	
00986ba7-8099-651e-083a-6bb9818e3861	2021-05-22 06:47:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:47:47.853+03	2021-05-22 06:47:47.862+03	
7aa367d0-7d93-7745-975c-ec1abc2fee55	2021-05-22 06:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:48:07.853+03	2021-05-22 06:48:07.863+03	
74c12f29-3305-79bd-c2dc-2d87861e0446	2021-05-22 06:48:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:48:27.853+03	2021-05-22 06:48:27.861+03	
3585e91b-a505-2f96-501c-7ff282adac1f	2021-05-22 06:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:48:47.853+03	2021-05-22 06:48:47.861+03	
0eb5cc86-6377-d823-ede0-16bc9c1fbb11	2021-05-22 06:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:49:07.853+03	2021-05-22 06:49:07.86+03	
8cfc89d6-c283-e180-8614-eb8f696a2a90	2021-05-22 06:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:49:27.853+03	2021-05-22 06:49:27.86+03	
77c60ad4-14b1-e925-ac1c-c1cda14f31c7	2021-05-22 06:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:49:47.853+03	2021-05-22 06:49:47.86+03	
4430e0af-2a48-f773-0942-1ad2beaa36db	2021-05-22 06:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 06:50:00.853+03	2021-05-22 06:50:00.862+03	ERROR
658b76fc-346e-9bcc-5342-648448693b9c	2021-05-22 06:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:50:18.852+03	2021-05-22 06:50:18.859+03	
2a068cde-295d-2031-4314-50b3c9af160f	2021-05-22 06:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:50:38.853+03	2021-05-22 06:50:38.864+03	
bb520dd5-b9ad-aae3-5e6e-a4f05a5ae166	2021-05-22 06:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:50:59.853+03	2021-05-22 06:50:59.863+03	
bc332324-3f25-fce0-6ec2-9c6426b826c4	2021-05-22 06:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:51:19.853+03	2021-05-22 06:51:19.86+03	
0208e762-f749-9b5f-53a8-66fd808ce3d2	2021-05-22 06:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:51:39.853+03	2021-05-22 06:51:39.861+03	
b76bc2b2-5f63-51ec-8f22-9645da991806	2021-05-22 06:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:51:59.853+03	2021-05-22 06:51:59.862+03	
4177b8af-f40b-c93a-56b7-0f684b480565	2021-05-22 06:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:52:19.853+03	2021-05-22 06:52:19.859+03	
227400bf-5bdd-6cb5-c966-18aca4bbf423	2021-05-22 06:52:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:52:40.854+03	2021-05-22 06:52:40.863+03	
73f6c235-1bbc-0277-cf01-c150937ac1b8	2021-05-22 06:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:53:02.853+03	2021-05-22 06:53:02.859+03	
4fa142e5-fe67-a1d2-4d65-3c1848890b5b	2021-05-22 06:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:53:23.852+03	2021-05-22 06:53:23.859+03	
06a2b5a7-91a9-7d42-77ef-d416693533ae	2021-05-22 06:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:53:43.853+03	2021-05-22 06:53:43.861+03	
019a3e7b-39ea-4700-141a-fac68efd22bf	2021-05-22 06:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:54:03.853+03	2021-05-22 06:54:03.861+03	
7485dfee-bacc-ff4b-7cea-d94a2b2c53e6	2021-05-22 06:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:54:24.853+03	2021-05-22 06:54:24.86+03	
923893bb-6b45-0548-d78b-830fedc01567	2021-05-22 06:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:54:44.853+03	2021-05-22 06:54:44.872+03	
16e9e0da-8f3b-5d5d-f7aa-6460e4f3f786	2021-05-22 06:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:55:04.853+03	2021-05-22 06:55:04.86+03	
5d31f934-0529-1a10-75f6-b3c0fd3f9326	2021-05-22 06:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:55:24.853+03	2021-05-22 06:55:24.862+03	
9ddd886f-9ef2-ff00-54c7-618e70f96d36	2021-05-22 06:55:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:55:44.853+03	2021-05-22 06:55:44.862+03	
3d49edc8-80ce-0db0-1f79-a0c8b04185c8	2021-05-22 06:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:56:04.853+03	2021-05-22 06:56:04.86+03	
30679c17-ca9c-df6f-6fc6-6e37630161bd	2021-05-22 06:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:56:24.853+03	2021-05-22 06:56:24.86+03	
bd0aadc7-cfa6-77d2-d805-9b1a7bffed36	2021-05-22 06:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:56:44.853+03	2021-05-22 06:56:44.863+03	
10b5ac6c-1e55-25c4-2560-9a7b67fe5bf5	2021-05-22 06:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:57:04.853+03	2021-05-22 06:57:04.862+03	
e35897a2-2f9c-e393-e9ce-2499d08310c9	2021-05-22 06:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:57:24.853+03	2021-05-22 06:57:24.869+03	
013df331-967e-8f31-9bfa-e719f2c6d7c2	2021-05-22 06:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:57:44.853+03	2021-05-22 06:57:44.863+03	
414aa4ee-9404-a08a-9a64-e7e5cd7b4893	2021-05-22 06:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:58:04.853+03	2021-05-22 06:58:04.86+03	
cdac019d-1283-cdbf-dd0f-79f6e88f2565	2021-05-22 06:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:58:24.853+03	2021-05-22 06:58:24.863+03	
9183b334-9d94-c0bd-6cd1-ca2777e33ace	2021-05-22 06:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:58:44.853+03	2021-05-22 06:58:44.861+03	
127d7953-787c-c5d3-d32f-87bbdce8c22b	2021-05-22 06:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:59:04.853+03	2021-05-22 06:59:04.861+03	
2b04548e-f302-0251-89b8-3f8910fe41a5	2021-05-22 06:59:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:59:24.853+03	2021-05-22 06:59:24.874+03	
27b886d8-ac89-c00c-bd4c-4d3176864da5	2021-05-22 06:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 06:59:44.853+03	2021-05-22 06:59:44.861+03	
e70466d7-84a7-9162-ddcf-60c99df006d1	2021-05-22 07:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 07:00:00.852+03	2021-05-22 07:00:00.859+03	ERROR
6ad75dde-d4ed-9cf5-8da8-99c5b24ea904	2021-05-22 07:00:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:00:14.853+03	2021-05-22 07:00:14.861+03	
5c8512d9-1d34-a3cc-4ffd-66f1e31520c4	2021-05-22 07:00:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:00:34.853+03	2021-05-22 07:00:34.862+03	
edc3de5d-a268-28f1-45d4-be5eb8914fd9	2021-05-22 07:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:00:55.852+03	2021-05-22 07:00:55.86+03	
9bba2c0e-63ff-3176-d7f3-cff58c440004	2021-05-22 07:01:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:01:16.852+03	2021-05-22 07:01:16.859+03	
378a698c-970a-b070-4458-9033c0669042	2021-05-22 07:01:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:01:36.853+03	2021-05-22 07:01:36.884+03	
d5acdfd8-67c4-1186-cf26-e4b193c8f75b	2021-05-22 07:01:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:01:56.853+03	2021-05-22 07:01:56.861+03	
4175693a-3403-d2d7-f8dc-4bce6a6c7b51	2021-05-22 07:02:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:02:06.853+03	2021-05-22 07:02:06.86+03	
8cf7414d-905c-86dd-e8a4-3bc2ae2205a0	2021-05-22 07:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:02:27.853+03	2021-05-22 07:02:27.872+03	
939ea2d2-8d9e-d326-6c69-af72aabdb979	2021-05-22 07:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:02:48.853+03	2021-05-22 07:02:48.86+03	
f97f9226-eb4d-8e2d-448a-efb0b5134ad9	2021-05-22 07:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:03:09.853+03	2021-05-22 07:03:09.859+03	
77ddec86-3ee0-afc9-623f-f7fe4f49c75c	2021-05-22 07:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:03:30.853+03	2021-05-22 07:03:30.86+03	
b30ffe8c-0420-f4d1-a76a-f10eb8620f22	2021-05-22 07:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:03:50.853+03	2021-05-22 07:03:50.86+03	
87b43560-0ff3-b29f-c3d0-1fbf4d482c8f	2021-05-22 07:04:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:04:11.853+03	2021-05-22 07:04:11.861+03	
55a9173a-0846-538d-06d4-608e28df2363	2021-05-22 07:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:04:32.852+03	2021-05-22 07:04:32.859+03	
7a12a433-b204-0e69-daeb-d52fc6325bbc	2021-05-22 07:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:04:52.852+03	2021-05-22 07:04:52.859+03	
bd0de13b-1497-7f16-02a2-856eb48b07fb	2021-05-22 07:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:05:12.852+03	2021-05-22 07:05:12.86+03	
f0858dad-8586-5ca8-1d5b-843859a8126e	2021-05-22 07:05:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:05:32.853+03	2021-05-22 07:05:32.86+03	
43b62616-71de-6e01-4ea0-d7455b0c96ea	2021-05-22 07:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:05:53.853+03	2021-05-22 07:05:53.861+03	
29628769-cdde-a9cb-4ea4-969364ccbba7	2021-05-22 07:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:06:14.852+03	2021-05-22 07:06:14.858+03	
06305c11-3f8d-fa36-f108-6d284152ea31	2021-05-22 07:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:06:34.853+03	2021-05-22 07:06:34.859+03	
2731c6e3-966f-9802-b696-4e091185fd6b	2021-05-22 07:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:06:55.853+03	2021-05-22 07:06:55.86+03	
dafe2c2b-55d2-0cfc-5589-cbe0383e56a5	2021-05-22 07:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:07:16.853+03	2021-05-22 07:07:16.861+03	
a28ab79a-d653-1e99-536d-9cd0a66a5fd9	2021-05-22 07:07:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:07:36.853+03	2021-05-22 07:07:36.859+03	
fc9290f7-4d29-e0fe-942b-ca0452814510	2021-05-22 07:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:07:57.852+03	2021-05-22 07:07:57.859+03	
96f07879-bb9e-5173-9e36-41c770ae410e	2021-05-22 07:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:08:17.853+03	2021-05-22 07:08:17.861+03	
e72d8538-f26f-1864-2f9b-54a1bd240c64	2021-05-22 07:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:08:37.853+03	2021-05-22 07:08:37.86+03	
86a26904-1b58-229d-84c9-c5b8d3b8582b	2021-05-22 07:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:08:58.853+03	2021-05-22 07:08:58.86+03	
7d305fd7-4915-0136-f69c-215605b344dd	2021-05-22 07:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:09:19.853+03	2021-05-22 07:09:19.859+03	
31969b2d-3995-532f-6f6f-216ff2fa4c06	2021-05-22 07:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:09:39.853+03	2021-05-22 07:09:39.862+03	
08585776-826c-f957-90f6-938524d04130	2021-05-22 07:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 07:10:00.853+03	2021-05-22 07:10:00.859+03	ERROR
c47f0dbd-5531-159d-358b-5b6fc2a1885d	2021-05-22 07:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:10:21.853+03	2021-05-22 07:10:21.86+03	
38db5878-3635-62a9-1bfb-1c1d988c2b24	2021-05-22 07:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:10:42.853+03	2021-05-22 07:10:42.86+03	
c97a15a3-0735-e95c-8259-a4aaff70eb76	2021-05-22 07:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:11:03.853+03	2021-05-22 07:11:03.86+03	
a629b9c9-8d4f-4f20-924a-278662214bac	2021-05-22 07:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:11:24.853+03	2021-05-22 07:11:24.862+03	
107f222a-ee4f-2f81-6790-9581caf73296	2021-05-22 07:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:11:45.852+03	2021-05-22 07:11:45.86+03	
2aaac8ce-d375-32fe-2595-e4efd51c2308	2021-05-22 07:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:12:05.852+03	2021-05-22 07:12:05.871+03	
cc762bd3-51f4-8195-5574-c929ad9082c7	2021-05-22 07:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:12:25.853+03	2021-05-22 07:12:25.86+03	
5723163c-bdd3-f18b-b669-b7b27cbdcacf	2021-05-22 07:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:12:45.853+03	2021-05-22 07:12:45.859+03	
e1ab1a47-5343-fa50-f5af-466ab7a38759	2021-05-22 07:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:13:05.853+03	2021-05-22 07:13:05.86+03	
b2b851e1-1cf0-6cf2-6f1e-0c7fde044f5f	2021-05-22 07:13:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:13:26.852+03	2021-05-22 07:13:26.86+03	
e3698694-d2a8-5629-6e2d-9f18ac4cc3e6	2021-05-22 07:13:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:13:46.853+03	2021-05-22 07:13:46.859+03	
c9ddc83e-eb01-c961-5a2c-0cdf6cdeab40	2021-05-22 07:14:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:14:06.854+03	2021-05-22 07:14:06.876+03	
52bbb5e2-a8de-8a97-055e-721a94e337f3	2021-05-22 07:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:14:27.853+03	2021-05-22 07:14:27.86+03	
725502ab-02f6-2abc-f3fb-3414db33de95	2021-05-22 07:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:14:47.853+03	2021-05-22 07:14:47.86+03	
aa530938-a0e5-d1a7-ed3b-770f8e83ff60	2021-05-22 07:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:15:07.853+03	2021-05-22 07:15:07.903+03	
e38d00cb-7f9a-c902-7f79-0e475da101fd	2021-05-22 07:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:15:29.852+03	2021-05-22 07:15:29.86+03	
efdcc83a-109a-078d-9e80-5a1655ac5d8c	2021-05-22 07:15:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:15:49.853+03	2021-05-22 07:15:49.865+03	
90cc3e46-9968-e1c3-11c2-9c1874cf83a8	2021-05-22 07:16:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:16:09.853+03	2021-05-22 07:16:09.86+03	
aec78ccc-cd7a-edb8-ad15-beee75ed725f	2021-05-22 07:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:16:29.853+03	2021-05-22 07:16:29.861+03	
67a7cab3-56fa-fba4-c02d-a0f081866e52	2021-05-22 07:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:16:50.853+03	2021-05-22 07:16:50.86+03	
ed7b5f58-791b-919b-7c29-b33c06f755ea	2021-05-22 07:17:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:17:11.854+03	2021-05-22 07:17:11.861+03	
3c19d0ac-dbcb-64fc-8d45-4ec9bbddb558	2021-05-22 07:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:17:32.853+03	2021-05-22 07:17:32.863+03	
12da9aef-4511-ff1c-3cd4-9ddf337b5519	2021-05-22 07:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:17:53.852+03	2021-05-22 07:17:53.861+03	
33e4ab9b-1612-b1e9-8bb0-771496bfb0e4	2021-05-22 07:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:18:13.852+03	2021-05-22 07:18:13.886+03	
6b169ff2-1c83-3c3b-2630-fbbab5b84562	2021-05-22 07:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:18:33.853+03	2021-05-22 07:18:33.86+03	
20073927-4de6-5834-98e1-ef763aadb4f7	2021-05-22 07:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:18:53.853+03	2021-05-22 07:18:53.861+03	
3dcc1ddb-1a0b-f6da-79d6-0d567829293b	2021-05-22 07:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:19:13.853+03	2021-05-22 07:19:13.86+03	
3ba24c3d-7c77-c842-696b-5fe5abefde25	2021-05-22 07:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:19:33.853+03	2021-05-22 07:19:33.861+03	
5124fe03-5308-6b24-5313-43fb6c63637a	2021-05-22 07:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:19:53.853+03	2021-05-22 07:19:53.861+03	
735c141c-50c4-a053-a9ca-de8a10d27c7a	2021-05-22 07:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:20:04.853+03	2021-05-22 07:20:04.859+03	
fb31324e-de95-62d2-fab6-46e786333c25	2021-05-22 07:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:20:24.853+03	2021-05-22 07:20:25.178+03	
3f840738-1733-cec5-edeb-2bd858631bc7	2021-05-22 07:20:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:20:44.853+03	2021-05-22 07:20:44.866+03	
2309211e-2fc3-76c1-d97a-be174490445b	2021-05-22 07:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:21:05.853+03	2021-05-22 07:21:05.859+03	
a4cc6e11-06dd-a926-47d9-bb1df40f4fe5	2021-05-22 07:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:21:26.852+03	2021-05-22 07:21:26.86+03	
00764f4f-610d-da16-d431-d0c88b85fe05	2021-05-22 07:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:21:46.852+03	2021-05-22 07:21:46.859+03	
92c08d2b-ce04-4692-dd10-6a10ef8a4508	2021-05-22 07:22:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:22:06.854+03	2021-05-22 07:22:06.861+03	
2f3c683c-2d4d-c9e2-55e0-e2677fdaafcd	2021-05-22 07:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:22:28.852+03	2021-05-22 07:22:28.87+03	
38d29278-0103-34be-f8f7-8b68b6a2148b	2021-05-22 07:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:22:48.852+03	2021-05-22 07:22:48.873+03	
bc089033-50fd-0753-211c-c8f6b5c9ed59	2021-05-22 07:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:23:08.853+03	2021-05-22 07:23:08.859+03	
d63a9cc0-2f86-63ee-0f8b-e1b7b236f50b	2021-05-22 07:02:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:02:16.854+03	2021-05-22 07:02:16.861+03	
ef66377c-a221-e842-88cd-5de37b4eccac	2021-05-22 07:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:02:38.852+03	2021-05-22 07:02:38.859+03	
fb21986a-e057-d4a9-0cfc-01aa886fc16c	2021-05-22 07:02:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:02:59.853+03	2021-05-22 07:02:59.859+03	
5c1365cc-0f97-8c9f-e2a4-3c513f479c60	2021-05-22 07:03:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:03:19.853+03	2021-05-22 07:03:19.86+03	
38c521e4-4736-5ee4-2be0-36ff2f29bbba	2021-05-22 07:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:03:40.853+03	2021-05-22 07:03:40.862+03	
1c72782a-1189-c760-f643-babd9bcc7ebc	2021-05-22 07:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:04:00.853+03	2021-05-22 07:04:00.859+03	
719b946f-4fdb-31fe-a215-1fc3110e9326	2021-05-22 07:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:04:22.852+03	2021-05-22 07:04:22.868+03	
4270cb0c-75f6-b473-722a-d593c4999020	2021-05-22 07:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:04:42.852+03	2021-05-22 07:04:42.859+03	
7f4fbbdb-4047-c7ec-0752-e9a67240d75f	2021-05-22 07:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:05:02.852+03	2021-05-22 07:05:02.859+03	
931c6eda-dfb4-bd74-79dc-b8dec83c057c	2021-05-22 07:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:05:22.853+03	2021-05-22 07:05:22.861+03	
9ddf02bf-4b87-5856-f74a-8fc9e6bee360	2021-05-22 07:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:05:43.852+03	2021-05-22 07:05:43.86+03	
1c6a41c8-c7aa-6da3-33b0-c0b6d16dd39b	2021-05-22 07:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:06:03.853+03	2021-05-22 07:06:03.86+03	
74045f7e-7e88-ba63-70cd-1a840e19ba7a	2021-05-22 07:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:06:24.852+03	2021-05-22 07:06:24.859+03	
a944cd9a-e4d3-0222-fc4a-8108e2ab3aee	2021-05-22 07:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:06:45.852+03	2021-05-22 07:06:45.86+03	
3717fda4-be5a-29e6-09d5-0abbab754bf4	2021-05-22 07:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:07:05.853+03	2021-05-22 07:07:05.86+03	
d6504aa3-8d2d-e93c-d1b4-4fe31b5d0e8a	2021-05-22 07:07:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:07:26.853+03	2021-05-22 07:07:26.86+03	
84aa4e30-c9de-0729-e51b-ad4b848609a7	2021-05-22 07:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:07:47.852+03	2021-05-22 07:07:47.859+03	
4a702f0a-5b6f-12d9-d246-51203e9ba64f	2021-05-22 07:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:08:07.853+03	2021-05-22 07:08:07.861+03	
d573e458-56d5-aee2-2374-8c36d41bd90b	2021-05-22 07:08:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:08:27.853+03	2021-05-22 07:08:27.872+03	
6ebd9849-2103-803a-ef46-9c7c89a39a4c	2021-05-22 07:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:08:48.853+03	2021-05-22 07:08:48.859+03	
8235996a-452f-d245-20ba-46f518613a96	2021-05-22 07:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:09:09.852+03	2021-05-22 07:09:09.872+03	
68425d99-8198-9588-4ab3-ce6d6c20ca68	2021-05-22 07:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:09:29.853+03	2021-05-22 07:09:29.86+03	
f714208c-03ce-45f9-5034-b030dd16d681	2021-05-22 07:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:09:50.853+03	2021-05-22 07:09:50.864+03	
432e7cf3-d468-1ae3-4a29-c8706e174876	2021-05-22 07:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:10:00.853+03	2021-05-22 07:10:00.871+03	
7c9b9876-38ca-08db-8b5a-312e858e7e05	2021-05-22 07:10:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:10:11.853+03	2021-05-22 07:10:11.87+03	
0bd92983-210f-e2a3-b4d6-8de1196b9e89	2021-05-22 07:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:10:32.852+03	2021-05-22 07:10:32.859+03	
3243fdc0-a5ce-841c-75bb-b69e160b2cfb	2021-05-22 07:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:10:52.853+03	2021-05-22 07:10:52.863+03	
c4dfb53d-49cd-2efc-329b-9f9982359495	2021-05-22 07:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:11:14.853+03	2021-05-22 07:11:14.864+03	
444cb23e-c913-4ffd-39b5-a9795b42895e	2021-05-22 07:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:11:34.853+03	2021-05-22 07:11:34.868+03	
8ea2ec52-524d-bdd9-59b2-85601b0d678a	2021-05-22 07:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:11:55.852+03	2021-05-22 07:11:55.86+03	
7d8e90f4-5f9b-1f76-c1fb-4cc99f504bac	2021-05-22 07:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:12:15.853+03	2021-05-22 07:12:15.871+03	
6189261a-6c9d-4b1b-060d-9024564031fd	2021-05-22 07:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:12:35.853+03	2021-05-22 07:12:35.859+03	
ce52a145-e854-ff44-d338-c569f7948a1c	2021-05-22 07:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:12:55.853+03	2021-05-22 07:12:55.86+03	
547060c0-c4d9-5e49-d014-a55502d8e0bf	2021-05-22 07:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:13:15.853+03	2021-05-22 07:13:15.862+03	
f82c63c0-6059-cea2-9c07-0d7fda217798	2021-05-22 07:13:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:13:36.852+03	2021-05-22 07:13:36.859+03	
6cdf8808-7ec3-ac2a-e212-24e0eed077c7	2021-05-22 07:13:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:13:56.853+03	2021-05-22 07:13:56.86+03	
af5f3b1c-02e8-89f0-f4ca-5161338d0011	2021-05-22 07:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:14:17.853+03	2021-05-22 07:14:17.86+03	
d7301368-2e45-c344-45c1-88b1a7629034	2021-05-22 07:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:14:37.853+03	2021-05-22 07:14:37.86+03	
6ad9e029-d846-bd0a-5a43-a189de9a070d	2021-05-22 07:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:14:57.853+03	2021-05-22 07:14:57.87+03	
9e673507-0b23-27d1-8be1-610b80c8f571	2021-05-22 07:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:15:18.853+03	2021-05-22 07:15:18.904+03	
de536e16-40e7-8a2f-98f5-f4c284792bb3	2021-05-22 07:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:15:39.853+03	2021-05-22 07:15:39.861+03	
a8d5a98d-0e5f-7084-5b42-364385b32863	2021-05-22 07:15:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:15:59.853+03	2021-05-22 07:15:59.861+03	
b55a82ea-1f65-7730-8bbd-bdc63d23b44d	2021-05-22 07:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:16:19.853+03	2021-05-22 07:16:19.86+03	
ed700b44-85b2-3e62-f987-ce30eb69a297	2021-05-22 07:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:16:40.852+03	2021-05-22 07:16:40.86+03	
428839a9-476e-c62d-56f3-9085e145eede	2021-05-22 07:17:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:17:01.854+03	2021-05-22 07:17:01.861+03	
b2abf98c-b3d8-9d00-c799-a41c3d6780ab	2021-05-22 07:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:17:22.853+03	2021-05-22 07:17:22.86+03	
ac5f255a-1489-29d2-4be6-1e970a46f9ca	2021-05-22 07:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:17:42.853+03	2021-05-22 07:17:42.861+03	
4c1250d4-cd10-e7f7-463f-73023eb6c50c	2021-05-22 07:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:18:03.852+03	2021-05-22 07:18:03.86+03	
0b687f4d-49dd-55b1-edae-0cc27b3a1351	2021-05-22 07:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:18:23.852+03	2021-05-22 07:18:23.86+03	
89330d3d-9eed-a4e2-103d-45d006128fab	2021-05-22 07:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:18:43.853+03	2021-05-22 07:18:43.859+03	
6d1749ee-b595-fc1f-260a-801da5ae6db5	2021-05-22 07:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:19:03.853+03	2021-05-22 07:19:03.861+03	
ab8b7a6d-6021-f06b-0015-40e7dddaa39a	2021-05-22 07:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:19:23.853+03	2021-05-22 07:19:23.86+03	
adf4a382-d096-50db-db91-fbd6ab566bac	2021-05-22 07:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:19:43.853+03	2021-05-22 07:19:43.86+03	
b94108ca-9dae-0b31-18c5-a5a8bc7eb9b1	2021-05-22 07:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 07:20:00.853+03	2021-05-22 07:20:00.859+03	ERROR
83f04fd3-f5c8-93d6-7bfd-4aa94ed6bd48	2021-05-22 07:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:20:14.853+03	2021-05-22 07:20:14.858+03	
0bf6d9b3-aa72-0941-2c01-12fa89c5550a	2021-05-22 07:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:20:34.853+03	2021-05-22 07:20:34.872+03	
1318bfff-07a9-80dc-8b1a-171e13bd037f	2021-05-22 07:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:20:55.852+03	2021-05-22 07:20:55.859+03	
2e38f489-041b-9417-4ec0-9efae766c529	2021-05-22 07:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:21:15.853+03	2021-05-22 07:21:15.859+03	
f79812c5-098c-43ae-9ea0-a2ce0ca8be95	2021-05-22 07:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:21:36.852+03	2021-05-22 07:21:36.859+03	
45578e57-e043-6192-17e9-a7b6ddb5df04	2021-05-22 07:21:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:21:56.853+03	2021-05-22 07:21:56.884+03	
ad2ea485-3402-64d2-9880-0dc77116be86	2021-05-22 07:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:22:17.853+03	2021-05-22 07:22:17.86+03	
d28673dc-82b0-7882-4f02-0dee93b0d04f	2021-05-22 07:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:22:38.852+03	2021-05-22 07:22:38.859+03	
e2d5e0c9-884f-c7a9-8557-db11be539d2a	2021-05-22 07:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:22:58.852+03	2021-05-22 07:22:58.86+03	
f488d1b7-671a-fdef-beca-f7ac7437dd07	2021-05-22 07:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:23:19.853+03	2021-05-22 07:23:19.884+03	
4e486388-8f58-e8d7-3265-c5ee4d40957d	2021-05-22 07:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:23:40.853+03	2021-05-22 07:23:40.892+03	
9292d275-50aa-deec-d0b7-d655cda67350	2021-05-22 07:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:24:00.853+03	2021-05-22 07:24:00.861+03	
ca4d7646-1870-7ac1-5cef-2b4fe95cde6a	2021-05-22 07:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:24:22.852+03	2021-05-22 07:24:22.86+03	
7c4602f8-e634-0f3f-0b33-1e669d42ad25	2021-05-22 07:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:24:42.852+03	2021-05-22 07:24:42.87+03	
9a89eb5f-10be-de49-554f-96dde8c81121	2021-05-22 07:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:25:02.852+03	2021-05-22 07:25:02.862+03	
d96fb518-21c4-e766-118a-77edb47f804d	2021-05-22 07:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:25:22.853+03	2021-05-22 07:25:22.859+03	
df0507ec-f904-5931-10d8-1e4d31848500	2021-05-22 07:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:25:42.853+03	2021-05-22 07:25:42.862+03	
8bc2eb76-8ecf-e213-0335-64e68644f368	2021-05-22 07:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:26:03.853+03	2021-05-22 07:26:03.861+03	
99ba4d48-ee72-dc72-64a6-2cc90c9eb0f6	2021-05-22 07:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:26:23.853+03	2021-05-22 07:26:23.861+03	
87c54a46-a97a-bf93-2f47-e59c1a14527a	2021-05-22 07:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:26:43.853+03	2021-05-22 07:26:43.862+03	
09bc6939-ef10-2752-5f44-2bab07cd72e2	2021-05-22 07:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:27:05.852+03	2021-05-22 07:27:05.86+03	
c8bdf507-ed92-9d02-66bb-9406aab72220	2021-05-22 07:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:27:25.853+03	2021-05-22 07:27:25.863+03	
3ad963cd-0848-211d-3eaa-4ca027b6d3cd	2021-05-22 07:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:27:45.853+03	2021-05-22 07:27:45.863+03	
839a9ecb-cfc7-cb14-ef4a-1efa71021b37	2021-05-22 07:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:28:05.853+03	2021-05-22 07:28:05.862+03	
fe7962d8-e5b1-f5c9-5f06-f816a922da66	2021-05-22 07:28:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:28:25.853+03	2021-05-22 07:28:25.862+03	
5e9776d8-9f39-e14c-fa23-8d0dc2fd6608	2021-05-22 07:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:28:45.853+03	2021-05-22 07:28:45.862+03	
0ea5038f-718d-0481-509d-a1762bf5867e	2021-05-22 07:29:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:29:06.853+03	2021-05-22 07:29:06.868+03	
446b0463-08b1-2d89-e2f1-75c7e4d9da4e	2021-05-22 07:29:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:29:26.853+03	2021-05-22 07:29:26.861+03	
314c0b4f-70b3-33d5-048e-7b2111111582	2021-05-22 07:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:29:57.853+03	2021-05-22 07:29:57.86+03	
bcef4c6f-4f31-0507-1d83-d72be9c388d2	2021-05-22 07:30:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:30:08.852+03	2021-05-22 07:30:08.865+03	
8aed5ce9-b30a-9254-2ebc-53e06284c9e0	2021-05-22 07:30:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:30:28.853+03	2021-05-22 07:30:28.861+03	
4b5baf98-08dd-4a54-b350-4bf21bef4139	2021-05-22 07:30:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:30:49.853+03	2021-05-22 07:30:49.859+03	
02b3e9eb-09a7-cacb-1ea5-75e727e1e054	2021-05-22 07:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:31:10.853+03	2021-05-22 07:31:10.859+03	
1ae88c54-0892-2b28-7fbb-29dfc92894f9	2021-05-22 07:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:31:30.853+03	2021-05-22 07:31:30.859+03	
545db82f-f0d2-a242-7524-45f686c1b753	2021-05-22 07:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:31:50.853+03	2021-05-22 07:31:50.859+03	
4107df9c-6225-13cf-4c51-f8e68d530a4b	2021-05-22 07:32:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:32:11.852+03	2021-05-22 07:32:11.864+03	
496cee3a-9b07-aaed-d50d-6209c593fcd0	2021-05-22 07:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:32:32.853+03	2021-05-22 07:32:32.859+03	
3b595aba-d11f-020a-b149-4c2d77c05e08	2021-05-22 07:32:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:32:52.853+03	2021-05-22 07:32:52.86+03	
02d4578b-60fc-4218-3e4d-f3e3f805bbac	2021-05-22 07:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:33:13.852+03	2021-05-22 07:33:13.859+03	
966eef82-5f36-66df-5d7c-eb07ef4cb525	2021-05-22 07:33:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:33:33.852+03	2021-05-22 07:33:33.86+03	
16f8dcb5-4d82-2dfb-6ed4-3226b69833c5	2021-05-22 07:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:33:53.852+03	2021-05-22 07:33:53.859+03	
5aa359c8-f4a2-b415-1a66-4de47f0b8d7c	2021-05-22 07:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:34:13.853+03	2021-05-22 07:34:13.869+03	
693be172-9d83-926f-dd77-dfffd6974439	2021-05-22 07:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:34:33.853+03	2021-05-22 07:34:33.859+03	
9f1b4150-a398-6f55-b6a5-220d41112e58	2021-05-22 07:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:34:54.853+03	2021-05-22 07:34:54.86+03	
7fb01685-a115-a354-1dc7-e60ffe04a409	2021-05-22 07:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:35:14.853+03	2021-05-22 07:35:14.859+03	
bce7d2fe-2279-1785-4571-3056df00e166	2021-05-22 07:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:35:35.853+03	2021-05-22 07:35:35.859+03	
14af22ea-cfe7-5425-13df-399b3d89cc87	2021-05-22 07:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:35:55.853+03	2021-05-22 07:35:55.859+03	
47085347-6583-fac7-2c6d-a9b8c6929454	2021-05-22 07:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:36:15.853+03	2021-05-22 07:36:15.876+03	
23eec057-e484-9ede-2e7a-fe3de071c99d	2021-05-22 07:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:36:35.853+03	2021-05-22 07:36:35.863+03	
3297677b-8e49-9206-841e-a9427151f6d2	2021-05-22 07:36:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:36:56.852+03	2021-05-22 07:36:57.151+03	
4a657dfb-8b16-2292-9351-f965ee25f6dc	2021-05-22 07:37:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:37:16.854+03	2021-05-22 07:37:16.86+03	
d7677ed1-00d8-f468-ad92-acbba41905b4	2021-05-22 07:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:37:37.853+03	2021-05-22 07:37:37.862+03	
9c62d19f-b16c-20f9-3dcd-f7b2238c9113	2021-05-22 07:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:37:58.852+03	2021-05-22 07:37:58.86+03	
ecbd7e24-9b6c-d924-afb9-c7f3984962aa	2021-05-22 07:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:38:18.853+03	2021-05-22 07:38:18.867+03	
2cf33b77-303c-3a39-9640-649608c7d767	2021-05-22 07:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:38:38.853+03	2021-05-22 07:38:38.859+03	
dc10a4e3-4b0a-90cd-0f9b-5f4e8822ead6	2021-05-22 07:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:38:59.852+03	2021-05-22 07:38:59.86+03	
9936832e-5b9a-066b-716f-580f73dcb8d0	2021-05-22 07:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:39:19.853+03	2021-05-22 07:39:19.862+03	
25662843-8ddf-8bc5-a6a3-a4ef4c9c84d6	2021-05-22 07:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:39:40.852+03	2021-05-22 07:39:40.858+03	
056af201-87a5-eb0b-7ab3-6cb5f8a0eb86	2021-05-22 07:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 07:40:00.852+03	2021-05-22 07:40:00.858+03	ERROR
4bc169f5-e467-9e28-90af-5efbc3a80ac5	2021-05-22 07:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:40:11.853+03	2021-05-22 07:40:11.859+03	
98b11225-30ef-97f8-6021-f899f169eb83	2021-05-22 07:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:40:31.853+03	2021-05-22 07:40:31.859+03	
95616e83-9e36-f901-66da-97b1f9b972d8	2021-05-22 07:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:40:52.852+03	2021-05-22 07:40:52.858+03	
db039a10-bf20-c396-c03b-d242e6caff51	2021-05-22 07:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:41:12.852+03	2021-05-22 07:41:12.859+03	
816d36bb-b950-4e84-0bf9-469ec77eb992	2021-05-22 07:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:41:32.853+03	2021-05-22 07:41:32.861+03	
0358c8ea-65c7-f724-b024-c76829008fa8	2021-05-22 07:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:41:52.853+03	2021-05-22 07:41:52.86+03	
e4f4d42e-3c56-7d9f-d69f-b2cb307f3c67	2021-05-22 07:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:42:12.853+03	2021-05-22 07:42:12.859+03	
48f67c36-1fee-f8df-71c8-531eb38413d8	2021-05-22 07:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:42:33.852+03	2021-05-22 07:42:33.871+03	
c2601801-32bd-f714-58a3-2fab8ab58eab	2021-05-22 07:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:42:53.853+03	2021-05-22 07:42:53.861+03	
c7ecefb4-f721-6b28-8f5c-6a13d41acf45	2021-05-22 07:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:43:14.853+03	2021-05-22 07:43:14.859+03	
78b7515e-2739-c4b4-3b94-4a94c57f8b21	2021-05-22 07:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:43:34.853+03	2021-05-22 07:43:34.859+03	
c7933841-7133-84f4-5c63-3572e86983ce	2021-05-22 07:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:43:55.852+03	2021-05-22 07:43:55.862+03	
30b9e3e5-9a52-f3b5-4f5b-7fb8a0f01e7f	2021-05-22 07:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:44:15.852+03	2021-05-22 07:44:15.859+03	
c2026764-4073-0581-ea58-251a61730cf4	2021-05-22 07:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:23:30.853+03	2021-05-22 07:23:30.86+03	
04850db0-c356-cc5a-4b4b-c7461a446d1c	2021-05-22 07:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:23:50.853+03	2021-05-22 07:23:50.86+03	
c813b1ab-947c-3d31-a570-315ded6b1715	2021-05-22 07:24:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:24:11.853+03	2021-05-22 07:24:11.86+03	
1cd7a2de-5165-f0ab-e79f-d98ab3fae34d	2021-05-22 07:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:24:32.852+03	2021-05-22 07:24:32.859+03	
2bfc1645-6595-bbd7-7597-89883a8cae9f	2021-05-22 07:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:24:52.852+03	2021-05-22 07:24:52.858+03	
1c8a88e3-98ba-1c83-fa51-b0cb24bdf508	2021-05-22 07:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:25:12.853+03	2021-05-22 07:25:12.86+03	
fb45f1ba-93cb-18b7-1d40-0b72dcb43677	2021-05-22 07:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:25:32.853+03	2021-05-22 07:25:32.87+03	
8b3c5642-4e70-e100-703b-372cbcf52f65	2021-05-22 07:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:25:52.853+03	2021-05-22 07:25:52.865+03	
5209141b-9492-1a39-7750-d62c78254bb0	2021-05-22 07:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:26:13.853+03	2021-05-22 07:26:13.861+03	
40fda2a5-cc56-447f-c8cf-21561f7f590d	2021-05-22 07:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:26:33.853+03	2021-05-22 07:26:33.861+03	
4c902514-1b1d-8d70-faa2-70e11ed6e8bf	2021-05-22 07:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:26:54.853+03	2021-05-22 07:26:54.878+03	
1bb969f7-6f7f-be8f-7a2f-a16a5d2e8361	2021-05-22 07:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:27:15.853+03	2021-05-22 07:27:15.861+03	
f6f9fb95-7993-c1dc-279f-4c33c91ff89d	2021-05-22 07:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:27:35.853+03	2021-05-22 07:27:35.864+03	
188c51df-01dc-1469-dda3-bb315a26ef61	2021-05-22 07:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:27:55.853+03	2021-05-22 07:27:55.861+03	
2af4d239-e8fd-2011-c199-a82b216eb862	2021-05-22 07:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:28:15.853+03	2021-05-22 07:28:15.869+03	
a769b485-22a2-0ffe-4122-e2b2e4f3cf8c	2021-05-22 07:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:28:35.853+03	2021-05-22 07:28:35.86+03	
fe6da6c1-af57-da1a-08e2-330ba7ec84e8	2021-05-22 07:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:28:56.852+03	2021-05-22 07:28:56.86+03	
329c54f1-969a-1f44-f162-94bf688a9bcf	2021-05-22 07:29:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:29:16.853+03	2021-05-22 07:29:16.86+03	
2e8192e8-d4de-f1d8-4112-1ab1cb363893	2021-05-22 07:29:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:29:36.853+03	2021-05-22 07:29:36.861+03	
ba6d2739-1974-0e5d-8712-c83406b1a8f0	2021-05-22 07:29:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:29:46.854+03	2021-05-22 07:29:46.879+03	
71a22298-8851-4026-d675-13599dd493af	2021-05-22 07:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 07:30:00.852+03	2021-05-22 07:30:00.857+03	ERROR
f3a49f46-d94d-b340-9be6-1397be16e087	2021-05-22 07:30:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:30:18.853+03	2021-05-22 07:30:18.863+03	
07341ec5-919a-7516-5c9a-6792dbd84208	2021-05-22 07:30:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:30:38.853+03	2021-05-22 07:30:38.859+03	
55e6467b-fa1c-9a77-e69b-1862e0209856	2021-05-22 07:30:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:30:59.853+03	2021-05-22 07:30:59.86+03	
0c87e3d3-5720-aefb-920d-f56a67c70cea	2021-05-22 07:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:31:20.853+03	2021-05-22 07:31:20.861+03	
b03ade31-6f12-bfaa-9baf-41c45e4f630e	2021-05-22 07:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:31:40.853+03	2021-05-22 07:31:40.859+03	
65f7f01e-679e-ba35-0eff-aebec2f7530c	2021-05-22 07:32:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:32:01.852+03	2021-05-22 07:32:01.9+03	
a058dcfc-e9e4-f035-f0a8-b3066cb3b0c9	2021-05-22 07:32:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:32:21.853+03	2021-05-22 07:32:21.873+03	
eb3a8729-ede4-8c86-60e3-391bcb540f6a	2021-05-22 07:32:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:32:42.853+03	2021-05-22 07:32:42.859+03	
b79d4570-ec81-9002-c479-3d27ab53e548	2021-05-22 07:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:33:03.852+03	2021-05-22 07:33:03.859+03	
7bcabc72-ab45-a05f-007c-ab78527e6b94	2021-05-22 07:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:33:23.852+03	2021-05-22 07:33:23.86+03	
d10a1644-91d2-3458-ef1f-7717d17dab93	2021-05-22 07:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:33:43.852+03	2021-05-22 07:33:43.858+03	
73089f81-b1d3-939f-c9a3-a915ec75c68d	2021-05-22 07:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:34:03.853+03	2021-05-22 07:34:03.86+03	
bdbdb2f7-32a5-de0b-7252-004574a8250d	2021-05-22 07:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:34:23.853+03	2021-05-22 07:34:23.861+03	
1e4c4ed1-4e4f-368f-74fd-3d8e44206226	2021-05-22 07:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:34:44.852+03	2021-05-22 07:34:44.872+03	
352505f0-707f-91b7-c044-15748566878f	2021-05-22 07:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:35:04.853+03	2021-05-22 07:35:04.862+03	
6c6d5373-25ed-9fd2-4318-655579f2415a	2021-05-22 07:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:35:25.853+03	2021-05-22 07:35:25.86+03	
f0f4736b-12cb-682e-31dd-5683e12960fe	2021-05-22 07:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:35:45.853+03	2021-05-22 07:35:45.859+03	
14a659f6-0dd4-a8c5-aae8-1b1d0e2f8bb6	2021-05-22 07:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:36:05.853+03	2021-05-22 07:36:05.86+03	
a6e8ef34-d2ad-b844-0a84-db7ccec2c4eb	2021-05-22 07:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:36:25.853+03	2021-05-22 07:36:25.86+03	
f2d35f8d-3cce-2138-2da4-e488931c9883	2021-05-22 07:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:36:45.853+03	2021-05-22 07:36:45.86+03	
71670aea-27ff-a358-075f-73a569c177f5	2021-05-22 07:37:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:37:06.853+03	2021-05-22 07:37:06.859+03	
2766bb94-1964-11dd-3359-bf604205dfc6	2021-05-22 07:37:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:37:26.854+03	2021-05-22 07:37:26.861+03	
c04605e8-0738-5ea9-bfb6-46aa2a8a776a	2021-05-22 07:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:37:47.853+03	2021-05-22 07:37:47.861+03	
94d03fcc-303f-f229-a4d7-b7d0144583f9	2021-05-22 07:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:38:08.852+03	2021-05-22 07:38:08.86+03	
f6850c71-6ba8-2d93-c3be-6317bbd6df01	2021-05-22 07:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:38:28.853+03	2021-05-22 07:38:28.86+03	
9f704448-6cf7-b18d-f9fa-0156dd138cbb	2021-05-22 07:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:38:49.852+03	2021-05-22 07:38:49.869+03	
bd13ee16-4933-2e27-2efb-0b7738401a25	2021-05-22 07:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:39:09.853+03	2021-05-22 07:39:09.861+03	
b0efa551-cef6-7e83-889c-d8ebdd7f14ab	2021-05-22 07:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:39:30.852+03	2021-05-22 07:39:30.859+03	
5bf94b32-6fa4-6828-bfe9-2a082ce9fbbb	2021-05-22 07:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:39:50.853+03	2021-05-22 07:39:50.86+03	
edf3170d-8a87-0694-2eed-3aa44bfbc67a	2021-05-22 07:40:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:40:01.853+03	2021-05-22 07:40:01.892+03	
0a3b01be-45b3-de37-4e6b-1ed5f17dc3c2	2021-05-22 07:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:40:21.853+03	2021-05-22 07:40:21.868+03	
15a8e3ba-b5fe-ceff-5806-dbf86a0c98e3	2021-05-22 07:40:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:40:41.854+03	2021-05-22 07:40:41.862+03	
b8b8256b-eb60-44c2-d9a5-4edf61d8be3c	2021-05-22 07:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:41:02.852+03	2021-05-22 07:41:02.859+03	
b0103ec5-f6a5-2704-7fdd-6301266166a3	2021-05-22 07:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:41:22.852+03	2021-05-22 07:41:22.859+03	
f2594551-52eb-60fe-b3e0-b47810054ff8	2021-05-22 07:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:41:42.853+03	2021-05-22 07:41:42.86+03	
aa8a3a7d-3bd6-e430-a0b5-83ee584ed059	2021-05-22 07:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:42:02.853+03	2021-05-22 07:42:02.859+03	
f4d79b0f-2eb3-6469-7b89-2fcec48c94cf	2021-05-22 07:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:42:23.852+03	2021-05-22 07:42:23.867+03	
24c36298-5530-ee6f-dbda-7b1fd1934230	2021-05-22 07:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:42:43.852+03	2021-05-22 07:42:43.86+03	
fe8d7d6f-dcfc-f58b-c201-366129541963	2021-05-22 07:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:43:03.853+03	2021-05-22 07:43:03.859+03	
67f90a59-c029-9be9-e62b-d6be43ea41d1	2021-05-22 07:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:43:24.853+03	2021-05-22 07:43:24.861+03	
a745a504-2184-0cf9-b725-8a1ff8af0716	2021-05-22 07:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:43:44.853+03	2021-05-22 07:43:44.874+03	
dee8df3c-6fd3-d044-fc38-ff801a2d004f	2021-05-22 07:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:44:05.852+03	2021-05-22 07:44:05.859+03	
e249bc77-eaee-4ada-cf23-2e6add6bc274	2021-05-22 07:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:44:25.852+03	2021-05-22 07:44:25.867+03	
6db144ee-9886-6acc-83f1-57685c8c2888	2021-05-22 07:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:44:45.853+03	2021-05-22 07:44:45.861+03	
e0fb9fdb-255e-5657-04ff-04c0330404f0	2021-05-22 07:45:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:45:07.852+03	2021-05-22 07:45:07.86+03	
729862ff-5921-72ef-a41c-e9ff6edb4852	2021-05-22 07:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:45:27.852+03	2021-05-22 07:45:27.859+03	
2fb6f6cb-42d3-28b8-83d7-d74f7e37a8cc	2021-05-22 07:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:45:47.853+03	2021-05-22 07:45:47.859+03	
7559fe8f-129b-2c5d-6724-0bd67597654a	2021-05-22 07:46:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:46:08.853+03	2021-05-22 07:46:08.865+03	
74b631cf-7289-9e76-1647-206a0e5ed3a3	2021-05-22 07:46:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:46:28.853+03	2021-05-22 07:46:28.871+03	
b8ec0825-663b-8414-74d5-8f87e61cd089	2021-05-22 07:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:46:48.853+03	2021-05-22 07:46:48.862+03	
9e21fde8-ad4a-ed16-ac2c-44dd7b8e73c0	2021-05-22 07:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:47:09.853+03	2021-05-22 07:47:09.859+03	
c9dfee1c-5b12-20f5-d9ef-7dc71f46cc42	2021-05-22 07:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:47:30.852+03	2021-05-22 07:47:30.862+03	
5908bf88-04d8-a673-8150-46600f49bcee	2021-05-22 07:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:47:50.853+03	2021-05-22 07:47:50.863+03	
292258e1-a3df-e7dc-0a30-02054e7372c9	2021-05-22 07:48:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:48:11.852+03	2021-05-22 07:48:11.859+03	
834674dd-d7ab-e66b-eb6d-bba791b4ad2e	2021-05-22 07:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:48:32.852+03	2021-05-22 07:48:32.867+03	
b11c342c-eaf1-6af8-b1da-84dc7c0e74c6	2021-05-22 07:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:48:52.853+03	2021-05-22 07:48:52.86+03	
44e61abb-2de4-7272-f61e-cd0aa337bd4d	2021-05-22 07:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:49:12.853+03	2021-05-22 07:49:12.869+03	
19c100fd-9e66-3556-ed79-6c943b8d0740	2021-05-22 07:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:49:33.853+03	2021-05-22 07:49:33.86+03	
ff51bd0a-2800-4ca7-deee-77c254b87b20	2021-05-22 07:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:49:54.853+03	2021-05-22 07:49:54.871+03	
7140f3f1-71fe-f7d7-8a35-15bdd13a4c57	2021-05-22 07:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:50:05.852+03	2021-05-22 07:50:05.859+03	
c444e1ee-c3c2-e951-53fd-83715f519932	2021-05-22 07:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:50:25.853+03	2021-05-22 07:50:25.863+03	
d10523ab-2e9d-49d0-0292-119a75cb09a3	2021-05-22 07:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:50:45.853+03	2021-05-22 07:50:45.86+03	
df15c4be-7a42-4c26-1c4d-57a1008dd670	2021-05-22 07:51:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:51:06.853+03	2021-05-22 07:51:06.864+03	
6e236b8f-859e-86c4-bdf4-2bc4b75ba9a1	2021-05-22 07:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:51:27.853+03	2021-05-22 07:51:27.864+03	
da4c0aca-93f5-7b61-61c3-7155c654f932	2021-05-22 07:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:51:47.853+03	2021-05-22 07:51:47.861+03	
36617a8a-2352-53cc-451b-c27f72134f5e	2021-05-22 07:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:52:07.853+03	2021-05-22 07:52:07.86+03	
889ed591-9066-c9e4-c239-96834b09a0b5	2021-05-22 07:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:52:27.853+03	2021-05-22 07:52:27.861+03	
527584b8-dab0-78b0-335b-bf792ec03c78	2021-05-22 07:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:52:47.853+03	2021-05-22 07:52:47.862+03	
e13fc9a2-092d-db96-b08f-dea7484a48b1	2021-05-22 07:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:53:08.853+03	2021-05-22 07:53:08.889+03	
b9a078fd-92c2-2568-c5f4-76b1033a2ea9	2021-05-22 07:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:53:30.852+03	2021-05-22 07:53:30.859+03	
f8f89b17-c525-bb7f-0d80-21b7407c8d23	2021-05-22 07:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:53:50.853+03	2021-05-22 07:53:50.869+03	
88e6e59b-9c57-69dc-7201-8ee43241b081	2021-05-22 07:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:54:10.853+03	2021-05-22 07:54:10.859+03	
7d18390b-6164-18be-6e65-1985644e359f	2021-05-22 07:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:54:30.853+03	2021-05-22 07:54:30.861+03	
cc1acdac-e51a-9265-3dd4-8be2224e4943	2021-05-22 07:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:54:50.853+03	2021-05-22 07:54:50.863+03	
5c2f606a-81ac-cb1f-40d0-976bd000e52c	2021-05-22 07:55:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:55:11.854+03	2021-05-22 07:55:11.86+03	
3fdfb130-235a-d089-45f6-b65aa86862ce	2021-05-22 07:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:55:32.853+03	2021-05-22 07:55:32.862+03	
f1559132-8da3-068e-e566-75b085874d40	2021-05-22 07:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:55:52.853+03	2021-05-22 07:55:52.86+03	
bb4216e0-f67f-6cf1-78bf-0377adbffb8b	2021-05-22 07:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:56:12.853+03	2021-05-22 07:56:12.86+03	
2c732a82-0ae7-f642-1093-837db6de8c89	2021-05-22 07:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:56:32.853+03	2021-05-22 07:56:32.859+03	
69466d86-5cef-0012-209f-ddb6a14e7c5a	2021-05-22 07:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:56:52.853+03	2021-05-22 07:56:52.859+03	
436ae5ef-5ac8-1867-d34f-4e8fec93b12b	2021-05-22 07:57:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:57:12.853+03	2021-05-22 07:57:12.875+03	
f253d7d8-5cf6-4af2-debe-67dfc5825eac	2021-05-22 07:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:57:33.853+03	2021-05-22 07:57:33.86+03	
a7841c75-4d0b-18d5-bc28-a65a5c507591	2021-05-22 07:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:57:53.853+03	2021-05-22 07:57:53.86+03	
23280769-bd0e-bf12-6d9b-8345583a2998	2021-05-22 07:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:58:13.853+03	2021-05-22 07:58:13.86+03	
ce73c270-a8be-eb10-be81-b4604fbb237e	2021-05-22 07:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:58:34.853+03	2021-05-22 07:58:34.864+03	
a70dfffe-e827-a9c1-5460-f11081755cfa	2021-05-22 07:58:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:58:55.853+03	2021-05-22 07:58:55.859+03	
39fc075a-2d75-84a5-7db9-fe3b8ece2111	2021-05-22 07:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:59:15.853+03	2021-05-22 07:59:15.871+03	
b680deab-c81e-989d-ac1c-9aeeaa1e92df	2021-05-22 07:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:59:36.852+03	2021-05-22 07:59:36.859+03	
7a44231f-564f-266d-4edf-16b73c7bd7ff	2021-05-22 07:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:59:57.853+03	2021-05-22 07:59:57.861+03	
969c0530-8162-e4c3-a288-999b7c5af746	2021-05-22 08:00:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:00:07.853+03	2021-05-22 08:00:07.865+03	
361ca9a3-0188-54c9-4c67-4fb724243866	2021-05-22 08:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:00:27.853+03	2021-05-22 08:00:27.863+03	
be5df83e-b8c6-e5b2-9581-624fef5f60af	2021-05-22 08:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:00:47.853+03	2021-05-22 08:00:47.86+03	
40a70b5b-7330-d0bf-b49d-d3dd9b60f71a	2021-05-22 08:01:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:01:07.853+03	2021-05-22 08:01:07.86+03	
c04cc9fd-ac12-68dd-936f-c70ede173d95	2021-05-22 08:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:01:27.853+03	2021-05-22 08:01:27.861+03	
2ca9d9e6-11da-c1a8-1303-fe547160ce11	2021-05-22 08:01:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:01:47.853+03	2021-05-22 08:01:47.863+03	
8332977a-5051-9467-662c-e09cb59f1d26	2021-05-22 08:02:07.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:02:07.854+03	2021-05-22 08:02:07.862+03	
e87e39b0-52f5-cac4-6e54-7b63dec38049	2021-05-22 08:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:02:28.852+03	2021-05-22 08:02:28.861+03	
b9a4114b-77ae-6d04-d6df-8da2c82a2e47	2021-05-22 08:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:02:48.853+03	2021-05-22 08:02:48.859+03	
8507218f-536e-f51d-f482-db0a767b8648	2021-05-22 08:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:03:08.853+03	2021-05-22 08:03:08.863+03	
ad697948-6c4a-9fb5-9132-a19f2640ba30	2021-05-22 08:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:03:28.853+03	2021-05-22 08:03:28.861+03	
a3c62d56-2acc-dc07-1cc8-7296b4b8a0a0	2021-05-22 08:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:03:48.853+03	2021-05-22 08:03:48.861+03	
5d405629-638f-746a-5000-2a775c1b4608	2021-05-22 08:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:04:08.853+03	2021-05-22 08:04:08.88+03	
08826d8d-e281-56e4-4b70-fa34c3f3834c	2021-05-22 08:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:04:28.853+03	2021-05-22 08:04:28.86+03	
c3ec1878-37fa-51e5-e43a-f6b7a07deab7	2021-05-22 08:04:50.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:04:50.86+03	2021-05-22 08:04:50.866+03	
6dee5ddb-1ce2-0398-ca69-ddf782c1d68d	2021-05-22 08:05:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:05:11.854+03	2021-05-22 08:05:11.872+03	
4b03c2ea-cb4b-5c12-0433-e45431c48e0c	2021-05-22 07:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:44:35.852+03	2021-05-22 07:44:35.86+03	
022860a9-ad08-5454-2252-f9ff88c980fc	2021-05-22 07:44:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:44:56.853+03	2021-05-22 07:44:56.859+03	
4381e0c5-dba1-e5d1-6037-943cd8bcabab	2021-05-22 07:45:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:45:17.852+03	2021-05-22 07:45:17.859+03	
8d9606a1-8240-aa42-7086-ff5bd1209c4b	2021-05-22 07:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:45:37.853+03	2021-05-22 07:45:37.862+03	
fb7fb4fe-eef5-6f18-f7c6-bbd161197732	2021-05-22 07:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:45:57.853+03	2021-05-22 07:45:57.86+03	
86256ac2-e9d8-0fac-da10-cf3dd7983267	2021-05-22 07:46:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:46:18.853+03	2021-05-22 07:46:18.86+03	
24a042d0-3c84-8c0f-6717-b97a2e27d5bb	2021-05-22 07:46:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:46:38.853+03	2021-05-22 07:46:38.86+03	
7a41803b-0fa5-31bc-9261-1a2cd5aa1a50	2021-05-22 07:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:46:59.853+03	2021-05-22 07:46:59.86+03	
6f1d32f4-c1bc-95ed-e66d-8d395c878ab2	2021-05-22 07:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:47:19.853+03	2021-05-22 07:47:19.861+03	
0be60b5a-61cf-633e-6b4c-1e54f2025dba	2021-05-22 07:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:47:40.852+03	2021-05-22 07:47:40.859+03	
1d509583-b255-eae3-b0fa-ceee2ee07055	2021-05-22 07:48:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:48:01.852+03	2021-05-22 07:48:01.896+03	
baa2a4dd-25ab-19c3-42f0-3426fc639feb	2021-05-22 07:48:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:48:21.854+03	2021-05-22 07:48:21.861+03	
d4eab712-46c7-c89e-d973-8d377da5df40	2021-05-22 07:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:48:42.853+03	2021-05-22 07:48:42.861+03	
8e36231b-4630-41a5-95ba-472072f4e9e8	2021-05-22 07:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:49:02.853+03	2021-05-22 07:49:02.859+03	
b06df190-ee59-6a3a-50a0-0522bb83ebf4	2021-05-22 07:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:49:23.853+03	2021-05-22 07:49:23.871+03	
a7235340-bfb0-d781-92ad-0faefd333faa	2021-05-22 07:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:49:43.853+03	2021-05-22 07:49:43.86+03	
a3bb50ad-a48d-b947-f97f-65b2b4b7baaf	2021-05-22 07:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 07:50:00.853+03	2021-05-22 07:50:00.858+03	ERROR
1ead6101-3914-c3cf-460c-2d11c30ea5d3	2021-05-22 07:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:50:15.853+03	2021-05-22 07:50:15.875+03	
43ffd6b4-e4a6-b370-a2eb-b08961d74a3a	2021-05-22 07:50:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:50:35.853+03	2021-05-22 07:50:35.859+03	
ddcf375b-406c-939f-cf42-322fefcbb1ae	2021-05-22 07:50:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:50:56.853+03	2021-05-22 07:50:56.861+03	
72195147-587d-c422-33ac-e4afac65509e	2021-05-22 07:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:51:17.853+03	2021-05-22 07:51:17.86+03	
2c392e90-92fd-3c8a-964c-4d7e653cbf31	2021-05-22 07:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:51:37.853+03	2021-05-22 07:51:37.861+03	
c7a04154-d150-f139-244c-295148ed2bae	2021-05-22 07:51:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:51:57.853+03	2021-05-22 07:51:57.861+03	
c7c909ca-b871-87d6-5652-0a845933675d	2021-05-22 07:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:52:17.853+03	2021-05-22 07:52:17.868+03	
7ef01494-901a-7b04-1769-cdda1564c13f	2021-05-22 07:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:52:37.853+03	2021-05-22 07:52:37.862+03	
4dd8376e-c455-eb08-e896-0c992e734609	2021-05-22 07:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:52:57.853+03	2021-05-22 07:52:57.861+03	
ab1e3ffd-e003-9f08-05cd-bd7ee38eacc5	2021-05-22 07:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:53:19.853+03	2021-05-22 07:53:19.86+03	
61154da4-7202-2fa9-c7c4-5543ffef7ab3	2021-05-22 07:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:53:40.853+03	2021-05-22 07:53:40.861+03	
b8e55a85-9cb3-4359-66d5-c775c04493fa	2021-05-22 07:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:54:00.853+03	2021-05-22 07:54:00.859+03	
71e2f826-6cb8-54b5-0d79-97e596e894a5	2021-05-22 07:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:54:20.853+03	2021-05-22 07:54:20.861+03	
2c6213df-ea09-5c04-0648-11e7153b790c	2021-05-22 07:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:54:40.853+03	2021-05-22 07:54:40.86+03	
c2ef9440-e7e1-7fa1-9dbb-e13d2f10b3a6	2021-05-22 07:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:55:00.853+03	2021-05-22 07:55:00.859+03	
96196c02-3a49-d3d1-88f5-ca7852af6b7d	2021-05-22 07:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:55:22.853+03	2021-05-22 07:55:22.861+03	
add793aa-df08-9382-59cf-f41e9507b93c	2021-05-22 07:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:55:42.853+03	2021-05-22 07:55:42.86+03	
71901e60-a2e1-c75e-3c5d-240ebbe0b97d	2021-05-22 07:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:56:02.853+03	2021-05-22 07:56:02.859+03	
70ea5842-79b2-0191-9e0c-dd05fa396f29	2021-05-22 07:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:56:22.853+03	2021-05-22 07:56:22.861+03	
4782b63e-a74f-a60d-191b-ceeb7aac11b1	2021-05-22 07:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:56:42.853+03	2021-05-22 07:56:42.86+03	
12e062a7-1420-de0f-1256-b9d6933a8097	2021-05-22 07:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:57:02.853+03	2021-05-22 07:57:02.86+03	
bfc5787a-3361-e1ab-df35-f75466455319	2021-05-22 07:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:57:22.853+03	2021-05-22 07:57:22.86+03	
7b7a1bcb-0ae9-16f4-3e24-1f282afbb84b	2021-05-22 07:57:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:57:43.853+03	2021-05-22 07:57:43.866+03	
e8e7d0d0-1cd4-c0e7-dd58-0a22256a3fa9	2021-05-22 07:58:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:58:03.853+03	2021-05-22 07:58:03.859+03	
4464449a-c2cc-cdfb-163b-cce015fd5123	2021-05-22 07:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:58:23.853+03	2021-05-22 07:58:23.86+03	
0cf8f0d3-5319-1949-7d3c-ae46d391fc12	2021-05-22 07:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:58:45.852+03	2021-05-22 07:58:45.864+03	
ba585e2c-79e4-91ed-4ab5-96629ad6d675	2021-05-22 07:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:59:05.853+03	2021-05-22 07:59:05.859+03	
d58d5ca4-458d-ff95-da2d-63226a671837	2021-05-22 07:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:59:25.853+03	2021-05-22 07:59:25.862+03	
8e5eff5b-7032-59cb-b071-5f8f70697f5f	2021-05-22 07:59:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 07:59:46.854+03	2021-05-22 07:59:46.86+03	
8fe80f8f-3dd3-9341-22a4-fe16506c6f66	2021-05-22 08:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 08:00:00.853+03	2021-05-22 08:00:00.866+03	ERROR
9d33ecbc-cea9-15da-deee-50352c9e863b	2021-05-22 08:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:00:17.853+03	2021-05-22 08:00:17.869+03	
932bcdd2-01b3-cca8-4334-324269e725a5	2021-05-22 08:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:00:37.853+03	2021-05-22 08:00:37.861+03	
4132894c-748d-e6de-0c3c-1e62a7c7b8cc	2021-05-22 08:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:00:57.853+03	2021-05-22 08:00:57.859+03	
d0ed77db-6a91-bfb0-b298-0b46fc74662c	2021-05-22 08:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:01:17.853+03	2021-05-22 08:01:17.861+03	
139c8a6c-1a5a-3129-7cd2-837975cd628e	2021-05-22 08:01:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:01:37.853+03	2021-05-22 08:01:37.863+03	
e005103d-8f34-db08-b9d0-a67e638e2d2b	2021-05-22 08:01:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:01:57.853+03	2021-05-22 08:01:57.861+03	
332a880e-b4dc-8fb6-65da-63c1b324c19e	2021-05-22 08:02:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:02:18.852+03	2021-05-22 08:02:18.859+03	
9b300d9b-9226-f67e-86de-517fc6bd48b9	2021-05-22 08:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:02:38.853+03	2021-05-22 08:02:38.859+03	
06b175a1-a597-4612-fde3-b54304ca1965	2021-05-22 08:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:02:58.853+03	2021-05-22 08:02:58.86+03	
1a2e439e-7c97-ee9d-fb05-e86a6c7fc102	2021-05-22 08:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:03:18.853+03	2021-05-22 08:03:18.861+03	
ff99da98-df2c-1a62-7850-2bf7e959d04a	2021-05-22 08:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:03:38.853+03	2021-05-22 08:03:38.859+03	
b5138014-c2a8-6061-4744-7ad2f13a2c77	2021-05-22 08:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:03:58.853+03	2021-05-22 08:03:58.859+03	
8fd681bd-c106-b475-5d25-07a60f3d4a48	2021-05-22 08:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:04:18.853+03	2021-05-22 08:04:18.86+03	
93ffc63d-7cfb-22ed-afa1-4161fe572fea	2021-05-22 08:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:04:39.853+03	2021-05-22 08:04:39.86+03	
59dcad95-8a4e-eaf9-c07c-71668e0bd707	2021-05-22 08:05:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:05:01.852+03	2021-05-22 08:05:01.871+03	
8e52df54-5ab5-2fe3-b91a-cbf2df4587ec	2021-05-22 08:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:05:22.852+03	2021-05-22 08:05:22.859+03	
a2622fea-0063-8a70-cb0a-2aef24cc4ae9	2021-05-22 08:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:05:32.852+03	2021-05-22 08:05:32.86+03	
b8b4af43-28b3-8936-ddfe-a3aa083e1c0d	2021-05-22 08:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:05:52.853+03	2021-05-22 08:05:52.859+03	
44e0bba2-8764-42e6-ffbe-3540cf6748bf	2021-05-22 08:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:06:12.853+03	2021-05-22 08:06:12.861+03	
7580e213-5af8-cf02-b5e7-17cfa3e27580	2021-05-22 08:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:06:34.853+03	2021-05-22 08:06:34.873+03	
9f12d58f-baec-ee66-2a9f-e64a969a3081	2021-05-22 08:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:06:55.853+03	2021-05-22 08:06:55.871+03	
4d58665a-f78c-bf7c-b7ae-0caf933dab69	2021-05-22 08:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:07:15.853+03	2021-05-22 08:07:15.86+03	
fc768cb2-2f6a-820d-eda5-9e4b3401e5b1	2021-05-22 08:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:07:35.853+03	2021-05-22 08:07:35.86+03	
ba64af5b-d836-0f72-191a-74791591b758	2021-05-22 08:07:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:07:56.853+03	2021-05-22 08:07:56.86+03	
c36a25b7-ec0e-49f5-67e2-fd65a85d2e02	2021-05-22 08:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:08:18.852+03	2021-05-22 08:08:18.87+03	
12466270-de9f-667c-27a9-9810df275f55	2021-05-22 08:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:08:38.853+03	2021-05-22 08:08:38.861+03	
6ac9c14b-39a1-82e0-7a47-8bb5421cc721	2021-05-22 08:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:08:58.853+03	2021-05-22 08:08:58.86+03	
b78c4e59-3475-9b7a-5a69-b73026c3b389	2021-05-22 08:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:09:19.853+03	2021-05-22 08:09:19.872+03	
0af5705b-70a0-35b9-acbd-7e0463c23a45	2021-05-22 08:09:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:09:39.853+03	2021-05-22 08:09:39.86+03	
62aa482c-704a-9bd2-372b-c5ed344b9ff0	2021-05-22 08:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:10:00.853+03	2021-05-22 08:10:00.868+03	
271f43b8-f836-91b2-31e8-c16b76b55562	2021-05-22 08:10:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:10:21.855+03	2021-05-22 08:10:21.863+03	
f9ca87c9-3df6-dbea-bb00-2e4191e5f03c	2021-05-22 08:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:10:42.853+03	2021-05-22 08:10:42.859+03	
12dc067d-b276-d797-a3fb-887b2c969787	2021-05-22 08:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:11:03.853+03	2021-05-22 08:11:03.86+03	
1ef34134-81cc-af94-801a-0b14b871c1d0	2021-05-22 08:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:11:23.853+03	2021-05-22 08:11:23.861+03	
24b399e8-ad59-ee2b-c872-cde81285fbaa	2021-05-22 08:11:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:11:43.853+03	2021-05-22 08:11:43.867+03	
4358ce5a-8a81-9be2-4b3d-ad279534451a	2021-05-22 08:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:12:05.853+03	2021-05-22 08:12:05.862+03	
2f0e3365-57e5-c1f4-8e99-0685e5e03fcd	2021-05-22 08:12:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:12:26.855+03	2021-05-22 08:12:26.862+03	
5d1742b1-7e12-5063-6731-565a1fba10fc	2021-05-22 08:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:12:47.853+03	2021-05-22 08:12:47.861+03	
5c8b2c5f-31f2-1195-873f-b4bbdec9270c	2021-05-22 08:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:13:08.853+03	2021-05-22 08:13:08.86+03	
48bb6af6-c133-a042-b256-958c3b050311	2021-05-22 08:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:13:29.853+03	2021-05-22 08:13:29.861+03	
256c7268-f255-88f1-f582-5782cf919416	2021-05-22 08:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:13:49.853+03	2021-05-22 08:13:49.861+03	
b452a5dc-57ac-4f5c-a24f-5e294495b601	2021-05-22 08:14:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:14:09.853+03	2021-05-22 08:14:09.864+03	
556073b6-7b02-67cd-e0c6-6d0d4f820ee4	2021-05-22 08:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:14:29.853+03	2021-05-22 08:14:29.859+03	
a95a3655-ed65-958b-49e3-6e6c16c42aa9	2021-05-22 08:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:14:49.853+03	2021-05-22 08:14:49.861+03	
d2fd7453-9480-20f2-cc87-c83d7fe30ce3	2021-05-22 08:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:15:10.852+03	2021-05-22 08:15:10.859+03	
dec9e4a6-c7ca-ee47-dfba-02cdbed84356	2021-05-22 08:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:15:30.853+03	2021-05-22 08:15:30.861+03	
f72821b2-cf1b-5ab6-3c54-1935892de0d5	2021-05-22 08:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:15:50.853+03	2021-05-22 08:15:50.862+03	
3aba0f15-1da0-0a53-b9a5-40f918d383ae	2021-05-22 08:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:16:10.853+03	2021-05-22 08:16:10.871+03	
880e430d-ddb5-f567-91de-71e12c87e58a	2021-05-22 08:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:16:30.853+03	2021-05-22 08:16:30.86+03	
85e0c5d6-5411-a69a-4c3f-480df98124ce	2021-05-22 08:16:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:16:50.853+03	2021-05-22 08:16:50.861+03	
2714576f-d528-04c6-b847-4e0e35fea423	2021-05-22 08:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:17:10.853+03	2021-05-22 08:17:10.861+03	
4811bf9d-911b-1099-242d-f6f6eae3fb3d	2021-05-22 08:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:17:30.853+03	2021-05-22 08:17:30.859+03	
cd4871ba-5565-4597-ad76-1e989f587e8a	2021-05-22 08:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:17:50.853+03	2021-05-22 08:17:50.861+03	
58c749e8-88e7-8941-cb41-bf0144a3720c	2021-05-22 08:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:18:10.853+03	2021-05-22 08:18:10.862+03	
65eba796-12a0-d97a-850a-114ee27ec86b	2021-05-22 08:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:18:30.853+03	2021-05-22 08:18:30.86+03	
f5fa04d1-d500-8464-e709-a66ab92a511e	2021-05-22 08:18:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:18:50.853+03	2021-05-22 08:18:50.861+03	
9cef32da-7da7-dd01-f9ea-15a02cb78d68	2021-05-22 08:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:19:10.853+03	2021-05-22 08:19:10.863+03	
9c5bf508-4355-48b2-9eaf-dea029bec6ff	2021-05-22 08:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:19:30.853+03	2021-05-22 08:19:30.861+03	
25621a95-1cec-3487-6b39-1fb8f792269b	2021-05-22 08:19:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:19:51.852+03	2021-05-22 08:19:51.858+03	
30b4ea55-840e-9854-f28a-aa615608f5e5	2021-05-22 08:20:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:20:01.854+03	2021-05-22 08:20:01.863+03	
43c15d25-edc3-7158-9065-4eeb2851acdf	2021-05-22 08:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:20:22.853+03	2021-05-22 08:20:22.859+03	
be477c1d-ef92-bcfe-dfc7-682f5bc567d7	2021-05-22 08:20:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:20:43.853+03	2021-05-22 08:20:43.863+03	
e5c3bdbc-a128-1b03-f3c1-47720d68bb3a	2021-05-22 08:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:21:03.853+03	2021-05-22 08:21:03.864+03	
c8365c62-8cf2-ce04-ee9e-dde88b962ef3	2021-05-22 08:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:21:23.853+03	2021-05-22 08:21:23.861+03	
af9546b4-3f7f-214f-fb18-0a49f784edde	2021-05-22 08:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:21:43.853+03	2021-05-22 08:21:43.864+03	
84a0b0f5-6703-bc39-acf3-1ef8d2557b45	2021-05-22 08:22:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:22:03.853+03	2021-05-22 08:22:03.863+03	
f6f42fec-de21-c7fa-47d6-19598df70799	2021-05-22 08:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:22:24.852+03	2021-05-22 08:22:24.86+03	
0e03eb40-2545-d99d-0f56-ee01ab6d8d10	2021-05-22 08:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:22:44.853+03	2021-05-22 08:22:44.869+03	
acdc87f0-df38-b011-3a1a-64d0e591e045	2021-05-22 08:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:23:04.853+03	2021-05-22 08:23:04.871+03	
01c6b7b1-25fd-8d35-06a0-58287116b2af	2021-05-22 08:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:23:24.853+03	2021-05-22 08:23:24.873+03	
6b5d8a9c-f078-3e56-c36d-ed7e32faa48b	2021-05-22 08:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:23:44.853+03	2021-05-22 08:23:44.871+03	
d5d16376-982f-04e9-7022-980abb465d2c	2021-05-22 08:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:24:04.853+03	2021-05-22 08:24:04.86+03	
5db99466-a158-e60f-fb08-5cfc2349d486	2021-05-22 08:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:24:24.853+03	2021-05-22 08:24:24.864+03	
1f194dd1-b123-9ac8-31d4-b188d90e4ab7	2021-05-22 08:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:24:44.853+03	2021-05-22 08:24:44.862+03	
0705d459-4da2-8faf-70ae-a38c24fae633	2021-05-22 08:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:25:04.853+03	2021-05-22 08:25:04.861+03	
77f3fee5-19c5-88cb-e7cf-406554f9ba6c	2021-05-22 08:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:25:24.853+03	2021-05-22 08:25:24.87+03	
c979b9f9-8533-3ac6-64ad-709c75b4a8e1	2021-05-22 08:25:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:25:44.853+03	2021-05-22 08:25:44.875+03	
8c93df96-d8b7-f67d-bff4-caa19413207b	2021-05-22 08:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:26:05.853+03	2021-05-22 08:26:05.874+03	
1477ad11-d249-e507-dc34-9afd45f0f741	2021-05-22 08:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:26:26.852+03	2021-05-22 08:26:26.869+03	
e9dfd1be-51bd-1daf-7819-77839299cba4	2021-05-22 08:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:05:42.852+03	2021-05-22 08:05:42.859+03	
5b5502f4-6153-a928-efbc-738b8b4f7392	2021-05-22 08:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:06:02.853+03	2021-05-22 08:06:02.859+03	
1458c5e9-f9b1-54b5-0d7c-a035ac35f64c	2021-05-22 08:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:06:23.853+03	2021-05-22 08:06:23.861+03	
ea3ee94a-1f84-531b-c2d9-722b2695f3b9	2021-05-22 08:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:06:44.853+03	2021-05-22 08:06:44.871+03	
42d2e149-d83a-b43a-7ea0-da33783d7488	2021-05-22 08:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:07:05.853+03	2021-05-22 08:07:05.859+03	
567be2a6-671c-731f-e7f4-c863c664b92a	2021-05-22 08:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:07:25.853+03	2021-05-22 08:07:25.861+03	
15fe757f-80c5-058e-5409-691ede480dd6	2021-05-22 08:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:07:45.853+03	2021-05-22 08:07:45.86+03	
448da48d-adb7-9db8-d230-17c185f368f6	2021-05-22 08:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:08:07.853+03	2021-05-22 08:08:07.861+03	
39e94fc7-2040-24a4-1637-d499259f2cef	2021-05-22 08:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:08:28.853+03	2021-05-22 08:08:28.861+03	
6ec908a7-8526-508a-3c74-8d1749435e20	2021-05-22 08:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:08:48.853+03	2021-05-22 08:08:48.864+03	
2299a64c-49b0-d9fd-53d0-f431eea344b4	2021-05-22 08:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:09:08.853+03	2021-05-22 08:09:08.859+03	
9e0b3398-d164-42ea-e763-b67f2aa3c958	2021-05-22 08:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:09:29.853+03	2021-05-22 08:09:29.861+03	
38f7bc22-3b8d-847e-3f85-1872c0516de4	2021-05-22 08:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:09:49.853+03	2021-05-22 08:09:49.86+03	
9c6dd993-23a8-e409-0b1d-0706b8a25abe	2021-05-22 08:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 08:10:00.853+03	2021-05-22 08:10:00.887+03	ERROR
ccdfc9d5-28f0-618b-7e8f-e0cf8a953524	2021-05-22 08:10:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:10:11.854+03	2021-05-22 08:10:11.861+03	
301c5b11-4c65-588e-10b6-9dd4047eb08f	2021-05-22 08:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:10:32.853+03	2021-05-22 08:10:32.859+03	
c7874588-865e-6a68-ca0a-2493f4efdd9a	2021-05-22 08:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:10:52.853+03	2021-05-22 08:10:52.862+03	
e740448b-3cbe-bf3e-fd62-d975d395d6ba	2021-05-22 08:11:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:11:13.853+03	2021-05-22 08:11:13.862+03	
b53f7e8f-d739-eb0a-ae24-7dc0806870f7	2021-05-22 08:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:11:33.853+03	2021-05-22 08:11:33.868+03	
3b937ac1-d052-9fda-f361-e45cd13fd97c	2021-05-22 08:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:11:54.853+03	2021-05-22 08:11:54.859+03	
8cb384f3-fac8-a1a7-899c-ecd1ebddb1fe	2021-05-22 08:12:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:12:16.853+03	2021-05-22 08:12:16.861+03	
06b2e0ae-19af-94c7-d4d2-8b84f476f1b7	2021-05-22 08:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:12:37.853+03	2021-05-22 08:12:37.859+03	
d2761183-dba9-a524-f9d0-3b50c9203f7f	2021-05-22 08:12:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:12:57.853+03	2021-05-22 08:12:57.863+03	
e64b1ffe-b208-675a-8e0f-e41a9ddc8797	2021-05-22 08:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:13:19.853+03	2021-05-22 08:13:19.862+03	
a582210e-cb9e-55e8-fd92-1b0335931885	2021-05-22 08:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:13:39.853+03	2021-05-22 08:13:39.86+03	
57ac671a-e10f-9deb-149b-c65d9b0c09ff	2021-05-22 08:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:13:59.853+03	2021-05-22 08:13:59.864+03	
74ee0daa-4efb-2c3f-a9da-66ea77f568c8	2021-05-22 08:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:14:19.853+03	2021-05-22 08:14:19.86+03	
d5de7a07-ae33-7338-34a7-e2678f100118	2021-05-22 08:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:14:39.853+03	2021-05-22 08:14:39.861+03	
a49b7c80-b52f-d549-4267-b2a7d019a4bd	2021-05-22 08:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:15:00.852+03	2021-05-22 08:15:00.859+03	
b5e7d578-7e8a-ab8e-0b34-4aa2800e9e36	2021-05-22 08:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:15:20.853+03	2021-05-22 08:15:20.89+03	
180fde18-441e-81a2-74f0-b99168e6896b	2021-05-22 08:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:15:40.853+03	2021-05-22 08:15:40.862+03	
bd69320e-68ce-09c2-2c06-2021a37352bf	2021-05-22 08:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:16:00.853+03	2021-05-22 08:16:00.86+03	
327c6970-d09f-547c-3d5e-d2647c787e9a	2021-05-22 08:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:16:20.853+03	2021-05-22 08:16:20.863+03	
178a53a6-e5fb-132c-0647-02650f3ca514	2021-05-22 08:16:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:16:40.853+03	2021-05-22 08:16:40.86+03	
f68e9923-5eb3-7543-4bd6-b7e6146d1a55	2021-05-22 08:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:17:00.853+03	2021-05-22 08:17:00.86+03	
ba7e0ebc-07fa-ba44-3687-2a7525840f1d	2021-05-22 08:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:17:20.853+03	2021-05-22 08:17:20.859+03	
498800fe-3668-a59b-3fe0-6d19a76104ff	2021-05-22 08:17:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:17:40.853+03	2021-05-22 08:17:40.863+03	
e3ec9e75-24c5-c8bb-13c5-9adda0f030a7	2021-05-22 08:18:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:18:00.853+03	2021-05-22 08:18:00.863+03	
4654c3d0-9bcc-3021-803e-002e0f792c7d	2021-05-22 08:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:18:20.853+03	2021-05-22 08:18:20.861+03	
46d28a9d-2529-8af9-125c-5c8c1e5bbe52	2021-05-22 08:18:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:18:40.853+03	2021-05-22 08:18:40.862+03	
88a1c430-75fa-6239-7213-26a67669cace	2021-05-22 08:19:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:19:00.853+03	2021-05-22 08:19:00.861+03	
745f0465-540e-46dc-ef5c-9ece4e54bc2e	2021-05-22 08:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:19:20.853+03	2021-05-22 08:19:20.874+03	
6e0346a9-bb71-a41d-5b13-4923bb435d81	2021-05-22 08:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:19:40.853+03	2021-05-22 08:19:40.86+03	
8d0dee6b-3483-2ccf-15de-e33d596a5f12	2021-05-22 08:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 08:20:00.853+03	2021-05-22 08:20:00.859+03	ERROR
6b3233a5-f842-49e1-7038-b49f3bb801f2	2021-05-22 08:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:20:12.853+03	2021-05-22 08:20:12.862+03	
6be52821-02e1-9fa3-a146-b4dd40318d6c	2021-05-22 08:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:20:33.853+03	2021-05-22 08:20:33.859+03	
24eab1f5-8f9f-6869-c8c1-51feba05af1d	2021-05-22 08:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:20:53.853+03	2021-05-22 08:20:53.86+03	
ba9ce20a-905a-3f03-02f5-ba3b4255b1c8	2021-05-22 08:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:21:13.853+03	2021-05-22 08:21:13.861+03	
ee08139d-8010-ffbe-c22e-6f93d71e4fdb	2021-05-22 08:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:21:33.853+03	2021-05-22 08:21:33.859+03	
85f523a4-9eb1-35cb-7c97-2059e71b74f8	2021-05-22 08:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:21:53.853+03	2021-05-22 08:21:53.859+03	
2deae8ee-6552-6f33-039a-1f9d3a92d252	2021-05-22 08:22:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:22:13.853+03	2021-05-22 08:22:13.859+03	
8b852a23-0c5d-a27a-c201-eaba4145855c	2021-05-22 08:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:22:34.853+03	2021-05-22 08:22:34.859+03	
40bc615c-6975-4fb3-724a-6b09e5f8f77a	2021-05-22 08:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:22:54.853+03	2021-05-22 08:22:54.871+03	
7a2bf117-ba2f-e3bd-baaf-2ff875a624f1	2021-05-22 08:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:23:14.853+03	2021-05-22 08:23:14.868+03	
87ec2153-68b7-9402-dd26-fe1f1eae1692	2021-05-22 08:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:23:34.853+03	2021-05-22 08:23:34.863+03	
85d61a05-c8be-b8c8-8edf-90debb07f091	2021-05-22 08:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:23:54.853+03	2021-05-22 08:23:54.869+03	
871568d6-f273-cc6b-472e-d369f3e534b0	2021-05-22 08:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:24:14.853+03	2021-05-22 08:24:14.871+03	
a8ad2e71-ac33-c4c6-b3cd-dde7eb00b9ef	2021-05-22 08:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:24:34.853+03	2021-05-22 08:24:34.86+03	
289c32e2-902e-590c-bacc-d8f9cc9f462d	2021-05-22 08:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:24:54.853+03	2021-05-22 08:24:54.871+03	
4fbc259b-bc0d-0d84-5c21-f3ade5e7ea91	2021-05-22 08:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:25:14.853+03	2021-05-22 08:25:14.88+03	
1ab07659-b1e1-857c-e9ee-7d81489db651	2021-05-22 08:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:25:34.853+03	2021-05-22 08:25:34.861+03	
4daf0786-2d15-19e4-985e-a0d25a794502	2021-05-22 08:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:25:54.853+03	2021-05-22 08:25:54.86+03	
b8483e37-6729-c779-a389-70881662cbb1	2021-05-22 08:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:26:15.853+03	2021-05-22 08:26:15.86+03	
5c654f09-f1c3-2bb8-ff1c-e0669585b8e5	2021-05-22 08:26:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:26:36.852+03	2021-05-22 08:26:36.863+03	
7693006f-3006-6182-fae1-d73e92e154c8	2021-05-22 08:26:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:26:56.853+03	2021-05-22 08:26:56.859+03	
62eaf2af-0c64-f879-8962-4ea1121e7765	2021-05-22 08:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:27:17.853+03	2021-05-22 08:27:17.864+03	
ae145e81-98f0-90fb-0a8b-a486714b4212	2021-05-22 08:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:27:37.853+03	2021-05-22 08:27:37.86+03	
8e54d168-3cc6-94d2-5ec1-24c18fca63dd	2021-05-22 08:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:27:57.853+03	2021-05-22 08:27:57.866+03	
6ce8ac3a-6cb8-bef1-8668-378d1d5a8596	2021-05-22 08:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:28:17.853+03	2021-05-22 08:28:17.862+03	
1b944f9d-c70f-4c99-cade-861f51c61ed2	2021-05-22 08:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:28:37.853+03	2021-05-22 08:28:37.859+03	
0ac430aa-60f8-083c-a0d8-d254b15e76e9	2021-05-22 08:28:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:28:57.853+03	2021-05-22 08:28:57.861+03	
883e357a-e1d2-88c8-d661-1632736767b2	2021-05-22 08:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:29:17.853+03	2021-05-22 08:29:17.861+03	
a20f7e72-886f-b34f-f5c5-615e9b13f50a	2021-05-22 08:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:29:37.853+03	2021-05-22 08:29:37.861+03	
fe6756f7-1b64-88a8-4a12-720d546b1fb8	2021-05-22 08:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:29:58.853+03	2021-05-22 08:29:58.861+03	
9961fe1b-97a8-01c9-2697-8766222f497a	2021-05-22 08:30:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:30:08.853+03	2021-05-22 08:30:08.873+03	
1fdd948d-4a94-b3fb-217a-c7a5b7af9bb2	2021-05-22 08:30:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:30:28.853+03	2021-05-22 08:30:28.86+03	
287f2181-c2e1-3307-f157-4175779194e5	2021-05-22 08:30:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:30:48.853+03	2021-05-22 08:30:48.868+03	
139b4859-8ba6-d66d-a56a-336b765c2753	2021-05-22 08:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:31:10.852+03	2021-05-22 08:31:10.859+03	
4798cf4c-2753-aec6-0be8-736c988dd093	2021-05-22 08:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:31:30.852+03	2021-05-22 08:31:30.867+03	
ed1bad5c-33af-347e-52b7-7b44ec3f2ff5	2021-05-22 08:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:31:50.852+03	2021-05-22 08:31:50.859+03	
2163e492-7cd5-80c1-773a-a3669f1ae84b	2021-05-22 08:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:32:10.853+03	2021-05-22 08:32:10.869+03	
347c1aba-13ea-4354-5ca4-063bc325b873	2021-05-22 08:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:32:30.853+03	2021-05-22 08:32:30.862+03	
1c9ee8ff-6cf1-0c21-7914-b07bb3c8d8c2	2021-05-22 08:32:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:32:51.852+03	2021-05-22 08:32:51.859+03	
fea13140-6233-3d78-8f2c-c2930dd91112	2021-05-22 08:33:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:33:11.853+03	2021-05-22 08:33:11.863+03	
7f9b7473-1346-5e43-710d-97d0ce247cce	2021-05-22 08:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:33:31.853+03	2021-05-22 08:33:31.859+03	
7b086de5-bc2f-4f21-ff3f-930c00490dd6	2021-05-22 08:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:33:52.853+03	2021-05-22 08:33:52.86+03	
0cf7e891-4084-c171-3da5-0e0c6a25d1d7	2021-05-22 08:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:34:13.853+03	2021-05-22 08:34:13.863+03	
bb34eb48-b36c-048e-ea4d-024e1463f765	2021-05-22 08:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:34:33.853+03	2021-05-22 08:34:33.861+03	
fa2f300b-7f9b-8d24-bed8-b2e6c4c173e0	2021-05-22 08:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:34:54.853+03	2021-05-22 08:34:54.86+03	
dbdd4895-234e-69e6-abb3-cb0d4b61db9d	2021-05-22 08:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:35:14.853+03	2021-05-22 08:35:14.872+03	
cc48db66-094c-b94f-e958-e0d932415298	2021-05-22 08:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:35:34.853+03	2021-05-22 08:35:34.86+03	
3d8aaf54-985b-078c-6b19-6045d5aee3a8	2021-05-22 08:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:35:55.852+03	2021-05-22 08:35:55.859+03	
79e793a0-ac2f-3d66-c316-5cd5b53ac9be	2021-05-22 08:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:36:15.853+03	2021-05-22 08:36:15.859+03	
d0d09193-6c72-cd60-d2c8-c33ca85d4642	2021-05-22 08:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:36:36.853+03	2021-05-22 08:36:36.861+03	
11b8134d-5acb-e56b-43f8-cc77742f5bd3	2021-05-22 08:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:36:57.852+03	2021-05-22 08:36:57.867+03	
4bc3143f-eee0-02a6-a822-e595114d774e	2021-05-22 08:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:37:17.852+03	2021-05-22 08:37:17.859+03	
4fb42d47-d3ba-b2d4-fd5e-15d03e467620	2021-05-22 08:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:37:37.852+03	2021-05-22 08:37:37.858+03	
bd0da85a-ed2a-c7ff-17ce-71d9f23e3005	2021-05-22 08:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:37:57.852+03	2021-05-22 08:37:57.872+03	
2eb8dc38-b89d-0919-7cbd-a0cf3611306d	2021-05-22 08:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:38:17.853+03	2021-05-22 08:38:17.862+03	
c2a60f4a-81bf-20da-e135-cb1bc812d640	2021-05-22 08:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:38:38.852+03	2021-05-22 08:38:38.861+03	
668cd29d-6c54-90d4-ea4d-40b9b6afc11c	2021-05-22 08:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:38:58.853+03	2021-05-22 08:38:58.859+03	
aa68b517-1b94-16e9-7dfa-10f69a8fbd31	2021-05-22 08:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:39:18.853+03	2021-05-22 08:39:18.868+03	
4b10753e-ccb3-7e1f-b9a2-dbdb8db9a19f	2021-05-22 08:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:39:39.852+03	2021-05-22 08:39:39.859+03	
0ce0dc69-aa29-e00a-c3af-e28f45b50914	2021-05-22 08:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:39:59.853+03	2021-05-22 08:39:59.859+03	
ca55e1ca-0de1-5e7b-5b09-7c306d13c817	2021-05-22 08:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:40:10.852+03	2021-05-22 08:40:10.86+03	
f5c7d55c-4f0f-3722-6c1e-83d1fe2b2e50	2021-05-22 08:40:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:40:30.853+03	2021-05-22 08:40:30.861+03	
ac59f8cf-d98e-fed9-0385-762bf80c9ffd	2021-05-22 08:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:40:50.853+03	2021-05-22 08:40:50.859+03	
69a3e2cf-dfd3-e28b-c273-72f9e8b7bfc3	2021-05-22 08:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:41:12.852+03	2021-05-22 08:41:12.858+03	
77f0189c-0aa8-21dc-7ae6-d508d4d9d552	2021-05-22 08:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:41:33.852+03	2021-05-22 08:41:33.859+03	
a589bc03-bfaf-1ede-5a90-b1158fa62035	2021-05-22 08:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:41:53.852+03	2021-05-22 08:41:53.858+03	
702a5d19-bb99-e78c-a904-27a9687a9f15	2021-05-22 08:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:42:14.853+03	2021-05-22 08:42:14.871+03	
5ff837ee-66c8-9d8d-5618-83ab0062561b	2021-05-22 08:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:42:35.852+03	2021-05-22 08:42:35.87+03	
7e5dd6f8-5a47-97a7-5831-0d7a86f15027	2021-05-22 08:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:42:55.853+03	2021-05-22 08:42:55.859+03	
ce9fa9d2-84f2-9d83-a610-d93895beaa1f	2021-05-22 08:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:43:17.853+03	2021-05-22 08:43:17.86+03	
04a0e113-782f-ac91-6a63-f6ebd7178ac2	2021-05-22 08:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:43:38.853+03	2021-05-22 08:43:38.86+03	
b43032cd-f5e3-c163-187b-1012a3782bfc	2021-05-22 08:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:43:58.853+03	2021-05-22 08:43:58.867+03	
77dbbd30-6417-cda0-1adb-1779de0d8d87	2021-05-22 08:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:44:19.852+03	2021-05-22 08:44:19.865+03	
455353d4-56d8-2186-f6f2-8fded453ee70	2021-05-22 08:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:44:39.853+03	2021-05-22 08:44:39.864+03	
baf0bc97-608a-c5e5-1d70-cdc91c83b585	2021-05-22 08:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:44:59.853+03	2021-05-22 08:44:59.86+03	
27ac7aa4-f847-716a-9b95-4036a0876e0a	2021-05-22 08:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:45:19.853+03	2021-05-22 08:45:19.868+03	
c1929b90-197a-2d38-b034-9e2e9f8449e7	2021-05-22 08:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:45:40.853+03	2021-05-22 08:45:40.859+03	
1c2162da-918e-b84e-aa0f-4bce9e682a79	2021-05-22 08:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:46:00.853+03	2021-05-22 08:46:00.859+03	
98f4ed12-d535-1c9e-b23e-924a3ef90cef	2021-05-22 08:46:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:46:20.853+03	2021-05-22 08:46:20.86+03	
7b1aada1-4819-a8d9-1b46-ec9471cb7484	2021-05-22 08:46:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:46:41.852+03	2021-05-22 08:46:41.86+03	
92742c3c-f19a-070f-6c79-99902d971d6f	2021-05-22 08:47:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:47:01.852+03	2021-05-22 08:47:01.859+03	
228061bc-d131-6d20-53aa-1fa08af0ce47	2021-05-22 08:47:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:47:21.853+03	2021-05-22 08:47:21.859+03	
f93d8ca0-549d-e5cb-13ec-1a74407e89be	2021-05-22 08:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:26:46.853+03	2021-05-22 08:26:46.87+03	
f88ca08f-60af-dfce-43ba-0411a32362be	2021-05-22 08:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:27:07.853+03	2021-05-22 08:27:07.863+03	
7d61b6b5-e0e4-1138-6b30-3d69d672205a	2021-05-22 08:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:27:27.853+03	2021-05-22 08:27:27.869+03	
a0223d00-11d3-6b3a-8c7a-29354e540751	2021-05-22 08:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:27:47.853+03	2021-05-22 08:27:47.86+03	
176cf8a0-575c-ecae-59d5-73b9f999cc7f	2021-05-22 08:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:28:07.853+03	2021-05-22 08:28:07.86+03	
7dd3cfd2-f6c8-ec19-374c-65e84e76ab93	2021-05-22 08:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:28:27.853+03	2021-05-22 08:28:27.871+03	
ca2a8d86-3eaa-4ce4-df34-67c216f4d6dd	2021-05-22 08:28:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:28:47.853+03	2021-05-22 08:28:47.861+03	
26d77070-7fea-b007-94c1-e3f46de0ae9e	2021-05-22 08:29:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:29:07.853+03	2021-05-22 08:29:07.861+03	
e6780d6f-3fce-f1a0-acdb-9daefd4b690f	2021-05-22 08:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:29:27.853+03	2021-05-22 08:29:27.861+03	
9dcfe9eb-3fb3-9956-4066-757c476e9b2a	2021-05-22 08:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:29:47.853+03	2021-05-22 08:29:47.861+03	
c19a8357-d76c-67f1-e77c-b2f9b688cc9d	2021-05-22 08:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 08:30:00.853+03	2021-05-22 08:30:00.858+03	ERROR
da063c7a-2281-d662-61e0-59b2905d240a	2021-05-22 08:30:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:30:18.853+03	2021-05-22 08:30:18.863+03	
5aa545b4-cdbc-4608-4d4c-4799ea0c5101	2021-05-22 08:30:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:30:38.853+03	2021-05-22 08:30:38.862+03	
5f74e12c-2322-adcc-c748-cac44d8186bf	2021-05-22 08:30:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:30:59.853+03	2021-05-22 08:30:59.86+03	
550c3f8c-d4b8-cb83-4bcb-b0ef122faec0	2021-05-22 08:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:31:20.852+03	2021-05-22 08:31:20.859+03	
a001a779-14a9-eac1-38ac-ffc66fd80695	2021-05-22 08:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:31:40.852+03	2021-05-22 08:31:40.859+03	
87da1fe8-6ad8-7030-93d4-18b0c2def450	2021-05-22 08:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:32:00.852+03	2021-05-22 08:32:00.861+03	
35f51c1c-7da4-4900-dddc-aaec39a5eac6	2021-05-22 08:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:32:20.853+03	2021-05-22 08:32:20.86+03	
d29bb269-e010-b849-5d70-9afb87474106	2021-05-22 08:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:32:40.853+03	2021-05-22 08:32:40.86+03	
257f5afc-3e1e-c091-43d8-0288d5d0c0e8	2021-05-22 08:33:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:33:01.852+03	2021-05-22 08:33:01.859+03	
6aea4cf3-8c6e-3b19-a5ae-8eae995ef536	2021-05-22 08:33:21.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:33:21.853+03	2021-05-22 08:33:21.868+03	
97aead4a-c7eb-6866-50ac-e96c5ee7c679	2021-05-22 08:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:33:42.853+03	2021-05-22 08:33:42.862+03	
d1a9adcd-1360-35ca-fad6-cad809ad386d	2021-05-22 08:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:34:03.852+03	2021-05-22 08:34:03.86+03	
1f729966-8282-243f-54fc-7f37a6f6e02f	2021-05-22 08:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:34:23.853+03	2021-05-22 08:34:23.861+03	
b1cb6b8d-888c-65c9-c766-2dd01c0a1137	2021-05-22 08:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:34:43.853+03	2021-05-22 08:34:43.863+03	
b5a04052-fe68-1275-78b3-31a27cb5b89d	2021-05-22 08:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:35:04.853+03	2021-05-22 08:35:04.859+03	
500f821a-9a9b-c984-e560-24b38b5ad429	2021-05-22 08:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:35:24.853+03	2021-05-22 08:35:24.87+03	
ad489233-ba74-904c-bae6-6d4fd40def00	2021-05-22 08:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:35:44.853+03	2021-05-22 08:35:44.859+03	
292d6f54-e878-cfe9-ee69-89a76dd37b06	2021-05-22 08:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:36:05.852+03	2021-05-22 08:36:05.873+03	
ccc5cfe4-dfef-9cb8-79b3-0c677e5c13e4	2021-05-22 08:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:36:25.853+03	2021-05-22 08:36:25.861+03	
f6549314-b3d7-fd2a-cad5-4f4364a2144f	2021-05-22 08:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:36:47.852+03	2021-05-22 08:36:47.859+03	
31e197f2-44e9-d3ca-48c6-4b4569e64636	2021-05-22 08:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:37:07.852+03	2021-05-22 08:37:07.859+03	
ebf14167-89e3-1e2b-d238-20f7659836d1	2021-05-22 08:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:37:27.852+03	2021-05-22 08:37:27.859+03	
4c6ac6f9-3815-f5e4-3383-1ee6ab819d5b	2021-05-22 08:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:37:47.852+03	2021-05-22 08:37:47.859+03	
a3d1ea43-55e7-e68d-0be5-87659334f2bf	2021-05-22 08:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:38:07.852+03	2021-05-22 08:38:07.859+03	
48ee24d3-9692-13ea-fba8-82d833565dc0	2021-05-22 08:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:38:27.853+03	2021-05-22 08:38:27.86+03	
fc2e3406-ecae-5677-ad2a-dd4946036c93	2021-05-22 08:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:38:48.852+03	2021-05-22 08:38:48.86+03	
b35e0c21-884c-1180-071f-98bbdd5e712f	2021-05-22 08:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:39:08.853+03	2021-05-22 08:39:08.86+03	
af538fed-88ec-0606-1ce8-4b2498a5c24d	2021-05-22 08:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:39:29.852+03	2021-05-22 08:39:29.872+03	
809d93a2-1427-26bd-e541-b0b3a57725db	2021-05-22 08:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:39:49.852+03	2021-05-22 08:39:49.862+03	
b983a5fe-7fe2-da62-6023-bb0d996e04cb	2021-05-22 08:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 08:40:00.852+03	2021-05-22 08:40:00.857+03	ERROR
cd6dd6c7-124f-4b54-f4f6-8206af0ed3a8	2021-05-22 08:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:40:20.853+03	2021-05-22 08:40:20.861+03	
ef8eac4a-216f-4ba2-0201-20fac0037f3c	2021-05-22 08:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:40:40.853+03	2021-05-22 08:40:40.862+03	
c27780c7-c2d2-02c6-2f2e-c9f0ed576ea0	2021-05-22 08:41:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:41:01.854+03	2021-05-22 08:41:01.883+03	
1df26b40-3cb5-f930-5866-b92be5a12713	2021-05-22 08:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:41:22.853+03	2021-05-22 08:41:22.859+03	
49395068-130f-c9c2-6c6c-ecc883f58843	2021-05-22 08:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:41:43.852+03	2021-05-22 08:41:43.86+03	
3fca75db-4ffc-df52-c72a-307c2be979b4	2021-05-22 08:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:42:03.853+03	2021-05-22 08:42:03.86+03	
98cae174-6dda-5248-78c0-13fbb6ab9745	2021-05-22 08:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:42:24.853+03	2021-05-22 08:42:24.869+03	
c6433bff-4c51-5281-3a95-4e81742636d5	2021-05-22 08:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:42:45.853+03	2021-05-22 08:42:45.859+03	
afa30a75-3db7-409f-add4-e77787372c8e	2021-05-22 08:43:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:43:06.854+03	2021-05-22 08:43:06.861+03	
04a543f6-5433-3df1-2c3f-c520ccd5edca	2021-05-22 08:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:43:28.852+03	2021-05-22 08:43:28.86+03	
43feedc8-9829-ef8f-648b-b38fccad6775	2021-05-22 08:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:43:48.853+03	2021-05-22 08:43:48.861+03	
29de4a70-c044-9c95-e313-5bb32bc67eec	2021-05-22 08:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:44:09.852+03	2021-05-22 08:44:09.86+03	
726d4f40-7d91-2924-993e-309639933f69	2021-05-22 08:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:44:29.853+03	2021-05-22 08:44:29.86+03	
387dc5f5-2448-7a73-1796-b2b7d8fa4aed	2021-05-22 08:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:44:49.853+03	2021-05-22 08:44:49.859+03	
62f30a55-a0ca-9f24-55d7-077817d6ad47	2021-05-22 08:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:45:09.853+03	2021-05-22 08:45:09.86+03	
c1eefd04-4fc9-f235-9a62-796633dc7232	2021-05-22 08:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:45:29.853+03	2021-05-22 08:45:29.861+03	
c365e330-17d3-879d-2345-c074707b7efc	2021-05-22 08:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:45:50.853+03	2021-05-22 08:45:50.859+03	
db99b299-253c-47a5-04b5-2336c3ec3bf7	2021-05-22 08:46:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:46:10.853+03	2021-05-22 08:46:10.859+03	
5b99abd1-c1c0-2ce5-6479-3c017f578afe	2021-05-22 08:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:46:30.853+03	2021-05-22 08:46:30.859+03	
8c489e78-fd40-b86c-d71f-1dc0740ddcde	2021-05-22 08:46:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:46:51.852+03	2021-05-22 08:46:51.859+03	
db2bbd02-4dc2-72b6-db2f-25bb11dfe30c	2021-05-22 08:47:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:47:11.852+03	2021-05-22 08:47:11.858+03	
0d410030-31fd-16d9-44c4-344c052d6a39	2021-05-22 08:47:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:47:31.853+03	2021-05-22 08:47:31.862+03	
edc9f01e-0e48-fd0f-5e14-8b6d09cc40d2	2021-05-23 22:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:46:17.852+03	2021-05-23 22:46:17.859+03	
c524189b-7cb5-11ef-bbda-96aaa3d5a7de	2021-05-22 08:47:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:47:41.853+03	2021-05-22 08:47:41.863+03	
5087d786-51e4-6f0e-ee6a-36672b99849f	2021-05-22 11:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:01:22.853+03	2021-05-22 11:01:22.86+03	
22fd732b-39b0-667c-9370-32468517d0ad	2021-05-22 08:48:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:48:01.853+03	2021-05-22 08:48:01.859+03	
4ffd599c-25c5-3b48-e546-55ebe207df65	2021-05-22 08:48:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:48:21.853+03	2021-05-22 08:48:21.861+03	
5e1cd98c-0489-1d93-2c18-7a2f4b181adb	2021-05-22 11:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:01:42.853+03	2021-05-22 11:01:42.911+03	
b0953e74-6206-3fb4-b9b7-9efcbb8e78b4	2021-05-22 08:48:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:48:41.853+03	2021-05-22 08:48:41.861+03	
7306cb68-4c46-629b-d128-39edc217d88e	2021-05-22 08:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:49:02.853+03	2021-05-22 08:49:02.86+03	
5d0654dc-4a66-7826-fae3-3b6d93280c92	2021-05-22 11:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:02:02.853+03	2021-05-22 11:02:02.861+03	
a1c6d9e0-d10e-7c84-92c2-b5afbebb77f4	2021-05-22 08:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:49:23.852+03	2021-05-22 08:49:23.859+03	
42356c95-c289-4e12-79c1-80a4922531a3	2021-05-22 08:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:49:43.852+03	2021-05-22 08:49:43.86+03	
b66a882c-4694-1a11-4646-c4e72eb694d6	2021-05-22 11:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:02:22.853+03	2021-05-22 11:02:22.86+03	
7a3b1500-8487-7ce2-3fb0-cd3088178bea	2021-05-22 08:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 08:50:00.853+03	2021-05-22 08:50:00.857+03	ERROR
c14985ee-264d-a328-11e6-0689abdfe777	2021-05-22 08:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:50:13.852+03	2021-05-22 08:50:13.86+03	
9b40b066-f260-f7f1-cdd3-4b2224b6c259	2021-05-22 11:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:02:42.853+03	2021-05-22 11:02:43.203+03	
b10ed5f0-135f-61d6-3aff-44a34beb6fd5	2021-05-22 08:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:50:33.853+03	2021-05-22 08:50:33.86+03	
59491797-5019-99e8-51c3-25e5e7e5da43	2021-05-22 08:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:50:53.853+03	2021-05-22 08:50:53.874+03	
9c64481f-7e6e-1238-5594-99b89acb869d	2021-05-22 11:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:03:02.853+03	2021-05-22 11:03:02.861+03	
93bc4b08-78a8-eb04-9c34-cc116affa770	2021-05-22 08:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:51:14.853+03	2021-05-22 08:51:14.862+03	
445f4280-4cd8-038c-456d-17dcdf16afd4	2021-05-22 08:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:51:35.853+03	2021-05-22 08:51:35.858+03	
0e13e4bf-46b4-c3a2-d843-5518d464072e	2021-05-22 11:03:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:03:22.853+03	2021-05-22 11:03:22.864+03	
ac6a2260-5f65-9769-5768-015a55b682b6	2021-05-22 08:51:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:51:56.853+03	2021-05-22 08:51:56.862+03	
382c8827-aa1d-a9a2-59c4-e24857e7e6cf	2021-05-22 08:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:52:17.853+03	2021-05-22 08:52:17.858+03	
cbebd93e-7a23-adfb-4895-ebce0b5e6bf6	2021-05-22 11:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:03:42.853+03	2021-05-22 11:03:42.866+03	
9821c6dd-a843-3297-7693-24a9056143a3	2021-05-22 08:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:52:37.853+03	2021-05-22 08:52:37.859+03	
c530e2a5-93e4-4a1f-4abc-880a23a92098	2021-05-22 08:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:52:58.852+03	2021-05-22 08:52:58.86+03	
4b5c0912-72b7-51b0-6713-344bf87984ed	2021-05-22 11:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:04:02.853+03	2021-05-22 11:04:02.861+03	
0fdca74e-5754-bdeb-95d2-d9d68b97de46	2021-05-22 08:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:53:18.853+03	2021-05-22 08:53:18.861+03	
c58f1ea5-a8cf-df99-3c93-88cb26fb09f4	2021-05-22 08:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:53:38.853+03	2021-05-22 08:53:38.861+03	
6400902f-1975-6f5b-9e19-3b2d0f108bbe	2021-05-22 11:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:04:22.853+03	2021-05-22 11:04:22.859+03	
cc163e32-8242-2d56-7d53-7a78ce205eec	2021-05-22 08:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:53:58.853+03	2021-05-22 08:53:58.861+03	
48475c47-c05e-0071-a74d-7b0e8f99bb7e	2021-05-22 08:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:54:18.853+03	2021-05-22 08:54:18.871+03	
d590d083-2f67-cdff-0288-8b9a0c7aace2	2021-05-22 11:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:04:42.853+03	2021-05-22 11:04:42.862+03	
70d5ab6d-dd8c-e05e-b740-e96364886e0c	2021-05-22 08:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:54:38.853+03	2021-05-22 08:54:38.861+03	
26ed0463-1642-e287-f66d-4adc965b9d1e	2021-05-22 08:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:54:59.853+03	2021-05-22 08:54:59.86+03	
41406a65-372b-181f-34f8-60c1670dafe3	2021-05-22 11:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:05:03.852+03	2021-05-22 11:05:03.859+03	
a0a994a7-aa46-f48d-a30f-4d236874d958	2021-05-22 08:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:55:20.853+03	2021-05-22 08:55:20.859+03	
f477f695-5661-5bfd-fb37-f79f1f2337dd	2021-05-22 08:55:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:55:41.853+03	2021-05-22 08:55:41.861+03	
5438de97-f913-b099-5069-58a9a71bdf86	2021-05-22 11:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:05:23.852+03	2021-05-22 11:05:23.861+03	
177709d4-32cc-43d1-f80b-cb030efc9217	2021-05-22 08:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:56:02.853+03	2021-05-22 08:56:02.859+03	
302e90fb-983c-2dd5-8a3f-a640855d15a1	2021-05-22 08:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:56:22.853+03	2021-05-22 08:56:22.859+03	
647daa66-d954-ec1c-b9e4-6b12ac18b07b	2021-05-22 11:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:05:43.853+03	2021-05-22 11:05:43.86+03	
31ba0d46-a32c-6528-7e82-a63c74af64bb	2021-05-22 08:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:56:44.852+03	2021-05-22 08:56:44.859+03	
964e6eb5-7829-0ae7-11d1-49c660b0fc3f	2021-05-22 08:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:57:04.852+03	2021-05-22 08:57:04.858+03	
b8d36496-0e80-2f67-90ea-f1d0fc7cf504	2021-05-22 11:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:06:04.853+03	2021-05-22 11:06:04.864+03	
d54fe9e5-23f6-849e-77a0-9c0f20e9c9d1	2021-05-22 11:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:06:25.852+03	2021-05-22 11:06:25.872+03	
64df5d24-5eb2-9e7a-1225-a9d9faae5be5	2021-05-22 11:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:06:45.853+03	2021-05-22 11:06:45.869+03	
f281e316-1f8b-45ad-7e8c-8379be0f1ff4	2021-05-22 11:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:07:06.852+03	2021-05-22 11:07:06.859+03	
59f532d2-744c-a51d-0cdb-83621b7ce21a	2021-05-22 11:07:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:07:26.853+03	2021-05-22 11:07:26.861+03	
4a790cc7-b02b-36e3-8808-215c31a07674	2021-05-22 11:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:07:47.853+03	2021-05-22 11:07:47.864+03	
2a6162da-258a-9941-ac56-79be10dd5067	2021-05-22 11:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:08:08.853+03	2021-05-22 11:08:08.861+03	
3838af84-0ed8-0b44-db66-59b2a7d1d647	2021-05-22 11:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:08:29.853+03	2021-05-22 11:08:29.873+03	
d1941944-f6ea-2ac3-e424-3c70f65e7576	2021-05-22 11:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:08:49.853+03	2021-05-22 11:08:49.859+03	
8d797c88-ba85-c7bb-3a28-fe9fb965a9a0	2021-05-22 11:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:09:10.853+03	2021-05-22 11:09:10.86+03	
e8349092-4d66-4f8f-eafb-0492203e13ea	2021-05-22 11:09:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:09:31.853+03	2021-05-22 11:09:31.862+03	
2cdac813-896f-97f9-78ed-fbffacfa4613	2021-05-22 11:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:09:52.853+03	2021-05-22 11:09:52.86+03	
b31638a4-7b61-f8ef-7bdc-06259438f830	2021-05-22 11:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:10:02.853+03	2021-05-22 11:10:02.86+03	
c74e0437-7273-712b-1343-579794f37c30	2021-05-22 11:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:10:23.852+03	2021-05-22 11:10:23.86+03	
a37a5599-5b77-771c-8c4e-76f7dfea6aca	2021-05-22 11:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:10:43.853+03	2021-05-22 11:10:43.859+03	
874502ea-a09b-3d07-cdf7-a629a27e91cb	2021-05-22 11:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:11:04.853+03	2021-05-22 11:11:04.868+03	
d2ced796-ef94-6218-47fd-a1290e6f2b4a	2021-05-22 11:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:11:24.853+03	2021-05-22 11:11:24.861+03	
c3b8de67-5bc8-dda0-68fa-721a88c71b12	2021-05-22 11:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:11:44.853+03	2021-05-22 11:11:44.869+03	
15edc9d2-9ec3-194c-1110-2ca9638f0628	2021-05-22 11:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:12:05.852+03	2021-05-22 11:12:05.871+03	
ef2e6358-ceef-17b5-4fc8-a0b395c56085	2021-05-22 11:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:12:25.853+03	2021-05-22 11:12:25.864+03	
6ed2e110-c98e-6b51-9ca3-a8c52c2fd966	2021-05-22 08:47:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:47:51.853+03	2021-05-22 08:47:51.861+03	
d5111ff9-232a-6e81-e6a3-252add7a48e1	2021-05-22 08:48:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:48:11.853+03	2021-05-22 08:48:11.861+03	
2775f101-4878-019a-5dc7-8c1faef4c5fb	2021-05-22 08:48:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:48:31.853+03	2021-05-22 08:48:31.86+03	
d528f171-dc45-f769-6a9f-d7b7eaa507b7	2021-05-22 08:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:48:52.852+03	2021-05-22 08:48:52.859+03	
9a5bc9e8-2afb-a0e6-1819-16a3ec447667	2021-05-22 08:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:49:13.852+03	2021-05-22 08:49:13.86+03	
51388c29-7090-b143-7be4-1d5e4765cd4e	2021-05-22 08:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:49:33.852+03	2021-05-22 08:49:33.86+03	
97dba1c4-69b2-2b70-8e0e-3ebb55424ac3	2021-05-22 08:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:49:53.852+03	2021-05-22 08:49:53.859+03	
4ea73435-edaf-365b-3e01-608151124ca6	2021-05-22 08:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:50:03.852+03	2021-05-22 08:50:03.859+03	
c9a0f1f6-7bba-a9ac-8e02-a5176670bb48	2021-05-22 08:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:50:23.852+03	2021-05-22 08:50:23.859+03	
f0bb6da2-900c-b296-f8e1-8a50fdde4dab	2021-05-22 08:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:50:43.853+03	2021-05-22 08:50:43.861+03	
b3ffa126-d578-cd2c-ef2d-746f719b0a14	2021-05-22 08:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:51:04.853+03	2021-05-22 08:51:04.875+03	
3ce713f6-1505-68ee-0003-99d70c001787	2021-05-22 08:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:51:25.852+03	2021-05-22 08:51:25.859+03	
46c61fe8-f42c-19cf-84e2-b70512563ad9	2021-05-22 08:51:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:51:46.853+03	2021-05-22 08:51:46.86+03	
ebf7db27-ea11-11a3-4cc6-bb455984a10b	2021-05-22 08:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:52:07.853+03	2021-05-22 08:52:07.861+03	
fb84faac-5fdc-b919-0c65-a94aeacb986a	2021-05-22 08:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:52:27.853+03	2021-05-22 08:52:27.86+03	
9a879359-9037-2ccf-fc9d-b08354f53d08	2021-05-22 08:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:52:47.853+03	2021-05-22 08:52:47.859+03	
ec55eebb-f663-beb3-18cc-48bc7383e040	2021-05-22 08:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:53:08.853+03	2021-05-22 08:53:08.861+03	
b0ce6568-cab3-689a-61c0-01232d38defa	2021-05-22 08:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:53:28.853+03	2021-05-22 08:53:28.877+03	
38e52c2b-13c0-2bb9-ed53-aca0c6f27a10	2021-05-22 08:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:53:48.853+03	2021-05-22 08:53:48.867+03	
24959f6d-53b9-88bd-d914-9ef01c9bb01d	2021-05-22 08:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:54:08.853+03	2021-05-22 08:54:08.86+03	
4573002d-c9fd-cd19-d99a-9b49766ec187	2021-05-22 08:54:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:54:28.853+03	2021-05-22 08:54:28.864+03	
e5efef49-4315-f107-ed04-987852388f4a	2021-05-22 08:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:54:48.853+03	2021-05-22 08:54:48.86+03	
5d3e7d0d-04cb-b080-63ea-944c17a5e90b	2021-05-22 08:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:55:10.852+03	2021-05-22 08:55:10.859+03	
91c45107-aabd-271f-f52b-3135445e38ef	2021-05-22 08:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:55:30.853+03	2021-05-22 08:55:30.861+03	
6e84232a-de8a-507e-5812-0d28271534ee	2021-05-22 08:55:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:55:51.853+03	2021-05-22 08:55:51.862+03	
e3eb3e4b-ebc4-a8c4-02d2-ec4baccaeb9d	2021-05-22 08:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:56:12.853+03	2021-05-22 08:56:12.867+03	
578398f4-0a20-3ef4-03a9-900c505aac27	2021-05-22 08:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:56:33.853+03	2021-05-22 08:56:33.859+03	
3825f3d1-7b0f-4c03-7635-9e6ec54ab881	2021-05-22 08:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:56:54.852+03	2021-05-22 08:56:54.87+03	
bbc6a4be-fc41-315a-9f0d-4d18e709df94	2021-05-22 08:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:57:14.853+03	2021-05-22 08:57:14.86+03	
9d8a2175-ed70-e540-2524-07850972bc81	2021-05-22 08:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:57:24.853+03	2021-05-22 08:57:24.872+03	
ad8b6919-9689-dbf6-6a45-c4f38daafb24	2021-05-22 08:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:57:34.853+03	2021-05-22 08:57:34.87+03	
9028aa7a-6c69-a422-a3c4-93c2dcf76b11	2021-05-22 08:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:57:44.853+03	2021-05-22 08:57:44.862+03	
1fbb15a3-2eda-035e-e965-217de3705e01	2021-05-22 08:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:57:54.853+03	2021-05-22 08:57:54.859+03	
6ba15397-bf0d-1040-ee0f-301c7f6166d5	2021-05-22 08:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:58:05.853+03	2021-05-22 08:58:05.869+03	
74a638a9-312f-3037-e059-b4731acd4651	2021-05-22 08:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:58:15.853+03	2021-05-22 08:58:15.86+03	
d1082746-358e-13e9-b93d-11bbf2ef64b5	2021-05-22 08:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:58:25.853+03	2021-05-22 08:58:25.859+03	
041ec4ce-7d55-58df-d37b-6a31f844f1b2	2021-05-22 08:58:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:58:36.852+03	2021-05-22 08:58:36.859+03	
c71b733b-d466-b287-b51c-fae0a1409f6d	2021-05-22 08:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:58:46.853+03	2021-05-22 08:58:46.86+03	
8f0aae41-51f9-da22-f66c-91d5b8b411dc	2021-05-22 08:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:58:57.853+03	2021-05-22 08:58:57.859+03	
d649112b-75b6-f9fa-7dfc-b777e9bf5d72	2021-05-22 08:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:59:07.853+03	2021-05-22 08:59:07.859+03	
f4481e50-786a-b5c7-c166-bae2c3a565de	2021-05-22 08:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:59:17.853+03	2021-05-22 08:59:17.867+03	
6574dc8b-b481-ccbd-bfac-f99e1aac2abe	2021-05-22 08:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:59:27.853+03	2021-05-22 08:59:27.859+03	
d294418e-be79-483a-d32c-8a1824f4f7f8	2021-05-22 08:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:59:37.853+03	2021-05-22 08:59:37.873+03	
6a113aaf-82df-0fe3-98d0-8bdc67dfd7a6	2021-05-22 08:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:59:48.852+03	2021-05-22 08:59:48.858+03	
af84fdc4-6d86-f14c-566d-65a903106152	2021-05-22 08:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 08:59:58.852+03	2021-05-22 08:59:58.858+03	
65ae7c74-c25c-f403-fd9f-0822f1f3167a	2021-05-22 09:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 09:00:00.853+03	2021-05-22 09:00:00.859+03	ERROR
b7e5c0ee-da3d-31f5-eabc-9421d0f3818a	2021-05-22 09:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:00:08.853+03	2021-05-22 09:00:08.861+03	
b1b89225-8752-3339-8656-564c575b32b7	2021-05-22 09:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:00:18.853+03	2021-05-22 09:00:18.861+03	
10259442-5c25-3313-d169-6d9c9279c00b	2021-05-22 09:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:00:28.853+03	2021-05-22 09:00:28.864+03	
b51dd0ea-8410-45cf-b052-9b5a6e78e73a	2021-05-22 09:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:00:38.853+03	2021-05-22 09:00:38.864+03	
496cd230-2ed0-a89a-86db-63eb003fcdc3	2021-05-22 09:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:00:49.853+03	2021-05-22 09:00:49.863+03	
9406c057-1712-d71d-27ef-ffebbded7ec0	2021-05-22 09:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:01:00.852+03	2021-05-22 09:01:00.859+03	
c515139d-229c-3b84-7ed1-253505e4ab87	2021-05-22 09:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:01:10.853+03	2021-05-22 09:01:10.86+03	
421a33d6-9902-df4a-9af4-c61cc6afaa88	2021-05-22 09:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:01:20.853+03	2021-05-22 09:01:20.895+03	
920943f4-b23c-8c8e-2b0a-13879509891a	2021-05-22 09:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:01:30.853+03	2021-05-22 09:01:30.859+03	
3b17d45b-10e5-22ba-aab4-a9a4632c9f71	2021-05-22 09:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:01:40.853+03	2021-05-22 09:01:40.86+03	
0add6157-004a-a6f8-f4d6-88b53135b34c	2021-05-22 09:01:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:01:51.852+03	2021-05-22 09:01:51.86+03	
2975b97a-3c0a-3b07-45d0-71b3866ecfb2	2021-05-22 09:02:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:02:01.852+03	2021-05-22 09:02:01.909+03	
b7eacb93-fd38-c679-f50b-926730bacafa	2021-05-22 09:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:02:11.852+03	2021-05-22 09:02:11.86+03	
b55e51ed-e957-5211-9f44-ea95f28d215a	2021-05-22 09:02:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:02:21.853+03	2021-05-22 09:02:21.86+03	
98f3f032-5ea3-b4d7-5199-b29598454f7f	2021-05-22 09:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:02:31.853+03	2021-05-22 09:02:31.86+03	
47705ba4-8a1b-95cc-6115-ad4e8c3ef3ad	2021-05-22 09:02:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:02:41.853+03	2021-05-22 09:02:41.873+03	
5f88f7e7-d1a0-1bc3-c945-0e72102f82ca	2021-05-22 09:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:02:52.853+03	2021-05-22 09:02:52.86+03	
21311d5c-cd30-816a-0d25-21fc4688da26	2021-05-22 09:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:03:02.853+03	2021-05-22 09:03:02.866+03	
8d634bc9-f568-489c-d4c8-76eb49f44e51	2021-05-22 09:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:03:23.853+03	2021-05-22 09:03:23.859+03	
585739dc-21f3-ebd0-19fe-cadc27dca097	2021-05-22 09:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:03:44.853+03	2021-05-22 09:03:44.873+03	
314d44f2-6783-b647-3592-41f77b7e403c	2021-05-22 09:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:04:05.853+03	2021-05-22 09:04:05.861+03	
eea28ea1-0324-dd80-919a-1d7bfd6a1954	2021-05-22 09:04:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:04:26.853+03	2021-05-22 09:04:26.872+03	
862c0c12-1254-fc72-5a14-aa9445c53035	2021-05-22 09:04:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:04:47.853+03	2021-05-22 09:04:47.862+03	
ad9a72dc-c03e-1664-6cc2-5c3c1196c6d5	2021-05-22 09:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:05:08.853+03	2021-05-22 09:05:08.859+03	
d2c14d22-ff32-1080-9629-40f4ca99a05e	2021-05-22 09:05:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:05:28.853+03	2021-05-22 09:05:28.882+03	
42b0ce83-b6dd-5849-5056-2287416713f0	2021-05-22 09:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:05:49.853+03	2021-05-22 09:05:49.861+03	
26c0992c-9250-7171-0279-6700774787bc	2021-05-22 09:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:06:09.853+03	2021-05-22 09:06:09.861+03	
fd642938-3661-044f-b0c7-ba446dc24280	2021-05-22 09:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:06:29.853+03	2021-05-22 09:06:29.86+03	
dbe3f1e5-02eb-86db-00bd-398791cc3eb0	2021-05-22 09:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:06:50.853+03	2021-05-22 09:06:50.86+03	
91d6e4f7-20c8-66e2-a58c-d7ad32297ade	2021-05-22 09:07:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:07:10.853+03	2021-05-22 09:07:10.866+03	
684409b2-75e8-e74b-2d03-f9b2bbbcefcc	2021-05-22 09:07:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:07:31.854+03	2021-05-22 09:07:31.861+03	
9836d7f1-994f-d52b-8fa0-0e7a2ef9b11a	2021-05-22 09:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:07:52.853+03	2021-05-22 09:07:52.863+03	
776f54f4-64df-5f97-bdc0-271654626de8	2021-05-22 09:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:08:12.853+03	2021-05-22 09:08:12.862+03	
3603697e-7afe-adc3-a9cd-edd4b80335f9	2021-05-22 09:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:08:33.853+03	2021-05-22 09:08:33.862+03	
03baec4b-369f-d5f4-1f74-74c9c2a78930	2021-05-22 09:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:08:55.853+03	2021-05-22 09:08:55.861+03	
3b4159f9-d318-9f8c-a8dc-f4e616bf2a02	2021-05-22 09:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:09:16.852+03	2021-05-22 09:09:16.858+03	
2074a0d5-322a-ec37-eda1-a5f31fb0c36c	2021-05-22 09:09:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:09:36.854+03	2021-05-22 09:09:36.86+03	
cb962105-d7f1-32b9-1127-e26d66f33968	2021-05-22 09:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:09:58.853+03	2021-05-22 09:09:58.861+03	
7657f7a1-49b3-232c-f9fb-250cda02d9b1	2021-05-22 09:10:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:10:08.853+03	2021-05-22 09:10:08.866+03	
8ef51a78-3d3f-db3b-9475-890139f98af5	2021-05-22 09:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:10:28.853+03	2021-05-22 09:10:28.862+03	
8f04b050-58be-96af-c7b4-a254156289d7	2021-05-22 09:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:10:48.853+03	2021-05-22 09:10:48.86+03	
c7f27e13-a503-ca5f-148b-abcec44ef87f	2021-05-22 09:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:11:08.853+03	2021-05-22 09:11:08.86+03	
55bc45a7-6e88-14ec-bf99-7bf0b1c3f8c4	2021-05-22 09:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:11:29.853+03	2021-05-22 09:11:29.861+03	
708db397-a6d7-c021-e8db-4e7b6abeed9f	2021-05-22 09:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:11:49.853+03	2021-05-22 09:11:49.871+03	
44d6ffa2-9c73-b717-350a-bb4f0f9f6084	2021-05-22 09:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:12:10.853+03	2021-05-22 09:12:10.861+03	
9ab7c68f-3f31-c836-5566-eb5d7bf5eb69	2021-05-22 09:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:12:31.853+03	2021-05-22 09:12:31.86+03	
645fe08b-d549-5531-1f5b-28e7d4d3a45f	2021-05-22 09:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:12:51.853+03	2021-05-22 09:12:51.859+03	
740d99bd-56db-9e74-01c0-5e736f8f5c73	2021-05-22 09:13:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:13:11.853+03	2021-05-22 09:13:11.861+03	
efd34635-787e-7390-f93e-d69217b42293	2021-05-22 09:13:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:13:31.853+03	2021-05-22 09:13:31.864+03	
ccb5a7b2-2937-6c70-2c96-e2afb8f6ebcf	2021-05-22 09:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:13:52.853+03	2021-05-22 09:13:52.86+03	
701735d6-f792-1196-1939-b4d4c9799d4d	2021-05-22 09:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:14:14.852+03	2021-05-22 09:14:14.872+03	
69365a78-fdf7-0b04-37fe-06e8d77e8431	2021-05-22 09:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:14:34.853+03	2021-05-22 09:14:34.861+03	
d62fff66-3823-d7c4-c044-5bcf2ba91808	2021-05-22 09:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:14:55.853+03	2021-05-22 09:14:55.861+03	
f1c06fe3-8db9-6286-1a04-c766a7d8baa4	2021-05-22 09:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:15:16.853+03	2021-05-22 09:15:16.871+03	
3d68de76-3607-f98b-64e3-5a9586627c94	2021-05-22 09:15:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:15:36.853+03	2021-05-22 09:15:36.873+03	
1dd48c95-3063-99b9-346a-7f9f1c6df488	2021-05-22 09:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:15:57.853+03	2021-05-22 09:15:57.861+03	
95f8a0d3-25bf-b84a-69f4-38d5dcea484d	2021-05-22 09:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:16:17.853+03	2021-05-22 09:16:17.859+03	
e1c5de28-ebdf-5fcd-5cec-a834a4c6e0f9	2021-05-22 09:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:16:37.853+03	2021-05-22 09:16:37.862+03	
6f88939e-4cfd-a61f-c166-fedb7fc5fa17	2021-05-22 09:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:16:57.853+03	2021-05-22 09:16:57.861+03	
b4113919-7502-5107-1719-7946886e0850	2021-05-22 09:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:17:17.853+03	2021-05-22 09:17:17.873+03	
ec4d6a35-6864-1f4c-52e6-e1a14622fbda	2021-05-22 09:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:17:38.853+03	2021-05-22 09:17:38.86+03	
853f815f-bdf3-11e1-6e7e-d8eace644d70	2021-05-22 09:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:17:58.853+03	2021-05-22 09:17:58.86+03	
6053e1bf-a980-4153-d5bd-cdd92b981014	2021-05-22 09:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:18:18.853+03	2021-05-22 09:18:18.86+03	
cef4e778-343a-8a0b-2bd8-0d8e4a5de0c3	2021-05-22 09:18:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:18:38.853+03	2021-05-22 09:18:38.862+03	
dfb3dcc5-fc98-fb91-9ff6-3fa6a554fbf4	2021-05-22 09:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:18:58.853+03	2021-05-22 09:18:58.861+03	
ba55cc20-3933-0be1-97dd-8600ef662968	2021-05-22 09:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:19:18.853+03	2021-05-22 09:19:18.86+03	
1ef2aa97-aa04-fc57-f042-2dc87aeab941	2021-05-22 09:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:19:39.853+03	2021-05-22 09:19:39.861+03	
caca95ed-264e-7575-aa0a-7571e20508f5	2021-05-22 09:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:19:49.853+03	2021-05-22 09:19:49.865+03	
a12be7e4-7e7b-341e-d150-cb30095edfb9	2021-05-22 09:20:10.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:20:10.853+03	2021-05-22 09:20:10.861+03	
b2c34706-8a27-1c8c-c714-f289c9896780	2021-05-22 09:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:20:30.853+03	2021-05-22 09:20:30.861+03	
fc8891f7-f865-69bf-734b-57c4057d33c2	2021-05-22 09:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:20:50.853+03	2021-05-22 09:20:50.872+03	
04c1534c-1b85-6f91-6e26-ef918355cb96	2021-05-22 09:21:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:21:11.853+03	2021-05-22 09:21:11.865+03	
eb6319ad-0092-e6a4-6e11-d3313d2f5172	2021-05-22 09:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:21:31.853+03	2021-05-22 09:21:31.874+03	
3cde2e6e-e013-178f-0b44-9d9fa336a8c4	2021-05-22 09:21:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:21:51.853+03	2021-05-22 09:21:51.859+03	
2b97f052-a1b8-f63f-e3d1-1e0a3e640e35	2021-05-22 09:22:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:22:11.855+03	2021-05-22 09:22:11.862+03	
e1b2bd1c-90c6-3249-bd5b-0305413e7e2d	2021-05-22 09:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:22:32.853+03	2021-05-22 09:22:32.871+03	
2d071ac8-8c77-ba96-5bfe-0e6baf88f2af	2021-05-22 09:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:22:52.853+03	2021-05-22 09:22:52.861+03	
ddfd27d4-a549-8e03-366c-232aa54d6d74	2021-05-22 09:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:23:12.853+03	2021-05-22 09:23:12.861+03	
19372ceb-3494-cc2f-bd3c-73d590cab71e	2021-05-22 09:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:23:32.853+03	2021-05-22 09:23:32.864+03	
6094cbbd-c094-1c46-b9be-3fb5f1cf4f13	2021-05-22 09:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:23:52.853+03	2021-05-22 09:23:52.861+03	
00237c4c-14e2-4923-e0b9-1f2ace7790a8	2021-05-22 09:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:03:12.853+03	2021-05-22 09:03:12.861+03	
af6fc07e-2099-dd12-a9f7-484580add1fc	2021-05-22 09:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:03:34.853+03	2021-05-22 09:03:34.871+03	
d32d436d-6ddf-365f-5d32-58aab37f7832	2021-05-22 09:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:03:55.853+03	2021-05-22 09:03:55.861+03	
c1c94def-a84f-9a2c-29dc-c7a12ad29f60	2021-05-22 09:04:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:04:15.853+03	2021-05-22 09:04:15.862+03	
6fb0607a-dbbe-018f-6853-d9299bd71f43	2021-05-22 09:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:04:37.853+03	2021-05-22 09:04:37.868+03	
8fe4f873-a17d-9479-0921-6a9dbcda743e	2021-05-22 09:04:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:04:57.853+03	2021-05-22 09:04:57.861+03	
984c0330-0932-2052-0611-c004a78061c3	2021-05-22 09:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:05:18.853+03	2021-05-22 09:05:18.861+03	
a4e9b288-2ceb-91cf-ee53-6e51fcf2acf3	2021-05-22 09:05:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:05:38.853+03	2021-05-22 09:05:38.864+03	
3c043c9f-2b20-051c-0a3d-f2ca3bad6db8	2021-05-22 09:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:05:59.853+03	2021-05-22 09:05:59.867+03	
3222319b-8d07-b9f6-e14c-7c708c7d67df	2021-05-22 09:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:06:19.853+03	2021-05-22 09:06:19.861+03	
4db28cbe-db50-50fb-fed4-7a36af880fab	2021-05-22 09:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:06:39.853+03	2021-05-22 09:06:39.862+03	
190607d0-ff24-a85d-5eb9-444f3f1e169b	2021-05-22 09:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:07:00.853+03	2021-05-22 09:07:00.859+03	
93b16b84-c8e8-62f7-af10-23a54a463998	2021-05-22 09:07:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:07:20.854+03	2021-05-22 09:07:20.863+03	
01ce43c5-e7ec-5917-a2ac-93dc83335c43	2021-05-22 09:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:07:42.853+03	2021-05-22 09:07:42.861+03	
b2196f89-288a-63db-341b-513e6ee9c818	2021-05-22 09:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:08:02.853+03	2021-05-22 09:08:02.866+03	
7429cd68-ed28-f8d3-1b98-7c087336b2ca	2021-05-22 09:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:08:22.853+03	2021-05-22 09:08:22.862+03	
4f115ef5-6103-a326-c986-974776c735c8	2021-05-22 09:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:08:44.853+03	2021-05-22 09:08:44.872+03	
87dee499-7a20-d792-5425-f278a0123b07	2021-05-22 09:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:09:06.852+03	2021-05-22 09:09:06.86+03	
1deaacd1-fca4-4bad-bcda-d77ac714bf7a	2021-05-22 09:09:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:09:26.852+03	2021-05-22 09:09:26.859+03	
d45f0e2d-11ca-7560-d6e4-72c59645c373	2021-05-22 09:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:09:47.853+03	2021-05-22 09:09:47.86+03	
de44702d-bbca-ab2a-bcb9-4178fb9aecdf	2021-05-22 09:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 09:10:00.853+03	2021-05-22 09:10:00.858+03	ERROR
1903061c-215d-9ace-589b-0e5156a967ea	2021-05-22 09:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:10:18.853+03	2021-05-22 09:10:18.859+03	
9e134910-47f9-cc5f-e811-c19182ff5378	2021-05-22 09:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:10:38.853+03	2021-05-22 09:10:38.86+03	
71676c02-3c43-152c-38fd-f03f1f31d759	2021-05-22 09:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:10:58.853+03	2021-05-22 09:10:58.861+03	
03fc8905-2cf8-dff8-ccb8-ac5290c99108	2021-05-22 09:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:11:18.853+03	2021-05-22 09:11:18.86+03	
30e43c34-a50b-79cc-49f2-33943e44654f	2021-05-22 09:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:11:39.853+03	2021-05-22 09:11:39.862+03	
823c3b57-821e-27d1-7719-2fc789834046	2021-05-22 09:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:12:00.852+03	2021-05-22 09:12:00.866+03	
ba831a61-f145-3ea8-7cc0-23baa7caa3ff	2021-05-22 09:12:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:12:21.853+03	2021-05-22 09:12:21.877+03	
e6776e2f-d0a4-b61b-989f-3bd0d5a3728c	2021-05-22 09:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:12:41.853+03	2021-05-22 09:12:41.861+03	
63de254d-a052-7b3b-55a5-f807f476682b	2021-05-22 09:13:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:13:01.853+03	2021-05-22 09:13:01.859+03	
6b6f19a8-8013-2aeb-881f-77c1019f0460	2021-05-22 09:13:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:13:21.853+03	2021-05-22 09:13:21.86+03	
8849ebbb-9d45-a917-f76d-6a6baa6ee6d1	2021-05-22 09:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:13:42.853+03	2021-05-22 09:13:42.862+03	
5baa15e9-f7f2-9d06-3068-76953f50151e	2021-05-22 09:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:14:03.853+03	2021-05-22 09:14:03.86+03	
6797c7c7-f592-d49b-08e4-999d2ffcd0f6	2021-05-22 09:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:14:24.853+03	2021-05-22 09:14:24.873+03	
c17352f9-0a51-7e8c-7555-5d1c1a202104	2021-05-22 09:14:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:14:44.854+03	2021-05-22 09:14:44.862+03	
6891fcfe-74e5-063f-dace-868ecebb89cf	2021-05-22 09:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:15:05.853+03	2021-05-22 09:15:05.861+03	
3524397a-306a-4405-4995-967ee8632990	2021-05-22 09:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:15:26.853+03	2021-05-22 09:15:26.861+03	
dfa0703b-67dc-0cd8-fd57-ef61495d0f80	2021-05-22 09:15:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:15:46.854+03	2021-05-22 09:15:46.865+03	
ddd7bfd0-b6d8-9e45-b958-4c57c93cf861	2021-05-22 09:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:16:07.853+03	2021-05-22 09:16:07.859+03	
1d3041f7-7dfe-20ad-5fb7-4330e9f76fb9	2021-05-22 09:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:16:27.853+03	2021-05-22 09:16:27.861+03	
7b0482f5-69cf-4370-aa35-aa7d8c3750c7	2021-05-22 09:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:16:47.853+03	2021-05-22 09:16:47.86+03	
34fa211f-3abc-6bc1-0450-fe3f14dd5cac	2021-05-22 09:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:17:07.853+03	2021-05-22 09:17:07.862+03	
003a4a17-0360-0303-e1c5-cbe9498178cb	2021-05-22 09:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:17:28.852+03	2021-05-22 09:17:28.859+03	
9bbece23-0200-3489-ed5a-386098635b19	2021-05-22 09:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:17:48.853+03	2021-05-22 09:17:48.859+03	
99842483-0b9d-57a5-a5d2-c52b87f88971	2021-05-22 09:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:18:08.853+03	2021-05-22 09:18:08.861+03	
fe0c0256-07a1-6146-151e-4c0947912ce0	2021-05-22 09:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:18:28.853+03	2021-05-22 09:18:28.861+03	
cddc1ecb-484b-213b-3221-244e2370ee0f	2021-05-22 09:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:18:48.853+03	2021-05-22 09:18:48.859+03	
58f32b9f-15a4-afdb-2a8f-fd2ce708f186	2021-05-22 09:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:19:08.853+03	2021-05-22 09:19:08.864+03	
3bfd1d27-b05f-d79d-5046-2e6f1f8add91	2021-05-22 09:19:29.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:19:29.853+03	2021-05-22 09:19:29.862+03	
71087e1a-278d-7f63-41ae-c04b4acd9104	2021-05-22 09:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:20:00.853+03	2021-05-22 09:20:00.863+03	
13a7bef0-e229-72a4-6102-20ec5adc3f2f	2021-05-22 09:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 09:20:00.853+03	2021-05-22 09:20:00.876+03	ERROR
a7001b82-80f6-c285-4dcd-3c3598aca47d	2021-05-22 09:20:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:20:20.853+03	2021-05-22 09:20:20.862+03	
ea04f791-3bca-c0e0-62dc-5de7c57c5d2b	2021-05-22 09:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:20:40.853+03	2021-05-22 09:20:40.86+03	
af1b263f-c789-0388-02af-acdd47224dba	2021-05-22 09:21:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:21:01.853+03	2021-05-22 09:21:01.861+03	
56fb6d78-ea55-9103-7d01-67a391785536	2021-05-22 09:21:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:21:21.853+03	2021-05-22 09:21:21.862+03	
401e13d9-5695-f779-437b-487bd0ee17af	2021-05-22 09:21:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:21:41.853+03	2021-05-22 09:21:41.862+03	
96d8f334-932e-b0e3-6ac0-3a1b06d14509	2021-05-22 09:22:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:22:01.853+03	2021-05-22 09:22:01.861+03	
b2d2cf38-ba1b-c8ae-995b-a22556c7d55b	2021-05-22 09:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:22:22.853+03	2021-05-22 09:22:22.86+03	
4b42c989-2b54-c56f-532f-1f404b471c8f	2021-05-22 09:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:22:42.853+03	2021-05-22 09:22:42.861+03	
e1fe44d0-8d7d-1bec-669d-93ce734b4970	2021-05-22 09:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:23:02.853+03	2021-05-22 09:23:02.861+03	
0883f270-7c97-77b8-55a7-a4987bf7ad8d	2021-05-22 09:23:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:23:22.853+03	2021-05-22 09:23:22.862+03	
4ed35c29-6483-1ef9-56ad-d2170f767da0	2021-05-22 09:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:23:42.853+03	2021-05-22 09:23:42.861+03	
98b8d107-6536-55bb-f412-74d5aa86caad	2021-05-22 09:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:24:02.853+03	2021-05-22 09:24:02.86+03	
1d357c97-cdbd-234b-9943-dadb9a242ab5	2021-05-22 09:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:24:12.853+03	2021-05-22 09:24:12.861+03	
0f8bc038-e215-a85c-de8e-30d94a4a8fd9	2021-05-22 09:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:24:32.853+03	2021-05-22 09:24:32.862+03	
8dc58f03-9730-ba83-b406-04e758dbdf06	2021-05-22 09:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:24:52.853+03	2021-05-22 09:24:52.859+03	
cffd4a58-0bff-a9e1-8caf-a94be3772b85	2021-05-22 09:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:25:13.853+03	2021-05-22 09:25:13.872+03	
7cd6ae1c-d51a-9da7-e584-a6e11f16a401	2021-05-22 09:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:25:33.853+03	2021-05-22 09:25:33.883+03	
c44a3b6d-360f-d2ba-bb56-0fa946efcbbf	2021-05-22 09:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:25:53.853+03	2021-05-22 09:25:53.868+03	
c2d37097-68ac-9bb4-acf4-8c228e2c8c41	2021-05-22 09:26:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:26:13.853+03	2021-05-22 09:26:13.861+03	
ef050918-68d9-1894-9d1b-f07c18594a29	2021-05-22 09:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:26:33.853+03	2021-05-22 09:26:33.86+03	
7c605372-53e2-34ee-9bb2-8e23c2c48302	2021-05-22 09:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:26:53.853+03	2021-05-22 09:26:53.859+03	
c6a74181-e75b-57d8-004f-fe4084761319	2021-05-22 09:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:27:13.853+03	2021-05-22 09:27:13.861+03	
5392a1c0-e450-1c30-0090-dfa010ed8571	2021-05-22 09:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:27:33.853+03	2021-05-22 09:27:33.86+03	
f37c9c9d-1a11-d145-b601-0e91e4432a5c	2021-05-22 09:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:27:54.852+03	2021-05-22 09:27:54.868+03	
aa624824-5888-f5db-cea3-a35f4541e818	2021-05-22 09:28:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:28:14.853+03	2021-05-22 09:28:14.873+03	
f2300d6f-8799-046b-a5d3-062e431443b9	2021-05-22 09:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:28:34.853+03	2021-05-22 09:28:34.86+03	
da5dbe6e-4e01-e7c9-b603-37bb7c7ffad2	2021-05-22 09:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:28:55.853+03	2021-05-22 09:28:55.86+03	
f5fa4f40-f2dc-2f62-1fed-be56d5c2fa9f	2021-05-22 09:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:29:15.853+03	2021-05-22 09:29:15.863+03	
437a56cd-5cf2-f14c-3b21-f4af66d01404	2021-05-22 09:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:29:35.853+03	2021-05-22 09:29:35.865+03	
ee405a46-54b7-ec27-26f1-e169da0db119	2021-05-22 09:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:29:55.853+03	2021-05-22 09:29:55.861+03	
21198672-d550-b6a5-3c8a-0e61ddb4535a	2021-05-22 09:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:30:05.853+03	2021-05-22 09:30:05.86+03	
a270fdea-5e48-b9a4-ec0d-861906155640	2021-05-22 09:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:30:25.853+03	2021-05-22 09:30:25.882+03	
f425cd7f-0915-2904-65e0-c151da9fff88	2021-05-22 09:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:30:45.853+03	2021-05-22 09:30:45.861+03	
cda8d797-b8be-667a-a8d8-fd46d6bc6428	2021-05-22 09:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:31:05.853+03	2021-05-22 09:31:05.873+03	
51e1cbda-2d1b-f3ed-c824-d78ffe5297ac	2021-05-22 09:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:31:25.853+03	2021-05-22 09:31:25.86+03	
1fb11d3c-b5d4-ea33-43a4-1b65677a9a2e	2021-05-22 09:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:31:45.853+03	2021-05-22 09:31:45.861+03	
2a12d73c-adb0-60e6-1e10-38c7754f0e75	2021-05-22 09:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:32:05.853+03	2021-05-22 09:32:05.86+03	
5ab008cf-3326-c23b-3a56-b1b08e7170ce	2021-05-22 09:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:32:25.853+03	2021-05-22 09:32:25.859+03	
ea51b043-40e1-41d4-09ba-77a347e32196	2021-05-22 09:32:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:32:46.853+03	2021-05-22 09:32:46.86+03	
91ee0a08-7d88-afa2-8901-91b078bc2f35	2021-05-22 09:33:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:33:06.853+03	2021-05-22 09:33:06.87+03	
e2551dc2-95ee-3e45-9b4a-6537ee3219e2	2021-05-22 09:33:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:33:26.854+03	2021-05-22 09:33:26.863+03	
3c88b07c-6121-e253-0bdb-5f217545263b	2021-05-22 09:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:33:47.853+03	2021-05-22 09:33:47.861+03	
6a48a694-4294-8f06-2a38-e24d6c409091	2021-05-22 09:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:34:07.853+03	2021-05-22 09:34:07.86+03	
0e3ed252-a8ab-c72d-cde3-e8a4713f83cc	2021-05-22 09:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:34:27.853+03	2021-05-22 09:34:27.86+03	
4852b69e-dc0b-2991-de99-87fe9f3f64e5	2021-05-22 09:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:34:47.853+03	2021-05-22 09:34:47.86+03	
6998c46a-dec0-37d8-b57b-33979e0cfbff	2021-05-22 09:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:35:07.853+03	2021-05-22 09:35:07.862+03	
1777176e-c9a8-4f9b-ae44-6c32df2e810f	2021-05-22 09:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:35:27.853+03	2021-05-22 09:35:27.863+03	
0cc0088f-d186-895e-9db2-d4332335f0fc	2021-05-22 09:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:35:48.853+03	2021-05-22 09:35:48.859+03	
616665a5-bebc-d2ea-c50b-6292933ac443	2021-05-22 09:36:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:36:08.853+03	2021-05-22 09:36:08.861+03	
f3ea4016-3b0d-bb1a-0291-9f6f52ab1b52	2021-05-22 09:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:36:29.853+03	2021-05-22 09:36:29.86+03	
6f89dc8e-269b-ef2f-f7e4-898663b9a171	2021-05-22 09:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:36:50.852+03	2021-05-22 09:36:50.86+03	
cf46522b-bb2d-94f9-2309-26b078627be9	2021-05-22 09:37:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:37:11.853+03	2021-05-22 09:37:11.859+03	
a854558e-5c8b-d249-c4e6-5b545602d760	2021-05-22 09:37:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:37:31.854+03	2021-05-22 09:37:31.862+03	
21c51764-70a7-02df-65bf-7ab916c238a9	2021-05-22 09:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:37:52.853+03	2021-05-22 09:37:52.86+03	
ce258744-fb1a-36ec-41a9-a1315c9fe3e2	2021-05-22 09:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:38:13.852+03	2021-05-22 09:38:13.858+03	
adf9e32a-e9f8-d9b8-b0d6-5b12aefd9a76	2021-05-22 09:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:38:33.853+03	2021-05-22 09:38:33.865+03	
33dfc120-145e-31d2-7ff4-e2dd30ff73de	2021-05-22 09:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:38:54.853+03	2021-05-22 09:38:54.872+03	
58c8c33f-3fff-d044-89c3-91047279dd0e	2021-05-22 09:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:39:15.852+03	2021-05-22 09:39:15.859+03	
3aa2c05d-3a1e-7cae-caad-fe14aa29dcb7	2021-05-22 09:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:39:36.852+03	2021-05-22 09:39:36.859+03	
778812e8-603f-3dbb-84a5-0d1230460dc3	2021-05-22 09:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 09:40:00.852+03	2021-05-22 09:40:00.858+03	ERROR
e557a5e5-c56a-e9cf-8ef2-6890f0057adc	2021-05-22 09:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:40:17.852+03	2021-05-22 09:40:17.859+03	
7d423460-046d-4b5b-7846-9c5e813c0d22	2021-05-22 09:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:40:38.852+03	2021-05-22 09:40:38.86+03	
b7a0daf2-2581-84fd-c90e-7e1becb22563	2021-05-22 09:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:40:58.853+03	2021-05-22 09:40:58.861+03	
ac623374-80dd-82ea-1728-c462cab473c0	2021-05-22 09:41:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:41:20.852+03	2021-05-22 09:41:20.859+03	
7fbfd54e-0644-9b15-1af6-ef5bfb416dd6	2021-05-22 09:41:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:41:40.852+03	2021-05-22 09:41:40.86+03	
7c1600cd-8360-b885-9c43-e01739a00921	2021-05-22 09:42:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:42:01.852+03	2021-05-22 09:42:01.859+03	
b8b34db9-6ad6-5563-2259-04d92ee7cd6d	2021-05-22 09:42:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:42:21.853+03	2021-05-22 09:42:21.86+03	
932181b7-0279-9f76-58ab-d75056a70c03	2021-05-22 09:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:42:42.852+03	2021-05-22 09:42:42.859+03	
03817d85-d245-a69f-cbe0-53f8d363a27e	2021-05-22 09:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:43:02.853+03	2021-05-22 09:43:02.861+03	
04a54e10-9bb7-ca0c-e217-f0036506633f	2021-05-22 09:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:43:23.853+03	2021-05-22 09:43:23.861+03	
923f9cb8-68ad-4baf-71f2-616439cff5dd	2021-05-22 09:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:43:43.853+03	2021-05-22 09:43:43.863+03	
748d7db5-9cac-4721-d117-ebe0d9a274c0	2021-05-22 09:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:44:04.853+03	2021-05-22 09:44:04.867+03	
5d75f059-456f-bb8c-9ccc-77afb2e6b31b	2021-05-22 09:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:44:24.853+03	2021-05-22 09:44:24.863+03	
06ba6b14-c741-e239-d48b-be6cfd64c43a	2021-05-22 09:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:44:45.852+03	2021-05-22 09:44:45.859+03	
aa60ee48-bb30-c441-1bc5-7197ab75f6a7	2021-05-22 09:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:45:05.853+03	2021-05-22 09:45:05.863+03	
512901dc-220a-91bf-9010-eb87ef490210	2021-05-22 09:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:24:22.853+03	2021-05-22 09:24:22.861+03	
9f8b3eb8-35d4-b0b4-2913-3d9e9b60be5c	2021-05-22 09:24:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:24:42.853+03	2021-05-22 09:24:42.862+03	
94de5f06-8962-d17c-056e-ff4e90b9e3c9	2021-05-22 09:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:25:03.853+03	2021-05-22 09:25:03.861+03	
ad855771-3a75-f4dd-c5a9-0f8313cdd416	2021-05-22 09:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:25:23.853+03	2021-05-22 09:25:23.861+03	
e0be1ce4-cda6-c547-4a53-9007aa67befe	2021-05-22 09:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:25:43.853+03	2021-05-22 09:25:43.862+03	
c2d3373a-38a3-88c2-b84d-fa0e21f5f692	2021-05-22 09:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:26:03.853+03	2021-05-22 09:26:03.86+03	
ae9fa071-d637-2d8d-be6e-f4cd15fac147	2021-05-22 09:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:26:23.853+03	2021-05-22 09:26:23.861+03	
d34bb11b-b997-de0d-b45e-4632a6e9d13f	2021-05-22 09:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:26:43.853+03	2021-05-22 09:26:43.867+03	
64ec4343-13be-2767-bc9b-4c9faed3b4be	2021-05-22 09:27:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:27:03.853+03	2021-05-22 09:27:03.862+03	
85521529-7dfe-930e-3697-4e5f34693e7c	2021-05-22 09:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:27:23.853+03	2021-05-22 09:27:23.86+03	
f6c9f8dd-7794-d8d3-0967-d16ac77cfd5f	2021-05-22 09:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:27:43.853+03	2021-05-22 09:27:43.861+03	
01329439-6d7e-fd36-90cb-4fb64b3a976d	2021-05-22 09:28:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:28:04.853+03	2021-05-22 09:28:04.874+03	
28fbd804-ed25-fc42-50ea-edae16ee215a	2021-05-22 09:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:28:24.853+03	2021-05-22 09:28:24.865+03	
a73c6c40-ddf6-b4a1-d180-35bae6e2afc9	2021-05-22 09:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:28:45.853+03	2021-05-22 09:28:45.878+03	
52c417cb-d0c1-8093-4ef2-4a06b0525275	2021-05-22 09:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:29:05.853+03	2021-05-22 09:29:05.861+03	
f4b40182-f8b5-1660-3dd6-a672b334bcbd	2021-05-22 09:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:29:25.853+03	2021-05-22 09:29:25.861+03	
6d8ea751-5f56-71c3-0d9d-ea0675b585d6	2021-05-22 09:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:29:45.853+03	2021-05-22 09:29:45.876+03	
65a58847-4b63-7e47-bb65-7079338f52f9	2021-05-22 09:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 09:30:00.853+03	2021-05-22 09:30:00.859+03	ERROR
0970ed1d-2348-d1b5-a44c-23faeb46ea6c	2021-05-22 09:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:30:15.853+03	2021-05-22 09:30:15.863+03	
8e1348a3-4219-cb4a-6601-514680c261d5	2021-05-22 09:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:30:35.853+03	2021-05-22 09:30:35.874+03	
4aa05532-6f94-ae2a-63a1-ecf19b2611a6	2021-05-22 09:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:30:55.853+03	2021-05-22 09:30:55.859+03	
8ba33229-b8d2-d88c-01dd-e1dc8c6b14a5	2021-05-22 09:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:31:15.853+03	2021-05-22 09:31:15.869+03	
286377cb-a251-baa7-fe30-ffdd59ce610c	2021-05-22 09:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:31:35.853+03	2021-05-22 09:31:35.867+03	
2857c98c-d1b3-a607-552d-5ea92c57a2df	2021-05-22 09:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:31:55.853+03	2021-05-22 09:31:55.864+03	
bae663ff-cb68-020b-3f96-9eb6c508510e	2021-05-22 09:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:32:15.853+03	2021-05-22 09:32:15.863+03	
a1dc9677-b99a-7891-f586-9b04ebd4001b	2021-05-22 09:32:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:32:36.853+03	2021-05-22 09:32:36.86+03	
0527580c-9919-334e-a5c7-66f84406d01f	2021-05-22 09:32:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:32:56.853+03	2021-05-22 09:32:56.871+03	
1557a1c0-4cf3-645d-bc8a-c6d0c158ea19	2021-05-22 09:33:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:33:16.853+03	2021-05-22 09:33:16.863+03	
0eafcaf6-2824-df6f-6fd2-f4dc0e47f89f	2021-05-22 09:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:33:37.853+03	2021-05-22 09:33:37.861+03	
24405859-6cab-c7c4-2322-604c478a1ad2	2021-05-22 09:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:33:57.853+03	2021-05-22 09:33:57.861+03	
979ef32d-03c5-aa95-8c24-6cb2b73b8ef0	2021-05-22 09:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:34:17.853+03	2021-05-22 09:34:17.86+03	
6658eecb-f924-ee8f-6a41-b5d976165198	2021-05-22 09:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:34:37.853+03	2021-05-22 09:34:37.86+03	
4c8bc8eb-37f5-aeee-3b84-c9f6ba81e39f	2021-05-22 09:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:34:57.853+03	2021-05-22 09:34:57.86+03	
80572063-3f99-56ca-ddad-b6852569e47f	2021-05-22 09:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:35:17.853+03	2021-05-22 09:35:17.86+03	
5922f683-6093-f3cf-9f0b-caa4d4468d15	2021-05-22 09:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:35:37.853+03	2021-05-22 09:35:37.86+03	
554b8a92-9bd6-3efa-16bb-f18e47b5d5ea	2021-05-22 09:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:35:58.853+03	2021-05-22 09:35:58.861+03	
cd3d5ec6-ae96-56ff-fdbc-8f1ab655a6a9	2021-05-22 09:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:36:19.853+03	2021-05-22 09:36:19.859+03	
46d69ab5-d0f9-cd45-91f6-141af1bbc45e	2021-05-22 09:36:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:36:39.853+03	2021-05-22 09:36:39.859+03	
468f2cb8-b683-2bfb-5d35-fda19e83fbe4	2021-05-22 09:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:37:00.853+03	2021-05-22 09:37:00.871+03	
8efe7713-b280-ce11-895a-8f7723b4f8da	2021-05-22 09:37:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:37:21.853+03	2021-05-22 09:37:21.859+03	
1e8e4e7c-89c8-a013-0ff8-dc618d618050	2021-05-22 09:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:37:42.852+03	2021-05-22 09:37:42.86+03	
eaa6ac7b-2b56-7e53-f41b-fc847d8c53ea	2021-05-22 09:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:38:03.852+03	2021-05-22 09:38:03.859+03	
f8c86f0b-a501-e41a-4f0d-67ba6627331f	2021-05-22 09:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:38:23.853+03	2021-05-22 09:38:23.86+03	
9e76ad80-52a8-a11f-a50e-c062bc72cdd6	2021-05-22 09:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:38:44.853+03	2021-05-22 09:38:44.871+03	
858cb34e-b6d6-1cea-c486-95a799dbb6b7	2021-05-22 09:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:39:05.852+03	2021-05-22 09:39:05.859+03	
50e3c057-08e8-b36a-63ae-2c7b69307065	2021-05-22 09:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:39:25.853+03	2021-05-22 09:39:25.913+03	
27e5509f-eef1-73ea-1ed6-b67ea4b3cea2	2021-05-22 09:39:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:39:46.853+03	2021-05-22 09:39:46.872+03	
b47776cc-3837-e99d-4964-d90a260c6b5b	2021-05-22 09:39:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:39:56.853+03	2021-05-22 09:39:56.861+03	
d19c88f3-ac04-fce2-db76-1e7b72141eea	2021-05-22 09:40:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:40:06.853+03	2021-05-22 09:40:06.86+03	
b294c86c-4aee-24af-42c9-58a635274838	2021-05-22 09:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:40:27.853+03	2021-05-22 09:40:27.866+03	
2d0d0326-59ce-0813-e4b4-a6e78b5ab85b	2021-05-22 09:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:40:48.853+03	2021-05-22 09:40:48.859+03	
53288762-0b82-e2f0-28c5-c856da98bb39	2021-05-22 09:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:41:09.853+03	2021-05-22 09:41:09.861+03	
5e821808-4c09-1918-0aac-e78372177cdd	2021-05-22 09:41:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:41:30.852+03	2021-05-22 09:41:30.859+03	
10bc4666-bc25-2864-0043-95a91684639a	2021-05-22 09:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:41:50.853+03	2021-05-22 09:41:50.861+03	
8aa86daa-a50c-372f-51fd-19d254391759	2021-05-22 09:42:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:42:11.853+03	2021-05-22 09:42:11.859+03	
8b85de39-a53a-a2d8-1099-295cf0b4c05e	2021-05-22 09:42:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:42:31.854+03	2021-05-22 09:42:31.863+03	
2ebe8e5a-d74f-3b23-8eee-0c9e45cf6092	2021-05-22 09:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:42:52.853+03	2021-05-22 09:42:52.859+03	
f6a4a597-5bba-dd6c-51df-644d70cc46f1	2021-05-22 09:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:43:13.852+03	2021-05-22 09:43:13.86+03	
57df4bb3-a28a-8220-f256-ec75fc73a894	2021-05-22 09:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:43:33.853+03	2021-05-22 09:43:33.862+03	
0d85cdfb-4724-456c-1e5f-d29f90d97dbb	2021-05-22 09:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:43:54.853+03	2021-05-22 09:43:54.864+03	
965df7f3-1671-6964-aad6-1d0feb15a97d	2021-05-22 09:44:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:44:14.853+03	2021-05-22 09:44:14.875+03	
f1fd6946-2e11-0e82-d537-cdeebc6ce1dc	2021-05-22 09:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:44:34.853+03	2021-05-22 09:44:34.862+03	
067aa0a2-4437-b807-fdb3-50fd42b1848b	2021-05-22 09:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:44:55.853+03	2021-05-22 09:44:55.86+03	
352e80bb-5744-c2d0-c28f-a322c4bfa0c7	2021-05-22 09:45:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:45:16.852+03	2021-05-22 09:45:16.859+03	
070b98d2-f4f6-2442-4bd0-e496aae01f9d	2021-05-22 09:45:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:45:36.854+03	2021-05-22 09:45:36.861+03	
2b89ed54-d462-d70c-5d53-65205f4651b6	2021-05-22 09:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:45:57.853+03	2021-05-22 09:45:57.869+03	
afcfabec-94dc-a98a-58b3-8068208f5ee8	2021-05-22 09:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:46:17.853+03	2021-05-22 09:46:17.861+03	
f413dc55-8eea-a672-c6c6-6cba81765510	2021-05-22 09:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:46:37.853+03	2021-05-22 09:46:37.86+03	
366a0698-ce37-b91c-7a87-0967ab3a14a9	2021-05-22 09:46:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:46:57.853+03	2021-05-22 09:46:58.451+03	
f89ef85e-6d8d-2551-4d50-4afc219eaabe	2021-05-22 09:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:47:18.852+03	2021-05-22 09:47:18.859+03	
385920f6-2660-34e8-3cf6-3fc5026480da	2021-05-22 09:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:47:38.853+03	2021-05-22 09:47:38.86+03	
074541e5-2845-68cb-dbc4-a013b8e94839	2021-05-22 09:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:47:59.853+03	2021-05-22 09:47:59.862+03	
0956f7b6-b3fe-829c-a409-6628898c2ca4	2021-05-22 09:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:48:20.853+03	2021-05-22 09:48:20.862+03	
e4a67d1c-b8db-8936-5903-bc8b1ac6de9c	2021-05-22 09:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:48:40.853+03	2021-05-22 09:48:40.86+03	
a76115e4-4122-8a32-a082-3d50cdd7cf15	2021-05-22 09:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:49:00.853+03	2021-05-22 09:49:00.862+03	
09e2fc77-e7c3-d867-c977-79f9633bd61a	2021-05-22 09:49:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:49:20.853+03	2021-05-22 09:49:20.871+03	
1f39ed61-f835-d316-a833-3bd4486feeb9	2021-05-22 09:49:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:49:40.853+03	2021-05-22 09:49:40.869+03	
ab1d033f-9952-874c-7757-bac471cc18e2	2021-05-22 09:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:50:00.853+03	2021-05-22 09:50:00.862+03	
00a7c286-c668-290c-e319-26e1a9a51a3e	2021-05-22 09:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:50:20.853+03	2021-05-22 09:50:20.864+03	
ac20893f-2f9c-8b04-89f9-f64bf19d4d01	2021-05-22 09:50:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:50:40.853+03	2021-05-22 09:50:40.862+03	
942e731f-ff7e-80fd-5469-b76804fd4d98	2021-05-22 09:51:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:51:01.854+03	2021-05-22 09:51:01.86+03	
f5e4ace9-bcef-e860-167a-7ed6b3119ea0	2021-05-22 09:51:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:51:22.853+03	2021-05-22 09:51:22.86+03	
e2bdaafa-3d08-5a4d-9794-cb69fced2982	2021-05-22 09:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:51:43.853+03	2021-05-22 09:51:43.86+03	
cdacab3b-5324-e91b-4afd-cf93d5878fa0	2021-05-22 09:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:52:04.853+03	2021-05-22 09:52:04.87+03	
1cfe8bf0-cede-d355-2324-132925a59992	2021-05-22 09:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:52:25.853+03	2021-05-22 09:52:25.861+03	
2f799f4e-c541-84e2-b03f-d8501c60c544	2021-05-22 09:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:52:45.853+03	2021-05-22 09:52:45.862+03	
e33c026e-4b1b-dff4-49f2-d262e5fb60b3	2021-05-22 09:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:53:05.853+03	2021-05-22 09:53:05.864+03	
35dfdcf5-ae8c-fd89-dcf9-0c1245c89380	2021-05-22 09:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:53:25.853+03	2021-05-22 09:53:25.876+03	
ccfdf7bd-0477-af61-0f90-53a642927751	2021-05-22 09:53:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:53:46.854+03	2021-05-22 09:53:46.872+03	
3bbbbb00-e814-dda5-1ba0-1489fbf8b3c6	2021-05-22 09:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:54:07.853+03	2021-05-22 09:54:07.859+03	
0efd67ba-65a2-4862-ff90-9562e2c9c942	2021-05-22 09:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:54:27.853+03	2021-05-22 09:54:27.863+03	
af256b1e-92ba-8448-21de-98303abd4a23	2021-05-22 09:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:54:48.853+03	2021-05-22 09:54:48.86+03	
5ed36287-c761-3086-3fe2-6c0e2904db5d	2021-05-22 09:55:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:55:08.853+03	2021-05-22 09:55:08.861+03	
f443e0e5-1bbe-2247-58c0-58b4026d6a4f	2021-05-22 09:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:55:28.853+03	2021-05-22 09:55:28.861+03	
06f45bcc-c584-21e0-c44d-3c86b4ecd66d	2021-05-22 09:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:55:48.853+03	2021-05-22 09:55:48.86+03	
20cb521d-f74f-be62-9104-635c1628abb4	2021-05-22 09:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:56:09.852+03	2021-05-22 09:56:09.859+03	
d9fadbc0-e38d-6e40-4db8-81990784522b	2021-05-22 09:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:56:29.853+03	2021-05-22 09:56:29.866+03	
c191e190-532a-efc7-9ce2-d64043625d05	2021-05-22 09:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:56:49.853+03	2021-05-22 09:56:49.86+03	
07969745-105e-ea27-bfd0-5e545e9c8e99	2021-05-22 09:57:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:57:09.853+03	2021-05-22 09:57:09.859+03	
c3aeb82f-36e1-2f6b-712b-023d1da8a549	2021-05-22 09:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:57:30.853+03	2021-05-22 09:57:30.872+03	
bbf7be87-a206-d8e5-51c5-c34c3051659e	2021-05-22 09:57:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:57:51.853+03	2021-05-22 09:57:51.871+03	
1ccce285-7bd3-5802-c877-5c16819e5b38	2021-05-22 09:58:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:58:11.853+03	2021-05-22 09:58:11.875+03	
e767f612-12fb-18cd-aefa-3889772001d3	2021-05-22 09:58:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:58:31.854+03	2021-05-22 09:58:31.861+03	
76f4405b-6c8c-cb17-69c0-ea718efc36e5	2021-05-22 09:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:58:53.852+03	2021-05-22 09:58:53.862+03	
6e8d1486-0d61-53c1-a9eb-97a6dbe993c8	2021-05-22 09:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:59:13.853+03	2021-05-22 09:59:13.862+03	
1b510bc0-6a8e-2879-eaf2-2fa3ffdb941d	2021-05-22 09:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:59:33.853+03	2021-05-22 09:59:33.859+03	
90a381c3-8ec4-b562-d5c8-140ca690d891	2021-05-22 09:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:59:53.853+03	2021-05-22 09:59:53.859+03	
9d92388c-0e28-7d70-9cb3-195f7daa84fa	2021-05-22 10:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:00:03.853+03	2021-05-22 10:00:03.923+03	
0570eb32-eb6b-d822-cd4a-1a83647945c2	2021-05-22 10:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:00:23.853+03	2021-05-22 10:00:23.87+03	
87cb47ae-45b4-b260-19ae-4c4a521d9e67	2021-05-22 10:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:00:43.853+03	2021-05-22 10:00:43.872+03	
3aca99bd-5941-0c8c-d8e2-ee735afcc4d4	2021-05-22 10:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:01:03.853+03	2021-05-22 10:01:03.861+03	
5b591547-b0bc-ae73-fe7f-4963a17d9863	2021-05-22 10:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:01:23.853+03	2021-05-22 10:01:23.86+03	
00497dc3-1682-6025-0a2f-c78f24955ddc	2021-05-22 10:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:01:44.852+03	2021-05-22 10:01:44.859+03	
1e562b75-9df0-7755-7652-5a869c62b803	2021-05-22 10:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:02:04.853+03	2021-05-22 10:02:04.859+03	
7846ab0e-aab9-7aae-82b1-782d810bc960	2021-05-22 10:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:02:24.853+03	2021-05-22 10:02:24.861+03	
473632eb-cbed-08af-c680-0c779db2e875	2021-05-22 10:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:02:45.853+03	2021-05-22 10:02:45.87+03	
97800670-365f-f99d-c428-62ff4bc2a73f	2021-05-22 10:03:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:03:06.853+03	2021-05-22 10:03:06.86+03	
8a6a2248-2439-6e9b-329f-8ff95ef27b48	2021-05-22 10:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:03:27.853+03	2021-05-22 10:03:27.862+03	
76d4d67e-f251-9e0c-0dcb-d034543aea8f	2021-05-22 10:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:03:48.853+03	2021-05-22 10:03:48.859+03	
2c279e6c-65b4-6c0f-24bf-3cfdf0fce1ca	2021-05-22 10:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:04:09.853+03	2021-05-22 10:04:09.86+03	
a07bd3bd-7b09-8779-cb06-bd1f6be8a391	2021-05-22 10:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:04:30.853+03	2021-05-22 10:04:30.86+03	
a5cf12a7-19d1-8ba3-f88e-c5733913add2	2021-05-22 10:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:04:50.853+03	2021-05-22 10:04:50.86+03	
e88e54e1-2acc-5436-154d-b9336319df6e	2021-05-22 10:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:05:10.853+03	2021-05-22 10:05:10.86+03	
87dcf41d-d40e-68c9-78d4-23509a48a72d	2021-05-22 10:05:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:05:31.854+03	2021-05-22 10:05:31.867+03	
3f5adad6-c6a9-e053-b871-5d5f20f88e48	2021-05-22 10:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:05:52.853+03	2021-05-22 10:05:52.86+03	
f998966d-1e8f-b35f-5452-0c227968deea	2021-05-22 10:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:06:13.853+03	2021-05-22 10:06:13.86+03	
f19f8000-25b9-ee5e-873c-4bc509baa82a	2021-05-22 09:45:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:45:26.853+03	2021-05-22 09:45:26.862+03	
3ff73a88-d9d0-e8c1-43a1-60bba41f2661	2021-05-22 09:45:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:45:46.854+03	2021-05-22 09:45:46.862+03	
02f97821-15f1-dc8a-3d99-93462084b94a	2021-05-22 09:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:46:07.853+03	2021-05-22 09:46:07.861+03	
1f88b450-492c-8ef3-60a5-805bc2587a62	2021-05-22 09:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:46:27.853+03	2021-05-22 09:46:27.859+03	
68f2100a-8a4e-a6f3-b42d-fb2e235d9c5c	2021-05-22 09:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:46:47.853+03	2021-05-22 09:46:47.861+03	
d3f41487-965d-caef-6c14-3e7e99079336	2021-05-22 09:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:47:07.853+03	2021-05-22 09:47:07.86+03	
86aa5821-123f-8dd1-dc0b-1f691eccb5df	2021-05-22 09:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:47:28.852+03	2021-05-22 09:47:28.859+03	
dfe83a60-7861-47c3-d164-866393563e2f	2021-05-22 09:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:47:48.853+03	2021-05-22 09:47:48.863+03	
98b7504f-fa18-5811-0e42-a6ced43fe531	2021-05-22 09:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:48:09.853+03	2021-05-22 09:48:09.865+03	
71ef38ad-1cf1-6479-63b8-fb359c5aad75	2021-05-22 09:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:48:30.853+03	2021-05-22 09:48:30.861+03	
16a08e25-5bda-b908-1931-6a45eee41daa	2021-05-22 09:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:48:50.853+03	2021-05-22 09:48:50.873+03	
303f78ad-1915-6f2b-6e36-7ba9ce7b2a1e	2021-05-22 09:49:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:49:10.853+03	2021-05-22 09:49:10.871+03	
2a96ccc5-7d46-1a4b-70e3-0ef99be6e67e	2021-05-22 09:49:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:49:30.853+03	2021-05-22 09:49:30.867+03	
755f72ae-c899-f897-31f4-4df19e7d1a2f	2021-05-22 09:49:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:49:50.853+03	2021-05-22 09:49:50.863+03	
15e86b99-bd16-ca36-2932-247ca8fb5f27	2021-05-22 09:50:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 09:50:00.853+03	2021-05-22 09:50:00.87+03	ERROR
dd6cd58e-6f33-4fce-e0a3-37fd7c26e103	2021-05-22 09:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:50:10.853+03	2021-05-22 09:50:10.861+03	
b0b46d46-89f7-4b6b-217f-481b8ad54366	2021-05-22 09:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:50:30.853+03	2021-05-22 09:50:30.865+03	
fe13b025-c4bd-c997-b2dc-6f3b73dde12d	2021-05-22 09:50:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:50:50.853+03	2021-05-22 09:50:50.871+03	
d6d8f041-f9f2-4cc7-b80b-57bbad756805	2021-05-22 09:51:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:51:12.853+03	2021-05-22 09:51:12.859+03	
422c72a9-3d49-b823-3d5b-9ddb2ec476f2	2021-05-22 09:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:51:33.853+03	2021-05-22 09:51:33.863+03	
467db5f6-ba42-063f-1fec-0669def8a294	2021-05-22 09:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:51:54.852+03	2021-05-22 09:51:54.858+03	
08ace3b4-aaa4-cab0-aef5-dc3dbf9c490f	2021-05-22 09:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:52:15.853+03	2021-05-22 09:52:15.864+03	
449e5ab6-f29b-4749-0f0c-5596f59fcb01	2021-05-22 09:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:52:35.853+03	2021-05-22 09:52:35.87+03	
7ff8fc79-5dff-3cf5-a1bc-adcec24201bb	2021-05-22 09:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:52:55.853+03	2021-05-22 09:52:55.865+03	
d90bcd2b-bb1d-00f5-806e-efd587f4723b	2021-05-22 09:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:53:15.853+03	2021-05-22 09:53:15.861+03	
97cd8628-125c-6822-3711-e2a24992ec94	2021-05-22 09:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:53:35.853+03	2021-05-22 09:53:35.861+03	
609727bc-c605-ba88-30fe-2f030ebb8005	2021-05-22 09:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:53:57.852+03	2021-05-22 09:53:57.86+03	
2335a1a7-7889-270e-7560-ba82ab9db520	2021-05-22 09:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:54:17.853+03	2021-05-22 09:54:17.865+03	
5f24c2e1-5a9c-0e57-7edb-708287264118	2021-05-22 09:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:54:38.852+03	2021-05-22 09:54:38.86+03	
a7f05ac4-b2b9-6295-210a-50f3a94f9d92	2021-05-22 09:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:54:58.853+03	2021-05-22 09:54:58.86+03	
0f724ee0-31fc-0cc9-96f5-83d68a6f0728	2021-05-22 09:55:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:55:18.853+03	2021-05-22 09:55:18.862+03	
709a7431-65b7-0170-7fef-5b9c3d3e9f38	2021-05-22 09:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:55:38.853+03	2021-05-22 09:55:38.86+03	
0a5807bd-bbce-41be-1988-f6bef41bf8ab	2021-05-22 09:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:55:58.853+03	2021-05-22 09:55:58.86+03	
2d6bcd98-e291-c6c4-cedb-3f5988806691	2021-05-22 09:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:56:19.853+03	2021-05-22 09:56:19.863+03	
896509fa-a809-a40f-8c3b-e397aa01e0e2	2021-05-22 09:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:56:39.853+03	2021-05-22 09:56:39.862+03	
27b77ac9-8752-94b9-f02c-076365ad137f	2021-05-22 09:56:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:56:59.853+03	2021-05-22 09:56:59.861+03	
e1e13ff2-dc30-4f6f-e843-2757a0078fcd	2021-05-22 09:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:57:20.852+03	2021-05-22 09:57:20.859+03	
3ff15cfa-ceb8-4765-3843-d601a034a0b3	2021-05-22 09:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:57:40.853+03	2021-05-22 09:57:40.859+03	
078f5396-6541-f1bc-a0cb-217475b0c966	2021-05-22 09:58:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:58:01.853+03	2021-05-22 09:58:01.861+03	
601e0d39-ff52-68c0-4ec7-3f138b1fc9e2	2021-05-22 09:58:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:58:21.853+03	2021-05-22 09:58:21.861+03	
6b2d9c74-d363-86b6-00b5-de8fc6f3d422	2021-05-22 09:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:58:42.853+03	2021-05-22 09:58:42.861+03	
2eacba4a-ae4b-d074-5432-b023dfe10f8f	2021-05-22 09:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:59:03.853+03	2021-05-22 09:59:03.865+03	
26758a70-e082-5582-ab5a-66d7fc1ec4a2	2021-05-22 09:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:59:23.853+03	2021-05-22 09:59:23.862+03	
98dfd1b8-efda-bce5-fc86-df3a2cc2d40d	2021-05-22 09:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 09:59:43.853+03	2021-05-22 09:59:43.867+03	
836cca81-1ead-0106-2449-0fc461fa3592	2021-05-22 10:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 10:00:00.853+03	2021-05-22 10:00:00.858+03	ERROR
3fc84236-4ac4-3cdf-167e-296b7f831962	2021-05-22 10:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:00:13.853+03	2021-05-22 10:00:13.865+03	
1850910f-2c06-3711-f627-4941a41b39ba	2021-05-22 10:00:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:00:33.853+03	2021-05-22 10:00:33.873+03	
060a56d0-4c4f-110b-0d16-2c0309482453	2021-05-22 10:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:00:53.853+03	2021-05-22 10:00:53.874+03	
c9802be9-6625-1cff-3e67-1214287f9ee1	2021-05-22 10:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:01:13.853+03	2021-05-22 10:01:13.872+03	
f674ef0b-a7bf-0e8d-2db4-f07bdcb33111	2021-05-22 10:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:01:33.853+03	2021-05-22 10:01:33.86+03	
5e3a79bd-f195-8bac-e8b4-e68efc839d2e	2021-05-22 10:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:01:54.852+03	2021-05-22 10:01:54.861+03	
e1eb48b2-4086-136d-15f1-328a55e4a2b1	2021-05-22 10:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:02:14.853+03	2021-05-22 10:02:14.859+03	
832daea8-4b45-d6ce-4dd5-d58e5a359200	2021-05-22 10:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:02:35.853+03	2021-05-22 10:02:35.861+03	
a66bb6f4-6f20-1c72-b25a-40e9699422d3	2021-05-22 10:02:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:02:56.853+03	2021-05-22 10:02:56.861+03	
2c239b47-5ae0-0586-6cdb-5de647a9b7c0	2021-05-22 10:03:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:03:16.854+03	2021-05-22 10:03:16.861+03	
c4bddb24-56b2-ee73-642e-2bb8f8f36bb3	2021-05-22 10:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:03:38.852+03	2021-05-22 10:03:38.858+03	
760fec67-5421-02e4-d556-044a98ebef42	2021-05-22 10:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:03:59.853+03	2021-05-22 10:03:59.863+03	
dbbcfdd9-2c1f-01e2-208a-4a0a1ca02ca4	2021-05-22 10:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:04:20.853+03	2021-05-22 10:04:20.865+03	
daa81a03-c99c-b05d-c5b6-1cbaf3642cbe	2021-05-22 10:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:04:40.853+03	2021-05-22 10:04:40.861+03	
9422a89f-7257-e394-7083-fa7234f177d7	2021-05-22 10:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:05:00.853+03	2021-05-22 10:05:00.871+03	
af66f51c-355b-4f22-801b-c58fc89fa530	2021-05-22 10:05:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:05:21.853+03	2021-05-22 10:05:21.859+03	
6f16a10d-5300-01d8-f116-82b8c334eeb8	2021-05-22 10:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:05:42.853+03	2021-05-22 10:05:42.859+03	
66f9a22f-2999-be6d-f3dc-aa23b802a512	2021-05-22 10:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:06:03.852+03	2021-05-22 10:06:03.859+03	
404be139-9c35-6272-7393-2f455229f9f2	2021-05-22 10:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:06:23.853+03	2021-05-22 10:06:23.86+03	
4f2aee36-7502-d9cb-b1ef-a10e03894885	2021-05-22 10:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:06:43.853+03	2021-05-22 10:06:43.861+03	
9e983ff4-6ae3-1570-bea9-bcea4a9d414c	2021-05-22 10:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:07:04.853+03	2021-05-22 10:07:04.861+03	
377a5284-3330-e516-3a7f-6b637614999f	2021-05-22 10:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:07:25.852+03	2021-05-22 10:07:25.862+03	
93d230ec-06d7-eac0-4ec6-d6c0c27c69b1	2021-05-22 10:07:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:07:46.852+03	2021-05-22 10:07:46.861+03	
dd896376-6bcf-60fc-e9c7-b0542ae01130	2021-05-22 10:08:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:08:06.852+03	2021-05-22 10:08:06.875+03	
3fce49a4-caf7-315a-f62d-651d2f243122	2021-05-22 10:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:08:26.852+03	2021-05-22 10:08:26.86+03	
7609a5ff-2982-ba68-d691-2a5b3960a04a	2021-05-22 10:08:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:08:46.853+03	2021-05-22 10:08:46.871+03	
f361499b-e556-373a-43d4-dcf1289c5f62	2021-05-22 10:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:09:07.852+03	2021-05-22 10:09:07.859+03	
ce6e1a5c-cdd6-0fb4-78e0-3aaa7126a49f	2021-05-22 10:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:09:27.853+03	2021-05-22 10:09:27.86+03	
8f712e13-e672-1db8-a96a-370ff5a1da87	2021-05-22 10:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:09:48.852+03	2021-05-22 10:09:48.858+03	
190dc536-d91f-cd23-abdb-699a100a26cd	2021-05-22 10:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 10:10:00.853+03	2021-05-22 10:10:00.858+03	ERROR
a8afe528-9e29-1d0e-90f4-6943da034937	2021-05-22 10:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:10:18.853+03	2021-05-22 10:10:18.87+03	
1f60c3bc-ad40-2dd6-e1f4-4394b88ed9d1	2021-05-22 10:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:10:38.853+03	2021-05-22 10:10:38.859+03	
e755f291-2e1e-72c9-b77c-0993fe961e9d	2021-05-22 10:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:10:58.853+03	2021-05-22 10:10:58.859+03	
4c8297e4-7c93-7fbb-7b56-3f8eba774d32	2021-05-22 10:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:11:19.853+03	2021-05-22 10:11:19.863+03	
06d906f0-6062-abef-a499-8508f76feeed	2021-05-22 10:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:11:39.853+03	2021-05-22 10:11:39.861+03	
b1ac0ba2-9d65-41a9-01e6-af3a495dadae	2021-05-22 10:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:11:59.853+03	2021-05-22 10:11:59.861+03	
7737070a-1513-6061-8527-de3253b01c7c	2021-05-22 10:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:12:20.853+03	2021-05-22 10:12:20.861+03	
6d02476a-1666-ce27-57a4-19332c36e2bb	2021-05-22 10:12:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:12:40.853+03	2021-05-22 10:12:40.859+03	
cdb8eed5-a8ce-6904-4010-7864484c9d35	2021-05-22 10:13:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:13:01.852+03	2021-05-22 10:13:01.87+03	
d317da54-341d-98f6-663f-28a68d2be634	2021-05-22 10:13:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:13:21.853+03	2021-05-22 10:13:21.861+03	
ea9e687c-e22c-33d5-0e86-84952d39fb2a	2021-05-22 10:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:13:42.853+03	2021-05-22 10:13:42.862+03	
95eb16c6-b826-b9b9-2b28-0c27a1ecdaa7	2021-05-22 10:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:14:02.853+03	2021-05-22 10:14:02.873+03	
655de716-90f7-e3d9-9de6-e02ee7706bff	2021-05-22 10:14:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:14:23.854+03	2021-05-22 10:14:23.873+03	
38f83bbb-b2de-229a-170f-834ead85c98f	2021-05-22 10:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:14:44.853+03	2021-05-22 10:14:44.872+03	
03817a76-6146-ed59-623d-6f88de909a45	2021-05-22 10:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:15:05.852+03	2021-05-22 10:15:05.867+03	
f6a4d73b-a4db-d895-4d21-22fe6176284f	2021-05-22 10:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:15:25.853+03	2021-05-22 10:15:25.871+03	
e5dd10e3-e88a-73f1-ac13-4ebeed244254	2021-05-22 10:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:15:45.853+03	2021-05-22 10:15:45.86+03	
cfe8cf7b-7f5c-5c3f-8805-7ba25f67b350	2021-05-22 10:16:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:16:06.852+03	2021-05-22 10:16:06.87+03	
b224b15d-b1ec-b2df-f998-2c85cba574e4	2021-05-22 10:16:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:16:26.854+03	2021-05-22 10:16:26.861+03	
7bc09098-e0bc-ac93-1a84-42463a8b47f7	2021-05-22 10:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:16:48.853+03	2021-05-22 10:16:48.859+03	
cae6a29d-b84b-c1c8-7391-e021ee9e86e6	2021-05-22 10:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:17:08.853+03	2021-05-22 10:17:08.859+03	
719988aa-1f5f-8e30-0349-2710f3fa9663	2021-05-22 10:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:17:28.853+03	2021-05-22 10:17:28.86+03	
bdc8ed07-73ea-64b6-1c67-8cb96feb4819	2021-05-22 10:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:17:48.853+03	2021-05-22 10:17:48.861+03	
e9c88f57-836e-0ba6-2dd0-6aacb1adbb12	2021-05-22 10:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:18:09.853+03	2021-05-22 10:18:09.859+03	
1e710a6c-1f05-50ec-ede1-33e461389bc3	2021-05-22 10:18:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:18:29.853+03	2021-05-22 10:18:29.859+03	
ee025855-e443-2a2e-c2c2-d878bed357cc	2021-05-22 10:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:18:49.853+03	2021-05-22 10:18:49.86+03	
8ff36a48-ce27-0c97-141a-24e916e4dbc4	2021-05-22 10:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:19:10.852+03	2021-05-22 10:19:10.859+03	
62146c73-1537-b8af-02fb-170caf2d91af	2021-05-22 10:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:19:30.853+03	2021-05-22 10:19:30.865+03	
af7c07ce-e6a8-74bf-cf4c-42370df9bf24	2021-05-22 10:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:19:50.853+03	2021-05-22 10:19:50.863+03	
096ef672-c45a-c9ab-bfb2-db2c59365246	2021-05-22 10:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:20:10.853+03	2021-05-22 10:20:10.862+03	
dd6008df-9bc0-4e3a-3fa3-48cade824c1b	2021-05-22 10:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:20:30.853+03	2021-05-22 10:20:30.86+03	
e4e8afae-60e9-034d-9533-5d38d0a90799	2021-05-22 10:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:20:50.853+03	2021-05-22 10:20:50.859+03	
33e2621d-19d5-b110-ecca-60a993f85edd	2021-05-22 10:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:21:10.853+03	2021-05-22 10:21:10.862+03	
cc13b344-5933-104f-2a73-c676e62c475e	2021-05-22 10:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:21:30.853+03	2021-05-22 10:21:30.862+03	
3d098655-8642-9a09-47a1-c9a2ba536ea2	2021-05-22 10:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:21:50.853+03	2021-05-22 10:21:50.861+03	
62937ba7-4426-6d3d-dde0-92cf5318177f	2021-05-22 10:22:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:22:10.853+03	2021-05-22 10:22:10.861+03	
7021aa95-7f21-7392-9f19-4ad69aa9e40e	2021-05-22 10:22:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:22:31.854+03	2021-05-22 10:22:31.864+03	
fd8b0898-751a-108c-9c2d-c44346ea0273	2021-05-22 10:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:22:52.853+03	2021-05-22 10:22:52.863+03	
89702e4b-8984-e1f2-ab48-160d6b915b8d	2021-05-22 10:23:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:23:13.853+03	2021-05-22 10:23:13.862+03	
db371b2f-29d3-3cb2-26e9-cf6372cf193a	2021-05-22 10:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:23:33.853+03	2021-05-22 10:23:33.861+03	
0e0d5ab7-6376-25b5-87fc-5428157b8467	2021-05-22 10:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:23:53.853+03	2021-05-22 10:23:53.861+03	
604e9381-98df-0c99-3249-25d001e07d84	2021-05-22 10:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:24:14.852+03	2021-05-22 10:24:14.862+03	
d4eee862-161a-febd-e2bb-2d2ded137434	2021-05-22 10:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:24:34.853+03	2021-05-22 10:24:34.86+03	
f8005635-f18d-97a7-950f-7837aa692691	2021-05-22 10:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:24:55.853+03	2021-05-22 10:24:55.861+03	
d6b67cdd-d47c-a1b7-b3ca-043a90d9f7f7	2021-05-22 10:25:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:25:16.853+03	2021-05-22 10:25:16.862+03	
e840b1b8-5a51-07fa-2f24-c74c10bc9853	2021-05-22 10:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:25:37.853+03	2021-05-22 10:25:37.862+03	
3938b116-04d3-b4a1-3acd-151ec9ac256f	2021-05-22 10:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:25:58.852+03	2021-05-22 10:25:58.859+03	
7e1dff80-532b-f5dd-847d-30e1f5d24e18	2021-05-22 10:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:26:19.853+03	2021-05-22 10:26:19.861+03	
e014ca04-4110-415c-5aa6-e73845ffd6be	2021-05-22 10:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:26:39.853+03	2021-05-22 10:26:39.859+03	
57e2e9de-28c1-1e95-3fdf-0ac91d4195ee	2021-05-22 10:26:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:26:59.853+03	2021-05-22 10:26:59.863+03	
35cf1c98-b42d-70ca-6399-2d6cdfd76f9f	2021-05-22 10:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:27:19.853+03	2021-05-22 10:27:19.859+03	
4cc44328-9ca1-0ded-f279-d0b00d78e03c	2021-05-22 10:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:06:33.853+03	2021-05-22 10:06:33.861+03	
aebd5293-7d48-df02-55cf-cc09a9a48753	2021-05-22 10:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:06:54.852+03	2021-05-22 10:06:54.859+03	
f97c11b2-3209-d547-7200-2d4a98f2a494	2021-05-22 10:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:07:14.853+03	2021-05-22 10:07:14.86+03	
14360cde-a799-aa7a-1bd3-bab9e8e118a4	2021-05-22 10:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:07:35.853+03	2021-05-22 10:07:35.859+03	
76763297-0970-5403-d5e4-78b01fa9d7da	2021-05-22 10:07:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:07:56.852+03	2021-05-22 10:07:56.859+03	
8a444ad2-b73a-3b55-2595-2bf7e8dd5315	2021-05-22 10:08:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:08:16.852+03	2021-05-22 10:08:16.859+03	
ad499a14-855a-bcbf-237b-c3f119bf265d	2021-05-22 10:08:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:08:36.853+03	2021-05-22 10:08:36.86+03	
071853c5-e80a-436e-af89-24c768002109	2021-05-22 10:08:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:08:57.852+03	2021-05-22 10:08:57.862+03	
bccfe4e3-6a9e-1ab2-1231-66c945ee8725	2021-05-22 10:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:09:17.853+03	2021-05-22 10:09:17.873+03	
7bcf25e2-ea1e-d9da-04fd-1164e6dd6e40	2021-05-22 10:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:09:38.852+03	2021-05-22 10:09:38.86+03	
0df8ab28-629e-2041-be06-52200c55ed89	2021-05-22 10:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:09:58.853+03	2021-05-22 10:09:58.859+03	
199a266f-a06b-2472-4424-25150b1c52e8	2021-05-22 10:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:10:08.853+03	2021-05-22 10:10:08.861+03	
93bece97-5339-4979-3c80-e568c06f0186	2021-05-22 10:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:10:28.853+03	2021-05-22 10:10:28.861+03	
48630d13-cb9d-7b76-9b3e-12e2120e1c1e	2021-05-22 10:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:10:48.853+03	2021-05-22 10:10:48.861+03	
62e3e9c5-d5f8-2d0b-a029-ca58dfa9458b	2021-05-22 10:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:11:09.852+03	2021-05-22 10:11:09.859+03	
c15cef4f-7ccc-8745-a1c4-ac07253a21f8	2021-05-22 10:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:11:29.853+03	2021-05-22 10:11:29.863+03	
77aecd99-4051-f695-c0c7-2ed98a9ef492	2021-05-22 10:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:11:49.853+03	2021-05-22 10:11:49.859+03	
f9bfc931-55a9-6f45-2b87-f9940cd1c8e1	2021-05-22 10:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:12:10.853+03	2021-05-22 10:12:10.86+03	
92521bf4-053c-8ee5-838c-7504309e645f	2021-05-22 10:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:12:30.853+03	2021-05-22 10:12:30.861+03	
0b4624a9-2289-7c42-e213-bd36eca9fe53	2021-05-22 10:12:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:12:50.853+03	2021-05-22 10:12:50.86+03	
6b816126-2710-1ec0-68c4-99afef739991	2021-05-22 10:13:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:13:11.852+03	2021-05-22 10:13:11.859+03	
a39d2b21-a043-ab4e-766f-e3cdd84fd67a	2021-05-22 10:13:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:13:31.853+03	2021-05-22 10:13:31.865+03	
825bd7bf-167c-6618-37e2-40770dbcf863	2021-05-22 10:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:13:52.853+03	2021-05-22 10:13:52.873+03	
de7a46b6-584c-950d-667c-aeb8e3a5711d	2021-05-22 10:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:14:13.852+03	2021-05-22 10:14:13.858+03	
143c86b7-8510-7912-45a1-a196cb58aea8	2021-05-22 10:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:14:34.853+03	2021-05-22 10:14:34.868+03	
9c069851-2f1a-2d47-db7c-df97214b16aa	2021-05-22 10:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:14:55.852+03	2021-05-22 10:14:55.871+03	
c3bdeb49-660e-9b0b-1e8a-6e7234fb7a82	2021-05-22 10:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:15:15.852+03	2021-05-22 10:15:15.859+03	
69ef8616-bc77-8571-06b1-7e3426b8a7c5	2021-05-22 10:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:15:35.853+03	2021-05-22 10:15:35.862+03	
8795d8d9-9e96-adac-81d0-f92caf92e167	2021-05-22 10:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:15:56.852+03	2021-05-22 10:15:56.859+03	
de029dc0-ccaa-2d1f-684d-ab536d1cac51	2021-05-22 10:16:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:16:16.852+03	2021-05-22 10:16:16.861+03	
86f4a16e-5549-6b22-a679-d3bd3edaa3f5	2021-05-22 10:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:16:37.853+03	2021-05-22 10:16:37.861+03	
7dc6d3f0-8537-72dc-6c69-119b2996820c	2021-05-22 10:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:16:58.853+03	2021-05-22 10:16:58.859+03	
15cf5f92-b1e2-c54e-0dfe-368c8fcb6c45	2021-05-22 10:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:17:18.853+03	2021-05-22 10:17:18.868+03	
276b6dca-97e3-3a83-2558-d0064d024b1e	2021-05-22 10:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:17:38.853+03	2021-05-22 10:17:38.869+03	
edaa1744-7397-5197-c574-908d626e5ba7	2021-05-22 10:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:17:58.853+03	2021-05-22 10:17:58.86+03	
3b308417-2173-d470-fa0d-5a31d4741c2a	2021-05-22 10:18:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:18:19.853+03	2021-05-22 10:18:19.891+03	
78924acf-b6c8-3684-b79c-89fa4b0e824d	2021-05-22 10:18:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:18:39.853+03	2021-05-22 10:18:39.86+03	
08ddc102-1aed-c517-66f8-f6075621c0ac	2021-05-22 10:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:18:59.853+03	2021-05-22 10:18:59.862+03	
43bb1a49-7aef-9045-1afd-4bf0d56a7fb7	2021-05-22 10:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:19:20.853+03	2021-05-22 10:19:20.86+03	
17c2a940-c48b-c373-c2fe-73bd48011175	2021-05-22 10:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:19:40.853+03	2021-05-22 10:19:40.86+03	
7db201a9-49be-c4af-96c1-52a8de42bae3	2021-05-22 10:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:20:00.853+03	2021-05-22 10:20:00.863+03	
9dd6b235-9113-dd5f-8299-9d51980a0c6f	2021-05-22 10:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 10:20:00.853+03	2021-05-22 10:20:00.874+03	ERROR
5f8ddd40-3063-ee66-33b7-99723a140763	2021-05-22 10:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:20:20.853+03	2021-05-22 10:20:20.861+03	
eb4d9ca5-4ce0-377d-b5fb-3b34e175f16d	2021-05-22 10:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:20:40.853+03	2021-05-22 10:20:40.87+03	
23ab7872-7270-3a3f-d85c-7ac260738bd6	2021-05-22 10:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:21:00.853+03	2021-05-22 10:21:00.862+03	
088995e3-f0ab-c70f-ce17-73fd639530b5	2021-05-22 10:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:21:20.853+03	2021-05-22 10:21:20.863+03	
031b1a04-34a3-3cee-a10b-89af8eb97eca	2021-05-22 10:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:21:40.853+03	2021-05-22 10:21:40.859+03	
e09fb789-1af3-578e-b7dd-3b4107a6e8c1	2021-05-22 10:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:22:00.853+03	2021-05-22 10:22:00.863+03	
8d135423-0e48-e4b9-bc38-c2348c6a1a55	2021-05-22 10:22:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:22:21.853+03	2021-05-22 10:22:21.865+03	
a2a6f437-0602-a1f8-b848-f04bad78465d	2021-05-22 10:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:22:42.853+03	2021-05-22 10:22:42.863+03	
22c4e3a6-b568-f7a3-617d-f36384bb97ec	2021-05-22 10:23:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:23:02.853+03	2021-05-22 10:23:02.861+03	
685aa1e6-8cc2-cdcd-39de-45ca721bb016	2021-05-22 10:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:23:23.853+03	2021-05-22 10:23:23.862+03	
0bc720be-4c30-ab7e-1b7f-1d04d3508f50	2021-05-22 10:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:23:43.853+03	2021-05-22 10:23:43.874+03	
e13cd7c9-474b-f870-8645-8c0441937acb	2021-05-22 10:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:24:03.853+03	2021-05-22 10:24:03.862+03	
55b17afd-4d72-7ddd-076d-ad899fa2d0ef	2021-05-22 10:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:24:24.853+03	2021-05-22 10:24:24.872+03	
0d93b900-7719-9cb6-016a-eb1cc2ee9ef5	2021-05-22 10:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:24:44.853+03	2021-05-22 10:24:44.869+03	
5d7c0ff5-0081-b28f-14ac-a984aef94a98	2021-05-22 10:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:25:05.853+03	2021-05-22 10:25:05.876+03	
15601c37-1a2b-c105-b95d-306971815b50	2021-05-22 10:25:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:25:26.855+03	2021-05-22 10:25:26.873+03	
2eab699d-ec79-cef2-5622-2f269e9b71c4	2021-05-22 10:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:25:47.853+03	2021-05-22 10:25:47.865+03	
fd8997ec-3734-6934-a7d4-cc7f0d8ccab5	2021-05-22 10:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:26:08.853+03	2021-05-22 10:26:08.862+03	
e15198b2-f382-9408-92a4-0766d6cd45d4	2021-05-22 10:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:26:29.853+03	2021-05-22 10:26:29.862+03	
211ca62c-6643-48b6-da45-e030c654824d	2021-05-22 10:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:26:49.853+03	2021-05-22 10:26:49.867+03	
89da833e-bf26-c8ac-6dde-d2e3667b9207	2021-05-22 10:27:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:27:09.853+03	2021-05-22 10:27:09.869+03	
1197b5e5-6e54-7e5e-5b2b-281e89481ba6	2021-05-22 10:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:27:30.853+03	2021-05-22 10:27:30.867+03	
e4c54bfe-cfa0-f578-0adc-9fc26f71a90b	2021-05-22 10:27:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:27:50.853+03	2021-05-22 10:27:50.86+03	
22327ae3-f823-032e-9e1a-449fa68f38cd	2021-05-22 10:28:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:28:10.853+03	2021-05-22 10:28:10.86+03	
ec53b808-216f-bb50-8441-8f8e70f1aa58	2021-05-22 10:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:28:30.853+03	2021-05-22 10:28:30.864+03	
e65488b8-f195-bdd8-7e84-d012543853db	2021-05-22 10:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:28:52.852+03	2021-05-22 10:28:52.86+03	
a8750fd2-4669-4d36-dcf0-813c604e5f55	2021-05-22 10:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:29:12.853+03	2021-05-22 10:29:12.864+03	
421cdbc1-959f-0b67-32d9-e0cdc35cfc15	2021-05-22 10:29:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:29:32.853+03	2021-05-22 10:29:32.867+03	
3142db61-7133-5c0f-9802-f0143858895b	2021-05-22 10:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:29:52.853+03	2021-05-22 10:29:52.868+03	
cc2f4be2-a63b-0c7c-a602-08203003594c	2021-05-22 10:30:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:30:02.853+03	2021-05-22 10:30:02.865+03	
c66f4638-73bd-72bb-fca9-5f8c26cb73ca	2021-05-22 10:30:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:30:22.853+03	2021-05-22 10:30:22.861+03	
54333327-5293-8c0f-416b-0fdbc8745ae3	2021-05-22 10:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:30:42.853+03	2021-05-22 10:30:42.862+03	
9c3fa4bc-7cef-bd03-1c67-63e173ed48e5	2021-05-22 10:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:31:02.853+03	2021-05-22 10:31:02.861+03	
c7460ed4-1737-f686-0f35-2213b1468cee	2021-05-22 10:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:31:22.853+03	2021-05-22 10:31:22.864+03	
dc825b57-5ae7-26c3-ab3a-073592c12603	2021-05-22 10:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:31:42.853+03	2021-05-22 10:31:42.863+03	
158efe65-d8f2-ec8f-3632-6d4ac254e5b2	2021-05-22 10:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:32:02.853+03	2021-05-22 10:32:02.87+03	
03cbaa68-251c-2313-fed6-10dcb35009c0	2021-05-22 10:32:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:32:22.853+03	2021-05-22 10:32:22.862+03	
fce4af7d-e9f4-88a8-c9c6-70cd37232b69	2021-05-22 10:32:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:32:42.853+03	2021-05-22 10:32:42.874+03	
3b30ba02-2e46-e1be-6421-01b6aefb51e2	2021-05-22 10:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:33:02.853+03	2021-05-22 10:33:02.861+03	
334a45b3-5f6a-5445-89f7-660edeb11c39	2021-05-22 10:33:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:33:22.853+03	2021-05-22 10:33:22.861+03	
a085c007-049e-47bf-27fe-ef70194ca3de	2021-05-22 10:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:33:42.853+03	2021-05-22 10:33:42.86+03	
18530ae5-67bd-86cf-8bcf-9028a02b2f91	2021-05-22 10:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:34:02.853+03	2021-05-22 10:34:02.864+03	
1b8c9095-e591-5292-c20c-a2293dee67d3	2021-05-22 10:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:34:22.853+03	2021-05-22 10:34:22.861+03	
6b675628-1a4a-f701-beea-c87ea046a9ab	2021-05-22 10:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:34:42.853+03	2021-05-22 10:34:42.86+03	
9948bbc7-c0e8-7ec3-c36f-33c6652eddf6	2021-05-22 10:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:35:02.853+03	2021-05-22 10:35:02.862+03	
e9d70a57-7404-5d70-6f98-efe2a8c0d616	2021-05-22 10:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:35:22.853+03	2021-05-22 10:35:22.86+03	
cf4b60af-4847-5250-1ad5-388fdcea2462	2021-05-22 10:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:35:42.853+03	2021-05-22 10:35:42.861+03	
3df8448f-f3c4-6335-5eeb-e46e2685e271	2021-05-22 10:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:36:03.853+03	2021-05-22 10:36:03.859+03	
c84a202b-9819-4d26-225c-1a69d2da51a4	2021-05-22 10:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:36:24.853+03	2021-05-22 10:36:24.861+03	
da22db80-a89c-3896-aeb7-f535d1c23988	2021-05-22 10:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:36:44.853+03	2021-05-22 10:36:44.87+03	
75586da3-f7c8-d6d9-93ba-6a6d262d9827	2021-05-22 10:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:37:04.853+03	2021-05-22 10:37:04.869+03	
6f503b31-f0ce-d237-ee9f-d4133cb69d9e	2021-05-22 10:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:37:24.853+03	2021-05-22 10:37:24.873+03	
509d07d3-8ef0-e18c-5fd3-3b1a1336f68e	2021-05-22 10:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:37:44.853+03	2021-05-22 10:37:44.862+03	
3a018edd-1775-8697-10be-083ed7078e21	2021-05-22 10:38:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:38:04.853+03	2021-05-22 10:38:04.859+03	
71583860-b594-3498-05fc-46b87c080e55	2021-05-22 10:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:38:24.853+03	2021-05-22 10:38:24.879+03	
17d1e70b-1a8d-5d86-afa9-87e210455796	2021-05-22 10:38:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:38:44.853+03	2021-05-22 10:38:44.876+03	
f6b8fd28-1f1c-a726-bf99-b0c003c15583	2021-05-22 10:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:39:05.852+03	2021-05-22 10:39:05.859+03	
d76deb21-2a28-c96f-9e09-8bbb39af2069	2021-05-22 10:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:39:25.853+03	2021-05-22 10:39:25.861+03	
b9d84c88-b934-4335-d722-e633f2302b23	2021-05-22 10:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:39:45.853+03	2021-05-22 10:39:45.862+03	
ada2d235-0a9b-de6b-216d-31500150d974	2021-05-22 10:39:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:39:56.853+03	2021-05-22 10:39:56.86+03	
19eec4f4-d692-811a-285c-6ee4e72c7ead	2021-05-22 10:40:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:40:06.853+03	2021-05-22 10:40:06.859+03	
3b1b3ce3-d41e-7b4a-4a22-5a30724ab99a	2021-05-22 10:40:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:40:27.853+03	2021-05-22 10:40:27.86+03	
204cf5a1-b543-c44c-720b-981a794235c3	2021-05-22 10:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:40:48.853+03	2021-05-22 10:40:48.866+03	
0db93bf5-ee31-228d-3c8c-7ef670edbfea	2021-05-22 10:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:41:08.853+03	2021-05-22 10:41:08.86+03	
24e5900a-83b0-3a4e-2321-d12cc2c479cc	2021-05-22 10:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:41:29.853+03	2021-05-22 10:41:29.861+03	
97583160-62c3-8c3a-efac-4665f90cbaa5	2021-05-22 10:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:41:49.853+03	2021-05-22 10:41:49.86+03	
4af23543-5e68-2fdf-2a3a-4b0afd736726	2021-05-22 10:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:42:09.853+03	2021-05-22 10:42:09.859+03	
3bb961e0-f301-aa5a-825d-759ab63d3b01	2021-05-22 10:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:42:29.853+03	2021-05-22 10:42:29.862+03	
9c1c6f1a-b18b-cd2f-7673-c839b8ed923a	2021-05-22 10:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:42:49.853+03	2021-05-22 10:42:49.862+03	
8c24725f-ac2a-66ae-8b06-5abd2587be6d	2021-05-22 10:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:43:10.853+03	2021-05-22 10:43:10.863+03	
e3f12287-8765-59bb-d0bc-dc2fd4f0aabd	2021-05-22 10:43:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:43:31.854+03	2021-05-22 10:43:31.862+03	
8bb024f5-d068-04b6-b376-f83a853a1351	2021-05-22 10:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:43:52.853+03	2021-05-22 10:43:52.86+03	
834326df-6abc-4af1-e9a6-1a3dd3d27aea	2021-05-22 10:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:44:12.853+03	2021-05-22 10:44:12.864+03	
a2bee342-cb40-9bde-6273-7a09d703bd2f	2021-05-22 10:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:44:33.852+03	2021-05-22 10:44:33.859+03	
a46b7903-eedb-2f19-9630-a507dafa98fb	2021-05-22 10:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:44:53.852+03	2021-05-22 10:44:53.86+03	
20c43472-539f-2265-b4a3-03a726e34dc6	2021-05-22 10:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:45:13.852+03	2021-05-22 10:45:13.86+03	
fb4cd2dd-2c2b-7ae2-fe74-8ff6ad225f09	2021-05-22 10:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:45:33.853+03	2021-05-22 10:45:33.86+03	
e62e3ea2-7b25-8fc3-d63c-65c9d686cdd0	2021-05-22 10:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:45:53.853+03	2021-05-22 10:45:53.861+03	
70e894c9-a4fe-dce7-89e0-fc0426fa4ab5	2021-05-22 10:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:46:13.853+03	2021-05-22 10:46:13.861+03	
a68c2200-67d6-de8b-738b-60c4018fdcd3	2021-05-22 10:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:46:34.852+03	2021-05-22 10:46:34.864+03	
8f31151c-8ecd-2df9-04c6-df5fafcb3fb1	2021-05-22 10:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:46:54.853+03	2021-05-22 10:46:54.873+03	
ad8f9e2a-95cb-d981-f6fe-17dd4ed07199	2021-05-22 10:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:47:14.853+03	2021-05-22 10:47:14.859+03	
d6a1f24c-369f-8a4e-aba6-f21fed15bd98	2021-05-22 10:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:47:34.853+03	2021-05-22 10:47:34.865+03	
fa1d66d7-c1ff-a4af-2ed4-5dd659990c18	2021-05-22 10:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:47:54.853+03	2021-05-22 10:47:54.863+03	
74615358-947c-8633-874c-9069fd8cff58	2021-05-22 10:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:27:40.853+03	2021-05-22 10:27:40.859+03	
dcc15454-9ef7-c39c-fb3e-09c4bdae5314	2021-05-22 10:28:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:28:00.853+03	2021-05-22 10:28:00.861+03	
36780703-964f-fd56-9187-9dfbd7b33295	2021-05-22 10:28:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:28:20.853+03	2021-05-22 10:28:20.862+03	
02c8f5a2-3323-5a72-dac6-e7abbc1058b3	2021-05-22 10:28:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:28:41.855+03	2021-05-22 10:28:41.863+03	
40a83fd1-12e0-a015-f77e-55824786bede	2021-05-22 10:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:29:02.853+03	2021-05-22 10:29:02.862+03	
70bdce9f-2fa7-1456-f49b-671b84180d76	2021-05-22 10:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:29:22.853+03	2021-05-22 10:29:22.872+03	
ca884cdc-6836-4794-8f7b-e85c0dbf2ca4	2021-05-22 10:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:29:42.853+03	2021-05-22 10:29:42.861+03	
dbbb0618-be80-9164-ce85-09d0859ba365	2021-05-22 10:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 10:30:00.853+03	2021-05-22 10:30:00.86+03	ERROR
e3004c27-34d5-9d40-821a-9cb546fd5264	2021-05-22 10:30:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:30:12.853+03	2021-05-22 10:30:12.861+03	
0d11a7ad-49e9-d54a-5c19-6f1186ea6307	2021-05-22 10:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:30:32.853+03	2021-05-22 10:30:32.862+03	
7642ac8e-303f-87b6-ad13-a7496ae06f0f	2021-05-22 10:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:30:52.853+03	2021-05-22 10:30:52.861+03	
e9656bfe-56be-9096-1416-c6111e76eadd	2021-05-22 10:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:31:12.853+03	2021-05-22 10:31:12.861+03	
16f9afe5-3b24-a2f6-7bc4-9c184c19c46c	2021-05-22 10:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:31:32.853+03	2021-05-22 10:31:32.861+03	
558ed5fc-6b62-05be-99f0-359fc1da6293	2021-05-22 10:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:31:52.853+03	2021-05-22 10:31:52.861+03	
753cd0dc-a559-c582-349c-17e5193ca4df	2021-05-22 10:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:32:12.853+03	2021-05-22 10:32:12.865+03	
ccc415ac-f5e4-10a8-f6c1-c8b95f232720	2021-05-22 10:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:32:32.853+03	2021-05-22 10:32:32.859+03	
17cecad2-2679-92a5-2c10-90edfd94cdeb	2021-05-22 10:32:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:32:52.853+03	2021-05-22 10:32:52.873+03	
b09c020b-3ad8-e8dd-914c-8a30b07337ff	2021-05-22 10:33:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:33:12.853+03	2021-05-22 10:33:12.863+03	
ef368127-9354-be7f-67cb-2cdf401f33ee	2021-05-22 10:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:33:32.853+03	2021-05-22 10:33:32.863+03	
92d64b79-f4e0-2dc2-20ff-331132b2c564	2021-05-22 10:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:33:52.853+03	2021-05-22 10:33:52.865+03	
6d12ce7f-c10c-84a3-4111-add491e2810b	2021-05-22 10:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:34:12.853+03	2021-05-22 10:34:12.911+03	
dbb93e12-29a7-e61e-86c2-aeb2b3f6016f	2021-05-22 10:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:34:32.853+03	2021-05-22 10:34:32.867+03	
5b2d5342-2a89-1804-20c9-7ea292d2553d	2021-05-22 10:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:34:52.853+03	2021-05-22 10:34:52.861+03	
049f1302-8bf6-5bff-228a-8191b2af70ae	2021-05-22 10:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:35:12.853+03	2021-05-22 10:35:12.908+03	
7f9e6439-283b-ef79-e589-f06bab25f65e	2021-05-22 10:35:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:35:32.853+03	2021-05-22 10:35:32.861+03	
9e75075c-01d3-2560-f0b4-b6bb9062840d	2021-05-22 10:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:35:52.853+03	2021-05-22 10:35:52.863+03	
e038399d-94a3-adc2-b5d1-ff26a24bd5b9	2021-05-22 10:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:36:13.853+03	2021-05-22 10:36:13.871+03	
ec4d2ded-1824-c3fb-1146-cbee0efe4087	2021-05-22 10:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:36:34.853+03	2021-05-22 10:36:34.862+03	
c06754b9-4edb-619b-3fb5-42b0a6989649	2021-05-22 10:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:36:54.853+03	2021-05-22 10:36:54.865+03	
86951100-4648-8f8b-ae07-46ec60bee9cc	2021-05-22 10:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:37:14.853+03	2021-05-22 10:37:14.874+03	
829d801f-36d2-e9d1-6e77-28f9d48e3d91	2021-05-22 10:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:37:34.853+03	2021-05-22 10:37:34.861+03	
f4569a17-86e4-4bec-378f-1b48dd6d8d94	2021-05-22 10:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:37:54.853+03	2021-05-22 10:37:54.86+03	
7d915e26-25bb-ef90-afca-58bf3a387c6f	2021-05-22 10:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:38:14.853+03	2021-05-22 10:38:14.86+03	
ab02f6a2-11ce-68b0-c2c2-d572fc54f23c	2021-05-22 10:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:38:34.853+03	2021-05-22 10:38:34.862+03	
85a702d4-5c18-0dad-f7a6-5eed1781a6a7	2021-05-22 10:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:38:55.852+03	2021-05-22 10:38:55.858+03	
e860ac56-6b20-6f4f-b535-b07e2649df09	2021-05-22 10:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:39:15.852+03	2021-05-22 10:39:15.859+03	
b8d8de61-9f8f-0b15-8818-d89d61794e3c	2021-05-22 10:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:39:35.853+03	2021-05-22 10:39:35.863+03	
602b98a9-9c89-618a-20e2-0081605b592d	2021-05-22 10:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 10:40:00.853+03	2021-05-22 10:40:00.858+03	ERROR
ab76b43a-b5ec-b527-542f-b011fd42816e	2021-05-22 10:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:40:16.853+03	2021-05-22 10:40:16.863+03	
1fa728a2-e697-d689-cc52-095bcbba3be9	2021-05-22 10:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:40:37.853+03	2021-05-22 10:40:37.863+03	
8cb9948c-712e-931d-1d14-102c965fd40c	2021-05-22 10:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:40:58.853+03	2021-05-22 10:40:58.863+03	
0dd785b9-09c7-be7b-4b7b-beb9c2ffc263	2021-05-22 10:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:41:19.853+03	2021-05-22 10:41:19.86+03	
f33d8b0d-6129-fdaf-9734-e3c2686921ed	2021-05-22 10:41:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:41:39.853+03	2021-05-22 10:41:39.863+03	
0bb2950b-c71a-8699-5b52-0c779dca833c	2021-05-22 10:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:41:59.853+03	2021-05-22 10:41:59.863+03	
b083d98a-b3e1-22c3-bf19-843a526f057e	2021-05-22 10:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:42:19.853+03	2021-05-22 10:42:19.862+03	
71fc5600-b3d1-d969-2e36-c4e3c2867b32	2021-05-22 10:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:42:39.853+03	2021-05-22 10:42:39.861+03	
0bb3bd25-bd59-65b5-a6f7-887b22f67622	2021-05-22 10:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:42:59.853+03	2021-05-22 10:42:59.86+03	
f04fade4-dfaf-dacb-3c16-7f3040425ab7	2021-05-22 10:43:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:43:21.852+03	2021-05-22 10:43:21.859+03	
924f80f9-dbbd-310c-1df6-4202a168b28a	2021-05-22 10:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:43:42.852+03	2021-05-22 10:43:42.859+03	
4ce85c92-41f5-a5a6-c53a-d8579d8207ac	2021-05-22 10:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:44:02.853+03	2021-05-22 10:44:02.861+03	
d1173961-189a-455b-b470-b8fa0e4347a2	2021-05-22 10:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:44:23.852+03	2021-05-22 10:44:23.86+03	
0e3767f8-6db4-1732-cd68-ea1d3bb92286	2021-05-22 10:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:44:43.852+03	2021-05-22 10:44:43.862+03	
05614e69-5fa0-07f6-5229-a984e0d8c1f5	2021-05-22 10:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:45:03.852+03	2021-05-22 10:45:03.87+03	
91af95de-8e6e-7270-24d1-cbe2afd200b0	2021-05-22 10:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:45:23.853+03	2021-05-22 10:45:23.859+03	
33bdf79f-5455-533b-c43c-ee9b053d58c6	2021-05-22 10:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:45:43.853+03	2021-05-22 10:45:43.87+03	
7e3fd763-6773-80ad-967d-ea19916e5685	2021-05-22 10:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:46:03.853+03	2021-05-22 10:46:03.872+03	
a6d350a6-87b8-01df-0008-fdc2ce797061	2021-05-22 10:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:46:24.852+03	2021-05-22 10:46:24.859+03	
65cb96c9-1bd7-bbdd-6773-98ae689b1605	2021-05-22 10:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:46:44.853+03	2021-05-22 10:46:44.872+03	
c7902bcb-d3e4-f9b2-d306-f77ab5dc06da	2021-05-22 10:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:47:04.853+03	2021-05-22 10:47:04.86+03	
37224d5d-847d-e01b-147b-3212782e191d	2021-05-22 10:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:47:24.853+03	2021-05-22 10:47:24.861+03	
562baf74-e6fd-bf1b-5579-a3396b2ad596	2021-05-22 10:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:47:44.853+03	2021-05-22 10:47:44.872+03	
4097291b-955d-f67f-3af1-a646dc6ea245	2021-05-22 10:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:48:04.853+03	2021-05-22 10:48:04.861+03	
3ac9634a-12a2-e8ee-33a3-b274af6b2590	2021-05-22 10:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:48:25.853+03	2021-05-22 10:48:25.863+03	
122e0b31-83ab-d97e-443a-8db5b7366038	2021-05-23 02:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:36:02.853+03	2021-05-23 02:36:02.86+03	
e8add67c-7658-09ad-ebc0-83d81dcae84c	2021-05-22 10:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:48:15.853+03	2021-05-22 10:48:15.869+03	
f5e1832c-a3ca-7ac9-36c5-88d501fa6f54	2021-05-22 11:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:12:35.853+03	2021-05-22 11:12:35.862+03	
85a77829-0fae-e9ec-5472-856188074fe0	2021-05-22 10:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:48:35.853+03	2021-05-22 10:48:35.865+03	
8dc38d06-1672-b21c-d00b-2af6471356d2	2021-05-22 10:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:48:55.853+03	2021-05-22 10:48:55.86+03	
9f76ed64-d8a5-43fb-977c-b5a4fcf18b3c	2021-05-22 11:12:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:12:56.853+03	2021-05-22 11:12:56.86+03	
fd1aeaef-60c2-1cf4-e54e-1ecd2d544d3e	2021-05-22 10:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:49:15.853+03	2021-05-22 10:49:15.861+03	
914305b0-2a3e-ad1e-e03f-d3d37bb174c6	2021-05-22 10:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:49:35.853+03	2021-05-22 10:49:35.864+03	
600196df-68dd-ddd3-7ce1-66dd1ad94376	2021-05-22 11:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:13:18.852+03	2021-05-22 11:13:18.859+03	
ec1bb025-dc70-2868-cbc6-38de149c5efa	2021-05-22 10:49:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:49:56.852+03	2021-05-22 10:49:56.861+03	
84673911-3cc7-41f5-8f7f-70699fa3edd0	2021-05-22 10:50:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:50:06.852+03	2021-05-22 10:50:06.86+03	
ad51f7f2-e220-ddd5-c108-d091e1b1a4d4	2021-05-22 11:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:13:38.852+03	2021-05-22 11:13:38.859+03	
61a4857b-9316-e9e6-2ebc-17fba0ba76d7	2021-05-22 11:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:13:58.853+03	2021-05-22 11:13:58.86+03	
ff035c62-22f7-4a03-2963-dbf4f62626d8	2021-05-22 11:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:14:19.853+03	2021-05-22 11:14:19.861+03	
bea1cf1a-489f-ea14-05b6-9510f09c8176	2021-05-22 11:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:14:39.853+03	2021-05-22 11:14:39.862+03	
fa094cf0-be6c-88fb-04c6-0d14c07fc2a9	2021-05-22 11:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:15:00.852+03	2021-05-22 11:15:00.859+03	
a00cd4b5-38b7-75a2-1be4-6c15e219844f	2021-05-22 11:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:15:20.853+03	2021-05-22 11:15:20.86+03	
8e3df0c2-7502-9db7-0e4e-43ec147b44e8	2021-05-22 11:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:15:40.853+03	2021-05-22 11:15:40.859+03	
a8ce42a8-6ed3-260c-80f5-218a19b8ee35	2021-05-22 11:16:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:16:01.853+03	2021-05-22 11:16:01.86+03	
067af436-1abe-c591-b924-1ddcc1a3798a	2021-05-22 11:16:21.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:16:21.853+03	2021-05-22 11:16:21.871+03	
bf7086ea-0cf7-6948-5bcc-51b0c49cd761	2021-05-22 11:16:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:16:41.853+03	2021-05-22 11:16:41.866+03	
b77a2d17-96dc-3b5a-fd24-2032bb9fa896	2021-05-22 11:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:17:02.853+03	2021-05-22 11:17:02.859+03	
d49879c3-4c7b-9cc1-211a-854379651975	2021-05-22 11:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:17:24.853+03	2021-05-22 11:17:24.859+03	
f376596e-6894-5998-625c-7b35d5db7e5a	2021-05-22 11:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:17:45.853+03	2021-05-22 11:17:45.859+03	
ac3cd22e-e7db-b8f9-728f-5461b4c34e8c	2021-05-22 11:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:18:05.853+03	2021-05-22 11:18:05.864+03	
6933cdf4-a47b-bfd4-bfde-d3518d4501ad	2021-05-22 11:18:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:18:26.852+03	2021-05-22 11:18:26.86+03	
6afc157e-91d1-948e-e245-4ee5a483eb0d	2021-05-22 11:18:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:18:46.853+03	2021-05-22 11:18:46.859+03	
67b63df4-2e29-15b8-e61a-9524d69dbafa	2021-05-22 11:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:19:08.852+03	2021-05-22 11:19:08.859+03	
d7c8428f-fc0f-1263-ea53-47a400fabc6c	2021-05-22 11:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:19:28.853+03	2021-05-22 11:19:28.861+03	
79e67285-ce53-af8e-83fa-969e6bee043e	2021-05-22 11:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:19:49.853+03	2021-05-22 11:19:49.861+03	
9367fd93-fba5-169d-f786-f56f020788e2	2021-05-22 11:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 11:20:00.853+03	2021-05-22 11:20:00.868+03	ERROR
ddb4f58d-7427-7554-4938-eb6990eac50a	2021-05-22 11:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:20:10.852+03	2021-05-22 11:20:10.859+03	
2375fa5d-4b23-393b-a401-62cde664e46e	2021-05-22 11:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:20:30.853+03	2021-05-22 11:20:30.86+03	
3ed6342e-d927-5b54-a2a0-c637b024a8c3	2021-05-22 11:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:20:50.853+03	2021-05-22 11:20:50.859+03	
1450823f-a485-b734-762c-4328c0f18d25	2021-05-22 11:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:21:10.853+03	2021-05-22 11:21:10.859+03	
eb0155b9-9303-8522-71f6-21319b37f85a	2021-05-22 11:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:21:31.853+03	2021-05-22 11:21:31.859+03	
20d2fb88-decc-5ca3-94c2-0a18337eba91	2021-05-22 11:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:21:52.853+03	2021-05-22 11:21:52.861+03	
a45eaa6c-142a-2e30-b192-68d8893bcedc	2021-05-22 11:22:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:22:13.853+03	2021-05-22 11:22:13.862+03	
9c15ef61-ccdc-732d-9587-0146dc003ed0	2021-05-22 11:22:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:22:33.853+03	2021-05-22 11:22:33.86+03	
d114fd40-fd70-a082-387c-6f039741585e	2021-05-22 11:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:22:54.852+03	2021-05-22 11:22:54.862+03	
3b34fa4d-2077-9393-4974-d81286e2973c	2021-05-22 11:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:23:14.853+03	2021-05-22 11:23:14.863+03	
a6065fa3-5dcb-a925-a0c1-dea074931742	2021-05-22 11:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:23:34.853+03	2021-05-22 11:23:34.86+03	
66eb7fef-4870-d93f-8a51-c631ed7c2839	2021-05-22 11:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:23:55.853+03	2021-05-22 11:23:55.859+03	
b0033f9d-1831-81c4-0629-7f95bd1df6b4	2021-05-22 11:24:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:24:16.852+03	2021-05-22 11:24:16.872+03	
cb527ec2-92ed-b057-5470-1aaa8b849482	2021-05-22 11:24:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:24:36.852+03	2021-05-22 11:24:36.86+03	
5ae49fbf-36e0-def2-3ff2-9be07a17ac87	2021-05-22 11:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:24:57.852+03	2021-05-22 11:24:57.86+03	
027306ab-9d53-d208-35d8-ed5aa5901d50	2021-05-22 11:25:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:25:17.853+03	2021-05-22 11:25:17.859+03	
fafc70de-9e75-d204-7d1a-66940d00a413	2021-05-22 11:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:25:38.853+03	2021-05-22 11:25:38.859+03	
23732fb2-23fb-ce24-1c4f-f94dee8ab3c1	2021-05-22 11:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:26:00.853+03	2021-05-22 11:26:00.859+03	
acb412cc-faed-1480-f106-9ab0f6c3f384	2021-05-22 11:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:26:20.853+03	2021-05-22 11:26:20.859+03	
70fc1c06-580f-cf11-903b-3728565075e7	2021-05-22 11:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:26:42.853+03	2021-05-22 11:26:42.859+03	
3503990a-7724-7d79-bd0a-ffadafffa4af	2021-05-22 11:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:27:03.853+03	2021-05-22 11:27:03.86+03	
458c0648-22a6-2bda-8166-0c0b42e0c56c	2021-05-22 11:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:27:25.852+03	2021-05-22 11:27:25.86+03	
4c2d133d-1e26-7637-a09a-0210d7085f7d	2021-05-22 11:27:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:27:46.853+03	2021-05-22 11:27:46.859+03	
be3c0cfa-7f7b-8e7b-81be-1444ede1bd8b	2021-05-22 11:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:28:07.853+03	2021-05-22 11:28:07.859+03	
d6ee5802-9e39-47a4-4551-0dd44d173ceb	2021-05-22 11:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:28:28.852+03	2021-05-22 11:28:28.86+03	
15b6a60d-0a8c-402c-c542-35c4bff4d525	2021-05-22 11:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:28:48.852+03	2021-05-22 11:28:48.862+03	
10f05bfc-c941-aa4e-01fa-703aa975c6e2	2021-05-22 11:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:29:08.852+03	2021-05-22 11:29:08.86+03	
4507b023-1737-16b1-71af-ee778821e5cd	2021-05-22 11:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:29:28.853+03	2021-05-22 11:29:28.861+03	
27ea3a3d-ddb6-0bba-03c5-6cc89279c05a	2021-05-22 11:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:29:48.853+03	2021-05-22 11:29:48.862+03	
9c197cf9-c3aa-9dc2-eddd-cb27244b2952	2021-05-22 11:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 11:30:00.852+03	2021-05-22 11:30:00.858+03	ERROR
9207f15b-aebc-f5a5-b4b4-a4357a21e13c	2021-05-22 11:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:30:19.853+03	2021-05-22 11:30:19.861+03	
6945568c-0aa8-e688-1c45-3267c6451be5	2021-05-22 11:30:39.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:30:39.859+03	2021-05-22 11:30:39.896+03	
c055e435-50ce-5d38-3b1d-91470bdf4c18	2021-05-22 11:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:31:00.853+03	2021-05-22 11:31:00.859+03	
487b20f0-acd1-d2ce-6560-242336cc4027	2021-05-22 11:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:12:45.853+03	2021-05-22 11:12:45.86+03	
2215a32f-fd9a-e872-d5a9-2c8aeba381b9	2021-05-22 10:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:48:45.853+03	2021-05-22 10:48:45.869+03	
03bcd8db-e63c-e03f-35e2-8ec24c19a854	2021-05-22 10:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:49:05.853+03	2021-05-22 10:49:05.865+03	
0d2f6d27-e7fe-4d9b-9230-c0e0662f12fb	2021-05-22 11:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:13:07.853+03	2021-05-22 11:13:07.859+03	
47cc4ff6-7126-08b5-62cd-5c97e938a6cd	2021-05-22 10:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:49:25.853+03	2021-05-22 10:49:25.863+03	
27cc3564-4b02-eb00-e7fc-983f271c819d	2021-05-22 10:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 10:49:45.853+03	2021-05-22 10:49:45.863+03	
deb34953-65c4-f93c-100f-baaa09051b1d	2021-05-22 11:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:13:28.852+03	2021-05-22 11:13:28.858+03	
23f87635-4607-1875-fa0c-71b1b34f5a77	2021-05-22 10:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 10:50:00.852+03	2021-05-22 10:50:00.86+03	ERROR
7e91a174-4daf-c177-a269-a9ae4babd2ee	2021-05-22 11:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:13:48.852+03	2021-05-22 11:13:48.859+03	
b456a9db-391c-f585-6331-c565bc736132	2021-05-22 11:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:14:09.852+03	2021-05-22 11:14:09.867+03	
b7a31b5e-a09e-588b-af6c-7a1471c3a8e3	2021-05-22 11:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:14:29.853+03	2021-05-22 11:14:29.861+03	
e7e031fd-83aa-40ed-3c90-2b252b8c913a	2021-05-22 11:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:14:50.852+03	2021-05-22 11:14:50.86+03	
c5f727e5-aa26-c7a2-126a-cde0c0852576	2021-05-22 11:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:15:10.853+03	2021-05-22 11:15:10.859+03	
0a5376aa-f46e-e2b6-e6bc-179baa50ecae	2021-05-22 11:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:15:30.853+03	2021-05-22 11:15:30.86+03	
fa5623e9-7456-1279-58ef-619f938b68ba	2021-05-22 11:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:15:50.853+03	2021-05-22 11:15:50.86+03	
8c850980-d289-16c2-f9e3-730f898d9eeb	2021-05-22 11:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:16:11.853+03	2021-05-22 11:16:11.861+03	
87efdb5c-5435-787f-f04c-4d5c3e9a3e8f	2021-05-22 11:16:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:16:31.853+03	2021-05-22 11:16:31.859+03	
e5c3c30b-1fa4-3a51-207f-752deac17d03	2021-05-22 11:16:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:16:51.854+03	2021-05-22 11:16:51.86+03	
26473a6e-f117-fd67-1049-0f0a2ceacab7	2021-05-22 11:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:17:13.853+03	2021-05-22 11:17:13.86+03	
9d3a67f2-ea26-2362-cfbc-857022b55a36	2021-05-22 11:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:17:35.852+03	2021-05-22 11:17:35.86+03	
ae2af0d9-a645-ca3b-4a58-88a418698fdb	2021-05-22 11:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:17:55.853+03	2021-05-22 11:17:55.86+03	
b2b5ea68-20ba-a31f-0d62-66ba1fbaca7b	2021-05-22 11:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:18:16.852+03	2021-05-22 11:18:16.86+03	
b5f4caa1-d2eb-03e2-adfb-b10cf364cb84	2021-05-22 11:18:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:18:36.852+03	2021-05-22 11:18:36.864+03	
d78e8daa-dcad-0cf2-2a8f-8e0154be7e04	2021-05-22 11:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:18:57.853+03	2021-05-22 11:18:57.859+03	
03878531-4f3d-4e6f-89e3-e2d1ec45e3b2	2021-05-22 11:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:19:18.853+03	2021-05-22 11:19:18.86+03	
7f8a73a0-1af8-d9ed-e41c-886036810335	2021-05-22 11:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:19:38.853+03	2021-05-22 11:19:38.86+03	
ff56357f-e033-bc0d-1ad1-92ce13b5eba9	2021-05-22 11:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:20:00.852+03	2021-05-22 11:20:00.859+03	
71e9de1f-a669-ea6b-4f01-64c6b4a2cb44	2021-05-22 11:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:20:20.853+03	2021-05-22 11:20:20.864+03	
fddc65d4-4aea-11ed-553c-2c7bf8ce9966	2021-05-22 11:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:20:40.853+03	2021-05-22 11:20:40.862+03	
d57171ba-50b7-ae5a-d5c6-10246d5f2ff5	2021-05-22 11:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:21:00.853+03	2021-05-22 11:21:00.859+03	
976f65fe-02ef-326d-d889-ae5a2ee2e839	2021-05-22 11:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:21:20.853+03	2021-05-22 11:21:20.879+03	
70d0758a-321f-52e8-52b5-bbd34b9c953a	2021-05-22 11:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:21:42.853+03	2021-05-22 11:21:42.86+03	
18e36c19-a66b-1fe6-67af-4f125434cfcd	2021-05-22 11:22:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:22:03.852+03	2021-05-22 11:22:03.86+03	
697ccf3c-e35e-9d50-de73-aa3059c76f06	2021-05-22 11:22:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:22:23.853+03	2021-05-22 11:22:23.862+03	
01c9dfff-9ccb-a392-418e-e06407b22e65	2021-05-22 11:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:22:43.853+03	2021-05-22 11:22:43.876+03	
27e41aca-215f-d514-f6ca-84f683f307ed	2021-05-22 11:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:23:04.852+03	2021-05-22 11:23:04.859+03	
4c84300d-c887-6f0d-44d7-24c6d2d22cc7	2021-05-22 11:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:23:24.853+03	2021-05-22 11:23:24.86+03	
86587711-5780-3a86-5235-043143064c03	2021-05-22 11:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:23:44.853+03	2021-05-22 11:23:44.864+03	
f51947bc-80e4-c043-a8cb-1aec87f9a1f8	2021-05-22 11:24:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:24:06.852+03	2021-05-22 11:24:06.862+03	
a7dc66ee-2f0d-64ea-1122-a6123bfcbc0f	2021-05-22 11:24:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:24:26.852+03	2021-05-22 11:24:26.863+03	
38beb6cc-2d3f-dc16-9a4d-58ef529effed	2021-05-22 11:24:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:24:46.854+03	2021-05-22 11:24:46.863+03	
b734377e-b0d6-1dfa-1424-309b3b14253a	2021-05-22 11:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:25:07.853+03	2021-05-22 11:25:07.86+03	
8a6106bd-0368-aff1-1637-4f820dc5d5ef	2021-05-22 11:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:25:28.852+03	2021-05-22 11:25:28.859+03	
63041831-2a30-ab39-bf17-55b8ad2ffd68	2021-05-22 11:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:25:49.853+03	2021-05-22 11:25:49.86+03	
49d79816-0da3-6b9b-ba53-ea93cdcbe913	2021-05-22 11:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:26:10.853+03	2021-05-22 11:26:10.862+03	
dedabcac-7ea9-77ab-abfd-b34b6dc18a7c	2021-05-22 11:26:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:26:31.854+03	2021-05-22 11:26:31.86+03	
bfbaa07d-400f-7b83-0586-fa154914d286	2021-05-22 11:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:26:53.852+03	2021-05-22 11:26:53.859+03	
bc758fbe-d150-279f-4cd6-53d8a4320616	2021-05-22 11:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:27:14.853+03	2021-05-22 11:27:14.861+03	
321f431f-132a-e17d-579a-e4440d6c1a1a	2021-05-22 11:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:27:35.853+03	2021-05-22 11:27:35.859+03	
b6d5e6c8-65d5-81f7-2185-6a842d38c56e	2021-05-22 11:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:27:57.853+03	2021-05-22 11:27:57.859+03	
fb1d1747-a90a-8daf-36bf-5b799806fedc	2021-05-22 11:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:28:17.853+03	2021-05-22 11:28:17.861+03	
66f8d30c-4f33-d476-228e-58a9982d601b	2021-05-22 11:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:28:38.852+03	2021-05-22 11:28:38.86+03	
ffc2e9d3-769e-fae7-ee09-75bc36b5f09e	2021-05-22 11:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:28:58.852+03	2021-05-22 11:28:58.862+03	
55702ea7-a5db-1ce7-5f9e-4ccf46f228e1	2021-05-22 11:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:29:18.852+03	2021-05-22 11:29:18.863+03	
8069cefe-5f4d-b6a7-fb0d-1b28c444207e	2021-05-22 11:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:29:38.853+03	2021-05-22 11:29:38.864+03	
f0c4b9d1-fcf2-fbda-0cc4-a20bfb48b551	2021-05-22 11:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:29:59.852+03	2021-05-22 11:29:59.86+03	
aa72aec4-016c-9c7e-2969-a7b5eae93558	2021-05-22 11:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:30:09.853+03	2021-05-22 11:30:09.862+03	
5b5d9131-a015-6784-248d-14ac18148775	2021-05-22 11:30:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:30:29.853+03	2021-05-22 11:30:29.861+03	
14f8f630-7d23-0e97-fbd1-e8ed0eb35440	2021-05-22 11:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:30:50.853+03	2021-05-22 11:30:50.861+03	
2f307ced-0f88-cc44-d0b2-c88972a0f258	2021-05-22 11:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:31:10.853+03	2021-05-22 11:31:10.859+03	
34dcd379-be3b-2059-ba85-69df621c5a18	2021-05-22 11:31:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:31:21.854+03	2021-05-22 11:31:21.862+03	
7301a33d-9685-853e-1a9e-54cfb761f6b1	2021-05-22 11:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:31:32.853+03	2021-05-22 11:31:32.86+03	
24592e58-be66-a557-c913-05d851611f23	2021-05-22 11:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:31:42.853+03	2021-05-22 11:31:42.875+03	
4df4a423-435c-83a7-8da3-ee5283bc2f0a	2021-05-22 11:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:31:52.853+03	2021-05-22 11:31:52.864+03	
95a1eadb-4073-986b-449a-0f455d9a010c	2021-05-22 11:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:32:12.853+03	2021-05-22 11:32:12.861+03	
10fd0d80-2934-74da-40d8-53e83356e6c2	2021-05-22 11:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:32:32.853+03	2021-05-22 11:32:32.859+03	
649f8a7f-ef08-e423-93b5-fb77218e4a91	2021-05-22 11:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:32:53.852+03	2021-05-22 11:32:53.859+03	
63f1c816-a0b9-942a-2ee6-f17e53748ecc	2021-05-22 11:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:33:13.852+03	2021-05-22 11:33:13.859+03	
1f553d4f-2962-2420-d6c5-098eaa311f69	2021-05-22 11:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:33:34.853+03	2021-05-22 11:33:34.86+03	
cace4ec0-913c-99e9-65af-c6066b0d1889	2021-05-22 11:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:33:55.853+03	2021-05-22 11:33:55.86+03	
22b95943-d161-78ce-c75c-5a342713c558	2021-05-22 11:34:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:34:16.853+03	2021-05-22 11:34:16.86+03	
c7e9ec0c-15f9-f4ee-7cd5-26e0bcfb7ab4	2021-05-22 11:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:34:37.853+03	2021-05-22 11:34:37.859+03	
078a2199-565b-ef25-8ff4-46a41dc8a083	2021-05-22 11:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:34:58.852+03	2021-05-22 11:34:58.863+03	
ce3089ad-9e32-1f14-4bb8-d8f3ac4d3c86	2021-05-22 11:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:35:19.852+03	2021-05-22 11:35:19.859+03	
d000335d-7138-c011-7378-1dcec2a731f1	2021-05-22 11:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:35:40.853+03	2021-05-22 11:35:40.859+03	
08fe3a74-5893-a03a-c11e-18cb72bab83d	2021-05-22 11:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:36:00.853+03	2021-05-22 11:36:00.859+03	
b366eb91-202b-8fa4-195c-2ce7d76b2379	2021-05-22 11:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:36:20.853+03	2021-05-22 11:36:20.859+03	
35885067-4955-c46b-93de-3b221bddba5c	2021-05-22 11:36:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:36:41.852+03	2021-05-22 11:36:41.859+03	
5f778b58-b3ed-cef3-3828-c8d8523256ca	2021-05-22 11:37:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:37:01.853+03	2021-05-22 11:37:01.861+03	
9caf2334-418f-23d2-bdfb-53af223d2437	2021-05-22 11:37:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:37:21.853+03	2021-05-22 11:37:21.863+03	
da61738e-3116-8324-daab-1eed696f1b45	2021-05-22 11:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:37:42.852+03	2021-05-22 11:37:42.858+03	
4a39bc89-247d-80b1-39b7-0bc4937afe1c	2021-05-22 11:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:38:02.852+03	2021-05-22 11:38:02.859+03	
efd60790-979e-b7f4-fac9-353afae87959	2021-05-22 11:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:38:23.853+03	2021-05-22 11:38:23.863+03	
3d628c4d-f180-a651-c09d-d2a05c039830	2021-05-22 11:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:38:45.853+03	2021-05-22 11:38:45.863+03	
750c59ac-c328-8c5d-bc18-450e602141d3	2021-05-22 11:39:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:39:06.852+03	2021-05-22 11:39:06.86+03	
a553c67c-3850-8825-7109-26392f30dbd3	2021-05-22 11:39:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:39:26.852+03	2021-05-22 11:39:26.859+03	
064f7cf5-10dc-5c9f-0a53-51d0a6c2df00	2021-05-22 11:39:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:39:46.855+03	2021-05-22 11:39:46.861+03	
087c7957-50b2-0456-acc0-9b34906d8a80	2021-05-22 11:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 11:40:00.852+03	2021-05-22 11:40:00.858+03	ERROR
f8b3abed-1b02-d1a9-84b2-239934399a7e	2021-05-22 11:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:40:17.853+03	2021-05-22 11:40:17.86+03	
fe03331a-e38d-f72c-8310-9115765b88ee	2021-05-22 11:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:40:38.852+03	2021-05-22 11:40:38.859+03	
e8c51a76-f65f-d5a5-e5e9-7cfb4aa8d87e	2021-05-22 11:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:40:59.852+03	2021-05-22 11:40:59.859+03	
6cb2db45-5d85-14b9-cb4c-d0027fd25f0f	2021-05-22 11:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:41:19.853+03	2021-05-22 11:41:19.864+03	
f3544d56-4024-4499-5739-b514fa15fc82	2021-05-22 11:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:41:39.853+03	2021-05-22 11:41:39.86+03	
0a49e04e-e418-6329-8665-e8df35255ebd	2021-05-22 11:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:42:00.853+03	2021-05-22 11:42:00.859+03	
8a91474a-17f5-a558-9e43-3c652e11eb80	2021-05-22 11:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:42:22.853+03	2021-05-22 11:42:22.859+03	
ceb231ad-5e43-533d-d639-5774ddbdaa80	2021-05-22 11:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:42:43.852+03	2021-05-22 11:42:43.873+03	
0472b792-68e7-1d0d-c586-5ec2ff13bced	2021-05-22 11:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:43:03.852+03	2021-05-22 11:43:03.861+03	
cf088db0-b739-5073-406e-92c61dcd758d	2021-05-22 11:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:43:23.852+03	2021-05-22 11:43:23.86+03	
cf83ff8a-7297-b1b0-c861-988b819aaf8a	2021-05-22 11:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:43:43.853+03	2021-05-22 11:43:43.861+03	
9b56d7ad-886d-fa3e-12a7-1517ee5dcfed	2021-05-22 11:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:44:05.853+03	2021-05-22 11:44:05.869+03	
fdf3d0df-9196-7958-beec-b59130c82ae1	2021-05-22 11:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:44:26.852+03	2021-05-22 11:44:26.86+03	
de28fc3a-6bfb-6f68-0b63-312d6ceb0960	2021-05-22 11:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:44:47.853+03	2021-05-22 11:44:47.86+03	
fa488f1c-1a15-a408-2e9e-2cfdd98a52ed	2021-05-22 11:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:45:08.853+03	2021-05-22 11:45:08.87+03	
11b55507-f267-c79e-977e-240ee3d40e16	2021-05-22 11:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:45:29.853+03	2021-05-22 11:45:29.862+03	
1a335e5e-dd5e-bbf1-fabb-9a6253735d54	2021-05-22 11:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:45:49.853+03	2021-05-22 11:45:49.862+03	
b7af2293-984f-1093-f29c-3e3f6ca8ccb2	2021-05-22 11:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:46:09.853+03	2021-05-22 11:46:09.861+03	
1deed6fd-ff62-becc-abd5-32ebb5371e1d	2021-05-22 11:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:46:29.853+03	2021-05-22 11:46:29.861+03	
14dcbdd0-4ade-e341-2a9b-557a9ac38813	2021-05-22 11:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:46:49.853+03	2021-05-22 11:46:49.861+03	
249d19e1-437e-025b-21c6-add4da6f5582	2021-05-22 11:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:47:10.852+03	2021-05-22 11:47:10.859+03	
d1415277-f936-f649-2d49-8db94c9b2a73	2021-05-22 11:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:47:30.853+03	2021-05-22 11:47:30.86+03	
2cc7b0fd-c650-b323-5bd9-bceb99084462	2021-05-22 11:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:47:50.853+03	2021-05-22 11:47:50.86+03	
70980250-0fc6-325a-bf67-1f2cef7a473b	2021-05-22 11:48:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:48:10.853+03	2021-05-22 11:48:10.862+03	
44bfaa75-8858-fe33-c21f-4edac23c576d	2021-05-22 11:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:48:30.853+03	2021-05-22 11:48:30.86+03	
e75854e5-feb0-26bc-3bd3-4134f58c0806	2021-05-22 11:48:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:48:51.854+03	2021-05-22 11:48:51.862+03	
c6609532-f72a-78b4-aaab-352440d54407	2021-05-22 11:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:49:12.853+03	2021-05-22 11:49:12.859+03	
e0593efc-9933-c217-0144-95ce5cb121b5	2021-05-22 11:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:49:32.853+03	2021-05-22 11:49:32.86+03	
bd63270f-2bc1-79a5-a24a-cd1b06b43e26	2021-05-22 11:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:49:53.852+03	2021-05-22 11:49:53.859+03	
bda7a69a-6c7c-45fd-6883-9fd0b6a27340	2021-05-22 11:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:50:03.852+03	2021-05-22 11:50:03.859+03	
9a19beb4-56c3-b331-69e7-8a1bb0ddd848	2021-05-22 11:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:50:23.853+03	2021-05-22 11:50:23.861+03	
9354bc7e-86d1-d3c5-7f45-2a5c1fa1cb50	2021-05-22 11:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:50:43.853+03	2021-05-22 11:50:43.863+03	
ecb8aec5-ccf0-ed4e-dcfa-62998875676c	2021-05-22 11:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:51:03.853+03	2021-05-22 11:51:03.866+03	
ac77bb31-7f20-8b5d-8b40-a9b3ea0cc43f	2021-05-22 11:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:51:24.853+03	2021-05-22 11:51:24.859+03	
457e4767-c4ee-8a6a-6eb5-5e9d83c6f878	2021-05-22 11:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:51:45.853+03	2021-05-22 11:51:45.871+03	
ea602dfa-cc1f-db35-39f7-c395a6065d00	2021-05-22 11:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:52:05.853+03	2021-05-22 11:52:05.859+03	
c7f7474a-780d-6822-a4dc-a67dfb5ec502	2021-05-22 11:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:52:25.853+03	2021-05-22 11:52:25.861+03	
8aff17ff-ab13-8aae-d0ed-8a035b4b8d70	2021-05-22 11:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:52:47.853+03	2021-05-22 11:52:47.859+03	
7bd198ef-d9e6-f05c-275b-1f54855cc25d	2021-05-22 11:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:32:02.853+03	2021-05-22 11:32:02.863+03	
d40ead32-b246-3a74-02cc-cb91641be8ff	2021-05-22 11:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:32:22.853+03	2021-05-22 11:32:22.862+03	
6bdebc22-3d63-1f7c-1551-833bd49fca0d	2021-05-22 11:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:32:43.852+03	2021-05-22 11:32:43.866+03	
016d3a3b-83cb-db87-c390-de9514a77267	2021-05-22 11:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:33:03.852+03	2021-05-22 11:33:03.859+03	
be98200c-95e7-7411-6296-7a60fc0a463d	2021-05-22 11:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:33:23.853+03	2021-05-22 11:33:23.862+03	
e6ec7e4a-6be7-8371-0c5e-f45a39642eae	2021-05-22 11:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:33:45.852+03	2021-05-22 11:33:45.861+03	
28bcb41e-87ec-6e12-bc8a-1f2a0c38b4ad	2021-05-22 11:34:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:34:06.852+03	2021-05-22 11:34:06.861+03	
afc1075f-10c8-5212-ce0c-3f996f4012d4	2021-05-22 11:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:34:27.852+03	2021-05-22 11:34:27.911+03	
3b0d0d22-db76-f91e-57a8-dfc023221684	2021-05-22 11:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:34:48.852+03	2021-05-22 11:34:48.859+03	
9465b8fc-c05b-a9a6-b00e-c8c01d74d75b	2021-05-22 11:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:35:08.853+03	2021-05-22 11:35:08.861+03	
e36c6bf3-2c9f-2864-5456-93d03035435e	2021-05-22 11:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:35:29.853+03	2021-05-22 11:35:29.861+03	
5c77bee3-38b8-d02a-fb18-8446a13f81a6	2021-05-22 11:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:35:50.853+03	2021-05-22 11:35:50.86+03	
c9189a20-b50d-619f-6bbd-8faca13deca1	2021-05-22 11:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:36:10.853+03	2021-05-22 11:36:10.859+03	
e321c3fc-3042-ab6f-e35a-ee5e12388760	2021-05-22 11:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:36:30.853+03	2021-05-22 11:36:30.86+03	
fa85bd77-372c-db6d-25a6-01c85ce2e188	2021-05-22 11:36:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:36:51.853+03	2021-05-22 11:36:51.859+03	
2e35c387-5af2-6f09-dba0-72340fd19029	2021-05-22 11:37:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:37:11.853+03	2021-05-22 11:37:11.869+03	
f100e9cb-b3ae-cd8b-504a-057c9c1170ae	2021-05-22 11:37:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:37:31.854+03	2021-05-22 11:37:31.863+03	
3f730a12-1e23-39a7-ef10-b8b1f44010a4	2021-05-22 11:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:37:52.852+03	2021-05-22 11:37:52.859+03	
df4d9c35-8c57-f0e4-430e-26fb2f3f9cce	2021-05-22 11:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:38:12.853+03	2021-05-22 11:38:12.859+03	
aab546cc-7ceb-ee08-6bc5-f60932a96d7d	2021-05-22 11:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:38:34.853+03	2021-05-22 11:38:34.863+03	
9ca6266f-f2ac-eed4-8cfc-a77bf940c124	2021-05-22 11:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:38:55.853+03	2021-05-22 11:38:55.859+03	
cb471f45-0991-04c2-24a2-06b6fa79a6c2	2021-05-22 11:39:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:39:16.852+03	2021-05-22 11:39:16.859+03	
4116af40-0084-1c0a-9377-be005044cdd7	2021-05-22 11:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:39:36.852+03	2021-05-22 11:39:36.859+03	
30fcf59a-9825-f18b-587f-2c87acf15d2b	2021-05-22 11:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:39:57.853+03	2021-05-22 11:39:57.86+03	
3a4c9cb1-edcd-aa25-c434-b0f0cfdde75d	2021-05-22 11:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:40:07.853+03	2021-05-22 11:40:07.871+03	
88235673-43ba-29af-b48a-0b428a632d8e	2021-05-22 11:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:40:28.852+03	2021-05-22 11:40:28.859+03	
0c44e01d-2219-ab6a-807d-f663e0800456	2021-05-22 11:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:40:48.853+03	2021-05-22 11:40:48.86+03	
7df992ce-d8c3-906f-1d1f-997118474ca6	2021-05-22 11:41:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:41:09.853+03	2021-05-22 11:41:09.874+03	
a517a66e-ce08-c254-9bef-39d358a1edc1	2021-05-22 11:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:41:29.853+03	2021-05-22 11:41:29.871+03	
ce89d107-dc2a-621b-dfc9-ccdd5cbbaf24	2021-05-22 11:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:41:49.853+03	2021-05-22 11:41:49.86+03	
f359ad61-6c0b-b626-bcd3-24ee81a0e68a	2021-05-22 11:42:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:42:11.853+03	2021-05-22 11:42:11.86+03	
407385f8-47ad-52d2-d1e4-435a544659e6	2021-05-22 11:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:42:32.853+03	2021-05-22 11:42:32.86+03	
d44a81a2-02c3-df30-a15a-28ed09137861	2021-05-22 11:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:42:53.852+03	2021-05-22 11:42:53.859+03	
dc0567a8-efb4-9539-0e0e-ef2186823b47	2021-05-22 11:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:43:13.852+03	2021-05-22 11:43:13.859+03	
15d86b0f-dadb-8b5b-839e-3dedb0a417d7	2021-05-22 11:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:43:33.852+03	2021-05-22 11:43:33.859+03	
6d6df9db-2375-2427-7714-a24f838079f7	2021-05-22 11:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:43:54.853+03	2021-05-22 11:43:54.861+03	
125cda08-7f0e-eecb-bb79-4ed0575dd506	2021-05-22 11:44:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:44:16.852+03	2021-05-22 11:44:16.86+03	
d7953b38-6ff7-a941-56c1-f5c1288af24c	2021-05-22 11:44:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:44:36.854+03	2021-05-22 11:44:36.866+03	
5d6e40db-0aa4-6d94-98b5-95d4481037a9	2021-05-22 11:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:44:57.853+03	2021-05-22 11:44:57.864+03	
39f3cfc5-f0b9-9dbf-0800-0b04ccdd24bd	2021-05-22 11:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:45:19.853+03	2021-05-22 11:45:19.866+03	
ed59eeaf-dbd7-aba0-a0b8-e01e9212bb77	2021-05-22 11:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:45:39.853+03	2021-05-22 11:45:39.86+03	
1618f3e0-3ee4-ace0-4c57-73b36cd6e28a	2021-05-22 11:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:45:59.853+03	2021-05-22 11:45:59.871+03	
b0a791d4-8fb2-b861-1917-cbee7c9f370f	2021-05-22 11:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:46:19.853+03	2021-05-22 11:46:19.859+03	
5b822d14-5031-4f20-063f-32122beedc1f	2021-05-22 11:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:46:39.853+03	2021-05-22 11:46:39.86+03	
3147702f-bc0d-abc9-28b3-eb75fbf3ec01	2021-05-22 11:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:47:00.852+03	2021-05-22 11:47:00.865+03	
933a9390-79ff-d945-c576-7751674029ab	2021-05-22 11:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:47:20.853+03	2021-05-22 11:47:20.863+03	
b83a054f-64db-2805-c17f-5cf0c8ef95d9	2021-05-22 11:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:47:40.853+03	2021-05-22 11:47:40.859+03	
e729eb3e-9297-3098-9873-b8a372ddd2e5	2021-05-22 11:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:48:00.853+03	2021-05-22 11:48:00.861+03	
6f2f0734-6f0a-5638-60fc-8d920134fc6a	2021-05-22 11:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:48:20.853+03	2021-05-22 11:48:20.862+03	
f08a5969-1b50-d561-ea62-e25e26f0c30b	2021-05-22 11:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:48:40.853+03	2021-05-22 11:48:40.859+03	
20c59cd6-2bac-f7d4-2585-9145a8b2e006	2021-05-22 11:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:49:02.853+03	2021-05-22 11:49:02.876+03	
3794b6f9-4992-62ef-8c89-9ac8f7df476c	2021-05-22 11:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:49:22.853+03	2021-05-22 11:49:22.86+03	
ecc8588d-d083-b8cd-0a0b-655c600bdbd5	2021-05-22 11:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:49:42.853+03	2021-05-22 11:49:42.862+03	
17beaaf6-55fa-9b40-3819-308d406150c8	2021-05-22 11:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 11:50:00.853+03	2021-05-22 11:50:00.857+03	ERROR
409d9b61-3cf6-e91a-3946-11e3216f74a1	2021-05-22 11:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:50:13.852+03	2021-05-22 11:50:13.859+03	
124029b9-3895-a025-f222-14612eff2b87	2021-05-22 11:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:50:33.853+03	2021-05-22 11:50:33.865+03	
fe871e5d-31d9-323d-4bae-91f9bbd151a9	2021-05-22 11:50:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:50:53.853+03	2021-05-22 11:50:53.86+03	
912b2f7b-6c77-d37e-0c78-4fedc5cb6fb5	2021-05-22 11:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:51:14.853+03	2021-05-22 11:51:14.866+03	
efe3c48d-8c87-0064-0778-ecc76cb696a4	2021-05-22 11:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:51:34.853+03	2021-05-22 11:51:34.859+03	
6a3e2123-2cd1-1b95-1721-f0131c9a2801	2021-05-22 11:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:51:55.853+03	2021-05-22 11:51:55.862+03	
51c43550-9539-af28-1571-ed2279ce2c3f	2021-05-22 11:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:52:15.853+03	2021-05-22 11:52:15.86+03	
679c67fb-82fa-e9ba-5c43-4f94a6c3c1ab	2021-05-22 11:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:52:36.854+03	2021-05-22 11:52:36.864+03	
46404988-d3c7-6675-ba12-bff7e5479a67	2021-05-22 11:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:52:58.852+03	2021-05-22 11:52:58.858+03	
884e7b92-b332-23bd-68ac-a404114fc59a	2021-05-22 11:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:53:08.853+03	2021-05-22 11:53:08.86+03	
a42cd47e-36b0-4031-90ef-85a3dc4fe52d	2021-05-22 11:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:53:28.853+03	2021-05-22 11:53:28.86+03	
f5fb77b5-1f57-f747-a178-d5d757762b71	2021-05-22 11:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:53:48.853+03	2021-05-22 11:53:48.862+03	
36b29a41-1cbe-a7ff-0db1-f1365b7cfd67	2021-05-22 11:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:54:08.853+03	2021-05-22 11:54:08.861+03	
f1dd02e8-a2c8-609f-2801-b0244d48b25e	2021-05-22 11:54:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:54:29.853+03	2021-05-22 11:54:29.862+03	
c1c8996c-3817-a175-bc84-3d9da4f4dc0c	2021-05-22 11:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:54:50.852+03	2021-05-22 11:54:50.859+03	
fa412304-bf75-2262-594b-68ec5dc859c9	2021-05-22 11:55:11.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:55:11.86+03	2021-05-22 11:55:11.869+03	
b119b4cb-33e1-0c7e-f145-79bea06bf376	2021-05-22 11:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:55:32.853+03	2021-05-22 11:55:32.86+03	
f795c544-3135-c8fd-9529-42b90dc78342	2021-05-22 11:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:55:53.853+03	2021-05-22 11:55:53.861+03	
4da2f1bc-1652-afb8-a581-bad9528b7f86	2021-05-22 11:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:56:13.853+03	2021-05-22 11:56:13.862+03	
6680a67e-f420-eed3-e195-1802c64c1801	2021-05-22 11:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:56:33.853+03	2021-05-22 11:56:33.86+03	
e57c540a-29db-8967-1f24-c257a09967d1	2021-05-22 11:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:56:54.853+03	2021-05-22 11:56:54.867+03	
511f596c-fd26-2dc3-02c1-ac68b1a55995	2021-05-22 11:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:57:14.853+03	2021-05-22 11:57:14.859+03	
4f63f3c8-dc45-618d-e17b-fab199b11a63	2021-05-22 11:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:57:34.853+03	2021-05-22 11:57:34.859+03	
874e63a2-f217-6a27-b0b5-12ce80e1abfb	2021-05-22 11:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:57:54.853+03	2021-05-22 11:57:54.872+03	
106676f6-94b1-b341-c790-81f767fec828	2021-05-22 11:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:58:14.853+03	2021-05-22 11:58:14.861+03	
ff48539b-62f1-2b2b-3e3c-9222c69a0749	2021-05-22 11:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:58:35.853+03	2021-05-22 11:58:35.872+03	
69380376-57e5-2095-259b-602965a24c25	2021-05-22 11:58:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:58:56.854+03	2021-05-22 11:58:56.861+03	
1132591d-5813-25c0-765f-92e05e19fca2	2021-05-22 11:59:16.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:59:16.862+03	2021-05-22 11:59:16.869+03	
983a7f3e-423d-e3f3-7b17-8a69b04ae4cd	2021-05-22 11:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:59:38.852+03	2021-05-22 11:59:38.863+03	
f367fe7c-8709-4d20-3ef9-8b6489cbcfa4	2021-05-22 11:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:59:58.853+03	2021-05-22 11:59:58.861+03	
c94a529a-22ba-134e-78c4-0db170c852a8	2021-05-22 12:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:00:08.853+03	2021-05-22 12:00:08.871+03	
d57f4e0f-90ad-1ffe-2092-151c2f35044d	2021-05-22 12:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:00:28.853+03	2021-05-22 12:00:28.861+03	
06b9e861-7297-1025-5378-4480dde490c2	2021-05-22 12:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:00:48.853+03	2021-05-22 12:00:48.86+03	
08980a76-a69f-ecef-41bc-16d967d409ed	2021-05-22 12:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:01:09.853+03	2021-05-22 12:01:09.859+03	
33a3bb79-19f9-8a74-c125-07ab11566c9e	2021-05-22 12:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:01:29.853+03	2021-05-22 12:01:29.86+03	
99d2fd7a-21c8-e1f7-aaa3-35bdf62c1952	2021-05-22 12:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:01:50.853+03	2021-05-22 12:01:50.859+03	
51e64c51-4406-a60f-5d2e-4c992b2a18c8	2021-05-22 12:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:02:11.852+03	2021-05-22 12:02:11.861+03	
122379b4-5d92-3acf-574f-a5c2230fffcf	2021-05-22 12:02:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:02:31.855+03	2021-05-22 12:02:31.862+03	
662692e9-b91d-5cbb-6e86-63dde6346d72	2021-05-22 12:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:02:52.853+03	2021-05-22 12:02:52.858+03	
d77d8fc6-185b-22af-3073-032d78883920	2021-05-22 12:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:03:12.853+03	2021-05-22 12:03:12.859+03	
b16803bc-6ba1-1fcb-f7de-66a47f2b80f1	2021-05-22 12:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:03:33.852+03	2021-05-22 12:03:33.869+03	
b531efd4-a77d-06d1-aaa0-e6a28805044d	2021-05-22 12:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:03:53.853+03	2021-05-22 12:03:53.862+03	
c663313a-a406-e424-d457-8f47529aaa08	2021-05-22 12:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:04:13.853+03	2021-05-22 12:04:13.861+03	
6fc5d460-bfc5-3658-10dc-b4f22ebab9be	2021-05-22 12:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:04:33.853+03	2021-05-22 12:04:33.86+03	
335d3da9-12b4-ee1e-7f26-20621de7d9a4	2021-05-22 12:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:04:53.853+03	2021-05-22 12:04:53.86+03	
ac7d73a3-da2f-4870-4c8f-af4c07162fe4	2021-05-22 12:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:05:13.853+03	2021-05-22 12:05:13.859+03	
f9c292e3-3cea-0716-92ea-132504b9b1be	2021-05-22 12:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:05:34.853+03	2021-05-22 12:05:34.86+03	
321de801-5fc1-fa23-0347-c229687134c6	2021-05-22 12:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:05:54.853+03	2021-05-22 12:05:54.859+03	
5afa90b5-fc35-20cb-b969-e253d6269589	2021-05-22 12:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:06:14.853+03	2021-05-22 12:06:14.863+03	
d7aae493-4a92-ecf0-61b4-8e614149bb6a	2021-05-22 12:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:06:35.853+03	2021-05-22 12:06:35.874+03	
aa1402f6-34e7-ad8b-b208-fdb301038caf	2021-05-22 12:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:06:56.853+03	2021-05-22 12:06:56.86+03	
f6784438-c33a-99bb-8dd2-04cfdf83d2bb	2021-05-22 12:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:07:17.853+03	2021-05-22 12:07:17.86+03	
8121f94e-5e87-ad4e-a2c2-b87c3cefe763	2021-05-22 12:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:07:37.853+03	2021-05-22 12:07:37.86+03	
34fa19c0-6229-ccec-7e4a-36e8d9d1581b	2021-05-22 12:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:07:57.853+03	2021-05-22 12:07:57.859+03	
07ca464b-b1c0-e6af-a787-7aea5c178639	2021-05-22 12:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:08:17.853+03	2021-05-22 12:08:17.864+03	
78c0f011-ea43-932a-64f6-1560be25c2b2	2021-05-22 12:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:08:38.852+03	2021-05-22 12:08:38.859+03	
e0d91b92-af52-7960-343b-5c7c824cacf2	2021-05-22 12:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:08:58.853+03	2021-05-22 12:08:58.859+03	
2461cbaa-b3b4-fe20-a318-86d978652d1d	2021-05-22 12:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:09:18.853+03	2021-05-22 12:09:18.86+03	
1ed12d35-196b-a6eb-fa90-d94e4abd36bc	2021-05-22 12:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:09:39.852+03	2021-05-22 12:09:39.86+03	
5464c6f5-5edc-9244-62fd-c59117e51ae3	2021-05-22 12:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:09:59.852+03	2021-05-22 12:09:59.86+03	
be41dbb3-e920-780d-46c9-aacfbe975c36	2021-05-22 12:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:10:09.852+03	2021-05-22 12:10:09.86+03	
0fd7cb88-4a3d-25e0-add3-6af6f621dfae	2021-05-22 12:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:10:29.853+03	2021-05-22 12:10:29.86+03	
3df142bf-3cf8-d294-8e13-e0c5992b3d5c	2021-05-22 12:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:10:50.853+03	2021-05-22 12:10:50.86+03	
71da0b44-5e68-678d-80a6-71365c3b1441	2021-05-22 12:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:11:12.853+03	2021-05-22 12:11:12.861+03	
3d35c9a3-57e6-0b1c-9301-73aeb4c9a9ff	2021-05-22 12:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:11:33.852+03	2021-05-22 12:11:33.859+03	
b21d0329-0ec6-6fb8-98a7-fb612eddec8b	2021-05-22 12:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:11:53.853+03	2021-05-22 12:11:53.859+03	
5e6629a7-f8ba-3f0f-5777-821813ec0813	2021-05-22 12:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:12:14.853+03	2021-05-22 12:12:14.864+03	
0a7b257d-9b36-3c55-9d69-d1e19778d587	2021-05-22 12:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:12:34.853+03	2021-05-22 12:12:34.87+03	
888ca606-7349-b1d0-f3d3-0b29f57d1667	2021-05-22 12:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:12:55.853+03	2021-05-22 12:12:55.859+03	
51fc92a7-d02d-c3ea-98f8-49567212212c	2021-05-22 12:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:13:17.852+03	2021-05-22 12:13:17.86+03	
da5f4ebb-e6fb-ae9a-ff9d-44c2a1fd671f	2021-05-22 12:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:13:37.853+03	2021-05-22 12:13:37.86+03	
41dc75b5-3074-fd7a-1ccd-7dcb684ab66d	2021-05-22 12:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:13:58.852+03	2021-05-22 12:13:58.862+03	
97d48b34-c987-d738-cfa7-223bcb179a83	2021-05-22 11:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:53:18.853+03	2021-05-22 11:53:18.859+03	
535e7ef3-5f03-36a0-81ee-f120b7f6d75b	2021-05-22 11:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:53:38.853+03	2021-05-22 11:53:38.86+03	
953f0279-f272-cbf7-a8d9-1db7a6e65f5a	2021-05-22 11:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:53:58.853+03	2021-05-22 11:53:59.095+03	
f92f267c-a500-8514-7c9c-2121c039ca5b	2021-05-22 11:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:54:19.853+03	2021-05-22 11:54:19.861+03	
759efa3e-2009-71a2-ed46-797cc3efb507	2021-05-22 11:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:54:40.852+03	2021-05-22 11:54:40.86+03	
6a03eed1-9c5e-604b-e90b-c884ae428617	2021-05-22 11:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:55:00.853+03	2021-05-22 11:55:00.86+03	
3682a90f-52f3-d685-b8f1-bd6df723ddae	2021-05-22 11:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:55:22.852+03	2021-05-22 11:55:22.864+03	
eeae631a-30ec-c190-5e52-4a0f0cb1efd9	2021-05-22 11:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:55:43.853+03	2021-05-22 11:55:43.86+03	
13c5f536-b2f8-1f52-ff25-5aea2726dbe4	2021-05-22 11:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:56:03.853+03	2021-05-22 11:56:03.86+03	
83a7bf3d-14e2-3e08-6189-eacc12ac02bb	2021-05-22 11:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:56:23.853+03	2021-05-22 11:56:23.863+03	
c84900c0-d4fb-ab40-9a7b-d9a391c35fe4	2021-05-22 11:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:56:43.853+03	2021-05-22 11:56:43.862+03	
00cdc9d7-eab5-2df7-ad58-e4b40a33dae0	2021-05-22 11:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:57:04.853+03	2021-05-22 11:57:04.859+03	
6beadcbe-ca8e-dc00-5e0a-8bfe351d8c65	2021-05-22 11:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:57:24.853+03	2021-05-22 11:57:24.86+03	
6102da68-911e-e082-fb7e-97672ac475e6	2021-05-22 11:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:57:44.853+03	2021-05-22 11:57:44.865+03	
629f8015-7e03-2749-ce7e-adb0718227f5	2021-05-22 11:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:58:04.853+03	2021-05-22 11:58:04.86+03	
b5ed0804-47f1-5eb9-3ed6-4c497f326eda	2021-05-22 11:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:58:24.853+03	2021-05-22 11:58:24.873+03	
0afa3e29-1390-8933-094a-cb07d34a40e2	2021-05-22 11:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:58:45.853+03	2021-05-22 11:58:45.86+03	
e4a4694d-d897-a286-d826-d94b497478d7	2021-05-22 11:59:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:59:06.854+03	2021-05-22 11:59:06.865+03	
7ae32c86-aca2-b6a1-a26f-e9a9b4dd33ab	2021-05-22 11:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:59:27.853+03	2021-05-22 11:59:27.861+03	
812000a5-9dec-f3ad-b420-50980c03a7cb	2021-05-22 11:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 11:59:48.853+03	2021-05-22 11:59:49.185+03	
aa933e2f-1b1c-14ad-936a-3210aaa3545f	2021-05-22 12:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 12:00:00.853+03	2021-05-22 12:00:00.873+03	ERROR
416f0adb-434c-b3e7-82d9-3576d9286efb	2021-05-22 12:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:00:18.853+03	2021-05-22 12:00:18.86+03	
45fced19-a714-1177-5d78-74dce1a46758	2021-05-22 12:00:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:00:38.853+03	2021-05-22 12:00:38.869+03	
515c849f-0e70-e7b8-13b9-9ea392714b92	2021-05-22 12:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:00:59.853+03	2021-05-22 12:00:59.873+03	
b4ae74fc-d4a2-7823-486b-6e402c9880d2	2021-05-22 12:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:01:19.853+03	2021-05-22 12:01:19.863+03	
144ba1f2-608a-24b8-f16f-f0a6890bb370	2021-05-22 12:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:01:40.853+03	2021-05-22 12:01:40.859+03	
9617e0a9-99c0-9c51-a178-5274418a0f25	2021-05-22 12:02:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:02:01.852+03	2021-05-22 12:02:01.86+03	
d6df3d7a-f0cb-f742-ca7a-e63f709f8c36	2021-05-22 12:02:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:02:21.852+03	2021-05-22 12:02:21.859+03	
510910c8-5cd0-3b48-e468-8e0d4c42ebac	2021-05-22 12:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:02:42.853+03	2021-05-22 12:02:42.863+03	
f3bbc390-a141-a5d8-5544-19da05d70055	2021-05-22 12:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:03:02.853+03	2021-05-22 12:03:02.86+03	
b1ac7536-f369-8f15-8741-8a08702d6013	2021-05-22 12:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:03:23.852+03	2021-05-22 12:03:23.859+03	
53a89768-2409-fb40-5b29-2dc2580d34c1	2021-05-22 12:03:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:03:43.853+03	2021-05-22 12:03:43.86+03	
5caacfff-2a6a-47fd-1e74-22902b06f3f7	2021-05-22 12:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:04:03.853+03	2021-05-22 12:04:03.859+03	
48b2f016-ca8b-2852-c8d0-4f631ea48c22	2021-05-22 12:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:04:23.853+03	2021-05-22 12:04:23.863+03	
82d089a2-c5de-781c-0b99-7a170d4cc9d4	2021-05-22 12:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:04:43.853+03	2021-05-22 12:04:43.867+03	
2d876374-cfe8-7fc9-245a-aa75d3ca2aeb	2021-05-22 12:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:05:03.853+03	2021-05-22 12:05:03.868+03	
9b428d0e-bb88-1ba1-3aef-230e972a54ab	2021-05-22 12:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:05:23.853+03	2021-05-22 12:05:23.859+03	
0b8a6b62-c890-80c3-4a0e-06d54d6cc52e	2021-05-22 12:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:05:44.853+03	2021-05-22 12:05:44.859+03	
230b10b6-0543-087e-cd86-b29e5d4732fb	2021-05-22 12:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:06:04.853+03	2021-05-22 12:06:04.869+03	
1ea7cbf4-0592-b396-6376-e92f5996fdcc	2021-05-22 12:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:06:25.853+03	2021-05-22 12:06:25.859+03	
20d6b1a4-2cd9-193f-e970-db8f5d22edb5	2021-05-22 12:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:06:45.853+03	2021-05-22 12:06:45.861+03	
f71bfb61-6098-60eb-3b0c-4c734679416f	2021-05-22 12:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:07:06.853+03	2021-05-22 12:07:06.861+03	
0ca680e9-41bb-21eb-632c-dfa47fdbca62	2021-05-22 12:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:07:27.853+03	2021-05-22 12:07:27.859+03	
4fd0e238-e22b-5958-dc1c-9f49debf0a62	2021-05-22 12:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:07:47.853+03	2021-05-22 12:07:47.867+03	
e928b8fb-c434-eae7-f276-547c731c8c98	2021-05-22 12:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:08:07.853+03	2021-05-22 12:08:07.862+03	
ff5e3eca-c86c-c71b-96d7-4a29a16227ce	2021-05-22 12:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:08:28.852+03	2021-05-22 12:08:28.859+03	
95099d77-c392-948f-05a6-1bcdd7a2c288	2021-05-22 12:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:08:48.853+03	2021-05-22 12:08:48.859+03	
6a3f273e-3c82-3746-8570-f588b64ec9e5	2021-05-22 12:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:09:08.853+03	2021-05-22 12:09:08.863+03	
fb292e32-a4f7-c91c-f200-0a1d0b06a1df	2021-05-22 12:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:09:28.853+03	2021-05-22 12:09:28.86+03	
3661e4e5-fee8-0093-bb31-84505459bcc9	2021-05-22 12:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:09:49.852+03	2021-05-22 12:09:49.86+03	
a554ff10-4778-5867-e19b-1ed7d8167bba	2021-05-22 12:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 12:10:00.852+03	2021-05-22 12:10:00.857+03	ERROR
1a3314f6-211d-ff79-199d-4476afc7edeb	2021-05-22 12:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:10:19.853+03	2021-05-22 12:10:19.859+03	
5229b4fa-8bda-ddb4-0483-0ca39b935104	2021-05-22 12:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:10:40.853+03	2021-05-22 12:10:40.861+03	
3c4f41d6-a0e9-2bff-6fb6-8a35bbc44f7d	2021-05-22 12:11:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:11:01.854+03	2021-05-22 12:11:01.861+03	
2be8a117-521e-cbd1-c3f9-551c1ff0afc3	2021-05-22 12:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:11:23.852+03	2021-05-22 12:11:23.859+03	
19736909-684e-f3df-0b0d-9f2a611bc3dc	2021-05-22 12:11:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:11:43.853+03	2021-05-22 12:11:43.873+03	
85f039b0-5410-1806-e401-aa43f5349bba	2021-05-22 12:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:12:04.852+03	2021-05-22 12:12:04.859+03	
fbc5e22d-feff-09d9-4ae4-77b5922b4688	2021-05-22 12:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:12:24.853+03	2021-05-22 12:12:24.859+03	
6afd8a72-6a1c-cede-0bc4-bebdbfc6476b	2021-05-22 12:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:12:45.853+03	2021-05-22 12:12:45.86+03	
e7cab0d6-f068-9fa5-1554-945046563dec	2021-05-22 12:13:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:13:06.853+03	2021-05-22 12:13:06.899+03	
6c4a882b-b27c-6996-adcf-5ea1dbd25ff1	2021-05-22 12:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:13:27.853+03	2021-05-22 12:13:27.876+03	
f56df2b1-15ab-832c-6400-b126f6c55e9e	2021-05-22 12:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:13:47.853+03	2021-05-22 12:13:47.87+03	
328968c1-6b01-7d07-dbfa-7682765bef35	2021-05-22 12:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:14:08.852+03	2021-05-22 12:14:08.859+03	
e209cff5-a3e2-8f20-3d8a-b67493b11562	2021-05-26 04:17:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:17:34.79+03	2021-05-26 04:17:34.796+03	
bef19ce2-8ab8-ea6f-f8fd-e500f42106a3	2021-05-22 12:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:14:18.852+03	2021-05-22 12:14:18.859+03	
13e7ef56-cbdd-0a89-a0f5-9010444968f4	2021-05-23 02:36:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:36:12.853+03	2021-05-23 02:36:12.858+03	
1ddfd365-3da8-a3ee-4cfc-657e819fdc26	2021-05-22 12:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:14:38.853+03	2021-05-22 12:14:38.861+03	
7a125580-166f-aca0-0461-0c7dfc6162c5	2021-05-22 12:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:15:00.853+03	2021-05-22 12:15:00.862+03	
6f3c5bff-463e-d545-78ba-caee669bd4d6	2021-05-23 02:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:36:32.853+03	2021-05-23 02:36:32.859+03	
f801c307-b7d0-794a-1ce4-cc323e56030f	2021-05-22 12:15:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:15:21.852+03	2021-05-22 12:15:21.863+03	
9a8e5e81-9470-959e-82d1-babc472e6be8	2021-05-22 12:15:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:15:41.853+03	2021-05-22 12:15:41.861+03	
2b01c2ff-94ab-1460-f569-c17ecf458e7c	2021-05-23 02:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:36:52.853+03	2021-05-23 02:36:52.862+03	
21c7e558-dca1-d7af-da72-32550607e25d	2021-05-22 12:16:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:16:01.853+03	2021-05-22 12:16:01.86+03	
a7ce09dc-d560-58bf-3b63-e36e1b1adb23	2021-05-22 12:16:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:16:21.854+03	2021-05-22 12:16:21.872+03	
2e8018f1-0ff1-9b4a-eabf-685bcf163ab0	2021-05-23 02:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:37:12.853+03	2021-05-23 02:37:12.865+03	
67dfa818-050c-7cca-9e6b-3a0d2d8707eb	2021-05-22 12:16:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:16:43.852+03	2021-05-22 12:16:43.859+03	
b7b99afe-7d39-4320-64f8-0b2e81e640da	2021-05-22 12:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:17:03.853+03	2021-05-22 12:17:03.86+03	
a6bf093e-f917-671d-7282-845d9cf5d35d	2021-05-23 02:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:37:33.852+03	2021-05-23 02:37:33.861+03	
8bf0db5e-cef5-93e5-ea49-9cce056eb03f	2021-05-23 02:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:37:53.852+03	2021-05-23 02:37:53.859+03	
3874dc65-937a-5bf8-984f-522a7e83ef86	2021-05-23 02:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:38:13.852+03	2021-05-23 02:38:13.86+03	
87bd521f-c234-83b6-63ca-6089ea0c8152	2021-05-23 02:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:38:33.853+03	2021-05-23 02:38:33.862+03	
62dd3510-f05d-8ce9-0818-949d23bda750	2021-05-23 02:38:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:38:53.853+03	2021-05-23 02:38:53.862+03	
c2a79264-065b-c0e7-046d-e4f653f3c0b2	2021-05-23 02:39:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:39:13.853+03	2021-05-23 02:39:13.86+03	
c0de734e-5c87-3366-5930-0877ce5dc85a	2021-05-23 02:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:39:33.853+03	2021-05-23 02:39:33.861+03	
1ca1e578-8d96-a1d9-e7f4-3493da7c163c	2021-05-23 02:39:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:39:53.853+03	2021-05-23 02:39:53.86+03	
1da45865-8f69-0704-b1c9-4edb20215b1c	2021-05-23 02:40:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:40:04.852+03	2021-05-23 02:40:04.858+03	
1a9685fe-d84d-8f60-0191-d985c724edee	2021-05-23 02:40:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:40:24.852+03	2021-05-23 02:40:24.859+03	
cb2edadf-fda6-e294-c6b0-f99f3f2a0971	2021-05-23 02:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:40:44.853+03	2021-05-23 02:40:44.86+03	
0a4f65bf-3207-a54f-703d-86da96533a5d	2021-05-23 02:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:41:04.853+03	2021-05-23 02:41:04.86+03	
784ee1b1-2b8d-5877-dd85-6d81938ac764	2021-05-23 02:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:41:25.853+03	2021-05-23 02:41:25.87+03	
e55b17ca-c331-8e28-6390-4c8273fdcdab	2021-05-23 02:41:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:41:46.852+03	2021-05-23 02:41:46.859+03	
324e98b2-0428-58c0-f23a-96898d8a1e3a	2021-05-23 02:42:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:42:06.854+03	2021-05-23 02:42:06.86+03	
f7bff644-393c-1bb6-e7f3-15d81bffc51b	2021-05-23 02:42:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:42:27.853+03	2021-05-23 02:42:27.859+03	
20a265cc-9610-a2f2-473e-d2668b0e383a	2021-05-23 02:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:42:48.853+03	2021-05-23 02:42:48.859+03	
906a0cac-8ed1-0536-98d5-9678bc6b8ed6	2021-05-23 02:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:43:09.852+03	2021-05-23 02:43:09.859+03	
ea0558fd-4593-1a0c-0ee9-9b37f0d24654	2021-05-23 02:43:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:43:29.853+03	2021-05-23 02:43:29.862+03	
0ef9f83c-8161-dae1-5f38-f68b62eea9a2	2021-05-23 02:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:43:49.853+03	2021-05-23 02:43:49.86+03	
e5f25057-1351-b1f2-930d-a9cfc3190de3	2021-05-23 02:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:44:09.853+03	2021-05-23 02:44:09.861+03	
53f80a51-d1b4-42a7-5918-15fca484aec9	2021-05-23 02:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:44:29.853+03	2021-05-23 02:44:29.859+03	
5d86664d-b096-cb04-8315-bca118453072	2021-05-23 02:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:44:49.853+03	2021-05-23 02:44:49.86+03	
73321a3d-8f60-dab8-0784-62fde1837d9b	2021-05-23 02:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:45:09.853+03	2021-05-23 02:45:10.455+03	
b4bcc869-cfed-dc4e-920e-b39bdaafbf33	2021-05-23 02:45:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:45:31.852+03	2021-05-23 02:45:31.862+03	
9ca0ab21-7804-32bb-1f0b-a63e93d820a7	2021-05-23 02:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:45:52.853+03	2021-05-23 02:45:52.86+03	
2698700a-9fee-5670-590c-1b0778e12d92	2021-05-23 02:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:46:13.853+03	2021-05-23 02:46:13.874+03	
0199cc5b-11d4-e365-756a-607a890b9571	2021-05-23 02:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:46:33.853+03	2021-05-23 02:46:33.865+03	
b375e6b3-ccc3-5a23-d5ed-0efa054e25bf	2021-05-23 02:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:46:54.853+03	2021-05-23 02:46:54.86+03	
a84282ff-0106-4d1c-22fb-d00a17574b5f	2021-05-23 02:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:47:14.853+03	2021-05-23 02:47:14.86+03	
65aeeb77-ada7-951c-6fcf-52e1e723d4cf	2021-05-23 02:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:47:34.853+03	2021-05-23 02:47:34.864+03	
28c815af-4355-7bdd-4518-95765d3277c4	2021-05-23 02:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:47:54.853+03	2021-05-23 02:47:54.86+03	
b99fccb4-ed3a-b4ef-badd-4f95255ac896	2021-05-23 02:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:48:15.852+03	2021-05-23 02:48:15.86+03	
9c311613-d0e0-98e4-87e2-fad0a81866e6	2021-05-23 02:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:48:35.852+03	2021-05-23 02:48:35.862+03	
65c93188-337c-e8c0-c37b-d9a66cbfc701	2021-05-23 02:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:48:55.853+03	2021-05-23 02:48:55.868+03	
03c0323c-ad83-5ace-0597-097618bd2ef8	2021-05-23 02:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:49:15.853+03	2021-05-23 02:49:15.876+03	
f46d7682-84bc-f6bf-60d3-ea78a8c04963	2021-05-23 02:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:49:35.853+03	2021-05-23 02:49:35.872+03	
ca4dcc8a-f15a-0e2e-0247-df15a6d4d509	2021-05-23 02:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:49:55.853+03	2021-05-23 02:49:55.86+03	
0ba3b9e2-a1bb-5dfc-0d1f-cc3de3476210	2021-05-23 02:50:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:50:06.854+03	2021-05-23 02:50:06.864+03	
fdb10150-7122-8359-b5e1-9747f0d6dac1	2021-05-23 02:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:50:28.852+03	2021-05-23 02:50:28.86+03	
e7200791-a8b2-aceb-b0df-8e4add6c0568	2021-05-23 02:50:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:50:48.853+03	2021-05-23 02:50:48.86+03	
13eab7df-27e8-9d7c-01b9-fedfa2001cab	2021-05-23 02:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:51:08.853+03	2021-05-23 02:51:08.86+03	
fdbcc52d-d682-8b05-d670-b648ad3fdf15	2021-05-23 02:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:51:28.853+03	2021-05-23 02:51:28.859+03	
75860a63-cb51-c36e-8d2d-06a14aeafca4	2021-05-23 02:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:51:49.853+03	2021-05-23 02:51:49.869+03	
837d9b96-bd70-6ad4-a08b-423dc72357e3	2021-05-23 02:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:52:10.852+03	2021-05-23 02:52:10.86+03	
273abdb8-b641-496d-370d-ceec0331d17a	2021-05-23 02:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:52:30.853+03	2021-05-23 02:52:30.899+03	
dc78f679-3ddf-caad-7738-1c1a0d342025	2021-05-23 02:52:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:52:51.855+03	2021-05-23 02:52:51.861+03	
41ff6bd7-2f5e-fb7d-340e-4f1a9fea534c	2021-05-23 02:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:53:12.853+03	2021-05-23 02:53:12.86+03	
31b8724a-daab-dbd7-777e-9ddefdbbda84	2021-05-23 02:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:53:33.853+03	2021-05-23 02:53:33.86+03	
ac55a9c6-53f9-d907-9275-f2ebab293bff	2021-05-23 02:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:53:53.853+03	2021-05-23 02:53:53.873+03	
d4b688eb-5674-a9ff-f8d1-786f74bd5565	2021-05-22 12:14:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:14:28.853+03	2021-05-22 12:14:28.862+03	
0229a339-1146-320c-a6be-888c47de6c8a	2021-05-22 12:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:14:49.853+03	2021-05-22 12:14:49.861+03	
3742010b-38a5-ab68-2afc-d8ea76b78427	2021-05-22 12:15:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:15:11.852+03	2021-05-22 12:15:11.865+03	
f69bb8c5-4fc1-183f-cdc1-10b25e7e6a00	2021-05-22 12:15:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:15:31.853+03	2021-05-22 12:15:31.859+03	
e6999c93-d725-5365-f401-2b142024fdff	2021-05-22 12:15:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:15:51.853+03	2021-05-22 12:15:51.859+03	
57a7aa46-60db-c1b4-56d9-486f673adb8e	2021-05-22 12:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:16:11.853+03	2021-05-22 12:16:11.861+03	
af2778f6-d9f1-98a8-bf38-2869959eef76	2021-05-22 12:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:16:32.853+03	2021-05-22 12:16:32.861+03	
e12f9ea6-63e2-5027-9cb9-c37f74e8c843	2021-05-22 12:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:16:53.852+03	2021-05-22 12:16:53.86+03	
928b0301-a649-677e-71e2-436c47434579	2021-05-22 12:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:17:13.853+03	2021-05-22 12:17:13.861+03	
99637d21-6353-353e-1dfc-e670d6cafcbd	2021-05-22 12:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:17:24.853+03	2021-05-22 12:17:24.862+03	
96e590a5-480e-d342-d32e-94a69ce2f96d	2021-05-22 12:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:17:35.852+03	2021-05-22 12:17:35.865+03	
47d2645a-df27-428f-8606-7859a9e014d2	2021-05-22 12:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:17:45.852+03	2021-05-22 12:17:45.869+03	
72f8014c-09da-ca20-1686-40561c01af29	2021-05-22 12:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:17:55.853+03	2021-05-22 12:17:55.859+03	
6a07e14b-28c4-e487-7a07-56bb67da630e	2021-05-22 12:18:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:18:06.853+03	2021-05-22 12:18:06.861+03	
84e40538-d067-5ca2-8c7b-7baf13e52e13	2021-05-22 12:18:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:18:16.854+03	2021-05-22 12:18:16.868+03	
68dae32d-7877-7317-28cd-2395902f82cd	2021-05-22 12:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:18:27.853+03	2021-05-22 12:18:27.862+03	
25afac3e-5377-fee6-7444-b1bf5bd06cd2	2021-05-22 12:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:18:37.853+03	2021-05-22 12:18:37.859+03	
3c5396da-ebab-50c8-4b34-9f91eadd9a91	2021-05-22 12:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:18:47.853+03	2021-05-22 12:18:47.859+03	
4786f96b-a195-30ec-5fac-b32fe13ce0c1	2021-05-22 12:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:18:57.853+03	2021-05-22 12:18:57.861+03	
eaa62002-6305-2def-deff-e4bc6f909a8e	2021-05-22 12:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:19:08.852+03	2021-05-22 12:19:08.859+03	
f340c00b-7294-8f95-2016-5db9005eeae6	2021-05-22 12:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:19:18.852+03	2021-05-22 12:19:18.859+03	
eef06185-2824-b47e-4207-88a0acbdda2b	2021-05-22 12:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:19:28.852+03	2021-05-22 12:19:28.86+03	
b0f119b1-4cea-4cdb-142d-034e0c628755	2021-05-22 12:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:19:38.852+03	2021-05-22 12:19:38.868+03	
f32131ac-35d2-8967-c738-ca56e9fe2b8e	2021-05-22 12:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:19:48.852+03	2021-05-22 12:19:48.859+03	
7aa523db-ad17-4e60-e3f8-fa8f89f78910	2021-05-22 12:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:19:58.852+03	2021-05-22 12:19:58.86+03	
d0971f43-9561-a724-4eeb-6c16bf76a058	2021-05-22 12:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 12:20:00.853+03	2021-05-22 12:20:00.857+03	ERROR
2d3f145c-bf3a-43a9-7641-ebef55fc03d3	2021-05-22 12:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:20:08.853+03	2021-05-22 12:20:08.862+03	
1b7bc6e6-7f04-e118-8428-40f043f0a430	2021-05-22 12:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:20:18.853+03	2021-05-22 12:20:18.861+03	
0fc2d1b4-d324-0087-4a20-e0c7f15bffef	2021-05-22 12:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:20:29.853+03	2021-05-22 12:20:29.861+03	
1eed7fd4-71f8-7a5b-fbf9-a6ce5e774820	2021-05-22 12:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:20:39.853+03	2021-05-22 12:20:39.859+03	
1eb3f768-d6ee-8bdd-0b35-081e531783f7	2021-05-22 12:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:20:50.852+03	2021-05-22 12:20:50.859+03	
ffa34980-4521-8f60-9fbe-cefe4b51d2af	2021-05-22 12:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:21:00.853+03	2021-05-22 12:21:00.859+03	
b9e5e32a-baf7-c951-8263-7fd98c1ba651	2021-05-22 12:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:21:10.853+03	2021-05-22 12:21:10.859+03	
dbe656e7-d84b-b784-c8ad-cec86095cf1e	2021-05-22 12:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:21:20.853+03	2021-05-22 12:21:20.86+03	
e7a70dcd-fb83-26c4-5c8e-74116fc5017d	2021-05-22 12:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:21:30.853+03	2021-05-22 12:21:30.906+03	
79f2fb98-6dc5-2ad0-d33e-a3c35c392767	2021-05-22 12:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:21:40.853+03	2021-05-22 12:21:40.866+03	
38d7912e-62a9-f01c-5294-db9b4ef9cf60	2021-05-22 12:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:21:50.853+03	2021-05-22 12:21:50.86+03	
1bf9e502-58ea-9004-da49-2b303ae918eb	2021-05-22 12:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:22:00.853+03	2021-05-22 12:22:00.861+03	
c7fc1018-d03b-0e6b-4645-0c41f592975b	2021-05-22 12:22:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:22:11.853+03	2021-05-22 12:22:11.86+03	
16a73041-c3f7-5dfb-83d3-9ea32831acd0	2021-05-22 12:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:22:22.852+03	2021-05-22 12:22:22.859+03	
62094d9e-15c3-6e1c-ecb1-bdf546759a5f	2021-05-22 12:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:22:32.853+03	2021-05-22 12:22:32.86+03	
d9082bd9-3edb-20b9-b25e-338d50a1a025	2021-05-22 12:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:22:42.853+03	2021-05-22 12:22:42.86+03	
4d11f9da-114f-0053-c082-91a9a5724bdf	2021-05-22 12:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:22:53.853+03	2021-05-22 12:22:53.86+03	
129f56c9-27f4-3861-0106-15e062c4d151	2021-05-22 12:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:23:04.852+03	2021-05-22 12:23:04.859+03	
97f3c57e-82b9-a81e-3b94-aa34a0b904cd	2021-05-22 12:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:23:14.852+03	2021-05-22 12:23:14.859+03	
a943c7e1-647b-f327-15c2-b8c3f81e2b70	2021-05-22 12:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:23:24.852+03	2021-05-22 12:23:24.859+03	
ec187640-85ea-6f84-d198-72d5cbb3cd89	2021-05-22 12:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:23:34.853+03	2021-05-22 12:23:34.861+03	
4bacf4f3-159f-0adf-2e99-44206d9570fb	2021-05-22 12:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:23:44.853+03	2021-05-22 12:23:44.869+03	
171e0119-0bfd-4004-b25a-e19caabd8701	2021-05-22 12:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:23:54.853+03	2021-05-22 12:23:54.86+03	
588df963-3e58-16fd-5c48-4f72e5c5d4c0	2021-05-22 12:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:24:04.853+03	2021-05-22 12:24:04.86+03	
2a958575-b783-141a-d155-e0977762b414	2021-05-22 12:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:24:14.853+03	2021-05-22 12:24:14.861+03	
e73f8bd7-0398-3420-7775-c3f0b8c0575b	2021-05-22 12:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:24:24.853+03	2021-05-22 12:24:24.882+03	
3b924dcd-a181-6ea4-95a0-5ae4d4769165	2021-05-22 12:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:24:35.853+03	2021-05-22 12:24:35.86+03	
9c56c61b-07d5-8280-cf0a-0d2d840dbc60	2021-05-22 12:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:24:45.853+03	2021-05-22 12:24:45.86+03	
fcc551b9-3400-9dc8-a170-19d3367c7153	2021-05-22 12:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:24:55.853+03	2021-05-22 12:24:55.862+03	
4ac70f76-c895-6fcb-2128-5123bc530b0d	2021-05-22 12:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:25:05.853+03	2021-05-22 12:25:05.862+03	
37d8c830-16a7-e2ea-7e1f-4eb2fd7c7a2c	2021-05-22 12:25:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:25:16.852+03	2021-05-22 12:25:16.859+03	
4ce615ce-2f73-a2c3-06b7-b77c6bbfdb22	2021-05-22 12:25:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:25:26.853+03	2021-05-22 12:25:26.861+03	
7aec02ce-90f5-0439-67e4-49b173c26ea8	2021-05-22 12:25:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:25:36.853+03	2021-05-22 12:25:36.86+03	
0eda5750-88e0-644c-53c3-7d4a610131d1	2021-05-22 12:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:25:46.853+03	2021-05-22 12:25:46.87+03	
5efcd86c-b54c-962f-6431-1b9f90ca465b	2021-05-22 12:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:25:56.853+03	2021-05-22 12:25:56.862+03	
268b4fa8-f078-9b8f-6156-a6379b29fb56	2021-05-22 12:26:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:26:06.854+03	2021-05-22 12:26:06.862+03	
5d45d6bb-e709-98d9-2347-3776219e2847	2021-05-22 12:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:26:17.853+03	2021-05-22 12:26:17.861+03	
cf265939-9254-2d03-5f0b-8685efacd054	2021-05-22 12:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:26:27.853+03	2021-05-22 12:26:27.861+03	
5d8b4cad-cd93-0d07-4fb9-b292f87a37e8	2021-05-22 12:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:26:47.853+03	2021-05-22 12:26:47.859+03	
a16e5c75-e40a-87bb-5a9b-0f13949704d1	2021-05-22 12:27:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:27:08.854+03	2021-05-22 12:27:08.866+03	
6d49bdda-671f-4582-9a90-7fa2a18666d0	2021-05-22 12:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:27:29.853+03	2021-05-22 12:27:29.861+03	
03db7dfb-aed0-fb62-cfcf-7f1d18e016ab	2021-05-22 12:27:50.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:27:50.858+03	2021-05-22 12:27:50.864+03	
20cef324-114e-b617-2861-efa627b85a9b	2021-05-22 12:28:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:28:11.853+03	2021-05-22 12:28:11.859+03	
10a73a71-9e89-7d35-3ff5-a9f5d7c1164a	2021-05-22 12:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:28:32.852+03	2021-05-22 12:28:32.863+03	
f7e48cd0-eef6-919d-a8c3-ba3883a51464	2021-05-22 12:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:28:53.853+03	2021-05-22 12:28:53.859+03	
1ff1ec33-e49f-23d2-732c-c9ebfb55bbf3	2021-05-22 12:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:29:14.852+03	2021-05-22 12:29:14.858+03	
be51fe36-80b1-a514-6f97-26e8ca6a66fd	2021-05-22 12:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:29:34.852+03	2021-05-22 12:29:34.86+03	
3b2ec574-eae4-a651-36ea-751a62e672b8	2021-05-22 12:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 12:30:00.852+03	2021-05-22 12:30:00.857+03	ERROR
2afe9656-fe36-c6c7-ee62-d49df3313a63	2021-05-22 12:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:30:17.852+03	2021-05-22 12:30:17.859+03	
a7bbc3d4-9e44-34ab-c9c2-de4a75bb7af8	2021-05-22 12:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:30:37.853+03	2021-05-22 12:30:37.861+03	
af8af962-e152-9484-b9bd-c5c56c07d8a6	2021-05-22 12:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:30:58.852+03	2021-05-22 12:30:58.871+03	
5ec9b519-47ef-944b-b2b8-3d7b43b01387	2021-05-22 12:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:31:18.853+03	2021-05-22 12:31:18.859+03	
59ea1945-63a3-0539-7157-f593422900bb	2021-05-22 12:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:31:38.853+03	2021-05-22 12:31:38.859+03	
35346a96-f9b9-6b42-4f09-c00dbe70e48a	2021-05-22 12:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:31:59.852+03	2021-05-22 12:31:59.861+03	
0974aa8e-0103-2f45-d0e4-b4bd3cd2b55d	2021-05-22 12:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:32:20.853+03	2021-05-22 12:32:20.86+03	
bc9f36b0-66cd-316e-1a0b-95ff7d5935e1	2021-05-22 12:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:32:40.853+03	2021-05-22 12:32:40.862+03	
16f8f521-14da-3beb-1ecd-fb2a84744722	2021-05-22 12:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:33:00.853+03	2021-05-22 12:33:00.866+03	
6e7730b5-1158-f6e0-78f3-1389e0b87efd	2021-05-22 12:33:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:33:21.852+03	2021-05-22 12:33:21.862+03	
62218b4a-5304-008e-0bf1-1915c35a9e72	2021-05-22 12:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:33:42.852+03	2021-05-22 12:33:42.858+03	
0021185e-e7a6-5d16-7b07-e68200a44207	2021-05-22 12:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:34:02.853+03	2021-05-22 12:34:02.866+03	
ff95d465-1659-3e36-dfb6-3e2d79bee2d8	2021-05-22 12:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:34:24.853+03	2021-05-22 12:34:24.86+03	
efd8b2b7-acac-7816-1d03-da249bb5c520	2021-05-22 12:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:34:45.852+03	2021-05-22 12:34:45.858+03	
d57f2fba-5d24-4dd7-eb32-4f935d90d06b	2021-05-22 12:35:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:35:06.852+03	2021-05-22 12:35:06.862+03	
77b7b504-cb6d-4c3d-ed82-f563ecaf5708	2021-05-22 12:35:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:35:26.853+03	2021-05-22 12:35:26.861+03	
d0898458-0aa3-c549-1ebb-6f43095c5e40	2021-05-22 12:35:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:35:46.854+03	2021-05-22 12:35:46.861+03	
d5690c7d-e5c7-d121-084e-67beec0ffe84	2021-05-22 12:36:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:36:08.853+03	2021-05-22 12:36:08.859+03	
e775b521-1dcf-5816-467b-9e4fa27a6b25	2021-05-22 12:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:36:29.853+03	2021-05-22 12:36:29.859+03	
465e6433-8655-8bd8-0890-552fdba7bb81	2021-05-22 12:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:36:49.853+03	2021-05-22 12:36:49.861+03	
05efbf80-56c8-7955-b362-50f691b96853	2021-05-22 12:37:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:37:11.854+03	2021-05-22 12:37:11.868+03	
82a5225c-6fab-5dac-763b-32e8a1102526	2021-05-22 12:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:37:33.853+03	2021-05-22 12:37:33.86+03	
129ea527-c92f-af7c-8ca2-067ecc46fd61	2021-05-22 12:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:37:53.853+03	2021-05-22 12:37:53.86+03	
5e830c70-a0fd-b1f0-b172-2b932a1e14a0	2021-05-22 12:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:38:14.852+03	2021-05-22 12:38:14.862+03	
e34c7504-23ff-77a1-a81d-83050e71f92d	2021-05-22 12:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:38:34.853+03	2021-05-22 12:38:34.861+03	
74c15dd3-18a8-061f-9470-42e9cfe931a3	2021-05-22 12:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:38:55.853+03	2021-05-22 12:38:55.86+03	
63674d39-184f-96ef-6767-1f051b49e176	2021-05-22 12:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:39:15.853+03	2021-05-22 12:39:15.86+03	
38f73ec4-1520-eecc-254b-7bf15554a927	2021-05-22 12:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:39:35.853+03	2021-05-22 12:39:35.862+03	
09faa187-2ed4-be44-425c-13111a301c62	2021-05-22 12:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:39:55.853+03	2021-05-22 12:39:55.86+03	
b4a879ff-6b0e-9640-8ce4-04dd0ee54fac	2021-05-22 12:40:06.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:40:06.852+03	2021-05-22 12:40:06.869+03	
f6de03b0-9f38-ed40-96c1-6d33f51c249b	2021-05-22 12:40:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:40:26.854+03	2021-05-22 12:40:26.861+03	
4663f1b1-0ccd-9d49-79ef-4e573324c1e7	2021-05-22 12:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:40:47.853+03	2021-05-22 12:40:47.86+03	
2d3bb86e-ad01-d069-5120-109e306f4327	2021-05-22 12:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:41:07.853+03	2021-05-22 12:41:07.86+03	
cc146fb4-f336-094c-6d91-72d88f65d420	2021-05-22 12:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:41:27.853+03	2021-05-22 12:41:27.874+03	
6bbeb9f7-1b01-66ab-7500-d24198b29a92	2021-05-22 12:41:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:41:47.853+03	2021-05-22 12:41:47.867+03	
bbfeaa34-4758-064e-236f-d45f48c7a52f	2021-05-22 12:42:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:42:07.853+03	2021-05-22 12:42:07.869+03	
11512b5e-d5a3-9522-ffde-5e4e6677ffcb	2021-05-22 12:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:42:28.853+03	2021-05-22 12:42:28.862+03	
c67d6179-0e3d-9800-e57e-6e1fdb2c9f2f	2021-05-22 12:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:42:49.853+03	2021-05-22 12:42:49.862+03	
03ac3076-7ad5-cfea-0ad9-9caead8706aa	2021-05-22 12:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:43:10.852+03	2021-05-22 12:43:10.86+03	
9efbd078-d57f-48fe-b571-806db517819f	2021-05-22 12:43:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:43:31.854+03	2021-05-22 12:43:31.861+03	
6de52c05-4b94-04c4-34e6-f4d2e97dca4b	2021-05-22 12:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:43:52.853+03	2021-05-22 12:43:52.86+03	
14570df6-eb9c-c3b3-b395-ad8b28170a64	2021-05-22 12:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:44:13.852+03	2021-05-22 12:44:13.859+03	
e8c144f6-37af-17a7-c7fc-5ad6fa3a1577	2021-05-22 12:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:44:33.853+03	2021-05-22 12:44:33.859+03	
2b7edf3d-32dc-68c2-fef2-50351e52a453	2021-05-22 12:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:44:54.852+03	2021-05-22 12:44:54.859+03	
a3321592-178d-62ac-efc1-93f2fd635002	2021-05-22 12:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:45:14.853+03	2021-05-22 12:45:14.86+03	
57a36457-9794-95ff-b7d2-97d457067c94	2021-05-22 12:45:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:45:36.854+03	2021-05-22 12:45:36.86+03	
818ce1db-ff2e-7bcb-1341-ccc6b148b352	2021-05-22 12:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:45:57.853+03	2021-05-22 12:45:57.86+03	
aaa47c79-ead3-229e-69c7-bb99791c5d91	2021-05-22 12:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:46:17.853+03	2021-05-22 12:46:17.86+03	
e103d691-51cb-8548-1a5c-b40fa120289b	2021-05-22 12:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:46:37.853+03	2021-05-22 12:46:37.859+03	
ab141fa3-6726-1339-672b-96667fa9b0f5	2021-05-22 12:46:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:46:57.853+03	2021-05-22 12:46:57.861+03	
a0c0df1b-719e-a654-ada3-9b06905b80ec	2021-05-22 12:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:47:18.853+03	2021-05-22 12:47:18.86+03	
38f6b3c7-4de4-5633-77de-a1aacb3c825d	2021-05-22 12:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:47:38.853+03	2021-05-22 12:47:38.861+03	
50c0faca-3f71-c769-a0bf-af7f6553822c	2021-05-22 12:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:26:37.853+03	2021-05-22 12:26:37.862+03	
f4c3328b-7832-246c-cc4c-ffc4c02086c5	2021-05-22 12:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:26:57.853+03	2021-05-22 12:26:57.859+03	
921a94ae-bda0-cf76-fbdd-1e54bc175798	2021-05-22 12:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:27:19.853+03	2021-05-22 12:27:19.859+03	
ec98f7e3-4921-f68b-719b-43258a255ae8	2021-05-22 12:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:27:40.853+03	2021-05-22 12:27:40.862+03	
14822a6b-cc9e-731a-9362-f9485ea03a69	2021-05-22 12:28:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:28:01.853+03	2021-05-22 12:28:01.895+03	
d42e5e58-66c8-9235-8239-ef330f9bdfe1	2021-05-22 12:28:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:28:21.854+03	2021-05-22 12:28:21.863+03	
cd9c0d8e-0c7f-d30c-8d51-5bbe5e35d94b	2021-05-22 12:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:28:42.853+03	2021-05-22 12:28:42.865+03	
90165993-7464-c278-37a5-5fc1439ff32f	2021-05-22 12:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:29:03.853+03	2021-05-22 12:29:03.86+03	
5131a5c3-f36f-a565-5b17-936e254fdacf	2021-05-22 12:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:29:24.852+03	2021-05-22 12:29:24.866+03	
a493f214-b544-3169-7dc2-92912cd003d6	2021-05-22 12:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:29:44.853+03	2021-05-22 12:29:44.861+03	
7b43893f-69be-0323-9570-1126845bfb12	2021-05-22 12:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:29:55.853+03	2021-05-22 12:29:55.859+03	
58268295-34de-22f7-bbd2-35fd8108ca1f	2021-05-22 12:30:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:30:06.853+03	2021-05-22 12:30:06.86+03	
41a68ea0-0835-ecee-2e18-ab979e4f4c38	2021-05-22 12:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:30:27.852+03	2021-05-22 12:30:27.859+03	
2aee6ce0-89f6-5def-a8c9-628a450d0ce6	2021-05-22 12:30:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:30:48.852+03	2021-05-22 12:30:48.86+03	
26dc8e7d-8cbe-a17d-12a8-19d5068ed30a	2021-05-22 12:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:31:08.853+03	2021-05-22 12:31:08.86+03	
41c9f18c-c2bb-aba0-e05b-d0d295086a78	2021-05-22 12:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:31:28.853+03	2021-05-22 12:31:28.862+03	
d4727b9f-eecd-4726-1de9-fb848964786e	2021-05-22 12:31:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:31:48.853+03	2021-05-22 12:31:48.86+03	
7d31a4a8-1870-c342-14b0-e28b5458cfbb	2021-05-22 12:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:32:09.853+03	2021-05-22 12:32:09.859+03	
90c980aa-22d4-fdd2-d521-3569c552fd5a	2021-05-22 12:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:32:30.853+03	2021-05-22 12:32:30.862+03	
eb941117-be3f-cde5-5bc9-ce41d33167e6	2021-05-22 12:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:32:50.853+03	2021-05-22 12:32:50.859+03	
a4bf17e6-74ce-144e-bef8-2e02e39e898e	2021-05-22 12:33:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:33:11.852+03	2021-05-22 12:33:11.859+03	
34476a2b-9f47-c08e-fc3e-d1b4fa78a417	2021-05-22 12:33:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:33:31.854+03	2021-05-22 12:33:31.863+03	
22d167c6-bcb8-1d2a-9131-b09c4d28e937	2021-05-22 12:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:33:52.852+03	2021-05-22 12:33:52.861+03	
631a11a7-638b-c131-2e00-ad5470372967	2021-05-22 12:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:34:13.853+03	2021-05-22 12:34:13.86+03	
a1d4d07e-c171-d823-8b53-8a2df9686b33	2021-05-22 12:34:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:34:34.853+03	2021-05-22 12:34:34.86+03	
40c7010f-09a9-47f5-98a7-38d091b66b63	2021-05-22 12:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:34:55.853+03	2021-05-22 12:34:55.859+03	
57f7d9d1-f01d-fa80-e404-3157ba8a3893	2021-05-22 12:35:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:35:16.852+03	2021-05-22 12:35:16.867+03	
ea7d509c-c040-8b59-1b7f-5abefea14372	2021-05-22 12:35:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:35:36.853+03	2021-05-22 12:35:36.86+03	
09aeb99d-2af1-da30-94f4-3bcdba24e773	2021-05-22 12:35:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:35:57.853+03	2021-05-22 12:35:57.859+03	
4aaf03ed-d66c-cfaa-61f0-1ff3a8a63515	2021-05-22 12:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:36:19.852+03	2021-05-22 12:36:19.863+03	
a0ea542b-cacb-0960-cc25-f8d90a9d68a0	2021-05-22 12:36:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:36:39.853+03	2021-05-22 12:36:40.08+03	
a704023f-c6bc-02a1-e7f2-fa78787190e1	2021-05-22 12:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:37:00.853+03	2021-05-22 12:37:00.86+03	
aa31a244-e987-0401-cd58-44e575f8a26d	2021-05-22 12:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:37:22.853+03	2021-05-22 12:37:22.859+03	
011bc5f5-eca5-cfd4-833a-66500b2ea354	2021-05-22 12:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:37:43.853+03	2021-05-22 12:37:43.859+03	
0fc7d3a3-d25a-ac9d-c199-c8d855a0264d	2021-05-22 12:38:03.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:38:03.861+03	2021-05-22 12:38:03.868+03	
9e1eb773-065b-cf3e-281d-2bbcbb809a54	2021-05-22 12:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:38:24.853+03	2021-05-22 12:38:24.859+03	
dcad0275-dc4e-fb94-b5f2-872169cd26f8	2021-05-22 12:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:38:45.852+03	2021-05-22 12:38:45.858+03	
92cfbf6c-121b-88b4-d49c-9532c9aaf2b0	2021-05-22 12:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:39:05.853+03	2021-05-22 12:39:05.86+03	
41fc5332-11a5-cc5e-74a5-0b53bc5cdae5	2021-05-22 12:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:39:25.853+03	2021-05-22 12:39:25.874+03	
58421c96-acc8-044b-883b-94e6724dce61	2021-05-22 12:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:39:45.853+03	2021-05-22 12:39:45.859+03	
41fa6d89-609d-e2a7-5799-83d0d43c94f9	2021-05-22 12:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 12:40:00.853+03	2021-05-22 12:40:00.857+03	ERROR
c73c03a2-19cf-f21c-15a0-790a82cf0d49	2021-05-22 12:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:40:16.852+03	2021-05-22 12:40:16.859+03	
011e9cee-8ba2-e0f2-5c80-f03614934e09	2021-05-22 12:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:40:37.852+03	2021-05-22 12:40:37.862+03	
10fb48f4-e27e-5b4d-765e-46299ab52f66	2021-05-22 12:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:40:57.853+03	2021-05-22 12:40:57.873+03	
96456ac4-1ceb-887b-9e7d-b70575d8d37a	2021-05-22 12:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:41:17.853+03	2021-05-22 12:41:17.867+03	
2664ba7c-10bd-bc6b-996b-c9e91103185d	2021-05-22 12:41:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:41:37.853+03	2021-05-22 12:41:37.86+03	
ca3dbdb2-c051-99d9-231e-6bf00a289412	2021-05-22 12:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:41:57.853+03	2021-05-22 12:41:57.861+03	
075214f9-b752-96b2-79b9-a34c8e97ef56	2021-05-22 12:42:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:42:17.853+03	2021-05-22 12:42:17.871+03	
5ae24614-5f61-61db-cf58-5ad3bec16b78	2021-05-22 12:42:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:42:39.853+03	2021-05-22 12:42:39.872+03	
9a3162dd-0ddd-9562-e4f0-91d324bf9ca5	2021-05-22 12:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:42:59.853+03	2021-05-22 12:42:59.859+03	
7cbc2e80-09dd-a7ad-90c1-46e8be1b6b87	2021-05-22 12:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:43:20.853+03	2021-05-22 12:43:20.864+03	
9f17d13b-30f9-79cb-b3fc-a1ae3a7a6e4c	2021-05-22 12:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:43:42.853+03	2021-05-22 12:43:42.861+03	
7254eee6-f9d1-eeba-a058-fdc513360d0c	2021-05-22 12:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:44:03.852+03	2021-05-22 12:44:03.86+03	
6f1f4ebd-0e60-4cd5-28d9-6d6659ceb15a	2021-05-22 12:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:44:23.852+03	2021-05-22 12:44:23.859+03	
59cfc8e8-6e8e-4b82-5d38-aa3d2132b2e9	2021-05-22 12:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:44:43.853+03	2021-05-22 12:44:43.859+03	
55e9cce7-6a99-a312-0786-a8029a2a5a7c	2021-05-22 12:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:45:04.853+03	2021-05-22 12:45:04.86+03	
4dec2444-779e-d963-12d2-efe57ee7e6eb	2021-05-22 12:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:45:25.853+03	2021-05-22 12:45:25.861+03	
a2cf5af0-a550-e523-7a1f-7450d54f7759	2021-05-22 12:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:45:47.853+03	2021-05-22 12:45:47.873+03	
477f1699-fd45-b2e1-fbe6-ea1991ec1243	2021-05-22 12:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:46:07.853+03	2021-05-22 12:46:07.859+03	
0a96c311-2999-5af3-481b-570ff0bfaf93	2021-05-22 12:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:46:27.853+03	2021-05-22 12:46:27.86+03	
32f99bef-6894-7bcb-8e21-a61e438d74d3	2021-05-22 12:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:46:47.853+03	2021-05-22 12:46:47.863+03	
1cf320b0-8f1c-7261-e45b-8cc91c06f908	2021-05-22 12:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:47:08.853+03	2021-05-22 12:47:08.859+03	
baad6e54-a420-1151-52e4-b8bb3803c88a	2021-05-22 12:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:47:28.853+03	2021-05-22 12:47:28.862+03	
e46917d7-26a8-d76c-e463-25be79163dd0	2021-05-22 12:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:47:48.853+03	2021-05-22 12:47:48.86+03	
195eec9f-1fa1-06f0-926d-11348e22ac38	2021-05-22 12:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:48:09.853+03	2021-05-22 12:48:09.859+03	
507b0325-e4df-99ae-1f73-d9024754eae2	2021-05-22 12:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:48:30.853+03	2021-05-22 12:48:30.862+03	
1486b9ef-2dea-7e4b-7483-18d8c464af5e	2021-05-22 12:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:48:50.853+03	2021-05-22 12:48:50.86+03	
626b4e9f-7653-ea06-1e05-529215ecba0b	2021-05-22 12:49:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:49:10.853+03	2021-05-22 12:49:10.86+03	
987749c9-d770-65c7-a3e3-320b05e9dc50	2021-05-22 12:49:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:49:30.853+03	2021-05-22 12:49:30.859+03	
80f4f8fd-78e2-950e-c4f2-6bb482cf2626	2021-05-22 12:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:49:52.853+03	2021-05-22 12:49:52.859+03	
64ba6edb-6d60-adc8-cdf1-d842231fe7a2	2021-05-22 12:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:50:03.852+03	2021-05-22 12:50:03.86+03	
8febb1c7-1fb3-1748-b352-4848db306099	2021-05-22 12:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:50:23.853+03	2021-05-22 12:50:23.86+03	
8ed6eeb0-7ecf-9e87-8b89-701623eceaca	2021-05-22 12:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:50:44.853+03	2021-05-22 12:50:44.871+03	
347a7390-27b4-f174-6df8-1744fd6233ee	2021-05-22 12:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:51:04.853+03	2021-05-22 12:51:04.86+03	
d0c7c7c7-2a34-9fad-80dc-6e3a73e6fef3	2021-05-22 12:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:51:25.853+03	2021-05-22 12:51:25.862+03	
c40912b4-623c-50c5-3c2d-9ade696f4703	2021-05-22 12:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:51:45.853+03	2021-05-22 12:51:45.86+03	
76bb65dd-15f2-6575-a5a5-c37f0283fd00	2021-05-22 12:52:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:52:06.854+03	2021-05-22 12:52:06.881+03	
2de29aca-367e-d84a-6cb1-4980e2e1446e	2021-05-22 12:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:52:27.852+03	2021-05-22 12:52:27.86+03	
3357cd92-a7e0-dcaf-65fc-45d45fc51fcc	2021-05-22 12:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:52:47.853+03	2021-05-22 12:52:47.859+03	
c1f8d8a9-8cad-e01e-c990-10b27bf2f025	2021-05-22 12:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:53:07.853+03	2021-05-22 12:53:07.859+03	
bf98bd7e-13d3-979e-e16a-648b5d03d199	2021-05-22 12:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:53:28.853+03	2021-05-22 12:53:28.86+03	
a8ea1c8e-e374-c897-bb6a-c8259babe9c3	2021-05-22 12:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:53:49.853+03	2021-05-22 12:53:49.859+03	
49038d2c-429c-ebbf-a0b7-7b80e531a801	2021-05-22 12:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:54:09.853+03	2021-05-22 12:54:09.865+03	
74b38cc8-5d95-c049-5db0-c3e3e905f652	2021-05-22 12:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:54:30.853+03	2021-05-22 12:54:30.868+03	
7b0e30d1-5270-6d7d-3b0f-3b6b585a0a3f	2021-05-22 12:54:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:54:51.854+03	2021-05-22 12:54:51.862+03	
7a1ead0b-bfb5-9358-adb8-5651870963dd	2021-05-22 12:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:55:12.852+03	2021-05-22 12:55:13.116+03	
b913b52c-2bfc-e4f9-1e4c-b0716f6fbba6	2021-05-22 12:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:55:32.853+03	2021-05-22 12:55:32.863+03	
60a19741-da5b-798d-0967-27856f5a3f3b	2021-05-22 12:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:55:53.853+03	2021-05-22 12:55:53.86+03	
052e6211-7df6-5a9c-2a7e-69a2acf9d44c	2021-05-22 12:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:56:13.853+03	2021-05-22 12:56:13.86+03	
ce0a5405-870f-4797-768b-3eaa66d1032a	2021-05-22 12:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:56:34.853+03	2021-05-22 12:56:34.859+03	
46359699-12a4-f1f0-d732-206a3ea7efc3	2021-05-22 12:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:56:54.853+03	2021-05-22 12:56:54.86+03	
a74c3b65-6f7f-6310-5686-e918b5587ecb	2021-05-22 12:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:57:15.853+03	2021-05-22 12:57:15.859+03	
e1255f30-7758-5f7b-c178-8d8f87b631ac	2021-05-22 12:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:57:35.853+03	2021-05-22 12:57:35.862+03	
ae79cbca-ace9-bb56-4b46-65fb2e571a1b	2021-05-22 12:57:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:57:56.853+03	2021-05-22 12:57:56.866+03	
5a5e1ad9-f0c1-654d-10f2-249007337656	2021-05-22 12:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:58:17.852+03	2021-05-22 12:58:17.861+03	
4519c638-3ec2-93dc-8ed6-daa1df1caa99	2021-05-22 12:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:58:37.852+03	2021-05-22 12:58:37.859+03	
3541f6b0-6477-b469-39d2-cddc739f3e44	2021-05-22 12:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:58:57.853+03	2021-05-22 12:58:57.86+03	
75458c49-e46b-98fb-603e-e367b2ed0453	2021-05-22 12:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:59:18.852+03	2021-05-22 12:59:18.859+03	
23279fc3-d425-eb1b-2c78-4675b21f8534	2021-05-22 12:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:59:38.852+03	2021-05-22 12:59:38.864+03	
175cb54b-2afc-8b60-af63-bc69f4281275	2021-05-22 12:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:59:58.853+03	2021-05-22 12:59:58.863+03	
f42da751-ae5d-8d57-8cf6-fad7e5f60aea	2021-05-22 13:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:00:08.853+03	2021-05-22 13:00:08.874+03	
c8b570ee-7db7-c2a7-5ecc-953a21284bd1	2021-05-22 13:00:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:00:28.853+03	2021-05-22 13:00:28.871+03	
a19b25a6-ef62-022d-625d-67113d1e9db7	2021-05-22 13:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:00:48.853+03	2021-05-22 13:00:48.861+03	
4c1f48c3-75f7-c951-1323-40ebd6fd2e01	2021-05-22 13:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:01:09.852+03	2021-05-22 13:01:09.859+03	
32a7f872-2cda-6f69-d79d-e4e5a2bdeff8	2021-05-22 13:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:01:29.853+03	2021-05-22 13:01:29.859+03	
e1693e5f-49cf-f2db-f0df-6bfdedba4875	2021-05-22 13:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:01:49.853+03	2021-05-22 13:01:49.861+03	
a6620a31-0faa-d03b-781f-d8b51715ef1c	2021-05-22 13:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:02:09.853+03	2021-05-22 13:02:09.861+03	
07d643ff-4ac0-0570-c41e-ab07c5926169	2021-05-22 13:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:02:30.853+03	2021-05-22 13:02:30.862+03	
69f26b9b-dd65-d744-ac87-bb55644f441e	2021-05-22 13:02:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:02:51.853+03	2021-05-22 13:02:51.86+03	
c047f234-b7bf-65aa-d4f6-ae50e44e8aa8	2021-05-22 13:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:03:12.853+03	2021-05-22 13:03:12.859+03	
a8ef0a09-077a-eb94-22ff-e4867df9550e	2021-05-22 13:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:03:32.853+03	2021-05-22 13:03:32.86+03	
e40837de-34b8-0915-7c74-73b156ca4650	2021-05-22 13:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:03:53.852+03	2021-05-22 13:03:53.859+03	
d6a41967-d39a-2c9e-b0ed-36ba383f0843	2021-05-22 13:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:04:13.853+03	2021-05-22 13:04:13.86+03	
d0b5c87f-2b6c-5e56-7a52-6c5b3da91304	2021-05-22 13:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:04:34.853+03	2021-05-22 13:04:34.866+03	
b192807a-0f93-4b63-12a0-733c02c74c3f	2021-05-22 13:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:04:55.853+03	2021-05-22 13:04:55.86+03	
1940a75c-bfa4-d8a0-5261-58f7e7e42eae	2021-05-22 13:05:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:05:16.852+03	2021-05-22 13:05:16.861+03	
50d322dd-d5b5-31c4-b9db-8e9a2bf6c4f4	2021-05-22 13:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:05:37.853+03	2021-05-22 13:05:37.862+03	
099448ee-79a9-79fc-6481-f29ba82a4a59	2021-05-22 13:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:05:57.853+03	2021-05-22 13:05:57.859+03	
d91ed271-11bb-cfc8-b159-56ec449569a6	2021-05-22 13:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:06:18.853+03	2021-05-22 13:06:18.861+03	
be4d5907-7b7f-6523-5b7b-93357bd7f71d	2021-05-22 13:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:06:38.853+03	2021-05-22 13:06:38.86+03	
e4310319-c8f5-79f1-b94a-eff762b62d7a	2021-05-22 13:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:06:59.853+03	2021-05-22 13:06:59.862+03	
4e12a883-82bd-f767-31d5-fcef8eaab061	2021-05-22 13:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:07:19.853+03	2021-05-22 13:07:19.859+03	
512a37b9-7733-7093-0280-b0e0bff90fbd	2021-05-22 13:07:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:07:41.853+03	2021-05-22 13:07:41.86+03	
3b4a9281-6bcf-e9f7-cb21-2aef52e3ed00	2021-05-22 13:08:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:08:01.853+03	2021-05-22 13:08:01.862+03	
78b47267-deef-61c2-5215-97430a61b66f	2021-05-22 13:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:08:22.852+03	2021-05-22 13:08:22.861+03	
5f5e7c9c-fd50-7309-821e-afc2529ce5f6	2021-05-22 13:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:08:42.853+03	2021-05-22 13:08:42.859+03	
e91c9a1c-a7f1-5246-a1fb-dca5418aff5a	2021-05-22 12:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:47:59.853+03	2021-05-22 12:47:59.86+03	
62defa7a-b0ce-4af1-c33e-e00fb20453fb	2021-05-22 12:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:48:19.853+03	2021-05-22 12:48:19.859+03	
954f16c5-3cd4-317b-024d-2a5d5e46c078	2021-05-22 12:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:48:40.853+03	2021-05-22 12:48:40.859+03	
bda4c19b-f153-0f48-7fd8-c03b3fda5397	2021-05-22 12:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:49:00.853+03	2021-05-22 12:49:00.86+03	
1ce72217-ef48-8c74-5abf-db5d8e98e52e	2021-05-22 12:49:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:49:20.853+03	2021-05-22 12:49:20.86+03	
cf30c876-6bdf-f672-5714-0fa56ee1107e	2021-05-22 12:49:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:49:41.854+03	2021-05-22 12:49:41.86+03	
4c17ab03-4f4b-c6e0-c32b-47d044341171	2021-05-22 12:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 12:50:00.852+03	2021-05-22 12:50:00.857+03	ERROR
34105d1b-08f3-329b-20e9-f93317e54bb3	2021-05-22 12:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:50:13.853+03	2021-05-22 12:50:13.859+03	
8782e90c-c1d2-12ce-7bdc-5b462596da65	2021-05-22 12:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:50:33.853+03	2021-05-22 12:50:33.859+03	
f6c90d85-5cdc-89a7-9c3d-ff46b552f240	2021-05-22 12:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:50:54.853+03	2021-05-22 12:50:54.86+03	
bb99468b-0845-86b8-3700-e545dde560bd	2021-05-22 12:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:51:15.853+03	2021-05-22 12:51:15.872+03	
0681f1ba-7a2a-a922-43d9-e3f600dd3a3f	2021-05-22 12:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:51:35.853+03	2021-05-22 12:51:35.863+03	
4b4c1bd6-6071-ca70-7da7-d7c341d221bb	2021-05-22 12:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:51:55.853+03	2021-05-22 12:51:55.859+03	
fe01ffcd-1297-c7ac-7cb4-b47a1f924e8c	2021-05-22 12:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:52:17.852+03	2021-05-22 12:52:17.859+03	
5a09b1ba-657c-1b90-44f2-acb6e76af621	2021-05-22 12:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:52:37.853+03	2021-05-22 12:52:37.86+03	
84d4807b-b637-b761-17e7-02f3d5be9107	2021-05-22 12:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:52:57.853+03	2021-05-22 12:52:57.861+03	
7f4dfa33-7d92-ddb0-7300-4821c3bdd4ae	2021-05-22 12:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:53:17.853+03	2021-05-22 12:53:17.861+03	
8f10dbb0-75ec-58ec-60ee-acc7f8412591	2021-05-22 12:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:53:38.853+03	2021-05-22 12:53:38.86+03	
2d7c20fa-4005-a62f-9778-3c33d2033ac0	2021-05-22 12:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:53:59.853+03	2021-05-22 12:53:59.864+03	
ec1cb685-8c29-9081-55c5-f06451d67d8e	2021-05-22 12:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:54:20.852+03	2021-05-22 12:54:20.859+03	
dfe1e164-cae8-b849-5be0-b9c43bd63641	2021-05-22 12:54:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:54:41.853+03	2021-05-22 12:54:41.859+03	
522b4657-4410-96e8-570f-86719d1a8382	2021-05-22 12:55:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:55:01.854+03	2021-05-22 12:55:01.86+03	
4cac2abe-e1d6-e5b6-0e04-1cb3368b3107	2021-05-22 12:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:55:22.853+03	2021-05-22 12:55:22.859+03	
edf9541d-ef6d-d79c-3360-80d0fe1526d8	2021-05-22 12:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:55:42.853+03	2021-05-22 12:55:42.859+03	
315295cd-c623-67c6-c214-ffd96afa4ddb	2021-05-22 12:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:56:03.853+03	2021-05-22 12:56:03.86+03	
ceb0b882-142e-739a-7c5e-cd09869a889e	2021-05-22 12:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:56:23.853+03	2021-05-22 12:56:23.868+03	
59e09ad2-2fd7-2cf3-1e32-fefac909f80f	2021-05-22 12:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:56:44.853+03	2021-05-22 12:56:44.86+03	
81bc87a8-e290-7f99-15b2-5481923e58ef	2021-05-22 12:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:57:04.853+03	2021-05-22 12:57:04.86+03	
97bfb6ba-4c0c-b168-5b5c-8f400012d03e	2021-05-22 12:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:57:25.853+03	2021-05-22 12:57:25.86+03	
34c90ef3-fae8-1a73-f566-28b0e5ff61fa	2021-05-22 12:57:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:57:46.852+03	2021-05-22 12:57:46.862+03	
dc8179af-1042-3cb2-c17c-7c6824fcfcfb	2021-05-22 12:58:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:58:06.853+03	2021-05-22 12:58:06.861+03	
435fc7e2-1ac1-ea9f-f05f-1f1a3644adb1	2021-05-22 12:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:58:27.852+03	2021-05-22 12:58:27.866+03	
56404bdc-1f13-b3c8-79e8-a9fbb86f32bb	2021-05-22 12:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:58:47.853+03	2021-05-22 12:58:47.86+03	
04a74292-d564-cdd6-8527-1a4d5fdc327d	2021-05-22 12:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:59:07.853+03	2021-05-22 12:59:07.859+03	
eb98b5a4-f139-6d2b-2351-c89cd73f87de	2021-05-22 12:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:59:28.852+03	2021-05-22 12:59:28.86+03	
0c6f03d7-6f74-3055-80f3-f2ad10658e29	2021-05-22 12:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 12:59:48.853+03	2021-05-22 12:59:48.861+03	
7f5b0521-5e26-3dba-df53-8ee8c9c98d70	2021-05-22 13:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 13:00:00.852+03	2021-05-22 13:00:00.868+03	ERROR
2df0d9f2-7e46-d49d-20c1-18f2be4e68fa	2021-05-22 13:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:00:18.853+03	2021-05-22 13:00:18.868+03	
2baa5806-9c4b-5726-cb1d-006643ce1c10	2021-05-22 13:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:00:38.853+03	2021-05-22 13:00:38.868+03	
49057f4f-5df0-b28b-7ce0-01341789a8e6	2021-05-22 13:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:00:58.853+03	2021-05-22 13:00:58.859+03	
a082bdb4-dc83-994a-96e0-a0f93968596c	2021-05-22 13:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:01:19.852+03	2021-05-22 13:01:19.86+03	
4b839da9-0255-a18b-9ea3-8ecadb91fd63	2021-05-22 13:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:01:39.853+03	2021-05-22 13:01:39.86+03	
d0dd7f84-1dac-8b34-d717-c7fe9fceb330	2021-05-22 13:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:01:59.853+03	2021-05-22 13:01:59.861+03	
098ca58c-0bcd-3d0a-a7ab-a051e5fa0d72	2021-05-22 13:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:02:19.853+03	2021-05-22 13:02:19.86+03	
641f8d2d-827f-1986-ffb2-ce14f36caed7	2021-05-22 13:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:02:41.852+03	2021-05-22 13:02:41.858+03	
f03c2c55-b69a-4794-385c-6f39e45a977a	2021-05-22 13:03:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:03:01.854+03	2021-05-22 13:03:01.859+03	
eba15fbf-8e62-e168-caf8-943d7747e134	2021-05-22 13:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:03:22.853+03	2021-05-22 13:03:22.859+03	
e680d3fc-6766-3016-5db5-347234782a0f	2021-05-22 13:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:03:42.853+03	2021-05-22 13:03:42.864+03	
dee14af9-e22c-a6a9-a9ca-3449560ffca7	2021-05-22 13:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:04:03.853+03	2021-05-22 13:04:03.859+03	
e97636ef-f960-0c6e-13d7-814cb0141563	2021-05-22 13:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:04:24.853+03	2021-05-22 13:04:24.87+03	
215ec898-04cc-5bf3-a0c5-752d38809bb0	2021-05-22 13:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:04:44.853+03	2021-05-22 13:04:44.86+03	
a5387008-e7e4-eb81-fba6-3c437a256908	2021-05-22 13:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:05:05.853+03	2021-05-22 13:05:05.86+03	
bda0c457-49f1-1dab-ce9a-bea012e9a9e8	2021-05-22 13:05:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:05:26.854+03	2021-05-22 13:05:26.861+03	
817f27a5-7971-84a7-0332-45c529dbef95	2021-05-22 13:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:05:47.853+03	2021-05-22 13:05:47.859+03	
d54d4afa-c536-4b6f-5097-47d463a57e85	2021-05-22 13:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:06:07.853+03	2021-05-22 13:06:07.859+03	
a284e4ef-c2d5-3bd2-2fe8-85df22811e05	2021-05-22 13:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:06:28.853+03	2021-05-22 13:06:28.859+03	
ac7d211c-c71a-053c-80e2-54b6d549c50f	2021-05-22 13:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:06:49.852+03	2021-05-22 13:06:49.859+03	
2778e523-5f50-1109-b638-5a806d257000	2021-05-22 13:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:07:09.853+03	2021-05-22 13:07:09.859+03	
0b88a412-192d-d479-3629-de0bc9327198	2021-05-22 13:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:07:30.853+03	2021-05-22 13:07:30.86+03	
73635ca1-b73a-91a7-fa3c-578263ec4d20	2021-05-22 13:07:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:07:51.853+03	2021-05-22 13:07:51.86+03	
989e98b8-4182-724a-6618-5160c6469c9c	2021-05-22 13:08:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:08:11.854+03	2021-05-22 13:08:11.861+03	
49464c8b-a771-6c51-50ec-49791ed69517	2021-05-22 13:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:08:32.853+03	2021-05-22 13:08:32.86+03	
5453146d-c98e-75f0-90a2-15b98fa84877	2021-05-22 13:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:08:53.852+03	2021-05-22 13:08:53.858+03	
5f70ce61-25cc-e4a3-3fc6-b92e80be6fe8	2021-05-22 13:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:09:03.852+03	2021-05-22 13:09:03.86+03	
c603d5f2-d095-a297-d524-35c003dd5e03	2021-05-22 13:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:09:23.852+03	2021-05-22 13:09:23.86+03	
f9e44038-3dff-07b9-2efd-ebab16b02ce2	2021-05-22 13:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:09:43.853+03	2021-05-22 13:09:43.861+03	
8cc2e8a4-d44c-0a6c-2e4d-4f9ec06ddece	2021-05-22 13:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 13:10:00.852+03	2021-05-22 13:10:00.872+03	ERROR
29316f86-bb14-e15b-ab62-39e4c44e4132	2021-05-22 13:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:10:13.853+03	2021-05-22 13:10:13.861+03	
d2277137-538f-1c71-ec4a-0ffd573e7055	2021-05-22 13:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:10:34.853+03	2021-05-22 13:10:34.86+03	
d4a0fddc-384d-3fbe-37d7-ee4a345dcb4f	2021-05-22 13:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:10:54.853+03	2021-05-22 13:10:54.858+03	
3a9e93b5-b27e-9a08-9c7d-5a1e1c0d4a7b	2021-05-22 13:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:11:14.853+03	2021-05-22 13:11:14.86+03	
8628f267-d2e1-8933-cd30-a0d57e95943a	2021-05-22 13:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:11:34.853+03	2021-05-22 13:11:34.861+03	
0df9fcec-65f2-e241-59dd-4590c8570551	2021-05-22 13:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:11:54.853+03	2021-05-22 13:11:54.865+03	
d0880c8e-1bdc-dd08-01f6-a144efc93f13	2021-05-22 13:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:12:14.853+03	2021-05-22 13:12:14.86+03	
da544d57-05ef-e789-1d1c-e7e5dc245d72	2021-05-22 13:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:12:34.853+03	2021-05-22 13:12:34.861+03	
92ac740e-d8d4-b4ab-bbed-51c662e13923	2021-05-22 13:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:12:55.852+03	2021-05-22 13:12:55.86+03	
ae23fd73-2fb6-d1f7-d127-39ffeb021efd	2021-05-22 13:13:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:13:16.853+03	2021-05-22 13:13:16.912+03	
8e59654e-731e-79e4-a2ea-5e9e4e8d6b66	2021-05-22 13:13:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:13:36.853+03	2021-05-22 13:13:36.863+03	
c9d1de1a-c23d-8db8-ebd8-94c495bb8715	2021-05-22 13:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:13:57.852+03	2021-05-22 13:13:57.861+03	
f8e60351-0fcb-7a60-0cac-2c5e6a3a385f	2021-05-22 13:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:14:17.853+03	2021-05-22 13:14:17.859+03	
9eb5cddf-e5e4-377c-0f20-1500aab8d735	2021-05-22 13:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:14:37.853+03	2021-05-22 13:14:37.86+03	
fd69bab0-5cc5-1ed3-617e-e6f36f61b100	2021-05-22 13:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:14:58.853+03	2021-05-22 13:14:58.859+03	
a955594a-6f2e-a7dd-b6fe-0d405ebd6c5a	2021-05-22 13:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:15:19.852+03	2021-05-22 13:15:19.859+03	
8d99ecd2-fa77-1a81-8ef7-da10f636e25d	2021-05-22 13:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:15:39.853+03	2021-05-22 13:15:39.86+03	
42015217-46b8-06c2-4082-15f8df1c68a4	2021-05-22 13:16:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:16:01.853+03	2021-05-22 13:16:01.859+03	
b4c9f194-102d-ce4d-a957-8884f84b3534	2021-05-22 13:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:16:22.852+03	2021-05-22 13:16:22.859+03	
1b24d290-2fa5-d5db-d39c-4a554e13a8ee	2021-05-22 13:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:16:42.852+03	2021-05-22 13:16:42.859+03	
c237171e-2925-1c1f-adba-b78be1f9ad52	2021-05-22 13:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:17:02.853+03	2021-05-22 13:17:02.862+03	
23f6f471-492e-2742-0bd3-1d2a349b6f71	2021-05-22 13:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:17:22.853+03	2021-05-22 13:17:22.859+03	
d830ed97-114c-5b95-f65e-8a606325be7f	2021-05-22 13:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:17:42.853+03	2021-05-22 13:17:42.86+03	
dc5e5315-bdf5-3e81-eda2-f4612c007dc7	2021-05-22 13:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:18:03.852+03	2021-05-22 13:18:03.858+03	
6a5ad8c4-1156-af15-c923-a7ced00a7d47	2021-05-22 13:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:18:23.852+03	2021-05-22 13:18:23.86+03	
f8780e0d-1db5-e582-ed5e-29dcef5bc92b	2021-05-22 13:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:18:43.853+03	2021-05-22 13:18:43.871+03	
ceb7b463-fdd1-95b1-f528-a88baf3f0b22	2021-05-22 13:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:19:04.853+03	2021-05-22 13:19:04.86+03	
0d9d7200-40a0-12ce-c1ef-613250bdf58c	2021-05-22 13:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:19:25.853+03	2021-05-22 13:19:25.86+03	
d9c5a6b4-52da-4c5b-21cf-7c25ca13fb5d	2021-05-22 13:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 13:20:00.852+03	2021-05-22 13:20:00.862+03	ERROR
5e4d247e-8d57-4f87-5dda-d0e72499bf19	2021-05-22 13:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:20:17.853+03	2021-05-22 13:20:17.859+03	
ab3b83b5-1849-ce88-0f86-37177fad36af	2021-05-22 13:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:20:39.853+03	2021-05-22 13:20:39.864+03	
9952f9f5-dffa-3ffe-81ed-fe1f98e68a1e	2021-05-22 13:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:21:00.853+03	2021-05-22 13:21:00.859+03	
2b9639eb-61cc-cc1b-fccf-73af377da6ca	2021-05-22 13:21:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:21:21.852+03	2021-05-22 13:21:21.859+03	
a306d7ee-dfe5-0559-0fcf-1523b17c91d7	2021-05-22 13:21:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:21:41.853+03	2021-05-22 13:21:41.86+03	
5c6b6f69-ca3a-f5cf-4b11-b9dd26ca817f	2021-05-22 13:22:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:22:03.852+03	2021-05-22 13:22:03.862+03	
b1e9a7dc-12b2-98cb-da95-f4a259545b02	2021-05-22 13:22:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:22:23.853+03	2021-05-22 13:22:23.86+03	
c43b6a20-30a7-cf0b-6311-fdf9a0ba546b	2021-05-22 13:22:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:22:44.852+03	2021-05-22 13:22:44.858+03	
c921ab23-6366-3d2b-79ff-8173ba228fdc	2021-05-22 13:23:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:23:04.852+03	2021-05-22 13:23:04.86+03	
a639755e-8f60-3398-1f14-9525da84dbef	2021-05-22 13:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:23:24.853+03	2021-05-22 13:23:24.86+03	
32dc130d-14de-9b8b-85cf-85b66d28e4aa	2021-05-22 13:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:23:45.852+03	2021-05-22 13:23:45.861+03	
cd3c611d-500d-9b64-6a91-0502a20ba441	2021-05-22 13:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:24:05.852+03	2021-05-22 13:24:05.864+03	
4e87752b-95f4-87fe-b8cb-8871d08569f2	2021-05-22 13:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:24:25.853+03	2021-05-22 13:24:25.859+03	
b7aef49c-5c6a-0be7-9535-c7e40fec6973	2021-05-22 13:24:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:24:46.853+03	2021-05-22 13:24:46.873+03	
8769ddeb-84fa-4b70-de4e-17b197a5c20a	2021-05-22 13:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:25:07.853+03	2021-05-22 13:25:07.861+03	
25c7aa08-a38a-922d-c44b-9e767b2ae64d	2021-05-22 13:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:25:28.852+03	2021-05-22 13:25:28.859+03	
f735f3d9-684b-c7ca-9383-34d9b79baecf	2021-05-22 13:25:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:25:48.852+03	2021-05-22 13:25:48.858+03	
5148cb59-6aae-517c-e353-ad1669242674	2021-05-22 13:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:26:08.853+03	2021-05-22 13:26:08.861+03	
09a3b1ff-b547-127e-0edf-0ca2f0a6bdbb	2021-05-22 13:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:26:29.852+03	2021-05-22 13:26:29.859+03	
59e3b046-c4f7-6026-794b-e1cf1ece6ada	2021-05-22 13:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:26:50.853+03	2021-05-22 13:26:50.86+03	
c8db2e12-02df-ed36-5cc4-2bbe38df0fcf	2021-05-22 13:27:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:27:11.854+03	2021-05-22 13:27:12.125+03	
2fa84758-a9c7-86a4-ea56-b23ecfcf06d3	2021-05-22 13:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:27:32.853+03	2021-05-22 13:27:32.859+03	
87e6c39f-296c-ab1b-3080-f74900ae730b	2021-05-22 13:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:27:52.853+03	2021-05-22 13:27:52.86+03	
f269dcba-1801-b446-dbff-e0a29fce027d	2021-05-22 13:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:28:13.852+03	2021-05-22 13:28:13.858+03	
e41a7fa6-ea8e-02c5-2df8-c428b14fe732	2021-05-22 13:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:28:33.852+03	2021-05-22 13:28:33.864+03	
d32b8a88-803d-378f-2431-187bf2914ab0	2021-05-22 13:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:28:54.853+03	2021-05-22 13:28:54.86+03	
86f9b14f-8fc9-1e5f-5d11-25e121a9b68a	2021-05-22 13:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:29:14.853+03	2021-05-22 13:29:14.862+03	
0f5a24fd-034e-aec5-59f4-068db29e3f90	2021-05-22 13:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:29:34.853+03	2021-05-22 13:29:34.86+03	
47d62575-9a3e-aea0-b239-efc6e31a38c6	2021-05-22 13:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:29:54.853+03	2021-05-22 13:29:54.858+03	
65ed1a90-8062-7054-c35a-64551b98cbfe	2021-05-22 13:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:30:05.853+03	2021-05-22 13:30:05.859+03	
6899e140-bd0e-e282-ffee-723957dfa884	2021-05-22 13:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:09:13.852+03	2021-05-22 13:09:13.86+03	
5a361854-827b-d863-751c-e7fc2ad5cd05	2021-05-22 13:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:09:33.853+03	2021-05-22 13:09:33.86+03	
fd26c3cd-d61d-4278-36dc-c2aa29985cb6	2021-05-22 13:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:09:53.853+03	2021-05-22 13:09:53.86+03	
3ca94b11-a656-0771-e352-16b395672237	2021-05-22 13:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:10:03.853+03	2021-05-22 13:10:03.86+03	
2d4e86c0-803c-23dd-9c78-c95e70227c74	2021-05-22 13:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:10:23.853+03	2021-05-22 13:10:23.86+03	
271ca27b-f0b1-4e89-3d63-973f4035d643	2021-05-22 13:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:10:44.853+03	2021-05-22 13:10:44.861+03	
e775590a-9520-a23d-0238-00c1a42603ad	2021-05-22 13:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:11:04.853+03	2021-05-22 13:11:04.859+03	
f9095d44-6e6a-71a5-abef-fc63ba634d44	2021-05-22 13:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:11:24.853+03	2021-05-22 13:11:24.861+03	
66350a3b-fe11-209a-f902-ff9cfc275e0c	2021-05-22 13:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:11:44.853+03	2021-05-22 13:11:44.86+03	
3d15226f-92ae-9a82-b43e-b853081869e2	2021-05-22 13:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:12:04.853+03	2021-05-22 13:12:04.859+03	
613b605a-77ec-45f3-43b2-389568aa3f9b	2021-05-22 13:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:12:24.853+03	2021-05-22 13:12:24.859+03	
e1188952-0402-d472-b818-79ec84c6131b	2021-05-22 13:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:12:44.853+03	2021-05-22 13:12:44.866+03	
ed34fef3-50b6-86a7-7a24-c1dc392bbaef	2021-05-22 13:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:13:05.853+03	2021-05-22 13:13:05.863+03	
71e7fc0e-6462-a8bd-f228-bc4021356ac0	2021-05-22 13:13:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:13:26.853+03	2021-05-22 13:13:26.861+03	
01ec26ce-169d-853d-705b-a740b316e2c0	2021-05-22 13:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:13:47.852+03	2021-05-22 13:13:47.858+03	
529397d5-7f47-3127-7841-4b43ec7f1c9d	2021-05-22 13:14:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:14:07.852+03	2021-05-22 13:14:07.862+03	
23c16c44-7ecc-c836-1fb0-40fb74da682f	2021-05-22 13:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:14:27.853+03	2021-05-22 13:14:27.86+03	
162f31b1-4759-6463-9c7d-85cb938fe82b	2021-05-22 13:14:47.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:14:47.859+03	2021-05-22 13:14:47.879+03	
9643360a-43f8-eb1b-631b-bdfe1cc4cd62	2021-05-22 13:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:15:09.852+03	2021-05-22 13:15:09.859+03	
5a67fd25-a040-983e-05d5-080a6ae75831	2021-05-22 13:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:15:29.852+03	2021-05-22 13:15:29.86+03	
af6990d2-2aa6-42d8-a088-8c919fe975da	2021-05-22 13:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:15:50.853+03	2021-05-22 13:15:50.86+03	
bf69174f-9665-2c51-7712-79d9e2edb2b6	2021-05-22 13:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:16:11.853+03	2021-05-22 13:16:11.86+03	
d6634f86-20d4-34ec-dfd1-7f305c9193f7	2021-05-22 13:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:16:32.852+03	2021-05-22 13:16:32.86+03	
91f5d51c-a20a-82a8-d512-d631f3ae4022	2021-05-22 13:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:16:52.853+03	2021-05-22 13:16:52.86+03	
6a48cbf0-f8ba-68e7-49ab-8bcf0d5394b1	2021-05-22 13:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:17:12.853+03	2021-05-22 13:17:12.859+03	
7a11f0bc-4a5f-2017-1bb3-d3ce06f24bae	2021-05-22 13:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:17:32.853+03	2021-05-22 13:17:32.862+03	
3bcd315a-cd8d-28bc-1aaf-fe7a1c2ea314	2021-05-22 13:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:17:53.852+03	2021-05-22 13:17:53.858+03	
7fdb9031-6f72-687b-121c-d375784627e4	2021-05-22 13:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:18:13.852+03	2021-05-22 13:18:13.858+03	
c225dc45-51ab-656a-4e01-207f05654e27	2021-05-22 13:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:18:33.853+03	2021-05-22 13:18:33.865+03	
0bfeff59-479a-190a-b52c-668db34f41c5	2021-05-22 13:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:18:53.853+03	2021-05-22 13:18:53.859+03	
9f2af51d-0801-584e-3be3-9e0e0ec63880	2021-05-22 13:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:19:15.852+03	2021-05-22 13:19:15.859+03	
ca46d253-ab76-f73a-826f-dba06371aee9	2021-05-22 13:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:19:35.853+03	2021-05-22 13:19:35.86+03	
9b517114-143e-94bd-2372-c03e1f8cd59d	2021-05-22 13:19:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:19:46.852+03	2021-05-22 13:19:46.873+03	
4c43c9f4-0f07-7102-de61-153e8a5e3c24	2021-05-22 13:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:19:56.852+03	2021-05-22 13:19:56.861+03	
71c7f196-e531-f94f-3f0f-21445171658b	2021-05-22 13:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:20:06.853+03	2021-05-22 13:20:06.861+03	
d158a2a5-9bc5-4a2d-0cf8-e39d7fa0eb5d	2021-05-22 13:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:20:28.853+03	2021-05-22 13:20:28.859+03	
2e0a36c7-14b4-6bbe-9aee-5cc3bd4e8a7c	2021-05-22 13:20:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:20:49.853+03	2021-05-22 13:20:49.86+03	
d148678a-82a4-04f5-b07e-411b9e478f04	2021-05-22 13:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:21:10.853+03	2021-05-22 13:21:10.861+03	
53726241-d28b-8a02-0e0c-5495c60e186c	2021-05-22 13:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:21:31.852+03	2021-05-22 13:21:31.86+03	
4f769f2d-4386-3e53-e66f-cd03ace81703	2021-05-22 13:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:21:52.853+03	2021-05-22 13:21:52.862+03	
598d5548-66d5-8491-0c51-141510683c0a	2021-05-22 13:22:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:22:13.853+03	2021-05-22 13:22:13.859+03	
f454f219-3f65-2848-4379-5bcf416c53a7	2021-05-22 13:22:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:22:33.853+03	2021-05-22 13:22:33.86+03	
efd81fe6-2a7a-0efc-2b7b-15c097026679	2021-05-22 13:22:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:22:54.852+03	2021-05-22 13:22:54.859+03	
cd83ed7a-23ee-760a-50c6-6c237ed562b2	2021-05-22 13:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:23:14.852+03	2021-05-22 13:23:14.86+03	
834d03b2-3dd9-096a-4ff5-fb63e7b102db	2021-05-22 13:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:23:35.852+03	2021-05-22 13:23:35.866+03	
7b9898ac-5c41-46b6-1661-25f450759e38	2021-05-22 13:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:23:55.852+03	2021-05-22 13:23:55.859+03	
f2657c18-a9c0-1b95-0b7c-3e004c1b8cbf	2021-05-22 13:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:24:15.852+03	2021-05-22 13:24:15.859+03	
0965b347-ec36-ff2a-363f-4418e9f7f828	2021-05-22 13:24:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:24:36.853+03	2021-05-22 13:24:36.86+03	
a37fcc3f-3590-cfd5-ba2d-a1c3b06f21ad	2021-05-22 13:24:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:24:57.853+03	2021-05-22 13:24:57.861+03	
c643befb-7a33-2634-d909-eb6252971131	2021-05-22 13:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:25:18.852+03	2021-05-22 13:25:18.859+03	
5bf1845d-ebd2-3413-e1ae-9a46e8cdab1a	2021-05-22 13:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:25:38.852+03	2021-05-22 13:25:38.859+03	
798b2bd5-a689-4142-2373-3a58ded14b2d	2021-05-22 13:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:25:58.852+03	2021-05-22 13:25:58.858+03	
9c0fe994-cdf5-df80-2955-ca7d8eadef62	2021-05-22 13:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:26:19.852+03	2021-05-22 13:26:19.859+03	
3bfddce2-e34a-4397-dd29-97cb0a08d55d	2021-05-22 13:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:26:39.853+03	2021-05-22 13:26:39.859+03	
60c039db-a46e-b6d3-c03a-81ab3f18b193	2021-05-22 13:27:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:27:01.852+03	2021-05-22 13:27:01.866+03	
2e2f64da-7f6c-dd1a-332f-c943a70d6825	2021-05-22 13:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:27:22.852+03	2021-05-22 13:27:22.861+03	
f58fb14f-5ed2-b810-83cd-8974f95a7763	2021-05-22 13:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:27:42.853+03	2021-05-22 13:27:42.86+03	
665dff82-1d45-70f2-4567-d9c9df9d7ed1	2021-05-22 13:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:28:03.852+03	2021-05-22 13:28:03.859+03	
99deaa64-e31e-7474-6155-09722e4120bf	2021-05-22 13:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:28:23.852+03	2021-05-22 13:28:23.859+03	
1dec3b85-d60d-fcfd-20b1-5433c2ec9119	2021-05-22 13:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:28:43.853+03	2021-05-22 13:28:43.859+03	
68c7da9a-c949-8ada-5239-c3036376a317	2021-05-22 13:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:29:04.853+03	2021-05-22 13:29:04.866+03	
1ec54c6b-d3b7-bf4d-7474-7bb614f8522b	2021-05-22 13:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:29:24.853+03	2021-05-22 13:29:24.861+03	
b3a9c7c2-aa7e-ff81-233b-07b32841a831	2021-05-22 13:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:29:44.853+03	2021-05-22 13:29:44.859+03	
2842c992-3220-7a96-1c62-ce0fa2fd9906	2021-05-22 13:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 13:30:00.853+03	2021-05-22 13:30:00.86+03	ERROR
1ca58214-ab6e-edcc-5765-8c76c2cc6c40	2021-05-22 13:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:30:16.852+03	2021-05-22 13:30:16.86+03	
39268a81-0478-ab34-bfd1-8f95b8ee0afc	2021-05-22 13:30:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:30:36.854+03	2021-05-22 13:30:36.872+03	
59f6e82b-a555-353b-c8bf-92c21dce13d2	2021-05-22 13:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:30:57.853+03	2021-05-22 13:30:57.859+03	
13e82f47-838b-0b78-f0f2-8964511088d1	2021-05-22 13:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:31:18.852+03	2021-05-22 13:31:18.859+03	
6652e807-a13c-7280-328b-ce6c42553f96	2021-05-22 13:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:31:39.852+03	2021-05-22 13:31:39.861+03	
471d3e40-bf98-5e49-0ad7-29d56c1f0981	2021-05-22 13:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:31:59.853+03	2021-05-22 13:31:59.86+03	
033845e4-8809-e34d-1eaa-beec4a9e08f7	2021-05-22 13:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:32:20.852+03	2021-05-22 13:32:20.86+03	
373f7d7a-b792-5d01-d83e-423fdcf6b412	2021-05-22 13:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:32:40.853+03	2021-05-22 13:32:40.861+03	
7188a81f-dde7-026e-6bf9-2e395d14fdff	2021-05-22 13:33:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:33:01.854+03	2021-05-22 13:33:01.895+03	
8340c78a-4bb2-bdd5-2234-d75ce922dc6f	2021-05-22 13:33:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:33:21.854+03	2021-05-22 13:33:21.862+03	
66606d7a-f388-5d2e-2b45-30988698571a	2021-05-22 13:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:33:42.852+03	2021-05-22 13:33:42.859+03	
d8cbaecf-85f1-5b92-a241-8526f72f1586	2021-05-22 13:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:34:02.852+03	2021-05-22 13:34:02.863+03	
021a047f-7aa6-046a-14eb-a7f260597ce5	2021-05-22 13:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:34:22.852+03	2021-05-22 13:34:22.859+03	
0296a9c2-7fe1-dbfb-2267-4dfaedb909e0	2021-05-22 13:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:34:42.853+03	2021-05-22 13:34:42.859+03	
64db8975-cb26-62d5-d625-283ef63783f8	2021-05-22 13:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:35:02.853+03	2021-05-22 13:35:02.86+03	
9b38cccf-8494-b17d-4f36-54cb34040170	2021-05-22 13:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:35:23.852+03	2021-05-22 13:35:23.859+03	
e499b809-d9a9-79a3-7cec-d9f5ea74c0d0	2021-05-22 13:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:35:43.853+03	2021-05-22 13:35:43.859+03	
b724ebca-2c4d-10d9-feeb-19d6a8408b6a	2021-05-22 13:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:36:04.853+03	2021-05-22 13:36:04.861+03	
ba6fce40-bc33-bc63-8eb6-6a1a284af302	2021-05-22 13:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:36:24.853+03	2021-05-22 13:36:24.86+03	
87cacce1-6898-8402-de42-13751a89e60b	2021-05-22 13:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:36:44.853+03	2021-05-22 13:36:44.861+03	
51e5e40b-63e9-0974-85c8-043ac9357dca	2021-05-22 13:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:37:04.853+03	2021-05-22 13:37:04.861+03	
967661b5-a9e6-c757-6099-e00223624d38	2021-05-22 13:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:37:25.852+03	2021-05-22 13:37:25.859+03	
95590fb1-9e23-3d51-44c5-06ff39f54457	2021-05-22 13:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:37:45.853+03	2021-05-22 13:37:45.861+03	
5ab1b1ed-5d6f-0725-509d-adbe072f7378	2021-05-22 13:38:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:38:06.852+03	2021-05-22 13:38:06.86+03	
7a2b1c68-3683-195d-a9d0-3be50a7888f7	2021-05-22 13:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:38:26.853+03	2021-05-22 13:38:26.861+03	
a77a565e-4801-90ad-cb1b-d94745d6c969	2021-05-22 13:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:38:47.853+03	2021-05-22 13:38:47.859+03	
7206bef8-85bb-6a2b-74e2-1db5f52262c7	2021-05-22 13:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:39:09.853+03	2021-05-22 13:39:10.632+03	
15cc41e4-e004-6c4d-0241-c331668b8b35	2021-05-22 13:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:39:29.853+03	2021-05-22 13:39:29.871+03	
a1485745-b706-e8b4-9274-a7edc97abe0e	2021-05-22 13:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:39:50.852+03	2021-05-22 13:39:50.862+03	
378e1f01-f680-7e63-3c91-4f2d120b171c	2021-05-22 13:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:40:10.852+03	2021-05-22 13:40:10.86+03	
37dbbc5f-180c-276b-f46c-8cf06e6342e8	2021-05-22 13:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:40:30.853+03	2021-05-22 13:40:30.86+03	
d9245751-ae1a-d257-c657-07c76dcc1e17	2021-05-22 13:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:40:52.853+03	2021-05-22 13:40:52.861+03	
7f973528-b45d-e724-0131-1542519c57e5	2021-05-22 13:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:41:13.852+03	2021-05-22 13:41:13.859+03	
31baf961-5947-b0bc-6687-b910b7ad6eae	2021-05-22 13:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:41:33.852+03	2021-05-22 13:41:33.86+03	
341f2048-3576-56af-c11a-dff0eae0eb65	2021-05-22 13:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:41:53.852+03	2021-05-22 13:41:53.86+03	
0def401d-f572-c750-4add-0e4ed974e18c	2021-05-22 13:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:42:13.853+03	2021-05-22 13:42:13.86+03	
d44c0e39-9ac2-7c15-19cb-7b9f43ad8b85	2021-05-22 13:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:42:33.853+03	2021-05-22 13:42:33.866+03	
c3e8edae-5f9d-79a3-33df-00d136082532	2021-05-22 13:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:42:55.852+03	2021-05-22 13:42:55.859+03	
3288ef80-40ac-8976-d162-b03d8e6dadd5	2021-05-22 13:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:43:15.852+03	2021-05-22 13:43:15.859+03	
7273bcb1-bffc-b2ac-217b-8bbe67b16887	2021-05-22 13:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:43:35.852+03	2021-05-22 13:43:35.86+03	
88dd72a3-9c3e-3b8b-f27e-8e77136b7c2f	2021-05-22 13:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:43:55.853+03	2021-05-22 13:43:55.86+03	
e856d403-63f6-5dd1-8003-24a46c3e9dca	2021-05-22 13:44:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:44:16.852+03	2021-05-22 13:44:16.87+03	
bd3b816e-193e-86c6-3ea9-fb8c632fe2fa	2021-05-22 13:44:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:44:36.852+03	2021-05-22 13:44:36.86+03	
0dd9401d-d90c-9b1e-362e-44d5aeb9707e	2021-05-22 13:44:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:44:56.853+03	2021-05-22 13:44:56.868+03	
388df1ce-ce71-b6e9-ab7b-83c7f7fcfe1d	2021-05-22 13:45:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:45:17.852+03	2021-05-22 13:45:17.859+03	
de7e7373-46ad-bd85-a71e-4bfd3e3d2081	2021-05-22 13:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:45:37.853+03	2021-05-22 13:45:37.876+03	
39c07e10-ab9a-e637-47e5-42c602bcee90	2021-05-22 13:45:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:45:58.853+03	2021-05-22 13:45:58.869+03	
6a526623-75c8-4acd-b1ec-b19ea9de0e59	2021-05-22 13:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:46:19.853+03	2021-05-22 13:46:19.859+03	
5d1d9abe-e44d-c929-9985-06077329f5ba	2021-05-22 13:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:46:39.853+03	2021-05-22 13:46:39.865+03	
dd094ad1-2c01-e7fa-10aa-b56a458b25ae	2021-05-22 13:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:46:59.853+03	2021-05-22 13:46:59.868+03	
7520f5f4-c3fb-bd40-790f-fd21adb94ffb	2021-05-22 13:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:47:20.853+03	2021-05-22 13:47:20.861+03	
96ffe979-1f22-2aa0-e72c-a504efd5e318	2021-05-22 13:47:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:47:41.853+03	2021-05-22 13:47:41.86+03	
0ee93bb0-ca4f-f77a-8909-ec59ed22c4db	2021-05-22 13:48:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:48:01.853+03	2021-05-22 13:48:01.862+03	
080f8697-daff-2795-4e81-19eaaa346944	2021-05-22 13:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:48:22.853+03	2021-05-22 13:48:22.86+03	
8797cb0a-9c97-e6ce-d641-00e9d913a227	2021-05-22 13:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:48:44.853+03	2021-05-22 13:48:44.861+03	
b7c7a231-6bed-332e-e691-9897c683c512	2021-05-22 13:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:49:05.853+03	2021-05-22 13:49:05.873+03	
c4eee9a9-5c71-e4d0-4a2c-c46e520b9efd	2021-05-22 13:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:49:26.852+03	2021-05-22 13:49:26.862+03	
79f57f58-d1fc-b453-b440-57a39a82eb85	2021-05-22 13:49:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:49:46.854+03	2021-05-22 13:49:46.882+03	
6a3a7ab7-51b4-1ffc-8502-c94695bdc3f2	2021-05-22 13:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 13:50:00.853+03	2021-05-22 13:50:00.857+03	ERROR
17148e1d-9cb5-0459-6156-9c55104b92d8	2021-05-22 13:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:50:18.852+03	2021-05-22 13:50:18.859+03	
1afbc133-8255-b170-22b8-082c89c08b2e	2021-05-22 13:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:50:38.852+03	2021-05-22 13:50:38.859+03	
fc86371a-6566-eca2-4daf-e75e5fb67529	2021-05-22 13:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:50:58.852+03	2021-05-22 13:50:58.859+03	
32f068f5-2400-6073-48e5-f1c668245220	2021-05-22 13:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:30:26.852+03	2021-05-22 13:30:26.859+03	
3f414586-c1c8-2b9f-4c91-0e643bb0820c	2021-05-22 13:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:30:47.853+03	2021-05-22 13:30:47.863+03	
952d150d-06f7-fad0-6087-65b9362c2200	2021-05-22 13:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:31:07.853+03	2021-05-22 13:31:07.866+03	
46036159-f8db-ccc0-3f59-0baa9890d973	2021-05-22 13:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:31:28.853+03	2021-05-22 13:31:28.86+03	
b03f4c7c-12df-3207-74d1-cdaabba7cd36	2021-05-22 13:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:31:49.853+03	2021-05-22 13:31:49.86+03	
a581146e-b614-7ee2-de9c-bab2f1cdcf9a	2021-05-22 13:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:32:10.852+03	2021-05-22 13:32:10.861+03	
fb2af059-855f-fa00-1d8b-30a3c774d58e	2021-05-22 13:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:32:30.852+03	2021-05-22 13:32:30.86+03	
ff094493-1a2e-5bc2-ad8c-06602e5cb09c	2021-05-22 13:32:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:32:51.853+03	2021-05-22 13:32:51.864+03	
6cba6368-7f71-07ef-462a-ffc796f022ee	2021-05-22 13:33:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:33:11.854+03	2021-05-22 13:33:11.86+03	
cccde836-4f0d-77c0-2eff-73b8c86ae520	2021-05-22 13:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:33:32.852+03	2021-05-22 13:33:32.861+03	
b8a93787-fcb0-43b5-d9b7-0d9099d3cd59	2021-05-22 13:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:33:52.852+03	2021-05-22 13:33:52.859+03	
38d430e7-0e6c-8dc5-a436-9dff4853a63b	2021-05-22 13:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:34:12.852+03	2021-05-22 13:34:12.859+03	
8b08043d-c0f3-cb47-546a-7a4fd96a129f	2021-05-22 13:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:34:32.852+03	2021-05-22 13:34:32.859+03	
b24e0da3-7a3e-1321-1dff-a30ede2483b1	2021-05-22 13:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:34:52.853+03	2021-05-22 13:34:52.862+03	
30812a43-ef60-a1fa-46e6-1adb5158d652	2021-05-22 13:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:35:13.852+03	2021-05-22 13:35:13.86+03	
ca9d483b-f35b-8ee2-1112-fbfdca6d507f	2021-05-22 13:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:35:33.852+03	2021-05-22 13:35:33.861+03	
6d4d78ad-088c-fbf7-ffdd-69b45dfa38c5	2021-05-22 13:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:35:54.852+03	2021-05-22 13:35:54.859+03	
3d816b21-94e6-c41b-23b3-38eb331aa094	2021-05-22 13:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:36:14.853+03	2021-05-22 13:36:14.859+03	
5ae50a45-9d1b-f6da-8d4f-83d60bd89f71	2021-05-22 13:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:36:34.853+03	2021-05-22 13:36:34.86+03	
c44563ee-cb50-2975-7b64-8fa92b1178a0	2021-05-22 13:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:36:54.853+03	2021-05-22 13:36:54.859+03	
888693be-9fa8-8a70-8050-3df7c7317122	2021-05-22 13:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:37:15.852+03	2021-05-22 13:37:15.875+03	
e28e9c59-4bf4-3172-af90-be7696219956	2021-05-22 13:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:37:35.852+03	2021-05-22 13:37:35.861+03	
f5462921-ae6b-e2e8-bdec-e89ac44ce0fc	2021-05-22 13:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:37:56.852+03	2021-05-22 13:37:56.859+03	
b1b0a70d-1fd2-8ecb-ca83-52ca42ebb00c	2021-05-22 13:38:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:38:16.852+03	2021-05-22 13:38:16.862+03	
b207b202-1959-0f24-984d-9b3b3d189891	2021-05-22 13:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:38:37.853+03	2021-05-22 13:38:37.862+03	
bd6135eb-c52e-fd13-e025-2d99b91f04da	2021-05-22 13:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:38:58.853+03	2021-05-22 13:38:58.859+03	
97fa5194-7e4c-c8a6-0504-8b0d0e513853	2021-05-22 13:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:39:19.853+03	2021-05-22 13:39:19.861+03	
3af7c900-dd0c-8e78-9c0b-7201a991ac82	2021-05-22 13:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:39:40.852+03	2021-05-22 13:39:40.86+03	
2e048654-a544-18ff-76ea-cf1bc1d38fce	2021-05-22 13:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:40:00.852+03	2021-05-22 13:40:00.865+03	
00d20e02-8db6-5157-83bf-26e7c2134dba	2021-05-22 13:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 13:40:00.853+03	2021-05-22 13:40:00.874+03	ERROR
5dc773a7-4fa7-3ee6-d70a-f1199cb01ef0	2021-05-22 13:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:40:20.852+03	2021-05-22 13:40:20.859+03	
4914ae8d-ef94-3ab7-9760-63c868be88cc	2021-05-22 13:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:40:41.853+03	2021-05-22 13:40:41.86+03	
7753b9f8-df44-5f6c-7522-69bdcb5e1bfb	2021-05-22 13:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:41:02.853+03	2021-05-22 13:41:02.861+03	
c2ea29ff-5ebc-00fa-0f46-3ef24fc100bb	2021-05-22 13:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:41:23.852+03	2021-05-22 13:41:23.859+03	
444f3004-6bc9-9378-6ce1-9b9a96e0e638	2021-05-22 13:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:41:43.852+03	2021-05-22 13:41:43.863+03	
e07dfc5c-418b-131c-2f82-cdc09dd80f31	2021-05-22 13:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:42:03.853+03	2021-05-22 13:42:03.86+03	
f2593699-1e77-86fd-3fc2-da4521ea6cbd	2021-05-22 13:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:42:23.853+03	2021-05-22 13:42:23.861+03	
537120ba-6987-cb5c-3f1f-0c8b134bcfcd	2021-05-22 13:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:42:44.853+03	2021-05-22 13:42:44.859+03	
cad370da-70e9-d3c6-bb77-33f2646d67a4	2021-05-22 13:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:43:05.852+03	2021-05-22 13:43:05.861+03	
3a3216e3-20c3-036d-0085-10d78c89a23d	2021-05-22 13:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:43:25.852+03	2021-05-22 13:43:25.889+03	
7bdee803-9389-70b4-360b-3a86f5247a28	2021-05-22 13:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:43:45.852+03	2021-05-22 13:43:45.861+03	
6b1ade27-2e86-059e-bf67-3b683750a93f	2021-05-22 13:44:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:44:06.852+03	2021-05-22 13:44:06.862+03	
70f2e181-6ed5-dc0b-5635-4b6dc061e8f9	2021-05-22 13:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:44:26.852+03	2021-05-22 13:44:26.859+03	
ecc6cb27-074e-4c0b-ad2a-2ae8c9d7d1bb	2021-05-22 13:44:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:44:46.852+03	2021-05-22 13:44:46.861+03	
98f53f12-b88d-5722-446b-7319215dbe01	2021-05-22 13:45:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:45:06.853+03	2021-05-22 13:45:06.872+03	
c9bb02d5-4e64-4ae7-3515-9cd79aaa9dde	2021-05-22 13:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:45:27.852+03	2021-05-22 13:45:27.863+03	
1e856603-ac40-abee-8918-d8ead4202bd6	2021-05-22 13:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:45:47.853+03	2021-05-22 13:45:47.861+03	
07b88d1b-b9ff-1b6e-1fc0-20b5f725a589	2021-05-22 13:46:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:46:08.853+03	2021-05-22 13:46:08.86+03	
7348b3f0-5916-f26e-6a95-bf19323a1d0e	2021-05-22 13:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:46:29.853+03	2021-05-22 13:46:29.86+03	
8c9fbfac-b108-fb6c-8162-42692dd3d042	2021-05-22 13:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:46:49.853+03	2021-05-22 13:46:49.859+03	
391d6d68-3884-9c18-1916-d64823b8f4e0	2021-05-22 13:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:47:10.852+03	2021-05-22 13:47:10.859+03	
fac2164f-2ce3-5a50-e221-cc0179ae4bb2	2021-05-22 13:47:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:47:30.854+03	2021-05-22 13:47:30.864+03	
03e4f0f8-4324-edfc-8a6b-2d41d218fcd9	2021-05-22 13:47:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:47:51.853+03	2021-05-22 13:47:51.861+03	
e9934acf-955a-28d8-4d4f-f385d98ba670	2021-05-22 13:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:48:12.852+03	2021-05-22 13:48:12.859+03	
4f2c3bf4-a5b9-827f-eea4-aa5219c68da3	2021-05-22 13:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:48:33.853+03	2021-05-22 13:48:33.86+03	
0234ea76-cb00-7228-fa64-10e9a6072af9	2021-05-22 13:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:48:55.853+03	2021-05-22 13:48:55.86+03	
1479571d-8996-1ef9-f246-22ae6765ce7f	2021-05-22 13:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:49:15.853+03	2021-05-22 13:49:15.859+03	
059f0b67-743b-bb4d-b618-aa63438f5167	2021-05-22 13:49:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:49:36.853+03	2021-05-22 13:49:36.861+03	
4afbe579-2088-5411-b3e3-0f682db899c9	2021-05-22 13:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:49:57.853+03	2021-05-22 13:49:57.864+03	
d0579c41-50ed-9341-b0c8-ae61ee5d2c32	2021-05-22 13:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:50:07.853+03	2021-05-22 13:50:07.861+03	
bc0da70f-47fb-7313-4d24-6bb3163c8d85	2021-05-22 13:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:50:28.852+03	2021-05-22 13:50:28.861+03	
5b600c41-a50a-5431-836d-8f06cd9ab9d7	2021-05-22 13:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:50:48.852+03	2021-05-22 13:50:48.859+03	
73947e13-0c76-fe4e-a56f-cbbd311d688b	2021-05-22 13:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:51:08.852+03	2021-05-22 13:51:08.86+03	
3fcd6bdf-d34c-0ed4-a7c4-ff04168290cd	2021-05-22 13:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:51:18.853+03	2021-05-22 13:51:18.859+03	
9d72419d-f484-b8d8-fb15-854d0c16cc8f	2021-05-22 13:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:51:39.852+03	2021-05-22 13:51:39.861+03	
f10c38a6-440d-0ae7-7c41-31fa5cd5d536	2021-05-22 13:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:51:59.853+03	2021-05-22 13:51:59.859+03	
d6538502-2b50-28d0-df44-11ac668db32a	2021-05-22 13:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:52:20.852+03	2021-05-22 13:52:20.858+03	
ad9c8a77-e88b-3a3f-43dd-4f4b76a93d5f	2021-05-22 13:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:52:40.853+03	2021-05-22 13:52:40.859+03	
6a2d3338-87e6-f012-7e98-5674da8381e1	2021-05-22 13:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:53:00.853+03	2021-05-22 13:53:00.86+03	
11deff87-b1b7-372c-2c94-d2a5bbd92a2d	2021-05-22 13:53:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:53:21.853+03	2021-05-22 13:53:21.86+03	
61b3506b-d0d4-ad47-743a-0b98544d0ed1	2021-05-22 13:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:53:42.852+03	2021-05-22 13:53:42.859+03	
89d49237-fefb-0abe-abc5-25e6b4cc8e3a	2021-05-22 13:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:54:02.852+03	2021-05-22 13:54:02.859+03	
07196bdf-436c-ced9-5547-84578f1574b2	2021-05-22 13:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:54:23.852+03	2021-05-22 13:54:23.86+03	
0d53c87d-5900-030d-a3e5-3b5fed62bae6	2021-05-22 13:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:54:44.852+03	2021-05-22 13:54:44.859+03	
0b1f85c2-7805-f74a-0f44-60c0588d61fd	2021-05-22 13:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:55:04.853+03	2021-05-22 13:55:04.86+03	
13d13756-61a4-b115-e86c-c155db902b7e	2021-05-22 13:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:55:25.852+03	2021-05-22 13:55:25.858+03	
9f6fbaa8-4db6-771a-e276-2567ab80f898	2021-05-22 13:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:55:45.853+03	2021-05-22 13:55:45.869+03	
38016f98-81bb-06f3-87d5-44dc788d847f	2021-05-22 13:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:56:05.853+03	2021-05-22 13:56:05.86+03	
0531023a-f537-aac3-5ac4-4f70a3c27e6e	2021-05-22 13:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:56:25.853+03	2021-05-22 13:56:25.862+03	
429283fb-b924-501d-f4d7-ec9d576d34b4	2021-05-22 13:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:56:45.853+03	2021-05-22 13:56:45.86+03	
b1fdd851-c6e3-b0c5-ac6f-6213c4c1bb26	2021-05-22 13:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:57:05.853+03	2021-05-22 13:57:05.86+03	
5e50e483-0be2-83a4-3874-39422135f2ea	2021-05-22 13:57:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:57:26.852+03	2021-05-22 13:57:26.86+03	
3d25dfd9-a9f7-1d0b-4ba8-41875b8be0c3	2021-05-22 13:57:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:57:46.854+03	2021-05-22 13:57:46.86+03	
0dac71df-6f0e-0e3b-4ecb-09cbc37f6b0d	2021-05-22 13:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:58:07.853+03	2021-05-22 13:58:07.861+03	
407f963d-cd02-ad54-fb62-6f49c0b30415	2021-05-22 13:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:58:28.852+03	2021-05-22 13:58:28.86+03	
2b3be37c-db36-825f-5e6f-e4af29ed75f6	2021-05-22 13:58:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:58:49.852+03	2021-05-22 13:58:49.859+03	
7a149e0a-4a30-9d7b-460c-f611de3f8159	2021-05-22 13:59:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:59:09.852+03	2021-05-22 13:59:09.859+03	
8b36c55f-5b7c-f8aa-462f-3446aaf66a3f	2021-05-22 13:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:59:29.853+03	2021-05-22 13:59:29.859+03	
41ecae78-0bca-83e5-b333-d7565ac99eef	2021-05-22 13:59:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:59:50.852+03	2021-05-22 13:59:50.858+03	
57dc4c46-011c-f9f6-789d-51da1ef4dca8	2021-05-22 14:00:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:00:10.853+03	2021-05-22 14:00:10.86+03	
0298af89-e1fc-cd75-0621-0d530bedaa9c	2021-05-22 14:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:00:30.853+03	2021-05-22 14:00:30.864+03	
a04d876e-4cb7-d132-3304-83c8ee0bd749	2021-05-22 14:00:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:00:51.853+03	2021-05-22 14:00:51.859+03	
11db4dd7-6b1a-6443-c0c2-e65cabf50dc5	2021-05-22 14:01:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:01:11.854+03	2021-05-22 14:01:11.86+03	
f486cdc1-c02b-1add-8db9-efad4fbcd880	2021-05-22 14:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:01:32.853+03	2021-05-22 14:01:32.863+03	
cb65b88d-ae36-511a-b693-2747ad6f0585	2021-05-22 14:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:01:52.853+03	2021-05-22 14:01:52.865+03	
90225d1f-66a6-1d73-85cc-6d1a4b435886	2021-05-22 14:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:02:12.853+03	2021-05-22 14:02:12.859+03	
ee96c94e-f335-cd80-8527-4f9761f9fc33	2021-05-22 14:02:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:02:33.853+03	2021-05-22 14:02:33.86+03	
21437e02-9a45-487c-1270-eeffb2f6c56c	2021-05-22 14:02:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:02:53.853+03	2021-05-22 14:02:53.859+03	
7c695c8f-ba18-9605-5f70-2876ea0f1f84	2021-05-22 14:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:03:15.853+03	2021-05-22 14:03:15.86+03	
58bed485-fb4f-2770-89a1-aaa341c595a5	2021-05-22 14:03:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:03:35.853+03	2021-05-22 14:03:35.863+03	
89107cff-3311-b52c-cdeb-fec35a260b01	2021-05-22 14:03:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:03:56.853+03	2021-05-22 14:03:56.859+03	
a3bc02e5-9d81-fa28-7ad7-207a61e4becd	2021-05-22 14:04:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:04:17.853+03	2021-05-22 14:04:17.864+03	
62075c76-7804-de0d-53b0-84876cf51195	2021-05-22 14:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:04:38.852+03	2021-05-22 14:04:38.865+03	
241b20a6-1c4d-1cc6-4889-6115cb571f3d	2021-05-22 14:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:04:58.853+03	2021-05-22 14:04:58.862+03	
5a5497f9-1243-89bd-b5d9-104bb0f8b7af	2021-05-22 14:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:05:19.852+03	2021-05-22 14:05:19.859+03	
7f5a5713-53ba-8712-ba94-55ed925a97c6	2021-05-22 14:05:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:05:40.852+03	2021-05-22 14:05:40.86+03	
761ed238-f42e-b3db-93c8-1a0086f354fc	2021-05-22 14:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:06:00.853+03	2021-05-22 14:06:00.859+03	
8fbc6e02-be60-0e3f-0b64-df5aeb4e21bd	2021-05-22 14:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:06:20.853+03	2021-05-22 14:06:20.859+03	
6d4b503f-3e73-795b-564d-4f15a6309235	2021-05-22 14:06:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:06:41.852+03	2021-05-22 14:06:41.859+03	
b6805ecd-e88d-4734-a50b-ec6dbaa16a1e	2021-05-22 14:07:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:07:01.852+03	2021-05-22 14:07:01.86+03	
7163d5d6-f675-1abc-0590-df75316cec55	2021-05-22 14:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:07:22.853+03	2021-05-22 14:07:22.859+03	
5168bee1-22a1-35a5-1447-c0f24bb1a592	2021-05-22 14:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:07:44.853+03	2021-05-22 14:07:44.861+03	
91438166-f92e-3708-3d7c-d0dd39f30218	2021-05-22 14:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:08:05.852+03	2021-05-22 14:08:05.859+03	
214495a5-3255-283d-4154-eb17008205de	2021-05-22 14:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:08:25.853+03	2021-05-22 14:08:25.874+03	
0df3201c-df19-3ccb-ab4b-20347b4bd570	2021-05-22 14:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:08:45.853+03	2021-05-22 14:08:45.861+03	
65d4714a-5f1e-4eab-13cb-9f2e0ae200d2	2021-05-22 14:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:09:06.853+03	2021-05-22 14:09:06.866+03	
a0734613-1b64-6984-3fe3-09c9e2bf05e4	2021-05-22 14:09:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:09:27.853+03	2021-05-22 14:09:27.869+03	
83de10a2-e65d-d60e-9e6d-562ee76513d2	2021-05-22 14:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:09:47.853+03	2021-05-22 14:09:47.861+03	
b34ef90b-8cc8-9b94-2fb9-42706a3511a1	2021-05-22 14:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 14:10:00.853+03	2021-05-22 14:10:00.862+03	ERROR
125bac9e-c84f-ecac-b45d-6bf4aee8d88a	2021-05-22 14:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:10:18.853+03	2021-05-22 14:10:18.862+03	
d80371b6-c8fe-c454-4a69-2ab73330ec61	2021-05-22 14:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:10:39.853+03	2021-05-22 14:10:39.859+03	
e6fd720c-9561-c0eb-fee8-8486030db718	2021-05-22 14:11:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:11:01.853+03	2021-05-22 14:11:01.86+03	
974a8600-a9ab-4434-e512-32807a90bec5	2021-05-22 14:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:11:22.853+03	2021-05-22 14:11:22.859+03	
9fa7e2fa-b8e1-2ca0-b157-71cd83acfc47	2021-05-22 14:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:11:42.853+03	2021-05-22 14:11:42.861+03	
1f959f37-71e8-a5b0-dd34-f33759fd9526	2021-05-22 14:12:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:12:03.852+03	2021-05-22 14:12:03.859+03	
dea9144f-9c24-37eb-dd08-86c6c9bbc6a4	2021-05-22 14:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:12:23.853+03	2021-05-22 14:12:23.86+03	
2d3c69d5-1525-d882-0bee-0d22a8e7f46a	2021-05-22 13:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:51:28.853+03	2021-05-22 13:51:28.86+03	
268cbfa6-959a-d7b1-8228-a79e71ad45d2	2021-05-22 13:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:51:49.853+03	2021-05-22 13:51:49.863+03	
8e941425-4bf6-1415-fb7c-283d992549e4	2021-05-22 13:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:52:10.852+03	2021-05-22 13:52:10.858+03	
6c043a7e-957b-ff65-e671-9472451dc03f	2021-05-22 13:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:52:30.853+03	2021-05-22 13:52:30.87+03	
6cd0813c-63e4-ff21-0ad0-b4e1ae6b315f	2021-05-22 13:52:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:52:50.853+03	2021-05-22 13:52:50.868+03	
29f4da0c-d0ae-1aed-d1f1-cb5f3f954b21	2021-05-22 13:53:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:53:11.853+03	2021-05-22 13:53:11.861+03	
1477bcaa-3615-00eb-b936-964639662bf1	2021-05-22 13:53:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:53:31.853+03	2021-05-22 13:53:31.868+03	
ee7eef7b-76f0-ed8e-f3ba-84feb2a71b59	2021-05-22 13:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:53:52.852+03	2021-05-22 13:53:52.859+03	
f5fcc51f-4c00-739b-7ffb-76f9aa0a57d3	2021-05-22 13:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:54:12.853+03	2021-05-22 13:54:12.86+03	
228b9233-903f-81b1-fead-b29501d4127a	2021-05-22 13:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:54:33.853+03	2021-05-22 13:54:33.862+03	
9288f302-ea9e-a91c-192f-45ad155af2f3	2021-05-22 13:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:54:54.852+03	2021-05-22 13:54:54.861+03	
85b3879b-126c-57b5-c165-eea0bfecef37	2021-05-22 13:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:55:15.852+03	2021-05-22 13:55:15.863+03	
effed3ec-982d-14f5-e36c-2d54ab364ae7	2021-05-22 13:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:55:35.852+03	2021-05-22 13:55:35.867+03	
8e02f740-ffee-5d9c-f508-52b66f71106e	2021-05-22 13:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:55:55.853+03	2021-05-22 13:55:55.86+03	
393973a9-206e-ddea-7ecb-f6019ec90c80	2021-05-22 13:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:56:15.853+03	2021-05-22 13:56:15.86+03	
9341b872-ead8-c7e9-652c-a63d35d32b83	2021-05-22 13:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:56:35.853+03	2021-05-22 13:56:35.859+03	
28ed3910-f8bf-e79d-1150-dd15f04f1e5c	2021-05-22 13:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:56:55.853+03	2021-05-22 13:56:55.86+03	
860a588c-9af3-2f79-f7f4-5944b9b1a447	2021-05-22 13:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:57:15.853+03	2021-05-22 13:57:15.87+03	
de7a1126-6626-d1ee-b2d7-699ccd7b0780	2021-05-22 13:57:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:57:36.852+03	2021-05-22 13:57:36.869+03	
3316e724-607c-ea1d-5ddc-95021eeb524b	2021-05-22 13:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:57:57.852+03	2021-05-22 13:57:57.863+03	
1fa077d5-d89b-7218-e989-0609836d1d3e	2021-05-22 13:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:58:17.853+03	2021-05-22 13:58:17.861+03	
32f38530-cfc4-3326-8c56-f84f6e0ea2ec	2021-05-22 13:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:58:38.853+03	2021-05-22 13:58:38.863+03	
0d46a99a-e8d9-ec7f-48e1-66bbd5f480ef	2021-05-22 13:58:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:58:59.852+03	2021-05-22 13:58:59.877+03	
b2f3ca2b-c753-eb55-23ce-d0fede78b606	2021-05-22 13:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:59:19.852+03	2021-05-22 13:59:19.86+03	
45f131c2-4d26-47ea-5c71-ca59a855c737	2021-05-22 13:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 13:59:39.853+03	2021-05-22 13:59:39.867+03	
64dac5d5-547c-71c8-87f6-aec8e6e11710	2021-05-22 14:00:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:00:00.852+03	2021-05-22 14:00:00.873+03	
40caf0ca-8bdc-dfcb-754b-186bdb7e27c5	2021-05-22 14:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 14:00:00.853+03	2021-05-22 14:00:00.885+03	ERROR
83d1a464-3bb4-665b-32c5-551abed7cbd9	2021-05-22 14:00:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:00:20.853+03	2021-05-22 14:00:20.86+03	
3a347ba5-c044-47c9-d957-92416bba30d2	2021-05-22 14:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:00:40.853+03	2021-05-22 14:00:40.862+03	
679aab1b-7276-adda-be8b-ed56624b1048	2021-05-22 14:01:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:01:01.853+03	2021-05-22 14:01:01.86+03	
b3c66f7a-1b10-7758-44cd-ab8b4a364382	2021-05-22 14:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:01:22.853+03	2021-05-22 14:01:22.865+03	
631193a6-dca2-840a-b700-fbcd7ba50a12	2021-05-22 14:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:01:42.853+03	2021-05-22 14:01:42.866+03	
437312e2-1ce7-0913-0b7d-235cbbd654c1	2021-05-22 14:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:02:02.853+03	2021-05-22 14:02:02.863+03	
4bc23017-2db4-0e8f-e64b-fe402b3a7c0c	2021-05-22 14:02:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:02:23.852+03	2021-05-22 14:02:23.859+03	
61a5b249-9b25-701a-ed6b-1f672642ff1f	2021-05-22 14:02:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:02:43.853+03	2021-05-22 14:02:43.859+03	
596528f3-48a0-1a65-3ec5-40e66d041e93	2021-05-22 14:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:03:04.853+03	2021-05-22 14:03:04.86+03	
c5cf31ef-78cd-e372-cc62-8ebef890e100	2021-05-22 14:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:03:25.853+03	2021-05-22 14:03:25.86+03	
6522b4fd-75f0-b66e-93a6-15ccc684eaff	2021-05-22 14:03:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:03:46.852+03	2021-05-22 14:03:46.868+03	
c65b5d39-71a2-859f-f2e0-5affe7364b06	2021-05-22 14:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:04:07.853+03	2021-05-22 14:04:07.86+03	
691ddcfa-f115-e188-7aa2-32eb56c0912c	2021-05-22 14:04:27.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:04:27.854+03	2021-05-22 14:04:27.864+03	
4670bfc2-1f86-1b9a-aed1-4229e8a35810	2021-05-22 14:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:04:48.852+03	2021-05-22 14:04:48.86+03	
ae2353b6-e41d-ff4c-496e-21d1273fa298	2021-05-22 14:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:05:09.852+03	2021-05-22 14:05:09.859+03	
8b8c5b07-4f0a-dcf2-fe1e-8b703f8be986	2021-05-22 14:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:05:29.853+03	2021-05-22 14:05:29.859+03	
646e749d-47a1-98f1-3fb6-2f5a11d44b7f	2021-05-22 14:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:05:50.852+03	2021-05-22 14:05:50.862+03	
55342223-bc50-aa6d-4216-7e8b33403186	2021-05-22 14:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:06:10.853+03	2021-05-22 14:06:10.866+03	
ace6f645-2f28-5557-f6da-ada5c76e8179	2021-05-22 14:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:06:30.853+03	2021-05-22 14:06:30.861+03	
65cd6c5a-7b2d-6e02-0c1d-67ae0a8bfc9c	2021-05-22 14:06:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:06:51.852+03	2021-05-22 14:06:51.859+03	
a6de47df-f83a-8e4a-c4da-75b40ac13dc5	2021-05-22 14:07:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:07:11.854+03	2021-05-22 14:07:11.865+03	
02fa1f48-95d6-47d2-2301-b8b308d8ae65	2021-05-22 14:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:07:33.853+03	2021-05-22 14:07:33.861+03	
8e4056df-52fe-c58b-828b-91bb9c7fc680	2021-05-22 14:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:07:54.853+03	2021-05-22 14:07:54.863+03	
c2a6fbaa-3f27-02c5-bf27-24adfb4c3e1e	2021-05-22 14:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:08:15.852+03	2021-05-22 14:08:15.861+03	
90b0c837-b61d-c4f1-ecf6-cbdca030f88a	2021-05-22 14:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:08:35.853+03	2021-05-22 14:08:35.86+03	
2bb6ebc3-a7da-ac98-1c27-86ea903fc95f	2021-05-22 14:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:08:56.852+03	2021-05-22 14:08:56.864+03	
fc040ab5-34ec-b60f-c016-6fb12b44bf93	2021-05-22 14:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:09:17.852+03	2021-05-22 14:09:17.859+03	
c7898140-b197-e3db-12d0-c13126193e61	2021-05-22 14:09:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:09:37.853+03	2021-05-22 14:09:37.862+03	
d9427e67-9e0d-6f7d-8549-09733a7d99de	2021-05-22 14:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:09:58.853+03	2021-05-22 14:09:58.859+03	
52734ab5-5aac-2b07-dea1-1e9530cda8c4	2021-05-22 14:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:10:08.853+03	2021-05-22 14:10:08.859+03	
c0380191-0d53-cd5a-01cb-68d9e6434e89	2021-05-22 14:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:10:28.853+03	2021-05-22 14:10:28.86+03	
8f70ab5c-9317-9cfa-75ce-aa4ca384443f	2021-05-22 14:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:10:50.853+03	2021-05-22 14:10:50.859+03	
da69dafb-0faf-0e2a-acc8-9557e75d5123	2021-05-22 14:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:11:12.853+03	2021-05-22 14:11:12.863+03	
c3f22256-cf6e-7ff5-b980-3929c4ed119f	2021-05-22 14:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:11:32.853+03	2021-05-22 14:11:32.863+03	
decd07f2-6d78-95af-3dbd-544f276f20bc	2021-05-22 14:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:11:53.852+03	2021-05-22 14:11:53.859+03	
ca3ef12c-ee61-8db0-1f79-f7cb96352d84	2021-05-22 14:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:12:13.852+03	2021-05-22 14:12:13.859+03	
14b1041f-ace7-2a37-a170-80d91a132444	2021-05-22 14:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:12:33.853+03	2021-05-22 14:12:33.871+03	
6ba0391c-ec3b-28e8-e6e1-37d30a02f265	2021-05-22 14:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:12:53.853+03	2021-05-22 14:12:53.859+03	
6ad2ec34-3de6-af46-c4ad-b46830838798	2021-05-22 14:13:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:13:14.853+03	2021-05-22 14:13:14.861+03	
7832e3eb-f3ef-99f0-1971-aa037463174a	2021-05-22 14:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:13:35.853+03	2021-05-22 14:13:35.859+03	
94beee9e-f79d-1989-8048-8742cc9877cd	2021-05-22 14:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:13:55.853+03	2021-05-22 14:13:55.861+03	
b2d29b87-dabe-68c2-07d1-a5f2e948e2d2	2021-05-22 14:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:14:15.853+03	2021-05-22 14:14:15.871+03	
346ee980-5b0e-932d-8441-95eec524fb39	2021-05-22 14:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:14:35.853+03	2021-05-22 14:14:35.86+03	
95a93dcb-7b14-13e0-c104-6d79c88843fa	2021-05-22 14:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:14:56.852+03	2021-05-22 14:14:56.867+03	
236a5f4c-0953-1d6e-63c9-5c372728bf95	2021-05-22 14:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:15:16.852+03	2021-05-22 14:15:16.859+03	
1481f369-2e2f-5f66-884e-5b716540a22e	2021-05-22 14:15:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:15:36.852+03	2021-05-22 14:15:36.863+03	
7ff76641-6648-79ad-e872-093a12e9badc	2021-05-22 14:15:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:15:56.853+03	2021-05-22 14:15:56.86+03	
e210a0cb-ffdf-3cab-7f52-afbc06cf289f	2021-05-22 14:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:16:18.852+03	2021-05-22 14:16:18.86+03	
46cd0638-c838-504a-234d-a255ad32979d	2021-05-22 14:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:16:38.853+03	2021-05-22 14:16:38.859+03	
2c17da09-8c0c-6360-8961-7013805e5e2f	2021-05-22 14:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:17:00.853+03	2021-05-22 14:17:00.859+03	
8d8cb82e-9c46-98c5-2334-8fe4f8d60d6f	2021-05-22 14:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:17:20.853+03	2021-05-22 14:17:20.865+03	
fbe9538e-30d1-17bb-8f7a-c525596d7899	2021-05-22 14:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:17:40.853+03	2021-05-22 14:17:40.861+03	
55d2b947-cd34-c6d5-476f-e53d6caa55a0	2021-05-22 14:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:18:00.853+03	2021-05-22 14:18:00.861+03	
7463d292-7de4-7cc1-f235-629fa533b511	2021-05-22 14:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:18:21.853+03	2021-05-22 14:18:21.86+03	
962be5a9-31d2-ff96-0370-cbb916c261f5	2021-05-22 14:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:18:42.853+03	2021-05-22 14:18:42.86+03	
e59c77ef-1b49-ce2f-0653-17c81b27f249	2021-05-22 14:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:19:02.853+03	2021-05-22 14:19:02.861+03	
e363a44f-44f1-885e-1732-24e1b34a4eaf	2021-05-22 14:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:19:22.853+03	2021-05-22 14:19:22.861+03	
7070db8c-8871-72c5-d2ff-ba7f8bb88020	2021-05-22 14:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:19:43.852+03	2021-05-22 14:19:43.859+03	
61589f7f-fc98-07b7-c48a-47d6f1a27f52	2021-05-22 14:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 14:20:00.852+03	2021-05-22 14:20:00.872+03	ERROR
373e2301-e6d0-92b7-d0a9-0904001a07b1	2021-05-22 14:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:20:14.853+03	2021-05-22 14:20:14.86+03	
4e02107b-3f77-10c5-d81d-92119a57f3d3	2021-05-22 14:20:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:20:36.853+03	2021-05-22 14:20:36.86+03	
a706b1f0-3fd1-8304-484e-56ad38f0af09	2021-05-22 14:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:20:57.853+03	2021-05-22 14:20:57.86+03	
aa72bf2e-9b1c-ab46-581e-adc2b3fa7230	2021-05-22 14:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:21:18.852+03	2021-05-22 14:21:18.862+03	
e5380bdd-9f1b-f18b-983b-28a171540619	2021-05-22 14:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:21:38.853+03	2021-05-22 14:21:38.86+03	
18f86594-8355-4801-ae5b-8371db52683a	2021-05-22 14:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:21:58.853+03	2021-05-22 14:21:58.86+03	
bd82adc2-9c60-03da-d990-e260e29b83be	2021-05-22 14:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:22:19.852+03	2021-05-22 14:22:19.86+03	
b306da4b-b69e-2c51-56d9-cf9c7ede7af4	2021-05-22 14:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:22:40.852+03	2021-05-22 14:22:40.859+03	
838d2e96-d1da-dd06-e635-be24a2498a95	2021-05-22 14:23:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:23:01.853+03	2021-05-22 14:23:01.875+03	
6dc48c01-7fe2-df29-f3f1-b0487425fad0	2021-05-22 14:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:23:22.852+03	2021-05-22 14:23:22.86+03	
2a5b5ca0-9047-892b-3263-138915f59da9	2021-05-22 14:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:23:42.852+03	2021-05-22 14:23:42.861+03	
36f22eae-419a-5aa7-b273-79dcda82309e	2021-05-22 14:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:24:02.853+03	2021-05-22 14:24:02.864+03	
be901a8c-673b-3e24-9cf9-eb560fc49906	2021-05-22 14:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:24:23.853+03	2021-05-22 14:24:23.86+03	
ba023d6d-c23c-6273-e987-647d594c7a5c	2021-05-22 14:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:24:45.852+03	2021-05-22 14:24:45.86+03	
4331e9b5-f9e9-407e-2eec-8d7f5e78233e	2021-05-22 14:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:25:05.853+03	2021-05-22 14:25:05.872+03	
6cf9fdc9-f6ee-e624-52f5-df8e81fa2474	2021-05-22 14:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:25:27.853+03	2021-05-22 14:25:27.871+03	
f55fde1f-38fd-4f09-b23b-7c38cad439e8	2021-05-22 14:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:25:47.853+03	2021-05-22 14:25:47.86+03	
6deee49a-1246-516c-caaa-e0312f2a2565	2021-05-22 14:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:26:08.853+03	2021-05-22 14:26:08.866+03	
bd86db50-bcfc-5ab3-03c8-01f2c7fed89d	2021-05-22 14:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:26:29.853+03	2021-05-22 14:26:29.861+03	
ab240331-0d02-8a22-65ae-9bd458a58635	2021-05-22 14:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:26:50.852+03	2021-05-22 14:26:50.859+03	
d54d4e88-4635-b2c2-86f0-a5b30741ed40	2021-05-22 14:27:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:27:11.853+03	2021-05-22 14:27:11.861+03	
2c32b22c-0ca2-dc14-461a-1c27fcfe5c0d	2021-05-22 14:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:27:32.853+03	2021-05-22 14:27:32.861+03	
b5912b32-3feb-3ed0-f5e8-69abe7f3ef48	2021-05-22 14:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:27:53.852+03	2021-05-22 14:27:53.86+03	
e4e32a7f-3a8a-842c-53ce-cd8d6f729fec	2021-05-22 14:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:28:13.853+03	2021-05-22 14:28:13.859+03	
e32df670-4b66-9af6-c77b-d444bd7b0066	2021-05-22 14:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:28:33.853+03	2021-05-22 14:28:33.859+03	
1e35e6dc-011e-c097-81ea-2d49acfbaaad	2021-05-22 14:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:28:54.852+03	2021-05-22 14:28:54.86+03	
09c6e07d-c9e5-ffe0-0ca5-b8bd4e830282	2021-05-22 14:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:29:14.852+03	2021-05-22 14:29:14.859+03	
78d57f92-d220-d55a-4f42-0286ca7a2c9b	2021-05-22 14:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:29:34.853+03	2021-05-22 14:29:34.862+03	
977b4347-6547-9e68-9488-8a67ad962510	2021-05-22 14:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:29:55.852+03	2021-05-22 14:29:55.87+03	
1e4f86d4-7bd0-590c-e313-73f138568f9b	2021-05-22 14:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:30:05.853+03	2021-05-22 14:30:05.86+03	
57197704-5d61-147d-ca3f-6d79834d598e	2021-05-22 14:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:30:26.852+03	2021-05-22 14:30:26.859+03	
c222a6d8-9648-001b-44a8-1f18e8764a6a	2021-05-22 14:30:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:30:46.854+03	2021-05-22 14:30:46.864+03	
fae6c7be-26c5-50f1-2986-dc86784e1bae	2021-05-22 14:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:31:07.853+03	2021-05-22 14:31:07.859+03	
78e1aadd-662e-0c89-c704-2b2357acd9b2	2021-05-22 14:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:31:28.853+03	2021-05-22 14:31:28.861+03	
816dc847-d610-fd39-6c99-d31e5fc8a9f6	2021-05-22 14:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:31:50.853+03	2021-05-22 14:31:50.86+03	
cc6e1d9e-3829-6de3-68c8-b138d7d8938b	2021-05-22 14:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:32:10.853+03	2021-05-22 14:32:10.859+03	
ef9db0e6-39b3-0e62-486b-52a3dad02bfe	2021-05-22 14:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:32:30.853+03	2021-05-22 14:32:30.863+03	
718bc44a-72ee-c978-2f6e-a2d5fca0de54	2021-05-22 14:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:32:50.853+03	2021-05-22 14:32:50.864+03	
f6fbce00-5c64-ca8d-1770-2eb201a5749e	2021-05-22 14:33:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:33:11.853+03	2021-05-22 14:33:11.858+03	
9fa14708-f8de-0a14-f1bd-b9ef29b0ce00	2021-05-22 14:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:33:31.853+03	2021-05-22 14:33:31.861+03	
76e5f6d8-9c88-b199-f525-2bab86c00bf9	2021-05-22 14:12:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:12:43.853+03	2021-05-22 14:12:43.86+03	
a4185c21-37d8-8f68-c074-996ca1259a29	2021-05-22 14:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:13:04.852+03	2021-05-22 14:13:04.863+03	
c4467003-7308-9201-f85c-90ce7b9eb1ec	2021-05-22 14:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:13:25.853+03	2021-05-22 14:13:25.859+03	
0cda6e1f-180c-d149-5e42-0f94c7a2fd3c	2021-05-22 14:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:13:45.853+03	2021-05-22 14:13:45.859+03	
9e545d4a-e2ce-441f-ce02-a4061d6f5b97	2021-05-22 14:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:14:05.853+03	2021-05-22 14:14:05.86+03	
7e4b64da-7c55-cfe4-f4a3-bf236c3817d3	2021-05-22 14:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:14:25.853+03	2021-05-22 14:14:25.859+03	
3c619fe9-4811-ba5b-2aa6-046c80c98f87	2021-05-22 14:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:14:45.853+03	2021-05-22 14:14:45.859+03	
019e30ce-6ba7-f5be-5f69-04de8a93c84d	2021-05-22 14:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:15:06.852+03	2021-05-22 14:15:06.859+03	
6d1fb48e-14bb-c553-2834-fa0026a7f498	2021-05-22 14:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:15:26.852+03	2021-05-22 14:15:26.859+03	
22ba1eec-150a-97be-5a58-689c41bb2c6d	2021-05-22 14:15:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:15:46.852+03	2021-05-22 14:15:46.86+03	
18489644-da45-c2e0-f8e3-609a1f32489b	2021-05-22 14:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:16:07.853+03	2021-05-22 14:16:07.859+03	
541730cc-3d24-0e1e-c6e9-1d050e6bb117	2021-05-22 14:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:16:28.853+03	2021-05-22 14:16:28.86+03	
d3f1aa3c-61f4-23e0-2313-c8fae2c50490	2021-05-22 14:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:16:49.853+03	2021-05-22 14:16:49.859+03	
d9548b45-f325-7fb5-1530-957f102f9f67	2021-05-22 14:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:17:10.853+03	2021-05-22 14:17:10.872+03	
b8b040c1-f280-10a6-bb74-0f512494d6e5	2021-05-22 14:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:17:30.853+03	2021-05-22 14:17:30.859+03	
5ddb5777-ac8c-cf01-0eeb-ff3afa2c9288	2021-05-22 14:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:17:50.853+03	2021-05-22 14:17:50.86+03	
46dc86fa-bd2c-7394-0a33-314dec0eb303	2021-05-22 14:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:18:11.852+03	2021-05-22 14:18:11.859+03	
eca24a86-d1ab-2ec4-84ed-c37c2c2467f2	2021-05-22 14:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:18:32.853+03	2021-05-22 14:18:32.86+03	
7e49d848-328d-f003-72df-e024da6b62e3	2021-05-22 14:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:18:52.853+03	2021-05-22 14:18:52.86+03	
9144cfa5-3f53-0578-70c0-7a104f9d7f50	2021-05-22 14:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:19:12.853+03	2021-05-22 14:19:12.859+03	
1770153a-d5b9-fc3d-ea1f-022666c99c00	2021-05-22 14:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:19:32.853+03	2021-05-22 14:19:32.86+03	
7e6fbd2d-7f84-8f44-5057-a034f28d4a21	2021-05-22 14:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:19:53.852+03	2021-05-22 14:19:53.858+03	
ab446087-780f-2f5f-a374-9eb835692dfa	2021-05-22 14:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:20:03.853+03	2021-05-22 14:20:03.866+03	
a3ec49a6-0692-feaa-b29a-71b692f512d5	2021-05-22 14:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:20:25.853+03	2021-05-22 14:20:25.87+03	
d2a28395-b79d-920c-1264-bc2a1694efb6	2021-05-22 14:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:20:46.853+03	2021-05-22 14:20:46.86+03	
d138a9a0-edbf-243e-b141-3df3e78a2252	2021-05-22 14:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:21:08.852+03	2021-05-22 14:21:08.861+03	
f3c4edc2-9b26-1f56-facf-2c64e2df6f1b	2021-05-22 14:21:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:21:28.853+03	2021-05-22 14:21:28.865+03	
b575289c-aef8-6461-0a63-bb33d02fa4b7	2021-05-22 14:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:21:48.853+03	2021-05-22 14:21:48.861+03	
f9998465-4a57-d379-f7cb-fc1f0674ea88	2021-05-22 14:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:22:08.853+03	2021-05-22 14:22:08.865+03	
a40107fc-c323-dfd9-0dcd-72e37e152d60	2021-05-22 14:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:22:29.853+03	2021-05-22 14:22:29.859+03	
bdba4a14-591b-69df-dd19-d42253638301	2021-05-22 14:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:22:50.853+03	2021-05-22 14:22:50.86+03	
be966694-5ec5-4253-8e65-4d338c20c99d	2021-05-22 14:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:23:12.852+03	2021-05-22 14:23:12.858+03	
69725af1-0403-d070-48b0-5b554c778ef9	2021-05-22 14:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:23:32.852+03	2021-05-22 14:23:32.861+03	
682cf24b-2f2b-6ca6-8bbe-d5f63d2cf3fe	2021-05-22 14:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:23:52.853+03	2021-05-22 14:23:52.859+03	
80e7e2b5-5f78-d9c5-f933-9baeb44a1b24	2021-05-22 14:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:24:13.852+03	2021-05-22 14:24:13.859+03	
77035b10-0930-9013-f78f-52795be4e3a0	2021-05-22 14:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:24:34.853+03	2021-05-22 14:24:34.859+03	
c90f0144-aa1a-dcfe-d2e2-4242f7b9aed3	2021-05-22 14:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:24:55.852+03	2021-05-22 14:24:55.859+03	
996900c1-06c3-aa84-6dce-91c78a525727	2021-05-22 14:25:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:25:16.853+03	2021-05-22 14:25:16.861+03	
300b17e1-1853-a8b8-f57a-d6652704ed40	2021-05-22 14:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:25:37.853+03	2021-05-22 14:25:37.86+03	
5db55751-e9e5-ede9-64f8-75a825899e62	2021-05-22 14:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:25:58.852+03	2021-05-22 14:25:58.923+03	
9a3d6d9b-8eec-ab0e-2665-a7372c064c6f	2021-05-22 14:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:26:19.853+03	2021-05-22 14:26:19.873+03	
328011eb-f61e-e13c-19a6-46d92a7e3f9d	2021-05-22 14:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:26:40.852+03	2021-05-22 14:26:40.861+03	
aeae2a06-a078-700c-d6bc-fa6d0f3999a1	2021-05-22 14:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:27:00.853+03	2021-05-22 14:27:00.86+03	
723fee9e-6f2e-884c-b560-85bfb960602c	2021-05-22 14:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:27:22.852+03	2021-05-22 14:27:22.859+03	
c1830176-ab5d-900d-a578-bb04c4592809	2021-05-22 14:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:27:42.853+03	2021-05-22 14:27:42.859+03	
00ef2726-7fc0-2deb-7be2-e60b89bf54cd	2021-05-22 14:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:28:03.852+03	2021-05-22 14:28:03.859+03	
3f7f4188-82a4-5431-4187-5104a7d09d90	2021-05-22 14:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:28:23.853+03	2021-05-22 14:28:23.861+03	
1fefeb17-e367-7307-18fa-07df62e56d21	2021-05-22 14:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:28:44.852+03	2021-05-22 14:28:44.859+03	
738fd968-b61e-08a5-a14f-45c82cc55638	2021-05-22 14:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:29:04.852+03	2021-05-22 14:29:04.86+03	
e9c97b96-749d-bd09-7749-ed8699277ef9	2021-05-22 14:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:29:24.853+03	2021-05-22 14:29:24.867+03	
f6bbe456-43f8-055b-a724-fe7a5faf8520	2021-05-22 14:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:29:44.853+03	2021-05-22 14:29:44.859+03	
e369cc4d-29d8-b93b-5dfc-88b59f66eb78	2021-05-22 14:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 14:30:00.853+03	2021-05-22 14:30:00.858+03	ERROR
e61d6d77-ec1b-6b89-55b5-479ef76be1b3	2021-05-22 14:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:30:16.852+03	2021-05-22 14:30:16.86+03	
118850d1-d670-4f3b-e449-44b73515ef48	2021-05-22 14:30:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:30:36.852+03	2021-05-22 14:30:36.876+03	
f36c562f-29b2-5602-3207-1cc9fad09f30	2021-05-22 14:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:30:57.853+03	2021-05-22 14:30:57.863+03	
7ff0c931-a907-2a60-9828-860b414dee22	2021-05-22 14:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:31:17.853+03	2021-05-22 14:31:17.871+03	
56d8858d-38da-7b5f-290a-4ef8c80d4bef	2021-05-22 14:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:31:39.853+03	2021-05-22 14:31:39.859+03	
29fa7de7-7913-7cac-20c9-12e6b3742c2a	2021-05-22 14:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:32:00.853+03	2021-05-22 14:32:00.868+03	
a1682579-affe-6aee-66c0-84f36796d027	2021-05-22 14:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:32:20.853+03	2021-05-22 14:32:20.859+03	
2f21f3ce-4a7b-f92d-8617-bc943af9847c	2021-05-22 14:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:32:40.853+03	2021-05-22 14:32:40.86+03	
a7104c21-6613-464f-519d-dbff82abe290	2021-05-22 14:33:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:33:01.852+03	2021-05-22 14:33:01.859+03	
12d5d23b-3b45-4a81-1765-d59dedbf5f58	2021-05-22 14:33:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:33:21.853+03	2021-05-22 14:33:21.86+03	
be3dca05-dc43-f813-d6d9-32f38860bdf9	2021-05-22 14:33:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:33:41.853+03	2021-05-22 14:33:41.862+03	
74916ea6-2abd-dbd7-1c94-a2e63ef68245	2021-05-22 14:33:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:33:51.853+03	2021-05-22 14:33:51.872+03	
9a31d64f-3a39-d4ee-e625-62cc93f80d33	2021-05-22 14:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:34:11.853+03	2021-05-22 14:34:11.861+03	
24126bbd-62c1-f76c-a06f-06ef71ac688b	2021-05-22 14:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:34:32.852+03	2021-05-22 14:34:32.859+03	
7afd6982-1bde-73bb-16c5-fde17573070f	2021-05-22 14:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:34:52.853+03	2021-05-22 14:34:52.86+03	
623d6dac-7641-b079-a390-0afd5c0219b1	2021-05-22 14:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:35:13.853+03	2021-05-22 14:35:13.863+03	
90a81a79-2ef0-c0ef-3a69-dac433eec44f	2021-05-22 14:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:35:33.853+03	2021-05-22 14:35:33.862+03	
7af1b6a5-58f7-d7aa-3b94-c071bfbcf7ac	2021-05-22 14:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:35:53.853+03	2021-05-22 14:35:53.859+03	
76e8f8e7-4115-01d0-55eb-2c4dc8c29214	2021-05-22 14:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:36:13.853+03	2021-05-22 14:36:13.86+03	
be55b471-5638-6150-7c84-1292bcfcfb5d	2021-05-22 14:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:36:34.852+03	2021-05-22 14:36:34.86+03	
e648e98e-b370-bca9-aa5d-41d90791af8a	2021-05-22 14:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:36:54.852+03	2021-05-22 14:36:54.86+03	
48930955-2048-ca09-cb9e-c7f0c7c09d97	2021-05-22 14:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:37:15.853+03	2021-05-22 14:37:15.859+03	
1734f838-beed-e4d6-18dc-6d54d9cdbf3f	2021-05-22 14:37:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:37:36.852+03	2021-05-22 14:37:36.859+03	
647d0b06-f732-07b0-5f3c-6afffbdfdeab	2021-05-22 14:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:37:56.853+03	2021-05-22 14:37:56.859+03	
582ea5c8-aaaa-0aca-fb80-018f3a21e6f3	2021-05-22 14:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:38:17.853+03	2021-05-22 14:38:17.863+03	
882204d7-2543-edeb-25d4-1913cd8cc195	2021-05-22 14:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:38:37.853+03	2021-05-22 14:38:37.86+03	
eacb0717-fa9d-6675-31e2-2092661c7827	2021-05-22 14:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:38:58.852+03	2021-05-22 14:38:58.86+03	
4f787c4e-2986-9cca-83a4-9bd7a17a25ab	2021-05-22 14:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:39:18.853+03	2021-05-22 14:39:18.861+03	
1cd025c8-7dce-faff-31d2-4ab6148b32eb	2021-05-22 14:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:39:39.853+03	2021-05-22 14:39:39.86+03	
29614a82-cc7b-42a3-f4bb-efdc16ecabf4	2021-05-22 14:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 14:40:00.852+03	2021-05-22 14:40:00.86+03	ERROR
79a489b8-3199-cf33-51d3-58d32a6bc507	2021-05-22 14:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:40:11.853+03	2021-05-22 14:40:11.868+03	
7084023c-7da9-7a09-43f4-e005ac8f9dc2	2021-05-22 14:40:32.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:40:32.858+03	2021-05-22 14:40:32.864+03	
8e38a486-7858-5d32-d03f-8b571a26dc8c	2021-05-22 14:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:40:53.853+03	2021-05-22 14:40:53.861+03	
c046983a-c3e5-6d47-3982-b1a932d501aa	2021-05-22 14:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:41:13.853+03	2021-05-22 14:41:13.862+03	
95e40cb0-2aae-8382-9110-ce63eac0e29d	2021-05-22 14:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:41:33.853+03	2021-05-22 14:41:33.861+03	
8bdff095-421e-0743-63c9-57fc10f10b7b	2021-05-22 14:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:41:53.853+03	2021-05-22 14:41:53.863+03	
a10bdd41-be58-ab81-88bc-b826b981838f	2021-05-22 14:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:42:15.853+03	2021-05-22 14:42:15.86+03	
89466395-edba-3b87-ebf8-225453236e61	2021-05-22 14:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:42:35.853+03	2021-05-22 14:42:35.859+03	
54bb059f-1ba2-e105-a95f-f0516034c0a6	2021-05-22 14:42:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:42:56.854+03	2021-05-22 14:42:56.86+03	
65aa6003-341d-d3a9-cea0-4203d1ca7f6e	2021-05-22 14:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:43:17.852+03	2021-05-22 14:43:17.859+03	
aa3aa54a-0edf-467e-bdc9-6103f40a56e7	2021-05-22 14:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:43:37.852+03	2021-05-22 14:43:37.859+03	
95b9df3c-e423-efd8-e054-65a0aad617e1	2021-05-22 14:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:43:57.852+03	2021-05-22 14:43:57.859+03	
e4e5dd41-b9cf-596c-1e37-5298db3b7aa1	2021-05-22 14:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:44:17.853+03	2021-05-22 14:44:17.863+03	
a9975968-ea3f-c3ce-860e-22fabc041a01	2021-05-22 14:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:44:38.853+03	2021-05-22 14:44:38.86+03	
edeebd69-e85d-4eac-f151-a89ade7902d0	2021-05-22 14:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:44:59.852+03	2021-05-22 14:44:59.873+03	
4768f733-708d-8e79-ee6f-b4c3a2c93c19	2021-05-22 14:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:45:19.853+03	2021-05-22 14:45:19.86+03	
0d037857-7398-996e-08ba-64d377f43d29	2021-05-22 14:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:45:39.853+03	2021-05-22 14:45:39.859+03	
44df7a86-ec53-ef61-2406-8ac176a92182	2021-05-22 14:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:46:01.853+03	2021-05-22 14:46:01.904+03	
5767c49b-df6f-15f9-c671-0409c7cec703	2021-05-22 14:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:46:22.852+03	2021-05-22 14:46:22.86+03	
a2e36ae0-4b81-fe2d-cdb0-031bb63df6fb	2021-05-22 14:46:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:46:42.852+03	2021-05-22 14:46:42.859+03	
d32e7eaa-bc05-8c5a-175f-2f63a9b0083d	2021-05-22 14:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:47:02.853+03	2021-05-22 14:47:02.859+03	
09e66023-8b42-550c-8f7d-fecf69179119	2021-05-22 14:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:47:23.853+03	2021-05-22 14:47:23.862+03	
e0f5a671-62a4-f06f-4fc5-5086c9aa6e95	2021-05-22 14:47:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:47:43.853+03	2021-05-22 14:47:43.861+03	
52b491be-cb93-76b7-b4ac-9ba419bd9c0d	2021-05-22 14:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:48:04.852+03	2021-05-22 14:48:04.859+03	
8a382446-e1d3-a481-1f86-e1bed8805723	2021-05-22 14:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:48:24.852+03	2021-05-22 14:48:24.859+03	
0acd657d-937c-b757-2b6f-5151bbf1a3f9	2021-05-22 14:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:48:45.853+03	2021-05-22 14:48:45.859+03	
db67ff94-09d4-46a0-d133-a4532d172ae7	2021-05-22 14:49:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:49:06.853+03	2021-05-22 14:49:06.867+03	
cbf0d125-7d90-a235-2465-5c4920432ab8	2021-05-22 14:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:49:27.852+03	2021-05-22 14:49:27.866+03	
d04535be-ee7a-ac18-0bbe-2f18ffc8274d	2021-05-22 14:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:49:47.853+03	2021-05-22 14:49:47.862+03	
3ce3eac7-a2f3-dd55-2412-a4fb579b3925	2021-05-22 14:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 14:50:00.853+03	2021-05-22 14:50:00.862+03	ERROR
03245815-160a-ca28-735c-aa01debd0a28	2021-05-22 14:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:50:17.853+03	2021-05-22 14:50:17.861+03	
9ef18688-cf0d-43ed-8920-21e34d80ea0f	2021-05-22 14:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:50:38.852+03	2021-05-22 14:50:38.859+03	
1eb095fe-c3b0-020d-f09c-be8c09413139	2021-05-22 14:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:50:59.852+03	2021-05-22 14:50:59.859+03	
54f57a8b-e613-c572-1d68-4dc3893a88c7	2021-05-22 14:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:51:19.853+03	2021-05-22 14:51:19.86+03	
8417aed4-050b-3a15-54ce-f08d0b4bf788	2021-05-22 14:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:51:40.852+03	2021-05-22 14:51:40.86+03	
3bb11fd3-fdd0-2319-2e52-55bf1af75d82	2021-05-22 14:52:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:52:01.852+03	2021-05-22 14:52:01.859+03	
cf7ecc17-ff70-df53-8f98-7255008754f2	2021-05-22 14:52:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:52:21.852+03	2021-05-22 14:52:21.86+03	
32bb115d-341d-68dc-64d9-3ffd3f3c9c72	2021-05-22 14:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:52:42.852+03	2021-05-22 14:52:42.866+03	
30b92e4f-57d9-cfdd-eeea-9d71a68e9fd6	2021-05-22 14:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:53:03.852+03	2021-05-22 14:53:03.862+03	
f85c18b9-dafa-4886-c211-a1e906cd2ea4	2021-05-22 14:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:53:24.852+03	2021-05-22 14:53:24.875+03	
3b1adcd5-ecf2-ca9a-e6ee-992976720077	2021-05-22 14:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:53:44.853+03	2021-05-22 14:53:44.862+03	
5f47e5c0-2bd0-8428-934e-c55a0f8f5190	2021-05-22 14:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:54:05.852+03	2021-05-22 14:54:05.859+03	
ad378a18-4151-7f07-b86c-49e3731f3556	2021-05-22 14:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:54:25.853+03	2021-05-22 14:54:25.86+03	
63dc7e27-27db-4685-ccc5-cbba6c8b224a	2021-05-22 14:54:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:54:45.853+03	2021-05-22 14:54:45.864+03	
487e0c9e-8447-a5a5-2257-8f3d27ae4830	2021-05-22 14:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:34:01.853+03	2021-05-22 14:34:01.929+03	
3b9ded68-d8db-fff7-2766-fd821e7bacab	2021-05-22 14:34:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:34:21.854+03	2021-05-22 14:34:21.86+03	
c36c94d8-cb68-17ae-6e81-999527c35f05	2021-05-22 14:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:34:42.853+03	2021-05-22 14:34:42.862+03	
f710601a-a518-4fdd-552c-8f7aac109ff7	2021-05-22 14:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:35:03.853+03	2021-05-22 14:35:03.86+03	
c13f7bbb-acfe-f193-2acc-a22d10f053fb	2021-05-22 14:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:35:23.853+03	2021-05-22 14:35:23.862+03	
f2f99b49-19bf-ca8e-bb85-6af04851f885	2021-05-22 14:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:35:43.853+03	2021-05-22 14:35:43.862+03	
7e1c0ba5-d18e-e22e-f6e5-66ddb1fed558	2021-05-22 14:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:36:03.853+03	2021-05-22 14:36:03.86+03	
23f62635-2412-a32a-c168-9f78bc1720ea	2021-05-22 14:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:36:24.852+03	2021-05-22 14:36:24.859+03	
98a1a5f1-00f4-8af6-c997-559185c5d104	2021-05-22 14:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:36:44.852+03	2021-05-22 14:36:44.869+03	
afd6ae48-0ad2-a631-fff5-a3e5e4c695d2	2021-05-22 14:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:37:04.853+03	2021-05-22 14:37:04.862+03	
298449c0-0711-cc52-c0f1-763c576d4843	2021-05-22 14:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:37:25.853+03	2021-05-22 14:37:25.859+03	
81d09786-ded0-661f-c286-01b064c5b3fc	2021-05-22 14:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:37:46.853+03	2021-05-22 14:37:46.86+03	
07baa4f0-7b2b-aef0-8193-80e1f872dbf3	2021-05-22 14:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:38:07.852+03	2021-05-22 14:38:07.86+03	
878a889a-bfd5-972a-115c-24445d666db0	2021-05-22 14:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:38:27.853+03	2021-05-22 14:38:27.863+03	
5f76e12f-818e-0da7-ed3e-aa47967b16bd	2021-05-22 14:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:38:48.852+03	2021-05-22 14:38:48.86+03	
3af49578-d01f-b04f-cdc0-57529c283fde	2021-05-22 14:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:39:08.852+03	2021-05-22 14:39:08.873+03	
1a6dadd0-d9fc-3ce4-99b4-8affba889a58	2021-05-22 14:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:39:29.853+03	2021-05-22 14:39:29.86+03	
d78a488b-beba-b276-ed55-b4cb54d22a31	2021-05-22 14:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:39:50.853+03	2021-05-22 14:39:50.859+03	
2ff02a8b-a156-2b00-d8b7-ee44f12d6e15	2021-05-22 14:40:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:40:01.853+03	2021-05-22 14:40:01.9+03	
07150f31-4f5e-fa1a-9583-a641efec91fa	2021-05-22 14:40:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:40:21.854+03	2021-05-22 14:40:21.861+03	
7c9e6aaf-4862-4aeb-9910-6e048a6c76a2	2021-05-22 14:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:40:43.853+03	2021-05-22 14:40:43.859+03	
89b948b8-ea2a-c6b9-f0b9-e0ca7d2bd0ff	2021-05-22 14:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:41:03.853+03	2021-05-22 14:41:03.861+03	
1cd4b532-e0fd-a9a9-b30b-2c7fa39805f8	2021-05-22 14:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:41:23.853+03	2021-05-22 14:41:23.866+03	
90da2a54-82cb-6044-9193-5669bba54efe	2021-05-22 14:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:41:43.853+03	2021-05-22 14:41:43.861+03	
bd7df56b-234e-3509-6a7e-c5d4b96c54f9	2021-05-22 14:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:42:04.853+03	2021-05-22 14:42:04.861+03	
682339a4-7e6a-d198-7cbc-ddad220d58d0	2021-05-22 14:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:42:25.853+03	2021-05-22 14:42:25.86+03	
c8e4020d-8497-76e9-a58f-7277bf83fafa	2021-05-22 14:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:42:46.852+03	2021-05-22 14:42:46.86+03	
3cd2d2a1-58b7-ca85-d091-c2e5e84aaeee	2021-05-22 14:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:43:07.852+03	2021-05-22 14:43:07.863+03	
40fdaaf6-a56a-df90-99fb-28fb5324fbe0	2021-05-22 14:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:43:27.852+03	2021-05-22 14:43:27.859+03	
0bd03cd3-b963-30fb-c89b-a8873db082e3	2021-05-22 14:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:43:47.852+03	2021-05-22 14:43:47.859+03	
e39aebb6-84a1-ac7c-138c-fb76284fb998	2021-05-22 14:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:44:07.853+03	2021-05-22 14:44:07.859+03	
8110f8e6-b1e3-c547-ce07-1bf1dedecfe4	2021-05-22 14:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:44:28.853+03	2021-05-22 14:44:28.859+03	
fdfa46cd-e96c-cd31-dcc6-fc0cd99ff6ae	2021-05-22 14:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:44:48.853+03	2021-05-22 14:44:48.86+03	
c1c53e8e-eba4-cd04-1bbd-605f537b6d57	2021-05-22 14:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:45:09.852+03	2021-05-22 14:45:09.859+03	
37a263cb-a8c4-0eb7-8980-30da841615ca	2021-05-22 14:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:45:29.853+03	2021-05-22 14:45:29.861+03	
2fcd8a99-c1d0-e401-6eef-80babd3ec1cb	2021-05-22 14:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:45:50.853+03	2021-05-22 14:45:50.861+03	
82d045ff-cfc9-2f5a-c87a-f69740d8078c	2021-05-22 14:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:46:12.852+03	2021-05-22 14:46:12.871+03	
a20a66f4-c9c9-4b4e-3612-3cde33c7c5d2	2021-05-22 14:46:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:46:32.852+03	2021-05-22 14:46:32.868+03	
f220c4e3-80cf-70ef-ca30-c4ab696210f1	2021-05-22 14:46:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:46:52.853+03	2021-05-22 14:46:52.86+03	
832efd82-7100-d6eb-6d45-986c7f8e8950	2021-05-22 14:47:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:47:13.853+03	2021-05-22 14:47:13.862+03	
fb8af778-c105-3a63-0524-564b1cc921a5	2021-05-22 14:47:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:47:33.853+03	2021-05-22 14:47:33.86+03	
ec291a13-20ce-38b9-fca6-25cd0a53f7ae	2021-05-22 14:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:47:53.853+03	2021-05-22 14:47:53.859+03	
8b7daf1d-92ab-4306-876d-f2622b553eb6	2021-05-22 14:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:48:14.852+03	2021-05-22 14:48:14.859+03	
129fcd95-73fa-4865-a50a-f572c25c4d05	2021-05-22 14:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:48:34.853+03	2021-05-22 14:48:34.862+03	
9204b574-2700-66d4-c959-0cf8a5a6dae6	2021-05-22 14:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:48:56.852+03	2021-05-22 14:48:56.866+03	
0a066c16-8253-fe57-b207-3139a4009acb	2021-05-22 14:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:49:16.853+03	2021-05-22 14:49:16.861+03	
24993b0e-33dd-fa24-3da3-3040f9c9e193	2021-05-22 14:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:49:37.852+03	2021-05-22 14:49:37.86+03	
d21c8f9d-676e-0bf4-d2ba-2dc0abb4fa92	2021-05-22 14:49:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:49:57.853+03	2021-05-22 14:49:57.864+03	
47fa1f89-2326-702b-f06a-724d6c538f36	2021-05-22 14:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:50:07.853+03	2021-05-22 14:50:07.86+03	
976222c7-3c49-0c60-d069-3501d6d2bfbe	2021-05-22 14:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:50:27.853+03	2021-05-22 14:50:27.859+03	
a1edbfe2-aa9b-4a86-6b8f-4ea76fd53fc4	2021-05-22 14:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:50:48.853+03	2021-05-22 14:50:48.859+03	
d9bc1dff-7911-971d-c16d-473c24fc9de3	2021-05-22 14:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:51:09.852+03	2021-05-22 14:51:09.859+03	
7dcb62b5-6a6e-f636-6379-5787c2ec28e9	2021-05-22 14:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:51:29.853+03	2021-05-22 14:51:29.86+03	
b0702c5c-dac9-2bdf-7586-0f387234a8ff	2021-05-22 14:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:51:50.853+03	2021-05-22 14:51:50.859+03	
faea7922-618a-404f-1acb-8287b7ca1fb6	2021-05-22 14:52:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:52:11.852+03	2021-05-22 14:52:11.865+03	
281af577-7caf-a579-d6ef-dae9b9a13ec8	2021-05-22 14:52:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:52:31.853+03	2021-05-22 14:52:31.861+03	
a64176c1-c930-ffde-8b25-7d8063a2b4c9	2021-05-22 14:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:52:52.853+03	2021-05-22 14:52:52.859+03	
bf2c821b-e71e-bdb9-3536-fcf52e07979e	2021-05-22 14:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:53:13.853+03	2021-05-22 14:53:13.862+03	
e65a1742-7185-2792-7ef4-af206722c93a	2021-05-22 14:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:53:34.853+03	2021-05-22 14:53:34.861+03	
77c67528-07af-9d6a-dd69-048505f737f7	2021-05-22 14:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:53:54.853+03	2021-05-22 14:53:54.859+03	
ad18bb10-6654-b712-bafb-af28effea4ee	2021-05-22 14:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:54:15.852+03	2021-05-22 14:54:15.859+03	
b5c39d27-c4eb-0fcb-cb2a-827d59bee31e	2021-05-22 14:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:54:35.853+03	2021-05-22 14:54:35.861+03	
f49b6746-d6fe-b8df-a0a1-b1151daee221	2021-05-22 14:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:54:55.853+03	2021-05-22 14:54:55.861+03	
86921083-2f37-8801-ea2c-9c39387f844a	2021-05-22 14:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:55:05.853+03	2021-05-22 14:55:05.859+03	
4707b405-e1ca-461e-ce9b-f839324ddf5b	2021-05-22 14:55:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:55:27.852+03	2021-05-22 14:55:27.86+03	
4fcdbd11-0405-988c-c9f9-63cb868658a2	2021-05-22 14:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:55:48.853+03	2021-05-22 14:55:48.859+03	
349bff00-0039-3550-b654-7dd2940a9093	2021-05-22 14:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:56:09.853+03	2021-05-22 14:56:09.868+03	
43d4cce4-9bfd-25db-ec5c-f42ac7e4461f	2021-05-22 14:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:56:29.853+03	2021-05-22 14:56:29.86+03	
f2cd9926-8127-865c-cba2-ca47ca673b8f	2021-05-22 14:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:56:50.853+03	2021-05-22 14:56:50.864+03	
4cc6dbfc-98d8-6104-b5ca-767de2893ea8	2021-05-22 14:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:57:10.853+03	2021-05-22 14:57:10.866+03	
28c77718-8172-3570-5afb-e942f22a8f90	2021-05-22 14:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:57:30.853+03	2021-05-22 14:57:30.865+03	
7c2429da-f253-8a79-3f22-831b36569c71	2021-05-22 14:57:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:57:51.853+03	2021-05-22 14:57:51.86+03	
8b602f68-ab8e-daeb-dadf-8cc376462148	2021-05-22 14:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:58:13.852+03	2021-05-22 14:58:13.859+03	
ab70a03f-0033-d3c0-5695-a161b66b50c9	2021-05-22 14:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:58:33.852+03	2021-05-22 14:58:33.859+03	
729a5d5e-eebd-c5b1-135c-11648cc576b2	2021-05-22 14:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:58:53.852+03	2021-05-22 14:58:53.867+03	
7e9c348e-08b6-ab71-e475-b738ac7e6571	2021-05-22 14:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:59:14.852+03	2021-05-22 14:59:14.859+03	
b2b6c00a-30bf-7c4f-0a4c-acb0ba386cb5	2021-05-22 14:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:59:34.853+03	2021-05-22 14:59:34.861+03	
77be75d9-40ca-002b-f471-72bb24c3007c	2021-05-22 14:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:59:54.853+03	2021-05-22 14:59:54.861+03	
9aff9b50-fa52-38ed-30ce-5d22eedea89e	2021-05-22 15:00:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:00:04.853+03	2021-05-22 15:00:04.865+03	
76082f69-064f-2549-334e-088c50151bd2	2021-05-22 15:00:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:00:24.853+03	2021-05-22 15:00:24.863+03	
e5afeb6b-4e92-b29a-b179-653bcf2460b6	2021-05-22 15:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:00:44.853+03	2021-05-22 15:00:44.859+03	
94b6cb7c-6c11-158a-6631-7498e67d967b	2021-05-22 15:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:01:04.853+03	2021-05-22 15:01:04.861+03	
88b3fb9a-0fbd-2cde-6ad3-73aaa6ffb640	2021-05-22 15:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:01:24.853+03	2021-05-22 15:01:24.861+03	
ca9b4a07-4cac-fdbc-17e8-440c5232c43e	2021-05-22 15:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:01:44.853+03	2021-05-22 15:01:44.859+03	
a90d26d9-7036-28dd-09ca-e0ed1aea8ad2	2021-05-22 15:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:02:04.853+03	2021-05-22 15:02:04.865+03	
f4a4c2b6-416e-af63-7d42-23c77e0cdefa	2021-05-22 15:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:02:24.853+03	2021-05-22 15:02:24.86+03	
2a78ac3e-cfe7-4be1-f146-59db1267fbb0	2021-05-22 15:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:02:44.853+03	2021-05-22 15:02:44.861+03	
27b87a03-bcb7-1e27-1292-b2ecf6cdabc4	2021-05-22 15:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:03:05.853+03	2021-05-22 15:03:05.861+03	
7e8fd362-9712-692c-1335-9973f258b405	2021-05-22 15:03:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:03:26.853+03	2021-05-22 15:03:26.862+03	
d081b86c-fb7e-c329-d2ce-72d70a1fdff0	2021-05-22 15:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:03:48.852+03	2021-05-22 15:03:48.859+03	
2091733a-fd2f-1532-8418-3c86f0caf66d	2021-05-22 15:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:04:08.852+03	2021-05-22 15:04:08.859+03	
67be1f4b-6b67-781e-cb3b-94fb9646c702	2021-05-22 15:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:04:28.853+03	2021-05-22 15:04:28.859+03	
7c7361ee-5c07-a97f-1a1d-0764d8a2a1c5	2021-05-22 15:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:04:48.853+03	2021-05-22 15:04:48.861+03	
d689b726-846f-6d1a-58df-5e2ea18ca684	2021-05-22 15:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:05:08.853+03	2021-05-22 15:05:08.86+03	
bd678105-2e54-430f-b540-0b029525950d	2021-05-22 15:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:05:29.852+03	2021-05-22 15:05:29.859+03	
1f4cbf04-c48b-a22c-4d15-c3da075a617b	2021-05-22 15:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:05:49.852+03	2021-05-22 15:05:49.859+03	
a2be9950-dee0-8bed-bf4a-bf31c2bf18df	2021-05-22 15:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:06:09.852+03	2021-05-22 15:06:09.859+03	
c25da0e7-a016-abfc-46c8-e21c8936d832	2021-05-22 15:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:06:29.853+03	2021-05-22 15:06:29.861+03	
43c7bb8f-e5eb-f7ce-6911-57643a48c4d6	2021-05-22 15:06:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:06:51.852+03	2021-05-22 15:06:51.859+03	
e22235ea-f67d-ed5a-2d60-0a80ed88824c	2021-05-22 15:07:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:07:11.853+03	2021-05-22 15:07:11.86+03	
2cfb8254-c359-5755-607d-16881d18a5c7	2021-05-22 15:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:07:33.853+03	2021-05-22 15:07:33.864+03	
0fafa291-b939-fbc5-f656-baf6270d3052	2021-05-22 15:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:07:53.853+03	2021-05-22 15:07:53.86+03	
128ab6b5-3da1-721a-1d0d-131cc7e06020	2021-05-22 15:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:08:13.853+03	2021-05-22 15:08:13.86+03	
e6418147-0831-1f0f-b39c-4da59ee2be73	2021-05-22 15:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:08:34.853+03	2021-05-22 15:08:34.861+03	
5d4f48e7-8aa6-df82-5218-c18241b2b4a7	2021-05-22 15:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:08:55.852+03	2021-05-22 15:08:55.86+03	
116334f8-61c9-7251-b827-f745490478fe	2021-05-22 15:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:09:15.853+03	2021-05-22 15:09:15.869+03	
a7cdb57e-b739-0c3b-36f7-4c28cbb07be0	2021-05-22 15:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:09:35.853+03	2021-05-22 15:09:35.861+03	
2841eefe-3914-dd72-591a-bedc10b58768	2021-05-22 15:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 15:10:00.853+03	2021-05-22 15:10:00.869+03	ERROR
e4d17f8b-64d1-96bd-adda-bfa11a854eb0	2021-05-22 15:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:10:18.852+03	2021-05-22 15:10:18.86+03	
ce26dfe2-daff-7f18-53aa-d7da42befabb	2021-05-22 15:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:10:39.853+03	2021-05-22 15:10:39.861+03	
a48a3dca-3802-81bf-aeff-437cbd6e51f8	2021-05-22 15:11:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:11:01.853+03	2021-05-22 15:11:01.863+03	
64016ec8-bdb4-2918-a8dc-24a679522b39	2021-05-22 15:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:11:23.853+03	2021-05-22 15:11:23.86+03	
4200156d-30a4-33d0-35a9-fc44c665df82	2021-05-22 15:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:11:44.853+03	2021-05-22 15:11:44.86+03	
b63ff13b-3ca0-7a04-f9bb-6fc2de43b08d	2021-05-22 15:12:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:12:06.853+03	2021-05-22 15:12:06.871+03	
59e7786c-d5a8-2647-981f-07e52f578399	2021-05-22 15:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:12:27.853+03	2021-05-22 15:12:27.86+03	
7370dc60-6027-7754-7086-114ec99adca4	2021-05-22 15:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:12:48.853+03	2021-05-22 15:12:48.861+03	
e7fdd1b4-c130-ea5c-bf3e-dd59a97c761c	2021-05-22 15:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:13:08.853+03	2021-05-22 15:13:08.86+03	
5a3005fd-6168-5b08-335e-91b941d884ee	2021-05-22 15:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:13:28.853+03	2021-05-22 15:13:28.864+03	
f5cb8361-63e6-3062-cd25-239e216db4fd	2021-05-22 15:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:13:49.852+03	2021-05-22 15:13:49.859+03	
811be2e7-791b-70c1-e8a3-6c3beb8c8831	2021-05-22 15:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:14:09.853+03	2021-05-22 15:14:09.861+03	
cd228be8-46ff-fe1a-7ace-17609af2455e	2021-05-22 15:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:14:29.853+03	2021-05-22 15:14:29.859+03	
e7e31f93-c840-3f65-449b-5119690b54be	2021-05-22 15:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:14:50.853+03	2021-05-22 15:14:50.862+03	
83ce1fb9-2b6c-301f-4648-6c45d64093e0	2021-05-22 15:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:15:10.853+03	2021-05-22 15:15:10.865+03	
224ef8fb-6d20-5aa3-8feb-a540ef507f56	2021-05-22 15:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:15:30.853+03	2021-05-22 15:15:30.861+03	
05669a34-e74a-3a78-3d12-8051d94f39f2	2021-05-22 15:15:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:15:51.853+03	2021-05-22 15:15:51.86+03	
3dc94b47-6625-ebb8-26d8-67e00ff9ea14	2021-05-22 15:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:16:12.853+03	2021-05-22 15:16:12.861+03	
e8e2bb9c-0f3e-7e7a-1f07-7f805df81962	2021-05-22 14:55:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:55:16.853+03	2021-05-22 14:55:16.863+03	
e3d83e6b-ed3a-9fe1-a155-110af95bf618	2021-05-22 14:55:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:55:37.853+03	2021-05-22 14:55:37.86+03	
d11d0654-df99-ba55-05b4-4d6059785dd9	2021-05-22 14:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:55:58.853+03	2021-05-22 14:55:58.863+03	
95a20166-7003-ee8d-8ff7-a1591007a4c3	2021-05-22 14:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:56:19.853+03	2021-05-22 14:56:19.859+03	
30647f3c-8541-e190-642b-0bcdd434be54	2021-05-22 14:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:56:40.853+03	2021-05-22 14:56:40.87+03	
e092292b-3220-f7ed-1506-0b6322b357d8	2021-05-22 14:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:57:00.853+03	2021-05-22 14:57:00.86+03	
87d885ed-aeef-d755-8394-8e8a7b3c42a7	2021-05-22 14:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:57:20.853+03	2021-05-22 14:57:20.862+03	
29ce2286-4378-8e53-d57c-52449d13dc5f	2021-05-22 14:57:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:57:41.853+03	2021-05-22 14:57:41.865+03	
42d228a8-5276-5ba5-8d4f-5ea494e955a4	2021-05-22 14:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:58:02.853+03	2021-05-22 14:58:02.86+03	
e28f0882-7c41-9b4b-7500-d7fb5863ee22	2021-05-22 14:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:58:23.852+03	2021-05-22 14:58:23.867+03	
3909fc61-fc4b-7fe6-a541-25ff75b5c6df	2021-05-22 14:58:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:58:43.852+03	2021-05-22 14:58:43.86+03	
909c1050-cfbd-ff24-0730-71df3146f431	2021-05-22 14:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:59:03.853+03	2021-05-22 14:59:03.863+03	
b8ce6a33-94d9-b653-bf3c-c90d82f70228	2021-05-22 14:59:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:59:24.853+03	2021-05-22 14:59:24.86+03	
f8cf3b68-645d-3821-801d-f2d5eb1d7e01	2021-05-22 14:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 14:59:44.853+03	2021-05-22 14:59:44.859+03	
84b77807-8e94-6e26-224b-ce06153718a8	2021-05-22 15:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 15:00:00.853+03	2021-05-22 15:00:00.859+03	ERROR
f674550d-1a02-7ce1-3c8e-7fab674bcd9d	2021-05-22 15:00:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:00:14.853+03	2021-05-22 15:00:14.862+03	
8aeafda9-cb06-e7bd-bb43-6833febbd5a8	2021-05-22 15:00:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:00:34.853+03	2021-05-22 15:00:34.862+03	
3b405397-c85c-7ae9-391a-d7df02ee4e53	2021-05-22 15:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:00:54.853+03	2021-05-22 15:00:54.859+03	
266d9562-0d89-e89a-4027-19c97d9a168b	2021-05-22 15:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:01:14.853+03	2021-05-22 15:01:14.86+03	
7f39901d-f3be-9d15-ea86-4682dc3b45b0	2021-05-22 15:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:01:34.853+03	2021-05-22 15:01:34.862+03	
a3cfc3b2-61eb-98cb-84ab-2507caa56b48	2021-05-22 15:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:01:54.853+03	2021-05-22 15:01:54.86+03	
04505bc3-10dc-6343-14ae-14dc64e82160	2021-05-22 15:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:02:14.853+03	2021-05-22 15:02:14.859+03	
60a81767-8c85-4ad3-34e0-f1c0349ec558	2021-05-22 15:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:02:34.853+03	2021-05-22 15:02:34.87+03	
91ab8977-7f49-5edb-0b3e-b06d1d0b2691	2021-05-22 15:02:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:02:55.852+03	2021-05-22 15:02:55.86+03	
02d81daf-db7e-1f11-9896-75bc98e7bc15	2021-05-22 15:03:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:03:16.852+03	2021-05-22 15:03:16.859+03	
7b79ddad-e0de-b42d-372c-590af74de5f8	2021-05-22 15:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:03:37.853+03	2021-05-22 15:03:37.86+03	
647c72d7-72b5-8cfb-2461-6184cb29a0a3	2021-05-22 15:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:03:58.852+03	2021-05-22 15:03:58.861+03	
3af98e3b-9bd8-a6d4-4540-312f06016027	2021-05-22 15:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:04:18.852+03	2021-05-22 15:04:18.859+03	
811c2155-fa81-7f2e-c45f-3b46ee1fbd38	2021-05-22 15:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:04:38.853+03	2021-05-22 15:04:38.864+03	
91116dcb-f824-8f83-d280-00eacdeb7be8	2021-05-22 15:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:04:58.853+03	2021-05-22 15:04:58.859+03	
d46b51e9-43ea-d5e1-79e3-4677eb0c7c8a	2021-05-22 15:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:05:19.852+03	2021-05-22 15:05:19.864+03	
c5491f5d-bc1b-d244-7fc3-cf0381df7c71	2021-05-22 15:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:05:39.852+03	2021-05-22 15:05:39.863+03	
f5294564-5435-3cbc-9825-6f5852019c22	2021-05-22 15:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:05:59.852+03	2021-05-22 15:05:59.859+03	
28b71043-f616-3c0e-b3dc-f6535420ec22	2021-05-22 15:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:06:19.853+03	2021-05-22 15:06:19.863+03	
2788b411-f20e-de39-5b9f-6fbfe29bc110	2021-05-22 15:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:06:40.853+03	2021-05-22 15:06:40.861+03	
0cb67e98-6d47-d6f2-a82e-8a757cf81060	2021-05-22 15:07:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:07:01.852+03	2021-05-22 15:07:01.86+03	
51368b1e-4a2e-4496-fe70-0ec3a1ba32f0	2021-05-22 15:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:07:22.853+03	2021-05-22 15:07:22.859+03	
613fa139-76bb-d9a0-8348-40d7b8260066	2021-05-22 15:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:07:43.853+03	2021-05-22 15:07:43.861+03	
e6c23f3b-d85a-c12e-2b62-3ed4c4d0b0b0	2021-05-22 15:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:08:03.853+03	2021-05-22 15:08:03.862+03	
edb07ed2-441e-07f6-14e0-4b2a283d5037	2021-05-22 15:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:08:23.853+03	2021-05-22 15:08:23.863+03	
b29c5b44-b697-d41c-8cca-f50a452907f8	2021-05-22 15:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:08:45.852+03	2021-05-22 15:08:45.859+03	
38e60d75-496e-5137-eced-45e7e8864ca2	2021-05-22 15:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:09:05.853+03	2021-05-22 15:09:05.868+03	
14e43d44-6149-15a9-7f5e-ee17f8d01868	2021-05-22 15:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:09:25.853+03	2021-05-22 15:09:25.864+03	
cd5d8b73-fd23-5035-e660-5ff3a87af772	2021-05-22 15:09:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:09:46.853+03	2021-05-22 15:09:46.871+03	
f38fd811-75b9-efe7-ec2c-18240ace7b89	2021-05-22 15:09:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:09:56.854+03	2021-05-22 15:09:56.86+03	
055c0e35-59c8-b922-4224-ee6387373541	2021-05-22 15:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:10:07.853+03	2021-05-22 15:10:07.86+03	
94deb9a2-adc0-7660-0de7-a6787b45f852	2021-05-22 15:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:10:28.853+03	2021-05-22 15:10:28.86+03	
d773baf0-ea70-8028-809a-de7fbaa963d7	2021-05-22 15:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:10:50.853+03	2021-05-22 15:10:50.862+03	
677c33c4-7396-5fce-9a5e-7e0f184ce6e3	2021-05-22 15:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:11:12.853+03	2021-05-22 15:11:12.859+03	
07f5503d-2af0-0005-5e5e-e3b37b5859a1	2021-05-22 15:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:11:34.853+03	2021-05-22 15:11:34.863+03	
7ec58ffc-1c6d-527d-9083-9cd920e40b7e	2021-05-22 15:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:11:55.853+03	2021-05-22 15:11:55.875+03	
f8e954f8-0c9b-e2db-2e12-b814c15727c5	2021-05-22 15:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:12:17.852+03	2021-05-22 15:12:17.858+03	
8070e9bd-b466-cde8-0f85-752d71206bae	2021-05-22 15:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:12:38.852+03	2021-05-22 15:12:38.859+03	
0fd9f0c7-8a91-1633-50a2-80824ee0ad17	2021-05-22 15:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:12:58.853+03	2021-05-22 15:12:58.859+03	
13679738-4e9b-c5cf-2009-1e1151f04538	2021-05-22 15:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:13:18.853+03	2021-05-22 15:13:18.862+03	
4fee5ea6-c19a-9413-1d4c-ad6dc3932d50	2021-05-22 15:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:13:38.853+03	2021-05-22 15:13:38.862+03	
d82c306f-8da6-61bd-2085-a8068fc6affc	2021-05-22 15:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:13:59.852+03	2021-05-22 15:13:59.859+03	
8421383d-7825-4a57-285b-b65ab2e27038	2021-05-22 15:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:14:19.853+03	2021-05-22 15:14:19.861+03	
563070cf-f533-cb32-33ed-3f080b531d68	2021-05-22 15:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:14:39.853+03	2021-05-22 15:14:39.86+03	
dd31eb9e-5096-5e3f-55fa-86b57bdbf504	2021-05-22 15:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:15:00.853+03	2021-05-22 15:15:00.859+03	
302abe9e-b431-e577-7dc6-11088836243b	2021-05-22 15:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:15:20.853+03	2021-05-22 15:15:20.862+03	
950f161a-d38e-5fd5-6b87-78e3ceed819b	2021-05-22 15:15:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:15:41.853+03	2021-05-22 15:15:41.862+03	
44b40eb5-9536-e523-d047-319872e88551	2021-05-22 15:16:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:16:01.853+03	2021-05-22 15:16:01.861+03	
0c421787-48aa-44a3-42d1-163e00002161	2021-05-22 15:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:16:22.853+03	2021-05-22 15:16:22.86+03	
c1fa6f8b-6ba5-345b-4551-1fc1e2f3068e	2021-05-22 15:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:16:42.853+03	2021-05-22 15:16:42.86+03	
dd8f7ee7-9770-f7f8-9d1d-90fcc6772cc4	2021-05-22 15:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:17:02.853+03	2021-05-22 15:17:02.86+03	
2935d78b-08e6-106f-ea18-9e8370831a31	2021-05-22 15:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:17:22.853+03	2021-05-22 15:17:22.86+03	
9314f565-5297-8e95-8f78-132dac356374	2021-05-22 15:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:17:43.853+03	2021-05-22 15:17:43.859+03	
5b0335a3-c5a5-f5f3-0281-877b56ab79ec	2021-05-22 15:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:18:04.853+03	2021-05-22 15:18:04.873+03	
e7fe85fe-41c7-c08c-2318-42341974303e	2021-05-22 15:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:18:24.853+03	2021-05-22 15:18:24.864+03	
c57f0891-3091-ed11-60c6-46b358fa9288	2021-05-22 15:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:18:44.853+03	2021-05-22 15:18:44.86+03	
ed010dd4-e594-52b3-d002-e5fe1f9995f1	2021-05-22 15:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:19:05.852+03	2021-05-22 15:19:05.86+03	
20c0f2d7-dc99-b08d-b280-ecc53f40e2d0	2021-05-22 15:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:19:25.853+03	2021-05-22 15:19:25.861+03	
3e6b16fc-ae5c-ba15-7385-b5b0db642305	2021-05-22 15:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:19:45.853+03	2021-05-22 15:19:45.862+03	
ddb19591-9d07-881c-a805-66863f7229a8	2021-05-22 15:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 15:20:00.852+03	2021-05-22 15:20:00.857+03	ERROR
6b39d2e2-48e1-4194-fb06-b48f8074106d	2021-05-22 15:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:20:15.853+03	2021-05-22 15:20:15.86+03	
dc141a7f-39b6-12c0-4b11-294438ea819a	2021-05-22 15:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:20:35.853+03	2021-05-22 15:20:35.861+03	
cf5bf823-09ad-41cd-caa4-7caa46694c3f	2021-05-22 15:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:20:56.852+03	2021-05-22 15:20:56.859+03	
a91b3817-8179-e596-4193-db31992589d3	2021-05-22 15:21:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:21:17.853+03	2021-05-22 15:21:17.861+03	
ab1a3797-ef2a-b80a-a3a3-ef860dd82a14	2021-05-22 15:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:21:37.853+03	2021-05-22 15:21:37.862+03	
506884be-a0a2-7e99-d81d-6df482f24b3a	2021-05-22 15:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:21:57.853+03	2021-05-22 15:21:57.861+03	
e20581ce-67d8-4c5f-433c-cec69ef3e839	2021-05-22 15:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:22:18.852+03	2021-05-22 15:22:18.87+03	
108d2976-9ee5-9bfb-bd21-f6255e62e236	2021-05-22 15:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:22:38.852+03	2021-05-22 15:22:38.86+03	
2deb887e-b165-65a9-1bfd-e531a8ec7027	2021-05-22 15:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:22:58.853+03	2021-05-22 15:22:58.861+03	
2a29efe9-b158-2a9e-2ecd-c604cfc61b66	2021-05-22 15:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:23:18.853+03	2021-05-22 15:23:18.859+03	
0cef949b-4a2b-9c69-f925-811974589e59	2021-05-22 15:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:23:39.853+03	2021-05-22 15:23:39.86+03	
4ead75a2-ce59-3574-d123-d93cc0d9a0e1	2021-05-22 15:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:24:00.853+03	2021-05-22 15:24:00.872+03	
091dd9f6-6738-66b6-7616-f00d4131ce79	2021-05-22 15:24:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:24:21.853+03	2021-05-22 15:24:21.875+03	
364ab3ac-a1af-a01f-493c-268f218bc812	2021-05-22 15:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:24:42.853+03	2021-05-22 15:24:42.86+03	
1e215f74-d5b8-69a6-8e7c-672d6f1a7b32	2021-05-22 15:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:25:02.853+03	2021-05-22 15:25:02.86+03	
2625c9dd-9ede-a4d7-db7c-c54496a0cddc	2021-05-22 15:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:25:24.852+03	2021-05-22 15:25:24.858+03	
f13a7409-474b-b501-e118-2cbd6d4db26b	2021-05-22 15:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:25:44.853+03	2021-05-22 15:25:44.861+03	
d5989d00-6cf9-46e7-edf0-6b7ce59135b9	2021-05-22 15:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:26:05.853+03	2021-05-22 15:26:05.872+03	
e258770a-2f73-50c4-2452-5769d7d0a2eb	2021-05-22 15:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:26:27.852+03	2021-05-22 15:26:27.858+03	
5e3b33c6-2124-b652-0ecb-f0389d95b3a7	2021-05-22 15:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:26:47.852+03	2021-05-22 15:26:47.86+03	
20cd8751-0e8f-1855-5c6f-1338447503ea	2021-05-22 15:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:27:07.853+03	2021-05-22 15:27:07.86+03	
4c12ffcb-5b7c-ae5c-4e21-46ab704f617f	2021-05-22 15:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:27:28.853+03	2021-05-22 15:27:28.87+03	
9e42240e-7599-a82b-b059-ee5072b961f9	2021-05-22 15:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:27:48.853+03	2021-05-22 15:27:48.915+03	
d93ab990-7260-4c80-3466-75048521b6c0	2021-05-22 15:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:28:09.852+03	2021-05-22 15:28:09.859+03	
f9488428-ad86-bc77-ded9-1f5b5d8fd93d	2021-05-22 15:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:28:29.852+03	2021-05-22 15:28:29.871+03	
2a85450e-c2e8-8992-254f-88f3c601c2c8	2021-05-22 15:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:28:49.852+03	2021-05-22 15:28:49.861+03	
89ad3ea7-fde6-242f-a5f1-92bf8df61066	2021-05-22 15:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:29:09.853+03	2021-05-22 15:29:09.861+03	
341fcdcd-1f18-df70-649e-7f99586d0118	2021-05-22 15:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:29:30.853+03	2021-05-22 15:29:30.87+03	
d610e89d-1f7e-ce49-f086-d7024646853d	2021-05-22 15:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:29:50.853+03	2021-05-22 15:29:50.86+03	
d1f915fc-ddfe-aa55-3473-6d0642437eac	2021-05-22 15:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:30:10.853+03	2021-05-22 15:30:10.859+03	
22b0803e-063e-6369-bef6-695b37d442f4	2021-05-22 15:30:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:30:31.853+03	2021-05-22 15:30:31.862+03	
30bf8a00-6791-9327-ccf4-4a12997ceb76	2021-05-22 15:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:30:52.853+03	2021-05-22 15:30:52.86+03	
fd5a97fb-eebe-516f-a2b0-12b5f9532a0c	2021-05-22 15:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:31:14.852+03	2021-05-22 15:31:14.86+03	
faf9b266-f7d0-d280-9ec5-824a0d5159bc	2021-05-22 15:31:34.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:31:34.853+03	2021-05-22 15:31:34.866+03	
e6a69b57-19c3-d2ab-73f8-e35ff3f444f0	2021-05-22 15:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:31:54.853+03	2021-05-22 15:31:54.859+03	
efab2efe-9614-9472-2847-6739c287952b	2021-05-22 15:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:32:15.852+03	2021-05-22 15:32:15.859+03	
0a7fd497-e5ba-3dca-2c1c-3c934dbc7afa	2021-05-22 15:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:32:35.853+03	2021-05-22 15:32:35.86+03	
d8c362d6-bd06-1a61-481e-37dfac3c76f5	2021-05-22 15:32:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:32:56.853+03	2021-05-22 15:32:56.861+03	
f1679501-6557-6810-8dac-07a5a74a5915	2021-05-22 15:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:33:18.853+03	2021-05-22 15:33:18.86+03	
66432306-c898-866a-b976-75c72a30ca6a	2021-05-22 15:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:33:39.852+03	2021-05-22 15:33:39.86+03	
e3aa4a6a-50ba-ada7-da44-5ef08af3f1b1	2021-05-22 15:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:33:59.853+03	2021-05-22 15:33:59.861+03	
be2ea463-c112-c078-df47-adfe7eba922a	2021-05-22 15:34:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:34:21.852+03	2021-05-22 15:34:21.859+03	
66bc7d09-7232-cc5e-1110-bd99ca8ceee6	2021-05-22 15:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:34:42.853+03	2021-05-22 15:34:42.86+03	
c16f0580-612f-481a-acba-95010936215b	2021-05-22 15:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:35:02.853+03	2021-05-22 15:35:02.864+03	
d71c6fb7-7453-7329-f849-473abab0af4c	2021-05-22 15:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:35:22.853+03	2021-05-22 15:35:22.86+03	
e0ff2da4-b8a8-c292-ba77-0c20328e3754	2021-05-22 15:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:35:42.853+03	2021-05-22 15:35:42.86+03	
8c89ae2e-c69a-50be-cebb-3b83abcb0810	2021-05-22 15:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:36:03.853+03	2021-05-22 15:36:03.86+03	
3002bb21-8d2c-c400-88e9-41f4a0556d4b	2021-05-22 15:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:36:25.853+03	2021-05-22 15:36:25.859+03	
c53a03db-efad-ca43-84a7-4497ea413bc5	2021-05-22 15:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:36:46.852+03	2021-05-22 15:36:46.86+03	
49764ed6-ec60-d76f-c2ce-7e06aa57fc4b	2021-05-22 15:37:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:37:06.855+03	2021-05-22 15:37:06.864+03	
25996845-faa9-24c0-b936-3db1803ad9a3	2021-05-22 15:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:37:27.852+03	2021-05-22 15:37:27.859+03	
36d7c0eb-3696-902d-8311-bd53c77cc6a0	2021-05-22 15:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:16:32.853+03	2021-05-22 15:16:32.862+03	
0698fa36-6ee6-c930-aafc-0d717cc9f3be	2021-05-22 15:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:16:52.853+03	2021-05-22 15:16:52.859+03	
1256d310-ea31-9350-e352-81eb5ab51748	2021-05-22 15:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:17:12.853+03	2021-05-22 15:17:12.86+03	
43120222-08ce-f08e-97fb-e10d68555b80	2021-05-22 15:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:17:33.852+03	2021-05-22 15:17:33.862+03	
8e90928b-1cf5-747c-05a6-f0264b92cc47	2021-05-22 15:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:17:54.853+03	2021-05-22 15:17:54.859+03	
af9dcec3-da8d-282f-d597-b3aea3d2c81b	2021-05-22 15:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:18:14.853+03	2021-05-22 15:18:14.86+03	
87cd05ae-b633-4330-1d4c-ec1261488414	2021-05-22 15:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:18:34.853+03	2021-05-22 15:18:34.86+03	
8c29fae6-a517-3f53-e593-4685c5632945	2021-05-22 15:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:18:55.852+03	2021-05-22 15:18:55.867+03	
5592e05b-3755-a71a-a828-f9f614992824	2021-05-22 15:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:19:15.853+03	2021-05-22 15:19:15.864+03	
4f93d628-137c-6c20-dade-312c23d5507c	2021-05-22 15:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:19:35.853+03	2021-05-22 15:19:35.877+03	
a43f1339-e788-9425-a91c-df520660d1be	2021-05-22 15:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:19:55.853+03	2021-05-22 15:19:55.86+03	
737784b4-1f10-145a-1d92-bdb68cc59dac	2021-05-22 15:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:20:05.853+03	2021-05-22 15:20:05.863+03	
20945cec-daea-25b2-80b4-84f487af571b	2021-05-22 15:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:20:25.853+03	2021-05-22 15:20:25.872+03	
b8e05fa6-ec0c-4caa-045d-e36012b1231d	2021-05-22 15:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:20:45.853+03	2021-05-22 15:20:45.873+03	
fd0e35cd-cbd9-963d-9ad9-4fa34e9325cc	2021-05-22 15:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:21:06.853+03	2021-05-22 15:21:06.876+03	
788496f1-42b6-5902-06db-31cb871751e0	2021-05-22 15:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:21:27.853+03	2021-05-22 15:21:27.86+03	
26f0ad92-c938-43c4-56fe-35d2d1e58aca	2021-05-22 15:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:21:47.853+03	2021-05-22 15:21:47.867+03	
4a4c4afe-0d5f-1202-8a85-e20e34f029c0	2021-05-22 15:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:22:07.853+03	2021-05-22 15:22:07.86+03	
d4ea594c-6afe-aeea-0ac6-f2f9e4841490	2021-05-22 15:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:22:28.852+03	2021-05-22 15:22:28.861+03	
d249c9b1-d5bb-d900-1d6f-3d7585f748a4	2021-05-22 15:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:22:48.853+03	2021-05-22 15:22:48.911+03	
77165230-a371-617a-43f3-5c7875140096	2021-05-22 15:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:23:08.853+03	2021-05-22 15:23:08.862+03	
3f88a530-3f99-68f6-992d-04641fc3c4f1	2021-05-22 15:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:23:28.853+03	2021-05-22 15:23:28.859+03	
ac4be558-1a7f-4dd4-e622-fb303b3d859b	2021-05-22 15:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:23:49.853+03	2021-05-22 15:23:49.859+03	
cd0da775-066d-f035-42ca-0f639e7bd59a	2021-05-22 15:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:24:10.853+03	2021-05-22 15:24:10.862+03	
333e6d76-3c51-9efe-ddd6-2e0f2a0a013a	2021-05-22 15:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:24:32.853+03	2021-05-22 15:24:32.86+03	
5f061f92-3f7d-cd14-4c46-ada0e3347077	2021-05-22 15:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:24:52.853+03	2021-05-22 15:24:52.861+03	
276aec09-7a1f-3db5-95c8-554291bffcd3	2021-05-22 15:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:25:13.853+03	2021-05-22 15:25:13.862+03	
e1a15db8-7401-d22e-cf3d-2dde8461e191	2021-05-22 15:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:25:34.853+03	2021-05-22 15:25:34.86+03	
957a1fef-cb78-f029-6a4b-38c2a344e654	2021-05-22 15:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:25:55.852+03	2021-05-22 15:25:55.874+03	
ace8ed91-92ca-be6c-b4cf-cbd2f5a18ab0	2021-05-22 15:26:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:26:16.853+03	2021-05-22 15:26:16.859+03	
bbf3b96d-1ba6-52a9-717a-48389041410e	2021-05-22 15:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:26:37.852+03	2021-05-22 15:26:37.86+03	
65295ceb-aae6-886e-82d1-f6e7a78f09ff	2021-05-22 15:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:26:57.853+03	2021-05-22 15:26:57.86+03	
768dbc16-fbfa-d5f3-0c86-0baa7f40f1ef	2021-05-22 15:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:27:18.853+03	2021-05-22 15:27:18.86+03	
5d86ead4-2a34-a336-fcb4-3d95a3695318	2021-05-22 15:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:27:38.853+03	2021-05-22 15:27:38.859+03	
c9d201ac-633d-6e96-5188-e8e81048c4c4	2021-05-22 15:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:27:59.852+03	2021-05-22 15:27:59.861+03	
544aba76-863f-327e-0e17-068da6ca679e	2021-05-22 15:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:28:19.852+03	2021-05-22 15:28:19.86+03	
7fe6b2c6-4035-adcd-ade2-7edc7344c05e	2021-05-22 15:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:28:39.852+03	2021-05-22 15:28:39.859+03	
0038035d-e4b3-3eae-eaea-036e77f22eed	2021-05-22 15:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:28:59.853+03	2021-05-22 15:28:59.859+03	
fdb98072-1bca-253c-72eb-1965a886f1c0	2021-05-22 15:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:29:20.853+03	2021-05-22 15:29:20.86+03	
ae273a21-7308-8e18-efaa-3caa2131d86e	2021-05-22 15:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:29:40.853+03	2021-05-22 15:29:40.859+03	
512dc158-6a40-b92f-5843-bb0689740b44	2021-05-22 15:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 15:30:00.852+03	2021-05-22 15:30:00.858+03	ERROR
a3a3dd6c-807e-2f14-02f3-c6e7371a7ae7	2021-05-22 15:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:30:00.853+03	2021-05-22 15:30:00.869+03	
eff6d8de-15b5-5c42-d1a3-bb705c1950d8	2021-05-22 15:30:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:30:21.853+03	2021-05-22 15:30:21.863+03	
778979cd-47b7-c497-0cfb-2425216e1300	2021-05-22 15:30:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:30:41.854+03	2021-05-22 15:30:41.863+03	
65d6eeb7-7037-7a51-52b8-694fbe5556bb	2021-05-22 15:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:31:03.853+03	2021-05-22 15:31:03.863+03	
938dcb1f-e580-259c-e8ec-aa0b4fbda844	2021-05-22 15:31:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:31:24.853+03	2021-05-22 15:31:24.865+03	
a04df0f0-d804-c46c-957d-6f102d5e21a4	2021-05-22 15:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:31:44.853+03	2021-05-22 15:31:44.864+03	
b561b89b-b003-45e2-e22a-3f75fcb88905	2021-05-22 15:32:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:32:04.853+03	2021-05-22 15:32:04.861+03	
d2f3ad0b-ecf3-193f-19fd-6cb7cd753155	2021-05-22 15:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:32:25.853+03	2021-05-22 15:32:25.86+03	
eba58938-aeb1-5091-1fee-30d1e454c0a8	2021-05-22 15:32:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:32:46.852+03	2021-05-22 15:32:46.86+03	
75a6b200-0585-ebc6-a19d-ba29eaf6d93c	2021-05-22 15:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:33:07.853+03	2021-05-22 15:33:07.86+03	
9f66d129-0605-e176-77d1-86d52057c4f8	2021-05-22 15:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:33:28.853+03	2021-05-22 15:33:28.86+03	
7d0afff2-86ce-ce1f-9156-8986c08bb8b6	2021-05-22 15:33:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:33:49.853+03	2021-05-22 15:33:49.865+03	
4cadfe19-95fe-b750-01f9-d4cfa54f4077	2021-05-22 15:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:34:10.853+03	2021-05-22 15:34:10.86+03	
71c436fe-6e6f-987d-cbfb-32b5048305f0	2021-05-22 15:34:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:34:31.853+03	2021-05-22 15:34:31.86+03	
129e5046-fbd2-6ae5-f690-c977a513bc45	2021-05-22 15:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:34:52.853+03	2021-05-22 15:34:52.86+03	
b3cac464-d41f-1d85-6190-817eed26e970	2021-05-22 15:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:35:12.853+03	2021-05-22 15:35:12.859+03	
fb6dca29-5525-addb-b9e1-afb49fdfa86c	2021-05-22 15:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:35:32.853+03	2021-05-22 15:35:32.861+03	
7d838f09-afdf-ca21-047d-9da3ead12af5	2021-05-22 15:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:35:53.852+03	2021-05-22 15:35:53.859+03	
dcede0de-c210-6224-38a8-5e5a8309e0af	2021-05-22 15:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:36:14.853+03	2021-05-22 15:36:14.86+03	
80eeede8-1493-3eb0-08c3-d7ecec13ec4d	2021-05-22 15:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:36:35.853+03	2021-05-22 15:36:35.861+03	
9bb0f51d-f02f-53f4-eb8f-5e512b7afc07	2021-05-22 15:36:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:36:56.852+03	2021-05-22 15:36:56.86+03	
9e3eb105-6651-b38c-ee3e-d101e0e8552f	2021-05-22 15:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:37:17.852+03	2021-05-22 15:37:17.859+03	
cea06169-ec2c-ba19-a42a-6fd953d50013	2021-05-23 22:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:46:27.852+03	2021-05-23 22:46:27.859+03	
be96e186-365b-5f3a-9878-3600bc8cbc6f	2021-05-22 15:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:37:37.852+03	2021-05-22 15:37:37.859+03	
5af19283-8a5d-2d83-dac5-be5d3661ac89	2021-05-23 02:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:36:22.853+03	2021-05-23 02:36:22.859+03	
fab4005b-e187-c9d6-7085-76341d86a796	2021-05-22 15:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:37:57.853+03	2021-05-22 15:37:57.859+03	
a33eb519-7599-a933-ede1-5acfd71e76b6	2021-05-22 15:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:38:18.853+03	2021-05-22 15:38:18.859+03	
42799c12-a672-2da1-5b4c-39513ba2a963	2021-05-23 02:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:36:42.853+03	2021-05-23 02:36:42.86+03	
0ea88ad1-aaa5-5b22-9fc7-e711f152ad3b	2021-05-22 15:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:38:39.853+03	2021-05-22 15:38:39.859+03	
f9eecfad-a883-c42e-6c6b-7c1a1dcbbebc	2021-05-22 15:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:39:00.853+03	2021-05-22 15:39:00.86+03	
cdeca618-1c0f-f071-368e-aa85c440d833	2021-05-23 02:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:37:02.853+03	2021-05-23 02:37:02.859+03	
dd02101b-eb16-bfa6-c250-64a0ba22ea31	2021-05-22 15:39:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:39:20.853+03	2021-05-22 15:39:20.859+03	
8fe82162-e992-929d-dc44-adb67f388b3e	2021-05-22 15:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:39:42.853+03	2021-05-22 15:39:42.86+03	
9051af0f-97c2-4605-68e5-40e67c5702c6	2021-05-23 02:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:37:22.853+03	2021-05-23 02:37:22.86+03	
b3f5e750-8f89-fa4d-ee1b-a8cff7225994	2021-05-22 15:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 15:40:00.852+03	2021-05-22 15:40:00.857+03	ERROR
e37a4c08-6d1d-e73c-1745-4c28576504de	2021-05-22 15:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:40:13.852+03	2021-05-22 15:40:13.859+03	
c3978b63-dced-ef62-b6b7-1b1113c8af26	2021-05-23 02:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:37:43.852+03	2021-05-23 02:37:43.858+03	
f9a922a0-4ba7-6763-f3ba-404608057ee5	2021-05-22 15:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:40:33.853+03	2021-05-22 15:40:33.872+03	
969ef986-b611-6740-804e-f92db79454f7	2021-05-22 15:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:40:54.853+03	2021-05-22 15:40:54.86+03	
88879e2a-61c0-1847-d036-8b4e669fb645	2021-05-23 02:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:38:03.852+03	2021-05-23 02:38:03.861+03	
b308298b-d057-83ab-1006-ff6757e689b1	2021-05-22 15:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:41:15.853+03	2021-05-22 15:41:15.86+03	
7cc229d1-85a8-c3a2-e7b5-b01bc8720790	2021-05-22 15:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:41:35.853+03	2021-05-22 15:41:35.859+03	
a32eb53a-9468-a0eb-583d-93f1b8d90071	2021-05-23 02:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:38:23.852+03	2021-05-23 02:38:23.863+03	
055ff701-3551-0fd3-ff93-4f6e65f55783	2021-05-22 15:41:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:41:56.853+03	2021-05-22 15:41:56.873+03	
18d67d7e-1c44-c078-5c6e-ce2a7470f308	2021-05-22 15:42:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:42:16.853+03	2021-05-22 15:42:16.86+03	
8939e1e8-6cdb-f8aa-3df8-59a30de1a867	2021-05-23 02:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:38:43.853+03	2021-05-23 02:38:43.859+03	
350faaa0-7a9d-3285-0612-61578c643e42	2021-05-22 15:42:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:42:37.852+03	2021-05-22 15:42:37.86+03	
236022c6-588e-10fd-b0e1-4624592bbe15	2021-05-22 15:42:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:42:58.853+03	2021-05-22 15:42:58.86+03	
d81d791f-5806-518c-d3f0-01f8c8292cf6	2021-05-23 02:39:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:39:03.853+03	2021-05-23 02:39:03.861+03	
552ac9e5-3975-1f21-3abc-9ef85c04e213	2021-05-22 15:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:43:18.853+03	2021-05-22 15:43:18.86+03	
34cecb5f-10e2-56f7-69ab-000c4a29ad3c	2021-05-22 15:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:43:38.853+03	2021-05-22 15:43:38.861+03	
7bbf814f-7e4f-7321-3e51-3b5cef430c28	2021-05-23 02:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:39:23.853+03	2021-05-23 02:39:23.863+03	
2145a476-035e-3a65-bc58-edf3503beec6	2021-05-22 15:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:43:59.852+03	2021-05-22 15:43:59.86+03	
072ee257-3da2-e586-69fb-bac0a650c41b	2021-05-23 02:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:39:43.853+03	2021-05-23 02:39:43.86+03	
9c665c37-a9aa-f553-56f8-fc937883255f	2021-05-23 02:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 02:40:00.853+03	2021-05-23 02:40:00.863+03	ERROR
6c8ce605-4a3a-e005-c334-40aee7f51aa2	2021-05-23 02:40:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:40:14.852+03	2021-05-23 02:40:14.86+03	
8d48d5f5-9d79-23ba-5b65-be23614be085	2021-05-23 02:40:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:40:34.853+03	2021-05-23 02:40:34.911+03	
21c5edd5-61fd-7d33-70b7-6219ee053523	2021-05-23 02:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:40:54.853+03	2021-05-23 02:40:54.861+03	
63d41e46-e60e-cb25-3a20-37865447e208	2021-05-23 02:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:41:15.853+03	2021-05-23 02:41:15.879+03	
4da42351-6846-186a-b40f-4b544c430bae	2021-05-23 02:41:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:41:36.852+03	2021-05-23 02:41:36.861+03	
774d8539-b279-39a9-7f5c-1031d48217e8	2021-05-23 02:41:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:41:56.852+03	2021-05-23 02:41:56.873+03	
2a8535a7-4b6d-83de-d9ac-4caaadd7e08e	2021-05-23 02:42:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:42:17.853+03	2021-05-23 02:42:17.862+03	
aee4a229-6e55-054e-478c-3e33d85663a0	2021-05-23 02:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:42:38.853+03	2021-05-23 02:42:38.861+03	
effb4819-47dc-fc78-9b31-eae0957c8c81	2021-05-23 02:42:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:42:58.853+03	2021-05-23 02:42:58.861+03	
61d09322-af6b-2c9c-4ac2-b845c7b56c7e	2021-05-23 02:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:43:19.853+03	2021-05-23 02:43:19.859+03	
d263eb27-d5e8-8b82-3380-4ddab0ccd93c	2021-05-23 02:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:43:39.853+03	2021-05-23 02:43:39.861+03	
7728d81e-0f95-933d-edfa-73e0553104c3	2021-05-23 02:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:43:59.853+03	2021-05-23 02:43:59.861+03	
14282946-a40b-9349-be89-f276e18ecf00	2021-05-23 02:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:44:19.853+03	2021-05-23 02:44:19.859+03	
5e47a870-9f9e-c702-ab30-f95a17077b74	2021-05-23 02:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:44:39.853+03	2021-05-23 02:44:39.861+03	
4e668320-c024-8bca-82cc-6b09fe171fcb	2021-05-23 02:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:44:59.853+03	2021-05-23 02:44:59.862+03	
19cbe87a-6ff8-9d6a-206b-7d6e929cf4bc	2021-05-23 02:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:45:20.853+03	2021-05-23 02:45:20.862+03	
2b10305d-6e0d-1c55-af84-81e36efab726	2021-05-23 02:45:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:45:41.854+03	2021-05-23 02:45:41.861+03	
b8819c17-3141-8956-0eb1-1a2aec31dd1b	2021-05-23 02:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:46:03.852+03	2021-05-23 02:46:03.86+03	
1406277f-6237-5d34-21e6-7438492f99f3	2021-05-23 02:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:46:23.853+03	2021-05-23 02:46:23.862+03	
d2893bed-fc7e-019e-30bc-25cc26e89538	2021-05-23 02:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:46:44.853+03	2021-05-23 02:46:44.862+03	
136a2299-f505-4eac-4cdf-4b96cb11e376	2021-05-23 02:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:47:04.853+03	2021-05-23 02:47:04.869+03	
47031eeb-0201-d34a-debf-0b34a7f8b680	2021-05-23 02:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:47:24.853+03	2021-05-23 02:47:24.86+03	
6d9931e2-42e6-246d-7c2d-1e47e666eece	2021-05-23 02:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:47:44.853+03	2021-05-23 02:47:44.859+03	
c9d11e2b-3910-d014-fa30-8529ba98ca07	2021-05-23 02:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:48:04.853+03	2021-05-23 02:48:04.859+03	
960eb98e-760d-1319-5d1f-28d848acefb1	2021-05-23 02:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:48:25.852+03	2021-05-23 02:48:25.859+03	
a6078a9e-ae29-fb54-3ce3-448ffe40e6ea	2021-05-23 02:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:48:45.852+03	2021-05-23 02:48:45.86+03	
4cf5700e-f666-e6a6-f9cc-dfa539f24b3b	2021-05-23 02:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:49:05.853+03	2021-05-23 02:49:05.877+03	
6d4a4442-de67-ed44-6229-281603530da6	2021-05-23 02:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:49:25.853+03	2021-05-23 02:49:25.86+03	
6e6265bb-6cc9-3f73-ae3b-032e117787bc	2021-05-23 02:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:49:45.853+03	2021-05-23 02:49:45.86+03	
aad37f5e-583b-afe1-ea07-961817663a41	2021-05-23 02:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 02:50:00.852+03	2021-05-23 02:50:00.858+03	ERROR
d7dee1ce-f3f2-ebf4-45a8-282f361af0b7	2021-05-23 02:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:50:17.853+03	2021-05-23 02:50:17.86+03	
5320d504-fa08-3b91-2f0a-468d24ff8623	2021-05-22 15:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:37:47.853+03	2021-05-22 15:37:47.859+03	
999c6081-a6d1-8e7e-c144-92e1c121cf3f	2021-05-22 15:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:38:07.853+03	2021-05-22 15:38:07.863+03	
19ad350e-f147-d44f-684c-c73b20177c7f	2021-05-22 15:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:38:29.853+03	2021-05-22 15:38:29.859+03	
52255765-3221-e4de-e9ac-40cf3359f0fa	2021-05-22 15:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:38:50.852+03	2021-05-22 15:38:50.859+03	
acf29b0a-5de2-9459-bad7-22960dd79f45	2021-05-22 15:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:39:10.853+03	2021-05-22 15:39:10.86+03	
ee33df3d-e865-f6f7-ef9a-4d0b356ce3c7	2021-05-22 15:39:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:39:31.853+03	2021-05-22 15:39:31.859+03	
6fcc15ee-48e3-0023-ab89-913193da5e90	2021-05-22 15:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:39:52.853+03	2021-05-22 15:39:52.861+03	
3342483d-9339-268a-f909-d5a8dde56f14	2021-05-22 15:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:40:03.852+03	2021-05-22 15:40:03.863+03	
93d54d9b-0c87-e090-42a0-ba011a5fde27	2021-05-22 15:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:40:23.852+03	2021-05-22 15:40:23.859+03	
4b513e1b-7dda-7b56-b7e4-aa2cd9ce0e3c	2021-05-22 15:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:40:43.853+03	2021-05-22 15:40:43.86+03	
8eac1872-fcc3-c203-6542-09d2de8bdeb0	2021-05-22 15:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:41:04.853+03	2021-05-22 15:41:04.863+03	
df66fbe6-3bbd-3b52-bdf4-84c7c1c41769	2021-05-22 15:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:41:25.853+03	2021-05-22 15:41:25.861+03	
de24b60b-bdfd-6e20-7212-1ac59e7a36c5	2021-05-22 15:41:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:41:46.852+03	2021-05-22 15:41:46.869+03	
db0dacc9-00ba-0b54-305c-4ef2bc652752	2021-05-22 15:42:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:42:06.853+03	2021-05-22 15:42:06.861+03	
032bad6d-fd9c-7a97-7188-fec560fbe7c7	2021-05-22 15:42:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:42:26.853+03	2021-05-22 15:42:26.863+03	
49174651-1f37-ea6f-8f20-890c451e6a1a	2021-05-22 15:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:42:47.853+03	2021-05-22 15:42:47.858+03	
afa8a330-0cea-5d1a-04dd-c04fc10f8350	2021-05-22 15:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:43:08.853+03	2021-05-22 15:43:08.861+03	
bb9f78a3-62c5-2bc9-39f3-ec1348ef6b0e	2021-05-22 15:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:43:28.853+03	2021-05-22 15:43:28.861+03	
06e8d695-ec48-d71d-daff-9ae7069d5be6	2021-05-22 15:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:43:49.852+03	2021-05-22 15:43:49.868+03	
d5392942-11dd-4e8c-fd58-a4ecc0331258	2021-05-22 15:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:44:09.853+03	2021-05-22 15:44:09.859+03	
e12da73f-965c-9e53-453e-2d7354b32717	2021-05-22 15:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:44:19.853+03	2021-05-22 15:44:19.861+03	
28b80ed3-3e49-d37f-ef89-26fb91ebe9bb	2021-05-22 15:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:44:29.853+03	2021-05-22 15:44:29.861+03	
861762fa-d151-b797-aabf-33e3aeafc3e1	2021-05-22 15:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:44:40.852+03	2021-05-22 15:44:40.858+03	
96f568dd-7862-1701-2eb3-fb21e1b3721a	2021-05-22 15:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:44:50.853+03	2021-05-22 15:44:50.872+03	
d23ad19e-b595-b72f-b019-dc92b2b34048	2021-05-22 15:45:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:45:01.854+03	2021-05-22 15:45:01.871+03	
c761d785-bfb9-e3c1-7c33-d2612d73f210	2021-05-22 15:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:45:11.854+03	2021-05-22 15:45:11.86+03	
b53cd016-a956-14b9-dcfc-f2779cd66706	2021-05-22 15:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:45:22.853+03	2021-05-22 15:45:22.868+03	
b45cf54c-4b52-41f2-7164-57c5e2072bc9	2021-05-22 15:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:45:33.852+03	2021-05-22 15:45:33.859+03	
e4b18041-7f17-1020-7da9-6637896bb924	2021-05-22 15:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:45:43.852+03	2021-05-22 15:45:43.858+03	
af67b0d1-f86d-61ce-8386-ab27ba3d31db	2021-05-22 15:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:45:53.853+03	2021-05-22 15:45:53.865+03	
701ca96f-762e-ffea-2020-459b3c275655	2021-05-22 15:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:46:03.853+03	2021-05-22 15:46:03.86+03	
08f0bd00-43be-273a-de9f-4d93eb1ad62f	2021-05-22 15:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:46:13.853+03	2021-05-22 15:46:13.86+03	
4f708fb4-c8e9-534f-299c-9221cfb5fc2b	2021-05-22 15:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:46:23.853+03	2021-05-22 15:46:23.861+03	
78c3a109-b25c-f9ba-371c-8a10f83e8651	2021-05-22 15:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:46:33.853+03	2021-05-22 15:46:33.863+03	
0555e17d-3bc9-0b43-5d84-df4423f92d7e	2021-05-22 15:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:46:44.852+03	2021-05-22 15:46:44.864+03	
819776d6-062a-4952-3f74-a90608ce4c36	2021-05-22 15:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:46:54.853+03	2021-05-22 15:46:54.86+03	
0004337f-44fa-df89-a96a-e02182ad4df2	2021-05-22 15:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:47:04.853+03	2021-05-22 15:47:04.861+03	
d436fd08-5231-b1f1-2f5e-80f463c527e8	2021-05-22 15:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:47:14.853+03	2021-05-22 15:47:14.86+03	
09e51fe6-9446-618e-c7c1-7f0e4411388b	2021-05-22 15:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:47:25.853+03	2021-05-22 15:47:25.859+03	
bd482c9d-a448-72a7-f0b7-3dbb72e036e5	2021-05-22 15:47:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:47:36.853+03	2021-05-22 15:47:36.859+03	
c09146ca-7fe2-db88-4986-6b72bde1c0b4	2021-05-22 15:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:47:47.853+03	2021-05-22 15:47:47.86+03	
d39a5d5c-23f5-28e9-37e9-a4aede25b8bb	2021-05-22 15:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:47:58.853+03	2021-05-22 15:47:58.859+03	
62b17af5-0918-f476-19a2-68c340d3842c	2021-05-22 15:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:48:08.853+03	2021-05-22 15:48:08.86+03	
d260c827-171f-a0f4-2e2b-0256f2c84aeb	2021-05-22 15:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:48:18.853+03	2021-05-22 15:48:18.864+03	
0f418273-c885-95d4-c465-389887fcff75	2021-05-22 15:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:48:29.852+03	2021-05-22 15:48:29.859+03	
7705cdf8-f419-fca3-243d-d9652df45b95	2021-05-22 15:48:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:48:39.853+03	2021-05-22 15:48:39.859+03	
c156d52d-b5ac-cc3f-e624-d6824fd951ef	2021-05-22 15:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:48:50.852+03	2021-05-22 15:48:50.859+03	
20930b71-c242-31a2-05fa-d9d6a0bb9963	2021-05-22 15:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:49:00.853+03	2021-05-22 15:49:00.865+03	
e824237d-ac1d-c83c-19bc-0ba6f27d2f69	2021-05-22 15:49:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:49:10.853+03	2021-05-22 15:49:10.861+03	
fe2e3372-2d78-790f-9f1f-e5ffaba71479	2021-05-22 15:49:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:49:21.854+03	2021-05-22 15:49:21.871+03	
72ddebc8-9197-94f4-1865-e7a389a8c48c	2021-05-22 15:49:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:49:31.854+03	2021-05-22 15:49:31.86+03	
2880b685-3180-bfa2-adbf-c101b038458c	2021-05-22 15:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:49:42.853+03	2021-05-22 15:49:42.863+03	
b7c339c2-4cf1-7b07-adfb-b04b999efe97	2021-05-22 15:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:49:52.853+03	2021-05-22 15:49:52.862+03	
909671e1-cb2c-e98e-6d71-96a8dac54b26	2021-05-22 15:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 15:50:00.853+03	2021-05-22 15:50:00.857+03	ERROR
cb3b3f6b-d020-3831-98fa-80dd43f0184c	2021-05-22 15:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:50:02.853+03	2021-05-22 15:50:02.859+03	
3724df2d-ad6e-1ace-1608-f47b4224dbca	2021-05-22 15:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:50:13.853+03	2021-05-22 15:50:13.86+03	
956cb393-8894-f5de-85c2-94004a45e078	2021-05-22 15:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:50:23.853+03	2021-05-22 15:50:23.861+03	
cb4447cf-f928-3a7a-9ea8-3a80ec780d36	2021-05-22 15:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:50:33.853+03	2021-05-22 15:50:33.86+03	
a2f213f0-c225-dd4d-0592-4f811badd4d1	2021-05-22 15:50:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:50:43.853+03	2021-05-22 15:50:43.862+03	
a0550d68-8534-7354-2dbd-91e3e672e807	2021-05-22 15:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:50:53.853+03	2021-05-22 15:50:53.86+03	
9d80873b-86b9-5b0b-269a-f1b98f055227	2021-05-22 15:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:51:03.853+03	2021-05-22 15:51:03.864+03	
98b3dea4-0683-b1e3-2775-efccc6bd8e0e	2021-05-22 15:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:51:13.853+03	2021-05-22 15:51:13.859+03	
e4e36dab-d590-e535-10fa-4ef9b4c0ff73	2021-05-22 15:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:51:23.853+03	2021-05-22 15:51:23.861+03	
1c219b9c-ed20-de3f-f72c-d35eec6711a8	2021-05-22 15:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:51:33.853+03	2021-05-22 15:51:33.86+03	
8300db3e-7861-f408-b3e8-5a365338d129	2021-05-22 15:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:51:54.853+03	2021-05-22 15:51:54.86+03	
2e2217f3-336c-f65c-ad84-0fed09b89852	2021-05-22 15:52:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:52:14.853+03	2021-05-22 15:52:14.86+03	
08217324-4e30-8df2-2b31-0fa3d645c8cf	2021-05-22 15:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:52:34.853+03	2021-05-22 15:52:34.86+03	
26038d7f-c68b-ce1c-d0aa-76d52db29d7e	2021-05-22 15:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:52:55.853+03	2021-05-22 15:52:55.86+03	
efe4c758-b838-d96c-8f03-4ac51cc2543c	2021-05-22 15:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:53:16.852+03	2021-05-22 15:53:16.86+03	
2fa83f44-4b11-f100-ee68-2e3c6827851e	2021-05-22 15:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:53:37.852+03	2021-05-22 15:53:37.86+03	
36b1b3c4-947f-259a-7164-8ea1db710113	2021-05-22 15:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:53:57.853+03	2021-05-22 15:53:57.862+03	
c6c6e4a1-2c8a-dd1f-9b49-33dfc4be1d88	2021-05-22 15:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:54:17.853+03	2021-05-22 15:54:17.859+03	
97e18cad-e420-eab6-9c4a-4309b72be9ee	2021-05-22 15:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:54:38.852+03	2021-05-22 15:54:38.864+03	
c5b9fdae-3179-d6ca-ad20-1086bb6d9d7d	2021-05-22 15:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:54:58.853+03	2021-05-22 15:54:58.86+03	
90e54221-eb82-3ebd-f255-5bbe07ae4353	2021-05-22 15:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:55:19.853+03	2021-05-22 15:55:19.86+03	
6547065d-8069-4484-8344-f7626a9f4be3	2021-05-22 15:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:55:39.853+03	2021-05-22 15:55:39.86+03	
a8092a02-894b-8c61-428d-3a0b4bb28d7e	2021-05-22 15:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:56:00.852+03	2021-05-22 15:56:00.858+03	
4b99c6d0-db76-ee4e-4e6d-db7dcbcf240f	2021-05-22 15:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:56:20.853+03	2021-05-22 15:56:20.86+03	
fa3311b7-f3fc-eae5-a931-d49d28fc55c7	2021-05-22 15:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:56:40.853+03	2021-05-22 15:56:40.861+03	
ccb8ec2f-d02c-0b3f-b53c-5e3d2d285c5b	2021-05-22 15:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:57:00.853+03	2021-05-22 15:57:00.86+03	
bfd5ed7b-4f56-d678-eaf3-014d9dfef429	2021-05-22 15:57:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:57:21.853+03	2021-05-22 15:57:21.869+03	
47ea3345-618c-cae9-e121-daccde8d4314	2021-05-22 15:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:57:42.853+03	2021-05-22 15:57:42.859+03	
ed816d09-f655-98db-003b-1dc9a6649bbe	2021-05-22 15:58:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:58:03.853+03	2021-05-22 15:58:03.86+03	
a27cd8ac-91b8-f9e6-a1c1-843f9c592a34	2021-05-22 15:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:58:24.852+03	2021-05-22 15:58:24.859+03	
b75941ab-2273-cfd0-a784-dd5bff6838e2	2021-05-22 15:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:58:44.852+03	2021-05-22 15:58:44.859+03	
ff12a4b5-6748-00f7-5bb1-a86d15b1eb4e	2021-05-22 15:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:59:04.853+03	2021-05-22 15:59:04.86+03	
2c1b5987-587a-8338-8eb0-96827fd67320	2021-05-22 15:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:59:25.852+03	2021-05-22 15:59:25.861+03	
9cb69353-ab53-27b2-f55e-9bb1447a5198	2021-05-22 15:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:59:45.853+03	2021-05-22 15:59:45.86+03	
8539ce0b-b85a-7229-3a9f-61bebaa71d2e	2021-05-22 16:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 16:00:00.853+03	2021-05-22 16:00:00.869+03	ERROR
0a939470-7b8c-1cf6-ef39-30ad7b00130b	2021-05-22 16:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:00:15.853+03	2021-05-22 16:00:15.87+03	
cc5582de-866a-c7f0-9569-fd9f7b65f8da	2021-05-22 16:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:00:35.853+03	2021-05-22 16:00:35.872+03	
511a472c-5051-02c1-1d5f-5f9063419b30	2021-05-22 16:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:00:55.853+03	2021-05-22 16:00:55.861+03	
14ee4633-50b0-4196-260a-3395bf5c83af	2021-05-22 16:01:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:01:16.853+03	2021-05-22 16:01:16.862+03	
3e60a264-c0ca-762b-880c-c41126d082dd	2021-05-22 16:01:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:01:37.853+03	2021-05-22 16:01:37.859+03	
94b4f023-39d2-bff1-5fb4-bd7c22362de5	2021-05-22 16:01:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:01:58.853+03	2021-05-22 16:01:58.859+03	
19bfaf7b-4c30-24b0-a8e4-4ad82707b5be	2021-05-22 16:02:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:02:18.853+03	2021-05-22 16:02:18.86+03	
d1ff8baf-640c-54db-3ed4-17634c19399c	2021-05-22 16:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:02:38.853+03	2021-05-22 16:02:38.86+03	
05b08f78-deae-d04e-c509-314092619fab	2021-05-22 16:02:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:02:59.853+03	2021-05-22 16:02:59.861+03	
28de8b32-e8e3-3ade-1fe0-a1431ee4d701	2021-05-22 16:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:03:19.853+03	2021-05-22 16:03:19.859+03	
a1c15821-dc74-1786-0bc8-e0af210e4f6f	2021-05-22 16:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:03:40.852+03	2021-05-22 16:03:40.859+03	
10752022-4c54-7cf9-bf37-1094d741e349	2021-05-22 16:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:04:00.852+03	2021-05-22 16:04:00.859+03	
49e0ef43-beb8-f4af-e3c0-5eae547ca8d2	2021-05-22 16:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:04:20.853+03	2021-05-22 16:04:20.863+03	
04f82247-d230-36a0-f7c1-c7871095eaaf	2021-05-22 16:04:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:04:41.852+03	2021-05-22 16:04:41.868+03	
94151bf1-58d2-6415-0246-64753dbd2883	2021-05-22 16:05:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:05:01.852+03	2021-05-22 16:05:01.859+03	
47d5a70e-5ec7-dac1-c609-41f69efe74b7	2021-05-22 16:05:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:05:21.852+03	2021-05-22 16:05:21.859+03	
f55d8e94-e1ec-c8b2-0b34-d0a37ab0e825	2021-05-22 16:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:05:42.852+03	2021-05-22 16:05:42.859+03	
a62c6916-1b61-ae03-e96d-d37d915d6f41	2021-05-22 16:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:06:02.853+03	2021-05-22 16:06:02.859+03	
f50aded6-c2fb-c3f0-d0cf-2865ed77056d	2021-05-22 16:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:06:23.852+03	2021-05-22 16:06:23.859+03	
d63c3977-336e-896e-9226-ba741e10e8fa	2021-05-22 16:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:06:43.852+03	2021-05-22 16:06:43.869+03	
49ee1a7e-25d0-7b9a-7f80-18096ceeb3df	2021-05-22 16:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:07:03.853+03	2021-05-22 16:07:03.859+03	
e4721cb0-484a-42db-9824-94346400f5f2	2021-05-22 16:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:07:23.853+03	2021-05-22 16:07:23.859+03	
b02df0f6-2225-1b4e-0b01-efe28f295821	2021-05-22 16:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:07:43.853+03	2021-05-22 16:07:43.859+03	
2a5008ae-3bcd-58ec-76bf-d1c7fe770717	2021-05-22 16:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:08:03.853+03	2021-05-22 16:08:03.86+03	
98a9989a-fb02-a613-82e5-9c32f385a205	2021-05-22 16:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:08:24.853+03	2021-05-22 16:08:24.86+03	
dfb47ccd-93d2-d2f8-e1e3-de02e5f0f9a0	2021-05-22 16:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:08:44.853+03	2021-05-22 16:08:44.859+03	
64bb88b8-44b3-60a2-2c49-cfe4935d3044	2021-05-22 16:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:09:05.852+03	2021-05-22 16:09:05.859+03	
4e680ca9-6c28-815e-ff15-0966db430180	2021-05-22 16:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:09:25.852+03	2021-05-22 16:09:25.867+03	
207adf24-14bb-1bb5-4cd0-2aece186dc0c	2021-05-22 16:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:09:45.852+03	2021-05-22 16:09:45.859+03	
1da37793-50cd-ee33-7169-7ed59ec95fcb	2021-05-22 16:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 16:10:00.852+03	2021-05-22 16:10:00.858+03	ERROR
fc770bfc-a618-9a34-0ac8-af38de536e5c	2021-05-22 16:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:10:15.853+03	2021-05-22 16:10:15.86+03	
73deddca-0a1b-8a18-53b2-60906fe5e53a	2021-05-22 16:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:10:35.853+03	2021-05-22 16:10:35.861+03	
88bd484c-bb2d-ae57-7545-70c5adc6d665	2021-05-22 16:10:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:10:56.854+03	2021-05-22 16:10:56.86+03	
00fac32b-31f7-2a8c-3b5d-595b140a82f3	2021-05-22 16:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:11:18.853+03	2021-05-22 16:11:18.86+03	
3431b491-c403-3278-1b0a-ae1c6b535c65	2021-05-22 16:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:11:39.853+03	2021-05-22 16:11:39.859+03	
045a1735-2ffe-e3d8-8866-66a0c2935177	2021-05-22 16:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:11:59.853+03	2021-05-22 16:11:59.861+03	
1b68d84a-ab97-77dd-539d-1e990f7b713c	2021-05-22 16:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:12:20.852+03	2021-05-22 16:12:20.862+03	
814f217b-9dcf-9794-5f64-24205f10328d	2021-05-22 15:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:51:44.852+03	2021-05-22 15:51:44.86+03	
ad9619e0-3482-991b-9cf0-eea7bcb96a2b	2021-05-22 15:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:52:04.853+03	2021-05-22 15:52:04.861+03	
2d5be4e3-a7f6-376d-7be3-203ef522b2b6	2021-05-22 15:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:52:24.853+03	2021-05-22 15:52:24.861+03	
3886242e-5aa4-0a1f-9952-33bff6ddc488	2021-05-22 15:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:52:45.853+03	2021-05-22 15:52:45.86+03	
9a0270d3-7067-e2d1-4641-bba9b544a12f	2021-05-22 15:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:53:05.853+03	2021-05-22 15:53:05.859+03	
6dc23f28-3900-3bb2-c3e2-1942a5c72704	2021-05-22 15:53:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:53:26.853+03	2021-05-22 15:53:26.86+03	
81f47a43-1508-c04d-c5eb-cd59a1e508cc	2021-05-22 15:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:53:47.852+03	2021-05-22 15:53:47.86+03	
8a97a1d8-c3b5-51e5-980b-f1843de8ad85	2021-05-22 15:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:54:07.853+03	2021-05-22 15:54:07.86+03	
a7c445f6-2507-40d3-f543-96d877a31f9c	2021-05-22 15:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:54:27.853+03	2021-05-22 15:54:27.859+03	
d3fa27f0-b7af-bc1d-6d37-28f73614f0eb	2021-05-22 15:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:54:48.852+03	2021-05-22 15:54:48.859+03	
8d220310-0aa9-c4e6-ab39-a84cf9cb5a4d	2021-05-22 15:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:55:09.853+03	2021-05-22 15:55:09.86+03	
64208418-0d15-3ae8-574c-a854b9204234	2021-05-22 15:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:55:29.853+03	2021-05-22 15:55:29.861+03	
217033ec-61bd-f991-700e-58c130cf10a1	2021-05-22 15:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:55:49.853+03	2021-05-22 15:55:49.861+03	
8c17c8fe-98ee-6a76-0c32-e4286bf66443	2021-05-22 15:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:56:10.853+03	2021-05-22 15:56:10.865+03	
b7a629f9-594c-822f-bc2b-bfb845437244	2021-05-22 15:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:56:30.853+03	2021-05-22 15:56:30.86+03	
909930f8-4bc7-723a-6d68-6bf15dddb096	2021-05-22 15:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:56:50.853+03	2021-05-22 15:56:50.859+03	
9a1667c4-6463-fdf2-b931-6e9481e45a76	2021-05-22 15:57:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:57:11.853+03	2021-05-22 15:57:11.859+03	
1fbe0c17-6545-8062-8347-25314b220e3c	2021-05-22 15:57:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:57:31.854+03	2021-05-22 15:57:31.861+03	
34303edf-76c3-edfd-a419-ca15be895c29	2021-05-22 15:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:57:53.852+03	2021-05-22 15:57:53.859+03	
0ca12e05-8cb4-1643-6037-6d36cc29b0a7	2021-05-22 15:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:58:13.853+03	2021-05-22 15:58:13.861+03	
8eb56be4-a1fb-9f7a-0c08-6d7553c586d2	2021-05-22 15:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:58:34.852+03	2021-05-22 15:58:34.86+03	
11327bb3-3c1b-24b4-b8dc-3b3860832567	2021-05-22 15:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:58:54.852+03	2021-05-22 15:58:54.859+03	
e3cbcec8-56e1-d70d-7967-b6e0e72e3c60	2021-05-22 15:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:59:14.853+03	2021-05-22 15:59:14.859+03	
e038df6c-ea3e-67b7-0c11-f759fec50a1e	2021-05-22 15:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:59:35.853+03	2021-05-22 15:59:35.859+03	
65239c63-14b1-4d59-bfee-3fa47cd19485	2021-05-22 15:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 15:59:55.853+03	2021-05-22 15:59:55.859+03	
f21095f1-e1c1-b241-7777-8d6f710ed8c6	2021-05-22 16:00:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:00:05.853+03	2021-05-22 16:00:05.866+03	
9f1f9a43-914d-f7a4-17b9-21091b5dbd05	2021-05-22 16:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:00:25.853+03	2021-05-22 16:00:25.869+03	
1c5e05ba-d1bb-ea7a-f995-7186762d1e62	2021-05-22 16:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:00:45.853+03	2021-05-22 16:00:45.864+03	
c98b217f-89fc-abae-093b-2de136375667	2021-05-22 16:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:01:05.853+03	2021-05-22 16:01:05.86+03	
afb5ad56-08c7-8403-51b2-be5e6f090c31	2021-05-22 16:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:01:27.852+03	2021-05-22 16:01:27.859+03	
d95e26b7-f8f9-2995-c6ed-cc7a669ef387	2021-05-22 16:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:01:48.852+03	2021-05-22 16:01:48.859+03	
6a763cd6-d3b0-b3a8-4562-bdb323f6ff65	2021-05-22 16:02:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:02:08.853+03	2021-05-22 16:02:08.86+03	
2a81d68c-841b-8d56-c399-abaf07c7d04a	2021-05-22 16:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:02:28.853+03	2021-05-22 16:02:28.861+03	
ec0b197f-c437-d10c-1597-6fc356ca55f5	2021-05-22 16:02:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:02:49.852+03	2021-05-22 16:02:49.859+03	
83eeb7da-5c44-e35b-78a4-e802fe2f4575	2021-05-22 16:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:03:09.853+03	2021-05-22 16:03:09.861+03	
34061264-4fc5-3652-9615-37e43337a375	2021-05-22 16:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:03:30.852+03	2021-05-22 16:03:30.86+03	
1092128f-d26a-7fc4-adfe-99c876fc2663	2021-05-22 16:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:03:50.852+03	2021-05-22 16:03:50.864+03	
1c326270-ef59-803b-8221-260f2d3c89b7	2021-05-22 16:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:04:10.852+03	2021-05-22 16:04:10.862+03	
4a9007c8-14db-0619-395a-9a074d177c44	2021-05-22 16:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:04:30.853+03	2021-05-22 16:04:30.861+03	
7dfa7bca-3967-178a-4a67-ad6590ea069c	2021-05-22 16:04:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:04:51.852+03	2021-05-22 16:04:51.859+03	
eb999d61-52a0-3176-b4d2-5c04f9fa654c	2021-05-22 16:05:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:05:11.852+03	2021-05-22 16:05:11.859+03	
61d10895-86eb-4d0b-d5fe-13d28024510a	2021-05-22 16:05:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:05:31.854+03	2021-05-22 16:05:31.862+03	
e9ca1744-b432-ae27-f8b9-b6fc7de295e9	2021-05-22 16:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:05:52.853+03	2021-05-22 16:05:52.859+03	
b1fd6ff2-9c7d-966e-9594-6af71f20aba5	2021-05-22 16:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:06:12.853+03	2021-05-22 16:06:12.859+03	
6595fa46-e5a1-c0b5-90e2-cd6061d1bf52	2021-05-22 16:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:06:33.852+03	2021-05-22 16:06:33.859+03	
970697ae-7953-87d7-8cf2-cf8c08979111	2021-05-22 16:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:06:53.853+03	2021-05-22 16:06:53.859+03	
f2c8729c-be2d-dff4-d9b4-0d6385d73b44	2021-05-22 16:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:07:13.853+03	2021-05-22 16:07:13.86+03	
953fabb4-e9c1-75c0-1d07-29eac4d0d72f	2021-05-22 16:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:07:33.853+03	2021-05-22 16:07:33.859+03	
e7698a1a-111e-1477-c2e2-8d79f411f424	2021-05-22 16:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:07:53.853+03	2021-05-22 16:07:53.859+03	
c0d7c56d-ccc6-4b4c-709d-e7cfbe098a5a	2021-05-22 16:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:08:13.853+03	2021-05-22 16:08:13.859+03	
331b33ff-047a-dc39-412e-8f63944bd50a	2021-05-22 16:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:08:34.853+03	2021-05-22 16:08:34.859+03	
095cb0f9-7f02-39a9-8625-5d3ae1add89d	2021-05-22 16:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:08:55.852+03	2021-05-22 16:08:55.86+03	
df4cd888-7731-bb60-2c85-3bce0dcfff5e	2021-05-22 16:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:09:15.852+03	2021-05-22 16:09:15.86+03	
36ea190e-d54a-abf0-33db-a7a83c97e319	2021-05-22 16:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:09:35.852+03	2021-05-22 16:09:35.859+03	
04e7b982-6755-88f7-71a8-f8cf39ddb530	2021-05-22 16:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:09:55.852+03	2021-05-22 16:09:55.861+03	
566f7c53-f0b5-8c79-ed15-2be91ae7d5f0	2021-05-22 16:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:10:05.853+03	2021-05-22 16:10:05.86+03	
8ff5d041-5edb-0e7c-367a-90383760e2a3	2021-05-22 16:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:10:25.853+03	2021-05-22 16:10:25.868+03	
60f37ee5-7e0a-790b-69e2-3602fd5598bd	2021-05-22 16:10:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:10:46.853+03	2021-05-22 16:10:46.863+03	
02d20e05-9e61-5765-1733-45ce6d9d2ba7	2021-05-22 16:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:11:07.853+03	2021-05-22 16:11:07.859+03	
8e50d04c-eeac-d57f-6d2f-12233e28a133	2021-05-22 16:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:11:29.853+03	2021-05-22 16:11:29.86+03	
45ecb20d-d554-00eb-f42e-fadb39f185b7	2021-05-22 16:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:11:49.853+03	2021-05-22 16:11:49.877+03	
1de31383-cc5e-b82b-d21a-970f40f5bde4	2021-05-22 16:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:12:09.853+03	2021-05-22 16:12:09.859+03	
3d234d39-e7dc-8840-f5b2-66f91be26d6b	2021-05-22 16:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:12:30.853+03	2021-05-22 16:12:30.859+03	
572ed36f-4e66-500e-47db-d545b26f46dd	2021-05-22 16:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:12:41.854+03	2021-05-22 16:12:41.862+03	
914b0b0d-85e0-da96-5b5e-4d378324720c	2021-05-22 16:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:13:02.853+03	2021-05-22 16:13:02.859+03	
d6b2e969-d609-6a81-31aa-677dd4f9b8b6	2021-05-22 16:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:13:22.853+03	2021-05-22 16:13:22.861+03	
552ab515-c12e-3874-f649-3cdf95e212ef	2021-05-22 16:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:13:44.852+03	2021-05-22 16:13:44.859+03	
e9efec5b-de1d-762a-031a-929a89ba93a3	2021-05-22 16:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:14:04.853+03	2021-05-22 16:14:04.869+03	
e91bb485-da8a-ed99-fd8f-cd4a75a127b1	2021-05-22 16:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:14:24.853+03	2021-05-22 16:14:24.863+03	
c79af6db-931a-aede-4ec8-1c8e529c8ae7	2021-05-22 16:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:14:44.853+03	2021-05-22 16:14:44.859+03	
10436570-e55e-6de3-8b04-b8ee9fa4e72e	2021-05-22 16:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:15:04.853+03	2021-05-22 16:15:04.86+03	
e0ce9e2c-28f9-603a-303d-94873f6017a9	2021-05-22 16:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:15:25.853+03	2021-05-22 16:15:25.86+03	
28a4332e-cb40-eff7-41e5-1902539eca27	2021-05-22 16:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:15:45.853+03	2021-05-22 16:15:45.869+03	
d1eca1db-5889-16c8-3e2f-1d0d4bafbf1e	2021-05-22 16:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:16:05.853+03	2021-05-22 16:16:05.862+03	
3fc5ff31-e6ca-e26f-3a46-a3279690827c	2021-05-22 16:16:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:16:26.853+03	2021-05-22 16:16:26.86+03	
f3de31b7-1fdf-480a-ea43-e3bae9addc4c	2021-05-22 16:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:16:47.853+03	2021-05-22 16:16:47.859+03	
1fad690d-4f4f-003c-120a-4a8ac18e3534	2021-05-22 16:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:17:07.853+03	2021-05-22 16:17:07.86+03	
90370f0a-7490-3703-986b-71f0810e1b9c	2021-05-22 16:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:17:27.853+03	2021-05-22 16:17:27.859+03	
0c37e829-a893-f53e-2144-d1d7ad50911a	2021-05-22 16:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:17:47.853+03	2021-05-22 16:17:47.86+03	
6cd242e8-d34f-ccea-a42e-0c43dfb1dad0	2021-05-22 16:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:18:07.853+03	2021-05-22 16:18:07.861+03	
cf523732-f22d-3b5c-31c1-bd014017c093	2021-05-22 16:18:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:18:27.853+03	2021-05-22 16:18:27.861+03	
70333b5f-1a53-448e-88a3-41bb76553482	2021-05-22 16:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:18:48.852+03	2021-05-22 16:18:48.859+03	
7b38ad8a-84f0-e624-0398-af17421fcf94	2021-05-22 16:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:19:08.853+03	2021-05-22 16:19:08.861+03	
c1e98c28-dd29-8e60-618e-5b7de633c722	2021-05-22 16:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:19:29.853+03	2021-05-22 16:19:29.86+03	
68aea814-ee14-0e00-5e4e-aa1d27cc6a00	2021-05-22 16:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:19:49.853+03	2021-05-22 16:19:49.86+03	
f0b33ccd-271d-7bf8-5472-7329b7ac967d	2021-05-22 16:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 16:20:00.853+03	2021-05-22 16:20:00.857+03	ERROR
fcb34831-edec-1e52-6737-18861ce9d8ce	2021-05-22 16:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:20:19.853+03	2021-05-22 16:20:19.861+03	
2f4947f5-f784-6779-fc24-5bb39c55940f	2021-05-22 16:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:20:39.853+03	2021-05-22 16:20:39.861+03	
c659b4f3-9c42-fb49-f160-be95425590e9	2021-05-22 16:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:21:00.852+03	2021-05-22 16:21:00.861+03	
799c6b67-ac19-0c9d-6a38-397876cf458a	2021-05-22 16:21:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:21:21.853+03	2021-05-22 16:21:21.859+03	
a3d768fa-434d-0f6d-4057-724a6ed829c6	2021-05-22 16:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:21:42.853+03	2021-05-22 16:21:42.861+03	
001a07fc-576c-4699-566f-57dba961e315	2021-05-22 16:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:22:02.853+03	2021-05-22 16:22:02.859+03	
48c1de4b-70a2-2af0-4ffd-f28618d9ee71	2021-05-22 16:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:22:22.853+03	2021-05-22 16:22:22.863+03	
1c840d19-53fa-a2b7-f452-914c48616980	2021-05-22 16:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:22:42.853+03	2021-05-22 16:22:42.86+03	
62a7fce2-7e92-0607-0da2-3e2e45438a45	2021-05-22 16:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:23:02.853+03	2021-05-22 16:23:02.859+03	
0e059e37-23bc-8bec-a638-90a6a7366b58	2021-05-22 16:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:23:23.853+03	2021-05-22 16:23:23.86+03	
6af3fa64-685b-de07-214f-5281e01857ec	2021-05-22 16:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:23:43.853+03	2021-05-22 16:23:43.863+03	
725d6b96-2c92-9be2-bf85-64793adb7615	2021-05-22 16:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:24:03.853+03	2021-05-22 16:24:03.861+03	
5bbb9215-ccaf-f76e-4e5d-db8824f59daa	2021-05-22 16:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:24:25.852+03	2021-05-22 16:24:25.859+03	
946aa3a8-e881-31df-4c4c-d449d8b41c85	2021-05-22 16:24:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:24:46.852+03	2021-05-22 16:24:46.859+03	
9ee940d1-0aa5-9177-02b1-a25e3b2c3a06	2021-05-22 16:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:25:07.853+03	2021-05-22 16:25:07.86+03	
ef668923-0ec4-58d8-e292-091f82117adc	2021-05-22 16:25:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:25:28.853+03	2021-05-22 16:25:28.859+03	
1714b899-48a5-b549-623d-99364a21ba86	2021-05-22 16:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:25:49.853+03	2021-05-22 16:25:49.862+03	
5a4fdfe2-eacc-4239-d32b-38ddb87d93a9	2021-05-22 16:26:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:26:09.853+03	2021-05-22 16:26:09.859+03	
3d6666a4-da6d-4c12-9f13-79f04c033649	2021-05-22 16:26:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:26:29.853+03	2021-05-22 16:26:29.859+03	
e8291efd-91df-ceb8-bbd7-8cbe30f627cf	2021-05-22 16:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:26:50.852+03	2021-05-22 16:26:50.859+03	
b7dbc6c7-f771-44e7-b194-22cf8ba24912	2021-05-22 16:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:27:10.853+03	2021-05-22 16:27:10.859+03	
a0b82055-3f99-9782-2c04-20a9da503663	2021-05-22 16:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:27:30.853+03	2021-05-22 16:27:30.858+03	
b8c4323e-ec67-bef0-927c-3e9d658593e2	2021-05-22 16:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:27:52.852+03	2021-05-22 16:27:52.859+03	
ce7eeec1-573f-d5d8-400c-9c4877545771	2021-05-22 16:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:28:13.853+03	2021-05-22 16:28:13.861+03	
893e28f6-24d2-c318-3b55-0f204a975fdb	2021-05-22 16:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:28:34.853+03	2021-05-22 16:28:34.859+03	
eee249f0-a6b6-cf15-9b14-83691d243959	2021-05-22 16:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:28:54.853+03	2021-05-22 16:28:54.86+03	
e66fc166-7ccf-655f-79e8-0556fc5100b2	2021-05-22 16:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:29:14.853+03	2021-05-22 16:29:14.86+03	
e83910b7-26a0-f92e-2f00-95fcb6b2f5eb	2021-05-22 16:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:29:34.853+03	2021-05-22 16:29:34.86+03	
fb48f374-8d99-ec00-776d-56b2b9c5c345	2021-05-22 16:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:29:54.853+03	2021-05-22 16:29:54.86+03	
94244987-8a40-63eb-b8ae-bce98af945df	2021-05-22 16:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:30:04.853+03	2021-05-22 16:30:04.861+03	
a9c035a7-aa00-f9cf-0187-347b45b2aec8	2021-05-22 16:30:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:30:25.853+03	2021-05-22 16:30:25.86+03	
d2181c0d-d821-6f77-8630-5cc71f382f6f	2021-05-22 16:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:30:45.853+03	2021-05-22 16:30:45.865+03	
4323e6b9-4859-d4d6-16e2-e55585a48ffa	2021-05-22 16:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:31:05.853+03	2021-05-22 16:31:05.859+03	
8dd41443-2093-4a21-8068-6eb982311590	2021-05-22 16:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:31:25.853+03	2021-05-22 16:31:25.86+03	
d99f9df3-3038-6f63-721f-3db28080095d	2021-05-22 16:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:31:46.852+03	2021-05-22 16:31:46.859+03	
777e8e6c-44a8-0fe0-4baa-bc5fe5478f96	2021-05-22 16:32:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:32:06.853+03	2021-05-22 16:32:06.86+03	
aa43eed1-ab13-b631-985c-85cfef4fd031	2021-05-22 16:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:32:27.853+03	2021-05-22 16:32:27.86+03	
b66dc2df-570f-6e4e-fb91-df0612b90da7	2021-05-22 16:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:32:47.853+03	2021-05-22 16:32:47.867+03	
272965aa-f1a7-d1d1-2dad-253945300ae7	2021-05-22 16:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:33:08.852+03	2021-05-22 16:33:08.911+03	
92aa3912-e5b1-4820-e448-7de7175c4e2f	2021-05-22 16:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:33:28.853+03	2021-05-22 16:33:28.859+03	
e95a1fbd-569e-8757-669c-8dced0441992	2021-05-22 16:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:12:52.852+03	2021-05-22 16:12:52.859+03	
bdb69751-caf5-5ca5-701d-361fb9e91064	2021-05-22 16:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:13:12.853+03	2021-05-22 16:13:12.86+03	
7e2e3cca-8398-fcf4-f277-b4a56e9e6f1f	2021-05-22 16:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:13:33.853+03	2021-05-22 16:13:33.86+03	
408f341c-0328-b2b7-2a51-f82670e6f188	2021-05-22 16:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:13:54.852+03	2021-05-22 16:13:54.859+03	
78b02ef2-683f-6e4d-8299-6c3bc206e0d5	2021-05-22 16:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:14:14.853+03	2021-05-22 16:14:14.861+03	
da6d9bd6-732f-abc3-15fd-29f6f647ff12	2021-05-22 16:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:14:34.853+03	2021-05-22 16:14:34.86+03	
984a7192-febf-527d-6cae-84fb1d23bf77	2021-05-22 16:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:14:54.853+03	2021-05-22 16:14:54.86+03	
16f600b8-4cb6-9cb5-600e-a8f21194f4ba	2021-05-22 16:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:15:15.853+03	2021-05-22 16:15:15.861+03	
0e34d5fb-8d86-abc1-3680-2051d02830fa	2021-05-22 16:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:15:35.853+03	2021-05-22 16:15:35.859+03	
2f654247-5c6d-5934-46a3-028278aafe89	2021-05-22 16:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:15:55.853+03	2021-05-22 16:15:55.872+03	
9b3e22e0-907b-677a-95e7-729b1e1da257	2021-05-22 16:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:16:15.853+03	2021-05-22 16:16:15.87+03	
a4d88657-17a2-7a96-e8d6-5cbd1b5324a0	2021-05-22 16:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:16:37.853+03	2021-05-22 16:16:37.859+03	
6f1978dd-2f82-edf9-7e30-2ce70a9304a7	2021-05-22 16:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:16:57.853+03	2021-05-22 16:16:57.859+03	
19aa5ecd-1fb3-75cc-78bc-2373444cef59	2021-05-22 16:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:17:17.853+03	2021-05-22 16:17:17.859+03	
9c63c11d-a649-abc2-7b79-44cb5ac956e2	2021-05-22 16:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:17:37.853+03	2021-05-22 16:17:37.86+03	
c71edd17-711a-8253-8374-c35d609d776f	2021-05-22 16:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:17:57.853+03	2021-05-22 16:17:57.86+03	
48412cb7-691e-3789-eb85-9aad63e611be	2021-05-22 16:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:18:17.853+03	2021-05-22 16:18:17.871+03	
3419ca97-2f3b-9098-441d-5712a2616a0e	2021-05-22 16:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:18:37.853+03	2021-05-22 16:18:37.859+03	
35efa6fa-131a-2c88-5308-94c8fd60fd8a	2021-05-22 16:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:18:58.853+03	2021-05-22 16:18:58.859+03	
e5a7cbf0-52ea-7200-859c-32a7676fc399	2021-05-22 16:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:19:18.853+03	2021-05-22 16:19:18.86+03	
9d7dc936-76eb-399b-d63b-1e43b3e0e148	2021-05-22 16:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:19:39.853+03	2021-05-22 16:19:39.867+03	
697ace54-45ee-3848-8590-f07ad44b5c6d	2021-05-22 16:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:19:59.853+03	2021-05-22 16:19:59.86+03	
a807c933-b0e3-9e3e-c28d-9a57cae900c8	2021-05-22 16:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:20:09.853+03	2021-05-22 16:20:09.86+03	
a8c1ce3f-ca3e-6f40-3f2f-ac7eef911258	2021-05-22 16:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:20:29.853+03	2021-05-22 16:20:29.859+03	
25a8981e-b5b7-7afb-d947-7fba7690ebdd	2021-05-22 16:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:20:50.852+03	2021-05-22 16:20:50.86+03	
675c8612-13ee-573b-754d-b788ebab35e2	2021-05-22 16:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:21:10.853+03	2021-05-22 16:21:10.86+03	
802a4848-5a13-1962-b71d-2018fac34419	2021-05-22 16:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:21:32.852+03	2021-05-22 16:21:32.863+03	
34ab4abc-8f6f-8fd2-fb00-e77fef37f4ac	2021-05-22 16:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:21:52.853+03	2021-05-22 16:21:52.86+03	
54673906-c1c2-6527-0f02-90b1bc58efa5	2021-05-22 16:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:22:12.853+03	2021-05-22 16:22:12.872+03	
3058526a-54f9-5cd1-23bb-c5ac6e91d3c8	2021-05-22 16:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:22:32.853+03	2021-05-22 16:22:32.861+03	
784d3b09-d7bc-145d-69d1-9f941d2a1142	2021-05-22 16:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:22:52.853+03	2021-05-22 16:22:52.859+03	
5acb01b4-3bc6-b15c-2d3e-93824c6302fc	2021-05-22 16:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:23:13.852+03	2021-05-22 16:23:13.858+03	
9d5261c8-01ac-3980-a10f-2b7342274675	2021-05-22 16:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:23:33.853+03	2021-05-22 16:23:33.863+03	
b84919f7-14c5-c4cd-d1d1-9a9d5488f5ab	2021-05-22 16:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:23:53.853+03	2021-05-22 16:23:53.862+03	
312d4e5e-3f4f-2a1a-85dd-3563dedac78b	2021-05-22 16:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:24:14.853+03	2021-05-22 16:24:14.862+03	
8b51110e-0aae-07fe-6e4c-ba8af2a2a54b	2021-05-22 16:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:24:35.853+03	2021-05-22 16:24:35.859+03	
ffb15a95-1fa5-061f-ec6f-0cb6711bb741	2021-05-22 16:24:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:24:56.854+03	2021-05-22 16:24:56.863+03	
61f9742f-9abd-760f-da3a-bced661b63e4	2021-05-22 16:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:25:18.853+03	2021-05-22 16:25:18.859+03	
80a36ce9-dc7f-0fad-c53a-546c0c6092d5	2021-05-22 16:25:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:25:38.853+03	2021-05-22 16:25:38.86+03	
14804cc9-9bc9-8ec8-4dfe-072172762da5	2021-05-22 16:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:25:59.853+03	2021-05-22 16:25:59.86+03	
449dda6c-0746-c94b-1a09-7b7b3d81a078	2021-05-22 16:26:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:26:19.853+03	2021-05-22 16:26:19.86+03	
05a92092-7b7e-4c6e-6a7f-ab0cc14f96f1	2021-05-22 16:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:26:39.853+03	2021-05-22 16:26:39.86+03	
0ebfa6d4-e2fc-ba39-ae78-ec18f91d8959	2021-05-22 16:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:27:00.853+03	2021-05-22 16:27:00.86+03	
1ec53428-d0f1-e626-8470-80df1a430da1	2021-05-22 16:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:27:20.853+03	2021-05-22 16:27:20.859+03	
726ebe3f-5caf-3461-0bc5-5086ded9a71a	2021-05-22 16:27:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:27:41.854+03	2021-05-22 16:27:41.865+03	
2928ebb2-d631-5ece-e321-833303c04168	2021-05-22 16:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:28:02.853+03	2021-05-22 16:28:02.868+03	
354251fe-b481-5beb-0881-e52c858f4808	2021-05-22 16:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:28:23.853+03	2021-05-22 16:28:23.86+03	
68052e14-daf8-ad20-a73d-a7269f826a37	2021-05-22 16:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:28:44.853+03	2021-05-22 16:28:44.866+03	
b5add58d-d5c8-6519-09df-793a68a75171	2021-05-22 16:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:29:04.853+03	2021-05-22 16:29:04.86+03	
a9197990-0173-78af-ecd6-1b44ce77cc97	2021-05-22 16:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:29:24.853+03	2021-05-22 16:29:24.861+03	
ff97540f-24e9-cbb2-0277-e1df5d5e4f61	2021-05-22 16:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:29:44.853+03	2021-05-22 16:29:44.86+03	
f9cd7586-1ec6-3c43-5759-f33c269b4906	2021-05-22 16:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 16:30:00.852+03	2021-05-22 16:30:00.859+03	ERROR
ff28bf55-d359-3b60-56b3-85e47f8f3090	2021-05-22 16:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:30:14.853+03	2021-05-22 16:30:14.871+03	
f03f5572-55f6-1f3f-c8fc-239f315c93d7	2021-05-22 16:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:30:35.853+03	2021-05-22 16:30:35.86+03	
9a9b36a0-74f1-08b0-66dc-0a195055f412	2021-05-22 16:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:30:55.853+03	2021-05-22 16:30:55.859+03	
127c8c3c-08e0-e966-5a39-f30c8b47b1c7	2021-05-22 16:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:31:15.853+03	2021-05-22 16:31:15.861+03	
a155596c-33eb-16c4-c981-6d15bdbf6190	2021-05-22 16:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:31:35.853+03	2021-05-22 16:31:35.858+03	
32f5db42-c7f5-dec7-c99f-ebedbf46b8b1	2021-05-22 16:31:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:31:56.853+03	2021-05-22 16:31:56.861+03	
761a12c6-08df-33f7-67ae-c2fdc6191051	2021-05-22 16:32:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:32:16.854+03	2021-05-22 16:32:16.861+03	
58da84a2-cbea-7be0-c070-05533a18137c	2021-05-22 16:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:32:37.853+03	2021-05-22 16:32:37.861+03	
16c46e5a-2e17-6301-f5cf-98d841a8ec8e	2021-05-22 16:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:32:57.853+03	2021-05-22 16:32:57.861+03	
e21e573b-f120-c3a4-1120-82c0140b6381	2021-05-22 16:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:33:18.853+03	2021-05-22 16:33:18.871+03	
be191669-9677-ac33-ea78-91b2acd16826	2021-05-22 16:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:33:39.853+03	2021-05-22 16:33:39.86+03	
9c9f8985-df5d-a59e-6c7e-6cc102dbf19c	2021-05-22 16:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:33:49.853+03	2021-05-22 16:33:49.859+03	
c92a1a3b-419c-0b67-c944-5d05de69ad7a	2021-05-22 16:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:34:09.853+03	2021-05-22 16:34:09.86+03	
9d765074-8706-bbfe-b567-d9179c56a1da	2021-05-22 16:34:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:34:31.853+03	2021-05-22 16:34:31.868+03	
6e6def92-37fa-9252-fa0d-0fecd35cf726	2021-05-22 16:34:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:34:52.853+03	2021-05-22 16:34:52.859+03	
84e025a4-6f6a-8093-0eb5-c8facd35e9d2	2021-05-22 16:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:35:12.853+03	2021-05-22 16:35:12.861+03	
b20e4157-14a8-5394-2da8-8a5b566007fa	2021-05-22 16:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:35:33.853+03	2021-05-22 16:35:33.86+03	
b5e06484-ad03-7249-d273-4677e1eeb0e2	2021-05-22 16:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:35:54.853+03	2021-05-22 16:35:54.859+03	
b64ba839-c4c3-111b-0e23-ab033a441bc5	2021-05-22 16:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:36:15.853+03	2021-05-22 16:36:15.867+03	
f57157ff-3cb4-47ce-4d9a-6f7a90605a3b	2021-05-22 16:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:36:36.852+03	2021-05-22 16:36:36.859+03	
24476706-cbca-26a9-5e69-e57075c98692	2021-05-22 16:36:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:36:56.852+03	2021-05-22 16:36:56.861+03	
7a987220-4337-f130-d5af-31d6aac5d143	2021-05-22 16:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:37:17.853+03	2021-05-22 16:37:17.861+03	
4d0484c7-45fa-7aef-ad03-37c94f82e3c1	2021-05-22 16:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:37:37.853+03	2021-05-22 16:37:37.859+03	
9cb4ba51-649e-4504-6c96-47dc2cb42e95	2021-05-22 16:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:37:58.853+03	2021-05-22 16:37:58.86+03	
6ecb91f1-7482-72db-6901-d567c30fa634	2021-05-22 16:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:38:18.853+03	2021-05-22 16:38:18.864+03	
43d45545-a034-8be1-db7a-bf4f03eefdc3	2021-05-22 16:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:38:38.853+03	2021-05-22 16:38:38.871+03	
3184f189-fead-25ee-1119-bfbbc8668d83	2021-05-22 16:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:38:58.853+03	2021-05-22 16:38:58.86+03	
16077eea-0d65-56b3-ac34-438af615ebbf	2021-05-22 16:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:39:18.853+03	2021-05-22 16:39:18.86+03	
4c7cfc32-59e8-8e34-3d06-1c44a79c9685	2021-05-22 16:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:39:39.852+03	2021-05-22 16:39:39.859+03	
2deaeebc-b8e9-25a3-6b29-a85a7f522e67	2021-05-22 16:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:40:00.853+03	2021-05-22 16:40:00.86+03	
08353ab9-f259-7679-d8bc-85d1b2970675	2021-05-22 16:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:40:20.853+03	2021-05-22 16:40:20.86+03	
8900c8ec-c9ce-9e06-0b8a-4e972e3237fd	2021-05-22 16:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:40:40.853+03	2021-05-22 16:40:40.859+03	
49642243-4fc6-3113-7691-f011c2be333d	2021-05-22 16:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:41:02.853+03	2021-05-22 16:41:02.862+03	
e860b669-76f7-e97a-1d1a-49a8d30b5572	2021-05-22 16:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:41:22.853+03	2021-05-22 16:41:22.859+03	
74492e53-9a45-eb84-9614-a3306a871523	2021-05-22 16:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:41:42.853+03	2021-05-22 16:41:42.862+03	
5d8e9748-6ed1-444d-0a62-b99e63fdfa59	2021-05-22 16:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:42:02.853+03	2021-05-22 16:42:02.859+03	
64b14775-34ff-d126-8ff4-d7b083558383	2021-05-22 16:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:42:23.852+03	2021-05-22 16:42:23.868+03	
2df1053c-e497-8895-f76b-7b8c1440f7aa	2021-05-22 16:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:42:43.852+03	2021-05-22 16:42:43.86+03	
15a18c6d-c69d-8f66-0c00-9a6221b5d63a	2021-05-22 16:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:43:03.853+03	2021-05-22 16:43:03.86+03	
d319db86-9c75-36a9-5edb-bdaa76337342	2021-05-22 16:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:43:23.853+03	2021-05-22 16:43:23.86+03	
4b96929a-1c95-cd99-44c5-5bf8807a0c9d	2021-05-22 16:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:43:44.853+03	2021-05-22 16:43:44.859+03	
16256b35-6e86-7928-c7cd-4e395ce7f837	2021-05-22 16:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:44:05.852+03	2021-05-22 16:44:05.859+03	
2f47e9cc-5402-31e4-144d-bb79b16bfe51	2021-05-22 16:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:44:25.853+03	2021-05-22 16:44:25.859+03	
60ac1152-11e3-588d-789e-5438dba84b93	2021-05-22 16:44:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:44:46.852+03	2021-05-22 16:44:46.859+03	
23b933a9-5a70-1b74-cfc6-30851ababab5	2021-05-22 16:45:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:45:06.852+03	2021-05-22 16:45:06.859+03	
5b1ee597-9c95-20fe-338a-7f7cb2229d1b	2021-05-22 16:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:45:27.853+03	2021-05-22 16:45:27.86+03	
87922205-49bb-5054-081a-77b31334315a	2021-05-22 16:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:45:47.853+03	2021-05-22 16:45:47.859+03	
9a15eb88-f4c5-9fa5-0473-ef3ddc896593	2021-05-22 16:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:46:07.853+03	2021-05-22 16:46:07.87+03	
08556b44-1053-ce05-57db-c21b904a470d	2021-05-22 16:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:46:27.853+03	2021-05-22 16:46:27.86+03	
089ec55f-e94d-a1f5-79cf-754158b11037	2021-05-22 16:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:46:48.852+03	2021-05-22 16:46:48.867+03	
603e356b-7d29-c2cf-f604-888de9323368	2021-05-22 16:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:47:08.852+03	2021-05-22 16:47:08.859+03	
5d04d7fb-7ce9-5b38-c99f-3a1579ebd599	2021-05-22 16:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:47:28.852+03	2021-05-22 16:47:28.859+03	
8dae52c8-dc2e-4426-5a93-4b7cdfaa469e	2021-05-22 16:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:47:48.853+03	2021-05-22 16:47:48.86+03	
aa69b585-1eb7-d149-5928-6d21ab04cb28	2021-05-22 16:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:48:09.853+03	2021-05-22 16:48:09.86+03	
f65c0023-611a-ff6d-7c01-1a1ecff3bfbb	2021-05-22 16:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:48:30.853+03	2021-05-22 16:48:30.86+03	
5d62f085-40cd-542a-4e51-ed1229efc653	2021-05-22 16:48:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:48:51.853+03	2021-05-22 16:48:51.86+03	
0a419cd5-233f-457e-fecd-94b614882363	2021-05-22 16:49:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:49:11.853+03	2021-05-22 16:49:11.86+03	
b8b3fa1b-54e2-f5fd-8b2d-1dd97fd59567	2021-05-22 16:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:49:32.852+03	2021-05-22 16:49:32.859+03	
259a5f66-9444-a04a-f44d-ff4acaf90bb4	2021-05-22 16:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:49:52.852+03	2021-05-22 16:49:52.86+03	
df551f12-c284-8dff-6e42-0d2e548e26fe	2021-05-22 16:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:50:02.852+03	2021-05-22 16:50:02.858+03	
a4352b3d-581e-d7f3-f144-32dc0c43ea75	2021-05-22 16:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:50:22.852+03	2021-05-22 16:50:22.859+03	
bdaf7f9e-49fb-660a-e119-f635276eea2d	2021-05-22 16:50:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:50:42.853+03	2021-05-22 16:50:42.874+03	
f446c99a-60a5-2a3d-de99-96f4afd5fa47	2021-05-22 16:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:51:02.853+03	2021-05-22 16:51:02.861+03	
ca7052ba-27a6-ee0e-3c10-848ad7b28aee	2021-05-22 16:51:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:51:22.853+03	2021-05-22 16:51:22.861+03	
7f13a3fe-4094-e0a7-47d7-a9163196b11b	2021-05-22 16:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:51:43.852+03	2021-05-22 16:51:43.859+03	
cba6a33d-2190-9f18-22d3-4585beb553ec	2021-05-22 16:52:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:52:03.853+03	2021-05-22 16:52:03.859+03	
1cb3a5ee-ff24-8b47-aac7-1654fc276306	2021-05-22 16:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:52:23.853+03	2021-05-22 16:52:23.859+03	
502643ad-81f3-6024-95bb-728ceb6d32da	2021-05-22 16:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:52:43.853+03	2021-05-22 16:52:43.861+03	
732470cf-bae6-30a7-bb64-447dd1232480	2021-05-22 16:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:53:04.852+03	2021-05-22 16:53:04.859+03	
694c3aa3-6316-7d75-a5dc-0e9f83c0fba6	2021-05-22 16:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:53:24.852+03	2021-05-22 16:53:25.011+03	
e9b28c7a-517a-40ac-a487-ccba3f05252b	2021-05-22 16:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:53:44.852+03	2021-05-22 16:53:44.864+03	
a94251b2-6538-01ce-9f6d-ccb2d1991e8d	2021-05-22 16:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:54:05.852+03	2021-05-22 16:54:05.859+03	
f71affdc-a9a3-1147-c933-ad9d38ee008b	2021-05-22 16:54:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:54:26.854+03	2021-05-22 16:54:26.87+03	
731aa7d2-16b1-a232-7610-b205659e88c7	2021-05-22 16:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:54:48.853+03	2021-05-22 16:54:48.86+03	
4b4797eb-8d52-9714-d1e3-844a2691600e	2021-05-22 16:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:33:59.853+03	2021-05-22 16:33:59.859+03	
f36c8c34-5025-449a-974d-28ae3caa4556	2021-05-22 16:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:34:20.853+03	2021-05-22 16:34:20.86+03	
81992bfe-12fb-3665-d53f-af1f4ce0c388	2021-05-22 16:34:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:34:41.853+03	2021-05-22 16:34:41.859+03	
65333eab-7f15-e9a7-8dcf-5f074e37cf89	2021-05-22 16:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:35:02.853+03	2021-05-22 16:35:02.859+03	
f87f1a78-eb00-2853-07c9-c45ae383a4bf	2021-05-22 16:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:35:22.853+03	2021-05-22 16:35:22.86+03	
8750ad75-02c4-6981-adb8-df68558055c8	2021-05-22 16:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:35:44.853+03	2021-05-22 16:35:44.87+03	
06a4c84e-73f1-0ad5-e627-d70528e5763e	2021-05-22 16:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:36:04.853+03	2021-05-22 16:36:04.859+03	
072f450c-586e-d880-fcd4-c3f096dd027c	2021-05-22 16:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:36:25.853+03	2021-05-22 16:36:25.861+03	
c2e62fa9-d338-8ee3-1a91-a1e11c1a25c6	2021-05-22 16:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:36:46.852+03	2021-05-22 16:36:46.86+03	
f70c1e57-ff62-6cac-4f29-3f0ab30003db	2021-05-22 16:37:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:37:06.854+03	2021-05-22 16:37:06.86+03	
87f32b2c-2672-52aa-fc6b-54dc252018e0	2021-05-22 16:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:37:27.853+03	2021-05-22 16:37:27.859+03	
0cce9910-04d5-48ee-8688-5392233e1d56	2021-05-22 16:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:37:48.852+03	2021-05-22 16:37:48.859+03	
1880385e-548d-73c1-b9fb-2010664a9974	2021-05-22 16:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:38:08.853+03	2021-05-22 16:38:08.859+03	
03cb8e19-f46a-af4b-c365-0e7abcedb4fe	2021-05-22 16:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:38:28.853+03	2021-05-22 16:38:28.86+03	
87976681-e55e-269d-45af-160660c6f9c6	2021-05-22 16:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:38:48.853+03	2021-05-22 16:38:48.859+03	
4ae4a3d4-c910-524d-6d9d-601a25af171b	2021-05-22 16:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:39:08.853+03	2021-05-22 16:39:08.86+03	
3e210a33-5e6a-7ad2-833c-4d269c539555	2021-05-22 16:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:39:29.852+03	2021-05-22 16:39:29.859+03	
acf599e8-29f9-8d8f-467e-8d062cd70c2d	2021-05-22 16:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:39:49.853+03	2021-05-22 16:39:49.861+03	
8c8e06c2-4736-f545-d917-6c908f702007	2021-05-22 16:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 16:40:00.853+03	2021-05-22 16:40:00.871+03	ERROR
3e101bcb-bad1-950c-1d70-c2d225587df8	2021-05-22 16:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:40:10.853+03	2021-05-22 16:40:10.861+03	
7157fd87-a291-e321-82a9-c426fc1a37d0	2021-05-22 16:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:40:30.853+03	2021-05-22 16:40:30.86+03	
7d7f1338-f2ed-ac50-3250-3f96a3783c8a	2021-05-22 16:40:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:40:51.853+03	2021-05-22 16:40:51.859+03	
508963b5-9a1b-51b0-00a6-5554f7c987b6	2021-05-22 16:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:41:12.853+03	2021-05-22 16:41:12.9+03	
f0930a7c-9f76-79f4-02bd-4e64468f1764	2021-05-22 16:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:41:32.853+03	2021-05-22 16:41:32.859+03	
06d0cee2-a07c-6f6e-d92b-e180d7537585	2021-05-22 16:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:41:52.853+03	2021-05-22 16:41:52.859+03	
3b4a2a8c-360c-7355-cc29-db177d76612c	2021-05-22 16:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:42:13.852+03	2021-05-22 16:42:13.859+03	
e85594f7-f8f6-ba64-ec16-f7a72e3e931f	2021-05-22 16:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:42:33.852+03	2021-05-22 16:42:33.859+03	
17087e77-2a1c-7e39-9b57-7651ae83fb2b	2021-05-22 16:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:42:53.853+03	2021-05-22 16:42:53.861+03	
4fd7cd12-83d2-e9a9-84b5-aa19563b2dac	2021-05-22 16:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:43:13.853+03	2021-05-22 16:43:13.859+03	
c620766b-f53d-839d-f3c3-43044bbea7c0	2021-05-22 16:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:43:34.853+03	2021-05-22 16:43:34.86+03	
3e7aa25a-f0d5-b949-989e-2caf85441cd0	2021-05-22 16:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:43:55.852+03	2021-05-22 16:43:55.872+03	
1f093f3f-bf7a-1764-b044-84d303a6182a	2021-05-22 16:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:44:15.853+03	2021-05-22 16:44:15.859+03	
a293ed5f-1e06-349e-6b88-a4817cb9fcc2	2021-05-22 16:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:44:35.853+03	2021-05-22 16:44:35.863+03	
12cb195d-a813-fdb9-91a0-8df980aa281e	2021-05-22 16:44:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:44:56.852+03	2021-05-22 16:44:56.859+03	
2cf9d8c7-1beb-06eb-f3b8-75871b182528	2021-05-22 16:45:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:45:16.853+03	2021-05-22 16:45:16.859+03	
d8011f88-6d56-5c9f-3f9f-cd2346c22a9f	2021-05-22 16:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:45:37.853+03	2021-05-22 16:45:37.859+03	
0147c80a-e63a-6163-f6e8-2015d857f780	2021-05-22 16:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:45:57.853+03	2021-05-22 16:45:57.858+03	
bbd3ddf3-08cd-7e91-dbf4-4d89380ec929	2021-05-22 16:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:46:17.853+03	2021-05-22 16:46:17.869+03	
96369cca-32a5-5931-34b1-3708514dd992	2021-05-22 16:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:46:37.853+03	2021-05-22 16:46:37.859+03	
28238e59-478d-4a6e-715f-dbf7517ea19f	2021-05-22 16:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:46:58.852+03	2021-05-22 16:46:58.859+03	
ca75c98a-1f47-9209-4167-3aba653c2dce	2021-05-22 16:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:47:18.852+03	2021-05-22 16:47:18.86+03	
483ddb1b-381b-450e-ffc1-9783954a47a4	2021-05-22 16:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:47:38.853+03	2021-05-22 16:47:38.86+03	
ddbbf3db-e7f4-6659-0c3a-feb382a0ded3	2021-05-22 16:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:47:59.852+03	2021-05-22 16:47:59.86+03	
e81c8df6-7a48-a73a-c9b3-ebc74ddab706	2021-05-22 16:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:48:19.853+03	2021-05-22 16:48:19.859+03	
3653c38f-7c50-df0c-0724-33ca4a4a3a5b	2021-05-22 16:48:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:48:41.852+03	2021-05-22 16:48:41.859+03	
0422c4ea-1f21-a8d2-6147-1d2020a4fec2	2021-05-22 16:49:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:49:01.853+03	2021-05-22 16:49:01.86+03	
fce52638-3122-0e8a-be6c-49e56d290d0c	2021-05-22 16:49:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:49:21.853+03	2021-05-22 16:49:21.862+03	
667d36ec-bc68-bd5a-8ab6-6ec11e7540f1	2021-05-22 16:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:49:42.852+03	2021-05-22 16:49:42.859+03	
30ae47db-82a2-5df4-453c-1705f693b927	2021-05-22 16:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 16:50:00.853+03	2021-05-22 16:50:00.858+03	ERROR
1d5e4be1-7060-4eaf-9c9a-684a6934c901	2021-05-22 16:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:50:12.852+03	2021-05-22 16:50:12.859+03	
0ddd0827-29cd-a323-d2bb-725087154bef	2021-05-22 16:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:50:32.853+03	2021-05-22 16:50:32.859+03	
1c3f8f76-edda-b923-e838-ea84bd547dc1	2021-05-22 16:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:50:52.853+03	2021-05-22 16:50:52.863+03	
db2cf25c-4e5c-f796-b249-b6dbdb9fd731	2021-05-22 16:51:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:51:12.853+03	2021-05-22 16:51:12.864+03	
ad3acebc-1ab4-396c-9c08-7e367034c533	2021-05-22 16:51:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:51:32.853+03	2021-05-22 16:51:32.86+03	
aad66df4-b8b0-70fb-2fa7-ad0a9ef582e3	2021-05-22 16:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:51:53.852+03	2021-05-22 16:51:53.859+03	
ab046cb0-9975-be7f-dc14-065c1f011049	2021-05-22 16:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:52:13.853+03	2021-05-22 16:52:13.86+03	
afef6f32-9ec5-100b-ce7d-d25a84049f0c	2021-05-22 16:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:52:33.853+03	2021-05-22 16:52:33.86+03	
5694dd8f-af01-26e3-dcca-8aedf2d888bc	2021-05-22 16:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:52:53.853+03	2021-05-22 16:52:53.86+03	
c3e382d6-869b-f0fc-b1fe-76a50fc83f82	2021-05-22 16:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:53:14.852+03	2021-05-22 16:53:14.859+03	
b2bbcc55-098a-bcd4-22b4-31b30a6c7c08	2021-05-22 16:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:53:34.852+03	2021-05-22 16:53:34.859+03	
17ca5c6a-448c-bdce-59d1-36f34d2097fd	2021-05-22 16:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:53:54.853+03	2021-05-22 16:53:54.861+03	
6fea7e63-9efc-6a73-20da-6c1853a728a7	2021-05-22 16:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:54:15.853+03	2021-05-22 16:54:15.862+03	
2fbc1d29-1bd9-5728-0c4d-a5f074074deb	2021-05-22 16:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:54:37.853+03	2021-05-22 16:54:37.859+03	
ee3c0db4-ff28-9465-e48d-f1dd9a7f82ca	2021-05-22 16:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:54:59.853+03	2021-05-22 16:54:59.871+03	
d044e204-e403-b783-a40b-7b6513c40070	2021-05-22 16:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:55:19.853+03	2021-05-22 16:55:19.859+03	
80e26e40-bdd6-1d78-1066-4f860ecedd17	2021-05-22 16:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:55:40.853+03	2021-05-22 16:55:40.859+03	
0b5a9872-a8f1-003f-50f4-caac8e339947	2021-05-22 16:56:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:56:01.854+03	2021-05-22 16:56:01.86+03	
ffec8408-a06e-f075-005b-11f3e700d2d4	2021-05-22 16:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:56:23.852+03	2021-05-22 16:56:23.864+03	
b4cc3d80-f246-098c-ca18-8f8efdf5d128	2021-05-22 16:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:56:43.853+03	2021-05-22 16:56:43.862+03	
42278641-0129-0eea-98b6-b793d4baaa27	2021-05-22 16:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:57:05.852+03	2021-05-22 16:57:05.859+03	
9beb9567-f388-3cf6-9d7b-1b67565a1fd1	2021-05-22 16:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:57:25.852+03	2021-05-22 16:57:25.867+03	
4e63f711-a383-f26f-1251-2f7336936e48	2021-05-22 16:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:57:45.853+03	2021-05-22 16:57:45.866+03	
81f95ec1-0487-2965-8ba6-52e70d8ccebe	2021-05-22 16:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:58:07.852+03	2021-05-22 16:58:07.861+03	
20f01c6d-42a8-4237-9793-0dff4fb461d8	2021-05-22 16:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:58:27.852+03	2021-05-22 16:58:27.859+03	
b0c83811-7301-9607-4eb6-cb84aea51985	2021-05-22 16:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:58:47.852+03	2021-05-22 16:58:47.859+03	
fd98475f-4fbe-abf7-a1b8-dfc90a93f3c4	2021-05-22 16:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:59:08.852+03	2021-05-22 16:59:08.86+03	
7938324e-619e-b34b-e97d-71de7d808d9b	2021-05-22 16:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:59:28.853+03	2021-05-22 16:59:28.859+03	
2adc7eed-f531-5c99-8cef-c179b4593f37	2021-05-22 16:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:59:48.853+03	2021-05-22 16:59:48.859+03	
92d7c294-bb34-d9eb-8e03-731c27010a74	2021-05-22 17:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 17:00:00.853+03	2021-05-22 17:00:00.858+03	ERROR
1a5050f3-5608-264a-7f73-7375a6d827e4	2021-05-22 17:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:00:19.853+03	2021-05-22 17:00:19.879+03	
61c4afe5-bb7e-404b-17a0-695730212480	2021-05-22 17:00:39.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:00:39.853+03	2021-05-22 17:00:39.861+03	
5720faeb-6fe0-73ee-91ff-126c1100b70d	2021-05-22 17:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:01:00.852+03	2021-05-22 17:01:00.862+03	
36ec6750-c2d1-9800-b548-0b4faf2a4027	2021-05-22 17:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:01:20.852+03	2021-05-22 17:01:20.859+03	
e95b803c-bff3-dc65-78e4-dbfb577e1831	2021-05-22 17:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:01:40.853+03	2021-05-22 17:01:40.859+03	
3678496a-f79f-a448-80da-035eaf74df9b	2021-05-22 17:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:02:00.853+03	2021-05-22 17:02:00.86+03	
bc1fc5b9-3834-256a-2cfc-8c534255f677	2021-05-22 17:02:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:02:21.853+03	2021-05-22 17:02:21.859+03	
70c7191b-486f-7374-8717-de31c6dc9bd2	2021-05-22 17:02:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:02:31.853+03	2021-05-22 17:02:31.861+03	
95c0874f-bbf7-4bce-f4db-19c3ae7164e9	2021-05-22 17:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:02:52.852+03	2021-05-22 17:02:52.859+03	
d2fbfd18-861c-abf9-4982-239da4a39822	2021-05-22 17:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:03:12.852+03	2021-05-22 17:03:12.859+03	
14cbb1c0-2a08-532e-2503-269a826f9d80	2021-05-22 17:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:03:33.853+03	2021-05-22 17:03:33.859+03	
3a65ec3e-a27d-399f-5537-288b62b974b0	2021-05-22 17:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:03:53.853+03	2021-05-22 17:03:53.863+03	
103e3b98-f247-83af-28a8-301327794ce5	2021-05-22 17:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:04:13.853+03	2021-05-22 17:04:13.859+03	
a72d583c-a5bd-6c3d-ab02-5c0a8dc352ac	2021-05-22 17:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:04:34.852+03	2021-05-22 17:04:34.859+03	
fede74d8-ae1f-a08b-6631-61a50a5469a3	2021-05-22 17:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:04:54.852+03	2021-05-22 17:04:54.858+03	
c35d5530-1c91-abf7-34ef-52b5fa74db34	2021-05-22 17:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:05:14.853+03	2021-05-22 17:05:14.86+03	
cecfcb5f-b9e8-71b1-6940-ad9cd43c55a4	2021-05-22 17:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:05:34.853+03	2021-05-22 17:05:34.861+03	
8e230e12-cbb1-0e92-b633-adc87ee6aaaf	2021-05-22 17:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:05:55.852+03	2021-05-22 17:05:55.859+03	
66b82ea5-14c9-ba4c-49ef-7ba28b57d0f8	2021-05-22 17:06:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:06:16.852+03	2021-05-22 17:06:16.862+03	
cbaf5133-d1de-3861-701d-a0b910f2d2dc	2021-05-22 17:06:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:06:36.853+03	2021-05-22 17:06:36.859+03	
caab1be7-f2ca-dbdc-5893-49140b11aa8c	2021-05-22 17:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:06:56.853+03	2021-05-22 17:06:56.86+03	
27fb5dd6-3cb5-84fe-dda9-0d33b5bbe403	2021-05-22 17:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:07:16.853+03	2021-05-22 17:07:16.859+03	
160f56f5-69aa-98ef-8d43-03bb030b8c39	2021-05-22 17:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:07:37.853+03	2021-05-22 17:07:37.859+03	
f883bdb6-ddd3-02f5-e918-446fd3d68e61	2021-05-22 17:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:07:58.853+03	2021-05-22 17:07:58.86+03	
b9996d75-d35f-7c12-a92e-05d5c655467f	2021-05-22 17:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:08:18.853+03	2021-05-22 17:08:18.86+03	
f5b71065-0d80-731f-cae2-9f4d97a49bb9	2021-05-22 17:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:08:40.852+03	2021-05-22 17:08:40.861+03	
320508c2-943a-98ee-9715-3cf6432b2527	2021-05-22 17:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:09:00.853+03	2021-05-22 17:09:00.86+03	
f9047b41-9449-722e-f1e4-0f2bdb2a1247	2021-05-22 17:09:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:09:21.853+03	2021-05-22 17:09:21.862+03	
c8c0784c-422b-04e0-f2ec-3ed509d61223	2021-05-22 17:09:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:09:41.853+03	2021-05-22 17:09:41.86+03	
c6ef681b-2b0c-5271-b232-3b0db05bcd48	2021-05-22 17:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 17:10:00.852+03	2021-05-22 17:10:00.858+03	ERROR
78d77e7e-b326-1c4e-0531-5898e5fbabcc	2021-05-22 17:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:10:13.853+03	2021-05-22 17:10:13.86+03	
cae73ea8-aaad-60e1-22f2-4612b0e60f41	2021-05-22 17:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:10:34.852+03	2021-05-22 17:10:34.859+03	
6a85847b-36d5-846e-1afc-1e3dc9b80f28	2021-05-22 17:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:10:54.853+03	2021-05-22 17:10:54.864+03	
792164cb-bcdd-4807-30e4-19b5f2e290e3	2021-05-22 17:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:11:15.852+03	2021-05-22 17:11:15.872+03	
3446fea9-6252-265f-ed70-7b0b9c5ffa43	2021-05-22 17:11:35.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:11:35.853+03	2021-05-22 17:11:35.878+03	
ae56514d-12eb-d568-de0a-8ab300083431	2021-05-22 17:11:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:11:56.855+03	2021-05-22 17:11:56.861+03	
75d18ef3-92a0-d639-04b4-39e6c64b88ba	2021-05-22 17:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:12:17.853+03	2021-05-22 17:12:17.86+03	
d9462696-35df-f8c5-8b38-1f39b15dfa0b	2021-05-22 17:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:12:37.853+03	2021-05-22 17:12:37.86+03	
c17b4fbf-6f5a-376c-83a1-62424cf0d4a5	2021-05-22 17:12:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:12:57.853+03	2021-05-22 17:12:57.859+03	
a38b69e7-aad0-1b0e-f1d3-21a25768592f	2021-05-22 17:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:13:17.853+03	2021-05-22 17:13:17.859+03	
f3bc37c3-9fa0-5262-3402-f005efbee51b	2021-05-22 17:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:13:38.853+03	2021-05-22 17:13:38.862+03	
1934a6dc-f049-11cf-0cfb-6b039742418b	2021-05-22 17:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:13:59.853+03	2021-05-22 17:13:59.859+03	
e0620bc7-d3a6-cf69-db11-318344e859a5	2021-05-22 17:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:14:20.852+03	2021-05-22 17:14:20.86+03	
eb53e239-5c9f-d144-39b9-e47a68a56a50	2021-05-22 17:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:14:40.852+03	2021-05-22 17:14:40.859+03	
46b541aa-8422-0236-52c1-df33b044729b	2021-05-22 17:15:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:15:01.852+03	2021-05-22 17:15:01.861+03	
f01bad43-56d9-e81f-027b-37634cefe9db	2021-05-22 17:15:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:15:21.852+03	2021-05-22 17:15:21.86+03	
fc7066de-1832-c62b-0391-98e987a2c64c	2021-05-22 17:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:15:42.853+03	2021-05-22 17:15:42.86+03	
48096781-a7a2-9bb5-3681-a3fc73b856c0	2021-05-22 16:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:55:09.853+03	2021-05-22 16:55:09.859+03	
c329493f-4d63-3472-43af-ccf0fe748479	2021-05-22 16:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:55:30.852+03	2021-05-22 16:55:30.859+03	
8c291e39-2587-c2ee-e537-32954d6d568a	2021-05-22 16:55:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:55:51.852+03	2021-05-22 16:55:51.859+03	
0acbdbd7-ba6e-f7ae-8373-ec6b66471baf	2021-05-22 16:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:56:12.853+03	2021-05-22 16:56:12.859+03	
eb926b45-438d-5dd8-e917-adb8b21b4221	2021-05-22 16:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:56:33.853+03	2021-05-22 16:56:33.861+03	
482c185f-3ec8-013b-238c-ce302a1afdf8	2021-05-22 16:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:56:54.853+03	2021-05-22 16:56:54.863+03	
9ea96c71-1e74-e38c-7e83-a86fa629a87e	2021-05-22 16:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:57:15.852+03	2021-05-22 16:57:15.874+03	
2fadaa44-fcab-ff17-2cfa-102d019579d6	2021-05-22 16:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:57:35.852+03	2021-05-22 16:57:35.859+03	
839bd933-4858-491f-3892-a2a282cf3371	2021-05-22 16:57:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:57:56.853+03	2021-05-22 16:57:56.861+03	
6b320c81-27c5-9623-86e0-5e2ee9c33716	2021-05-22 16:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:58:17.852+03	2021-05-22 16:58:17.865+03	
0872062c-a1f0-d08a-cc80-80aa24efeb9e	2021-05-22 16:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:58:37.852+03	2021-05-22 16:58:37.859+03	
12ae9070-cc01-fe7f-4687-434911687ea6	2021-05-22 16:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:58:57.853+03	2021-05-22 16:58:57.86+03	
338f392f-44f4-ea37-6b33-f079b12e1265	2021-05-22 16:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:59:18.853+03	2021-05-22 16:59:18.859+03	
865f743c-74d1-04ee-535f-0361ece8cc96	2021-05-22 16:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:59:38.853+03	2021-05-22 16:59:38.859+03	
098c84f5-de8e-f983-a180-504b6b8b5746	2021-05-22 16:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 16:59:59.853+03	2021-05-22 16:59:59.859+03	
00b41059-23d9-0dcc-597a-5a35246db720	2021-05-22 17:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:00:09.853+03	2021-05-22 17:00:09.86+03	
7e2d8ec5-6553-c3e7-1296-2d1423e8aac0	2021-05-22 17:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:00:29.853+03	2021-05-22 17:00:29.865+03	
dd339d53-36ee-d9ff-dc0a-7a53af61c4c1	2021-05-22 17:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:00:49.853+03	2021-05-22 17:00:49.859+03	
d8a841e0-a5d0-c12e-1a6e-a728e171f802	2021-05-22 17:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:01:10.852+03	2021-05-22 17:01:10.859+03	
38675a24-69ce-d4b7-8022-5fc35d1f646e	2021-05-22 17:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:01:30.852+03	2021-05-22 17:01:30.859+03	
0722fed9-d2d8-066c-b3a2-59c1b347595a	2021-05-22 17:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:01:50.853+03	2021-05-22 17:01:50.869+03	
712b5952-ed84-6151-954c-fd0aa66c021e	2021-05-22 17:02:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:02:11.853+03	2021-05-22 17:02:11.86+03	
9467015e-3c78-3762-0134-7d051690a75b	2021-05-22 17:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:02:41.853+03	2021-05-22 17:02:41.86+03	
e38b7221-691b-4d34-7203-44fd96c07966	2021-05-22 17:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:03:02.852+03	2021-05-22 17:03:02.858+03	
64b131dc-6851-125f-b404-3804fc91d661	2021-05-22 17:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:03:22.853+03	2021-05-22 17:03:22.859+03	
315f94dc-69db-cabb-bc56-60b62105a3d1	2021-05-22 17:03:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:03:43.853+03	2021-05-22 17:03:43.862+03	
3094a5f5-7751-d94a-d172-850beb644e39	2021-05-22 17:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:04:03.853+03	2021-05-22 17:04:03.888+03	
5982d657-1f0b-27b1-e691-76f353f2e411	2021-05-22 17:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:04:23.853+03	2021-05-22 17:04:23.859+03	
063121a1-1462-01af-0f79-c9699539f247	2021-05-22 17:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:04:44.852+03	2021-05-22 17:04:44.859+03	
65f3e582-f75c-635e-719e-923f1e07243a	2021-05-22 17:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:05:04.853+03	2021-05-22 17:05:04.859+03	
9e428895-9156-e618-bfe2-420988cc7cdd	2021-05-22 17:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:05:24.853+03	2021-05-22 17:05:24.869+03	
7ca9e0fb-9636-c108-3b2f-9ed9f661a9e6	2021-05-22 17:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:05:45.852+03	2021-05-22 17:05:45.86+03	
e911973f-01b5-425c-8bd5-74d5d6eef903	2021-05-22 17:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:06:05.853+03	2021-05-22 17:06:05.859+03	
543a8ada-629a-1341-5ea4-e797a5d9b51e	2021-05-22 17:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:06:26.852+03	2021-05-22 17:06:26.86+03	
1176e776-5817-74b2-9656-f97577f2a6e4	2021-05-22 17:06:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:06:46.853+03	2021-05-22 17:06:46.859+03	
e674bddf-a667-9d3c-5021-7e1238c86420	2021-05-22 17:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:07:06.853+03	2021-05-22 17:07:06.859+03	
05b4ad75-5353-2d92-6bcc-b78e33d809b4	2021-05-22 17:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:07:27.852+03	2021-05-22 17:07:27.865+03	
42853bfb-5ce8-f07f-4e04-5a1d7ccea82d	2021-05-22 17:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:07:48.852+03	2021-05-22 17:07:48.866+03	
08d6cedd-af47-1992-beb4-135118c3df3d	2021-05-22 17:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:08:08.853+03	2021-05-22 17:08:08.859+03	
88473875-4da6-1066-4d06-5e96cb182d36	2021-05-22 17:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:08:29.853+03	2021-05-22 17:08:29.859+03	
15b32a0a-a949-280e-cebe-0d29152259f3	2021-05-22 17:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:08:50.852+03	2021-05-22 17:08:50.86+03	
88d4be83-427e-be08-e06f-abc5e97f509d	2021-05-22 17:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:09:10.853+03	2021-05-22 17:09:10.86+03	
f4112446-9b60-d658-0861-3bfc29f71ae8	2021-05-22 17:09:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:09:31.853+03	2021-05-22 17:09:31.866+03	
e9d7c058-ce16-3e64-149b-0393a84a497b	2021-05-22 17:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:09:52.852+03	2021-05-22 17:09:52.859+03	
94b413b8-348d-2449-286a-680154fbcfb9	2021-05-22 17:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:10:02.853+03	2021-05-22 17:10:02.86+03	
fc3ad537-049a-7013-d1d9-8c3014fc120e	2021-05-22 17:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:10:23.853+03	2021-05-22 17:10:23.859+03	
31b5d7fc-2e84-0fbb-7c0c-819a987b50c0	2021-05-22 17:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:10:44.853+03	2021-05-22 17:10:44.86+03	
be4e1f39-e531-08ba-9485-ea8cc599120d	2021-05-22 17:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:11:04.853+03	2021-05-22 17:11:04.859+03	
41357ea2-cefa-3f68-d0b0-9e05e8f9afce	2021-05-22 17:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:11:25.852+03	2021-05-22 17:11:25.859+03	
17bc4234-ab52-13af-e708-44fc74622646	2021-05-22 17:11:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:11:46.853+03	2021-05-22 17:11:46.86+03	
aa143d1b-23bc-5c88-73cd-4ced3705e034	2021-05-22 17:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:12:07.853+03	2021-05-22 17:12:07.869+03	
5bdbc09b-1f07-b49e-2dd9-deb0aeb11fed	2021-05-22 17:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:12:27.853+03	2021-05-22 17:12:27.859+03	
18139e9c-3635-bcc3-5cc3-57f035d5f15f	2021-05-22 17:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:12:47.853+03	2021-05-22 17:12:47.859+03	
aae56bb9-70e9-7685-d326-7ffe639773d9	2021-05-22 17:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:13:07.853+03	2021-05-22 17:13:07.859+03	
ea7f8094-834b-2549-da40-5fdc9f8d5d31	2021-05-22 17:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:13:28.853+03	2021-05-22 17:13:28.86+03	
208c0535-45b9-fafc-d2fa-ec11cfc3b73c	2021-05-22 17:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:13:49.853+03	2021-05-22 17:13:49.859+03	
ca90c5e9-8b66-61bd-6412-24321c68ecc4	2021-05-22 17:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:14:10.852+03	2021-05-22 17:14:10.859+03	
834d0803-8292-6a94-086e-850556138d06	2021-05-22 17:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:14:30.852+03	2021-05-22 17:14:30.859+03	
983acdbd-0077-b6a3-26fb-b0739fdce8b3	2021-05-22 17:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:14:50.853+03	2021-05-22 17:14:50.859+03	
f55cd52a-6ed0-902f-5514-8fac8c4c2dda	2021-05-22 17:15:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:15:11.852+03	2021-05-22 17:15:11.859+03	
228bf9c7-403d-3dc5-c93f-b6738ba86de6	2021-05-22 17:15:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:15:31.854+03	2021-05-22 17:15:31.86+03	
e27c5b26-855a-a656-3538-cf7159aaf161	2021-05-22 17:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:15:53.852+03	2021-05-22 17:15:53.871+03	
1f6bf998-7ea0-0316-f37a-069b3bdcf16a	2021-05-22 17:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:16:13.853+03	2021-05-22 17:16:13.859+03	
795d5381-99ef-9ec1-603d-61bd3326afc9	2021-05-22 17:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:16:03.853+03	2021-05-22 17:16:03.864+03	
86226217-1d3b-dba0-9289-9c77310c8b14	2021-05-22 17:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:16:23.853+03	2021-05-22 17:16:23.859+03	
fb95de2a-8495-4f57-8733-d75346148f8a	2021-05-22 17:16:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:16:43.853+03	2021-05-22 17:16:43.861+03	
cb85d4c4-d240-a894-b170-ba7095694e48	2021-05-22 17:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:17:03.853+03	2021-05-22 17:17:03.859+03	
bd3daf32-e6ce-17c6-cbd6-11cecfec8e7d	2021-05-22 17:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:17:24.853+03	2021-05-22 17:17:24.88+03	
8e86d874-e9c9-4e75-d3c8-008312e56070	2021-05-22 17:17:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:17:44.853+03	2021-05-22 17:17:44.859+03	
f08a8c4a-115b-af39-0eb6-c727c716ef2e	2021-05-22 17:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:18:04.853+03	2021-05-22 17:18:04.86+03	
75321a95-b147-8aa8-f50d-c35a9fed6d7d	2021-05-22 17:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:18:24.853+03	2021-05-22 17:18:24.86+03	
c21005b4-c40e-f149-42e1-203f702cc02c	2021-05-22 17:18:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:18:45.852+03	2021-05-22 17:18:45.86+03	
3d2724fa-d10f-b079-4ec7-0e0f80f32ea6	2021-05-22 17:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:19:05.853+03	2021-05-22 17:19:05.859+03	
54a451cc-6600-a665-5098-c4f7a966d388	2021-05-22 17:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:19:25.853+03	2021-05-22 17:19:25.859+03	
8389b89d-f929-e113-a59c-db22c817137a	2021-05-22 17:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:19:45.853+03	2021-05-22 17:19:45.865+03	
0720e5f9-7817-2511-bd8a-23194d033394	2021-05-22 17:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 17:20:00.853+03	2021-05-22 17:20:00.86+03	ERROR
67493bc5-74c6-9f61-d867-39983f6862ad	2021-05-22 17:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:20:17.853+03	2021-05-22 17:20:17.86+03	
95b6d2c4-4cb6-53a9-9a91-2222fb1cd09d	2021-05-22 17:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:20:37.853+03	2021-05-22 17:20:37.86+03	
81ac493c-275d-b203-bb30-b25a0754a871	2021-05-22 17:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:20:57.853+03	2021-05-22 17:20:57.86+03	
29bc0a51-da19-6258-dde8-b22b43653d13	2021-05-22 17:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:21:19.852+03	2021-05-22 17:21:19.859+03	
e22a4b45-02c2-49c2-8879-9d61658a6fbe	2021-05-22 17:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:21:39.852+03	2021-05-22 17:21:39.858+03	
0de90fdf-70b0-db33-711e-f0e57fb9d32f	2021-05-22 17:21:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:21:59.853+03	2021-05-22 17:21:59.86+03	
2fb591a7-f528-b163-56b0-1fd3c3390978	2021-05-22 17:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:22:19.853+03	2021-05-22 17:22:19.861+03	
756208b7-fdf4-c485-a9a7-2b9d40eacea7	2021-05-22 17:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:22:40.853+03	2021-05-22 17:22:40.859+03	
ff57701c-628c-bfd8-a8c2-0e0f6d3693f9	2021-05-22 17:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:23:00.853+03	2021-05-22 17:23:00.858+03	
7697a714-4643-db36-22c0-9b1ff2ea9325	2021-05-22 17:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:23:22.853+03	2021-05-22 17:23:22.859+03	
4936f4cf-beca-642a-6cbf-1b0a88b97073	2021-05-22 17:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:23:42.853+03	2021-05-22 17:23:42.862+03	
9528203e-9380-a4a1-3bb4-a17002796b4a	2021-05-22 17:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:24:03.853+03	2021-05-22 17:24:03.86+03	
4b384d57-bba3-3b89-c869-336eb8b2c40b	2021-05-22 17:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:24:24.853+03	2021-05-22 17:24:24.861+03	
413a376d-6fdd-48dd-53ae-7f5e343a1998	2021-05-22 17:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:24:45.852+03	2021-05-22 17:24:45.859+03	
62b5f9a5-330f-1bf0-9337-b3d4acf029de	2021-05-22 17:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:25:05.853+03	2021-05-22 17:25:05.859+03	
36074863-605d-42b6-5137-9b93f6728544	2021-05-22 17:25:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:25:26.852+03	2021-05-22 17:25:26.86+03	
fefabf43-364f-8bf0-c694-5f4da74c0c18	2021-05-22 17:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:25:46.853+03	2021-05-22 17:25:46.861+03	
4cf34f4c-2cf1-d743-0505-292a88eaeecf	2021-05-22 17:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:26:07.853+03	2021-05-22 17:26:07.872+03	
19348580-ed7d-5ce9-3597-af17dbaa2bd0	2021-05-22 17:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:26:28.852+03	2021-05-22 17:26:28.863+03	
8c8cd4fc-d7d6-5065-6a93-911b996cf28c	2021-05-22 17:26:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:26:48.853+03	2021-05-22 17:26:48.859+03	
c664d290-5166-b632-103d-b932175eefc8	2021-05-22 17:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:27:08.853+03	2021-05-22 17:27:08.859+03	
82047d49-c879-5672-0ef9-bf9160fd5bd9	2021-05-22 17:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:27:28.853+03	2021-05-22 17:27:28.863+03	
533503a5-5fcb-68a1-2a4d-e3ecefe4f813	2021-05-22 17:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:27:48.853+03	2021-05-22 17:27:48.86+03	
01b871bc-5c0e-c5d8-695d-dd711edfe475	2021-05-22 17:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:28:09.852+03	2021-05-22 17:28:09.86+03	
edc01b5e-e33a-2d04-62df-fa8d1cbc1add	2021-05-22 17:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:28:29.853+03	2021-05-22 17:28:29.861+03	
880b0173-7836-3933-0625-9fb80aea1d9a	2021-05-22 17:28:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:28:51.853+03	2021-05-22 17:28:51.861+03	
f4bf0b3f-bc22-205a-30c2-a746976a902c	2021-05-22 17:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:29:12.853+03	2021-05-22 17:29:12.86+03	
306aa251-ca9a-39e5-b34c-8f5e0c241e27	2021-05-22 17:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:29:33.853+03	2021-05-22 17:29:33.871+03	
fe2f0180-9532-80af-df34-d4f9f676b79b	2021-05-22 17:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:29:54.852+03	2021-05-22 17:29:54.859+03	
6c43e8a7-681f-101e-3aa3-5ebbd91b2216	2021-05-22 17:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:30:04.852+03	2021-05-22 17:30:04.858+03	
013cfe5f-b957-7a43-c805-18509baed0cd	2021-05-22 17:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:30:24.852+03	2021-05-22 17:30:24.859+03	
e84108cb-4782-4ade-7bfe-a82e73dd67e3	2021-05-22 17:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:30:44.853+03	2021-05-22 17:30:44.86+03	
6f23cbe0-258c-9e37-e502-341597e90894	2021-05-22 17:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:31:05.853+03	2021-05-22 17:31:05.859+03	
1621c179-1263-f1ba-5d8c-fb0c3c28e46d	2021-05-22 17:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:31:25.853+03	2021-05-22 17:31:25.864+03	
5a752119-354c-2c92-bf0d-2e41f3bef368	2021-05-22 17:31:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:31:46.852+03	2021-05-22 17:31:46.86+03	
4018e161-5880-0084-9208-ef23d6db3d26	2021-05-22 17:32:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:32:06.852+03	2021-05-22 17:32:06.859+03	
d8b0b0e5-49cf-dacb-b2df-18299633cde7	2021-05-22 17:32:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:32:26.854+03	2021-05-22 17:32:26.862+03	
a886e111-dc80-37ca-c9ea-e132d44ca6e0	2021-05-22 17:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:32:47.853+03	2021-05-22 17:32:47.859+03	
a3ce733d-2e31-5113-5726-f1de76c1d926	2021-05-22 17:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:33:09.852+03	2021-05-22 17:33:09.859+03	
d89a5106-f525-aaa6-f76b-da4e1675d68a	2021-05-22 17:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:33:29.853+03	2021-05-22 17:33:29.862+03	
b8aca4ba-614e-81d2-60f0-8401ee296dca	2021-05-22 17:33:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:33:50.853+03	2021-05-22 17:33:50.867+03	
c5388868-f1b3-1bc9-2cc6-32566b32cd08	2021-05-22 17:34:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:34:11.853+03	2021-05-22 17:34:11.861+03	
f9da3814-66aa-525b-b096-e404b9e0a4b9	2021-05-22 17:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:34:32.853+03	2021-05-22 17:34:32.859+03	
1be2852d-3829-1e61-b3ab-67ca77a4ef6e	2021-05-22 17:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:34:53.852+03	2021-05-22 17:34:53.859+03	
964ddae0-185b-b923-289f-5c71f0011c4a	2021-05-22 17:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:35:13.853+03	2021-05-22 17:35:13.861+03	
78bdb3b2-38ed-4ed9-205d-5c4d4bbc570c	2021-05-22 17:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:35:35.852+03	2021-05-22 17:35:35.859+03	
809c7944-38ce-eac7-835b-e2a69c157e48	2021-05-22 17:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:35:55.852+03	2021-05-22 17:35:55.872+03	
59d89252-744e-b732-6e96-5743cc2aa232	2021-05-22 17:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:36:16.853+03	2021-05-22 17:36:16.861+03	
d4cfcfcf-cea3-8670-fc9b-0bef783a532c	2021-05-22 17:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:36:36.853+03	2021-05-22 17:36:36.859+03	
7acf04ba-c135-5e8e-8c02-92092b93617a	2021-05-22 17:36:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:36:56.853+03	2021-05-22 17:36:56.859+03	
19d8c89d-27da-af78-3b16-e293410b8eff	2021-05-22 17:16:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:16:33.853+03	2021-05-22 17:16:33.861+03	
ae349a9d-a85e-a7ad-17f3-30d37cc15648	2021-05-22 17:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:16:53.853+03	2021-05-22 17:16:53.86+03	
2eea33f9-3b8d-db33-92d2-134c05f5ab75	2021-05-22 17:17:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:17:14.852+03	2021-05-22 17:17:14.859+03	
bd03ce32-1caa-d433-89ec-267618cabbc7	2021-05-22 17:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:17:34.853+03	2021-05-22 17:17:34.859+03	
00e405f5-1d06-3a76-dce0-e1166b0a5a57	2021-05-22 17:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:17:54.853+03	2021-05-22 17:17:54.86+03	
0c8684de-49c6-aee7-304d-740c348ef892	2021-05-22 17:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:18:14.853+03	2021-05-22 17:18:14.859+03	
71f69795-bff2-b6e6-a09f-d8e2076f263c	2021-05-22 17:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:18:34.853+03	2021-05-22 17:18:34.859+03	
43bbe5b9-bf90-7acf-629f-0e6dbec00f44	2021-05-22 17:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:18:55.852+03	2021-05-22 17:18:55.858+03	
9c901bff-b899-6e40-7674-a023d47f1866	2021-05-22 17:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:19:15.853+03	2021-05-22 17:19:15.869+03	
337ef22f-97f8-87f6-a4e9-eb95a4db2f95	2021-05-22 17:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:19:35.853+03	2021-05-22 17:19:35.859+03	
a58f5503-540e-b559-f914-811a0b068b79	2021-05-22 17:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:19:55.853+03	2021-05-22 17:19:55.859+03	
59a75261-d2cd-38a7-112b-1b29c5b468b7	2021-05-22 17:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:20:06.853+03	2021-05-22 17:20:06.873+03	
efa3bf72-b83e-ebb2-cbb5-f67a198662bd	2021-05-22 17:20:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:20:27.853+03	2021-05-22 17:20:27.859+03	
c94014b7-1efd-ce2d-36ab-a3b376cfb2d4	2021-05-22 17:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:20:47.853+03	2021-05-22 17:20:47.86+03	
42fe349b-cc48-7f37-7fa6-10b05b07a4c8	2021-05-22 17:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:21:08.853+03	2021-05-22 17:21:08.861+03	
66a495c0-83e8-619d-7ce2-db56f239dfe5	2021-05-22 17:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:21:29.852+03	2021-05-22 17:21:29.858+03	
07c5cb94-f6be-495f-dfcb-2d90a640ef38	2021-05-22 17:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:21:49.853+03	2021-05-22 17:21:49.86+03	
0bd9522d-426f-d11e-8a00-ebc52d1517da	2021-05-22 17:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:22:09.853+03	2021-05-22 17:22:09.863+03	
f5d1c455-fd27-2a89-84ce-b5b56c3a63c2	2021-05-22 17:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:22:29.853+03	2021-05-22 17:22:29.86+03	
2610314b-ad03-5600-a0c1-a0c1d9743807	2021-05-22 17:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:22:50.853+03	2021-05-22 17:22:50.861+03	
430b7ca4-4cc9-f807-e9d3-8aa4f8856a0e	2021-05-22 17:23:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:23:11.854+03	2021-05-22 17:23:11.86+03	
ac10ac69-3140-85f1-8dc7-bcdec54de6cf	2021-05-22 17:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:23:32.853+03	2021-05-22 17:23:32.861+03	
0bde92e6-ee18-437a-663a-2d54335f8aca	2021-05-22 17:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:23:53.853+03	2021-05-22 17:23:53.86+03	
253d7c29-2320-6ddc-c35b-f8641892624a	2021-05-22 17:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:24:14.852+03	2021-05-22 17:24:14.861+03	
246446e9-bead-5ccc-5dfb-3d639b90aa76	2021-05-22 17:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:24:35.852+03	2021-05-22 17:24:35.86+03	
d5d748d6-7a62-98ab-f9f3-2aacc9a78535	2021-05-22 17:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:24:55.853+03	2021-05-22 17:24:55.859+03	
f1d658a7-d819-458d-d904-093c9fab57cc	2021-05-22 17:25:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:25:16.852+03	2021-05-22 17:25:16.86+03	
c26069b9-299a-1a1a-5cf0-3dac5f6bb1b3	2021-05-22 17:25:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:25:36.852+03	2021-05-22 17:25:36.86+03	
dcd6b20b-84b6-f7aa-1eba-13a165b865c7	2021-05-22 17:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:25:56.853+03	2021-05-22 17:25:56.859+03	
e8b22f88-232b-025b-56a3-4fb7ffba4c57	2021-05-22 17:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:26:17.853+03	2021-05-22 17:26:17.863+03	
70756a09-a675-1376-aef0-97dacc9da52b	2021-05-22 17:26:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:26:38.852+03	2021-05-22 17:26:38.86+03	
385c7861-ca89-9b70-f79d-c177fa91d8c5	2021-05-22 17:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:26:58.853+03	2021-05-22 17:26:58.859+03	
fb3761b5-cebc-d5cf-a70c-0b598ec38142	2021-05-22 17:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:27:18.853+03	2021-05-22 17:27:18.858+03	
20cc1f84-efe2-d046-91ac-90911781f872	2021-05-22 17:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:27:38.853+03	2021-05-22 17:27:38.859+03	
a7e16e6f-c8bd-3196-7e34-dd35b1c77e6d	2021-05-22 17:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:27:58.853+03	2021-05-22 17:27:58.861+03	
28ecbf5b-324c-6b9d-568e-800b7744cec7	2021-05-22 17:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:28:19.853+03	2021-05-22 17:28:19.86+03	
eb7480d6-2450-21db-3d67-ef5ed91e695f	2021-05-22 17:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:28:40.853+03	2021-05-22 17:28:40.86+03	
bd9a2512-38e9-034c-02fe-4afab4f935e9	2021-05-22 17:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:29:02.852+03	2021-05-22 17:29:02.859+03	
8f9500d7-8003-06b9-f8e4-1d5522d7d143	2021-05-22 17:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:29:23.852+03	2021-05-22 17:29:23.859+03	
cf0e9474-83ab-a4aa-5f44-3a85f87b4202	2021-05-22 17:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:29:44.852+03	2021-05-22 17:29:44.859+03	
793544bb-c304-31a3-a60e-7173741d6c49	2021-05-22 17:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 17:30:00.852+03	2021-05-22 17:30:00.857+03	ERROR
759502dc-4bd6-40f2-0ee8-5e47de399a4b	2021-05-22 17:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:30:14.852+03	2021-05-22 17:30:14.859+03	
a440eda3-952c-37dc-ec03-20a5d7b9cbae	2021-05-22 17:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:30:34.852+03	2021-05-22 17:30:34.859+03	
021a8b02-b75a-c8f8-b382-9c1829e76c60	2021-05-22 17:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:30:55.853+03	2021-05-22 17:30:55.861+03	
9708d7bc-0ab1-0977-e210-d4b9809b9cda	2021-05-22 17:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:31:15.853+03	2021-05-22 17:31:15.859+03	
0dee2a6a-db8c-d058-21f4-8948bf7845ab	2021-05-22 17:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:31:36.852+03	2021-05-22 17:31:36.859+03	
d71db5c0-6745-fe47-c0bd-ae8fc7a0efc3	2021-05-22 17:31:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:31:56.852+03	2021-05-22 17:31:56.859+03	
5932411e-e6cb-698f-25d7-b4d5664b7569	2021-05-22 17:32:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:32:16.854+03	2021-05-22 17:32:16.862+03	
96f947a3-7b02-8cb2-5143-7f8cd9e232cb	2021-05-22 17:32:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:32:37.853+03	2021-05-22 17:32:37.864+03	
314823ae-dc68-9125-b899-ac71cc019171	2021-05-22 17:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:32:58.853+03	2021-05-22 17:32:58.858+03	
d3867051-4f52-eb93-5388-2712652f37c6	2021-05-22 17:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:33:19.852+03	2021-05-22 17:33:19.859+03	
58b16579-b833-c77e-7a9f-910f83730c41	2021-05-22 17:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:33:39.853+03	2021-05-22 17:33:39.86+03	
df4e4624-6b5e-7294-669f-63a9778f0371	2021-05-22 17:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:34:01.853+03	2021-05-22 17:34:01.899+03	
be4a610c-7f5a-7367-af61-222488c161db	2021-05-22 17:34:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:34:21.853+03	2021-05-22 17:34:21.86+03	
106ed960-297c-93ee-a8ff-ecde479744c0	2021-05-22 17:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:34:43.852+03	2021-05-22 17:34:43.858+03	
f9bbb3b7-c642-5cab-c8e3-dbdae9b69a74	2021-05-22 17:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:35:03.852+03	2021-05-22 17:35:03.859+03	
efbe42e2-e566-04fc-5ef7-33719e5b7a0b	2021-05-22 17:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:35:24.853+03	2021-05-22 17:35:24.86+03	
4a2dfa2a-b219-7b4d-b13f-fac3df64bfa4	2021-05-22 17:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:35:45.852+03	2021-05-22 17:35:45.859+03	
5fe98da0-096e-8e6d-2e0f-0868254a8136	2021-05-22 17:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:36:05.853+03	2021-05-22 17:36:05.868+03	
93c14e24-265f-d6cf-5a26-3278b696d50c	2021-05-22 17:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:36:26.853+03	2021-05-22 17:36:26.86+03	
70b843de-c9fe-091d-d1dd-e8309969dda7	2021-05-22 17:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:36:46.853+03	2021-05-22 17:36:46.859+03	
f7ea8c5b-0c7f-b1d8-d15c-5ed18ace976b	2021-05-22 17:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:37:07.853+03	2021-05-22 17:37:07.86+03	
c65f0add-d84c-197c-646b-784377b79729	2021-05-22 17:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:37:28.852+03	2021-05-22 17:37:28.859+03	
2c956436-153c-7a46-c719-b390fc2674b8	2021-05-22 17:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:37:18.852+03	2021-05-22 17:37:18.873+03	
72a6aed0-dc54-c0aa-7886-1fffae6b851b	2021-05-22 17:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:37:38.853+03	2021-05-22 17:37:38.871+03	
05b9818f-74bf-e922-4e22-e48b006996f2	2021-05-22 17:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:37:58.853+03	2021-05-22 17:37:58.861+03	
adc12bd8-50c0-1627-8a37-dc9d83082311	2021-05-22 17:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:38:19.853+03	2021-05-22 17:38:19.86+03	
ccc7a6ee-5582-46e7-d29a-0d24e1df9ab1	2021-05-22 17:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:38:40.852+03	2021-05-22 17:38:40.859+03	
db7a7487-e34a-d9cb-cd0e-3e9d0132a226	2021-05-22 17:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:39:00.853+03	2021-05-22 17:39:00.86+03	
6df2770d-fdac-1a79-cedb-42d497c02b09	2021-05-22 17:39:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:39:21.854+03	2021-05-22 17:39:21.862+03	
aed4612a-628f-453c-73e0-c12f201ca6ec	2021-05-22 17:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:39:42.853+03	2021-05-22 17:39:42.86+03	
7aa7e795-12c5-c422-474c-45e953ac9de3	2021-05-22 17:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 17:40:00.853+03	2021-05-22 17:40:00.87+03	ERROR
77f48c02-8a91-c098-a739-ebb3bba2a5d8	2021-05-22 17:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:40:13.852+03	2021-05-22 17:40:13.859+03	
c1265c8f-89dc-7ba6-fe7a-f90b6c156901	2021-05-22 17:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:40:33.853+03	2021-05-22 17:40:33.861+03	
f380a653-b861-c3e9-94ff-6407fb6fcac9	2021-05-22 17:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:40:54.852+03	2021-05-22 17:40:54.859+03	
6d5e3b66-a5b1-4b2e-6b7c-a18d16f270c6	2021-05-22 17:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:41:14.852+03	2021-05-22 17:41:14.858+03	
ae6f125c-1964-f4c4-3409-8674bd0bab95	2021-05-22 17:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:41:34.852+03	2021-05-22 17:41:34.858+03	
ce83a889-c84b-27ff-c13b-0f7ca810ae83	2021-05-22 17:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:41:54.853+03	2021-05-22 17:41:54.86+03	
3eb72af8-cb01-5bfc-c632-5ee8be4b5f58	2021-05-22 17:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:42:15.852+03	2021-05-22 17:42:15.86+03	
3e66a996-33d6-48a4-3602-016458b0efef	2021-05-22 17:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:42:35.853+03	2021-05-22 17:42:35.88+03	
6f4d1a7a-ab70-7b31-e1f5-3d744c94afb8	2021-05-22 17:42:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:42:56.852+03	2021-05-22 17:42:56.862+03	
f876ea32-b6dc-b17c-7974-ffa18627230b	2021-05-22 17:43:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:43:16.852+03	2021-05-22 17:43:16.859+03	
21c40978-d14d-983f-258c-bfc3a2c25720	2021-05-22 17:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:43:37.852+03	2021-05-22 17:43:37.861+03	
f3eacd33-ec97-6b21-e086-bf18f79b185e	2021-05-22 17:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:43:57.853+03	2021-05-22 17:43:57.859+03	
a4754b52-c252-bab1-216d-1268cc4039a5	2021-05-22 17:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:44:18.852+03	2021-05-22 17:44:18.858+03	
7b320981-e432-0628-f705-f59b71069ada	2021-05-22 17:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:44:38.853+03	2021-05-22 17:44:38.86+03	
76384d69-50e4-9bcc-6a64-8b5cf0cb6767	2021-05-22 17:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:44:59.852+03	2021-05-22 17:44:59.859+03	
cef6fbde-2999-1788-33f0-84338bf75ce1	2021-05-22 17:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:45:19.852+03	2021-05-22 17:45:19.858+03	
6dba4be3-8219-8f0f-4530-b0b4f0b28d70	2021-05-22 17:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:45:39.852+03	2021-05-22 17:45:39.859+03	
7564a501-4940-37bc-8cfd-1054770825ed	2021-05-22 17:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:45:59.853+03	2021-05-22 17:45:59.86+03	
1179fe76-6007-3a89-6734-79ecef2480ca	2021-05-22 17:46:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:46:20.853+03	2021-05-22 17:46:20.859+03	
28b06075-31db-4017-57bd-72dce69b34f4	2021-05-22 17:46:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:46:41.852+03	2021-05-22 17:46:41.86+03	
6597cd74-9eed-2d65-33fc-233e46511eb6	2021-05-22 17:47:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:47:01.852+03	2021-05-22 17:47:01.908+03	
9b39be27-185a-95b2-8935-8c845e822e53	2021-05-22 17:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:47:22.853+03	2021-05-22 17:47:22.859+03	
59434ec5-7a2d-a2a2-9515-91a5f267e3e1	2021-05-22 17:47:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:47:43.853+03	2021-05-22 17:47:43.859+03	
d6cccaa3-6642-8a3c-1a30-e6c9f47e110d	2021-05-22 17:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:48:04.853+03	2021-05-22 17:48:04.859+03	
5ad432e4-a419-9e30-69ad-5bdf95151676	2021-05-22 17:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:48:25.853+03	2021-05-22 17:48:25.86+03	
71bef04e-6d0f-68b3-2cca-8a440b1a2906	2021-05-22 17:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:48:45.853+03	2021-05-22 17:48:45.875+03	
70dc75d6-5c03-50a0-1b52-9639720e36da	2021-05-22 17:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:49:05.853+03	2021-05-22 17:49:05.859+03	
eaf9b01c-47b5-fc1d-a15c-a31b9fba2996	2021-05-22 17:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:49:26.852+03	2021-05-22 17:49:26.859+03	
0994be41-033e-0cda-e763-90cec93d509f	2021-05-22 17:49:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:49:46.852+03	2021-05-22 17:49:46.861+03	
ef0d340f-88a0-b599-70f1-fdee6a143fe1	2021-05-22 17:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 17:50:00.853+03	2021-05-22 17:50:00.858+03	ERROR
6abfde62-61e7-4cd2-16b8-cba13c301183	2021-05-22 17:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:50:17.853+03	2021-05-22 17:50:17.859+03	
28f0ca18-b8f3-d6d7-b912-9c4263db02d1	2021-05-22 17:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:50:38.853+03	2021-05-22 17:50:38.859+03	
35cebd9d-9de1-571a-26ec-08635cd792c6	2021-05-22 17:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:50:59.852+03	2021-05-22 17:50:59.858+03	
e918e30e-84ec-1aba-1a50-53a2fa223c8d	2021-05-22 17:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:51:19.853+03	2021-05-22 17:51:19.86+03	
00ff6f1a-f516-24e6-d281-ff4712ed41e4	2021-05-22 17:51:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:51:39.853+03	2021-05-22 17:51:39.861+03	
7b3705fb-dc90-7e83-134c-56048d5b1a69	2021-05-22 17:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:52:00.852+03	2021-05-22 17:52:00.86+03	
0f93c313-0ccc-5e16-3e86-2d6d0b5ce8eb	2021-05-22 17:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:52:20.853+03	2021-05-22 17:52:20.881+03	
50e93fde-a70f-b87f-5234-93a4225ef276	2021-05-22 17:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:52:40.853+03	2021-05-22 17:52:40.859+03	
d7eb3802-84dc-b73c-b649-3ca81def74da	2021-05-22 17:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:53:02.853+03	2021-05-22 17:53:02.86+03	
cef76608-7886-dfd8-8056-e35d57f87161	2021-05-22 17:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:53:22.853+03	2021-05-22 17:53:22.867+03	
a529941d-a327-5597-ae3e-dd9ceb838ba3	2021-05-22 17:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:53:42.853+03	2021-05-22 17:53:42.861+03	
115c801f-ea80-7f82-81f9-6b57a0430367	2021-05-22 17:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:54:03.852+03	2021-05-22 17:54:03.86+03	
cb7cfbab-e6c3-ce3b-d5eb-8bdc3171bf33	2021-05-22 17:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:54:23.853+03	2021-05-22 17:54:23.862+03	
9f035e90-a91f-4d76-86f6-efebd137fbe2	2021-05-22 17:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:54:44.852+03	2021-05-22 17:54:44.873+03	
8ccfad2d-a117-8d0e-eecd-df11b4191c27	2021-05-22 17:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:55:04.852+03	2021-05-22 17:55:04.859+03	
683ffe9f-5036-8fb6-7bd7-5573621b991a	2021-05-22 17:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:55:24.853+03	2021-05-22 17:55:24.859+03	
e39df827-0636-b964-f544-d786b6b6f1e5	2021-05-22 17:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:55:45.852+03	2021-05-22 17:55:45.86+03	
371b07b9-6b27-3897-98cf-045009c0cfb6	2021-05-22 17:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:56:05.853+03	2021-05-22 17:56:05.861+03	
7dc17d50-c8a7-6fb9-b2c0-dd04cb40663f	2021-05-22 17:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:56:25.853+03	2021-05-22 17:56:25.859+03	
0cbeafd2-b44b-0146-fd58-a8f69a70d4bf	2021-05-22 17:56:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:56:46.853+03	2021-05-22 17:56:46.859+03	
3c447134-4402-1df8-70f8-c80a6efded69	2021-05-22 17:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:57:07.852+03	2021-05-22 17:57:07.863+03	
c69318f8-64da-d672-fcd9-c76361c79d5b	2021-05-22 17:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:57:28.853+03	2021-05-22 17:57:28.859+03	
2a1f263b-e8f2-5aab-e547-60f19299c45b	2021-05-22 17:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:57:48.853+03	2021-05-22 17:57:48.872+03	
e018310d-0ec2-aed2-0063-2d659d35d829	2021-05-22 17:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:58:09.852+03	2021-05-22 17:58:09.859+03	
3e710f0e-214f-8edf-8004-6c95ede62ef1	2021-05-22 17:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:37:48.853+03	2021-05-22 17:37:48.86+03	
59de9a2a-decb-14ed-e55d-de89df9e00b0	2021-05-22 17:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:38:09.853+03	2021-05-22 17:38:09.86+03	
b624466a-514e-eb24-3787-17b32ce181e0	2021-05-22 17:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:38:29.853+03	2021-05-22 17:38:29.863+03	
07b99a49-2393-b1bb-aacc-ece1fe6d2340	2021-05-22 17:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:38:50.852+03	2021-05-22 17:38:50.859+03	
8bf5e22d-3354-e171-bfb7-e9347804f39d	2021-05-22 17:39:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:39:11.852+03	2021-05-22 17:39:11.86+03	
1a960f83-f3d2-7774-dc15-6cd39a8c4b9f	2021-05-22 17:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:39:32.853+03	2021-05-22 17:39:32.863+03	
6627fce3-162b-50b8-9e24-e5a7e3d0bf93	2021-05-22 17:39:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:39:53.852+03	2021-05-22 17:39:53.871+03	
9823df33-1c1b-edfa-6f3f-b954e25e24b8	2021-05-22 17:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:40:03.852+03	2021-05-22 17:40:03.858+03	
4ecbf205-2a0c-b946-18cd-07fd89da7e4a	2021-05-22 17:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:40:23.852+03	2021-05-22 17:40:23.861+03	
69e7d696-a4b4-a358-abf0-4d6a40489a7c	2021-05-22 17:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:40:44.852+03	2021-05-22 17:40:44.859+03	
b51581bf-c795-1d05-8916-ee35af1bbd6b	2021-05-22 17:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:41:04.852+03	2021-05-22 17:41:04.859+03	
3be92b21-6db4-2fe6-d13d-fb0b7f13e5e8	2021-05-22 17:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:41:24.852+03	2021-05-22 17:41:24.863+03	
4de975b6-bb6d-95ef-9591-7506b1cb58d2	2021-05-22 17:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:41:44.853+03	2021-05-22 17:41:44.859+03	
cc4f827e-1814-3f73-66c7-4c023db2f3a5	2021-05-22 17:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:42:05.852+03	2021-05-22 17:42:05.864+03	
359d4804-a383-5d97-fce1-65752df70cc6	2021-05-22 17:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:42:25.853+03	2021-05-22 17:42:25.867+03	
3cb1dc1d-e46b-71d5-1a1b-e0c68074dc7c	2021-05-22 17:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:42:46.852+03	2021-05-22 17:42:46.86+03	
b6dc17ce-2b87-46ad-b769-f9e99f5134e1	2021-05-22 17:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:43:06.852+03	2021-05-22 17:43:06.859+03	
f16e8efe-1a4b-ef67-43cc-29cc3d06a98b	2021-05-22 17:43:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:43:26.854+03	2021-05-22 17:43:26.863+03	
41878d94-493e-de8f-c0c0-6a4cd20fa835	2021-05-22 17:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:43:47.853+03	2021-05-22 17:43:47.862+03	
a9d375da-a77f-90e8-b1f8-fe1d165e2225	2021-05-22 17:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:44:07.853+03	2021-05-22 17:44:07.863+03	
b2da7130-7f7d-d9c4-e9d0-7024bb3370c3	2021-05-22 17:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:44:28.852+03	2021-05-22 17:44:28.859+03	
b0757cf1-f994-903e-e2fe-0c6d2c0ebc07	2021-05-22 17:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:44:48.853+03	2021-05-22 17:44:48.859+03	
4424f312-8a54-99e3-784d-03d537233a29	2021-05-22 17:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:45:09.852+03	2021-05-22 17:45:09.86+03	
3a10e7b3-4f03-2579-ec2c-01baf33b9ec7	2021-05-22 17:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:45:29.852+03	2021-05-22 17:45:29.859+03	
5ca6d418-c76d-83c2-7b0e-fbcb744f2dca	2021-05-22 17:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:45:49.852+03	2021-05-22 17:45:49.858+03	
9c528004-35af-b9b8-bbab-abe7740218a0	2021-05-22 17:46:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:46:10.852+03	2021-05-22 17:46:10.859+03	
0cdf51c4-2e30-b01c-178b-7597a9bf4778	2021-05-22 17:46:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:46:31.852+03	2021-05-22 17:46:31.859+03	
c354ef46-49e9-90f8-7e9f-5fc17692fb07	2021-05-22 17:46:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:46:51.852+03	2021-05-22 17:46:51.877+03	
ec2efa87-c614-da15-69f3-ef9543150ac8	2021-05-22 17:47:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:47:11.854+03	2021-05-22 17:47:11.86+03	
ab6327db-52d3-1a67-845d-148c6b672a5a	2021-05-22 17:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:47:32.853+03	2021-05-22 17:47:32.859+03	
12dc110e-8b46-635b-c135-e175c0cef841	2021-05-22 17:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:47:54.852+03	2021-05-22 17:47:54.861+03	
5672f46e-1472-2c4f-7808-8c58e2c89bac	2021-05-22 17:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:48:15.853+03	2021-05-22 17:48:15.861+03	
aeffd8bf-b04c-3258-28bb-03422315a6d6	2021-05-22 17:48:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:48:35.853+03	2021-05-22 17:48:35.862+03	
6b8a9ad9-4156-4de1-e691-f4bfc92f8839	2021-05-22 17:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:48:55.853+03	2021-05-22 17:48:55.86+03	
6ed83d08-7a33-89da-2503-3027e47babc8	2021-05-22 17:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:49:16.852+03	2021-05-22 17:49:16.858+03	
11a76eeb-0c36-37ed-7e84-70a3aaba4d49	2021-05-22 17:49:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:49:36.852+03	2021-05-22 17:49:36.861+03	
399d26cd-8482-32a2-7481-cff99f5027ff	2021-05-22 17:49:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:49:56.853+03	2021-05-22 17:49:56.86+03	
b753ecfd-cead-0e50-9c63-6df4cdae7979	2021-05-22 17:50:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:50:06.853+03	2021-05-22 17:50:06.862+03	
b88e0977-b13a-d4dc-bfa4-b2acde8ae6aa	2021-05-22 17:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:50:28.853+03	2021-05-22 17:50:28.86+03	
ec43d329-7cf7-7e37-9a18-2811e7223ff1	2021-05-22 17:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:50:48.853+03	2021-05-22 17:50:48.859+03	
3a3d7da1-8444-3339-3d38-931f3ee13843	2021-05-22 17:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:51:09.852+03	2021-05-22 17:51:09.859+03	
6beae9f3-eca7-4ee4-9019-454dd2b56659	2021-05-22 17:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:51:29.853+03	2021-05-22 17:51:29.862+03	
14d770e0-95b8-1010-6c9b-1124919905ab	2021-05-22 17:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:51:50.852+03	2021-05-22 17:51:50.859+03	
3e434336-dce5-c036-02ec-4a1a19492b95	2021-05-22 17:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:52:10.853+03	2021-05-22 17:52:10.87+03	
34427fd9-13df-9725-0a46-45bd3e32b713	2021-05-22 17:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:52:30.853+03	2021-05-22 17:52:30.86+03	
d1961408-3d7d-91ed-b358-6814d3515b96	2021-05-22 17:52:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:52:51.854+03	2021-05-22 17:52:51.909+03	
3ea9ffcf-1c74-69bd-91ba-5885d0593031	2021-05-22 17:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:53:12.853+03	2021-05-22 17:53:12.86+03	
0a7621c8-d049-093b-ba39-59b340addc58	2021-05-22 17:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:53:32.853+03	2021-05-22 17:53:32.86+03	
c0f9fe42-426d-b93c-d742-94cc3fb29bb3	2021-05-22 17:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:53:53.852+03	2021-05-22 17:53:53.858+03	
1b7309d7-df7f-8d43-15e4-0204b074fa74	2021-05-22 17:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:54:13.852+03	2021-05-22 17:54:13.86+03	
3f91d7c1-3e1e-928c-fa4d-ea559ad86050	2021-05-22 17:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:54:34.852+03	2021-05-22 17:54:34.859+03	
4dd84f1d-6ed6-965d-7038-537531adb548	2021-05-22 17:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:54:54.852+03	2021-05-22 17:54:54.859+03	
1a1dbc14-8654-4564-8d52-96860a0f316e	2021-05-22 17:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:55:14.852+03	2021-05-22 17:55:14.859+03	
f67e34a2-a13d-d7cc-16c1-846cb795e1d1	2021-05-22 17:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:55:35.852+03	2021-05-22 17:55:35.865+03	
0809a8f5-8736-a31c-79e6-80e077991aa0	2021-05-22 17:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:55:55.853+03	2021-05-22 17:55:55.859+03	
f9e3d5f1-c1be-378b-68e9-874d426d5b51	2021-05-22 17:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:56:15.853+03	2021-05-22 17:56:15.859+03	
4d6fc0f7-39d1-390f-b054-b169bcbf66f2	2021-05-22 17:56:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:56:36.853+03	2021-05-22 17:56:36.86+03	
32105160-44a4-4079-71b2-6ab77ab5f13a	2021-05-22 17:56:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:56:56.853+03	2021-05-22 17:56:56.862+03	
778beb44-c9be-8cdb-ae0e-d1610d683bf3	2021-05-22 17:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:57:17.853+03	2021-05-22 17:57:17.873+03	
2fcad940-872b-a0ec-7f81-0ac725b05a15	2021-05-22 17:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:57:38.853+03	2021-05-22 17:57:38.86+03	
0f500a10-c0e4-a86a-349a-07462466acc5	2021-05-22 17:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:57:58.853+03	2021-05-22 17:57:58.873+03	
1adc0140-29ac-9ffb-64c1-0195b9bf3999	2021-05-22 17:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:58:19.852+03	2021-05-22 17:58:19.859+03	
1bfee893-8ca8-e51a-bf68-b37adad223d2	2021-05-22 17:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:58:40.853+03	2021-05-22 17:58:40.86+03	
151ef65e-9b7b-e7d7-5ae0-d808c38b83e9	2021-05-22 17:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:58:29.853+03	2021-05-22 17:58:29.86+03	
6e8a250d-dc7b-8350-7880-ecb1eeb4c67d	2021-05-22 17:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:58:50.853+03	2021-05-22 17:58:50.859+03	
6c0fd7f7-b336-be1c-f6fe-e7ae4d15bbd5	2021-05-22 17:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:59:12.853+03	2021-05-22 17:59:12.86+03	
74696b89-4f05-0a96-2053-0804adaddf71	2021-05-22 17:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:59:33.853+03	2021-05-22 17:59:33.86+03	
f0996a1f-30bf-a0bc-3b93-43239068706c	2021-05-22 17:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:59:55.853+03	2021-05-22 17:59:55.861+03	
e7db13e8-dfa6-2643-0d6d-ed4d6c04d4f7	2021-05-22 18:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:00:05.853+03	2021-05-22 18:00:05.869+03	
19946199-fd82-4a72-946b-57efc293e544	2021-05-22 18:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:00:25.853+03	2021-05-22 18:00:25.865+03	
49f72666-b239-bd6a-b647-47c0d2d72f20	2021-05-22 18:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:00:45.853+03	2021-05-22 18:00:45.86+03	
9204c51e-0bfe-7254-6d92-5e3dbb8576fb	2021-05-22 18:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:01:05.853+03	2021-05-22 18:01:05.86+03	
562fda99-9013-d423-4134-f4431db64279	2021-05-22 18:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:01:25.853+03	2021-05-22 18:01:25.875+03	
e090aea3-e1a2-5580-9d9c-e087da8610ad	2021-05-22 18:01:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:01:46.852+03	2021-05-22 18:01:46.861+03	
713091fe-66c7-89fb-54a8-6fabdaffeb3b	2021-05-22 18:02:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:02:06.852+03	2021-05-22 18:02:06.859+03	
20fb4d9d-cb8c-a392-730d-94cbd3dacf56	2021-05-22 18:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:02:26.852+03	2021-05-22 18:02:26.859+03	
28324d54-d630-3c86-4dc1-4255c23d04af	2021-05-22 18:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:02:47.853+03	2021-05-22 18:02:47.86+03	
62bac60b-0c4e-9e8b-2ccd-ecb44f1f600f	2021-05-22 18:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:03:08.852+03	2021-05-22 18:03:08.859+03	
32a6bc10-434d-02a2-d0b8-bda96725c87e	2021-05-22 18:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:03:28.852+03	2021-05-22 18:03:28.859+03	
f134baf0-76e7-19f6-379c-20c20d9d87b4	2021-05-22 18:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:03:48.853+03	2021-05-22 18:03:48.859+03	
61449284-6e43-e2c0-6150-ed4de796eda3	2021-05-22 18:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:04:08.853+03	2021-05-22 18:04:08.859+03	
522a5626-3bb3-02f9-861a-b5545d7f459f	2021-05-22 18:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:04:28.853+03	2021-05-22 18:04:28.859+03	
1acdad31-3921-ba0f-9daa-c515358cea71	2021-05-22 18:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:04:49.853+03	2021-05-22 18:04:49.86+03	
c3c89185-0eb8-eefd-e96d-d19fe04d59a0	2021-05-22 18:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:05:10.852+03	2021-05-22 18:05:10.859+03	
20121e78-5fcb-4ef3-060a-6d2de99445e7	2021-05-22 18:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:05:30.853+03	2021-05-22 18:05:30.86+03	
5b7ff7e8-2f24-1df5-2ab9-39b57eb6dc20	2021-05-22 18:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:05:52.853+03	2021-05-22 18:05:52.86+03	
a2d0a653-02af-cac5-43cc-7892e4adfbd7	2021-05-22 18:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:06:13.853+03	2021-05-22 18:06:13.867+03	
ddb222b6-7f40-98b7-3935-679832264258	2021-05-22 18:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:06:34.853+03	2021-05-22 18:06:34.867+03	
e95096f0-3a5f-9746-84cf-970af16986eb	2021-05-22 18:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:06:55.852+03	2021-05-22 18:06:55.862+03	
45aa4701-3061-1ce3-f3e1-e62700043373	2021-05-22 18:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:07:15.853+03	2021-05-22 18:07:15.871+03	
4467cf62-a836-d517-4b1c-481044d4e028	2021-05-22 18:07:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:07:36.852+03	2021-05-22 18:07:36.86+03	
85a7c563-cc0f-c9c7-4de1-397aae4a3cfc	2021-05-22 18:07:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:07:56.852+03	2021-05-22 18:07:56.868+03	
9e33b394-419f-317d-36c9-f923e433f761	2021-05-22 18:08:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:08:16.853+03	2021-05-22 18:08:16.859+03	
0797fa0c-5f43-9ed6-a1f5-6a3915d7a5fe	2021-05-22 18:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:08:37.853+03	2021-05-22 18:08:37.859+03	
1d646a2d-e28b-90ae-1c24-2f52b4fe9b17	2021-05-22 18:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:08:58.852+03	2021-05-22 18:08:58.858+03	
5145d4db-f3c4-0b66-d711-84cf6dca1680	2021-05-22 18:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:09:18.852+03	2021-05-22 18:09:18.86+03	
c56c4464-7464-5b53-a94b-12112f3b20ee	2021-05-22 18:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:09:38.853+03	2021-05-22 18:09:38.861+03	
6e1f519a-4d40-121f-a3ed-7e366c057342	2021-05-22 18:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:09:49.852+03	2021-05-22 18:09:49.86+03	
f240e49d-c320-726a-20f8-0cd0fcf20658	2021-05-22 18:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 18:10:00.852+03	2021-05-22 18:10:00.857+03	ERROR
93c33152-3437-4292-1da0-c3180f3cff1f	2021-05-22 18:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:10:19.853+03	2021-05-22 18:10:19.86+03	
36fa406e-647b-4eed-63a4-e3ec0d5be0d7	2021-05-22 18:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:10:39.853+03	2021-05-22 18:10:39.859+03	
a3bb34c3-255a-f6f4-4d60-d65ba7bf5cf1	2021-05-22 18:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:10:59.853+03	2021-05-22 18:10:59.859+03	
08de5939-07c4-ea84-da8f-8aa5ed621974	2021-05-22 18:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:11:19.853+03	2021-05-22 18:11:19.859+03	
75486119-7198-ea48-2732-25b32340c12b	2021-05-22 18:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:11:39.853+03	2021-05-22 18:11:39.86+03	
6d669eca-8f90-6f29-ea76-c3ff6cdffc99	2021-05-22 18:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:11:59.853+03	2021-05-22 18:11:59.861+03	
a664b218-3340-9984-7983-0fba274bac16	2021-05-22 18:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:12:19.853+03	2021-05-22 18:12:19.859+03	
c2c608a4-142d-a6fd-4ec6-c32e5c16da44	2021-05-22 18:12:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:12:40.852+03	2021-05-22 18:12:40.859+03	
353ca590-dac1-c446-b342-5d6ecbfd85a1	2021-05-22 18:13:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:13:00.852+03	2021-05-22 18:13:00.86+03	
a2fa82b1-1011-006a-d70e-a7cb0f541ffe	2021-05-22 18:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:13:20.853+03	2021-05-22 18:13:20.859+03	
f4607eda-7349-d938-1ed8-9b11e72f57bb	2021-05-22 18:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:13:41.853+03	2021-05-22 18:13:41.859+03	
f3b2e375-2009-4d9e-191c-f0e2f5176f2a	2021-05-22 18:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:14:02.852+03	2021-05-22 18:14:02.859+03	
332dca08-3492-5d66-c7db-0554d7dd524d	2021-05-22 18:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:14:22.853+03	2021-05-22 18:14:22.859+03	
f9e0ee59-ef9f-85ef-723c-e4eba84671ca	2021-05-22 18:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:14:43.852+03	2021-05-22 18:14:43.858+03	
e1c7401c-e2b9-0e56-aab1-bf09df7b74e2	2021-05-22 18:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:15:03.853+03	2021-05-22 18:15:03.859+03	
15477025-9fca-6fd9-350a-709a64ff1430	2021-05-22 18:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:15:24.853+03	2021-05-22 18:15:24.871+03	
f54894e3-80e1-6a83-96bb-e52c31624836	2021-05-22 18:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:15:45.852+03	2021-05-22 18:15:45.86+03	
ede11d81-caf4-b4d6-e21d-e2841661769e	2021-05-22 18:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:16:05.853+03	2021-05-22 18:16:05.86+03	
ccffac0b-0bf7-0169-ac7c-510566a352d6	2021-05-22 18:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:16:25.853+03	2021-05-22 18:16:25.859+03	
6b6ace42-fcac-e71b-b0fc-9fe803843e67	2021-05-22 18:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:16:45.853+03	2021-05-22 18:16:45.86+03	
9e5f4636-2a17-43d0-2afe-5775f17d6867	2021-05-22 18:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:17:05.853+03	2021-05-22 18:17:05.871+03	
d1dd0335-c6bd-60f5-69a7-95ac7113a9c4	2021-05-22 18:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:17:25.853+03	2021-05-22 18:17:25.87+03	
55c7131b-b53b-9aed-9b1b-b50b4cc9992f	2021-05-22 18:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:17:45.853+03	2021-05-22 18:17:45.866+03	
d43de63b-2b05-c172-f785-10a5987c23f9	2021-05-22 18:18:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:18:06.852+03	2021-05-22 18:18:06.858+03	
84c09871-a759-9676-e8eb-1b43258f2a72	2021-05-22 18:18:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:18:26.852+03	2021-05-22 18:18:26.859+03	
5317ca13-65aa-5763-e2ba-5d22f85b7b89	2021-05-22 18:18:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:18:46.852+03	2021-05-22 18:18:46.86+03	
e625a85f-82a6-0bb4-4464-b242fdbccfa4	2021-05-22 18:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:19:07.853+03	2021-05-22 18:19:07.861+03	
f5f3d971-6094-bfae-858e-5747424d0924	2021-05-22 17:59:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:59:01.853+03	2021-05-22 17:59:01.912+03	
8b7b82f2-051b-3565-6855-bc61378d1584	2021-05-22 17:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:59:22.853+03	2021-05-22 17:59:22.859+03	
ad74f717-4ebd-d878-6a13-69d4422bf696	2021-05-22 17:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 17:59:44.853+03	2021-05-22 17:59:44.86+03	
37876c11-5d4d-1560-2374-f24940b7a65a	2021-05-22 18:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 18:00:00.853+03	2021-05-22 18:00:00.859+03	ERROR
0efae286-d716-30db-190a-ec3942a7515e	2021-05-22 18:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:00:15.853+03	2021-05-22 18:00:15.872+03	
0d60659b-02b9-3db1-e166-d4ac52cecc4d	2021-05-22 18:00:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:00:35.853+03	2021-05-22 18:00:35.878+03	
062e8682-1080-5d88-5375-43e94670db98	2021-05-22 18:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:00:55.853+03	2021-05-22 18:00:55.862+03	
15c09c1e-5f41-9fde-9d09-d80de4fd651a	2021-05-22 18:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:01:15.853+03	2021-05-22 18:01:15.859+03	
7d70a0dc-d2e7-f3cc-38ef-39ffcfc08571	2021-05-22 18:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:01:35.853+03	2021-05-22 18:01:35.86+03	
8e813d24-aaca-2161-bbe7-75c342188ad5	2021-05-22 18:01:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:01:56.852+03	2021-05-22 18:01:56.859+03	
b3e7ba76-e183-824e-1b61-c36f35bf3279	2021-05-22 18:02:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:02:16.852+03	2021-05-22 18:02:16.86+03	
928872f4-42ec-7608-143e-dffd2d08b788	2021-05-22 18:02:36.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:02:36.853+03	2021-05-22 18:02:36.868+03	
ed043131-38f1-6b98-7cd8-7cd8e3de5f22	2021-05-22 18:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:02:57.853+03	2021-05-22 18:02:57.861+03	
47a20e11-e59e-6d16-2f4c-ed7fd27ba1ef	2021-05-22 18:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:03:18.852+03	2021-05-22 18:03:18.859+03	
915e5d0b-92cd-170f-9770-e96cbb0fd5c1	2021-05-22 18:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:03:38.853+03	2021-05-22 18:03:38.86+03	
9b7198cb-57d1-dafb-3953-71320fda90d1	2021-05-22 18:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:03:58.853+03	2021-05-22 18:03:58.86+03	
4f65e56f-76e0-0e7f-7e1c-6d52c13c89ee	2021-05-22 18:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:04:18.853+03	2021-05-22 18:04:18.907+03	
409e0944-fee6-11fc-326e-5c3d0e026117	2021-05-22 18:04:38.862	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:04:38.853+03	2021-05-22 18:04:38.869+03	
3efad2bb-7be2-d84c-0beb-337181ca5a6e	2021-05-22 18:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:05:00.852+03	2021-05-22 18:05:00.859+03	
39129a75-e8d7-3e54-ddc2-27bfcca338b4	2021-05-22 18:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:05:20.853+03	2021-05-22 18:05:20.859+03	
15270e78-c229-8c43-edfa-3c650a3a8975	2021-05-22 18:05:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:05:41.853+03	2021-05-22 18:05:41.86+03	
9759bc84-2a43-e961-6df3-a1e5fa8124dc	2021-05-22 18:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:06:03.852+03	2021-05-22 18:06:03.858+03	
693f131c-8cc6-07a9-45a2-212b54311670	2021-05-22 18:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:06:24.853+03	2021-05-22 18:06:24.859+03	
f0b559ab-a497-eefd-2337-f3c459a4c5dd	2021-05-22 18:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:06:45.852+03	2021-05-22 18:06:45.859+03	
e686c8ea-b5b2-ae89-b572-879ec25008c8	2021-05-22 18:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:07:05.853+03	2021-05-22 18:07:05.87+03	
27651a55-d655-361b-c934-24a14a0ffa14	2021-05-22 18:07:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:07:26.852+03	2021-05-22 18:07:26.859+03	
4a77d605-231b-90e0-ca9c-d19a42a3d67a	2021-05-22 18:07:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:07:46.852+03	2021-05-22 18:07:46.858+03	
17958606-621b-463f-668d-c3b768150419	2021-05-22 18:08:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:08:06.852+03	2021-05-22 18:08:06.859+03	
7864d5e9-3a74-ca0f-de73-ef722a3500b5	2021-05-22 18:08:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:08:26.854+03	2021-05-22 18:08:26.861+03	
ac4c94e9-0cfa-b978-626e-69c87616c7a3	2021-05-22 18:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:08:47.853+03	2021-05-22 18:08:47.86+03	
e33faed5-3dda-2fd2-04c6-f885f9ea21e0	2021-05-22 18:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:09:08.852+03	2021-05-22 18:09:08.864+03	
1bd63d6c-0625-65fa-27fa-bfc0e1f3b7bd	2021-05-22 18:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:09:28.853+03	2021-05-22 18:09:28.866+03	
ee11bb35-e480-d3ea-fd78-2c8393de9b96	2021-05-22 18:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:09:59.853+03	2021-05-22 18:09:59.86+03	
ec7ee58a-fb29-0bec-8fab-241d1a650ae8	2021-05-22 18:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:10:09.853+03	2021-05-22 18:10:09.86+03	
6306d8a5-d3f3-7fdd-5690-e6feafb9cab7	2021-05-22 18:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:10:29.853+03	2021-05-22 18:10:29.86+03	
6b481d29-5817-ab8f-f57b-033fb74d8a2b	2021-05-22 18:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:10:49.853+03	2021-05-22 18:10:49.858+03	
6b0c414e-4409-f9b5-ff1f-bcf9b8fcdc99	2021-05-22 18:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:11:09.853+03	2021-05-22 18:11:09.859+03	
580bdbbd-3f8a-21b5-e6ec-806c77f6c8d0	2021-05-22 18:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:11:29.853+03	2021-05-22 18:11:29.859+03	
977e868b-de85-8c70-083b-e351a60e2e9b	2021-05-22 18:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:11:49.853+03	2021-05-22 18:11:49.86+03	
4d6f4d73-ad4e-8c58-bfba-4d50e86ee029	2021-05-22 18:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:12:09.853+03	2021-05-22 18:12:09.861+03	
e67b0869-64ef-661a-58ab-dd5f0da452d8	2021-05-22 18:12:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:12:29.853+03	2021-05-22 18:12:29.861+03	
2a5c1619-5c56-89d3-6c04-606a89918389	2021-05-22 18:12:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:12:50.852+03	2021-05-22 18:12:50.859+03	
edfc67f5-1ab2-4c00-014d-f8845436ae58	2021-05-22 18:13:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:13:10.853+03	2021-05-22 18:13:10.873+03	
1044fcce-d442-13b5-2fc9-33bd96ca3e98	2021-05-22 18:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:13:30.853+03	2021-05-22 18:13:30.859+03	
2dcac950-7df2-7518-1070-bcb41bba8fde	2021-05-22 18:13:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:13:51.853+03	2021-05-22 18:13:51.859+03	
d5a6f5b9-9ef9-2312-5d04-5bcbdd4fabc4	2021-05-22 18:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:14:12.853+03	2021-05-22 18:14:12.859+03	
e8d56a55-9ded-bcb4-6730-c4ea65ed1907	2021-05-22 18:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:14:32.853+03	2021-05-22 18:14:32.87+03	
93cb5167-ea3a-6b5a-9f30-16516f73a91c	2021-05-22 18:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:14:53.853+03	2021-05-22 18:14:53.859+03	
1e0de310-0189-2f8c-8a16-6ee09612cd24	2021-05-22 18:15:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:15:14.852+03	2021-05-22 18:15:14.859+03	
2a8ffc13-1833-a1f2-e343-29aaa146d244	2021-05-22 18:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:15:35.852+03	2021-05-22 18:15:35.859+03	
f32e120f-7a84-4698-8c65-5869d74bf098	2021-05-22 18:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:15:55.852+03	2021-05-22 18:15:55.87+03	
6375ea51-a69e-77ac-36de-2364d7c57e6b	2021-05-22 18:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:16:15.853+03	2021-05-22 18:16:15.86+03	
865a8261-1299-c289-bfd7-25b9a8379a86	2021-05-22 18:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:16:35.853+03	2021-05-22 18:16:35.871+03	
4d7c9337-aab5-12cd-bd6e-18a23a566b0e	2021-05-22 18:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:16:55.853+03	2021-05-22 18:16:55.863+03	
c19cf205-2ca5-d468-ceef-655ca6309258	2021-05-22 18:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:17:15.853+03	2021-05-22 18:17:15.86+03	
5b87e6bc-c249-5e2d-0b18-485ad0a10f28	2021-05-22 18:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:17:35.853+03	2021-05-22 18:17:35.859+03	
607a6847-b8d8-b07b-5e13-2c22cfc80f15	2021-05-22 18:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:17:55.853+03	2021-05-22 18:17:55.863+03	
8b8111d3-fdff-28fb-34e4-fca3bc476cec	2021-05-22 18:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:18:16.852+03	2021-05-22 18:18:16.862+03	
f64a3e7e-8e77-c27b-7521-6f5904d10c96	2021-05-22 18:18:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:18:36.852+03	2021-05-22 18:18:36.859+03	
f2cade04-6e50-9377-7c8d-bf9289e1122a	2021-05-22 18:18:56.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:18:56.858+03	2021-05-22 18:18:56.866+03	
729b5a85-e68c-17e9-5747-3844a87e4373	2021-05-22 18:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:19:18.853+03	2021-05-22 18:19:18.883+03	
a9abc5de-5fd6-cbb1-17d9-4c537c140c9a	2021-05-22 18:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:19:39.852+03	2021-05-22 18:19:39.872+03	
8ed5d4ba-1e32-3718-531a-a8ef63a76d97	2021-05-22 18:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:19:59.853+03	2021-05-22 18:19:59.86+03	
7bfc1a57-1181-b317-5533-a2d4df5cc96f	2021-05-22 18:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:19:29.852+03	2021-05-22 18:19:29.86+03	
255b9a63-2a6d-eb72-7bed-9c3c7be809a7	2021-05-22 18:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:19:49.852+03	2021-05-22 18:19:49.858+03	
80a5a516-eea5-0b32-0111-f9fb8a091a5d	2021-05-22 18:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 18:20:00.852+03	2021-05-22 18:20:00.858+03	ERROR
f13bb70a-faa9-dc9b-b416-3a636b3a21d6	2021-05-22 18:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:20:19.853+03	2021-05-22 18:20:19.86+03	
387c6955-1e50-19c0-2be9-3cbe683d0f66	2021-05-22 18:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:20:40.852+03	2021-05-22 18:20:40.859+03	
537efdf0-5a29-e6d3-2a14-dee178a78fbe	2021-05-22 18:21:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:21:01.852+03	2021-05-22 18:21:01.858+03	
146b673b-67a9-b740-39c9-e0a85e571ab3	2021-05-22 18:21:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:21:21.853+03	2021-05-22 18:21:21.859+03	
5b8ca398-1aa6-8ffd-ffb6-2a8dd721e5ca	2021-05-22 18:21:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:21:41.853+03	2021-05-22 18:21:41.859+03	
4605197f-27f1-d2e2-bf87-6219094c15b7	2021-05-22 18:22:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:22:01.853+03	2021-05-22 18:22:01.859+03	
1350221c-aa9a-2c2d-a294-deff7155c022	2021-05-22 18:22:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:22:21.853+03	2021-05-22 18:22:21.858+03	
2a891eec-f81e-8d33-7ede-37c642dcac3e	2021-05-22 18:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:22:42.853+03	2021-05-22 18:22:42.859+03	
0dff91df-07ae-6515-f4d1-e93f1ab1ba8e	2021-05-22 18:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:23:03.853+03	2021-05-22 18:23:03.86+03	
080019dd-69ff-d889-d7b1-87fd7b65750e	2021-05-22 18:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:23:24.853+03	2021-05-22 18:23:24.859+03	
bce88203-529b-36ff-894c-36451aea3508	2021-05-22 18:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:23:45.852+03	2021-05-22 18:23:45.859+03	
406b152e-dd84-5980-516d-234f50e0f244	2021-05-22 18:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:24:05.852+03	2021-05-22 18:24:05.858+03	
09f50415-104e-f3dc-cf41-f7e21ba4f188	2021-05-22 18:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:24:25.853+03	2021-05-22 18:24:25.86+03	
6169cb86-cc12-12a2-fc30-42892789e1a4	2021-05-22 18:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:24:45.853+03	2021-05-22 18:24:45.876+03	
f82f5a2c-db94-f753-c921-5661ff80efe9	2021-05-22 18:25:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:25:07.852+03	2021-05-22 18:25:07.859+03	
1b1877ce-9689-8327-2077-49cb3106c7a6	2021-05-22 18:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:25:27.852+03	2021-05-22 18:25:27.859+03	
47455116-780e-5b6b-5a4d-e0a42d2cb0dd	2021-05-22 18:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:25:47.853+03	2021-05-22 18:25:47.86+03	
bb0a5296-11d4-2d10-c0f2-13af5b334a7f	2021-05-22 18:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:26:07.853+03	2021-05-22 18:26:07.859+03	
01a750a3-a6cc-3c4e-0f58-43777d177354	2021-05-22 18:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:26:27.853+03	2021-05-22 18:26:27.859+03	
1faa8569-fccc-3828-7655-299e8c29336e	2021-05-22 18:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:26:47.853+03	2021-05-22 18:26:47.861+03	
e88fd51f-cda0-1157-f8b2-096d720dde14	2021-05-22 18:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:27:07.853+03	2021-05-22 18:27:07.859+03	
44a784de-bd26-3699-4857-8a81fba93363	2021-05-22 18:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:27:29.853+03	2021-05-22 18:27:29.859+03	
2cce0e1e-d773-540e-12bc-f947acbe9c91	2021-05-22 18:27:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:27:50.853+03	2021-05-22 18:27:50.859+03	
1fe83daf-63c7-6a2d-9e58-90f560293c49	2021-05-22 18:28:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:28:11.854+03	2021-05-22 18:28:11.86+03	
bdb329f4-fef6-fe91-6d67-74991cf62680	2021-05-22 18:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:28:32.853+03	2021-05-22 18:28:32.859+03	
8afbed41-e3c3-922f-e185-21a5c9493b30	2021-05-22 18:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:28:52.853+03	2021-05-22 18:28:52.861+03	
22069f15-c448-1001-e10b-18370e45f9c2	2021-05-22 18:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:29:13.853+03	2021-05-22 18:29:13.861+03	
60b79b70-a4ad-6a4d-7e88-1aeeacf6578a	2021-05-22 18:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:29:34.852+03	2021-05-22 18:29:34.86+03	
5c9f30d8-8ca2-7713-8520-ed94c5568229	2021-05-22 18:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:29:54.852+03	2021-05-22 18:29:54.859+03	
fd255112-a66d-af41-5b09-cae8c1826fc0	2021-05-22 18:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:30:04.852+03	2021-05-22 18:30:04.858+03	
c2751fc2-d677-419a-7f36-2fb181f57d98	2021-05-22 18:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:30:24.853+03	2021-05-22 18:30:24.859+03	
1b91c2cf-6635-5882-6641-5c175c5b461a	2021-05-22 18:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:30:44.853+03	2021-05-22 18:30:44.859+03	
b16821e0-b158-ec1d-fa94-3f6b5af13d38	2021-05-22 18:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:31:04.853+03	2021-05-22 18:31:04.86+03	
27f100a4-fffe-2e5a-f6c0-e9b50b8f6da9	2021-05-22 18:31:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:31:24.853+03	2021-05-22 18:31:24.862+03	
b0c169f2-1610-4419-8ab8-2ff6fb322516	2021-05-22 18:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:31:44.853+03	2021-05-22 18:31:44.86+03	
756bcf46-8231-e287-faea-24060de47f6e	2021-05-22 18:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:32:04.853+03	2021-05-22 18:32:04.862+03	
b7c28f70-7f2d-ce5c-7a98-379fc40708e0	2021-05-22 18:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:32:24.853+03	2021-05-22 18:32:24.862+03	
bd82d833-3b1b-fed3-b67f-64ecea533f7f	2021-05-22 18:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:32:44.853+03	2021-05-22 18:32:44.859+03	
c6bc537f-f209-8552-e7bf-b5d9f38189a2	2021-05-22 18:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:33:04.853+03	2021-05-22 18:33:04.859+03	
4ce9d542-61ef-d39f-a2d5-0958b6b400d2	2021-05-22 18:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:33:24.853+03	2021-05-22 18:33:24.86+03	
8641e247-9b42-e502-1150-b4db3b1a1400	2021-05-22 18:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:33:45.853+03	2021-05-22 18:33:45.866+03	
eb64589d-7778-58d8-7a7c-99d63c4d6f88	2021-05-22 18:34:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:34:06.854+03	2021-05-22 18:34:06.861+03	
a4e50550-2b67-83ed-af6d-73ea5d59390e	2021-05-22 18:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:34:27.853+03	2021-05-22 18:34:27.86+03	
f3951aa5-b522-e89e-7af8-420358add8b1	2021-05-22 18:34:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:34:49.852+03	2021-05-22 18:34:49.859+03	
c91d72e6-94ef-eaa6-5e6e-f678ba0181a8	2021-05-22 18:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:35:09.853+03	2021-05-22 18:35:09.866+03	
b8f6247c-50e9-22a5-682c-cc7fd621831f	2021-05-22 18:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:35:30.852+03	2021-05-22 18:35:30.861+03	
47384bfd-622a-4aac-7ce7-21cf3d976101	2021-05-22 18:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:35:50.853+03	2021-05-22 18:35:50.861+03	
1b7b85f1-eea1-2285-f81d-d8e29bf3017b	2021-05-22 18:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:36:10.853+03	2021-05-22 18:36:10.859+03	
1fe9a0aa-d5ea-44c2-8b9e-1d40838046d9	2021-05-22 18:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:36:30.853+03	2021-05-22 18:36:30.861+03	
c08fce3b-0892-ecb5-0293-acae420db14c	2021-05-22 18:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:36:50.853+03	2021-05-22 18:36:50.862+03	
322f934b-a49b-ba12-8d89-3c4eba37b7cd	2021-05-22 18:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:37:10.853+03	2021-05-22 18:37:10.861+03	
08e4c4d4-0121-ffc5-4f02-f0c5e6825e0d	2021-05-22 18:37:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:37:31.852+03	2021-05-22 18:37:31.862+03	
6c5cbb23-0246-7f25-f7f7-451f65d169e6	2021-05-22 18:37:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:37:51.854+03	2021-05-22 18:37:51.863+03	
54dc7e3a-95fa-6b43-8343-ecc7ab30fab8	2021-05-22 18:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:38:12.853+03	2021-05-22 18:38:12.86+03	
61f4fc61-90e5-7c5a-b77f-d127712e6537	2021-05-22 18:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:38:32.853+03	2021-05-22 18:38:32.863+03	
bee99675-8b6e-dce8-bba1-0bb52ccac3da	2021-05-22 18:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:38:52.853+03	2021-05-22 18:38:52.859+03	
08fd3360-1cd6-9103-5118-4ba101470140	2021-05-22 18:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:39:12.853+03	2021-05-22 18:39:12.862+03	
961e6d17-5021-a368-fdbe-d89cf4fc9a85	2021-05-22 18:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:39:32.853+03	2021-05-22 18:39:32.86+03	
35fd5228-8a96-577c-2c24-59e833f2f569	2021-05-22 18:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:39:52.853+03	2021-05-22 18:39:52.86+03	
f57b5695-1002-77c5-3931-80f12a78ce79	2021-05-22 18:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:40:03.853+03	2021-05-22 18:40:03.867+03	
b2285bdd-01ff-5a56-0c95-b5d15b27926a	2021-05-22 18:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:20:09.853+03	2021-05-22 18:20:09.86+03	
5e4aed62-2b78-1b60-1cdb-4ec2e3e99091	2021-05-22 18:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:20:29.853+03	2021-05-22 18:20:29.86+03	
d44d8bfe-9aa1-a0b7-8cbc-3ee7531eb680	2021-05-22 18:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:20:50.853+03	2021-05-22 18:20:50.859+03	
e1dedb09-068a-b159-78a5-9dd102b2bcbc	2021-05-22 18:21:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:21:11.852+03	2021-05-22 18:21:11.858+03	
573fd2e3-b671-c3c5-1166-56a8413bf271	2021-05-22 18:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:21:31.853+03	2021-05-22 18:21:31.859+03	
d30acd21-3a44-b960-f937-26f2e41a9a5c	2021-05-22 18:21:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:21:51.853+03	2021-05-22 18:21:51.86+03	
af130047-4863-bbce-7c95-884698fd2d05	2021-05-22 18:22:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:22:11.853+03	2021-05-22 18:22:11.859+03	
da18d1c4-f8e2-cfab-5407-41be7fcd51bf	2021-05-22 18:22:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:22:31.853+03	2021-05-22 18:22:31.861+03	
47acdeb1-1498-2d52-1771-27fcba5fe555	2021-05-22 18:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:22:52.853+03	2021-05-22 18:22:52.86+03	
3c33f8d6-fbc9-aff5-e426-1a37a7706b45	2021-05-22 18:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:23:13.853+03	2021-05-22 18:23:13.86+03	
34dec046-6cca-d28a-1328-962200e666ad	2021-05-22 18:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:23:35.852+03	2021-05-22 18:23:35.877+03	
d4cabfe6-10ec-39ae-b992-af4244dbc79e	2021-05-22 18:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:23:55.852+03	2021-05-22 18:23:55.859+03	
de9e5767-5b96-14ca-66b3-d7b90958f1f5	2021-05-22 18:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:24:15.852+03	2021-05-22 18:24:15.859+03	
94ddaee9-a34f-0640-d4f9-284e121375d4	2021-05-22 18:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:24:35.853+03	2021-05-22 18:24:35.859+03	
77f2243e-8cd2-0260-52d6-f48aaa133dba	2021-05-22 18:24:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:24:56.853+03	2021-05-22 18:24:56.86+03	
16d85ecd-0c6c-9909-78fe-c1ba67e50773	2021-05-22 18:25:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:25:17.852+03	2021-05-22 18:25:17.858+03	
8b885c51-2e57-039f-52c7-75b4ff42b861	2021-05-22 18:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:25:37.852+03	2021-05-22 18:25:37.858+03	
89618b1f-3a1f-e1b1-e876-e64070eae4d0	2021-05-22 18:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:25:57.853+03	2021-05-22 18:25:57.86+03	
4d22bd6c-9d3b-6089-618a-641d8a4ece7d	2021-05-22 18:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:26:17.853+03	2021-05-22 18:26:17.864+03	
8d814939-567c-e7cc-c51d-734a0dcd9e14	2021-05-22 18:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:26:37.853+03	2021-05-22 18:26:37.859+03	
5d3d9113-fc78-c7be-ce3b-98c796ecd249	2021-05-22 18:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:26:57.853+03	2021-05-22 18:26:57.86+03	
12f3198e-3d39-2df7-c4dc-a3b96eaafd4f	2021-05-22 18:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:27:18.853+03	2021-05-22 18:27:18.863+03	
64eb7917-ddd4-4e7a-0e99-188e2c3a03ee	2021-05-22 18:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:27:40.852+03	2021-05-22 18:27:40.859+03	
527b939b-30e1-948e-9835-c541b264c634	2021-05-22 18:28:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:28:01.852+03	2021-05-22 18:28:01.86+03	
57d71934-f6bf-12a6-15e8-ec8512d0975d	2021-05-22 18:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:28:22.852+03	2021-05-22 18:28:22.858+03	
ae265f84-e180-335e-b787-bcd5e46d15f4	2021-05-22 18:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:28:42.853+03	2021-05-22 18:28:42.86+03	
1e4db4fd-c2fb-833d-3d77-dbef98b50c8c	2021-05-22 18:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:29:03.852+03	2021-05-22 18:29:03.859+03	
0bd70556-40e0-0243-8c73-415df44f838a	2021-05-22 18:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:29:23.853+03	2021-05-22 18:29:23.86+03	
d6076a4e-7f1c-7d0b-4fb0-1dc3bda4b710	2021-05-22 18:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:29:44.852+03	2021-05-22 18:29:44.859+03	
2cddd9ee-7351-58ff-e6f2-bb0024f4ad2e	2021-05-22 18:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 18:30:00.852+03	2021-05-22 18:30:00.858+03	ERROR
b4b007b4-0cd2-c0be-a9fc-71cffe6a0577	2021-05-22 18:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:30:14.853+03	2021-05-22 18:30:14.859+03	
26823f0c-29fa-a146-b6ce-0e8532376eac	2021-05-22 18:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:30:34.853+03	2021-05-22 18:30:34.859+03	
561d8c75-e396-1efc-678b-02b898800057	2021-05-22 18:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:30:54.853+03	2021-05-22 18:30:54.859+03	
e9b38319-64fa-4ba2-5043-fa78d7a9ec40	2021-05-22 18:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:31:14.853+03	2021-05-22 18:31:14.86+03	
d2d34a7d-551c-c4d9-baf2-b87c1aee21e2	2021-05-22 18:31:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:31:34.853+03	2021-05-22 18:31:34.861+03	
996f2cec-691f-28bf-7221-9408cec612b8	2021-05-22 18:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:31:54.853+03	2021-05-22 18:31:54.865+03	
defe568d-add8-023c-f930-d9cc1ee571ec	2021-05-22 18:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:32:14.853+03	2021-05-22 18:32:14.86+03	
c5abb039-8e8d-9440-4359-3dcfe09bf366	2021-05-22 18:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:32:34.853+03	2021-05-22 18:32:34.859+03	
ab021f14-4d9b-94a6-3ddf-192e75b950ed	2021-05-22 18:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:32:54.853+03	2021-05-22 18:32:54.861+03	
e633f08a-c898-56f6-8de9-a1f1427dc56c	2021-05-22 18:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:33:14.853+03	2021-05-22 18:33:14.86+03	
73074c15-fcb0-e702-8a15-bf4872fe46d0	2021-05-22 18:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:33:34.853+03	2021-05-22 18:33:34.861+03	
71746026-d2c2-1881-c18f-b97fb1d8c4c8	2021-05-22 18:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:33:56.853+03	2021-05-22 18:33:56.86+03	
5d142e72-208c-aea7-c87b-891d79b0332b	2021-05-22 18:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:34:17.853+03	2021-05-22 18:34:17.86+03	
294b8a63-9dcf-c4a7-745f-bb87a337a374	2021-05-22 18:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:34:38.853+03	2021-05-22 18:34:38.86+03	
e9ac10f6-3495-e989-7176-4e08d6e82e83	2021-05-22 18:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:34:59.853+03	2021-05-22 18:34:59.86+03	
f72c9a5d-6b33-83ed-a789-b623d580588f	2021-05-22 18:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:35:19.853+03	2021-05-22 18:35:19.86+03	
7efbd60c-8511-1132-74e3-cad93b7c6508	2021-05-22 18:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:35:40.853+03	2021-05-22 18:35:40.86+03	
b0f4f7a1-5722-327a-f199-30c1be228b66	2021-05-22 18:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:36:00.853+03	2021-05-22 18:36:00.86+03	
898b4bc4-fe2b-fff8-806c-296c74f86f17	2021-05-22 18:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:36:20.853+03	2021-05-22 18:36:20.862+03	
14c13ed8-4274-d314-5e21-fbfb48e9aad1	2021-05-22 18:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:36:40.853+03	2021-05-22 18:36:40.86+03	
15db0b58-fe26-eada-5f0f-47a56e7c8c31	2021-05-22 18:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:37:00.853+03	2021-05-22 18:37:00.866+03	
1d95cb76-76d4-fca0-dbcd-eac3dc28f551	2021-05-22 18:37:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:37:20.853+03	2021-05-22 18:37:20.865+03	
6278f737-39f3-93d9-5e1c-02e2b4b6ee21	2021-05-22 18:37:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:37:41.852+03	2021-05-22 18:37:41.86+03	
a715b782-9efb-4080-8396-adf66977bd95	2021-05-22 18:38:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:38:01.854+03	2021-05-22 18:38:01.864+03	
b135043e-743f-1dd7-ce11-1d7bb4a2d892	2021-05-22 18:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:38:22.853+03	2021-05-22 18:38:22.861+03	
80f201ba-9b2e-05cb-8a21-b1b2df57f350	2021-05-22 18:38:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:38:42.853+03	2021-05-22 18:38:42.861+03	
8a7e77c8-fef8-3b8f-fdd1-998b7944779e	2021-05-22 18:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:39:02.853+03	2021-05-22 18:39:02.859+03	
ba8c224d-b8ea-ffa3-4e0b-5aad2b090ea8	2021-05-22 18:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:39:22.853+03	2021-05-22 18:39:22.859+03	
964d41b9-a3dc-086c-ca4d-c6dfba0ede44	2021-05-22 18:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:39:42.853+03	2021-05-22 18:39:42.861+03	
3dd3e5b4-c1ac-7f2f-a5d9-d8b1f55e70af	2021-05-22 18:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 18:40:00.853+03	2021-05-22 18:40:00.859+03	ERROR
3c551132-5d67-82fc-db17-0b4cd01a3f16	2021-05-22 18:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:40:13.853+03	2021-05-22 18:40:13.86+03	
e8da96d9-a0ac-5c2f-73a2-e233f8361bb8	2021-05-22 18:40:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:40:34.853+03	2021-05-22 18:40:34.859+03	
14ba3fba-6eaa-7ad5-4038-66c0115b2b95	2021-05-22 18:40:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:40:56.853+03	2021-05-22 18:40:56.865+03	
714f23fa-9282-e378-9157-af7215b813b2	2021-05-22 18:40:23.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:40:23.855+03	2021-05-22 18:40:23.874+03	
cc9b9e36-dbb2-964b-f97b-970463b7f2a7	2021-05-22 18:40:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:40:45.853+03	2021-05-22 18:40:45.867+03	
043f6eaf-0af5-911a-7a56-a28fe06d139e	2021-05-22 18:41:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:41:06.854+03	2021-05-22 18:41:06.861+03	
8dffad9b-699c-8e29-ab82-d71f287eb1f6	2021-05-22 18:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:41:27.853+03	2021-05-22 18:41:27.861+03	
550dc351-95f7-1d69-ef59-103fcbf91d44	2021-05-22 18:41:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:41:47.853+03	2021-05-22 18:41:47.86+03	
529113a9-28af-e887-adf4-f4ca486b2c8a	2021-05-22 18:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:42:08.852+03	2021-05-22 18:42:08.86+03	
ed87371b-689a-6a62-47df-da6aa64c0482	2021-05-22 18:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:42:28.853+03	2021-05-22 18:42:28.862+03	
970f66d3-74af-3cd9-2c4d-20ad2052c0d2	2021-05-22 18:42:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:42:49.853+03	2021-05-22 18:42:49.859+03	
49b2fd05-3eac-30d1-f239-6efccf56a882	2021-05-22 18:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:43:10.853+03	2021-05-22 18:43:10.859+03	
68450975-21cb-5106-39eb-093e185aff35	2021-05-22 18:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:43:30.853+03	2021-05-22 18:43:30.86+03	
b5faf752-63cc-a595-c807-b79be8270ef4	2021-05-22 18:43:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:43:51.853+03	2021-05-22 18:43:51.859+03	
afd8afd7-8e7d-8f91-bc1d-8fbc759f3283	2021-05-22 18:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:44:12.853+03	2021-05-22 18:44:12.859+03	
a68a085f-2af7-5e23-0366-5007a50864e8	2021-05-22 18:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:44:33.852+03	2021-05-22 18:44:33.858+03	
9de46768-19b6-18af-0a5c-263af81c0bd7	2021-05-22 18:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:44:53.853+03	2021-05-22 18:44:53.859+03	
4f784d6f-c63a-a808-bbd6-e33987050fef	2021-05-22 18:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:45:13.853+03	2021-05-22 18:45:13.86+03	
e1b17660-8c4c-3b6d-cd8f-62e241e2e100	2021-05-22 18:45:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:45:34.852+03	2021-05-22 18:45:34.859+03	
d6e3e8b5-1be4-3684-891b-1ee7a893c403	2021-05-22 18:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:45:55.853+03	2021-05-22 18:45:55.859+03	
d3fa4abe-60d8-5f53-dfc2-e7c62c361e88	2021-05-22 18:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:46:15.853+03	2021-05-22 18:46:15.861+03	
ccc02cb1-e382-eaaf-05d5-093043bd680d	2021-05-22 18:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:46:35.853+03	2021-05-22 18:46:35.859+03	
548c9c67-83ff-8aef-690a-5319851c5685	2021-05-22 18:46:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:46:56.852+03	2021-05-22 18:46:56.86+03	
2d04d443-9c14-a61d-2f71-bde79c7cfa9d	2021-05-22 18:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:47:17.853+03	2021-05-22 18:47:17.859+03	
1aa9ebbb-edd7-970e-480d-4f60b5c51401	2021-05-22 18:47:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:47:37.853+03	2021-05-22 18:47:37.861+03	
af666a8d-09d9-a1c1-a25b-0efa205e75c9	2021-05-22 18:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:47:57.853+03	2021-05-22 18:47:57.86+03	
6e866b81-44de-4f5d-666f-4ce14bb7d1ff	2021-05-22 18:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:48:18.852+03	2021-05-22 18:48:18.859+03	
2d9cbc39-a7d0-ccaa-42fd-f4e14c3ab127	2021-05-22 18:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:48:38.853+03	2021-05-22 18:48:38.86+03	
be95d87d-35be-20a0-5601-1e19d9458105	2021-05-22 18:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:48:58.853+03	2021-05-22 18:48:58.86+03	
500b7ec7-4624-9f85-bd75-faab92734558	2021-05-22 18:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:49:18.853+03	2021-05-22 18:49:18.861+03	
7ab96a45-c9ec-7b79-8c3b-6c5ad35de095	2021-05-22 18:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:49:38.853+03	2021-05-22 18:49:38.863+03	
d709479d-d37e-771b-17a0-b1e70303dfa3	2021-05-22 18:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:49:59.852+03	2021-05-22 18:49:59.858+03	
cf06fe82-01f5-9bc8-8e6b-298a8bea3363	2021-05-22 18:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:50:09.852+03	2021-05-22 18:50:09.873+03	
79ef4f2e-b60f-c7a3-5e29-10440c74bc32	2021-05-22 18:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:50:29.853+03	2021-05-22 18:50:29.86+03	
a416ef9e-deaa-0d9b-674f-78947dcf5ee0	2021-05-22 18:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:50:49.853+03	2021-05-22 18:50:49.86+03	
f1ad8e78-d3d2-eef4-a6fb-3cc96aa4c6a4	2021-05-22 18:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:51:09.853+03	2021-05-22 18:51:09.859+03	
79c165f2-bebb-11c5-2e09-c92413d967be	2021-05-22 18:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:51:30.852+03	2021-05-22 18:51:30.859+03	
ae4b39b0-10f0-c6a3-6acc-ba09dcdbb3fc	2021-05-22 18:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:51:50.853+03	2021-05-22 18:51:50.86+03	
a29f1d2b-9a80-8d7b-9fd5-2df6aafd144b	2021-05-22 18:52:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:52:11.854+03	2021-05-22 18:52:11.86+03	
f35ea215-9210-d24a-9c29-55032865ac29	2021-05-22 18:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:52:32.852+03	2021-05-22 18:52:32.859+03	
833225fb-2966-1f39-0379-e0601d00f835	2021-05-22 18:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:52:52.853+03	2021-05-22 18:52:52.859+03	
1d9f423c-c7bc-907a-c604-78de366e8ccb	2021-05-22 18:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:53:13.853+03	2021-05-22 18:53:13.859+03	
a7054087-c7eb-78ee-9493-914c3013e890	2021-05-22 18:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:53:33.853+03	2021-05-22 18:53:33.859+03	
ae4fba7e-0bae-f4a6-5209-5457ec9e3c7d	2021-05-22 18:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:53:54.853+03	2021-05-22 18:53:54.86+03	
b6c44d82-10a2-e02b-6d38-76255802a868	2021-05-22 18:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:54:15.852+03	2021-05-22 18:54:15.86+03	
22d39ea3-1f99-1ac1-13f8-536c58108780	2021-05-22 18:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:54:35.852+03	2021-05-22 18:54:35.859+03	
c6ff00cd-cc46-d73f-b190-84a3750750a9	2021-05-22 18:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:54:55.853+03	2021-05-22 18:54:55.86+03	
af914206-273a-df19-4e57-50df7ce583f0	2021-05-22 18:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:55:15.853+03	2021-05-22 18:55:15.86+03	
97aa7c55-c19a-6e15-84b4-4cee8da985b9	2021-05-22 18:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:55:36.853+03	2021-05-22 18:55:36.864+03	
193568da-9565-567d-2253-1e9b2dc49946	2021-05-22 18:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:55:57.853+03	2021-05-22 18:55:57.859+03	
8dc6af64-a11d-b7ad-5f2b-6a6f719f86a8	2021-05-22 18:56:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:56:17.853+03	2021-05-22 18:56:17.859+03	
0f1a7507-1278-4265-e813-daea4b661b0f	2021-05-22 18:56:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:56:37.853+03	2021-05-22 18:56:37.86+03	
b13fff6c-e46b-4ad2-ae63-0115fd417d94	2021-05-22 18:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:56:57.853+03	2021-05-22 18:56:57.86+03	
11189f3b-c255-0420-89ac-98c9ed8b6463	2021-05-22 18:57:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:57:19.854+03	2021-05-22 18:57:19.861+03	
2ca42a63-c07b-4a98-9862-21b0da3b651a	2021-05-22 18:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:57:40.853+03	2021-05-22 18:57:40.867+03	
dd6b3972-17cb-c998-c4ae-6deb6e89a28f	2021-05-22 18:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:58:00.853+03	2021-05-22 18:58:00.868+03	
4d416628-d394-c247-fd7a-02ca6b213270	2021-05-22 18:58:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:58:21.853+03	2021-05-22 18:58:21.859+03	
57eb6192-bee1-7724-3cf1-0fcacb3e30a9	2021-05-22 18:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:58:42.853+03	2021-05-22 18:58:42.86+03	
c6411159-380c-70da-2cbd-aa58ff050859	2021-05-22 18:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:59:02.853+03	2021-05-22 18:59:02.861+03	
954cf0b7-1ac1-fa15-fa87-89065f380694	2021-05-22 18:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:59:22.853+03	2021-05-22 18:59:22.861+03	
7fe3cbf5-06ad-2810-ec36-fe506bfdd0e1	2021-05-22 18:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:59:42.853+03	2021-05-22 18:59:42.865+03	
70de33e7-87b4-7f10-1316-5cb37a834fe4	2021-05-22 19:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 19:00:00.853+03	2021-05-22 19:00:00.858+03	ERROR
4ef4e51f-8680-ab56-fe4d-4bcd1a0d1714	2021-05-22 19:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:00:12.853+03	2021-05-22 19:00:12.86+03	
e3ca89e3-2ab2-34b5-48e4-7efce9fa946c	2021-05-22 19:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:00:32.853+03	2021-05-22 19:00:32.865+03	
67fadf0a-35b9-4c69-2d7c-b4f3909c45f6	2021-05-22 19:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:00:53.852+03	2021-05-22 19:00:53.86+03	
6b4038d5-7066-d18c-150e-95801047cc84	2021-05-22 19:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:01:13.852+03	2021-05-22 19:01:13.859+03	
dfb4d20d-80da-4366-73a4-03e1ccfd8696	2021-05-22 18:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:41:17.853+03	2021-05-22 18:41:17.861+03	
9973ffcf-6620-e85e-7e31-041e454c7688	2021-05-22 18:41:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:41:37.853+03	2021-05-22 18:41:37.859+03	
f45066c4-f27a-5142-e8dc-4b11914b6ad9	2021-05-22 18:41:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:41:57.853+03	2021-05-22 18:41:57.86+03	
c2062386-7c32-3f3d-11fb-b7b6dd16d356	2021-05-22 18:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:42:18.853+03	2021-05-22 18:42:18.871+03	
d9b34096-4b69-24a8-613f-a6c80c50ecda	2021-05-22 18:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:42:38.853+03	2021-05-22 18:42:38.859+03	
60b80943-c343-5a80-5f6a-21ff9aa0b4d6	2021-05-22 18:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:42:59.853+03	2021-05-22 18:42:59.86+03	
1ceee711-9e7c-1a1e-cf19-2adff6b1e362	2021-05-22 18:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:43:20.853+03	2021-05-22 18:43:20.859+03	
635f505a-dd53-e27a-0003-1b5e4e5347a2	2021-05-22 18:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:43:40.853+03	2021-05-22 18:43:41.102+03	
32e4ce9b-9fda-8275-de31-a058eed972ad	2021-05-22 18:44:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:44:01.853+03	2021-05-22 18:44:01.86+03	
9c4adaca-0605-0add-0306-fabf9e516fdf	2021-05-22 18:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:44:22.853+03	2021-05-22 18:44:22.859+03	
1fb9386e-3a87-09c1-7727-82511e7465fe	2021-05-22 18:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:44:43.853+03	2021-05-22 18:44:43.86+03	
9f94c360-d08f-2a65-f4d9-09339861d4a7	2021-05-22 18:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:45:03.853+03	2021-05-22 18:45:03.86+03	
0b4490e7-9fcb-18bf-f58c-60dc1ed647af	2021-05-22 18:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:45:23.853+03	2021-05-22 18:45:23.86+03	
aa84af61-bbb1-0c6b-bd15-e4b4080ad173	2021-05-22 18:45:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:45:44.853+03	2021-05-22 18:45:44.866+03	
6b83656e-163f-f605-399d-96027cb7fc61	2021-05-22 18:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:46:05.853+03	2021-05-22 18:46:05.865+03	
f14bec03-ae1c-f5b7-9056-de84046cbb94	2021-05-22 18:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:46:25.853+03	2021-05-22 18:46:25.86+03	
e690bdf2-0417-c1bd-dfcb-571563b04576	2021-05-22 18:46:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:46:46.852+03	2021-05-22 18:46:46.86+03	
5ebd8f03-7f61-0622-56bf-48841664d7c2	2021-05-22 18:47:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:47:06.853+03	2021-05-22 18:47:06.858+03	
5a482264-764e-9acd-2e08-cecf022afaca	2021-05-22 18:47:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:47:27.853+03	2021-05-22 18:47:27.86+03	
169b5799-3720-d584-3a8a-deee7e618d1c	2021-05-22 18:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:47:47.853+03	2021-05-22 18:47:47.862+03	
9b7f86c7-6bca-f09a-4e00-9963e3b2b685	2021-05-22 18:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:48:07.853+03	2021-05-22 18:48:07.862+03	
18c05ff1-7dab-f55f-96fe-ab0119195972	2021-05-22 18:48:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:48:28.852+03	2021-05-22 18:48:28.859+03	
0cbb5e7c-94e0-3e99-70e9-85cd4f41b487	2021-05-22 18:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:48:48.853+03	2021-05-22 18:48:48.861+03	
dc6c038c-e1ac-9eb0-7c6b-942771bd1172	2021-05-22 18:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:49:08.853+03	2021-05-22 18:49:08.859+03	
4a130953-ba85-155a-be55-a31ce622c4cb	2021-05-22 18:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:49:28.853+03	2021-05-22 18:49:28.86+03	
2b5d2205-66c4-505f-272e-f5d6cdf85f1d	2021-05-22 18:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:49:48.853+03	2021-05-22 18:49:48.859+03	
4c9ba585-1d2c-0fd1-69ab-36b64dbf6950	2021-05-22 18:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 18:50:00.852+03	2021-05-22 18:50:00.858+03	ERROR
2b569154-5e52-149b-078f-61d09236b159	2021-05-22 18:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:50:19.853+03	2021-05-22 18:50:19.86+03	
fec5b09c-d51f-95c4-2fb2-a6a08fb42c25	2021-05-22 18:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:50:39.853+03	2021-05-22 18:50:39.86+03	
bbde21a6-a367-a470-5261-e84891bc8a86	2021-05-22 18:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:50:59.853+03	2021-05-22 18:50:59.861+03	
e3ebe716-3b08-e939-7df4-799a18906d0c	2021-05-22 18:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:51:20.852+03	2021-05-22 18:51:20.859+03	
cd1ad917-1971-2905-f0ce-15efafc521c1	2021-05-22 18:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:51:40.853+03	2021-05-22 18:51:40.859+03	
2bac720a-8e10-8da9-35e7-9da0f05cb39f	2021-05-22 18:52:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:52:01.853+03	2021-05-22 18:52:01.86+03	
932dc719-1a88-9853-cf40-af674b24719e	2021-05-22 18:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:52:22.852+03	2021-05-22 18:52:22.86+03	
461cd2c5-6071-7984-2efc-fdcb7949846d	2021-05-22 18:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:52:42.852+03	2021-05-22 18:52:42.86+03	
4fca0c04-736f-0ecc-edac-55402640d742	2021-05-22 18:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:53:03.853+03	2021-05-22 18:53:03.86+03	
f329adf2-f79a-45e2-b1e5-8a80aa5913f5	2021-05-22 18:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:53:23.853+03	2021-05-22 18:53:23.86+03	
a82eaee2-eab4-c0d7-9bd4-749f2ca7ff1f	2021-05-22 18:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:53:44.852+03	2021-05-22 18:53:44.86+03	
c9187093-8d8c-acb7-44db-92ff263e045d	2021-05-22 18:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:54:04.853+03	2021-05-22 18:54:04.858+03	
a56ad546-3a01-51b7-02a3-722feca11652	2021-05-22 18:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:54:25.852+03	2021-05-22 18:54:25.858+03	
46f06448-ddec-a29c-f86b-160d8a76f4d4	2021-05-22 18:54:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:54:45.853+03	2021-05-22 18:54:45.86+03	
45906e82-0357-e3ad-450a-cd72087c3e00	2021-05-22 18:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:55:05.853+03	2021-05-22 18:55:05.874+03	
f89f41da-8279-0bdc-c51d-18c6925d7d6a	2021-05-22 18:55:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:55:26.852+03	2021-05-22 18:55:26.859+03	
00fec461-f779-26ce-c99c-2b68fa48445c	2021-05-22 18:55:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:55:47.853+03	2021-05-22 18:55:47.86+03	
a9978a28-f185-443d-a603-6020d3369fdf	2021-05-22 18:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:56:07.853+03	2021-05-22 18:56:07.862+03	
249be750-e0f9-813c-787b-69c730590c9e	2021-05-22 18:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:56:27.853+03	2021-05-22 18:56:27.859+03	
89cf1802-4d03-541c-cf11-5a7de4c2816d	2021-05-22 18:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:56:47.853+03	2021-05-22 18:56:47.86+03	
57c417a2-cab1-3f55-aba7-08952a233e04	2021-05-22 18:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:57:08.853+03	2021-05-22 18:57:08.859+03	
05bfbcb2-cd4f-5941-a6a6-9ccbdfe6f9da	2021-05-22 18:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:57:30.853+03	2021-05-22 18:57:30.859+03	
6c79efe6-abec-1bd8-d81f-789456c10332	2021-05-22 18:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:57:50.853+03	2021-05-22 18:57:50.859+03	
ea19052f-9842-cb86-f5e9-f6566615e404	2021-05-22 18:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:58:10.853+03	2021-05-22 18:58:10.859+03	
85f0fe42-297d-d3a8-0f38-a1db07d37f76	2021-05-22 18:58:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:58:31.854+03	2021-05-22 18:58:31.86+03	
67e528df-b3ba-57ce-7103-fc570640c812	2021-05-22 18:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:58:52.853+03	2021-05-22 18:58:52.873+03	
2a22ea5b-87cb-2652-77c5-37c3482570a7	2021-05-22 18:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:59:12.853+03	2021-05-22 18:59:12.861+03	
897c6007-bfb6-e657-cdae-f062c70cb077	2021-05-22 18:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:59:32.853+03	2021-05-22 18:59:32.859+03	
71cefa7a-9073-8914-8de8-63eaf05bda1c	2021-05-22 18:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 18:59:52.853+03	2021-05-22 18:59:52.859+03	
82f60e39-769d-7065-605e-e60097ffbe27	2021-05-22 19:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:00:02.853+03	2021-05-22 19:00:02.869+03	
b265ef4c-e3dc-5d13-1ac7-73105490e1f5	2021-05-22 19:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:00:22.853+03	2021-05-22 19:00:22.867+03	
30e32341-6793-d0e3-1198-fec909a35e16	2021-05-22 19:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:00:42.853+03	2021-05-22 19:00:42.861+03	
2cdcaaec-3c94-d890-d6a5-1b93b2ed1f27	2021-05-22 19:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:01:03.852+03	2021-05-22 19:01:03.859+03	
0ab9cd14-b1fd-637d-e8c6-2d0e398ecb1d	2021-05-22 19:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:01:23.852+03	2021-05-22 19:01:23.859+03	
af1cd31c-ebec-299c-6a02-6c1802783527	2021-05-22 19:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:01:43.852+03	2021-05-22 19:01:43.867+03	
3ecf7299-b1bd-ebf0-ec39-da25b0175453	2021-05-22 19:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:02:03.853+03	2021-05-22 19:02:03.86+03	
576a8825-63dd-1805-654a-3e524329e602	2021-05-24 23:00:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:00:21.877+03	2021-05-24 23:00:21.883+03	
36c4add7-cc03-a68e-a9d8-bee35f0215e4	2021-05-22 19:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:01:33.852+03	2021-05-22 19:01:33.86+03	
74ae7bf0-bd86-adf9-b072-b07e506623b0	2021-05-23 02:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:50:38.853+03	2021-05-23 02:50:38.861+03	
9ae5a21d-988e-e65c-1f98-ebe7f1fd675a	2021-05-22 19:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:01:53.853+03	2021-05-22 19:01:53.861+03	
1b136c93-1fd8-8362-5e2c-e77a60b139d4	2021-05-22 19:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:02:13.853+03	2021-05-22 19:02:13.86+03	
f961fbdf-1e63-48c0-9a39-40a59c2ddcbb	2021-05-23 02:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:50:58.853+03	2021-05-23 02:50:58.86+03	
9042e13f-d7c9-9061-4715-3034f53e79ad	2021-05-22 19:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:02:34.852+03	2021-05-22 19:02:34.859+03	
9a708f82-4c73-1ae9-ff36-c9444191be12	2021-05-22 19:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:02:54.853+03	2021-05-22 19:02:54.859+03	
c8eddf31-c970-fdbe-22c2-d6971827627f	2021-05-23 02:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:51:18.853+03	2021-05-23 02:51:18.859+03	
851ad6ec-cdeb-0ba6-27a1-458a5335f135	2021-05-22 19:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:03:15.852+03	2021-05-22 19:03:15.858+03	
58aad1b0-9b9e-0b0a-a13c-47f1209752e4	2021-05-22 19:03:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:03:35.853+03	2021-05-22 19:03:35.859+03	
7bc3e974-a81c-7f9d-f967-8d5f74f561cb	2021-05-23 02:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:51:38.853+03	2021-05-23 02:51:38.86+03	
7e9c4181-76b9-cef7-6fa6-774ebae47902	2021-05-22 19:03:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:03:56.852+03	2021-05-22 19:03:56.861+03	
a6830d8d-1186-8e75-20eb-c7019f3b4d82	2021-05-22 19:04:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:04:16.853+03	2021-05-22 19:04:16.86+03	
ea75df70-14bc-e716-b330-d462d7ad90c5	2021-05-23 02:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:51:59.853+03	2021-05-23 02:51:59.86+03	
9c892665-8dd8-ba37-ab62-4ef51fa78c7c	2021-05-22 19:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:04:38.852+03	2021-05-22 19:04:38.86+03	
7da9837b-9a27-3e56-7df9-020df507a627	2021-05-22 19:04:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:04:58.852+03	2021-05-22 19:04:58.862+03	
e3394b60-6a7b-234a-5378-00b92e275909	2021-05-23 02:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:52:20.853+03	2021-05-23 02:52:20.861+03	
8a8042bb-a267-63b4-9e30-bd5266ce9590	2021-05-22 19:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:05:19.853+03	2021-05-22 19:05:19.86+03	
f8f272bf-6be5-a75d-51fd-3cfa6c2fe63c	2021-05-22 19:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:05:39.853+03	2021-05-22 19:05:39.859+03	
eca6e622-100f-bb14-21d8-8d276edaff0d	2021-05-23 02:52:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:52:41.854+03	2021-05-23 02:52:41.875+03	
78d2026c-4f69-9b57-ff10-617813ae5997	2021-05-22 19:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:05:59.853+03	2021-05-22 19:05:59.859+03	
cb96a1f7-fd4c-5845-65d5-5959da080ec3	2021-05-22 19:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:06:20.852+03	2021-05-22 19:06:20.859+03	
58e65bee-78bf-5539-7085-b3793e815e7e	2021-05-22 19:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:06:40.853+03	2021-05-22 19:06:40.859+03	
83fbbdc5-85e0-f4d0-effa-795fa96d9e96	2021-05-22 19:07:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:07:01.854+03	2021-05-22 19:07:01.861+03	
5822b5a4-5555-806a-f6de-05c8d221fcbf	2021-05-22 19:07:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:07:21.854+03	2021-05-22 19:07:21.86+03	
111fb557-3979-083c-fc98-8eb717b05936	2021-05-22 19:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:07:42.853+03	2021-05-22 19:07:42.859+03	
3f858c60-0b23-59b9-ac08-99bfd240aebb	2021-05-22 19:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:08:03.852+03	2021-05-22 19:08:03.858+03	
7b4313a9-922f-7ccd-a2f1-aee4d05c3e96	2021-05-22 19:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:08:23.853+03	2021-05-22 19:08:23.859+03	
e73f9df6-8418-c5a1-98db-be6993c43cff	2021-05-22 19:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:08:44.853+03	2021-05-22 19:08:44.86+03	
47089a28-72a0-a58c-5e63-9653d9f7f500	2021-05-22 19:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:09:05.852+03	2021-05-22 19:09:05.862+03	
d38dd5d6-c65d-e7b7-0308-54b841308be4	2021-05-22 19:09:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:09:26.852+03	2021-05-22 19:09:26.86+03	
0174740a-2333-c47f-526c-895dc5040a45	2021-05-22 19:09:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:09:46.852+03	2021-05-22 19:09:46.864+03	
c2e072c5-c6c0-df2d-b18f-b3f796a752aa	2021-05-22 19:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 19:10:00.853+03	2021-05-22 19:10:00.858+03	ERROR
ac056028-0f47-6599-ac5c-77cfd07fa630	2021-05-22 19:10:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:10:16.853+03	2021-05-22 19:10:16.86+03	
448c3012-bc60-2a37-f29a-637fa587f170	2021-05-22 19:10:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:10:37.853+03	2021-05-22 19:10:37.862+03	
a0e2f5eb-f78d-79c4-d039-24f8c0fd406c	2021-05-22 19:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:10:57.853+03	2021-05-22 19:10:57.867+03	
e6ab2e5f-cc6b-b557-f33d-1c71d5acf4e9	2021-05-22 19:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:11:17.853+03	2021-05-22 19:11:17.861+03	
271c00bc-5742-63ea-fec8-deed4b05e079	2021-05-22 19:11:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:11:38.852+03	2021-05-22 19:11:38.859+03	
e6e12d8d-eb3f-e849-a13f-17e3607b6656	2021-05-22 19:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:11:58.852+03	2021-05-22 19:11:58.868+03	
ba74261d-1cef-0bf0-2e61-4fef15707df7	2021-05-22 19:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:12:18.853+03	2021-05-22 19:12:18.869+03	
743ebcb5-cc00-99a7-de6b-7e95e82e8528	2021-05-22 19:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:12:39.852+03	2021-05-22 19:12:39.86+03	
08e542b9-4bc1-95e8-5c30-d5d8b738cc87	2021-05-22 19:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:12:59.853+03	2021-05-22 19:12:59.863+03	
1e4e3c90-ac5f-259b-bb35-cf9368ddcb6f	2021-05-22 19:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:13:20.852+03	2021-05-22 19:13:20.859+03	
f6f10a9a-d5a4-d5a1-7219-8c23983d5485	2021-05-22 19:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:13:41.853+03	2021-05-22 19:13:41.859+03	
f17e9163-1573-898c-1b03-580de71f0d9d	2021-05-22 19:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:14:03.853+03	2021-05-22 19:14:03.86+03	
e2396556-01e6-2d96-ed71-6376c4848eb4	2021-05-22 19:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:14:24.853+03	2021-05-22 19:14:24.859+03	
b849279d-7e31-d1d3-6406-68ed6b30612d	2021-05-22 19:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:14:44.853+03	2021-05-22 19:14:44.859+03	
f645d4d7-eb07-94e9-fdd8-cb2294584dd6	2021-05-22 19:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:15:05.853+03	2021-05-22 19:15:05.859+03	
055c20a3-4ff8-0503-ff19-21349acca699	2021-05-22 19:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:15:26.853+03	2021-05-22 19:15:26.859+03	
553a2352-5816-cdb9-6c2e-4c28a7ff834b	2021-05-22 19:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:15:47.853+03	2021-05-22 19:15:47.859+03	
2f29c5d1-4735-9619-6053-adf125f649f5	2021-05-22 19:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:16:07.853+03	2021-05-22 19:16:07.896+03	
6d04e8ae-1b72-e191-cbae-ed6f07c78218	2021-05-22 19:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:16:27.853+03	2021-05-22 19:16:27.859+03	
004fdaaf-da45-fa36-3fe8-072807c46f83	2021-05-22 19:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:16:48.852+03	2021-05-22 19:16:48.859+03	
7c132810-4433-7369-8fc2-a39032746fb7	2021-05-22 19:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:17:08.852+03	2021-05-22 19:17:08.868+03	
3908eb46-65d1-df56-1c27-694f5ebbae06	2021-05-22 19:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:17:28.853+03	2021-05-22 19:17:28.86+03	
58c935b0-cc0b-fb5a-0408-2d420169ebdb	2021-05-22 19:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:17:49.852+03	2021-05-22 19:17:49.86+03	
dc28a156-ca14-38a8-a42e-bf064101bc72	2021-05-22 19:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:18:09.853+03	2021-05-22 19:18:09.869+03	
479f3f92-d16f-9e3d-32f0-915edac6653b	2021-05-22 19:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:18:30.852+03	2021-05-22 19:18:30.859+03	
e3ddee7c-e7a3-29d1-144c-c01bf77a812e	2021-05-22 19:18:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:18:50.852+03	2021-05-22 19:18:50.86+03	
e88712fd-c93d-7f16-1ea6-033135ea2c98	2021-05-22 19:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:19:10.852+03	2021-05-22 19:19:10.866+03	
2f11a3fd-f18b-1e5e-7e81-4e7fba62d014	2021-05-22 19:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:19:30.853+03	2021-05-22 19:19:30.86+03	
03c5311a-ae5e-6472-ab80-5ead02a78fc3	2021-05-22 19:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:19:50.853+03	2021-05-22 19:19:50.859+03	
071ea015-fd1d-6d6d-22d8-a46d5eff0461	2021-05-22 19:20:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:20:01.854+03	2021-05-22 19:20:01.86+03	
00890146-7e60-52e3-8ef3-7dbfbdf6fc97	2021-05-22 19:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:02:24.852+03	2021-05-22 19:02:24.86+03	
f66a0ac4-dbd2-14f9-d999-50156e177e39	2021-05-22 19:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:02:44.852+03	2021-05-22 19:02:44.859+03	
57dd5ad8-ec66-4d58-898e-2d044394f914	2021-05-22 19:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:03:05.852+03	2021-05-22 19:03:05.863+03	
f0667ca1-77e9-b8d3-94b2-9c8123757f51	2021-05-22 19:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:03:25.853+03	2021-05-22 19:03:25.861+03	
57aba8c7-a985-cb21-d09e-7324e95a18dd	2021-05-22 19:03:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:03:46.852+03	2021-05-22 19:03:46.873+03	
6b6c4c42-2c9d-e801-09d2-3227e0dd2059	2021-05-22 19:04:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:04:06.852+03	2021-05-22 19:04:06.859+03	
94d29bf6-24ba-9799-4df3-cbaa4a0d4cbd	2021-05-22 19:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:04:27.853+03	2021-05-22 19:04:27.859+03	
91a2a242-20f1-e180-c6b7-15c9a91dea1f	2021-05-22 19:04:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:04:48.852+03	2021-05-22 19:04:48.859+03	
b56f7c35-faf5-98f5-baa0-8a550b5ab6d9	2021-05-22 19:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:05:08.853+03	2021-05-22 19:05:08.86+03	
72f28386-ac5e-a364-cb7f-499c2cc088ef	2021-05-22 19:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:05:29.853+03	2021-05-22 19:05:29.869+03	
c7a8e99e-4b98-a264-e22f-576160810012	2021-05-22 19:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:05:49.853+03	2021-05-22 19:05:49.867+03	
d40341dd-7be9-0d71-682a-8b2a3d6adea4	2021-05-22 19:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:06:10.852+03	2021-05-22 19:06:10.858+03	
875a7e5b-9c63-8e56-d9d4-174e499870d2	2021-05-22 19:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:06:30.852+03	2021-05-22 19:06:30.859+03	
15b833fb-22c4-c6f8-b11c-5293fd35f0e0	2021-05-22 19:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:06:50.853+03	2021-05-22 19:06:50.858+03	
77cc2b79-e5a1-cff9-bec4-45c216877f41	2021-05-22 19:07:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:07:11.854+03	2021-05-22 19:07:11.86+03	
2bdcd10d-0a52-5626-71ca-f20a4770ce53	2021-05-22 19:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:07:32.852+03	2021-05-22 19:07:32.863+03	
0888d0e4-7dac-0879-15e2-68b0d9e2af25	2021-05-22 19:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:07:53.852+03	2021-05-22 19:07:53.859+03	
94e3340b-1ace-2adc-f3c9-00de84066465	2021-05-22 19:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:08:13.852+03	2021-05-22 19:08:13.859+03	
c049abe1-deba-3780-a5f0-2a7ddf1eda49	2021-05-22 19:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:08:34.853+03	2021-05-22 19:08:34.86+03	
15c68e59-2b34-7d01-6848-e2931e30b765	2021-05-22 19:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:08:54.853+03	2021-05-22 19:08:54.859+03	
fc00d8e9-e891-3403-78fc-d995192a2773	2021-05-22 19:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:09:15.853+03	2021-05-22 19:09:15.859+03	
66be4ca7-19d9-51f3-b758-921e6c4bc3bd	2021-05-22 19:09:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:09:36.852+03	2021-05-22 19:09:36.86+03	
791a0473-d7c2-7b8d-eeb3-6e50f40c06f1	2021-05-22 19:09:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:09:56.852+03	2021-05-22 19:09:56.859+03	
ecdcfb01-d21e-00e7-717a-ba13429cfc0e	2021-05-22 19:10:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:10:06.852+03	2021-05-22 19:10:06.861+03	
7cc3fb9a-8fc2-7288-da3f-a697c7f1adf8	2021-05-22 19:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:10:27.853+03	2021-05-22 19:10:27.859+03	
0c32972f-15ea-e98e-c7a9-a98beaa15926	2021-05-22 19:10:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:10:47.853+03	2021-05-22 19:10:47.861+03	
07cceea9-0b7f-4bfa-5db2-c43bec3f19a7	2021-05-22 19:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:11:07.853+03	2021-05-22 19:11:07.872+03	
6096fc3c-1d2c-b705-c681-b99920f1b952	2021-05-22 19:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:11:28.852+03	2021-05-22 19:11:29.091+03	
0cc80b11-e3cf-4810-1b97-807e17525ee7	2021-05-22 19:11:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:11:48.852+03	2021-05-22 19:11:48.859+03	
362b3866-79a5-a1cc-7920-5b6dd6052dd9	2021-05-22 19:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:12:08.853+03	2021-05-22 19:12:08.886+03	
d34382cb-6745-a2b9-e5d6-cb9edb6b7933	2021-05-22 19:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:12:28.853+03	2021-05-22 19:12:28.86+03	
73c9e765-d061-7a34-6f9d-19c16a650c3d	2021-05-22 19:12:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:12:49.852+03	2021-05-22 19:12:49.859+03	
4f322811-0ea9-f24f-5aa4-f65d636f40ec	2021-05-22 19:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:13:09.853+03	2021-05-22 19:13:09.859+03	
1f9a0d7a-459f-18f9-2b93-b33665529e0f	2021-05-22 19:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:13:30.853+03	2021-05-22 19:13:30.859+03	
650359a8-af63-5d66-4dcb-200bc658d59c	2021-05-22 19:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:13:52.853+03	2021-05-22 19:13:52.86+03	
c39e9882-e640-6d8e-578a-0351b344afe8	2021-05-22 19:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:14:13.853+03	2021-05-22 19:14:13.872+03	
3be0638c-1ca7-aa16-ecdd-ee00cf54cf76	2021-05-22 19:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:14:34.853+03	2021-05-22 19:14:34.862+03	
1c2e1e62-1ae5-c441-c472-783d8a8d28c0	2021-05-22 19:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:14:54.853+03	2021-05-22 19:14:54.86+03	
65264c38-8172-9e6b-7057-1c3ea2120258	2021-05-22 19:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:15:16.852+03	2021-05-22 19:15:16.86+03	
1af64774-fdbd-df56-4193-8f569c6c0f22	2021-05-22 19:15:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:15:36.854+03	2021-05-22 19:15:36.86+03	
1b9eb3b1-8a85-5731-b641-d4944f6421e3	2021-05-22 19:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:15:57.853+03	2021-05-22 19:15:57.861+03	
872336ce-aa28-13a6-d404-a5cc1e0a2e2d	2021-05-22 19:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:16:17.853+03	2021-05-22 19:16:17.859+03	
7f2780f8-2351-7a7d-ce72-bfa654b31081	2021-05-22 19:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:16:37.853+03	2021-05-22 19:16:37.86+03	
c7c2bb0f-a4bd-2290-004e-f0afdd6edbaa	2021-05-22 19:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:16:58.852+03	2021-05-22 19:16:58.858+03	
bc5d71c1-3d58-38cc-1fca-490ea39b0da2	2021-05-22 19:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:17:18.852+03	2021-05-22 19:17:18.86+03	
3a849128-cc50-d6b5-df28-1db0433966ca	2021-05-22 19:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:17:38.853+03	2021-05-22 19:17:38.859+03	
0a45174d-eabd-1165-f7a1-e80903fbdbf2	2021-05-22 19:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:17:59.853+03	2021-05-22 19:17:59.861+03	
04115097-d752-efa7-33e6-ef8d5f5fa0cd	2021-05-22 19:18:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:18:19.853+03	2021-05-22 19:18:19.859+03	
b5e01126-1bb8-ef46-88f4-627f9db1e6d3	2021-05-22 19:18:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:18:40.852+03	2021-05-22 19:18:40.859+03	
0313b629-5646-2642-0a95-0ae3eae99c5b	2021-05-22 19:19:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:19:00.852+03	2021-05-22 19:19:00.858+03	
44cd0c51-306a-ab57-1b59-3dc0a60a89be	2021-05-22 19:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:19:20.852+03	2021-05-22 19:19:20.86+03	
88f08b02-9d67-9149-806f-b989de525522	2021-05-22 19:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:19:40.853+03	2021-05-22 19:19:40.86+03	
0057074c-e06c-9fcc-3c6e-c520be6516ca	2021-05-22 19:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 19:20:00.852+03	2021-05-22 19:20:00.858+03	ERROR
d64d2182-af6e-3435-6a49-05bc0511c634	2021-05-22 19:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:20:12.853+03	2021-05-22 19:20:12.858+03	
4f7eefe3-78f8-5c5d-61ab-fc8f3abc3af8	2021-05-22 19:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:20:22.853+03	2021-05-22 19:20:22.861+03	
17f25177-408f-129a-88f7-bb399741a2cb	2021-05-22 19:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:20:33.853+03	2021-05-22 19:20:33.86+03	
bd5fc25b-8f1b-fe07-4ff1-08210ef59da0	2021-05-22 19:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:20:43.853+03	2021-05-22 19:20:43.861+03	
8dc57d80-133a-0cbf-a31f-683edd7f03fd	2021-05-22 19:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:20:53.853+03	2021-05-22 19:20:53.86+03	
a46e4717-663f-17f8-0159-c2cd95703ad4	2021-05-22 19:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:21:04.853+03	2021-05-22 19:21:04.86+03	
3160f199-ac93-913a-3d7d-b8a554061d98	2021-05-22 19:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:21:15.853+03	2021-05-22 19:21:15.859+03	
00157637-cb65-395c-becd-7699aa58ce69	2021-05-22 19:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:21:25.853+03	2021-05-22 19:21:25.86+03	
73561cbf-e1b5-78a5-824a-0a0aa2232eef	2021-05-22 19:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:21:36.852+03	2021-05-22 19:21:36.859+03	
67dd0ba5-5857-03de-0198-bff001b299a2	2021-05-22 19:21:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:21:46.853+03	2021-05-22 19:21:46.86+03	
c36d91a7-df47-9592-5b2a-7efc9b259f05	2021-05-22 19:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:21:56.853+03	2021-05-22 19:21:56.859+03	
144828c8-24cc-d00c-a73c-08a05b3b89db	2021-05-22 19:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:22:17.853+03	2021-05-22 19:22:17.859+03	
8e0d37b3-8778-9c33-e25e-ada12309d588	2021-05-22 19:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:22:38.853+03	2021-05-22 19:22:38.862+03	
cd148e0c-15bc-bbef-3f25-cef5d52d3233	2021-05-22 19:22:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:22:59.852+03	2021-05-22 19:22:59.858+03	
3c72f0f6-6700-b821-0629-5ad729b3cd83	2021-05-22 19:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:23:20.853+03	2021-05-22 19:23:20.86+03	
56865307-2108-7b4b-44fc-e2ab82f1dd3b	2021-05-22 19:23:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:23:41.853+03	2021-05-22 19:23:41.87+03	
44aef575-bdfc-5cef-af19-317e1fb8f155	2021-05-22 19:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:24:02.853+03	2021-05-22 19:24:02.859+03	
aa997a64-6b5d-7dc3-0f43-4d60814fb1b6	2021-05-22 19:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:24:23.852+03	2021-05-22 19:24:23.862+03	
4285628b-96a4-8b00-0544-df8bcebbc514	2021-05-22 19:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:24:43.852+03	2021-05-22 19:24:43.858+03	
105bfe65-1c8d-3b16-7737-8ce5ea79bc4a	2021-05-22 19:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:25:03.853+03	2021-05-22 19:25:03.861+03	
cc15a2f6-c435-d8e6-1493-683f5282187a	2021-05-22 19:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:25:24.853+03	2021-05-22 19:25:24.86+03	
e6a28f49-048f-8d9b-553f-8aa9790995bd	2021-05-22 19:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:25:44.853+03	2021-05-22 19:25:44.861+03	
e77d3cc7-7777-099f-fd38-c86b42a6fe20	2021-05-22 19:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:26:05.852+03	2021-05-22 19:26:05.859+03	
150f08ae-8243-7bc2-bf34-c33c46259a18	2021-05-22 19:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:26:25.853+03	2021-05-22 19:26:25.86+03	
b1436cf9-f64b-41c3-b094-5890eac58ba3	2021-05-22 19:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:26:45.853+03	2021-05-22 19:26:45.861+03	
126436c1-1fb8-219d-4ea4-6e377366bdc1	2021-05-22 19:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:27:06.852+03	2021-05-22 19:27:06.859+03	
c26cd55c-92a9-167a-b5b4-53d1c636e615	2021-05-22 19:27:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:27:26.855+03	2021-05-22 19:27:26.868+03	
7b36a1a4-acbf-6bc0-95b1-200852be56c8	2021-05-22 19:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:27:47.852+03	2021-05-22 19:27:47.858+03	
952fd351-8e25-a573-a0c8-91f12cb6d32d	2021-05-22 19:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:28:08.852+03	2021-05-22 19:28:08.862+03	
400b92ec-d69e-9e2e-a4d9-f00f1627e287	2021-05-22 19:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:28:28.853+03	2021-05-22 19:28:28.86+03	
ea67916e-e8ce-35fd-2cbe-5c15e0d1229c	2021-05-22 19:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:28:49.852+03	2021-05-22 19:28:49.86+03	
84e59fca-6c70-2899-351d-9437112f83cd	2021-05-22 19:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:29:09.853+03	2021-05-22 19:29:09.859+03	
9200cfa2-6163-3094-93ba-43d3db17f299	2021-05-22 19:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:29:30.852+03	2021-05-22 19:29:30.858+03	
b5500553-43b3-d7f4-97dd-768f2f89a1ef	2021-05-22 19:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:30:00.853+03	2021-05-22 19:30:00.862+03	
1bb80416-324b-e30b-5bb8-41403c4e0d48	2021-05-22 19:30:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:30:22.853+03	2021-05-22 19:30:22.863+03	
8518ffe5-7354-3a4d-5150-28f1e694884f	2021-05-22 19:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:30:42.853+03	2021-05-22 19:30:42.859+03	
d730a08a-8579-0985-adb7-a1df33ae13e4	2021-05-22 19:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:31:03.852+03	2021-05-22 19:31:03.858+03	
1e560cef-f667-5e59-10b3-e0746cd15571	2021-05-22 19:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:31:23.852+03	2021-05-22 19:31:23.859+03	
a87332af-5acd-1897-ad75-36e9cb4dcb28	2021-05-22 19:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:31:43.853+03	2021-05-22 19:31:43.861+03	
1905441c-c463-3c03-1421-ef32070b2444	2021-05-22 19:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:32:03.853+03	2021-05-22 19:32:03.862+03	
836eee35-1fa6-6644-11cf-e74b40ee4aec	2021-05-22 19:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:32:25.852+03	2021-05-22 19:32:25.859+03	
6b7ace05-0141-62fb-49d2-575530c68156	2021-05-22 19:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:32:45.852+03	2021-05-22 19:32:45.858+03	
03f4fc8e-2e28-9e44-c53a-21f1c32c7ff2	2021-05-22 19:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:33:05.852+03	2021-05-22 19:33:05.859+03	
8db99736-02ec-5179-4bcf-4c7df93f4a6c	2021-05-22 19:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:33:25.852+03	2021-05-22 19:33:25.86+03	
9d467b33-256e-99d1-2acd-884a600883b6	2021-05-22 19:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:33:45.853+03	2021-05-22 19:33:45.86+03	
e942a98f-d0a7-be3a-03e9-2e23699cc99b	2021-05-22 19:34:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:34:06.852+03	2021-05-22 19:34:06.858+03	
a69ad900-78d0-055e-d75c-3b40e7ba7a9a	2021-05-22 19:34:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:34:26.852+03	2021-05-22 19:34:26.859+03	
a02af3b2-2d21-a5ff-d94b-29956af5f82f	2021-05-22 19:34:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:34:46.854+03	2021-05-22 19:34:46.86+03	
f7865c51-3809-f808-6dc9-19cd93645cd5	2021-05-22 19:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:35:07.853+03	2021-05-22 19:35:07.867+03	
8833e36d-6e4b-10f1-5ea3-9e5dd9cec8ec	2021-05-22 19:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:35:27.853+03	2021-05-22 19:35:27.859+03	
8b441790-08a2-39b7-0a05-312967df252a	2021-05-22 19:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:35:48.853+03	2021-05-22 19:35:48.859+03	
4ed3a36a-786f-0dca-b76c-a9d93ef3bd93	2021-05-22 19:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:36:09.853+03	2021-05-22 19:36:09.861+03	
c02ee5c2-b82a-1cd3-444f-8fe64ef79484	2021-05-22 19:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:36:29.853+03	2021-05-22 19:36:29.86+03	
623fa2bb-0d26-a4fd-567d-b7fcee2d981a	2021-05-22 19:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:36:50.853+03	2021-05-22 19:36:50.859+03	
81d411a8-cf47-627b-c061-50ce30db96c8	2021-05-22 19:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:37:10.853+03	2021-05-22 19:37:10.866+03	
57de3be1-42cc-e620-ab9d-a49e63c1e96e	2021-05-22 19:37:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:37:31.852+03	2021-05-22 19:37:31.859+03	
c97ee58e-67a3-8b10-830c-02ad88347bf3	2021-05-22 19:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:37:52.853+03	2021-05-22 19:37:52.859+03	
c4becfa8-d9db-05cc-1dcd-0d2cbf5eba0f	2021-05-22 19:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:38:12.853+03	2021-05-22 19:38:12.859+03	
61f30e68-ddfd-e500-ab31-08a4d1b63d5c	2021-05-22 19:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:38:32.853+03	2021-05-22 19:38:32.859+03	
365c1560-acea-520a-6781-65fc0d6e2682	2021-05-22 19:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:38:52.853+03	2021-05-22 19:38:52.862+03	
a111f466-00ec-5a04-f653-ffd19407ea86	2021-05-22 19:39:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:39:13.852+03	2021-05-22 19:39:13.859+03	
f77a3f5e-6772-cd84-9f68-6b015aef1a53	2021-05-22 19:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:39:33.852+03	2021-05-22 19:39:33.859+03	
f4c58a63-51a9-da0e-ac12-b871ab26ee9c	2021-05-22 19:39:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:39:53.853+03	2021-05-22 19:39:53.86+03	
e3911f4d-0001-31e0-2c45-b4120daf03a8	2021-05-22 19:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:40:03.853+03	2021-05-22 19:40:03.86+03	
89162999-cbdc-5323-2aae-e0d250f929fb	2021-05-22 19:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:40:23.853+03	2021-05-22 19:40:23.87+03	
3f6c84dc-552d-368e-4a05-94c30860a020	2021-05-22 19:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:40:43.853+03	2021-05-22 19:40:43.861+03	
48d837a9-d21c-2a2c-4255-3ea5585db615	2021-05-22 19:41:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:41:05.852+03	2021-05-22 19:41:05.864+03	
82ff1044-7e80-90c2-3d2e-0a18c778c7f3	2021-05-22 19:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:41:25.853+03	2021-05-22 19:41:25.859+03	
c4e5f6a7-3a92-5033-ab42-55fdf6b2fb51	2021-05-22 19:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:41:45.853+03	2021-05-22 19:41:45.861+03	
50da4e63-535e-4057-db7e-f54396c4baf0	2021-05-22 19:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:42:05.853+03	2021-05-22 19:42:05.861+03	
56a6b904-76c2-8b61-0b44-40ac21d961eb	2021-05-22 19:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:42:25.853+03	2021-05-22 19:42:25.867+03	
082f6c52-fb32-80d9-ce69-db89c7c6849d	2021-05-22 19:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:42:45.853+03	2021-05-22 19:42:45.859+03	
af49a910-912e-69a4-85d6-b6f43c55c331	2021-05-22 19:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:43:05.853+03	2021-05-22 19:43:05.863+03	
738bae65-0774-2a1e-e140-c9e4bdcb406c	2021-05-22 19:22:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:22:06.854+03	2021-05-22 19:22:06.861+03	
8877a75b-3c2e-57d8-6f95-23c011b424b7	2021-05-22 19:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:22:28.852+03	2021-05-22 19:22:28.859+03	
5772a891-f769-f69f-0908-17625ef86672	2021-05-22 19:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:22:48.853+03	2021-05-22 19:22:48.859+03	
efaeb80f-aa61-32bc-8c75-d9ce82568692	2021-05-22 19:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:23:09.853+03	2021-05-22 19:23:09.86+03	
75659d64-cf5c-2325-6d57-2cc183c31499	2021-05-22 19:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:23:30.853+03	2021-05-22 19:23:30.86+03	
e18253eb-ef5f-636d-87d9-8bdda5efdd4e	2021-05-22 19:23:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:23:51.854+03	2021-05-22 19:23:51.86+03	
24b99c3e-4bc4-2dd2-618d-1c63bdd420fa	2021-05-22 19:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:24:13.852+03	2021-05-22 19:24:13.858+03	
a86bfb00-50c9-cb5a-9dc2-4bbdd8e8e52f	2021-05-22 19:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:24:33.852+03	2021-05-22 19:24:33.858+03	
bef0de4d-0a9d-0080-8bce-ca532aa05c4b	2021-05-22 19:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:24:53.852+03	2021-05-22 19:24:53.859+03	
a2575f49-1842-3604-c967-9f5090345e5a	2021-05-22 19:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:25:14.853+03	2021-05-22 19:25:14.86+03	
4faa08c9-9c32-b1a7-56e6-7263090715f3	2021-05-22 19:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:25:34.853+03	2021-05-22 19:25:34.871+03	
3c0c2125-717c-0008-32b6-bd582d11ce13	2021-05-22 19:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:25:54.853+03	2021-05-22 19:25:54.858+03	
60786093-a1a3-f54a-383a-0e3b847c4db7	2021-05-22 19:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:26:15.853+03	2021-05-22 19:26:15.866+03	
bc347203-4cde-cfc0-d7dc-d913e4045974	2021-05-22 19:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:26:35.853+03	2021-05-22 19:26:35.86+03	
2d9e4392-fc46-d2b3-19e1-4955680ece60	2021-05-22 19:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:26:56.852+03	2021-05-22 19:26:56.859+03	
89e26c92-bf67-ae4e-65f3-5de591a400cc	2021-05-22 19:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:27:16.853+03	2021-05-22 19:27:16.869+03	
6b293cbb-61b2-110f-e16f-b016c15ae9df	2021-05-22 19:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:27:37.852+03	2021-05-22 19:27:37.864+03	
a691206f-55b1-1ede-19f0-f93ed3bf664e	2021-05-22 19:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:27:57.853+03	2021-05-22 19:27:57.859+03	
b72edf42-4a34-2890-f3a4-a24c6c76ecdc	2021-05-22 19:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:28:18.852+03	2021-05-22 19:28:18.859+03	
37792e5b-d107-266e-30c9-cf8e7c5d1756	2021-05-22 19:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:28:38.853+03	2021-05-22 19:28:38.86+03	
743e35e5-7aba-03c3-4bde-13f887b58de0	2021-05-22 19:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:28:59.853+03	2021-05-22 19:28:59.876+03	
342ec60a-aca3-c948-eeb6-6968ff3d24cc	2021-05-22 19:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:29:20.852+03	2021-05-22 19:29:20.859+03	
b71fa25c-4a96-7467-aaf6-9f185bac3e2c	2021-05-22 19:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:29:40.852+03	2021-05-22 19:29:40.859+03	
162d74cc-548e-a358-9835-3c7533915e8b	2021-05-22 19:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:29:50.853+03	2021-05-22 19:29:50.86+03	
8358c2a5-a37c-6e19-2760-0133f6a2ec7c	2021-05-22 19:30:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 19:30:00.853+03	2021-05-22 19:30:00.873+03	ERROR
85130b6c-af9e-296d-8eac-b89c2e6e41f1	2021-05-22 19:30:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:30:11.854+03	2021-05-22 19:30:11.86+03	
7d003633-fb4a-411a-5de4-aeca5eca4dfb	2021-05-22 19:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:30:32.853+03	2021-05-22 19:30:32.861+03	
01f907f8-4a52-6696-7cd1-f4d35d07bfc0	2021-05-22 19:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:30:53.852+03	2021-05-22 19:30:53.858+03	
c91ecdb1-e4fe-7c14-f44e-884fe21477ef	2021-05-22 19:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:31:13.852+03	2021-05-22 19:31:13.86+03	
3a852b7b-21ac-a991-de6a-ab45bfc5ed9c	2021-05-22 19:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:31:33.853+03	2021-05-22 19:31:33.86+03	
48a42a78-5373-23f0-fa6f-efbc358cdc8e	2021-05-22 19:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:31:53.853+03	2021-05-22 19:31:53.861+03	
d8aa8f0b-3857-5079-452c-e8e9af3c32d7	2021-05-22 19:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:32:14.853+03	2021-05-22 19:32:14.86+03	
1e08a099-065e-fe72-8b3f-e76a34d40f92	2021-05-22 19:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:32:35.852+03	2021-05-22 19:32:35.861+03	
29be4791-6ff0-12fb-084b-a039656dd174	2021-05-22 19:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:32:55.852+03	2021-05-22 19:32:55.859+03	
3c41522a-8a30-ff97-1315-ecbf653a1bbd	2021-05-22 19:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:33:15.852+03	2021-05-22 19:33:15.859+03	
5062832a-a185-aa93-7a31-a0a411c28d96	2021-05-22 19:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:33:35.852+03	2021-05-22 19:33:35.86+03	
3fb37517-a86c-7a2b-1f35-b8c1dd2164ea	2021-05-22 19:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:33:56.852+03	2021-05-22 19:33:56.859+03	
eb0788b0-41cf-4e69-997e-b58deeed60ae	2021-05-22 19:34:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:34:16.852+03	2021-05-22 19:34:16.858+03	
cf56e691-2d14-bc5f-f000-94a168c5fb20	2021-05-22 19:34:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:34:36.853+03	2021-05-22 19:34:36.86+03	
7af3bc8f-3b50-7849-fd49-361fdf21df10	2021-05-22 19:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:34:57.853+03	2021-05-22 19:34:57.86+03	
da3e827e-2083-4548-5ef7-6dc78181844b	2021-05-22 19:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:35:17.853+03	2021-05-22 19:35:17.859+03	
d1dd09c2-bcbd-849b-5528-c4b3bcd666f2	2021-05-22 19:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:35:37.853+03	2021-05-22 19:35:37.868+03	
df53df69-a505-726a-4f60-8883ae7952c3	2021-05-22 19:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:35:59.852+03	2021-05-22 19:35:59.858+03	
a860b774-2dc6-29fa-ca29-17ca0160bb07	2021-05-22 19:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:36:19.853+03	2021-05-22 19:36:19.859+03	
e929f76d-c1fb-3ded-c958-67db750b9b74	2021-05-22 19:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:36:40.852+03	2021-05-22 19:36:40.859+03	
888c201b-ba28-9246-53d4-d6365ffa2653	2021-05-22 19:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:37:00.853+03	2021-05-22 19:37:00.859+03	
bd496dcb-4e72-cb6e-1e25-02c2f7bafe88	2021-05-22 19:37:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:37:21.852+03	2021-05-22 19:37:21.86+03	
9d6a1ec8-d0a4-ab9f-b2f2-136c5558e400	2021-05-22 19:37:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:37:41.853+03	2021-05-22 19:37:41.859+03	
9edb4695-dbfe-6332-60ef-ea35708bbe53	2021-05-22 19:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:38:02.853+03	2021-05-22 19:38:02.86+03	
c81666c5-3de8-d641-5701-4a1cb3b4a0f3	2021-05-22 19:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:38:22.853+03	2021-05-22 19:38:22.859+03	
eef286f6-11b3-6190-fa76-87396f9ddc25	2021-05-22 19:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:38:42.853+03	2021-05-22 19:38:42.86+03	
236b80f6-81a8-7fe5-8358-73005dbaefaf	2021-05-22 19:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:39:02.853+03	2021-05-22 19:39:02.859+03	
f7b9ae8f-d09e-f0e5-3cb8-c63f9f1c914b	2021-05-22 19:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:39:23.852+03	2021-05-22 19:39:23.86+03	
aab50a47-a8b1-cb91-222f-212978f2d583	2021-05-22 19:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:39:43.853+03	2021-05-22 19:39:43.873+03	
7a421323-138e-fc90-d9f1-7aac49bb4390	2021-05-22 19:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 19:40:00.852+03	2021-05-22 19:40:00.858+03	ERROR
cc3397c7-80dc-2de5-9c01-9ae761ad1ea5	2021-05-22 19:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:40:13.853+03	2021-05-22 19:40:13.86+03	
34cbac73-3fd7-f568-e4ad-d18979e08f4e	2021-05-22 19:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:40:33.853+03	2021-05-22 19:40:33.86+03	
8a2faa6d-4d03-e009-8b52-232296256f69	2021-05-22 19:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:40:54.853+03	2021-05-22 19:40:54.859+03	
7dc5dc70-e7d5-9ead-a659-2650d4aa601d	2021-05-22 19:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:41:15.852+03	2021-05-22 19:41:15.859+03	
a1d58090-2fb3-3005-23b3-898ed714b34b	2021-05-22 19:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:41:35.853+03	2021-05-22 19:41:35.86+03	
551849be-880a-a047-d976-942b620b583c	2021-05-22 19:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:41:55.853+03	2021-05-22 19:41:55.86+03	
70682d32-1601-021f-0c95-805af1d0d964	2021-05-22 19:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:42:15.853+03	2021-05-22 19:42:15.865+03	
dab86b02-595d-7b71-6b7c-25eca942b0ec	2021-05-22 19:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:42:35.853+03	2021-05-22 19:42:35.86+03	
eab3fa37-0f93-b6ef-5729-e9ca61549071	2021-05-22 19:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:42:55.853+03	2021-05-22 19:42:55.866+03	
60827371-8f3f-565f-49e9-0e34022887b3	2021-05-22 19:43:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:43:16.852+03	2021-05-22 19:43:16.859+03	
583b1dec-8df2-126f-8f70-5e248fc5e6cc	2021-05-22 19:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:43:36.853+03	2021-05-22 19:43:36.861+03	
b7b51fd7-d20a-2146-5a7c-17279d3f3e79	2021-05-22 19:43:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:43:56.854+03	2021-05-22 19:43:56.865+03	
f84092e0-5b9d-9972-5042-9c73d31f48a3	2021-05-22 19:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:44:17.853+03	2021-05-22 19:44:17.864+03	
3c05b89b-4091-7d6d-9e5d-c03c74df8712	2021-05-22 19:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:44:38.852+03	2021-05-22 19:44:38.859+03	
3f27fd86-6bbc-4cab-baa3-eb84e8313154	2021-05-22 19:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:44:58.853+03	2021-05-22 19:44:58.86+03	
e99ac0f5-3de0-e254-a0a6-281a3739f40a	2021-05-22 19:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:45:19.853+03	2021-05-22 19:45:19.86+03	
0a338a15-1f15-ff03-7569-3ed0478621be	2021-05-22 19:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:45:39.853+03	2021-05-22 19:45:39.861+03	
c56d6c95-d54f-427f-b98c-9bcf8d1f5d23	2021-05-22 19:46:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:46:00.852+03	2021-05-22 19:46:00.859+03	
cd807334-6dab-b22b-6ece-ea49526a64b7	2021-05-22 19:46:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:46:20.852+03	2021-05-22 19:46:20.858+03	
ac23aed2-af97-ee4d-3c29-98c87083389d	2021-05-22 19:46:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:46:41.854+03	2021-05-22 19:46:41.862+03	
efbfc4a0-4fd4-88c4-a98b-0565e10ab9a6	2021-05-22 19:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:47:02.853+03	2021-05-22 19:47:02.87+03	
05a3ade3-d818-efe8-959d-3b4001b63bae	2021-05-22 19:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:47:22.853+03	2021-05-22 19:47:22.864+03	
202199dc-105c-e07e-cfb1-5e93ee51ea47	2021-05-22 19:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:47:42.853+03	2021-05-22 19:47:42.859+03	
835b0498-0dd7-61e6-c701-be00a598ddd1	2021-05-22 19:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:48:03.853+03	2021-05-22 19:48:03.861+03	
6c192cfa-cdb9-d0f4-ddae-552f53d3fa78	2021-05-22 19:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:48:23.853+03	2021-05-22 19:48:23.859+03	
8b03bb23-6e03-6d80-a1d4-a9f2e182917f	2021-05-22 19:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:48:43.853+03	2021-05-22 19:48:43.86+03	
9c89e3ff-87a2-abe8-6d1f-6d4cf7fd320d	2021-05-22 19:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:49:03.853+03	2021-05-22 19:49:03.859+03	
dd2aa049-67c1-c1eb-1334-2709690de731	2021-05-22 19:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:49:24.852+03	2021-05-22 19:49:24.867+03	
41532fa9-e5e6-05bc-8c31-5bac1bec909b	2021-05-22 19:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:49:44.852+03	2021-05-22 19:49:44.86+03	
f325ea7f-0702-9b48-ba3c-6b74548a4dce	2021-05-22 19:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 19:50:00.852+03	2021-05-22 19:50:00.857+03	ERROR
b59e9079-a21e-db71-aa40-cff2ebb68934	2021-05-22 19:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:50:14.853+03	2021-05-22 19:50:14.863+03	
54d0a327-c6cd-f5c8-967c-5213cb8b1c10	2021-05-22 19:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:50:34.853+03	2021-05-22 19:50:34.861+03	
4df32d93-e932-6029-af3c-24f3610dd3ea	2021-05-22 19:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:50:55.852+03	2021-05-22 19:50:55.859+03	
89dc94ef-63c0-0e42-7f23-279c15dd41f5	2021-05-22 19:51:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:51:16.852+03	2021-05-22 19:51:16.859+03	
169dbcc4-c728-15ec-10ce-b9502e91de20	2021-05-22 19:51:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:51:36.853+03	2021-05-22 19:51:36.863+03	
1c94d843-8e4d-a92c-ec6b-c9fe5301c2af	2021-05-22 19:51:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:51:56.853+03	2021-05-22 19:51:56.86+03	
d36807a6-16ad-9433-383d-55571a741e6f	2021-05-22 19:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:52:17.853+03	2021-05-22 19:52:17.859+03	
807a697d-b2f1-2670-1478-e66600974ae5	2021-05-22 19:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:52:38.853+03	2021-05-22 19:52:38.859+03	
d2f5bfb1-97b1-1516-aca3-dbe10dbb495f	2021-05-22 19:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:52:59.852+03	2021-05-22 19:52:59.859+03	
ba0f0de8-f7d6-942e-a026-5063903c8295	2021-05-22 19:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:53:20.853+03	2021-05-22 19:53:20.862+03	
c241fdd9-9a8c-c4f7-7837-983a3c3fcdea	2021-05-22 19:53:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:53:41.853+03	2021-05-22 19:53:41.862+03	
7ffef27f-677f-c9ee-2b94-4950639a1da0	2021-05-22 19:54:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:54:02.853+03	2021-05-22 19:54:02.859+03	
b3af1f2d-26e1-54cc-8964-e3acc89c9060	2021-05-22 19:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:54:23.852+03	2021-05-22 19:54:23.859+03	
3a3dfe13-0415-ecb3-fea2-eeec4b960ac4	2021-05-22 19:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:54:43.853+03	2021-05-22 19:54:43.858+03	
8a6f7a0c-3ee0-48e2-67ba-50606b6fa7da	2021-05-22 19:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:55:03.853+03	2021-05-22 19:55:03.86+03	
4fa966a4-5e81-fd8c-6fca-9d5700cbab23	2021-05-22 19:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:55:24.853+03	2021-05-22 19:55:24.859+03	
e92614bb-e1bd-da08-c1ec-79f3b39ec5a1	2021-05-22 19:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:55:45.852+03	2021-05-22 19:55:45.859+03	
8a909756-51a4-bc95-9508-9df31841d0d4	2021-05-22 19:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:56:05.853+03	2021-05-22 19:56:05.859+03	
4f1cc282-a799-e8d9-cdd1-e967a22c0671	2021-05-22 19:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:56:25.853+03	2021-05-22 19:56:25.873+03	
49233146-ee50-15c5-c7fd-ddaa33ac11b1	2021-05-22 19:56:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:56:46.853+03	2021-05-22 19:56:46.859+03	
b694b4af-b8c0-12a5-2bef-1359c51c9ab4	2021-05-22 19:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:57:07.852+03	2021-05-22 19:57:07.859+03	
00c2042d-2eb0-14fb-4e8a-93c3d98722a1	2021-05-22 19:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:57:27.853+03	2021-05-22 19:57:27.861+03	
d1a5551c-3290-b9a6-204e-b3ee09abe803	2021-05-22 19:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:57:47.853+03	2021-05-22 19:57:47.859+03	
a04d4a33-8e96-a214-b73e-bbf3e7e0e549	2021-05-22 19:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:58:07.853+03	2021-05-22 19:58:07.86+03	
4fa6a7b9-f468-cd05-14c2-c39e051e9783	2021-05-22 19:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:58:27.853+03	2021-05-22 19:58:27.859+03	
fd97285d-62d3-140f-249a-c4a5716548e0	2021-05-22 19:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:58:47.853+03	2021-05-22 19:58:47.86+03	
ceb193d8-2024-386a-2b45-e23e49bf0527	2021-05-22 19:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:59:07.853+03	2021-05-22 19:59:07.859+03	
a51fd9a9-6c5e-ed83-7f35-bdc95c7167f5	2021-05-22 19:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:59:27.853+03	2021-05-22 19:59:27.859+03	
f4bc8287-5df5-84e6-3136-55e778c62802	2021-05-22 19:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:59:47.853+03	2021-05-22 19:59:47.86+03	
b0e8dbfd-6d1a-a4db-10f2-c6236daf5ee3	2021-05-22 20:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 20:00:00.853+03	2021-05-22 20:00:00.859+03	ERROR
d074c192-8ff7-3ff9-bc2d-c2c5b6e67c97	2021-05-22 20:00:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:00:18.853+03	2021-05-22 20:00:18.868+03	
5331fbbe-2171-6130-195f-83d19b5fa08e	2021-05-22 20:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:00:38.853+03	2021-05-22 20:00:38.861+03	
cd26040d-2c02-3fdf-aecd-defb70fcdf83	2021-05-22 20:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:00:59.852+03	2021-05-22 20:00:59.859+03	
cfff558e-0835-b287-cfe3-801216a4b4ac	2021-05-22 20:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:01:19.853+03	2021-05-22 20:01:19.858+03	
f363e130-34ff-a9d7-bebe-858b9a077b99	2021-05-22 20:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:01:40.852+03	2021-05-22 20:01:40.859+03	
5325cca0-5e84-a72f-3238-3efc637c5940	2021-05-22 20:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:02:00.853+03	2021-05-22 20:02:00.859+03	
837bbeef-9916-7177-ee39-4fa02aa7ffdb	2021-05-22 20:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:02:20.853+03	2021-05-22 20:02:20.859+03	
c5886990-7484-7123-6b45-a1283932d8cb	2021-05-22 20:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:02:40.853+03	2021-05-22 20:02:40.859+03	
e571bc17-3e83-1180-b517-ecb02286f7dc	2021-05-22 20:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:03:00.853+03	2021-05-22 20:03:00.86+03	
59faf550-0d2c-afbe-4663-c3ac93b6dc07	2021-05-22 20:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:03:20.853+03	2021-05-22 20:03:20.863+03	
1a6b6790-5424-f0ba-192b-136f0ae52d9b	2021-05-22 20:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:03:42.853+03	2021-05-22 20:03:42.862+03	
2a9fd3fa-6782-b7bb-de89-e5809eb381c1	2021-05-22 19:43:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:43:26.852+03	2021-05-22 19:43:26.873+03	
5342ffea-f74a-d3d9-f081-24a802953f6e	2021-05-22 19:43:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:43:46.853+03	2021-05-22 19:43:47.096+03	
3d101ce1-eecf-1b47-1797-deeeb227cba1	2021-05-22 19:44:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:44:06.854+03	2021-05-22 19:44:06.867+03	
07e02fad-2e6d-39a1-c19b-69a5460da015	2021-05-22 19:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:44:28.852+03	2021-05-22 19:44:28.864+03	
479b60ad-64b1-262a-a3e4-6d341ce209f4	2021-05-22 19:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:44:48.852+03	2021-05-22 19:44:48.86+03	
41f1fb2f-1f60-3f69-5859-587007968664	2021-05-22 19:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:45:09.853+03	2021-05-22 19:45:09.861+03	
3fbb3c59-9ff9-394a-ed01-d2be8ab93bec	2021-05-22 19:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:45:29.853+03	2021-05-22 19:45:29.859+03	
c24db3db-cdec-b05e-67f6-3bb5383f5163	2021-05-22 19:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:45:50.852+03	2021-05-22 19:45:50.86+03	
612e63f3-031e-21e2-c06d-f0ff9218465b	2021-05-22 19:46:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:46:10.852+03	2021-05-22 19:46:10.859+03	
8a530562-8398-0d06-3dde-f7ab8788ea07	2021-05-22 19:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:46:30.853+03	2021-05-22 19:46:30.859+03	
8edb2248-2d53-d591-f1a0-be3f52cb5dba	2021-05-22 19:46:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:46:51.854+03	2021-05-22 19:46:51.864+03	
dc3d88cc-92fd-200d-aa15-7990c9db03a5	2021-05-22 19:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:47:12.853+03	2021-05-22 19:47:12.86+03	
ffe1fb55-d006-dc2e-d4e1-493cf821f84b	2021-05-22 19:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:47:32.853+03	2021-05-22 19:47:32.859+03	
56d5b1c0-7d12-6f04-8a2d-6860b22bb7c9	2021-05-22 19:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:47:52.853+03	2021-05-22 19:47:52.859+03	
c4811424-f7a0-3a2e-baa7-02b9266a125f	2021-05-22 19:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:48:13.853+03	2021-05-22 19:48:13.859+03	
5ed05db7-89fb-0409-d3d7-2ddcc9ade8e3	2021-05-22 19:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:48:33.853+03	2021-05-22 19:48:33.861+03	
9290f450-e2cb-bd52-5700-0745bb31579f	2021-05-22 19:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:48:53.853+03	2021-05-22 19:48:53.861+03	
a7085f7f-b00f-cd3a-d90c-db2f347c6225	2021-05-22 19:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:49:13.853+03	2021-05-22 19:49:13.86+03	
652645c1-ca26-0ca4-27e1-5ac63a9324a6	2021-05-22 19:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:49:34.852+03	2021-05-22 19:49:34.858+03	
d18f6756-cf8b-ff18-9748-99f67f892600	2021-05-22 19:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:49:54.852+03	2021-05-22 19:49:54.859+03	
f7089235-8464-279f-169c-cb6a097d74bf	2021-05-22 19:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:50:04.852+03	2021-05-22 19:50:04.86+03	
f01137c2-9aeb-c7a7-930c-a95ddee7c864	2021-05-22 19:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:50:24.853+03	2021-05-22 19:50:24.86+03	
313db6af-7a39-c901-8507-aa0a94b7b98f	2021-05-22 19:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:50:45.852+03	2021-05-22 19:50:45.86+03	
837d7a25-aa9c-ed46-1c8c-218f9ee0e4af	2021-05-22 19:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:51:05.853+03	2021-05-22 19:51:05.872+03	
20435158-e771-5727-9499-6b9af0987de7	2021-05-22 19:51:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:51:26.853+03	2021-05-22 19:51:26.904+03	
1435ab6d-1015-6b15-4f33-091d48c85e55	2021-05-22 19:51:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:51:46.853+03	2021-05-22 19:51:46.859+03	
a47e7add-9b3f-3692-597a-78f282d425b3	2021-05-22 19:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:52:07.853+03	2021-05-22 19:52:07.859+03	
be74c3f0-95cc-e9d4-1b56-ae5f25cc517e	2021-05-22 19:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:52:27.853+03	2021-05-22 19:52:27.877+03	
8e8bc4c5-86e8-2b9c-e346-525422eb4861	2021-05-22 19:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:52:49.852+03	2021-05-22 19:52:49.859+03	
6032eac6-0fba-af6b-ea05-6109692ecb77	2021-05-22 19:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:53:09.853+03	2021-05-22 19:53:09.859+03	
04288a0f-fc65-5574-c95d-51e8e541049e	2021-05-22 19:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:53:30.853+03	2021-05-22 19:53:30.859+03	
9535494d-c159-7db8-4db2-dff60243da62	2021-05-22 19:53:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:53:51.854+03	2021-05-22 19:53:51.861+03	
45d31a8b-9804-50e1-f8af-e872d8b1b947	2021-05-22 19:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:54:12.853+03	2021-05-22 19:54:12.86+03	
d9632b82-c5d9-110c-f70d-f3de5c33fd35	2021-05-22 19:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:54:33.853+03	2021-05-22 19:54:33.867+03	
8e4e767e-ec53-ed5b-c624-42b54c6069e5	2021-05-22 19:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:54:53.853+03	2021-05-22 19:54:53.868+03	
a9a325a6-a63d-b722-086f-2b94da892338	2021-05-22 19:55:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:55:13.853+03	2021-05-22 19:55:13.859+03	
078e5b30-1131-589e-5b1f-e5928934158e	2021-05-22 19:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:55:34.853+03	2021-05-22 19:55:34.859+03	
6dd3667b-9053-ca2d-1e60-577afcb24b76	2021-05-22 19:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:55:55.852+03	2021-05-22 19:55:55.858+03	
e186b6ee-01b5-c990-f4d6-a23cc515a984	2021-05-22 19:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:56:15.853+03	2021-05-22 19:56:15.859+03	
5863059d-fae6-ffc7-1d40-bca6cd41013f	2021-05-22 19:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:56:35.853+03	2021-05-22 19:56:35.866+03	
90b3cfa8-e198-6349-e0cc-064a467abf52	2021-05-22 19:56:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:56:56.854+03	2021-05-22 19:56:56.861+03	
740d6437-e295-33a3-4e22-7f7fba5ed00b	2021-05-22 19:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:57:17.853+03	2021-05-22 19:57:17.86+03	
38230be2-7b10-59e5-1172-f8610e348bfa	2021-05-22 19:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:57:37.853+03	2021-05-22 19:57:37.86+03	
68dd2051-495a-7894-5019-968547683f5a	2021-05-22 19:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:57:57.853+03	2021-05-22 19:57:57.859+03	
375a7b78-2fee-32fa-665c-f32f0f803994	2021-05-22 19:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:58:17.853+03	2021-05-22 19:58:17.859+03	
8bdb5fc4-7636-2879-5c2b-cb53042c0870	2021-05-22 19:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:58:37.853+03	2021-05-22 19:58:37.861+03	
7082770a-f0f8-77b4-e719-4c12761ef510	2021-05-22 19:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:58:57.853+03	2021-05-22 19:58:57.86+03	
abc30a36-ca48-e575-5517-1a016e1579f8	2021-05-22 19:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:59:17.853+03	2021-05-22 19:59:17.87+03	
046e5fbd-c520-e3c0-5390-7853027e01f5	2021-05-22 19:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:59:37.853+03	2021-05-22 19:59:37.864+03	
2b822e01-7fec-fb64-39eb-8c2fb8362c24	2021-05-22 19:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 19:59:57.853+03	2021-05-22 19:59:57.859+03	
f6abaade-3498-0387-54d2-8b406d0b28bb	2021-05-22 20:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:00:08.853+03	2021-05-22 20:00:08.862+03	
b8eb6ce7-38a2-5338-a21d-5b7dd8f463f4	2021-05-22 20:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:00:28.853+03	2021-05-22 20:00:28.861+03	
bc8b6af7-7337-ced6-1f23-96baab3aa914	2021-05-22 20:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:00:48.853+03	2021-05-22 20:00:48.86+03	
984485f5-3d71-13c5-ab02-c61c7b714ff6	2021-05-22 20:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:01:09.852+03	2021-05-22 20:01:09.86+03	
da237f13-132f-4fcb-7f31-06e5783812c2	2021-05-22 20:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:01:30.852+03	2021-05-22 20:01:30.859+03	
2e5f6a24-8176-4da8-08b7-1257f8ddd1b7	2021-05-22 20:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:01:50.853+03	2021-05-22 20:01:50.862+03	
362f8910-c406-cb06-54b7-8eddc572f654	2021-05-22 20:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:02:10.853+03	2021-05-22 20:02:10.869+03	
fdbe24c7-d48f-6aa9-a17f-841fead87fde	2021-05-22 20:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:02:30.853+03	2021-05-22 20:02:30.859+03	
523c818d-853c-53cc-1868-08127af38fd7	2021-05-22 20:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:02:50.853+03	2021-05-22 20:02:50.861+03	
3e86f5e5-394b-56bf-c7de-ac32a473d378	2021-05-22 20:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:03:10.853+03	2021-05-22 20:03:10.859+03	
f2c23d90-e946-d375-34e2-791267b8f250	2021-05-22 20:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:03:31.854+03	2021-05-22 20:03:31.86+03	
459002e4-6447-b081-98fa-dbcaa10c2271	2021-05-22 20:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:03:53.853+03	2021-05-22 20:03:53.86+03	
c931965f-1b9c-30d7-ccf8-f206085165b8	2021-05-22 20:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:04:14.853+03	2021-05-22 20:04:14.86+03	
63d8df49-8cdd-da8f-7dc2-97a6a6b4b7f3	2021-05-22 20:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:04:03.853+03	2021-05-22 20:04:03.859+03	
371cb47e-6237-6ea6-f620-9e1ea3037a0f	2021-05-22 20:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:04:25.853+03	2021-05-22 20:04:25.861+03	
c9c7ad1e-d01e-0a59-556a-57d52a0e1276	2021-05-22 20:04:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:04:46.854+03	2021-05-22 20:04:46.861+03	
23bf1833-9b22-aba2-a632-fddadb3d46d5	2021-05-22 20:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:05:08.852+03	2021-05-22 20:05:08.86+03	
c4a0e487-3c1c-2ecd-05d7-96a72c135c50	2021-05-22 20:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:05:28.853+03	2021-05-22 20:05:28.861+03	
4ec6faf1-bb3d-31cc-f46e-827cf1ba25d7	2021-05-22 20:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:05:49.853+03	2021-05-22 20:05:49.861+03	
ebf65aec-ebf6-c95e-9102-d9f950fa5fea	2021-05-22 20:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:06:09.853+03	2021-05-22 20:06:09.859+03	
637fcc61-1892-009a-e045-418cf5e01c17	2021-05-22 20:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:06:29.853+03	2021-05-22 20:06:29.859+03	
e7237bc0-f65a-ded1-17f3-ca03da804f88	2021-05-22 20:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:06:49.853+03	2021-05-22 20:06:49.872+03	
62fe36a0-3e60-11f3-b14c-d0c4e25ebd96	2021-05-22 20:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:07:10.852+03	2021-05-22 20:07:10.858+03	
9e0f32d2-ff70-8721-bc4c-a8255bc6c5b9	2021-05-22 20:07:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:07:31.853+03	2021-05-22 20:07:31.861+03	
74150873-bb9f-1375-bd1a-03d79c234270	2021-05-22 20:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:07:52.853+03	2021-05-22 20:07:52.859+03	
4c42fb2f-2c9f-ce16-8bdc-975c1cd54863	2021-05-22 20:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:08:13.852+03	2021-05-22 20:08:13.859+03	
e44800ef-37d3-3024-a748-967886f123e8	2021-05-22 20:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:08:33.852+03	2021-05-22 20:08:34.092+03	
ecdb68ba-601f-5e53-5ffe-03bef66b4c4e	2021-05-22 20:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:08:53.853+03	2021-05-22 20:08:53.86+03	
508481e6-99f1-b61c-2832-cfafda89cef1	2021-05-22 20:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:09:14.853+03	2021-05-22 20:09:14.859+03	
8561fdb4-d885-3a5e-c0ea-18b7a3cc2e63	2021-05-22 20:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:09:35.853+03	2021-05-22 20:09:35.86+03	
06a6dec7-b119-396a-ba08-68c691e93a64	2021-05-22 20:09:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:09:56.852+03	2021-05-22 20:09:56.86+03	
e71b544a-41af-981d-1c8e-611a358b8d0f	2021-05-22 20:10:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:10:06.852+03	2021-05-22 20:10:06.859+03	
f6564a41-b913-93f8-b7f2-1e679123adf2	2021-05-22 20:10:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:10:26.853+03	2021-05-22 20:10:26.863+03	
6231337b-eb33-fa64-3c66-e7af815a1468	2021-05-22 20:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:10:48.853+03	2021-05-22 20:10:48.86+03	
f13633f3-b3bc-b2d6-80df-236a917fc87a	2021-05-22 20:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:11:09.853+03	2021-05-22 20:11:09.861+03	
00627e24-147f-460e-1f2d-46ad8175618d	2021-05-22 20:11:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:11:31.852+03	2021-05-22 20:11:31.859+03	
bebb926f-8f4a-4060-fd02-d5caa44d23a1	2021-05-22 20:11:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:11:51.854+03	2021-05-22 20:11:51.861+03	
eff4693a-413d-99a6-9a3c-50553ac841be	2021-05-22 20:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:12:12.853+03	2021-05-22 20:12:12.869+03	
bf05262d-e566-f030-e09e-915727ddf9a9	2021-05-22 20:12:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:12:32.853+03	2021-05-22 20:12:32.871+03	
49d78c6f-6323-ac4b-19ba-9169d8f244aa	2021-05-22 20:12:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:12:53.852+03	2021-05-22 20:12:53.859+03	
13efeeb9-5a3c-6a12-26ca-3c554279088c	2021-05-22 20:13:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:13:13.853+03	2021-05-22 20:13:13.866+03	
82cfb7f7-697f-a36c-6f89-269d49432295	2021-05-22 20:13:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:13:34.852+03	2021-05-22 20:13:34.861+03	
19108460-91ed-363f-23d5-7812b4c4b138	2021-05-22 20:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:13:54.853+03	2021-05-22 20:13:54.86+03	
66f938c1-00d8-b644-0a83-9d2e937ecd4b	2021-05-22 20:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:14:14.853+03	2021-05-22 20:14:14.859+03	
6f8c3862-ffe4-8ecf-1524-49d77217faf8	2021-05-22 20:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:14:34.853+03	2021-05-22 20:14:34.882+03	
16e840ff-ea55-77e1-c825-175d1cd6c5d8	2021-05-22 20:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:14:55.852+03	2021-05-22 20:14:55.86+03	
b42d7e48-9647-3eca-6c2f-6dca4f0e2ed1	2021-05-22 20:15:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:15:16.852+03	2021-05-22 20:15:16.86+03	
01835c47-fc0b-e57a-cc9e-17b2e713b7a3	2021-05-22 20:15:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:15:36.853+03	2021-05-22 20:15:36.86+03	
050de9d5-5606-dc19-25e1-e413fe80c100	2021-05-22 20:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:15:57.853+03	2021-05-22 20:15:57.873+03	
8f30ad0a-7e4b-3341-b0e8-1a44ec48526f	2021-05-22 20:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:16:18.852+03	2021-05-22 20:16:18.858+03	
9a1d622b-90d8-53e3-0a9e-821eb3f5b1a3	2021-05-22 20:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:16:38.853+03	2021-05-22 20:16:38.86+03	
81631a3c-d367-66a3-278a-dc5d46dffb75	2021-05-22 20:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:16:58.853+03	2021-05-22 20:16:58.861+03	
91bfc515-60d2-fc4c-8c89-8bbf03879add	2021-05-22 20:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:17:18.853+03	2021-05-22 20:17:18.86+03	
f9cced8e-9ffb-6079-f676-7b6e043c0c2e	2021-05-22 20:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:17:38.853+03	2021-05-22 20:17:38.87+03	
97433da0-f8a5-3bc5-d89c-3b978f3c7847	2021-05-22 20:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:17:59.853+03	2021-05-22 20:17:59.859+03	
51d6a43c-7623-2f2b-38de-8f889945df2b	2021-05-22 20:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:18:20.853+03	2021-05-22 20:18:20.861+03	
354b3d80-a4ea-5ced-8563-ee4c52857c0a	2021-05-22 20:18:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:18:40.853+03	2021-05-22 20:18:40.86+03	
d27ce163-c570-81a4-3f8c-1d6dfb70125d	2021-05-22 20:19:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:19:00.853+03	2021-05-22 20:19:00.86+03	
d73fe20d-16d1-c29c-5f80-be428e140f04	2021-05-22 20:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:19:20.853+03	2021-05-22 20:19:20.859+03	
58bfd73b-7170-47d0-f428-03dda12a46ea	2021-05-22 20:19:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:19:41.853+03	2021-05-22 20:19:41.859+03	
d1e7235a-808c-aa7a-ec15-fbdb63d30ab5	2021-05-22 20:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 20:20:00.853+03	2021-05-22 20:20:00.858+03	ERROR
5af66558-78b2-e004-20f2-e1bc426648bd	2021-05-22 20:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:20:12.853+03	2021-05-22 20:20:12.858+03	
ab686bd2-3626-b418-b05c-e2496ca056fe	2021-05-22 20:20:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:20:32.853+03	2021-05-22 20:20:32.86+03	
5e329ad6-a745-81a5-81d2-b13bb944a5fc	2021-05-22 20:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:20:53.853+03	2021-05-22 20:20:53.859+03	
f0c683e4-79e4-6f77-2dfc-90f56bec61b4	2021-05-22 20:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:21:14.852+03	2021-05-22 20:21:14.859+03	
ba263213-0955-e6e3-368f-c0b90dc41441	2021-05-22 20:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:21:34.853+03	2021-05-22 20:21:34.859+03	
7b930535-5760-4993-5875-38a42789d147	2021-05-22 20:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:21:55.853+03	2021-05-22 20:21:55.861+03	
ee07eebb-f787-78f3-66bf-a2842dc1ad50	2021-05-22 20:22:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:22:16.853+03	2021-05-22 20:22:16.86+03	
90f0ef31-d05d-0cb3-14ac-8a8535a10a98	2021-05-22 20:22:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:22:36.854+03	2021-05-22 20:22:36.86+03	
84466e9b-634d-b2a0-d6c4-5f56bbfeaf03	2021-05-22 20:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:22:57.853+03	2021-05-22 20:22:57.859+03	
4558a6e5-be2e-855c-becc-bbc453b82591	2021-05-22 20:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:23:18.852+03	2021-05-22 20:23:18.859+03	
2c33a9cb-014b-c7ae-fde7-374d0a057f7d	2021-05-22 20:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:23:38.852+03	2021-05-22 20:23:38.86+03	
d882d6a7-6b12-ac2e-51a4-6935ee1793a8	2021-05-22 20:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:23:58.853+03	2021-05-22 20:23:58.859+03	
95d59ebf-0195-c067-ab45-09d53d96d385	2021-05-22 20:24:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:24:19.852+03	2021-05-22 20:24:19.86+03	
95d303af-3fdd-a819-0351-02a3fd0bc2f7	2021-05-22 20:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:24:40.853+03	2021-05-22 20:24:40.858+03	
7f7c1cf3-d66e-8393-b6fd-436adcfff1c2	2021-05-22 20:25:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:25:01.854+03	2021-05-22 20:25:01.873+03	
6f0efae4-8768-6092-e755-4fafd661ce7a	2021-05-22 20:04:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:04:36.853+03	2021-05-22 20:04:36.861+03	
235239b7-63b1-aeec-4b1a-35d8c33919db	2021-05-22 20:04:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:04:57.853+03	2021-05-22 20:04:57.859+03	
216f5da8-96f0-7206-ec57-2c10398545a5	2021-05-22 20:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:05:18.853+03	2021-05-22 20:05:18.859+03	
4ea431b4-6bbe-0061-4776-8a82750e33ef	2021-05-22 20:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:05:38.853+03	2021-05-22 20:05:38.862+03	
5435dbad-03a4-e730-64e7-41eacce1198a	2021-05-22 20:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:05:59.853+03	2021-05-22 20:05:59.861+03	
0136ec87-6bb4-3ff2-246d-d65d6b5a1991	2021-05-22 20:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:06:19.853+03	2021-05-22 20:06:19.859+03	
1b10fb9b-eea8-3e1b-fb9a-236715c07810	2021-05-22 20:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:06:39.853+03	2021-05-22 20:06:39.86+03	
ee0fcc62-2923-c775-b0c7-1c9dd79a0024	2021-05-22 20:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:07:00.852+03	2021-05-22 20:07:00.859+03	
b10e3542-95a8-b366-310c-2802ec913a3d	2021-05-22 20:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:07:20.853+03	2021-05-22 20:07:20.861+03	
ba6aa5d4-4a58-f8bf-edab-aa336e6dc1fb	2021-05-22 20:07:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:07:41.854+03	2021-05-22 20:07:41.861+03	
ef30fe81-7455-74d6-a735-c9df738db85d	2021-05-22 20:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:08:03.852+03	2021-05-22 20:08:03.859+03	
d2a2640c-ee70-b380-53cb-a1ea47972349	2021-05-22 20:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:08:23.852+03	2021-05-22 20:08:24.174+03	
fc8d43bb-afab-9d8f-6fdd-2cb3b6aa9a1f	2021-05-22 20:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:08:43.852+03	2021-05-22 20:08:43.86+03	
ea690532-fd78-a425-1389-0314a7a2c0ed	2021-05-22 20:09:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:09:04.852+03	2021-05-22 20:09:04.871+03	
9e5a1653-5c3e-6c04-a1b1-825f5f8e3f6c	2021-05-22 20:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:09:25.853+03	2021-05-22 20:09:25.862+03	
4cc6e39d-2ce4-8496-304c-0bbf4bc2e3a5	2021-05-22 20:09:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:09:46.852+03	2021-05-22 20:09:46.861+03	
61a40d5b-3d63-5d1c-ede4-41cd6a7e0d79	2021-05-22 20:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 20:10:00.852+03	2021-05-22 20:10:00.857+03	ERROR
e41c0dfb-a41c-efba-6e97-5474006cd4e1	2021-05-22 20:10:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:10:16.852+03	2021-05-22 20:10:16.858+03	
df06ca08-ad80-dc17-f572-f00c9acda3b9	2021-05-22 20:10:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:10:37.853+03	2021-05-22 20:10:37.861+03	
615d1534-69c7-564c-f4d2-99deadc8efbd	2021-05-22 20:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:10:58.853+03	2021-05-22 20:10:58.859+03	
71682e92-bbff-cd47-463d-5dd801e8c14f	2021-05-22 20:11:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:11:20.853+03	2021-05-22 20:11:20.859+03	
18e4124a-0774-8a91-0855-0e975be9c5b5	2021-05-22 20:11:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:11:41.853+03	2021-05-22 20:11:41.86+03	
9626e2eb-34ab-8e0c-341d-cde3f1ecb3b0	2021-05-22 20:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:12:02.853+03	2021-05-22 20:12:02.862+03	
dbae09a2-9e53-4bb2-1e96-9aba72b66c99	2021-05-22 20:12:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:12:22.853+03	2021-05-22 20:12:22.859+03	
f8bd24a1-1eea-f5b5-6be6-b110aea2494b	2021-05-22 20:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:12:42.853+03	2021-05-22 20:12:42.859+03	
ede7a236-3a6d-9949-69eb-dae7c426be3d	2021-05-22 20:13:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:13:03.852+03	2021-05-22 20:13:03.858+03	
50175018-66ae-e133-a8e6-07bd5fc250da	2021-05-22 20:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:13:23.853+03	2021-05-22 20:13:23.86+03	
a73aa300-bc5d-f3dd-708d-0e1fc98af0fe	2021-05-22 20:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:13:44.853+03	2021-05-22 20:13:44.86+03	
14b32a7a-5f1f-8d9a-7caf-7f017374d53a	2021-05-22 20:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:14:04.853+03	2021-05-22 20:14:04.867+03	
40a13930-b1ba-da32-01f8-b27abf01ce01	2021-05-22 20:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:14:24.853+03	2021-05-22 20:14:24.86+03	
f9b1b7b9-0ab2-d2b4-f922-94427f662d54	2021-05-22 20:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:14:44.853+03	2021-05-22 20:14:44.859+03	
e1a3d856-95a9-88a6-f4d9-887f4c8b5a6f	2021-05-22 20:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:15:05.853+03	2021-05-22 20:15:05.859+03	
6854f26e-3aa1-cbab-150f-a4a596004061	2021-05-22 20:15:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:15:26.852+03	2021-05-22 20:15:26.863+03	
61ca243a-cdd8-eba8-6851-36631c93f7e6	2021-05-22 20:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:15:47.852+03	2021-05-22 20:15:47.86+03	
65fc0cdf-2f04-0775-d92a-8b26e8bdd05b	2021-05-22 20:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:16:08.852+03	2021-05-22 20:16:08.872+03	
4711fda9-9ebd-fca3-1a2e-a41ed957d053	2021-05-22 20:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:16:28.852+03	2021-05-22 20:16:28.862+03	
c9ad7274-7945-9730-ca5b-57239dbaa34f	2021-05-22 20:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:16:48.853+03	2021-05-22 20:16:48.861+03	
ad565016-7dcb-f495-deca-654f6c049811	2021-05-22 20:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:17:08.853+03	2021-05-22 20:17:08.859+03	
85e6411f-5c2b-a396-981d-b3410ee52f22	2021-05-22 20:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:17:28.853+03	2021-05-22 20:17:28.859+03	
ff1384d4-3c72-52f7-8b62-4d112cd34e2a	2021-05-22 20:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:17:48.853+03	2021-05-22 20:17:48.86+03	
d48f0923-9959-ce4e-4939-42cd0b415f70	2021-05-22 20:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:18:10.853+03	2021-05-22 20:18:10.859+03	
3f3f130b-5788-cac1-1b85-3978ebf86c6a	2021-05-22 20:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:18:30.853+03	2021-05-22 20:18:30.86+03	
62c00589-f5ed-1db5-bfc2-1368d007f03e	2021-05-22 20:18:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:18:50.853+03	2021-05-22 20:18:50.859+03	
12444935-4870-49c0-4226-9a7ee27095af	2021-05-22 20:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:19:10.853+03	2021-05-22 20:19:10.862+03	
ac7cf824-3543-b91a-f8a9-d66293c5a23f	2021-05-22 20:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:19:30.853+03	2021-05-22 20:19:30.859+03	
5a0b46bf-7906-20b3-bd6d-997ad2d271df	2021-05-22 20:19:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:19:51.854+03	2021-05-22 20:19:51.86+03	
d6402cd9-ed03-e024-4840-02cf5f15bc30	2021-05-22 20:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:20:02.853+03	2021-05-22 20:20:02.86+03	
f0cbc893-b2d9-0812-830c-5277649aa99c	2021-05-22 20:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:20:22.853+03	2021-05-22 20:20:22.86+03	
e1c25959-99f0-840d-5c66-9b66e952a995	2021-05-22 20:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:20:42.853+03	2021-05-22 20:20:42.861+03	
cbf6a9b0-1bb6-9d24-0364-aa019ef1f7ef	2021-05-22 20:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:21:04.852+03	2021-05-22 20:21:04.86+03	
82d227c3-9b0f-be04-1f33-bf3c303c1b4c	2021-05-22 20:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:21:24.852+03	2021-05-22 20:21:24.859+03	
95b12f2d-f5f9-e404-5b5a-040fa7adc400	2021-05-22 20:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:21:45.853+03	2021-05-22 20:21:45.859+03	
776830b8-eb10-9aab-9f19-82bd062ea13c	2021-05-22 20:22:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:22:06.853+03	2021-05-22 20:22:06.859+03	
0eb4ca64-d5ca-a2ba-ea2c-ebe9e519c9fd	2021-05-22 20:22:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:22:26.853+03	2021-05-22 20:22:26.861+03	
0d90d322-f48f-3192-9a41-b54eb73e97c1	2021-05-22 20:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:22:47.853+03	2021-05-22 20:22:47.859+03	
9c2af981-27e4-d85f-1fd7-8ee9f3d6c91e	2021-05-22 20:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:23:07.853+03	2021-05-22 20:23:07.86+03	
f3c86582-3281-f973-3afb-16e5c4efaff0	2021-05-22 20:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:23:28.852+03	2021-05-22 20:23:28.861+03	
b2b9b446-b688-d1b4-32a3-a63be7e06dae	2021-05-22 20:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:23:48.853+03	2021-05-22 20:23:48.86+03	
0898afe8-25f0-d56b-31ec-44372b55c972	2021-05-22 20:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:24:08.853+03	2021-05-22 20:24:08.86+03	
e88124b1-c96d-f60a-da3c-2d20a20696f9	2021-05-22 20:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:24:29.853+03	2021-05-22 20:24:29.86+03	
43deb62e-7cf2-c2b1-7384-389e131258ce	2021-05-22 20:24:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:24:51.854+03	2021-05-22 20:24:51.861+03	
4bcc8888-ece9-ee31-b036-9478b3f15d86	2021-05-22 20:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:25:12.853+03	2021-05-22 20:25:12.86+03	
e69ae36d-10f1-e7cf-9dba-337f3932e049	2021-05-22 20:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:25:33.853+03	2021-05-22 20:25:33.861+03	
4e0e5ea0-c293-d2e4-47a0-997932ad1efe	2021-05-22 20:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:25:22.853+03	2021-05-22 20:25:22.859+03	
0b6f24f4-9ad7-a8a8-d5ec-9b89e1623010	2021-05-22 20:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:25:43.853+03	2021-05-22 20:25:43.86+03	
5df120f6-b9c8-ca56-db07-df06b8aeeea4	2021-05-22 20:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:26:03.853+03	2021-05-22 20:26:03.866+03	
2dfc7b6c-9895-3ca5-9630-24ab77aefa20	2021-05-22 20:26:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:26:24.852+03	2021-05-22 20:26:24.859+03	
d886c308-bb7a-e6e4-bbd3-89c33e07137e	2021-05-22 20:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:26:44.853+03	2021-05-22 20:26:44.862+03	
f2ff1a5d-c9dd-7027-c364-d922463c265a	2021-05-22 20:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:27:04.853+03	2021-05-22 20:27:04.861+03	
f001f94f-57dd-07ad-84a7-675273f36795	2021-05-22 20:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:27:24.853+03	2021-05-22 20:27:24.86+03	
3c6a2d15-ec01-5fec-3371-11b799f24609	2021-05-22 20:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:27:45.853+03	2021-05-22 20:27:45.86+03	
910a227e-6047-3740-49f5-c2730a4b25a1	2021-05-22 20:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:28:05.853+03	2021-05-22 20:28:05.871+03	
2ac0ff9a-22fe-f9c6-4347-5aed9e5b38e5	2021-05-22 20:28:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:28:26.853+03	2021-05-22 20:28:26.86+03	
aa29c258-93aa-9d97-16dd-2d02bceca6f5	2021-05-22 20:28:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:28:46.853+03	2021-05-22 20:28:46.859+03	
22a042d0-1a29-1f98-6a94-2152e13e3451	2021-05-22 20:29:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:29:07.852+03	2021-05-22 20:29:07.859+03	
5792bbf8-953b-75f3-c7af-762c67abb9d2	2021-05-22 20:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:29:27.853+03	2021-05-22 20:29:27.86+03	
8d771988-fd1b-84ab-9c90-fb694f779c8d	2021-05-22 20:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:29:48.853+03	2021-05-22 20:29:48.86+03	
4db22e40-af96-9c09-66c8-501db5310b79	2021-05-22 20:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 20:30:00.852+03	2021-05-22 20:30:00.857+03	ERROR
adb5db82-ef25-3793-636c-23c75a25d9ed	2021-05-22 20:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:30:19.853+03	2021-05-22 20:30:19.861+03	
06140293-3e91-2b5a-a31f-fef68250be16	2021-05-22 20:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:30:40.853+03	2021-05-22 20:30:40.859+03	
38541b62-f1db-4815-e86e-6effc74e4888	2021-05-22 20:31:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:31:01.853+03	2021-05-22 20:31:01.889+03	
5d0582b0-a661-b8da-5187-e1d2f1d241d9	2021-05-22 20:31:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:31:21.853+03	2021-05-22 20:31:21.86+03	
c180291f-0df0-7e94-2b75-b350316524e9	2021-05-22 20:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:31:42.853+03	2021-05-22 20:31:42.859+03	
b6675c0d-7266-b371-2dbc-9a6502043c8a	2021-05-22 20:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:32:04.853+03	2021-05-22 20:32:04.86+03	
4535d8f2-a5e2-0e1f-6299-ada6086bd547	2021-05-22 20:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:32:24.853+03	2021-05-22 20:32:24.859+03	
f9eb92b9-b16f-25a2-849c-1d9b85941fa6	2021-05-22 20:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:32:44.853+03	2021-05-22 20:32:44.859+03	
3af15bd5-7e5a-5084-ba8d-e75bc01e6362	2021-05-22 20:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:33:04.853+03	2021-05-22 20:33:04.87+03	
43c3d82a-d2f5-f138-5cbc-810ccefd7db1	2021-05-22 20:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:33:25.852+03	2021-05-22 20:33:25.86+03	
7e71a35d-0745-5e30-cd7a-f3d465a85fc9	2021-05-22 20:33:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:33:46.852+03	2021-05-22 20:33:46.863+03	
97824b0c-d026-daa8-67c7-ff3d770b8e0e	2021-05-22 20:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:34:07.853+03	2021-05-22 20:34:07.86+03	
25162e29-32fa-180e-d9aa-aebae63cf322	2021-05-22 20:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:34:27.853+03	2021-05-22 20:34:27.87+03	
ddeadfc5-72aa-f67c-d02d-e790e503e4c0	2021-05-22 20:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:34:48.852+03	2021-05-22 20:34:48.859+03	
c7fe422f-29ad-7d71-6cf5-4a3a30bf9055	2021-05-22 20:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:35:09.853+03	2021-05-22 20:35:09.86+03	
957ef374-0c3f-406c-e1c3-824885899dfe	2021-05-22 20:35:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:35:31.853+03	2021-05-22 20:35:31.859+03	
9d3c7c85-bfe1-73a8-52e5-30bd3e98484d	2021-05-22 20:35:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:35:51.853+03	2021-05-22 20:35:51.862+03	
74ab898e-a220-9cb6-a3ea-febc91058a67	2021-05-22 20:36:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:36:12.852+03	2021-05-22 20:36:12.859+03	
e1d1f408-26a1-1a8f-2682-3debce72d663	2021-05-22 20:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:36:32.853+03	2021-05-22 20:36:32.87+03	
fd737167-23d1-844c-8faa-4a53d7b3af70	2021-05-22 20:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:36:53.853+03	2021-05-22 20:36:53.86+03	
447ca978-e5f6-25fc-20e8-fdba15923e61	2021-05-22 20:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:37:13.853+03	2021-05-22 20:37:13.86+03	
6f330899-2778-dd11-920e-47dea588c989	2021-05-22 20:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:37:34.852+03	2021-05-22 20:37:34.859+03	
b0620a87-7c9e-5573-e367-00bb99350bcd	2021-05-22 20:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:37:55.852+03	2021-05-22 20:37:55.878+03	
e6c7a3fc-7ca6-a0e0-4966-bd59b49379e3	2021-05-22 20:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:38:15.852+03	2021-05-22 20:38:15.859+03	
164ea6dd-7975-a676-f779-113292d7c3f0	2021-05-22 20:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:38:35.853+03	2021-05-22 20:38:35.868+03	
a05fe74b-8329-ef99-ed61-6bac566a3186	2021-05-22 20:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:38:55.853+03	2021-05-22 20:38:55.861+03	
d02d5b01-c65c-5e32-d9c0-3e92a91cf1d5	2021-05-22 20:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:39:15.853+03	2021-05-22 20:39:15.86+03	
8ff734b5-2481-d40a-cf24-74d131e9fce4	2021-05-22 20:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:39:36.852+03	2021-05-22 20:39:36.859+03	
2f7dc3f3-845e-8e7f-2c07-7a1aaf3ddae3	2021-05-22 20:39:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:39:56.853+03	2021-05-22 20:39:56.861+03	
a303ece2-dc50-88fa-50b6-7b53957497c7	2021-05-22 20:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:40:07.853+03	2021-05-22 20:40:07.863+03	
888b2735-74a1-f4a7-e74e-6970944eba07	2021-05-22 20:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:40:28.853+03	2021-05-22 20:40:28.86+03	
d3524614-8d66-7f56-2b38-03bd371b9279	2021-05-22 20:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:40:48.853+03	2021-05-22 20:40:48.862+03	
db879fa0-5d48-cf3b-20d4-0b4f5944b4d6	2021-05-22 20:41:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:41:10.853+03	2021-05-22 20:41:10.859+03	
38af9b7e-78cb-a90c-a07f-2462a65c6740	2021-05-22 20:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:41:31.853+03	2021-05-22 20:41:31.861+03	
962602b2-2a1d-ba79-c634-11e7b2ea4542	2021-05-22 20:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:41:52.853+03	2021-05-22 20:41:52.859+03	
6a254310-7697-7b4f-a8ad-abe43eaacd5e	2021-05-22 20:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:42:13.853+03	2021-05-22 20:42:13.859+03	
e823b556-9c74-8398-4cc8-f3629bcacda9	2021-05-22 20:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:42:34.853+03	2021-05-22 20:42:34.861+03	
55e6313c-8e2b-4282-8646-4b9917bdfaf3	2021-05-22 20:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:42:54.853+03	2021-05-22 20:42:54.859+03	
b7b013ec-6789-eed5-c21c-bbd0949a685a	2021-05-22 20:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:43:15.853+03	2021-05-22 20:43:15.86+03	
85cf74c7-c3c5-627b-4d03-90c693389c35	2021-05-22 20:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:43:36.853+03	2021-05-22 20:43:36.859+03	
e4e92915-3019-a6f3-1b3d-a52d866d9c2a	2021-05-22 20:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:43:57.853+03	2021-05-22 20:43:57.859+03	
73c5b879-2b4d-8dec-5b43-69f5452938e2	2021-05-22 20:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:44:19.853+03	2021-05-22 20:44:19.86+03	
6a9def4e-9319-9651-5797-d7032427e552	2021-05-22 20:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:44:40.852+03	2021-05-22 20:44:40.859+03	
f8d28d6d-d69d-752f-15fa-a8757d4966d1	2021-05-22 20:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:45:00.853+03	2021-05-22 20:45:00.86+03	
85aa0d75-6991-390a-b0df-2b41595331e0	2021-05-22 20:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:45:22.852+03	2021-05-22 20:45:22.86+03	
9a0b81cf-3fd8-2efd-dda1-8da91a815927	2021-05-22 20:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:45:42.853+03	2021-05-22 20:45:42.86+03	
b8bd8035-e2b8-df55-d899-d84f62c735bd	2021-05-22 20:46:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:46:04.852+03	2021-05-22 20:46:04.859+03	
2f337e54-1995-11f8-a0da-4a3d30421a7b	2021-05-22 20:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:46:24.853+03	2021-05-22 20:46:24.859+03	
c5a195d6-abb3-7233-dc87-3cebc0dc07d9	2021-05-22 20:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:25:53.853+03	2021-05-22 20:25:53.86+03	
f52b62d2-8551-fb26-4db1-6d8afb1acb4c	2021-05-22 20:26:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:26:14.852+03	2021-05-22 20:26:14.868+03	
71f8d743-a6be-b22c-1e35-d600b4323763	2021-05-22 20:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:26:34.853+03	2021-05-22 20:26:34.859+03	
e0edf75a-d50a-f29b-f5a3-db49d6a9b7d0	2021-05-22 20:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:26:54.853+03	2021-05-22 20:26:54.86+03	
c8f3529f-5fb3-fc40-a94c-0e7a34a81a60	2021-05-22 20:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:27:14.853+03	2021-05-22 20:27:14.859+03	
7a62d380-ad01-471f-42fd-c9b308ad339a	2021-05-22 20:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:27:34.853+03	2021-05-22 20:27:34.86+03	
c36b366b-6427-c8b3-86fa-92679688506b	2021-05-22 20:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:27:55.853+03	2021-05-22 20:27:55.86+03	
59f824de-56fc-f0ca-dccd-90781ee30a05	2021-05-22 20:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:28:15.853+03	2021-05-22 20:28:15.862+03	
41701007-ef49-aa6a-825c-1a8c51a132ce	2021-05-22 20:28:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:28:36.853+03	2021-05-22 20:28:36.86+03	
b57d6dcf-0ac7-4cc3-b9ab-dea698f7b076	2021-05-22 20:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:28:56.853+03	2021-05-22 20:28:56.862+03	
85adc215-90c0-9101-0710-6fca69b4336b	2021-05-22 20:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:29:17.852+03	2021-05-22 20:29:17.859+03	
5e3e2bce-6e05-cf26-9234-9073adbef770	2021-05-22 20:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:29:37.853+03	2021-05-22 20:29:37.859+03	
62f290e6-6932-65c8-ae84-f94bfd1242af	2021-05-22 20:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:29:58.853+03	2021-05-22 20:29:58.86+03	
a2bdfdfa-017a-49a6-cdfe-88d1f237e44a	2021-05-22 20:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:30:09.852+03	2021-05-22 20:30:09.859+03	
2d75e1eb-51e9-bdce-7898-fac6991d9c17	2021-05-22 20:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:30:30.852+03	2021-05-22 20:30:30.861+03	
3b815613-fdce-a71e-3261-0959f34a8bbe	2021-05-22 20:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:30:50.853+03	2021-05-22 20:30:50.859+03	
7de01a83-3ac1-995e-a3af-9a6ed83ed3bf	2021-05-22 20:31:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:31:11.853+03	2021-05-22 20:31:11.86+03	
ae5c504b-3c43-63ed-83d7-d6e17b03b889	2021-05-22 20:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:31:32.852+03	2021-05-22 20:31:32.864+03	
147f3fc6-cff4-2f9c-415e-30965706540e	2021-05-22 20:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:31:53.853+03	2021-05-22 20:31:53.859+03	
613f8a40-038b-1b0f-8fa5-c55e2447ee5d	2021-05-22 20:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:32:14.853+03	2021-05-22 20:32:14.861+03	
84c6e680-1ff6-f15f-3cdc-2af123bd535b	2021-05-22 20:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:32:34.853+03	2021-05-22 20:32:34.861+03	
84f73d4e-73fe-69e0-b642-b09068e81be9	2021-05-22 20:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:32:54.853+03	2021-05-22 20:32:54.859+03	
b046db1b-8e42-ffb6-de86-fac549d32710	2021-05-22 20:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:33:15.852+03	2021-05-22 20:33:15.862+03	
79e8d053-fe3a-371b-5ed1-c151b5f91446	2021-05-22 20:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:33:35.853+03	2021-05-22 20:33:35.865+03	
98f44fc3-db2e-bb27-2ae2-b4b8d2472029	2021-05-22 20:33:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:33:56.854+03	2021-05-22 20:33:56.861+03	
014e2bc5-895b-97f0-1ea8-a2dd91b42726	2021-05-22 20:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:34:17.853+03	2021-05-22 20:34:17.86+03	
71918ca4-7522-ebdc-0211-504ef67ec6c3	2021-05-22 20:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:34:37.853+03	2021-05-22 20:34:37.861+03	
b5331a98-f8b8-7a63-38e9-ae3c6b121430	2021-05-22 20:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:34:58.853+03	2021-05-22 20:34:58.859+03	
4ac5deb8-5bd1-11d3-0f74-8f0ba8bb867e	2021-05-22 20:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:35:20.853+03	2021-05-22 20:35:20.859+03	
d9f98e38-778d-bb4e-641c-a7fb9223a2d2	2021-05-22 20:35:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:35:41.853+03	2021-05-22 20:35:41.859+03	
325e6fcd-5daf-66a2-e735-997a6eac8d8c	2021-05-22 20:36:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:36:01.854+03	2021-05-22 20:36:01.859+03	
6c04d4d0-bb80-b080-7272-c3fe8033d237	2021-05-22 20:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:36:22.853+03	2021-05-22 20:36:22.859+03	
82041813-3090-41a4-c4b2-e208399fdf3d	2021-05-22 20:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:36:42.853+03	2021-05-22 20:36:42.861+03	
42ced303-3a8c-fd12-0c63-110bb037817b	2021-05-22 20:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:37:03.853+03	2021-05-22 20:37:03.859+03	
6550fbae-23fa-39a5-c84b-94b0f679e56c	2021-05-22 20:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:37:23.853+03	2021-05-22 20:37:23.859+03	
f157fb1c-b23f-2bea-e73c-d1ce58b9f456	2021-05-22 20:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:37:44.853+03	2021-05-22 20:37:44.867+03	
8ed0c6aa-c606-b723-c2cc-d0a37306e3a7	2021-05-22 20:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:38:05.852+03	2021-05-22 20:38:05.859+03	
d51fe682-f844-d81d-1f6c-e3ff83e83fa7	2021-05-22 20:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:38:25.853+03	2021-05-22 20:38:25.861+03	
4fb2c651-028c-0bab-6077-f387773b986c	2021-05-22 20:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:38:45.853+03	2021-05-22 20:38:45.865+03	
117592e5-bf4f-6a79-c184-3a5b7c77539a	2021-05-22 20:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:39:05.853+03	2021-05-22 20:39:05.863+03	
1e3e0468-cc18-c2d2-bb26-bd7270b5fc6f	2021-05-22 20:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:39:25.853+03	2021-05-22 20:39:25.86+03	
11e1197d-79b2-78a7-54e8-6cad02530425	2021-05-22 20:39:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:39:46.852+03	2021-05-22 20:39:46.86+03	
81991203-6f82-10d0-301d-a550638e6d38	2021-05-22 20:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 20:40:00.853+03	2021-05-22 20:40:00.859+03	ERROR
2e6d0184-6606-b909-943f-2f6e281c7744	2021-05-22 20:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:40:17.853+03	2021-05-22 20:40:17.863+03	
b1a5e2fc-4c6e-0266-5999-8d97f15f4933	2021-05-22 20:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:40:38.853+03	2021-05-22 20:40:38.861+03	
6a4a4bd2-f805-ced9-8559-4e5453a03cf8	2021-05-22 20:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:40:59.853+03	2021-05-22 20:40:59.86+03	
d522fe7f-091b-8bda-0db0-e3d9fe0a5e96	2021-05-22 20:41:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:41:21.852+03	2021-05-22 20:41:21.875+03	
2681ab9b-75ee-9029-0f60-d529c4a8b176	2021-05-22 20:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:41:42.853+03	2021-05-22 20:41:42.86+03	
f47d14d2-a023-a493-f0bd-61904ad449dd	2021-05-22 20:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:42:03.852+03	2021-05-22 20:42:03.859+03	
efafda88-484d-6a3d-966c-72a932869312	2021-05-22 20:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:42:24.853+03	2021-05-22 20:42:24.86+03	
4eae1620-db61-7fb2-bb74-625cdae1952d	2021-05-22 20:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:42:44.853+03	2021-05-22 20:42:44.86+03	
24f5d760-6ea5-fc7c-a28a-68c98839c6cc	2021-05-22 20:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:43:05.852+03	2021-05-22 20:43:05.863+03	
f58392a3-1585-612c-f39b-2fdb1aca9a4d	2021-05-22 20:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:43:25.853+03	2021-05-22 20:43:25.866+03	
758a168d-a98d-d8fe-915f-3c9a5643bbe4	2021-05-22 20:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:43:47.852+03	2021-05-22 20:43:47.86+03	
72db4993-775d-2c76-de81-5843f8600742	2021-05-22 20:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:44:08.853+03	2021-05-22 20:44:08.859+03	
92285115-74ab-5881-cc9a-128ef45b99d5	2021-05-22 20:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:44:29.853+03	2021-05-22 20:44:29.86+03	
d8e6fe56-c934-aac0-b6a9-9d473bb5fe97	2021-05-22 20:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:44:50.852+03	2021-05-22 20:44:50.859+03	
0deddf31-facc-ac94-f883-9e9f25da48aa	2021-05-22 20:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:45:11.853+03	2021-05-22 20:45:11.86+03	
a1e59a8b-0adb-6bac-baf4-9ea768eb8485	2021-05-22 20:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:45:32.853+03	2021-05-22 20:45:32.859+03	
7961f661-00ef-b824-065d-b8629554f862	2021-05-22 20:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:45:53.853+03	2021-05-22 20:45:53.867+03	
9b57da20-287d-0704-a5f3-2e12b3e4ab03	2021-05-22 20:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:46:14.852+03	2021-05-22 20:46:14.858+03	
2c36d567-d918-00d8-eec8-f2df3b954ae2	2021-05-22 20:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:46:34.853+03	2021-05-22 20:46:34.861+03	
2e31d20e-a3e9-9570-6b6c-115967725017	2021-05-22 20:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:46:54.853+03	2021-05-22 20:46:54.858+03	
3567514c-d578-73cd-cc4f-4a1ad352d452	2021-05-22 20:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:46:44.853+03	2021-05-22 20:46:44.86+03	
23571d14-2ef6-4afe-0232-0aa0698c3087	2021-05-22 20:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:47:05.853+03	2021-05-22 20:47:05.859+03	
d1589894-e975-2b37-cb3e-ca3427f32f68	2021-05-22 20:47:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:47:26.854+03	2021-05-22 20:47:26.863+03	
a3608930-f351-1d79-d337-04e9048139d8	2021-05-22 20:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:47:47.853+03	2021-05-22 20:47:47.86+03	
ca5b3323-2c67-0945-05d5-823f8c47a526	2021-05-22 20:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:48:07.853+03	2021-05-22 20:48:07.861+03	
75bbd40b-8422-2ad1-786d-decdeed1e981	2021-05-22 20:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:48:27.853+03	2021-05-22 20:48:27.859+03	
b9fd8118-1a16-2ec9-38d0-e0de7944f12d	2021-05-22 20:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:48:47.853+03	2021-05-22 20:48:47.859+03	
3b0fc39c-3af4-240c-7847-e47212682a45	2021-05-22 20:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:49:07.853+03	2021-05-22 20:49:07.86+03	
97949fde-b9b4-2a0b-232f-9483a5ef71fc	2021-05-22 20:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:49:28.852+03	2021-05-22 20:49:28.86+03	
0e8faaa8-a54f-852c-b924-17767a05ffb6	2021-05-22 20:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:49:48.852+03	2021-05-22 20:49:48.863+03	
8cba9279-d6ba-7feb-263b-081535251988	2021-05-22 20:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 20:50:00.853+03	2021-05-22 20:50:00.858+03	ERROR
0ecd03ce-807c-97e8-0085-bf497e31ba30	2021-05-22 20:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:50:19.853+03	2021-05-22 20:50:19.859+03	
fe9fcb8b-7a8f-0099-63e7-6e3a2c089db1	2021-05-22 20:50:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:50:41.852+03	2021-05-22 20:50:41.859+03	
485bb33f-cd54-fe55-d813-c6a1c18b59ad	2021-05-22 20:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:51:02.853+03	2021-05-22 20:51:02.863+03	
ada0b032-9069-454d-c896-45207514aec3	2021-05-22 20:51:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:51:22.853+03	2021-05-22 20:51:22.861+03	
4086377c-1da3-129a-afb9-cc54cd693de1	2021-05-22 20:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:51:43.852+03	2021-05-22 20:51:43.861+03	
e94961a6-2d69-0c2b-37fe-ee19546feedb	2021-05-22 20:52:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:52:03.853+03	2021-05-22 20:52:03.86+03	
54d03a14-d1eb-b23e-226b-9392b397b09a	2021-05-22 20:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:52:23.853+03	2021-05-22 20:52:23.86+03	
a194f684-834d-75d8-c535-460749761935	2021-05-22 20:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:52:43.853+03	2021-05-22 20:52:43.86+03	
130b37cf-6005-37b1-838d-d36a3ae65605	2021-05-22 20:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:53:03.853+03	2021-05-22 20:53:03.859+03	
25a22896-90df-289e-ed48-6b9a9e61d1fb	2021-05-22 20:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:53:24.852+03	2021-05-22 20:53:24.859+03	
5ae1d973-484b-d664-7403-9350e8a520c9	2021-05-22 20:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:53:44.853+03	2021-05-22 20:53:44.859+03	
9591bd94-f6b8-bc83-a346-3250349ed82b	2021-05-22 20:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:54:05.853+03	2021-05-22 20:54:05.86+03	
1bc2009d-51ec-fcd3-d4f1-e3d2777338cb	2021-05-22 20:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:54:25.853+03	2021-05-22 20:54:25.871+03	
91737e25-4df7-8d27-db62-d7a9d1877ffe	2021-05-22 20:54:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:54:46.852+03	2021-05-22 20:54:46.872+03	
024efd02-a7f8-e70b-473c-63eb7ccd1ce3	2021-05-22 20:55:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:55:06.852+03	2021-05-22 20:55:06.86+03	
dcaabe69-4ba5-948f-92a3-5ee9e31fa3f9	2021-05-22 20:55:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:55:26.852+03	2021-05-22 20:55:26.87+03	
70cb80a7-f0c0-01c2-7646-c2d6350cae42	2021-05-22 20:55:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:55:46.853+03	2021-05-22 20:55:46.859+03	
ca8fa87d-588a-11b6-c602-37d60adc7047	2021-05-22 20:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:56:07.853+03	2021-05-22 20:56:07.86+03	
7cdf859e-994f-1fad-01d0-e8302facc791	2021-05-22 20:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:56:28.852+03	2021-05-22 20:56:28.859+03	
9d26986d-32b7-337d-40bf-8a1056cfad6f	2021-05-22 20:56:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:56:48.852+03	2021-05-22 20:56:48.859+03	
108fb509-ffd5-6abb-013f-f708ba021ba2	2021-05-22 20:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:57:08.852+03	2021-05-22 20:57:08.859+03	
c839998d-d249-a47c-fe5e-5e86406e6005	2021-05-22 20:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:57:28.852+03	2021-05-22 20:57:28.859+03	
731b1e75-180c-fc5d-9648-0f2cb3db53bf	2021-05-22 20:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:57:48.853+03	2021-05-22 20:57:48.859+03	
e8f8efc2-ff5a-1182-356d-61e8cc278a97	2021-05-22 20:58:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:58:08.853+03	2021-05-22 20:58:08.861+03	
4d040d7c-82d0-06f2-5990-53bd05b930cf	2021-05-22 20:58:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:58:29.853+03	2021-05-22 20:58:29.862+03	
608a7c4a-f23c-c544-2173-1c0520cb75b4	2021-05-22 20:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:58:50.852+03	2021-05-22 20:58:50.858+03	
ad8b6e6b-e304-b2e8-6bd4-d5e5f2de6b12	2021-05-22 20:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:59:10.853+03	2021-05-22 20:59:10.859+03	
4d5a9a8e-7858-b646-a370-93c8c3728336	2021-05-22 20:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:59:32.852+03	2021-05-22 20:59:32.869+03	
6bb7f014-330b-bb0b-ebdb-4d5594ea436b	2021-05-22 20:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:59:52.852+03	2021-05-22 20:59:52.859+03	
e55c0f35-3a4f-b948-195b-a68fd2656e7a	2021-05-22 21:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:00:02.853+03	2021-05-22 21:00:02.864+03	
e67387c3-b558-28b5-1338-cfa4a06fe696	2021-05-22 21:00:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:00:22.853+03	2021-05-22 21:00:22.862+03	
19946e71-c843-1464-f6fb-ca0249e86abb	2021-05-22 21:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:00:42.853+03	2021-05-22 21:00:42.876+03	
bfffcf08-b30e-5dd1-6d6e-62ff9e03902b	2021-05-22 21:01:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:01:02.853+03	2021-05-22 21:01:02.863+03	
f369b0b0-c85b-da48-879a-bf023550858f	2021-05-22 21:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:01:22.853+03	2021-05-22 21:01:22.859+03	
ff033350-b785-f58d-f673-06b887bee74f	2021-05-22 21:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:01:42.853+03	2021-05-22 21:01:42.86+03	
5a7e5465-fc3a-8b8a-ded1-922ebb394488	2021-05-22 21:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:02:03.852+03	2021-05-22 21:02:03.859+03	
05ebf79f-4221-c5c8-f084-a6cd0ff0ed61	2021-05-22 21:02:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:02:23.853+03	2021-05-22 21:02:23.859+03	
c5afa144-cbea-2346-a6f2-a434ca9ed694	2021-05-22 21:02:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:02:43.853+03	2021-05-22 21:02:43.861+03	
7418f144-773d-76a5-0832-c2ab186f5c83	2021-05-22 21:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:03:03.853+03	2021-05-22 21:03:03.859+03	
89f6be02-e94d-7d13-99a6-ca3f7069b953	2021-05-22 21:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:03:23.853+03	2021-05-22 21:03:23.859+03	
0ee4024c-ed32-892f-69b0-c6a72b823703	2021-05-22 21:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:03:44.853+03	2021-05-22 21:03:44.86+03	
f59fc609-6ef0-dbc9-1373-799689e3c5df	2021-05-22 21:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:04:04.853+03	2021-05-22 21:04:04.86+03	
04f8ed98-5211-18fe-ac18-f0d531b76735	2021-05-22 21:04:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:04:26.852+03	2021-05-22 21:04:26.867+03	
207c6b80-4b58-ad35-8578-f6578ea4cfc0	2021-05-22 21:04:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:04:46.854+03	2021-05-22 21:04:46.86+03	
e1f90312-1a00-f952-273f-9978a7087cce	2021-05-22 21:05:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:05:07.853+03	2021-05-22 21:05:07.86+03	
0b2f8568-6a95-a244-475b-71b4c9400613	2021-05-22 21:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:05:28.852+03	2021-05-22 21:05:28.86+03	
5d0978f9-8e6d-e0bd-5504-462771b07777	2021-05-22 21:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:05:49.853+03	2021-05-22 21:05:49.865+03	
f110fd65-d3bd-2728-7d5e-ce68ee03030e	2021-05-22 21:06:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:06:09.853+03	2021-05-22 21:06:09.868+03	
9c6912b8-79c9-a6a9-52c6-73f60e4af363	2021-05-22 21:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:06:30.852+03	2021-05-22 21:06:30.86+03	
50ba98fa-4f2c-cdc3-1f9d-29bd28006048	2021-05-22 21:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:06:50.853+03	2021-05-22 21:06:50.86+03	
02366b8e-1280-d740-4c10-c6626b8f2038	2021-05-22 21:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:07:10.853+03	2021-05-22 21:07:10.863+03	
e606077c-ac7f-173d-6485-8435eb521d51	2021-05-22 21:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:07:30.853+03	2021-05-22 21:07:30.863+03	
90399139-0383-fd03-810a-7d9f0ff06705	2021-05-22 20:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:47:15.853+03	2021-05-22 20:47:15.862+03	
ab4429cf-22a7-27de-fef0-8ea11bcd240e	2021-05-22 20:47:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:47:36.854+03	2021-05-22 20:47:36.861+03	
a93f1839-8dc3-9fc1-6ce7-9d6760e260f3	2021-05-22 20:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:47:57.853+03	2021-05-22 20:47:57.863+03	
386024cf-a125-faf8-9b71-599fed77dc4a	2021-05-22 20:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:48:17.853+03	2021-05-22 20:48:17.861+03	
d5c3506e-cf9a-52a9-a96c-269f5100c658	2021-05-22 20:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:48:37.853+03	2021-05-22 20:48:37.859+03	
aeeae03e-10ca-a1ee-8bfd-9313709643df	2021-05-22 20:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:48:57.853+03	2021-05-22 20:48:57.866+03	
9584a77b-b6d4-8579-e825-9adb9bd356b1	2021-05-22 20:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:49:18.852+03	2021-05-22 20:49:18.86+03	
c5d61fc6-bdb4-e527-1838-f23501f79055	2021-05-22 20:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:49:38.852+03	2021-05-22 20:49:38.86+03	
3b1592ba-4462-25e5-7abb-7f454fa84e78	2021-05-22 20:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:49:58.852+03	2021-05-22 20:49:58.859+03	
09c6f1d0-618b-93d5-011d-58a1b35f1df9	2021-05-22 20:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:50:08.853+03	2021-05-22 20:50:08.859+03	
c5ae768f-6490-3b44-b65a-fd95955d8c34	2021-05-22 20:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:50:30.853+03	2021-05-22 20:50:30.859+03	
0dec0c9c-b4da-a2cc-bafe-23bc67b9f489	2021-05-22 20:50:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:50:51.854+03	2021-05-22 20:50:51.861+03	
5a856281-5a80-c3fe-aca8-68ff07086ea7	2021-05-22 20:51:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:51:12.853+03	2021-05-22 20:51:12.859+03	
7895a9e5-91e5-f8e6-3a21-d092d889a2c1	2021-05-22 20:51:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:51:32.853+03	2021-05-22 20:51:32.859+03	
05727852-2543-f87d-5fa3-38289b2220e6	2021-05-22 20:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:51:53.852+03	2021-05-22 20:51:53.858+03	
f13f64d5-0286-1bd2-a705-0d40db758922	2021-05-22 20:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:52:13.853+03	2021-05-22 20:52:13.859+03	
ab8cf727-f665-565c-6d83-19dfb1629f72	2021-05-22 20:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:52:33.853+03	2021-05-22 20:52:33.86+03	
6a8da53d-9069-466b-83c7-56704ab6ced7	2021-05-22 20:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:52:53.853+03	2021-05-22 20:52:53.861+03	
77c3a141-531d-fd61-a9d9-1d690001516b	2021-05-22 20:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:53:14.852+03	2021-05-22 20:53:14.858+03	
b67c7448-2a9c-2064-51f1-8001689c3cbb	2021-05-22 20:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:53:34.852+03	2021-05-22 20:53:34.859+03	
001e63f8-017d-deda-ac52-aa77747be7b3	2021-05-22 20:53:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:53:55.853+03	2021-05-22 20:53:55.86+03	
461b5132-8f2c-fec6-ca1d-fa7b97d376f9	2021-05-22 20:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:54:15.853+03	2021-05-22 20:54:15.86+03	
3bbfde0e-4e77-5939-8cee-44534acaac44	2021-05-22 20:54:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:54:36.852+03	2021-05-22 20:54:36.86+03	
f465ff17-b95f-2959-8014-842396abd5bd	2021-05-22 20:54:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:54:56.852+03	2021-05-22 20:54:56.86+03	
55e4bb04-89a7-4cba-6541-c3e5423c963b	2021-05-22 20:55:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:55:16.852+03	2021-05-22 20:55:16.859+03	
21ce9c2f-253f-b535-b216-55e1b1c69e74	2021-05-22 20:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:55:36.853+03	2021-05-22 20:55:36.859+03	
6e94c0f1-db7b-91c2-3b25-a69ed7f365a5	2021-05-22 20:55:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:55:56.854+03	2021-05-22 20:55:56.863+03	
2ff7edf0-1106-ffc4-8c38-50a217b04718	2021-05-22 20:56:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:56:17.853+03	2021-05-22 20:56:17.86+03	
af7a84d2-acb3-8bff-e20d-d98e9177442b	2021-05-22 20:56:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:56:38.852+03	2021-05-22 20:56:38.859+03	
c9a9b931-bc41-5990-8022-a28d3d7bbf6f	2021-05-22 20:56:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:56:58.852+03	2021-05-22 20:56:58.859+03	
5bea074f-966f-7fa6-eb09-82b2d873246a	2021-05-22 20:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:57:18.852+03	2021-05-22 20:57:18.858+03	
8feb5ebd-f566-8657-b651-67aaf0f4a9bd	2021-05-22 20:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:57:38.853+03	2021-05-22 20:57:38.859+03	
06b6c922-d3a1-b65a-381a-27027567628a	2021-05-22 20:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:57:58.853+03	2021-05-22 20:57:58.859+03	
adaefed8-9ec2-52b6-cbeb-2fea2ae73241	2021-05-22 20:58:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:58:18.853+03	2021-05-22 20:58:18.859+03	
b5f20e6d-a207-8a8d-8287-1a20f734f738	2021-05-22 20:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:58:40.852+03	2021-05-22 20:58:40.859+03	
b7c16a5e-7f75-6e62-6d3f-d49e4a7b7781	2021-05-22 20:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:59:00.852+03	2021-05-22 20:59:00.859+03	
111fb393-a2aa-a8c9-9830-3c09ff79b206	2021-05-22 20:59:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:59:21.854+03	2021-05-22 20:59:21.862+03	
87be238a-b80d-2a26-8a87-b41b1c12adb6	2021-05-22 20:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 20:59:42.852+03	2021-05-22 20:59:42.86+03	
68b55c9c-255b-5e1c-2153-bf6c1bbf0c41	2021-05-22 21:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 21:00:00.853+03	2021-05-22 21:00:00.861+03	ERROR
f5d98f38-b8b9-05c3-a142-72a300b0eb4c	2021-05-22 21:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:00:12.853+03	2021-05-22 21:00:12.872+03	
5b3ef365-8774-f8e0-5f29-23607d3f2015	2021-05-22 21:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:00:32.853+03	2021-05-22 21:00:32.869+03	
deca5789-0525-bf3a-196f-b319b8e2db0e	2021-05-22 21:00:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:00:52.853+03	2021-05-22 21:00:52.86+03	
e4d90146-f0d8-a243-52a3-92dd1c29ca51	2021-05-22 21:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:01:12.853+03	2021-05-22 21:01:12.86+03	
efc3347d-93c2-4afa-6eda-e2d7745177f8	2021-05-22 21:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:01:32.853+03	2021-05-22 21:01:32.859+03	
2b1e0a77-09e1-6d04-a171-e4e05d2c781b	2021-05-22 21:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:01:52.853+03	2021-05-22 21:01:52.861+03	
ca518678-96cc-3055-aaa7-2e2b625a68b9	2021-05-22 21:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:02:13.852+03	2021-05-22 21:02:13.86+03	
b9af21d2-5537-5e43-7e51-be15080b6782	2021-05-22 21:02:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:02:33.853+03	2021-05-22 21:02:33.861+03	
bf739784-0e7a-9f32-2f0c-3119127f2a88	2021-05-22 21:02:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:02:53.853+03	2021-05-22 21:02:53.861+03	
dc6e2937-2bf8-c1cf-3270-890e8769f715	2021-05-22 21:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:03:13.853+03	2021-05-22 21:03:13.861+03	
740c389f-5cd2-2eaa-7913-2b6c5409e021	2021-05-22 21:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:03:34.852+03	2021-05-22 21:03:34.86+03	
8332558d-0d45-41d3-1f5d-aee429e102b6	2021-05-22 21:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:03:54.853+03	2021-05-22 21:03:54.86+03	
31ca7932-8dee-b708-4522-d311971bae1d	2021-05-22 21:04:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:04:15.853+03	2021-05-22 21:04:15.86+03	
5384e534-be36-1c84-38f2-2c0a40810643	2021-05-22 21:04:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:04:36.852+03	2021-05-22 21:04:36.859+03	
8ae76a3e-7e7d-c081-91c3-163bbf4954e3	2021-05-22 21:04:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:04:56.854+03	2021-05-22 21:04:56.881+03	
9793cc40-a856-e0d2-f319-7b58a76941f6	2021-05-22 21:05:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:05:17.853+03	2021-05-22 21:05:17.859+03	
f9ef97a9-5ca5-5a61-7122-2945c19aaa52	2021-05-22 21:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:05:38.853+03	2021-05-22 21:05:38.859+03	
17e7790c-0058-2a4b-c8c9-c020d45a9d96	2021-05-22 21:05:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:05:59.853+03	2021-05-22 21:05:59.86+03	
af1e5815-49e5-7d4f-1d4a-d29d37746efa	2021-05-22 21:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:06:19.853+03	2021-05-22 21:06:19.86+03	
45ac0278-2e46-75ad-662d-7e397225a921	2021-05-22 21:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:06:40.853+03	2021-05-22 21:06:40.859+03	
493f9149-7f2d-6ff1-44a2-b0a4678ba65b	2021-05-22 21:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:07:00.853+03	2021-05-22 21:07:00.859+03	
58d3ebe5-f78d-1fa9-e83c-6df2949bfdee	2021-05-22 21:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:07:20.853+03	2021-05-22 21:07:20.86+03	
97ca4631-a65a-7a57-e863-aca711506aad	2021-05-22 21:07:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:07:41.852+03	2021-05-22 21:07:41.858+03	
77018919-7ccc-3674-4712-9393d3d2823f	2021-05-22 21:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:08:02.852+03	2021-05-22 21:08:02.861+03	
a5b82f70-7108-c83e-5a13-78b01fa23d69	2021-05-22 21:07:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:07:51.854+03	2021-05-22 21:07:51.861+03	
b9fdfecd-2a05-9d9c-b49c-9fb1617a1a59	2021-05-22 21:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:08:12.852+03	2021-05-22 21:08:12.861+03	
cd734a47-4f21-3252-5948-909f4b35c688	2021-05-22 21:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:08:32.853+03	2021-05-22 21:08:32.859+03	
2436a4f1-a6de-3478-eec3-e55993094c3a	2021-05-22 21:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:08:53.852+03	2021-05-22 21:08:53.859+03	
bcc53f8c-af12-ff74-4163-840cbf749490	2021-05-22 21:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:09:13.852+03	2021-05-22 21:09:13.859+03	
d539a3bb-5774-d0de-40ac-1480800a2843	2021-05-22 21:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:09:34.853+03	2021-05-22 21:09:34.861+03	
a28d1598-f1c5-d3a1-9232-75fa21d421b9	2021-05-22 21:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:09:54.853+03	2021-05-22 21:09:54.86+03	
44e78216-5f55-0ec7-ccf9-913c0db34d75	2021-05-22 21:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:10:04.853+03	2021-05-22 21:10:04.861+03	
d9051900-77e7-4ba8-111e-7657a12d8ad9	2021-05-22 21:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:10:24.853+03	2021-05-22 21:10:24.859+03	
7a63eb05-f13f-4607-311c-6eee8f4f577e	2021-05-22 21:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:10:45.852+03	2021-05-22 21:10:45.859+03	
f7c0e43b-169c-f8b7-f262-65ea4be3a1dc	2021-05-22 21:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:11:05.852+03	2021-05-22 21:11:05.868+03	
4ebe66aa-f219-ce2a-1503-9ede7be68a05	2021-05-22 21:11:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:11:26.853+03	2021-05-22 21:11:26.86+03	
50121e95-ef7c-28ed-0387-435834c86934	2021-05-22 21:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:11:47.853+03	2021-05-22 21:11:47.86+03	
1ecd5d2a-9e29-66db-abfa-7cef8a094fb7	2021-05-22 21:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:12:08.852+03	2021-05-22 21:12:08.859+03	
e3b3e750-8419-aadf-40da-10875240a1ef	2021-05-22 21:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:12:28.852+03	2021-05-22 21:12:28.859+03	
6f3a1a3f-82b4-14b0-8903-d98bd823b7a7	2021-05-22 21:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:12:48.853+03	2021-05-22 21:12:48.86+03	
ca084326-fc6f-bb55-e4d0-c1a1eab272c6	2021-05-22 21:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:13:09.853+03	2021-05-22 21:13:09.861+03	
f1ca97b1-4a4c-e7e1-71cb-153384038574	2021-05-22 21:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:13:30.852+03	2021-05-22 21:13:30.863+03	
d2fe69cd-fd91-faa6-c741-2ff9aa10a501	2021-05-22 21:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:13:50.852+03	2021-05-22 21:13:50.859+03	
26e0e742-353d-265b-bb71-46016dfefc9a	2021-05-22 21:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:14:10.852+03	2021-05-22 21:14:10.859+03	
e19919a2-9d62-1451-eee2-52a39439d6f5	2021-05-22 21:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:14:30.852+03	2021-05-22 21:14:30.859+03	
cdbdc056-6886-44f9-4114-82693521de2a	2021-05-22 21:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:14:50.853+03	2021-05-22 21:14:50.86+03	
255bfdee-056d-e42d-37d1-3b40f0215eff	2021-05-22 21:15:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:15:11.854+03	2021-05-22 21:15:11.86+03	
74af3302-dede-5923-d457-8e5885191d10	2021-05-22 21:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:15:32.853+03	2021-05-22 21:15:32.859+03	
7abb9b60-f46b-6d86-f55e-93bc0f454a10	2021-05-22 21:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:15:53.852+03	2021-05-22 21:15:53.86+03	
706fe0bf-1bef-8172-ff7d-f3d8b6c7c6f3	2021-05-22 21:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:16:14.852+03	2021-05-22 21:16:14.86+03	
c5c0cbf0-4fcd-99a0-adf6-707bcd9748a2	2021-05-22 21:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:16:34.853+03	2021-05-22 21:16:34.86+03	
4a3f4a51-8741-f17f-1967-4c59aac62730	2021-05-22 21:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:16:55.852+03	2021-05-22 21:16:55.873+03	
1d7bd710-666e-bb14-4707-4f20a65d082c	2021-05-22 21:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:17:15.853+03	2021-05-22 21:17:15.863+03	
a05b83bb-0dc3-8beb-becd-81554f0a3aca	2021-05-22 21:17:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:17:36.853+03	2021-05-22 21:17:36.86+03	
4bc17277-c407-21e9-3f81-d107db70db07	2021-05-22 21:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:17:58.853+03	2021-05-22 21:17:58.859+03	
fcd179d3-3cdd-e957-bd72-c42e16ac2173	2021-05-22 21:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:18:20.853+03	2021-05-22 21:18:20.859+03	
31c6e938-c189-fade-f325-ba1bcc261b6e	2021-05-22 21:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:18:41.852+03	2021-05-22 21:18:41.86+03	
78c200da-aa13-7ae7-9384-2777fe6069da	2021-05-22 21:19:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:19:01.853+03	2021-05-22 21:19:01.873+03	
32135b8f-f59f-a837-d865-accc960fe3d6	2021-05-22 21:19:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:19:21.853+03	2021-05-22 21:19:21.86+03	
289b74c2-7cce-d59d-3221-e5b9e9683065	2021-05-22 21:19:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:19:41.853+03	2021-05-22 21:19:41.86+03	
448b685e-bebc-f8a5-6f34-2d2284b26da4	2021-05-22 21:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 21:20:00.853+03	2021-05-22 21:20:00.858+03	ERROR
97081284-4c2c-e8eb-b0ee-13f9275b90d0	2021-05-22 21:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:20:12.853+03	2021-05-22 21:20:12.859+03	
6a7ff265-6230-9498-8ec2-feff10b49e79	2021-05-22 21:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:20:33.853+03	2021-05-22 21:20:33.868+03	
d2ed6517-9b11-be53-cbb0-d4db3afc7936	2021-05-22 21:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:20:53.853+03	2021-05-22 21:20:53.86+03	
4bd555ec-e7e5-3e90-11e9-e8fef38ec245	2021-05-22 21:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:21:14.853+03	2021-05-22 21:21:14.861+03	
163f3078-2d14-118b-0087-53df9e6698e8	2021-05-22 21:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:21:35.853+03	2021-05-22 21:21:35.86+03	
5d34db12-a12b-8793-bf6b-3ce68e279f19	2021-05-22 21:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:21:55.853+03	2021-05-22 21:21:55.859+03	
46c66ca7-4427-22de-2c19-3ced4676f7a6	2021-05-22 21:22:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:22:16.853+03	2021-05-22 21:22:16.86+03	
0099ad6b-a17f-4491-024a-c49e2411b053	2021-05-22 21:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:22:37.852+03	2021-05-22 21:22:37.868+03	
5863813c-3f44-9714-aadf-2b2cbe051a40	2021-05-22 21:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:22:57.853+03	2021-05-22 21:22:57.859+03	
56693191-e95a-4691-6983-3554cf1a5d40	2021-05-22 21:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:23:18.853+03	2021-05-22 21:23:18.859+03	
8100d8c6-305a-35a5-bc0c-b7ca150f4531	2021-05-22 21:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:23:39.852+03	2021-05-22 21:23:39.859+03	
67bc837c-1f8e-9159-d4ff-9017dc33e877	2021-05-22 21:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:23:59.852+03	2021-05-22 21:23:59.859+03	
85e74322-cc80-b650-83c5-0605388e0ae8	2021-05-22 21:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:24:20.852+03	2021-05-22 21:24:20.859+03	
c9799df0-f641-74c8-ddfd-6322ba7a5a5d	2021-05-22 21:24:41.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:24:41.86+03	2021-05-22 21:24:42.173+03	
8ab22395-2b20-d118-a5f4-8254eb29ba82	2021-05-22 21:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:25:02.852+03	2021-05-22 21:25:02.859+03	
7fbd3027-3601-c466-975a-e696226214c7	2021-05-22 21:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:25:22.852+03	2021-05-22 21:25:22.859+03	
f6c0e180-689a-ff3d-8b9b-cc0d5b191fa8	2021-05-22 21:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:25:42.853+03	2021-05-22 21:25:42.86+03	
c23ba24c-80c2-9e21-6d74-6f5a98232f47	2021-05-22 21:26:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:26:02.853+03	2021-05-22 21:26:02.861+03	
d0bbb428-246a-960f-3b00-244ebff29a4e	2021-05-22 21:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:26:23.853+03	2021-05-22 21:26:23.86+03	
4aada39b-d502-821a-add2-26be3addbce6	2021-05-22 21:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:26:44.853+03	2021-05-22 21:26:44.86+03	
531167cf-4e4f-2e21-4fe2-6b55c56d3375	2021-05-22 21:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:27:05.853+03	2021-05-22 21:27:05.87+03	
0c6bc51e-add0-0508-b7eb-ee754ea25f98	2021-05-22 21:27:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:27:16.853+03	2021-05-22 21:27:16.861+03	
a5c65426-e674-d426-4f01-666b321cf875	2021-05-22 21:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:27:37.852+03	2021-05-22 21:27:37.859+03	
b702b602-ff5c-73c8-87cd-aff551e15329	2021-05-22 21:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:27:58.852+03	2021-05-22 21:27:58.858+03	
b86373e1-a9b6-6e15-7d48-5aa362a0753a	2021-05-22 21:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:28:18.852+03	2021-05-22 21:28:18.863+03	
0645cc1f-36cf-7ba5-35d1-c68f3452a2ee	2021-05-22 21:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:28:39.852+03	2021-05-22 21:28:39.86+03	
83e52f1f-ca1f-6d24-e151-35e7abb1a3f3	2021-05-22 21:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:08:22.852+03	2021-05-22 21:08:22.86+03	
b67863cb-5e81-248e-1d76-b151ecf1cc8f	2021-05-22 21:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:08:43.852+03	2021-05-22 21:08:43.874+03	
c8eb9845-3b31-380d-b7e4-cf450763854c	2021-05-22 21:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:09:03.852+03	2021-05-22 21:09:03.859+03	
583a0893-7779-3a29-9250-edf577ec5a7a	2021-05-22 21:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:09:23.853+03	2021-05-22 21:09:23.859+03	
f5af79cd-fa4c-0f85-5f96-559a06cbe133	2021-05-22 21:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:09:44.853+03	2021-05-22 21:09:44.861+03	
017393c1-7606-7ed8-ea54-1283cbf7d345	2021-05-22 21:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 21:10:00.852+03	2021-05-22 21:10:00.857+03	ERROR
70978985-66ae-ee03-9943-319e452355d0	2021-05-22 21:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:10:14.853+03	2021-05-22 21:10:14.875+03	
77228638-f3c3-2c0a-f98f-8bffc49caf7c	2021-05-22 21:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:10:35.852+03	2021-05-22 21:10:35.858+03	
4aa6ce00-dcb9-15bd-e552-7c9829d29f4d	2021-05-22 21:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:10:55.852+03	2021-05-22 21:10:55.86+03	
453c82f4-5bf2-cfdd-f880-6247781bdc26	2021-05-22 21:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:11:15.853+03	2021-05-22 21:11:15.861+03	
002428af-7da2-1d0b-45c0-521fedf931e1	2021-05-22 21:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:11:37.853+03	2021-05-22 21:11:37.861+03	
3a6d1180-6be6-00c2-5129-08ca3c721d7a	2021-05-22 21:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:11:57.853+03	2021-05-22 21:11:57.86+03	
dcd280cd-8521-2316-c85b-417be18bae72	2021-05-22 21:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:12:18.852+03	2021-05-22 21:12:18.858+03	
8e506058-1046-8347-0ed5-310cf435e778	2021-05-22 21:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:12:38.852+03	2021-05-22 21:12:38.858+03	
5d83c214-4895-7039-88e4-477d8f2a60a2	2021-05-22 21:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:12:59.852+03	2021-05-22 21:12:59.86+03	
8c959510-d269-7949-c301-02ffbaa55cdf	2021-05-22 21:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:13:19.853+03	2021-05-22 21:13:19.86+03	
ed440304-e042-0fd8-7965-1cd72b847f9f	2021-05-22 21:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:13:40.852+03	2021-05-22 21:13:40.874+03	
4a933ed2-641d-ed01-4b3b-1ad1779924fc	2021-05-22 21:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:14:00.852+03	2021-05-22 21:14:00.859+03	
1bcbf1fa-93b7-e454-2134-eb0019526f2e	2021-05-22 21:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:14:20.852+03	2021-05-22 21:14:20.859+03	
e8cb28a1-b18b-7373-6ad7-8b6037b26a4d	2021-05-22 21:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:14:40.853+03	2021-05-22 21:14:40.859+03	
86799910-94a3-0c92-e4e1-d7941e135307	2021-05-22 21:15:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:15:01.853+03	2021-05-22 21:15:01.859+03	
06e8ac02-0db4-ca2d-c4d7-ed7f8edc628e	2021-05-22 21:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:15:22.852+03	2021-05-22 21:15:22.858+03	
3cf39019-a2f5-ea4b-62f0-5732401211ee	2021-05-22 21:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:15:43.852+03	2021-05-22 21:15:43.862+03	
8fffd2dc-1ac8-45ce-cd2d-721bb14eaedd	2021-05-22 21:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:16:03.853+03	2021-05-22 21:16:03.859+03	
aae94559-53aa-f726-c699-75360f99645d	2021-05-22 21:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:16:24.852+03	2021-05-22 21:16:24.859+03	
7dd38ff0-7357-f65e-ab06-e910becc7ef2	2021-05-22 21:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:16:44.853+03	2021-05-22 21:16:44.859+03	
a33325d4-9a19-73e6-f389-1814458eedac	2021-05-22 21:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:17:05.852+03	2021-05-22 21:17:06.179+03	
cac84a8f-67f2-1ab3-322b-145ae5b7b040	2021-05-22 21:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:17:25.853+03	2021-05-22 21:17:25.859+03	
0149ceed-94a3-8f88-4100-75fc3bef1ca5	2021-05-22 21:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:17:47.853+03	2021-05-22 21:17:47.86+03	
5c902f55-129b-275d-f914-9981503db9e8	2021-05-22 21:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:18:09.853+03	2021-05-22 21:18:09.86+03	
1363be9c-1891-9664-803c-af03a5062583	2021-05-22 21:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:18:30.853+03	2021-05-22 21:18:30.859+03	
bf27477c-396c-016f-c7ae-69994579c8b3	2021-05-22 21:18:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:18:51.853+03	2021-05-22 21:18:51.86+03	
618acc95-74a2-8037-74be-3a141283ef9c	2021-05-22 21:19:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:19:11.853+03	2021-05-22 21:19:11.86+03	
70cd4ab7-7b06-ebb9-5193-70e26bd00ac5	2021-05-22 21:19:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:19:31.853+03	2021-05-22 21:19:31.861+03	
a67623a3-2f9f-bb9d-bf64-92a2e24ee102	2021-05-22 21:19:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:19:51.853+03	2021-05-22 21:19:51.861+03	
d439a6b6-4278-f530-b4b8-84858fcec0d5	2021-05-22 21:20:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:20:01.854+03	2021-05-22 21:20:01.861+03	
4ecf2c1c-f538-992e-d6ea-6bfbef180576	2021-05-22 21:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:20:23.852+03	2021-05-22 21:20:23.858+03	
fa15873f-e7d5-e1b4-f01c-b2c63c9b6d88	2021-05-22 21:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:20:43.853+03	2021-05-22 21:20:43.86+03	
d334025e-2a88-aa7b-26c3-8cd0225c4b31	2021-05-22 21:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:21:04.852+03	2021-05-22 21:21:04.86+03	
0bd5a4b7-f96b-5a6e-381b-fe41eb39e531	2021-05-22 21:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:21:25.853+03	2021-05-22 21:21:25.868+03	
e24134c3-3eee-775a-c0a6-7ff4ffa1f3c6	2021-05-22 21:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:21:45.853+03	2021-05-22 21:21:45.859+03	
e69eb356-f93f-572c-36f8-28a971f9eca6	2021-05-22 21:22:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:22:06.852+03	2021-05-22 21:22:06.864+03	
41dd7aee-0dc0-32aa-be75-cb47fa7eaddd	2021-05-22 21:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:22:27.852+03	2021-05-22 21:22:27.861+03	
0328e966-de15-aab2-d66e-3a5979e3f7ea	2021-05-22 21:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:22:47.852+03	2021-05-22 21:22:47.859+03	
5728897c-1cbc-139b-d470-656880a2acad	2021-05-22 21:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:23:08.853+03	2021-05-22 21:23:08.86+03	
17f7718a-1a57-e5d4-184b-ab877550a0aa	2021-05-22 21:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:23:28.853+03	2021-05-22 21:23:28.86+03	
c6f5f92e-f6fd-ed6e-68b2-15ca198babf7	2021-05-22 21:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:23:49.852+03	2021-05-22 21:23:49.859+03	
ae18f214-22fa-4ea9-66fa-7d711982e496	2021-05-22 21:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:24:09.853+03	2021-05-22 21:24:09.861+03	
4cbb603f-e80f-4aa2-b1b0-06b7bf2d1e14	2021-05-22 21:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:24:30.853+03	2021-05-22 21:24:30.859+03	
372044c7-2edc-f010-4c9b-4fd36fc1f063	2021-05-22 21:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:24:52.852+03	2021-05-22 21:24:52.859+03	
6be543cd-4c70-344c-82be-56fdcb917e8d	2021-05-22 21:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:25:12.852+03	2021-05-22 21:25:12.859+03	
669a37d7-c074-2d69-5579-6328e0e1baf0	2021-05-22 21:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:25:32.853+03	2021-05-22 21:25:32.859+03	
1bfce4af-f6ca-f246-a472-23b75a1ebc83	2021-05-22 21:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:25:52.853+03	2021-05-22 21:25:52.859+03	
ec8a5c36-b059-0acc-9664-3bc4612d23f5	2021-05-22 21:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:26:13.853+03	2021-05-22 21:26:13.868+03	
c9b59c5f-1873-570b-ce5f-7bed8da85341	2021-05-22 21:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:26:34.852+03	2021-05-22 21:26:34.864+03	
225af367-0f1c-b4e1-0894-3f8a1ccbdc56	2021-05-22 21:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:26:55.853+03	2021-05-22 21:26:55.859+03	
fcc58f3d-b5b1-ceb4-6d66-28c212f75845	2021-05-22 21:27:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:27:26.853+03	2021-05-22 21:27:26.861+03	
f21a3eb3-e62a-fa53-fdd1-9120e7878a78	2021-05-22 21:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:27:47.853+03	2021-05-22 21:27:47.861+03	
257a5657-4e16-b2f0-5d37-e38fa56e57fa	2021-05-22 21:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:28:08.852+03	2021-05-22 21:28:08.86+03	
3df3e29d-6065-d437-6d64-3004e9531b65	2021-05-22 21:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:28:28.853+03	2021-05-22 21:28:28.86+03	
54e806f7-1dfd-5bfa-d44f-411d9c9b36c1	2021-05-22 21:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:28:49.853+03	2021-05-22 21:28:49.872+03	
fd6916d3-5d4e-8e5f-340d-e89b91466655	2021-05-22 21:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:29:09.853+03	2021-05-22 21:29:09.862+03	
13334ac6-7164-7a2b-5cc7-343325b6bb82	2021-05-22 21:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:29:29.853+03	2021-05-22 21:29:29.859+03	
702fa583-72f9-7677-a86d-e99f69abfe9c	2021-05-22 21:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:28:59.853+03	2021-05-22 21:28:59.861+03	
70700caf-b072-a9a8-17c6-c9198db251d0	2021-05-22 21:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:29:19.853+03	2021-05-22 21:29:19.86+03	
04a0e419-4397-66d7-73c4-32fcc7a75373	2021-05-22 21:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:29:39.853+03	2021-05-22 21:29:39.874+03	
1294e34b-cdeb-8fea-aa6b-debb82f43c35	2021-05-22 21:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:30:00.853+03	2021-05-22 21:30:00.861+03	
9de016d6-77e5-8678-43f2-3d01db22a418	2021-05-22 21:30:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:30:21.854+03	2021-05-22 21:30:21.86+03	
75402531-78d4-7d57-cd86-9f5baf05578c	2021-05-22 21:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:30:42.852+03	2021-05-22 21:30:42.859+03	
553a8a10-148a-0878-910d-d17b48ef782e	2021-05-22 21:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:31:02.853+03	2021-05-22 21:31:02.859+03	
e72fcb26-6b83-cc3c-4143-ce41d8c47518	2021-05-22 21:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:31:22.853+03	2021-05-22 21:31:22.859+03	
67428ee6-7990-6c0e-344b-70bd1aed0f87	2021-05-22 21:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:31:43.853+03	2021-05-22 21:31:43.859+03	
c1e60340-99a4-db3e-66ad-537636474abd	2021-05-22 21:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:32:03.853+03	2021-05-22 21:32:03.86+03	
7f7b8afe-8f75-0af5-7693-1c86f95f70ed	2021-05-22 21:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:32:23.853+03	2021-05-22 21:32:23.861+03	
4f1dff58-b61e-8df1-86ea-8d244a4d2ca1	2021-05-22 21:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:32:44.853+03	2021-05-22 21:32:44.859+03	
08752fc1-07d9-1bfb-3611-d01b3b47306d	2021-05-22 21:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:33:05.852+03	2021-05-22 21:33:05.858+03	
513a7375-49ce-d45e-b410-fc8881c965eb	2021-05-22 21:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:33:25.853+03	2021-05-22 21:33:25.858+03	
d73dfca4-bf95-07f4-7f97-d934c4b6439f	2021-05-22 21:33:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:33:46.854+03	2021-05-22 21:33:46.86+03	
2566b7ce-2e5e-2963-996d-08dbc8112501	2021-05-22 21:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:34:07.853+03	2021-05-22 21:34:07.86+03	
4e88fd29-602c-08f7-edfb-013ce3f39502	2021-05-22 21:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:34:28.852+03	2021-05-22 21:34:28.859+03	
cf23c19b-4b34-8313-1028-6c8cb97f1f31	2021-05-22 21:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:34:48.852+03	2021-05-22 21:34:48.859+03	
6e1f30a9-a515-cfaf-1507-79b5e283fde6	2021-05-22 21:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:35:08.853+03	2021-05-22 21:35:08.86+03	
e69dabac-0937-ebfe-18e5-81842074df61	2021-05-22 21:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:35:29.852+03	2021-05-22 21:35:29.859+03	
2040b89d-298d-ae1e-2fa1-a315fbeede45	2021-05-22 21:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:35:49.852+03	2021-05-22 21:35:49.859+03	
158df896-300c-a9c2-2ce5-7b984912f743	2021-05-22 21:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:36:10.852+03	2021-05-22 21:36:10.873+03	
06dacbff-cac4-d140-4902-f68b660f401b	2021-05-22 21:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:36:30.852+03	2021-05-22 21:36:30.858+03	
3a77165d-a489-9a93-ed55-02469fe9ee02	2021-05-22 21:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:36:50.853+03	2021-05-22 21:36:50.86+03	
f1166257-3a9a-6748-9454-2ccb934aff6e	2021-05-22 21:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:37:10.853+03	2021-05-22 21:37:10.859+03	
bb56736a-b018-4b5f-5358-e04251aa6edf	2021-05-22 21:37:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:37:31.852+03	2021-05-22 21:37:31.858+03	
4f64e285-401f-8a81-3077-9b87d4c79ef8	2021-05-22 21:37:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:37:51.853+03	2021-05-22 21:37:51.86+03	
d8d67214-b676-d7c3-e60f-6ce8bd848a8c	2021-05-22 21:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:38:12.852+03	2021-05-22 21:38:12.859+03	
cca5d1c6-2b70-d025-892c-2eadcc35ba3b	2021-05-22 21:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:38:32.852+03	2021-05-22 21:38:32.86+03	
f810ef37-95f5-5bec-8f4d-27c76a47fe2b	2021-05-22 21:38:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:38:52.853+03	2021-05-22 21:38:52.859+03	
2ce0797e-0e77-13e6-fd7f-401e7e38b284	2021-05-22 21:39:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:39:13.852+03	2021-05-22 21:39:13.859+03	
2871587c-618f-b822-3235-0c43dba21425	2021-05-22 21:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:39:33.853+03	2021-05-22 21:39:33.871+03	
8890360e-d43b-c6a5-c079-675d4d5a9ddb	2021-05-22 21:39:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:39:54.852+03	2021-05-22 21:39:54.868+03	
741ebb41-1ccb-3e74-5145-4647c8862bbb	2021-05-22 21:40:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:40:04.852+03	2021-05-22 21:40:04.859+03	
ab1433a1-546f-50c3-09b5-8c762b24714c	2021-05-22 21:40:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:40:24.853+03	2021-05-22 21:40:24.86+03	
a366ca8e-d9a9-c79c-8514-be8ae12a7926	2021-05-22 21:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:40:44.853+03	2021-05-22 21:40:44.861+03	
0c170cc4-fecc-5582-ef5d-292c58e2e36b	2021-05-22 21:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:41:04.853+03	2021-05-22 21:41:04.862+03	
188f5703-b052-d1ba-86c8-a4f82fc4224e	2021-05-22 21:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:41:24.853+03	2021-05-22 21:41:24.865+03	
f1263ea5-aa26-a264-d31a-675eb0010dc7	2021-05-22 21:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:41:44.853+03	2021-05-22 21:41:44.859+03	
148de5a5-83e8-7557-1d59-4bf04c653fbe	2021-05-22 21:42:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:42:06.852+03	2021-05-22 21:42:06.859+03	
8cfc947b-b9c1-d303-143b-5b313d3441f3	2021-05-22 21:42:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:42:27.852+03	2021-05-22 21:42:27.859+03	
f9875a30-bd9f-1786-f51e-0c991f76295c	2021-05-22 21:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:42:47.853+03	2021-05-22 21:42:47.874+03	
ebb178be-2ac6-420c-5129-990d8ce7cc83	2021-05-22 21:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:43:07.853+03	2021-05-22 21:43:07.859+03	
8a67bdf3-e784-389b-6a07-7a00dcc2f1a4	2021-05-22 21:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:43:28.852+03	2021-05-22 21:43:28.873+03	
2d147811-9612-ce1b-21a5-22eea13c3367	2021-05-22 21:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:43:48.852+03	2021-05-22 21:43:48.859+03	
36b664b6-8ef8-d375-1b36-5381d3aa2879	2021-05-22 21:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:44:08.852+03	2021-05-22 21:44:08.86+03	
23b92de6-7b04-dedb-39d0-32a095d07b72	2021-05-22 21:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:44:28.853+03	2021-05-22 21:44:28.86+03	
19d3bf41-0195-22d2-909e-7274073f072a	2021-05-22 21:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:44:48.853+03	2021-05-22 21:44:48.86+03	
d99cc086-695b-5802-c46e-9bc6edbafdd1	2021-05-22 21:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:45:09.853+03	2021-05-22 21:45:09.859+03	
48eabd39-1f5c-ce7e-e920-5a3fbd24495d	2021-05-22 21:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:45:29.853+03	2021-05-22 21:45:29.859+03	
cca188d4-8a34-35ef-46b7-148f330395f7	2021-05-22 21:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:45:49.853+03	2021-05-22 21:45:49.861+03	
f8b575e3-4283-5e2f-0d61-0fc956212646	2021-05-22 21:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:46:09.853+03	2021-05-22 21:46:09.859+03	
000514cb-2545-5e52-588c-d1b174171ae0	2021-05-22 21:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:46:29.853+03	2021-05-22 21:46:29.859+03	
d4ffc87d-c9f8-2ddb-f8a4-d2dc8fd41892	2021-05-22 21:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:46:50.853+03	2021-05-22 21:46:50.862+03	
cdc5f75f-9018-40b2-e9ba-e8e9d8f2f38a	2021-05-22 21:47:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:47:11.853+03	2021-05-22 21:47:11.862+03	
5a95e3c5-a0bf-794c-d4b4-5f64a3297c44	2021-05-22 21:47:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:47:31.854+03	2021-05-22 21:47:31.861+03	
7f2c0b23-e439-af7c-8b80-5c5a48e8688d	2021-05-22 21:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:47:52.852+03	2021-05-22 21:47:52.859+03	
4073c69b-3417-70f9-654f-a30b8e7b6e89	2021-05-22 21:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:48:13.853+03	2021-05-22 21:48:13.859+03	
feb849a3-fb14-fbe4-3eef-dac3c73a74c8	2021-05-22 21:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:48:34.852+03	2021-05-22 21:48:34.861+03	
f2c26159-370d-b8bc-b070-9eab239ac86c	2021-05-22 21:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:48:54.853+03	2021-05-22 21:48:54.859+03	
d95160e0-1451-dc3f-8133-7ad037c2fe3d	2021-05-22 21:49:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:49:16.853+03	2021-05-22 21:49:16.859+03	
e79086f9-7041-9294-9886-008b0956878c	2021-05-22 21:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:49:37.853+03	2021-05-22 21:49:37.859+03	
340fc9bf-6326-bf45-dbd9-f96d8f10507a	2021-05-22 21:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:49:58.852+03	2021-05-22 21:49:58.86+03	
7ed34337-d9d3-bcc7-3165-5209b4ff6ca5	2021-05-22 21:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:29:50.852+03	2021-05-22 21:29:50.859+03	
a9390887-7151-996f-0bf1-a594048d0e91	2021-05-22 21:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 21:30:00.853+03	2021-05-22 21:30:00.869+03	ERROR
200ac934-d866-4682-4ebe-d52eaf2226cf	2021-05-22 21:30:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:30:11.854+03	2021-05-22 21:30:11.86+03	
d91d274a-460f-7add-c90b-cc24aff04361	2021-05-22 21:30:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:30:31.854+03	2021-05-22 21:30:31.861+03	
46fba315-8ac5-7cb8-4ef5-f7da4148fe53	2021-05-22 21:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:30:52.853+03	2021-05-22 21:30:52.86+03	
dae4ea6a-3c1b-24b3-a504-770faa33fcab	2021-05-22 21:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:31:12.853+03	2021-05-22 21:31:12.859+03	
06d009c7-6e4b-9fb4-7e7e-8c8019ad7450	2021-05-22 21:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:31:33.853+03	2021-05-22 21:31:33.86+03	
7e5f9f39-1f24-909e-e7b8-534787844128	2021-05-22 21:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:31:53.853+03	2021-05-22 21:31:53.859+03	
e0023de1-d33c-356e-be1c-f65a761b5c1c	2021-05-22 21:32:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:32:13.853+03	2021-05-22 21:32:13.859+03	
890bda77-cbcb-4123-6d2f-9d8d06951c30	2021-05-22 21:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:32:34.853+03	2021-05-22 21:32:34.861+03	
95fe17ab-58d4-f458-35ba-4481dcfe3bd5	2021-05-22 21:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:32:54.853+03	2021-05-22 21:32:54.86+03	
05fc1a1a-65f7-9c0a-0ea1-6b4b815d229c	2021-05-22 21:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:33:15.852+03	2021-05-22 21:33:15.859+03	
b63e6830-94fe-1649-5c61-c6b83e842be6	2021-05-22 21:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:33:35.853+03	2021-05-22 21:33:35.862+03	
b565f081-ddad-4f66-63a4-546b6bd1085f	2021-05-22 21:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:33:57.853+03	2021-05-22 21:33:57.86+03	
d649d5af-086d-e539-fdcf-414d674f89c4	2021-05-22 21:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:34:17.853+03	2021-05-22 21:34:17.861+03	
5fb217b4-c55e-cfb0-ae67-54015060056d	2021-05-22 21:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:34:38.852+03	2021-05-22 21:34:38.859+03	
4c00213a-9cbf-7c59-4aec-93965a765e09	2021-05-22 21:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:34:58.852+03	2021-05-22 21:34:58.858+03	
85ccf880-d65b-b188-c8b4-4c32a85c3bcf	2021-05-22 21:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:35:19.852+03	2021-05-22 21:35:19.859+03	
47dc6e43-530b-d8df-429d-34415ea24322	2021-05-22 21:35:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:35:39.852+03	2021-05-22 21:35:39.86+03	
86eebfb4-6982-e99e-dede-e451af48b0d6	2021-05-22 21:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:35:59.853+03	2021-05-22 21:35:59.861+03	
1546ebfa-0ac6-6824-f781-7876386529fa	2021-05-22 21:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:36:20.852+03	2021-05-22 21:36:20.858+03	
66edf8ec-7023-b83e-1d65-285b5bf7e207	2021-05-22 21:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:36:40.852+03	2021-05-22 21:36:40.859+03	
159971ab-dd3a-3801-eae8-77eb0e2d5ded	2021-05-22 21:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:37:00.853+03	2021-05-22 21:37:00.86+03	
849f20da-6d32-a433-7c0e-5ea836201aa0	2021-05-22 21:37:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:37:20.853+03	2021-05-22 21:37:20.865+03	
5224490f-48b3-6a07-bb8d-375a05b51066	2021-05-22 21:37:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:37:41.852+03	2021-05-22 21:37:41.865+03	
3bdc2c33-c6b5-c1a2-fc8c-31fce203fb0b	2021-05-22 21:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:38:02.852+03	2021-05-22 21:38:02.858+03	
9f0f2661-a733-904c-9a45-45b0ca592236	2021-05-22 21:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:38:22.852+03	2021-05-22 21:38:22.859+03	
f5a61a63-e36e-9724-dd72-651a3e615b0f	2021-05-22 21:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:38:42.852+03	2021-05-22 21:38:42.859+03	
2bc53bb0-c8bc-c284-5437-81091e7d5c6d	2021-05-22 21:39:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:39:03.852+03	2021-05-22 21:39:03.859+03	
0b233b58-3669-eee0-7254-27410425c8b3	2021-05-22 21:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:39:23.853+03	2021-05-22 21:39:23.859+03	
7a88f9d7-5c3a-4d7d-d1ed-e62f6d6239d6	2021-05-22 21:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:39:43.853+03	2021-05-22 21:39:43.868+03	
463c0870-62b9-d0b3-4a9c-8b3d65b67c3a	2021-05-22 21:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 21:40:00.852+03	2021-05-22 21:40:00.857+03	ERROR
49d1e9c5-f7cb-c980-073b-e54ff2f2c593	2021-05-22 21:40:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:40:14.853+03	2021-05-22 21:40:14.864+03	
e9407e42-add5-82af-a162-9ed847fd329c	2021-05-22 21:40:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:40:34.853+03	2021-05-22 21:40:34.859+03	
50cf2241-1768-c162-a6a3-109d08e6e2a2	2021-05-22 21:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:40:54.853+03	2021-05-22 21:40:54.859+03	
27b55249-580d-81bf-189f-3888446d89e7	2021-05-22 21:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:41:14.853+03	2021-05-22 21:41:14.86+03	
97b157f9-0c4a-923a-a53a-aa10658a54de	2021-05-22 21:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:41:34.853+03	2021-05-22 21:41:34.859+03	
7f773afc-fa29-8c4e-eb13-9bc2a76b30fe	2021-05-22 21:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:41:55.853+03	2021-05-22 21:41:55.859+03	
d9564132-1826-6acf-95ac-7dc256f9c11e	2021-05-22 21:42:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:42:16.853+03	2021-05-22 21:42:16.874+03	
e55545c9-1091-db85-9663-1700a1ac8c1d	2021-05-22 21:42:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:42:37.852+03	2021-05-22 21:42:37.863+03	
7df94e28-f977-ce19-f896-f64aaf582a3b	2021-05-22 21:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:42:57.853+03	2021-05-22 21:42:57.861+03	
8357ddb2-1e2e-d2d2-20c7-dfdb515ce3fc	2021-05-22 21:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:43:18.852+03	2021-05-22 21:43:18.858+03	
c53bf962-f77b-2be6-5dd9-cabd642eae1e	2021-05-22 21:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:43:38.852+03	2021-05-22 21:43:38.86+03	
8af429e6-553b-5174-d8b3-1799c87b03f0	2021-05-22 21:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:43:58.852+03	2021-05-22 21:43:58.861+03	
742cd05b-8b81-c658-d4b3-ac2ce95c4c92	2021-05-22 21:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:44:18.852+03	2021-05-22 21:44:18.859+03	
ebd29222-2536-953a-8640-fd07cf2c5c7f	2021-05-22 21:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:44:38.853+03	2021-05-22 21:44:38.86+03	
73e1e0d7-2c00-44d5-e420-696d66798a41	2021-05-22 21:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:44:59.852+03	2021-05-22 21:44:59.858+03	
0c60b7dd-9e7b-d759-b8ad-dfda70241b3d	2021-05-22 21:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:45:19.853+03	2021-05-22 21:45:19.869+03	
197e906f-b923-c3ec-8b87-42f6b8c24423	2021-05-22 21:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:45:39.853+03	2021-05-22 21:45:39.86+03	
9e19fd2c-cc6d-6d33-8844-a2339e5615df	2021-05-22 21:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:45:59.853+03	2021-05-22 21:45:59.86+03	
f57446a3-c979-ea48-48f8-12001d4a6895	2021-05-22 21:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:46:19.853+03	2021-05-22 21:46:19.86+03	
81febf88-0445-ec92-28d4-02991d229072	2021-05-22 21:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:46:40.853+03	2021-05-22 21:46:40.859+03	
f37ccb31-dfc0-8c30-6938-22e7ae8c2273	2021-05-22 21:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:47:00.853+03	2021-05-22 21:47:00.859+03	
94f140e5-b3dc-1570-5111-dd197224e90e	2021-05-22 21:47:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:47:21.853+03	2021-05-22 21:47:21.868+03	
a7b3746c-c06c-69ad-1d75-6adca4881a6d	2021-05-22 21:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:47:42.852+03	2021-05-22 21:47:42.859+03	
eb75d61d-0e94-7a6c-53dd-fdf072fc1aa6	2021-05-22 21:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:48:02.853+03	2021-05-22 21:48:02.859+03	
54447add-f0a0-e135-0f08-da6ef977bd04	2021-05-22 21:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:48:24.852+03	2021-05-22 21:48:24.858+03	
8ccb6ae8-a363-219c-01ae-11f5f21f406a	2021-05-22 21:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:48:44.853+03	2021-05-22 21:48:44.859+03	
d8ccbc5d-0bcd-9c28-826b-a4629735c8c8	2021-05-22 21:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:49:05.853+03	2021-05-22 21:49:05.859+03	
d1f70635-ad7d-8b98-8c14-33fa445dfae4	2021-05-22 21:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:49:27.853+03	2021-05-22 21:49:27.86+03	
be61ca2c-1f33-13be-e6d1-4978769fc6d0	2021-05-22 21:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:49:48.852+03	2021-05-22 21:49:48.859+03	
ee937e96-28f2-503e-0195-d503981e9563	2021-05-22 21:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 21:50:00.853+03	2021-05-22 21:50:00.857+03	ERROR
03c259c9-0d14-daee-965e-502e0982797c	2021-05-22 21:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:50:18.853+03	2021-05-22 21:50:18.86+03	
4c8e9c4c-1e03-6559-9ffa-be8ff181b7a3	2021-05-22 21:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:50:08.853+03	2021-05-22 21:50:08.859+03	
8ddf1fb5-352b-9c40-ea11-8dd4884bed9a	2021-05-22 21:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:50:29.853+03	2021-05-22 21:50:29.859+03	
cbc5d15c-8957-1bc7-768f-87ac86290573	2021-05-22 21:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:50:49.853+03	2021-05-22 21:50:49.859+03	
395a6c3a-72f0-313c-c1ab-f7bccd02a7bc	2021-05-22 21:51:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:51:10.852+03	2021-05-22 21:51:10.866+03	
24caee49-79e3-70bb-939d-0eb55e1bad60	2021-05-22 21:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:51:30.853+03	2021-05-22 21:51:30.859+03	
24381f09-db46-0193-a55f-452ac64a1ff3	2021-05-22 21:51:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:51:51.853+03	2021-05-22 21:51:51.859+03	
dbb9f13d-d669-069e-e736-7c604f522d1f	2021-05-22 21:52:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:52:11.853+03	2021-05-22 21:52:11.86+03	
7ad99885-e35c-c212-e763-5a5a9be6e212	2021-05-22 21:52:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:52:31.854+03	2021-05-22 21:52:31.861+03	
5eb5bd9f-21be-8f6f-7c65-6d2f64b7ec5a	2021-05-22 21:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:52:52.852+03	2021-05-22 21:52:52.862+03	
bd70a848-3625-9421-38d2-4e862d9b8cfb	2021-05-22 21:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:53:23.852+03	2021-05-22 21:53:23.859+03	
ff135dc7-509e-7fb7-db6f-c3789ccbac81	2021-05-22 21:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:53:43.853+03	2021-05-22 21:53:43.859+03	
973e2e15-1d43-a46f-dd80-213ad0f72c5c	2021-05-22 21:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:54:04.853+03	2021-05-22 21:54:04.871+03	
ba5e5c37-968b-70c3-1313-6fe7246987b7	2021-05-22 21:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:54:24.853+03	2021-05-22 21:54:24.859+03	
a37b2ef1-20b6-c90e-18cd-0181b9385372	2021-05-22 21:54:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:54:46.854+03	2021-05-22 21:54:46.861+03	
9b210df7-ff4c-0a51-2016-d1e1183e5da7	2021-05-22 21:55:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:55:07.853+03	2021-05-22 21:55:07.86+03	
4e156432-04ae-848b-dc82-850d5dbc7ff0	2021-05-22 21:55:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:55:27.853+03	2021-05-22 21:55:27.861+03	
6811ec03-23e4-403f-38ac-dc0487b2e7d9	2021-05-22 21:55:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:55:47.853+03	2021-05-22 21:55:47.868+03	
92ecec09-b674-919e-fadc-f9a5f4f0b990	2021-05-22 21:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:56:07.853+03	2021-05-22 21:56:07.859+03	
0fdf6c16-f2bb-79b7-7e6a-c627a0562c45	2021-05-22 21:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:56:27.853+03	2021-05-22 21:56:27.86+03	
5c92fed7-f861-b313-5367-a4094dcabb48	2021-05-22 21:56:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:56:48.853+03	2021-05-22 21:56:48.859+03	
5b70f516-b119-aa43-4764-388bb1dce2df	2021-05-22 21:57:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:57:08.853+03	2021-05-22 21:57:08.861+03	
a9eb257c-4eaf-db93-3819-bc0e5ff7d745	2021-05-22 21:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:57:28.853+03	2021-05-22 21:57:28.859+03	
d81ce5f1-dbfc-d94f-fa31-8115cb4078ba	2021-05-22 21:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:57:48.853+03	2021-05-22 21:57:48.859+03	
0ac5f29a-c21e-5bd0-2e3c-9ddd65bd4a24	2021-05-22 21:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:58:09.853+03	2021-05-22 21:58:09.859+03	
fbd196a2-d652-9a5e-91ce-13ba29157544	2021-05-22 21:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:58:30.853+03	2021-05-22 21:58:30.86+03	
9852121c-b978-ff6c-0157-d66d70ea55e2	2021-05-22 21:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:58:50.853+03	2021-05-22 21:58:50.871+03	
8f5fa1d7-a966-c2af-571d-80c42f6d6ac8	2021-05-22 21:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:59:10.853+03	2021-05-22 21:59:10.859+03	
07788133-e815-54ea-3534-27f2f7d5199e	2021-05-22 21:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:59:32.852+03	2021-05-22 21:59:32.859+03	
e230d0be-6618-eac9-7a10-60d2198d3afb	2021-05-22 21:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:59:52.852+03	2021-05-22 21:59:52.859+03	
ecc92d3e-0865-e54b-7bd3-d9769b7cad29	2021-05-22 22:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:00:02.853+03	2021-05-22 22:00:02.869+03	
b7a49a9c-8011-5914-0fec-fde9e8b51107	2021-05-22 22:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:00:22.853+03	2021-05-22 22:00:22.862+03	
02b825f2-95d1-74b2-84af-52604dbad7f2	2021-05-22 22:00:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:00:42.853+03	2021-05-22 22:00:42.858+03	
3d754a27-69fd-dae5-b6d8-ab4dc97c5e98	2021-05-22 22:01:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:01:02.853+03	2021-05-22 22:01:02.859+03	
e1db8b39-ee7f-2026-3584-05024d0af16e	2021-05-22 22:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:01:23.853+03	2021-05-22 22:01:23.86+03	
d1756a2c-df42-27f0-490f-f65b6eb936bf	2021-05-22 22:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:01:44.853+03	2021-05-22 22:01:44.86+03	
1870b698-75f7-db4e-2eba-a751d85d1520	2021-05-22 22:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:02:04.853+03	2021-05-22 22:02:04.86+03	
141acc3e-4146-f552-8052-a3d2cc367f1c	2021-05-22 22:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:02:24.853+03	2021-05-22 22:02:24.862+03	
6bca691e-4fac-9713-43fd-2b7ec6bd8182	2021-05-22 22:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:02:44.853+03	2021-05-22 22:02:44.86+03	
cd8b79cd-48df-8360-6b0b-362c13f2ea5d	2021-05-22 22:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:03:05.852+03	2021-05-22 22:03:05.861+03	
cf0d1275-9a61-fbdb-d74c-3200a79d63d0	2021-05-22 22:03:26.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:03:26.859+03	2021-05-22 22:03:26.865+03	
1fbaafa1-6c47-fb81-a232-20bef711a412	2021-05-22 22:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:03:47.853+03	2021-05-22 22:03:47.86+03	
c8ea0d80-fe74-112f-0d55-287e65bbe7ed	2021-05-22 22:04:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:04:07.853+03	2021-05-22 22:04:07.871+03	
4d9e535f-337e-03e0-d27c-a44b8dac5ee2	2021-05-22 22:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:04:27.853+03	2021-05-22 22:04:27.861+03	
e85e90f9-71c0-83f5-65ca-d03e02eb038c	2021-05-22 22:04:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:04:47.853+03	2021-05-22 22:04:47.859+03	
892da31f-8ebd-0873-e294-b6124867f860	2021-05-22 22:05:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:05:08.852+03	2021-05-22 22:05:08.859+03	
dcc6eee7-88ee-7fa8-065a-7d0297f5f789	2021-05-22 22:05:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:05:28.852+03	2021-05-22 22:05:28.859+03	
a665197e-7c29-1e89-3eb0-36c54eea30b7	2021-05-22 22:05:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:05:48.853+03	2021-05-22 22:05:48.859+03	
48d12f32-02ce-c18d-3246-6f11270f4fd9	2021-05-22 22:06:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:06:08.853+03	2021-05-22 22:06:08.863+03	
026614da-6244-82aa-ba90-e9cef2a34147	2021-05-22 22:06:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:06:29.853+03	2021-05-22 22:06:29.859+03	
db59f390-117c-8b70-dd55-8cf59e028383	2021-05-22 22:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:06:50.852+03	2021-05-22 22:06:50.86+03	
a0a7d5e1-be03-73a7-3a91-76581a1fda0f	2021-05-22 22:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:07:10.852+03	2021-05-22 22:07:10.866+03	
d96110d5-4d88-a306-22c3-36ebac21f9e5	2021-05-22 22:07:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:07:31.853+03	2021-05-22 22:07:31.868+03	
f2aa9891-f54b-0d2d-8879-a35720127cd6	2021-05-22 22:07:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:07:51.854+03	2021-05-22 22:07:51.861+03	
77cfe67e-a805-b9b7-1ae2-7d6f39e3cbac	2021-05-22 22:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:08:12.853+03	2021-05-22 22:08:12.861+03	
b4bac770-edd6-7201-ee90-083b27d9a7b8	2021-05-22 22:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:08:32.853+03	2021-05-22 22:08:32.859+03	
aa5413c3-493b-3045-dad3-609f3a8e4b05	2021-05-22 22:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:08:52.853+03	2021-05-22 22:08:52.859+03	
2ec0c295-62c6-a2ba-dfbc-8f0b12e67118	2021-05-22 22:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:09:13.853+03	2021-05-22 22:09:13.859+03	
01394284-cf08-174e-e6f9-eefc5425515e	2021-05-22 22:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:09:34.853+03	2021-05-22 22:09:34.859+03	
b9512988-2953-962f-3809-84408ab523b8	2021-05-22 22:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:09:54.853+03	2021-05-22 22:09:54.861+03	
c9fe4149-4f93-2c14-e9e0-49878f46a438	2021-05-22 22:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:10:05.852+03	2021-05-22 22:10:05.86+03	
7df0af18-55f9-6997-1059-070900591109	2021-05-22 22:10:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:10:26.852+03	2021-05-22 22:10:26.859+03	
ff65e177-d2de-e833-86b8-1643bf0e6ccc	2021-05-22 22:10:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:10:46.854+03	2021-05-22 22:10:46.863+03	
41912525-03fd-36e2-f662-8283250941f5	2021-05-22 22:11:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:11:07.853+03	2021-05-22 22:11:07.861+03	
13ec8b2f-d807-2672-c0fa-e83e0e491711	2021-05-22 21:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:50:39.853+03	2021-05-22 21:50:39.86+03	
c082a1a0-8bc0-8b26-99fb-b37d888a93ec	2021-05-22 21:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:50:59.853+03	2021-05-22 21:50:59.86+03	
fcb97dc6-c737-5a0d-47c2-bc96b50de749	2021-05-22 21:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:51:20.852+03	2021-05-22 21:51:20.859+03	
617d9836-0262-559b-3ce3-a53ae2151e5d	2021-05-22 21:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:51:40.853+03	2021-05-22 21:51:40.858+03	
7f034670-23c4-d4e7-b8c7-d3832b5ee87d	2021-05-22 21:52:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:52:01.853+03	2021-05-22 21:52:01.86+03	
5472220f-fdd2-c38b-55a1-8242dd6edd9e	2021-05-22 21:52:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:52:21.853+03	2021-05-22 21:52:21.86+03	
2b3dac2a-a74a-fccc-ed1c-7ff48353a3c2	2021-05-22 21:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:52:42.852+03	2021-05-22 21:52:42.858+03	
35fbbb4f-a00c-6ea2-77d4-add20e6e0575	2021-05-22 21:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:53:02.853+03	2021-05-22 21:53:02.859+03	
5f1bd4fe-76a0-98e6-bd88-f66792197e1a	2021-05-22 21:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:53:13.852+03	2021-05-22 21:53:13.865+03	
a2d1dded-25e0-6c2a-0a0c-6d748522845e	2021-05-22 21:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:53:33.852+03	2021-05-22 21:53:33.859+03	
740286a9-75cf-98e2-40c8-07ec6042ddc5	2021-05-22 21:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:53:54.853+03	2021-05-22 21:53:54.86+03	
98ab0b99-577c-540f-fe6c-cb498a3f5098	2021-05-22 21:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:54:14.853+03	2021-05-22 21:54:14.859+03	
4fcfabcf-a83c-9b3f-27a2-da20554fe057	2021-05-22 21:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:54:35.853+03	2021-05-22 21:54:35.86+03	
0ec78812-aeb8-25e7-b412-963dded31538	2021-05-22 21:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:54:57.852+03	2021-05-22 21:54:57.862+03	
6e2f9b1c-5770-3360-afd3-83974eb51355	2021-05-22 21:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:55:17.853+03	2021-05-22 21:55:17.861+03	
5c5f70ec-1827-d5b1-d1d2-59d8dd0fed61	2021-05-22 21:55:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:55:37.853+03	2021-05-22 21:55:37.859+03	
699dd88a-67e3-4f04-c124-e1f3254440f5	2021-05-22 21:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:55:57.853+03	2021-05-22 21:55:57.861+03	
660d7bd4-9531-79cd-1946-6d40d4ff5bba	2021-05-22 21:56:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:56:17.853+03	2021-05-22 21:56:17.859+03	
d40070aa-174a-1eee-6dd0-fed12c782e1c	2021-05-22 21:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:56:37.853+03	2021-05-22 21:56:37.859+03	
961cfc25-2808-ca23-2395-b339edf0e6a6	2021-05-22 21:56:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:56:58.853+03	2021-05-22 21:56:58.86+03	
eaa6f81b-585c-e657-9370-cd66cd13535a	2021-05-22 21:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:57:18.853+03	2021-05-22 21:57:18.867+03	
1f0bf3e5-2ce0-8260-0dc2-50b2fd06254b	2021-05-22 21:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:57:38.853+03	2021-05-22 21:57:38.862+03	
85c7ce7a-5736-c0a5-320a-87cf70ac38ac	2021-05-22 21:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:57:59.852+03	2021-05-22 21:57:59.858+03	
2dafc2ee-eb95-1f0f-2a2d-0e6e0b062ed9	2021-05-22 21:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:58:20.852+03	2021-05-22 21:58:20.859+03	
af4451aa-9ff3-5fa6-9fa5-0ed57e443b6e	2021-05-22 21:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:58:40.853+03	2021-05-22 21:58:40.863+03	
f1a203ee-057c-9856-d954-da70fc4defbd	2021-05-22 21:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:59:00.853+03	2021-05-22 21:59:00.86+03	
876ccdd0-7ad0-dfb6-c2ec-b5703b88c89a	2021-05-22 21:59:21.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:59:21.86+03	2021-05-22 21:59:21.904+03	
9818c4ac-98e2-b20e-77ce-5408af5a0915	2021-05-22 21:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 21:59:42.852+03	2021-05-22 21:59:42.858+03	
89ff55df-be78-019b-6966-56b2a6c3a6d2	2021-05-22 22:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 22:00:00.853+03	2021-05-22 22:00:00.86+03	ERROR
be5855d8-6aae-ae9f-0ea5-59b77d787653	2021-05-22 22:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:00:12.853+03	2021-05-22 22:00:12.871+03	
66f448f6-8f70-6bf9-5ba0-3f53496b49fe	2021-05-22 22:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:00:32.853+03	2021-05-22 22:00:32.872+03	
677bcd98-f21c-2cd9-df3e-da4fd642d14b	2021-05-22 22:00:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:00:52.853+03	2021-05-22 22:00:52.859+03	
f7e294dc-893a-b589-0d85-e8a3205ca42d	2021-05-22 22:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:01:13.852+03	2021-05-22 22:01:13.859+03	
2376accf-34a0-bc5a-11f1-fa47c1472ffd	2021-05-22 22:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:01:33.853+03	2021-05-22 22:01:33.86+03	
2b4049cc-dc68-960b-a7b7-861bd03737ea	2021-05-22 22:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:01:54.853+03	2021-05-22 22:01:54.871+03	
f6d648ec-004b-40b5-c9f2-d9aa1f8222fa	2021-05-22 22:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:02:14.853+03	2021-05-22 22:02:14.86+03	
7ecf516a-39fb-3aed-7166-f7b2889d087f	2021-05-22 22:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:02:34.853+03	2021-05-22 22:02:34.864+03	
a0756659-15cf-1e99-e19d-4c20fc8eecc6	2021-05-22 22:02:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:02:55.852+03	2021-05-22 22:02:55.86+03	
e64e7ca6-0f0f-9522-e014-21d67de20e39	2021-05-22 22:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:03:15.853+03	2021-05-22 22:03:15.86+03	
ff67d26a-0489-9d10-dfe3-3e96bd4ff279	2021-05-22 22:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:03:37.853+03	2021-05-22 22:03:37.859+03	
2c601c11-0f9f-a877-106b-39fa57439629	2021-05-22 22:03:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:03:57.853+03	2021-05-22 22:03:57.861+03	
efd01293-faae-32c9-2312-ecf916b5bba8	2021-05-22 22:04:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:04:17.853+03	2021-05-22 22:04:17.861+03	
8684d141-ca9c-6e39-d3fa-375d46b75339	2021-05-22 22:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:04:37.853+03	2021-05-22 22:04:37.861+03	
d15bb5bb-7de4-9984-83d9-b95b388a0ca7	2021-05-22 22:04:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:04:57.853+03	2021-05-22 22:04:57.86+03	
1f2230b7-4b91-fe77-9656-7c219c77a5c0	2021-05-22 22:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:05:18.852+03	2021-05-22 22:05:18.86+03	
80f29a10-db49-65fa-e890-85a547d7c53a	2021-05-22 22:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:05:38.852+03	2021-05-22 22:05:38.859+03	
165423a6-b3e0-7e7f-05f1-5d9f2ed43b95	2021-05-22 22:05:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:05:58.853+03	2021-05-22 22:05:58.86+03	
bc6d74b5-6ae5-f3f1-fd69-2af199196180	2021-05-22 22:06:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:06:19.852+03	2021-05-22 22:06:19.862+03	
d3a6f874-8d1e-3c59-b22f-b7ccd7fa98fa	2021-05-22 22:06:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:06:39.853+03	2021-05-22 22:06:39.859+03	
950b6605-8960-4757-a1bf-939d994de251	2021-05-22 22:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:07:00.852+03	2021-05-22 22:07:00.858+03	
0e0037f4-a205-0fde-6223-5a8cff9f56ca	2021-05-22 22:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:07:20.853+03	2021-05-22 22:07:20.859+03	
cd0004b9-df9f-b299-4418-1a0ec8a28c33	2021-05-22 22:07:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:07:41.853+03	2021-05-22 22:07:41.86+03	
a9628b76-c1be-cc8b-aab8-ab4840b6aee7	2021-05-22 22:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:08:02.853+03	2021-05-22 22:08:02.893+03	
4067215d-9358-c9d0-1d93-f83a24034a7c	2021-05-22 22:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:08:22.853+03	2021-05-22 22:08:22.859+03	
a129d84f-d771-04cd-1f7e-788df848f8c4	2021-05-22 22:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:08:42.853+03	2021-05-22 22:08:42.859+03	
0d1e446e-8631-8af6-c0a4-c347f36f3171	2021-05-22 22:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:09:02.853+03	2021-05-22 22:09:02.859+03	
962f6a3a-ae18-1dc5-50d8-18b1a0a82e7b	2021-05-22 22:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:09:24.853+03	2021-05-22 22:09:24.859+03	
2c324b1b-e666-f339-a79e-bdd912a9e0fb	2021-05-22 22:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:09:44.853+03	2021-05-22 22:09:44.86+03	
00945cf4-4344-50d1-8633-a52405d1c43c	2021-05-22 22:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 22:10:00.852+03	2021-05-22 22:10:00.857+03	ERROR
6df2d1f1-6d46-558e-f040-dcc1cede4b59	2021-05-22 22:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:10:15.853+03	2021-05-22 22:10:15.875+03	
05b1c483-52e3-39b1-be78-9b5630a95aeb	2021-05-22 22:10:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:10:36.852+03	2021-05-22 22:10:36.858+03	
d8e05646-8517-1f86-86fd-e23e2e871e42	2021-05-22 22:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:10:57.853+03	2021-05-22 22:10:57.859+03	
d168f2f7-a120-d2c1-3dff-1614574fbcf5	2021-05-22 22:11:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:11:17.853+03	2021-05-22 22:11:17.869+03	
83ddbfee-5404-5bbb-685c-c133edafa762	2021-05-22 22:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:11:27.853+03	2021-05-22 22:11:27.86+03	
8c0edcfb-2a91-1305-10a7-eab3d86291b5	2021-05-22 22:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:11:47.853+03	2021-05-22 22:11:47.862+03	
ed2305d7-77eb-a7ce-6143-bf6fca30bb8f	2021-05-22 22:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:12:07.853+03	2021-05-22 22:12:07.859+03	
3bc22e45-3454-5bae-4009-93fcd56201ab	2021-05-22 22:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:12:27.853+03	2021-05-22 22:12:27.859+03	
3c5264c8-99a5-a379-c00b-90310723cc60	2021-05-22 22:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:12:47.853+03	2021-05-22 22:12:47.859+03	
f521e7ce-f37a-1670-5a93-de0d373ca702	2021-05-22 22:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:13:09.852+03	2021-05-22 22:13:09.859+03	
65b171ea-569f-bbb2-75f5-1ba3fa303800	2021-05-22 22:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:13:30.853+03	2021-05-22 22:13:30.86+03	
df7d14e3-a942-8a76-11b0-fdf0cce777fc	2021-05-22 22:13:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:13:51.853+03	2021-05-22 22:13:51.859+03	
4fce50c5-2d16-b271-2445-aa497ff4ee1d	2021-05-22 22:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:14:12.852+03	2021-05-22 22:14:12.859+03	
e102d57b-7f0e-2beb-7eb5-7a52dd797957	2021-05-22 22:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:14:32.853+03	2021-05-22 22:14:32.86+03	
7a3b3b81-617b-08a7-d2f5-5a7961dc2e92	2021-05-22 22:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:14:52.853+03	2021-05-22 22:14:52.859+03	
b6785684-10c3-3de7-70bd-cd5aa173201c	2021-05-22 22:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:15:13.853+03	2021-05-22 22:15:13.86+03	
7ee01453-b084-671f-6ddc-539ff23ffbb1	2021-05-22 22:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:15:33.853+03	2021-05-22 22:15:33.859+03	
3d322454-3596-6acc-1e17-bf9f73669736	2021-05-22 22:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:15:55.853+03	2021-05-22 22:15:55.86+03	
224c0f2c-113f-49a9-4a49-1cc3a0b094f8	2021-05-22 22:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:16:15.853+03	2021-05-22 22:16:15.87+03	
f10d9aba-ca11-95b3-9a41-5af925b6a4bf	2021-05-22 22:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:16:35.853+03	2021-05-22 22:16:35.865+03	
5cb813b7-cec1-16c6-aac5-7e0b4bad27a9	2021-05-22 22:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:16:55.853+03	2021-05-22 22:16:55.86+03	
14a06d36-c7e6-b7a5-9fbf-5274b311ba33	2021-05-22 22:17:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:17:16.852+03	2021-05-22 22:17:16.874+03	
d23404a7-d935-5a0f-7e3e-49a886b35634	2021-05-22 22:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:17:37.852+03	2021-05-22 22:17:37.859+03	
85aac7f5-f123-48bb-df25-f6f62bfa4f19	2021-05-22 22:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:17:57.853+03	2021-05-22 22:17:57.86+03	
483b9892-4791-dc13-87a3-ca6b3ad3faa7	2021-05-22 22:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:18:17.853+03	2021-05-22 22:18:17.861+03	
53e403d9-6d71-3100-e419-aea461bef630	2021-05-22 22:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:18:37.853+03	2021-05-22 22:18:37.86+03	
b99e55d8-5eaf-3b5c-081c-5a49f70f2d96	2021-05-22 22:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:18:59.852+03	2021-05-22 22:18:59.858+03	
e22cbed4-2978-69de-ec11-a21097be2505	2021-05-22 22:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:19:19.853+03	2021-05-22 22:19:19.859+03	
ea59dc1e-dc07-6c55-0d63-16630065e29d	2021-05-22 22:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:19:39.853+03	2021-05-22 22:19:39.86+03	
0f1b06d5-3a8d-02cf-3e1d-78078b447064	2021-05-22 22:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:19:59.853+03	2021-05-22 22:19:59.861+03	
8af84e65-56c9-5749-0443-b5da84afc852	2021-05-22 22:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:20:10.852+03	2021-05-22 22:20:10.859+03	
27839429-5f7c-5c17-5d2c-d5b84cd9c200	2021-05-22 22:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:20:30.853+03	2021-05-22 22:20:30.86+03	
9279b300-e8e3-cd62-c872-3b72132f6f55	2021-05-22 22:20:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:20:51.854+03	2021-05-22 22:20:51.861+03	
048bdcf3-49d1-a5a6-1bd2-c79b14e824ff	2021-05-22 22:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:21:12.853+03	2021-05-22 22:21:12.859+03	
6c607acc-b96d-45df-665c-8bec498ad21b	2021-05-22 22:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:21:33.853+03	2021-05-22 22:21:33.859+03	
f0771160-f128-e52e-56c7-324bd73049e3	2021-05-22 22:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:21:54.852+03	2021-05-22 22:21:54.859+03	
5c9cf383-8a63-e3da-d76e-dbb9f1636589	2021-05-22 22:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:22:14.853+03	2021-05-22 22:22:14.859+03	
e90f5e9e-a02d-708b-37db-e8b8c15bf3a4	2021-05-22 22:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:22:35.852+03	2021-05-22 22:22:35.862+03	
2326bb06-ba8e-3441-c317-6c7ee7791f5f	2021-05-22 22:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:22:55.852+03	2021-05-22 22:22:55.859+03	
c1893140-0a22-40de-cd97-4fb2dddf8013	2021-05-22 22:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:23:15.853+03	2021-05-22 22:23:15.859+03	
06f21cc7-3654-3e9a-f029-1a8d9dd84a63	2021-05-22 22:23:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:23:36.853+03	2021-05-22 22:23:36.873+03	
d585218d-3d8b-979d-a63e-623ab48f8f4d	2021-05-22 22:23:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:23:57.852+03	2021-05-22 22:23:57.858+03	
89d56fd9-a27e-7cc7-93b3-0fed8e3bd5ca	2021-05-22 22:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:24:17.853+03	2021-05-22 22:24:17.859+03	
f250e33f-3a90-e013-3a6b-0048c24ba533	2021-05-22 22:24:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:24:38.852+03	2021-05-22 22:24:38.86+03	
ec5c3460-acb0-7564-66d5-d84fb2850d22	2021-05-22 22:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:24:58.853+03	2021-05-22 22:24:58.865+03	
6e25d7d6-fb8e-9edd-7399-cdb2bd49cd6d	2021-05-22 22:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:25:18.853+03	2021-05-22 22:25:18.859+03	
25e31363-172b-8a02-059d-bd55e679cfdf	2021-05-22 22:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:25:39.852+03	2021-05-22 22:25:39.909+03	
57b943aa-fbdb-ac33-f6dc-3e9a14403f84	2021-05-22 22:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:25:59.853+03	2021-05-22 22:25:59.859+03	
a2ce7f59-0933-6636-1360-9162b233c294	2021-05-22 22:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:26:20.853+03	2021-05-22 22:26:20.859+03	
2f8f4257-924d-97e8-ef72-f5b8bbe02ae9	2021-05-22 22:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:26:40.853+03	2021-05-22 22:26:40.86+03	
633cfa31-6636-d557-c1d4-ad68553468d0	2021-05-22 22:27:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:27:01.852+03	2021-05-22 22:27:01.897+03	
dddfb53a-ab68-06aa-2550-fd06653e3d7d	2021-05-22 22:27:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:27:21.853+03	2021-05-22 22:27:21.861+03	
52475e1a-9161-6392-ba85-5698880ac490	2021-05-22 22:27:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:27:41.853+03	2021-05-22 22:27:41.861+03	
f92b9ce4-1381-0177-e5e5-0c19a4b6ca43	2021-05-22 22:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:28:02.852+03	2021-05-22 22:28:02.859+03	
5ceee6ef-fbe8-ba71-85a8-752de1e521d4	2021-05-22 22:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:28:22.853+03	2021-05-22 22:28:22.859+03	
9df68ded-ebf6-96fc-af27-87c31645418a	2021-05-22 22:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:28:43.852+03	2021-05-22 22:28:43.86+03	
d24ab181-ff28-2de0-7df6-6426400fa10a	2021-05-22 22:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:29:04.852+03	2021-05-22 22:29:04.859+03	
e6a81232-ed9e-d60c-6cac-75b848b39457	2021-05-22 22:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:29:24.852+03	2021-05-22 22:29:24.859+03	
43a9e2f3-1c4d-aeec-54fd-1baf4dd093a1	2021-05-22 22:29:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:29:44.852+03	2021-05-22 22:29:44.858+03	
4cc34438-36d1-796f-85b4-a9e216339496	2021-05-22 22:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 22:30:00.852+03	2021-05-22 22:30:00.858+03	ERROR
afade560-f37b-5aff-822d-673aadb352ab	2021-05-22 22:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:30:14.853+03	2021-05-22 22:30:14.859+03	
8002d2de-74bf-c7e9-2f26-c9723942a8a8	2021-05-22 22:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:30:34.853+03	2021-05-22 22:30:34.861+03	
ca33c912-0d42-6f4f-51f2-633ceddcfaf0	2021-05-22 22:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:30:54.853+03	2021-05-22 22:30:54.862+03	
fc57a8aa-afc9-be34-d894-43040921d04a	2021-05-22 22:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:31:14.853+03	2021-05-22 22:31:14.861+03	
90388d36-feff-bce8-f894-db4f57f063e8	2021-05-22 22:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:31:35.852+03	2021-05-22 22:31:35.859+03	
b6cdc739-b590-f60b-4f4b-d1a370056edc	2021-05-22 22:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:31:55.853+03	2021-05-22 22:31:55.868+03	
4efd4144-a439-1f3a-02bd-b4a4ba277c4f	2021-05-22 22:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:32:15.853+03	2021-05-22 22:32:15.86+03	
c58a226d-22fb-08c7-6aba-a0be3722a53f	2021-05-22 22:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:11:37.853+03	2021-05-22 22:11:37.86+03	
7a0a22e7-ff5b-c788-b84b-b74118632ba7	2021-05-22 22:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:11:57.853+03	2021-05-22 22:11:57.86+03	
f36829e5-835a-cf8e-2125-f5379244db43	2021-05-22 22:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:12:17.853+03	2021-05-22 22:12:17.868+03	
f70b7282-c186-fe7d-8948-317a2374a2e6	2021-05-22 22:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:12:37.853+03	2021-05-22 22:12:37.86+03	
0df26d1c-111a-8c9d-675a-0be6c19ea9fe	2021-05-22 22:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:12:58.853+03	2021-05-22 22:12:58.863+03	
cd776aa6-76e9-f5a8-9e37-09d106747d83	2021-05-22 22:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:13:19.853+03	2021-05-22 22:13:19.861+03	
82100c7d-c586-a1eb-982b-4358f1100f2f	2021-05-22 22:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:13:41.853+03	2021-05-22 22:13:41.86+03	
ae7cb3ff-f5a4-7704-a80e-ef2d679d5c3e	2021-05-22 22:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:14:02.852+03	2021-05-22 22:14:02.859+03	
e108a085-04d4-a3d3-a1b5-11fd1a47b85e	2021-05-22 22:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:14:22.853+03	2021-05-22 22:14:22.864+03	
4edf3d61-77ed-faa0-b1bb-2955c440e702	2021-05-22 22:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:14:42.853+03	2021-05-22 22:14:42.859+03	
aea999db-d666-829a-890c-7544aaa97462	2021-05-22 22:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:15:03.853+03	2021-05-22 22:15:03.859+03	
780b8abd-fa1c-8a08-5100-c04a2d771b15	2021-05-22 22:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:15:23.853+03	2021-05-22 22:15:23.859+03	
917a7ba9-8496-7d63-e77f-ba46871a5f19	2021-05-22 22:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:15:44.853+03	2021-05-22 22:15:44.859+03	
ab3584ef-c30b-729f-fc40-17fe6a429172	2021-05-22 22:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:16:05.853+03	2021-05-22 22:16:06.191+03	
2c2ced96-3abd-eefc-d752-cd3f18e28305	2021-05-22 22:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:16:25.853+03	2021-05-22 22:16:25.859+03	
b8a8cded-4dcd-3828-1667-f9bf2c349662	2021-05-22 22:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:16:45.853+03	2021-05-22 22:16:45.86+03	
eb4f3c87-a31a-f742-66b2-17a5ee45b038	2021-05-22 22:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:17:05.853+03	2021-05-22 22:17:05.859+03	
95fe0219-3745-6d07-7384-b369cbdce825	2021-05-22 22:17:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:17:26.854+03	2021-05-22 22:17:26.872+03	
92ebcb33-1e83-63d3-98c3-6254d789bc49	2021-05-22 22:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:17:47.853+03	2021-05-22 22:17:47.86+03	
cba9977f-1e68-5f5a-6995-12cbf9ad39d9	2021-05-22 22:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:18:07.853+03	2021-05-22 22:18:07.899+03	
36082ce4-1a0b-6f82-c62d-1baa09136092	2021-05-22 22:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:18:27.853+03	2021-05-22 22:18:27.86+03	
f2f06b9a-d105-28ea-2e1f-6a28c41a57ed	2021-05-22 22:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:18:48.853+03	2021-05-22 22:18:48.86+03	
07a06de6-e254-9686-e22d-a6eeebd8c034	2021-05-22 22:19:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:19:09.852+03	2021-05-22 22:19:09.859+03	
29154c93-fe2c-32b0-9944-67ba37708ac6	2021-05-22 22:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:19:29.853+03	2021-05-22 22:19:29.859+03	
2a9dfa35-2ae2-5e5c-8ce5-a83548e79ddd	2021-05-22 22:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:19:49.853+03	2021-05-22 22:19:49.859+03	
845419ce-e25b-6a5c-233c-aaf16c408c03	2021-05-22 22:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 22:20:00.853+03	2021-05-22 22:20:00.857+03	ERROR
5924f1e9-c0ae-ad8d-94de-710bc2045915	2021-05-22 22:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:20:20.853+03	2021-05-22 22:20:20.863+03	
4b293211-2cee-0f75-10a9-238c86229937	2021-05-22 22:20:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:20:41.854+03	2021-05-22 22:20:41.864+03	
df33131a-3970-0397-052a-41e2483e42c5	2021-05-22 22:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:21:02.852+03	2021-05-22 22:21:02.859+03	
3a78313e-6eed-76c1-4e1f-db46694ad2ee	2021-05-22 22:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:21:23.853+03	2021-05-22 22:21:23.859+03	
e1815fe2-1da7-1b35-a5bc-0e85c182feb3	2021-05-22 22:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:21:43.853+03	2021-05-22 22:21:43.873+03	
36247137-ea44-102a-050b-c982c91dcf69	2021-05-22 22:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:22:04.852+03	2021-05-22 22:22:04.861+03	
183e4bd9-ef41-fdf0-e690-9d3308a3e79a	2021-05-22 22:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:22:24.853+03	2021-05-22 22:22:24.859+03	
3629be44-0b73-bd9d-4f22-8336470d3581	2021-05-22 22:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:22:45.852+03	2021-05-22 22:22:45.858+03	
5f039ae7-48e0-8825-edfd-c3cd79ac9d30	2021-05-22 22:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:23:05.853+03	2021-05-22 22:23:05.861+03	
9c4052bb-8569-cd0b-f25c-016fb6bb1dfb	2021-05-22 22:23:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:23:26.852+03	2021-05-22 22:23:26.859+03	
e5f75dd1-1d12-d671-c177-527339d26cda	2021-05-22 22:23:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:23:46.853+03	2021-05-22 22:23:46.859+03	
723cd30f-bed0-62d0-26b6-659481409fc9	2021-05-22 22:24:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:24:07.853+03	2021-05-22 22:24:07.859+03	
f4b9a07e-76c2-f290-962b-1328ececd9db	2021-05-22 22:24:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:24:28.852+03	2021-05-22 22:24:28.86+03	
6d943db2-4802-89f1-6636-7a18d61390a9	2021-05-22 22:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:24:48.853+03	2021-05-22 22:24:48.859+03	
d4dd63da-4ab0-0fd1-a8f3-6155e31bb614	2021-05-22 22:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:25:08.853+03	2021-05-22 22:25:08.86+03	
b1418de6-9609-8677-e6df-58488a5b32a3	2021-05-22 22:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:25:29.852+03	2021-05-22 22:25:29.86+03	
df79cde6-ab21-027a-d041-f5a0343bcf5b	2021-05-22 22:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:25:49.852+03	2021-05-22 22:25:49.864+03	
42e1ea16-1243-2402-65af-73afdc6e1dad	2021-05-22 22:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:26:10.853+03	2021-05-22 22:26:10.859+03	
6f9248ed-0d93-50b6-6007-ec3fd7a51967	2021-05-22 22:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:26:30.853+03	2021-05-22 22:26:30.86+03	
7518ab01-f69c-5cc8-c34b-41ea27511a9d	2021-05-22 22:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:26:50.853+03	2021-05-22 22:26:50.861+03	
d8727b29-ab4d-0375-7676-a63039b8bf60	2021-05-22 22:27:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:27:11.853+03	2021-05-22 22:27:11.859+03	
2fd3a271-a02f-7987-7d32-ffbf5320a575	2021-05-22 22:27:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:27:31.853+03	2021-05-22 22:27:31.862+03	
9697c34f-40d4-ccff-386f-0288ce651a9e	2021-05-22 22:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:27:52.852+03	2021-05-22 22:27:52.864+03	
f33cc7e3-52e0-40a2-aceb-83624e00c51c	2021-05-22 22:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:28:12.853+03	2021-05-22 22:28:12.859+03	
75a87895-4c38-3001-fb6b-da7fb4d34d48	2021-05-22 22:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:28:32.853+03	2021-05-22 22:28:32.859+03	
286871c9-df67-c75d-d2e0-d20249a1d816	2021-05-22 22:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:28:53.853+03	2021-05-22 22:28:53.859+03	
ea53b11c-bc37-6602-cd3a-825fe79e89fa	2021-05-22 22:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:29:14.852+03	2021-05-22 22:29:14.859+03	
adc23442-613b-f9d8-83dd-ddc1075ea9cd	2021-05-22 22:29:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:29:34.852+03	2021-05-22 22:29:34.858+03	
1b963714-de65-82f3-500f-db3b28d3d5e9	2021-05-22 22:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:29:54.852+03	2021-05-22 22:29:54.865+03	
851994f8-bc51-b45d-d07f-8368b85bc475	2021-05-22 22:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:30:04.853+03	2021-05-22 22:30:04.859+03	
db85c6e0-f9d9-b5c5-018e-e233e885e865	2021-05-22 22:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:30:24.853+03	2021-05-22 22:30:24.862+03	
ccdd771e-257c-f1f5-9537-2cfc00b28abb	2021-05-22 22:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:30:44.853+03	2021-05-22 22:30:44.859+03	
368b2269-a15f-5b7d-5941-1e80f0c22ecd	2021-05-22 22:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:31:04.853+03	2021-05-22 22:31:04.859+03	
217eedba-3c1e-1797-6750-51d4dff5622a	2021-05-22 22:31:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:31:24.853+03	2021-05-22 22:31:24.859+03	
13043955-4772-f7e7-fbb5-935011dc7f7b	2021-05-22 22:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:31:45.852+03	2021-05-22 22:31:45.858+03	
6bea1dc8-4653-11c1-78e4-0fb1e01b03bb	2021-05-22 22:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:32:05.853+03	2021-05-22 22:32:05.86+03	
826d221c-b7cc-c4db-f791-9eb83bfa44e4	2021-05-22 22:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:32:25.853+03	2021-05-22 22:32:25.933+03	
06f6deb1-53c1-3859-084d-62af60fc7edc	2021-05-22 22:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:32:35.853+03	2021-05-22 22:32:35.859+03	
010c3588-757b-a603-360f-354f393ec26d	2021-05-22 22:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:32:55.853+03	2021-05-22 22:32:55.861+03	
d5745cb7-3315-0a8e-d53c-380d33af97f7	2021-05-22 22:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:33:15.853+03	2021-05-22 22:33:15.859+03	
e0ff40e0-22a0-08ff-e701-ac2d8b53fb11	2021-05-22 22:33:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:33:36.852+03	2021-05-22 22:33:36.859+03	
f786e372-a9c3-c7d3-2d7b-72c2c6ff0177	2021-05-22 22:33:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:33:56.854+03	2021-05-22 22:33:56.862+03	
3c48b3f4-1b92-f0ff-2bc3-efd8cc5ce70c	2021-05-22 22:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:34:17.852+03	2021-05-22 22:34:17.86+03	
8bfd101d-e306-6d59-eaae-f65a6937f71b	2021-05-22 22:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:34:37.853+03	2021-05-22 22:34:37.861+03	
a8615253-5735-ae51-6746-7a9d3a520282	2021-05-22 22:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:34:57.853+03	2021-05-22 22:34:57.86+03	
e869a147-e041-b59b-27a9-640f617321c6	2021-05-22 22:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:35:17.853+03	2021-05-22 22:35:17.859+03	
27f68f58-e5cc-079a-65f0-6b27a7405bb4	2021-05-22 22:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:35:38.853+03	2021-05-22 22:35:38.859+03	
833b903d-af74-77aa-39e2-a36166a9f792	2021-05-22 22:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:35:58.853+03	2021-05-22 22:35:58.861+03	
94272b17-a454-4e81-09ce-cb95edd16699	2021-05-22 22:36:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:36:18.853+03	2021-05-22 22:36:18.86+03	
f8e50c90-e0e3-b7b3-4052-28ea09a49ecb	2021-05-22 22:36:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:36:38.853+03	2021-05-22 22:36:38.86+03	
0e42fc73-e28a-7a24-ea3b-959158ac8d3c	2021-05-22 22:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:36:59.852+03	2021-05-22 22:36:59.869+03	
6aebd2c6-6230-c3b7-7294-db91f76447bf	2021-05-22 22:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:37:19.853+03	2021-05-22 22:37:19.86+03	
598b57e8-9b1c-b050-db3c-4c99a7fae59a	2021-05-22 22:37:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:37:40.852+03	2021-05-22 22:37:40.859+03	
8b02d1bf-fe69-2e46-ef93-3d13e42c8c19	2021-05-22 22:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:38:00.852+03	2021-05-22 22:38:00.859+03	
df885eda-9392-1145-f1c1-fa7315693ae9	2021-05-22 22:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:38:20.853+03	2021-05-22 22:38:20.861+03	
f558baaf-1421-0b4d-b90b-92f85f5b1153	2021-05-22 22:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:38:40.853+03	2021-05-22 22:38:40.861+03	
3c77ca40-fb50-f2e8-3312-9a55ca3bc8e1	2021-05-22 22:39:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:39:01.852+03	2021-05-22 22:39:01.87+03	
ed99dc53-557f-9ba8-d821-672aad243228	2021-05-22 22:39:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:39:21.853+03	2021-05-22 22:39:21.86+03	
82fc372f-b26a-4204-4adc-569fb1ff9bd8	2021-05-22 22:39:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:39:41.854+03	2021-05-22 22:39:41.859+03	
e1a7e236-40d8-6456-e755-3a501ca65cd6	2021-05-22 22:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 22:40:00.853+03	2021-05-22 22:40:00.86+03	ERROR
a1bd1903-7f35-4dbd-ddce-cc003b63d248	2021-05-22 22:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:40:11.854+03	2021-05-22 22:40:11.863+03	
53263168-4443-1e9e-defd-f2df4a0b4b5b	2021-05-22 22:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:40:32.853+03	2021-05-22 22:40:32.86+03	
09af8e79-9f4e-e6d6-f130-caa4a8537156	2021-05-22 22:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:40:52.853+03	2021-05-22 22:40:52.859+03	
1c9afbb7-b496-39cd-8cca-792f5a0e8315	2021-05-22 22:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:41:12.853+03	2021-05-22 22:41:12.859+03	
bfab55be-81be-2bf6-1f70-3de87da02029	2021-05-22 22:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:41:33.853+03	2021-05-22 22:41:33.86+03	
b420aa01-6051-e553-9007-d562e5e6f5f8	2021-05-22 22:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:41:53.853+03	2021-05-22 22:41:53.861+03	
b864c0d3-8ddb-c43e-6525-421a3f646412	2021-05-22 22:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:42:14.853+03	2021-05-22 22:42:14.86+03	
4dabd193-ae13-645a-785d-ece65c962af6	2021-05-22 22:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:42:34.853+03	2021-05-22 22:42:34.862+03	
a9bf890b-957a-1292-60b0-f869489121ca	2021-05-22 22:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:42:54.853+03	2021-05-22 22:42:54.859+03	
0da794ae-ec1f-7cef-b930-10b56dfb59da	2021-05-22 22:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:43:14.853+03	2021-05-22 22:43:14.859+03	
b3d58a6a-d77a-1f6d-1c53-e7b5634f8fd0	2021-05-22 22:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:43:35.852+03	2021-05-22 22:43:35.861+03	
7d678cb5-3147-5cb6-2bb2-31e1ecef8dab	2021-05-22 22:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:43:55.853+03	2021-05-22 22:43:55.871+03	
066f1c3a-62de-921a-20b5-ee323040b966	2021-05-22 22:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:44:15.853+03	2021-05-22 22:44:15.859+03	
a136d34e-c12c-84e7-bf31-13399400ab3f	2021-05-22 22:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:44:35.853+03	2021-05-22 22:44:35.859+03	
c4affa0b-44cc-c52b-f6bd-dd95d4bd2d29	2021-05-22 22:44:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:44:56.852+03	2021-05-22 22:44:56.859+03	
c8478b10-c541-fdba-39c0-7d86ce574dd2	2021-05-22 22:45:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:45:16.852+03	2021-05-22 22:45:16.872+03	
39829228-a48b-83c9-3765-544da411e564	2021-05-22 22:45:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:45:36.853+03	2021-05-22 22:45:36.861+03	
fe726e0e-b511-f278-2163-0dc48da60af3	2021-05-22 22:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:45:57.853+03	2021-05-22 22:45:57.86+03	
765ff8c2-19ef-e76f-4e9d-25513a3a9860	2021-05-22 22:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:46:17.853+03	2021-05-22 22:46:17.86+03	
2b1b9062-4c6c-a0b6-4c79-f164ff1d29dd	2021-05-22 22:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:46:37.853+03	2021-05-22 22:46:37.859+03	
35f89a30-ecd3-7a43-4479-f9dce43d2a1f	2021-05-22 22:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:46:58.853+03	2021-05-22 22:46:58.859+03	
6c40e9ce-26e5-14dd-6a5e-ea675b1eb1f0	2021-05-22 22:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:47:18.853+03	2021-05-22 22:47:18.908+03	
a0bf4b34-e0b6-a7a4-0748-56f6592f2fcf	2021-05-22 22:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:47:39.853+03	2021-05-22 22:47:39.86+03	
f744a8f4-d99e-b08a-7184-68ea863a1aeb	2021-05-22 22:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:47:59.853+03	2021-05-22 22:47:59.864+03	
2e90171d-e4a6-00ca-e1b3-991e93426dc2	2021-05-22 22:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:48:20.852+03	2021-05-22 22:48:20.859+03	
c7891339-de57-c07a-95ac-831b6429825f	2021-05-22 22:48:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:48:41.854+03	2021-05-22 22:48:41.86+03	
de138667-25d1-4aca-6566-a185105e89c0	2021-05-22 22:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:49:02.852+03	2021-05-22 22:49:02.859+03	
1d602f57-460f-49ec-ee5f-29a6405c12c4	2021-05-22 22:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:49:23.853+03	2021-05-22 22:49:23.86+03	
bd5c6479-4659-a3c2-eebd-f02f60dec8eb	2021-05-22 22:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:49:44.853+03	2021-05-22 22:49:44.859+03	
fdc1f92e-8cb6-3fb4-f27f-61e3ee49c9fe	2021-05-22 22:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 22:50:00.853+03	2021-05-22 22:50:00.861+03	ERROR
fbf0cf23-cc80-01c3-a45d-abf3a28f6978	2021-05-22 22:50:17.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:50:17.853+03	2021-05-22 22:50:17.867+03	
719c90c3-27cf-d0c3-fc6f-56c2e43e4272	2021-05-22 22:50:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:50:37.853+03	2021-05-22 22:50:37.866+03	
80988ae7-8379-8465-1549-a1d681a1929f	2021-05-22 22:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:50:58.852+03	2021-05-22 22:50:58.859+03	
6c218bc7-1c78-8282-fc53-472737f04ae3	2021-05-22 22:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:51:18.852+03	2021-05-22 22:51:18.859+03	
595b578b-5a2a-c23a-48bc-e9170eb41946	2021-05-22 22:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:51:38.852+03	2021-05-22 22:51:38.859+03	
fb71c868-ebc4-d063-d035-bf6d3a8a4af0	2021-05-22 22:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:51:58.853+03	2021-05-22 22:51:58.86+03	
7e8aa2b7-cb2d-65d7-852d-ad0fc256871b	2021-05-22 22:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:52:18.853+03	2021-05-22 22:52:18.867+03	
02675f34-3495-b180-8a39-2bda981c6692	2021-05-22 22:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:52:38.853+03	2021-05-22 22:52:38.86+03	
1817ec62-0fe2-87c5-71f6-c9dda346f588	2021-05-22 22:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:52:59.852+03	2021-05-22 22:52:59.859+03	
f42d2dc4-607b-ee8b-321d-79e7f3e3722a	2021-05-22 22:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:53:19.853+03	2021-05-22 22:53:19.859+03	
5247ed6f-e9eb-a28c-016d-3160eca8f967	2021-05-22 22:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:32:45.853+03	2021-05-22 22:32:45.866+03	
442b554a-7127-6388-fdbf-405a8e5a965c	2021-05-22 22:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:33:05.853+03	2021-05-22 22:33:05.86+03	
0991b907-1227-de93-bc32-126385f7029c	2021-05-22 22:33:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:33:26.852+03	2021-05-22 22:33:26.859+03	
11ea0498-650c-0741-ecfe-b3504960630b	2021-05-22 22:33:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:33:46.852+03	2021-05-22 22:33:46.858+03	
e5cf0ee0-551d-8068-4046-0278261132ee	2021-05-22 22:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:34:07.852+03	2021-05-22 22:34:07.86+03	
b490e102-add9-f772-3d42-1bebf1389ccb	2021-05-22 22:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:34:27.852+03	2021-05-22 22:34:27.859+03	
a8a2d230-92f6-6b97-0e0d-95125525c8f2	2021-05-22 22:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:34:47.853+03	2021-05-22 22:34:47.859+03	
8cc4680c-7c59-2634-494e-d763545d4a55	2021-05-22 22:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:35:07.853+03	2021-05-22 22:35:07.859+03	
860a5214-9931-a3fc-0fa8-47ede390f7a3	2021-05-22 22:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:35:27.853+03	2021-05-22 22:35:27.872+03	
da1c3207-9303-185e-50b2-e5ac7dde8b22	2021-05-22 22:35:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:35:48.853+03	2021-05-22 22:35:48.859+03	
dbb33f40-6986-5f9d-fe83-a1056a03276b	2021-05-22 22:36:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:36:08.853+03	2021-05-22 22:36:08.861+03	
10544c9b-866a-e229-64cf-063a2a6bb339	2021-05-22 22:36:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:36:28.853+03	2021-05-22 22:36:28.862+03	
7ad6f194-9759-afd0-77fc-a517b4b17e58	2021-05-22 22:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:36:48.853+03	2021-05-22 22:36:48.86+03	
18c3bbde-d033-7d76-8713-3346d15d4371	2021-05-22 22:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:37:09.852+03	2021-05-22 22:37:09.86+03	
80468769-3f7b-a5ae-4b52-7af2367a40ec	2021-05-22 22:37:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:37:30.852+03	2021-05-22 22:37:30.859+03	
4810acfc-dc4d-0550-adae-f86d8c042caa	2021-05-22 22:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:37:50.852+03	2021-05-22 22:37:50.859+03	
5946cb14-174f-6358-3edf-ba2dead706f0	2021-05-22 22:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:38:10.853+03	2021-05-22 22:38:10.868+03	
5ef06ef3-ef8f-6605-c2cd-06827e784dd4	2021-05-22 22:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:38:30.853+03	2021-05-22 22:38:30.86+03	
2cfd77a0-2fa3-aa25-fac2-5bfa13ef212f	2021-05-22 22:38:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:38:51.852+03	2021-05-22 22:38:51.859+03	
d63b37cb-880e-e2cf-b147-ab9df3b45187	2021-05-22 22:39:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:39:11.852+03	2021-05-22 22:39:11.859+03	
f8235c49-202e-cbe3-4652-c058453d3539	2021-05-22 22:39:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:39:31.853+03	2021-05-22 22:39:31.871+03	
fe155e91-78bb-3051-ed04-c7ce29849405	2021-05-22 22:39:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:39:51.854+03	2021-05-22 22:39:51.862+03	
c258a62f-52ae-5001-3c4d-21e14aea5e08	2021-05-22 22:40:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:40:01.854+03	2021-05-22 22:40:01.917+03	
b5042534-3299-fe5c-7062-6164750dc1b5	2021-05-22 22:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:40:22.853+03	2021-05-22 22:40:22.859+03	
fa5e823d-7f25-326e-efb2-0cdd65a9dbbb	2021-05-22 22:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:40:42.853+03	2021-05-22 22:40:42.86+03	
e9d44355-0ee4-8f05-b7fd-15b1fdde72ca	2021-05-22 22:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:41:02.853+03	2021-05-22 22:41:02.859+03	
ca9abea1-cca7-44d0-9813-7922c9c89f63	2021-05-22 22:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:41:23.852+03	2021-05-22 22:41:23.859+03	
10a5bd92-d727-1fe5-9c19-0bf784dc167e	2021-05-22 22:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:41:43.853+03	2021-05-22 22:41:43.86+03	
15814834-b0ae-0b36-530e-2a305cbde391	2021-05-22 22:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:42:04.853+03	2021-05-22 22:42:04.86+03	
0369a39a-f162-7ff8-eac8-59bdb21b8f6d	2021-05-22 22:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:42:24.853+03	2021-05-22 22:42:24.86+03	
ce8d56a9-392a-7521-d111-b4d507a132f8	2021-05-22 22:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:42:44.853+03	2021-05-22 22:42:44.859+03	
09463c0f-abb6-5c98-8884-c60beebde392	2021-05-22 22:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:43:04.853+03	2021-05-22 22:43:04.86+03	
87eb34b5-6c92-56d0-36f6-8eddf321f9e9	2021-05-22 22:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:43:24.853+03	2021-05-22 22:43:24.859+03	
fbfed474-98f4-295e-908a-0269ac56c5e4	2021-05-22 22:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:43:45.853+03	2021-05-22 22:43:45.865+03	
b21927bd-567e-af63-9c79-7c1938511afa	2021-05-22 22:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:44:05.853+03	2021-05-22 22:44:05.871+03	
8dafd61c-5f3e-3da3-19ef-f06491d2ab61	2021-05-22 22:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:44:25.853+03	2021-05-22 22:44:25.86+03	
b2f16267-cc70-f79b-56a3-eeed5b93cd74	2021-05-22 22:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:44:45.853+03	2021-05-22 22:44:45.86+03	
1bcf3f42-a34b-34fd-daea-f1056b601320	2021-05-22 22:45:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:45:06.852+03	2021-05-22 22:45:06.858+03	
d6f61994-1a0d-de6a-a5e5-8e5d6c400c2e	2021-05-22 22:45:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:45:26.852+03	2021-05-22 22:45:26.86+03	
8d663f7d-f50d-d327-32cb-a9ce1226e9f5	2021-05-22 22:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:45:47.853+03	2021-05-22 22:45:47.861+03	
d13c491d-7ed0-f6ae-df53-43baa4037a02	2021-05-22 22:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:46:07.853+03	2021-05-22 22:46:07.86+03	
4ea71225-fb55-ed89-3308-b96dc4f5f6dc	2021-05-22 22:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:46:27.853+03	2021-05-22 22:46:27.865+03	
4dabaa54-7e91-c21a-b1bc-d2111d40bd2e	2021-05-22 22:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:46:48.853+03	2021-05-22 22:46:48.859+03	
ceed0064-c051-040a-bcf3-594b141acaab	2021-05-22 22:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:47:08.853+03	2021-05-22 22:47:08.907+03	
91407e56-90d3-0184-5754-5d35e09418c4	2021-05-22 22:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:47:28.853+03	2021-05-22 22:47:28.861+03	
732b7eee-bbbc-b0d1-e1b5-29eaa4b64d15	2021-05-22 22:47:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:47:49.853+03	2021-05-22 22:47:49.86+03	
74ae0cfb-c4b1-4397-23b5-0cd666f32107	2021-05-22 22:48:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:48:10.852+03	2021-05-22 22:48:10.859+03	
fbd75e89-b6e7-07d4-58c5-f2f26a70b83d	2021-05-22 22:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:48:30.853+03	2021-05-22 22:48:30.861+03	
ed5db2c5-0e99-84df-cbda-82271e33206a	2021-05-22 22:48:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:48:51.854+03	2021-05-22 22:48:51.862+03	
91aac243-db70-a19c-cd64-cb488298cf4c	2021-05-22 22:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:49:12.853+03	2021-05-22 22:49:12.86+03	
9aceddb5-16ff-ffc4-f711-2764ec53c3ac	2021-05-22 22:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:49:33.853+03	2021-05-22 22:49:33.864+03	
1c5244b7-4478-fb9e-2615-3cee05a94f04	2021-05-22 22:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:49:55.853+03	2021-05-22 22:49:55.859+03	
df5132d0-3a4c-a32c-a548-461648ef75c6	2021-05-22 22:50:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:50:06.853+03	2021-05-22 22:50:06.86+03	
7d89baee-5fa6-0e2c-774c-bc3910b21401	2021-05-22 22:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:50:27.853+03	2021-05-22 22:50:27.86+03	
0d633292-38d3-cdca-e1a6-6e0b9ef358d6	2021-05-22 22:50:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:50:47.853+03	2021-05-22 22:50:47.859+03	
a9119615-f4c8-fd69-ce79-1c585cbe81c5	2021-05-22 22:51:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:51:08.852+03	2021-05-22 22:51:08.859+03	
cecb712d-112d-352d-9fd9-b2e8fce0dc9d	2021-05-22 22:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:51:28.852+03	2021-05-22 22:51:28.86+03	
d7f25ff8-33e0-6667-75fd-c5900f3d9c01	2021-05-22 22:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:51:48.853+03	2021-05-22 22:51:48.86+03	
d80ce6fe-294e-efd1-f054-0704a7823e50	2021-05-22 22:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:52:08.853+03	2021-05-22 22:52:08.892+03	
9a7ce864-1c27-11a9-b88d-4e2c23a5e9b7	2021-05-22 22:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:52:28.853+03	2021-05-22 22:52:28.862+03	
19a1a50e-c741-2543-72e4-cf11ea8a8079	2021-05-22 22:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:52:48.853+03	2021-05-22 22:52:48.86+03	
4eb2ce21-1596-3c41-c0bf-ea17365ef3e5	2021-05-22 22:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:53:09.852+03	2021-05-22 22:53:09.859+03	
b019b804-be60-df9c-9b48-e035e235b6e5	2021-05-22 22:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:53:29.853+03	2021-05-22 22:53:29.873+03	
7c6e77cd-14c3-4bf0-c9f3-d20fee4cfcea	2021-05-23 22:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:46:37.852+03	2021-05-23 22:46:37.858+03	
34a3be04-2d76-cadb-2efb-bf81101cf4f2	2021-05-22 22:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:53:39.853+03	2021-05-22 22:53:39.861+03	
b7b585df-3356-2b02-740a-98a295901fa8	2021-05-23 02:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:53:02.853+03	2021-05-23 02:53:02.861+03	
b2110f95-a966-6ebd-b2ec-bd2c7d1c06b3	2021-05-22 22:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:54:00.853+03	2021-05-22 22:54:00.859+03	
4a96aa59-aa17-0c83-fe23-ec5aa7a410fe	2021-05-22 22:54:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:54:21.854+03	2021-05-22 22:54:21.868+03	
a7a59fa1-f998-6d4a-585d-06f6219d29c0	2021-05-23 02:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:53:23.853+03	2021-05-23 02:53:23.859+03	
1d21df0b-fb54-1e77-6027-2e76fe907471	2021-05-22 22:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:54:42.853+03	2021-05-22 22:54:42.86+03	
f59c0aeb-73ab-c65e-9849-3d91692b16f3	2021-05-22 22:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:55:03.852+03	2021-05-22 22:55:03.86+03	
5b0d71ee-97a5-af1b-00b2-226dfa513565	2021-05-23 02:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:53:43.853+03	2021-05-23 02:53:43.869+03	
8bec5bff-b49c-bd58-3ef5-726d6a928127	2021-05-22 22:55:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:55:23.853+03	2021-05-22 22:55:23.86+03	
c07e9957-64f0-a34b-4d85-408b80514e84	2021-05-22 22:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:55:43.853+03	2021-05-22 22:55:43.861+03	
5e7d9193-075e-e74b-459c-cc0b0aece4e6	2021-05-23 02:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:54:03.853+03	2021-05-23 02:54:03.861+03	
bfd9d520-d115-2be4-ad07-708cf2d7cf01	2021-05-22 22:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:56:03.853+03	2021-05-22 22:56:03.86+03	
7afcf643-cef8-410c-c9fd-36700d227a32	2021-05-22 22:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:56:24.852+03	2021-05-22 22:56:24.867+03	
95f0bf11-e60c-2eb6-22c4-f7d155b4867b	2021-05-23 02:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:54:23.853+03	2021-05-23 02:54:23.861+03	
e2d4ab7f-b79e-5e0f-0066-5eb2be0ed7d0	2021-05-22 22:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:56:44.853+03	2021-05-22 22:56:44.859+03	
13282a99-9027-ec30-13ed-cae17635d1d6	2021-05-22 22:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:57:04.853+03	2021-05-22 22:57:04.859+03	
e2cb0809-d443-f338-269e-eff77e0fd249	2021-05-23 02:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:54:43.853+03	2021-05-23 02:54:43.861+03	
e478b2b7-a0ef-be23-19b5-36e219590099	2021-05-22 22:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:57:24.853+03	2021-05-22 22:57:24.86+03	
a137fb08-5338-8ae3-0dfc-b3bacfc77b57	2021-05-22 22:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:57:44.853+03	2021-05-22 22:57:44.859+03	
adbacca5-8d31-7b15-a4c1-56f658d40d1c	2021-05-23 02:55:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:55:03.853+03	2021-05-23 02:55:03.866+03	
f21aed8f-615b-2a14-6996-39962dbb2979	2021-05-22 22:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:58:04.853+03	2021-05-22 22:58:04.86+03	
ef15eec8-cf5d-bf5f-ae03-c78c603fe374	2021-05-22 22:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:58:25.852+03	2021-05-22 22:58:25.865+03	
16679ca6-1139-09a3-3ec3-d2a636f3d6b8	2021-05-23 02:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:55:24.852+03	2021-05-23 02:55:24.87+03	
8853f8e0-7fd1-bb71-c3b0-d0ddf94df602	2021-05-22 22:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:58:45.853+03	2021-05-22 22:58:45.859+03	
9e31360d-dca9-cc95-6b31-391ccb3e97c5	2021-05-22 22:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:59:06.852+03	2021-05-22 22:59:06.859+03	
02ab41e3-c5ba-16b4-c438-c4136a2cdd08	2021-05-23 02:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:55:44.853+03	2021-05-23 02:55:44.859+03	
6ec78925-2de9-1283-6b9e-de28f82798b3	2021-05-22 22:59:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:59:26.853+03	2021-05-22 22:59:26.862+03	
c5d1ce55-5b8e-347e-808b-2e957fdd59fc	2021-05-22 22:59:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:59:46.853+03	2021-05-22 22:59:46.86+03	
64767b87-34b9-d3ab-18eb-8e4f5e53249e	2021-05-23 02:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:56:04.853+03	2021-05-23 02:56:04.86+03	
e4d2b817-dbf5-5822-5a48-b3966ce2f4bf	2021-05-22 23:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 23:00:00.853+03	2021-05-22 23:00:00.858+03	ERROR
1af10eb9-6a93-6149-56f2-8fb2041640ec	2021-05-22 23:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:00:17.853+03	2021-05-22 23:00:17.862+03	
1fc95082-909f-e0d4-d6b8-05622b9ff1a6	2021-05-23 02:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:56:24.853+03	2021-05-23 02:56:24.859+03	
3c3fe0e0-5851-075d-e5bf-8536a918c315	2021-05-22 23:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:00:37.853+03	2021-05-22 23:00:37.864+03	
f3ba6175-a5fe-4cab-d71a-303f62381243	2021-05-22 23:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:00:58.853+03	2021-05-22 23:00:58.859+03	
cde5ffa9-3365-45f8-0a88-c65825d730d1	2021-05-23 02:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:56:44.853+03	2021-05-23 02:56:44.866+03	
f5183dc6-7cb8-4537-9e34-97bdb60efa08	2021-05-22 23:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:01:18.853+03	2021-05-22 23:01:18.859+03	
53e158ae-779f-e87f-b4c6-83233e22e327	2021-05-22 23:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:01:39.853+03	2021-05-22 23:01:39.875+03	
54224941-0ffb-0084-3357-ee2a5de4f51e	2021-05-23 02:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:57:05.853+03	2021-05-23 02:57:05.878+03	
fc0b27b2-9f32-afb5-c1cc-566c2079cd87	2021-05-22 23:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:01:59.853+03	2021-05-22 23:01:59.86+03	
a2a803eb-6113-3c46-26ac-2fa21c4a8dd3	2021-05-22 23:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:02:19.853+03	2021-05-22 23:02:19.861+03	
891cc424-1b43-8182-eb18-48b29c85aec1	2021-05-23 02:57:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:57:26.852+03	2021-05-23 02:57:26.867+03	
a7718941-c88e-9179-66e9-7c8c5361f72a	2021-05-22 23:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:02:40.852+03	2021-05-22 23:02:40.861+03	
e28c86aa-80ef-ebf5-df3a-f579e8fd09e3	2021-05-22 23:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:03:00.853+03	2021-05-22 23:03:00.86+03	
9aa32aa2-2d32-3fa1-45cf-7e6102421fe4	2021-05-23 02:57:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:57:46.853+03	2021-05-23 02:57:46.865+03	
366d572a-18b2-cd23-14e5-41ea2b2db53e	2021-05-22 23:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:03:20.853+03	2021-05-22 23:03:20.86+03	
a00d5380-200f-75a0-e5cf-41982575ef1b	2021-05-22 23:03:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:03:41.852+03	2021-05-22 23:03:41.86+03	
7c8e40f8-9384-9297-263c-ed7e37dd7fc4	2021-05-23 02:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:58:07.852+03	2021-05-23 02:58:07.866+03	
97bb3c88-0e48-e134-de83-80ce4c13b53d	2021-05-22 23:04:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:04:01.854+03	2021-05-22 23:04:01.881+03	
72bd26c1-81ed-2651-d831-a11c9b7a2616	2021-05-22 23:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:04:22.853+03	2021-05-22 23:04:22.86+03	
7efdfc56-3233-6eae-1e77-fe6a29b10eae	2021-05-23 02:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:58:27.853+03	2021-05-23 02:58:27.874+03	
3e2e7e04-026d-e70a-0bd1-5e0873dd920b	2021-05-22 23:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:04:44.852+03	2021-05-22 23:04:44.859+03	
c0df9e65-e5b4-2a6a-257c-8e17b0b791b6	2021-05-22 23:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:05:04.852+03	2021-05-22 23:05:04.865+03	
51c32875-6429-ebcc-b4a8-f7344c9af019	2021-05-23 02:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:58:47.853+03	2021-05-23 02:58:47.873+03	
970bbd7b-d995-ef28-95dd-c2ad21776ff8	2021-05-22 23:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:05:24.852+03	2021-05-22 23:05:24.858+03	
aacdd619-1d02-1753-2f8e-6b92c034aeaa	2021-05-22 23:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:05:44.853+03	2021-05-22 23:05:44.859+03	
db9f7c2a-f07d-b578-75fd-ee87b280c4af	2021-05-23 02:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:59:08.852+03	2021-05-23 02:59:08.861+03	
a327c117-6b39-fa49-5558-dac7b93f49c0	2021-05-22 23:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:06:05.853+03	2021-05-22 23:06:05.861+03	
c6d007d2-8b80-23fe-e7f1-b5d8ee68f4bb	2021-05-22 23:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:06:25.853+03	2021-05-22 23:06:25.862+03	
46f27782-73f8-08e4-1b1b-7de510c85d19	2021-05-23 02:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:59:28.853+03	2021-05-23 02:59:28.859+03	
7d3135d0-279f-dd4c-0bf9-8c34bf787cff	2021-05-22 23:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:06:45.853+03	2021-05-22 23:06:45.875+03	
9a0f0165-1649-9f47-9cdd-232f4e36ad89	2021-05-22 23:07:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:07:06.852+03	2021-05-22 23:07:06.858+03	
8397a8cc-258e-8446-49c5-c5a19c749b01	2021-05-23 02:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:59:49.853+03	2021-05-23 02:59:49.862+03	
de39c3f8-231f-cc09-c637-3ebf52f8a624	2021-05-22 23:07:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:07:26.853+03	2021-05-22 23:07:26.878+03	
b1653f0c-51d6-a80f-66be-ce237da66876	2021-05-22 23:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:07:47.853+03	2021-05-22 23:07:47.859+03	
f4f5791a-5872-568d-d40a-aa1809e95ff8	2021-05-22 22:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:53:50.853+03	2021-05-22 22:53:50.86+03	
fad0045b-14e2-56a0-4934-6a6bb6efe4b2	2021-05-22 22:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:54:10.853+03	2021-05-22 22:54:10.861+03	
9d547522-aab1-969e-9f6a-bd439bf1b685	2021-05-22 22:54:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:54:32.852+03	2021-05-22 22:54:32.872+03	
b1109fcd-9967-bbfe-d3d7-360344044959	2021-05-22 22:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:54:53.852+03	2021-05-22 22:54:53.86+03	
40130ea5-66ac-ba79-8b71-aa3acba33d9d	2021-05-22 22:55:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:55:13.853+03	2021-05-22 22:55:13.86+03	
ed7ecccc-8f16-e1da-d2c3-17163f83a752	2021-05-22 22:55:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:55:33.853+03	2021-05-22 22:55:33.86+03	
4557dd45-915a-bd84-52b8-a7de0b2fd95a	2021-05-22 22:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:55:53.853+03	2021-05-22 22:55:53.86+03	
e937adfb-4364-2962-72ac-61d3e61f3adc	2021-05-22 22:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:56:13.853+03	2021-05-22 22:56:13.862+03	
3dd3bb59-9891-5442-9ac9-fcef76bc64a1	2021-05-22 22:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:56:34.853+03	2021-05-22 22:56:34.86+03	
b03e647e-2add-1744-b58f-a54696b64adf	2021-05-22 22:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:56:54.853+03	2021-05-22 22:56:54.859+03	
6a098eee-dba7-8ccb-fb14-0aa757bec6f2	2021-05-22 22:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:57:14.853+03	2021-05-22 22:57:14.859+03	
03cbc4c4-068c-29de-1eea-bba33a27b356	2021-05-22 22:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:57:34.853+03	2021-05-22 22:57:34.86+03	
234358e8-85d3-415c-b02c-e68f93f7eb5e	2021-05-22 22:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:57:54.853+03	2021-05-22 22:57:54.859+03	
ea6fcc36-5299-405d-2098-d38e58fe942b	2021-05-22 22:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:58:14.853+03	2021-05-22 22:58:14.909+03	
af75b536-10ac-e06f-bc35-548f632d0b01	2021-05-22 22:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:58:35.852+03	2021-05-22 22:58:35.859+03	
3ccb2577-9844-cea1-a906-6d3a5cc5e576	2021-05-22 22:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:58:56.852+03	2021-05-22 22:58:56.868+03	
8b88401c-a19a-28c5-45ee-ea9cbca6c895	2021-05-22 22:59:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:59:16.852+03	2021-05-22 22:59:16.86+03	
d6530826-5251-ca04-8a7c-56c0290af27a	2021-05-22 22:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:59:36.853+03	2021-05-22 22:59:36.859+03	
50c20271-9d19-62c9-bef9-7f67ef79685b	2021-05-22 22:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 22:59:57.852+03	2021-05-22 22:59:57.859+03	
62aeed85-e0d2-fe37-291a-43969af87fc2	2021-05-22 23:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:00:07.853+03	2021-05-22 23:00:07.864+03	
106c5b5c-7690-c738-bf0e-48dc8f97af92	2021-05-22 23:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:00:27.853+03	2021-05-22 23:00:27.871+03	
749c3e26-3a6b-d0e5-a0d5-df86082eb48e	2021-05-22 23:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:00:48.853+03	2021-05-22 23:00:48.86+03	
749b90ed-a604-d207-d010-0c4b39ffe305	2021-05-22 23:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:01:08.853+03	2021-05-22 23:01:08.86+03	
941eae9d-88ce-7222-d520-d0ec97df9bc3	2021-05-22 23:01:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:01:28.853+03	2021-05-22 23:01:28.86+03	
197fed5f-a12e-05b5-956b-980581294735	2021-05-22 23:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:01:49.853+03	2021-05-22 23:01:49.859+03	
ab8ba580-2334-5b1a-abe4-4ae8abd20312	2021-05-22 23:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:02:09.853+03	2021-05-22 23:02:09.861+03	
6bb1634f-d22b-2a5a-0343-c04b78597532	2021-05-22 23:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:02:30.852+03	2021-05-22 23:02:30.867+03	
59863a47-7ff0-45ad-1bb8-e2e035188618	2021-05-22 23:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:02:50.853+03	2021-05-22 23:02:50.86+03	
cf6c4c8c-9a03-355d-7323-d5ddac2d2f8e	2021-05-22 23:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:03:10.853+03	2021-05-22 23:03:10.859+03	
b27fb94b-eb1a-8747-73c7-be7d0706774d	2021-05-22 23:03:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:03:31.852+03	2021-05-22 23:03:31.859+03	
a07d7fb6-0e41-c7a9-ca36-23b68d1b89e6	2021-05-22 23:03:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:03:51.854+03	2021-05-22 23:03:51.861+03	
ff515bf0-4ea6-8b67-07ce-80134b71d537	2021-05-22 23:04:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:04:12.853+03	2021-05-22 23:04:12.861+03	
2aa5293d-96a6-587e-7e9f-4038993633d0	2021-05-22 23:04:33.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:04:33.859+03	2021-05-22 23:04:33.866+03	
135f0e0d-2629-a9e5-027d-c0193d017701	2021-05-22 23:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:04:54.852+03	2021-05-22 23:04:54.859+03	
2f80900e-a54b-843f-f91b-927ac78e8cf3	2021-05-22 23:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:05:14.852+03	2021-05-22 23:05:14.861+03	
5659f31d-a23b-55c8-08d2-6b9507dec627	2021-05-22 23:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:05:34.853+03	2021-05-22 23:05:34.859+03	
34dfbc8a-d24a-6c07-d93f-227b7e46b913	2021-05-22 23:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:05:55.853+03	2021-05-22 23:05:55.86+03	
c1fe144d-47c1-aac0-9c56-06089d793687	2021-05-22 23:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:06:15.853+03	2021-05-22 23:06:15.86+03	
983a55ac-0358-dc3e-a11e-5446a05650eb	2021-05-22 23:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:06:35.853+03	2021-05-22 23:06:35.879+03	
42b886b3-0da9-6841-e088-1beb590e946f	2021-05-22 23:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:06:56.852+03	2021-05-22 23:06:56.86+03	
7f7d003e-381a-2819-c9d4-90bd997bbaf8	2021-05-22 23:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:07:16.852+03	2021-05-22 23:07:16.859+03	
550f9c9e-19d9-c269-8ede-f8a96cdd2821	2021-05-22 23:07:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:07:36.853+03	2021-05-22 23:07:36.862+03	
69dc0848-7bed-f067-8704-6cba94d034a8	2021-05-22 23:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:07:57.853+03	2021-05-22 23:07:57.86+03	
248905e4-654b-f480-b6b7-df9a33f4a25d	2021-05-22 23:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:08:07.853+03	2021-05-22 23:08:07.861+03	
440e5ce2-9a61-1da3-79c6-deaac3088bb4	2021-05-22 23:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:08:17.853+03	2021-05-22 23:08:17.861+03	
b2c1e1d6-b80b-cafe-0dc1-e4fa5b2fd58e	2021-05-22 23:08:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:08:27.853+03	2021-05-22 23:08:27.859+03	
0fc40e38-6a05-9082-e4cb-47e8d24d4610	2021-05-22 23:08:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:08:37.853+03	2021-05-22 23:08:37.866+03	
649cc456-530a-d453-f6c1-b848c51cfa2f	2021-05-22 23:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:08:48.853+03	2021-05-22 23:08:48.86+03	
656c5159-c47c-a0d5-77ed-f10b382d8fba	2021-05-22 23:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:08:58.853+03	2021-05-22 23:08:58.859+03	
9d8e1b6c-87b1-176d-0a9e-2c34a752ff5c	2021-05-22 23:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:09:09.852+03	2021-05-22 23:09:09.859+03	
fd505b7e-8b38-e72b-fe47-f1cd9509bdd6	2021-05-22 23:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:09:19.853+03	2021-05-22 23:09:19.859+03	
ffa2c760-7b0e-2cb9-5268-8bce22f5228a	2021-05-22 23:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:09:29.853+03	2021-05-22 23:09:29.859+03	
f2271708-718f-854e-96a4-9f4feef0866d	2021-05-22 23:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:09:39.853+03	2021-05-22 23:09:39.86+03	
532d453c-124a-236b-484e-0f3409749c5d	2021-05-22 23:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:09:50.852+03	2021-05-22 23:09:50.861+03	
8486f30e-1c95-8889-3b31-efbc3914d631	2021-05-22 23:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:10:00.853+03	2021-05-22 23:10:00.861+03	
6d49df17-ece2-6e8b-7644-01ead8e8e255	2021-05-22 23:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 23:10:00.853+03	2021-05-22 23:10:00.869+03	ERROR
2cca0eb0-ffc8-2436-d2bf-c9aa5895162e	2021-05-22 23:10:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:10:11.853+03	2021-05-22 23:10:11.86+03	
9af720d4-bb0e-0333-5f00-0334545bdfe8	2021-05-22 23:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:10:21.853+03	2021-05-22 23:10:21.859+03	
f3362c4b-bde6-f33f-4523-d663613b3c88	2021-05-22 23:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:10:32.853+03	2021-05-22 23:10:32.859+03	
e273ccc7-cf9a-43ef-0d80-9ebdc85ace0d	2021-05-22 23:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:10:42.853+03	2021-05-22 23:10:42.864+03	
aa3a67af-7468-d8a4-5719-c575e82dcbeb	2021-05-22 23:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:10:52.853+03	2021-05-22 23:10:52.862+03	
6fba806b-1155-3909-ba4f-b3940464d7a3	2021-05-22 23:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:11:02.853+03	2021-05-22 23:11:02.863+03	
f45e2f72-d8f0-818b-e591-22e19e2fc9c1	2021-05-22 23:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:11:12.853+03	2021-05-22 23:11:12.86+03	
45c06653-7f41-8917-1310-71644ffbcdc5	2021-05-22 23:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:11:22.853+03	2021-05-22 23:11:22.86+03	
851ac0bf-0f63-820a-8db9-f10ef8bba042	2021-05-22 23:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:11:42.853+03	2021-05-22 23:11:42.86+03	
6a480fcb-228c-6a7f-53b9-c3e73eb7e14b	2021-05-22 23:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:12:02.853+03	2021-05-22 23:12:02.859+03	
3b9325ac-e85f-7ddb-9ff3-c1f193b5bac1	2021-05-22 23:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:12:23.852+03	2021-05-22 23:12:23.858+03	
b79f5579-0fc0-3417-ff3d-a17a00862ca3	2021-05-22 23:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:12:44.853+03	2021-05-22 23:12:44.86+03	
93c079c2-27f8-1c39-eef4-41b72d984f25	2021-05-22 23:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:13:04.853+03	2021-05-22 23:13:04.861+03	
181d1377-460f-87c5-2936-83a1602d817a	2021-05-22 23:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:13:25.853+03	2021-05-22 23:13:25.861+03	
04ae7705-f51e-d38a-c93a-f94a4e17611d	2021-05-22 23:13:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:13:46.853+03	2021-05-22 23:13:46.859+03	
28a7f4e6-1001-cd5d-20c3-2eb1e588a78f	2021-05-22 23:14:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:14:07.853+03	2021-05-22 23:14:07.862+03	
31751c4d-0e6f-27aa-9cf0-cb442e79de94	2021-05-22 23:14:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:14:28.852+03	2021-05-22 23:14:28.86+03	
4d3558cd-9d92-a05d-df09-35327b068de0	2021-05-22 23:14:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:14:48.853+03	2021-05-22 23:14:48.86+03	
2df9f9a4-01b2-6104-fa07-8f9f7aabf7b8	2021-05-22 23:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:15:09.852+03	2021-05-22 23:15:09.859+03	
c1a1ebd3-4018-70a2-2a86-c218f9b4377e	2021-05-22 23:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:15:29.852+03	2021-05-22 23:15:29.859+03	
c78cf381-7fdd-2f1c-5bec-72ede0d91e66	2021-05-22 23:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:15:50.852+03	2021-05-22 23:15:50.86+03	
62df2cec-c4f0-053c-13d9-dc99be4576ce	2021-05-22 23:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:16:10.853+03	2021-05-22 23:16:10.859+03	
972a516b-35f9-46f3-e92e-d8a4bd81bffe	2021-05-22 23:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:16:30.853+03	2021-05-22 23:16:30.875+03	
594bcfcc-14b0-90e3-a4f7-8e36f7cae340	2021-05-22 23:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:16:52.852+03	2021-05-22 23:16:52.858+03	
49aa377c-eee4-0bb4-5733-ef3106cf530a	2021-05-22 23:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:17:13.853+03	2021-05-22 23:17:13.859+03	
7bc7d65b-c4f6-8e3e-98a3-4f5ff348738c	2021-05-22 23:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:17:33.853+03	2021-05-22 23:17:33.86+03	
8184d1c0-2be5-439a-ce8c-de52c337d104	2021-05-22 23:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:17:54.853+03	2021-05-22 23:17:54.86+03	
3d7ec816-d076-6a96-b2aa-04583c369e21	2021-05-22 23:18:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:18:15.853+03	2021-05-22 23:18:15.861+03	
b849944d-cae9-94f3-707b-b894d6bde517	2021-05-22 23:18:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:18:36.853+03	2021-05-22 23:18:36.859+03	
c140c240-9ec2-2288-c5c6-891d28d93c1d	2021-05-22 23:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:18:57.853+03	2021-05-22 23:18:57.861+03	
0c7395cc-99e2-ae2b-8c8a-9a71f896f327	2021-05-22 23:19:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:19:17.853+03	2021-05-22 23:19:17.86+03	
7ebef6f2-c4ee-1f38-1c9e-252f7c82a6c6	2021-05-22 23:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:19:38.853+03	2021-05-22 23:19:38.86+03	
3e46a077-d5b1-6e97-e816-22250b2a53f3	2021-05-22 23:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:19:58.853+03	2021-05-22 23:19:58.859+03	
6a06ef54-7a56-b8f3-2d91-4b04623dd3b4	2021-05-22 23:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:20:09.852+03	2021-05-22 23:20:09.861+03	
dd0ab6ed-8062-3e7a-c78c-54a1f0fca9e5	2021-05-22 23:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:20:29.853+03	2021-05-22 23:20:29.86+03	
d93c679d-2f3b-e1bb-c0c9-697c6986cb50	2021-05-22 23:20:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:20:49.853+03	2021-05-22 23:20:49.86+03	
bd998d57-3e28-9a47-53ef-96bfe47d9d07	2021-05-22 23:21:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:21:09.853+03	2021-05-22 23:21:09.861+03	
4812dcc1-0304-e280-b960-b1d5d7865795	2021-05-22 23:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:21:29.853+03	2021-05-22 23:21:29.861+03	
10986b6e-b847-0f7f-2714-508bc9385eb7	2021-05-22 23:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:21:49.853+03	2021-05-22 23:21:49.859+03	
87439303-8a9a-393b-e18d-d82b5be4d823	2021-05-22 23:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:22:09.853+03	2021-05-22 23:22:09.87+03	
f258fe00-f454-c41d-fffb-fdb320ddf0fa	2021-05-22 23:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:22:30.853+03	2021-05-22 23:22:30.865+03	
d21f49ba-6ff8-e80e-d59d-778befaed637	2021-05-22 23:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:22:50.853+03	2021-05-22 23:22:50.859+03	
979c8758-49df-07dd-4902-6d5d712b5ef9	2021-05-22 23:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:23:10.853+03	2021-05-22 23:23:10.859+03	
134b16b8-760e-adf8-1ef4-0608db71cde8	2021-05-22 23:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:23:30.853+03	2021-05-22 23:23:30.86+03	
ff2b6efc-724e-ba5a-bd26-90b0bc7d3666	2021-05-22 23:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:23:50.853+03	2021-05-22 23:23:50.874+03	
915e319b-1d02-7640-377d-55039abf9fd5	2021-05-22 23:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:24:10.853+03	2021-05-22 23:24:10.86+03	
5594c76d-0a1f-00fa-e716-d316dbcc747e	2021-05-22 23:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:24:30.853+03	2021-05-22 23:24:30.859+03	
caa79a0a-38b8-4231-d0d3-c8c3e0ea8782	2021-05-22 23:24:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:24:51.854+03	2021-05-22 23:24:51.874+03	
de6e7099-de7d-f137-41c0-387f5eba4bd7	2021-05-22 23:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:25:12.853+03	2021-05-22 23:25:12.859+03	
3d3817ab-f921-c4dc-d15d-c0a7adfb8eda	2021-05-22 23:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:25:33.853+03	2021-05-22 23:25:33.859+03	
08a35cdf-d15c-3ce2-63e9-03a7171542d5	2021-05-22 23:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:25:54.853+03	2021-05-22 23:25:54.86+03	
1de0852a-181f-e78b-4f79-fd5ad0f25dc4	2021-05-22 23:26:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:26:14.853+03	2021-05-22 23:26:14.861+03	
2b3402cd-6a00-63aa-43dd-40ca0bc46922	2021-05-22 23:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:26:34.853+03	2021-05-22 23:26:34.862+03	
0ffbb962-77b7-fdd8-2376-65a5c8a52578	2021-05-22 23:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:26:54.853+03	2021-05-22 23:26:54.873+03	
beace363-6b9b-2c92-fc58-7e72c0feaefc	2021-05-22 23:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:27:14.853+03	2021-05-22 23:27:14.86+03	
0a306180-4646-ef70-d5b0-8b55adc07d45	2021-05-22 23:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:27:34.853+03	2021-05-22 23:27:34.859+03	
12f01708-9b54-1ba7-2f5b-e202ad8cd53b	2021-05-22 23:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:27:54.853+03	2021-05-22 23:27:54.86+03	
7b5ec4cc-6c19-9eb2-5d6c-cdce03100023	2021-05-22 23:28:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:28:14.853+03	2021-05-22 23:28:14.864+03	
58042ca6-8086-0de6-4175-4466a00ea17e	2021-05-22 23:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:28:35.853+03	2021-05-22 23:28:35.863+03	
64c2db13-0e6b-fb97-ea3a-5795955cf6a9	2021-05-22 23:28:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:28:56.854+03	2021-05-22 23:28:56.863+03	
ee3f17d9-e18e-bd11-1aab-a5105cee3f8c	2021-05-22 23:29:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:29:17.853+03	2021-05-22 23:29:17.86+03	
a8f6ad53-df65-41b0-1b8d-38cbcaebe226	2021-05-22 23:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:29:38.853+03	2021-05-22 23:29:38.86+03	
b8762743-28c6-c964-59e2-9162ca25bf9c	2021-05-22 23:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:29:58.853+03	2021-05-22 23:29:58.86+03	
c8ab7521-81d2-3cba-eaf3-339d637e5216	2021-05-22 23:30:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:30:08.853+03	2021-05-22 23:30:08.873+03	
ed4cc639-8e69-7ef5-fa54-693fcec3df35	2021-05-22 23:30:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:30:28.853+03	2021-05-22 23:30:28.86+03	
0089ae23-3ec7-2e7e-8da2-0fe7b005e25f	2021-05-22 23:30:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:30:49.853+03	2021-05-22 23:30:49.86+03	
effd6761-8d7a-296e-b2d6-9830c9abf7ca	2021-05-22 23:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:31:10.853+03	2021-05-22 23:31:10.869+03	
63962a97-239f-df9d-d6a6-131d02822a67	2021-05-22 23:31:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:31:31.853+03	2021-05-22 23:31:31.859+03	
c64c09ee-68ec-e039-fc29-28c5d1fef8d6	2021-05-22 23:31:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:31:51.854+03	2021-05-22 23:31:51.862+03	
11d6a082-e6cd-1c6e-5205-18be842f7b54	2021-05-22 23:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:32:12.853+03	2021-05-22 23:32:12.858+03	
0ef73055-ae0d-ec0f-4f42-6e8ff7d70181	2021-05-22 23:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:11:32.853+03	2021-05-22 23:11:32.86+03	
8d2caa3e-3e36-2cb0-ac6e-65f1c1833a73	2021-05-22 23:11:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:11:52.853+03	2021-05-22 23:11:52.86+03	
dd693aae-631c-ea16-d5e7-f4ff5c4bf221	2021-05-22 23:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:12:12.853+03	2021-05-22 23:12:12.859+03	
71f0452b-7150-e8d8-fa95-237b08088c63	2021-05-22 23:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:12:33.853+03	2021-05-22 23:12:33.859+03	
495f0bb3-a1b2-f754-9e49-8767eb37fdc6	2021-05-22 23:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:12:54.853+03	2021-05-22 23:12:54.859+03	
2ba902b7-6945-aff1-b58d-69547c4576bf	2021-05-22 23:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:13:15.852+03	2021-05-22 23:13:15.86+03	
a3e6d2cd-42ac-a6c0-c5b4-a878b1b5375b	2021-05-22 23:13:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:13:36.853+03	2021-05-22 23:13:36.86+03	
8edfc5c6-0753-6eae-0302-31db8447fb86	2021-05-22 23:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:13:57.852+03	2021-05-22 23:13:57.859+03	
48a728d0-3a6c-bfe2-418d-f71733540530	2021-05-22 23:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:14:18.852+03	2021-05-22 23:14:18.859+03	
737de5f4-0d2c-b71c-a86f-97ad1382e23d	2021-05-22 23:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:14:38.853+03	2021-05-22 23:14:38.872+03	
0c5308aa-0843-82fe-13d1-8d548e842300	2021-05-22 23:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:14:59.852+03	2021-05-22 23:14:59.86+03	
494d13ba-3648-17dc-83b1-8f144856d44a	2021-05-22 23:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:15:19.852+03	2021-05-22 23:15:19.859+03	
6b92b7eb-e39e-946d-8d4e-df5c769eec8b	2021-05-22 23:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:15:39.853+03	2021-05-22 23:15:39.858+03	
d50a4f42-ca1d-00ba-cf72-976a66101af4	2021-05-22 23:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:16:00.853+03	2021-05-22 23:16:00.868+03	
197e5482-27aa-7fa9-2115-56553e9acd22	2021-05-22 23:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:16:20.853+03	2021-05-22 23:16:20.859+03	
7fea7d92-783d-0c12-d661-9ea64f71fcd4	2021-05-22 23:16:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:16:41.853+03	2021-05-22 23:16:41.86+03	
8688b7f6-e0c0-4e91-95ba-150667143a11	2021-05-22 23:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:17:02.853+03	2021-05-22 23:17:02.859+03	
f1982128-3ef4-b15c-56af-1b51749a5e1d	2021-05-22 23:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:17:23.853+03	2021-05-22 23:17:23.861+03	
85207dce-11f0-fd93-d045-e7b24e53ec76	2021-05-22 23:17:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:17:44.853+03	2021-05-22 23:17:44.859+03	
a230c5c7-3465-63b8-6e19-ae757fb2a6fc	2021-05-22 23:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:18:04.853+03	2021-05-22 23:18:04.859+03	
3b7e7227-b62e-3cda-731b-3e2689f2323e	2021-05-22 23:18:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:18:25.853+03	2021-05-22 23:18:25.868+03	
333dd0db-34fb-463f-431e-a2ca4be1624c	2021-05-22 23:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:18:47.853+03	2021-05-22 23:18:47.86+03	
c06b5d0d-16f2-28b5-7546-4614b9ad58ce	2021-05-22 23:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:19:07.853+03	2021-05-22 23:19:07.859+03	
27cbe3a7-afaa-2b3b-e162-ec917037d927	2021-05-22 23:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:19:28.853+03	2021-05-22 23:19:28.859+03	
de75e370-d148-8662-efeb-9df9c069fc1d	2021-05-22 23:19:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:19:48.853+03	2021-05-22 23:19:48.862+03	
201d5df3-4b58-9add-438d-5391e997cf7a	2021-05-22 23:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 23:20:00.852+03	2021-05-22 23:20:00.858+03	ERROR
1f2fcbcf-6c35-a13f-f0f6-819efca12745	2021-05-22 23:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:20:19.853+03	2021-05-22 23:20:19.86+03	
4e2da0a5-4089-ea17-acda-872972da87a7	2021-05-22 23:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:20:39.853+03	2021-05-22 23:20:39.866+03	
f872aa13-da0d-4b47-2b00-fdc33c1d5bc1	2021-05-22 23:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:20:59.853+03	2021-05-22 23:21:00.103+03	
7a448453-419d-63fb-2f46-c2add71ddc58	2021-05-22 23:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:21:19.853+03	2021-05-22 23:21:19.859+03	
530a6e6b-bfdb-6603-6f6e-39e46efe0bc7	2021-05-22 23:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:21:39.853+03	2021-05-22 23:21:39.861+03	
3c34579b-ed90-f3a3-31f1-9372cbb93116	2021-05-22 23:21:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:21:59.853+03	2021-05-22 23:21:59.858+03	
126ec898-9709-a30f-e2fe-3e47d146c744	2021-05-22 23:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:22:20.853+03	2021-05-22 23:22:20.859+03	
89225f11-5786-4d17-8d10-c56d39736801	2021-05-22 23:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:22:40.853+03	2021-05-22 23:22:40.859+03	
cf19e41e-00d4-33d1-eff9-9db4915b1272	2021-05-22 23:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:23:00.853+03	2021-05-22 23:23:00.86+03	
7b369e99-0827-36ea-a4fc-1a8af4fd2e73	2021-05-22 23:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:23:20.853+03	2021-05-22 23:23:20.859+03	
2fa5e20e-b610-956d-635a-5ff3adf81dcd	2021-05-22 23:23:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:23:40.853+03	2021-05-22 23:23:40.861+03	
2f629236-4083-4fc6-448a-5ea417171aff	2021-05-22 23:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:24:00.853+03	2021-05-22 23:24:00.859+03	
1916d9b2-a1b4-875e-7b89-bb6b1d884aee	2021-05-22 23:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:24:20.853+03	2021-05-22 23:24:20.86+03	
caee2504-6425-757a-1f40-8d601b0931fa	2021-05-22 23:24:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:24:41.854+03	2021-05-22 23:24:41.86+03	
c58367eb-f1f9-2656-85ed-7420072b6282	2021-05-22 23:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:25:02.852+03	2021-05-22 23:25:02.859+03	
ef3beab8-5815-ba3a-d602-420bea0142a2	2021-05-22 23:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:25:23.852+03	2021-05-22 23:25:23.859+03	
9a5268bc-47db-d0db-aec5-56f4419bce89	2021-05-22 23:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:25:43.853+03	2021-05-22 23:25:43.858+03	
9c3a00fe-c138-149a-46ae-c3db36961ef5	2021-05-22 23:26:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:26:04.853+03	2021-05-22 23:26:04.86+03	
f7ccb3aa-955b-7a64-3811-a315f3327876	2021-05-22 23:26:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:26:24.853+03	2021-05-22 23:26:24.859+03	
3f359b8b-3ef9-fba1-90de-e631499a6532	2021-05-22 23:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:26:44.853+03	2021-05-22 23:26:44.86+03	
531e0187-20cf-ab04-b00c-254516574045	2021-05-22 23:27:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:27:04.853+03	2021-05-22 23:27:04.859+03	
f622deff-6aeb-4f8c-98d5-7fb1ab3e5fe2	2021-05-22 23:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:27:24.853+03	2021-05-22 23:27:24.861+03	
0f464cf5-f89f-508f-db6d-f080bea4285a	2021-05-22 23:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:27:44.853+03	2021-05-22 23:27:44.859+03	
8b48532f-3826-421c-f7d2-b94423da0487	2021-05-22 23:28:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:28:04.853+03	2021-05-22 23:28:04.859+03	
514634ec-5a34-8160-bf8c-8aad6e6c6dde	2021-05-22 23:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:28:24.853+03	2021-05-22 23:28:24.871+03	
50043ea8-9a4e-26fa-81c5-784fb4a0cb19	2021-05-22 23:28:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:28:46.853+03	2021-05-22 23:28:46.86+03	
29e260f1-b2f9-236e-d37e-3308ed3fb22b	2021-05-22 23:29:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:29:07.852+03	2021-05-22 23:29:07.868+03	
49df30af-de76-b6ab-334b-a0836d36e8dd	2021-05-22 23:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:29:28.853+03	2021-05-22 23:29:28.86+03	
589bcaa4-26ae-8147-d252-e13654d2609b	2021-05-22 23:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:29:48.853+03	2021-05-22 23:29:48.859+03	
591506f4-70cb-65e1-b6ea-2a3ec326d3c5	2021-05-22 23:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 23:30:00.853+03	2021-05-22 23:30:00.859+03	ERROR
6fe5239f-24f2-1e95-12c5-f94575aaba38	2021-05-22 23:30:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:30:18.853+03	2021-05-22 23:30:18.867+03	
b5a3d066-5372-295f-270f-c8c7bcb54329	2021-05-22 23:30:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:30:39.852+03	2021-05-22 23:30:39.859+03	
d51601f2-0fae-e9fc-d43f-45a127f11c7c	2021-05-22 23:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:31:00.852+03	2021-05-22 23:31:00.86+03	
50fa6975-67f9-4f69-1ba7-99c9d6292ad5	2021-05-22 23:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:31:20.853+03	2021-05-22 23:31:20.859+03	
b35771ba-088a-0f10-90fb-0d28b2d9427c	2021-05-22 23:31:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:31:41.854+03	2021-05-22 23:31:41.86+03	
79efaf9a-0bf4-d99a-aa2f-e60c922c46ff	2021-05-22 23:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:32:02.853+03	2021-05-22 23:32:02.861+03	
6ec2bfcd-675e-ceae-1d2e-f05335c056fc	2021-05-22 23:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:32:23.852+03	2021-05-22 23:32:23.873+03	
944428c2-deca-fc85-4647-2086b3f8906c	2021-05-22 23:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:32:33.853+03	2021-05-22 23:32:33.868+03	
2f214390-1c24-213b-1aa4-eb08c8a244e9	2021-05-22 23:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:32:53.853+03	2021-05-22 23:32:53.861+03	
9925e8c3-82e9-1375-e013-f5cad9518783	2021-05-22 23:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:33:13.853+03	2021-05-22 23:33:13.86+03	
6841e858-53b4-c1ec-aeb4-9f2d145b9b36	2021-05-22 23:33:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:33:33.853+03	2021-05-22 23:33:33.876+03	
2ee4b133-35a0-100a-d80c-60564355d2c9	2021-05-22 23:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:33:53.853+03	2021-05-22 23:33:53.871+03	
9dd53db8-249d-430f-2e09-59129ed053a9	2021-05-22 23:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:34:13.853+03	2021-05-22 23:34:13.859+03	
5454e39b-c9f0-da04-3438-27ca6c9159fb	2021-05-22 23:34:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:34:34.852+03	2021-05-22 23:34:34.858+03	
3c98742b-cb21-754b-846f-40bf8d5c97a1	2021-05-22 23:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:34:54.853+03	2021-05-22 23:34:54.861+03	
d6f12fba-7086-c286-3325-4007ea41e539	2021-05-22 23:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:35:15.852+03	2021-05-22 23:35:15.86+03	
720e0c84-09f3-ddf5-b4d4-88bd851ca284	2021-05-22 23:35:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:35:36.852+03	2021-05-22 23:35:36.86+03	
0bc66e5e-f467-d1de-bf1a-03c520dc0a74	2021-05-22 23:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:35:56.852+03	2021-05-22 23:35:56.858+03	
8ddc6ac9-9f38-6471-7096-a00b8555bb1f	2021-05-22 23:36:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:36:16.853+03	2021-05-22 23:36:16.86+03	
768d1981-a402-0d0a-e98c-0b3af442ebeb	2021-05-22 23:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:36:37.853+03	2021-05-22 23:36:37.861+03	
6c9b2b6d-e7d2-51e3-278a-f26d7f62911e	2021-05-22 23:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:36:58.853+03	2021-05-22 23:36:58.86+03	
1dbe26ca-be38-8980-b047-b7153d40b0d5	2021-05-22 23:37:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:37:18.853+03	2021-05-22 23:37:18.864+03	
0d4849df-1d40-40ef-c2de-c5db8e76f17f	2021-05-22 23:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:37:39.852+03	2021-05-22 23:37:39.859+03	
6af00bd0-3493-b239-2b5e-71d73504588f	2021-05-22 23:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:37:59.853+03	2021-05-22 23:37:59.859+03	
c7143b55-1ec2-8772-5c90-5c768fc1ba18	2021-05-22 23:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:38:19.853+03	2021-05-22 23:38:19.87+03	
2564bfe3-e342-f827-0f72-f9cda83e851f	2021-05-22 23:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:38:39.853+03	2021-05-22 23:38:39.862+03	
f60b97ba-31b5-4e90-ec06-63ce013ebd31	2021-05-22 23:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:39:00.852+03	2021-05-22 23:39:00.869+03	
625984d2-4ac9-acc1-14ee-36a7ebd6e97c	2021-05-22 23:39:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:39:21.852+03	2021-05-22 23:39:21.869+03	
e9333f6a-2538-935e-2af3-1483e2248c48	2021-05-22 23:39:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:39:41.853+03	2021-05-22 23:39:41.859+03	
077dc5c5-cb7f-fce1-2681-714fce604244	2021-05-22 23:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 23:40:00.852+03	2021-05-22 23:40:00.859+03	ERROR
19f9a1d2-5b55-210d-b804-090f474925e1	2021-05-22 23:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:40:12.852+03	2021-05-22 23:40:12.859+03	
548a1b79-21bf-70d7-b846-327a585e3ff7	2021-05-22 23:40:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:40:32.852+03	2021-05-22 23:40:32.859+03	
dee8ded0-be8e-7b7a-eece-94008166a338	2021-05-22 23:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:40:52.852+03	2021-05-22 23:40:52.865+03	
7b23014f-4c4a-4efb-914f-1f935cb4e219	2021-05-22 23:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:41:12.852+03	2021-05-22 23:41:12.859+03	
cc38e733-a5bd-c1f4-09ad-320fba584bc4	2021-05-22 23:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:41:32.852+03	2021-05-22 23:41:32.861+03	
13b56ce5-c227-0d8e-5382-37f250cc3a22	2021-05-22 23:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:41:52.853+03	2021-05-22 23:41:52.862+03	
1185b664-9a9c-3c94-7007-1d453dd93fe5	2021-05-22 23:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:42:12.853+03	2021-05-22 23:42:12.86+03	
70d86801-4267-80c4-b637-9538dd39b114	2021-05-22 23:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:42:33.853+03	2021-05-22 23:42:33.862+03	
3ed64fa4-3428-1c29-59cb-9ce3c9fe65e3	2021-05-22 23:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:42:54.853+03	2021-05-22 23:42:54.861+03	
9f1e6097-cf41-8f3d-f3ae-57a63cfc5c39	2021-05-22 23:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:43:14.853+03	2021-05-22 23:43:14.86+03	
f6a4eb91-fe30-7977-3bc9-aca4a383a8fe	2021-05-22 23:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:43:35.852+03	2021-05-22 23:43:35.86+03	
05d4aa03-55e3-4814-3fd2-4be881c05ee6	2021-05-22 23:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:43:55.853+03	2021-05-22 23:43:55.861+03	
a7ba34d3-70d7-a812-5019-7bbc22e19f3a	2021-05-22 23:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:44:15.853+03	2021-05-22 23:44:15.86+03	
ef3bad6c-f6f9-34a9-919a-da8a9c580581	2021-05-22 23:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:44:35.853+03	2021-05-22 23:44:35.875+03	
25972107-b440-c591-7f6f-c7e5edc4d87e	2021-05-22 23:44:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:44:55.853+03	2021-05-22 23:44:55.87+03	
ba776abd-5332-d8d8-1fe4-769c375c53bd	2021-05-22 23:45:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:45:16.853+03	2021-05-22 23:45:16.859+03	
89aa2304-97c3-def0-91e4-1d9ae84dced1	2021-05-22 23:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:45:37.853+03	2021-05-22 23:45:37.86+03	
de6c67cd-24b2-c7c5-f47c-26d4922ca54a	2021-05-22 23:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:45:57.853+03	2021-05-22 23:45:57.86+03	
8a346d55-f072-5869-f90a-c955caa93937	2021-05-22 23:46:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:46:18.853+03	2021-05-22 23:46:18.859+03	
a201a15e-d6a6-7841-49e3-ed574a3622ba	2021-05-22 23:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:46:39.852+03	2021-05-22 23:46:39.859+03	
92acbb6c-18b0-6ea1-1a1c-0071aa651565	2021-05-22 23:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:47:00.852+03	2021-05-22 23:47:00.86+03	
2cf410b4-d768-a5e0-a1f0-9ae8e7316a9c	2021-05-22 23:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:47:20.853+03	2021-05-22 23:47:20.86+03	
a8052627-492b-65f1-1e98-fc007a2f4cfd	2021-05-22 23:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:47:40.853+03	2021-05-22 23:47:40.859+03	
b44bf485-2cf8-f31e-c31c-9129034f2222	2021-05-22 23:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:48:00.853+03	2021-05-22 23:48:00.859+03	
39f2d4fc-7ffe-74e1-0a41-fba2485cb01b	2021-05-22 23:48:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:48:21.853+03	2021-05-22 23:48:21.861+03	
a05579b3-cd11-8def-e5cb-808ed6b02c3f	2021-05-22 23:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:48:43.853+03	2021-05-22 23:48:43.86+03	
d1e738da-d896-8075-aeb4-1a66431c5d4b	2021-05-22 23:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:49:03.853+03	2021-05-22 23:49:03.86+03	
f4a6aca6-e2af-004f-dd77-d2c867a9365d	2021-05-22 23:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:49:24.852+03	2021-05-22 23:49:24.865+03	
0e823d5c-35ef-964d-a87f-6cb5fc8e4c0a	2021-05-22 23:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:49:44.853+03	2021-05-22 23:49:44.859+03	
1a5b0a3b-7852-6a13-72f8-73fd91834c03	2021-05-22 23:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-22 23:50:00.853+03	2021-05-22 23:50:00.859+03	ERROR
8481af60-0112-d946-0214-d502d9426252	2021-05-22 23:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:50:14.853+03	2021-05-22 23:50:14.86+03	
ed8cefb9-b912-de27-053e-11bfa9af2c36	2021-05-22 23:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:50:34.853+03	2021-05-22 23:50:34.859+03	
e785b4e5-311c-1ecb-ee47-8e777a8dae6e	2021-05-22 23:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:50:54.853+03	2021-05-22 23:50:54.861+03	
9fba47e7-2486-9d68-c28a-8ff5592b881c	2021-05-22 23:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:51:15.853+03	2021-05-22 23:51:15.863+03	
4de3f5a4-3ba8-c814-2679-7fcd2f212c1a	2021-05-22 23:51:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:51:36.853+03	2021-05-22 23:51:36.865+03	
8843de42-d7e8-7821-66ff-ed7ff901103b	2021-05-22 23:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:51:57.853+03	2021-05-22 23:51:57.859+03	
e909f331-33f1-4653-9285-662afde2b58d	2021-05-22 23:52:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:52:19.852+03	2021-05-22 23:52:19.859+03	
5d47c12e-c9ff-d566-1663-1c8d6d32f727	2021-05-22 23:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:52:40.853+03	2021-05-22 23:52:40.859+03	
e5b40ac7-fcee-2af3-278d-c94abd56dbc9	2021-05-22 23:53:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:53:01.853+03	2021-05-22 23:53:01.873+03	
26f3f396-ca60-bfed-4121-2d0ec3e515e3	2021-05-22 23:53:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:53:21.853+03	2021-05-22 23:53:21.86+03	
757aabcf-1bea-aac3-844a-2f7bdbdbe4d6	2021-05-22 23:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:32:43.853+03	2021-05-22 23:32:43.86+03	
e2b4da1f-2dcc-74a2-6046-08eb2d4f59f5	2021-05-22 23:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:33:03.853+03	2021-05-22 23:33:03.86+03	
c1475b82-d65c-8201-6ca3-d84741c8552a	2021-05-22 23:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:33:23.853+03	2021-05-22 23:33:23.86+03	
12b42596-1e94-8b61-bba0-81fe51976e55	2021-05-22 23:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:33:43.853+03	2021-05-22 23:33:43.859+03	
6054ed7a-7610-30b0-fc47-342d8c6de77f	2021-05-22 23:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:34:03.853+03	2021-05-22 23:34:03.861+03	
5f8a6864-7c52-5a99-f7ae-f634758c9ee9	2021-05-22 23:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:34:24.852+03	2021-05-22 23:34:24.858+03	
ed03db8f-ae7f-5018-7a7a-c978af72fc57	2021-05-22 23:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:34:44.853+03	2021-05-22 23:34:44.859+03	
37cbce8b-aa66-2f56-a5a2-f9dd80ae7c87	2021-05-22 23:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:35:04.853+03	2021-05-22 23:35:04.859+03	
2534fab1-1c63-cd68-26be-e43d93dfeda9	2021-05-22 23:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:35:25.853+03	2021-05-22 23:35:25.86+03	
3ecc841d-9591-e4ce-8d70-a4316e7a5795	2021-05-22 23:35:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:35:46.852+03	2021-05-22 23:35:46.859+03	
d70b771e-6a4a-024e-5842-1820e2b4856f	2021-05-22 23:36:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:36:06.852+03	2021-05-22 23:36:06.859+03	
8ab89d34-bbd1-ce7c-76ea-0f01de706848	2021-05-22 23:36:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:36:27.853+03	2021-05-22 23:36:27.862+03	
efcb26b7-76ee-6b8b-3cc6-57f7f1e5fc8e	2021-05-22 23:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:36:48.853+03	2021-05-22 23:36:48.859+03	
5adb043f-0289-43a8-4693-e9c77f318222	2021-05-22 23:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:37:08.853+03	2021-05-22 23:37:08.861+03	
c33cba85-9c93-63e5-eb25-18743e6848c2	2021-05-22 23:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:37:28.853+03	2021-05-22 23:37:28.859+03	
b9ab9f8f-f3e7-03e6-0c96-db4eae55e352	2021-05-22 23:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:37:49.852+03	2021-05-22 23:37:49.859+03	
4b4d35be-6805-57bc-904f-a7285d3062bc	2021-05-22 23:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:38:09.853+03	2021-05-22 23:38:09.86+03	
7ea0d297-a306-3299-e7e6-ec0b11b893cd	2021-05-22 23:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:38:29.853+03	2021-05-22 23:38:29.859+03	
0152c4ad-57e3-a037-de0c-85e5bbe1ace4	2021-05-22 23:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:38:49.853+03	2021-05-22 23:38:49.86+03	
f8f82de5-e032-1ee8-4733-89aee9b57305	2021-05-22 23:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:39:10.853+03	2021-05-22 23:39:10.859+03	
eda29638-d7b6-4cd3-4f9c-5559eb8d842e	2021-05-22 23:39:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:39:31.852+03	2021-05-22 23:39:31.867+03	
e4eb150e-cb6e-9399-d009-086a80a2d358	2021-05-22 23:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:39:52.852+03	2021-05-22 23:39:52.862+03	
12d98614-f405-63ad-7d2e-2be110f8b555	2021-05-22 23:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:40:02.852+03	2021-05-22 23:40:02.86+03	
6d945ea3-c22c-10d0-14b7-10465ff2dba4	2021-05-22 23:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:40:22.852+03	2021-05-22 23:40:22.861+03	
8cc3b21a-d3a3-6a53-04ff-50a079571f22	2021-05-22 23:40:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:40:42.852+03	2021-05-22 23:40:42.859+03	
cda29ab1-0e9d-3266-9ce8-9df053749ec5	2021-05-22 23:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:41:02.852+03	2021-05-22 23:41:02.867+03	
18b3bf29-379a-e5a6-50b7-02066f395c9f	2021-05-22 23:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:41:22.852+03	2021-05-22 23:41:22.862+03	
c6456578-1fd1-e4a2-6b11-7bc26153a3e6	2021-05-22 23:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:41:42.852+03	2021-05-22 23:41:42.859+03	
b00b24eb-a001-1661-11e4-4f2a28725de9	2021-05-22 23:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:42:02.853+03	2021-05-22 23:42:02.859+03	
cb3a5080-42d5-588b-6fb4-09e3ad582e1f	2021-05-22 23:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:42:23.852+03	2021-05-22 23:42:23.859+03	
10854d82-3859-bd56-7edd-5a99938a3c85	2021-05-22 23:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:42:44.853+03	2021-05-22 23:42:44.859+03	
14a2eb08-b444-9dc6-22c8-c5c60fe58d27	2021-05-22 23:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:43:04.853+03	2021-05-22 23:43:04.86+03	
872c459e-fecc-c70d-1efa-e907a989e4b5	2021-05-22 23:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:43:25.852+03	2021-05-22 23:43:25.869+03	
6456abe6-dbfb-336c-f825-595d1a44f9e2	2021-05-22 23:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:43:45.852+03	2021-05-22 23:43:45.859+03	
36dc00e2-57ed-3a2e-464b-4cd01393828b	2021-05-22 23:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:44:05.853+03	2021-05-22 23:44:05.86+03	
40473d2b-bb00-86fc-07e2-d5306ff3ad92	2021-05-22 23:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:44:25.853+03	2021-05-22 23:44:25.859+03	
35562b64-0101-d3e9-9e59-9c4d0549bd5f	2021-05-22 23:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:44:45.853+03	2021-05-22 23:44:45.86+03	
678e3a77-e96b-1499-1213-2753d7735991	2021-05-22 23:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:45:05.853+03	2021-05-22 23:45:05.867+03	
61b0fca3-b0fa-5303-e29a-bdfd144401fc	2021-05-22 23:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:45:27.853+03	2021-05-22 23:45:27.859+03	
25229667-477c-62a6-a5e3-96dd54ff0e72	2021-05-22 23:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:45:47.853+03	2021-05-22 23:45:47.861+03	
218a8410-130e-2bfd-353e-f81383f90436	2021-05-22 23:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:46:07.853+03	2021-05-22 23:46:07.859+03	
0f25c887-92b6-e0eb-2372-62c7b62d2d3a	2021-05-22 23:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:46:29.852+03	2021-05-22 23:46:29.859+03	
8a5b7d39-51e6-a979-f244-ecbd13fdd5c3	2021-05-22 23:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:46:49.853+03	2021-05-22 23:46:49.859+03	
8a57529f-a101-770d-1c99-6326fa4aa390	2021-05-22 23:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:47:10.852+03	2021-05-22 23:47:10.859+03	
06ae412f-62e5-3f0c-0484-f17ce5162d9e	2021-05-22 23:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:47:30.853+03	2021-05-22 23:47:30.86+03	
ee0ed38e-a506-4eaa-9416-0ba7a21ef3f6	2021-05-22 23:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:47:50.853+03	2021-05-22 23:47:50.859+03	
ea26f131-f6c2-bc0a-166c-56bb324771cf	2021-05-22 23:48:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:48:11.852+03	2021-05-22 23:48:11.861+03	
59d1c893-81d5-375c-c2d5-3a96fbc221bf	2021-05-22 23:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:48:32.853+03	2021-05-22 23:48:32.859+03	
a263f0a2-027c-4312-da36-fe016416e6a6	2021-05-22 23:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:48:53.853+03	2021-05-22 23:48:53.861+03	
4730b73b-066f-4f9f-bace-f74611f152f0	2021-05-22 23:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:49:13.853+03	2021-05-22 23:49:13.86+03	
415eb2fa-26f9-8dd5-e1fa-d8e65ed6c15e	2021-05-22 23:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:49:34.853+03	2021-05-22 23:49:34.859+03	
9e2bcb94-89a1-5126-7437-91c1fbd3543b	2021-05-22 23:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:49:54.853+03	2021-05-22 23:49:54.859+03	
e29f230c-ff44-4ca9-ad14-08866444c451	2021-05-22 23:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:50:04.853+03	2021-05-22 23:50:04.861+03	
7082be2c-5981-683e-c41e-417fee842f7d	2021-05-22 23:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:50:24.853+03	2021-05-22 23:50:24.861+03	
a0de55c9-f90e-abeb-a023-fa71c5a48547	2021-05-22 23:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:50:44.853+03	2021-05-22 23:50:44.861+03	
dd11c40c-6ba2-91d5-7d2a-5c5522df6e45	2021-05-22 23:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:51:04.853+03	2021-05-22 23:51:04.861+03	
3b1686f0-8765-1af9-99a9-222076c9f1ed	2021-05-22 23:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:51:25.853+03	2021-05-22 23:51:25.898+03	
43739a4b-db86-0cda-f7b1-9485c13eea1e	2021-05-22 23:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:51:47.853+03	2021-05-22 23:51:47.872+03	
9b7f1412-8dec-c43c-def7-b481cefb4eeb	2021-05-22 23:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:52:08.853+03	2021-05-22 23:52:08.859+03	
c8c71c9c-800b-d0ed-dc2b-f7ada2db453b	2021-05-22 23:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:52:29.853+03	2021-05-22 23:52:29.859+03	
a82ecf86-440c-3dbf-e10c-810593fb739f	2021-05-22 23:52:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:52:51.853+03	2021-05-22 23:52:51.861+03	
e8f073b0-dfb4-ec19-290c-3805968e163e	2021-05-22 23:53:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:53:11.853+03	2021-05-22 23:53:11.86+03	
ff1a73cb-a3dd-adb4-7434-bc25d0014e7d	2021-05-22 23:53:31.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:53:31.859+03	2021-05-22 23:53:31.868+03	
c9e3121b-a7c3-7863-d279-f029dc02a6a6	2021-05-22 23:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:53:42.853+03	2021-05-22 23:53:42.86+03	
6c760d1c-1b32-7c4f-1517-191713891c97	2021-05-22 23:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:54:03.852+03	2021-05-22 23:54:03.859+03	
ee8c6948-6067-e277-1ae3-e64328f31862	2021-05-22 23:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:54:24.853+03	2021-05-22 23:54:24.861+03	
0781c203-becb-4936-390d-bc08eda2f250	2021-05-22 23:54:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:54:45.853+03	2021-05-22 23:54:45.869+03	
197bfcba-4392-d2b4-a0a4-5d6d8e7e4ae4	2021-05-22 23:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:55:05.853+03	2021-05-22 23:55:05.86+03	
161e4112-f188-a810-8925-01edcb675fef	2021-05-22 23:55:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:55:26.852+03	2021-05-22 23:55:26.86+03	
ceff1ffa-2a11-7a01-b15e-77350ee9f85d	2021-05-22 23:55:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:55:46.853+03	2021-05-22 23:55:46.859+03	
29ddeb81-cb58-666f-73fb-6d1d53ce6fda	2021-05-22 23:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:56:07.853+03	2021-05-22 23:56:07.861+03	
33d99238-c3a5-c0f9-8e97-86c18f312ec8	2021-05-22 23:56:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:56:27.853+03	2021-05-22 23:56:27.859+03	
b60146b1-c568-5951-505a-0bf29935e6b4	2021-05-22 23:56:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:56:47.853+03	2021-05-22 23:56:47.86+03	
406a7d1d-02c3-194a-8831-2e97998fec2c	2021-05-22 23:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:57:07.853+03	2021-05-22 23:57:07.859+03	
24543df2-65d5-861e-c88f-16213c49d04b	2021-05-22 23:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:57:27.853+03	2021-05-22 23:57:27.861+03	
d2410dae-6180-2823-d3eb-12867d10c9dd	2021-05-22 23:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:57:48.853+03	2021-05-22 23:57:48.859+03	
8a3d9aa0-6c65-9ee4-388c-ed94dd112828	2021-05-22 23:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:58:09.853+03	2021-05-22 23:58:09.859+03	
c301b0d1-42d9-ea08-470d-00a93fc7511a	2021-05-22 23:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:58:30.853+03	2021-05-22 23:58:30.859+03	
67331dc3-99ad-6edf-5302-9187a775eb25	2021-05-22 23:58:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:58:51.853+03	2021-05-22 23:58:51.872+03	
b9d67c40-3fbd-c143-5bd9-b286efac6628	2021-05-22 23:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:59:12.853+03	2021-05-22 23:59:12.86+03	
6a69bfc4-4160-b16a-08a2-4e43c40179dd	2021-05-22 23:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:59:33.853+03	2021-05-22 23:59:33.863+03	
413d4e3b-99f2-4ba5-375e-39f42d2315a3	2021-05-22 23:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:59:55.853+03	2021-05-22 23:59:55.86+03	
4a390d54-d073-abba-ba7b-1a4841f94052	2021-05-23 00:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:00:05.853+03	2021-05-23 00:00:05.86+03	
d97a860b-56ac-1e0b-f96f-24984f57ad6c	2021-05-23 00:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:00:25.853+03	2021-05-23 00:00:25.874+03	
79041f55-ed26-5986-bf57-0fc14ce2ad18	2021-05-23 00:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:00:45.853+03	2021-05-23 00:00:45.869+03	
964586eb-3a99-d1f1-e79f-9960e4453697	2021-05-23 00:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:01:05.853+03	2021-05-23 00:01:05.861+03	
3a320333-31f3-e70b-18f1-81f2f3503148	2021-05-23 00:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:01:25.853+03	2021-05-23 00:01:25.86+03	
58095f22-09d5-45c0-0d08-636c603989ec	2021-05-23 00:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:01:45.853+03	2021-05-23 00:01:45.859+03	
4b08909b-0d73-f560-1de7-e96a37835ea1	2021-05-23 00:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:02:05.853+03	2021-05-23 00:02:05.859+03	
6e5ad266-3388-b3e2-e0ac-c2872500814b	2021-05-23 00:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:02:26.853+03	2021-05-23 00:02:26.871+03	
73527ae5-d5e8-c8aa-964a-893bf0c458a9	2021-05-23 00:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:02:47.853+03	2021-05-23 00:02:47.861+03	
7763b489-e7e4-72a6-5777-6c45361076f7	2021-05-23 00:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:03:07.853+03	2021-05-23 00:03:07.859+03	
3b096f3d-d692-f64d-4b2c-0d573816ea2b	2021-05-23 00:03:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:03:28.853+03	2021-05-23 00:03:28.859+03	
aba47897-8a32-a731-8c41-35396ecd31d2	2021-05-23 00:03:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:03:48.854+03	2021-05-23 00:03:48.86+03	
772b587b-d418-619d-ae90-6df7596a1ee8	2021-05-23 00:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:04:09.853+03	2021-05-23 00:04:09.86+03	
e307c527-7175-55b6-61c2-a0fe381314b3	2021-05-23 00:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:04:30.853+03	2021-05-23 00:04:30.861+03	
9b1b6d92-12ee-b738-4aac-0a2f4864221b	2021-05-23 00:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:04:50.853+03	2021-05-23 00:04:50.864+03	
3b3ccb16-50e0-4503-3aea-f6d3b6fb6089	2021-05-23 00:05:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:05:11.854+03	2021-05-23 00:05:11.861+03	
792b6cef-13f2-b864-40a3-fc66c596663e	2021-05-23 00:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:05:32.853+03	2021-05-23 00:05:32.859+03	
59cee689-c59d-251e-4838-b975d508e041	2021-05-23 00:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:05:52.853+03	2021-05-23 00:05:52.862+03	
17a11e2f-a954-8a92-850e-4d0cb0c086a4	2021-05-23 00:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:06:13.853+03	2021-05-23 00:06:13.86+03	
70f414dc-719c-7486-8d9f-8767890cbdb3	2021-05-23 00:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:06:34.852+03	2021-05-23 00:06:34.86+03	
d35da44b-8986-d84b-78c3-d9a5f06c2d48	2021-05-23 00:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:06:54.853+03	2021-05-23 00:06:54.864+03	
f6387c86-364e-ba8a-e592-8b19d70005d1	2021-05-23 00:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:07:14.853+03	2021-05-23 00:07:14.86+03	
accdbf07-f941-a634-e94b-dee42a866fb1	2021-05-23 00:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:07:34.853+03	2021-05-23 00:07:34.864+03	
6431cf22-0f32-c0a2-a438-a0a1b5413e9a	2021-05-23 00:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:07:54.853+03	2021-05-23 00:07:54.86+03	
c0f50de6-b88c-ff4b-5be3-6e2a8115ce6e	2021-05-23 00:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:08:14.853+03	2021-05-23 00:08:14.859+03	
aac9c4aa-6cb4-4d5f-86b7-d9e04094bf06	2021-05-23 00:08:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:08:34.853+03	2021-05-23 00:08:34.86+03	
56cfa56a-106b-794b-6507-2627325c04c2	2021-05-23 00:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:08:55.852+03	2021-05-23 00:08:55.86+03	
e02a2bb0-ebbf-cb52-d0ac-e7910eaec2f9	2021-05-23 00:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:09:15.853+03	2021-05-23 00:09:15.861+03	
cb23bd06-daea-6803-6445-a827e2eee814	2021-05-23 00:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:09:35.853+03	2021-05-23 00:09:35.859+03	
b2cc22d9-b89d-c132-c761-49b54ee651aa	2021-05-23 00:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:09:55.853+03	2021-05-23 00:09:55.871+03	
daf12ad4-1c68-cf3c-9819-8ca4999e847e	2021-05-23 00:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:10:05.853+03	2021-05-23 00:10:05.866+03	
48f141d9-b312-0b5f-932c-807458e69971	2021-05-23 00:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:10:27.853+03	2021-05-23 00:10:27.859+03	
e3cc82c6-5dbb-e380-1430-54fa71c9240c	2021-05-23 00:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:10:48.853+03	2021-05-23 00:10:48.859+03	
0fd507fa-b8df-f57a-d9ce-9d1d3d52d62a	2021-05-23 00:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:11:08.853+03	2021-05-23 00:11:08.86+03	
d0428991-7073-b1ec-e660-499527241b84	2021-05-23 00:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:11:28.853+03	2021-05-23 00:11:28.86+03	
7d090612-ccc8-ab7a-7bcb-df2aba6c755b	2021-05-23 00:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:11:49.853+03	2021-05-23 00:11:49.86+03	
81da373c-46f1-2742-e951-623c0f0eeb1d	2021-05-23 00:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:12:09.853+03	2021-05-23 00:12:09.859+03	
5f1081ad-75a7-3e35-199b-c7f66c37679e	2021-05-23 00:12:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:12:31.854+03	2021-05-23 00:12:31.861+03	
7aecb626-0312-f937-10df-2fbb71946c08	2021-05-23 00:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:12:52.853+03	2021-05-23 00:12:52.86+03	
94aa5ea7-bb82-9c9e-0857-b5d3ef0f8497	2021-05-23 00:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:13:12.853+03	2021-05-23 00:13:12.86+03	
1849fcf2-c767-ef6c-34fa-7888533ccc5e	2021-05-23 00:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:13:33.853+03	2021-05-23 00:13:33.86+03	
d26cbd7f-4288-e7a8-ca10-47845b3944f1	2021-05-23 00:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:13:54.853+03	2021-05-23 00:13:54.865+03	
5dfe9dc4-1ffe-1040-813d-e94b33ae5556	2021-05-23 00:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:14:15.852+03	2021-05-23 00:14:15.859+03	
23300f11-0a3e-d6a0-ee9d-cfe049d2f7ce	2021-05-23 00:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:14:35.853+03	2021-05-23 00:14:35.86+03	
c456055b-6617-c2f3-0466-7c6100cc2211	2021-05-22 23:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:53:53.852+03	2021-05-22 23:53:53.86+03	
93000510-6cbc-7579-f226-96cea5e292eb	2021-05-22 23:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:54:13.853+03	2021-05-22 23:54:13.859+03	
a532cbd8-96f6-08ce-ff2c-cf58f068fe6a	2021-05-22 23:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:54:34.853+03	2021-05-22 23:54:34.86+03	
f4cc33a8-e56c-8827-d6ea-18cd17eb9060	2021-05-22 23:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:54:55.853+03	2021-05-22 23:54:55.86+03	
86bf69ce-22df-928a-d621-c68a9a6d727f	2021-05-22 23:55:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:55:16.852+03	2021-05-22 23:55:16.87+03	
52b32c0f-e773-9d19-86b3-74c00e1ae868	2021-05-22 23:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:55:36.852+03	2021-05-22 23:55:36.86+03	
7b771b20-fbc2-a06e-d511-1feaff0aac4f	2021-05-22 23:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:55:57.853+03	2021-05-22 23:55:57.861+03	
450d12f3-f507-af10-f952-1d4b15d3efd6	2021-05-22 23:56:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:56:17.853+03	2021-05-22 23:56:17.863+03	
f9353788-c65d-c7a5-e257-69743c288339	2021-05-22 23:56:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:56:37.853+03	2021-05-22 23:56:37.859+03	
44d7d0fa-1e91-56ef-16ac-8d172779aca0	2021-05-22 23:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:56:57.853+03	2021-05-22 23:56:57.864+03	
4b5ab3d6-cbdd-b4c3-f966-684589a21633	2021-05-22 23:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:57:17.853+03	2021-05-22 23:57:17.878+03	
11c203a9-df0a-9951-966f-bc8a71d0beb1	2021-05-22 23:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:57:38.852+03	2021-05-22 23:57:38.859+03	
e5bcb4ee-3ca2-c92b-316c-1a570cfbbabb	2021-05-22 23:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:57:58.853+03	2021-05-22 23:57:58.859+03	
91338b31-6355-45cc-e7a0-bd6e9f32cd9f	2021-05-22 23:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:58:20.853+03	2021-05-22 23:58:20.861+03	
3758a360-ddda-7ee0-3b36-be9610a57da8	2021-05-22 23:58:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:58:41.852+03	2021-05-22 23:58:41.859+03	
5373d6ca-6d7b-72bb-454e-ab9d88cc1153	2021-05-22 23:59:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:59:01.854+03	2021-05-22 23:59:01.86+03	
1d95916b-776a-54b7-3a9d-9964016232ed	2021-05-22 23:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:59:23.853+03	2021-05-22 23:59:23.86+03	
2d1848bf-3f63-f8b9-7a15-b05a3cf60b3c	2021-05-22 23:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-22 23:59:44.853+03	2021-05-22 23:59:44.86+03	
dd2f07f8-0a24-346f-eaf7-4991c08a12c5	2021-05-23 00:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 00:00:00.853+03	2021-05-23 00:00:00.859+03	ERROR
ded51bcc-fc05-cf0e-5f80-cb35d5c03078	2021-05-23 00:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:00:15.853+03	2021-05-23 00:00:15.874+03	
b042f7fe-550a-fe8a-70a7-ee8cb40e2a96	2021-05-23 00:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:00:35.853+03	2021-05-23 00:00:35.861+03	
86cc2692-9f66-071a-2aa9-8723bec52de8	2021-05-23 00:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:00:55.853+03	2021-05-23 00:00:55.859+03	
709c497b-b6bf-89c8-9955-7b5a6c6b597b	2021-05-23 00:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:01:15.853+03	2021-05-23 00:01:15.859+03	
73551c70-4a31-a0b2-31f3-2e448489f8fe	2021-05-23 00:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:01:35.853+03	2021-05-23 00:01:35.861+03	
e106aedf-d54e-5692-52c9-22ecc7c33502	2021-05-23 00:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:01:55.853+03	2021-05-23 00:01:55.859+03	
515cc83d-9b49-98c2-531a-529bb1249dc5	2021-05-23 00:02:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:02:16.852+03	2021-05-23 00:02:16.859+03	
260f8f00-48b6-65f8-bbbd-bd4fa4c0eff9	2021-05-23 00:02:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:02:36.853+03	2021-05-23 00:02:36.859+03	
ea1e7f33-5e26-ab7b-9794-6529350ba018	2021-05-23 00:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:02:57.853+03	2021-05-23 00:02:57.859+03	
1733fc20-e7f8-d95a-1c7f-f0905b0436cb	2021-05-23 00:03:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:03:18.853+03	2021-05-23 00:03:18.86+03	
efb92bac-f1da-67d3-cf1e-948b18c29d4b	2021-05-23 00:03:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:03:38.853+03	2021-05-23 00:03:38.865+03	
2fbb511a-f797-228c-4ae6-72ff37f23c12	2021-05-23 00:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:03:59.852+03	2021-05-23 00:03:59.859+03	
24dbd983-6761-e59f-274f-19267c8b5541	2021-05-23 00:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:04:19.853+03	2021-05-23 00:04:19.865+03	
b89277e5-2157-fce4-e095-b26aedff7447	2021-05-23 00:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:04:40.853+03	2021-05-23 00:04:40.86+03	
67c41ba2-da06-8818-7200-056a52c4e098	2021-05-23 00:05:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:05:01.854+03	2021-05-23 00:05:01.889+03	
a8420738-b37c-1c83-38f2-966525162ad4	2021-05-23 00:05:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:05:21.854+03	2021-05-23 00:05:21.862+03	
225ea539-5219-fb49-b4bf-2814d8395d78	2021-05-23 00:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:05:42.853+03	2021-05-23 00:05:42.86+03	
049ebafa-101b-cc97-79d0-92ecc7d426ad	2021-05-23 00:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:06:02.853+03	2021-05-23 00:06:02.862+03	
a4fa7671-6601-7e4b-41eb-902dfcfccc2b	2021-05-23 00:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:06:23.853+03	2021-05-23 00:06:23.86+03	
7aa3a6dd-9423-067b-cd7d-a453930f3c74	2021-05-23 00:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:06:44.853+03	2021-05-23 00:06:44.861+03	
2400d8af-d969-42b0-7e2a-acacd72642b4	2021-05-23 00:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:07:04.853+03	2021-05-23 00:07:04.859+03	
e177752d-d63e-d9cd-2355-9990a58b8581	2021-05-23 00:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:07:24.853+03	2021-05-23 00:07:24.86+03	
1aca762b-bad4-61fc-9611-89524cce734a	2021-05-23 00:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:07:44.853+03	2021-05-23 00:07:44.859+03	
4c260ad1-6ef4-00d3-e64e-cbfff865db26	2021-05-23 00:08:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:08:04.853+03	2021-05-23 00:08:04.859+03	
7e73e34b-1095-c815-f026-3671c5214504	2021-05-23 00:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:08:24.853+03	2021-05-23 00:08:24.859+03	
93a4b784-1950-7e1c-bc28-e097293226d8	2021-05-23 00:08:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:08:44.853+03	2021-05-23 00:08:44.86+03	
d10e9f24-7fdb-5923-0c85-5aa70350acb3	2021-05-23 00:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:09:05.853+03	2021-05-23 00:09:05.86+03	
5b759c7e-5df2-c4e3-cd1b-66bf349c011f	2021-05-23 00:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:09:25.853+03	2021-05-23 00:09:25.86+03	
6e20e751-320f-86b3-4272-855f30e32863	2021-05-23 00:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:09:45.853+03	2021-05-23 00:09:45.862+03	
3a71fda2-66c7-a22c-30a7-77ac45777f8e	2021-05-23 00:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 00:10:00.852+03	2021-05-23 00:10:00.858+03	ERROR
c2d31f10-c94e-0def-d043-b3cbbf4b376f	2021-05-23 00:10:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:10:16.853+03	2021-05-23 00:10:16.86+03	
7b5c788c-0bec-3e07-9256-18dced9de1b0	2021-05-23 00:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:10:38.853+03	2021-05-23 00:10:38.86+03	
98cb0c95-9d84-edc7-12bc-bfe8e49c5be6	2021-05-23 00:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:10:58.853+03	2021-05-23 00:10:58.859+03	
0f5f7ef3-f1e4-ac79-f399-550462c6c2c1	2021-05-23 00:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:11:18.853+03	2021-05-23 00:11:18.861+03	
23778371-290f-53dc-aeab-cb06dc9b04c3	2021-05-23 00:11:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:11:38.853+03	2021-05-23 00:11:38.859+03	
9956c747-60f0-1a76-d431-4c995ec2e902	2021-05-23 00:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:11:59.853+03	2021-05-23 00:11:59.858+03	
94f7488e-68fa-927f-0494-b79e0dbee8e2	2021-05-23 00:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:12:20.853+03	2021-05-23 00:12:20.859+03	
187eedc6-7566-5e47-c7b3-7fee101173d9	2021-05-23 00:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:12:42.853+03	2021-05-23 00:12:42.868+03	
431f7162-bd71-f6ee-1c6c-ad1d8a1a2c3a	2021-05-23 00:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:13:02.853+03	2021-05-23 00:13:02.859+03	
39758262-02f9-e576-5d57-7f1e171b2f2f	2021-05-23 00:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:13:22.853+03	2021-05-23 00:13:22.859+03	
dab320cc-8516-9865-d43b-3b11b405769a	2021-05-23 00:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:13:44.852+03	2021-05-23 00:13:44.86+03	
be01de72-e148-b072-975c-75e487143b89	2021-05-23 00:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:14:05.852+03	2021-05-23 00:14:05.862+03	
fc08e87b-e18c-af6e-3f48-bf91f1d20265	2021-05-23 00:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:14:25.852+03	2021-05-23 00:14:25.859+03	
82db9a78-b785-52ff-3beb-83c1ecce63f2	2021-05-23 00:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:14:45.853+03	2021-05-23 00:14:45.87+03	
5b5ece63-b90b-854d-d110-ee1c37dc7140	2021-05-23 00:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:14:56.853+03	2021-05-23 00:14:56.861+03	
b172d139-0c30-fd11-30e6-422341ccc98e	2021-05-23 00:15:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:15:16.854+03	2021-05-23 00:15:16.86+03	
e10fa81f-ddec-2bf0-ddab-e29eed432f65	2021-05-23 00:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:15:37.853+03	2021-05-23 00:15:37.868+03	
afa4b063-ebe3-2ed1-3f99-5c55e0ece586	2021-05-23 00:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:15:57.853+03	2021-05-23 00:15:57.868+03	
ba3ccf85-8cde-50bc-294b-eb67b0c43421	2021-05-23 00:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:16:18.853+03	2021-05-23 00:16:18.862+03	
9a44f261-91d2-bd96-5035-5ecafed67f5e	2021-05-23 00:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:16:38.853+03	2021-05-23 00:16:38.86+03	
d022540b-99e2-9d22-9a2b-a8fc7dd6524e	2021-05-23 00:17:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:17:00.852+03	2021-05-23 00:17:00.858+03	
ad634b1e-bc9d-c927-a8a5-0eefdb8e9e62	2021-05-23 00:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:17:20.853+03	2021-05-23 00:17:20.86+03	
684d7b69-b3d2-bc3b-9e7a-849a5aca0fda	2021-05-23 00:17:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:17:41.853+03	2021-05-23 00:17:41.864+03	
87428dc4-8f5b-adf2-e40e-13da599166fd	2021-05-23 00:18:01.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:18:01.86+03	2021-05-23 00:18:01.867+03	
c3ef3d7b-5e57-bf86-6956-5bb43f64e40d	2021-05-23 00:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:18:23.853+03	2021-05-23 00:18:23.859+03	
78c5064f-50e0-078e-7c95-6cf6327d2e06	2021-05-23 00:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:18:44.853+03	2021-05-23 00:18:44.862+03	
8771ac75-7357-c661-f8a8-5ebe506123af	2021-05-23 00:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:19:05.853+03	2021-05-23 00:19:05.87+03	
68a18fc3-02ed-e885-d4be-9f6384fdb9c5	2021-05-23 00:19:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:19:27.853+03	2021-05-23 00:19:27.859+03	
64f30983-3b39-7529-d9e1-ed5588f5eda1	2021-05-23 00:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:19:48.852+03	2021-05-23 00:19:48.859+03	
009723a7-2fad-d627-29f2-bbf46727214b	2021-05-23 00:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 00:20:00.852+03	2021-05-23 00:20:00.858+03	ERROR
f7e2a4d7-2f3c-1067-0791-f14a7558c397	2021-05-23 00:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:20:18.853+03	2021-05-23 00:20:18.897+03	
7ad500e1-3086-ee7b-08dd-d114812ccf7a	2021-05-23 00:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:20:38.853+03	2021-05-23 00:20:38.86+03	
c09f6185-9a36-c5c5-9fb1-1d8f4dd3f6a4	2021-05-23 00:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:20:58.853+03	2021-05-23 00:20:58.861+03	
85b2ee05-ab80-fe11-10b7-de821633ce3b	2021-05-23 00:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:21:18.853+03	2021-05-23 00:21:18.861+03	
2a4a9c26-22d3-3491-a737-2cda248ada9d	2021-05-23 00:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:21:38.853+03	2021-05-23 00:21:38.859+03	
991f5a73-3552-6356-6707-1361ba20827f	2021-05-23 00:22:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:22:00.853+03	2021-05-23 00:22:00.86+03	
7f5528c4-fd4f-10a9-3586-3c39cf46d38f	2021-05-23 00:22:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:22:21.854+03	2021-05-23 00:22:21.86+03	
07abb5e9-7f5e-71a4-988a-cc979f4e3667	2021-05-23 00:22:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:22:41.854+03	2021-05-23 00:22:41.861+03	
8abe3db3-0ed7-9acd-47b7-38e7527c5ef8	2021-05-23 00:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:23:02.853+03	2021-05-23 00:23:02.859+03	
dc37ff15-8846-9632-0b2b-5a8908961c8e	2021-05-23 00:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:23:23.852+03	2021-05-23 00:23:23.859+03	
8db7243e-575d-caf4-31f0-6998a2523500	2021-05-23 00:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:23:43.853+03	2021-05-23 00:23:43.86+03	
eed975ff-f0d8-3079-5778-0987d2ba2f79	2021-05-23 00:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:24:05.852+03	2021-05-23 00:24:05.87+03	
b94f3896-2ac8-e90c-c85e-ba8cf332d73f	2021-05-23 00:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:24:25.853+03	2021-05-23 00:24:25.868+03	
887e2326-77e2-d314-c6c0-d8bb64587590	2021-05-23 00:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:24:47.853+03	2021-05-23 00:24:47.859+03	
72273f36-37ed-8dbb-7894-791c558cc009	2021-05-23 00:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:25:08.853+03	2021-05-23 00:25:08.86+03	
4ce53d17-0629-c464-3d19-06f59d73ac57	2021-05-23 00:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:25:29.853+03	2021-05-23 00:25:29.872+03	
018d66a7-9efd-5bc4-978d-72fefac0b0b4	2021-05-23 00:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:25:49.853+03	2021-05-23 00:25:49.863+03	
d6939892-4ed7-70e5-8bca-1886d6ba0a34	2021-05-23 00:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:26:10.852+03	2021-05-23 00:26:10.865+03	
29b3827b-e9d4-3001-c103-42854df1129b	2021-05-23 00:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:26:30.853+03	2021-05-23 00:26:30.859+03	
4818fee2-1c3b-405a-7ac9-0b75d86700f6	2021-05-23 00:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:26:50.853+03	2021-05-23 00:26:50.86+03	
4caaf06a-a8d5-d562-ee48-f29c714be852	2021-05-23 00:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:27:10.853+03	2021-05-23 00:27:10.859+03	
332b4937-08f0-d436-4838-cbe199a5716e	2021-05-23 00:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:27:30.853+03	2021-05-23 00:27:30.861+03	
994bde3d-0038-b28f-42f5-cf268990393b	2021-05-23 00:27:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:27:50.853+03	2021-05-23 00:27:50.86+03	
f658a632-0b71-e37c-31ba-2cb984b2bdb7	2021-05-23 00:28:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:28:11.853+03	2021-05-23 00:28:11.86+03	
9c5b746a-0a92-5315-7c27-eef151e091e1	2021-05-23 00:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:28:32.853+03	2021-05-23 00:28:32.86+03	
19b8a6c7-ea98-a31b-51a1-6b2663b820c0	2021-05-23 00:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:28:52.853+03	2021-05-23 00:28:52.86+03	
f6864870-9c02-6eb6-7284-e8d87ad02504	2021-05-23 00:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:29:12.853+03	2021-05-23 00:29:12.86+03	
04e7d6d1-b9ee-49ab-dae2-995f62e8bfde	2021-05-23 00:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:29:33.853+03	2021-05-23 00:29:33.859+03	
0b4f1e0d-e93a-09ab-777b-5691e9befb99	2021-05-23 00:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:29:54.853+03	2021-05-23 00:29:54.859+03	
9d0c5527-34b6-b5c1-4e23-e9ed65b40161	2021-05-23 00:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:30:05.853+03	2021-05-23 00:30:05.86+03	
9633ef7a-4c5e-6d0c-bf6d-d79f22b3a1de	2021-05-23 00:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:30:26.853+03	2021-05-23 00:30:26.869+03	
398dd070-29d1-4bd1-9c05-53b39318499e	2021-05-23 00:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:30:47.853+03	2021-05-23 00:30:47.861+03	
02e894bf-a263-1244-2dec-ee7858403c4a	2021-05-23 00:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:31:07.853+03	2021-05-23 00:31:07.86+03	
bbcce922-9e76-f75d-f127-53558d069169	2021-05-23 00:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:31:28.853+03	2021-05-23 00:31:28.86+03	
ac5e414c-d5dd-ff02-0404-a48105e25b87	2021-05-23 00:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:31:49.853+03	2021-05-23 00:31:49.86+03	
13f5f43a-0417-e403-5345-cfe6e9237da6	2021-05-23 00:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:32:09.853+03	2021-05-23 00:32:09.862+03	
0537cbb1-4c1f-54f8-fb38-c1b38b3dc2d6	2021-05-23 00:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:32:30.852+03	2021-05-23 00:32:30.859+03	
b92eeec8-4242-04fe-5f66-6a18e2110588	2021-05-23 00:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:32:50.853+03	2021-05-23 00:32:50.86+03	
9c3d3113-1543-6688-8543-fc6cdee153f2	2021-05-23 00:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:33:10.853+03	2021-05-23 00:33:10.859+03	
aa2dc935-5de8-68db-9c5f-f27ae6b87a6f	2021-05-23 00:33:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:33:31.854+03	2021-05-23 00:33:31.862+03	
79faa919-64f4-7d11-2718-365d956de860	2021-05-23 00:33:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:33:51.854+03	2021-05-23 00:33:51.861+03	
d47fa9b7-be8c-46ea-0c6c-1e1b8d441466	2021-05-23 00:34:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:34:11.854+03	2021-05-23 00:34:11.86+03	
553f08ea-bb31-eba2-01a2-15f41c2d4f15	2021-05-23 00:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:34:32.853+03	2021-05-23 00:34:32.86+03	
303bc565-bbf7-59eb-86af-40ce72705cf3	2021-05-23 00:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:34:53.852+03	2021-05-23 00:34:53.858+03	
6b0aa6d9-64d9-aa00-27c9-f985e4fb433c	2021-05-23 00:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:35:13.853+03	2021-05-23 00:35:13.859+03	
0ac15e27-6930-9495-e462-38d06b87b4dd	2021-05-23 00:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:35:33.853+03	2021-05-23 00:35:33.862+03	
54e2b333-f2ee-837e-a8f4-f11fc810e552	2021-05-23 00:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:35:53.853+03	2021-05-23 00:35:53.86+03	
dcbe0df9-10eb-a229-b7c8-f830c5f4f621	2021-05-23 00:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:15:06.853+03	2021-05-23 00:15:06.86+03	
0eb39011-04b7-a0a3-0745-be8e708f5038	2021-05-23 00:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:15:27.852+03	2021-05-23 00:15:27.858+03	
aeb311b0-80b0-044d-a723-bbb4a19d62db	2021-05-23 00:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:15:47.853+03	2021-05-23 00:15:47.859+03	
658ea508-71e0-c07f-192c-f97dd05665bd	2021-05-23 00:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:16:08.853+03	2021-05-23 00:16:08.86+03	
b1f4f748-6139-5964-9f40-6d88fadfcadb	2021-05-23 00:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:16:28.853+03	2021-05-23 00:16:28.859+03	
c193c0e1-7206-2935-3327-4c1362ebef27	2021-05-23 00:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:16:49.853+03	2021-05-23 00:16:49.86+03	
bcc9960a-bf40-cf7d-bf0f-d59de0313c84	2021-05-23 00:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:17:10.853+03	2021-05-23 00:17:10.859+03	
7799d964-18cc-e104-a2ed-8f97f2fc9c77	2021-05-23 00:17:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:17:31.853+03	2021-05-23 00:17:31.862+03	
b72cf3ac-ea49-0e6f-70bb-a125d8c37354	2021-05-23 00:17:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:17:51.854+03	2021-05-23 00:17:51.862+03	
c64d5010-8624-4bee-85ef-9c118c84c603	2021-05-23 00:18:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:18:12.853+03	2021-05-23 00:18:12.859+03	
e110e845-0ad5-5d25-7e86-5a3b67bcfd50	2021-05-23 00:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:18:34.852+03	2021-05-23 00:18:34.86+03	
2395c14e-0261-baf0-85f0-f889033fde03	2021-05-23 00:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:18:54.853+03	2021-05-23 00:18:54.861+03	
3928f0fd-0770-9b88-1ee5-38be1538ca65	2021-05-23 00:19:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:19:16.854+03	2021-05-23 00:19:16.861+03	
eecc28ea-6ed2-4c31-f54b-56032c421e44	2021-05-23 00:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:19:38.852+03	2021-05-23 00:19:38.859+03	
744ee5a6-4cc8-7dcd-df69-2eb880063f96	2021-05-23 00:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:19:58.852+03	2021-05-23 00:19:58.859+03	
ebf3f153-fb7e-3dbc-ef15-185c1998dc89	2021-05-23 00:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:20:08.852+03	2021-05-23 00:20:08.86+03	
38f85e9a-8ac9-a7ee-27a3-6d7a136ff61f	2021-05-23 00:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:20:28.853+03	2021-05-23 00:20:28.859+03	
aa96700d-0bb2-9683-bd02-75524d5ef818	2021-05-23 00:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:20:48.853+03	2021-05-23 00:20:48.861+03	
50180ed0-38bc-f653-6b2d-e7116c78936c	2021-05-23 00:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:21:08.853+03	2021-05-23 00:21:08.86+03	
86a7064c-78fa-3a8c-20e7-17a129d0bd79	2021-05-23 00:21:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:21:28.853+03	2021-05-23 00:21:28.861+03	
a4aac63f-4437-4314-6948-24b26cac3aa6	2021-05-23 00:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:21:49.853+03	2021-05-23 00:21:49.859+03	
86017eb4-a8ad-c5e6-621e-b11ca130e5c6	2021-05-23 00:22:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:22:11.852+03	2021-05-23 00:22:11.859+03	
c4ff743b-d8f3-a509-5fc4-89fd9dae3bbc	2021-05-23 00:22:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:22:31.854+03	2021-05-23 00:22:31.861+03	
49f7c9a3-f8e7-77fe-5aea-1f7f73433a05	2021-05-23 00:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:22:52.853+03	2021-05-23 00:22:52.859+03	
709f793e-ccb7-57f9-983c-5b561eea6acc	2021-05-23 00:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:23:13.852+03	2021-05-23 00:23:13.858+03	
23979887-cdc5-c43f-6062-7f59d967da99	2021-05-23 00:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:23:33.852+03	2021-05-23 00:23:33.862+03	
d85ffefc-271f-dae3-f5b8-1c513ca93f1b	2021-05-23 00:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:23:54.853+03	2021-05-23 00:23:54.859+03	
feb19a2f-2fd8-c5c1-1927-f076d66c0ccf	2021-05-23 00:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:24:15.853+03	2021-05-23 00:24:15.859+03	
3128792a-aeb4-8042-6d5b-8e7bf0166fde	2021-05-23 00:24:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:24:36.853+03	2021-05-23 00:24:36.859+03	
acb8bc00-f320-691c-d8dd-0a7df56a2191	2021-05-23 00:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:24:58.852+03	2021-05-23 00:24:58.859+03	
6e0308bd-146e-ab80-165c-682f0bc49c95	2021-05-23 00:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:25:19.852+03	2021-05-23 00:25:19.859+03	
c52caa77-a241-ed83-bf13-490c22ff4c09	2021-05-23 00:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:25:39.853+03	2021-05-23 00:25:39.859+03	
d481562d-c786-9452-d090-d9f8645b67af	2021-05-23 00:25:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:25:59.853+03	2021-05-23 00:25:59.859+03	
59a2d4ec-9b23-a5e8-9d2e-c12647eb4b07	2021-05-23 00:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:26:20.852+03	2021-05-23 00:26:20.859+03	
2cc364bb-aa30-b087-e45c-574a8a8d5d78	2021-05-23 00:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:26:40.853+03	2021-05-23 00:26:40.86+03	
30ba4b88-48d6-4d86-bada-9f5c0eecb422	2021-05-23 00:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:27:00.853+03	2021-05-23 00:27:00.859+03	
47a8b151-a1eb-c458-0564-fdfda8af8319	2021-05-23 00:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:27:20.853+03	2021-05-23 00:27:20.859+03	
62e5d6dc-234d-b4f1-364b-a09fc9839885	2021-05-23 00:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:27:40.853+03	2021-05-23 00:27:40.859+03	
9e5958b9-44f1-b5dc-19e9-c45cca53d738	2021-05-23 00:28:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:28:01.852+03	2021-05-23 00:28:01.86+03	
391851fe-4137-bdd9-b0fb-08efbac9b9b2	2021-05-23 00:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:28:22.853+03	2021-05-23 00:28:22.864+03	
691c2210-51b3-05bc-0dc0-44b9e89ba0f2	2021-05-23 00:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:28:42.853+03	2021-05-23 00:28:42.859+03	
2d6ae6eb-f6da-9c8f-53c3-2e48b0213d16	2021-05-23 00:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:29:02.853+03	2021-05-23 00:29:02.861+03	
265c9950-6ad2-1902-e629-36f3a2c3f65c	2021-05-23 00:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:29:23.853+03	2021-05-23 00:29:23.861+03	
5270e005-9cde-2312-cdfc-502d97de66c2	2021-05-23 00:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:29:43.853+03	2021-05-23 00:29:43.861+03	
57a05934-aca2-331a-bb5f-6204a1e20663	2021-05-23 00:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 00:30:00.853+03	2021-05-23 00:30:00.857+03	ERROR
77e398d6-8913-eb95-2341-2b703cf8d3ad	2021-05-23 00:30:16.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:30:16.853+03	2021-05-23 00:30:16.866+03	
89d41163-aa57-d640-7ffb-a64074e93a12	2021-05-23 00:30:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:30:36.853+03	2021-05-23 00:30:36.86+03	
15524e1c-a80d-1656-60fd-ea2424d0a9c5	2021-05-23 00:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:30:57.853+03	2021-05-23 00:30:57.86+03	
730c9eea-dce2-26c6-2d6a-d0833713f812	2021-05-23 00:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:31:18.852+03	2021-05-23 00:31:18.86+03	
7ec0225a-653b-0f50-8546-32a0beca6a3b	2021-05-23 00:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:31:38.853+03	2021-05-23 00:31:38.869+03	
eecf2f48-eff4-2a6c-e7e6-389e06d2e088	2021-05-23 00:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:31:59.853+03	2021-05-23 00:31:59.859+03	
cbbf8724-2b15-1b1b-853b-233b2ab67ed2	2021-05-23 00:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:32:19.853+03	2021-05-23 00:32:19.869+03	
56b4db6e-0926-7fcd-8c94-dfc0882736b9	2021-05-23 00:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:32:40.853+03	2021-05-23 00:32:40.86+03	
362f8bdf-387d-0929-82cb-8bacbe436ea0	2021-05-23 00:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:33:00.853+03	2021-05-23 00:33:00.859+03	
099a7ae4-a973-ff55-bb9e-15e215b42a37	2021-05-23 00:33:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:33:21.852+03	2021-05-23 00:33:21.859+03	
7bf76b8a-9c0e-25c2-5f9e-aee176c4b081	2021-05-23 00:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:33:41.854+03	2021-05-23 00:33:41.861+03	
555db2a0-fce8-a3da-bebf-78afbdeb5cbe	2021-05-23 00:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:34:01.854+03	2021-05-23 00:34:01.861+03	
02993ed7-6417-63cc-3f33-53abd7480d41	2021-05-23 00:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:34:22.853+03	2021-05-23 00:34:22.86+03	
504c0889-82dd-f9dd-6ca9-2dd533a2bf95	2021-05-23 00:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:34:42.853+03	2021-05-23 00:34:42.86+03	
f1cafd5f-fc3e-bb8b-d504-52c58d6f6670	2021-05-23 00:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:35:03.853+03	2021-05-23 00:35:03.86+03	
15153576-b292-b72b-930e-1ce52391fc1d	2021-05-23 00:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:35:23.853+03	2021-05-23 00:35:23.872+03	
2400eadb-ffaa-6bd5-8f59-c08faad33a43	2021-05-23 00:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:35:43.853+03	2021-05-23 00:35:43.859+03	
94964b90-4f84-5044-547e-c8ff9efe0d63	2021-05-23 00:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:36:04.853+03	2021-05-23 00:36:04.86+03	
0ea11d24-f8d9-0e4f-98a4-de6ce2a24d21	2021-05-23 00:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:36:15.853+03	2021-05-23 00:36:15.862+03	
ff07931d-8888-cda4-9178-da7215a82380	2021-05-23 00:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:36:36.852+03	2021-05-23 00:36:36.86+03	
03faf188-9058-9330-8008-aa106b974e76	2021-05-23 00:36:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:36:56.854+03	2021-05-23 00:36:56.86+03	
511e6645-1e4a-4363-499d-c2f9c1455a0b	2021-05-23 00:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:37:17.853+03	2021-05-23 00:37:17.861+03	
25763964-4312-3a78-5c65-222f6071fe70	2021-05-23 00:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:37:39.852+03	2021-05-23 00:37:39.874+03	
67274e65-769d-53dc-9208-ef385d01c2bb	2021-05-23 00:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:37:59.853+03	2021-05-23 00:37:59.859+03	
fd011f7e-c5ef-4594-2c5a-24b24cbc0548	2021-05-23 00:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:38:20.853+03	2021-05-23 00:38:20.873+03	
32b811fa-22ea-d9a2-fdbc-eb1583fc2fbc	2021-05-23 00:38:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:38:41.854+03	2021-05-23 00:38:41.861+03	
d868617a-b5a1-8efa-2567-0a827305e0be	2021-05-23 00:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:39:02.853+03	2021-05-23 00:39:02.859+03	
399fe944-5bdf-d488-a243-9cc93c5ec7f1	2021-05-23 00:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:39:22.853+03	2021-05-23 00:39:22.86+03	
fb73b08a-8c9f-73e8-d328-ba5f7a6854f3	2021-05-23 00:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:39:43.853+03	2021-05-23 00:39:43.859+03	
a8880547-6432-cb52-7cf2-6071a34fcaaf	2021-05-23 00:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 00:40:00.852+03	2021-05-23 00:40:00.86+03	ERROR
35ebc519-4c5f-7f88-951d-8739f0e04e62	2021-05-23 00:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:40:13.853+03	2021-05-23 00:40:13.86+03	
318d7ea2-e11d-b809-eb85-9396deee2763	2021-05-23 00:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:40:33.853+03	2021-05-23 00:40:33.859+03	
efe51949-8f81-0419-e7b5-597be0471180	2021-05-23 00:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:40:54.852+03	2021-05-23 00:40:54.86+03	
7d049134-2fb2-dac1-ba48-96967c884c8d	2021-05-23 00:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:41:14.853+03	2021-05-23 00:41:14.866+03	
c7116997-c2f3-bfc5-e885-860a2be54218	2021-05-23 00:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:41:35.852+03	2021-05-23 00:41:35.859+03	
d712a757-4145-f000-5af9-0d4f2327b02b	2021-05-23 00:41:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:41:56.853+03	2021-05-23 00:41:56.86+03	
22b0e874-7001-e70d-a090-737edb176dfd	2021-05-23 00:42:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:42:16.853+03	2021-05-23 00:42:16.872+03	
9be33f92-769e-7d44-2415-8f869c7aff86	2021-05-23 00:42:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:42:37.853+03	2021-05-23 00:42:37.874+03	
82126cef-9cdf-706a-8a71-44832e5192b0	2021-05-23 00:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:42:59.853+03	2021-05-23 00:42:59.86+03	
28d9cf58-ff43-3437-d385-0a84d5d8ea62	2021-05-23 00:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:43:19.853+03	2021-05-23 00:43:19.86+03	
f7925fde-6517-da48-cffd-9f5857cb15d1	2021-05-23 00:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:43:40.852+03	2021-05-23 00:43:40.861+03	
958022a8-ac2d-f141-2cbe-fd741570add8	2021-05-23 00:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:44:00.853+03	2021-05-23 00:44:00.86+03	
e7bf7af8-b24d-6178-eee2-a0b12631e39f	2021-05-23 00:44:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:44:21.852+03	2021-05-23 00:44:21.859+03	
b23c2017-0f5f-1c2d-c20f-d39b6d81980e	2021-05-23 00:44:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:44:41.853+03	2021-05-23 00:44:41.859+03	
9d8eedcf-77d7-9816-6d4f-53365ecbed5b	2021-05-23 00:45:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:45:01.853+03	2021-05-23 00:45:01.874+03	
e1f141d8-6979-cb34-e07a-ba4e576ffa44	2021-05-23 00:45:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:45:21.853+03	2021-05-23 00:45:21.86+03	
bf48b100-21f8-02e5-2fbe-06f981fbe473	2021-05-23 00:45:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:45:41.853+03	2021-05-23 00:45:41.86+03	
e152ad37-f7b2-c185-965a-a0110698610f	2021-05-23 00:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:46:02.852+03	2021-05-23 00:46:02.859+03	
d43aa578-5dde-8588-4ac3-e5e0b08d9919	2021-05-23 00:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:46:22.853+03	2021-05-23 00:46:22.859+03	
52f1e46a-c10b-5421-e5b4-238fb6e4e1c5	2021-05-23 00:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:46:44.853+03	2021-05-23 00:46:44.862+03	
7b1a20eb-6778-a45d-ba42-359fe3d8080c	2021-05-23 00:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:47:04.853+03	2021-05-23 00:47:04.859+03	
f16b2253-7768-26e6-f598-62d477d5f0d9	2021-05-23 00:47:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:47:26.852+03	2021-05-23 00:47:26.86+03	
39fd9211-0796-5434-017c-436781ca51dd	2021-05-23 00:47:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:47:46.852+03	2021-05-23 00:47:46.86+03	
e0370649-8417-e070-4895-0f2da9fe51fd	2021-05-23 00:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:48:06.852+03	2021-05-23 00:48:06.859+03	
2b7cfc30-b892-3269-0b20-632c39aedfc9	2021-05-23 00:48:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:48:26.852+03	2021-05-23 00:48:26.86+03	
f45d8ca5-4d8b-80c6-4342-4a7dd729f932	2021-05-23 00:48:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:48:46.854+03	2021-05-23 00:48:46.862+03	
f705cf38-6517-551f-8eae-3e7faf2cab8e	2021-05-23 00:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:49:07.853+03	2021-05-23 00:49:07.859+03	
54c9b77c-ea2e-36be-a431-1a017ce851dd	2021-05-23 00:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:49:28.853+03	2021-05-23 00:49:28.861+03	
85af8567-742a-1004-fca6-a6e12d3d69a1	2021-05-23 00:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:49:49.853+03	2021-05-23 00:49:49.859+03	
61186ad5-2f52-4750-9c0f-4017191c1103	2021-05-23 00:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:50:10.853+03	2021-05-23 00:50:10.859+03	
19b7d5fd-7f4c-85e9-303c-73eb66040ae8	2021-05-23 00:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:50:30.853+03	2021-05-23 00:50:30.873+03	
8f6b41a9-e3b7-35cb-c8b2-29612ea90249	2021-05-23 00:50:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:50:51.854+03	2021-05-23 00:50:51.861+03	
ac0d9d3a-56cf-4fa9-1dc6-f5989f67e0e0	2021-05-23 00:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:51:13.853+03	2021-05-23 00:51:13.86+03	
7d30bf29-ab22-a367-13b4-3388e32d4eaa	2021-05-23 00:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:51:34.852+03	2021-05-23 00:51:34.861+03	
f0af8abf-4a1b-ed9f-6ed0-5ad706b91720	2021-05-23 00:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:51:54.853+03	2021-05-23 00:51:54.859+03	
381d4b9e-b43c-a12b-654c-9b5d19612eea	2021-05-23 00:52:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:52:14.853+03	2021-05-23 00:52:14.86+03	
f77102a9-091b-e449-2c93-23fb9a4d7cea	2021-05-23 00:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:52:35.852+03	2021-05-23 00:52:35.871+03	
e3fe6a9d-4668-e527-90b7-78af632cb986	2021-05-23 00:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:52:55.852+03	2021-05-23 00:52:55.859+03	
bd38704e-95c5-0c72-d09c-eaf5b403594a	2021-05-23 00:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:53:16.852+03	2021-05-23 00:53:16.86+03	
9b2d110f-d6da-b684-73ab-2f161d96b859	2021-05-23 00:53:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:53:36.852+03	2021-05-23 00:53:36.859+03	
0fb1b009-c8a8-ecf1-b21a-4df5a0b8fff7	2021-05-23 00:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:53:57.852+03	2021-05-23 00:53:57.86+03	
bdabb094-1746-53a3-0145-e64f857e633f	2021-05-23 00:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:54:17.852+03	2021-05-23 00:54:17.859+03	
ce2795a8-2550-1473-b3a6-b092ea286ac0	2021-05-23 00:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:54:37.852+03	2021-05-23 00:54:37.859+03	
cadf1311-88ac-e5eb-5ad7-dcd24726c581	2021-05-23 00:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:54:57.853+03	2021-05-23 00:54:57.859+03	
2e47eb12-acd0-1ada-2dca-d963b2ea333b	2021-05-23 00:55:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:55:17.853+03	2021-05-23 00:55:17.86+03	
9f139171-3af0-c7a5-1460-a70eca6e23b8	2021-05-23 00:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:55:38.853+03	2021-05-23 00:55:38.86+03	
43d52602-5bf1-4c76-2128-642f77089a0a	2021-05-23 00:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:55:58.853+03	2021-05-23 00:55:58.859+03	
c6d27181-4479-467d-092f-6ec439805608	2021-05-23 00:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:56:19.852+03	2021-05-23 00:56:19.86+03	
dbb349c1-a680-dab0-b885-86937e45be5e	2021-05-23 00:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:56:40.853+03	2021-05-23 00:56:40.859+03	
b2af244f-325d-5088-82f1-7ba35e2523a3	2021-05-23 00:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:57:02.853+03	2021-05-23 00:57:02.861+03	
2c948cbc-6ad2-12ec-1997-ba26696a594a	2021-05-23 00:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:57:23.853+03	2021-05-23 00:57:23.863+03	
c6bb652c-a83f-368c-8db3-b6cd7456755e	2021-05-23 00:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:36:26.852+03	2021-05-23 00:36:26.86+03	
ae31a152-41d7-9712-5e03-f75699062566	2021-05-23 00:36:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:36:46.854+03	2021-05-23 00:36:46.876+03	
0467a236-0e24-ffed-bdbc-9f7f375247b1	2021-05-23 00:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:37:07.853+03	2021-05-23 00:37:07.861+03	
afa57973-c5ca-1a34-e5fa-2613ed08c65d	2021-05-23 00:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:37:28.853+03	2021-05-23 00:37:28.859+03	
0826ebde-faef-c0df-efa6-94c1bcf49bee	2021-05-23 00:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:37:49.853+03	2021-05-23 00:37:49.859+03	
2936aef5-1037-69a9-693b-0ea7abd317cc	2021-05-23 00:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:38:10.852+03	2021-05-23 00:38:10.859+03	
a4fbea65-dd49-1d89-47ca-efd9fd8452aa	2021-05-23 00:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:38:30.853+03	2021-05-23 00:38:30.859+03	
c59729f1-048c-6fa0-1897-fb51d405a7c8	2021-05-23 00:38:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:38:51.854+03	2021-05-23 00:38:51.86+03	
9deb2fd6-c68a-9739-39b2-836155b20121	2021-05-23 00:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:39:12.853+03	2021-05-23 00:39:12.86+03	
049aab9e-5dd9-a1fc-a8ee-131749256966	2021-05-23 00:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:39:33.853+03	2021-05-23 00:39:33.86+03	
6fe5bece-e04b-9d97-c103-744a03469a97	2021-05-23 00:39:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:39:53.853+03	2021-05-23 00:39:53.859+03	
26ccc155-85e8-f3b3-f0b9-a45f791f5739	2021-05-23 00:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:40:03.853+03	2021-05-23 00:40:03.861+03	
21eaa874-ad30-72a8-733a-390414a536d9	2021-05-23 00:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:40:23.853+03	2021-05-23 00:40:23.859+03	
1cf2d833-eb9c-dcf9-949c-1ea15707e1ab	2021-05-23 00:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:40:44.852+03	2021-05-23 00:40:44.859+03	
5ce1e7d2-44a9-43d3-bfc6-aae66048eb54	2021-05-23 00:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:41:04.853+03	2021-05-23 00:41:04.86+03	
010c9e50-6e89-0fba-cfeb-966e5da96744	2021-05-23 00:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:41:25.852+03	2021-05-23 00:41:25.869+03	
3f1be778-1861-c737-9cb7-0958f75156ef	2021-05-23 00:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:41:45.853+03	2021-05-23 00:41:45.866+03	
3f001a2d-19f2-46a0-e5e9-f7d0136376c6	2021-05-23 00:42:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:42:06.853+03	2021-05-23 00:42:06.861+03	
02a2de00-654c-a6cb-24bc-b54a28051974	2021-05-23 00:42:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:42:26.854+03	2021-05-23 00:42:26.874+03	
27ac1fcc-cdea-1d5c-c223-63d3ce507660	2021-05-23 00:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:42:48.853+03	2021-05-23 00:42:48.859+03	
f38b2e69-a961-db35-7571-5a78a378352c	2021-05-23 00:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:43:09.853+03	2021-05-23 00:43:09.86+03	
fcc7e7e5-625e-94c5-8bb8-766afa309f1d	2021-05-23 00:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:43:30.852+03	2021-05-23 00:43:30.86+03	
e0389438-582f-990b-89a7-576d08d2f54b	2021-05-23 00:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:43:50.853+03	2021-05-23 00:43:50.862+03	
855fc4b9-dcf2-aa45-bd61-1e1640a87394	2021-05-23 00:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:44:10.853+03	2021-05-23 00:44:10.86+03	
f6922017-d479-f271-d4da-05c75ebc37b0	2021-05-23 00:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:44:31.853+03	2021-05-23 00:44:31.859+03	
4ae6b634-ab3d-f139-11f8-b0252ea849f8	2021-05-23 00:44:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:44:51.853+03	2021-05-23 00:44:51.859+03	
c6771f16-70f0-e330-8575-e5887c093f73	2021-05-23 00:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:45:11.853+03	2021-05-23 00:45:11.901+03	
e42dad06-b2a6-bf22-cebd-e4b45b91372e	2021-05-23 00:45:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:45:31.853+03	2021-05-23 00:45:31.87+03	
9073fd12-448f-dddd-8450-ea34847aa14c	2021-05-23 00:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:45:52.852+03	2021-05-23 00:45:52.859+03	
f2b56cda-38c1-0226-ac9f-a5a25b314f8c	2021-05-23 00:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:46:12.852+03	2021-05-23 00:46:12.858+03	
e75343c4-240f-c2b7-09e9-c688ac62b0ff	2021-05-23 00:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:46:33.853+03	2021-05-23 00:46:33.86+03	
8ce0df38-3673-df31-3285-8a64b5d70572	2021-05-23 00:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:46:54.853+03	2021-05-23 00:46:54.86+03	
da34fb61-cd61-8ab2-2154-f99324423710	2021-05-23 00:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:47:15.853+03	2021-05-23 00:47:15.86+03	
604a868c-eac1-dbe3-2a0e-2b9b1c7c0f0a	2021-05-23 00:47:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:47:36.852+03	2021-05-23 00:47:36.859+03	
563a35bf-76fe-9800-d67c-7518ca309da7	2021-05-23 00:47:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:47:56.852+03	2021-05-23 00:47:56.859+03	
1bceb9c1-3e50-c73c-36a6-4732ed5cffc6	2021-05-23 00:48:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:48:16.852+03	2021-05-23 00:48:16.861+03	
e4bf3e2c-2702-5c6d-b1f8-f81d3a458d48	2021-05-23 00:48:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:48:36.853+03	2021-05-23 00:48:36.86+03	
0b58f7b5-52d4-4863-c341-89b5d80fb4b2	2021-05-23 00:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:48:57.853+03	2021-05-23 00:48:57.859+03	
4442727c-5dc8-6625-2082-4668822c9399	2021-05-23 00:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:49:17.853+03	2021-05-23 00:49:17.86+03	
f963b0ab-0f5f-c0a3-f1ac-10b792d8a8d6	2021-05-23 00:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:49:39.852+03	2021-05-23 00:49:39.858+03	
2994dde7-eb55-a617-f0fc-8529d1882fef	2021-05-23 00:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:50:00.853+03	2021-05-23 00:50:00.861+03	
be22a1eb-23c9-c07e-1391-d8d8933a3ee3	2021-05-23 00:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 00:50:00.853+03	2021-05-23 00:50:00.868+03	ERROR
4f0e52f0-9b91-b136-2307-8791f90ffdf7	2021-05-23 00:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:50:20.853+03	2021-05-23 00:50:20.876+03	
d393958a-050d-3ad9-fdd7-7aa5f04b1ca0	2021-05-23 00:50:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:50:41.852+03	2021-05-23 00:50:41.867+03	
46547927-50d6-93c5-efb4-5ec50bbb8757	2021-05-23 00:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:51:02.853+03	2021-05-23 00:51:02.875+03	
da3ccdf8-5d1c-fecb-df35-6d83f1403de9	2021-05-23 00:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:51:23.853+03	2021-05-23 00:51:23.859+03	
140f0ab2-adba-b74b-aea2-ceacdee25001	2021-05-23 00:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:51:44.853+03	2021-05-23 00:51:44.86+03	
a7b61ea8-60f7-08bf-6337-df530d5065d0	2021-05-23 00:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:52:04.853+03	2021-05-23 00:52:04.872+03	
f31c1914-e2c1-94ec-acec-693b216985d6	2021-05-23 00:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:52:24.853+03	2021-05-23 00:52:24.86+03	
1da297d4-6203-9ea0-97fc-892f54a4e19b	2021-05-23 00:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:52:45.852+03	2021-05-23 00:52:45.866+03	
d9436b51-a244-7426-d220-89fb38017f7d	2021-05-23 00:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:53:05.853+03	2021-05-23 00:53:05.871+03	
66f2f27e-2472-8013-d2d2-f8a4fd7d089d	2021-05-23 00:53:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:53:26.852+03	2021-05-23 00:53:26.859+03	
8dbdfeb2-9a3a-cd9b-cc6a-d4ce5a0fabac	2021-05-23 00:53:46.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:53:46.854+03	2021-05-23 00:53:46.861+03	
ddd68611-9c6d-5e6f-7f54-c9d785c547ab	2021-05-23 00:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:54:07.852+03	2021-05-23 00:54:07.859+03	
aee3cc5d-f5f8-f622-814a-700e5ce4d75d	2021-05-23 00:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:54:27.852+03	2021-05-23 00:54:27.859+03	
a71acde5-37a2-8228-58db-af02527de7ed	2021-05-23 00:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:54:47.852+03	2021-05-23 00:54:47.872+03	
75424f34-19f2-03fc-0701-b101447a7287	2021-05-23 00:55:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:55:07.853+03	2021-05-23 00:55:07.86+03	
a5ee396a-8fb7-f69b-e585-3d0f0c072e9e	2021-05-23 00:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:55:28.852+03	2021-05-23 00:55:28.859+03	
fd2f0c22-3207-b590-388a-261bfa08d7fd	2021-05-23 00:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:55:48.853+03	2021-05-23 00:55:48.859+03	
d7269e81-722b-7540-a50b-1586c9cc9de7	2021-05-23 00:56:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:56:08.853+03	2021-05-23 00:56:08.859+03	
fad10e4a-ae41-2b70-cb7c-1bb563f50a71	2021-05-23 00:56:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:56:29.853+03	2021-05-23 00:56:29.859+03	
c577de64-78a7-4806-30f4-32c6ec1de875	2021-05-23 00:56:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:56:51.854+03	2021-05-23 00:56:51.862+03	
9a21a274-3480-ad73-d86a-c132ee44b61d	2021-05-23 00:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:57:13.853+03	2021-05-23 00:57:13.859+03	
fe19ad7c-5b8b-46b2-62e2-560e6fa163cb	2021-05-23 00:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:57:33.853+03	2021-05-23 00:57:33.859+03	
ab9b80e4-7fd1-00ee-0007-6727ec858407	2021-05-23 00:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:57:53.853+03	2021-05-23 00:57:53.859+03	
657145dc-9633-4f74-7032-d6329b7702ac	2021-05-23 00:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:58:14.853+03	2021-05-23 00:58:14.861+03	
37d89d88-78c9-bc0c-4048-bce9cda38704	2021-05-23 00:58:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:58:36.853+03	2021-05-23 00:58:36.861+03	
1dfd815e-9343-cf7a-a1af-945114f29101	2021-05-23 00:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:58:57.852+03	2021-05-23 00:58:57.858+03	
21600a59-d550-de16-669b-8e6e5c56e7f2	2021-05-23 00:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:59:17.852+03	2021-05-23 00:59:17.859+03	
fa15799f-5ba9-bf46-698c-e1c94cc21bb4	2021-05-23 00:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:59:37.853+03	2021-05-23 00:59:37.859+03	
57b23dcc-ca2f-6e68-b960-5374bb0e8aff	2021-05-23 00:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:59:59.852+03	2021-05-23 00:59:59.859+03	
17aa72aa-15a5-9a4f-7a36-7ff8bb3ab57a	2021-05-23 01:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:00:09.853+03	2021-05-23 01:00:09.871+03	
4c4d49fb-31a3-e53b-ae8b-21e1b1bd10fd	2021-05-23 01:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:00:29.853+03	2021-05-23 01:00:29.861+03	
06137bbf-c3ed-fd72-9b09-695242ef6e99	2021-05-23 01:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:00:49.853+03	2021-05-23 01:00:49.878+03	
c336dca9-06e2-5d2f-0306-9d929e03e9a7	2021-05-23 01:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:01:09.853+03	2021-05-23 01:01:09.86+03	
36527c88-d456-dcf1-07b9-7926df1c580d	2021-05-23 01:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:01:29.853+03	2021-05-23 01:01:29.859+03	
db9cf09b-d179-d146-6d76-6e3fb27edadb	2021-05-23 01:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:01:49.853+03	2021-05-23 01:01:49.86+03	
42d2a64e-ec26-f4dc-8f06-2948139c64a0	2021-05-23 01:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:02:09.853+03	2021-05-23 01:02:09.86+03	
0d250078-9cb9-b793-a743-1a830d63e049	2021-05-23 01:02:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:02:29.853+03	2021-05-23 01:02:29.861+03	
e01c4874-23ae-0f31-cdd3-2bfefc5c8b0b	2021-05-23 01:02:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:02:49.853+03	2021-05-23 01:02:49.871+03	
b6ae7769-f196-e319-227b-67496116040f	2021-05-23 01:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:03:10.853+03	2021-05-23 01:03:10.859+03	
c6831789-8751-0738-1998-a1203d40b411	2021-05-23 01:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:03:30.853+03	2021-05-23 01:03:30.86+03	
db3509fe-d40b-e45b-bcab-18bc2d1fcc58	2021-05-23 01:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:03:50.853+03	2021-05-23 01:03:50.86+03	
aff54d36-32de-026e-9339-b97a7b912cf0	2021-05-23 01:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:04:10.853+03	2021-05-23 01:04:10.86+03	
e1c2ac43-1476-b841-d239-c2237136bcdb	2021-05-23 01:04:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:04:31.854+03	2021-05-23 01:04:31.863+03	
6e9a47c0-26d5-6a37-0c7b-55644a676748	2021-05-23 01:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:04:52.853+03	2021-05-23 01:04:52.86+03	
cfb18937-f7e7-c9b1-9097-99a2ab07d893	2021-05-23 01:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:05:13.853+03	2021-05-23 01:05:13.86+03	
4c37bb5d-f672-a0f6-495b-c7cfb374ec16	2021-05-23 01:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:05:33.853+03	2021-05-23 01:05:33.86+03	
51cf60a5-643e-c45c-7c95-b26bd73c3778	2021-05-23 01:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:05:55.853+03	2021-05-23 01:05:55.862+03	
275456c7-fa31-f11a-a86e-1e55b88c132c	2021-05-23 01:06:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:06:16.852+03	2021-05-23 01:06:16.859+03	
e58ef3fe-da82-de23-a980-cef3f7f30491	2021-05-23 01:06:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:06:36.852+03	2021-05-23 01:06:36.86+03	
e7c1d44c-424e-f974-bb8b-9e2584cafbe8	2021-05-23 01:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:06:56.853+03	2021-05-23 01:06:56.862+03	
e0c8f0a4-234e-c76e-16ee-0601aff7e19c	2021-05-23 01:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:07:17.853+03	2021-05-23 01:07:17.86+03	
cb5fb1b5-6478-91ea-480d-059993709660	2021-05-23 01:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:07:39.852+03	2021-05-23 01:07:39.859+03	
4bd57a53-b01a-49e1-8420-34bc8059497d	2021-05-23 01:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:07:59.853+03	2021-05-23 01:07:59.858+03	
0670f80f-01a0-22fd-3da8-8fb7aaf4e7be	2021-05-23 01:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:08:20.853+03	2021-05-23 01:08:20.871+03	
eb5ef0fc-9289-ffe0-d960-d499196ef2c6	2021-05-23 01:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:08:40.853+03	2021-05-23 01:08:40.861+03	
ac2cd34d-1a6c-eb81-e7ac-6e6161e132e0	2021-05-23 01:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:09:00.853+03	2021-05-23 01:09:00.859+03	
1a6d91ed-356c-656e-ae29-9e5686b0779c	2021-05-23 01:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:09:20.853+03	2021-05-23 01:09:20.862+03	
631f475d-5e91-de02-5019-b6c0977b984d	2021-05-23 01:09:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:09:41.853+03	2021-05-23 01:09:41.859+03	
848341db-0653-b480-c0a3-4f11fb05535c	2021-05-23 01:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 01:10:00.853+03	2021-05-23 01:10:00.858+03	ERROR
3344c08d-dc93-3b9b-dd58-d2fc99f539c3	2021-05-23 01:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:10:12.853+03	2021-05-23 01:10:12.865+03	
a748b8f6-6a8b-9bbe-7e75-e07ef1741ab0	2021-05-23 01:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:10:34.852+03	2021-05-23 01:10:34.859+03	
a61098da-b316-386f-f97f-575f80496f78	2021-05-23 01:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:10:55.852+03	2021-05-23 01:10:55.863+03	
27b7835a-a9e9-cef1-e1e3-420302bf986f	2021-05-23 01:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:11:15.853+03	2021-05-23 01:11:15.873+03	
db2cad80-6fdb-a253-c839-73d04c19ddd2	2021-05-23 01:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:11:35.853+03	2021-05-23 01:11:35.86+03	
cb88db16-c8d8-20fe-4436-a8afab46f7fe	2021-05-23 01:11:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:11:56.852+03	2021-05-23 01:11:56.859+03	
7ec0c635-0c12-6839-1272-b09f85af79df	2021-05-23 01:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:12:17.853+03	2021-05-23 01:12:17.86+03	
2631120d-d420-6266-ec30-15953aa625db	2021-05-23 01:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:12:37.853+03	2021-05-23 01:12:37.859+03	
edb8c63c-e3ef-8b1d-c028-d8c98c053e6a	2021-05-23 01:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:12:58.852+03	2021-05-23 01:12:58.859+03	
7dc18b2c-1229-fb6b-507f-29435dc3b604	2021-05-23 01:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:13:19.852+03	2021-05-23 01:13:19.86+03	
7e2a286a-7831-4be8-655d-7f643113d81b	2021-05-23 01:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:13:39.853+03	2021-05-23 01:13:39.859+03	
9d6c691a-e42e-3a27-c5e8-85b8b420a3df	2021-05-23 01:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:14:00.853+03	2021-05-23 01:14:00.86+03	
176e06da-08e0-f2d5-e7d4-36c388af6d47	2021-05-23 01:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:14:20.853+03	2021-05-23 01:14:20.861+03	
a3b9205a-29f1-9df6-6355-f7b2f6036721	2021-05-23 01:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:14:41.853+03	2021-05-23 01:14:41.86+03	
b1bd62f7-897c-be9d-6483-19d0984d1f6a	2021-05-23 01:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:15:02.853+03	2021-05-23 01:15:02.962+03	
811e95ce-718b-0862-fc03-fb8d34bd9cc3	2021-05-23 01:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:15:22.853+03	2021-05-23 01:15:22.859+03	
ec7296d0-1dd6-773b-47f1-f16f7fe512ea	2021-05-23 01:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:15:43.853+03	2021-05-23 01:15:43.86+03	
8e1aaeb1-a33f-a65b-5433-f7cc622babc7	2021-05-23 01:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:16:03.853+03	2021-05-23 01:16:03.859+03	
eb1907e6-3cc2-fa9c-126e-24e93b393228	2021-05-23 01:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:16:25.852+03	2021-05-23 01:16:25.866+03	
85abf9db-5d5c-159e-2088-cab57a866b37	2021-05-23 01:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:16:45.853+03	2021-05-23 01:16:45.871+03	
e902d43d-3959-8866-8479-d484d5286e16	2021-05-23 01:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:17:05.853+03	2021-05-23 01:17:05.86+03	
275eb0aa-db21-710f-e889-c224cac34199	2021-05-23 01:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:17:25.853+03	2021-05-23 01:17:25.859+03	
d16ac169-4343-e412-42f9-35ddf89debb5	2021-05-23 01:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:17:45.853+03	2021-05-23 01:17:45.863+03	
bf868d47-e634-7ac1-3aa2-62a94d8166ac	2021-05-23 01:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:18:05.853+03	2021-05-23 01:18:05.859+03	
3082d84f-387b-f0c5-57c3-515206636915	2021-05-23 01:18:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:18:26.854+03	2021-05-23 01:18:26.868+03	
299e0779-b88e-cf5e-496f-6f247d23ff43	2021-05-23 00:57:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:57:43.853+03	2021-05-23 00:57:43.86+03	
e551ccfc-5298-2f3f-3401-4502f02afa2b	2021-05-23 00:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:58:04.853+03	2021-05-23 00:58:04.859+03	
cff522e9-34be-0b5c-5d9d-87cfaf9ef0dc	2021-05-23 00:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:58:25.853+03	2021-05-23 00:58:25.859+03	
5f376f5f-a5f0-934d-9a2e-80cad793f085	2021-05-23 00:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:58:47.852+03	2021-05-23 00:58:47.859+03	
a33e34bc-e40b-d88e-aa3d-41c169c033cb	2021-05-23 00:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:59:07.852+03	2021-05-23 00:59:07.859+03	
454a8a9f-b5d5-07dc-0777-92e24920fe80	2021-05-23 00:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:59:27.853+03	2021-05-23 00:59:27.859+03	
91ae2b0a-218b-69b3-e103-fd1bb46f50fd	2021-05-23 00:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 00:59:48.853+03	2021-05-23 00:59:48.866+03	
9cb1d7bb-2cf8-6644-a2df-0c1377a30991	2021-05-23 01:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 01:00:00.853+03	2021-05-23 01:00:00.859+03	ERROR
e5ab7e5e-eb0e-872f-ec75-37711069f104	2021-05-23 01:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:00:19.853+03	2021-05-23 01:00:19.863+03	
db8ecfb8-bae2-1d27-287b-815fdca46016	2021-05-23 01:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:00:39.853+03	2021-05-23 01:00:39.86+03	
024be1e7-a368-047b-e7ab-1af1bd0dc9f2	2021-05-23 01:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:00:59.853+03	2021-05-23 01:00:59.861+03	
d38422af-f2d2-3b1a-c23b-20cc2ba57697	2021-05-23 01:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:01:19.853+03	2021-05-23 01:01:19.86+03	
ef33b1d8-f605-7c35-4211-0aedfefe2f8c	2021-05-23 01:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:01:39.853+03	2021-05-23 01:01:39.859+03	
332a9974-bfc7-9dc7-462a-8b4322e28f23	2021-05-23 01:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:01:59.853+03	2021-05-23 01:01:59.859+03	
e45a25c4-ed3a-611d-f924-3b28ab853421	2021-05-23 01:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:02:19.853+03	2021-05-23 01:02:19.861+03	
2db0d193-0329-fda5-421e-6a2e4b1e4714	2021-05-23 01:02:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:02:39.853+03	2021-05-23 01:02:39.86+03	
5c64951a-8426-0b08-ff06-bc01065f5176	2021-05-23 01:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:03:00.852+03	2021-05-23 01:03:00.859+03	
fa64091a-5bb5-cf5f-c68a-137c4cd9df38	2021-05-23 01:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:03:20.853+03	2021-05-23 01:03:20.864+03	
0885ade2-7448-3db6-2911-6edc3884159a	2021-05-23 01:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:03:40.853+03	2021-05-23 01:03:40.86+03	
7af7fff0-caca-c018-2c64-865f0890c3ef	2021-05-23 01:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:04:00.853+03	2021-05-23 01:04:00.86+03	
5a59b114-5630-cef7-0f41-366eb1e83358	2021-05-23 01:04:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:04:21.852+03	2021-05-23 01:04:21.859+03	
7e03e5ed-176d-845f-6616-b19d0b958b09	2021-05-23 01:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:04:42.853+03	2021-05-23 01:04:42.859+03	
1dea7e50-bad3-6e8c-46de-9b5fbd502159	2021-05-23 01:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:05:02.853+03	2021-05-23 01:05:02.864+03	
82fd090c-739f-a6ef-a05c-a602baeb175d	2021-05-23 01:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:05:23.853+03	2021-05-23 01:05:23.863+03	
db8dd7b0-6a24-1eb8-5024-3eded941b988	2021-05-23 01:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:05:44.853+03	2021-05-23 01:05:44.859+03	
40e4e21e-6165-dd6e-3c19-47c7e47e00e5	2021-05-23 01:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:06:05.853+03	2021-05-23 01:06:05.86+03	
46dcd888-e001-b1b4-34a3-bed6699ebeb0	2021-05-23 01:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:06:26.852+03	2021-05-23 01:06:26.86+03	
3d9907c6-5633-5eb5-50b4-e711ff2d1aa1	2021-05-23 01:06:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:06:46.852+03	2021-05-23 01:06:46.871+03	
e479e2c4-44fc-86e5-15ed-b4ddb460b397	2021-05-23 01:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:07:06.853+03	2021-05-23 01:07:06.86+03	
8ca2f5f3-cff7-f279-5abd-63e3c8d6c42f	2021-05-23 01:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:07:28.853+03	2021-05-23 01:07:28.861+03	
65d937c9-33fd-a4ba-6b7f-9613255fce22	2021-05-23 01:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:07:49.853+03	2021-05-23 01:07:49.859+03	
b6c21781-60f1-4601-2d1d-c5a77185dbeb	2021-05-23 01:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:08:09.853+03	2021-05-23 01:08:09.859+03	
180c99e8-a614-5d66-1dbe-3e8f959920ad	2021-05-23 01:08:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:08:30.853+03	2021-05-23 01:08:30.86+03	
5fbd6531-b56c-3107-60fb-5bc86993ec72	2021-05-23 01:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:08:50.853+03	2021-05-23 01:08:50.86+03	
eb1771e2-42c2-bfa4-f5e5-9aed4fcc53f3	2021-05-23 01:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:09:10.853+03	2021-05-23 01:09:10.859+03	
edf23bbe-5b2f-a91f-a3bc-6511d13d641f	2021-05-23 01:09:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:09:31.852+03	2021-05-23 01:09:31.859+03	
6c6da9c2-5b3f-b752-6871-800c5a635e59	2021-05-23 01:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:09:52.853+03	2021-05-23 01:09:52.866+03	
405f25e6-4796-b295-af08-b2e1eb6f97ea	2021-05-23 01:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:10:02.853+03	2021-05-23 01:10:02.861+03	
56ddacbe-60a7-0bbf-1bcd-8c7a9940a6e4	2021-05-23 01:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:10:23.853+03	2021-05-23 01:10:23.86+03	
2e210af3-0fb9-d25a-0d80-282f1e2a6695	2021-05-23 01:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:10:44.853+03	2021-05-23 01:10:44.858+03	
bbb803b7-a3bd-c1a5-7d9d-18aea3a4a6a3	2021-05-23 01:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:11:05.853+03	2021-05-23 01:11:05.88+03	
868ef912-2c73-ac3a-e5fb-518681de6eee	2021-05-23 01:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:11:25.853+03	2021-05-23 01:11:25.873+03	
30397ac0-2858-fc59-f766-3a6e98574572	2021-05-23 01:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:11:45.853+03	2021-05-23 01:11:45.859+03	
9e8cb88b-840a-6978-a03a-225223dd1f27	2021-05-23 01:12:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:12:06.853+03	2021-05-23 01:12:06.859+03	
5a86e458-868b-1945-5674-57fb43350ffd	2021-05-23 01:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:12:27.853+03	2021-05-23 01:12:27.866+03	
249c9955-a47d-3a66-ed50-1df80b9ba487	2021-05-23 01:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:12:47.853+03	2021-05-23 01:12:47.859+03	
68ff11e0-d488-54ea-e8ba-425c4432f699	2021-05-23 01:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:13:08.853+03	2021-05-23 01:13:08.887+03	
954b21bc-3271-f856-9f0b-d4341807e2fa	2021-05-23 01:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:13:29.853+03	2021-05-23 01:13:29.859+03	
70bb00a2-6561-c4cd-0359-3116e8b56845	2021-05-23 01:13:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:13:49.853+03	2021-05-23 01:13:49.867+03	
9dcda1b2-d619-c097-afc1-d8ea58333a2a	2021-05-23 01:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:14:10.853+03	2021-05-23 01:14:10.864+03	
c90caa19-02b0-30a4-76c9-d67fb848d2ad	2021-05-23 01:14:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:14:31.853+03	2021-05-23 01:14:31.86+03	
57e3e0ba-25a4-4b4b-bd6f-8f92f1160ebf	2021-05-23 01:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:14:52.853+03	2021-05-23 01:14:52.861+03	
a3741112-461f-4d70-85fa-7b63154b7bbd	2021-05-23 01:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:15:12.853+03	2021-05-23 01:15:12.86+03	
044aa816-e232-03b7-2635-bbefe7a2ed86	2021-05-23 01:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:15:33.853+03	2021-05-23 01:15:33.86+03	
fce1b563-d827-bcef-a42a-5b46e991a54c	2021-05-23 01:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:15:53.853+03	2021-05-23 01:15:53.86+03	
85969b6c-33ff-a70f-8455-2f79335da72f	2021-05-23 01:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:16:14.853+03	2021-05-23 01:16:14.859+03	
9c53ecee-1264-1206-cce8-c9a64863348c	2021-05-23 01:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:16:35.853+03	2021-05-23 01:16:35.86+03	
c7385ff1-171a-315f-a073-e91cd85f3f80	2021-05-23 01:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:16:55.853+03	2021-05-23 01:16:55.861+03	
5fe8f1d8-87ae-69c3-1d8f-ac202cb18ab4	2021-05-23 01:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:17:15.853+03	2021-05-23 01:17:15.859+03	
fcda943c-bc62-e431-f80b-5a39756779d6	2021-05-23 01:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:17:35.853+03	2021-05-23 01:17:35.863+03	
9c2c80e6-a1e4-cfa3-c5e1-bdcb09ae5ddc	2021-05-23 01:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:17:55.853+03	2021-05-23 01:17:55.875+03	
184fbf28-3fea-a70f-cd82-cbf94f0b8808	2021-05-23 01:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:18:16.852+03	2021-05-23 01:18:16.859+03	
e168e067-a343-8b1e-8104-b909502394bc	2021-05-23 01:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:18:37.852+03	2021-05-23 01:18:37.86+03	
5fb2b470-2afb-cf1e-de50-ad988cde16fc	2021-05-23 01:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:18:47.852+03	2021-05-23 01:18:47.86+03	
1344008b-cef0-02ec-fd77-869d03cae2c6	2021-05-23 01:19:07.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:19:07.863+03	2021-05-23 01:19:07.869+03	
75308dbe-3273-d55e-6402-383677803e11	2021-05-23 01:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:19:29.852+03	2021-05-23 01:19:29.867+03	
fa70f182-b963-8d89-a9d3-37682f8dc66c	2021-05-23 01:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:19:59.853+03	2021-05-23 01:19:59.864+03	
3c1d8806-7e89-60e0-18e4-4179dd8dc8f8	2021-05-23 01:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:20:10.852+03	2021-05-23 01:20:10.861+03	
5a1ef8fe-5656-f5ae-e82a-393c1db7e864	2021-05-23 01:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:20:30.853+03	2021-05-23 01:20:30.859+03	
f2488105-92d5-e0c3-b3df-3b1707f9bd52	2021-05-23 01:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:20:50.853+03	2021-05-23 01:20:50.86+03	
aad70cca-f651-a90c-c182-a887bb43434a	2021-05-23 01:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:21:10.853+03	2021-05-23 01:21:10.859+03	
de80fdb0-27e7-78a9-497f-d458895c2a07	2021-05-23 01:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:21:31.853+03	2021-05-23 01:21:31.861+03	
f4793b68-b1d4-70cb-8b5b-07536c6c9ff9	2021-05-23 01:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:21:52.853+03	2021-05-23 01:21:52.86+03	
c1302404-def8-e414-1c42-6ba8c6ccfc57	2021-05-23 01:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:22:12.853+03	2021-05-23 01:22:12.861+03	
124050ee-59b0-b53f-7ed9-9dbe125d8773	2021-05-23 01:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:22:32.853+03	2021-05-23 01:22:32.86+03	
62be8211-5139-3d6b-324c-afab891f014b	2021-05-23 01:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:22:53.852+03	2021-05-23 01:22:53.859+03	
6e79a293-2141-afff-e7ac-9bc23ec7e0b9	2021-05-23 01:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:23:13.853+03	2021-05-23 01:23:13.861+03	
80bef78c-195c-9220-e9b5-711a554e31dd	2021-05-23 01:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:23:33.853+03	2021-05-23 01:23:33.86+03	
5e1882d1-ebf8-f09d-b9e8-f25e73ba7f1c	2021-05-23 01:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:23:53.853+03	2021-05-23 01:23:53.861+03	
3d85a59c-50d8-44d4-3b9f-091066b55947	2021-05-23 01:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:24:13.853+03	2021-05-23 01:24:13.86+03	
917db6f3-710b-6446-3b04-91e4fe9cc130	2021-05-23 01:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:24:33.853+03	2021-05-23 01:24:33.86+03	
e63ca26f-286a-64c1-a483-bc4aea475f65	2021-05-23 01:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:24:54.852+03	2021-05-23 01:24:54.859+03	
1f448260-be26-f948-9596-2ca112cff943	2021-05-23 01:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:25:14.852+03	2021-05-23 01:25:14.86+03	
9844d80d-883d-ee0f-9121-eb74310b7bd1	2021-05-23 01:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:25:34.853+03	2021-05-23 01:25:34.859+03	
c47486c1-336e-782f-0958-b9612e175e37	2021-05-23 01:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:25:54.853+03	2021-05-23 01:25:54.86+03	
3fdb7db7-5244-0dfe-03eb-de9613ce2675	2021-05-23 01:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:26:15.853+03	2021-05-23 01:26:15.872+03	
4bec125a-6008-c144-fffe-583b20c7c3db	2021-05-23 01:26:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:26:36.853+03	2021-05-23 01:26:36.86+03	
a4345d05-e0de-18d3-e9d4-b267081098a1	2021-05-23 01:26:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:26:56.854+03	2021-05-23 01:26:56.861+03	
92e81426-9815-1812-1419-2bf302267eb7	2021-05-23 01:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:27:17.853+03	2021-05-23 01:27:17.859+03	
ebbc9dc7-98aa-6687-2a18-4a8b2ca3e190	2021-05-23 01:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:27:38.853+03	2021-05-23 01:27:38.87+03	
89130a89-ff8f-384c-66d4-26eb73388566	2021-05-23 01:28:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:28:00.852+03	2021-05-23 01:28:00.858+03	
1fecbff7-49ab-259c-730d-e82270a4b3e3	2021-05-23 01:28:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:28:20.853+03	2021-05-23 01:28:20.859+03	
942eb32e-670f-9cfd-a553-125ca40b2943	2021-05-23 01:28:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:28:41.854+03	2021-05-23 01:28:41.861+03	
e202dfb6-cda1-ac1e-8126-01d86c83f745	2021-05-23 01:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:29:03.852+03	2021-05-23 01:29:03.858+03	
5831342d-8fbc-ec09-2152-efaf8016de5b	2021-05-23 01:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:29:23.852+03	2021-05-23 01:29:23.86+03	
3c1282eb-3fbb-8668-5779-ddaacecc0104	2021-05-23 01:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:29:43.852+03	2021-05-23 01:29:43.859+03	
edc58c81-ce5a-1346-af5c-80e2576ea1ab	2021-05-23 01:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 01:30:00.852+03	2021-05-23 01:30:00.857+03	ERROR
c4803a1f-97e5-292d-57ad-3311f351f140	2021-05-23 01:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:30:15.852+03	2021-05-23 01:30:15.87+03	
52550303-6b0a-ed3d-fa2e-0631ecd03b95	2021-05-23 01:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:30:35.853+03	2021-05-23 01:30:35.86+03	
d5b08857-c0ae-6b85-e5ef-2f881f5bb446	2021-05-23 01:30:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:30:56.852+03	2021-05-23 01:30:56.859+03	
23373ad6-85c1-bd66-93cc-f1fdcdab3762	2021-05-23 01:31:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:31:16.852+03	2021-05-23 01:31:16.863+03	
a239ec34-53ac-c3a7-3922-2c6b9fd02d6c	2021-05-23 01:31:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:31:36.854+03	2021-05-23 01:31:36.861+03	
9e88b3a2-d8e7-aedf-ec27-c872aecdb8e2	2021-05-23 01:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:31:57.853+03	2021-05-23 01:31:57.86+03	
61ec417f-95d7-2b61-a3d2-7793135795dd	2021-05-23 01:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:32:17.853+03	2021-05-23 01:32:17.859+03	
a6963fe7-ee6b-1ddd-fdb2-4e3c7d8828c0	2021-05-23 01:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:32:37.853+03	2021-05-23 01:32:37.858+03	
9a4c6222-3101-9f28-2ae7-363e2e556fac	2021-05-23 01:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:32:59.852+03	2021-05-23 01:32:59.861+03	
4537eb66-81be-c641-1144-bfefcd2a9936	2021-05-23 01:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:33:19.853+03	2021-05-23 01:33:19.859+03	
052c79cc-e79a-9911-c7af-1dd1b2a24ee5	2021-05-23 01:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:33:39.853+03	2021-05-23 01:33:39.877+03	
bb61950f-731d-4d3d-e2f4-68266eca217b	2021-05-23 01:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:33:59.853+03	2021-05-23 01:33:59.865+03	
5a604e6b-4b25-e193-af25-881b6fec3cb7	2021-05-23 01:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:34:19.853+03	2021-05-23 01:34:19.859+03	
40219432-1a6e-adc5-0692-a281fc9a7b17	2021-05-23 01:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:34:40.852+03	2021-05-23 01:34:40.859+03	
d8ed1a3c-1585-3422-9ff0-70272ea37c01	2021-05-23 01:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:35:00.853+03	2021-05-23 01:35:00.861+03	
37a0e69e-d14e-6dd8-aa34-64cc79cf18d4	2021-05-23 01:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:35:20.853+03	2021-05-23 01:35:20.86+03	
f304aa23-3091-66f6-70b6-c615f196603f	2021-05-23 01:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:35:40.853+03	2021-05-23 01:35:40.859+03	
77930bdc-e46a-ba75-2449-ea2db0655375	2021-05-23 01:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:36:00.853+03	2021-05-23 01:36:00.861+03	
be8836a8-686c-0b88-b421-78e4d1e3a400	2021-05-23 01:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:36:22.853+03	2021-05-23 01:36:22.86+03	
41d14d44-be0e-8f2a-1ace-f50547d17fa7	2021-05-23 01:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:36:42.853+03	2021-05-23 01:36:42.86+03	
ca378182-02c6-ee88-52fb-c9b0ced892de	2021-05-23 01:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:37:02.853+03	2021-05-23 01:37:02.86+03	
4ef27c66-c398-2097-ddbc-bb76711cdc05	2021-05-23 01:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:37:22.853+03	2021-05-23 01:37:22.859+03	
79bdf300-2b32-3c92-a0dd-4eb8c586401c	2021-05-23 01:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:37:43.853+03	2021-05-23 01:37:43.859+03	
6c115304-ef26-5e8b-da25-9bd17b2b25a9	2021-05-23 01:38:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:38:04.853+03	2021-05-23 01:38:04.859+03	
3329321d-ebeb-faf0-ca9f-d31b2a46d8af	2021-05-23 01:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:38:24.853+03	2021-05-23 01:38:24.86+03	
6a7d2691-ff4c-82b3-14c2-f56b3b1e4bd2	2021-05-23 01:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:38:45.853+03	2021-05-23 01:38:45.86+03	
22d607ce-56f6-4f4b-cb6c-82eb7fd65301	2021-05-23 01:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:39:05.853+03	2021-05-23 01:39:05.871+03	
fe8047fe-9669-9fbe-da03-1c6ec884f134	2021-05-23 01:39:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:39:26.852+03	2021-05-23 01:39:26.858+03	
430c76aa-0174-f168-0e55-62a194d62614	2021-05-23 01:39:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:39:46.852+03	2021-05-23 01:39:46.864+03	
0adb8038-3198-8c06-f152-efd941471225	2021-05-23 01:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:18:57.853+03	2021-05-23 01:18:57.863+03	
0aeeba53-7602-de24-7f95-abd2ce7954e6	2021-05-23 01:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:19:18.853+03	2021-05-23 01:19:18.86+03	
0ecc369a-b374-1738-bd8c-0ce694967769	2021-05-23 01:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:19:39.853+03	2021-05-23 01:19:39.859+03	
36a74e8f-29f5-1fed-d680-04a86543a953	2021-05-23 01:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:19:49.853+03	2021-05-23 01:19:49.86+03	
fc10fdd0-c2fc-7880-bdc7-a8df37f84090	2021-05-23 01:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 01:20:00.853+03	2021-05-23 01:20:00.858+03	ERROR
578b14cc-ca9d-9ab6-5b0a-460b770d9cdc	2021-05-23 01:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:20:20.852+03	2021-05-23 01:20:20.872+03	
30f09937-640c-efe9-19a6-84fc91d37276	2021-05-23 01:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:20:40.853+03	2021-05-23 01:20:40.859+03	
859d4ffa-7e9e-1ce5-4cf2-623b6eccf2ed	2021-05-23 01:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:21:00.853+03	2021-05-23 01:21:00.859+03	
d1bb8539-3f8a-2877-c61c-a5a1fe612b30	2021-05-23 01:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:21:20.853+03	2021-05-23 01:21:20.871+03	
d18267aa-d5ee-c5a3-d0c8-f2a45ea63634	2021-05-23 01:21:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:21:41.854+03	2021-05-23 01:21:41.861+03	
72dcad01-a376-f217-3f2f-b1dbc74a87d1	2021-05-23 01:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:22:02.853+03	2021-05-23 01:22:02.859+03	
3349cb29-1abc-77cb-a11d-2800e3a35441	2021-05-23 01:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:22:22.853+03	2021-05-23 01:22:22.86+03	
5979b466-df7d-93df-b61d-c84f327cdb6d	2021-05-23 01:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:22:43.852+03	2021-05-23 01:22:43.859+03	
2a9992c8-b592-f83a-334b-9fd24fe2dc2d	2021-05-23 01:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:23:03.853+03	2021-05-23 01:23:03.86+03	
d21d7e76-2f0c-7138-8999-e5d5347d37bd	2021-05-23 01:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:23:23.853+03	2021-05-23 01:23:23.861+03	
008c2f50-b3b8-3ca7-b399-eac9411b993e	2021-05-23 01:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:23:43.853+03	2021-05-23 01:23:43.859+03	
c797ac67-cb49-c398-7a0d-ec88825ed4bd	2021-05-23 01:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:24:03.853+03	2021-05-23 01:24:03.861+03	
d3111aec-d246-2417-f824-14c3a16d2c14	2021-05-23 01:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:24:23.853+03	2021-05-23 01:24:23.861+03	
c65770e7-8f6b-64cc-a520-8e92d6901ec5	2021-05-23 01:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:24:44.852+03	2021-05-23 01:24:44.858+03	
8d070998-58f8-081b-8cf8-e2611464a932	2021-05-23 01:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:25:04.852+03	2021-05-23 01:25:04.859+03	
52c239f1-0244-55bf-9fd7-42310f499ec1	2021-05-23 01:25:24.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:25:24.852+03	2021-05-23 01:25:24.866+03	
de58f842-69e2-aa68-8ace-ca5d9090b6bb	2021-05-23 01:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:25:44.853+03	2021-05-23 01:25:44.859+03	
cd8dac39-f587-a0a8-e43b-babbabb51301	2021-05-23 01:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:26:05.852+03	2021-05-23 01:26:05.859+03	
06ab7438-b18f-2641-58f7-8bdfe50217d7	2021-05-23 01:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:26:26.853+03	2021-05-23 01:26:26.875+03	
7f887706-2799-2bb2-9b75-6663f5abab20	2021-05-23 01:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:26:46.853+03	2021-05-23 01:26:46.859+03	
8328674f-8d98-e292-64de-cc9af8b13e5c	2021-05-23 01:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:27:07.853+03	2021-05-23 01:27:07.862+03	
948b0d73-b06a-23cd-12fc-e0bde685090c	2021-05-23 01:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:27:28.853+03	2021-05-23 01:27:28.859+03	
49376efc-1ee2-3f5a-d31f-97c80e76c8fa	2021-05-23 01:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:27:49.853+03	2021-05-23 01:27:49.868+03	
fd75efde-a8fc-f19b-9331-8072746126d7	2021-05-23 01:28:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:28:10.852+03	2021-05-23 01:28:10.858+03	
815efe15-790c-e9a1-5d3c-491a20df84e0	2021-05-23 01:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:28:30.853+03	2021-05-23 01:28:30.859+03	
c9be490a-5d0e-da81-afbc-aff6fc7169f3	2021-05-23 01:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:28:52.853+03	2021-05-23 01:28:52.86+03	
508252f3-eb96-5cd9-5f60-29829e9b9f0a	2021-05-23 01:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:29:13.852+03	2021-05-23 01:29:13.872+03	
a6b1ff42-bba3-ced4-eedd-c5dd2bb95a39	2021-05-23 01:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:29:33.852+03	2021-05-23 01:29:33.859+03	
e809bdfc-b04c-fd0d-8f85-52f60e3768b4	2021-05-23 01:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:29:53.853+03	2021-05-23 01:29:53.86+03	
50094ba2-e69f-a63e-ccdb-cffc037fd9ae	2021-05-23 01:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:30:04.853+03	2021-05-23 01:30:04.859+03	
34b71ae3-c609-a699-522b-20ef16953479	2021-05-23 01:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:30:25.853+03	2021-05-23 01:30:25.86+03	
db6057fa-6b0b-e233-801b-2580c8cfeae1	2021-05-23 01:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:30:45.853+03	2021-05-23 01:30:45.859+03	
a2820a0c-b86a-6587-829a-87b29228cc7c	2021-05-23 01:31:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:31:06.852+03	2021-05-23 01:31:06.86+03	
1e81067e-da80-b13e-4576-44f87ce120f2	2021-05-23 01:31:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:31:26.853+03	2021-05-23 01:31:26.906+03	
81397b69-093f-af91-c3d4-dbe5b2c79dcf	2021-05-23 01:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:31:47.853+03	2021-05-23 01:31:47.859+03	
ab66c2ee-cab1-753f-41da-28bea82f6b00	2021-05-23 01:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:32:07.853+03	2021-05-23 01:32:07.904+03	
687b08a5-7726-360f-e893-a45407a7f440	2021-05-23 01:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:32:27.853+03	2021-05-23 01:32:27.859+03	
fa7bb216-4807-c083-fa2f-bd8c9034d902	2021-05-23 01:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:32:48.853+03	2021-05-23 01:32:48.858+03	
01943518-7096-8c0a-f755-949d25736f7d	2021-05-23 01:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:33:09.853+03	2021-05-23 01:33:09.86+03	
6a4a47a8-3019-b8da-2fc2-9609821b4a5e	2021-05-23 01:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:33:29.853+03	2021-05-23 01:33:29.86+03	
569dc5a8-0b2f-d9af-221e-507e84daf590	2021-05-23 01:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:33:49.853+03	2021-05-23 01:33:49.86+03	
819dc86e-3af5-94ee-85a1-44726a4396a6	2021-05-23 01:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:34:09.853+03	2021-05-23 01:34:09.859+03	
c12bc8d1-bdc4-78d3-ff9d-4469d3d22f5b	2021-05-23 01:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:34:30.852+03	2021-05-23 01:34:30.859+03	
92b0109b-3aff-c504-52af-007047e06dd0	2021-05-23 01:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:34:50.853+03	2021-05-23 01:34:50.866+03	
1e60948a-03e4-896d-6015-88dd6ec86718	2021-05-23 01:35:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:35:10.853+03	2021-05-23 01:35:10.859+03	
80e207db-51cd-e95e-0e1e-1ad349a041ae	2021-05-23 01:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:35:30.853+03	2021-05-23 01:35:30.859+03	
ce27dece-6cd0-2dfe-a788-4037f69a0d05	2021-05-23 01:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:35:50.853+03	2021-05-23 01:35:50.859+03	
e1b8518c-1d77-f6b3-c2d8-433df2192184	2021-05-23 01:36:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:36:11.853+03	2021-05-23 01:36:11.859+03	
36b25314-ae39-85a2-3d03-a133c802e3b9	2021-05-23 01:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:36:32.853+03	2021-05-23 01:36:32.86+03	
8e036549-3031-f120-5aa3-25d1065a71f8	2021-05-23 01:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:36:52.853+03	2021-05-23 01:36:52.86+03	
3f5eb1bb-6961-ffa5-a133-04579fe06e96	2021-05-23 01:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:37:12.853+03	2021-05-23 01:37:12.859+03	
2f4fa051-ab41-d41c-8d44-5fed8e767139	2021-05-23 01:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:37:33.852+03	2021-05-23 01:37:33.903+03	
49b51e2c-b745-9ed7-a8a5-40ba8a1f256f	2021-05-23 01:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:37:54.852+03	2021-05-23 01:37:54.86+03	
10b9fba1-60fd-9aec-a364-2b9995e672ba	2021-05-23 01:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:38:14.853+03	2021-05-23 01:38:14.859+03	
d78f5e85-ee0c-5ed0-5b97-e5b93f15c5da	2021-05-23 01:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:38:35.853+03	2021-05-23 01:38:35.861+03	
c4457dd2-d6e6-feed-81a7-7713f3a30f0a	2021-05-23 01:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:38:55.853+03	2021-05-23 01:38:55.865+03	
b3b6ca26-aa87-3dab-95dc-31069a0a0562	2021-05-23 01:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:39:15.853+03	2021-05-23 01:39:15.872+03	
3537ba27-c1e7-483d-ebb3-92915849e3a9	2021-05-23 01:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:39:36.852+03	2021-05-23 01:39:36.862+03	
14439b43-153f-b76f-cb0d-4c20bcff0bad	2021-05-23 01:39:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:39:56.852+03	2021-05-23 01:39:56.859+03	
3226a651-d7fb-753b-53e8-dd8b434cd137	2021-05-23 01:40:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:40:06.852+03	2021-05-23 01:40:06.859+03	
2e767108-6d48-3b10-fb9f-e9027e950b44	2021-05-23 01:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:40:27.853+03	2021-05-23 01:40:27.86+03	
159f90ce-7e17-3c55-b7b6-0714264670b9	2021-05-23 01:40:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:40:47.853+03	2021-05-23 01:40:47.869+03	
6c933fd7-af1f-ee74-7b82-9ad316e0ae22	2021-05-23 01:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:41:07.853+03	2021-05-23 01:41:07.859+03	
696d8bc1-22f6-63f5-8add-2b2c700b684e	2021-05-23 01:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:41:28.853+03	2021-05-23 01:41:28.86+03	
06c11040-4e2d-6062-413b-2b90e4e16bea	2021-05-23 01:41:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:41:48.853+03	2021-05-23 01:41:48.861+03	
7eb4489e-fb34-b6ee-9a26-cf734734d2d2	2021-05-23 01:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:42:08.853+03	2021-05-23 01:42:08.868+03	
9e7aef1e-aa66-00d6-669e-878de635b363	2021-05-23 01:42:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:42:29.853+03	2021-05-23 01:42:29.859+03	
8da4bb8a-810b-5369-d3c6-daa1acaa076f	2021-05-23 01:42:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:42:51.853+03	2021-05-23 01:42:51.869+03	
17b3f2b7-66f0-d818-97d7-52b70355a2c2	2021-05-23 01:43:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:43:11.854+03	2021-05-23 01:43:11.863+03	
59c57d47-7933-b821-4661-30a7dceeab8f	2021-05-23 01:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:43:32.853+03	2021-05-23 01:43:32.859+03	
b106b7d7-7263-1026-f32c-f023284f8e81	2021-05-23 01:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:43:52.853+03	2021-05-23 01:43:52.859+03	
a60a2c23-f5ab-e945-b008-201356ee7cef	2021-05-23 01:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:44:13.853+03	2021-05-23 01:44:13.86+03	
43dd7367-2e20-c161-b9dd-3c6877484552	2021-05-23 01:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:44:34.853+03	2021-05-23 01:44:34.86+03	
59bbfb1d-c04a-233e-72cd-ec882a0fb64b	2021-05-23 01:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:44:54.853+03	2021-05-23 01:44:54.859+03	
0a7d238b-2499-9422-df00-392ebfbafa17	2021-05-23 01:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:45:14.853+03	2021-05-23 01:45:14.859+03	
2d8e2328-905b-c888-d6ef-0945ef7ba0f5	2021-05-23 01:45:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:45:34.853+03	2021-05-23 01:45:34.86+03	
671d6b40-7981-ca03-9f30-456d988321e9	2021-05-23 01:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:45:55.853+03	2021-05-23 01:45:55.86+03	
6097dcae-d072-ecf6-dd97-6299e64f71cf	2021-05-23 01:46:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:46:16.853+03	2021-05-23 01:46:16.871+03	
71a87b15-7230-e613-4aef-1b7449c11a42	2021-05-23 01:46:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:46:36.853+03	2021-05-23 01:46:36.86+03	
e76159cd-32c0-360e-79bf-5419eb264fee	2021-05-23 01:46:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:46:56.853+03	2021-05-23 01:46:56.86+03	
39c47338-d982-c8eb-7776-452a40f37bc2	2021-05-23 01:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:47:17.853+03	2021-05-23 01:47:17.86+03	
1e2e995b-ab01-f29b-760a-cfd7d9799fc9	2021-05-23 01:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:47:38.853+03	2021-05-23 01:47:38.859+03	
e31e5e3e-e8a7-7c8b-5f06-77a4b94bf9e8	2021-05-23 01:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:47:58.853+03	2021-05-23 01:47:58.861+03	
128fca50-177b-1de0-5264-739fb649a0ac	2021-05-23 01:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:48:18.853+03	2021-05-23 01:48:18.859+03	
f655b567-36d0-f1ec-a049-ec94cd34f566	2021-05-23 01:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:48:38.853+03	2021-05-23 01:48:38.86+03	
2fa08a4f-4dfa-eea7-8ecb-aad40ee4230e	2021-05-23 01:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:48:58.853+03	2021-05-23 01:48:58.86+03	
819085e8-3825-3f57-0064-058b0a883b51	2021-05-23 01:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:49:19.853+03	2021-05-23 01:49:19.859+03	
96e2b4c9-cc5c-4038-c613-96018787c993	2021-05-23 01:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:49:39.853+03	2021-05-23 01:49:39.86+03	
8261fd74-1317-b377-6774-ef5dfe1478af	2021-05-23 01:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:49:59.853+03	2021-05-23 01:49:59.859+03	
ede4f55c-1eb1-7e85-0d06-7535acecbd82	2021-05-23 01:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:50:10.853+03	2021-05-23 01:50:10.86+03	
270d5128-6eb8-5e66-ddd6-510d5c4d2d6c	2021-05-23 01:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:50:30.853+03	2021-05-23 01:50:30.859+03	
dc7d84b3-423c-ffca-c7f2-ecebeae9f77e	2021-05-23 01:50:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:50:51.852+03	2021-05-23 01:50:51.859+03	
6e0ccf24-fce6-497e-a28c-550c43167312	2021-05-23 01:51:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:51:11.854+03	2021-05-23 01:51:11.86+03	
0d9353f5-69f9-5b70-2ee4-cb5b849cff2b	2021-05-23 01:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:51:33.853+03	2021-05-23 01:51:33.861+03	
27545a29-7535-3534-048e-c1b1aabe1d10	2021-05-23 01:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:51:53.853+03	2021-05-23 01:51:53.866+03	
6fe71414-7c10-20c3-6c7b-e49206405c51	2021-05-23 01:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:52:15.853+03	2021-05-23 01:52:15.859+03	
5de3b807-9c48-66d4-9ac8-261e67b325b7	2021-05-23 01:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:52:36.853+03	2021-05-23 01:52:36.859+03	
4622f8c4-8f15-d814-39ba-35d983dc5469	2021-05-23 01:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:52:57.852+03	2021-05-23 01:52:57.863+03	
7c2d5f66-7795-c0c7-09b3-eb829ae78dcf	2021-05-23 01:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:53:17.852+03	2021-05-23 01:53:17.859+03	
c3ad3e84-cfe9-981e-1961-ccfe1a6f379d	2021-05-23 01:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:53:37.853+03	2021-05-23 01:53:37.861+03	
0773ec46-312a-7391-10c3-a3b09472cde7	2021-05-23 01:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:53:58.852+03	2021-05-23 01:53:58.859+03	
66b1efb0-5e5e-c14a-6629-32358f287d18	2021-05-23 01:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:54:18.853+03	2021-05-23 01:54:18.87+03	
46cd30ce-a315-02a5-1cd9-f938d90f3fdb	2021-05-23 01:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:54:38.853+03	2021-05-23 01:54:38.86+03	
10ccf151-9770-2032-90f2-81f7bf1d6feb	2021-05-23 01:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:54:58.853+03	2021-05-23 01:54:58.86+03	
83e71157-0e24-32f7-3243-e6611bbf321a	2021-05-23 01:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:55:18.853+03	2021-05-23 01:55:18.865+03	
c4ec653c-bbb6-0212-a438-b71d8810d4f5	2021-05-23 01:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:55:39.852+03	2021-05-23 01:55:39.86+03	
01295b5c-0ff4-e821-a05e-a12f1dab4f60	2021-05-23 01:55:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:55:59.853+03	2021-05-23 01:55:59.865+03	
6466a357-7a3e-d575-c8c4-93fdae6d5163	2021-05-23 01:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:56:20.853+03	2021-05-23 01:56:20.86+03	
e3d153ce-5876-071c-7f2a-b44e86976a37	2021-05-23 01:56:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:56:41.853+03	2021-05-23 01:56:41.86+03	
bb0cf276-7185-5ba5-a8d3-d0ca10051ea6	2021-05-23 01:57:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:57:01.853+03	2021-05-23 01:57:01.869+03	
75f320b0-c7a8-d1ee-8f8d-3928c99c5973	2021-05-23 01:57:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:57:21.854+03	2021-05-23 01:57:21.86+03	
1aa0897e-8f45-77bf-d1c5-552af8334be4	2021-05-23 01:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:57:42.853+03	2021-05-23 01:57:42.859+03	
7342fd16-592e-e570-36b8-8915416349fe	2021-05-23 01:58:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:58:03.853+03	2021-05-23 01:58:03.859+03	
a5011999-8359-16c9-ed64-d13b02310df0	2021-05-23 01:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:58:25.853+03	2021-05-23 01:58:25.859+03	
77756d97-2587-a008-28a8-9ca427e7633a	2021-05-23 01:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:58:47.853+03	2021-05-23 01:58:47.859+03	
0cb495d4-4adb-bc99-c4f5-7286ff0e0c49	2021-05-23 01:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:59:08.853+03	2021-05-23 01:59:08.86+03	
d0bb49b6-c5d2-4721-e138-92aaaccff83b	2021-05-23 01:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:59:29.853+03	2021-05-23 01:59:29.86+03	
fd4c2ca0-3020-2e32-ddf7-ade337f7f806	2021-05-23 01:59:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:59:50.852+03	2021-05-23 01:59:50.863+03	
666b766a-3bef-23d8-eac2-22f9be88779d	2021-05-23 02:00:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:00:10.853+03	2021-05-23 02:00:10.861+03	
f7b2add8-aa4e-e799-2cf5-14e58ab66c15	2021-05-23 02:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:00:30.853+03	2021-05-23 02:00:30.861+03	
1f22677c-1f7c-d419-482e-6edb1b4cf5b8	2021-05-23 02:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:00:50.853+03	2021-05-23 02:00:50.861+03	
4c506116-255f-a5f2-2041-77674d53388a	2021-05-23 01:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 01:40:00.853+03	2021-05-23 01:40:00.857+03	ERROR
27090d9c-d22f-b314-37c0-6f773ba8a0cc	2021-05-23 01:40:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:40:16.853+03	2021-05-23 01:40:16.859+03	
7791da0a-222e-9745-484a-a27b6f5577ac	2021-05-23 01:40:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:40:37.853+03	2021-05-23 01:40:37.861+03	
826702e5-632a-13bb-ae16-c49ed50b454f	2021-05-23 01:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:40:57.853+03	2021-05-23 01:40:57.86+03	
7f837059-1628-49ac-df32-8fe3d2f8acc8	2021-05-23 01:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:41:18.852+03	2021-05-23 01:41:18.859+03	
a19fa7ae-6048-fd23-d84b-f8953383ad91	2021-05-23 01:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:41:38.853+03	2021-05-23 01:41:38.859+03	
2c78309a-0ae3-be9f-5af9-45bf7ad17c52	2021-05-23 01:41:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:41:58.853+03	2021-05-23 01:41:58.86+03	
edca1d5c-0af6-87d3-871b-bffb7fc863b2	2021-05-23 01:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:42:19.853+03	2021-05-23 01:42:19.86+03	
7a5dac82-71e1-4706-4501-838e808af14d	2021-05-23 01:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:42:40.853+03	2021-05-23 01:42:40.86+03	
92cc80ca-ad07-f633-6b7d-b31ec306b65a	2021-05-23 01:43:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:43:01.853+03	2021-05-23 01:43:01.859+03	
55b38410-776d-6ca7-f4f6-0648146a0e55	2021-05-23 01:43:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:43:21.854+03	2021-05-23 01:43:21.86+03	
8a0a433a-c1e1-5cac-7ee8-df2ae1fe2f74	2021-05-23 01:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:43:42.853+03	2021-05-23 01:43:42.86+03	
4c4e70b4-2118-4998-4d45-63daf6cd539b	2021-05-23 01:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:44:02.853+03	2021-05-23 01:44:02.86+03	
c86f972b-9ed2-9a3e-c5f1-822bc1716756	2021-05-23 01:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:44:24.852+03	2021-05-23 01:44:24.863+03	
3b44d35f-7b6c-c56b-1d40-097d24c63303	2021-05-23 01:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:44:44.853+03	2021-05-23 01:44:44.859+03	
3d707785-2f46-988c-09c3-341805544f32	2021-05-23 01:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:45:04.853+03	2021-05-23 01:45:04.859+03	
a23ae411-6757-88aa-6034-679ff1d4255d	2021-05-23 01:45:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:45:24.853+03	2021-05-23 01:45:24.859+03	
241a4841-762a-edae-7d5a-4845882b511a	2021-05-23 01:45:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:45:44.853+03	2021-05-23 01:45:44.86+03	
bd954ce5-580c-89c7-0aa4-0248f32592e1	2021-05-23 01:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:46:05.853+03	2021-05-23 01:46:05.86+03	
6931cda6-cf35-cdee-fcff-9f1f2b057a3e	2021-05-23 01:46:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:46:26.853+03	2021-05-23 01:46:26.86+03	
452f8471-a476-40f7-f7b1-b336db7ad7ed	2021-05-23 01:46:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:46:46.853+03	2021-05-23 01:46:46.859+03	
8649b890-bc8b-59f2-7a94-96c443d28c44	2021-05-23 01:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:47:07.853+03	2021-05-23 01:47:07.86+03	
e0c284dc-c81f-ba39-637a-d4aae5bf02f7	2021-05-23 01:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:47:28.853+03	2021-05-23 01:47:28.859+03	
2a5984c4-407d-3ed6-6500-0abce7291088	2021-05-23 01:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:47:48.853+03	2021-05-23 01:47:48.879+03	
1533dec6-2b1f-36cc-8558-fb80bff723a2	2021-05-23 01:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:48:08.853+03	2021-05-23 01:48:08.861+03	
9c80022e-27cc-3a44-8a62-591ca8d9849f	2021-05-23 01:48:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:48:28.853+03	2021-05-23 01:48:28.859+03	
1da74f02-ee46-f5f2-262f-a59e1964123c	2021-05-23 01:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:48:48.853+03	2021-05-23 01:48:48.866+03	
5eaad9f0-e8e8-4021-f0d2-a60c52a49ecf	2021-05-23 01:49:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:49:09.853+03	2021-05-23 01:49:09.859+03	
7357eec0-518b-462a-1d67-a470803aef71	2021-05-23 01:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:49:29.853+03	2021-05-23 01:49:29.86+03	
25791f09-1ffe-6975-8586-cab3c748da67	2021-05-23 01:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:49:49.853+03	2021-05-23 01:49:49.859+03	
73b6ae7e-3033-b185-03ef-f5d0eff6719e	2021-05-23 01:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 01:50:00.853+03	2021-05-23 01:50:00.858+03	ERROR
f5104728-6a91-b0fe-b7ab-9b602df710af	2021-05-23 01:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:50:20.853+03	2021-05-23 01:50:20.87+03	
f6a9e6f9-9b2c-fc6b-1f33-58944015b332	2021-05-23 01:50:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:50:40.853+03	2021-05-23 01:50:40.859+03	
472b0df9-7788-0df1-81a1-56e29b392705	2021-05-23 01:51:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:51:01.853+03	2021-05-23 01:51:01.898+03	
59fc318c-ffc9-8bd2-f5c5-e6ca13bc621f	2021-05-23 01:51:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:51:22.853+03	2021-05-23 01:51:22.86+03	
c930f958-d1aa-1959-6de8-917f0c2d442a	2021-05-23 01:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:51:43.853+03	2021-05-23 01:51:43.863+03	
a4f94b53-1994-4706-8007-b0db9c68b527	2021-05-23 01:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:52:04.853+03	2021-05-23 01:52:04.859+03	
e4cb3b13-b194-88e9-bcd4-637e00e4abe3	2021-05-23 01:52:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:52:26.853+03	2021-05-23 01:52:26.86+03	
556595d8-6f50-a433-3c58-3b9d89171a2f	2021-05-23 01:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:52:46.853+03	2021-05-23 01:52:46.872+03	
9be34916-7cae-ee23-8aaa-97ae15120a61	2021-05-23 01:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:53:07.852+03	2021-05-23 01:53:07.859+03	
fe466f8c-3140-fb36-addd-5565d355c1ef	2021-05-23 01:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:53:27.853+03	2021-05-23 01:53:27.859+03	
fee5bf9c-abc9-53d1-7636-b535fb986ea0	2021-05-23 01:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:53:47.853+03	2021-05-23 01:53:47.862+03	
bb48e8a1-b3bf-5226-6cea-e095095ebaa4	2021-05-23 01:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:54:08.852+03	2021-05-23 01:54:08.865+03	
72309dce-8a19-f02d-2f2b-8579429dfdcc	2021-05-23 01:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:54:28.853+03	2021-05-23 01:54:28.859+03	
bd167b8c-76d6-d6d2-0d13-9c3135ff72ac	2021-05-23 01:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:54:48.853+03	2021-05-23 01:54:48.86+03	
5241b8fb-e91f-7018-75c5-d7b8a276dcf7	2021-05-23 01:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:55:08.853+03	2021-05-23 01:55:08.86+03	
ae9e0811-e650-a46d-5b55-55ecdb8bff22	2021-05-23 01:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:55:28.853+03	2021-05-23 01:55:28.872+03	
b346431e-60ec-c26a-e62e-9392de35ca11	2021-05-23 01:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:55:49.852+03	2021-05-23 01:55:49.859+03	
848219a5-3435-ce48-ba22-cf3b79c5740b	2021-05-23 01:56:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:56:09.853+03	2021-05-23 01:56:09.859+03	
ea12448d-e877-b064-8951-69ee5ae7926d	2021-05-23 01:56:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:56:31.853+03	2021-05-23 01:56:31.86+03	
3af8bb29-0157-8129-9eb9-64affea49956	2021-05-23 01:56:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:56:51.853+03	2021-05-23 01:56:51.861+03	
34378c3e-0941-bdd1-c087-2f94680d3ba2	2021-05-23 01:57:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:57:11.853+03	2021-05-23 01:57:11.859+03	
6dcb8573-4cd3-a6aa-d736-9251a2f936ba	2021-05-23 01:57:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:57:32.853+03	2021-05-23 01:57:32.859+03	
742409a1-6632-ee73-5040-10f325c5ece0	2021-05-23 01:57:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:57:52.853+03	2021-05-23 01:57:52.859+03	
f4dbd5a5-6492-9c99-7178-604ff04941fd	2021-05-23 01:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:58:14.853+03	2021-05-23 01:58:14.859+03	
0c714b55-6aa5-1fe1-6127-64451528ec3c	2021-05-23 01:58:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:58:36.853+03	2021-05-23 01:58:36.859+03	
ee31b9a2-6d04-32cc-1971-043503fbaa68	2021-05-23 01:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:58:58.853+03	2021-05-23 01:58:58.859+03	
c97a0d1c-841d-12aa-bfd7-875786165929	2021-05-23 01:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:59:19.852+03	2021-05-23 01:59:19.86+03	
debcc4be-c0c6-4dff-a702-37768c92409b	2021-05-23 01:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 01:59:40.852+03	2021-05-23 01:59:40.858+03	
2186565f-2752-66e2-c5d2-2b0927acc7f7	2021-05-23 02:00:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:00:00.853+03	2021-05-23 02:00:00.862+03	
240ca7fa-e657-bf15-f43d-1ea06e4059f3	2021-05-23 02:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 02:00:00.853+03	2021-05-23 02:00:00.875+03	ERROR
81b1922d-e1bf-6c24-2a79-a8b4a9240a97	2021-05-23 02:00:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:00:20.853+03	2021-05-23 02:00:20.861+03	
4c9e8163-03ab-98ed-aea6-cbf4adc1fb7d	2021-05-23 02:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:00:40.853+03	2021-05-23 02:00:40.862+03	
e0ee8fa1-d606-0103-9a4c-c5859817c11e	2021-05-23 02:01:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:01:01.853+03	2021-05-23 02:01:01.907+03	
e89d8c3c-f5e5-27ff-86d8-d299415fd4b7	2021-05-23 02:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:01:22.853+03	2021-05-23 02:01:22.859+03	
cdfdfde5-d98f-5b27-9cd8-a91fba56fce1	2021-05-23 02:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:01:42.853+03	2021-05-23 02:01:42.86+03	
5f5c1112-9343-547a-7da8-5da8df82f373	2021-05-23 02:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:02:03.853+03	2021-05-23 02:02:03.86+03	
6b6db96b-ed67-995b-4cfc-e4f59695b0c9	2021-05-23 02:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:02:25.852+03	2021-05-23 02:02:25.868+03	
4161003b-cb51-9086-163c-1b5b9f0ac13d	2021-05-23 02:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:02:45.853+03	2021-05-23 02:02:45.871+03	
19ea9905-dbbb-d981-475a-ae243e7c275e	2021-05-23 02:03:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:03:06.854+03	2021-05-23 02:03:06.861+03	
039287b7-861b-e0a1-2f9c-4416a453d2af	2021-05-23 02:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:03:27.853+03	2021-05-23 02:03:27.86+03	
a957c9aa-4f04-9806-3881-d2cf9511a74f	2021-05-23 02:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:03:48.853+03	2021-05-23 02:03:48.859+03	
e0241c7c-abe2-3503-5ad1-3604d5011c4c	2021-05-23 02:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:04:09.852+03	2021-05-23 02:04:09.877+03	
14ba0cf5-6994-70e6-4eca-649cd0a112d9	2021-05-23 02:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:04:29.853+03	2021-05-23 02:04:29.859+03	
5fbf0137-7191-b11a-7f41-a55339f3366c	2021-05-23 02:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:04:50.853+03	2021-05-23 02:04:50.859+03	
17f11c47-9692-e975-33c6-8a8393656045	2021-05-23 02:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:05:10.853+03	2021-05-23 02:05:10.859+03	
880f680c-b9a4-6b60-7feb-e971efaa0c82	2021-05-23 02:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:05:30.853+03	2021-05-23 02:05:30.859+03	
a60272e1-8ac3-c91b-3a3c-28c925494be7	2021-05-23 02:05:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:05:51.853+03	2021-05-23 02:05:51.862+03	
439e7fe8-d066-18f5-7717-4dd6e39a523d	2021-05-23 02:06:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:06:11.854+03	2021-05-23 02:06:11.878+03	
ae5e1790-7bc1-9371-46e9-25d0bfdcf7ba	2021-05-23 02:06:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:06:32.853+03	2021-05-23 02:06:32.87+03	
318ee475-593d-c3e1-d0fb-79ea62d0b53c	2021-05-23 02:06:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:06:52.853+03	2021-05-23 02:06:52.861+03	
a339614d-d771-35c9-99e6-e581bb9d10f3	2021-05-23 02:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:07:13.852+03	2021-05-23 02:07:13.871+03	
e2d7aa1f-bd29-07e7-3e06-81ad8fb788ec	2021-05-23 02:07:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:07:33.852+03	2021-05-23 02:07:33.859+03	
e6f43063-42b8-e6f2-166e-bbe3aab56872	2021-05-23 02:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:07:53.853+03	2021-05-23 02:07:53.863+03	
671debde-e86d-a08e-183d-63a137c2aac6	2021-05-23 02:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:08:13.853+03	2021-05-23 02:08:13.867+03	
c757f75e-57a5-c84a-8416-6a2585db6fe0	2021-05-23 02:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:08:33.853+03	2021-05-23 02:08:33.86+03	
aa21eafc-3a3d-306d-e17f-4fc2dbaedf8c	2021-05-23 02:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:08:53.853+03	2021-05-23 02:08:53.86+03	
6df7bdc2-c767-2c0b-0fc6-659b693314e0	2021-05-23 02:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:09:14.852+03	2021-05-23 02:09:14.859+03	
1db9b27b-d57a-4555-8679-0f62f400ddce	2021-05-23 02:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:09:34.852+03	2021-05-23 02:09:34.859+03	
4eeef588-631a-468c-3b46-6c9d048bae2e	2021-05-23 02:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:09:54.853+03	2021-05-23 02:09:54.859+03	
2c7a0188-38b2-0a82-eba3-7b410a35f6db	2021-05-23 02:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:10:04.853+03	2021-05-23 02:10:04.86+03	
c3db3411-5eac-b383-4657-3b742c8a0a73	2021-05-23 02:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:10:24.853+03	2021-05-23 02:10:24.859+03	
2d7ac760-303e-77f1-d237-955b47c9865d	2021-05-23 02:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:10:44.853+03	2021-05-23 02:10:44.86+03	
9a22b5b1-b695-bbfb-0e13-5b67b9e927ff	2021-05-23 02:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:11:04.853+03	2021-05-23 02:11:04.859+03	
58bcc3b6-3fce-4955-ae31-f65c3749d8c2	2021-05-23 02:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:11:24.853+03	2021-05-23 02:11:24.859+03	
b7732a9e-b9f2-75a2-9fb4-a68da5a0d786	2021-05-23 02:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:11:45.853+03	2021-05-23 02:11:45.861+03	
f7bc6c38-163a-ecde-8890-26826622efb9	2021-05-23 02:12:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:12:06.854+03	2021-05-23 02:12:06.861+03	
4b0a0086-5dc5-d847-10f4-2d3e2b831808	2021-05-23 02:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:12:27.853+03	2021-05-23 02:12:27.861+03	
f73fb697-fd42-6ed1-9429-5008c6a837ce	2021-05-23 02:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:12:48.853+03	2021-05-23 02:12:48.86+03	
c4db167e-daf6-7b17-d226-f18c4611de23	2021-05-23 02:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:13:09.852+03	2021-05-23 02:13:09.862+03	
ec625291-5975-722e-a0b1-d0449fec62ca	2021-05-23 02:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:13:29.853+03	2021-05-23 02:13:29.863+03	
a23063f1-f376-2226-9ab9-7830cea19e3b	2021-05-23 02:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:13:49.853+03	2021-05-23 02:13:49.859+03	
6c2f395d-b074-01b8-b273-4cf609adc933	2021-05-23 02:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:14:09.853+03	2021-05-23 02:14:09.86+03	
7d3b060b-0eb9-6ba8-89a1-8f232df65c96	2021-05-23 02:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:14:29.853+03	2021-05-23 02:14:29.86+03	
ba45b508-f9cf-e485-1f1c-69f61f34fc35	2021-05-23 02:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:14:50.852+03	2021-05-23 02:14:50.86+03	
38b5075b-a88d-6ae8-f983-058a886e1379	2021-05-23 02:15:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:15:11.852+03	2021-05-23 02:15:11.86+03	
7835f33a-3f96-db14-a072-3402b37632e9	2021-05-23 02:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:15:32.853+03	2021-05-23 02:15:32.86+03	
fdf546ae-7fae-12e9-3a51-e3b31ed99717	2021-05-23 02:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:15:53.853+03	2021-05-23 02:15:53.86+03	
6ad5369f-3a75-9b1f-7818-44d49de4be76	2021-05-23 02:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:16:14.853+03	2021-05-23 02:16:14.859+03	
eae952a6-caaa-5ae2-e112-0681763dab65	2021-05-23 02:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:16:34.853+03	2021-05-23 02:16:34.86+03	
115bac3a-e4e4-dea2-0a52-9d1b0f3d2a93	2021-05-23 02:16:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:16:54.853+03	2021-05-23 02:16:54.859+03	
7073ed9a-d2fa-b88f-50a5-b093c781036f	2021-05-23 02:17:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:17:14.853+03	2021-05-23 02:17:14.86+03	
7ad70559-3ead-8a60-7346-b32efae12cbd	2021-05-23 02:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:17:35.852+03	2021-05-23 02:17:35.87+03	
4a15c773-cde8-2357-0147-7df2f8be9c08	2021-05-23 02:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:17:55.853+03	2021-05-23 02:17:55.873+03	
ac2f43b6-8abf-1045-ec67-38cbd93c006d	2021-05-23 02:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:18:17.853+03	2021-05-23 02:18:17.859+03	
92ea9751-3115-88b4-4a9d-5e465ffe5351	2021-05-23 02:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:18:37.853+03	2021-05-23 02:18:37.861+03	
db8e5ff3-c0f2-fede-267e-5b69eb0ffed4	2021-05-23 02:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:18:57.853+03	2021-05-23 02:18:57.859+03	
47fef0eb-d1c4-d7e0-de8f-8738ce2500e4	2021-05-23 02:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:19:18.852+03	2021-05-23 02:19:18.859+03	
6d6f5707-2a0f-8e4e-d04e-1095037113b9	2021-05-23 02:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:19:38.853+03	2021-05-23 02:19:38.86+03	
0af74915-f349-bc73-2311-02db020ec5ac	2021-05-23 02:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:19:58.853+03	2021-05-23 02:19:58.86+03	
fc63279f-76c8-3a17-4284-63b072ed28dd	2021-05-23 02:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:20:08.853+03	2021-05-23 02:20:08.86+03	
fded284d-8223-4ddb-ec3e-f8c8a52dbbe5	2021-05-23 02:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:20:28.853+03	2021-05-23 02:20:28.866+03	
9742b3ce-e3c6-1b78-35f3-ad5db2a406c6	2021-05-23 02:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:20:48.853+03	2021-05-23 02:20:48.869+03	
95bbf63a-8018-b203-5851-86bc7fc49551	2021-05-23 02:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:21:08.853+03	2021-05-23 02:21:08.859+03	
98674623-2b94-08c6-c5cf-b4626066d581	2021-05-23 02:21:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:21:28.853+03	2021-05-23 02:21:28.859+03	
10cf483f-718b-df44-6314-1c2d00983b25	2021-05-23 02:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:21:48.853+03	2021-05-23 02:21:48.866+03	
f1fa8971-bcf4-490c-f5d2-2dddb2c1828a	2021-05-23 02:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:01:12.852+03	2021-05-23 02:01:12.858+03	
28997eae-3c9a-ecbe-daa0-a4abf276240c	2021-05-23 02:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:01:32.853+03	2021-05-23 02:01:32.859+03	
e4c23ae9-03fc-eb23-6631-937db7d62002	2021-05-23 02:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:01:52.853+03	2021-05-23 02:01:52.87+03	
ab76bb5d-bed3-0c50-ff6f-1f22b898aead	2021-05-23 02:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:02:14.853+03	2021-05-23 02:02:14.861+03	
748feb88-98d6-3cc3-4c65-402f8863dc7f	2021-05-23 02:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:02:35.853+03	2021-05-23 02:02:35.859+03	
4c5e0eed-ae23-21ce-8eb7-6512f21a8223	2021-05-23 02:02:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:02:55.853+03	2021-05-23 02:02:55.871+03	
b75b44ed-8db6-6503-0f5e-4386bff01b6f	2021-05-23 02:03:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:03:16.854+03	2021-05-23 02:03:16.861+03	
1a1e9385-b459-3cf3-60eb-483f408e6f7d	2021-05-23 02:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:03:37.853+03	2021-05-23 02:03:37.86+03	
d23b7be5-1ac4-f000-ed7f-e4df0f8c4beb	2021-05-23 02:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:03:58.853+03	2021-05-23 02:03:58.86+03	
a29dfeca-23bd-6dd8-384f-f4bb8363288e	2021-05-23 02:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:04:19.852+03	2021-05-23 02:04:19.859+03	
7ff38587-826d-b465-54b9-44b0a3257a53	2021-05-23 02:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:04:39.853+03	2021-05-23 02:04:39.872+03	
3a6cf283-8673-e7e5-9c53-f3b728f2812c	2021-05-23 02:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:05:00.853+03	2021-05-23 02:05:00.864+03	
92a940ff-bf80-a7bb-d7a5-ca6cd97b0ebf	2021-05-23 02:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:05:20.853+03	2021-05-23 02:05:20.859+03	
3e2450df-6b44-911c-d34a-aa4725aa08cf	2021-05-23 02:05:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:05:41.853+03	2021-05-23 02:05:41.859+03	
36ad8ffd-1d97-bc9b-bcd5-375f625e15a4	2021-05-23 02:06:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:06:01.853+03	2021-05-23 02:06:01.917+03	
48ebbf28-f7a9-2539-e0ae-64f34e55add6	2021-05-23 02:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:06:22.852+03	2021-05-23 02:06:22.872+03	
56a5ba56-97d1-f909-f406-d7928a0312d1	2021-05-23 02:06:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:06:42.853+03	2021-05-23 02:06:42.86+03	
1cb57d92-332d-0ce1-0b48-45ce94e4d457	2021-05-23 02:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:07:03.852+03	2021-05-23 02:07:03.858+03	
d8310f1b-0fbc-e51e-8dff-23d9da46e0b1	2021-05-23 02:07:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:07:23.852+03	2021-05-23 02:07:23.86+03	
5f1e3383-38f0-8472-e093-ed9ea7515df0	2021-05-23 02:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:07:43.852+03	2021-05-23 02:07:43.859+03	
15b04123-1ade-a039-8501-049aa08e08c7	2021-05-23 02:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:08:03.853+03	2021-05-23 02:08:03.859+03	
42f39c41-232d-cb39-7173-9508460d981d	2021-05-23 02:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:08:23.853+03	2021-05-23 02:08:23.86+03	
776609bd-e116-951e-a8bc-ce3c4c6197d7	2021-05-23 02:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:08:43.853+03	2021-05-23 02:08:43.86+03	
c08d5fec-3371-97e3-167d-9c56788ec8a1	2021-05-23 02:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:09:03.853+03	2021-05-23 02:09:03.861+03	
6c430221-9025-7a68-338c-1d24d01ce8b0	2021-05-23 02:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:09:24.852+03	2021-05-23 02:09:24.859+03	
400214b6-7c1f-4af0-4fa9-3bdca371e40a	2021-05-23 02:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:09:44.852+03	2021-05-23 02:09:44.859+03	
e8a80853-b096-67e4-8a55-399f184a0ab7	2021-05-23 02:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 02:10:00.852+03	2021-05-23 02:10:00.857+03	ERROR
8a7140ba-66ab-7b6a-e6f9-9679ab0f2286	2021-05-23 02:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:10:14.853+03	2021-05-23 02:10:14.859+03	
bed1e3eb-103b-ad1c-c833-84ae3a346fc1	2021-05-23 02:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:10:34.853+03	2021-05-23 02:10:34.863+03	
bdfd3892-8317-6f8d-a214-271fd26fbaa5	2021-05-23 02:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:10:54.853+03	2021-05-23 02:10:54.86+03	
efd23e14-f234-1f2d-1c36-95e91530134f	2021-05-23 02:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:11:14.853+03	2021-05-23 02:11:14.86+03	
7e3a6eb2-308d-952a-7bfc-99df89324f92	2021-05-23 02:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:11:35.852+03	2021-05-23 02:11:35.875+03	
4c70b506-6d1d-ddea-6846-e1aad10d095d	2021-05-23 02:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:11:55.853+03	2021-05-23 02:11:55.86+03	
0b9a2141-8918-a348-3298-b02fd011dd38	2021-05-23 02:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:12:17.853+03	2021-05-23 02:12:17.862+03	
83449544-fff0-1b19-8072-201eec1c496b	2021-05-23 02:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:12:38.852+03	2021-05-23 02:12:38.86+03	
aafb10d2-058d-bf12-2af7-cd8d985160be	2021-05-23 02:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:12:59.852+03	2021-05-23 02:12:59.859+03	
7400e09c-704a-dd27-65c3-b5f0b66ad5ea	2021-05-23 02:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:13:19.853+03	2021-05-23 02:13:19.868+03	
8458045e-2b7e-9e53-c1c4-48becba3266a	2021-05-23 02:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:13:39.853+03	2021-05-23 02:13:39.863+03	
83cef76d-056d-f6d9-8226-ee2bc5974c0e	2021-05-23 02:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:13:59.853+03	2021-05-23 02:13:59.861+03	
78fccb77-fb46-8ce0-e7fe-81de92800a9c	2021-05-23 02:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:14:19.853+03	2021-05-23 02:14:19.863+03	
60335bf5-3025-0f99-a231-3547f5cdb1c5	2021-05-23 02:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:14:39.853+03	2021-05-23 02:14:39.859+03	
80ffb53b-d273-994e-c6ce-18506344a648	2021-05-23 02:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:15:00.853+03	2021-05-23 02:15:00.861+03	
14342961-5eab-8742-d42a-e3e9008633cb	2021-05-23 02:15:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:15:21.854+03	2021-05-23 02:15:21.861+03	
3bfaf275-094f-05ca-ba1d-f2997ab5fd66	2021-05-23 02:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:15:43.853+03	2021-05-23 02:15:43.861+03	
c2a5e454-79d3-1680-01ac-35cf0fb7a0c4	2021-05-23 02:16:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:16:04.852+03	2021-05-23 02:16:04.86+03	
3d8a6c8d-2271-a5a4-8b2c-627b402479a9	2021-05-23 02:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:16:24.853+03	2021-05-23 02:16:24.88+03	
9bbc748c-ec24-0cdf-feaf-a3d6f7c84234	2021-05-23 02:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:16:44.853+03	2021-05-23 02:16:44.862+03	
990ba18a-9d7f-17ca-d507-03dd59730a85	2021-05-23 02:17:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:17:04.853+03	2021-05-23 02:17:04.909+03	
e749e179-e36d-b8e4-14a3-917a80a1919a	2021-05-23 02:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:17:25.852+03	2021-05-23 02:17:25.859+03	
a25cfa1e-e613-676b-2c14-0001d462f2d4	2021-05-23 02:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:17:45.853+03	2021-05-23 02:17:45.865+03	
f591a8e7-6172-f243-a4b0-c0b7b5eb4754	2021-05-23 02:18:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:18:06.854+03	2021-05-23 02:18:06.861+03	
65921dc7-6fb8-18ea-707c-ecef9dba10ac	2021-05-23 02:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:18:27.853+03	2021-05-23 02:18:27.877+03	
235c5f5c-f783-44a1-68fb-ba85f8db8abc	2021-05-23 02:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:18:47.853+03	2021-05-23 02:18:47.873+03	
dcb17143-f3a4-dbe0-feb1-476a45fdfc16	2021-05-23 02:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:19:08.852+03	2021-05-23 02:19:08.859+03	
98609114-cacb-3a0b-fe4c-46d71bd4293f	2021-05-23 02:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:19:28.853+03	2021-05-23 02:19:28.86+03	
588051bf-8a2c-91b2-91ba-c5b7409756d2	2021-05-23 02:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:19:48.853+03	2021-05-23 02:19:48.861+03	
b7e46367-f277-b7f7-7d95-e756e97be115	2021-05-23 02:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 02:20:00.852+03	2021-05-23 02:20:00.862+03	ERROR
eaed6008-1351-ded8-a874-f5cc3098df3f	2021-05-23 02:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:20:18.853+03	2021-05-23 02:20:18.862+03	
4dc0fda8-490c-ccac-55b3-da2f5c612cef	2021-05-23 02:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:20:38.853+03	2021-05-23 02:20:38.861+03	
4acf59c0-b5fb-c9c3-303e-7755af75314d	2021-05-23 02:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:20:58.853+03	2021-05-23 02:20:58.861+03	
76b52071-80b3-f028-685c-93e742076014	2021-05-23 02:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:21:18.853+03	2021-05-23 02:21:18.877+03	
36454c72-51d2-3c18-d460-0834893b74ff	2021-05-23 02:21:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:21:38.853+03	2021-05-23 02:21:38.859+03	
7dc025f6-ef2d-c175-5722-81cd556113f4	2021-05-23 02:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:21:58.853+03	2021-05-23 02:21:58.867+03	
f5f33d3d-8a57-fc74-2733-0198f58b2a98	2021-05-27 18:04:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:04:55.951+03	2021-05-27 18:04:55.961+03	
1b575b2d-35d8-3455-ba23-38b351633424	2021-05-23 02:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:22:08.853+03	2021-05-23 02:22:08.86+03	
e402dfea-33dc-12fe-479c-e5f857d0f652	2021-05-23 02:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:54:13.853+03	2021-05-23 02:54:13.862+03	
e4f979c2-9f5e-2240-1135-de5b9ce8238c	2021-05-23 02:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:22:28.853+03	2021-05-23 02:22:28.862+03	
d994cf74-43eb-ff6b-1f04-693f41b9872e	2021-05-23 02:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:22:48.853+03	2021-05-23 02:22:48.86+03	
a59d49b7-b603-7f4e-478f-379e9950399c	2021-05-23 02:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:54:33.853+03	2021-05-23 02:54:33.861+03	
c848e877-5a00-44f6-d61c-32629afefe73	2021-05-23 02:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:23:08.853+03	2021-05-23 02:23:08.86+03	
0c60c06c-5ef1-1e99-ba9b-464fdbed7a81	2021-05-23 02:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:23:28.853+03	2021-05-23 02:23:28.86+03	
b3c55a0c-af28-232b-056d-1ee4f86f31b0	2021-05-23 02:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:54:53.853+03	2021-05-23 02:54:53.86+03	
38ed7e65-2b09-4d10-1859-fbd643cc8792	2021-05-23 02:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:23:49.853+03	2021-05-23 02:23:49.859+03	
9f5ce906-2af0-f529-6f32-fe5f73d9aee8	2021-05-23 02:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:24:09.853+03	2021-05-23 02:24:09.861+03	
b23948e1-e48b-4998-52c8-860b0c9a58fc	2021-05-23 02:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:55:14.852+03	2021-05-23 02:55:14.859+03	
31c0ca9c-9a8e-d5f5-ecb3-60037459d386	2021-05-23 02:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:24:29.853+03	2021-05-23 02:24:29.861+03	
dc60db9f-cd0a-4fc0-c9c5-738908567320	2021-05-23 02:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:24:50.853+03	2021-05-23 02:24:50.859+03	
f95e5e8a-ec2d-cfca-82e3-1060a392354a	2021-05-23 02:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:55:34.852+03	2021-05-23 02:55:34.859+03	
fb7cfe98-3c41-8878-faee-21eeeba74902	2021-05-23 02:25:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:25:11.852+03	2021-05-23 02:25:11.859+03	
52b88ab5-242d-d6f7-219e-5554073987e6	2021-05-23 02:25:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:25:31.854+03	2021-05-23 02:25:31.862+03	
8cd25fe9-51e0-6aee-f724-c774e2b575e6	2021-05-23 02:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:55:54.853+03	2021-05-23 02:55:54.862+03	
2752f39f-ab3e-f9c7-c6de-5cc1f5e41122	2021-05-23 02:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:25:52.853+03	2021-05-23 02:25:52.861+03	
2f0574c3-cfa4-c1c1-c959-2ee89c9deff6	2021-05-23 02:26:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:26:12.853+03	2021-05-23 02:26:12.86+03	
2cf8a1bb-2b15-165d-6c26-aae1c16ccfa4	2021-05-23 02:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:56:14.853+03	2021-05-23 02:56:14.859+03	
ddcab2a5-4689-3f62-acff-45decada710e	2021-05-23 02:26:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:26:32.853+03	2021-05-23 02:26:32.86+03	
896f395c-dc19-a9c5-4fab-bb4303d0fac6	2021-05-23 02:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:26:52.853+03	2021-05-23 02:26:52.86+03	
0b28b106-3790-3d7d-32c0-31b19728cffe	2021-05-23 02:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:56:34.853+03	2021-05-23 02:56:34.86+03	
23a0d2a9-7731-32ad-35b8-b84293db4520	2021-05-23 02:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:27:12.853+03	2021-05-23 02:27:12.859+03	
debe7c37-3817-c69d-b2b8-43d073360e3b	2021-05-23 02:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:27:32.853+03	2021-05-23 02:27:32.86+03	
375314cd-e2a4-687b-8b98-7632510c0001	2021-05-23 02:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:56:55.852+03	2021-05-23 02:56:55.861+03	
38214183-117d-36ad-e363-1ab697400b24	2021-05-23 02:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:27:53.853+03	2021-05-23 02:27:53.861+03	
b8c78f18-ffaa-1e44-bc57-90b07a484c38	2021-05-23 02:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:28:13.853+03	2021-05-23 02:28:13.86+03	
b7fde356-b3b9-7a45-147d-0d377340ce05	2021-05-23 02:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:57:15.853+03	2021-05-23 02:57:15.877+03	
d7bb4b7a-3666-db35-93d6-1d5b9738f07f	2021-05-23 02:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:28:33.853+03	2021-05-23 02:28:33.86+03	
f07bd746-d1e9-2e10-7d9f-00f48a41c1e6	2021-05-23 02:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:28:54.852+03	2021-05-23 02:28:54.859+03	
cc7e648b-cfec-bbfb-7243-82cb62a5ecd2	2021-05-23 02:57:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:57:36.852+03	2021-05-23 02:57:36.864+03	
7e30dc80-ffec-9cec-b2ae-904b238b6a41	2021-05-23 02:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:29:14.853+03	2021-05-23 02:29:14.862+03	
dbd4cecd-28d3-854d-5c33-f64cef13a106	2021-05-23 02:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:29:35.853+03	2021-05-23 02:29:35.873+03	
7c9cef6e-314c-5197-a4e9-d465a8b52437	2021-05-23 02:57:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:57:56.854+03	2021-05-23 02:57:56.875+03	
4cc0c11d-611f-48bd-8216-e222214d2f39	2021-05-23 02:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:29:55.853+03	2021-05-23 02:29:55.86+03	
0c76b4e0-b5a7-3e5b-e7f7-aefa31f752c1	2021-05-23 02:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:30:05.853+03	2021-05-23 02:30:05.86+03	
ae640eee-a64b-20cb-9ded-08edaed6fba0	2021-05-23 02:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:58:17.853+03	2021-05-23 02:58:17.86+03	
d9f256bb-36dc-1e43-712e-0736067e454c	2021-05-23 02:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:30:27.852+03	2021-05-23 02:30:27.873+03	
b610cae6-caf3-d272-ae8b-31f430608bb0	2021-05-23 02:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:30:47.853+03	2021-05-23 02:30:47.861+03	
78da9292-b8c6-9072-0b27-17a563449511	2021-05-23 02:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:58:37.853+03	2021-05-23 02:58:37.859+03	
67c2f758-7401-8723-1964-539b093b9a54	2021-05-23 02:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:31:07.853+03	2021-05-23 02:31:07.859+03	
c9cdba98-6deb-bf09-eceb-400aa25d7c7f	2021-05-23 02:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:31:27.853+03	2021-05-23 02:31:27.859+03	
7236fe1a-d202-747a-0736-6d5d221ebb7f	2021-05-23 02:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:58:58.852+03	2021-05-23 02:58:58.862+03	
58ffaa0d-871b-80f5-d800-9887e59f4232	2021-05-23 02:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:31:47.853+03	2021-05-23 02:31:47.863+03	
60077509-905a-5bd8-c8b1-db12fcfa4aed	2021-05-23 02:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:32:07.853+03	2021-05-23 02:32:07.859+03	
831a7c4e-3aad-3623-e017-5b2e34571ca2	2021-05-23 02:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:59:18.852+03	2021-05-23 02:59:18.865+03	
356ace66-4300-9fac-3072-eef7739ebc25	2021-05-23 02:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:32:27.853+03	2021-05-23 02:32:27.859+03	
c6295118-1b5e-ce25-a816-801df8e8e4b4	2021-05-23 02:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:32:47.853+03	2021-05-23 02:32:47.859+03	
fe3fe7ef-6862-c42f-29ed-ae326cfaceb0	2021-05-23 02:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:59:39.853+03	2021-05-23 02:59:39.864+03	
6c64e24e-4c1b-a90e-371a-dac5da3572e2	2021-05-23 02:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:33:07.853+03	2021-05-23 02:33:07.861+03	
bf7e58f3-c1c0-2485-534a-002d97eb534d	2021-05-23 02:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:33:27.853+03	2021-05-23 02:33:27.871+03	
112b990b-8a89-10f6-a93b-c17879429b8f	2021-05-23 02:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:59:59.853+03	2021-05-23 02:59:59.863+03	
fdad5b5f-e207-4a03-6b37-1b086404b40f	2021-05-23 02:33:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:33:48.853+03	2021-05-23 02:33:48.86+03	
e49d59be-4712-99f2-d6e4-b25269cc4da0	2021-05-23 02:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:34:08.853+03	2021-05-23 02:34:08.865+03	
0fdfd22e-1665-1b81-ec49-1275907e4958	2021-05-23 03:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:00:09.853+03	2021-05-23 03:00:09.863+03	
26148971-9d6d-8903-352a-4c1b9825436e	2021-05-23 02:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:34:29.853+03	2021-05-23 02:34:29.864+03	
e9016298-9948-4578-960b-bb19d77bb62c	2021-05-23 02:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:34:50.853+03	2021-05-23 02:34:50.861+03	
b542d53f-09ab-c086-c2af-7ab32ba1660e	2021-05-23 03:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:00:29.853+03	2021-05-23 03:00:30.173+03	
47663513-f416-0e0b-edba-ac7add97b1a7	2021-05-23 02:35:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:35:11.854+03	2021-05-23 02:35:11.866+03	
f7d732de-98f4-9e66-2bef-5f123baf467b	2021-05-23 03:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:00:49.853+03	2021-05-23 03:00:49.862+03	
bceb4dae-1143-261b-b8af-609c7d499fb2	2021-05-23 03:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:01:10.853+03	2021-05-23 03:01:10.87+03	
673655e2-afa4-255b-bd7c-4ec36773fb0f	2021-05-23 03:01:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:01:31.854+03	2021-05-23 03:01:31.86+03	
f01eda0e-5d0e-3d42-cde1-2f2a45b82351	2021-05-23 03:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:01:52.852+03	2021-05-23 03:01:52.859+03	
5b663503-4142-bcfa-026f-a7fea6d45547	2021-05-23 22:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:46:47.852+03	2021-05-23 22:46:47.859+03	
ad64e79c-3380-6d78-3564-95d6ca7c56cf	2021-05-23 02:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:22:18.853+03	2021-05-23 02:22:18.863+03	
21a6bd85-9fbf-6384-3a06-d53907c10769	2021-05-23 03:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 03:00:00.853+03	2021-05-23 03:00:00.88+03	ERROR
06c48eb0-0470-f268-375c-d0faf9085c71	2021-05-23 02:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:22:38.853+03	2021-05-23 02:22:38.86+03	
4f642c8b-4eae-c13e-3eea-192ac4365d72	2021-05-23 02:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:22:58.853+03	2021-05-23 02:22:58.861+03	
64c08ba2-a3de-8c43-0ac8-3ad2168c3f14	2021-05-23 03:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:00:19.853+03	2021-05-23 03:00:19.864+03	
c5bc5c3f-eb0e-2ff2-072a-b34e362e5c2d	2021-05-23 02:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:23:18.853+03	2021-05-23 02:23:18.859+03	
0feeda94-52bf-8cae-a633-5b57254f2a9b	2021-05-23 02:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:23:39.852+03	2021-05-23 02:23:39.859+03	
591738e0-c3b1-8646-3a1d-70d43dcfbc03	2021-05-23 03:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:00:39.853+03	2021-05-23 03:00:39.859+03	
13ccfca8-08ea-1f50-e7a7-ab8a834a961f	2021-05-23 02:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:23:59.853+03	2021-05-23 02:23:59.863+03	
4a77e378-8d07-a27d-829c-84b1699e9238	2021-05-23 02:24:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:24:19.853+03	2021-05-23 02:24:19.861+03	
b2145d3f-148b-7054-d227-a1d550b5ac7e	2021-05-23 03:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:00:59.853+03	2021-05-23 03:00:59.865+03	
d7ce9fcd-f345-8e7f-da57-1725b00575eb	2021-05-23 02:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:24:40.853+03	2021-05-23 02:24:40.86+03	
22465492-28de-6567-467f-31eb0b6a1664	2021-05-23 02:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:25:00.853+03	2021-05-23 02:25:00.86+03	
fdaab11e-c307-1dc7-0229-7e8ef1886fc6	2021-05-23 03:01:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:01:21.852+03	2021-05-23 03:01:22.092+03	
340766ac-c8ab-d506-4d59-535a942da7e4	2021-05-23 02:25:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:25:21.854+03	2021-05-23 02:25:21.86+03	
2aba4262-6400-c528-2086-b0d509fdcf71	2021-05-23 02:25:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:25:41.854+03	2021-05-23 02:25:41.861+03	
8f74a4fa-0303-73a3-c77c-5ba939381092	2021-05-23 03:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:01:42.852+03	2021-05-23 03:01:42.859+03	
01ae6b25-f7ff-2a76-e231-c625f7ff0a17	2021-05-23 02:26:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:26:02.853+03	2021-05-23 02:26:02.859+03	
f9dcb7c0-1a5f-f3e2-f934-7f703be74f88	2021-05-23 02:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:26:22.853+03	2021-05-23 02:26:22.86+03	
986ac402-faf1-a5c0-078d-aafe178ae4ea	2021-05-23 03:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:02:02.852+03	2021-05-23 03:02:02.859+03	
7e101d7e-cddd-3ed0-ab7a-d02560ed6725	2021-05-23 02:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:26:42.853+03	2021-05-23 02:26:42.86+03	
f8fa9991-f98f-d902-2091-20092a2f43c5	2021-05-23 02:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:27:02.853+03	2021-05-23 02:27:02.861+03	
079b054a-c32d-523f-b4ed-04b0e1699012	2021-05-23 03:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:02:12.852+03	2021-05-23 03:02:12.861+03	
6b9ac794-2f71-d7f7-d29f-688756caef1c	2021-05-23 02:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:27:22.853+03	2021-05-23 02:27:22.859+03	
82089b64-931f-54f5-c5ee-18696be2f206	2021-05-23 02:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:27:43.853+03	2021-05-23 02:27:43.859+03	
49cd8c65-13f7-f3ea-dd70-ef1618a91973	2021-05-23 03:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:02:22.852+03	2021-05-23 03:02:22.859+03	
9cbb9b42-0b1c-a6de-a074-e58735c45168	2021-05-23 02:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:28:03.853+03	2021-05-23 02:28:03.859+03	
bafe8a17-79bf-7a90-fd11-42dec949d844	2021-05-23 02:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:28:23.853+03	2021-05-23 02:28:23.859+03	
a247ec02-781e-d526-30d6-613e7bf20c10	2021-05-23 03:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:02:32.853+03	2021-05-23 03:02:32.859+03	
420d5ca5-ab9f-c529-8d75-047154efb538	2021-05-23 02:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:28:44.852+03	2021-05-23 02:28:44.868+03	
d2dc2c10-1aef-651c-c9a3-857014ebb016	2021-05-23 02:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:29:04.853+03	2021-05-23 02:29:04.862+03	
f17fa960-bea2-52f8-f53a-efa8c8966352	2021-05-23 03:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:02:42.853+03	2021-05-23 03:02:42.859+03	
051e837a-b519-6347-49b2-bab28a4145be	2021-05-23 02:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:29:24.853+03	2021-05-23 02:29:24.859+03	
49ea2077-3025-1685-904b-45473226d275	2021-05-23 02:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:29:45.853+03	2021-05-23 02:29:45.863+03	
460510ca-b3ff-0647-e5e5-e9b11ad190ed	2021-05-23 03:02:53.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:02:53.853+03	2021-05-23 03:02:53.866+03	
da73fef2-0fb6-123e-2b3d-fab8c74d9495	2021-05-23 02:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 02:30:00.853+03	2021-05-23 02:30:00.865+03	ERROR
c2a64ec1-2ef9-e7ff-e3d1-ffb52a883c3b	2021-05-23 02:30:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:30:16.854+03	2021-05-23 02:30:16.866+03	
97743ce0-ba63-faad-b6fc-ba23636e5aa8	2021-05-23 03:03:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:03:03.853+03	2021-05-23 03:03:03.86+03	
5e056314-880b-ffc1-1f34-8b3fa9fb9c9b	2021-05-23 02:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:30:37.853+03	2021-05-23 02:30:37.867+03	
b282fcaa-8be1-ca43-6704-b5f7d9b33c24	2021-05-23 02:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:30:57.853+03	2021-05-23 02:30:57.864+03	
2eace7ed-0bbf-39d7-feb5-3d0c62181f2b	2021-05-23 03:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:03:13.853+03	2021-05-23 03:03:13.861+03	
6635db95-9fe3-460d-7877-f989c982b6bc	2021-05-23 02:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:31:17.853+03	2021-05-23 02:31:17.861+03	
b59cf80d-2b27-ec11-43a5-a61c43e34e35	2021-05-23 02:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:31:37.853+03	2021-05-23 02:31:37.859+03	
e84ae95f-b840-252d-a301-a1b51740fb8c	2021-05-23 03:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:03:23.853+03	2021-05-23 03:03:23.86+03	
049ec267-5b0e-5bd9-a51d-cfb2a36079f4	2021-05-23 02:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:31:57.853+03	2021-05-23 02:31:57.862+03	
53086a1b-fbfc-4d8f-b8cb-b2622650c588	2021-05-23 02:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:32:17.853+03	2021-05-23 02:32:17.873+03	
6619e034-9c92-a163-16f4-0d192c7d17a0	2021-05-23 03:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:03:33.853+03	2021-05-23 03:03:33.86+03	
837878c6-f681-bc86-5dde-c1e15f4a8f79	2021-05-23 02:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:32:37.853+03	2021-05-23 02:32:37.86+03	
9f91ddfa-8e36-50eb-e0dc-4e6648f11b8e	2021-05-23 02:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:32:57.853+03	2021-05-23 02:32:57.86+03	
29819f2d-1143-c570-e8c8-78cca083440f	2021-05-23 03:03:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:03:43.853+03	2021-05-23 03:03:43.862+03	
5d689328-0924-0cb4-992c-8ca7b01adc98	2021-05-23 02:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:33:17.853+03	2021-05-23 02:33:17.864+03	
a5d0dbe0-e7ba-951e-77f9-0d3c1dfb465e	2021-05-23 02:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:33:37.853+03	2021-05-23 02:33:37.86+03	
30fec5dc-0e6f-35a4-dad7-966ad564b46b	2021-05-23 03:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:03:54.852+03	2021-05-23 03:03:54.859+03	
b8c65ff0-f678-60af-f36c-c968c1f57987	2021-05-23 02:33:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:33:58.853+03	2021-05-23 02:33:58.863+03	
bb4d4ae5-4a4e-e91c-d18a-9b527c17e27c	2021-05-23 02:34:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:34:19.853+03	2021-05-23 02:34:19.866+03	
90bdb3cc-055d-f4dc-6429-f64ddd21dd49	2021-05-23 03:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:04:04.852+03	2021-05-23 03:04:04.858+03	
5659858f-bd50-9bad-5255-ab60bd78673d	2021-05-23 02:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:34:40.852+03	2021-05-23 02:34:40.859+03	
e46c0b9a-f636-2022-dcf8-8d5a238bf01c	2021-05-23 02:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:35:00.853+03	2021-05-23 02:35:00.862+03	
e7ed04bf-ed85-559f-1f33-fd220a0e6943	2021-05-23 03:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:04:14.853+03	2021-05-23 03:04:14.86+03	
ef2bad98-c179-ca00-9d41-3c41ec6753cd	2021-05-23 02:35:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 02:35:22.853+03	2021-05-23 02:35:22.878+03	
69da361f-3864-950f-6fb3-e015e8fda8e8	2021-05-23 03:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:04:24.853+03	2021-05-23 03:04:24.859+03	
d0cab823-3148-a24c-cb04-125aee7b1790	2021-05-23 03:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:04:34.853+03	2021-05-23 03:04:34.861+03	
a42bbbcb-f335-cbb7-a50a-345af138d895	2021-05-23 03:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:04:44.853+03	2021-05-23 03:04:44.871+03	
e250de51-d8fd-4551-d9e5-984a8fd18538	2021-05-23 03:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:04:54.853+03	2021-05-23 03:04:54.861+03	
5621fe27-05f8-5ce7-439d-62a719a29ad1	2021-05-23 03:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:05:04.853+03	2021-05-23 03:05:04.86+03	
8e49ee19-816a-9de8-bee1-613988519526	2021-05-23 22:46:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:46:57.852+03	2021-05-23 22:46:57.858+03	
bf0083d7-eccc-cb42-a495-ec14b355d732	2021-05-23 03:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:05:25.852+03	2021-05-23 03:05:25.865+03	
b03b24e4-38b4-4426-686b-803a2cdb59d8	2021-05-23 03:05:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:05:46.852+03	2021-05-23 03:05:46.869+03	
6d9be3ad-8b0e-4302-9eb0-06e765ffd9c2	2021-05-23 22:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:47:17.853+03	2021-05-23 22:47:17.859+03	
203ca757-49e8-f8b6-64a6-57f10e1a913d	2021-05-23 03:06:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:06:06.852+03	2021-05-23 03:06:06.861+03	
e7a4035a-27ca-24e7-cf8d-199dc7aa9350	2021-05-23 03:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:06:26.852+03	2021-05-23 03:06:26.913+03	
28995b70-30d1-b080-2018-ce43fe85add4	2021-05-23 22:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:47:39.852+03	2021-05-23 22:47:39.859+03	
96fa870e-8526-6981-1d69-bc95b3df3e5f	2021-05-23 03:06:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:06:46.853+03	2021-05-23 03:06:46.862+03	
684ffa32-2d00-a46d-4926-9f599d7c35f1	2021-05-23 03:07:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:07:07.852+03	2021-05-23 03:07:07.859+03	
74206a5d-baa6-9360-2871-8e58cc719a80	2021-05-23 22:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:47:59.852+03	2021-05-23 22:47:59.858+03	
c480d420-6f42-3014-418c-08b0bd223def	2021-05-23 03:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:07:28.852+03	2021-05-23 03:07:28.86+03	
808f2c7f-bd51-23da-b047-795d14433b8c	2021-05-23 03:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:07:48.852+03	2021-05-23 03:07:48.859+03	
734130a7-5d95-7dc9-5c6d-69b653a5e668	2021-05-23 22:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:48:20.852+03	2021-05-23 22:48:20.859+03	
deab7c32-b436-05fa-f1f7-14dbfb05c656	2021-05-23 03:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:08:08.853+03	2021-05-23 03:08:08.86+03	
c99d4d91-68cc-a78b-b312-66070ab06434	2021-05-23 03:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:08:28.853+03	2021-05-23 03:08:28.859+03	
f3de1649-5759-61ef-88db-a93de5a864c7	2021-05-23 22:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:48:40.852+03	2021-05-23 22:48:40.859+03	
4424fb26-c1ce-582f-efb0-ac5926e4ce39	2021-05-23 03:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:08:48.853+03	2021-05-23 03:08:48.864+03	
c34c23af-161e-9341-3da3-1bca01e5579a	2021-05-23 03:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:09:08.853+03	2021-05-23 03:09:08.86+03	
2efd46d3-ca80-8a2b-0913-5f9e5cb11d86	2021-05-23 22:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:49:00.852+03	2021-05-23 22:49:00.859+03	
51319f33-732c-d72a-1bf7-a1b972e63fc9	2021-05-23 03:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:09:29.852+03	2021-05-23 03:09:29.867+03	
b7c1e681-78eb-0121-a2b3-af888b605251	2021-05-23 03:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:09:49.853+03	2021-05-23 03:09:49.861+03	
b8f6079e-7338-ca8c-2ed5-3f4d24282467	2021-05-23 22:49:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:49:20.853+03	2021-05-23 22:49:20.859+03	
be8681a8-610c-8bef-5f04-d5acbfe77bdd	2021-05-23 03:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 03:10:00.853+03	2021-05-23 03:10:00.859+03	ERROR
f556a86d-4661-c89e-ca2a-c3a61dd7f901	2021-05-23 03:10:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:10:20.853+03	2021-05-23 03:10:20.86+03	
8a0a14d7-ed61-6c24-bfee-11940f3c4f3f	2021-05-23 22:49:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:49:41.853+03	2021-05-23 22:49:41.859+03	
0dc5e98d-d96c-cec8-c44e-4ce6490df1c2	2021-05-23 03:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:10:40.853+03	2021-05-23 03:10:40.864+03	
bd533fb2-44ea-4d6c-d017-3a14a8ac19b3	2021-05-23 03:11:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:11:00.853+03	2021-05-23 03:11:00.86+03	
56232074-8a77-e1e5-bfe2-1da23fc8607d	2021-05-23 22:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 22:50:00.852+03	2021-05-23 22:50:00.857+03	ERROR
f1cd27a8-4072-04e3-268d-3891f9e52a48	2021-05-23 03:11:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:11:21.853+03	2021-05-23 03:11:21.877+03	
abfbd3f9-4a3a-2e07-f920-f30545a5b3ac	2021-05-23 03:11:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:11:41.854+03	2021-05-23 03:11:41.861+03	
a7e9879d-e0a7-5266-dea8-1f4ad00b5baf	2021-05-23 22:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:50:12.853+03	2021-05-23 22:50:12.86+03	
20f0040c-32ab-612c-64f3-e76d1f0b1796	2021-05-23 03:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:12:02.853+03	2021-05-23 03:12:02.873+03	
ce2aff4f-5915-3419-bb66-b8bf546214c0	2021-05-23 03:12:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:12:22.853+03	2021-05-23 03:12:22.861+03	
d409ab03-dac5-c067-83ed-1b9ca7c14ffa	2021-05-23 22:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:50:33.853+03	2021-05-23 22:50:33.86+03	
b27a5111-3808-5f57-03a4-07ed3cc5ab85	2021-05-23 03:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:12:44.852+03	2021-05-23 03:12:44.858+03	
5e6e3283-2c92-8bfa-b41a-2a4b7e714515	2021-05-23 03:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:13:04.853+03	2021-05-23 03:13:04.862+03	
56592b7e-5de9-7208-4a83-d562d7f16e53	2021-05-23 22:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:50:54.852+03	2021-05-23 22:50:54.859+03	
cb226676-69be-8ff9-ea8b-b849538c5079	2021-05-23 03:13:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:13:24.853+03	2021-05-23 03:13:24.861+03	
d7391abf-6121-4a38-00fd-2276ed313ce8	2021-05-23 03:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:13:45.853+03	2021-05-23 03:13:45.86+03	
198663a7-effb-28dd-35ac-5d257bf844b0	2021-05-23 22:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:51:14.852+03	2021-05-23 22:51:14.86+03	
7cad254a-7058-33c8-b57f-1b50ad0369f7	2021-05-23 03:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:14:05.853+03	2021-05-23 03:14:05.871+03	
b6fd122b-cbac-8f5c-1d27-9ec4b0f11839	2021-05-23 03:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:14:27.853+03	2021-05-23 03:14:27.859+03	
f9c622d2-3eae-f009-0c8f-a9e3c903d4b6	2021-05-23 22:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:51:35.853+03	2021-05-23 22:51:35.859+03	
c82f3f45-cf3a-7605-8b8a-7ef6380a8471	2021-05-23 03:14:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:14:48.853+03	2021-05-23 03:14:48.859+03	
c608d708-f033-a455-8cbd-cd880d0475f5	2021-05-23 03:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:15:08.853+03	2021-05-23 03:15:08.871+03	
46300b48-1196-78bc-5b09-cee3b680fd3a	2021-05-23 22:51:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:51:56.852+03	2021-05-23 22:51:56.86+03	
63691694-0b4b-48b7-41ff-40538039ebeb	2021-05-23 03:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:15:29.852+03	2021-05-23 03:15:29.867+03	
f300d2a6-2b16-1aaa-5f90-f4b3954ca346	2021-05-23 03:15:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:15:49.853+03	2021-05-23 03:15:49.864+03	
f8867998-a02f-9d1f-756a-a4a144031a8b	2021-05-23 22:52:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:52:16.852+03	2021-05-23 22:52:16.859+03	
ca15cddf-d8f6-b2f7-ed42-fd41489e6021	2021-05-23 03:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:16:10.852+03	2021-05-23 03:16:10.859+03	
a52c8344-878d-6784-965b-671039e759de	2021-05-23 22:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:52:36.852+03	2021-05-23 22:52:36.859+03	
f16ec2b0-6537-1e9d-b1f0-7bc95b135be7	2021-05-23 22:52:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:52:56.852+03	2021-05-23 22:52:56.858+03	
276baa6e-9777-805d-2903-3bd2f3a97834	2021-05-23 22:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:53:16.853+03	2021-05-23 22:53:16.859+03	
7af4b0b0-8a32-68e4-cbd9-30cacb62650e	2021-05-23 22:53:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:53:37.852+03	2021-05-23 22:53:37.858+03	
f0a4dfba-e8a4-21e2-c12e-c4ef7060a0b0	2021-05-23 22:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:53:57.852+03	2021-05-23 22:53:57.86+03	
00669721-2ba4-f2aa-5955-ba8a69e402d7	2021-05-23 22:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:54:17.852+03	2021-05-23 22:54:17.859+03	
24559a2e-54a1-2aec-1672-9887866748ab	2021-05-23 22:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:54:38.853+03	2021-05-23 22:54:38.86+03	
238a7852-5f9c-9815-2e02-c96a3e4d2c24	2021-05-23 22:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:55:00.852+03	2021-05-23 22:55:00.905+03	
1aee6044-d078-5084-d6bf-61a4cf3e84c9	2021-05-23 22:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:55:20.852+03	2021-05-23 22:55:20.859+03	
5c2c0eb4-948a-2bc9-93f8-de6c0427caea	2021-05-23 22:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:55:40.852+03	2021-05-23 22:55:40.86+03	
c37cabde-1fb9-1bba-8360-c1788f683e52	2021-05-23 22:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:56:00.853+03	2021-05-23 22:56:00.86+03	
67cc803c-a99d-f909-4da3-71fb5b8ffaad	2021-05-23 22:56:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:56:21.853+03	2021-05-23 22:56:21.859+03	
5a488fdf-4d79-09db-5724-a95d986c7fbc	2021-05-23 22:56:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:56:41.853+03	2021-05-23 22:56:41.862+03	
2214508a-b8ba-8aa4-a60b-20a6b4fec9fb	2021-05-23 03:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:05:14.853+03	2021-05-23 03:05:14.86+03	
2be14b0b-0f00-1a71-73ef-911dfbd6d90a	2021-05-23 03:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:05:35.853+03	2021-05-23 03:05:35.874+03	
0bac92c1-b161-5e0c-0ed8-403aaf0f9992	2021-05-23 03:05:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:05:56.852+03	2021-05-23 03:05:56.866+03	
e7056f90-2949-de89-5b0e-cb093da805a9	2021-05-23 03:06:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:06:16.852+03	2021-05-23 03:06:16.861+03	
572fbf05-480c-3adf-8b44-fa8e4690aea0	2021-05-23 03:06:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:06:36.853+03	2021-05-23 03:06:36.871+03	
51f0bde6-4d2c-2cd3-8ea7-d0f5ad985597	2021-05-23 03:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:06:56.853+03	2021-05-23 03:06:56.863+03	
3ba087e6-2fa2-7f69-ca72-2a4d240fdf5d	2021-05-23 03:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:07:17.853+03	2021-05-23 03:07:17.86+03	
5bb4f394-29cb-98b1-2ffa-d37ed9b558dd	2021-05-23 03:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:07:38.852+03	2021-05-23 03:07:38.858+03	
61cf7dac-00ad-1191-b948-d85002395495	2021-05-23 03:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:07:58.853+03	2021-05-23 03:07:58.867+03	
aff79a76-b939-5207-a174-b098d6e80aab	2021-05-23 03:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:08:18.853+03	2021-05-23 03:08:18.863+03	
ad901feb-94d5-2801-a532-ee47ac79c146	2021-05-23 03:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:08:38.853+03	2021-05-23 03:08:38.86+03	
19ceca73-a59c-afc2-4753-951b15947139	2021-05-23 03:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:08:58.853+03	2021-05-23 03:08:58.86+03	
baed508d-8395-0ab1-1aad-0ffc94c3e5fd	2021-05-23 03:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:09:19.852+03	2021-05-23 03:09:19.859+03	
a911b601-57d5-6bf3-dda0-544d7c46f0c9	2021-05-23 03:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:09:39.853+03	2021-05-23 03:09:39.871+03	
28f88aee-f0db-6fe4-2d5c-2493f19862dc	2021-05-23 03:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:09:59.853+03	2021-05-23 03:09:59.86+03	
dfb89270-52f5-a7b4-3c8e-d2a3936ed03e	2021-05-23 03:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:10:10.852+03	2021-05-23 03:10:10.86+03	
69b0fdee-5025-1657-6bd2-cefbfcdc0f57	2021-05-23 03:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:10:30.853+03	2021-05-23 03:10:30.86+03	
40dc5210-33df-9149-869e-b1eadaa924bc	2021-05-23 03:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:10:50.853+03	2021-05-23 03:10:50.859+03	
6026829e-1444-68cd-7b19-0d1921d14fd7	2021-05-23 03:11:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:11:11.852+03	2021-05-23 03:11:11.86+03	
cea923d2-05f0-51bb-754f-02169f2d66f4	2021-05-23 03:11:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:11:31.854+03	2021-05-23 03:11:31.861+03	
ad47c7f6-06fa-d86f-16f9-5c8c2f6b51c3	2021-05-23 03:11:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:11:52.852+03	2021-05-23 03:11:52.859+03	
edde0c95-b0f9-3dfc-60fd-62c67deb2a38	2021-05-23 03:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:12:12.853+03	2021-05-23 03:12:12.859+03	
8b5434c6-e6f6-2466-3923-ff9dc7dd4fe2	2021-05-23 03:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:12:33.853+03	2021-05-23 03:12:33.874+03	
b64a780e-07e8-4265-5c20-98de31c9af03	2021-05-23 03:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:12:54.853+03	2021-05-23 03:12:54.86+03	
231565d4-dbab-0c7a-6a10-564c0993ca2b	2021-05-23 03:13:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:13:14.853+03	2021-05-23 03:13:14.859+03	
a354e2e9-8597-2f73-96bc-13384fd70e77	2021-05-23 03:13:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:13:34.853+03	2021-05-23 03:13:34.859+03	
85072a4c-0831-72d8-d369-b7742f22f799	2021-05-23 03:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:13:55.853+03	2021-05-23 03:13:55.865+03	
42c7db8f-cd7f-e293-b6f4-3a3e7371a677	2021-05-23 03:14:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:14:16.853+03	2021-05-23 03:14:16.859+03	
06ac580a-7004-3c13-710b-7b4f05908fee	2021-05-23 03:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:14:38.853+03	2021-05-23 03:14:38.86+03	
4836ca2e-8c59-f9a5-c4ba-5ec8abc862b9	2021-05-23 03:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:14:58.853+03	2021-05-23 03:14:58.86+03	
5912bfad-7596-995f-1257-4ac09cc2b01c	2021-05-23 03:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:15:18.853+03	2021-05-23 03:15:18.861+03	
37fd8230-2d0a-4e67-728a-f5a976f27476	2021-05-23 03:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:15:39.853+03	2021-05-23 03:15:39.861+03	
ac24aee6-2156-1afb-6345-6b97fa69a49f	2021-05-23 03:15:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:15:59.853+03	2021-05-23 03:15:59.873+03	
23be7c42-cae0-633d-d875-9085237ae77a	2021-05-23 03:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:16:20.852+03	2021-05-23 03:16:20.859+03	
572d512e-0920-449c-4bc4-10c2c6ab0994	2021-05-23 03:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:16:30.853+03	2021-05-23 03:16:30.859+03	
6ced4cfa-52e1-7ba5-5dd8-31d37c52a3f1	2021-05-23 03:16:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:16:41.852+03	2021-05-23 03:16:41.859+03	
576def00-5753-613a-2920-c67f946c0149	2021-05-23 03:16:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:16:51.852+03	2021-05-23 03:16:51.859+03	
bee2b6b4-9cce-da79-6669-a5b17e4f05e3	2021-05-23 03:17:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:17:01.854+03	2021-05-23 03:17:01.861+03	
c78bcba9-4047-e45d-33b3-c54244c00236	2021-05-23 03:17:11.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:17:11.854+03	2021-05-23 03:17:11.863+03	
6cdcf945-d62a-fe5b-e652-a074337ae695	2021-05-23 03:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:17:22.853+03	2021-05-23 03:17:22.861+03	
2326ed4a-259a-f4df-d566-23d37a05ae39	2021-05-23 03:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:17:33.853+03	2021-05-23 03:17:33.868+03	
57c585ce-5999-53f8-aefa-2fe0fe5622e0	2021-05-23 03:17:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:17:44.852+03	2021-05-23 03:17:44.859+03	
6eb7a69b-021e-f8b8-c373-19b29f380aeb	2021-05-23 03:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:17:54.852+03	2021-05-23 03:17:54.86+03	
d92db297-6d58-6190-3e33-94f9305f8713	2021-05-23 03:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:18:04.852+03	2021-05-23 03:18:04.859+03	
1fd691f0-59b0-4bfb-4650-98ac42dd0005	2021-05-23 03:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:18:14.852+03	2021-05-23 03:18:14.859+03	
1bd2b15c-99e8-cfbc-2ded-f24fabe2dddd	2021-05-23 03:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:18:24.853+03	2021-05-23 03:18:24.862+03	
125d34f2-e9cd-0a6e-6f38-ce9d264687f4	2021-05-23 03:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:18:34.853+03	2021-05-23 03:18:34.861+03	
0e0658cd-03fb-2d92-2171-673c6c21e439	2021-05-23 03:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:18:44.853+03	2021-05-23 03:18:44.86+03	
82e68f45-45ae-a0da-8821-13d720933607	2021-05-23 03:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:18:54.853+03	2021-05-23 03:18:54.86+03	
8e4c4be0-d01b-b1a1-a105-80fbd5495ecf	2021-05-23 03:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:19:05.853+03	2021-05-23 03:19:05.86+03	
af88a42a-d832-d96f-7559-65ae7a95a251	2021-05-23 03:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:19:15.853+03	2021-05-23 03:19:15.86+03	
bfa0b7e3-adf3-dd7e-ba11-840389b55a50	2021-05-23 03:19:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:19:26.852+03	2021-05-23 03:19:26.859+03	
737255f0-b4fb-d375-e0e7-70602c030a3c	2021-05-23 03:19:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:19:36.852+03	2021-05-23 03:19:36.876+03	
15dd1dfb-f743-8177-7399-a38524f23d3e	2021-05-23 03:19:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:19:46.852+03	2021-05-23 03:19:46.867+03	
ad7be282-121c-4703-775d-3a322e96715a	2021-05-23 03:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:19:56.853+03	2021-05-23 03:19:56.859+03	
63cb7678-f9f5-dc0b-a969-aa387cf5183e	2021-05-23 03:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 03:20:00.852+03	2021-05-23 03:20:00.859+03	ERROR
d7592a8a-4deb-57a5-9c42-9e59d3c849cc	2021-05-23 03:20:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:20:07.853+03	2021-05-23 03:20:07.859+03	
9dfedde7-f215-d875-cb17-ab6b8aa05b23	2021-05-23 03:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:20:17.853+03	2021-05-23 03:20:17.862+03	
46d0ad6c-7349-d6f0-ab65-fdd46f1d7caf	2021-05-23 03:20:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:20:27.853+03	2021-05-23 03:20:27.861+03	
c2290a8b-d8ee-6801-e101-6d4ee7506aaf	2021-05-23 03:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:20:37.853+03	2021-05-23 03:20:37.859+03	
57a89628-d2d4-9ed7-6d07-f80a5022ba56	2021-05-23 03:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:20:47.853+03	2021-05-23 03:20:47.859+03	
9f1648e7-7eaf-f6fd-77b6-04b0684cd4b5	2021-05-23 03:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:20:57.853+03	2021-05-23 03:20:57.86+03	
ea1c7d10-a026-0624-ad12-feddb5f3fa78	2021-05-23 03:21:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:21:07.853+03	2021-05-23 03:21:07.861+03	
b7e9a86c-1200-bfe3-eb26-1b2930d06c8b	2021-05-23 03:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:21:18.852+03	2021-05-23 03:21:18.861+03	
41d38d8d-7400-146b-21c5-6f7e7c1ad241	2021-05-23 03:21:38.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:21:38.859+03	2021-05-23 03:21:38.866+03	
ecb06ec8-3753-7aa4-e58e-b98eb3b62734	2021-05-23 03:21:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:21:59.853+03	2021-05-23 03:21:59.86+03	
d7d5e64f-5078-ba7b-17d0-badf93e1b09c	2021-05-23 03:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:22:20.853+03	2021-05-23 03:22:20.859+03	
e441ac22-ad2f-8826-ba42-4d6a00c59268	2021-05-23 03:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:22:40.853+03	2021-05-23 03:22:40.862+03	
5223929b-0107-c423-2825-27b2b81461ed	2021-05-23 03:23:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:23:01.852+03	2021-05-23 03:23:01.859+03	
04b8a295-e816-6e6d-02f7-c32b5d93ef0e	2021-05-23 03:23:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:23:21.853+03	2021-05-23 03:23:21.859+03	
a08d8743-376f-7503-9ddf-8b87108e3e27	2021-05-23 03:23:41.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:23:41.853+03	2021-05-23 03:23:41.865+03	
01c66e78-9e3d-8d2a-4ae5-e140794b114a	2021-05-23 03:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:24:02.853+03	2021-05-23 03:24:02.86+03	
66f021c6-9397-427b-3a84-43e79ed00bc7	2021-05-23 03:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:24:23.852+03	2021-05-23 03:24:23.859+03	
485891a8-a43d-3dbe-9593-1c744ea7106b	2021-05-23 03:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:24:43.853+03	2021-05-23 03:24:43.867+03	
6df4fa53-b428-19da-f41e-5877f67a09c8	2021-05-23 03:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:25:03.853+03	2021-05-23 03:25:03.863+03	
7110641a-9088-6d00-4267-52040615b678	2021-05-23 03:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:25:23.853+03	2021-05-23 03:25:23.86+03	
5587a07c-e26b-4a80-302b-17a5d044b519	2021-05-23 03:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:25:44.853+03	2021-05-23 03:25:44.861+03	
b53b55f9-d6c1-35b3-c609-419052dd2d46	2021-05-23 03:26:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:26:04.853+03	2021-05-23 03:26:04.859+03	
7fd7ec81-eb36-141c-8a20-34b2a2e069b9	2021-05-23 03:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:26:25.853+03	2021-05-23 03:26:25.87+03	
dd7863eb-91cf-8c15-af22-8d10ad002980	2021-05-23 03:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:26:46.853+03	2021-05-23 03:26:46.86+03	
63b694b3-cf42-4ea7-8dad-990634f58450	2021-05-23 03:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:27:07.853+03	2021-05-23 03:27:07.859+03	
35464066-e939-3466-be37-bcc30317c141	2021-05-23 03:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:27:27.853+03	2021-05-23 03:27:27.86+03	
e9e1827a-fef4-cb31-7932-3218faa38093	2021-05-23 03:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:27:48.852+03	2021-05-23 03:27:48.858+03	
3878ad68-c05a-2074-6bfd-5c5fc93544c0	2021-05-23 03:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:28:08.852+03	2021-05-23 03:28:08.859+03	
896b7aa0-27e1-dcd0-e36d-95597840e845	2021-05-23 03:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:28:28.853+03	2021-05-23 03:28:28.86+03	
cf373f63-8ffd-7c6e-48a1-11b3d6e57b05	2021-05-23 03:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:28:48.853+03	2021-05-23 03:28:48.86+03	
26a807c6-c838-5f38-0169-9fbf648eb3af	2021-05-23 03:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:29:08.853+03	2021-05-23 03:29:08.863+03	
d3ee67b1-135d-95cf-9728-3956c9b0a5db	2021-05-23 03:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:29:29.853+03	2021-05-23 03:29:29.864+03	
3ff82d30-b9ed-d725-ef6d-d0a445fa8f84	2021-05-23 03:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:29:50.853+03	2021-05-23 03:29:50.859+03	
d9806d5f-70eb-c3ce-13e7-854611925406	2021-05-23 03:30:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:30:01.852+03	2021-05-23 03:30:01.859+03	
18836c55-427f-b53d-35ee-06e1d56b088b	2021-05-23 03:30:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:30:21.854+03	2021-05-23 03:30:21.86+03	
5780d7e6-78ab-cd8a-4226-21be33bf77b6	2021-05-23 03:30:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:30:43.852+03	2021-05-23 03:30:43.869+03	
8f2758ac-9d10-8cb5-3c7d-2c8ca993e61a	2021-05-23 03:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:31:04.852+03	2021-05-23 03:31:04.863+03	
5e6f6c6b-97a0-8a4c-4de0-7afaf86cc232	2021-05-23 03:31:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:31:24.853+03	2021-05-23 03:31:24.859+03	
fc9579fe-3338-331c-d32b-3c12e163fb4c	2021-05-23 03:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:31:45.853+03	2021-05-23 03:31:45.859+03	
40cce739-3958-cf5c-7833-f0457c0da336	2021-05-23 03:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:32:05.853+03	2021-05-23 03:32:05.86+03	
24ad1dc5-c429-7096-9e00-5860c0514ef4	2021-05-23 03:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:32:25.853+03	2021-05-23 03:32:25.86+03	
d55e7bc4-6669-f9a8-c297-520e271744b6	2021-05-23 03:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:32:45.853+03	2021-05-23 03:32:45.873+03	
2d5ab240-9eaf-5cef-75de-2b83ce8e81a0	2021-05-23 03:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:33:05.853+03	2021-05-23 03:33:05.859+03	
dad1d06c-4efe-a205-b573-4f941255e24c	2021-05-23 03:33:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:33:26.852+03	2021-05-23 03:33:26.859+03	
545a583c-368c-b889-0be3-94898f6f616f	2021-05-23 03:33:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:33:46.854+03	2021-05-23 03:33:46.86+03	
5f515e7c-0f08-2173-ad4c-3d98ac5bb4b8	2021-05-23 03:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:34:08.852+03	2021-05-23 03:34:08.86+03	
47104779-1084-b6c1-1b8c-3c141c595209	2021-05-23 03:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:34:29.852+03	2021-05-23 03:34:29.859+03	
f3f8d37c-22ae-8ff3-707e-a516d3945060	2021-05-23 03:34:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:34:49.852+03	2021-05-23 03:34:49.859+03	
e4205109-a8fd-c0b0-c221-1a91f31fa567	2021-05-23 03:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:35:09.853+03	2021-05-23 03:35:09.86+03	
325a2809-04d5-cdc2-f315-f4dea37ca33e	2021-05-23 03:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:35:29.853+03	2021-05-23 03:35:29.867+03	
1023c7e2-0ee2-8b31-26be-d30f41f6e5a6	2021-05-23 03:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:35:50.853+03	2021-05-23 03:35:50.861+03	
4a6446df-f57e-d241-cd03-f86665a2b806	2021-05-23 03:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:36:10.853+03	2021-05-23 03:36:10.86+03	
64378491-273e-6506-15a0-c2816f8bce59	2021-05-23 03:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:36:30.853+03	2021-05-23 03:36:30.86+03	
b0d913a5-ef9c-9121-35fb-76b739ec9cb9	2021-05-23 03:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:36:52.853+03	2021-05-23 03:36:52.859+03	
edaa44ac-4c4f-7dce-1c09-b2a9611682a5	2021-05-23 03:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:37:12.853+03	2021-05-23 03:37:12.861+03	
14395c87-6d97-d9fd-5466-5ffba2c78144	2021-05-23 03:37:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:37:32.853+03	2021-05-23 03:37:32.859+03	
cd75127a-eafa-b469-1a31-977c5939a58a	2021-05-23 03:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:37:52.853+03	2021-05-23 03:37:52.859+03	
ce86a087-c2fd-0bc3-de67-49294eec1bad	2021-05-23 03:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:38:13.853+03	2021-05-23 03:38:13.859+03	
61f0be79-12bc-e38f-3f65-2eab250f14ab	2021-05-23 03:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:38:35.853+03	2021-05-23 03:38:35.874+03	
b00558ea-23dc-2737-6d44-1b1b8bae6e91	2021-05-23 03:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:38:57.853+03	2021-05-23 03:38:57.861+03	
efa5a979-4176-b070-2a73-bb41e9a83e4a	2021-05-23 03:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:39:17.853+03	2021-05-23 03:39:17.86+03	
a033b626-82b6-7db4-ffce-99927927e0a3	2021-05-23 03:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:39:39.852+03	2021-05-23 03:39:39.859+03	
9365f44d-443e-4c8a-ad12-1e65eaaaa9ad	2021-05-23 03:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:39:59.853+03	2021-05-23 03:39:59.867+03	
e290c0f5-0ef7-19ee-2660-2b78d7287325	2021-05-23 03:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:40:10.853+03	2021-05-23 03:40:10.859+03	
caa14a80-74e8-b35c-4511-54feb71681bd	2021-05-23 03:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:40:30.853+03	2021-05-23 03:40:30.859+03	
d110f151-236b-c429-6067-006615d0955f	2021-05-23 03:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:40:50.853+03	2021-05-23 03:40:50.862+03	
5c3af0c9-01a4-f736-cf34-5fc8f5aae3ec	2021-05-23 03:41:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:41:11.852+03	2021-05-23 03:41:11.861+03	
12f8c115-8e6b-52c8-e126-c003e8cde99c	2021-05-23 03:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:41:31.852+03	2021-05-23 03:41:31.861+03	
469eea02-0df7-8f78-8df0-3e2707557f39	2021-05-23 03:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:41:52.853+03	2021-05-23 03:41:52.862+03	
b9e0d49a-8f95-3977-b975-c7381f573188	2021-05-23 03:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:42:12.853+03	2021-05-23 03:42:12.86+03	
d585faf7-e2fc-c382-c373-eb64a889d05c	2021-05-23 03:21:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:21:28.852+03	2021-05-23 03:21:28.859+03	
ebcb5b6a-f390-9da3-47b9-2ae4cda7cba6	2021-05-23 03:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:21:49.853+03	2021-05-23 03:21:49.871+03	
dea42fa8-6b16-424b-aab8-44b59587c2f3	2021-05-23 03:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:22:09.853+03	2021-05-23 03:22:09.86+03	
278b1c6e-d914-adee-d38a-94e862ef3c12	2021-05-23 03:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:22:30.853+03	2021-05-23 03:22:30.86+03	
28bdd481-5d5e-f9e1-cb56-262837cbe5ff	2021-05-23 03:22:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:22:51.852+03	2021-05-23 03:22:51.86+03	
9a8ae2ac-89bc-ede3-b6f4-1bbf11f6eda3	2021-05-23 03:23:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:23:11.852+03	2021-05-23 03:23:11.86+03	
3c4de729-33b4-414f-9464-bb9a028eada5	2021-05-23 03:23:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:23:31.853+03	2021-05-23 03:23:31.874+03	
e8c5db62-3ede-62ed-b826-ec77d1968ead	2021-05-23 03:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:23:52.852+03	2021-05-23 03:23:52.86+03	
80f05419-1e9f-682b-5964-4d2277a51c10	2021-05-23 03:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:24:13.852+03	2021-05-23 03:24:13.859+03	
823a9c54-ef2f-db26-c82f-44d9a0ab87f4	2021-05-23 03:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:24:33.852+03	2021-05-23 03:24:33.859+03	
4e7b060e-836d-3ab8-9d34-2c06a6115f21	2021-05-23 03:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:24:53.853+03	2021-05-23 03:24:53.86+03	
075582fe-a657-497d-2228-240ffac24ef4	2021-05-23 03:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:25:13.853+03	2021-05-23 03:25:13.86+03	
e5330aaa-1428-12b5-6f02-201982a7de08	2021-05-23 03:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:25:34.852+03	2021-05-23 03:25:34.861+03	
a4c7d11b-47cd-cda9-ec41-3bd4f4ce3c3b	2021-05-23 03:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:25:54.853+03	2021-05-23 03:25:54.859+03	
1f85c334-5087-f410-0d63-07dabec34d72	2021-05-23 03:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:26:15.852+03	2021-05-23 03:26:15.859+03	
2bcaf431-70b0-14b9-509a-d374309d33c1	2021-05-23 03:26:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:26:36.853+03	2021-05-23 03:26:36.859+03	
880c2516-187a-d828-12ad-4ed73abc089a	2021-05-23 03:26:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:26:56.854+03	2021-05-23 03:26:56.874+03	
53868ad7-4062-1cc9-0358-e7042a65cba2	2021-05-23 03:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:27:17.853+03	2021-05-23 03:27:17.864+03	
862b1847-1ac5-15d7-bb1c-308f0a636562	2021-05-23 03:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:27:37.853+03	2021-05-23 03:27:37.859+03	
2b3881c3-58cd-1152-1c3b-71f32546dc5a	2021-05-23 03:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:27:58.852+03	2021-05-23 03:27:58.859+03	
58110f22-3465-34f7-6936-3e04d163fa13	2021-05-23 03:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:28:18.852+03	2021-05-23 03:28:18.861+03	
012e36aa-26c0-aad1-89d4-b1e22f3fa593	2021-05-23 03:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:28:38.853+03	2021-05-23 03:28:38.86+03	
3919e1ec-7bc3-8f1c-6424-2b2916c5a329	2021-05-23 03:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:28:58.853+03	2021-05-23 03:28:58.862+03	
88ecf090-4e9f-80a9-435d-0f83324c8648	2021-05-23 03:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:29:18.853+03	2021-05-23 03:29:18.864+03	
0787703e-8e6e-96d7-1f39-e033eef349f8	2021-05-23 03:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:29:39.853+03	2021-05-23 03:29:39.863+03	
9ea9af09-9d8a-4e47-58a0-007c69c5e4e7	2021-05-23 03:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 03:30:00.852+03	2021-05-23 03:30:00.858+03	ERROR
69b6d8af-4ce0-5923-8c77-37c9f5a7fa24	2021-05-23 03:30:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:30:11.854+03	2021-05-23 03:30:11.872+03	
94abb09d-c9d2-385d-8ff2-f477861785c6	2021-05-23 03:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:30:32.853+03	2021-05-23 03:30:32.86+03	
0f472bfd-93fd-c9c3-0d9e-0bb26c2da321	2021-05-23 03:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:30:53.853+03	2021-05-23 03:30:53.874+03	
98af8a73-d03c-3a00-a54d-1fbf7f9434c8	2021-05-23 03:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:31:14.853+03	2021-05-23 03:31:14.859+03	
87f56a12-d9c6-2c97-a0c7-b0307e78a329	2021-05-23 03:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:31:35.853+03	2021-05-23 03:31:35.862+03	
adcc436f-b61b-e1ba-ae56-d9217f9df684	2021-05-23 03:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:31:55.853+03	2021-05-23 03:31:55.865+03	
668ebe17-bbce-3eae-9546-146fa3db0ca2	2021-05-23 03:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:32:15.853+03	2021-05-23 03:32:15.873+03	
53dd80c9-955b-9154-a4a1-06169eaacd5b	2021-05-23 03:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:32:35.853+03	2021-05-23 03:32:35.878+03	
fe4be710-a67e-4454-37c4-6c0c0f989e53	2021-05-23 03:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:32:55.853+03	2021-05-23 03:32:55.86+03	
c2a5c952-2eb4-01de-b9df-c48b65d7c016	2021-05-23 03:33:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:33:16.852+03	2021-05-23 03:33:16.86+03	
c43f4cf5-c4e0-f1a1-5e1b-854c8874b3f5	2021-05-23 03:33:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:33:36.853+03	2021-05-23 03:33:36.863+03	
7ee1cf0d-9ad1-ddef-3412-e65b27770570	2021-05-23 03:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:33:57.853+03	2021-05-23 03:33:57.861+03	
d676b2d1-0827-ab5a-c65c-099f4f2a6aaf	2021-05-23 03:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:34:18.853+03	2021-05-23 03:34:18.863+03	
be7c252b-6617-3028-776a-17eda66e7668	2021-05-23 03:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:34:39.852+03	2021-05-23 03:34:39.859+03	
24bd101c-39e9-544d-dde4-aa3c00012253	2021-05-23 03:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:34:59.853+03	2021-05-23 03:34:59.86+03	
bbaddcbc-0255-3c0c-e30c-441d33dad709	2021-05-23 03:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:35:19.853+03	2021-05-23 03:35:19.859+03	
43d45e02-78ad-9e41-34b0-bfceae0691fd	2021-05-23 03:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:35:40.853+03	2021-05-23 03:35:40.862+03	
502c2a61-c539-6e63-b9e8-5cfeddc519a7	2021-05-23 03:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:36:00.853+03	2021-05-23 03:36:00.86+03	
ccc3d6cc-bfd9-a0da-dfdd-3ab5794d8ccb	2021-05-23 03:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:36:20.853+03	2021-05-23 03:36:20.859+03	
e30f4e40-6bb0-bc32-408d-2f846c2bbf3b	2021-05-23 03:36:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:36:41.854+03	2021-05-23 03:36:41.86+03	
d5d3eddc-e262-a6db-5fe6-b53b42092b85	2021-05-23 03:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:37:02.853+03	2021-05-23 03:37:02.864+03	
67f6b446-cd0d-5d3e-f226-4abe6c8a8ef6	2021-05-23 03:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:37:22.853+03	2021-05-23 03:37:22.867+03	
37785602-261d-42d2-4c51-0715b4613a36	2021-05-23 03:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:37:42.853+03	2021-05-23 03:37:42.863+03	
19e85852-e33d-b1fe-b8fb-5663b5561628	2021-05-23 03:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:38:02.853+03	2021-05-23 03:38:02.859+03	
7b31e849-17dc-d851-2c6c-60052613bca2	2021-05-23 03:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:38:24.853+03	2021-05-23 03:38:24.86+03	
d08ecc79-475f-0a8e-b6a3-57947db0bba5	2021-05-23 03:38:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:38:46.853+03	2021-05-23 03:38:46.861+03	
bfd84e51-4070-a549-7512-56ca5bbe72eb	2021-05-23 03:39:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:39:07.853+03	2021-05-23 03:39:07.861+03	
4cb2c239-dbea-dae9-8838-7b32fe414a29	2021-05-23 03:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:39:28.853+03	2021-05-23 03:39:28.861+03	
12f7f5fb-5696-ee73-7204-9a07e6eb1ec9	2021-05-23 03:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:39:49.853+03	2021-05-23 03:39:49.865+03	
9dea8740-c2d6-5968-4ae9-7525ec7fae5d	2021-05-23 03:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 03:40:00.853+03	2021-05-23 03:40:00.857+03	ERROR
108031f2-66de-7cc3-ca97-2e1293d5af7e	2021-05-23 03:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:40:20.853+03	2021-05-23 03:40:20.871+03	
939f4795-f278-092b-ce7a-2fb76d309e5f	2021-05-23 03:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:40:40.853+03	2021-05-23 03:40:40.86+03	
f6cebb27-e3b7-b2a2-590b-bf565b2045f2	2021-05-23 03:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:41:00.853+03	2021-05-23 03:41:00.86+03	
849873f0-c1dc-08dd-d192-908a8ace4cb1	2021-05-23 03:41:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:41:21.852+03	2021-05-23 03:41:21.861+03	
dc84790f-2f54-167f-3ebb-a7188f57b674	2021-05-23 03:41:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:41:41.854+03	2021-05-23 03:41:41.865+03	
476d98df-179e-44fb-70d7-fdb5edb16c79	2021-05-23 03:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:42:02.853+03	2021-05-23 03:42:02.871+03	
58f85bc9-e657-f1de-31f1-7224e8dee455	2021-05-23 03:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:42:23.853+03	2021-05-23 03:42:23.859+03	
7a4ba819-290c-fcf6-5c02-67648f768c99	2021-05-23 03:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:42:34.853+03	2021-05-23 03:42:34.859+03	
d2641b22-ac7f-2512-b9ed-5fe199e44357	2021-05-23 03:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:42:55.852+03	2021-05-23 03:42:55.86+03	
b8eff22b-be31-fbac-8d02-8cef41a65b08	2021-05-23 03:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:43:15.853+03	2021-05-23 03:43:15.859+03	
81b0d10f-c12b-d5d4-e5ca-83c8302db228	2021-05-23 03:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:43:35.853+03	2021-05-23 03:43:35.872+03	
b9ca581a-01a4-4f51-3a5d-9644a17fdaaf	2021-05-23 03:43:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:43:56.852+03	2021-05-23 03:43:56.86+03	
81470055-be8c-ef96-293e-73c629a8fe35	2021-05-23 03:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:44:17.852+03	2021-05-23 03:44:17.859+03	
4c40bca5-e008-e79e-b4d2-0b7cfd3b1690	2021-05-23 03:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:44:37.852+03	2021-05-23 03:44:37.868+03	
ae40fca1-c8a6-0c7e-b9b1-15634fa48934	2021-05-23 03:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:44:57.852+03	2021-05-23 03:44:57.858+03	
b03b7004-4fc1-e5f2-4ec7-30c607243a16	2021-05-23 03:45:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:45:17.853+03	2021-05-23 03:45:17.86+03	
d7dd3848-f9ed-246a-8534-6daed63c1e96	2021-05-23 03:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:45:37.853+03	2021-05-23 03:45:37.859+03	
cf719e2a-beac-c18d-e4e2-8772be575936	2021-05-23 03:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:45:59.852+03	2021-05-23 03:45:59.859+03	
934f5ba7-aa26-858b-300d-52b1ba1423d3	2021-05-23 03:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:46:19.853+03	2021-05-23 03:46:19.861+03	
108f4b11-2271-2942-2aac-d0c8b9601a09	2021-05-23 03:46:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:46:41.853+03	2021-05-23 03:46:41.861+03	
4ada89b1-5faa-f7e7-867a-178bd5d7413f	2021-05-23 03:47:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:47:02.853+03	2021-05-23 03:47:02.859+03	
f4844951-7965-00a4-44dd-bb889afcc2e7	2021-05-23 03:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:47:22.853+03	2021-05-23 03:47:22.86+03	
c6fef652-0d23-aca2-bcd0-6844faed2c74	2021-05-23 03:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:47:42.853+03	2021-05-23 03:47:42.859+03	
5af5f7de-5049-1aec-019e-839003a7ad45	2021-05-23 03:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:48:03.852+03	2021-05-23 03:48:03.86+03	
a9615e9d-fe7b-fd40-d172-7d6eb3d5df90	2021-05-23 03:48:23.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:48:23.854+03	2021-05-23 03:48:23.863+03	
a0792565-a1b3-7807-dc3f-2cacb14d8dff	2021-05-23 03:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:48:44.853+03	2021-05-23 03:48:44.859+03	
11b3368c-c61a-e96c-a9c4-1581ab283d32	2021-05-23 03:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:49:04.853+03	2021-05-23 03:49:04.859+03	
2ad3c48c-8623-5a9d-e63d-e570c1234181	2021-05-23 03:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:49:24.853+03	2021-05-23 03:49:24.865+03	
0edca6ec-08dc-5dd6-cdd9-e19d7c6014b9	2021-05-23 03:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:49:45.852+03	2021-05-23 03:49:45.861+03	
f1dc0db1-2c71-e14a-997a-391a83a5611a	2021-05-23 03:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 03:50:00.852+03	2021-05-23 03:50:00.869+03	ERROR
bce8ce49-1c7e-33a4-4e22-8da29a8fe6bb	2021-05-23 03:50:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:50:15.853+03	2021-05-23 03:50:16.608+03	
4d4c2a41-87cd-d7d3-9398-cdb1e31f26e3	2021-05-23 03:50:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:50:35.853+03	2021-05-23 03:50:35.861+03	
8a4ded44-be8d-0a2f-e136-8385ab31e025	2021-05-23 03:50:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:50:56.853+03	2021-05-23 03:50:56.866+03	
54b83313-ad71-763a-f11a-982b52c01739	2021-05-23 03:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:51:17.852+03	2021-05-23 03:51:17.859+03	
0bf22b6d-8468-0864-7ee7-7a3393a41b13	2021-05-23 03:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:51:38.852+03	2021-05-23 03:51:38.869+03	
dcdf125c-d841-cf35-6660-832f9e0257d4	2021-05-23 03:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:51:58.853+03	2021-05-23 03:51:58.86+03	
e0a4232c-b8a9-ae28-4b17-ecaa80f632a8	2021-05-23 03:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:52:18.853+03	2021-05-23 03:52:18.86+03	
d8ba4f2f-b014-d12d-e93b-b9f4dd408795	2021-05-23 03:52:38.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:52:38.853+03	2021-05-23 03:52:38.86+03	
99e48f9b-7810-589e-fff4-eff331ceedfb	2021-05-23 03:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:52:58.853+03	2021-05-23 03:52:58.86+03	
6cdefbf4-2ce8-20dc-388b-fab515acdd95	2021-05-23 03:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:53:19.853+03	2021-05-23 03:53:19.86+03	
db2ba9bb-4844-8ad6-d20f-6d87941f576b	2021-05-23 03:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:53:39.853+03	2021-05-23 03:53:39.86+03	
cdb950b7-60e1-f33b-0777-6682c96ad00c	2021-05-23 03:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:53:59.853+03	2021-05-23 03:53:59.871+03	
40ed0319-b647-8da4-167b-9a128184ea0c	2021-05-23 03:54:19.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:54:19.858+03	2021-05-23 03:54:19.868+03	
c2e08e94-1bb9-73b2-2197-2d159bb774dc	2021-05-23 03:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:54:40.852+03	2021-05-23 03:54:40.859+03	
7c95e19e-4cc4-404e-22b0-f086544e8fba	2021-05-23 03:55:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:55:01.852+03	2021-05-23 03:55:01.885+03	
c367fe45-ffd8-d49b-bf42-d30da5108505	2021-05-23 03:55:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:55:21.852+03	2021-05-23 03:55:21.859+03	
234030c6-347c-265a-6a12-2f6bee4cdfe0	2021-05-23 03:55:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:55:41.853+03	2021-05-23 03:55:41.86+03	
9d8cb3c7-bd8e-9540-2147-4d79d4c2a03d	2021-05-23 03:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:56:02.853+03	2021-05-23 03:56:02.86+03	
edc2806f-7dab-3efa-8e2f-48569e1ee796	2021-05-23 03:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:56:23.853+03	2021-05-23 03:56:23.861+03	
419cb39a-79df-d983-4851-126312edce40	2021-05-23 03:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:56:44.852+03	2021-05-23 03:56:44.859+03	
fed18465-106f-8388-db1b-9bc2af3ba48a	2021-05-23 03:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:57:04.853+03	2021-05-23 03:57:04.86+03	
e9aca289-923e-c823-07cf-56f9078454d8	2021-05-23 03:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:57:24.853+03	2021-05-23 03:57:24.861+03	
e1341750-7b94-18f8-7793-a91a4074199e	2021-05-23 03:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:57:45.853+03	2021-05-23 03:57:45.86+03	
d5740058-3a84-3dc2-ea69-1efde271012f	2021-05-23 03:58:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:58:06.852+03	2021-05-23 03:58:06.859+03	
abea4045-0793-8f33-ac09-0653b6c9f73d	2021-05-23 03:58:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:58:26.852+03	2021-05-23 03:58:26.86+03	
a551aa62-e20d-3b12-864c-e2649dd2d896	2021-05-23 03:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:58:47.853+03	2021-05-23 03:58:47.862+03	
fb9bf6d3-a955-26f8-e14c-434804d23230	2021-05-23 03:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:59:08.853+03	2021-05-23 03:59:08.86+03	
6eb2ef09-45a4-1334-dbcf-e09b671c2caf	2021-05-23 03:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:59:29.853+03	2021-05-23 03:59:29.861+03	
1aa9c128-85c6-4f05-e583-6f2024629754	2021-05-23 03:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:59:49.853+03	2021-05-23 03:59:49.861+03	
277d5988-8cbe-3e35-2c70-91cc11bf99f1	2021-05-23 04:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 04:00:00.853+03	2021-05-23 04:00:00.862+03	ERROR
68536713-d8c0-bc67-1201-d49160a4f26a	2021-05-23 04:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:00:19.853+03	2021-05-23 04:00:19.86+03	
857186a4-e22c-40f5-3bc7-4535b6bfc9e0	2021-05-23 04:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:00:39.853+03	2021-05-23 04:00:39.86+03	
1e9e4422-c9dc-56ec-b4b4-ee5c4f8ab7bb	2021-05-23 04:00:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:00:59.853+03	2021-05-23 04:00:59.86+03	
341cde39-dd13-f54a-c5c2-1b4e86c22fd9	2021-05-23 04:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:01:19.853+03	2021-05-23 04:01:19.86+03	
b973ce55-de45-b01e-bee7-80df7a63c483	2021-05-23 04:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:01:40.853+03	2021-05-23 04:01:40.871+03	
099af5ac-4c04-75a6-b772-e84ae9abc61c	2021-05-23 04:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:02:02.853+03	2021-05-23 04:02:02.862+03	
137d3f21-8c1f-0999-2a53-a840a30fa1a6	2021-05-23 04:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:02:22.853+03	2021-05-23 04:02:22.861+03	
79b37264-83a8-6367-fa3e-fb16eab8911d	2021-05-23 04:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:02:42.853+03	2021-05-23 04:02:42.859+03	
deae9c36-07b6-745a-5fb3-faecb48adf8e	2021-05-23 04:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:03:02.853+03	2021-05-23 04:03:02.861+03	
560a944d-2554-efeb-46db-e18ebbca91d7	2021-05-23 04:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:03:22.853+03	2021-05-23 04:03:22.859+03	
cd813fb4-fdb0-4998-7561-ed4dd1505dde	2021-05-23 03:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:42:44.853+03	2021-05-23 03:42:44.861+03	
875f78d3-95d8-0de8-40de-c972cbaee23c	2021-05-23 03:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:43:05.853+03	2021-05-23 03:43:05.871+03	
6699d30a-21d4-376c-9605-36ff38dd74c9	2021-05-23 03:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:43:25.853+03	2021-05-23 03:43:25.874+03	
1317f53f-be3f-9b1c-7552-b94d6559d0fd	2021-05-23 03:43:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:43:46.852+03	2021-05-23 03:43:46.869+03	
152fa8cd-699f-4e04-e485-b946f5871641	2021-05-23 03:44:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:44:06.853+03	2021-05-23 03:44:06.867+03	
c65bad1c-80fc-93b3-57cd-cf3078697490	2021-05-23 03:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:44:27.852+03	2021-05-23 03:44:27.859+03	
14596c89-9981-bbf4-73f1-f45e5fb1895a	2021-05-23 03:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:44:47.852+03	2021-05-23 03:44:47.861+03	
56171258-dd85-b6e9-09ba-ef326b46078f	2021-05-23 03:45:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:45:07.852+03	2021-05-23 03:45:07.859+03	
ccd8a301-14c7-30bf-7328-c07686f94a97	2021-05-23 03:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:45:27.853+03	2021-05-23 03:45:27.86+03	
7d25f27d-c2f6-3c78-ca33-ff1d7b780fa2	2021-05-23 03:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:45:48.853+03	2021-05-23 03:45:48.859+03	
85495689-1a8c-73b5-0539-d6517affc529	2021-05-23 03:46:09.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:46:09.853+03	2021-05-23 03:46:09.865+03	
5f5b72e3-f73b-958a-4d11-a19cd44697ce	2021-05-23 03:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:46:30.853+03	2021-05-23 03:46:30.865+03	
79371549-6f8c-8f0f-1832-2a509cadc047	2021-05-23 03:46:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:46:51.854+03	2021-05-23 03:46:51.861+03	
128b22a9-3c2f-c84d-5a27-bf215a1017ce	2021-05-23 03:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:47:12.853+03	2021-05-23 03:47:12.862+03	
ad2f10d2-2eb5-76ba-1948-f21a2e94891b	2021-05-23 03:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:47:32.853+03	2021-05-23 03:47:32.86+03	
77e182b8-1fa8-0e16-b2ba-58a6a6681266	2021-05-23 03:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:47:52.853+03	2021-05-23 03:47:52.859+03	
9b13471b-0f0d-a856-ea83-70670298f7cf	2021-05-23 03:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:48:13.852+03	2021-05-23 03:48:13.86+03	
f1f1f29f-d02d-f1c9-ea5e-378d96f99b62	2021-05-23 03:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:48:34.853+03	2021-05-23 03:48:34.86+03	
4ebcf7ac-4d50-4a72-d11b-1b78949491fd	2021-05-23 03:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:48:54.853+03	2021-05-23 03:48:54.872+03	
47aaa9d0-271b-8cb7-1f59-8417aca83c6f	2021-05-23 03:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:49:14.853+03	2021-05-23 03:49:14.86+03	
ab7a7c2f-b065-b43f-dcda-085bef05db55	2021-05-23 03:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:49:35.852+03	2021-05-23 03:49:35.859+03	
be163ad1-1710-03be-0522-50a9bcc407c6	2021-05-23 03:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:49:55.852+03	2021-05-23 03:49:55.86+03	
66511c52-eba1-87e8-5bef-ff759c082822	2021-05-23 03:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:50:05.852+03	2021-05-23 03:50:05.86+03	
b7a08fa1-6b79-e647-4bd5-1559d8ca2d9e	2021-05-23 03:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:50:25.853+03	2021-05-23 03:50:25.865+03	
3f2dc3de-bef4-9b8f-a0ff-05ab13af80e3	2021-05-23 03:50:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:50:46.853+03	2021-05-23 03:50:46.861+03	
8b9e36a8-8882-a144-e7ce-1736076b1ad4	2021-05-23 03:51:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:51:06.853+03	2021-05-23 03:51:06.905+03	
82090534-5f8a-15ac-20c6-a6eaeb1f57f9	2021-05-23 03:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:51:27.853+03	2021-05-23 03:51:27.859+03	
9f0de631-e9c6-1adc-4301-8e608db2973e	2021-05-23 03:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:51:48.853+03	2021-05-23 03:51:48.864+03	
62d2f3a7-509b-5c3c-c15c-c9c75368ed95	2021-05-23 03:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:52:08.853+03	2021-05-23 03:52:08.859+03	
496ad144-70b2-5013-a93a-2e9b7fbb1195	2021-05-23 03:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:52:28.853+03	2021-05-23 03:52:28.861+03	
f23006c9-d47f-9f2b-fcba-a89d3dea4cd7	2021-05-23 03:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:52:48.853+03	2021-05-23 03:52:48.86+03	
4515aa3a-c760-a9a3-51bd-07190595aebd	2021-05-23 03:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:53:08.853+03	2021-05-23 03:53:08.859+03	
7d3ac52c-3b9f-f192-4af5-beaf2d0c0bda	2021-05-23 03:53:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:53:29.853+03	2021-05-23 03:53:29.861+03	
d5241a6d-b559-f5ae-be59-4b96f5ef0977	2021-05-23 03:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:53:49.853+03	2021-05-23 03:53:49.86+03	
04cc5d39-7175-0c56-385e-382ae144a02f	2021-05-23 03:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:54:09.853+03	2021-05-23 03:54:09.868+03	
525ae3b8-9483-e38f-b55f-db0393eda8e9	2021-05-23 03:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:54:30.852+03	2021-05-23 03:54:30.86+03	
a41ed3b7-b788-8f7f-f6ad-57c6bfac025d	2021-05-23 03:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:54:50.853+03	2021-05-23 03:54:50.86+03	
6cf0a7f0-942f-8727-5e3d-59042af1803d	2021-05-23 03:55:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:55:11.852+03	2021-05-23 03:55:11.86+03	
01ded6bb-d221-dc5c-30fb-dd7a5d83f5a8	2021-05-23 03:55:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:55:31.853+03	2021-05-23 03:55:31.86+03	
43faec46-d09f-1f08-bf68-084b2bfb40cb	2021-05-23 03:55:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:55:51.854+03	2021-05-23 03:55:51.861+03	
9501ba94-ed33-c7bc-64e8-79320f279932	2021-05-23 03:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:56:13.852+03	2021-05-23 03:56:13.859+03	
2c0215bc-412a-d49f-1786-759910cc06c1	2021-05-23 03:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:56:33.853+03	2021-05-23 03:56:33.86+03	
bb6bfc72-245f-b79e-9095-a9ee3a37074c	2021-05-23 03:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:56:54.853+03	2021-05-23 03:56:54.86+03	
6d965571-65f2-8c86-13cb-386789deb4c2	2021-05-23 03:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:57:14.853+03	2021-05-23 03:57:14.86+03	
2f9c1d7c-1822-bcce-c2b7-d489171e4be1	2021-05-23 03:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:57:34.853+03	2021-05-23 03:57:34.86+03	
43881f63-40ce-9bf6-dae6-02ccf33e5ec7	2021-05-23 03:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:57:55.853+03	2021-05-23 03:57:55.861+03	
7284aa54-673c-0ae3-9068-b30bf71c5557	2021-05-23 03:58:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:58:16.852+03	2021-05-23 03:58:16.87+03	
02c22da5-d099-c3ab-bcbc-7a1cc55ded0a	2021-05-23 03:58:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:58:36.854+03	2021-05-23 03:58:36.867+03	
f4f915db-b62e-f9d6-1c04-252a7212ddb2	2021-05-23 03:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:58:58.853+03	2021-05-23 03:58:58.861+03	
475d2bed-94d2-441b-3b09-39ba2644d9d1	2021-05-23 03:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:59:18.853+03	2021-05-23 03:59:18.899+03	
f46ad445-e89a-5003-0bc8-445a6d3aa89d	2021-05-23 03:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:59:39.853+03	2021-05-23 03:59:39.859+03	
cdd2860d-717f-ca5b-4294-a452e6b46c36	2021-05-23 03:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 03:59:59.853+03	2021-05-23 03:59:59.86+03	
9b2b849a-e2a0-3b98-90ce-8786b6825d20	2021-05-23 04:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:00:09.853+03	2021-05-23 04:00:09.868+03	
cf2d88f9-f253-2d94-0a28-dd06a8abb51a	2021-05-23 04:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:00:29.853+03	2021-05-23 04:00:29.872+03	
4997d514-7e63-9246-93ee-be842212dccd	2021-05-23 04:00:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:00:49.853+03	2021-05-23 04:00:49.859+03	
777547a5-db6a-d8f3-dcc1-cd15b908bb5a	2021-05-23 04:01:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:01:09.853+03	2021-05-23 04:01:09.861+03	
d7984a00-b57a-d28c-2438-af3a36a63568	2021-05-23 04:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:01:30.852+03	2021-05-23 04:01:30.859+03	
3b44ce17-0d5d-8f80-7df3-426bee88dfd0	2021-05-23 04:01:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:01:51.855+03	2021-05-23 04:01:51.864+03	
1dcc7025-a197-8114-30c2-d24a30243c8e	2021-05-23 04:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:02:12.853+03	2021-05-23 04:02:12.862+03	
ac6ca996-e4d3-7609-373f-9015cd7b0d46	2021-05-23 04:02:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:02:32.853+03	2021-05-23 04:02:32.87+03	
4003798c-f86c-7f58-502e-797817a98c5f	2021-05-23 04:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:02:52.853+03	2021-05-23 04:02:52.86+03	
9acc6a9c-88bb-4449-822a-4d1ad2921dd9	2021-05-23 04:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:03:12.853+03	2021-05-23 04:03:12.868+03	
2a2884fb-aacb-d623-dea8-fb728eaf6782	2021-05-23 04:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:03:32.853+03	2021-05-23 04:03:32.859+03	
9e32e95a-d829-b597-01e4-62d07b3aaa50	2021-05-23 04:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:03:42.853+03	2021-05-23 04:03:42.86+03	
06ae93d5-ade5-c5a8-e7b0-0b7ca5818b80	2021-05-23 04:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:04:03.853+03	2021-05-23 04:04:03.859+03	
d08c2b85-64e1-95a6-75dd-226fbf193de9	2021-05-23 04:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:04:23.853+03	2021-05-23 04:04:23.859+03	
8af801c5-fa57-2920-d91a-84e315ae7e48	2021-05-23 04:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:04:43.853+03	2021-05-23 04:04:43.861+03	
aeadd950-6604-3c55-da93-f3bacb49f577	2021-05-23 04:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:05:03.853+03	2021-05-23 04:05:03.859+03	
0f0a0311-90b6-8904-4513-a002553f86fc	2021-05-23 04:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:05:24.853+03	2021-05-23 04:05:24.859+03	
74aefca8-d5a3-370a-6821-864f8deb657e	2021-05-23 04:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:05:45.852+03	2021-05-23 04:05:45.863+03	
7fe2b197-467e-0478-4c6d-b81ae427c3c9	2021-05-23 04:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:06:05.853+03	2021-05-23 04:06:05.868+03	
ca4b1b32-d4e9-2235-034d-921448ab9f51	2021-05-23 04:06:26.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:06:26.854+03	2021-05-23 04:06:26.869+03	
651fdb19-c33f-64e1-5304-761c85a72704	2021-05-23 04:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:06:47.853+03	2021-05-23 04:06:47.862+03	
9365cb5a-d78a-bcf6-8599-6f56f83cae10	2021-05-23 04:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:07:08.852+03	2021-05-23 04:07:08.858+03	
e8a1ec4c-6f36-3a54-c790-1ee83d711701	2021-05-23 04:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:07:28.853+03	2021-05-23 04:07:28.859+03	
5d68d5a2-ee69-ab1f-5cdc-ca04cc55591a	2021-05-23 04:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:07:49.853+03	2021-05-23 04:07:49.87+03	
595e4076-d2bb-a0b6-a972-7294069b7d33	2021-05-23 04:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:08:09.853+03	2021-05-23 04:08:09.861+03	
96cd9586-7e7f-39f2-54dd-3202c050d531	2021-05-23 04:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:08:29.853+03	2021-05-23 04:08:29.859+03	
50c66a1f-05ce-1ad6-cb35-0cf2fccfe5ad	2021-05-23 04:08:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:08:50.852+03	2021-05-23 04:08:50.861+03	
3814ea11-cd73-9f09-07f4-e814aa8d58b3	2021-05-23 04:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:09:10.853+03	2021-05-23 04:09:10.86+03	
887fc042-477f-5cba-27e2-918cc0b34299	2021-05-23 04:09:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:09:31.853+03	2021-05-23 04:09:31.86+03	
7f67648f-04cf-dff4-1f8d-7eabd8f6e0af	2021-05-23 04:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:09:52.853+03	2021-05-23 04:09:52.86+03	
977458fc-fac0-2c39-ff7a-6926d258c053	2021-05-23 04:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:10:02.853+03	2021-05-23 04:10:02.859+03	
5edf9f7d-389d-6989-de59-fcd9185c27ad	2021-05-23 04:10:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:10:22.853+03	2021-05-23 04:10:22.86+03	
abf29261-b7cd-7f14-be0e-2b883616d5df	2021-05-23 04:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:10:43.853+03	2021-05-23 04:10:43.859+03	
f915b771-c50a-c45d-7732-8c6fccec8bb5	2021-05-23 04:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:11:03.853+03	2021-05-23 04:11:03.859+03	
7887e316-e40b-7560-a0fe-7b346de3ddc0	2021-05-23 04:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:11:23.853+03	2021-05-23 04:11:23.859+03	
b4378c0d-03bf-e994-b4b8-8c09b33986e6	2021-05-23 04:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:11:44.853+03	2021-05-23 04:11:44.859+03	
7c586634-1bb4-28f1-4fe1-8c4f67e75a1a	2021-05-23 04:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:12:04.853+03	2021-05-23 04:12:04.86+03	
c1053fab-d1e0-7e50-b5e8-dae69075dc01	2021-05-23 04:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:12:25.853+03	2021-05-23 04:12:25.859+03	
6a05d790-1589-1e0c-ae8c-6abd635a37c9	2021-05-23 04:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:12:47.853+03	2021-05-23 04:12:47.86+03	
04a24f09-6d58-4380-dad1-1da3915af330	2021-05-23 04:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:13:08.852+03	2021-05-23 04:13:08.859+03	
32b79a39-17cd-6b12-939f-a93cde3c024a	2021-05-23 04:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:13:28.852+03	2021-05-23 04:13:28.859+03	
b669141b-b08a-cf8b-f297-ddea86190c29	2021-05-23 04:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:13:48.852+03	2021-05-23 04:13:48.87+03	
19c911ab-3322-da32-e384-1d9fcd94c7f2	2021-05-23 04:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:14:08.852+03	2021-05-23 04:14:08.863+03	
bdabb891-b7d5-56c1-295d-d88b0cb5ceb8	2021-05-23 04:14:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:14:28.853+03	2021-05-23 04:14:28.863+03	
efa19c94-5607-dbdf-b486-a02d60171a64	2021-05-23 04:14:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:14:48.853+03	2021-05-23 04:14:48.859+03	
e8abe64d-a2da-5d2f-0f82-9ff179c0c6c5	2021-05-23 04:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:15:09.853+03	2021-05-23 04:15:09.859+03	
9e1963d1-7c3f-8495-d27c-63ac81571b22	2021-05-23 04:15:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:15:31.852+03	2021-05-23 04:15:31.858+03	
4a1a7c8d-d0e2-08af-4733-ef94dc2f52ce	2021-05-23 04:15:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:15:51.853+03	2021-05-23 04:15:51.861+03	
d2440253-f8f8-fdf0-9bb1-dbad80ec4460	2021-05-23 04:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:16:12.853+03	2021-05-23 04:16:12.859+03	
ff64058e-fa99-0c47-267e-b7bc02af8835	2021-05-23 04:16:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:16:33.853+03	2021-05-23 04:16:33.86+03	
0a51bc54-949f-674e-2caf-4ff22ffeee63	2021-05-23 04:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:16:53.853+03	2021-05-23 04:16:53.859+03	
55604ada-f824-dbcc-a78d-adfa3bd4f48f	2021-05-23 04:17:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:17:14.853+03	2021-05-23 04:17:14.861+03	
dda44b59-6201-ea0c-0b3d-7f1bd67c9314	2021-05-23 04:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:17:34.853+03	2021-05-23 04:17:34.86+03	
a02354a8-84b7-7236-4f7e-33ca4a929c04	2021-05-23 04:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:17:55.853+03	2021-05-23 04:17:55.871+03	
618cee26-d265-7384-6a52-cf958aec766c	2021-05-23 04:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:18:16.852+03	2021-05-23 04:18:16.861+03	
24110aa4-734a-ae5f-6f9b-a2a5f4423b6e	2021-05-23 04:18:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:18:36.854+03	2021-05-23 04:18:36.868+03	
6e3ddc30-d0ac-1701-4a37-ff794edd7256	2021-05-23 04:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:18:57.853+03	2021-05-23 04:18:57.859+03	
6a5a805d-1b5e-3ba4-9ef8-c377282732ff	2021-05-23 04:19:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:19:17.853+03	2021-05-23 04:19:17.86+03	
06e56dde-2a33-d94d-757d-e03acdd07d53	2021-05-23 04:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:19:38.852+03	2021-05-23 04:19:38.86+03	
920e72f3-4fbd-e165-280b-1b04265c81b9	2021-05-23 04:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:19:48.853+03	2021-05-23 04:19:48.869+03	
5718d1f5-77a0-bf78-15b6-118403c41058	2021-05-23 04:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 04:20:00.852+03	2021-05-23 04:20:00.857+03	ERROR
f71e12c8-cdce-57f8-69f2-3adbc7c943ce	2021-05-23 04:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:20:18.853+03	2021-05-23 04:20:18.86+03	
6a1914c3-b5ca-f66c-b0c6-78595f28de4d	2021-05-23 04:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:20:39.853+03	2021-05-23 04:20:39.86+03	
e1b7229e-b71a-6a01-67d4-e81245c734df	2021-05-23 04:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:20:59.853+03	2021-05-23 04:20:59.86+03	
41a9f911-f309-7212-94e0-b67340abf2b7	2021-05-23 04:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:21:20.853+03	2021-05-23 04:21:20.859+03	
5f1824a9-ddaa-8b76-6b05-9499652c5ac2	2021-05-23 04:21:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:21:41.853+03	2021-05-23 04:21:41.86+03	
cc30436d-1a91-24dd-e7b6-0c59a0a207cb	2021-05-23 04:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:22:02.852+03	2021-05-23 04:22:02.859+03	
3414ba16-180b-3c82-cc52-49873983a5b9	2021-05-23 04:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:22:22.852+03	2021-05-23 04:22:22.859+03	
1995643a-b3a7-5bf7-7a3a-274836122cb4	2021-05-23 04:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:22:43.852+03	2021-05-23 04:22:43.859+03	
c96962d9-c068-90b5-cab5-6db312ac2b9c	2021-05-23 04:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:23:03.853+03	2021-05-23 04:23:03.861+03	
29f9304d-ef0e-d38f-8549-a3072329074e	2021-05-23 04:23:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:23:24.852+03	2021-05-23 04:23:24.864+03	
3951d150-669f-2e31-6010-f5f28fe7b008	2021-05-23 04:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:23:44.852+03	2021-05-23 04:23:44.86+03	
06fc1837-1b26-7e0b-0430-17c798b27a01	2021-05-23 04:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:24:04.853+03	2021-05-23 04:24:04.86+03	
88430b02-68d3-bfc1-a7a3-4e9e50877003	2021-05-23 04:24:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:24:24.853+03	2021-05-23 04:24:24.86+03	
4fb10cf1-5485-ec5d-c5d4-fd9c6677eb8c	2021-05-23 04:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:03:52.853+03	2021-05-23 04:03:52.859+03	
257eb304-1e57-7736-5b10-1c6b738594ed	2021-05-23 04:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:04:13.853+03	2021-05-23 04:04:13.902+03	
eaa7690e-6a3d-0887-e98a-c9525f15819d	2021-05-23 04:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:04:33.853+03	2021-05-23 04:04:33.861+03	
0c677738-ebcc-a121-b3ac-d84da03cee44	2021-05-23 04:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:04:53.853+03	2021-05-23 04:04:53.859+03	
5bc462c6-2117-50a8-2241-552e872dde8f	2021-05-23 04:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:05:13.853+03	2021-05-23 04:05:13.86+03	
6ade99bd-958b-5f75-67f9-0fa948e205a0	2021-05-23 04:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:05:34.853+03	2021-05-23 04:05:34.859+03	
846eaf41-2b5a-1fa4-7c42-773b3fb97f26	2021-05-23 04:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:05:55.853+03	2021-05-23 04:05:55.861+03	
46f441d0-6cf8-16f9-b110-5b23d5c0cd33	2021-05-23 04:06:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:06:16.852+03	2021-05-23 04:06:16.86+03	
4406b0af-d077-4bb2-7568-d3f71f972cac	2021-05-23 04:06:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:06:36.854+03	2021-05-23 04:06:36.862+03	
c888ab49-c98e-7ffb-4786-23aba4614f1a	2021-05-23 04:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:06:57.853+03	2021-05-23 04:06:57.859+03	
7251e636-36ba-738e-00b1-1b91ae2f4ac1	2021-05-23 04:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:07:18.853+03	2021-05-23 04:07:18.859+03	
a8fc5423-213b-4e6e-10a0-f38859de8deb	2021-05-23 04:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:07:39.853+03	2021-05-23 04:07:39.863+03	
f6577cb7-65ae-ccb8-9700-d69570f7109a	2021-05-23 04:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:07:59.853+03	2021-05-23 04:07:59.865+03	
9c5ff73d-f5f3-684d-f193-17088af23bab	2021-05-23 04:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:08:19.853+03	2021-05-23 04:08:19.859+03	
7c881fd4-f210-ec38-ef82-a207a3d99338	2021-05-23 04:08:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:08:40.852+03	2021-05-23 04:08:40.859+03	
d05dea62-cc2c-41b9-3c91-d2807b6af412	2021-05-23 04:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:09:00.852+03	2021-05-23 04:09:00.862+03	
a9502121-5500-f298-ebe2-d9d95b70683d	2021-05-23 04:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:09:20.853+03	2021-05-23 04:09:20.862+03	
cfd1d520-5a68-c8f3-06df-d23dc345fea8	2021-05-23 04:09:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:09:41.854+03	2021-05-23 04:09:41.86+03	
cfe76f9a-c90c-b65e-05e3-bed6b9a09cfe	2021-05-23 04:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 04:10:00.852+03	2021-05-23 04:10:00.858+03	ERROR
70074c8c-ddba-fbc2-449b-be6b80f535f5	2021-05-23 04:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:10:12.853+03	2021-05-23 04:10:12.861+03	
88f03b86-9346-5138-d0f4-3ffdd5cccf13	2021-05-23 04:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:10:33.852+03	2021-05-23 04:10:33.861+03	
09ccfe5c-7abf-af28-eea7-a0487b8ef721	2021-05-23 04:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:10:53.853+03	2021-05-23 04:10:53.865+03	
591e4bfa-5c20-1d56-29a4-a1ffe879f584	2021-05-23 04:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:11:13.853+03	2021-05-23 04:11:13.862+03	
fab10aa7-28d0-b80c-a19c-9a57e51453f2	2021-05-23 04:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:11:33.853+03	2021-05-23 04:11:33.865+03	
9fb378be-d076-42cd-515a-7c83382c0f03	2021-05-23 04:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:11:54.853+03	2021-05-23 04:11:54.871+03	
f994f037-3cfa-48dd-fc55-b378b6f5e628	2021-05-23 04:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:12:14.853+03	2021-05-23 04:12:14.862+03	
fd4dc72c-a50e-a220-d2aa-3598f3da3cbd	2021-05-23 04:12:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:12:36.854+03	2021-05-23 04:12:36.863+03	
6d88e178-1d3c-7db8-7011-a5134cd11d76	2021-05-23 04:12:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:12:57.853+03	2021-05-23 04:12:57.861+03	
e792dc68-4147-4873-38a0-49347935b827	2021-05-23 04:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:13:18.852+03	2021-05-23 04:13:18.86+03	
2a173aa7-cdf3-f1e6-65f6-ada36da1388c	2021-05-23 04:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:13:38.852+03	2021-05-23 04:13:38.861+03	
1bcc9e43-8488-da73-3d8e-d35cf73d6929	2021-05-23 04:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:13:58.852+03	2021-05-23 04:13:58.874+03	
ed81e3dd-d443-210d-2db4-7d24feb36689	2021-05-23 04:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:14:18.852+03	2021-05-23 04:14:18.868+03	
51ee9c33-475f-5dbc-04bd-e7f1c5af22ab	2021-05-23 04:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:14:38.853+03	2021-05-23 04:14:38.861+03	
8494d7eb-c2b6-3ac9-16a1-74c563f69a52	2021-05-23 04:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:14:59.853+03	2021-05-23 04:14:59.86+03	
f7993c1a-6db7-3dc3-7851-ac825b40cc00	2021-05-23 04:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:15:20.853+03	2021-05-23 04:15:20.887+03	
454ffa50-fa4d-7d6f-6325-d5a709f80954	2021-05-23 04:15:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:15:41.853+03	2021-05-23 04:15:41.863+03	
a5bba9b1-f15c-cdfd-d767-2d3a31217a8d	2021-05-23 04:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:16:02.852+03	2021-05-23 04:16:02.86+03	
429277fc-2d5a-760a-a16a-da9e668b0f59	2021-05-23 04:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:16:22.853+03	2021-05-23 04:16:22.859+03	
50649e72-8f50-d365-814a-88e9e3d10641	2021-05-23 04:16:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:16:43.853+03	2021-05-23 04:16:43.859+03	
cd3cf124-47e2-2345-95e6-592bfdc779dd	2021-05-23 04:17:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:17:04.853+03	2021-05-23 04:17:04.865+03	
169a5efd-0ccc-7c0c-a97f-4ae405997c9f	2021-05-23 04:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:17:24.853+03	2021-05-23 04:17:24.859+03	
fd0d57f8-2ad0-3988-822c-4044ab3db1dc	2021-05-23 04:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:17:45.853+03	2021-05-23 04:17:45.865+03	
d42915af-71fc-6002-acf4-6979b0fb1c46	2021-05-23 04:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:18:05.853+03	2021-05-23 04:18:05.863+03	
45c78cd8-bb34-2ab4-c055-96ec61f5c67c	2021-05-23 04:18:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:18:26.852+03	2021-05-23 04:18:26.871+03	
59e83748-3c42-36b7-7388-9cc923678681	2021-05-23 04:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:18:47.852+03	2021-05-23 04:18:47.865+03	
2e4ee83d-393a-ff83-f157-569b8dd2f506	2021-05-23 04:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:19:07.853+03	2021-05-23 04:19:07.874+03	
832a90ae-91f9-19e3-6317-f8f1026a6344	2021-05-23 04:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:19:28.852+03	2021-05-23 04:19:28.859+03	
62303d5c-e647-d4e2-c508-977327fd61f9	2021-05-23 04:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:19:58.853+03	2021-05-23 04:19:58.86+03	
a0b779f9-c514-8fa5-c4da-c476fc73bec9	2021-05-23 04:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:20:08.853+03	2021-05-23 04:20:08.861+03	
9b7a82ac-b753-ee85-a34c-2cdd3e95e5bb	2021-05-23 04:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:20:29.853+03	2021-05-23 04:20:29.862+03	
7583c332-0646-27df-b3c4-a9541370608c	2021-05-23 04:20:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:20:49.853+03	2021-05-23 04:20:49.868+03	
67de3d3b-7974-e6a1-e5cc-9760d9944b15	2021-05-23 04:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:21:10.852+03	2021-05-23 04:21:10.859+03	
dbc33f87-5b75-cff1-ca0e-c2b00c1b8d50	2021-05-23 04:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:21:31.853+03	2021-05-23 04:21:31.859+03	
79ec5e2b-266f-06b9-cde1-e265b4c72241	2021-05-23 04:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:21:52.852+03	2021-05-23 04:21:52.86+03	
27ffe21d-80d3-e0a4-efe0-785d2652cf4d	2021-05-23 04:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:22:12.852+03	2021-05-23 04:22:12.859+03	
e9781df1-b4d9-f1c3-a65f-52649a1230b2	2021-05-23 04:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:22:32.853+03	2021-05-23 04:22:32.86+03	
0c4e06ce-6d5a-cc03-626f-768718789407	2021-05-23 04:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:22:53.853+03	2021-05-23 04:22:53.866+03	
a6af2eb0-6d4b-2dc8-64bd-b2b030676a87	2021-05-23 04:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:23:14.852+03	2021-05-23 04:23:14.86+03	
b518568f-2309-fafc-584e-e6489ce48406	2021-05-23 04:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:23:34.852+03	2021-05-23 04:23:34.86+03	
ac0fd69f-d7a2-3364-e348-fe95da33ad42	2021-05-23 04:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:23:54.852+03	2021-05-23 04:23:54.86+03	
26d494fd-91c5-6eaf-12b2-11bbb3540d10	2021-05-23 04:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:24:14.853+03	2021-05-23 04:24:14.873+03	
8cf88e89-a350-ba7e-0872-04a8a406b378	2021-05-23 04:24:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:24:34.853+03	2021-05-23 04:24:34.859+03	
bba93328-e39e-e2cb-0c36-7be376f659db	2021-05-23 04:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:24:55.852+03	2021-05-23 04:24:55.88+03	
e12cc804-d7cd-9a61-7023-dd51e8f51323	2021-05-23 04:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:24:45.852+03	2021-05-23 04:24:45.861+03	
dc73a85f-2c19-5759-6e91-809783c1fb32	2021-05-23 04:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:25:05.853+03	2021-05-23 04:25:05.871+03	
85ff9449-b995-cc6b-b6d0-b39a57235ce9	2021-05-23 04:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:25:25.853+03	2021-05-23 04:25:25.87+03	
bdefa6ff-a949-a2e6-be31-453a1f2d5a51	2021-05-23 04:25:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:25:46.852+03	2021-05-23 04:25:46.859+03	
23ef8ffe-5514-5537-5bce-e5a3b7a331c6	2021-05-23 04:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:26:06.852+03	2021-05-23 04:26:06.859+03	
c0b2b534-a396-8927-0f8a-10e2cbb8e92b	2021-05-23 04:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:26:26.852+03	2021-05-23 04:26:26.872+03	
e5c824c5-3b2f-7612-ecd9-61a460bdc61a	2021-05-23 04:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:26:46.853+03	2021-05-23 04:26:46.86+03	
f4e2cd87-44f4-20e6-874a-cd0b638fab5e	2021-05-23 04:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:27:07.853+03	2021-05-23 04:27:07.864+03	
db1b6043-cc4e-ce6c-76b5-fe6e2534b978	2021-05-23 04:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:27:27.853+03	2021-05-23 04:27:27.861+03	
4ed1f972-d1b0-0ccb-72ae-7e515a9311ef	2021-05-23 04:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:27:48.853+03	2021-05-23 04:27:48.859+03	
673900cb-6bd1-3809-5df6-d2e538f41a1b	2021-05-23 04:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:28:09.853+03	2021-05-23 04:28:09.859+03	
fbd3ab11-beda-48e8-fd41-85c47f47220a	2021-05-23 04:28:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:28:31.853+03	2021-05-23 04:28:31.86+03	
f717ac93-43cd-0ee4-1d38-59fb4e60f509	2021-05-23 04:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:28:52.853+03	2021-05-23 04:28:52.859+03	
3ac5f1af-05b0-a312-14c0-48e437a9cab5	2021-05-23 04:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:29:13.852+03	2021-05-23 04:29:13.859+03	
3ccf6ba2-6b88-7d06-cc7b-5326319ee717	2021-05-23 04:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:29:33.852+03	2021-05-23 04:29:33.859+03	
bcf949c7-1ce7-ad51-42c7-cd2f820a86bc	2021-05-23 04:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:29:53.853+03	2021-05-23 04:29:53.859+03	
65bae21c-7f7a-8297-63ca-8157b1d96fa1	2021-05-23 04:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:30:03.853+03	2021-05-23 04:30:03.86+03	
a0744ae5-8ef8-c4a1-84eb-f54aae454458	2021-05-23 04:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:30:24.853+03	2021-05-23 04:30:24.86+03	
22c12a79-1ffb-46d3-fc3b-f1451427227b	2021-05-23 04:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:30:44.853+03	2021-05-23 04:30:44.859+03	
74bf5406-bfa6-909f-19c4-23a68f32e1c2	2021-05-23 04:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:31:04.853+03	2021-05-23 04:31:04.86+03	
3a8e995f-0aaf-165e-bfb5-2ddd4bdcaba7	2021-05-23 04:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:31:25.853+03	2021-05-23 04:31:25.876+03	
38199fbe-eed5-4090-c2ab-0acb17c83268	2021-05-23 04:31:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:31:46.852+03	2021-05-23 04:31:46.87+03	
ad136055-d4de-74e4-5cfb-23397fc4a343	2021-05-23 04:32:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:32:06.853+03	2021-05-23 04:32:06.861+03	
40cce8df-abbb-56eb-e351-313591396e60	2021-05-23 04:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:32:27.853+03	2021-05-23 04:32:27.861+03	
ba5b556a-ca4c-afd9-6075-1dfabba4bbe6	2021-05-23 04:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:32:48.852+03	2021-05-23 04:32:48.861+03	
91ea58a2-a0b5-bacf-0f19-74d626cf2991	2021-05-23 04:33:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:33:09.853+03	2021-05-23 04:33:09.86+03	
ec05135a-1777-1b8b-9a91-2d454c2767e8	2021-05-23 04:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:33:29.853+03	2021-05-23 04:33:29.86+03	
b82c5519-0ed6-3e45-898d-d773486e69fa	2021-05-23 04:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:33:49.853+03	2021-05-23 04:33:49.859+03	
9efe0dd2-223e-93ca-3211-f19338af78f7	2021-05-23 04:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:34:10.852+03	2021-05-23 04:34:10.859+03	
a0c173ed-36e6-a382-4f55-825d2588b855	2021-05-23 04:34:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:34:31.852+03	2021-05-23 04:34:31.858+03	
d36b52c6-0149-dc3c-6375-9d1963eba423	2021-05-23 04:34:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:34:51.852+03	2021-05-23 04:34:51.859+03	
25bd4de6-08cf-50e1-73ea-70d9297277c3	2021-05-23 04:35:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:35:11.852+03	2021-05-23 04:35:11.861+03	
84ec6311-141e-184a-a1c1-ae57af443e43	2021-05-23 04:35:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:35:31.854+03	2021-05-23 04:35:31.861+03	
737669bd-6ebb-14e7-06a5-32d387a5a2f1	2021-05-23 04:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:35:52.853+03	2021-05-23 04:35:52.859+03	
d319f689-7f2b-69f0-4cd9-dba6794d29ec	2021-05-23 04:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:36:14.852+03	2021-05-23 04:36:14.859+03	
8ed95a38-26d3-b33f-3818-9615103d1849	2021-05-23 04:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:36:34.853+03	2021-05-23 04:36:34.86+03	
4ec40dde-f6d6-78bd-a9f3-41a4b2975377	2021-05-23 04:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:36:54.853+03	2021-05-23 04:36:54.86+03	
81a2be73-9062-742b-29a5-152ce1b6f19c	2021-05-23 04:37:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:37:14.853+03	2021-05-23 04:37:14.86+03	
8f9c500d-b0dc-776e-e3a5-09b4718137c0	2021-05-23 04:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:37:34.853+03	2021-05-23 04:37:34.86+03	
c4b83479-7ffe-e2aa-fd3d-252b01b3ac3c	2021-05-23 04:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:37:54.853+03	2021-05-23 04:37:54.859+03	
7f8a3298-5f83-ab7d-104d-82accafb636a	2021-05-23 04:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:38:15.853+03	2021-05-23 04:38:15.86+03	
4eabc3de-487b-418b-0cef-48dbc4381e65	2021-05-23 04:38:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:38:36.852+03	2021-05-23 04:38:36.86+03	
8d2f109b-d753-6750-5ecf-c869e9eb7741	2021-05-23 04:38:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:38:56.853+03	2021-05-23 04:38:56.86+03	
6422ccd6-c1d3-aab7-a349-e85fef2d509b	2021-05-23 04:39:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:39:16.854+03	2021-05-23 04:39:16.873+03	
f0c79f7f-2dee-b600-f600-0678188b7bc1	2021-05-23 04:39:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:39:37.853+03	2021-05-23 04:39:37.861+03	
db85315c-f849-2647-74a1-b81fbc4f8b97	2021-05-23 04:39:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:39:58.853+03	2021-05-23 04:39:58.86+03	
459cb011-a0c0-f0d5-bc61-074243a32f76	2021-05-23 04:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:40:08.853+03	2021-05-23 04:40:08.86+03	
ba52c9be-88af-96e5-b42c-f59ccebe5c79	2021-05-23 04:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:40:28.853+03	2021-05-23 04:40:28.86+03	
cc089ac9-4b28-1aef-d420-39b590725b33	2021-05-23 04:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:40:48.853+03	2021-05-23 04:40:48.86+03	
a85c0de3-d953-d6bb-5e51-46b8987d91c8	2021-05-23 04:41:08.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:41:08.853+03	2021-05-23 04:41:08.87+03	
0b23897c-0816-0390-441a-64a6197c8e49	2021-05-23 04:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:41:29.852+03	2021-05-23 04:41:29.859+03	
f5ca8a61-c9bc-fa35-0f20-6692245ab4e8	2021-05-23 04:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:41:50.853+03	2021-05-23 04:41:50.861+03	
9cef37bc-0cd9-e975-2000-c06fe5d315c1	2021-05-23 04:42:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:42:11.854+03	2021-05-23 04:42:11.861+03	
2dba312b-ada5-c215-3f17-c3d2dbf499df	2021-05-23 04:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:42:32.853+03	2021-05-23 04:42:32.86+03	
010eaafe-45b2-7073-530d-5f05e5143886	2021-05-23 04:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:42:53.853+03	2021-05-23 04:42:53.859+03	
4c7961d9-6576-a905-3426-6b9bf62167b0	2021-05-23 04:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:43:14.853+03	2021-05-23 04:43:14.859+03	
de6219e9-91b7-0a92-2d95-17360e96dc87	2021-05-23 04:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:43:34.853+03	2021-05-23 04:43:34.86+03	
cd351b13-af1a-5e6b-f01c-9a3321d73378	2021-05-23 04:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:43:55.853+03	2021-05-23 04:43:55.872+03	
dfa10277-2282-83dc-b27d-d5fb16d46b79	2021-05-23 04:44:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:44:16.852+03	2021-05-23 04:44:16.859+03	
44abd0ef-62d6-6302-1ece-94f8556b3484	2021-05-23 04:44:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:44:36.853+03	2021-05-23 04:44:36.859+03	
3844ac5f-99e6-8fdc-98ad-6eb780c3d2ad	2021-05-23 04:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:44:57.853+03	2021-05-23 04:44:57.86+03	
c5e6ae15-0554-912e-b09f-ed2e237fe9ca	2021-05-23 04:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:45:18.853+03	2021-05-23 04:45:18.86+03	
90b9d2a1-a81a-cd1d-9ac4-fbadc11ff886	2021-05-23 04:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:45:39.853+03	2021-05-23 04:45:39.86+03	
38f17817-9ae2-61f8-9a88-4e12430bbcfa	2021-05-23 04:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:25:15.853+03	2021-05-23 04:25:15.862+03	
36b42188-9144-6a85-475c-ec0c0bd2fa7d	2021-05-23 04:25:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:25:36.852+03	2021-05-23 04:25:36.859+03	
743a2f3d-c9e0-953c-9340-c78dc85d669b	2021-05-23 04:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:25:56.852+03	2021-05-23 04:25:56.86+03	
71c6d338-02f4-16e9-851e-24cc0b8961e9	2021-05-23 04:26:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:26:16.852+03	2021-05-23 04:26:16.882+03	
a8515828-5a42-adbc-c45f-9ac8290c854f	2021-05-23 04:26:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:26:36.853+03	2021-05-23 04:26:36.862+03	
e2235657-0f2e-993b-dac9-daa798a607ad	2021-05-23 04:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:26:57.853+03	2021-05-23 04:26:57.868+03	
7ac43c20-46a4-90b2-a888-a05c7d0dc0b6	2021-05-23 04:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:27:17.853+03	2021-05-23 04:27:17.859+03	
daaa34a9-8b86-d642-06ea-9a1266fcfea4	2021-05-23 04:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:27:38.853+03	2021-05-23 04:27:38.86+03	
813641e6-e131-417b-bf44-e56bd612f405	2021-05-23 04:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:27:59.853+03	2021-05-23 04:27:59.862+03	
3c5e1220-21c8-c725-36b0-ab8ea4593018	2021-05-23 04:28:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:28:20.853+03	2021-05-23 04:28:20.859+03	
cd5cb5b8-066b-29f2-d0cb-3aaf4f4cef87	2021-05-23 04:28:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:28:41.854+03	2021-05-23 04:28:41.866+03	
0eb6ddd6-5c5a-e90c-072f-376cd8f4fd46	2021-05-23 04:29:02.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:29:02.859+03	2021-05-23 04:29:02.866+03	
1c019922-c22c-dcd6-b6bf-22827ea664f0	2021-05-23 04:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:29:23.852+03	2021-05-23 04:29:23.872+03	
44e7d1ef-f1a8-84ec-a335-a3f58a1c9852	2021-05-23 04:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:29:43.852+03	2021-05-23 04:29:43.862+03	
82744dca-44ed-6349-2f8e-9ace259ab284	2021-05-23 04:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 04:30:00.853+03	2021-05-23 04:30:00.857+03	ERROR
e2035c9f-30e0-90fd-75b9-db1fef097c64	2021-05-23 04:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:30:13.853+03	2021-05-23 04:30:13.86+03	
ff0ead97-25b1-7dae-164c-80b5922f16cd	2021-05-23 04:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:30:34.853+03	2021-05-23 04:30:34.859+03	
d14091d4-2f9e-bd2f-18c6-73274ba3183e	2021-05-23 04:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:30:54.853+03	2021-05-23 04:30:54.86+03	
663c1ef8-1082-764f-14e2-1835f5a1d8f2	2021-05-23 04:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:31:15.852+03	2021-05-23 04:31:15.859+03	
4033279a-4a37-b249-6626-2f48428de194	2021-05-23 04:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:31:36.852+03	2021-05-23 04:31:36.86+03	
d2601d59-47d1-4f39-474e-862d8ee717c7	2021-05-23 04:31:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:31:56.853+03	2021-05-23 04:31:56.861+03	
09b41e50-dec4-2724-74d2-41d51f953b01	2021-05-23 04:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:32:17.853+03	2021-05-23 04:32:17.861+03	
17e8ec07-5f58-7ba9-2133-17d0862b4204	2021-05-23 04:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:32:38.852+03	2021-05-23 04:32:38.87+03	
de62f312-1dd9-cf7f-8662-7aa86021b19e	2021-05-23 04:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:32:58.853+03	2021-05-23 04:32:58.86+03	
48701901-72b1-5e33-1c44-5fa0ddcf95b2	2021-05-23 04:33:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:33:19.853+03	2021-05-23 04:33:19.862+03	
a3e28a93-eaae-c38b-a64d-bc045e0b4a5a	2021-05-23 04:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:33:39.853+03	2021-05-23 04:33:39.86+03	
895d3f10-70b5-6055-0b5d-0c608a4b6b4a	2021-05-23 04:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:33:59.853+03	2021-05-23 04:33:59.86+03	
ce873861-d4a6-2c6b-874d-967ecbd3c595	2021-05-23 04:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:34:20.853+03	2021-05-23 04:34:20.859+03	
c4bbab8b-99af-2d1d-d982-7658069e529b	2021-05-23 04:34:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:34:41.852+03	2021-05-23 04:34:41.859+03	
e2afc370-f5b5-b3e3-5051-cd8b9504280c	2021-05-23 04:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:35:01.852+03	2021-05-23 04:35:01.88+03	
775ea690-a4d0-1376-6447-a91867fd5242	2021-05-23 04:35:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:35:21.854+03	2021-05-23 04:35:21.86+03	
c3967d41-55d7-dc3a-559f-b19a08586f9a	2021-05-23 04:35:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:35:42.853+03	2021-05-23 04:35:42.862+03	
ab8b6645-ffca-abdc-2286-ed03522d2979	2021-05-23 04:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:36:03.853+03	2021-05-23 04:36:03.865+03	
78a33da9-425a-ae89-c456-626767adacdc	2021-05-23 04:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:36:24.853+03	2021-05-23 04:36:24.859+03	
ba4ab64f-7002-596d-109c-21f82a377e40	2021-05-23 04:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:36:44.853+03	2021-05-23 04:36:44.86+03	
2e0bb3a9-ddef-0ccc-6ca4-aaecc2d10ed2	2021-05-23 04:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:37:04.853+03	2021-05-23 04:37:04.859+03	
eadba6ce-e9ef-ba61-69f4-98fa79575065	2021-05-23 04:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:37:24.853+03	2021-05-23 04:37:24.859+03	
7f473317-f2e9-4ca3-246c-977431cb3634	2021-05-23 04:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:37:44.853+03	2021-05-23 04:37:44.859+03	
692b0c0b-6d71-d663-b2e5-97840e3552ca	2021-05-23 04:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:38:05.853+03	2021-05-23 04:38:05.859+03	
b8eebae8-9a25-96c5-579d-ac55e0940462	2021-05-23 04:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:38:26.852+03	2021-05-23 04:38:26.86+03	
3a44a7ff-de12-20f1-223d-e2649af037e1	2021-05-23 04:38:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:38:46.852+03	2021-05-23 04:38:46.861+03	
ed992328-0e69-1b03-b81b-825b4884f87b	2021-05-23 04:39:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:39:06.853+03	2021-05-23 04:39:06.882+03	
5f7901ab-f335-160f-ee87-f70a522a9d85	2021-05-23 04:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:39:27.852+03	2021-05-23 04:39:27.859+03	
725706a3-1e6f-42f3-81ff-fd70e390a0e8	2021-05-23 04:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:39:48.852+03	2021-05-23 04:39:48.859+03	
366b265a-3510-da5a-99b8-cca7045a0e93	2021-05-23 04:40:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 04:40:00.853+03	2021-05-23 04:40:00.868+03	ERROR
a90b3947-978c-00d3-b942-b34536afd573	2021-05-23 04:40:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:40:18.853+03	2021-05-23 04:40:18.877+03	
0ee25fca-85f7-9f5c-5828-2478f7f1da6e	2021-05-23 04:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:40:38.853+03	2021-05-23 04:40:38.862+03	
b183a900-4694-1ddf-e3fd-80abeb321bb1	2021-05-23 04:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:40:58.853+03	2021-05-23 04:40:58.859+03	
8e97cf6e-df70-db4e-ab6c-3f7e248998fd	2021-05-23 04:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:41:19.852+03	2021-05-23 04:41:19.859+03	
4fd1a744-6715-1d23-0ebf-262e92f7a014	2021-05-23 04:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:41:39.853+03	2021-05-23 04:41:39.859+03	
5444ee8a-c7c7-e423-3f15-e7a9fcf55b1a	2021-05-23 04:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:42:00.853+03	2021-05-23 04:42:00.86+03	
4c7dc7bf-5cba-2db7-c429-69eaeba2aa0d	2021-05-23 04:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:42:22.852+03	2021-05-23 04:42:22.865+03	
af4d5b7c-3017-4f1b-6e9c-12688872befc	2021-05-23 04:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:42:42.853+03	2021-05-23 04:42:42.859+03	
ebb396ef-50c9-086a-62de-7b8b3c50695a	2021-05-23 04:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:43:03.853+03	2021-05-23 04:43:03.859+03	
f7c4c602-bf7f-7d78-113d-18f358c42958	2021-05-23 04:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:43:24.853+03	2021-05-23 04:43:24.86+03	
7bb7036e-dc2d-47b2-c13e-0bdc9d4b4448	2021-05-23 04:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:43:45.852+03	2021-05-23 04:43:45.864+03	
3b3c1cf8-ecbf-8e48-131c-42e11076f9fd	2021-05-23 04:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:44:05.853+03	2021-05-23 04:44:05.872+03	
91cce0cc-03b1-b2d9-634b-cacc774348cf	2021-05-23 04:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:44:26.853+03	2021-05-23 04:44:26.862+03	
2d6fbbf6-a4b6-cfa2-cb40-2744e08a6bfa	2021-05-23 04:44:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:44:46.853+03	2021-05-23 04:44:46.859+03	
8e9fb5ff-2f5a-4b8a-7bdb-abfa9b6bd33a	2021-05-23 04:45:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:45:07.853+03	2021-05-23 04:45:07.86+03	
d3adcb6d-fae4-79c6-4028-b37f7d7c0df6	2021-05-23 04:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:45:29.853+03	2021-05-23 04:45:29.862+03	
8ddba8e9-80d1-28fb-b034-828ffd4758e1	2021-05-23 04:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:45:50.853+03	2021-05-23 04:45:50.859+03	
c6375432-0660-0704-a353-d1d65d208fd3	2021-05-23 04:46:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:46:11.853+03	2021-05-23 04:46:11.86+03	
5b50dc06-02d5-cf3f-2a6e-cd5390189f63	2021-05-23 04:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:46:01.852+03	2021-05-23 04:46:01.859+03	
053b0f52-c7d4-2b15-013d-03618d2834c4	2021-05-23 04:46:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:46:21.853+03	2021-05-23 04:46:21.86+03	
00c7873c-739f-a356-7a7e-855cfb684449	2021-05-23 04:46:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:46:41.853+03	2021-05-23 04:46:41.859+03	
95ca8c4c-cbc7-d01d-57c2-40b3ab4299b2	2021-05-23 04:47:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:47:01.854+03	2021-05-23 04:47:01.86+03	
02116bf7-971f-268b-1d87-1fcf74a61864	2021-05-23 04:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:47:22.853+03	2021-05-23 04:47:22.859+03	
d4aa0545-5c14-51a4-4417-6be2dba7ec7f	2021-05-23 04:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:47:42.853+03	2021-05-23 04:47:42.859+03	
6f8ab26b-c8f4-c566-018d-9d7d56b13ca4	2021-05-23 04:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:48:03.853+03	2021-05-23 04:48:03.859+03	
79dcde82-ab27-29d4-eece-9f49452af0e1	2021-05-23 04:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:48:24.853+03	2021-05-23 04:48:24.859+03	
1daa4bf1-8365-9303-2ba6-fa2f99d0a93e	2021-05-23 04:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:48:45.853+03	2021-05-23 04:48:45.869+03	
ae8ab804-16af-5fce-cc51-edc17d47fe28	2021-05-23 04:49:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:49:07.852+03	2021-05-23 04:49:07.899+03	
95510f07-d80a-8cdc-6c57-3b5c710f8f88	2021-05-23 04:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:49:27.853+03	2021-05-23 04:49:27.868+03	
f769b3ad-8955-7332-7b01-80ff33ce2eac	2021-05-23 04:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:49:48.852+03	2021-05-23 04:49:48.86+03	
bfa4977d-956e-29b3-35ce-ba8ba1948715	2021-05-23 04:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 04:50:00.852+03	2021-05-23 04:50:00.857+03	ERROR
09d123b0-b119-b639-15ad-e2891782e179	2021-05-23 04:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:50:19.853+03	2021-05-23 04:50:19.87+03	
02420ce0-42e5-c3ea-2e21-62ba58583623	2021-05-23 04:50:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:50:40.852+03	2021-05-23 04:50:40.872+03	
ec9bc21d-a3dd-7444-5769-0b66f9cf16eb	2021-05-23 04:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:51:00.853+03	2021-05-23 04:51:00.86+03	
bcd60e97-b818-bf94-e79f-0b5e2c3cacf6	2021-05-23 04:51:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:51:21.853+03	2021-05-23 04:51:21.86+03	
9775a93c-9156-cbe5-1265-f8544e428cf7	2021-05-23 04:51:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:51:41.853+03	2021-05-23 04:51:41.867+03	
3b1d12ef-039d-fe2b-a1c5-a0a087197cd5	2021-05-23 04:52:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:52:01.854+03	2021-05-23 04:52:01.862+03	
e0f25d03-517a-91ce-4aa5-e6e0bc46b174	2021-05-23 04:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:52:23.853+03	2021-05-23 04:52:23.859+03	
acd3af3e-6b9d-fdd6-680c-ef6082180b0d	2021-05-23 04:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:52:44.852+03	2021-05-23 04:52:44.859+03	
b014c1b9-65dc-981d-2742-bb5c538f5400	2021-05-23 04:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:53:04.853+03	2021-05-23 04:53:04.874+03	
851fa79c-ce23-515d-2111-062cf47e6ebe	2021-05-23 04:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:53:24.853+03	2021-05-23 04:53:24.86+03	
2b01a190-814b-de3d-ea6e-a700dc9ea085	2021-05-23 04:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:53:45.853+03	2021-05-23 04:53:45.86+03	
d97ea42b-5f5e-bb39-f48a-d2bdacd20292	2021-05-23 04:54:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:54:06.852+03	2021-05-23 04:54:06.859+03	
176bb271-3972-5739-a7fd-a24b2ddbd963	2021-05-23 04:54:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:54:26.853+03	2021-05-23 04:54:26.868+03	
06c6cee5-b2cf-3e5a-a667-1950860ace28	2021-05-23 04:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:54:47.853+03	2021-05-23 04:54:47.859+03	
f66e049b-8a01-b2f2-5b7b-c8f20faa5def	2021-05-23 04:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:55:08.852+03	2021-05-23 04:55:08.861+03	
12fa7e33-0f5b-3a07-1289-083778b3d322	2021-05-23 04:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:55:28.853+03	2021-05-23 04:55:28.861+03	
6d38483c-ce1b-edeb-c51f-55e6d350e425	2021-05-23 04:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:55:49.853+03	2021-05-23 04:55:49.859+03	
75a77110-856a-feb7-96ae-4775377810c3	2021-05-23 04:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:56:10.852+03	2021-05-23 04:56:10.859+03	
7f4c41bb-036c-2d58-bd82-239b7fcb76d2	2021-05-23 04:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:56:30.853+03	2021-05-23 04:56:30.86+03	
486902c0-fb82-0a89-f7de-703b1e7ea687	2021-05-23 04:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:56:52.853+03	2021-05-23 04:56:52.861+03	
00f1798c-7b65-20c6-5f8f-49884d2245bd	2021-05-23 04:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:57:13.853+03	2021-05-23 04:57:13.858+03	
76c97a3f-7086-b31e-c4dd-26a0d196a084	2021-05-23 04:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:57:34.853+03	2021-05-23 04:57:34.859+03	
f34828c4-5d89-5e15-b90d-840ed6c23a15	2021-05-23 04:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:57:54.853+03	2021-05-23 04:57:54.872+03	
09fe003c-8c3a-dec8-a486-17621468b88c	2021-05-23 04:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:58:14.853+03	2021-05-23 04:58:14.859+03	
2bf5aa45-bc10-3f2a-09dc-88ac072d3e9f	2021-05-23 04:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:58:34.853+03	2021-05-23 04:58:34.86+03	
40646213-b5b6-ac38-a5ea-ceda0eb093ea	2021-05-23 04:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:58:54.853+03	2021-05-23 04:58:54.86+03	
8d779357-1e38-46e8-232a-aef2f37f9540	2021-05-23 04:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:59:15.853+03	2021-05-23 04:59:15.871+03	
9022e6ab-c99e-fe33-32a0-3c9e1027643c	2021-05-23 04:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:59:35.853+03	2021-05-23 04:59:35.874+03	
67cf94ff-109e-1123-af2b-91b718df1d70	2021-05-23 04:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:59:55.853+03	2021-05-23 04:59:55.874+03	
84ec67e6-18d2-be62-d8af-a0decba445a0	2021-05-23 05:00:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:00:05.853+03	2021-05-23 05:00:05.864+03	
04862563-3eaa-ba5d-4b2b-571d8a8f8198	2021-05-23 05:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:00:25.853+03	2021-05-23 05:00:25.894+03	
e9872a6f-121c-f47e-8864-df4939fe0095	2021-05-23 05:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:00:45.853+03	2021-05-23 05:00:45.861+03	
99eae590-d5ef-151e-a861-bee4af892ea2	2021-05-23 05:01:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:01:06.853+03	2021-05-23 05:01:06.877+03	
efc9a9cd-12eb-2e78-357c-39597c52eba5	2021-05-23 05:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:01:27.853+03	2021-05-23 05:01:27.859+03	
411f28ec-62f7-55ea-ec56-8b38ef671c02	2021-05-23 05:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:01:48.853+03	2021-05-23 05:01:48.859+03	
d037d200-2741-6c21-bffa-05920549a385	2021-05-23 05:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:02:09.853+03	2021-05-23 05:02:09.859+03	
90aa64a0-185c-5106-d069-6f086da98f2f	2021-05-23 05:02:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:02:29.853+03	2021-05-23 05:02:29.859+03	
d07a309e-670f-42ce-3545-6f72219e19f0	2021-05-23 05:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:02:50.852+03	2021-05-23 05:02:50.86+03	
42f3555c-3593-0026-247d-6fa66e155b76	2021-05-23 05:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:03:10.853+03	2021-05-23 05:03:10.859+03	
f4f16af2-e0a3-b2a1-bf3a-550c13aa9b32	2021-05-23 05:03:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:03:31.853+03	2021-05-23 05:03:31.859+03	
d460bf0f-cb19-c998-2306-614343842b66	2021-05-23 05:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:03:53.853+03	2021-05-23 05:03:53.859+03	
3f92f214-2090-8162-93a0-3120af26d43b	2021-05-23 05:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:04:13.853+03	2021-05-23 05:04:13.86+03	
5f466cb2-fec5-7401-d924-44efd3c16d87	2021-05-23 05:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:04:34.852+03	2021-05-23 05:04:34.868+03	
5dc9f506-b758-da52-085f-6615c79ff854	2021-05-23 05:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:04:54.853+03	2021-05-23 05:04:54.859+03	
0c4af660-ac37-c8f8-03b7-62b241a8c0a8	2021-05-23 05:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:05:15.852+03	2021-05-23 05:05:15.87+03	
cef507e5-56eb-431b-f2aa-f74a05bb0894	2021-05-23 05:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:05:35.853+03	2021-05-23 05:05:35.872+03	
fbc01d7b-6f3f-1554-3b91-21abcfbdb78a	2021-05-23 05:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:05:55.853+03	2021-05-23 05:05:55.862+03	
740e576d-d270-a5a3-f2ac-5f5551583022	2021-05-23 05:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:06:17.853+03	2021-05-23 05:06:17.86+03	
906fb9d5-599b-af61-8595-93d5ce5ec4fb	2021-05-23 05:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:06:38.853+03	2021-05-23 05:06:38.86+03	
11fa661a-0ddb-44dd-55d6-202266ef7999	2021-05-23 05:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:06:59.853+03	2021-05-23 05:06:59.86+03	
8cbc0803-01b2-d6dd-2395-0b1988b1e719	2021-05-23 04:46:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:46:31.853+03	2021-05-23 04:46:31.862+03	
ab1d8d3b-fbdc-9c29-8c59-f33127258b85	2021-05-23 04:46:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:46:51.853+03	2021-05-23 04:46:51.861+03	
5d37ff27-df82-68ec-aa47-8f1ecfe73ccc	2021-05-23 04:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:47:12.852+03	2021-05-23 04:47:12.859+03	
635feb7d-b607-b38b-df4d-a1f029a88b35	2021-05-23 04:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:47:32.853+03	2021-05-23 04:47:32.861+03	
a6a5f395-8d8c-a2bd-da05-1a415dd3003b	2021-05-23 04:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:47:53.852+03	2021-05-23 04:47:53.86+03	
ba149af0-e4b3-71ad-322f-5eefad643e1a	2021-05-23 04:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:48:14.853+03	2021-05-23 04:48:14.86+03	
6d795bd0-2ebc-7802-16f4-3acc27ec168f	2021-05-23 04:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:48:34.853+03	2021-05-23 04:48:34.859+03	
8b42ec7f-07bd-d151-ca5e-71820d321db1	2021-05-23 04:48:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:48:56.854+03	2021-05-23 04:48:56.924+03	
f213e2b7-c26a-5c74-dc91-a7c079e42b22	2021-05-23 04:49:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:49:17.853+03	2021-05-23 04:49:17.868+03	
334c5310-6daf-305c-0ff7-6c48c9c52b04	2021-05-23 04:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:49:37.853+03	2021-05-23 04:49:37.86+03	
d1208164-7db7-7081-3af7-e4319700c98d	2021-05-23 04:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:49:58.853+03	2021-05-23 04:49:58.859+03	
21a1916c-78a4-699b-a3f0-c7b3dd8d6eb0	2021-05-23 04:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:50:09.852+03	2021-05-23 04:50:09.858+03	
fd8cda81-2781-3528-b1e3-2b719aa814d2	2021-05-23 04:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:50:30.852+03	2021-05-23 04:50:30.858+03	
4082c713-b17e-747e-8bbf-42358c96fdd2	2021-05-23 04:50:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:50:50.853+03	2021-05-23 04:50:50.861+03	
40d2995b-8477-5498-ad42-87609303fab6	2021-05-23 04:51:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:51:11.853+03	2021-05-23 04:51:11.86+03	
42814669-3de1-298d-f867-067a32a8e46e	2021-05-23 04:51:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:51:31.853+03	2021-05-23 04:51:31.86+03	
4705f661-2db9-6b35-c069-d58a108f2ecf	2021-05-23 04:51:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:51:51.854+03	2021-05-23 04:51:51.86+03	
61da01d1-816b-e2c4-b0cd-de0105fa6066	2021-05-23 04:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:52:12.853+03	2021-05-23 04:52:12.859+03	
d4ebb74b-15b7-1bc9-f3d4-8ffebddba77f	2021-05-23 04:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:52:33.853+03	2021-05-23 04:52:33.859+03	
57d2aecb-f96a-f5b5-08f0-80d61b7e81a4	2021-05-23 04:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:52:54.853+03	2021-05-23 04:52:54.861+03	
2014feca-b0c8-92da-f62e-fe3940b8a188	2021-05-23 04:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:53:14.853+03	2021-05-23 04:53:14.86+03	
32559a0e-54dd-8fe1-61e8-76b5c8f885e5	2021-05-23 04:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:53:34.853+03	2021-05-23 04:53:34.86+03	
c8deb9a3-576c-447e-2a1e-ff9cb9e7bcbf	2021-05-23 04:53:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:53:56.852+03	2021-05-23 04:53:56.859+03	
34140694-bc8b-5268-332e-a243e42a7238	2021-05-23 04:54:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:54:16.853+03	2021-05-23 04:54:16.86+03	
7eb97381-7edd-13e7-9122-c333144b4e82	2021-05-23 04:54:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:54:37.853+03	2021-05-23 04:54:37.862+03	
2dea4136-ff95-2d6f-7ece-07aef11b82f0	2021-05-23 04:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:54:58.852+03	2021-05-23 04:54:58.861+03	
8bd197f6-53dd-9cd6-ceec-306dfae7bb13	2021-05-23 04:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:55:18.853+03	2021-05-23 04:55:18.86+03	
40394249-eeef-ad28-f780-80dcf7a830a2	2021-05-23 04:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:55:39.853+03	2021-05-23 04:55:39.86+03	
a23b559b-1a70-c735-943a-2a2b977802ed	2021-05-23 04:55:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:55:59.853+03	2021-05-23 04:55:59.86+03	
9a3b0504-8e9b-8da7-2274-4a005942eded	2021-05-23 04:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:56:20.853+03	2021-05-23 04:56:20.863+03	
7b5ef1b1-74d0-5d03-1739-1b673f7daee9	2021-05-23 04:56:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:56:41.854+03	2021-05-23 04:56:41.861+03	
8d51b597-5ad8-a7c1-dd93-58bbbb139194	2021-05-23 04:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:57:03.853+03	2021-05-23 04:57:03.86+03	
d20fdf75-9079-7de7-7980-df7d3202f6d3	2021-05-23 04:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:57:23.853+03	2021-05-23 04:57:23.859+03	
234b46bd-a7c9-631b-acc5-ddaa08cbc435	2021-05-23 04:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:57:44.853+03	2021-05-23 04:57:44.859+03	
c91c836e-8618-752d-8b88-8f0015bb87d8	2021-05-23 04:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:58:04.853+03	2021-05-23 04:58:04.86+03	
19e3457f-3d52-5515-3458-bab093802fa1	2021-05-23 04:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:58:24.853+03	2021-05-23 04:58:24.861+03	
27d22467-db9f-f458-730d-783dd3eb2d2c	2021-05-23 04:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:58:44.853+03	2021-05-23 04:58:44.86+03	
6c3deb8d-d42c-ef89-e9ba-09a2e2f88760	2021-05-23 04:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:59:05.852+03	2021-05-23 04:59:05.859+03	
54967cf4-1de9-3565-a94a-2f5c3e208e9a	2021-05-23 04:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:59:25.853+03	2021-05-23 04:59:25.86+03	
33ad306e-cd90-6ae6-7cda-3141e63bd80e	2021-05-23 04:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 04:59:45.853+03	2021-05-23 04:59:45.862+03	
0f0236d5-6fe4-8e10-b037-5d52d94fb1a9	2021-05-23 05:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 05:00:00.853+03	2021-05-23 05:00:00.857+03	ERROR
c639b58e-6732-5f51-75bd-8b3eb4631b4a	2021-05-23 05:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:00:15.853+03	2021-05-23 05:00:15.862+03	
da4b7f25-376b-7f7b-ebcd-45732acd01b3	2021-05-23 05:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:00:35.853+03	2021-05-23 05:00:35.871+03	
05fc8356-9c40-f1d0-5144-f1ecaf2f2b64	2021-05-23 05:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:00:55.853+03	2021-05-23 05:00:55.867+03	
ffa71202-a7bc-1d0f-8260-6bf1343ddffe	2021-05-23 05:01:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:01:16.853+03	2021-05-23 05:01:16.86+03	
8f8c286b-822b-a04a-ccd1-fc7281ffb875	2021-05-23 05:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:01:38.852+03	2021-05-23 05:01:38.859+03	
6b41d36d-3343-6d1f-b219-04c4eff36798	2021-05-23 05:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:01:59.853+03	2021-05-23 05:01:59.859+03	
b0af84a7-3e28-1810-0c71-123b6cc2149b	2021-05-23 05:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:02:19.853+03	2021-05-23 05:02:19.861+03	
02416299-eece-ed69-492c-aefa6373d828	2021-05-23 05:02:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:02:39.853+03	2021-05-23 05:02:39.87+03	
63f3ddd2-585b-32d5-a442-7343f48e837a	2021-05-23 05:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:03:00.852+03	2021-05-23 05:03:00.859+03	
b776ae89-8d52-7db4-86c4-fa3a49fd0ca8	2021-05-23 05:03:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:03:21.853+03	2021-05-23 05:03:21.861+03	
dd16a8e5-fca6-b123-a4a1-f74f8274df5f	2021-05-23 05:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:03:42.853+03	2021-05-23 05:03:42.86+03	
3f946c64-414e-3d2e-4bfe-e451d461d2ef	2021-05-23 05:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:04:03.853+03	2021-05-23 05:04:03.862+03	
17146199-2007-e6c3-36d9-76e1f54fb369	2021-05-23 05:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:04:23.853+03	2021-05-23 05:04:23.862+03	
40f92c65-7378-c885-24ac-6b45dad37d07	2021-05-23 05:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:04:44.852+03	2021-05-23 05:04:44.872+03	
0ca8d30d-16b5-da2a-ea60-b82f058e0c0e	2021-05-23 05:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:05:05.852+03	2021-05-23 05:05:05.873+03	
602a1d8d-79e7-769b-2dac-bf29f80f3cc7	2021-05-23 05:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:05:25.853+03	2021-05-23 05:05:25.86+03	
d5fbe0ff-3ece-f0f2-c664-7dce6ee7d657	2021-05-23 05:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:05:45.853+03	2021-05-23 05:05:45.86+03	
8d36bc78-f8f8-81b9-adc3-ee1ccf9de7a2	2021-05-23 05:06:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:06:06.853+03	2021-05-23 05:06:06.871+03	
c5f7970b-2ff0-4a5f-2366-82f071dbe03d	2021-05-23 05:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:06:28.853+03	2021-05-23 05:06:28.859+03	
f28817fa-20bc-d3de-ea8b-1de5dcc268a5	2021-05-23 05:06:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:06:49.853+03	2021-05-23 05:06:49.871+03	
865a4772-5def-79e9-d4f6-88252a5d1889	2021-05-23 05:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:07:09.853+03	2021-05-23 05:07:09.861+03	
655e3279-8aee-134a-be75-14887527ed33	2021-05-23 05:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:07:30.853+03	2021-05-23 05:07:30.862+03	
97dc0ff0-8c64-2114-0bd8-1f605ca960f7	2021-05-23 05:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:07:20.853+03	2021-05-23 05:07:20.872+03	
7b7927ce-ea89-9dd5-a29f-c18773a2265d	2021-05-23 05:07:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:07:40.853+03	2021-05-23 05:07:40.86+03	
83a498d6-2613-1e57-f3e2-af6db542b620	2021-05-23 05:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:08:02.852+03	2021-05-23 05:08:02.859+03	
c583fd85-e8c5-2dca-cbb5-426c0fb4e015	2021-05-23 05:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:08:22.853+03	2021-05-23 05:08:22.86+03	
a9c51c3c-867a-df65-4f9b-5af38c2d28a5	2021-05-23 05:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:08:42.853+03	2021-05-23 05:08:42.861+03	
901e6e8a-f3aa-b0bc-b313-7093ea7a9041	2021-05-23 05:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:09:03.853+03	2021-05-23 05:09:03.859+03	
8a1198f3-ce2a-3f30-7e2a-40d287722a28	2021-05-23 05:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:09:23.853+03	2021-05-23 05:09:23.859+03	
a7b4a97f-141b-7984-7230-252dde187ba7	2021-05-23 05:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:09:44.852+03	2021-05-23 05:09:44.859+03	
c953c9cd-ce25-074a-3be3-86ad3ba30f9e	2021-05-23 05:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 05:10:00.853+03	2021-05-23 05:10:00.87+03	ERROR
fdac7efc-3702-e1cd-ee39-7c7080f287a7	2021-05-23 05:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:10:15.852+03	2021-05-23 05:10:15.858+03	
234712ae-6d4a-1efa-5e33-de3d49d9d985	2021-05-23 05:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:10:35.852+03	2021-05-23 05:10:35.86+03	
b5221e8f-d0a6-61b9-9801-36db84983a19	2021-05-23 05:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:10:55.853+03	2021-05-23 05:10:55.875+03	
4398c723-0ca3-bd3a-143a-be711019c17b	2021-05-23 05:11:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:11:16.854+03	2021-05-23 05:11:16.861+03	
d2a3fb8a-b71d-9419-1a04-788697ac21d7	2021-05-23 05:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:11:37.852+03	2021-05-23 05:11:37.859+03	
4c461a3a-821b-5e8e-0e9a-4258d3705163	2021-05-23 05:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:11:57.853+03	2021-05-23 05:11:57.859+03	
10553a1f-9d4e-5271-eb6d-467cc31dcea8	2021-05-23 05:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:12:18.852+03	2021-05-23 05:12:18.864+03	
6ce5e784-6564-8407-0560-81fe6d6d8cfe	2021-05-23 05:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:12:38.853+03	2021-05-23 05:12:38.86+03	
529800e6-4863-78e4-790d-1191d4e4fb08	2021-05-23 05:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:12:58.853+03	2021-05-23 05:12:58.86+03	
25631174-dbb1-cea9-bda4-71a5e6aca9a4	2021-05-23 05:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:13:18.853+03	2021-05-23 05:13:18.866+03	
ae3dc81c-9cc4-dcee-5816-74ad189c4ad5	2021-05-23 05:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:13:38.853+03	2021-05-23 05:13:38.86+03	
95191ad9-d4fe-a088-2029-6e6b4eaa5001	2021-05-23 05:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:13:59.853+03	2021-05-23 05:13:59.859+03	
b4b47504-0361-e439-e984-36bc138b998c	2021-05-23 05:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:14:19.853+03	2021-05-23 05:14:19.859+03	
3dfaddd7-941b-200d-49cb-0bf56a559dff	2021-05-23 05:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:14:39.853+03	2021-05-23 05:14:39.86+03	
9da68740-b0b5-11de-1f47-5afa16faa7fe	2021-05-23 05:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:15:00.853+03	2021-05-23 05:15:00.859+03	
565c01bd-682e-6967-f48a-937b73de5024	2021-05-23 05:15:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:15:21.853+03	2021-05-23 05:15:21.859+03	
885bae7a-f91e-6c35-ce90-9c557926fd25	2021-05-23 05:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:15:42.852+03	2021-05-23 05:15:42.859+03	
794d2ac3-2ea0-a89a-4b7f-1d8981534368	2021-05-23 05:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:16:02.852+03	2021-05-23 05:16:02.872+03	
a3b59a55-4e75-ddc2-f906-1cc250c4837b	2021-05-23 05:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:16:22.853+03	2021-05-23 05:16:22.86+03	
0c440c18-75b0-1c14-6396-98f99cca18a2	2021-05-23 05:16:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:16:43.853+03	2021-05-23 05:16:43.872+03	
c34a6120-7151-a74c-bf2c-9053b74ba524	2021-05-23 05:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:17:03.853+03	2021-05-23 05:17:03.859+03	
764c64b6-cd75-9412-eb21-7858072293c4	2021-05-23 05:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:17:24.853+03	2021-05-23 05:17:24.869+03	
5e6528cb-7485-76cb-4311-3ff0a4d45ea2	2021-05-23 05:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:17:45.853+03	2021-05-23 05:17:45.867+03	
d49bc615-d176-25d3-d2fc-eecff231a001	2021-05-23 05:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:18:05.853+03	2021-05-23 05:18:05.862+03	
9710405a-57e4-ea26-78dc-567fb6bc77a7	2021-05-23 05:18:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:18:26.853+03	2021-05-23 05:18:26.875+03	
33332cf5-876d-6ada-c84d-04ff5d3c5de2	2021-05-23 05:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:18:47.853+03	2021-05-23 05:18:47.861+03	
3f4ae2ca-bb13-b55a-5f17-76d187f7ca7e	2021-05-23 05:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:19:07.853+03	2021-05-23 05:19:07.86+03	
5e41ece7-5dfd-02a0-bd44-cf7cc6621674	2021-05-23 05:19:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:19:27.853+03	2021-05-23 05:19:27.859+03	
1f314e54-0453-3d52-365f-a5c61cbe4172	2021-05-23 05:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:19:48.852+03	2021-05-23 05:19:48.859+03	
eca0c967-d603-4d11-1780-35d3165145cd	2021-05-23 05:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 05:20:00.853+03	2021-05-23 05:20:00.858+03	ERROR
d7cefd34-b9a3-363c-8ae9-0e441171aeb0	2021-05-23 05:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:20:18.853+03	2021-05-23 05:20:18.864+03	
b0efa3a5-9938-2bac-8121-04b706138ecb	2021-05-23 05:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:20:40.853+03	2021-05-23 05:20:40.86+03	
cc48f5a1-ef5a-984d-aaca-670833f24bc9	2021-05-23 05:21:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:21:01.852+03	2021-05-23 05:21:01.859+03	
e5ec875c-34e8-e817-b416-7ae030314fba	2021-05-23 05:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:21:22.853+03	2021-05-23 05:21:22.859+03	
2829f8c3-3469-e3b2-c3ae-b1211d2021d7	2021-05-23 05:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:21:43.853+03	2021-05-23 05:21:43.861+03	
2b4489f1-d963-b642-7780-382329965ceb	2021-05-23 05:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:22:04.852+03	2021-05-23 05:22:04.86+03	
90da3e17-900f-0682-afd7-f90a007598cd	2021-05-23 05:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:22:25.852+03	2021-05-23 05:22:25.86+03	
834aad59-1c5a-21b8-5fcb-993e4c4e6797	2021-05-23 05:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:22:45.853+03	2021-05-23 05:22:45.865+03	
5e7ae568-e9c3-5128-2deb-1b2bfb2e6a3c	2021-05-23 05:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:23:07.853+03	2021-05-23 05:23:07.871+03	
24ddb927-7eb0-f4e0-4325-69077c41e380	2021-05-23 05:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:23:27.853+03	2021-05-23 05:23:27.86+03	
6b7f5c61-d559-cf39-9847-c2cecad0dba0	2021-05-23 05:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:23:48.852+03	2021-05-23 05:23:48.859+03	
2f82270c-3385-6111-1a10-f41a66ebb9a5	2021-05-23 05:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:24:08.852+03	2021-05-23 05:24:08.86+03	
dacb8013-7fd3-cae1-2d01-b81c00ff5cdf	2021-05-23 05:24:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:24:28.852+03	2021-05-23 05:24:28.86+03	
0bfac197-461b-7c62-cdde-9eedba82e90f	2021-05-23 05:24:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:24:49.852+03	2021-05-23 05:24:49.86+03	
49a5a4c6-f6be-bf48-af5a-ac1fe1eb2297	2021-05-23 05:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:25:09.853+03	2021-05-23 05:25:09.859+03	
11a5b7d7-1cf7-0ace-5727-68d72e3d4688	2021-05-23 05:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:25:29.853+03	2021-05-23 05:25:29.859+03	
38645fff-6671-2bc0-e388-320bca817d20	2021-05-23 05:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:25:50.852+03	2021-05-23 05:25:50.858+03	
eb7a9107-9d82-6f3f-bec7-68d27e262ba8	2021-05-23 05:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:26:10.852+03	2021-05-23 05:26:10.859+03	
b8f3d1be-16e6-842e-550d-0a1e61c3c793	2021-05-23 05:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:26:30.853+03	2021-05-23 05:26:30.859+03	
24b9aef2-baac-7aa1-062d-809fb8996eeb	2021-05-23 05:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:26:52.853+03	2021-05-23 05:26:52.86+03	
b48fa7c5-5e1c-b437-12ac-b8f1fdf5c226	2021-05-23 05:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:27:12.853+03	2021-05-23 05:27:12.859+03	
f0765488-b1d9-6d77-0730-0f3a119b65ef	2021-05-23 05:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:27:33.852+03	2021-05-23 05:27:33.858+03	
ebfa0b15-a9c1-5379-fd9a-8a4707589007	2021-05-23 05:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:27:53.852+03	2021-05-23 05:27:53.858+03	
0e61623e-2fb1-ed0c-af6d-90a1a3ad9782	2021-05-23 05:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:28:13.853+03	2021-05-23 05:28:13.861+03	
0d0b1ebd-cc34-a200-de83-05b96c075fdb	2021-05-23 05:07:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:07:51.854+03	2021-05-23 05:07:51.867+03	
84571aa6-d87f-8bf2-880a-7eb6b7315468	2021-05-23 05:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:08:12.853+03	2021-05-23 05:08:12.902+03	
30a5f848-6312-8c05-2fb1-fc9e5fa37e2d	2021-05-23 05:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:08:32.853+03	2021-05-23 05:08:32.871+03	
38eea624-7a5c-a349-7679-c61107eb3dfe	2021-05-23 05:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:08:53.853+03	2021-05-23 05:08:53.859+03	
3f11bdaa-30be-a90f-b5db-8088d81de7c7	2021-05-23 05:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:09:13.853+03	2021-05-23 05:09:13.86+03	
d1a9032c-bb9d-9788-c17b-aeea5180bda2	2021-05-23 05:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:09:33.853+03	2021-05-23 05:09:33.87+03	
b9a1450f-25a7-775f-eae3-ef03e91fe232	2021-05-23 05:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:09:54.853+03	2021-05-23 05:09:54.867+03	
de214b70-9976-66c0-3045-2a40b1183259	2021-05-23 05:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:10:05.852+03	2021-05-23 05:10:05.859+03	
abb66acd-f201-aa6d-00a5-831ab9fb4a18	2021-05-23 05:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:10:25.852+03	2021-05-23 05:10:25.859+03	
700ca6e7-3caa-7886-13c6-392eb2d6983f	2021-05-23 05:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:10:45.853+03	2021-05-23 05:10:45.87+03	
992f8026-9c45-cf09-ab15-863f21d2e62a	2021-05-23 05:11:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:11:06.854+03	2021-05-23 05:11:06.86+03	
a3eaab20-6181-24aa-5e3e-cc09b76c96eb	2021-05-23 05:11:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:11:26.854+03	2021-05-23 05:11:26.861+03	
af7782b6-e86b-20f5-4af8-2e2fc407477e	2021-05-23 05:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:11:47.853+03	2021-05-23 05:11:47.858+03	
f8648860-0cd6-7088-e1da-a87ef39dd060	2021-05-23 05:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:12:07.853+03	2021-05-23 05:12:07.872+03	
502cc1ee-17c8-6f31-801a-843e0e37df99	2021-05-23 05:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:12:28.852+03	2021-05-23 05:12:28.863+03	
baca8666-54b6-c1bb-dd42-a366c26b66ef	2021-05-23 05:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:12:48.853+03	2021-05-23 05:12:48.86+03	
55e73860-9215-4838-b062-e891c1ad5feb	2021-05-23 05:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:13:08.853+03	2021-05-23 05:13:08.861+03	
ddcd1530-3793-d485-3540-267066232c03	2021-05-23 05:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:13:28.853+03	2021-05-23 05:13:28.859+03	
5d6defe1-a690-3cda-628d-a00822b915ec	2021-05-23 05:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:13:49.853+03	2021-05-23 05:13:49.859+03	
4bd28d31-3b74-68ac-11a2-ad78d2ee39bd	2021-05-23 05:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:14:09.853+03	2021-05-23 05:14:09.86+03	
fe249644-e68d-b7e9-96a4-b3416f98c067	2021-05-23 05:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:14:29.853+03	2021-05-23 05:14:29.86+03	
54a1fa8d-e326-c222-d97f-c71093c0ae05	2021-05-23 05:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:14:49.853+03	2021-05-23 05:14:49.86+03	
2b51eb12-5791-5c77-538a-2f4329b43043	2021-05-23 05:15:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:15:11.852+03	2021-05-23 05:15:11.859+03	
01674495-22c2-cbff-4820-724b476fef9a	2021-05-23 05:15:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:15:31.853+03	2021-05-23 05:15:31.859+03	
22e810d8-bbbb-751e-eb92-3338025302a0	2021-05-23 05:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:15:52.852+03	2021-05-23 05:15:52.858+03	
cf96eaec-f164-8915-68e1-5ef809a15302	2021-05-23 05:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:16:12.853+03	2021-05-23 05:16:12.86+03	
3d3dc110-1700-7790-8093-305d353b438c	2021-05-23 05:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:16:32.853+03	2021-05-23 05:16:32.862+03	
cc2c6fca-a7f1-37ca-7d64-cb8fe18a7497	2021-05-23 05:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:16:53.853+03	2021-05-23 05:16:53.861+03	
ad5fd83f-9946-0401-f4bd-b4190202c123	2021-05-23 05:17:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:17:14.853+03	2021-05-23 05:17:14.861+03	
d8f163fb-6f82-1681-33d8-2bf023ebee39	2021-05-23 05:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:17:34.853+03	2021-05-23 05:17:34.859+03	
968a8bd8-6c2d-e93f-7488-8fa89022ba79	2021-05-23 05:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:17:55.853+03	2021-05-23 05:17:55.859+03	
4e51f6c5-7716-dcec-9f03-929800eab5cc	2021-05-23 05:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:18:16.852+03	2021-05-23 05:18:16.86+03	
7f95e98a-3379-85c3-fe22-72d3ca452994	2021-05-23 05:18:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:18:36.854+03	2021-05-23 05:18:36.873+03	
86530035-be31-7402-c864-5a2da06b4385	2021-05-23 05:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:18:57.853+03	2021-05-23 05:18:57.859+03	
f37a6311-6739-60d1-8806-251a2dd80a7d	2021-05-23 05:19:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:19:17.853+03	2021-05-23 05:19:17.858+03	
d3443eb8-f599-da73-1056-3b3c9ef984f2	2021-05-23 05:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:19:38.852+03	2021-05-23 05:19:38.86+03	
2660948e-e445-e98a-206c-214de3025419	2021-05-23 05:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:19:58.853+03	2021-05-23 05:19:58.86+03	
7a55fb4f-4fdd-781a-51b9-4f2545d167c6	2021-05-23 05:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:20:08.853+03	2021-05-23 05:20:08.86+03	
e552fc46-e3d7-505a-1a0c-f03996777c18	2021-05-23 05:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:20:29.853+03	2021-05-23 05:20:29.859+03	
65ea2d3e-5ae1-06f4-812e-399452b76279	2021-05-23 05:20:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:20:51.852+03	2021-05-23 05:20:51.86+03	
ae2b206a-6b41-69ec-2f0c-7c0435650268	2021-05-23 05:21:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:21:11.853+03	2021-05-23 05:21:11.86+03	
6cfcdfb4-9e8e-8ae9-18e4-1c5734b7707a	2021-05-23 05:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:21:33.853+03	2021-05-23 05:21:33.86+03	
4204826c-af5e-e05b-e5c2-dee07b82af8e	2021-05-23 05:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:21:53.853+03	2021-05-23 05:21:53.862+03	
95277b9a-8586-3887-bb18-5dd0915fef9a	2021-05-23 05:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:22:14.853+03	2021-05-23 05:22:14.868+03	
84c2d30c-bb6b-aed1-7e3e-bfdbea5cf82d	2021-05-23 05:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:22:35.852+03	2021-05-23 05:22:35.858+03	
20a1bf25-1e9c-a6d3-3529-574062cbc26e	2021-05-23 05:22:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:22:56.854+03	2021-05-23 05:22:56.865+03	
2dc98c45-733d-aeb0-6792-62688b8f7e87	2021-05-23 05:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:23:17.853+03	2021-05-23 05:23:17.86+03	
ae362669-7c8f-f9ec-4e98-698f2305d954	2021-05-23 05:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:23:38.852+03	2021-05-23 05:23:38.865+03	
241de1dd-84e8-6a51-88d3-84a69b896898	2021-05-23 05:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:23:58.852+03	2021-05-23 05:23:58.861+03	
efaec200-9b17-b2d9-2538-ca911fe0e29f	2021-05-23 05:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:24:18.852+03	2021-05-23 05:24:18.871+03	
f750e4e3-04d2-6623-0361-bc5d34cdcfd9	2021-05-23 05:24:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:24:38.853+03	2021-05-23 05:24:38.86+03	
2fd6981b-ec96-ed88-2c8c-c935582d14bf	2021-05-23 05:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:24:59.852+03	2021-05-23 05:24:59.859+03	
a6269c17-0444-3158-d873-95e7b1b71c8c	2021-05-23 05:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:25:19.853+03	2021-05-23 05:25:19.861+03	
b8ebfc83-0e4e-51b8-6753-749cbb3ddee1	2021-05-23 05:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:25:40.852+03	2021-05-23 05:25:40.858+03	
1dfe7275-64cc-805a-3a8c-bcc2dc9aac4e	2021-05-23 05:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:26:00.852+03	2021-05-23 05:26:00.859+03	
ff64d180-3c6d-3120-9752-4abeb7169536	2021-05-23 05:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:26:20.852+03	2021-05-23 05:26:20.859+03	
3ff52e10-b1af-ae96-c3a3-8707c2a39356	2021-05-23 05:26:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:26:41.853+03	2021-05-23 05:26:41.86+03	
6b96482b-ff8b-6a1e-b511-1dec984c4cb7	2021-05-23 05:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:27:02.853+03	2021-05-23 05:27:02.862+03	
e429ba91-794c-d527-2429-e46bfcc95f8c	2021-05-23 05:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:27:23.852+03	2021-05-23 05:27:23.858+03	
e3cb4c4e-cd1c-1052-bade-3a2aa9ec828a	2021-05-23 05:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:27:43.852+03	2021-05-23 05:27:43.859+03	
011c5d52-b003-2f34-0883-8feb9f29c9d7	2021-05-23 05:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:28:03.852+03	2021-05-23 05:28:03.86+03	
47d2a446-3830-38d9-0d33-b62840be825a	2021-05-23 05:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:28:23.853+03	2021-05-23 05:28:23.862+03	
9b95eacf-2d2f-5eb9-971b-69ff3017225a	2021-05-23 05:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:28:44.852+03	2021-05-23 05:28:44.86+03	
6a782327-6ac4-9fad-2144-d7de6685077f	2021-05-23 05:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:28:33.853+03	2021-05-23 05:28:33.864+03	
8776b286-c28d-17e6-07fc-6fa322a4260a	2021-05-23 05:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:28:54.853+03	2021-05-23 05:28:54.874+03	
2a9d0f9a-4f64-4fb7-66fe-aa65c3699ff6	2021-05-23 05:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:29:15.852+03	2021-05-23 05:29:15.871+03	
f1d364e1-27a0-d573-bb92-c34acade7b9c	2021-05-23 05:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:29:35.852+03	2021-05-23 05:29:35.871+03	
db6cff7b-5625-cac2-e2d7-184488ab3bbe	2021-05-23 05:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:29:55.853+03	2021-05-23 05:29:55.859+03	
77540850-c985-5c51-b941-1bc5b56fb802	2021-05-23 05:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:30:05.853+03	2021-05-23 05:30:05.868+03	
f11453ec-061c-fbb8-5d1f-d4229f452214	2021-05-23 05:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:30:25.853+03	2021-05-23 05:30:25.859+03	
71f66f04-9e52-838e-0cfd-21abb58bb130	2021-05-23 05:30:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:30:46.854+03	2021-05-23 05:30:46.861+03	
9548ce2c-c766-f7db-08b6-0d0aa719f795	2021-05-23 05:31:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:31:07.853+03	2021-05-23 05:31:07.859+03	
edc2707d-f0fe-39b9-5d9f-edd09b520ef9	2021-05-23 05:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:31:28.853+03	2021-05-23 05:31:28.859+03	
794382c1-261a-07c5-7722-d79650bfcdac	2021-05-23 05:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:31:49.853+03	2021-05-23 05:31:49.859+03	
d1a73f48-1324-6628-4578-9324064251f2	2021-05-23 05:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:32:10.853+03	2021-05-23 05:32:10.859+03	
468d746d-b821-00a1-79a1-e669896b65e1	2021-05-23 05:32:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:32:31.852+03	2021-05-23 05:32:31.859+03	
9f826925-0bb3-23f9-cdbe-f15f0ad1e84b	2021-05-23 05:32:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:32:51.852+03	2021-05-23 05:32:51.859+03	
ad25d2f2-3a94-c706-730f-9af28c4cf1a3	2021-05-23 05:33:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:33:11.853+03	2021-05-23 05:33:11.859+03	
78f93533-acb9-eb5f-06b5-cc1b4f4b4d71	2021-05-23 05:33:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:33:31.854+03	2021-05-23 05:33:31.861+03	
4a7da536-fd62-024c-297e-2ddffd62c3a5	2021-05-23 05:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:33:52.853+03	2021-05-23 05:33:52.858+03	
5612e2bc-32a2-3a84-bc06-2feb6c24f2e0	2021-05-23 05:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:34:13.852+03	2021-05-23 05:34:13.86+03	
1b86697f-b4f3-499b-17a2-b26782ca9b38	2021-05-23 05:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:34:33.852+03	2021-05-23 05:34:33.859+03	
c192b520-2fbb-7e15-3b8c-8ebf48fa6823	2021-05-23 05:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:34:53.852+03	2021-05-23 05:34:53.86+03	
5c975874-01d9-a94f-a06f-ef75362fa5eb	2021-05-23 05:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:35:13.853+03	2021-05-23 05:35:13.86+03	
d22b97f0-a035-41cb-1900-bee1c79d8ae2	2021-05-23 05:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:35:34.852+03	2021-05-23 05:35:34.858+03	
f7247a98-1ca4-23b7-1ff4-ecdcc2bad543	2021-05-23 05:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:35:54.853+03	2021-05-23 05:35:54.859+03	
1515d5fb-693e-9936-afac-fb821b18d794	2021-05-23 05:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:36:14.853+03	2021-05-23 05:36:14.859+03	
1b4c7ea1-c679-0ba7-d861-077b54b53b82	2021-05-23 05:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:36:34.853+03	2021-05-23 05:36:34.863+03	
50d77117-c2b0-d5c9-0625-bc41144267e8	2021-05-23 05:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:36:54.853+03	2021-05-23 05:36:54.859+03	
b2769e9d-0eb5-93b8-fde0-6965a296aba3	2021-05-23 05:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:37:15.853+03	2021-05-23 05:37:15.872+03	
148d1144-0ef5-4d1c-7929-d82a8d355279	2021-05-23 05:37:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:37:36.852+03	2021-05-23 05:37:36.858+03	
59213849-9906-95e3-f52b-04d9b6bdd3e2	2021-05-23 05:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:37:56.853+03	2021-05-23 05:37:56.859+03	
a3c81a2c-4add-4f14-3299-f1084c88cc06	2021-05-23 05:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:38:17.853+03	2021-05-23 05:38:17.87+03	
e3bced0e-1e0f-d555-0916-e65efe326c0d	2021-05-23 05:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:38:38.853+03	2021-05-23 05:38:38.861+03	
5cbb8af0-4ec1-35d1-f269-359c29dc6254	2021-05-23 05:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:38:58.853+03	2021-05-23 05:38:58.859+03	
5fc3e817-fbda-93e5-ee9a-21b5eda110a7	2021-05-23 05:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:39:18.853+03	2021-05-23 05:39:18.861+03	
a3df6468-12d1-2a8f-433b-d2d1708598a1	2021-05-23 05:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:39:39.852+03	2021-05-23 05:39:39.859+03	
3e44b7e7-6383-b317-a5b7-07549a4e58da	2021-05-23 05:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:39:59.852+03	2021-05-23 05:39:59.859+03	
85dfb18f-d69a-c4f0-4768-97067ba12d3e	2021-05-23 05:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:40:09.852+03	2021-05-23 05:40:09.86+03	
cb901010-fb82-53c2-4a94-d0b4f85d257a	2021-05-23 05:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:40:29.853+03	2021-05-23 05:40:29.868+03	
d2c97f7e-9ac8-74ca-fc05-6f34e77b6323	2021-05-23 05:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:40:49.853+03	2021-05-23 05:40:49.859+03	
c834f42b-3438-c9f8-0111-da57a53e5025	2021-05-23 05:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:41:09.853+03	2021-05-23 05:41:09.862+03	
5d4b7377-1b46-0d50-e36c-588ad6d34334	2021-05-23 05:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:41:29.853+03	2021-05-23 05:41:29.86+03	
6cbe735a-437a-e645-3828-42d7d1b7894c	2021-05-23 05:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:41:49.853+03	2021-05-23 05:41:49.859+03	
52878f2a-3511-757e-7368-2c48ffe8fc64	2021-05-23 05:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:42:10.852+03	2021-05-23 05:42:10.859+03	
3538a007-bf5d-2391-badc-c292e300a753	2021-05-23 05:42:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:42:31.852+03	2021-05-23 05:42:31.865+03	
e9e7876d-07ea-bc76-ac8e-e7597d263e30	2021-05-23 05:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:42:52.852+03	2021-05-23 05:42:52.866+03	
c2148e2e-a96b-8940-fb29-89ee3b81c7bd	2021-05-23 05:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:43:13.852+03	2021-05-23 05:43:13.858+03	
8f4d7217-f208-e587-481b-713506a235fb	2021-05-23 05:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:43:33.853+03	2021-05-23 05:43:33.859+03	
dd698707-ca83-4e8f-959f-618c6882c2a8	2021-05-23 05:43:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:43:54.853+03	2021-05-23 05:43:54.859+03	
0b390fad-c2ff-7f6b-8da3-468ac66cfada	2021-05-23 05:44:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:44:14.853+03	2021-05-23 05:44:14.874+03	
85e6f2ff-b344-39e6-e964-b6b21536bd98	2021-05-23 05:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:44:35.852+03	2021-05-23 05:44:35.867+03	
6b7c20a9-b9bb-c6f3-feb9-8eb31c13c992	2021-05-23 05:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:44:55.852+03	2021-05-23 05:44:55.86+03	
e3c9e70b-1616-3bd2-698a-fc7639a8d1aa	2021-05-23 05:45:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:45:16.852+03	2021-05-23 05:45:16.859+03	
2f0ea293-422c-1c17-5ac1-9aa6c867578a	2021-05-23 05:45:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:45:36.852+03	2021-05-23 05:45:36.86+03	
b0850731-7bbd-9f96-d6cb-fb037ad7cd12	2021-05-23 05:45:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:45:56.855+03	2021-05-23 05:45:56.876+03	
8d04283a-7a28-0f2f-4cb7-aeca5f5eeaab	2021-05-23 05:46:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:46:18.852+03	2021-05-23 05:46:18.859+03	
104dd801-c61b-72ad-aaf1-755c5fe8dd6b	2021-05-23 05:46:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:46:38.853+03	2021-05-23 05:46:38.868+03	
3223cf1c-d8f4-1299-b575-7607edfbba7b	2021-05-23 05:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:46:59.853+03	2021-05-23 05:46:59.859+03	
f2d44dda-d2b5-171a-7023-13762de6e77f	2021-05-23 05:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:47:19.853+03	2021-05-23 05:47:19.859+03	
46dfea5c-3051-e346-906b-da41e853976b	2021-05-23 05:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:47:39.853+03	2021-05-23 05:47:39.865+03	
507dcfd1-75c8-2259-2dd6-aefa211a11e6	2021-05-23 05:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:48:00.852+03	2021-05-23 05:48:00.86+03	
c07841f9-29de-afa4-701a-cac7a1bc59e2	2021-05-23 05:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:48:20.853+03	2021-05-23 05:48:20.859+03	
12c5589a-ea7e-953f-45b8-7e90fb013179	2021-05-23 05:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:48:40.853+03	2021-05-23 05:48:40.866+03	
0e2955d0-85db-2db7-f401-84ac7dd1c573	2021-05-23 05:49:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:49:01.852+03	2021-05-23 05:49:01.859+03	
fba9f320-bbfc-4d52-843b-30ad7850a8ed	2021-05-23 05:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:49:22.853+03	2021-05-23 05:49:22.86+03	
3bc23577-0e37-5f5c-18f7-f021ed0dcdb4	2021-05-23 05:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:29:04.853+03	2021-05-23 05:29:04.861+03	
fbc55b42-eefc-9447-60ef-faea84477d33	2021-05-23 05:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:29:25.852+03	2021-05-23 05:29:25.859+03	
0560db85-407e-70bc-e2bf-b08eb86897eb	2021-05-23 05:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:29:45.853+03	2021-05-23 05:29:45.872+03	
8ad46bf8-bf1e-e753-a135-a67c92a6c10d	2021-05-23 05:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 05:30:00.853+03	2021-05-23 05:30:00.857+03	ERROR
ac3081a5-b76b-4762-902f-cd6d9d8311ec	2021-05-23 05:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:30:15.853+03	2021-05-23 05:30:15.871+03	
5059aec7-4d54-96ec-f962-d0f1dd0c1728	2021-05-23 05:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:30:35.853+03	2021-05-23 05:30:35.86+03	
21aaac42-a378-2ba1-f20b-31b3c705993b	2021-05-23 05:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:30:57.853+03	2021-05-23 05:30:57.859+03	
8b50e79a-a7ce-689d-a5ad-701f3924b616	2021-05-23 05:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:31:18.852+03	2021-05-23 05:31:18.86+03	
45db6ff8-61e9-c306-edf3-a225967e4f56	2021-05-23 05:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:31:39.853+03	2021-05-23 05:31:39.86+03	
8199cb6c-676d-9065-1b62-e5bc25ccd75d	2021-05-23 05:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:31:59.853+03	2021-05-23 05:31:59.861+03	
afacae4a-d82b-e801-0139-df0e3e43bb83	2021-05-23 05:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:32:20.853+03	2021-05-23 05:32:20.868+03	
1e5dc6bc-578b-96ef-3c92-442171cb1ac3	2021-05-23 05:32:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:32:41.852+03	2021-05-23 05:32:41.859+03	
a702691b-07eb-f89c-ba48-00ae48b5a8de	2021-05-23 05:33:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:33:01.853+03	2021-05-23 05:33:01.874+03	
4d53ddc4-1e18-f2db-8927-f79c9a9e401c	2021-05-23 05:33:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:33:21.853+03	2021-05-23 05:33:21.861+03	
b029d521-f3df-ef10-4173-4257335948b0	2021-05-23 05:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:33:42.853+03	2021-05-23 05:33:42.864+03	
64e14e4d-d0df-60a0-2b18-6c95e012a227	2021-05-23 05:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:34:02.853+03	2021-05-23 05:34:02.859+03	
ac769ee0-76e7-4ed8-f780-e34153659f03	2021-05-23 05:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:34:23.852+03	2021-05-23 05:34:23.866+03	
8b29444e-f828-7270-cff9-60f90a4550d6	2021-05-23 05:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:34:43.852+03	2021-05-23 05:34:43.86+03	
c014a05e-06e3-d784-59c7-452699b538fe	2021-05-23 05:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:35:03.852+03	2021-05-23 05:35:03.87+03	
1c002ca2-661b-ced6-6484-6d1ba990e775	2021-05-23 05:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:35:24.852+03	2021-05-23 05:35:24.859+03	
8f839234-11d6-b17f-09ea-b9933548a30d	2021-05-23 05:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:35:44.852+03	2021-05-23 05:35:44.858+03	
1b28f44d-b542-1bcd-334b-97e7d81d3835	2021-05-23 05:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:36:04.853+03	2021-05-23 05:36:04.86+03	
be97f2ca-f29d-4c38-92f5-9c1deafe43c1	2021-05-23 05:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:36:24.853+03	2021-05-23 05:36:24.869+03	
663f6293-124e-7093-8372-998afe726e26	2021-05-23 05:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:36:44.853+03	2021-05-23 05:36:44.86+03	
a5687d15-876b-3115-8674-bfb9a23de1d2	2021-05-23 05:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:37:05.853+03	2021-05-23 05:37:05.869+03	
1c2d0683-19d7-02b3-2029-10063e51a2cf	2021-05-23 05:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:37:25.853+03	2021-05-23 05:37:25.86+03	
fd222ed8-cb4a-bea8-0d42-389e268917b1	2021-05-23 05:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:37:46.852+03	2021-05-23 05:37:46.876+03	
a75db7e6-82b1-7812-eae5-0c6274d39ce6	2021-05-23 05:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:38:07.853+03	2021-05-23 05:38:07.867+03	
0545aef6-d51d-583a-78d2-2fed8dadba4b	2021-05-23 05:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:38:27.853+03	2021-05-23 05:38:27.867+03	
a18c4366-bd0c-5311-3b95-e544a670a8c1	2021-05-23 05:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:38:48.853+03	2021-05-23 05:38:48.859+03	
b503334f-e709-e0bf-51e7-d8ee455faf47	2021-05-23 05:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:39:08.853+03	2021-05-23 05:39:08.859+03	
098a656b-8c73-eec6-8be0-df710ceab45f	2021-05-23 05:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:39:28.853+03	2021-05-23 05:39:28.871+03	
c06c3174-7fe6-82a6-df14-4841395c22a5	2021-05-23 05:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:39:49.852+03	2021-05-23 05:39:49.859+03	
d4923e37-3605-8adf-fdb5-a011ea236178	2021-05-23 05:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 05:40:00.853+03	2021-05-23 05:40:00.865+03	ERROR
3afca46d-ad27-9e36-3bb5-91ceea439c00	2021-05-23 05:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:40:19.853+03	2021-05-23 05:40:19.86+03	
1909e2fd-b820-f03f-2e43-db2790993101	2021-05-23 05:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:40:39.853+03	2021-05-23 05:40:39.861+03	
5a4cbfb6-730e-d87a-d25a-3427f5389af0	2021-05-23 05:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:40:59.853+03	2021-05-23 05:40:59.861+03	
fbe13c46-126a-75c7-4b34-b4935a28f5be	2021-05-23 05:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:41:19.853+03	2021-05-23 05:41:19.859+03	
9e908243-cb99-71f0-46c6-6833058a24a2	2021-05-23 05:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:41:39.853+03	2021-05-23 05:41:39.859+03	
0cf6db76-968c-47cb-c299-57d3404daaa5	2021-05-23 05:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:42:00.852+03	2021-05-23 05:42:00.859+03	
5bcbf155-7bb8-4ee2-13ae-11fcb4d067e9	2021-05-23 05:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:42:20.853+03	2021-05-23 05:42:20.861+03	
364917ad-2ba8-417f-3e49-a502deebc9bc	2021-05-23 05:42:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:42:41.854+03	2021-05-23 05:42:41.86+03	
062aa86a-a2c4-7420-f0f4-2397d00868a2	2021-05-23 05:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:43:02.853+03	2021-05-23 05:43:02.859+03	
ae7e0ec2-5f56-9f18-e5b3-2906854766e3	2021-05-23 05:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:43:23.852+03	2021-05-23 05:43:23.859+03	
28f3232a-aef0-5949-44f9-65e36e0bae1b	2021-05-23 05:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:43:44.852+03	2021-05-23 05:43:44.859+03	
015bad1c-a7c8-4125-bd8f-c39ad57616a4	2021-05-23 05:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:44:04.853+03	2021-05-23 05:44:04.859+03	
2fe5a043-647c-89e1-6284-7de84a01f132	2021-05-23 05:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:44:25.852+03	2021-05-23 05:44:25.871+03	
634bb11b-1ddc-2619-32dc-8f33bfb12f25	2021-05-23 05:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:44:45.852+03	2021-05-23 05:44:45.859+03	
2284eba0-f7df-99a6-d38b-c604f4ce0051	2021-05-23 05:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:45:05.853+03	2021-05-23 05:45:05.868+03	
e73aca83-10b1-fa26-a03a-f9c1818856c7	2021-05-23 05:45:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:45:26.852+03	2021-05-23 05:45:26.859+03	
ba0d44cf-d4f4-987a-c1f2-4d4e7d2beaa3	2021-05-23 05:45:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:45:46.852+03	2021-05-23 05:45:46.861+03	
9bb93cc5-e1a5-826b-960d-40a8606935b0	2021-05-23 05:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:46:07.853+03	2021-05-23 05:46:07.869+03	
973714fa-ff76-8f0a-c6ce-2afd2896b14b	2021-05-23 05:46:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:46:28.852+03	2021-05-23 05:46:28.859+03	
11ea89d4-7d2f-4f35-6bbc-5819e4e6a3ca	2021-05-23 05:46:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:46:48.853+03	2021-05-23 05:46:48.859+03	
042e5ad8-d97a-5574-b733-94ff2674f93b	2021-05-23 05:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:47:09.853+03	2021-05-23 05:47:09.862+03	
0fc07fee-01d8-c0f3-3470-b5a73de874fd	2021-05-23 05:47:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:47:29.853+03	2021-05-23 05:47:29.86+03	
347421f0-33f4-69a0-a449-939a6e45eff9	2021-05-23 05:47:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:47:49.853+03	2021-05-23 05:47:49.86+03	
3ab28175-2af5-e5e1-15a5-12d2fb878ea6	2021-05-23 05:48:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:48:10.853+03	2021-05-23 05:48:10.866+03	
3cccd279-cd61-381a-b377-722120652ffd	2021-05-23 05:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:48:30.853+03	2021-05-23 05:48:30.861+03	
0b910ca9-345d-46f9-a23e-8cb2940420c5	2021-05-23 05:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:48:50.853+03	2021-05-23 05:48:50.865+03	
d0dcef9d-74dd-6c5e-7ec7-12457dcb52e8	2021-05-23 05:49:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:49:11.854+03	2021-05-23 05:49:11.861+03	
05880e53-7e76-1ea2-833a-298652da06ae	2021-05-23 05:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:49:32.853+03	2021-05-23 05:49:32.861+03	
b7dc3850-6cb5-bf16-dadc-95234ba5d934	2021-05-23 05:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:49:53.852+03	2021-05-23 05:49:53.859+03	
6f146b3e-d2c6-2dda-5664-c5338adfad91	2021-05-23 05:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:49:42.853+03	2021-05-23 05:49:42.86+03	
1c32c4ba-0411-650c-f3a3-ce2e2d28fa35	2021-05-23 05:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 05:50:00.852+03	2021-05-23 05:50:00.858+03	ERROR
bf99c372-bb71-e846-9edf-49e415f46d4a	2021-05-23 05:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:50:13.852+03	2021-05-23 05:50:13.872+03	
af7e566d-9939-33e5-bfa1-ab4c45a01b99	2021-05-23 05:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:50:33.853+03	2021-05-23 05:50:33.859+03	
f9079b13-b8e1-5965-9d4f-1b8d9c1f0abb	2021-05-23 05:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:50:53.853+03	2021-05-23 05:50:53.86+03	
f55661d3-0e25-0d13-d66e-3cd36e68ad1e	2021-05-23 05:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:51:13.853+03	2021-05-23 05:51:13.86+03	
73cf117b-6270-b5b6-548b-63fbb7bc489c	2021-05-23 05:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:51:34.853+03	2021-05-23 05:51:34.859+03	
4fc17dda-2565-76a5-7c98-fe249c2bb460	2021-05-23 05:51:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:51:56.852+03	2021-05-23 05:51:56.86+03	
4d191a5e-3e48-6a65-146e-5a30b37ef5b4	2021-05-23 05:52:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:52:16.853+03	2021-05-23 05:52:16.86+03	
43a7dfae-a53b-db92-a9a7-0c34fd91a568	2021-05-23 05:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:52:38.853+03	2021-05-23 05:52:38.859+03	
a6a9873e-04a6-a8db-0adf-1c36f9a8bad4	2021-05-23 05:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:53:00.852+03	2021-05-23 05:53:00.859+03	
68a3a5ef-8dcb-4c37-d7ae-f945d941fc4e	2021-05-23 05:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:53:20.853+03	2021-05-23 05:53:20.859+03	
c0b7bc2a-9cf4-eb8c-6e4b-923ef533940a	2021-05-23 05:53:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:53:41.853+03	2021-05-23 05:53:41.861+03	
5b6a4411-a369-95c6-7798-1fdbcfdde14a	2021-05-23 05:54:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:54:01.854+03	2021-05-23 05:54:01.86+03	
efef14dd-1cf8-0030-5afe-de9ba20e8357	2021-05-23 05:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:54:23.852+03	2021-05-23 05:54:23.859+03	
1373140b-9df8-7c75-ef6b-f4eecd66d22f	2021-05-23 05:54:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:54:43.853+03	2021-05-23 05:54:43.86+03	
9be2a74f-1932-eb88-28fc-264ecd4ff681	2021-05-23 05:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:55:04.853+03	2021-05-23 05:55:04.861+03	
41ef2b7c-3a3d-21d9-df53-e03e8827f889	2021-05-23 05:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:55:24.853+03	2021-05-23 05:55:24.86+03	
21467564-19de-8078-a428-88a4f57ab98d	2021-05-23 05:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:55:44.853+03	2021-05-23 05:55:44.86+03	
86d8b66c-7435-2bd5-15a2-a89c90f26094	2021-05-23 05:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:56:04.853+03	2021-05-23 05:56:04.86+03	
11a2480a-785b-9566-9b48-b2a440b986ec	2021-05-23 05:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:56:24.853+03	2021-05-23 05:56:24.86+03	
6e1f025a-676c-ca20-f42c-8dfe7bf87b68	2021-05-23 05:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:56:45.852+03	2021-05-23 05:56:45.87+03	
59d122ce-a5f0-f20f-e907-a6c19c5ed899	2021-05-23 05:57:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:57:06.853+03	2021-05-23 05:57:06.86+03	
e8f9f0ad-20f5-0a64-b42c-e38c67e23475	2021-05-23 05:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:57:27.853+03	2021-05-23 05:57:27.859+03	
b38a5634-7504-4d4c-4221-73e73081e394	2021-05-23 05:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:57:47.853+03	2021-05-23 05:57:47.86+03	
6426ee66-fa02-8107-2845-95a332283751	2021-05-23 05:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:58:07.853+03	2021-05-23 05:58:07.861+03	
03788912-9b00-79a7-72d8-e6538499844b	2021-05-23 05:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:58:28.852+03	2021-05-23 05:58:28.86+03	
0bec2782-0b13-82e9-47b2-28b259033a45	2021-05-23 05:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:58:48.852+03	2021-05-23 05:58:48.862+03	
e44eec5a-da14-a56d-92fe-42f8c48a571f	2021-05-23 05:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:59:08.852+03	2021-05-23 05:59:08.859+03	
beaac9c7-764d-f7f2-2f01-261331602686	2021-05-23 05:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:59:29.853+03	2021-05-23 05:59:29.859+03	
6b8df931-83eb-d571-1ad1-b9ea278079bf	2021-05-23 05:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:59:49.853+03	2021-05-23 05:59:49.861+03	
69803218-c299-ccdc-6dcd-fced6864fbb4	2021-05-23 06:00:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:00:10.853+03	2021-05-23 06:00:10.863+03	
475aff16-e0a8-50a6-4ce6-f48d028f6e21	2021-05-23 06:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:00:30.853+03	2021-05-23 06:00:30.87+03	
28a497c3-0f12-4f7c-48a9-2910c0cb3cfa	2021-05-23 06:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:00:50.853+03	2021-05-23 06:00:50.86+03	
14a378ac-585f-223c-4954-f78a0f3dd825	2021-05-23 06:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:01:10.853+03	2021-05-23 06:01:10.86+03	
838884e6-8393-eea0-75ae-8d68a760e2fe	2021-05-23 06:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:01:30.853+03	2021-05-23 06:01:30.864+03	
e2c06c4d-002f-4277-671c-d2b7cd9e2bf4	2021-05-23 06:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:01:50.853+03	2021-05-23 06:01:50.865+03	
96cce8c5-dc4d-15d0-a3ab-3975e5269172	2021-05-23 06:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:02:10.853+03	2021-05-23 06:02:10.859+03	
4841f228-5125-19a2-0aeb-896d10c5b8b9	2021-05-23 06:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:02:30.853+03	2021-05-23 06:02:30.859+03	
9c1a1d3c-d82c-e685-f4a2-61cf7ea6fc22	2021-05-23 06:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:02:50.853+03	2021-05-23 06:02:50.859+03	
0977a61c-b774-b648-e956-274639c58862	2021-05-23 06:03:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:03:11.853+03	2021-05-23 06:03:11.859+03	
a32b3a75-1f55-57fe-a397-2efd815903ed	2021-05-23 06:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:03:31.853+03	2021-05-23 06:03:31.863+03	
bd7ff2a2-e24a-da36-852f-2eb21d1cf657	2021-05-23 06:03:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:03:51.853+03	2021-05-23 06:03:51.859+03	
ca114ae0-c021-dd30-1d9a-51a90e54f251	2021-05-23 06:04:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:04:11.854+03	2021-05-23 06:04:11.861+03	
580688f5-bc82-345c-67cb-6b3cdb6a162a	2021-05-23 06:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:04:32.853+03	2021-05-23 06:04:32.862+03	
06d896e0-603f-4ed8-aba3-520b2513f6ff	2021-05-23 06:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:04:53.853+03	2021-05-23 06:04:53.86+03	
1b675105-976c-e0fe-8626-476e95e7618b	2021-05-23 06:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:05:14.853+03	2021-05-23 06:05:14.86+03	
2347dc02-687b-3e74-a9cb-f5910e51b064	2021-05-23 06:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:05:34.853+03	2021-05-23 06:05:34.861+03	
8efa947a-35eb-0ed0-4944-0d81ddb40fc5	2021-05-23 06:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:05:54.853+03	2021-05-23 06:05:54.86+03	
212cc2d7-07b2-2f6f-1328-e8933a5edf0a	2021-05-23 06:06:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:06:16.852+03	2021-05-23 06:06:16.858+03	
cf7aaaf4-33d5-7605-4570-dc1276307ecd	2021-05-23 06:06:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:06:36.852+03	2021-05-23 06:06:36.859+03	
9f6bcfbe-dee0-e748-0ebf-96d3e391372e	2021-05-23 06:06:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:06:56.852+03	2021-05-23 06:06:56.859+03	
fbd50254-c137-0575-adcb-4fa4ce5c3033	2021-05-23 06:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:07:16.853+03	2021-05-23 06:07:16.86+03	
3e431306-4468-b382-7921-c50909eb4ebc	2021-05-23 06:07:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:07:36.853+03	2021-05-23 06:07:36.869+03	
cb4c14e7-b3b3-a9e1-7cf2-12a11d09974b	2021-05-23 06:07:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:07:56.854+03	2021-05-23 06:07:56.874+03	
f1a4cac1-afc8-193f-bbc9-96b6eedbadf9	2021-05-23 06:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:08:17.853+03	2021-05-23 06:08:17.871+03	
99bd3d30-7ae4-1afc-8668-ea90191915b8	2021-05-23 06:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:08:38.852+03	2021-05-23 06:08:38.86+03	
a90f6990-7afd-4301-7e92-ddaf71b291ef	2021-05-23 06:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:08:58.852+03	2021-05-23 06:08:59.158+03	
7a4c8415-8ebb-3237-052a-79292e0c1a33	2021-05-23 06:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:09:18.853+03	2021-05-23 06:09:18.859+03	
b76d7c71-a1af-0878-9636-5310c7958457	2021-05-23 06:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:09:39.853+03	2021-05-23 06:09:39.9+03	
a5fec921-0ef4-1b38-e7ff-5a8add0da49e	2021-05-23 06:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:10:00.852+03	2021-05-23 06:10:00.861+03	
651578c4-3b10-98cd-cc03-76d695d278b0	2021-05-23 06:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:10:21.852+03	2021-05-23 06:10:21.859+03	
92a4a4a6-3fcd-8946-fd5e-1b90eeefd0d6	2021-05-23 06:10:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:10:41.853+03	2021-05-23 06:10:41.86+03	
c5e56e42-54e5-abbc-9f91-fd54911fe5d5	2021-05-23 05:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:50:03.852+03	2021-05-23 05:50:03.859+03	
a04ab61a-04e1-ad90-3036-e39568f483a6	2021-05-23 05:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:50:23.852+03	2021-05-23 05:50:23.859+03	
6c8aef75-3f7b-68ba-cf48-aa6d0fbf4d57	2021-05-23 05:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:50:43.853+03	2021-05-23 05:50:43.859+03	
5f2ac348-f500-fed3-cdbf-568c76d59c0d	2021-05-23 05:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:51:03.853+03	2021-05-23 05:51:03.861+03	
9f4368a4-66df-c370-fe9c-3f6ecd7b2443	2021-05-23 05:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:51:23.853+03	2021-05-23 05:51:23.861+03	
97ee57fe-4491-4af8-8d93-5ebdd552a79c	2021-05-23 05:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:51:45.853+03	2021-05-23 05:51:45.86+03	
fa8f8af3-2ca7-c2ec-b37c-2be95d7faa42	2021-05-23 05:52:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:52:06.853+03	2021-05-23 05:52:06.87+03	
afeb1f13-c52f-85d6-ce2f-b2b61d57f323	2021-05-23 05:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:52:27.853+03	2021-05-23 05:52:27.861+03	
6a81cc0c-7dd3-8f91-0789-4fc8eb3c45d2	2021-05-23 05:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:52:49.853+03	2021-05-23 05:52:49.859+03	
6896e862-8ebe-dec3-f139-5895ef3262c5	2021-05-23 05:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:53:10.852+03	2021-05-23 05:53:10.858+03	
ae1655b5-04fb-c05e-caad-8565a2a10ec0	2021-05-23 05:53:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:53:31.852+03	2021-05-23 05:53:31.86+03	
782680fc-d96e-bc97-67b7-136ed55d5962	2021-05-23 05:53:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:53:51.853+03	2021-05-23 05:53:51.86+03	
db665388-7f74-f7ab-ccc4-6f836dbeab68	2021-05-23 05:54:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:54:12.853+03	2021-05-23 05:54:12.859+03	
c9e7c4d2-8a04-5bae-5ecb-eaa8872aa5fa	2021-05-23 05:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:54:33.852+03	2021-05-23 05:54:33.858+03	
97d7476f-87a8-50ff-974b-dd84d0f156cc	2021-05-23 05:54:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:54:53.853+03	2021-05-23 05:54:53.86+03	
1f153538-9b59-bdff-83f1-0b306379a61c	2021-05-23 05:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:55:14.853+03	2021-05-23 05:55:14.86+03	
dd57c30d-e9a9-cc43-54ab-c6de83350b4b	2021-05-23 05:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:55:34.853+03	2021-05-23 05:55:34.86+03	
05456f2c-818e-523b-72e5-4275f205e040	2021-05-23 05:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:55:54.853+03	2021-05-23 05:55:54.86+03	
c10caf2d-0f9e-d79b-fa03-a44070e7e5d8	2021-05-23 05:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:56:14.853+03	2021-05-23 05:56:14.859+03	
26290cf1-c84a-1a64-69c9-bbb2792a47de	2021-05-23 05:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:56:35.852+03	2021-05-23 05:56:35.873+03	
b67780e4-2a38-c0b1-c6db-cd6bc415bd99	2021-05-23 05:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:56:55.853+03	2021-05-23 05:56:55.859+03	
1659e05c-fb89-015b-0621-25663bf9d439	2021-05-23 05:57:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:57:16.854+03	2021-05-23 05:57:16.862+03	
6d748036-ff7f-a99b-bb6c-e0de1066ed03	2021-05-23 05:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:57:37.853+03	2021-05-23 05:57:37.859+03	
7ce58b40-c374-2a2e-69e0-7be5b77f1f62	2021-05-23 05:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:57:57.853+03	2021-05-23 05:57:57.86+03	
69b29bdd-7aa7-3bcd-16bd-6a98756a7486	2021-05-23 05:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:58:17.853+03	2021-05-23 05:58:17.86+03	
7f5f5026-f685-7b7e-8907-a45ccd2e6bfb	2021-05-23 05:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:58:38.852+03	2021-05-23 05:58:38.859+03	
9b529aeb-8e2f-11c8-9e9b-b4202b533187	2021-05-23 05:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:58:58.852+03	2021-05-23 05:58:58.86+03	
9f3896ad-3114-0053-f149-4c7d4213c8f9	2021-05-23 05:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:59:18.853+03	2021-05-23 05:59:18.862+03	
37c7dbe3-2d7f-89d5-3d1f-0560ef6a076f	2021-05-23 05:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 05:59:39.853+03	2021-05-23 05:59:39.863+03	
3b10536e-d627-bdab-0712-ca8223cb061d	2021-05-23 06:00:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:00:00.852+03	2021-05-23 06:00:00.862+03	
1c568c3e-16bd-a414-6051-3271b2780c9f	2021-05-23 06:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 06:00:00.853+03	2021-05-23 06:00:00.87+03	ERROR
e0492488-d9b0-89b8-4e53-8185388f360f	2021-05-23 06:00:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:00:20.853+03	2021-05-23 06:00:20.867+03	
1a4ea67e-8eb5-9e0b-c678-e255d33993c3	2021-05-23 06:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:00:40.853+03	2021-05-23 06:00:40.862+03	
41c5ee85-fdfb-eb52-02f5-d5a2c813be43	2021-05-23 06:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:01:00.853+03	2021-05-23 06:01:00.865+03	
23e4a2ff-2714-ea0b-b35a-ccb73a7279a3	2021-05-23 06:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:01:20.853+03	2021-05-23 06:01:20.86+03	
e7766db1-f167-5ead-aa41-782954f3d168	2021-05-23 06:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:01:40.853+03	2021-05-23 06:01:40.86+03	
c37c235f-7e63-4279-c4a1-32e7824d831d	2021-05-23 06:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:02:00.853+03	2021-05-23 06:02:00.859+03	
f0fc8a95-0935-06e9-e3ef-0560ff890a8a	2021-05-23 06:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:02:20.853+03	2021-05-23 06:02:20.86+03	
6d07c6c7-ddfd-76d3-3a02-3c68649a5c51	2021-05-23 06:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:02:40.853+03	2021-05-23 06:02:40.869+03	
e9741078-1866-9b06-1292-cd2ed58a49c2	2021-05-23 06:03:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:03:01.853+03	2021-05-23 06:03:01.868+03	
5803ac8d-6ed6-e540-38bf-47aef89a07ac	2021-05-23 06:03:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:03:21.853+03	2021-05-23 06:03:21.86+03	
cd094970-9320-198b-bae4-63ab44f5a402	2021-05-23 06:03:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:03:41.853+03	2021-05-23 06:03:41.861+03	
c3e7d3b5-9781-9ead-b88e-a5cad8ecd8df	2021-05-23 06:04:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:04:01.853+03	2021-05-23 06:04:01.86+03	
3b749d50-07e8-494c-1898-2e06027bb812	2021-05-23 06:04:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:04:21.854+03	2021-05-23 06:04:21.86+03	
1839597e-f895-a9a8-81e2-8e636df9f968	2021-05-23 06:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:04:42.853+03	2021-05-23 06:04:42.859+03	
b5db1ad1-068b-938d-db9f-b7f1b0d087c5	2021-05-23 06:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:05:04.852+03	2021-05-23 06:05:04.859+03	
adafa270-15f8-8a5e-4e08-eadf906a8279	2021-05-23 06:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:05:24.853+03	2021-05-23 06:05:24.86+03	
f76538a4-aa13-bb7d-ef03-3fe036ca0fff	2021-05-23 06:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:05:44.853+03	2021-05-23 06:05:44.86+03	
b45d0c09-ec97-3a5a-c0f6-754cf4c5ece5	2021-05-23 06:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:06:05.853+03	2021-05-23 06:06:05.859+03	
a102e046-c78d-67af-bc83-ef08eed168d2	2021-05-23 06:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:06:26.852+03	2021-05-23 06:06:26.859+03	
58193ea6-0a25-9fdd-c14d-9af81995cc75	2021-05-23 06:06:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:06:46.852+03	2021-05-23 06:06:46.86+03	
212c4352-64b3-1c36-0abc-b5d461188735	2021-05-23 06:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:07:06.852+03	2021-05-23 06:07:06.869+03	
f2b67548-2825-9e0d-c8db-af65ce542a20	2021-05-23 06:07:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:07:26.853+03	2021-05-23 06:07:26.86+03	
fe6f9977-3275-1155-e965-473d525bcaf6	2021-05-23 06:07:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:07:46.853+03	2021-05-23 06:07:46.864+03	
94720308-58ba-8a85-9fd5-98a94c656625	2021-05-23 06:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:08:07.853+03	2021-05-23 06:08:07.871+03	
6a2429fe-b60e-9bd6-7280-6b65cf286389	2021-05-23 06:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:08:28.852+03	2021-05-23 06:08:28.859+03	
62984b60-fa6a-1cdf-90c0-65f9bcda2fbc	2021-05-23 06:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:08:48.852+03	2021-05-23 06:08:48.859+03	
4d96fb78-d321-ee96-1eb4-22e6fcc01ca5	2021-05-23 06:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:09:08.853+03	2021-05-23 06:09:08.861+03	
79d1f229-d5a5-b3fc-0bb7-b85cc2475011	2021-05-23 06:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:09:28.853+03	2021-05-23 06:09:28.863+03	
4f2bd8b9-10b5-787b-73a8-1ba7c87f26e1	2021-05-23 06:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:09:49.853+03	2021-05-23 06:09:49.862+03	
fc8a9e62-9f86-5287-b8e2-4b2e3b1b6041	2021-05-23 06:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 06:10:00.853+03	2021-05-23 06:10:00.867+03	ERROR
9bdfd859-73d0-dae1-d8db-899e4d691de8	2021-05-23 06:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:10:10.853+03	2021-05-23 06:10:10.86+03	
5de9d994-b6c5-68d3-0186-5c9b54f926bc	2021-05-23 06:10:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:10:31.852+03	2021-05-23 06:10:31.859+03	
86a4c03d-846d-7b46-14d5-3c451ed19dcf	2021-05-23 06:10:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:10:51.853+03	2021-05-23 06:10:51.86+03	
75d2b086-f723-47a4-1767-93a66b00311c	2021-05-23 06:11:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:11:11.854+03	2021-05-23 06:11:11.86+03	
fbc8dd8e-f47b-aa05-9c11-50016dcaf00d	2021-05-23 06:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:11:32.853+03	2021-05-23 06:11:32.859+03	
bec1b639-a49e-4954-107c-6bb1d4e157c4	2021-05-23 06:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:11:53.853+03	2021-05-23 06:11:53.865+03	
c71979fc-0363-dd75-e8f2-54d7f4811d8e	2021-05-23 06:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:12:14.853+03	2021-05-23 06:12:14.862+03	
8af6fb67-f092-cce5-254e-7da824489094	2021-05-23 06:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:12:35.853+03	2021-05-23 06:12:35.859+03	
05be358c-a710-dacf-2cf6-266302a7c9e7	2021-05-23 06:12:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:12:56.853+03	2021-05-23 06:12:56.862+03	
72be5bd7-5638-62e0-cabc-08484adb13f2	2021-05-23 06:13:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:13:16.854+03	2021-05-23 06:13:16.862+03	
f9e6d9c2-8634-ba3c-5319-677d81e85718	2021-05-23 06:13:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:13:37.853+03	2021-05-23 06:13:37.86+03	
821b2e55-11ff-2d25-703a-64d61063058d	2021-05-23 06:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:13:59.853+03	2021-05-23 06:13:59.87+03	
67066e37-1475-fe37-94f0-7de9e7557bb7	2021-05-23 06:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:14:19.853+03	2021-05-23 06:14:19.861+03	
90040953-69b2-0e90-94e2-10c23b68097e	2021-05-23 06:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:14:40.853+03	2021-05-23 06:14:40.859+03	
82102638-9bc4-01ad-86fd-dafa0ca29206	2021-05-23 06:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:15:00.853+03	2021-05-23 06:15:00.859+03	
e7059640-577d-9114-29d6-ab2c0282131a	2021-05-23 06:15:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:15:21.853+03	2021-05-23 06:15:21.86+03	
cff2f62b-edcc-3f8b-c975-b5d8ceaaeae6	2021-05-23 06:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:15:42.853+03	2021-05-23 06:15:42.859+03	
55f91bd4-df57-b88f-b9ab-b0610213ea22	2021-05-23 06:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:16:02.853+03	2021-05-23 06:16:02.86+03	
d86dee3d-5d5c-713c-1e9b-7d495f8eda40	2021-05-23 06:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:16:22.853+03	2021-05-23 06:16:22.859+03	
d2c4e584-b73a-1475-2962-00c55f0c7dee	2021-05-23 06:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:16:42.853+03	2021-05-23 06:16:42.86+03	
79966d76-dee4-a459-8c67-42bbc7e6208e	2021-05-23 06:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:17:02.853+03	2021-05-23 06:17:02.859+03	
59f183ea-74b2-31b3-3415-8cc1381ef92c	2021-05-23 06:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:17:23.852+03	2021-05-23 06:17:23.859+03	
39ae7a67-2599-77d4-e325-396d313b206c	2021-05-23 06:17:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:17:44.853+03	2021-05-23 06:17:44.859+03	
2ad7e211-1cf0-ba7d-5636-709801b4da36	2021-05-23 06:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:18:05.853+03	2021-05-23 06:18:05.859+03	
dc45fc42-ee2d-93ae-ed56-4750ad66b607	2021-05-23 06:18:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:18:25.853+03	2021-05-23 06:18:25.867+03	
6d09c143-5a79-5141-cc3e-3f0299c9d3e7	2021-05-23 06:18:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:18:46.852+03	2021-05-23 06:18:46.859+03	
ef002b84-3d4e-fa86-f99f-2514ce8df227	2021-05-23 06:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:19:07.853+03	2021-05-23 06:19:07.863+03	
ef826aff-5f53-0014-f0f5-50fa5c779aca	2021-05-23 06:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:19:28.853+03	2021-05-23 06:19:28.866+03	
d0e42210-decf-906d-cf44-eaaf684e395d	2021-05-23 06:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:19:49.853+03	2021-05-23 06:19:49.876+03	
3e42d473-c31c-9d56-5e7c-f99af0a9aafd	2021-05-23 06:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 06:20:00.853+03	2021-05-23 06:20:00.857+03	ERROR
d9f638bb-8c63-9002-8a89-ff9a9f135440	2021-05-23 06:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:20:19.853+03	2021-05-23 06:20:19.859+03	
ef07e964-d4e1-b357-30f1-363ba621de93	2021-05-23 06:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:20:40.852+03	2021-05-23 06:20:40.863+03	
89556a8a-e259-d052-45bc-295d069758e5	2021-05-23 06:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:21:00.853+03	2021-05-23 06:21:00.872+03	
e7b9f451-fc25-670f-c09e-36404e79f209	2021-05-23 06:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:21:20.853+03	2021-05-23 06:21:20.86+03	
70bb957d-b5a5-d179-427c-112c8b7b5c2b	2021-05-23 06:21:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:21:41.854+03	2021-05-23 06:21:41.861+03	
96a3a69c-f53e-2302-f2fd-d74d8368f38b	2021-05-23 06:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:22:02.853+03	2021-05-23 06:22:02.859+03	
c55445f6-8036-1396-c8c9-ed62e5389840	2021-05-23 06:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:22:22.853+03	2021-05-23 06:22:22.86+03	
ae42d2b7-2d94-0f8d-c20a-b1e9e051047c	2021-05-23 06:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:22:42.853+03	2021-05-23 06:22:42.859+03	
9d641ee5-184e-6384-101d-baa90084f5d9	2021-05-23 06:23:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:23:02.853+03	2021-05-23 06:23:02.862+03	
be851475-c505-1c24-59b9-e14f90f54c2b	2021-05-23 06:23:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:23:22.853+03	2021-05-23 06:23:22.86+03	
ab904a39-3e06-4fbd-bf47-7ea65629a25b	2021-05-23 06:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:23:42.853+03	2021-05-23 06:23:42.859+03	
8f82fa82-cf67-e726-cff2-997a0d2f6e4f	2021-05-23 06:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:24:03.852+03	2021-05-23 06:24:03.859+03	
c50b7818-5876-b0e2-f69b-cda6cbe7c9ad	2021-05-23 06:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:24:23.853+03	2021-05-23 06:24:23.859+03	
676e2fad-0ae7-751c-ecfe-6d8332f2d174	2021-05-23 06:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:24:43.853+03	2021-05-23 06:24:43.872+03	
9552ff10-7333-1b88-049a-d62df2e5e0b0	2021-05-23 06:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:25:03.853+03	2021-05-23 06:25:03.859+03	
420d3bcd-619e-d0d5-c82f-b22e3796d45d	2021-05-23 06:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:25:23.853+03	2021-05-23 06:25:23.86+03	
1ab75ab2-b2f8-508e-bd30-d55fae75da31	2021-05-23 06:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:25:43.853+03	2021-05-23 06:25:43.859+03	
85aa0ca5-4e4e-9a95-3fad-71400a0b4e9e	2021-05-23 06:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:26:03.853+03	2021-05-23 06:26:03.861+03	
328fe579-8849-c5fd-7343-1e8f1daa7459	2021-05-23 06:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:26:25.853+03	2021-05-23 06:26:25.862+03	
ff2673ab-e9de-b47f-4d5d-a67887d3fa12	2021-05-23 06:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:26:45.853+03	2021-05-23 06:26:45.867+03	
0978ebcb-523d-1095-9f3f-2e1ef9ea8fa7	2021-05-23 06:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:27:05.853+03	2021-05-23 06:27:05.863+03	
a8d08ade-15b6-8e33-f09d-2eda1403a07a	2021-05-23 06:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:27:25.853+03	2021-05-23 06:27:25.872+03	
a0e34bfb-63de-8feb-0786-2709e6695d7b	2021-05-23 06:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:27:47.852+03	2021-05-23 06:27:47.862+03	
9a8464b3-1882-4e0f-1a83-715d7677a837	2021-05-23 06:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:28:07.853+03	2021-05-23 06:28:07.868+03	
b949e392-aa4e-b962-57bf-cc741b706a23	2021-05-23 06:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:28:27.853+03	2021-05-23 06:28:27.861+03	
e5fa5ce5-fed5-0313-106f-e930953209c7	2021-05-23 06:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:28:47.853+03	2021-05-23 06:28:47.862+03	
9b88447f-f05d-cde0-e212-9c63bd951f9b	2021-05-23 06:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:29:08.852+03	2021-05-23 06:29:08.862+03	
b02cf8c2-8bba-e4bd-54f4-2ea954e7f45f	2021-05-23 06:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:29:28.853+03	2021-05-23 06:29:28.862+03	
97716fca-437e-ef24-34e2-fc7eee6394ea	2021-05-23 06:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:29:49.853+03	2021-05-23 06:29:49.861+03	
d11f6594-cfc2-de92-4fbb-f145c7dedbe3	2021-05-23 06:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 06:30:00.853+03	2021-05-23 06:30:00.86+03	ERROR
41ac8f3c-5f26-d80b-4c70-836270d1143d	2021-05-23 06:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:30:20.853+03	2021-05-23 06:30:20.918+03	
b24ca304-401d-55ae-7e66-6038ec130a30	2021-05-23 06:30:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:30:41.853+03	2021-05-23 06:30:41.859+03	
924bf118-ad18-cd78-101c-c388c4d42676	2021-05-23 06:31:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:31:01.854+03	2021-05-23 06:31:01.861+03	
e6a30eaa-17bb-4f6a-f678-56f2a238129d	2021-05-23 06:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:31:22.853+03	2021-05-23 06:31:22.861+03	
5a273710-7e1f-b493-f75f-05c58bfb3ed6	2021-05-23 06:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:31:43.853+03	2021-05-23 06:31:43.86+03	
63d89ace-13f7-49cf-0210-fff48da93f4a	2021-05-23 06:11:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:11:01.854+03	2021-05-23 06:11:01.862+03	
3599cf3f-e483-fbbf-1305-8b378fe0eaf9	2021-05-23 06:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:11:22.852+03	2021-05-23 06:11:22.859+03	
f518ba93-22e9-e176-1723-53b6d66be2b9	2021-05-23 06:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:11:42.853+03	2021-05-23 06:11:42.861+03	
1ee9eaa9-f24f-7bc3-631a-6e8737b2ba14	2021-05-23 06:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:12:04.853+03	2021-05-23 06:12:04.863+03	
079957a3-ab97-1838-d793-7bda9823d693	2021-05-23 06:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:12:25.852+03	2021-05-23 06:12:25.859+03	
890e2936-51f3-6aee-5f71-ab02cd6112ac	2021-05-23 06:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:12:45.853+03	2021-05-23 06:12:45.86+03	
c6e2a397-2d9f-bd87-1d5d-ea6525e1e6d5	2021-05-23 06:13:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:13:06.853+03	2021-05-23 06:13:06.865+03	
4adb5bf7-8f36-1052-477a-c0d9b6e64866	2021-05-23 06:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:13:27.853+03	2021-05-23 06:13:27.86+03	
4333d640-9d7d-f78a-f5b6-1a4af3691fb5	2021-05-23 06:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:13:48.853+03	2021-05-23 06:13:48.86+03	
d5be5c73-7bc3-5b21-f293-963c99243920	2021-05-23 06:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:14:09.853+03	2021-05-23 06:14:09.86+03	
95405441-a039-a048-8508-21f9bc333ce5	2021-05-23 06:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:14:30.853+03	2021-05-23 06:14:30.859+03	
422b87bc-6aba-d90c-dad5-b41fffdd1ff1	2021-05-23 06:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:14:50.853+03	2021-05-23 06:14:50.86+03	
7cf736c2-7f5c-05fa-5543-af61b4a65b76	2021-05-23 06:15:11.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:15:11.852+03	2021-05-23 06:15:11.865+03	
d2786ea9-59e1-0736-1cd6-c036d8ab6455	2021-05-23 06:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:15:32.852+03	2021-05-23 06:15:32.859+03	
8a9f172e-443f-ede0-18ef-a4878bc23ccb	2021-05-23 06:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:15:52.853+03	2021-05-23 06:15:52.875+03	
99887e6f-789b-a022-4d75-4601ebb6104c	2021-05-23 06:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:16:12.853+03	2021-05-23 06:16:12.87+03	
3b833c7e-fcb7-1ce0-72e3-dec0a83a7a92	2021-05-23 06:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:16:32.853+03	2021-05-23 06:16:32.861+03	
79faac97-28d3-1e78-f739-46c7dda41185	2021-05-23 06:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:16:52.853+03	2021-05-23 06:16:52.86+03	
55f6bfca-9351-1ef6-5339-f7101c0dcb9e	2021-05-23 06:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:17:12.853+03	2021-05-23 06:17:12.866+03	
d6942cb3-533d-e495-71a7-795d79cac80a	2021-05-23 06:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:17:33.853+03	2021-05-23 06:17:33.859+03	
48681b2b-bfe4-8b9b-9c4d-044b8156db84	2021-05-23 06:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:17:54.853+03	2021-05-23 06:17:54.863+03	
de4d5565-c1bb-9b80-e985-37c9330a3525	2021-05-23 06:18:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:18:15.853+03	2021-05-23 06:18:15.859+03	
c5cba666-d4a3-586f-c0e2-dd22187bccc2	2021-05-23 06:18:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:18:36.852+03	2021-05-23 06:18:36.861+03	
f0a2dabb-e772-d584-2ec4-933cc18dbf6f	2021-05-23 06:18:56.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:18:56.855+03	2021-05-23 06:18:56.862+03	
7322ec00-0ae1-2f15-a9cb-f5fa87e69ce2	2021-05-23 06:19:17.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:19:17.859+03	2021-05-23 06:19:17.867+03	
5958bc03-0c97-2720-a26f-f32d25b4e14e	2021-05-23 06:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:19:39.853+03	2021-05-23 06:19:39.861+03	
c5d45b26-1e5b-1a1b-479f-78535c477cd2	2021-05-23 06:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:19:59.853+03	2021-05-23 06:19:59.859+03	
97aef904-c456-6b60-25f7-9019ef303cef	2021-05-23 06:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:20:09.853+03	2021-05-23 06:20:09.859+03	
db1c6108-c889-5f4a-ce35-afc7c2b40f4e	2021-05-23 06:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:20:30.852+03	2021-05-23 06:20:30.86+03	
1eb80f69-8e7c-04f1-a6d9-a91b4e0cf14d	2021-05-23 06:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:20:50.853+03	2021-05-23 06:20:50.861+03	
0d2af105-ca2d-ecf1-0b4d-09b3534edd4a	2021-05-23 06:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:21:10.853+03	2021-05-23 06:21:10.86+03	
12f21ce4-f197-61cf-7d8f-3678593a032f	2021-05-23 06:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:21:30.853+03	2021-05-23 06:21:30.86+03	
2ceb8a76-265f-435f-656c-eda8c5e075ac	2021-05-23 06:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:21:52.853+03	2021-05-23 06:21:52.859+03	
239a4d48-0ad0-0286-0747-ffef5c628cb1	2021-05-23 06:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:22:12.853+03	2021-05-23 06:22:12.86+03	
836f1872-466b-63e4-86d5-9f82c759b245	2021-05-23 06:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:22:32.853+03	2021-05-23 06:22:32.859+03	
8397b0cd-35c8-c205-a416-cc640f124420	2021-05-23 06:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:22:52.853+03	2021-05-23 06:22:52.859+03	
24b774d3-62d5-bd1c-7355-c7c62fe6346c	2021-05-23 06:23:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:23:12.853+03	2021-05-23 06:23:12.867+03	
da9ffcfd-d4a3-2f09-00bd-b34564155d7e	2021-05-23 06:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:23:32.853+03	2021-05-23 06:23:32.863+03	
426c8e8a-9692-48a2-f363-a0200af72d6a	2021-05-23 06:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:23:53.852+03	2021-05-23 06:23:53.867+03	
3913191c-c1a5-9b0b-b0cc-05eb8ef79036	2021-05-23 06:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:24:13.852+03	2021-05-23 06:24:13.859+03	
4b5235ee-624d-0434-7840-26a6f5745a61	2021-05-23 06:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:24:33.853+03	2021-05-23 06:24:33.86+03	
e5a56d15-681f-5921-d431-3dc759493088	2021-05-23 06:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:24:53.853+03	2021-05-23 06:24:53.859+03	
e91a67ba-7e5a-a002-33d8-91c942bd0eea	2021-05-23 06:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:25:13.853+03	2021-05-23 06:25:13.861+03	
50c56e28-f09f-9182-7232-83c2037f53e4	2021-05-23 06:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:25:33.853+03	2021-05-23 06:25:33.859+03	
120ebe18-dbe9-0ea8-04a7-7f0517df7a5c	2021-05-23 06:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:25:53.853+03	2021-05-23 06:25:53.866+03	
791c8f3c-3e12-22d8-d44f-0be81bb8f436	2021-05-23 06:26:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:26:14.853+03	2021-05-23 06:26:14.859+03	
19962221-4e0b-bb38-c531-74b4dd2408eb	2021-05-23 06:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:26:35.853+03	2021-05-23 06:26:35.865+03	
a0b50397-aced-2b26-f2d7-d165155abb73	2021-05-23 06:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:26:55.853+03	2021-05-23 06:26:55.866+03	
021b3a32-d244-b59d-9b0f-47a5568a2bd8	2021-05-23 06:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:27:15.853+03	2021-05-23 06:27:15.864+03	
8d2e4f20-c148-396d-c553-bba35d6249ad	2021-05-23 06:27:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:27:36.853+03	2021-05-23 06:27:36.868+03	
31aee5fe-2dca-5188-e38d-453edecf385b	2021-05-23 06:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:27:57.852+03	2021-05-23 06:27:57.859+03	
cc8f200b-8642-ad51-807a-960141577202	2021-05-23 06:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:28:17.853+03	2021-05-23 06:28:17.861+03	
27f94880-20d6-67c8-b55f-14dad1af8e75	2021-05-23 06:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:28:37.853+03	2021-05-23 06:28:37.861+03	
69699c7c-680a-1543-a615-a2fb8332027c	2021-05-23 06:28:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:28:57.853+03	2021-05-23 06:28:57.859+03	
0b866171-977f-31c9-c1c8-8c689f9f076f	2021-05-23 06:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:29:18.852+03	2021-05-23 06:29:18.859+03	
67414aab-33f9-c6c3-8f13-20478eeb0af3	2021-05-23 06:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:29:38.853+03	2021-05-23 06:29:38.86+03	
5d487b2c-402d-6638-5edb-2b85e602fa05	2021-05-23 06:29:59.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:29:59.853+03	2021-05-23 06:29:59.862+03	
1b73b109-57fd-46ab-c2eb-3bf9e0f36278	2021-05-23 06:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:30:10.852+03	2021-05-23 06:30:10.862+03	
a5c465d7-06fc-e4f2-f6f2-cd2e53a5f7a0	2021-05-23 06:30:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:30:31.852+03	2021-05-23 06:30:31.861+03	
f44d984f-5dae-9ce5-3af9-1ec06d63a035	2021-05-23 06:30:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:30:51.853+03	2021-05-23 06:30:51.86+03	
009fce8b-4676-8b5d-4db3-4954541955e8	2021-05-23 06:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:31:12.853+03	2021-05-23 06:31:12.859+03	
52538bfd-3171-9eca-5c91-27164c1c8421	2021-05-23 06:31:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:31:32.854+03	2021-05-23 06:31:32.862+03	
8cba340e-44b8-60e7-0c17-f5aa1fbbb4e6	2021-05-23 06:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:31:54.853+03	2021-05-23 06:31:54.861+03	
91d1335c-526d-2baa-1a50-1b77939d16c7	2021-05-23 06:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:32:04.853+03	2021-05-23 06:32:04.863+03	
497a292b-d8ec-cadc-20fd-0a50269de314	2021-05-23 06:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:32:25.853+03	2021-05-23 06:32:25.86+03	
098695f6-cbe7-0b1b-9363-f3e40944e9f9	2021-05-23 06:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:32:45.853+03	2021-05-23 06:32:45.861+03	
c4010a3d-5014-8771-b6b3-20ea52e65705	2021-05-23 06:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:33:05.853+03	2021-05-23 06:33:05.859+03	
4051bfbc-634b-3010-cb18-59fe366601ae	2021-05-23 06:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:33:25.853+03	2021-05-23 06:33:25.86+03	
4a4a7dab-0c84-d725-109b-9ac4cd84db82	2021-05-23 06:33:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:33:46.853+03	2021-05-23 06:33:46.861+03	
dbe4a656-3deb-0a1a-416a-c8b13770341d	2021-05-23 06:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:34:07.852+03	2021-05-23 06:34:07.869+03	
65d9407e-de4d-5a43-ee00-ba889ae376b4	2021-05-23 06:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:34:27.853+03	2021-05-23 06:34:27.86+03	
ef2bad64-01e9-cc62-45c3-81ca2af73bde	2021-05-23 06:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:34:47.853+03	2021-05-23 06:34:47.859+03	
8b81c61e-2fc1-60ff-d72d-08c9725cf8b5	2021-05-23 06:35:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:35:07.853+03	2021-05-23 06:35:07.859+03	
a036106f-28af-7984-62ea-7ec08a1d04e0	2021-05-23 06:35:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:35:27.853+03	2021-05-23 06:35:27.86+03	
546cdf62-a1de-c5a8-9144-3a4102f61409	2021-05-23 06:35:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:35:47.853+03	2021-05-23 06:35:47.859+03	
59e249f2-4ce7-33f0-5fdc-abdb32a3d2c8	2021-05-23 06:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:36:09.853+03	2021-05-23 06:36:09.86+03	
f44e12f7-cd3a-0fe4-31d8-9bb784030e7a	2021-05-23 06:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:36:30.853+03	2021-05-23 06:36:30.859+03	
956caf66-8a8f-773a-1447-ab868126ba38	2021-05-23 06:36:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:36:51.853+03	2021-05-23 06:36:51.859+03	
15a96c6a-e199-d172-0f77-c879f34192ce	2021-05-23 06:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:37:12.853+03	2021-05-23 06:37:12.859+03	
d70900b6-b021-8a37-37c7-c9394f139407	2021-05-23 06:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:37:33.853+03	2021-05-23 06:37:33.86+03	
711097ec-5f20-2657-4447-8cec384dfcf5	2021-05-23 06:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:37:53.853+03	2021-05-23 06:37:53.86+03	
28f37e51-6372-a4e5-9408-9a9f240a50ae	2021-05-23 06:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:38:14.853+03	2021-05-23 06:38:14.871+03	
7595efc3-0bb6-a8ff-9186-7be02a5cfeb3	2021-05-23 06:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:38:35.852+03	2021-05-23 06:38:35.859+03	
5192747e-d255-e155-3491-77e46c80e3f3	2021-05-23 06:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:38:55.853+03	2021-05-23 06:38:55.86+03	
502d692c-a910-090f-fafc-516078b69ac9	2021-05-23 06:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:39:15.853+03	2021-05-23 06:39:15.86+03	
4b865780-f17f-dfd0-79cb-3e1bf3d506ed	2021-05-23 06:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:39:35.853+03	2021-05-23 06:39:35.865+03	
faab54e9-91b2-3626-b7a3-d3c503b65090	2021-05-23 06:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:39:57.853+03	2021-05-23 06:39:57.86+03	
da7e9bb4-baf3-be3a-0153-f7243ce653e2	2021-05-23 06:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:40:07.853+03	2021-05-23 06:40:07.859+03	
eb05ab0d-fdf8-0b77-0723-8b6f7b3d00af	2021-05-23 06:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:40:27.853+03	2021-05-23 06:40:27.859+03	
1b533be6-307f-8fbb-5ed4-d0428e4a9fde	2021-05-23 06:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:40:48.853+03	2021-05-23 06:40:48.859+03	
58bc9605-f93c-679a-beb7-544d75b42ab1	2021-05-23 06:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:41:08.853+03	2021-05-23 06:41:08.86+03	
869efec8-a743-f68d-43a2-0824b3ab7e5b	2021-05-23 06:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:41:28.853+03	2021-05-23 06:41:28.86+03	
60af8d8c-cf17-8ced-b67d-82db8f0eba52	2021-05-23 06:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:41:49.853+03	2021-05-23 06:41:49.859+03	
70add11b-284d-487a-9d60-70909f023131	2021-05-23 06:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:42:10.852+03	2021-05-23 06:42:10.861+03	
d2c3ce2e-0e6d-fdd9-ee89-589900a9ea8a	2021-05-23 06:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:42:30.853+03	2021-05-23 06:42:30.86+03	
51720d88-58f0-6c65-3039-ee7c3260e3de	2021-05-23 06:42:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:42:51.854+03	2021-05-23 06:42:51.862+03	
6adf6613-fba0-025c-5de5-29bf2108e078	2021-05-23 06:43:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:43:12.853+03	2021-05-23 06:43:12.859+03	
71c10c89-882b-4452-857d-d3ad88d22a89	2021-05-23 06:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:43:33.852+03	2021-05-23 06:43:33.858+03	
32047306-1d7f-46d1-9eda-3c5b5bcb5c33	2021-05-23 06:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:43:53.852+03	2021-05-23 06:43:53.86+03	
b011dfdf-1173-9b2d-83b6-5699aa765987	2021-05-23 06:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:44:13.853+03	2021-05-23 06:44:13.864+03	
d7d56953-c777-b9d8-2914-a0aa012c3776	2021-05-23 06:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:44:33.853+03	2021-05-23 06:44:33.86+03	
95eea730-22ff-8e85-aeab-5f5779802b5e	2021-05-23 06:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:44:54.853+03	2021-05-23 06:44:54.86+03	
53720953-b18d-429f-db2c-533a5a4a9ad4	2021-05-23 06:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:45:14.853+03	2021-05-23 06:45:14.859+03	
644b22b0-0f5d-ec01-e1ad-e1fd3a7d8cb8	2021-05-23 06:45:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:45:34.853+03	2021-05-23 06:45:34.905+03	
baa71c12-7cd0-9ae0-50a8-4b7166f556e4	2021-05-23 06:45:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:45:54.853+03	2021-05-23 06:45:54.859+03	
9a30e17f-4c08-af8d-8f90-7397df70fb94	2021-05-23 06:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:46:15.853+03	2021-05-23 06:46:15.862+03	
6725ea9f-1611-ddbc-9325-5461b38ecd63	2021-05-23 06:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:46:35.853+03	2021-05-23 06:46:35.865+03	
2a3618d8-51f1-a360-73c8-306594e524c5	2021-05-23 06:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:46:55.853+03	2021-05-23 06:46:55.863+03	
cfad0888-d8ad-abf2-e293-dc3754b881f9	2021-05-23 06:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:47:15.853+03	2021-05-23 06:47:15.859+03	
131b0c10-a0bb-e45d-0e73-578f4251a224	2021-05-23 06:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:47:35.853+03	2021-05-23 06:47:35.861+03	
f7625ad6-3da2-e5cf-16af-c64bf401de96	2021-05-23 06:47:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:47:56.852+03	2021-05-23 06:47:56.862+03	
c51df183-189a-cfff-61d6-62aedb8a25e9	2021-05-23 06:48:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:48:16.853+03	2021-05-23 06:48:16.867+03	
ebd56578-bfde-3f1c-f6fc-8407a6f93922	2021-05-23 06:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:48:37.853+03	2021-05-23 06:48:37.861+03	
a5008473-03f5-76ae-8ef2-915635131415	2021-05-23 06:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:48:58.852+03	2021-05-23 06:48:58.859+03	
5262f895-6bce-a062-d68f-601e42034258	2021-05-23 06:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:49:19.852+03	2021-05-23 06:49:19.859+03	
25ca8f85-997c-8a5b-53d6-221b399d01bb	2021-05-23 06:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:49:39.853+03	2021-05-23 06:49:39.86+03	
37a8fdd5-ca1e-ac58-d09d-e090c9b9aad5	2021-05-23 06:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:50:00.853+03	2021-05-23 06:50:00.863+03	
e7bd5578-7415-8ef8-7f0e-273617ee0b13	2021-05-23 06:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:50:20.853+03	2021-05-23 06:50:20.872+03	
cffca3a3-88b6-b353-255a-0d6d904ca9b0	2021-05-23 06:50:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:50:42.852+03	2021-05-23 06:50:42.859+03	
bfad27e6-b2d7-33db-266d-0a1099b1ccc0	2021-05-23 06:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:51:02.853+03	2021-05-23 06:51:02.859+03	
b0754e28-1a1e-f8e3-c08d-d0baa0eb33ce	2021-05-23 06:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:51:23.853+03	2021-05-23 06:51:23.86+03	
286fe90e-f55c-5ea7-2281-c5915169690c	2021-05-23 06:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:51:43.853+03	2021-05-23 06:51:43.86+03	
81e21292-7112-a12c-d327-20e2b212a479	2021-05-23 06:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:52:04.853+03	2021-05-23 06:52:04.859+03	
bc41abd4-8de7-9d3e-07c7-987da940f5fe	2021-05-23 06:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:52:25.853+03	2021-05-23 06:52:25.861+03	
e80dd4ca-59d0-eccb-8c37-692daaa3bcf6	2021-05-23 06:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:52:36.852+03	2021-05-23 06:52:36.861+03	
ffb1db09-7df1-75dd-52a7-131ccdc2673a	2021-05-23 06:52:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:52:56.854+03	2021-05-23 06:52:56.86+03	
b83af65e-c1a0-4090-6347-11887ae89b7b	2021-05-23 06:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:32:15.852+03	2021-05-23 06:32:15.861+03	
4b3b5c11-08a9-05db-3735-4cf6639edaa1	2021-05-23 06:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:32:35.853+03	2021-05-23 06:32:35.86+03	
2105ebba-1998-ab5d-ff8f-e15a2c8113e5	2021-05-23 06:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:32:55.853+03	2021-05-23 06:32:55.866+03	
496d0b21-6de1-0caa-17ba-4715bae73285	2021-05-23 06:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:33:15.853+03	2021-05-23 06:33:15.862+03	
2ef46952-e4aa-79f2-caba-b76f8ae940f0	2021-05-23 06:33:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:33:36.853+03	2021-05-23 06:33:36.87+03	
ecca1171-326a-c41a-63be-3798765c5a80	2021-05-23 06:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:33:56.853+03	2021-05-23 06:33:56.859+03	
0865cd46-fae7-fe92-8b33-c3f3eb31e5d7	2021-05-23 06:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:34:17.852+03	2021-05-23 06:34:17.859+03	
80baff01-e1aa-37a9-3dee-a5c7a23b60ff	2021-05-23 06:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:34:37.853+03	2021-05-23 06:34:37.861+03	
3a6de12f-255b-a6df-8865-21bca694b100	2021-05-23 06:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:34:57.853+03	2021-05-23 06:34:57.859+03	
6a652b32-013e-5d12-d581-1f6061001685	2021-05-23 06:35:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:35:17.853+03	2021-05-23 06:35:17.86+03	
10dcb82e-5c67-4b85-40fb-062eb2acf19f	2021-05-23 06:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:35:37.853+03	2021-05-23 06:35:37.862+03	
333ca77e-d121-ef84-8afc-d7e5fd095b78	2021-05-23 06:35:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:35:58.853+03	2021-05-23 06:35:58.869+03	
2f68ff03-088b-e930-56e2-ea17e5c06ba7	2021-05-23 06:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:36:20.853+03	2021-05-23 06:36:20.859+03	
50c6bbc9-2cc8-cb11-18a4-6b7e5ab1d9d0	2021-05-23 06:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:36:40.853+03	2021-05-23 06:36:40.861+03	
6e27588d-745e-b66b-76ae-95f0ec011db1	2021-05-23 06:37:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:37:01.854+03	2021-05-23 06:37:01.86+03	
b4fd1242-86f0-fdf1-067c-ff111fdcf47b	2021-05-23 06:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:37:23.853+03	2021-05-23 06:37:23.86+03	
31ef70c6-4d54-b591-07c0-f7a826fab9e2	2021-05-23 06:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:37:43.853+03	2021-05-23 06:37:43.869+03	
664a452c-3ecf-18ed-8947-72b6ec7f3fa6	2021-05-23 06:38:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:38:04.852+03	2021-05-23 06:38:04.859+03	
5c4899da-34ee-aa41-ba78-6b898035e7aa	2021-05-23 06:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:38:25.852+03	2021-05-23 06:38:25.858+03	
e6029037-3fdd-4b5d-bfc9-97c46891949e	2021-05-23 06:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:38:45.852+03	2021-05-23 06:38:45.859+03	
d931ea0d-84de-00a7-1479-645c4f3a543c	2021-05-23 06:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:39:05.853+03	2021-05-23 06:39:05.871+03	
7a263bc3-ca71-ec43-5d3c-0e805e56161b	2021-05-23 06:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:39:25.853+03	2021-05-23 06:39:25.859+03	
22151098-0b68-fe31-543b-9a3188e0bb27	2021-05-23 06:39:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:39:46.854+03	2021-05-23 06:39:46.861+03	
4d70d86c-c8c5-4fa8-5666-48df8bde3ac3	2021-05-23 06:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 06:40:00.852+03	2021-05-23 06:40:00.857+03	ERROR
124ec547-2e34-77f0-0c5b-8f1b0fed8b8a	2021-05-23 06:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:40:17.853+03	2021-05-23 06:40:17.858+03	
4cc3fe01-9077-0fdb-9968-b3787f6228d0	2021-05-23 06:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:40:38.853+03	2021-05-23 06:40:38.861+03	
30e497ff-1141-9230-8eab-849eed0752a6	2021-05-23 06:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:40:58.853+03	2021-05-23 06:40:58.861+03	
fdb49878-e61d-a591-1524-418bf648a16e	2021-05-23 06:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:41:18.853+03	2021-05-23 06:41:18.859+03	
6c8f4ee5-38de-bb24-b894-59d491f24946	2021-05-23 06:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:41:39.853+03	2021-05-23 06:41:39.86+03	
4a0e46e5-7fd6-90fc-a124-90a67c1965fa	2021-05-23 06:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:42:00.852+03	2021-05-23 06:42:00.86+03	
2fc8b73d-0c01-8a9b-da45-4aa515c80682	2021-05-23 06:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:42:20.852+03	2021-05-23 06:42:20.86+03	
28a59769-3646-1bbe-59ef-8163d01c02c3	2021-05-23 06:42:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:42:41.853+03	2021-05-23 06:42:41.859+03	
ac94cebe-a5fc-994c-4206-b7b170401b53	2021-05-23 06:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:43:02.853+03	2021-05-23 06:43:02.86+03	
be7044be-5a7f-e217-2c21-63eff89526bf	2021-05-23 06:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:43:23.852+03	2021-05-23 06:43:23.858+03	
f20ed5b5-68a9-f098-f3eb-b6226146459e	2021-05-23 06:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:43:43.852+03	2021-05-23 06:43:43.867+03	
16a112f1-3617-8bb1-345d-dc89c17cc6cd	2021-05-23 06:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:44:03.853+03	2021-05-23 06:44:03.87+03	
fa02d8b1-f930-48f7-5239-06aa9a3fe985	2021-05-23 06:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:44:23.853+03	2021-05-23 06:44:23.86+03	
ada51d00-e151-b2df-f438-b821dcdc1baf	2021-05-23 06:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:44:44.853+03	2021-05-23 06:44:44.859+03	
30c4b0de-94cd-5bd4-e8ed-c3ef16900421	2021-05-23 06:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:45:04.853+03	2021-05-23 06:45:04.86+03	
0100cb5c-0b68-d8b7-b7d2-2b74236e3464	2021-05-23 06:45:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:45:24.853+03	2021-05-23 06:45:24.859+03	
0c638eb0-16bc-fcb8-7f90-790d2efb1ea4	2021-05-23 06:45:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:45:44.853+03	2021-05-23 06:45:44.859+03	
db3e732a-2b17-2477-395a-8cb287ad01c2	2021-05-23 06:46:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:46:04.853+03	2021-05-23 06:46:04.859+03	
96c44ce3-49ee-95b8-15b6-48b428677610	2021-05-23 06:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:46:25.853+03	2021-05-23 06:46:25.859+03	
82e10b06-9e80-e5ac-5c9f-8378859b7877	2021-05-23 06:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:46:45.853+03	2021-05-23 06:46:45.872+03	
a6da4d93-4471-802b-2bfc-fe07c0e88bd4	2021-05-23 06:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:47:05.853+03	2021-05-23 06:47:05.859+03	
4227c041-610a-fb25-ea9b-67f32f34ec80	2021-05-23 06:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:47:25.853+03	2021-05-23 06:47:25.874+03	
ae896104-56c6-5cc2-4fde-3b3ab621f338	2021-05-23 06:47:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:47:46.852+03	2021-05-23 06:47:46.862+03	
c2ffb70b-ba8a-0b0a-1bcf-e5e2fdca2f1a	2021-05-23 06:48:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:48:06.852+03	2021-05-23 06:48:06.859+03	
4ab1a03d-e0f7-5429-a0b8-68c4b453f24b	2021-05-23 06:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:48:27.853+03	2021-05-23 06:48:27.86+03	
97bd821f-90ab-e53a-f558-c390227118df	2021-05-23 06:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:48:48.852+03	2021-05-23 06:48:48.86+03	
4fb74122-f2fe-c64d-eda8-876309418885	2021-05-23 06:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:49:08.853+03	2021-05-23 06:49:08.859+03	
adde75ce-8f49-3de1-b848-b9120873b161	2021-05-23 06:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:49:29.853+03	2021-05-23 06:49:29.863+03	
c3603300-486d-0d14-ebdc-75cae463cf34	2021-05-23 06:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:49:49.853+03	2021-05-23 06:49:49.859+03	
a44993ab-8b95-1c3f-c9bf-2c7f42e691dd	2021-05-23 06:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 06:50:00.853+03	2021-05-23 06:50:00.87+03	ERROR
627adde6-4004-3b0b-ab49-3cd1e346b233	2021-05-23 06:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:50:10.853+03	2021-05-23 06:50:10.86+03	
ebf7e25c-fb4d-141d-55e6-1741a1ba4374	2021-05-23 06:50:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:50:31.854+03	2021-05-23 06:50:31.86+03	
635d8b9f-d6c7-04b8-14a5-266ae41e1b9c	2021-05-23 06:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:50:52.853+03	2021-05-23 06:50:52.86+03	
7de1229a-a8cd-e51b-6eb6-7e59e7ef8777	2021-05-23 06:51:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:51:13.853+03	2021-05-23 06:51:13.86+03	
68c89300-ce1f-1988-c219-326e38913df3	2021-05-23 06:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:51:33.853+03	2021-05-23 06:51:33.86+03	
ffb5f237-9921-fcbe-7d77-09cc38bf5b06	2021-05-23 06:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:51:53.853+03	2021-05-23 06:51:53.87+03	
af896d6e-b8f8-e6fa-27cd-a9a50d0cea9b	2021-05-23 06:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:52:15.853+03	2021-05-23 06:52:15.859+03	
15c19595-23a7-ed10-3065-9dbd6e96af78	2021-05-23 06:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:52:46.853+03	2021-05-23 06:52:46.86+03	
e318ade6-be63-f11b-374c-5cab749e3697	2021-05-23 06:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:53:07.852+03	2021-05-23 06:53:07.859+03	
56438f12-fce6-bf45-6059-2f4c48f8b838	2021-05-23 06:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:53:17.853+03	2021-05-23 06:53:17.859+03	
27c8bd80-2ea1-05e6-2009-8e3b43577aa0	2021-05-23 06:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:53:38.852+03	2021-05-23 06:53:38.859+03	
c2106347-21f8-0b70-084d-ce6fe0e5c0ac	2021-05-23 06:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:53:58.852+03	2021-05-23 06:53:58.858+03	
0374d0d4-6aba-6fde-1e29-0b716e12a1cb	2021-05-23 06:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:54:18.853+03	2021-05-23 06:54:18.86+03	
55797102-0c50-7c1e-e002-4177fd24810e	2021-05-23 06:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:54:38.853+03	2021-05-23 06:54:38.86+03	
ffaeeafd-d0d3-2126-c92b-cea24b4eb50d	2021-05-23 06:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:54:59.853+03	2021-05-23 06:54:59.86+03	
e8691381-8c3f-9b84-04c8-4726ac24051a	2021-05-23 06:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:55:20.852+03	2021-05-23 06:55:20.859+03	
b1f699fd-9a44-dbc1-cad9-a0373f08b499	2021-05-23 06:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:55:40.852+03	2021-05-23 06:55:40.907+03	
dc6f57ce-50ff-a3cc-3647-23418e81ad05	2021-05-23 06:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:56:00.853+03	2021-05-23 06:56:00.859+03	
eac8f9ce-7f73-bec7-aa3b-2a5c0e90d16e	2021-05-23 06:56:20.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:56:20.853+03	2021-05-23 06:56:20.86+03	
63b520eb-c5a9-c739-0ec6-b6757d10b821	2021-05-23 06:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:56:40.853+03	2021-05-23 06:56:40.86+03	
04ca28b6-9b6f-ea7d-942c-15d9c49f18d8	2021-05-23 06:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:57:00.853+03	2021-05-23 06:57:00.859+03	
929d01cb-dac2-a3cc-38b6-69f2ab04899b	2021-05-23 06:57:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:57:21.852+03	2021-05-23 06:57:21.86+03	
0aa79779-be59-5fde-02fb-104511b6a7b0	2021-05-23 06:57:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:57:41.853+03	2021-05-23 06:57:41.86+03	
7d0d8bd9-b54a-8a99-43cd-77d849d1dd50	2021-05-23 06:58:01.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:58:01.859+03	2021-05-23 06:58:01.865+03	
12896308-18dc-c683-07de-b89971c354e1	2021-05-23 06:58:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:58:22.853+03	2021-05-23 06:58:22.86+03	
0793f545-de34-9d6d-2de8-ef50a6e47f8f	2021-05-23 06:58:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:58:43.852+03	2021-05-23 06:58:43.86+03	
38927c19-f717-1699-a325-dd8043f3880c	2021-05-23 06:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:59:03.852+03	2021-05-23 06:59:03.859+03	
6c796534-af88-cf24-d854-32fc64c59c7f	2021-05-23 06:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:59:23.853+03	2021-05-23 06:59:23.86+03	
609d6c79-5fb5-a2eb-b0a8-12ebc36fb8b3	2021-05-23 06:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:59:43.853+03	2021-05-23 06:59:43.865+03	
1b79a0de-6f13-93a5-83af-a36cfd912b2e	2021-05-23 07:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 07:00:00.852+03	2021-05-23 07:00:00.857+03	ERROR
0b3af273-a661-850a-f7a5-cc0603a18dd3	2021-05-23 07:00:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:00:13.853+03	2021-05-23 07:00:13.865+03	
2b5e57f1-b4ac-6681-1847-925676f64129	2021-05-23 07:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:00:33.853+03	2021-05-23 07:00:33.861+03	
d47445bd-8b47-41db-bb10-5b0c7e16ddfc	2021-05-23 07:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:00:54.852+03	2021-05-23 07:00:54.861+03	
4565f235-dc82-3fb3-b976-ffac0abaa13f	2021-05-23 07:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:01:15.853+03	2021-05-23 07:01:15.86+03	
513a65e7-2809-692a-1ce5-a5ceb0289a1e	2021-05-23 07:01:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:01:36.853+03	2021-05-23 07:01:36.859+03	
3511d96f-1469-6e69-6084-189e3bcaca3d	2021-05-23 07:01:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:01:56.853+03	2021-05-23 07:01:56.861+03	
0677f968-c476-7f1a-0996-f54866f80dca	2021-05-23 07:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:02:17.852+03	2021-05-23 07:02:17.859+03	
698e8ca1-bb72-6bfd-371b-710f30ec2f49	2021-05-23 07:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:02:37.852+03	2021-05-23 07:02:37.859+03	
e2ed987b-22de-068a-8de9-ec8973e6b682	2021-05-23 07:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:02:58.853+03	2021-05-23 07:02:58.86+03	
a2077cd5-19c8-f3ab-bc73-9a74f7d7e927	2021-05-23 07:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:03:20.853+03	2021-05-23 07:03:20.859+03	
676df0b7-1998-50cc-a1a1-fe975cf58b4a	2021-05-23 07:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:03:42.852+03	2021-05-23 07:03:42.861+03	
b6fd0f31-05aa-b431-6982-320b7b28c442	2021-05-23 07:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:04:02.853+03	2021-05-23 07:04:02.859+03	
d961df9d-d4a6-7ec4-26f7-c43c03a07f7e	2021-05-23 07:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:04:23.853+03	2021-05-23 07:04:23.862+03	
ad6aa26b-68f7-23be-c0e8-1ab9a47ad664	2021-05-23 07:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:04:45.852+03	2021-05-23 07:04:45.859+03	
02073c9c-b194-3241-4434-68f2d0eaeb4a	2021-05-23 07:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:05:05.853+03	2021-05-23 07:05:05.86+03	
ad50b07f-a5d4-06fc-52c8-f1967d873a87	2021-05-23 07:05:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:05:26.852+03	2021-05-23 07:05:26.859+03	
96a26b3d-c71a-aace-fbd7-14e8db2571e1	2021-05-23 07:05:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:05:46.853+03	2021-05-23 07:05:46.868+03	
a3b4e56c-eb90-09f2-5254-5bd6bf3b29d3	2021-05-23 07:06:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:06:06.854+03	2021-05-23 07:06:06.868+03	
072288c4-9072-cd9b-5a83-b47fa80b8e6f	2021-05-23 07:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:06:27.853+03	2021-05-23 07:06:27.86+03	
389b562c-63c1-206a-c99d-73d48db79ed0	2021-05-23 07:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:06:47.853+03	2021-05-23 07:06:47.859+03	
3d4280f2-c226-6339-6177-bd662b160899	2021-05-23 07:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:07:08.852+03	2021-05-23 07:07:08.859+03	
8a90558f-b27e-44c5-6d9c-2313589af5a5	2021-05-23 07:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:07:28.853+03	2021-05-23 07:07:28.86+03	
27d3a8cd-af9a-89d6-9ff5-75320fd29fb1	2021-05-23 07:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:07:48.853+03	2021-05-23 07:07:48.859+03	
6633ed65-6040-66f4-e1bf-4c334cccde1c	2021-05-23 07:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:08:09.852+03	2021-05-23 07:08:09.859+03	
19f33fca-0e40-9924-95ae-f72738e0542d	2021-05-23 07:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:08:29.853+03	2021-05-23 07:08:29.86+03	
47f58661-9d39-3ee0-b109-aea912bd494e	2021-05-23 07:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:08:49.853+03	2021-05-23 07:08:49.86+03	
e6785237-18bd-db6d-1b08-210f7d67ba76	2021-05-23 07:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:09:10.852+03	2021-05-23 07:09:10.859+03	
55721a0e-9600-5a4b-1148-490e5503e9e2	2021-05-23 07:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:09:30.852+03	2021-05-23 07:09:30.87+03	
44de64c9-bd31-c606-8c5c-97a2b86fe79e	2021-05-23 07:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:09:50.852+03	2021-05-23 07:09:50.859+03	
78289160-87c8-04f8-e92e-1f2d8796a705	2021-05-23 07:10:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:10:11.852+03	2021-05-23 07:10:11.886+03	
44492b29-1b16-014c-5169-edc93dba6a5d	2021-05-23 07:10:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:10:31.854+03	2021-05-23 07:10:31.86+03	
18c83bb6-bf10-0f81-de37-28964ddaf5ba	2021-05-23 07:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:10:52.853+03	2021-05-23 07:10:52.859+03	
f496c197-bf2a-6d7c-143b-dd4ca3cd7342	2021-05-23 07:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:11:13.853+03	2021-05-23 07:11:13.86+03	
784295ea-d6b6-5ce6-1f39-3372b85fcb5c	2021-05-23 07:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:11:34.853+03	2021-05-23 07:11:34.859+03	
76b7af9b-8b4d-c26f-d558-27866a6e285f	2021-05-23 07:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:11:54.853+03	2021-05-23 07:11:54.859+03	
018a5d57-efa3-5ca4-b965-514406fe9f20	2021-05-23 07:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:12:14.853+03	2021-05-23 07:12:14.86+03	
ed265039-cb5c-d212-f30d-28fca17a52b9	2021-05-23 07:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:12:35.853+03	2021-05-23 07:12:35.863+03	
250150c9-9546-0c12-4c23-db01eed69098	2021-05-23 07:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:12:55.853+03	2021-05-23 07:12:55.86+03	
457b9930-926a-5d0b-1a44-f233f2e17e9e	2021-05-23 07:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:13:15.853+03	2021-05-23 07:13:15.86+03	
f15026d7-a9b4-95ac-341e-2129ac48138c	2021-05-23 07:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:13:35.853+03	2021-05-23 07:13:35.86+03	
951bfc72-5a28-9298-ddef-6f14793c9ebf	2021-05-23 07:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:13:55.853+03	2021-05-23 07:13:55.86+03	
444a667a-df0f-fee5-10b6-37605cb013c2	2021-05-23 07:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:14:17.852+03	2021-05-23 07:14:17.862+03	
43e193e8-729c-4759-53a8-9da47f62b9a3	2021-05-23 06:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:53:27.853+03	2021-05-23 06:53:27.862+03	
a11f3eef-4c01-c852-8a9a-c70f08306368	2021-05-23 06:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:53:48.852+03	2021-05-23 06:53:48.858+03	
64d03882-e5d0-6b1a-dd5f-5edad3dd7275	2021-05-23 06:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:54:08.852+03	2021-05-23 06:54:08.859+03	
a30b9bb3-2ebe-c958-648e-bdd38c0116dd	2021-05-23 06:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:54:28.853+03	2021-05-23 06:54:28.859+03	
b0d58254-f0e1-21a7-f87d-4b6235815c33	2021-05-23 06:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:54:48.853+03	2021-05-23 06:54:48.86+03	
d636d558-d256-9d6a-f3f5-c8fa20fb2f09	2021-05-23 06:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:55:10.852+03	2021-05-23 06:55:10.862+03	
f232f849-0760-18b5-2416-3145aff2172e	2021-05-23 06:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:55:30.852+03	2021-05-23 06:55:30.859+03	
83cae1ee-1c97-23b5-ac21-cc8dc51ddeb4	2021-05-23 06:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:55:50.852+03	2021-05-23 06:55:50.859+03	
c519422e-65f1-d0af-d99e-50dd4c565faf	2021-05-23 06:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:56:10.853+03	2021-05-23 06:56:10.86+03	
9081db22-9e18-4e9b-4964-287240d54b49	2021-05-23 06:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:56:30.853+03	2021-05-23 06:56:30.859+03	
4ce2149c-10d6-ff38-9818-4dadda38b8ed	2021-05-23 06:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:56:50.853+03	2021-05-23 06:56:50.86+03	
4d9ce418-eaee-ba0e-ccda-44f5df1cb504	2021-05-23 06:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:57:10.853+03	2021-05-23 06:57:10.86+03	
67382650-e9ba-6ffa-7791-8c8e035a0eb6	2021-05-23 06:57:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:57:31.852+03	2021-05-23 06:57:31.864+03	
d15fd144-211a-c9e0-a408-6f881e0b8160	2021-05-23 06:57:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:57:51.853+03	2021-05-23 06:57:51.859+03	
d02104ae-67df-b8be-7a11-ba4b2f8308f2	2021-05-23 06:58:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:58:12.853+03	2021-05-23 06:58:12.862+03	
f3b4324a-3605-1bae-1ab5-7b5d10f9009c	2021-05-23 06:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:58:33.852+03	2021-05-23 06:58:33.86+03	
7984654a-a3cc-ec7f-1964-12fde1c2baed	2021-05-23 06:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:58:53.852+03	2021-05-23 06:58:53.859+03	
6bed2420-cedf-c1c9-13d0-0032fe484a3d	2021-05-23 06:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:59:13.852+03	2021-05-23 06:59:13.859+03	
467b50a3-84bd-35e3-7bca-66fa1ee29fe0	2021-05-23 06:59:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:59:33.853+03	2021-05-23 06:59:33.859+03	
a668de32-befd-2a7e-23b1-d45536fc42a3	2021-05-23 06:59:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 06:59:53.853+03	2021-05-23 06:59:53.861+03	
16a36f72-723a-a329-3a51-883d8ba7ac17	2021-05-23 07:00:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:00:03.853+03	2021-05-23 07:00:03.862+03	
a0a5593e-db86-324f-7194-44830c5acb5d	2021-05-23 07:00:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:00:23.853+03	2021-05-23 07:00:23.871+03	
62fe89d1-8c37-bba6-7b79-6e966756efb8	2021-05-23 07:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:00:43.853+03	2021-05-23 07:00:43.861+03	
b5f7dc8a-abcc-f798-f6f9-dabe9671be37	2021-05-23 07:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:01:04.853+03	2021-05-23 07:01:04.859+03	
ba84ce79-4d38-10e1-ef2d-4e607112d9c7	2021-05-23 07:01:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:01:26.853+03	2021-05-23 07:01:26.861+03	
86cda1a0-e796-3d76-28bd-e7f285cda960	2021-05-23 07:01:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:01:46.853+03	2021-05-23 07:01:46.859+03	
5ad22754-6c62-fb3f-d448-d743e390fbed	2021-05-23 07:02:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:02:07.852+03	2021-05-23 07:02:07.873+03	
300286c3-3e58-90e8-0fc1-17abdf24ce38	2021-05-23 07:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:02:27.852+03	2021-05-23 07:02:27.86+03	
af8d91a3-b28c-58f3-8091-568682a0cec4	2021-05-23 07:02:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:02:47.853+03	2021-05-23 07:02:47.859+03	
fb2a4b2b-f74b-e68d-7358-71a6aa2e1d7f	2021-05-23 07:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:03:09.853+03	2021-05-23 07:03:09.871+03	
c0dda7c6-2f7f-764a-55d4-7029210e8597	2021-05-23 07:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:03:31.854+03	2021-05-23 07:03:32.191+03	
75cbd165-4ab4-96e9-8d35-e7f1b162faaa	2021-05-23 07:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:03:52.852+03	2021-05-23 07:03:52.86+03	
791a5e4f-6f4e-c647-0cee-e1ee4c7a24ed	2021-05-23 07:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:04:13.853+03	2021-05-23 07:04:13.86+03	
172e3e4e-8aa0-9cef-a7db-57b468b8cbf7	2021-05-23 07:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:04:34.853+03	2021-05-23 07:04:34.861+03	
77dfa28b-d0bb-8ee4-d2f0-0969e401d9bf	2021-05-23 07:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:04:55.853+03	2021-05-23 07:04:55.86+03	
aa4e8918-1077-6e38-7df4-a170d6d9bac3	2021-05-23 07:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:05:15.853+03	2021-05-23 07:05:15.86+03	
c0c01dd0-ecb8-71a4-3a0e-6ca2afd822a7	2021-05-23 07:05:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:05:36.852+03	2021-05-23 07:05:36.859+03	
d6f5aa26-2ebf-6895-ad86-51a36b8ba6c3	2021-05-23 07:05:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:05:56.854+03	2021-05-23 07:05:56.86+03	
1bc99821-aef3-37ab-377a-4b666763d60e	2021-05-23 07:06:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:06:16.854+03	2021-05-23 07:06:16.87+03	
d1aa0f1d-ce5d-4f18-ff72-71c911034c90	2021-05-23 07:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:06:37.853+03	2021-05-23 07:06:37.859+03	
4b4c66d5-6c2f-978d-96d1-8d7faa0f29c0	2021-05-23 07:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:06:57.853+03	2021-05-23 07:06:57.86+03	
e47736c6-946e-059f-152d-5cffa19b4610	2021-05-23 07:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:07:18.852+03	2021-05-23 07:07:18.859+03	
0ac87d96-c95d-53c3-1589-8f00d7dcf651	2021-05-23 07:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:07:38.853+03	2021-05-23 07:07:38.86+03	
78579d78-caee-86dc-1883-d2c71cb2657b	2021-05-23 07:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:07:58.853+03	2021-05-23 07:07:58.874+03	
5f7d4c64-aa3e-cfd1-5bc5-657f96e7d95a	2021-05-23 07:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:08:19.853+03	2021-05-23 07:08:19.859+03	
ab601417-176d-178d-3629-d0a30922bd21	2021-05-23 07:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:08:39.853+03	2021-05-23 07:08:39.861+03	
8bc4bed4-90d5-7c52-4a90-0e8cefc9f1b0	2021-05-23 07:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:09:00.852+03	2021-05-23 07:09:00.859+03	
ecba1a3b-94a4-b697-d777-842a7648d20a	2021-05-23 07:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:09:20.852+03	2021-05-23 07:09:20.858+03	
2d9a2a47-cf23-cc0d-dc15-a1d48ebfcb92	2021-05-23 07:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:09:40.852+03	2021-05-23 07:09:40.858+03	
0157b819-672d-33bb-749e-2571520bdf60	2021-05-23 07:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:10:00.853+03	2021-05-23 07:10:00.859+03	
df32a6b9-f9c8-b776-e7b0-15cebf652540	2021-05-23 07:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 07:10:00.853+03	2021-05-23 07:10:00.873+03	ERROR
a3051948-1423-31ec-857d-44a771e4f7ff	2021-05-23 07:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:10:21.853+03	2021-05-23 07:10:21.86+03	
50d96d6a-0dac-eaea-7705-74173d7bf2d3	2021-05-23 07:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:10:42.852+03	2021-05-23 07:10:42.859+03	
ca8c14bd-7c24-b5bd-7e9c-00780a2ada5b	2021-05-23 07:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:11:03.853+03	2021-05-23 07:11:03.861+03	
510e9d67-fd11-b527-a284-63f3db8e0ca8	2021-05-23 07:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:11:24.853+03	2021-05-23 07:11:24.859+03	
fb296e5f-5bf9-8e5c-f938-4789cfa0bc60	2021-05-23 07:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:11:44.853+03	2021-05-23 07:11:44.859+03	
bc2a52f9-d885-bf21-5774-e5992011c547	2021-05-23 07:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:12:04.853+03	2021-05-23 07:12:04.86+03	
fe41651f-5feb-b4d9-34f5-7801c2f8cb41	2021-05-23 07:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:12:24.853+03	2021-05-23 07:12:24.859+03	
2bc07102-0b63-6144-1220-5dac5a5cd472	2021-05-23 07:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:12:45.853+03	2021-05-23 07:12:45.861+03	
0b55d8a5-f8fe-2c56-3ac2-88425c2afd1f	2021-05-23 07:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:13:05.853+03	2021-05-23 07:13:05.863+03	
29afd59c-73f5-d445-4f40-64b59b119eb2	2021-05-23 07:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:13:25.853+03	2021-05-23 07:13:25.859+03	
05aabad6-4f8f-3d35-d066-f70d78e4dad2	2021-05-23 07:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:13:45.853+03	2021-05-23 07:13:45.86+03	
bc7f3492-f37b-9b49-b441-d8ffd45b9990	2021-05-23 07:14:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:14:06.853+03	2021-05-23 07:14:06.859+03	
d160703c-c853-fb99-3c6e-3aa7588a491d	2021-05-24 23:00:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:00:31.877+03	2021-05-24 23:00:31.883+03	
31ace660-cdde-35ae-91d7-764d900d263a	2021-05-23 07:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:14:27.852+03	2021-05-23 07:14:27.86+03	
a36475fb-6921-1cc5-c71c-1480e5017219	2021-05-23 22:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:47:07.853+03	2021-05-23 22:47:07.859+03	
aba1430f-c608-c9ce-d2aa-81a86b218fc3	2021-05-23 07:14:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:14:48.853+03	2021-05-23 07:14:48.859+03	
fb8e6c11-7ab9-dbf1-7711-125a24ea8e79	2021-05-23 07:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:15:08.853+03	2021-05-23 07:15:08.86+03	
825b5dd4-084e-5f61-14ea-cbd02d8818ea	2021-05-23 22:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:47:28.853+03	2021-05-23 22:47:28.86+03	
fc442043-182b-2248-ae20-a17e7433ddf2	2021-05-23 07:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:15:29.853+03	2021-05-23 07:15:29.859+03	
48382caf-ae76-f0d9-8b1b-b9b54e188835	2021-05-23 07:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:15:50.853+03	2021-05-23 07:15:50.859+03	
01bc2015-d419-da31-3132-4aeef3f3c3af	2021-05-23 22:47:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:47:49.852+03	2021-05-23 22:47:49.859+03	
767008fa-c13a-0c10-562e-72fb89a9d0a2	2021-05-23 07:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:16:11.853+03	2021-05-23 07:16:11.86+03	
e8109d14-f80c-b398-6589-87ffb831d70a	2021-05-23 07:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:16:32.853+03	2021-05-23 07:16:32.859+03	
d569486e-8f56-2a0d-0814-eb7b82057a3c	2021-05-23 22:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:48:09.853+03	2021-05-23 22:48:09.859+03	
29557cd8-623d-67dc-216a-b89a294a76ef	2021-05-23 07:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:16:53.852+03	2021-05-23 07:16:53.859+03	
f0e3f35e-8908-bb7f-fcce-b271a60af69f	2021-05-23 07:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:17:13.852+03	2021-05-23 07:17:13.859+03	
858ac1c5-b3f9-1071-3f1a-b8a7b2aae68e	2021-05-23 22:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:48:30.852+03	2021-05-23 22:48:30.859+03	
38cb413a-d218-fc0b-e3ac-bab6d75781a0	2021-05-23 07:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:17:33.853+03	2021-05-23 07:17:33.861+03	
40b773b7-7e86-f348-636a-c6fe9c302062	2021-05-23 07:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:17:53.853+03	2021-05-23 07:17:53.86+03	
be66139e-abae-1611-3c14-28f4243b66cb	2021-05-23 22:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:48:50.852+03	2021-05-23 22:48:50.859+03	
9fa0ba74-74c2-50d2-9b03-305e60d50628	2021-05-23 07:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:18:13.853+03	2021-05-23 07:18:13.859+03	
2885e674-baf5-ba92-8484-8589d7e49d65	2021-05-23 07:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:18:34.853+03	2021-05-23 07:18:34.859+03	
852d96e7-c5ab-187f-8fb6-329712ea8572	2021-05-23 22:49:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:49:10.852+03	2021-05-23 22:49:10.858+03	
287377ca-afeb-0fd1-386f-b142f87307a9	2021-05-23 07:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:18:55.853+03	2021-05-23 07:18:55.859+03	
1ab95a1e-9289-434f-0757-4b87d926972c	2021-05-23 07:19:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:19:16.852+03	2021-05-23 07:19:16.86+03	
64a4189c-f297-3739-d1e8-99a769608e2e	2021-05-23 22:49:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:49:31.853+03	2021-05-23 22:49:31.86+03	
b5938135-48e0-e0a7-b5c7-f3e6f471c80e	2021-05-23 07:19:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:19:36.853+03	2021-05-23 07:19:36.86+03	
19572589-068e-ec8d-75d7-97455b54ebd3	2021-05-23 07:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 07:20:00.853+03	2021-05-23 07:20:00.858+03	ERROR
e579472e-5265-22d5-f555-f579570131d8	2021-05-23 22:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:49:52.852+03	2021-05-23 22:49:52.858+03	
549d772c-1ef3-a90a-7a34-fdacb8da0e36	2021-05-23 07:20:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:20:16.853+03	2021-05-23 07:20:16.88+03	
d30e61c0-0f7e-5a23-4ac9-66e46c742843	2021-05-23 07:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:20:38.853+03	2021-05-23 07:20:38.86+03	
358cc3a7-a294-ba9e-7297-4d106216c663	2021-05-23 22:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:50:02.853+03	2021-05-23 22:50:02.859+03	
c3f98e23-f720-ca38-65d8-f0593dcc7509	2021-05-23 07:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:20:58.853+03	2021-05-23 07:20:58.874+03	
c3c0dae8-43dd-1ea8-b4a3-285b6ff42af4	2021-05-23 07:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:21:18.853+03	2021-05-23 07:21:18.861+03	
2e0064d8-d64d-fcb1-6bbb-001341a13613	2021-05-23 22:50:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:50:22.853+03	2021-05-23 22:50:22.872+03	
005c0248-e0b8-1025-4858-db6016ccf937	2021-05-23 07:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:21:40.853+03	2021-05-23 07:21:40.859+03	
38d530af-9846-fe9a-edf7-26df9aa7955f	2021-05-23 07:22:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:22:01.854+03	2021-05-23 07:22:01.867+03	
6bf3f780-fd8e-74e9-6006-e1cdc52ac707	2021-05-23 22:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:50:43.853+03	2021-05-23 22:50:43.858+03	
8916bf6b-1f4f-bca1-e547-8e3508708a59	2021-05-23 07:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:22:22.853+03	2021-05-23 07:22:22.859+03	
dec3b17d-0afa-b28f-3409-c174a66cc8bf	2021-05-23 07:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:22:43.853+03	2021-05-23 07:22:43.869+03	
243769d9-ebe1-bcdd-e516-047643d4e16d	2021-05-23 22:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:51:04.852+03	2021-05-23 22:51:04.858+03	
149ad79f-c8f3-ea5c-b366-f6c4db560513	2021-05-23 07:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:23:03.853+03	2021-05-23 07:23:03.86+03	
de60e472-a795-2947-2dd8-afd169d98ec7	2021-05-23 07:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:23:25.853+03	2021-05-23 07:23:25.859+03	
61a8fd5b-fab2-11fc-68f4-6b68ba61dee2	2021-05-23 22:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:51:24.853+03	2021-05-23 22:51:24.859+03	
b09db05d-85e1-6aa7-8c3d-99e40d3505d1	2021-05-23 07:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:23:45.853+03	2021-05-23 07:23:45.859+03	
af22385e-b425-cc63-0c16-c20083996818	2021-05-23 07:24:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:24:06.853+03	2021-05-23 07:24:06.86+03	
d9067725-3f4f-7f08-46fa-7e66cab6987f	2021-05-23 22:51:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:51:46.852+03	2021-05-23 22:51:46.859+03	
1dca665c-b456-3cb0-30ed-f54bb05f6269	2021-05-23 07:24:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:24:26.853+03	2021-05-23 07:24:26.861+03	
2cb407a5-76d8-413d-51c0-763d894068ae	2021-05-23 07:24:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:24:47.853+03	2021-05-23 07:24:47.859+03	
1fb5d6e2-03d4-8333-a41d-4051bc63fa52	2021-05-23 22:52:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:52:06.852+03	2021-05-23 22:52:06.86+03	
f49d89a5-3170-9674-4299-2e2624692704	2021-05-23 07:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:25:08.853+03	2021-05-23 07:25:08.859+03	
14650f8c-3c30-e0a7-23e8-513108569702	2021-05-23 07:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:25:29.853+03	2021-05-23 07:25:29.859+03	
ce51ce4c-a052-e5f6-ba7b-5a8a71d18604	2021-05-23 22:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:52:26.852+03	2021-05-23 22:52:26.871+03	
7edc63c2-61ee-08c9-036e-b61ceaf2d0b0	2021-05-23 07:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:25:49.853+03	2021-05-23 07:25:49.86+03	
00590fd8-5842-f0eb-5c71-79b807b9b758	2021-05-23 07:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:26:10.852+03	2021-05-23 07:26:10.859+03	
0d514f22-faba-fcd3-9c53-7c3d2a70e846	2021-05-23 22:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:52:46.852+03	2021-05-23 22:52:46.859+03	
ad636844-b8fd-ef89-5992-7088f77bf7bd	2021-05-23 07:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:26:30.853+03	2021-05-23 07:26:30.859+03	
23ca6909-03eb-621d-7258-57bf655ffd71	2021-05-23 07:26:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:26:50.853+03	2021-05-23 07:26:50.86+03	
aaa0e43c-050a-6470-008d-accc5b7136bd	2021-05-23 22:53:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:53:06.852+03	2021-05-23 22:53:06.859+03	
a93edcf5-6692-cdbe-0fde-0ac60332edcd	2021-05-23 07:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:27:10.853+03	2021-05-23 07:27:10.86+03	
ced95280-3701-82c6-0dc1-21691b7d7da1	2021-05-23 07:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:27:30.853+03	2021-05-23 07:27:30.86+03	
e8c49a2a-4005-32f9-3a14-189860777a98	2021-05-23 22:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:53:27.852+03	2021-05-23 22:53:27.859+03	
144c0c83-5e4d-ebaa-7606-a0827bf54d50	2021-05-23 22:53:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:53:47.852+03	2021-05-23 22:53:47.859+03	
4a4463f5-9a46-a8d1-4252-3d4b31d2809e	2021-05-23 22:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:54:07.852+03	2021-05-23 22:54:07.859+03	
820ed4da-ed3e-8fb6-f7a3-447e62b3dbf6	2021-05-23 22:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:54:27.853+03	2021-05-23 22:54:27.859+03	
a7e4cb3d-27d8-3f14-5e61-4662af8112bd	2021-05-23 22:54:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:54:49.853+03	2021-05-23 22:54:49.859+03	
f6b18ce9-37a2-b698-47bb-c0f4b77cfda4	2021-05-23 22:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:55:10.852+03	2021-05-23 22:55:10.861+03	
6bad1712-f712-e13f-bb12-5727d1f82061	2021-05-23 07:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:14:37.853+03	2021-05-23 07:14:37.859+03	
8b92c923-71d8-567c-b88a-2610743bd817	2021-05-23 07:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:14:58.853+03	2021-05-23 07:14:58.864+03	
cc40754f-59ca-ab0f-53fc-17531bdd0f62	2021-05-23 07:15:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:15:18.853+03	2021-05-23 07:15:18.86+03	
c92519ec-efb6-9031-032d-7c442deb29be	2021-05-23 07:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:15:39.853+03	2021-05-23 07:15:39.859+03	
c127e809-9735-5fb1-08a3-49b32e37cb03	2021-05-23 07:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:16:00.853+03	2021-05-23 07:16:00.86+03	
3d9597e1-11ad-263c-a59d-104755e7d727	2021-05-23 07:16:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:16:21.854+03	2021-05-23 07:16:21.868+03	
c0024745-3199-b27b-2433-00dce26f37a6	2021-05-23 07:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:16:42.853+03	2021-05-23 07:16:42.859+03	
2f5cd72a-409e-1d44-e848-c77ef3605d55	2021-05-23 07:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:17:03.852+03	2021-05-23 07:17:03.858+03	
80caff21-2bf8-2b2d-c0d7-46215d6f20a3	2021-05-23 07:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:17:23.853+03	2021-05-23 07:17:23.859+03	
759a13cb-831f-75d8-0af3-d7715c05db2a	2021-05-23 07:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:17:43.853+03	2021-05-23 07:17:43.86+03	
c1ac80bf-88bc-1609-8a24-6a117bc4d4c2	2021-05-23 07:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:18:03.853+03	2021-05-23 07:18:03.86+03	
3cd88238-82a2-c43f-7eb2-e1a6ad34b09a	2021-05-23 07:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:18:23.853+03	2021-05-23 07:18:23.868+03	
f4adab96-3f8b-a32e-c74f-c6e1c43f7b40	2021-05-23 07:18:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:18:45.853+03	2021-05-23 07:18:45.87+03	
742b1693-6a43-a6d4-054c-3d98f2743c3c	2021-05-23 07:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:19:05.853+03	2021-05-23 07:19:05.87+03	
ff8e7268-e8c0-b8d8-1d51-7cb69d83e252	2021-05-23 07:19:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:19:26.852+03	2021-05-23 07:19:26.861+03	
8bc49195-5e1d-4cca-b0bb-78cc375b88a0	2021-05-23 07:19:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:19:46.853+03	2021-05-23 07:19:46.872+03	
4ffb1346-2afc-e5c4-7088-7d26be8d92d8	2021-05-23 07:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:19:56.853+03	2021-05-23 07:19:56.859+03	
e0afea9a-dc6f-5c63-cdf4-22c109ec8a54	2021-05-23 07:20:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:20:06.853+03	2021-05-23 07:20:06.86+03	
a831bf16-a21f-a886-91bf-2f912b47a91e	2021-05-23 07:20:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:20:27.853+03	2021-05-23 07:20:27.878+03	
6beabc52-c02b-e29a-11fb-e1a718fc59ef	2021-05-23 07:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:20:48.853+03	2021-05-23 07:20:48.859+03	
6f5ba8ed-67b8-e0be-b822-7dc5d07be1b1	2021-05-23 07:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:21:08.853+03	2021-05-23 07:21:08.87+03	
3abc4cb6-c261-040e-6859-9585d5c0c1f5	2021-05-23 07:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:21:29.853+03	2021-05-23 07:21:29.86+03	
95fe7668-df15-00a9-ec21-451b74a9f4d1	2021-05-23 07:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:21:50.853+03	2021-05-23 07:21:50.859+03	
f5849dc8-a236-c895-41d6-09abe67c8e6c	2021-05-23 07:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:22:12.852+03	2021-05-23 07:22:12.859+03	
68d3139a-ff2c-358c-eec5-673528ef189b	2021-05-23 07:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:22:32.853+03	2021-05-23 07:22:32.861+03	
9b84602c-87f4-21da-8921-ef6dcb3a2d1f	2021-05-23 07:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:22:53.853+03	2021-05-23 07:22:53.86+03	
63af13ce-f071-3469-e165-553ce73fc2fb	2021-05-23 07:23:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:23:14.853+03	2021-05-23 07:23:14.868+03	
487da961-42ef-6076-f97d-1d0a45639bbb	2021-05-23 07:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:23:35.853+03	2021-05-23 07:23:35.862+03	
25fdd0b5-2f2c-c9e9-90b5-d28f4ac9b586	2021-05-23 07:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:23:55.853+03	2021-05-23 07:23:55.86+03	
ab281e91-0fa7-0e5e-eda4-b225ee1ea9dc	2021-05-23 07:24:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:24:16.853+03	2021-05-23 07:24:16.86+03	
66ee09a5-9f7c-2773-bdaa-9fe240918f50	2021-05-23 07:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:24:37.852+03	2021-05-23 07:24:37.859+03	
8a0b44f3-cbee-65ec-6518-2de938e899cc	2021-05-23 07:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:24:58.853+03	2021-05-23 07:24:58.874+03	
7decdbd9-d990-1e75-8d5c-027dd24c0587	2021-05-23 07:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:25:18.853+03	2021-05-23 07:25:18.86+03	
78e8db46-1aad-4ca8-c374-e76ae830ad9c	2021-05-23 07:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:25:39.853+03	2021-05-23 07:25:39.859+03	
153bbec4-eb0c-b985-5ed8-0bd34be1bddf	2021-05-23 07:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:26:00.852+03	2021-05-23 07:26:00.859+03	
d357fae7-7b3d-a390-506a-8fd0ccaeb0f8	2021-05-23 07:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:26:20.853+03	2021-05-23 07:26:20.86+03	
9d2e4bc9-2e72-fb6e-3ea6-b6fe2f4b9412	2021-05-23 07:26:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:26:40.853+03	2021-05-23 07:26:40.859+03	
6e3caf27-6bbd-1e93-0930-44e4b2cfa1f8	2021-05-23 07:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:27:00.853+03	2021-05-23 07:27:00.861+03	
36d53ca0-56d5-e6ac-55e6-273d8aca5c5c	2021-05-23 07:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:27:20.853+03	2021-05-23 07:27:20.859+03	
73b9e624-5af9-5da9-2d26-40158f69e09f	2021-05-23 07:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:27:40.853+03	2021-05-23 07:27:40.865+03	
e0cf2463-cade-68c0-e405-ddf2412f7355	2021-05-23 07:27:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:27:50.853+03	2021-05-23 07:27:50.86+03	
6ef9f4a2-2ea3-221c-bdaf-c0f4217ead52	2021-05-23 07:28:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:28:01.852+03	2021-05-23 07:28:01.859+03	
787d7e6b-8e5a-a70d-70e5-862e80468c9c	2021-05-23 07:28:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:28:11.852+03	2021-05-23 07:28:11.87+03	
fbfaaad3-5d97-cb96-66e5-d06a5b603b41	2021-05-23 07:28:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:28:21.852+03	2021-05-23 07:28:21.859+03	
c17d596d-20d1-9d86-ea95-85a9bc1c1226	2021-05-23 07:28:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:28:31.852+03	2021-05-23 07:28:31.859+03	
eaa0c034-3bdb-cb55-3206-50710a2928c2	2021-05-23 07:28:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:28:41.852+03	2021-05-23 07:28:41.867+03	
ef83f6cc-a9ba-b2e5-e623-2bc1297ac8a3	2021-05-23 07:28:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:28:51.853+03	2021-05-23 07:28:51.859+03	
fead2000-b933-3357-1c44-02c3c48ed7de	2021-05-23 07:29:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:29:02.852+03	2021-05-23 07:29:02.859+03	
4e35605c-7de6-41da-e5eb-d373b24f68c5	2021-05-23 07:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:29:12.852+03	2021-05-23 07:29:12.859+03	
4b4d1169-b0d8-471c-1ac5-03a081bf41ad	2021-05-23 07:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:29:22.853+03	2021-05-23 07:29:22.86+03	
071f6bd9-157c-3e89-7330-e4bff7d2dbe7	2021-05-23 07:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:29:33.852+03	2021-05-23 07:29:33.859+03	
6edac638-4f31-78dc-e5d9-abb11fddc406	2021-05-23 07:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:29:43.853+03	2021-05-23 07:29:43.864+03	
5552684b-192a-caae-14ef-e82b4e2d3e00	2021-05-23 07:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:29:53.853+03	2021-05-23 07:29:53.865+03	
24b90b6c-23c4-73a4-85b4-cf3242a5832e	2021-05-23 07:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 07:30:00.853+03	2021-05-23 07:30:00.857+03	ERROR
69e45df2-fe1b-976a-a03c-14a698cc9d70	2021-05-23 07:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:30:04.852+03	2021-05-23 07:30:04.86+03	
90829ac9-7bc5-ad7a-943b-757dcfaa032a	2021-05-23 07:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:30:14.852+03	2021-05-23 07:30:14.859+03	
de9497ba-b9f4-a245-fb8c-2de414381c0b	2021-05-23 07:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:30:24.853+03	2021-05-23 07:30:24.859+03	
3f9148d6-fedb-c520-8b00-0f112cfe2e2a	2021-05-23 07:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:30:35.853+03	2021-05-23 07:30:35.861+03	
fe1d7fbd-8f41-bc5b-0a49-d0ca282277ed	2021-05-23 07:30:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:30:46.852+03	2021-05-23 07:30:46.86+03	
aaffbefb-0b8c-9980-467b-05173f30fddc	2021-05-23 07:30:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:30:56.852+03	2021-05-23 07:30:56.86+03	
813dec27-2f29-6c34-a4f3-7ed9359b6dc3	2021-05-23 07:31:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:31:06.853+03	2021-05-23 07:31:06.859+03	
27aad256-6ca3-846e-f855-e443c83a2733	2021-05-23 07:31:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:31:17.852+03	2021-05-23 07:31:17.859+03	
0f25168a-8581-5b9c-3312-3f1729e00aa3	2021-05-23 07:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:31:27.852+03	2021-05-23 07:31:27.86+03	
243618a2-97d8-396f-f2ca-45d219116269	2021-05-23 07:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:31:37.852+03	2021-05-23 07:31:37.858+03	
eb459c19-8498-5ce3-02bd-38ed18eb9bf3	2021-05-23 07:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:31:57.853+03	2021-05-23 07:31:57.859+03	
42064aec-65b3-60ef-0e43-c6ab6656ac9e	2021-05-23 07:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:32:19.853+03	2021-05-23 07:32:19.859+03	
2623b380-cf48-e606-7db7-1744f87559f3	2021-05-23 07:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:32:40.852+03	2021-05-23 07:32:40.859+03	
faa6dd5d-3815-0fcf-5227-24de08b85283	2021-05-23 07:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:33:00.852+03	2021-05-23 07:33:00.858+03	
8fda0f5c-7765-9078-d990-df70e9cc25fa	2021-05-23 07:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:33:20.853+03	2021-05-23 07:33:20.863+03	
9a50dd6f-4b8e-033b-0fd6-68804cfd8ed8	2021-05-23 07:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:33:41.854+03	2021-05-23 07:33:41.86+03	
607fdd30-36e3-4455-3b2f-c3ac105bed0a	2021-05-23 07:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:34:02.853+03	2021-05-23 07:34:02.86+03	
f9e8be09-97d3-e609-15ca-e78802987614	2021-05-23 07:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:34:23.852+03	2021-05-23 07:34:23.859+03	
5ae849ae-4f6a-70a6-648f-4844f37e0e21	2021-05-23 07:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:34:43.853+03	2021-05-23 07:34:43.859+03	
029d464e-c605-188b-2df8-58a371a93b9d	2021-05-23 07:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:35:04.853+03	2021-05-23 07:35:04.86+03	
619c7b80-5c6f-f041-127d-9bfc3f413e59	2021-05-23 07:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:35:24.853+03	2021-05-23 07:35:24.859+03	
255545c0-c679-87fe-25a8-3efab2532362	2021-05-23 07:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:35:44.853+03	2021-05-23 07:35:44.86+03	
bfe88af0-f845-f832-52c9-d9a6f3d88459	2021-05-23 07:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:36:05.852+03	2021-05-23 07:36:05.86+03	
e07ec5e3-b2f8-f5a8-de51-672f9f772d8b	2021-05-23 07:36:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:36:26.854+03	2021-05-23 07:36:26.86+03	
1650ff2a-0235-1d64-110c-5cb805630380	2021-05-23 07:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:36:47.853+03	2021-05-23 07:36:47.866+03	
c9a0aed8-967f-b588-5cd0-d115e01d4bea	2021-05-23 07:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:37:09.852+03	2021-05-23 07:37:09.858+03	
83713442-174a-1fac-5ea1-bb7f057a0a19	2021-05-23 07:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:37:29.852+03	2021-05-23 07:37:29.859+03	
35aadfac-bfc9-27eb-dcec-1b352320049f	2021-05-23 07:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:37:49.852+03	2021-05-23 07:37:49.86+03	
31e31149-b27c-e848-785c-d77cf8293b9f	2021-05-23 07:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:38:09.853+03	2021-05-23 07:38:09.861+03	
32d89b44-bfad-170f-3340-3df7cec92307	2021-05-23 07:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:38:29.853+03	2021-05-23 07:38:29.869+03	
f162f4cd-e83e-dca9-77c7-771cc957915e	2021-05-23 07:38:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:38:51.852+03	2021-05-23 07:38:51.866+03	
8659d6b7-1761-2e35-8b43-68de45047e11	2021-05-23 07:39:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:39:11.853+03	2021-05-23 07:39:11.86+03	
06438e55-c0fd-4b37-db3d-45f128c4e861	2021-05-23 07:39:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:39:31.854+03	2021-05-23 07:39:31.861+03	
97bda630-626b-14d3-fc94-ed44bdcaf1c2	2021-05-23 07:39:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:39:53.852+03	2021-05-23 07:39:53.859+03	
1941f967-50df-d4b3-d2a2-d2e1ed3ae4ef	2021-05-23 07:40:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:40:03.853+03	2021-05-23 07:40:03.86+03	
7afdfcbd-0d6c-22d1-d3da-bb3051d9d0c8	2021-05-23 07:40:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:40:25.853+03	2021-05-23 07:40:25.859+03	
bf3e035b-767d-5bd8-8027-d6407d380cb3	2021-05-23 07:40:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:40:46.854+03	2021-05-23 07:40:46.861+03	
d7660071-7a18-c48e-85b5-f2b9192db7f1	2021-05-23 07:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:41:08.852+03	2021-05-23 07:41:08.86+03	
9da47d92-1488-8dc0-c1d0-3a49fc908d8d	2021-05-23 07:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:41:29.852+03	2021-05-23 07:41:29.86+03	
520233bb-9902-ffce-186c-2c66f33d4eff	2021-05-23 07:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:41:49.852+03	2021-05-23 07:41:49.858+03	
3e7e6b7f-dc35-5418-6de5-12a59fe216c5	2021-05-23 07:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:42:10.853+03	2021-05-23 07:42:10.859+03	
6d09c694-3f61-541e-a675-bf5cdb9abddf	2021-05-23 07:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:42:30.853+03	2021-05-23 07:42:30.872+03	
45433d8b-77d2-efd4-daef-4d307bfaefe7	2021-05-23 07:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:42:50.853+03	2021-05-23 07:42:50.859+03	
66583cc7-e599-80a4-0f38-a1834d700236	2021-05-23 07:43:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:43:11.852+03	2021-05-23 07:43:11.859+03	
5e391d59-21d8-b1ce-7207-f030d6638301	2021-05-23 07:43:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:43:31.853+03	2021-05-23 07:43:31.859+03	
e781342b-1d7c-2ac9-4b32-3e677363c550	2021-05-23 07:43:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:43:51.853+03	2021-05-23 07:43:51.86+03	
754d863c-5e2b-baa3-a4ba-539484c37662	2021-05-23 07:44:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:44:11.853+03	2021-05-23 07:44:11.859+03	
9c6e0ee5-b4fd-97e4-0e3e-e2b937c994e3	2021-05-23 07:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:44:31.854+03	2021-05-23 07:44:31.864+03	
317825d2-4333-1aec-f2d5-dcb8a8d2785c	2021-05-23 07:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:44:52.853+03	2021-05-23 07:44:52.872+03	
0d0da5c0-d515-8ec6-184e-22a1696bf68c	2021-05-23 07:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:45:13.852+03	2021-05-23 07:45:13.859+03	
2a3140de-98d4-430c-83e2-170bdc11c205	2021-05-23 07:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:45:33.852+03	2021-05-23 07:45:33.859+03	
4a658264-7eb1-3848-f4e1-4602929f9d3c	2021-05-23 07:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:45:53.852+03	2021-05-23 07:45:53.86+03	
8747a157-7437-2a25-17e5-2edcb02d287c	2021-05-23 07:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:46:13.853+03	2021-05-23 07:46:13.86+03	
192bdf3c-2333-4168-b5fa-354326757ee5	2021-05-23 07:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:46:34.852+03	2021-05-23 07:46:34.87+03	
eeedb3b6-0654-dd81-5beb-7839a9db95fe	2021-05-23 07:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:46:54.852+03	2021-05-23 07:46:54.859+03	
10d3c9e7-b886-a0c0-19ee-6959ab41ad86	2021-05-23 07:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:47:14.853+03	2021-05-23 07:47:14.86+03	
167cec37-2250-25b0-3b0e-9a2278825f81	2021-05-23 07:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:47:35.852+03	2021-05-23 07:47:35.861+03	
7b5abbc8-1640-b4d6-f1a3-466e7cdc509d	2021-05-23 07:47:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:47:55.853+03	2021-05-23 07:47:55.861+03	
b87b2bb8-d617-5366-a93a-6bd3e6aea64c	2021-05-23 07:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:48:15.853+03	2021-05-23 07:48:15.859+03	
57695705-422b-7c60-fa32-b767ee74f800	2021-05-23 07:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:48:35.853+03	2021-05-23 07:48:35.861+03	
f2112cce-ae56-96e0-45ec-a9f8cdae1b82	2021-05-23 07:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:48:55.853+03	2021-05-23 07:48:55.86+03	
a79078e3-43e3-59ad-5ecd-972dad485176	2021-05-23 07:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:49:16.853+03	2021-05-23 07:49:16.859+03	
d31c026f-0416-db6e-dec3-ecd536c52c58	2021-05-23 07:49:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:49:36.853+03	2021-05-23 07:49:36.861+03	
9eae3772-2dad-99df-3687-d4f524017709	2021-05-23 07:49:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:49:56.854+03	2021-05-23 07:49:56.861+03	
9f2a5666-6613-49ee-e609-8632a15515c1	2021-05-23 07:50:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:50:07.853+03	2021-05-23 07:50:07.863+03	
a1811baa-19ff-8905-10a0-be563b976190	2021-05-23 07:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:50:28.853+03	2021-05-23 07:50:28.86+03	
1dd405a9-3531-a7b8-1fae-549f9718dff4	2021-05-23 07:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:50:49.853+03	2021-05-23 07:50:49.859+03	
462322d8-bbbf-2541-8848-e9883dfc6cc6	2021-05-23 07:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:51:09.853+03	2021-05-23 07:51:09.865+03	
24e3c839-7f0f-a2f6-8893-b4f0030b1102	2021-05-23 07:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:51:30.853+03	2021-05-23 07:51:30.859+03	
2247249f-7b72-54cc-c536-ed2a99917b62	2021-05-23 07:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:51:50.853+03	2021-05-23 07:51:50.86+03	
4af60856-b39c-e5a0-b05e-b3d76a1fe59b	2021-05-23 07:52:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:52:11.852+03	2021-05-23 07:52:11.86+03	
32952e37-de1d-b788-1509-f73071df0a30	2021-05-23 07:52:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:52:31.853+03	2021-05-23 07:52:31.861+03	
32324efa-808f-366f-2685-bbd285ca7c5d	2021-05-23 07:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:31:47.852+03	2021-05-23 07:31:47.86+03	
d22a29fc-9b5a-1a6b-7134-16940adfc563	2021-05-23 07:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:32:08.853+03	2021-05-23 07:32:08.871+03	
e624d30d-fa32-1135-33be-659fa4c8b591	2021-05-23 07:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:32:30.852+03	2021-05-23 07:32:30.859+03	
f6450b53-d4c5-38f2-8965-5da0d21ae21c	2021-05-23 07:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:32:50.852+03	2021-05-23 07:32:50.859+03	
47b1ae5d-56c1-6f0e-a1ad-321aad279a51	2021-05-23 07:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:33:10.852+03	2021-05-23 07:33:10.858+03	
30a7009f-f256-462d-c634-ea42197c69b2	2021-05-23 07:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:33:30.853+03	2021-05-23 07:33:30.86+03	
9faf2ca2-41d4-405e-01ed-369f30f28ae3	2021-05-23 07:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:33:52.852+03	2021-05-23 07:33:52.861+03	
4f04a8aa-a1d1-674a-89eb-5956feace3c3	2021-05-23 07:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:34:13.852+03	2021-05-23 07:34:13.859+03	
2b7ab24c-68cf-cc7d-d267-e0842941b659	2021-05-23 07:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:34:33.852+03	2021-05-23 07:34:33.962+03	
d7984045-a245-6aef-c652-7bf6b7b6273e	2021-05-23 07:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:34:54.853+03	2021-05-23 07:34:54.859+03	
f8bf27a7-0fae-37dc-28fb-fbd04a1cdda4	2021-05-23 07:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:35:14.853+03	2021-05-23 07:35:14.863+03	
c0b99022-d716-f020-3312-14b5e875825a	2021-05-23 07:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:35:34.853+03	2021-05-23 07:35:34.859+03	
1df82301-a523-3ed7-52b1-b973a9807803	2021-05-23 07:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:35:54.853+03	2021-05-23 07:35:54.859+03	
3a56dc29-6e96-566f-76ac-ab49c2519976	2021-05-23 07:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:36:15.853+03	2021-05-23 07:36:15.86+03	
e3513541-165d-06e9-e58e-35fb4b5957d4	2021-05-23 07:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:36:37.853+03	2021-05-23 07:36:37.86+03	
9a2d522c-4971-fd5f-bcd5-e02be8fe4f8b	2021-05-23 07:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:36:58.853+03	2021-05-23 07:36:58.863+03	
a83b8de8-e867-b3d6-278f-fb6fff9d67bb	2021-05-23 07:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:37:19.852+03	2021-05-23 07:37:19.859+03	
45a83fee-68b2-72f6-c805-044ee51ac632	2021-05-23 07:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:37:39.852+03	2021-05-23 07:37:39.859+03	
b58707ba-b0b2-6e1c-ef65-b19b60f87859	2021-05-23 07:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:37:59.852+03	2021-05-23 07:37:59.86+03	
c5d48866-4af5-5c19-6786-bea9182f9fc3	2021-05-23 07:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:38:19.853+03	2021-05-23 07:38:19.859+03	
2d6155cd-1eed-6a51-438d-9bc265b03dda	2021-05-23 07:38:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:38:40.853+03	2021-05-23 07:38:40.859+03	
96cc7c02-4551-9522-2a2a-bfdd380134ef	2021-05-23 07:39:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:39:01.852+03	2021-05-23 07:39:01.859+03	
9ffe22c3-18ff-1e32-64f7-43cc4b27eda4	2021-05-23 07:39:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:39:21.853+03	2021-05-23 07:39:21.86+03	
c66e438c-1ac0-729d-f5a4-5248a7ffeda1	2021-05-23 07:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:39:42.853+03	2021-05-23 07:39:42.86+03	
5ccc745e-1c41-8f5d-2d48-336b591372f9	2021-05-23 07:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 07:40:00.853+03	2021-05-23 07:40:00.86+03	ERROR
26a230de-b533-57c1-2f60-8a869453d8d3	2021-05-23 07:40:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:40:14.853+03	2021-05-23 07:40:14.861+03	
a8b5c3e9-340e-1041-5a38-11b77e4c9e4b	2021-05-23 07:40:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:40:35.853+03	2021-05-23 07:40:35.861+03	
0421d41f-7e8f-6349-2b1a-a17931f984a7	2021-05-23 07:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:40:57.853+03	2021-05-23 07:40:57.859+03	
e3941d0d-a749-45a9-5cf8-25a866b1acfa	2021-05-23 07:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:41:18.853+03	2021-05-23 07:41:18.86+03	
2da7024c-4391-6833-fe9f-19e47cd6102a	2021-05-23 07:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:41:39.852+03	2021-05-23 07:41:39.859+03	
f4415b35-4dbe-039a-3dbc-3a7717974e54	2021-05-23 07:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:41:59.853+03	2021-05-23 07:41:59.869+03	
c359fdde-f081-8652-52be-6500ab8fb0ae	2021-05-23 07:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:42:20.853+03	2021-05-23 07:42:20.859+03	
16ecd36a-b8c6-fbc2-73af-0cca1a56f02b	2021-05-23 07:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:42:40.853+03	2021-05-23 07:42:40.864+03	
fbd05c1f-90d5-f1a5-7ba6-1d47bdce9904	2021-05-23 07:43:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:43:01.852+03	2021-05-23 07:43:01.876+03	
712e52be-390d-b064-e822-3118250231a7	2021-05-23 07:43:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:43:21.852+03	2021-05-23 07:43:21.858+03	
18c30d94-cb25-7e72-05f5-5d164f59673a	2021-05-23 07:43:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:43:41.853+03	2021-05-23 07:43:41.863+03	
c4532891-5d24-e206-99ca-86ff779a93fc	2021-05-23 07:44:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:44:01.853+03	2021-05-23 07:44:01.861+03	
81b58044-0210-8c74-15d3-e94741dde6d6	2021-05-23 07:44:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:44:21.854+03	2021-05-23 07:44:21.873+03	
8afcd18b-00ec-cd1c-6d70-4110e22b16d3	2021-05-23 07:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:44:42.853+03	2021-05-23 07:44:42.86+03	
01319b37-c297-ecfd-453c-e1d4a421506e	2021-05-23 07:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:45:03.852+03	2021-05-23 07:45:03.859+03	
e2f7e08f-a0d0-e695-19c0-f7ffb77244dd	2021-05-23 07:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:45:23.852+03	2021-05-23 07:45:23.86+03	
3376123a-6e39-6503-8be3-96eb9243c74c	2021-05-23 07:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:45:43.852+03	2021-05-23 07:45:43.861+03	
457c506a-9cdb-9924-e348-b3d1b55a01b3	2021-05-23 07:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:46:03.852+03	2021-05-23 07:46:03.86+03	
d6ded3f4-a977-5f1b-3b48-c8ba3b3fad1f	2021-05-23 07:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:46:24.852+03	2021-05-23 07:46:24.86+03	
fb4ba896-c17f-8ea6-7767-7fb54bbc4e1c	2021-05-23 07:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:46:44.852+03	2021-05-23 07:46:44.859+03	
5c2d2ca6-7d81-bf96-6da3-d9dddafa1ada	2021-05-23 07:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:47:04.853+03	2021-05-23 07:47:04.86+03	
a5397074-75c8-d1b9-14f8-1f2dce6d3b2f	2021-05-23 07:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:47:25.852+03	2021-05-23 07:47:25.86+03	
e166884e-6b79-5973-a44c-e6a132d604ad	2021-05-23 07:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:47:45.852+03	2021-05-23 07:47:45.861+03	
fad22246-a522-951b-e490-dd5443a7f85f	2021-05-23 07:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:48:05.853+03	2021-05-23 07:48:05.86+03	
1d29d288-d75a-55f5-6b3c-12bb8cd1a444	2021-05-23 07:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:48:25.853+03	2021-05-23 07:48:25.863+03	
ec58a542-4da2-c868-f5e9-4e5da60f3afa	2021-05-23 07:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:48:45.853+03	2021-05-23 07:48:45.861+03	
7f65a47e-89b4-2cfc-fa90-51e3b139e977	2021-05-23 07:49:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:49:06.852+03	2021-05-23 07:49:06.859+03	
5b5342cd-e3e4-580c-519a-66b2469cd528	2021-05-23 07:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:49:26.853+03	2021-05-23 07:49:26.859+03	
35a4f75e-ffc2-b25c-3b4d-7da1bf19008e	2021-05-23 07:49:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:49:46.854+03	2021-05-23 07:49:46.861+03	
4db6c01c-9808-ec06-34d7-09eff0b5ac43	2021-05-23 07:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 07:50:00.852+03	2021-05-23 07:50:00.857+03	ERROR
bc3e73c1-42d2-9aac-d6d2-e966e1b1fc61	2021-05-23 07:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:50:18.852+03	2021-05-23 07:50:18.86+03	
d50d4901-5336-d191-3465-989ee11929b3	2021-05-23 07:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:50:39.853+03	2021-05-23 07:50:39.859+03	
6f33d2f3-00cd-cbd7-9942-29bad42831ed	2021-05-23 07:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:50:59.853+03	2021-05-23 07:50:59.862+03	
72f6a819-72d7-10bf-596a-38af71c6e738	2021-05-23 07:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:51:19.853+03	2021-05-23 07:51:19.86+03	
9f9717b8-ab9d-cdbb-4fc6-aa3cf0699ba3	2021-05-23 07:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:51:40.853+03	2021-05-23 07:51:40.859+03	
50795c64-4a20-6856-7e2f-ce45ba4a2b35	2021-05-23 07:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:52:00.853+03	2021-05-23 07:52:00.859+03	
213c158e-5b39-35a6-fb60-edcffdc88f01	2021-05-23 07:52:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:52:21.853+03	2021-05-23 07:52:21.861+03	
512d127d-fffe-c9bf-9266-26b2c5a76473	2021-05-23 07:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:52:42.852+03	2021-05-23 07:52:42.861+03	
0655ddf9-8b0f-c7b7-8b76-60ffca054084	2021-05-23 07:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:52:52.853+03	2021-05-23 07:52:52.862+03	
0616d5ba-ba39-934f-eda4-9803bf12bb54	2021-05-23 07:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:53:12.853+03	2021-05-23 07:53:12.861+03	
ca1ebc86-c387-d91d-d341-faf7b2129ce8	2021-05-23 07:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:53:32.853+03	2021-05-23 07:53:32.86+03	
c73e691d-5fd6-d036-1d54-e5c5edba92c8	2021-05-23 07:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:53:52.853+03	2021-05-23 07:53:52.859+03	
3cc7366f-cec5-1276-3b86-847a57bde48b	2021-05-23 07:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:54:13.852+03	2021-05-23 07:54:13.86+03	
57607f5a-a342-bd05-bdad-a59c6f4550a8	2021-05-23 07:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:54:33.853+03	2021-05-23 07:54:33.859+03	
fe13c5a3-0cfb-551c-edae-76a6cc63c343	2021-05-23 07:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:54:54.853+03	2021-05-23 07:54:54.86+03	
540022d2-3eb8-88c9-c649-4487f6d36133	2021-05-23 07:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:55:14.853+03	2021-05-23 07:55:14.859+03	
e6f21302-750d-63fd-3058-76d930911d97	2021-05-23 07:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:55:34.853+03	2021-05-23 07:55:34.86+03	
ef335e0e-70ea-ba4e-e51c-a2b7c35c8f25	2021-05-23 07:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:55:54.853+03	2021-05-23 07:55:54.859+03	
ffbd0198-9170-b182-2dbf-4e06f13a3414	2021-05-23 07:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:56:15.853+03	2021-05-23 07:56:15.861+03	
ed6fcecf-2fa1-6333-5635-8670e9adb7ef	2021-05-23 07:56:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:56:36.852+03	2021-05-23 07:56:36.859+03	
6597ba9d-fb16-4284-21f4-79c0df0afd8c	2021-05-23 07:56:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:56:56.854+03	2021-05-23 07:56:56.86+03	
d893ef32-2473-22d2-efdc-6ce610a54881	2021-05-23 07:57:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:57:18.853+03	2021-05-23 07:57:18.861+03	
f117b50d-eebd-0613-777c-7ee782372fa7	2021-05-23 07:57:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:57:39.853+03	2021-05-23 07:57:39.859+03	
e8777cf6-097c-3d78-b9d4-deda2120b866	2021-05-23 07:58:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:58:00.852+03	2021-05-23 07:58:00.859+03	
87aa6780-618c-dcf4-b3ff-0040b5ccad78	2021-05-23 07:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:58:20.853+03	2021-05-23 07:58:20.86+03	
71c17d35-2d01-83c0-52b1-14f63e632f6d	2021-05-23 07:58:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:58:42.853+03	2021-05-23 07:58:42.861+03	
a6f9b252-e40e-4779-86f2-c5c83486b21a	2021-05-23 07:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:59:03.852+03	2021-05-23 07:59:03.858+03	
6ffac2a4-e3c6-aece-5c78-605277a98ad7	2021-05-23 07:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:59:23.853+03	2021-05-23 07:59:23.86+03	
715da2a4-9a51-c146-cfd8-9ca5ed5cd0d6	2021-05-23 07:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:59:44.853+03	2021-05-23 07:59:44.859+03	
2d3009d6-84fd-7cf6-858e-33c12c5a34a2	2021-05-23 07:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:59:54.853+03	2021-05-23 07:59:54.86+03	
8a1f4c65-911f-6271-7140-0c978b10f8c6	2021-05-23 08:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:00:04.853+03	2021-05-23 08:00:04.865+03	
13c0eb42-bcf4-0f8f-0faa-ab5961e9a9f4	2021-05-23 08:00:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:00:24.853+03	2021-05-23 08:00:24.866+03	
2f16ccf5-4286-429b-0127-17ed4cd98a17	2021-05-23 08:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:00:44.853+03	2021-05-23 08:00:44.861+03	
475a9b09-5b62-01f5-2cbd-2f5828ac6e4b	2021-05-23 08:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:01:04.853+03	2021-05-23 08:01:04.861+03	
7d806b2c-c3ae-9a09-abbe-042becbe6a18	2021-05-23 08:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:01:25.853+03	2021-05-23 08:01:25.86+03	
2ac1747a-92f3-ff2d-c3c4-5a661bc1379d	2021-05-23 08:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:01:45.853+03	2021-05-23 08:01:45.859+03	
abe47bc2-c41d-11a0-fbd1-131641bbd93d	2021-05-23 08:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:02:05.853+03	2021-05-23 08:02:05.859+03	
0b98c562-1a16-4119-1537-def2ca527ba2	2021-05-23 08:02:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:02:26.853+03	2021-05-23 08:02:26.859+03	
cf3aa461-8310-7b6e-0527-6e978ee59b93	2021-05-23 08:02:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:02:46.853+03	2021-05-23 08:02:46.86+03	
897d045f-0fbb-4d7e-b4c1-40f6f20a1e7a	2021-05-23 08:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:03:07.853+03	2021-05-23 08:03:07.861+03	
6594683d-d896-2353-2a9b-59b1986beaa5	2021-05-23 08:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:03:27.853+03	2021-05-23 08:03:27.859+03	
dfd69536-bafe-79c8-a60a-8bf04a143958	2021-05-23 08:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:03:47.853+03	2021-05-23 08:03:47.86+03	
8a1f76b7-7f1e-81b7-0611-6b11da694adb	2021-05-23 08:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:04:08.853+03	2021-05-23 08:04:08.859+03	
7016b586-d24b-8c6a-9b5d-ae692191a732	2021-05-23 08:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:04:29.853+03	2021-05-23 08:04:29.859+03	
d3c74768-11a3-3322-0ae5-99095bf82011	2021-05-23 08:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:04:50.853+03	2021-05-23 08:04:50.859+03	
7d421452-c36f-38f3-a97b-24421d195fef	2021-05-23 08:05:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:05:11.853+03	2021-05-23 08:05:11.859+03	
0b37eb99-4fea-949d-5b74-e36abd568e4c	2021-05-23 08:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:05:32.852+03	2021-05-23 08:05:32.858+03	
a0b5cf34-943e-8695-1217-88296c8d0b73	2021-05-23 08:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:05:52.852+03	2021-05-23 08:05:52.859+03	
cb9bafe4-3eca-0258-5d0e-bd6c644de8e3	2021-05-23 08:06:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:06:12.853+03	2021-05-23 08:06:12.862+03	
43755e9c-5dd4-7ee3-5c5c-d8222e242d15	2021-05-23 08:06:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:06:32.853+03	2021-05-23 08:06:32.86+03	
753ef864-0033-2ad8-9468-99c833ad5c95	2021-05-23 08:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:06:53.853+03	2021-05-23 08:06:53.86+03	
30b84bf7-6a57-d900-a727-5b661add2ed4	2021-05-23 08:07:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:07:13.853+03	2021-05-23 08:07:13.859+03	
71dd63e0-54a9-1104-765f-ceb8b0820c75	2021-05-23 08:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:07:35.853+03	2021-05-23 08:07:35.858+03	
1ea99807-7736-2b4c-ec85-217635451f4d	2021-05-23 08:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:07:55.853+03	2021-05-23 08:07:55.861+03	
5888f938-552c-4368-8520-4965c9cd250b	2021-05-23 08:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:08:17.853+03	2021-05-23 08:08:17.86+03	
fad1ba9e-16ee-3d2b-e63d-cd046309f475	2021-05-23 08:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:08:38.853+03	2021-05-23 08:08:38.859+03	
31ad6eb3-891c-7b95-9ae6-a1880011adb7	2021-05-23 08:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:08:59.853+03	2021-05-23 08:08:59.861+03	
ba7c7e87-cabb-2289-cdf6-b543eb9046fe	2021-05-23 08:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:09:20.853+03	2021-05-23 08:09:20.859+03	
497c6948-58d5-db1b-74f2-6bea911e5c27	2021-05-23 08:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:09:42.853+03	2021-05-23 08:09:42.861+03	
226566e8-272b-bc79-438f-bc350333ef7d	2021-05-23 08:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 08:10:00.852+03	2021-05-23 08:10:00.857+03	ERROR
fca4dd80-c4a0-d828-e545-269290fc9150	2021-05-23 08:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:10:13.852+03	2021-05-23 08:10:13.859+03	
ba7de701-834f-d092-0250-6ea06f9504ef	2021-05-23 08:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:10:33.853+03	2021-05-23 08:10:33.861+03	
a27ddefa-be17-f833-9960-e20606b8028e	2021-05-23 08:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:10:54.853+03	2021-05-23 08:10:54.86+03	
d87fe3b1-37aa-fbbe-50f2-0255f2745d9c	2021-05-23 08:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:11:14.853+03	2021-05-23 08:11:14.862+03	
2f2bc635-9de6-8fad-573a-2850bace06b0	2021-05-23 08:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:11:35.852+03	2021-05-23 08:11:35.86+03	
b3a35a1e-6dcf-e463-315d-6e4022dc6e13	2021-05-23 08:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:11:55.853+03	2021-05-23 08:11:55.859+03	
d4e2264d-b2f2-4bca-67f8-7a1c79a961a0	2021-05-23 08:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:12:15.853+03	2021-05-23 08:12:15.861+03	
d9c1a661-9d37-d0aa-2885-661b896d9a7f	2021-05-23 08:12:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:12:36.854+03	2021-05-23 08:12:36.86+03	
e380150e-18e4-a3fd-7199-c5419e6c2d3f	2021-05-23 08:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:12:58.852+03	2021-05-23 08:12:58.869+03	
2c973fdf-47d8-74ee-816d-6422d867ff8a	2021-05-23 08:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:13:18.852+03	2021-05-23 08:13:18.869+03	
7103dec1-2d8b-f19e-33c2-97ec91c65011	2021-05-23 08:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:13:38.853+03	2021-05-23 08:13:38.861+03	
7bbaa8d7-408e-1091-5b77-b747b6f0dfb6	2021-05-23 07:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:53:02.853+03	2021-05-23 07:53:02.86+03	
368fdefc-6d26-00f9-65db-aefb72178224	2021-05-23 07:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:53:22.853+03	2021-05-23 07:53:22.859+03	
5a698156-e1be-1bd5-5536-16ba627a6737	2021-05-23 07:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:53:42.853+03	2021-05-23 07:53:42.86+03	
971f78e8-2b9e-882d-bb80-093f8c0b0646	2021-05-23 07:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:54:03.852+03	2021-05-23 07:54:03.859+03	
00e5b616-d618-80cd-044f-bb8957b98695	2021-05-23 07:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:54:23.852+03	2021-05-23 07:54:23.859+03	
b1b8c286-55d7-9f97-6c72-3154c6cabc27	2021-05-23 07:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:54:44.853+03	2021-05-23 07:54:44.859+03	
bc1e6616-a96a-ee38-17b5-f9128df0c168	2021-05-23 07:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:55:04.853+03	2021-05-23 07:55:04.86+03	
a7a9240a-21be-9a86-7876-ee7bdd1329db	2021-05-23 07:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:55:24.853+03	2021-05-23 07:55:24.859+03	
e038f3b5-56c2-dbb4-9554-38fcd90840a4	2021-05-23 07:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:55:44.853+03	2021-05-23 07:55:44.859+03	
905432ce-d6a2-c6cc-1b24-1fae4ffcde39	2021-05-23 07:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:56:05.852+03	2021-05-23 07:56:05.86+03	
ba577fa9-1bcc-a7b8-f758-6293ace852e6	2021-05-23 07:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:56:26.852+03	2021-05-23 07:56:26.86+03	
cc349586-f80a-dcad-079f-1caf4d2c68ac	2021-05-23 07:56:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:56:46.853+03	2021-05-23 07:56:46.87+03	
2a3e2bfc-3861-ddea-b154-acaf465423e2	2021-05-23 07:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:57:07.853+03	2021-05-23 07:57:07.864+03	
d9acf979-ba44-b953-5893-d7d92b09c8a7	2021-05-23 07:57:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:57:29.852+03	2021-05-23 07:57:29.862+03	
2d334748-eb92-b995-f3ff-8da7959592a6	2021-05-23 07:57:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:57:49.853+03	2021-05-23 07:57:49.86+03	
20c4c3cc-c278-27e7-02f5-9c455f9fd196	2021-05-23 07:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:58:10.852+03	2021-05-23 07:58:10.859+03	
52e4ac7c-f67e-9f5f-06b0-06e4ee72d546	2021-05-23 07:58:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:58:31.854+03	2021-05-23 07:58:31.86+03	
5f882d5f-cbaf-4d4e-c2ab-bd6b80a92995	2021-05-23 07:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:58:53.852+03	2021-05-23 07:58:53.858+03	
4391d9e1-7fe2-f4f0-6e9e-92bc401f415b	2021-05-23 07:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:59:13.852+03	2021-05-23 07:59:13.859+03	
960f1331-c9ef-0908-929c-8e5be34e231c	2021-05-23 07:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 07:59:34.852+03	2021-05-23 07:59:34.86+03	
92503d8a-7a9f-f26d-dda4-25af8775e1a1	2021-05-23 08:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 08:00:00.853+03	2021-05-23 08:00:00.869+03	ERROR
9d7213b4-6665-1742-a260-d634a736c873	2021-05-23 08:00:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:00:14.853+03	2021-05-23 08:00:14.875+03	
99e293ab-fe2f-15da-a2d9-525f0cc015ea	2021-05-23 08:00:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:00:34.853+03	2021-05-23 08:00:34.863+03	
00459b02-3525-ee47-74d5-6d4af0b0ce6a	2021-05-23 08:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:00:54.853+03	2021-05-23 08:00:54.86+03	
50a0cb86-0fd2-3bf7-17d8-7dd36a7cf3a2	2021-05-23 08:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:01:15.853+03	2021-05-23 08:01:15.87+03	
66c7f4e8-02bd-0579-4bfa-d049ad79e030	2021-05-23 08:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:01:35.853+03	2021-05-23 08:01:35.859+03	
c37d2871-1f7f-58af-59f0-831224bae19a	2021-05-23 08:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:01:55.853+03	2021-05-23 08:01:55.863+03	
12dcedb9-a4bb-25c1-0a40-9a16c0041665	2021-05-23 08:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:02:15.853+03	2021-05-23 08:02:15.859+03	
39c2f791-0fc0-ab9e-a388-d984d426f962	2021-05-23 08:02:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:02:36.853+03	2021-05-23 08:02:36.86+03	
7fc074e8-6a8d-d1c2-eb33-efd81dce25e6	2021-05-23 08:02:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:02:57.853+03	2021-05-23 08:02:57.86+03	
baa05551-9fcb-cdc4-5778-79c5d87de48e	2021-05-23 08:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:03:17.853+03	2021-05-23 08:03:17.86+03	
4477e4d6-2bd8-c2f1-b30d-70527edce2cd	2021-05-23 08:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:03:37.853+03	2021-05-23 08:03:37.86+03	
e7b91b79-5f90-32b7-38e2-f617cdaa9cbd	2021-05-23 08:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:03:58.852+03	2021-05-23 08:03:58.859+03	
5b6054dc-ee27-41c3-c063-8077424f0210	2021-05-23 08:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:04:19.852+03	2021-05-23 08:04:19.889+03	
52efb5ab-69c8-bf25-d1fa-1f80cb711e97	2021-05-23 08:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:04:40.852+03	2021-05-23 08:04:40.859+03	
df727252-883e-c375-0eaa-14ea92f8e6e0	2021-05-23 08:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:05:00.853+03	2021-05-23 08:05:00.86+03	
1148e1d2-5cce-a115-b9d3-86fa683ad315	2021-05-23 08:05:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:05:21.853+03	2021-05-23 08:05:21.859+03	
e212fbc9-025b-73bd-3b78-6f0a7d81a3b5	2021-05-23 08:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:05:42.852+03	2021-05-23 08:05:42.859+03	
dce68fbc-e15c-35e3-0888-dc3c1954425e	2021-05-23 08:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:06:02.852+03	2021-05-23 08:06:02.859+03	
d56a2584-16ed-f062-3534-af8b17b0c5df	2021-05-23 08:06:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:06:22.853+03	2021-05-23 08:06:22.859+03	
2c572a4c-64b2-d131-22f7-87d95ecf78a5	2021-05-23 08:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:06:43.853+03	2021-05-23 08:06:43.871+03	
d9702b97-bb94-d3de-f97e-d735f6986d67	2021-05-23 08:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:07:03.853+03	2021-05-23 08:07:03.86+03	
4f59cc9e-ebc3-5261-1756-6dbd696b8a26	2021-05-23 08:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:07:24.853+03	2021-05-23 08:07:24.86+03	
4dc838f9-58f2-8ff0-88b0-3216aabced12	2021-05-23 08:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:07:45.853+03	2021-05-23 08:07:45.862+03	
075b6fc9-6ea9-6059-302c-36180114c080	2021-05-23 08:08:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:08:06.854+03	2021-05-23 08:08:06.873+03	
8c079f72-b930-13e3-c5c9-dd619fe03211	2021-05-23 08:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:08:28.852+03	2021-05-23 08:08:28.86+03	
0564ccc2-8567-9528-d46d-13a862f5d70e	2021-05-23 08:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:08:48.853+03	2021-05-23 08:08:48.859+03	
df73ea16-4a1b-3121-cbdd-0ae159d26309	2021-05-23 08:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:09:09.853+03	2021-05-23 08:09:09.861+03	
5ea2ca39-bb75-1bc6-845c-976e5da5915b	2021-05-23 08:09:31.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:09:31.859+03	2021-05-23 08:09:31.869+03	
c0961dae-bfac-55b6-1e4e-9a80fced45ab	2021-05-23 08:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:09:53.852+03	2021-05-23 08:09:53.859+03	
f3596a48-0f5d-b5e6-cf12-3b00b14d8864	2021-05-23 08:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:10:03.852+03	2021-05-23 08:10:03.859+03	
3569cbae-1b7c-717d-b1e7-48daa942ff7c	2021-05-23 08:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:10:23.852+03	2021-05-23 08:10:23.859+03	
c855a57e-2fef-2be4-636f-74d68e9d474d	2021-05-23 08:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:10:43.853+03	2021-05-23 08:10:43.861+03	
f444beb7-51fb-f168-9f4c-771698a22cfb	2021-05-23 08:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:11:04.853+03	2021-05-23 08:11:04.861+03	
640e3f64-5978-7194-6d3b-125c2f85a8c6	2021-05-23 08:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:11:24.853+03	2021-05-23 08:11:24.859+03	
e3ccaf99-7e4d-3d60-6120-62170ae74454	2021-05-23 08:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:11:45.853+03	2021-05-23 08:11:45.859+03	
1e21eae9-ad6d-948d-cdbf-399ada3f52cb	2021-05-23 08:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:12:05.853+03	2021-05-23 08:12:05.859+03	
ab860bb2-bd63-b9db-fd3c-09ec45d74fb8	2021-05-23 08:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:12:25.853+03	2021-05-23 08:12:25.859+03	
40d100da-1e6a-fa77-3355-16625bad71e1	2021-05-23 08:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:12:47.853+03	2021-05-23 08:12:47.86+03	
c34a52df-f2d7-8395-e675-8c4ed0490f3d	2021-05-23 08:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:13:08.852+03	2021-05-23 08:13:08.858+03	
7ada335f-40ad-b6b2-a412-5e43c9e7713c	2021-05-23 08:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:13:28.853+03	2021-05-23 08:13:28.859+03	
8b8806fc-a223-b19c-1674-16ef68103cd6	2021-05-23 08:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:13:49.853+03	2021-05-23 08:13:49.859+03	
a793b3d9-1bc2-64c8-cf71-c70645334ac3	2021-05-23 08:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:14:10.852+03	2021-05-23 08:14:10.868+03	
865de78c-0c38-8cb5-e2b5-bc5e6643bf42	2021-05-23 08:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:13:59.853+03	2021-05-23 08:13:59.859+03	
9682e4ae-4aea-0b4e-9de8-6582c0c67193	2021-05-23 08:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:14:20.852+03	2021-05-23 08:14:20.865+03	
6d143a39-bf67-2737-9aa8-87d14bfc277f	2021-05-23 08:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:14:40.852+03	2021-05-23 08:14:40.859+03	
1e3cb99f-eab1-c735-3a44-c8df60114269	2021-05-23 08:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:15:00.852+03	2021-05-23 08:15:00.859+03	
2bb93c54-1466-d04f-c813-e28e8cb8846e	2021-05-23 08:15:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:15:21.853+03	2021-05-23 08:15:21.86+03	
8616d2d8-b4f7-4295-7054-8a08f99275a0	2021-05-23 08:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:15:42.853+03	2021-05-23 08:15:42.859+03	
63e5adb1-5db1-46ab-b31b-9598fdcbf87b	2021-05-23 08:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:16:03.853+03	2021-05-23 08:16:03.869+03	
2a7f0f54-c432-330f-6739-17e4fdccd93f	2021-05-23 08:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:16:23.853+03	2021-05-23 08:16:23.859+03	
d6ca7809-64af-40cf-20b1-5ea5e9a39f7b	2021-05-23 08:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:16:44.853+03	2021-05-23 08:16:44.859+03	
a30d6c88-5d70-a14b-5e22-ce18c7518c5d	2021-05-23 08:17:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:17:04.853+03	2021-05-23 08:17:04.859+03	
fe36438c-ff9f-5be4-886d-5d2d40b510c8	2021-05-23 08:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:17:24.853+03	2021-05-23 08:17:24.859+03	
dfa582dc-b062-7c4d-5834-63a57ecba898	2021-05-23 08:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:17:45.853+03	2021-05-23 08:17:45.859+03	
68f3dffc-4826-e930-a0ab-333274a24075	2021-05-23 08:18:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:18:06.854+03	2021-05-23 08:18:06.87+03	
0563f97f-2f8d-69b2-e1eb-d7298b37112f	2021-05-23 08:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:18:27.852+03	2021-05-23 08:18:27.859+03	
236bcc75-7bbb-fab0-bc2a-443a39acfdc8	2021-05-23 08:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:18:47.853+03	2021-05-23 08:18:47.859+03	
5d744d3d-6899-83e9-c7d2-3e9cb0d2a827	2021-05-23 08:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:19:08.852+03	2021-05-23 08:19:08.86+03	
4d0136f0-5457-e22d-0a5f-e5d89abae017	2021-05-23 08:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:19:28.852+03	2021-05-23 08:19:28.859+03	
1c6942db-dacd-657c-47ad-8932609b5706	2021-05-23 08:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:19:48.852+03	2021-05-23 08:19:48.859+03	
34ea6597-e969-a420-75c6-3756a9c4f58d	2021-05-23 08:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 08:20:00.852+03	2021-05-23 08:20:00.858+03	ERROR
bbcd1540-78ba-764b-a458-fb250b1aa006	2021-05-23 08:20:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:20:18.853+03	2021-05-23 08:20:18.859+03	
a3403bc3-b84a-1085-48ca-efb286689b79	2021-05-23 08:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:20:38.853+03	2021-05-23 08:20:38.859+03	
4a1978e0-f611-c17b-0630-6cf0e0779800	2021-05-23 08:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:20:59.853+03	2021-05-23 08:20:59.861+03	
0eb82020-8de5-e019-9ef9-34d6f2731c92	2021-05-23 08:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:21:20.853+03	2021-05-23 08:21:20.859+03	
e13f7887-4388-e7d1-0555-f3c6398bf6ec	2021-05-23 08:21:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:21:41.853+03	2021-05-23 08:21:41.86+03	
bd643219-3398-f0fa-6040-7cfe54e70b09	2021-05-23 08:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:22:02.852+03	2021-05-23 08:22:02.859+03	
fd913549-53a4-c1d0-a9be-af3bdfba114a	2021-05-23 08:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:22:22.853+03	2021-05-23 08:22:22.86+03	
00d1ec42-af59-85f5-60c8-7150f6601d6a	2021-05-23 08:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:22:43.852+03	2021-05-23 08:22:43.858+03	
07b1034e-1a37-f74b-37cb-0d47fed4b11a	2021-05-23 08:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:23:03.852+03	2021-05-23 08:23:03.858+03	
418fce24-fede-241c-c968-5947f879696f	2021-05-23 08:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:23:23.853+03	2021-05-23 08:23:23.859+03	
8609973f-040b-d4c1-2611-4ccb3c84fde7	2021-05-23 08:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:23:43.853+03	2021-05-23 08:23:43.86+03	
27f30cc8-f24e-779e-b54f-9d478e76ec40	2021-05-23 08:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:24:03.853+03	2021-05-23 08:24:03.861+03	
31bba386-2051-005e-c000-c6d67fd19b28	2021-05-23 08:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:24:23.853+03	2021-05-23 08:24:23.86+03	
498b5f09-fb11-dc3c-978a-4b16e2ba8094	2021-05-23 08:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:24:44.852+03	2021-05-23 08:24:44.859+03	
3e467dac-f255-466d-d1b2-101b787cbd4c	2021-05-23 08:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:25:04.852+03	2021-05-23 08:25:04.858+03	
ebcb95d4-a443-2347-00c6-81ffd8089523	2021-05-23 08:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:25:24.853+03	2021-05-23 08:25:24.859+03	
b7ad5d17-83b6-046b-d217-c88442d14e32	2021-05-23 08:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:25:45.852+03	2021-05-23 08:25:45.859+03	
90df13b8-1062-1486-6ec3-26f35c785b27	2021-05-23 08:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:26:05.853+03	2021-05-23 08:26:05.86+03	
4d3b7851-7839-5af3-f270-87040acfac7c	2021-05-23 08:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:26:25.853+03	2021-05-23 08:26:25.859+03	
8b61afcb-d761-5525-5e0a-a8aa38d33a0b	2021-05-23 08:26:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:26:46.852+03	2021-05-23 08:26:46.859+03	
3b8cf0fc-1084-dafd-ec14-2a3e4d6ece7b	2021-05-23 08:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:27:06.853+03	2021-05-23 08:27:06.86+03	
a66d218d-fbe2-f6b5-d231-2804746d71f6	2021-05-23 08:27:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:27:26.854+03	2021-05-23 08:27:26.863+03	
ef1fed3e-0bf8-f157-673d-1e1fa53060ea	2021-05-23 08:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:27:47.853+03	2021-05-23 08:27:47.86+03	
8bb10560-224f-44eb-dad1-f99a40fc7a06	2021-05-23 08:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:28:07.853+03	2021-05-23 08:28:07.871+03	
90e513c1-05ac-5b33-a5fb-1091892c03f3	2021-05-23 08:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:28:28.852+03	2021-05-23 08:28:28.869+03	
d56f7f50-8caf-4f1d-3f07-c860b8064488	2021-05-23 08:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:28:48.852+03	2021-05-23 08:28:48.859+03	
ddb19425-91b3-632c-d34a-cc674ba0a949	2021-05-23 08:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:29:09.853+03	2021-05-23 08:29:09.861+03	
39412cec-fa19-9de6-d197-b6e0d2e9ee6c	2021-05-23 08:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:29:29.853+03	2021-05-23 08:29:29.859+03	
ab7e7819-f757-92a9-a0dc-8435686dc8b7	2021-05-23 08:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:29:49.853+03	2021-05-23 08:29:49.864+03	
ab175697-1075-be43-84ba-a1a27eb49069	2021-05-23 08:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 08:30:00.852+03	2021-05-23 08:30:00.857+03	ERROR
b8ab9ca0-ad2e-73b4-369a-0b1f0aaac9d9	2021-05-23 08:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:30:20.852+03	2021-05-23 08:30:20.877+03	
a977baa0-212a-7eb1-1b8f-6bb59c8dcd53	2021-05-23 08:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:30:40.852+03	2021-05-23 08:30:40.858+03	
c7c46e90-e5e0-01a5-1cf7-89746ce0ffb7	2021-05-23 08:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:31:00.853+03	2021-05-23 08:31:00.86+03	
22475c78-cd08-b6aa-fa4e-5269a4380edd	2021-05-23 08:31:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:31:21.853+03	2021-05-23 08:31:21.861+03	
ab28ca9a-19da-a268-fbc2-ec44ab2300a7	2021-05-23 08:31:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:31:41.854+03	2021-05-23 08:31:41.86+03	
f8bd94bd-2b00-f194-0327-a4b65a999ef0	2021-05-23 08:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:32:02.852+03	2021-05-23 08:32:02.858+03	
2a9e1d5a-6226-792c-a559-ed2232410bea	2021-05-23 08:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:32:22.853+03	2021-05-23 08:32:22.86+03	
62b6611b-b6e0-a504-d2c3-e2a2d05a90d8	2021-05-23 08:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:32:43.853+03	2021-05-23 08:32:43.861+03	
8e9651dc-172f-dff5-97b4-19d0488ecb01	2021-05-23 08:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:33:04.853+03	2021-05-23 08:33:04.859+03	
6c63ebd5-2eb7-02b6-bd01-f584d9f75af9	2021-05-23 08:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:33:24.853+03	2021-05-23 08:33:24.859+03	
8ef01666-9b19-acbd-0b97-52cb1ebbc119	2021-05-23 08:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:33:45.852+03	2021-05-23 08:33:45.86+03	
f4e79344-ed30-444a-76fd-6cc230251e50	2021-05-23 08:34:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:34:05.853+03	2021-05-23 08:34:05.86+03	
9097116e-b746-345a-d42f-75950b2bb258	2021-05-23 08:34:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:34:26.853+03	2021-05-23 08:34:26.873+03	
ec27a7fd-1fa7-3bca-5f2e-4dccf4af1fea	2021-05-23 08:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:34:47.853+03	2021-05-23 08:34:47.86+03	
dc02b86f-44aa-7162-7019-aed37bffbc92	2021-05-23 08:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:14:30.852+03	2021-05-23 08:14:30.871+03	
f3ce00f1-573e-523b-447e-cbd8326e7964	2021-05-23 08:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:14:50.852+03	2021-05-23 08:14:50.859+03	
fc0c89e7-2616-652c-733a-df5012af88b0	2021-05-23 08:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:15:10.853+03	2021-05-23 08:15:10.859+03	
8217ec95-dbbe-5937-8c7d-5db9d7f37ef4	2021-05-23 08:15:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:15:31.854+03	2021-05-23 08:15:31.859+03	
51c4279b-efbd-a717-7dbc-dc32b92c7c54	2021-05-23 08:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:15:52.853+03	2021-05-23 08:15:52.864+03	
2ef7aec5-fc6c-98e6-3b29-956a911c8e89	2021-05-23 08:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:16:13.853+03	2021-05-23 08:16:13.859+03	
d68dbda9-3c72-34dc-0db4-4d3280504368	2021-05-23 08:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:16:34.853+03	2021-05-23 08:16:34.859+03	
4d3a5e5e-102d-1a9f-08d4-4595fae92694	2021-05-23 08:16:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:16:54.853+03	2021-05-23 08:16:54.859+03	
3b12f411-e7be-fca7-f187-3d438fc25c6d	2021-05-23 08:17:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:17:14.853+03	2021-05-23 08:17:14.859+03	
89f8583c-5340-0860-fdb1-1166e99324b0	2021-05-23 08:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:17:34.853+03	2021-05-23 08:17:34.86+03	
dc6c7536-7389-9804-98b2-f9a472a21bd5	2021-05-23 08:17:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:17:56.852+03	2021-05-23 08:17:56.86+03	
969c45f9-9b6a-b156-d609-e0b7dd8002d0	2021-05-23 08:18:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:18:17.852+03	2021-05-23 08:18:17.859+03	
da131905-81c8-cee1-62ed-7001ed235fdd	2021-05-23 08:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:18:37.853+03	2021-05-23 08:18:37.876+03	
3579f32b-d370-e60b-6d54-9760c4d5e79f	2021-05-23 08:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:18:58.852+03	2021-05-23 08:18:58.859+03	
053bf51f-ead0-0da7-b38f-15113d23f67d	2021-05-23 08:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:19:18.852+03	2021-05-23 08:19:18.861+03	
dca8fb98-1a21-04b8-3047-582184ac904c	2021-05-23 08:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:19:38.852+03	2021-05-23 08:19:38.863+03	
48aa7440-0d20-f2cb-292f-9c8a2c0449f2	2021-05-23 08:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:19:58.852+03	2021-05-23 08:19:58.859+03	
b89db7fb-aa0f-7f8c-8a21-ab26d049db77	2021-05-23 08:20:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:20:08.852+03	2021-05-23 08:20:08.86+03	
8ca5aff0-4501-993e-72de-fab52ea8fba9	2021-05-23 08:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:20:28.853+03	2021-05-23 08:20:28.859+03	
d5711fd2-6a63-9305-7fad-55ee3a5c56f6	2021-05-23 08:20:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:20:49.853+03	2021-05-23 08:20:49.86+03	
50f1af00-c11d-75fc-ffb9-e2cc974d26a2	2021-05-23 08:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:21:10.852+03	2021-05-23 08:21:10.858+03	
d9ece9b9-444a-55b9-12f8-aa226a819426	2021-05-23 08:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:21:31.852+03	2021-05-23 08:21:31.862+03	
ee4d514f-7c6a-a2a9-0cf7-64cdf88248cf	2021-05-23 08:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:21:52.852+03	2021-05-23 08:21:52.858+03	
1f08f3c0-96e7-f740-8c64-00510704fdf3	2021-05-23 08:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:22:12.853+03	2021-05-23 08:22:12.859+03	
8c9fc2c0-c392-d4e4-28a5-78f48fa29234	2021-05-23 08:22:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:22:33.852+03	2021-05-23 08:22:33.86+03	
9bd9e687-6ead-4fbe-a4a6-982fab4de9b7	2021-05-23 08:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:22:53.852+03	2021-05-23 08:22:53.859+03	
34cb0d15-9e26-8f62-6c23-f09a668d6ca5	2021-05-23 08:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:23:13.852+03	2021-05-23 08:23:13.859+03	
54bcc1ea-56e0-6609-db6f-c98fc60f5d23	2021-05-23 08:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:23:33.853+03	2021-05-23 08:23:33.86+03	
e2793cd8-141d-c770-e7aa-8f10673c322a	2021-05-23 08:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:23:53.853+03	2021-05-23 08:23:53.861+03	
400adc95-41f9-b104-cdf3-bb4066937ff7	2021-05-23 08:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:24:13.853+03	2021-05-23 08:24:13.864+03	
ba0c259b-1dbd-d24c-190b-9de1e93e3ac0	2021-05-23 08:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:24:33.853+03	2021-05-23 08:24:33.859+03	
6448958e-ae58-27b8-9fba-92179c0fe8f7	2021-05-23 08:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:24:54.852+03	2021-05-23 08:24:54.859+03	
81ffc695-9661-bcf9-b694-bd17e734bf23	2021-05-23 08:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:25:14.852+03	2021-05-23 08:25:14.859+03	
a1908375-f76f-234a-b027-d3d2febc43ce	2021-05-23 08:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:25:34.853+03	2021-05-23 08:25:34.859+03	
3d4fa34a-da7b-3457-ef3e-32101d3716c3	2021-05-23 08:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:25:55.853+03	2021-05-23 08:25:55.859+03	
f8f4fea1-4630-c560-06bb-03909b1d1df7	2021-05-23 08:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:26:15.853+03	2021-05-23 08:26:15.859+03	
d229fa1b-3659-2b76-43d6-79724bdac170	2021-05-23 08:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:26:35.853+03	2021-05-23 08:26:35.86+03	
a3cf7a28-862f-50b2-986c-7b15438c6847	2021-05-23 08:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:26:56.852+03	2021-05-23 08:26:56.858+03	
2319fd18-49ee-90a6-4c99-46994ae5d101	2021-05-23 08:27:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:27:16.854+03	2021-05-23 08:27:16.861+03	
51661179-52d5-d3a7-a56d-97fed9554183	2021-05-23 08:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:27:37.853+03	2021-05-23 08:27:37.865+03	
486b30fc-21d5-eb68-fe0b-e25dc2088ecc	2021-05-23 08:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:27:57.853+03	2021-05-23 08:27:57.86+03	
9c49e588-fb47-5be5-b930-3673e494b94e	2021-05-23 08:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:28:18.852+03	2021-05-23 08:28:18.859+03	
bb98b693-6471-ddd4-920d-d62851f2eee6	2021-05-23 08:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:28:38.852+03	2021-05-23 08:28:38.859+03	
51a78b26-ac44-57ff-b2c0-cf86015160fd	2021-05-23 08:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:28:58.853+03	2021-05-23 08:28:58.859+03	
78b5aa02-5165-9b3b-4b56-1ab9a0ae904f	2021-05-23 08:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:29:19.853+03	2021-05-23 08:29:19.859+03	
7350452e-84e7-6e6a-fae7-874a6115d131	2021-05-23 08:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:29:39.853+03	2021-05-23 08:29:39.859+03	
09a8bdac-9ab2-5957-13a2-570bdb6aa713	2021-05-23 08:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:29:59.853+03	2021-05-23 08:29:59.859+03	
50c47dfb-c086-1e83-da80-96239f7ad8e9	2021-05-23 08:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:30:10.852+03	2021-05-23 08:30:10.859+03	
dcff897b-4809-6dfd-d78e-ba2f7a73cb1c	2021-05-23 08:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:30:30.852+03	2021-05-23 08:30:30.859+03	
2650686f-846a-559a-b708-dbcc38bb9ed7	2021-05-23 08:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:30:50.853+03	2021-05-23 08:30:50.859+03	
6a8f35c9-f94a-cf10-e950-f499725a00b9	2021-05-23 08:31:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:31:11.853+03	2021-05-23 08:31:11.859+03	
736ee571-e1f4-b3b1-52cb-c628d8920825	2021-05-23 08:31:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:31:31.853+03	2021-05-23 08:31:31.86+03	
56d94c6e-3b0d-6cf2-da46-e7f0a44b2a50	2021-05-23 08:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:31:52.852+03	2021-05-23 08:31:52.858+03	
bbc1c690-2620-b662-547b-166026bf6f36	2021-05-23 08:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:32:12.852+03	2021-05-23 08:32:12.859+03	
33696901-eace-2255-83a8-33834a50641c	2021-05-23 08:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:32:32.853+03	2021-05-23 08:32:32.86+03	
f0161559-f86c-e427-797e-c6c8cb6160bd	2021-05-23 08:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:32:54.853+03	2021-05-23 08:32:54.86+03	
14f18e0a-928b-155b-e729-6ffe65a0effd	2021-05-23 08:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:33:14.853+03	2021-05-23 08:33:14.865+03	
88717997-edc2-a953-36cf-92b8bd4b9532	2021-05-23 08:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:33:34.853+03	2021-05-23 08:33:34.859+03	
0c7a715e-a4d5-4057-2088-07f7e09816a2	2021-05-23 08:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:33:55.853+03	2021-05-23 08:33:55.859+03	
064f4532-a0c9-5bc3-4ff0-0724f56feabb	2021-05-23 08:34:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:34:15.853+03	2021-05-23 08:34:15.862+03	
94b0fa7f-503b-4465-c2a3-3067c33ef682	2021-05-23 08:34:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:34:36.853+03	2021-05-23 08:34:36.86+03	
5ddd941f-3e73-31d4-c21f-3b85b1813b62	2021-05-23 08:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:34:58.852+03	2021-05-23 08:34:58.859+03	
96174c88-adf1-ff7b-f04d-43fbf53ef902	2021-05-23 08:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:35:18.853+03	2021-05-23 08:35:18.86+03	
f57906cf-4e8e-b05d-9b60-7a7b6493ae9c	2021-05-23 08:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:35:08.852+03	2021-05-23 08:35:08.859+03	
44a4e0e3-8c00-3404-347b-c38cfbf216e0	2021-05-23 08:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:35:28.853+03	2021-05-23 08:35:28.86+03	
4bfca422-2b36-811f-509f-204c970fde69	2021-05-23 08:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:35:49.853+03	2021-05-23 08:35:49.859+03	
b196341c-242e-2827-ee19-9d312a56eb0c	2021-05-23 08:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:36:09.853+03	2021-05-23 08:36:09.859+03	
c225436b-945b-6b60-6e5c-5eb3ec0a9a75	2021-05-23 08:36:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:36:29.853+03	2021-05-23 08:36:29.859+03	
48434904-b292-dd4d-655e-d8173e61bef8	2021-05-23 08:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:36:49.853+03	2021-05-23 08:36:49.858+03	
a1355797-87ef-a69c-ff5a-f50c9b3dd534	2021-05-23 08:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:37:09.853+03	2021-05-23 08:37:09.86+03	
8ff00f1b-b340-a439-0418-3a4bd65f935c	2021-05-23 08:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:37:29.853+03	2021-05-23 08:37:29.859+03	
6f7a1fd3-cace-1cea-9c87-3bca991edd1a	2021-05-23 08:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:37:50.853+03	2021-05-23 08:37:50.862+03	
25d7c5a8-2f3c-49d9-18e5-e9db12146a1e	2021-05-23 08:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:38:10.853+03	2021-05-23 08:38:10.86+03	
485ba7e3-4cee-387c-8b71-a07d2dc8c132	2021-05-23 08:38:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:38:31.852+03	2021-05-23 08:38:31.859+03	
97d945af-d1fe-38fa-54b7-69e4a2a99385	2021-05-23 08:38:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:38:51.853+03	2021-05-23 08:38:51.859+03	
ef326176-87f3-67f7-8d1c-000889b9fefb	2021-05-23 08:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:39:12.853+03	2021-05-23 08:39:12.859+03	
85d3ae93-433c-c529-d709-690a99618e12	2021-05-23 08:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:39:32.853+03	2021-05-23 08:39:32.863+03	
86f2d3f5-bcca-4357-77cd-c9e73704198c	2021-05-23 08:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:39:52.853+03	2021-05-23 08:39:52.861+03	
09c11b17-d3ff-1b9d-9f66-3367e0f95a83	2021-05-23 08:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:40:02.853+03	2021-05-23 08:40:02.859+03	
f7794741-8ba4-3319-b5fd-0f89274dc666	2021-05-23 08:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:40:23.852+03	2021-05-23 08:40:23.858+03	
d182193a-53eb-6666-53af-e63adc9080ae	2021-05-23 08:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:40:44.852+03	2021-05-23 08:40:44.863+03	
bb812802-c89b-b54d-2843-36fd49415139	2021-05-23 08:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:41:04.853+03	2021-05-23 08:41:04.906+03	
526f262c-fafe-9f23-63fb-aa7cab5140f8	2021-05-23 08:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:41:25.852+03	2021-05-23 08:41:25.859+03	
95c0e16a-d5df-e78c-ba3d-9a961ebf07f3	2021-05-23 08:41:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:41:46.852+03	2021-05-23 08:41:46.859+03	
71404dd1-4b7d-87b8-aaf6-03254a6b1b17	2021-05-23 08:42:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:42:07.853+03	2021-05-23 08:42:07.86+03	
8d9e99fb-0c53-48d8-1b1f-b46ce4c82e7d	2021-05-23 08:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:42:28.853+03	2021-05-23 08:42:28.859+03	
ed792748-6ee6-5d90-2c84-94f5afd91f6b	2021-05-23 08:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:42:48.853+03	2021-05-23 08:42:48.859+03	
277a0a5d-b7aa-6697-0b2d-1dba5c0e021c	2021-05-23 08:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:43:10.852+03	2021-05-23 08:43:10.859+03	
465c3bf2-87e6-267d-8115-e03755adf765	2021-05-23 08:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:43:30.852+03	2021-05-23 08:43:30.87+03	
8af62677-1abc-857e-611c-cab5beb906e5	2021-05-23 08:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:43:50.853+03	2021-05-23 08:43:50.859+03	
3e1e6efd-efe1-31a2-6149-4e5f9de4bce2	2021-05-23 08:44:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:44:11.853+03	2021-05-23 08:44:11.865+03	
b6c61001-8a44-fd8c-067f-efad68db37f6	2021-05-23 08:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:44:31.854+03	2021-05-23 08:44:31.86+03	
7c366474-17a2-4541-90e5-25f63e6b952b	2021-05-23 08:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:44:53.853+03	2021-05-23 08:44:53.859+03	
a409da74-a912-2399-6a45-ad334c3e05db	2021-05-23 08:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:45:14.853+03	2021-05-23 08:45:14.86+03	
e4497f9a-227e-9b1e-cd05-e32e62f828bd	2021-05-23 08:45:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:45:34.853+03	2021-05-23 08:45:34.862+03	
10a695ff-1a24-dee9-3a8b-3674ecbc1381	2021-05-23 08:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:45:55.853+03	2021-05-23 08:45:55.861+03	
868cc611-c65f-7523-4e20-832577ec2d60	2021-05-23 08:46:16.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:46:16.852+03	2021-05-23 08:46:16.865+03	
5c880115-6243-9bbc-c865-87048a384484	2021-05-23 08:46:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:46:36.853+03	2021-05-23 08:46:36.861+03	
a5365bbd-20ef-f9b2-e4a0-1bbadd4a9c85	2021-05-23 08:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:46:58.853+03	2021-05-23 08:46:58.875+03	
a2b8c7d0-15ba-764f-effb-d364846130a5	2021-05-23 08:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:47:19.853+03	2021-05-23 08:47:19.859+03	
bb5e0ea9-48d9-a16e-243e-d29021256d21	2021-05-23 08:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:47:40.852+03	2021-05-23 08:47:40.859+03	
4dcdb25b-8bc0-c6b5-1b15-d9b0ee405fd3	2021-05-23 08:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:48:00.853+03	2021-05-23 08:48:00.859+03	
8992ea09-7576-c7d4-f467-af6c13cf6fa3	2021-05-23 08:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:48:20.853+03	2021-05-23 08:48:20.859+03	
468ed38f-d425-ed1b-d809-1748581de268	2021-05-23 08:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:48:40.853+03	2021-05-23 08:48:40.86+03	
3572923e-5ae1-3320-9d1f-2e5b1fb7685e	2021-05-23 08:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:49:00.853+03	2021-05-23 08:49:00.861+03	
98519467-1449-089c-5763-5e6dbb103615	2021-05-23 08:49:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:49:21.852+03	2021-05-23 08:49:21.86+03	
122b1666-86cc-9eed-f4c7-cf6028a8c010	2021-05-23 08:49:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:49:41.854+03	2021-05-23 08:49:41.86+03	
1051d506-b036-8b5a-bd4f-c68c3131e685	2021-05-23 08:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 08:50:00.852+03	2021-05-23 08:50:00.857+03	ERROR
04002636-96ba-0022-b8ff-fc8e5b8cb21c	2021-05-23 08:50:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:50:12.853+03	2021-05-23 08:50:12.859+03	
7761e413-b630-9981-50e7-a14ca00fa92b	2021-05-23 08:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:50:33.852+03	2021-05-23 08:50:33.862+03	
905d4759-651f-be4c-b70e-0cbb112a9e28	2021-05-23 08:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:50:53.853+03	2021-05-23 08:50:53.86+03	
d66178cf-69d3-bd4c-b7b0-ea2ebdbae9d7	2021-05-23 08:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:51:15.852+03	2021-05-23 08:51:15.859+03	
6d2f1f8e-5f25-f3c1-7cef-0a4bb8588287	2021-05-23 08:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:51:35.853+03	2021-05-23 08:51:35.859+03	
114c8fc0-0681-dbb8-0c86-27d3a0bafbe7	2021-05-23 08:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:51:55.853+03	2021-05-23 08:51:55.859+03	
4dae5059-2bdf-8998-51ac-6f5def6b5373	2021-05-23 08:52:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:52:16.852+03	2021-05-23 08:52:16.859+03	
1a94e8a7-2ecf-a42d-1b4e-3f1ab6af800c	2021-05-23 08:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:52:36.853+03	2021-05-23 08:52:36.861+03	
7c57c8c1-bf7c-ef8d-f791-e721a3f8fc7b	2021-05-23 08:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:52:57.852+03	2021-05-23 08:52:57.859+03	
169d7c83-b283-a876-4128-00a365111b53	2021-05-23 08:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:53:17.852+03	2021-05-23 08:53:17.858+03	
8035d689-c705-e919-803f-ca1b285ea586	2021-05-23 08:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:53:38.852+03	2021-05-23 08:53:38.859+03	
3f05be72-6052-d437-b5cf-cb23ded67ec5	2021-05-23 08:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:53:59.853+03	2021-05-23 08:53:59.859+03	
22bab154-6611-eefe-7a7c-e77e82eab6e5	2021-05-23 08:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:54:20.852+03	2021-05-23 08:54:20.859+03	
fbf35c0f-0c77-d9e3-fdb7-aadac2467bc1	2021-05-23 08:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:54:40.852+03	2021-05-23 08:54:40.858+03	
5c355ac7-2ec3-5b51-240f-e7b17da4e1a9	2021-05-23 08:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:55:00.853+03	2021-05-23 08:55:00.86+03	
050fb166-2bae-18ef-c9d2-23bf9c1aa624	2021-05-23 08:55:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:55:21.853+03	2021-05-23 08:55:21.864+03	
9a1e3765-c429-b9bd-bb15-ccf1608c97a6	2021-05-23 08:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:55:42.853+03	2021-05-23 08:55:42.859+03	
a1b26874-737c-760a-9e06-0a3e7d3dafe3	2021-05-23 08:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:56:02.853+03	2021-05-23 08:56:02.862+03	
e7a1373c-978f-b5af-4f10-3893820921cb	2021-05-23 08:35:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:35:39.853+03	2021-05-23 08:35:39.863+03	
bc69950f-0b10-95f6-d638-22f22732a1f3	2021-05-23 08:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:35:59.853+03	2021-05-23 08:35:59.86+03	
7bbac105-4b9f-c63a-c66d-7c6730d224a7	2021-05-23 08:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:36:19.853+03	2021-05-23 08:36:19.86+03	
c48a5ced-e80b-1bd6-482b-21aa7c0f4f26	2021-05-23 08:36:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:36:39.853+03	2021-05-23 08:36:39.859+03	
b411fa93-921a-a1e4-e6a8-c9b40d2305be	2021-05-23 08:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:36:59.853+03	2021-05-23 08:36:59.859+03	
79f2eb30-f2a2-f285-fa1f-53e58d87f823	2021-05-23 08:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:37:19.853+03	2021-05-23 08:37:19.86+03	
a17be0bf-3bbd-3c1d-712f-a801f2d98909	2021-05-23 08:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:37:39.853+03	2021-05-23 08:37:39.86+03	
82488ebe-9ea7-1b99-28da-ae956098099f	2021-05-23 08:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:38:00.853+03	2021-05-23 08:38:00.861+03	
e603e685-8cbb-bad6-4bb9-df00189a9c78	2021-05-23 08:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:38:20.853+03	2021-05-23 08:38:20.86+03	
402365ba-2450-c349-027d-8540842c2a6a	2021-05-23 08:38:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:38:41.853+03	2021-05-23 08:38:41.859+03	
7d0bb3a5-1495-a008-3089-458ed810fb5f	2021-05-23 08:39:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:39:02.852+03	2021-05-23 08:39:02.859+03	
8b9a650f-19e0-4b1c-0770-a7156ef6dcbb	2021-05-23 08:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:39:22.853+03	2021-05-23 08:39:22.861+03	
178d9126-f8af-bfd9-d2b8-30963763b2ed	2021-05-23 08:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:39:42.853+03	2021-05-23 08:39:42.859+03	
38d3fa87-8c0c-1348-c5e9-d7bb8b61e1e3	2021-05-23 08:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 08:40:00.853+03	2021-05-23 08:40:00.858+03	ERROR
fe098634-dbd9-84aa-4542-2b8ec0501750	2021-05-23 08:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:40:12.853+03	2021-05-23 08:40:13.152+03	
dd840c30-dc69-922a-d380-89363a3128d3	2021-05-23 08:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:40:33.853+03	2021-05-23 08:40:33.862+03	
e943ce2c-158d-c3f8-ead6-2b39e28b059f	2021-05-23 08:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:40:54.852+03	2021-05-23 08:40:54.859+03	
f51bf817-a1bd-9bd3-1869-14875b289c7e	2021-05-23 08:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:41:15.852+03	2021-05-23 08:41:15.86+03	
09913698-cabc-5368-f89d-798786c4079b	2021-05-23 08:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:41:35.853+03	2021-05-23 08:41:35.86+03	
ef39f9bc-adad-9d95-5457-720112b09392	2021-05-23 08:41:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:41:56.853+03	2021-05-23 08:41:56.86+03	
0e6bc5dc-de47-761f-b5b8-dc28cf9860c9	2021-05-23 08:42:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:42:17.853+03	2021-05-23 08:42:17.861+03	
f4e13644-99d2-2118-2cd0-da2b296cf1c6	2021-05-23 08:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:42:38.853+03	2021-05-23 08:42:38.859+03	
5436ff22-07ba-f570-b372-032966d44206	2021-05-23 08:42:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:42:59.853+03	2021-05-23 08:42:59.86+03	
5f418f26-7ad1-820b-f01f-e38c57203ec5	2021-05-23 08:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:43:20.852+03	2021-05-23 08:43:20.86+03	
caa073af-23d9-8e5b-d069-27263ec09cb9	2021-05-23 08:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:43:40.852+03	2021-05-23 08:43:40.859+03	
d0eb503e-aaeb-4723-101e-ecf40fd45eff	2021-05-23 08:44:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:44:01.852+03	2021-05-23 08:44:01.9+03	
90d7965d-02e4-2650-fd89-949aef7ca5ed	2021-05-23 08:44:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:44:21.854+03	2021-05-23 08:44:21.87+03	
3542ecf3-b80e-3c74-67bd-a6dd17a085ee	2021-05-23 08:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:44:42.853+03	2021-05-23 08:44:42.859+03	
6d966ce6-b112-4738-3540-c5455f7cd298	2021-05-23 08:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:45:04.853+03	2021-05-23 08:45:04.86+03	
cd2a16b0-a549-9bc5-d0de-6e590ada1069	2021-05-23 08:45:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:45:24.853+03	2021-05-23 08:45:24.861+03	
f960f02d-9830-39c5-38d5-ef2b503b85b6	2021-05-23 08:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:45:45.852+03	2021-05-23 08:45:45.861+03	
6d3021ef-4fe2-c7af-d145-8a9afac32bb3	2021-05-23 08:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:46:06.852+03	2021-05-23 08:46:06.858+03	
ba92e56c-b5f2-c156-7f1f-a74b54ebfaee	2021-05-23 08:46:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:46:26.852+03	2021-05-23 08:46:26.859+03	
bbe5b3aa-6921-da43-d3c4-9cff726ec398	2021-05-23 08:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:46:47.853+03	2021-05-23 08:46:47.861+03	
f4927330-a4d8-32c1-b7ae-8d400ce6e206	2021-05-23 08:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:47:09.853+03	2021-05-23 08:47:09.859+03	
157eceb1-c775-ffbb-9f7f-2e57268ddba7	2021-05-23 08:47:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:47:29.853+03	2021-05-23 08:47:29.859+03	
9a179f45-ac1b-3159-fcf4-fdb4d4ab39dd	2021-05-23 08:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:47:50.852+03	2021-05-23 08:47:50.858+03	
5aecc8e7-46b7-2943-6a3a-0f53236cec34	2021-05-23 08:48:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:48:10.853+03	2021-05-23 08:48:10.859+03	
e9ff07b7-d75c-2924-3c3f-63e20e547dbb	2021-05-23 08:48:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:48:30.853+03	2021-05-23 08:48:30.86+03	
4ee91c71-d9c0-20ce-589f-014047a51e98	2021-05-23 08:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:48:50.853+03	2021-05-23 08:48:50.86+03	
7474e269-cfd9-d9b2-5926-40120e6afc7e	2021-05-23 08:49:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:49:11.852+03	2021-05-23 08:49:11.859+03	
49ec7af8-7c79-98b0-0110-69366c251034	2021-05-23 08:49:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:49:31.852+03	2021-05-23 08:49:31.859+03	
fe52c700-4979-3176-6367-239e095cf480	2021-05-23 08:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:49:52.853+03	2021-05-23 08:49:52.859+03	
0c4cf816-03ec-92b6-d4df-a8156c0054b4	2021-05-23 08:50:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:50:02.853+03	2021-05-23 08:50:02.859+03	
e670aa28-9189-16e1-3722-989980f41b84	2021-05-23 08:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:50:23.852+03	2021-05-23 08:50:23.859+03	
01da537b-6813-fb8d-6a9a-cdd212ae14fc	2021-05-23 08:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:50:43.853+03	2021-05-23 08:50:43.862+03	
1dec8eb9-e7cd-906d-124e-d4d74d394745	2021-05-23 08:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:51:04.853+03	2021-05-23 08:51:04.86+03	
eb7b63b8-9265-d1f4-3432-6e98d89da3d5	2021-05-23 08:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:51:25.852+03	2021-05-23 08:51:25.859+03	
6d862d07-c8f1-5bc4-8af0-24369431fe10	2021-05-23 08:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:51:45.853+03	2021-05-23 08:51:45.861+03	
ccf17c1a-3739-a30f-cade-15b4bb3a9574	2021-05-23 08:52:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:52:06.852+03	2021-05-23 08:52:06.86+03	
2772c2c6-9b08-483e-2c74-2343708da405	2021-05-23 08:52:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:52:26.852+03	2021-05-23 08:52:26.86+03	
26ef3e3a-a141-12e8-693a-b29d7434b7e7	2021-05-23 08:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:52:47.852+03	2021-05-23 08:52:47.861+03	
55882e71-0175-22eb-cc25-bd1b694aae4b	2021-05-23 08:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:53:07.852+03	2021-05-23 08:53:07.858+03	
6c1c0916-e836-eff8-4c07-b8bc40bb81c7	2021-05-23 08:53:27.87	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:53:27.87+03	2021-05-23 08:53:27.876+03	
668af31d-67fd-4b1a-d13a-686529c4980e	2021-05-23 08:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:53:48.853+03	2021-05-23 08:53:48.86+03	
f78a77ca-eac1-409e-c1e4-872e6c0f99d9	2021-05-23 08:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:54:09.853+03	2021-05-23 08:54:09.863+03	
5e9eecbd-0bbb-aa11-c4d6-16d27658cc2c	2021-05-23 08:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:54:30.852+03	2021-05-23 08:54:30.863+03	
f7ccf65c-1f42-a900-f76d-a0fda51ac845	2021-05-23 08:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:54:50.853+03	2021-05-23 08:54:50.858+03	
8968f66d-1ada-b40a-4925-1eb09d74adda	2021-05-23 08:55:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:55:11.853+03	2021-05-23 08:55:11.861+03	
8cef3d2d-d7d0-17e4-82bf-48fefb99b1e9	2021-05-23 08:55:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:55:31.853+03	2021-05-23 08:55:31.86+03	
2208a57a-254f-f9af-0e1c-f2be9723568b	2021-05-23 08:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:55:52.853+03	2021-05-23 08:55:52.859+03	
49cbe749-a818-ef5e-7156-da6d2088408d	2021-05-23 08:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:56:12.853+03	2021-05-23 08:56:12.859+03	
e3126fd5-956f-d3b8-6247-4bfd5e2a3a80	2021-05-23 08:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:56:33.852+03	2021-05-23 08:56:33.858+03	
e42f787a-39cd-c6c9-25c5-77e477271e6f	2021-05-23 08:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:56:23.852+03	2021-05-23 08:56:23.858+03	
47719cc3-b100-5173-1754-e93114cfa4fa	2021-05-23 08:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:56:43.852+03	2021-05-23 08:56:43.861+03	
0f182c07-8e66-d5c5-2dc5-dfadd749987b	2021-05-23 08:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:57:03.853+03	2021-05-23 08:57:03.861+03	
1e49d260-4be4-57ec-6348-7ea309902052	2021-05-23 08:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:57:24.853+03	2021-05-23 08:57:24.859+03	
28e2ea34-4084-5499-7cbb-618a44112b3e	2021-05-23 08:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:57:45.852+03	2021-05-23 08:57:45.859+03	
60ba99b0-b3fd-d3ab-c1e8-02ae30863d18	2021-05-23 08:58:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:58:05.854+03	2021-05-23 08:58:05.862+03	
94d545e8-dbcb-edf3-b5ca-54d4d7592c7f	2021-05-23 08:58:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:58:26.852+03	2021-05-23 08:58:26.873+03	
444e7709-b4bd-aa73-3fce-6266a5e6c7aa	2021-05-23 08:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:58:46.852+03	2021-05-23 08:58:46.872+03	
700bf940-1ddd-1433-b1f1-562509ab0a5c	2021-05-23 08:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:59:06.853+03	2021-05-23 08:59:06.859+03	
424443c3-b0b5-2793-fb4f-e1924d596bc3	2021-05-23 08:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:59:27.853+03	2021-05-23 08:59:27.859+03	
ce9609f4-a96c-c1b5-579c-f2ba787c27ad	2021-05-23 08:59:47.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:59:47.853+03	2021-05-23 08:59:47.862+03	
0e8083e5-67db-9b80-2f6f-2c16cbdbffc4	2021-05-23 09:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 09:00:00.853+03	2021-05-23 09:00:00.858+03	ERROR
a7558823-3d01-7e24-2275-9c383dc650ec	2021-05-23 09:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:00:18.853+03	2021-05-23 09:00:18.871+03	
1d038f32-ed7a-515e-9980-d212c5ccd35d	2021-05-23 09:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:00:38.853+03	2021-05-23 09:00:38.86+03	
ab205a37-3206-1aa4-40d4-6804c71f50ad	2021-05-23 09:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:00:58.853+03	2021-05-23 09:00:58.859+03	
17ca3385-8a76-6fcd-70b9-ccbcc0e0d1da	2021-05-23 09:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:01:19.852+03	2021-05-23 09:01:19.869+03	
765d7c09-3b95-adeb-1053-097de072249c	2021-05-23 09:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:01:39.852+03	2021-05-23 09:01:39.858+03	
f061aa42-e839-c6e8-4022-3966cfe932d1	2021-05-23 09:01:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:01:59.853+03	2021-05-23 09:01:59.86+03	
b6499e23-b2d8-40a0-603f-9309298bd03c	2021-05-23 09:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:02:20.853+03	2021-05-23 09:02:20.894+03	
024f3381-cd82-3102-d826-1619d537ec3a	2021-05-23 09:02:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:02:41.853+03	2021-05-23 09:02:41.859+03	
688983ea-5d2f-3997-167f-f6f934a2aaab	2021-05-23 09:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:03:02.853+03	2021-05-23 09:03:02.859+03	
4d5c6933-7a20-31b2-1e05-718ce89b57c8	2021-05-23 09:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:03:23.853+03	2021-05-23 09:03:23.859+03	
72bdc48a-62de-e8d0-8ba4-5e0366ff2078	2021-05-23 09:03:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:03:45.853+03	2021-05-23 09:03:45.859+03	
2cf0cf87-4abe-99e8-8b43-c88c15277b33	2021-05-23 09:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:04:05.853+03	2021-05-23 09:04:05.864+03	
f6dc30b9-7933-7d2d-6009-857921efe043	2021-05-23 09:04:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:04:26.852+03	2021-05-23 09:04:26.86+03	
1ca9475d-b2dd-8fc9-c33c-ae47bfe8a711	2021-05-23 09:04:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:04:47.852+03	2021-05-23 09:04:47.858+03	
a851eaf8-d07a-d12e-e775-165adf51258f	2021-05-23 09:05:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:05:07.853+03	2021-05-23 09:05:07.859+03	
4dfc6faf-2b9b-15a1-806d-cb546754a453	2021-05-23 09:05:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:05:27.853+03	2021-05-23 09:05:27.86+03	
9d4f1457-b50a-7bee-7229-671730b82ecd	2021-05-23 09:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:05:47.853+03	2021-05-23 09:05:47.861+03	
135e85c2-e62c-f750-1b0d-038962f49c5d	2021-05-23 09:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:06:07.853+03	2021-05-23 09:06:07.876+03	
2f8c78f8-376d-6846-94ac-eb261862c999	2021-05-23 09:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:06:28.852+03	2021-05-23 09:06:28.858+03	
f818e19c-dade-8dea-037f-8e368fae2de5	2021-05-23 09:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:06:48.853+03	2021-05-23 09:06:48.874+03	
ba0bbd22-197a-f302-2ae6-5c09c36a6db1	2021-05-23 09:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:07:08.853+03	2021-05-23 09:07:08.859+03	
8fa58b65-4524-48e9-9840-874734fb51b9	2021-05-23 09:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:07:28.853+03	2021-05-23 09:07:28.861+03	
445cbd95-7f41-206c-bdcc-79bf83ec0e33	2021-05-23 09:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:07:48.853+03	2021-05-23 09:07:48.859+03	
5c7c6ee5-f762-1520-a385-7702744785e6	2021-05-23 09:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:08:09.852+03	2021-05-23 09:08:09.871+03	
316ca18c-3939-40c4-bd8a-f9822bd486af	2021-05-23 09:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:08:29.852+03	2021-05-23 09:08:29.86+03	
fa12d799-55e5-f079-56d0-078d2caeab3f	2021-05-23 09:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:08:49.853+03	2021-05-23 09:08:49.859+03	
1c86d9d1-edc1-e726-b881-f0d3a452d3fb	2021-05-23 09:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:09:10.852+03	2021-05-23 09:09:10.859+03	
61b6b376-f024-b7b6-e59a-cbfedc003ec7	2021-05-23 09:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:09:30.853+03	2021-05-23 09:09:30.86+03	
67c0fde7-ebea-0bf2-7312-e867f2629b75	2021-05-23 09:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:09:50.853+03	2021-05-23 09:09:50.859+03	
7d228499-3f94-cc5d-cfe3-45d769e21f2e	2021-05-23 09:10:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:10:11.853+03	2021-05-23 09:10:11.859+03	
f620db8d-b778-8286-6aa0-7410c62555ce	2021-05-23 09:10:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:10:31.854+03	2021-05-23 09:10:31.871+03	
32f8b966-ba01-b7b2-2396-4e9e8c3ec8d7	2021-05-23 09:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:10:52.853+03	2021-05-23 09:10:52.859+03	
6a5ccd27-44a8-87fb-4a25-dfb57954a0c6	2021-05-23 09:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:11:12.853+03	2021-05-23 09:11:12.86+03	
845e9eb3-2784-dd17-60a1-eb86edf5e835	2021-05-23 09:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:11:32.853+03	2021-05-23 09:11:32.859+03	
f6b53b7f-6838-6198-b763-8f7d549100b0	2021-05-23 09:11:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:11:53.852+03	2021-05-23 09:11:53.859+03	
68777466-d674-f58a-b9e9-cb7b09b36222	2021-05-23 09:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:12:13.853+03	2021-05-23 09:12:13.859+03	
022d6de1-ccc7-3a96-330f-772d54e09e9b	2021-05-23 09:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:12:35.853+03	2021-05-23 09:12:35.863+03	
349ebf27-cd00-efc0-baac-8c360bc83339	2021-05-23 09:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:12:55.853+03	2021-05-23 09:12:55.859+03	
53fbe356-39b6-69f6-ea9d-50aa8bbecbcc	2021-05-23 09:13:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:13:16.854+03	2021-05-23 09:13:16.859+03	
7080bfd2-ad68-697a-31d1-4d5882a444ea	2021-05-23 09:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:13:37.852+03	2021-05-23 09:13:37.859+03	
1e46ff07-045d-d193-efc2-bc4b431cace2	2021-05-23 09:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:13:57.852+03	2021-05-23 09:13:57.859+03	
bf33eba9-c6ef-b89c-485b-1c9991c05ff5	2021-05-23 09:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:14:17.852+03	2021-05-23 09:14:17.858+03	
91654dad-0a71-8630-26b0-f8f1248f2e11	2021-05-23 09:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:14:37.852+03	2021-05-23 09:14:37.863+03	
014bb29a-d27e-cede-b8fd-ea7116fe16f4	2021-05-23 09:14:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:14:57.853+03	2021-05-23 09:14:57.861+03	
81245630-48c7-ab21-0a3d-fb7d4e08a54c	2021-05-23 09:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:15:17.853+03	2021-05-23 09:15:17.859+03	
598c24c8-615a-f8f2-1d4a-dd21f4113b7f	2021-05-23 09:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:15:38.852+03	2021-05-23 09:15:38.858+03	
de6d1108-f08a-80e1-fbff-fc4a7e3c35db	2021-05-23 09:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:15:58.853+03	2021-05-23 09:15:58.861+03	
97f5a826-f615-f5cc-54d1-755273ae0b22	2021-05-23 09:16:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:16:19.853+03	2021-05-23 09:16:19.86+03	
83c380cf-1f2c-ada3-65a9-7ae70daa8164	2021-05-23 09:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:16:40.853+03	2021-05-23 09:16:40.859+03	
36be7adb-a636-40c3-74b6-e4ffdde05a94	2021-05-23 09:17:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:17:01.852+03	2021-05-23 09:17:01.859+03	
854ebc1e-bc8b-0d5a-e001-28105917288f	2021-05-23 09:17:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:17:21.852+03	2021-05-23 09:17:21.859+03	
7b9413ea-90ae-be7d-174d-61564eca5cc3	2021-05-23 08:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:56:53.853+03	2021-05-23 08:56:53.86+03	
48baff90-3626-baa4-6846-d807a444fa42	2021-05-23 08:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:57:13.853+03	2021-05-23 08:57:13.859+03	
855d61ec-e160-d719-2fa5-b946beab3f16	2021-05-23 08:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:57:34.853+03	2021-05-23 08:57:34.863+03	
5646d661-0993-8c34-706f-1888911c7e40	2021-05-23 08:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:57:55.853+03	2021-05-23 08:57:55.871+03	
dedfe345-be37-e77f-ac5d-3486b4264692	2021-05-23 08:58:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:58:16.852+03	2021-05-23 08:58:16.868+03	
4cf9e2ce-e1b7-e2d4-ec53-59ed32432862	2021-05-23 08:58:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:58:36.852+03	2021-05-23 08:58:36.859+03	
0cc04f7c-78ed-bdc9-5bec-9f43bf45c445	2021-05-23 08:58:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:58:56.853+03	2021-05-23 08:58:56.86+03	
84fff556-bab2-3077-9667-1a3669f2f98e	2021-05-23 08:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:59:17.853+03	2021-05-23 08:59:17.859+03	
fa283ad1-aca8-aae1-2640-4fa7c7372954	2021-05-23 08:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:59:37.853+03	2021-05-23 08:59:37.861+03	
eca02462-fba0-aa12-c76c-0acbe89bfbf8	2021-05-23 08:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 08:59:58.852+03	2021-05-23 08:59:58.867+03	
e58026ec-a6a0-d885-67e9-fddbb9f8fe91	2021-05-23 09:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:00:08.853+03	2021-05-23 09:00:08.867+03	
a8d44819-2579-2a43-d5fc-5de2abcd3853	2021-05-23 09:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:00:28.853+03	2021-05-23 09:00:28.862+03	
81fe23d7-4f82-0020-963e-057f53b04d03	2021-05-23 09:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:00:48.853+03	2021-05-23 09:00:48.86+03	
5ae3549b-8380-207c-8d5e-f3f56a82a0ae	2021-05-23 09:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:01:08.853+03	2021-05-23 09:01:08.859+03	
c7ee76c4-c6f3-77c0-6882-d360bed418f1	2021-05-23 09:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:01:29.852+03	2021-05-23 09:01:29.859+03	
27a25e05-52a1-4974-f8a2-3ef1295ee2bf	2021-05-23 09:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:01:49.852+03	2021-05-23 09:01:49.859+03	
a0e8fd0e-ac23-ae6c-f651-c32e61f20626	2021-05-23 09:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:02:09.853+03	2021-05-23 09:02:09.863+03	
e00c97e8-9d3b-44db-3b8d-804d0a424627	2021-05-23 09:02:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:02:31.852+03	2021-05-23 09:02:31.859+03	
9f0eaabc-c0ef-e60b-b00e-971cd11107a3	2021-05-23 09:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:02:52.852+03	2021-05-23 09:02:52.86+03	
91d7335c-e405-2fc3-db99-f37d454895a7	2021-05-23 09:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:03:13.852+03	2021-05-23 09:03:13.858+03	
280e4f7e-d5a8-8040-9308-7efe95e1e3ac	2021-05-23 09:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:03:34.853+03	2021-05-23 09:03:34.859+03	
904a23c1-dfad-fe7e-cddb-a957b5382882	2021-05-23 09:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:03:55.853+03	2021-05-23 09:03:55.861+03	
5427e06b-0e90-abed-f1b9-5b35e11139a9	2021-05-23 09:04:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:04:16.852+03	2021-05-23 09:04:16.86+03	
3e2a15e2-739d-450a-630b-ed0ed61611eb	2021-05-23 09:04:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:04:36.853+03	2021-05-23 09:04:36.864+03	
17cfedbf-d596-0b6e-cf8b-8263ef0994ed	2021-05-23 09:04:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:04:57.853+03	2021-05-23 09:04:57.859+03	
b2650c1c-0c21-c98f-40d4-5dfe4c840d31	2021-05-23 09:05:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:05:17.853+03	2021-05-23 09:05:17.859+03	
f503a63e-cf42-0a36-dcb2-99dabe77b6c3	2021-05-23 09:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:05:37.853+03	2021-05-23 09:05:37.859+03	
2453c048-8427-b44b-7030-4ecf1bba567c	2021-05-23 09:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:05:57.853+03	2021-05-23 09:05:57.859+03	
8589795c-fc6b-6a3c-3014-8181c9ad2988	2021-05-23 09:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:06:17.853+03	2021-05-23 09:06:17.859+03	
d6ef2cd5-96ff-f4c4-05b1-593f3157b269	2021-05-23 09:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:06:38.852+03	2021-05-23 09:06:38.865+03	
78f3d374-edd8-2607-f112-9602c9a5413d	2021-05-23 09:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:06:58.853+03	2021-05-23 09:06:58.859+03	
bb277125-6ed7-5cd8-dedb-2c9442973457	2021-05-23 09:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:07:18.853+03	2021-05-23 09:07:18.874+03	
aad7df9d-b327-b9a3-10c5-797a665b9652	2021-05-23 09:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:07:38.853+03	2021-05-23 09:07:38.861+03	
e2b69745-7bf9-d50b-7f6b-eb33471924c2	2021-05-23 09:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:07:58.853+03	2021-05-23 09:07:58.86+03	
ca745457-e5c6-527f-b5a9-2a75f75da953	2021-05-23 09:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:08:19.852+03	2021-05-23 09:08:19.859+03	
9b8b1c6a-f451-3066-95cf-d40199e33d02	2021-05-23 09:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:08:39.852+03	2021-05-23 09:08:39.858+03	
74328a9d-ed45-c21e-f91b-cfc09e524fbe	2021-05-23 09:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:08:59.853+03	2021-05-23 09:08:59.859+03	
4fa335bc-68cc-4537-eb0c-1186aba32c3f	2021-05-23 09:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:09:20.852+03	2021-05-23 09:09:20.86+03	
65ddbcda-f131-9a6b-73ac-7646f6387517	2021-05-23 09:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:09:40.853+03	2021-05-23 09:09:40.86+03	
2921ef5a-705a-20af-d885-bf477d9bd2ad	2021-05-23 09:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:10:00.853+03	2021-05-23 09:10:00.863+03	
7ec5fba9-bd17-5cb6-7e60-b0bd719fc6cf	2021-05-23 09:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 09:10:00.853+03	2021-05-23 09:10:00.87+03	ERROR
c1ec073c-d80f-cde4-7b40-9bc9020e3cc0	2021-05-23 09:10:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:10:21.853+03	2021-05-23 09:10:21.859+03	
bb927302-b4fc-f062-0195-3e008071c1a5	2021-05-23 09:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:10:42.853+03	2021-05-23 09:10:42.866+03	
0732ebb2-39bc-72b0-f2c0-d5bad717df28	2021-05-23 09:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:11:02.853+03	2021-05-23 09:11:02.859+03	
96774060-3193-3f21-8bea-bd2fdc88cea3	2021-05-23 09:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:11:22.853+03	2021-05-23 09:11:22.86+03	
df22d1c5-553d-a7cf-3fc5-3c05aec264aa	2021-05-23 09:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:11:42.853+03	2021-05-23 09:11:42.86+03	
bda6ad96-4098-8713-4a86-14a3dbb56213	2021-05-23 09:12:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:12:03.853+03	2021-05-23 09:12:03.859+03	
cfe0be96-982f-78e7-119d-287fd5771a5c	2021-05-23 09:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:12:24.853+03	2021-05-23 09:12:24.859+03	
83c27e5f-8fd3-06af-2ab1-5c10072b22a3	2021-05-23 09:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:12:45.853+03	2021-05-23 09:12:45.868+03	
4f8f1ffa-2425-6d49-92bb-343545ec4897	2021-05-23 09:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:13:05.853+03	2021-05-23 09:13:05.86+03	
92908af8-869d-b896-ea18-102096e95f3b	2021-05-23 09:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:13:27.852+03	2021-05-23 09:13:27.859+03	
96aacb28-364f-0d40-df33-b98c50d4b212	2021-05-23 09:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:13:47.852+03	2021-05-23 09:13:47.86+03	
66685698-dd7a-c3cf-dca9-16fef50444e3	2021-05-23 09:14:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:14:07.852+03	2021-05-23 09:14:07.859+03	
a7355369-93eb-6574-bcaf-f72947b7b8e5	2021-05-23 09:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:14:27.852+03	2021-05-23 09:14:27.859+03	
8e1eefa7-b06d-1a12-daef-28e55d0d8002	2021-05-23 09:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:14:47.853+03	2021-05-23 09:14:47.866+03	
60c78b38-19c5-ae51-ea8b-d6b7dc79c265	2021-05-23 09:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:15:07.853+03	2021-05-23 09:15:07.861+03	
595de5a2-cf67-3d78-dbb0-dc5b0a4329e7	2021-05-23 09:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:15:27.853+03	2021-05-23 09:15:27.86+03	
1ce4c0b2-739d-54ba-9788-6e735ea29a5a	2021-05-23 09:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:15:48.852+03	2021-05-23 09:15:48.859+03	
1d1b6860-7c66-7eaa-5df5-6e07548bef4a	2021-05-23 09:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:16:08.853+03	2021-05-23 09:16:08.859+03	
6ec41caa-4603-74d5-81d8-346508a63bd2	2021-05-23 09:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:16:29.853+03	2021-05-23 09:16:29.862+03	
5c73b1f9-0b35-66d9-c242-569152a17527	2021-05-23 09:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:16:50.853+03	2021-05-23 09:16:50.868+03	
2bea67d3-04aa-d609-3704-bc4f771094da	2021-05-23 09:17:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:17:11.852+03	2021-05-23 09:17:11.859+03	
e54bb28c-1360-d37f-8f13-9965d31a3866	2021-05-23 09:17:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:17:31.852+03	2021-05-23 09:17:31.858+03	
abb40743-63fb-ca38-d1b2-f222f302aa98	2021-05-23 09:17:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:17:41.854+03	2021-05-23 09:17:41.86+03	
4ac22288-6ca7-cf70-800b-53b339b7cccb	2021-05-23 09:18:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:18:02.853+03	2021-05-23 09:18:02.859+03	
ba7ee349-c576-f279-f141-f76f15a966c6	2021-05-23 09:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:18:23.852+03	2021-05-23 09:18:23.86+03	
0b83bbb0-9d28-948d-04eb-e17d8db6ae02	2021-05-23 09:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:18:44.852+03	2021-05-23 09:18:44.859+03	
ff6e3ef9-a9b8-34cf-6f65-3f7305cebb35	2021-05-23 09:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:19:04.852+03	2021-05-23 09:19:04.858+03	
7575ced6-b6ba-9484-4756-cd75de1620b9	2021-05-23 09:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:19:24.852+03	2021-05-23 09:19:24.859+03	
52739400-0133-b8a6-a88b-b6102baae6d3	2021-05-23 09:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:19:44.853+03	2021-05-23 09:19:44.859+03	
a5a6a2f4-ad7a-003a-0fd9-48e4018ee5aa	2021-05-23 09:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 09:20:00.852+03	2021-05-23 09:20:00.857+03	ERROR
85b32566-9de9-b404-38df-85887acc281c	2021-05-23 09:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:20:15.853+03	2021-05-23 09:20:15.86+03	
3aa2c74a-7322-2e45-539a-f03fbd8446ef	2021-05-23 09:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:20:35.853+03	2021-05-23 09:20:35.859+03	
ada84142-a45a-c2b2-b518-f7fd559c6653	2021-05-23 09:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:20:56.852+03	2021-05-23 09:20:56.864+03	
c8d04251-b488-3af5-02ea-b2f587bff1a4	2021-05-23 09:21:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:21:16.852+03	2021-05-23 09:21:16.859+03	
1d98cd38-953b-4da1-d7f2-4e6fa60a5e9a	2021-05-23 09:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:21:37.853+03	2021-05-23 09:21:37.86+03	
39a01798-af9d-9fb4-15b6-a17845e8467c	2021-05-23 09:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:21:58.853+03	2021-05-23 09:21:58.86+03	
dd9d2a15-5fe0-ea8c-863b-f76815f24fce	2021-05-23 09:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:22:19.853+03	2021-05-23 09:22:19.859+03	
199cc2e9-eba1-9ef3-8ed6-af04ee3dbc9e	2021-05-23 09:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:22:40.852+03	2021-05-23 09:22:40.863+03	
39df1fff-e2c6-7172-2b68-0cbc59c122c7	2021-05-23 09:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:23:00.853+03	2021-05-23 09:23:00.862+03	
a14ac617-300a-e8f1-9163-1b1e5af3c0ba	2021-05-23 09:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:23:20.853+03	2021-05-23 09:23:20.861+03	
0d44baaa-ddde-5572-4508-e5dc27f3de8f	2021-05-23 09:23:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:23:41.852+03	2021-05-23 09:23:41.86+03	
b8acb88a-69f3-664a-1629-01c1cfa84561	2021-05-23 09:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:24:02.852+03	2021-05-23 09:24:02.858+03	
a6c72a53-c976-56bd-6348-a4071a6c1105	2021-05-23 09:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:24:22.852+03	2021-05-23 09:24:22.859+03	
b97a7f1b-1510-2cdd-1a0f-207459eece5b	2021-05-23 09:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:24:42.853+03	2021-05-23 09:24:42.859+03	
8e9f8f23-ddcf-4e24-a7ff-e398c60df7fe	2021-05-23 09:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:25:03.853+03	2021-05-23 09:25:03.86+03	
00ff5fd1-2cd5-7626-a39b-7220efc5819c	2021-05-23 09:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:25:23.853+03	2021-05-23 09:25:23.863+03	
f46eea96-c45d-ec24-a06e-78d21417fe24	2021-05-23 09:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:25:43.853+03	2021-05-23 09:25:43.863+03	
1cd8ecbb-5d8b-a509-95a2-7dbc0ab37641	2021-05-23 09:26:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:26:04.852+03	2021-05-23 09:26:04.859+03	
e318add5-7180-cd57-b5a4-95ed4cb421a2	2021-05-23 09:26:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:26:24.853+03	2021-05-23 09:26:24.859+03	
da98e11f-499f-1a42-6f77-40fae20666ba	2021-05-23 09:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:26:45.853+03	2021-05-23 09:26:45.871+03	
e9cd9815-594d-b7b4-cb56-ffea1adc4a05	2021-05-23 09:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:27:05.853+03	2021-05-23 09:27:05.86+03	
ceeeaf65-2cb0-8a85-5213-1f785c04ad4f	2021-05-23 09:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:27:26.852+03	2021-05-23 09:27:26.859+03	
fa8c6af5-cbdd-775b-2bff-c83262a42b20	2021-05-23 09:27:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:27:46.852+03	2021-05-23 09:27:46.858+03	
14ab05f4-b724-cb09-aae0-bb683013f670	2021-05-23 09:28:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:28:06.854+03	2021-05-23 09:28:06.86+03	
eeb021ae-71f9-2998-6b78-808ebd1310bc	2021-05-23 09:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:28:27.853+03	2021-05-23 09:28:27.86+03	
1ab34e32-d9d8-88cd-2d21-8acbec155a2a	2021-05-23 09:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:28:47.853+03	2021-05-23 09:28:47.873+03	
349b284b-0c81-d611-c446-a451453bb1d4	2021-05-23 09:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:29:08.852+03	2021-05-23 09:29:08.86+03	
f7170eb4-197c-c344-0562-aa9525575634	2021-05-23 09:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:29:29.853+03	2021-05-23 09:29:29.859+03	
69921852-fc80-6d5d-ac73-6e82af453cca	2021-05-23 09:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:29:50.853+03	2021-05-23 09:29:50.859+03	
1b92f4ae-8158-e8b2-418a-d3d3a9432c55	2021-05-23 09:30:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:30:11.852+03	2021-05-23 09:30:11.859+03	
1f04bf58-2744-7c10-caa6-65204b244ba9	2021-05-23 09:30:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:30:31.853+03	2021-05-23 09:30:31.86+03	
0c6125b6-953f-1477-70bc-44b5fdb090d9	2021-05-23 09:30:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:30:51.853+03	2021-05-23 09:30:51.86+03	
d739ea01-68f6-e1d1-0c6a-ce415d2111e0	2021-05-23 09:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:31:12.852+03	2021-05-23 09:31:12.859+03	
02d81eab-d8d9-2a44-32c6-874829e93859	2021-05-23 09:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:31:32.852+03	2021-05-23 09:31:32.859+03	
8a8b1e4e-7911-0ce5-c630-3c1203591771	2021-05-23 09:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:31:53.853+03	2021-05-23 09:31:53.86+03	
4c62749b-6429-e48a-2615-60414af011e3	2021-05-23 09:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:32:15.853+03	2021-05-23 09:32:15.86+03	
ef353224-a279-3858-88dc-f7316443a70b	2021-05-23 09:32:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:32:36.852+03	2021-05-23 09:32:36.867+03	
4ce375b7-b11c-54e6-405c-7e0d794b119d	2021-05-23 09:32:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:32:56.853+03	2021-05-23 09:32:56.86+03	
488a01b2-5c9c-de39-fd6f-8c0d28adca09	2021-05-23 09:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:33:17.853+03	2021-05-23 09:33:17.86+03	
e0a3dd77-81f8-987d-7d13-2debf4910b0e	2021-05-23 09:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:33:38.853+03	2021-05-23 09:33:38.86+03	
096b42cd-3313-ba40-bc29-64ee8d59adb6	2021-05-23 09:33:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:33:58.853+03	2021-05-23 09:33:58.862+03	
67be8836-5208-31a0-0344-7c59c7df0653	2021-05-23 09:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:34:18.853+03	2021-05-23 09:34:18.861+03	
0824c7ea-08a8-bead-17d9-fbd79b62ad20	2021-05-23 09:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:34:39.852+03	2021-05-23 09:34:39.859+03	
c578296e-8225-d7a1-d3c9-b55aebdca162	2021-05-23 09:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:34:59.853+03	2021-05-23 09:34:59.86+03	
9b257d43-3e59-3d6f-7639-3c6aa952e91a	2021-05-23 09:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:35:20.853+03	2021-05-23 09:35:20.859+03	
ce5c09ea-1256-c9a6-4d0a-0d8e6ac01e81	2021-05-23 09:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:35:40.853+03	2021-05-23 09:35:40.859+03	
82bb8a4d-2da4-0521-fedb-bd76da925b38	2021-05-23 09:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:36:00.853+03	2021-05-23 09:36:00.878+03	
f9261a40-2cea-33e0-438e-238218ec8118	2021-05-23 09:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:36:22.853+03	2021-05-23 09:36:22.858+03	
9ccc9283-4179-23b5-271f-b45d8d947922	2021-05-23 09:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:36:42.853+03	2021-05-23 09:36:42.859+03	
edf9fdf6-26da-575c-0dc0-2922011ad6b1	2021-05-23 09:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:37:02.853+03	2021-05-23 09:37:02.859+03	
b7e177d3-0898-018a-c530-d7cdc4506148	2021-05-23 09:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:37:22.853+03	2021-05-23 09:37:22.86+03	
ad1c7dec-2406-88a1-bc73-e00df4d9357a	2021-05-23 09:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:37:42.853+03	2021-05-23 09:37:42.859+03	
46c0fc67-f457-bd2a-ced3-3ef717ccd426	2021-05-23 09:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:38:02.853+03	2021-05-23 09:38:02.861+03	
293b8e45-4908-67bd-f1bb-8e9271fd3b7c	2021-05-23 09:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:38:23.852+03	2021-05-23 09:38:23.865+03	
2c5c2285-0309-3415-7a8e-fad99dbfa663	2021-05-23 09:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:38:43.853+03	2021-05-23 09:38:43.876+03	
5e88f08b-b748-5674-4f82-9664b76575b8	2021-05-23 09:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:17:52.852+03	2021-05-23 09:17:52.868+03	
269f1794-a67f-d19b-3cf8-4656a452d262	2021-05-23 09:18:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:18:12.853+03	2021-05-23 09:18:12.862+03	
b3971145-e899-bd8d-cbef-ea488af5ab4e	2021-05-23 09:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:18:33.853+03	2021-05-23 09:18:33.859+03	
cdc932f9-9d14-3e81-d93f-69ed5ea30c2b	2021-05-23 09:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:18:54.852+03	2021-05-23 09:18:54.866+03	
556c8d9f-dce7-4a79-961d-eb3c65e4a758	2021-05-23 09:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:19:14.852+03	2021-05-23 09:19:14.861+03	
88fb3d24-e260-99b0-3328-427e5a230b69	2021-05-23 09:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:19:34.853+03	2021-05-23 09:19:34.859+03	
1c94be68-e2cb-b218-b905-32cf3336a7fa	2021-05-23 09:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:19:54.853+03	2021-05-23 09:19:54.859+03	
f18768af-729a-62b1-7cf8-dc781752ca8e	2021-05-23 09:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:20:05.853+03	2021-05-23 09:20:05.862+03	
5220eb60-b09e-b881-e84e-58e84d7a2ad5	2021-05-23 09:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:20:25.853+03	2021-05-23 09:20:25.862+03	
0ea600fd-8aba-5560-002b-0f200f158b61	2021-05-23 09:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:20:46.852+03	2021-05-23 09:20:46.858+03	
cea82e8f-9965-3fd1-d78c-48cf4e94a08c	2021-05-23 09:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:21:06.852+03	2021-05-23 09:21:06.859+03	
46790e5f-6ef2-32b2-fff8-6c550c482da2	2021-05-23 09:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:21:26.853+03	2021-05-23 09:21:26.86+03	
0788190e-9089-d5cf-d778-0412127397ef	2021-05-23 09:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:21:48.853+03	2021-05-23 09:21:48.859+03	
d519d43e-544f-7cf2-b720-a66540d04158	2021-05-23 09:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:22:08.853+03	2021-05-23 09:22:08.863+03	
e775ecb5-dce5-d27d-4c0e-bcd6191e508b	2021-05-23 09:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:22:30.852+03	2021-05-23 09:22:30.858+03	
9bbb3b66-aa63-5758-edae-8cc0e7544a16	2021-05-23 09:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:22:50.853+03	2021-05-23 09:22:50.858+03	
e2550158-643c-767c-4439-dd2842912679	2021-05-23 09:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:23:10.853+03	2021-05-23 09:23:10.859+03	
47af32e9-c558-488c-9123-f4b29171b466	2021-05-23 09:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:23:30.853+03	2021-05-23 09:23:30.86+03	
109d5edd-e3be-9044-47d5-5d30e8054be6	2021-05-23 09:23:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:23:51.853+03	2021-05-23 09:23:51.86+03	
0033de27-b807-de38-e730-c0f903be3d28	2021-05-23 09:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:24:12.852+03	2021-05-23 09:24:12.859+03	
33de7986-1b85-e7d5-0f20-724eb0b73d65	2021-05-23 09:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:24:32.853+03	2021-05-23 09:24:32.864+03	
fafed204-d3d3-7f63-51bf-a1ba7b4322ef	2021-05-23 09:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:24:52.853+03	2021-05-23 09:24:52.859+03	
b0e33958-b544-35f5-787c-8f09d3e29fa5	2021-05-23 09:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:25:13.853+03	2021-05-23 09:25:13.861+03	
e3b41687-985e-54fa-efcf-de071a78fbdf	2021-05-23 09:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:25:33.853+03	2021-05-23 09:25:33.861+03	
9d770ffc-4e1d-c667-06e2-16096f899820	2021-05-23 09:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:25:54.852+03	2021-05-23 09:25:54.858+03	
6718abaa-df28-e272-f7c8-9d79c5b57125	2021-05-23 09:26:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:26:14.853+03	2021-05-23 09:26:14.861+03	
686859f5-0233-4bdb-6f3b-5d7c4372a620	2021-05-23 09:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:26:35.853+03	2021-05-23 09:26:35.859+03	
2ea5b01a-fcc1-0d9b-c744-5da295c8c069	2021-05-23 09:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:26:55.853+03	2021-05-23 09:26:56.17+03	
52b00d43-3ad9-9789-cc45-8451c193a674	2021-05-23 09:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:27:15.853+03	2021-05-23 09:27:15.869+03	
f76d4e0a-321c-ead1-a865-8835e0ec208a	2021-05-23 09:27:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:27:36.852+03	2021-05-23 09:27:36.859+03	
a3bc8137-7adc-e905-67e2-73503173c209	2021-05-23 09:27:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:27:56.853+03	2021-05-23 09:27:56.86+03	
c48d3ba4-25f2-43d0-face-e576f0568fc0	2021-05-23 09:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:28:17.853+03	2021-05-23 09:28:17.859+03	
327f1572-2d39-72cf-f6b8-05f6817c302c	2021-05-23 09:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:28:37.853+03	2021-05-23 09:28:37.86+03	
6f8312fe-5b24-aae0-25aa-81fe83e0b8c1	2021-05-23 09:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:28:58.852+03	2021-05-23 09:28:58.86+03	
946ffbba-6283-b879-46c8-47ea5fdd9e65	2021-05-23 09:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:29:18.853+03	2021-05-23 09:29:18.859+03	
40810ba0-df09-e98c-b258-7d03bd36bde7	2021-05-23 09:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:29:39.853+03	2021-05-23 09:29:39.86+03	
f910e887-5f5d-3a74-045d-c752870c7959	2021-05-23 09:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:30:00.853+03	2021-05-23 09:30:00.86+03	
86206b45-466b-0a53-2b0d-0f90029d46fd	2021-05-23 09:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 09:30:00.853+03	2021-05-23 09:30:00.871+03	ERROR
8d86ce35-2fe2-e80a-94a4-fbf336f019b9	2021-05-23 09:30:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:30:21.853+03	2021-05-23 09:30:21.86+03	
269561fb-7c38-5722-f650-c3a72bfcfab7	2021-05-23 09:30:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:30:41.853+03	2021-05-23 09:30:41.86+03	
fd329c1a-49fa-7027-2b76-4339713d49d3	2021-05-23 09:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:31:02.852+03	2021-05-23 09:31:02.859+03	
4dd9d46c-5cce-c120-457f-96516a2b7370	2021-05-23 09:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:31:22.852+03	2021-05-23 09:31:22.866+03	
10e5e950-7853-1a39-95bd-734107f718cf	2021-05-23 09:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:31:42.853+03	2021-05-23 09:31:42.859+03	
0e5297bd-ad72-2f7c-8b47-e125866f6a03	2021-05-23 09:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:32:04.853+03	2021-05-23 09:32:04.861+03	
a909fa50-8454-611d-4f22-b6ccaf740b2d	2021-05-23 09:32:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:32:26.852+03	2021-05-23 09:32:26.859+03	
a54e933a-77d9-51f0-edde-ab51330af030	2021-05-23 09:32:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:32:46.852+03	2021-05-23 09:32:46.86+03	
0dd1169d-c114-01b5-f913-b0e34f51a540	2021-05-23 09:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:33:07.852+03	2021-05-23 09:33:07.859+03	
860ef218-163e-e435-7710-8a1fe45c54b1	2021-05-23 09:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:33:28.852+03	2021-05-23 09:33:28.87+03	
1ad6081b-c386-9be1-15d0-3570685d4f2d	2021-05-23 09:33:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:33:48.853+03	2021-05-23 09:33:48.86+03	
bc31a244-b3ba-d724-adab-33136a00e055	2021-05-23 09:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:34:08.853+03	2021-05-23 09:34:08.871+03	
3ad7bdc3-615f-8d55-0189-348b763bfbb2	2021-05-23 09:34:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:34:29.852+03	2021-05-23 09:34:29.859+03	
c7879c31-bf1f-5b36-c470-422237228716	2021-05-23 09:34:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:34:49.852+03	2021-05-23 09:34:49.859+03	
9576f8ea-de55-dc88-998a-0c9f8d7fb6ea	2021-05-23 09:35:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:35:10.852+03	2021-05-23 09:35:10.86+03	
85a0eb2a-ee96-7d37-448a-cfffcf574284	2021-05-23 09:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:35:30.853+03	2021-05-23 09:35:30.859+03	
2e1dad88-ac3f-b4f3-5b5e-793c38596838	2021-05-23 09:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:35:50.853+03	2021-05-23 09:35:50.86+03	
1a8c4196-4f3a-2d99-f081-2378452e2154	2021-05-23 09:36:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:36:11.853+03	2021-05-23 09:36:11.858+03	
2b7b81f8-a5a8-1443-ae1e-23a65ecaa419	2021-05-23 09:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:36:32.853+03	2021-05-23 09:36:32.859+03	
bba89ce1-ea6a-45a4-5660-84fb9fc31346	2021-05-23 09:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:36:52.853+03	2021-05-23 09:36:52.859+03	
6db86931-ff70-b90f-b26e-b56de38449ee	2021-05-23 09:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:37:12.853+03	2021-05-23 09:37:12.859+03	
42048133-2127-ea3f-23a2-36f822f22b64	2021-05-23 09:37:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:37:32.853+03	2021-05-23 09:37:32.862+03	
d752fe7a-41ee-9600-bcb5-4116b27bb9b0	2021-05-23 09:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:37:52.853+03	2021-05-23 09:37:52.86+03	
4f05da05-00f6-38fc-4c37-169603802578	2021-05-23 09:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:38:12.853+03	2021-05-23 09:38:12.861+03	
c5a6003a-a517-d0e7-7ca1-f4a89adc5824	2021-05-23 09:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:38:33.852+03	2021-05-23 09:38:33.858+03	
83da7c08-3887-938b-20d4-ba34d0b6e4b4	2021-05-23 09:38:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:38:54.853+03	2021-05-23 09:38:54.859+03	
06c101aa-a2b3-520b-882e-3add2dfec45d	2021-05-23 09:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:39:15.853+03	2021-05-23 09:39:15.859+03	
1c2aa516-1962-8ae7-0e0e-a5614bb4c93c	2021-05-23 09:39:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:39:36.854+03	2021-05-23 09:39:36.861+03	
2a3a4c2c-2abf-4fb9-eb04-30576ffad9b0	2021-05-23 09:39:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:39:58.852+03	2021-05-23 09:39:58.859+03	
ca2fc243-7061-60a8-bbee-f6afa15be15e	2021-05-23 09:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:40:08.853+03	2021-05-23 09:40:08.877+03	
e743208b-bd1e-ebc7-c09c-164daae3675a	2021-05-23 09:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:40:29.853+03	2021-05-23 09:40:29.861+03	
99e5d1a1-147d-d561-58f3-d20c72d7f293	2021-05-23 09:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:40:49.853+03	2021-05-23 09:40:49.869+03	
ad9dc29f-7b68-2232-244b-0d32ba53107a	2021-05-23 09:41:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:41:11.853+03	2021-05-23 09:41:11.86+03	
78af1119-8e4c-ef32-9715-6779d68b339a	2021-05-23 09:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:41:32.852+03	2021-05-23 09:41:32.859+03	
058b7360-5cc3-bbde-40e6-d4c5b9bd90c9	2021-05-23 09:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:41:52.853+03	2021-05-23 09:41:52.86+03	
669f1eb1-eabc-8d4d-af63-6fc10472447a	2021-05-23 09:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:42:13.853+03	2021-05-23 09:42:13.859+03	
d3d1740e-e4b3-aade-0790-5ebc54fbbe1a	2021-05-23 09:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:42:34.852+03	2021-05-23 09:42:34.859+03	
3d9260d3-4f6e-48ee-29a5-a6a79da78e12	2021-05-23 09:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:42:54.853+03	2021-05-23 09:42:54.859+03	
27235c54-0f2d-13e0-1539-85cce59ef364	2021-05-23 09:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:43:15.853+03	2021-05-23 09:43:15.862+03	
10b629be-59e7-c539-49cd-71c3a5656d29	2021-05-23 09:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:43:35.853+03	2021-05-23 09:43:35.86+03	
741e788a-bc7a-92e7-0164-6390054bbaf6	2021-05-23 09:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:43:55.853+03	2021-05-23 09:43:55.859+03	
f200c12c-8266-6517-64de-693601f691ca	2021-05-23 09:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:44:15.853+03	2021-05-23 09:44:15.862+03	
3c217780-9b45-5499-9f32-8a7e11e186d9	2021-05-23 09:44:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:44:36.852+03	2021-05-23 09:44:36.858+03	
a85e2b54-1e84-f5fd-f444-964c66691fbe	2021-05-23 09:44:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:44:56.852+03	2021-05-23 09:44:56.859+03	
f23b6ea2-59d6-d268-6c00-ef8a7fb2a9ec	2021-05-23 09:45:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:45:16.853+03	2021-05-23 09:45:16.861+03	
457e7c90-2fd6-5025-5957-0f74c133d54d	2021-05-23 09:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:45:37.853+03	2021-05-23 09:45:37.86+03	
c24aba9e-d2e6-9ec2-7256-e2c33d6dc983	2021-05-23 09:45:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:45:58.852+03	2021-05-23 09:45:58.859+03	
af83795f-d534-b90c-2515-daeaefa460f7	2021-05-23 09:46:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:46:18.852+03	2021-05-23 09:46:18.858+03	
7445e13e-86d7-d81c-f48a-716aa618e030	2021-05-23 09:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:46:39.852+03	2021-05-23 09:46:39.859+03	
49e203e8-d349-7c4d-abc7-6374a2f63bcd	2021-05-23 09:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:46:59.853+03	2021-05-23 09:46:59.861+03	
d26857dc-f00d-f00e-829c-dbd535992647	2021-05-23 09:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:47:19.853+03	2021-05-23 09:47:19.859+03	
4675dec4-292d-ed51-7fc1-44f6f16d7c7f	2021-05-23 09:47:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:47:41.852+03	2021-05-23 09:47:41.859+03	
4cc56a8d-e1c9-7002-7ab6-1a92ea9b81d0	2021-05-23 09:48:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:48:01.853+03	2021-05-23 09:48:01.86+03	
dcf432e7-8562-fb77-6f36-0b2f6dd52669	2021-05-23 09:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:48:22.853+03	2021-05-23 09:48:22.86+03	
4c51d3e0-dc20-50f4-9790-660a894de576	2021-05-23 09:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:48:42.853+03	2021-05-23 09:48:42.86+03	
4a3e2ce7-690e-aa61-9fb5-61fec16c50cd	2021-05-23 09:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:49:02.853+03	2021-05-23 09:49:02.86+03	
d20393fc-6426-8d4d-be5e-ebed3a6d7813	2021-05-23 09:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:49:22.853+03	2021-05-23 09:49:22.86+03	
8f1bf01c-4e83-de9f-fa81-c58885e6ebad	2021-05-23 09:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:49:43.852+03	2021-05-23 09:49:43.858+03	
ae483104-ab80-d48b-b79a-7d452228c227	2021-05-23 09:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 09:50:00.852+03	2021-05-23 09:50:00.858+03	ERROR
8808515b-ff80-b453-04c2-4b2ffd10db6f	2021-05-23 09:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:50:13.852+03	2021-05-23 09:50:13.861+03	
33e5f065-a534-bb07-cd71-af4bd4910dba	2021-05-23 09:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:50:33.853+03	2021-05-23 09:50:33.86+03	
6dbdf106-c0d0-7883-89d2-3888757fdf29	2021-05-23 09:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:50:54.853+03	2021-05-23 09:50:54.86+03	
bef476bd-ce1a-a2dc-932b-d6e0fd5505b9	2021-05-23 09:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:51:14.853+03	2021-05-23 09:51:14.86+03	
ba5c7a31-ce9b-f07f-8229-c962e2424bf2	2021-05-23 09:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:51:35.853+03	2021-05-23 09:51:35.859+03	
a2712b7c-407b-2d0d-1c77-031b55565986	2021-05-23 09:51:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:51:56.852+03	2021-05-23 09:51:56.865+03	
cb112614-0834-67d4-a73b-cf3fb033f99b	2021-05-23 09:52:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:52:16.852+03	2021-05-23 09:52:16.871+03	
782adaec-c033-ec8b-27c4-7fb01ff29db0	2021-05-23 09:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:52:36.853+03	2021-05-23 09:52:36.86+03	
65db1149-ac46-5fe8-4dfc-f92ee4c3b5ca	2021-05-23 09:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:52:57.852+03	2021-05-23 09:52:57.871+03	
2d240320-6215-0e9e-18af-613f5648804d	2021-05-23 09:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:53:17.853+03	2021-05-23 09:53:17.859+03	
5bcfb12f-a509-0438-82b0-215ed12cbe74	2021-05-23 09:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:53:38.852+03	2021-05-23 09:53:38.859+03	
157a218d-f245-7320-dd19-373a709e9e21	2021-05-23 09:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:53:58.853+03	2021-05-23 09:53:58.861+03	
08c4257e-b032-ddc2-cb1d-8c457915341a	2021-05-23 09:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:54:18.853+03	2021-05-23 09:54:18.859+03	
97d42ba4-42c7-5899-7127-2b01eff26647	2021-05-23 09:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:54:38.853+03	2021-05-23 09:54:38.86+03	
a6ca7b51-f143-92fa-6de0-0616bbbdedf9	2021-05-23 09:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:54:59.853+03	2021-05-23 09:54:59.86+03	
d14eac56-ee84-661b-9630-590cb4c29312	2021-05-23 09:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:55:20.852+03	2021-05-23 09:55:20.859+03	
0787b43d-1b93-3720-a572-c94d594cf160	2021-05-23 09:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:55:40.853+03	2021-05-23 09:55:40.859+03	
9db77e44-5fe7-3b17-4093-1138b24438fa	2021-05-23 09:56:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:56:01.854+03	2021-05-23 09:56:01.898+03	
9228d9c2-6ec9-581d-3ff6-0d868fd71121	2021-05-23 09:56:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:56:21.854+03	2021-05-23 09:56:21.861+03	
1c2d1fdc-1463-010a-9bc7-3dadd713c8eb	2021-05-23 09:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:56:42.852+03	2021-05-23 09:56:42.859+03	
a7f545e5-f7aa-01c1-17cb-f420392554a4	2021-05-23 09:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:57:02.853+03	2021-05-23 09:57:02.86+03	
e974e965-4541-85ac-613b-90d45778449a	2021-05-23 09:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:57:22.853+03	2021-05-23 09:57:22.86+03	
fb9d2db6-9ebb-e369-9f06-b4f3b4f335e8	2021-05-23 09:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:57:42.853+03	2021-05-23 09:57:42.861+03	
f2cfaa3b-9f54-2f1a-c3ee-75b9ecf7ec9f	2021-05-23 09:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:58:02.853+03	2021-05-23 09:58:02.859+03	
99c66f38-eeb0-b12a-f1d6-9de6889cfa5e	2021-05-23 09:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:58:23.852+03	2021-05-23 09:58:23.859+03	
7be23fbe-1e36-038c-607d-f1a231786e31	2021-05-23 09:58:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:58:43.852+03	2021-05-23 09:58:43.859+03	
44c5c08b-5481-9425-c83b-4a9d26480ccb	2021-05-23 09:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:59:03.852+03	2021-05-23 09:59:03.863+03	
aae787ca-59e5-ae87-3fc6-7136bc9f59e9	2021-05-23 09:59:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:59:24.852+03	2021-05-23 09:59:24.86+03	
d7b3d83b-c341-882a-ae95-14b4f57210a9	2021-05-23 09:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:59:44.853+03	2021-05-23 09:59:44.86+03	
fb50108e-1d37-4544-7650-c9255fdb2433	2021-05-23 09:39:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:39:04.853+03	2021-05-23 09:39:04.865+03	
6333885a-5aa8-48db-7a8b-7867cd41bdef	2021-05-23 09:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:39:25.853+03	2021-05-23 09:39:25.861+03	
4dbade9b-ed3c-72c9-e60b-7ebad0b3c4c5	2021-05-23 09:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:39:47.853+03	2021-05-23 09:39:47.87+03	
cd58c83f-0b9a-2053-a341-c41968e0d0a1	2021-05-23 09:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 09:40:00.852+03	2021-05-23 09:40:00.858+03	ERROR
8f897fe5-2b57-4884-c224-9eecc8b427b8	2021-05-23 09:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:40:19.853+03	2021-05-23 09:40:19.859+03	
d00119e8-be1f-5cb6-a4ee-83b417f9d2e1	2021-05-23 09:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:40:39.853+03	2021-05-23 09:40:39.86+03	
578e1b82-07d6-bd5e-493d-e3a961be79f6	2021-05-23 09:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:41:00.853+03	2021-05-23 09:41:00.86+03	
bcf81e1b-c5fa-4619-e0c4-2d46c375dc74	2021-05-23 09:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:41:22.852+03	2021-05-23 09:41:22.858+03	
7f54693e-7d45-7426-bc18-66f4d2dbbbc5	2021-05-23 09:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:41:42.852+03	2021-05-23 09:41:42.859+03	
f2eb092b-45d6-6221-08bd-dc5f41a8200f	2021-05-23 09:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:42:03.853+03	2021-05-23 09:42:03.86+03	
149204c1-fb19-2eb4-54e0-538af5db13d3	2021-05-23 09:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:42:24.852+03	2021-05-23 09:42:24.859+03	
24ee94aa-4158-8dd2-7bbc-fabf5bb2d989	2021-05-23 09:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:42:44.852+03	2021-05-23 09:42:44.859+03	
fb3eb03e-c042-aad4-d26e-1955c9cc2e3e	2021-05-23 09:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:43:05.853+03	2021-05-23 09:43:05.859+03	
d523e949-639d-81b5-6e95-e1ae62dd2890	2021-05-23 09:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:43:25.853+03	2021-05-23 09:43:25.86+03	
6621f321-0d58-e09e-4a67-9bbdb872d040	2021-05-23 09:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:43:45.853+03	2021-05-23 09:43:45.86+03	
e3c76869-7ae4-95a0-cb47-745d23e1f75f	2021-05-23 09:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:44:05.853+03	2021-05-23 09:44:05.86+03	
768d85f4-230c-8e2d-7507-3f4171d9e5fa	2021-05-23 09:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:44:26.852+03	2021-05-23 09:44:26.86+03	
2893dfb3-143a-f7d3-5e96-745dd98c74ff	2021-05-23 09:44:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:44:46.852+03	2021-05-23 09:44:46.859+03	
bfad15f2-04d3-f684-dad8-a6c6810b1574	2021-05-23 09:45:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:45:06.853+03	2021-05-23 09:45:06.86+03	
75a0e372-4fea-9a0e-980e-de74546c2aed	2021-05-23 09:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:45:27.853+03	2021-05-23 09:45:27.86+03	
a275beef-443d-8b28-f327-6dc281e8c29f	2021-05-23 09:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:45:48.852+03	2021-05-23 09:45:48.859+03	
6523d769-1bcc-eff0-d8cf-08c67014fd19	2021-05-23 09:46:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:46:08.852+03	2021-05-23 09:46:08.858+03	
ff7cf656-538d-0cdc-322c-c2a4654ae72a	2021-05-23 09:46:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:46:28.853+03	2021-05-23 09:46:28.858+03	
37c4339e-883b-4d5d-bbf1-4441c7adef0f	2021-05-23 09:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:46:49.853+03	2021-05-23 09:46:49.86+03	
cc604ff8-2bb4-4ef4-2e98-37368b9c1915	2021-05-23 09:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:47:09.853+03	2021-05-23 09:47:09.86+03	
7ccfef3c-563e-6716-f835-0188b7e11eb1	2021-05-23 09:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:47:30.853+03	2021-05-23 09:47:30.862+03	
5c9455e9-8d32-c20a-16cc-813582f9c22b	2021-05-23 09:47:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:47:51.853+03	2021-05-23 09:47:51.859+03	
6ca9344b-2717-1824-15a5-3a79fac9042e	2021-05-23 09:48:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:48:11.853+03	2021-05-23 09:48:11.859+03	
f4afd90a-8f07-9168-dbbe-a4f7df5c382a	2021-05-23 09:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:48:32.853+03	2021-05-23 09:48:32.865+03	
a62deea9-78c2-89e1-cbd9-af3269ea0263	2021-05-23 09:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:48:52.853+03	2021-05-23 09:48:52.86+03	
6f6f0e4f-c134-36aa-f288-244fc7362485	2021-05-23 09:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:49:12.853+03	2021-05-23 09:49:12.86+03	
4b99f963-5535-2607-968c-691ecb4be154	2021-05-23 09:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:49:32.853+03	2021-05-23 09:49:32.859+03	
db99a737-7a97-df4b-b15d-1fdc0894eca9	2021-05-23 09:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:49:53.852+03	2021-05-23 09:49:53.859+03	
25bb3904-5c8b-5e3a-5411-5e5d3250380f	2021-05-23 09:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:50:03.852+03	2021-05-23 09:50:03.859+03	
0fee48fd-0185-1d09-ab17-0bec3b5be2bf	2021-05-23 09:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:50:23.853+03	2021-05-23 09:50:23.86+03	
af1a1079-0f4a-f2f7-2a44-015efd940304	2021-05-23 09:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:50:44.853+03	2021-05-23 09:50:44.876+03	
04c9e049-3c47-b3f0-8722-e6266c2ac409	2021-05-23 09:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:51:04.853+03	2021-05-23 09:51:04.859+03	
f6bb37e6-1cf3-2995-c28b-d584f56298a6	2021-05-23 09:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:51:25.852+03	2021-05-23 09:51:25.868+03	
c2bd8362-60a5-eb35-7b3d-2e1065077d30	2021-05-23 09:51:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:51:46.852+03	2021-05-23 09:51:46.871+03	
861525ef-a233-36fe-1fbe-98ee11498dc0	2021-05-23 09:52:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:52:06.852+03	2021-05-23 09:52:06.859+03	
4d050174-93e4-3751-f64b-b227ccfb3674	2021-05-23 09:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:52:26.852+03	2021-05-23 09:52:26.86+03	
54c43aca-b2f7-2d11-a965-012c20504cd8	2021-05-23 09:52:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:52:46.854+03	2021-05-23 09:52:46.861+03	
4e30adca-6d01-632d-ccbb-5ab53c12ee72	2021-05-23 09:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:53:07.852+03	2021-05-23 09:53:07.872+03	
029b9835-591c-b775-a7c3-cc9c4889a082	2021-05-23 09:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:53:28.852+03	2021-05-23 09:53:28.859+03	
1964384d-58ed-9c91-7040-0d856061a574	2021-05-23 09:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:53:48.852+03	2021-05-23 09:53:48.871+03	
3941b1d4-2b4d-6084-1e0b-d60e279e5fe9	2021-05-23 09:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:54:08.853+03	2021-05-23 09:54:08.86+03	
ce9bc8de-070a-6c95-444e-2d129e5b8aa9	2021-05-23 09:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:54:28.853+03	2021-05-23 09:54:28.861+03	
edea2e17-b19d-bdd9-5a78-86214e2e56c9	2021-05-23 09:54:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:54:49.852+03	2021-05-23 09:54:49.859+03	
19f08cbb-f2eb-8452-7008-bdf67b7c1271	2021-05-23 09:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:55:10.852+03	2021-05-23 09:55:10.86+03	
0da0f393-6c83-86a8-0220-9140f3b40b9b	2021-05-23 09:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:55:30.853+03	2021-05-23 09:55:30.861+03	
c2bc30b3-e056-984d-d036-c469ca830686	2021-05-23 09:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:55:50.853+03	2021-05-23 09:55:50.86+03	
0ab4079b-94e7-d9fd-604b-d8d7bf990f06	2021-05-23 09:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:56:11.854+03	2021-05-23 09:56:11.863+03	
b7063a65-7c8e-779e-5529-58c46ceda3c2	2021-05-23 09:56:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:56:31.854+03	2021-05-23 09:56:31.86+03	
8d431dbe-645f-65c2-c55b-4b229e9909d0	2021-05-23 09:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:56:52.853+03	2021-05-23 09:56:52.86+03	
cfd2a566-97cf-68fc-f5a5-f7a2cc281a9e	2021-05-23 09:57:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:57:12.853+03	2021-05-23 09:57:12.86+03	
161be953-66f9-e041-0aff-5dde11f53181	2021-05-23 09:57:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:57:32.853+03	2021-05-23 09:57:32.859+03	
55e01eea-2859-af27-3f00-280dcdaba8d6	2021-05-23 09:57:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:57:52.853+03	2021-05-23 09:57:52.86+03	
0b1999da-5a91-3420-da1f-fbef420988dd	2021-05-23 09:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:58:13.852+03	2021-05-23 09:58:13.859+03	
e21c3418-57cd-4c8f-aa24-3cf49108ac0b	2021-05-23 09:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:58:33.852+03	2021-05-23 09:58:33.858+03	
45d1aeb8-05ee-8e14-25da-9c6e84fdd954	2021-05-23 09:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:58:53.852+03	2021-05-23 09:58:53.859+03	
7e9acef7-8f7a-a30b-5e40-b267a4a2d10f	2021-05-23 09:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:59:13.853+03	2021-05-23 09:59:13.859+03	
15e70913-d852-0b3a-5ea9-51a8e3257373	2021-05-23 09:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:59:34.852+03	2021-05-23 09:59:34.86+03	
488f4e23-ea93-3187-c387-cf8f5eba56b0	2021-05-23 09:59:54.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 09:59:54.853+03	2021-05-23 09:59:54.861+03	
4a10162d-7733-0d06-b9ea-501438927b0e	2021-05-23 10:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 10:00:00.853+03	2021-05-23 10:00:00.863+03	ERROR
8c2c4b28-881f-850b-d153-42770c0d3bb3	2021-05-23 10:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:00:15.853+03	2021-05-23 10:00:15.863+03	
c7bb5279-d03e-beb8-496c-4be99a8af01e	2021-05-23 10:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:00:35.853+03	2021-05-23 10:00:35.877+03	
f502a10c-c917-224c-5fae-95cd17802197	2021-05-23 10:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:00:55.853+03	2021-05-23 10:00:55.859+03	
dc8777fc-03ed-63d5-d921-d597701935a9	2021-05-23 10:01:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:01:16.853+03	2021-05-23 10:01:16.86+03	
2b6915e8-22ff-eeef-5f19-87178d1b161f	2021-05-23 10:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:01:38.852+03	2021-05-23 10:01:38.859+03	
4e63e2e6-d7d2-0bcf-a3d2-efc21f797e21	2021-05-23 10:01:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:01:58.852+03	2021-05-23 10:01:58.859+03	
db58df60-110b-daa0-f0c6-5308f8021f23	2021-05-23 10:02:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:02:18.852+03	2021-05-23 10:02:18.859+03	
6061c9de-246e-cc4b-a872-c60130930379	2021-05-23 10:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:02:38.853+03	2021-05-23 10:02:38.859+03	
7bd380b7-2e28-448b-7449-a2fd4c27aa82	2021-05-23 10:02:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:02:59.852+03	2021-05-23 10:02:59.859+03	
d5907588-da01-5bdb-7001-9ecff1dee11d	2021-05-23 10:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:03:19.852+03	2021-05-23 10:03:19.859+03	
af683f71-402b-bc79-4eff-98658a276eb1	2021-05-23 10:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:03:39.852+03	2021-05-23 10:03:40.098+03	
eaf2935f-bd91-f1d0-f8a1-a5dc5bc89f47	2021-05-23 10:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:03:59.852+03	2021-05-23 10:03:59.859+03	
500d2863-154b-4799-cd0e-d9bdd256b10a	2021-05-23 10:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:04:19.852+03	2021-05-23 10:04:19.86+03	
b595a6f9-9229-6a29-ebc4-b674b394a219	2021-05-23 10:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:04:39.853+03	2021-05-23 10:04:39.869+03	
f2321fb5-05ed-94e6-b141-021534db160e	2021-05-23 10:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:04:59.853+03	2021-05-23 10:04:59.861+03	
a0903c2d-4f3b-826d-a9a4-209c1e05f1ac	2021-05-23 10:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:05:19.853+03	2021-05-23 10:05:19.936+03	
c6e6b8b9-722e-b659-4c7f-5763b88638f7	2021-05-23 10:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:05:39.853+03	2021-05-23 10:05:39.865+03	
c51818cb-89e9-1a66-a1e5-e9baea5f8c23	2021-05-23 10:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:06:00.853+03	2021-05-23 10:06:00.86+03	
9a299516-e4b0-95e1-ad68-a979394d9a0f	2021-05-23 10:06:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:06:21.852+03	2021-05-23 10:06:21.861+03	
ccad3ca1-61b8-c188-9c14-059df8205b7f	2021-05-23 10:06:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:06:41.853+03	2021-05-23 10:06:41.859+03	
feb682e8-2806-6125-f917-7be08aed177f	2021-05-23 10:07:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:07:02.852+03	2021-05-23 10:07:02.859+03	
2a1fac4f-11ca-19cf-139a-f5f113ce7e6b	2021-05-23 10:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:07:22.852+03	2021-05-23 10:07:22.858+03	
26a86e0e-be75-e530-efa6-fb8ffb03b506	2021-05-23 10:07:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:07:43.852+03	2021-05-23 10:07:43.868+03	
be5efab6-726f-90be-b5a2-c1d9c0f3aa96	2021-05-23 10:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:08:03.853+03	2021-05-23 10:08:03.861+03	
4d1483d4-9740-3336-1a8d-cdc385bc3555	2021-05-23 10:08:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:08:24.853+03	2021-05-23 10:08:24.859+03	
a3100de5-f543-bc28-733e-af0f2c524feb	2021-05-23 10:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:08:45.852+03	2021-05-23 10:08:45.86+03	
86aba011-819b-14a6-88b7-8d0cc9af8987	2021-05-23 10:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:09:05.853+03	2021-05-23 10:09:05.86+03	
7027ae33-90aa-78a8-28ec-82a200e003c8	2021-05-23 10:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:09:25.853+03	2021-05-23 10:09:25.859+03	
8e47d436-a1b1-b458-ee86-8f3a6fe4b425	2021-05-23 10:09:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:09:47.853+03	2021-05-23 10:09:47.859+03	
7d19d851-f855-70c2-b0c3-6697e522bea5	2021-05-23 10:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 10:10:00.853+03	2021-05-23 10:10:00.858+03	ERROR
80c633e8-4781-c752-7ea1-6bd91ae61974	2021-05-23 10:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:10:18.853+03	2021-05-23 10:10:18.86+03	
1d708779-e338-957f-35a9-77d773a8123a	2021-05-23 10:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:10:38.853+03	2021-05-23 10:10:38.859+03	
54faecaf-871e-d886-20e9-5582143039e0	2021-05-23 10:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:10:58.853+03	2021-05-23 10:10:58.859+03	
a91c55a2-753d-ae7d-d8b5-6eb429586973	2021-05-23 10:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:11:18.853+03	2021-05-23 10:11:18.86+03	
399dfd6e-b96c-23b7-5f88-e60c390551b3	2021-05-23 10:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:11:39.852+03	2021-05-23 10:11:39.858+03	
6ce65960-34bf-a111-6beb-ba309e773b86	2021-05-23 10:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:11:59.853+03	2021-05-23 10:11:59.859+03	
d2e2520f-9a01-ed8b-b2e1-6b7b53360dfe	2021-05-23 10:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:12:20.853+03	2021-05-23 10:12:20.86+03	
e97a7b6d-6f17-4388-c83a-fb25e7f758a7	2021-05-23 10:12:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:12:40.853+03	2021-05-23 10:12:40.859+03	
ae2d4308-c48a-b8c3-b024-8c39a332cbbc	2021-05-23 10:13:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:13:00.853+03	2021-05-23 10:13:00.861+03	
4c829c5f-02ac-7c8e-1c80-df29d8885082	2021-05-23 10:13:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:13:21.852+03	2021-05-23 10:13:22.224+03	
8773033d-62a2-b9f8-c4cc-d97c4c5cfd29	2021-05-23 10:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:13:41.853+03	2021-05-23 10:13:41.86+03	
e76c3c32-a061-71b3-e254-6feb16a6f4ae	2021-05-23 10:14:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:14:01.854+03	2021-05-23 10:14:01.86+03	
ae89d017-aa19-f31a-74dc-2dcfedfe1eee	2021-05-23 10:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:14:22.852+03	2021-05-23 10:14:22.86+03	
4cd59f55-2154-9b3f-1723-62a643d07fde	2021-05-23 10:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:14:42.852+03	2021-05-23 10:14:42.858+03	
fe8ce125-bab9-956e-2a23-f2fbba5c4716	2021-05-23 10:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:15:02.852+03	2021-05-23 10:15:02.858+03	
3dfdc1a2-5c0f-e887-31ad-af6b9e4262ef	2021-05-23 10:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:15:22.852+03	2021-05-23 10:15:22.859+03	
01a91fb3-3650-5068-9aa5-25599489242a	2021-05-23 10:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:15:43.853+03	2021-05-23 10:15:43.86+03	
5e9e8bb6-4444-7571-7f2b-2e952c2b0874	2021-05-23 10:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:16:03.853+03	2021-05-23 10:16:03.867+03	
8e92b5d8-6bc1-a968-c9c1-dbce642df172	2021-05-23 10:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:16:23.853+03	2021-05-23 10:16:23.859+03	
b3777684-e376-9b34-0bdb-2d15737ebcc0	2021-05-23 10:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:16:44.853+03	2021-05-23 10:16:44.859+03	
ac0b8f9d-5fe1-c745-1acd-326a53777289	2021-05-23 10:17:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:17:06.853+03	2021-05-23 10:17:06.86+03	
7d7bde01-5e59-2916-452d-22de41fe3b11	2021-05-23 10:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:17:27.853+03	2021-05-23 10:17:27.859+03	
5d5968ec-bf2d-2fc2-5590-db8b4552606d	2021-05-23 10:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:17:48.853+03	2021-05-23 10:17:48.861+03	
1e088620-6462-7f6c-273e-051a53951b0a	2021-05-23 10:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:18:10.852+03	2021-05-23 10:18:10.859+03	
1e7d85a4-1cf9-2474-cf6d-f105300c4637	2021-05-23 10:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:18:30.853+03	2021-05-23 10:18:30.86+03	
7040a845-524f-b303-5874-14632f2ba9e4	2021-05-23 10:18:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:18:51.853+03	2021-05-23 10:18:51.859+03	
437d4794-47ef-5053-e8ca-8612fb0a2d8e	2021-05-23 10:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:19:12.852+03	2021-05-23 10:19:12.858+03	
d5378c7f-5476-40ce-f386-74f89c80f78e	2021-05-23 10:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:19:32.853+03	2021-05-23 10:19:32.859+03	
abab5eda-908e-83e2-28bd-9960a6734fb0	2021-05-23 10:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:19:54.852+03	2021-05-23 10:19:54.859+03	
8486656d-b24d-c8b9-5d76-b332eb283f4a	2021-05-23 10:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:20:04.852+03	2021-05-23 10:20:04.869+03	
bb6326e2-05fb-c75e-66b5-41fe19dcbc5b	2021-05-23 10:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:20:24.853+03	2021-05-23 10:20:24.86+03	
1aa6b341-bdb1-0042-8618-3a364331e6d9	2021-05-23 10:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:20:46.852+03	2021-05-23 10:20:46.86+03	
36a45f48-2f71-771e-a56e-0d3146d5d6bc	2021-05-23 10:00:04.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:00:04.854+03	2021-05-23 10:00:04.875+03	
ccf33412-8ac6-f342-bebb-49f01578edb4	2021-05-23 10:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:00:25.853+03	2021-05-23 10:00:25.865+03	
0c4ca962-88d4-46e5-e00f-b5cd89258275	2021-05-23 10:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:00:45.853+03	2021-05-23 10:00:45.859+03	
9c8d405d-223d-0978-103c-81be67e103c1	2021-05-23 10:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:01:05.853+03	2021-05-23 10:01:05.859+03	
410b8e36-2398-7945-e299-5b3930787f84	2021-05-23 10:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:01:27.853+03	2021-05-23 10:01:27.859+03	
8a3f651e-1a29-b01b-8f7b-42bdb4132a51	2021-05-23 10:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:01:48.852+03	2021-05-23 10:01:48.859+03	
45cdecef-49a4-a4cd-d58a-a5b3c81ac5a0	2021-05-23 10:02:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:02:08.852+03	2021-05-23 10:02:08.861+03	
cdd226f0-ced0-e670-2aef-f860ff1c0afe	2021-05-23 10:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:02:28.852+03	2021-05-23 10:02:28.859+03	
7de29de8-8593-d5cd-4de4-d7a7c96b3da4	2021-05-23 10:02:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:02:49.852+03	2021-05-23 10:02:49.86+03	
a339f0d1-ee2c-7dd2-4d2f-1b83e93c5f2e	2021-05-23 10:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:03:09.852+03	2021-05-23 10:03:09.86+03	
290b2c4e-f705-85ba-9bc9-e15426722442	2021-05-23 10:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:03:29.852+03	2021-05-23 10:03:29.859+03	
c733d1fb-91f2-d171-bc13-786df07b109d	2021-05-23 10:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:03:49.852+03	2021-05-23 10:03:49.868+03	
e95873cf-3862-fdf2-9368-17e383dd12b8	2021-05-23 10:04:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:04:09.852+03	2021-05-23 10:04:09.862+03	
696bf285-5b5b-9c5c-4486-793b0e2e6fa1	2021-05-23 10:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:04:29.852+03	2021-05-23 10:04:29.871+03	
cfc952bb-f0cf-eab2-098f-4cfae8e85b5d	2021-05-23 10:04:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:04:49.853+03	2021-05-23 10:04:49.861+03	
8033d43c-6c18-8ccc-a3a9-d0f9861ea385	2021-05-23 10:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:05:09.853+03	2021-05-23 10:05:09.86+03	
a936678c-4346-d42f-06d9-4f70c06af528	2021-05-23 10:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:05:29.853+03	2021-05-23 10:05:29.859+03	
13f0bf99-7fc9-5bfa-dd76-aff0546c6195	2021-05-23 10:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:05:49.853+03	2021-05-23 10:05:49.86+03	
938b2e80-c919-2a16-9013-0d5659d54f28	2021-05-23 10:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:06:10.853+03	2021-05-23 10:06:10.867+03	
16bf6157-e33f-1171-339d-4807d84f1232	2021-05-23 10:06:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:06:31.853+03	2021-05-23 10:06:31.859+03	
34b10ecc-d8c7-a287-b85a-0948b55ef5ef	2021-05-23 10:06:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:06:52.852+03	2021-05-23 10:06:52.859+03	
d700d491-820a-87d3-df25-11e9538a4b39	2021-05-23 10:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:07:12.852+03	2021-05-23 10:07:12.859+03	
3f382863-51a2-b7b7-899a-e0026d6bc48e	2021-05-23 10:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:07:32.853+03	2021-05-23 10:07:32.859+03	
98312d60-90d1-521c-ac20-4f56f7ceefa5	2021-05-23 10:07:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:07:53.853+03	2021-05-23 10:07:53.862+03	
f2f98de3-bc88-649d-d0a5-da70764cba31	2021-05-23 10:08:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:08:14.853+03	2021-05-23 10:08:14.86+03	
143372d0-65f1-3d55-165a-267aa5850e26	2021-05-23 10:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:08:35.852+03	2021-05-23 10:08:35.859+03	
cde08ec7-4d24-5ded-ce91-b6ea04426da2	2021-05-23 10:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:08:55.852+03	2021-05-23 10:08:55.86+03	
b4cbbd3b-d012-9d30-08aa-02e45e6ea453	2021-05-23 10:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:09:15.853+03	2021-05-23 10:09:15.86+03	
1d20c48c-5be6-28a8-129c-75c2e1ef9d8e	2021-05-23 10:09:36.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:09:36.854+03	2021-05-23 10:09:36.861+03	
4e51cffa-b3cd-fbb0-63ac-e68b65fbb16b	2021-05-23 10:09:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:09:57.853+03	2021-05-23 10:09:57.859+03	
9f1d2bb1-c226-e9c5-2aca-902919ac1bc3	2021-05-23 10:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:10:07.853+03	2021-05-23 10:10:07.859+03	
e832f08d-0c7c-6b7a-fa02-05208259faef	2021-05-23 10:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:10:28.853+03	2021-05-23 10:10:28.86+03	
24269a18-9d4c-1e44-347b-6bf79929e62a	2021-05-23 10:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:10:48.853+03	2021-05-23 10:10:48.86+03	
6364f98f-a305-0c55-125e-9396ec186b2d	2021-05-23 10:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:11:08.853+03	2021-05-23 10:11:08.861+03	
15f4a27f-baff-7d28-f972-e22b9c944473	2021-05-23 10:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:11:28.853+03	2021-05-23 10:11:28.859+03	
5c41dffb-26e6-65a5-0e7d-365c53291f89	2021-05-23 10:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:11:49.852+03	2021-05-23 10:11:49.86+03	
4e5f2356-d533-9e54-b7a1-ceec0722af4f	2021-05-23 10:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:12:09.853+03	2021-05-23 10:12:09.859+03	
ff14f32a-1b1b-d897-4e18-c3b33db86e16	2021-05-23 10:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:12:30.853+03	2021-05-23 10:12:30.86+03	
3085be6b-e8b7-5a6e-045a-4ac014d5751a	2021-05-23 10:12:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:12:50.853+03	2021-05-23 10:12:50.86+03	
4f2a7725-b43d-ef04-e3d7-8004e7f842d5	2021-05-23 10:13:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:13:10.853+03	2021-05-23 10:13:10.859+03	
b85bae65-d986-c014-219d-6d10dbed1b43	2021-05-23 10:13:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:13:31.852+03	2021-05-23 10:13:31.87+03	
44e6042f-20b9-8f66-a8c1-ce89f3d39214	2021-05-23 10:13:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:13:51.853+03	2021-05-23 10:13:51.86+03	
66b037be-32cc-c975-e807-2c48da31cdaf	2021-05-23 10:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:14:12.852+03	2021-05-23 10:14:12.859+03	
86b751b3-cd3d-6be4-205e-04f462481548	2021-05-23 10:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:14:32.852+03	2021-05-23 10:14:32.86+03	
4d78ceb0-e7aa-4404-e4ca-59b3c915350c	2021-05-23 10:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:14:52.852+03	2021-05-23 10:14:52.859+03	
4aa78ea3-3ff6-1acf-a906-ee9887a30e35	2021-05-23 10:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:15:12.852+03	2021-05-23 10:15:12.86+03	
dccd4898-acf5-9b20-c8cc-5daee7942e4a	2021-05-23 10:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:15:32.853+03	2021-05-23 10:15:32.863+03	
0cff7b80-f1fd-844a-c70d-80abcf28035b	2021-05-23 10:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:15:53.853+03	2021-05-23 10:15:53.859+03	
c8632f53-c5f2-0f79-7ae6-f7db6c828d8a	2021-05-23 10:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:16:13.853+03	2021-05-23 10:16:13.859+03	
346b70de-0ac0-4490-65c2-57fc77aab8fd	2021-05-23 10:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:16:34.852+03	2021-05-23 10:16:34.859+03	
332ff2fb-6285-890b-52ad-b1150bbd0ed7	2021-05-23 10:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:16:55.853+03	2021-05-23 10:16:55.86+03	
c5af9c04-a0ba-6844-6954-af5130f7c3c3	2021-05-23 10:17:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:17:16.853+03	2021-05-23 10:17:16.862+03	
f785bc0f-9cd5-e542-5dd0-fad7604e223a	2021-05-23 10:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:17:38.852+03	2021-05-23 10:17:38.859+03	
c08b7f8f-4dd3-82f1-4171-4223ec8e0943	2021-05-23 10:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:17:59.853+03	2021-05-23 10:17:59.86+03	
89c4a8f5-fc04-88a3-d299-72f4f4bc0bf4	2021-05-23 10:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:18:20.852+03	2021-05-23 10:18:20.86+03	
59672c1f-c072-ac01-4515-f60eed0752fc	2021-05-23 10:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:18:41.852+03	2021-05-23 10:18:41.859+03	
9d527bda-0e39-bca2-777f-ded89a8c7342	2021-05-23 10:19:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:19:01.853+03	2021-05-23 10:19:01.86+03	
ec0ba137-8749-e775-1860-55e7146f1d8b	2021-05-23 10:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:19:22.853+03	2021-05-23 10:19:22.86+03	
6199f649-4d12-98b2-612f-4108a5b4f7b1	2021-05-23 10:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:19:43.853+03	2021-05-23 10:19:43.859+03	
22a65959-7e41-09f4-3497-6c40503033d1	2021-05-23 10:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 10:20:00.852+03	2021-05-23 10:20:00.858+03	ERROR
c6d657ea-ec55-de24-2c07-9e86a42089ba	2021-05-23 10:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:20:14.853+03	2021-05-23 10:20:14.862+03	
e3dd2931-4dab-a428-77d7-1a7e696e8c36	2021-05-23 10:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:20:35.853+03	2021-05-23 10:20:35.869+03	
a3e624d8-164e-8bc7-ec7e-875f01ea583c	2021-05-23 10:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:20:56.852+03	2021-05-23 10:20:56.859+03	
b8320b15-19c3-e239-f96b-183c0ea2e5c0	2021-05-23 10:21:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:21:06.852+03	2021-05-23 10:21:06.86+03	
19221e87-d75f-913e-545c-3fe030d77ea7	2021-05-23 10:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:21:26.852+03	2021-05-23 10:21:26.859+03	
e94089b5-8814-ab4d-b30d-993c9168f0b4	2021-05-23 10:21:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:21:47.853+03	2021-05-23 10:21:47.859+03	
585a2c73-33e9-b640-a796-8411cc651017	2021-05-23 10:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:22:08.852+03	2021-05-23 10:22:08.865+03	
e30bb8c1-39ee-0e88-ac4c-8fc9a990a07d	2021-05-23 10:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:22:28.852+03	2021-05-23 10:22:28.859+03	
14f0405d-fcf2-be0c-e4d8-c16aea93fbdb	2021-05-23 10:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:22:48.852+03	2021-05-23 10:22:48.86+03	
f2bb580b-393d-b823-a14e-88a78258d37b	2021-05-23 10:23:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:23:09.852+03	2021-05-23 10:23:09.86+03	
5458e83b-7727-e577-5a4c-e2875b93cb34	2021-05-23 10:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:23:29.852+03	2021-05-23 10:23:29.867+03	
656ae4d7-b53c-ccea-44a3-da1d5765d2ec	2021-05-23 10:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:23:49.853+03	2021-05-23 10:23:49.861+03	
539fe1b6-f6ea-699a-fd38-6d2614ad56c1	2021-05-23 10:24:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:24:11.853+03	2021-05-23 10:24:11.868+03	
2789c6d3-5653-c3e4-0cba-922dd42e64e9	2021-05-23 10:24:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:24:31.854+03	2021-05-23 10:24:31.86+03	
4f4379c1-1883-81af-d2ce-5a076b874ceb	2021-05-23 10:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:24:52.852+03	2021-05-23 10:24:52.86+03	
98850c1c-7f7a-9318-c2b0-171480ec290c	2021-05-23 10:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:25:12.853+03	2021-05-23 10:25:12.859+03	
be11d5d7-fecd-d57d-6cbe-b79e38fd749f	2021-05-23 10:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:25:33.852+03	2021-05-23 10:25:33.859+03	
3e93e572-cd5d-f1ba-7d03-edc1e3fd2d17	2021-05-23 10:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:25:53.853+03	2021-05-23 10:25:53.86+03	
ff87da23-132a-39a3-089e-1523f5e59563	2021-05-23 10:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:26:13.853+03	2021-05-23 10:26:13.869+03	
8adf7dfa-f6ca-8302-5f87-9cea12b7f3aa	2021-05-23 10:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:26:33.853+03	2021-05-23 10:26:33.859+03	
b91efeea-d7a5-8c4b-4b25-72ebe22d72a2	2021-05-23 10:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:26:53.853+03	2021-05-23 10:26:53.86+03	
5ffe5524-9a69-000b-047c-0dbb7cb4c55d	2021-05-23 10:27:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:27:14.853+03	2021-05-23 10:27:14.859+03	
6f4dbfae-0bd0-e8c8-ca2d-f73f8400bbbb	2021-05-23 10:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:27:35.853+03	2021-05-23 10:27:35.866+03	
d47ed2f1-9732-d3ed-bb20-cf77c1e2a897	2021-05-23 10:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:27:55.853+03	2021-05-23 10:27:55.86+03	
8c7eb3fe-6fb0-d149-b101-6af9b3904353	2021-05-23 10:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:28:15.853+03	2021-05-23 10:28:15.865+03	
b921f8d5-6e84-1d08-5968-a525f8d8c599	2021-05-23 10:28:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:28:36.852+03	2021-05-23 10:28:36.859+03	
e9d8d568-60cc-9f9a-8450-24672d7db400	2021-05-23 10:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:28:56.852+03	2021-05-23 10:28:56.858+03	
d8769887-c368-f725-6cd8-0785d275d5e7	2021-05-23 10:29:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:29:16.853+03	2021-05-23 10:29:16.861+03	
51c77ed0-d3c2-2c5a-f0c1-132f0d95d4c6	2021-05-23 10:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:29:37.853+03	2021-05-23 10:29:37.859+03	
e7b5c24a-94af-191a-b221-8d8e4454e700	2021-05-23 10:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:29:58.853+03	2021-05-23 10:29:58.86+03	
5bea5b06-5c6d-6d95-5561-b7cc96828e5b	2021-05-23 10:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:30:09.852+03	2021-05-23 10:30:09.859+03	
d732ec51-7016-3fcc-1d49-fd3dc9aafcc9	2021-05-23 10:30:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:30:29.853+03	2021-05-23 10:30:29.86+03	
29a2a716-12d9-2d91-5162-273c5d8bc17f	2021-05-23 10:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:30:50.853+03	2021-05-23 10:30:50.87+03	
fde5e275-6483-91b5-59ee-63f95e0ffdd1	2021-05-23 10:31:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:31:11.853+03	2021-05-23 10:31:11.863+03	
5fb9e274-efe2-aa0a-43b9-46828f445a00	2021-05-23 10:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:31:32.852+03	2021-05-23 10:31:32.859+03	
3a4c0d29-0094-7a73-6b18-7795a02fcc15	2021-05-23 10:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:31:52.853+03	2021-05-23 10:31:52.859+03	
422d366c-44d7-e750-4511-d1260eeef6ee	2021-05-23 10:32:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:32:12.853+03	2021-05-23 10:32:12.86+03	
1955ffff-adb0-3f45-1fd7-fe9a09f9710d	2021-05-23 10:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:32:33.853+03	2021-05-23 10:32:33.861+03	
2165c513-dd4a-b915-86ed-befed7913e5d	2021-05-23 10:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:32:53.853+03	2021-05-23 10:32:53.859+03	
437898e9-862c-f6bd-9cdb-998a38f455c1	2021-05-23 10:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:33:14.852+03	2021-05-23 10:33:14.859+03	
40243821-533b-353a-696b-f7ac128bf578	2021-05-23 10:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:33:34.852+03	2021-05-23 10:33:34.863+03	
b1fe2eac-f103-dbb7-130f-1897896921fd	2021-05-23 10:33:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:33:54.853+03	2021-05-23 10:33:54.86+03	
fca4cbc0-2992-ffda-fac4-16e5d51cc89c	2021-05-23 10:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:34:14.853+03	2021-05-23 10:34:14.86+03	
a57944ee-e1a8-d038-1253-a6901e524b38	2021-05-23 10:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:34:35.853+03	2021-05-23 10:34:35.871+03	
3061adf0-7402-40de-3c5b-dfcf94d14270	2021-05-23 10:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:34:55.853+03	2021-05-23 10:34:55.86+03	
82f49003-1085-3552-62a5-e9a0c278c5da	2021-05-23 10:35:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:35:16.852+03	2021-05-23 10:35:16.871+03	
db8c6829-fb83-81f8-7c82-5e43f72a9f80	2021-05-23 10:35:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:35:36.853+03	2021-05-23 10:35:36.865+03	
fba8acdf-eaf6-d237-3dc4-539ddbd1f79d	2021-05-23 10:35:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:35:57.853+03	2021-05-23 10:35:57.86+03	
d9e7085f-89cd-5871-3b57-944e487351d0	2021-05-23 10:36:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:36:17.853+03	2021-05-23 10:36:17.882+03	
86e6280c-beb0-ed33-f168-0a2069c152bd	2021-05-23 10:36:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:36:38.853+03	2021-05-23 10:36:38.86+03	
1fa0222a-a6bb-0671-0857-1a43f63cb1df	2021-05-23 10:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:36:59.852+03	2021-05-23 10:36:59.859+03	
221b887b-d259-19cd-6e55-e6b463a520b6	2021-05-23 10:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:37:19.853+03	2021-05-23 10:37:19.859+03	
7e33eccd-bcb9-fa5e-4f39-99251a9729f7	2021-05-23 10:37:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:37:39.853+03	2021-05-23 10:37:39.859+03	
776a8400-32b2-2162-fa1d-06648330d0f2	2021-05-23 10:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:37:59.853+03	2021-05-23 10:37:59.861+03	
f1b461c3-3930-b6fa-0e6b-d81ccff51b83	2021-05-23 10:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:38:20.853+03	2021-05-23 10:38:20.861+03	
c973d9ef-cf93-ef58-4523-8e7af6a0c4f0	2021-05-23 10:38:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:38:41.852+03	2021-05-23 10:38:41.859+03	
1479cab5-3db9-57f2-c8d0-861d5a15bb63	2021-05-23 10:39:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:39:01.853+03	2021-05-23 10:39:01.89+03	
1d35aa18-84f0-6380-a1ba-fbd0670f726e	2021-05-23 10:39:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:39:11.853+03	2021-05-23 10:39:11.861+03	
ee8eb75d-f724-22f0-b9c2-e558ec62d59d	2021-05-23 10:39:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:39:31.853+03	2021-05-23 10:39:31.86+03	
49f04d9f-0a36-abb9-8e02-559ab2750e21	2021-05-23 10:39:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:39:51.854+03	2021-05-23 10:39:51.861+03	
90dabc92-0e53-0c50-573f-57c1c614c80a	2021-05-23 10:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:40:02.853+03	2021-05-23 10:40:02.86+03	
6661ffa5-d65c-c951-1329-4315b50aeaa2	2021-05-23 10:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:40:23.853+03	2021-05-23 10:40:23.874+03	
a4869cc8-2ab4-3501-9ea0-e9f75a3c528b	2021-05-23 10:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:40:43.853+03	2021-05-23 10:40:43.863+03	
028b98ad-ac3f-f5f7-4b4b-a1211dcdf823	2021-05-23 10:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:41:03.853+03	2021-05-23 10:41:03.86+03	
9efaf01d-791b-02ee-14a2-18079025ed88	2021-05-23 10:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:41:23.853+03	2021-05-23 10:41:23.86+03	
3f245840-2873-e353-a9c8-24629248d94c	2021-05-23 10:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:41:43.853+03	2021-05-23 10:41:43.863+03	
16016834-76b7-50ef-796b-4d3cfba32e85	2021-05-23 10:21:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:21:16.852+03	2021-05-23 10:21:16.879+03	
1765fd56-8a3c-1db9-513b-ed0387b06579	2021-05-23 10:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:21:36.853+03	2021-05-23 10:21:36.861+03	
16ebebb1-b0ca-7307-a951-e2f11d907ff8	2021-05-23 10:21:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:21:57.853+03	2021-05-23 10:21:57.861+03	
089b9cc2-d934-8d58-3666-99c4d5284297	2021-05-23 10:22:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:22:18.852+03	2021-05-23 10:22:18.859+03	
2cd6e89d-ca37-276c-48b3-ab95cab7975e	2021-05-23 10:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:22:38.852+03	2021-05-23 10:22:38.859+03	
2f05b113-f1f8-d9bd-eb6b-83f7c2155549	2021-05-23 10:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:22:58.853+03	2021-05-23 10:22:58.859+03	
97263617-bb69-4953-9888-15b6604e70d2	2021-05-23 10:23:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:23:19.852+03	2021-05-23 10:23:19.86+03	
f89d8650-8161-7e81-85e6-247c65fa8012	2021-05-23 10:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:23:39.853+03	2021-05-23 10:23:39.861+03	
2cf1ccbd-dbc0-bacb-c66f-9239dbedc08a	2021-05-23 10:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:24:00.853+03	2021-05-23 10:24:00.86+03	
89fbcb84-65a7-fd46-6485-175553abf3c9	2021-05-23 10:24:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:24:21.854+03	2021-05-23 10:24:21.861+03	
65c9bee7-b5ff-0228-5cc6-811a4f93356b	2021-05-23 10:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:24:42.852+03	2021-05-23 10:24:42.86+03	
c32de174-5b89-9fba-20b9-a36c380e7bb9	2021-05-23 10:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:25:02.852+03	2021-05-23 10:25:02.86+03	
7af4d4eb-eefe-b208-c629-722c486ec992	2021-05-23 10:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:25:23.852+03	2021-05-23 10:25:23.858+03	
64988a26-2cc8-07ae-d9c5-531c0692fecd	2021-05-23 10:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:25:43.852+03	2021-05-23 10:25:43.858+03	
0b8bcee0-10d2-563c-9dce-151327e79b24	2021-05-23 10:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:26:03.853+03	2021-05-23 10:26:03.861+03	
6a8d7710-82f5-d7fc-2d13-ec8d2092c14a	2021-05-23 10:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:26:23.853+03	2021-05-23 10:26:23.864+03	
fab933a1-46bb-e18f-5378-bdcf2a726575	2021-05-23 10:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:26:43.853+03	2021-05-23 10:26:43.859+03	
3cae19a5-b171-9f46-f30a-1ff45e4cc359	2021-05-23 10:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:27:03.853+03	2021-05-23 10:27:03.859+03	
8fe78976-c319-f345-8532-dc2e646603af	2021-05-23 10:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:27:24.853+03	2021-05-23 10:27:24.86+03	
1f086fa8-5ef5-d277-0c61-a23874379c25	2021-05-23 10:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:27:45.853+03	2021-05-23 10:27:45.86+03	
ed7df25e-cba1-5678-08ba-b2eda2f6176a	2021-05-23 10:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:28:05.853+03	2021-05-23 10:28:05.861+03	
de53c0b5-e235-47ba-fe8d-d2a55f8fda20	2021-05-23 10:28:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:28:26.852+03	2021-05-23 10:28:26.859+03	
1685daa6-547c-f46b-b4e2-41dfa3e26c7e	2021-05-23 10:28:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:28:46.852+03	2021-05-23 10:28:46.859+03	
e7098135-db05-14c6-3ccb-0aece41a1b5a	2021-05-23 10:29:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:29:06.852+03	2021-05-23 10:29:06.859+03	
1372fcf3-bc2c-1052-4abd-28ddbaf47b73	2021-05-23 10:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:29:27.853+03	2021-05-23 10:29:27.865+03	
010136a7-8d90-0387-fb0c-d97b6876d7d7	2021-05-23 10:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:29:47.853+03	2021-05-23 10:29:47.859+03	
c42b8b3c-8ca5-1d5f-c71f-a36923a4dfce	2021-05-23 10:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 10:30:00.852+03	2021-05-23 10:30:00.857+03	ERROR
2f1fcad3-72c4-3c1b-3d6a-a5b0729e6d60	2021-05-23 10:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:30:19.853+03	2021-05-23 10:30:19.859+03	
de5840fb-685c-7335-05f3-f3e6265774bd	2021-05-23 10:30:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:30:39.853+03	2021-05-23 10:30:39.865+03	
2efc8e8d-13bd-c30b-5275-0cffdcea5838	2021-05-23 10:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:31:00.853+03	2021-05-23 10:31:00.859+03	
ef4011db-d887-80fa-8918-6650c4269c73	2021-05-23 10:31:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:31:21.854+03	2021-05-23 10:31:21.861+03	
948f1052-9572-9e17-fa5e-1aee276927d5	2021-05-23 10:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:31:42.852+03	2021-05-23 10:31:42.858+03	
91b898fe-8dae-c143-c638-9ecda4203067	2021-05-23 10:32:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:32:02.853+03	2021-05-23 10:32:02.859+03	
ecada659-061b-83ef-525e-61e6ed17f8ba	2021-05-23 10:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:32:23.852+03	2021-05-23 10:32:23.86+03	
56ee5539-528b-afd9-ca61-a7cb6ec56916	2021-05-23 10:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:32:43.853+03	2021-05-23 10:32:43.862+03	
bcaa5b44-1a1e-afad-a0b2-e0e7e69b1d4a	2021-05-23 10:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:33:03.853+03	2021-05-23 10:33:03.86+03	
4d0b8faa-2d99-9769-2a15-49474d647aab	2021-05-23 10:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:33:24.852+03	2021-05-23 10:33:24.869+03	
99f17042-5a2c-79a0-b15e-5d765893cbda	2021-05-23 10:33:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:33:44.853+03	2021-05-23 10:33:44.859+03	
328c9217-b026-fc81-db48-bbc7e0d5292a	2021-05-23 10:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:34:04.853+03	2021-05-23 10:34:04.86+03	
b10979cc-e851-73a7-89a0-550fa61194d4	2021-05-23 10:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:34:24.853+03	2021-05-23 10:34:24.864+03	
59984f3b-727e-69e7-3fba-2700d9eede87	2021-05-23 10:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:34:45.853+03	2021-05-23 10:34:45.861+03	
f1eb94a7-9ca7-728c-b1a9-fc2e2e10b197	2021-05-23 10:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:35:05.853+03	2021-05-23 10:35:05.859+03	
dc98a6fd-64e3-511e-ebb5-ed31c0c89090	2021-05-23 10:35:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:35:26.852+03	2021-05-23 10:35:26.859+03	
dc07d451-8a5f-0736-7d66-d1fed90f07a6	2021-05-23 10:35:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:35:46.853+03	2021-05-23 10:35:46.866+03	
0b642ecc-6f66-f248-9106-84a2f94e83d8	2021-05-23 10:36:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:36:07.853+03	2021-05-23 10:36:07.86+03	
a3251334-ad6a-eefe-9b11-299ceca72bb1	2021-05-23 10:36:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:36:28.853+03	2021-05-23 10:36:28.86+03	
b1569c49-047c-0d55-2a3a-6f4e910628d2	2021-05-23 10:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:36:48.853+03	2021-05-23 10:36:48.859+03	
ffb7f728-9b85-c6cb-0760-d3f3f6ea2d9e	2021-05-23 10:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:37:09.852+03	2021-05-23 10:37:09.859+03	
ea325f30-cfe2-ae15-6ce0-f965a2ed159e	2021-05-23 10:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:37:29.853+03	2021-05-23 10:37:29.859+03	
bccfdd33-904a-c805-768b-fab2a6dbb80e	2021-05-23 10:37:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:37:49.853+03	2021-05-23 10:37:49.861+03	
92c839ee-5773-928d-a8c4-2b24e96f44b5	2021-05-23 10:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:38:09.853+03	2021-05-23 10:38:09.862+03	
7751338f-9238-ca7c-d651-6962f7891fa5	2021-05-23 10:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:38:30.853+03	2021-05-23 10:38:30.859+03	
e2273f2d-4826-d1c3-35ff-383ea27d2835	2021-05-23 10:38:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:38:51.852+03	2021-05-23 10:38:51.859+03	
4c886b74-2eb3-039b-a1ff-42f334d46bfe	2021-05-23 10:39:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:39:21.853+03	2021-05-23 10:39:21.86+03	
e237f6af-a0c7-2780-f9c5-00f7f59215f4	2021-05-23 10:39:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:39:41.854+03	2021-05-23 10:39:41.862+03	
c4c2a7fe-517a-6e98-f87c-20bb6ff9a622	2021-05-23 10:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 10:40:00.853+03	2021-05-23 10:40:00.858+03	ERROR
1fa2267a-9f54-cb08-3faf-964f6a95ddc9	2021-05-23 10:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:40:13.852+03	2021-05-23 10:40:13.859+03	
e8d487ab-683d-decf-4cd2-33147ad4b5b4	2021-05-23 10:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:40:33.853+03	2021-05-23 10:40:33.861+03	
2b212653-1d7b-916d-1b2d-fed995794e5b	2021-05-23 10:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:40:53.853+03	2021-05-23 10:40:53.859+03	
a10e1c38-a5b1-b2d4-e527-1aecbe27b4bb	2021-05-23 10:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:41:13.853+03	2021-05-23 10:41:13.86+03	
c5006eb4-a4f6-0722-de09-4dcd6b725fa1	2021-05-23 10:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:41:33.853+03	2021-05-23 10:41:33.859+03	
45b08f5a-c349-e767-58e4-6d0e2b835495	2021-05-23 10:41:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:41:54.853+03	2021-05-23 10:41:54.862+03	
d93ee455-2870-21c3-13ed-a4c1a4cdeb62	2021-05-23 10:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:42:14.853+03	2021-05-23 10:42:14.859+03	
eebcf17e-be4f-3008-3ef2-9a26665c7c44	2021-05-23 10:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:42:04.853+03	2021-05-23 10:42:04.86+03	
7936623d-0f4d-77b3-1932-be1add4a18d8	2021-05-23 10:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:42:24.853+03	2021-05-23 10:42:24.859+03	
a212b97a-6ac5-b5a0-54d5-e1e8d478d991	2021-05-23 10:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:42:44.853+03	2021-05-23 10:42:44.86+03	
386f114d-7e93-f6b4-9fd0-a9ff67ebf8c2	2021-05-23 10:43:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:43:06.854+03	2021-05-23 10:43:06.87+03	
35fb6407-a22b-ecfc-b1c7-1bdf4b825cd1	2021-05-23 10:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:43:27.853+03	2021-05-23 10:43:27.859+03	
5111c856-7dfe-c829-5475-a2475b6fa007	2021-05-23 10:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:43:47.853+03	2021-05-23 10:43:47.859+03	
13605c51-ceea-0922-e499-a12e77f9a470	2021-05-23 10:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:44:07.853+03	2021-05-23 10:44:07.869+03	
3fa12b73-684f-fdd8-04ea-20ee1ae5aff2	2021-05-23 10:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:44:27.853+03	2021-05-23 10:44:27.86+03	
9c15dc94-eb46-baa4-477c-a25efdf69d12	2021-05-23 10:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:44:48.853+03	2021-05-23 10:44:48.86+03	
1206dad8-7de3-5a14-d25b-8c05698418b0	2021-05-23 10:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:45:08.853+03	2021-05-23 10:45:08.86+03	
195ce0c0-8af4-1c6c-fb31-059b8c51f759	2021-05-23 10:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:45:29.853+03	2021-05-23 10:45:29.859+03	
8a784798-6f53-5895-5a58-82e2a7005de4	2021-05-23 10:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:45:49.853+03	2021-05-23 10:45:49.86+03	
5abf7644-4e34-f909-2672-38c30cfb2450	2021-05-23 10:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:46:09.853+03	2021-05-23 10:46:09.86+03	
f36e2b88-d9b0-7a93-9e72-ff5a918bd4ec	2021-05-23 10:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:46:29.853+03	2021-05-23 10:46:29.859+03	
cf6c100e-fb9c-8ebc-fad8-d1ae17083033	2021-05-23 10:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:46:49.853+03	2021-05-23 10:46:49.859+03	
6112a75e-9863-43ef-d59f-42640e1c686a	2021-05-23 10:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:47:10.853+03	2021-05-23 10:47:10.859+03	
bfb19373-227e-b1ec-b76d-6d780f3d95aa	2021-05-23 10:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:47:30.853+03	2021-05-23 10:47:30.861+03	
41e5936f-2a86-60c8-bf96-d1086c461da6	2021-05-23 10:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:47:50.853+03	2021-05-23 10:47:50.86+03	
9bd4720d-d4fc-cfff-f015-a237b5778aec	2021-05-23 10:48:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:48:11.853+03	2021-05-23 10:48:11.868+03	
e64cf6a5-bbc6-a0cf-a4ef-f6544ac5cc74	2021-05-23 10:48:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:48:31.853+03	2021-05-23 10:48:31.859+03	
f8f19396-e9b6-773f-d4fc-123e6652d6cf	2021-05-23 10:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:48:52.853+03	2021-05-23 10:48:52.86+03	
b0a6940d-dcf8-145e-2a81-ea20f7522c8e	2021-05-23 10:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:49:12.853+03	2021-05-23 10:49:12.859+03	
cf1aabbd-4dc6-9505-fb95-48214491418a	2021-05-23 10:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:49:33.853+03	2021-05-23 10:49:33.859+03	
a988014b-7cc2-11d7-d26c-b8bcf7cc4280	2021-05-23 10:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:49:54.853+03	2021-05-23 10:49:54.86+03	
bbb409fe-4f4a-4c3a-fdaa-8aeead983406	2021-05-23 10:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:50:04.853+03	2021-05-23 10:50:04.859+03	
c6b115cd-06dd-27d8-d200-9f6514e74b56	2021-05-23 10:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:50:25.853+03	2021-05-23 10:50:25.912+03	
1732eb58-6a3b-5ea9-4394-ba740a13492a	2021-05-23 10:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:50:45.853+03	2021-05-23 10:50:45.86+03	
74753f3c-57b0-8001-4415-49b7de12da38	2021-05-23 10:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:51:05.853+03	2021-05-23 10:51:05.859+03	
e217609f-4281-98e2-4a9d-f08680bc1650	2021-05-23 10:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:51:25.853+03	2021-05-23 10:51:25.862+03	
69a7c7de-df33-db1b-8978-5fec8d5036c0	2021-05-23 10:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:51:45.853+03	2021-05-23 10:51:45.859+03	
4ca2ae1e-9a85-912b-f528-4e140f8217c4	2021-05-23 10:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:52:05.853+03	2021-05-23 10:52:05.866+03	
b6a419fd-319f-884c-3c0e-f2be460eb4f6	2021-05-23 10:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:52:26.852+03	2021-05-23 10:52:26.86+03	
cda04bc7-f5e9-2588-ec10-0c3d236199e8	2021-05-23 10:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:52:47.853+03	2021-05-23 10:52:47.859+03	
6ac334b8-694b-2f20-dc79-d6ba3c0c1ba7	2021-05-23 10:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:53:08.853+03	2021-05-23 10:53:08.861+03	
e39d8e31-8fbf-e583-7f2d-796110317dde	2021-05-23 10:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:53:28.853+03	2021-05-23 10:53:28.859+03	
5ef6a7c1-85bf-20f1-491e-94e4e24385cf	2021-05-23 10:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:53:49.853+03	2021-05-23 10:53:49.859+03	
00f95384-c268-d1f5-4ccb-4c6e83aac300	2021-05-23 10:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:54:10.853+03	2021-05-23 10:54:10.861+03	
bc7df942-7824-7451-cff2-68ef272b68ef	2021-05-23 10:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:54:30.853+03	2021-05-23 10:54:30.861+03	
84bfccaa-08fe-b231-bebc-1118aa90ce29	2021-05-23 10:54:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:54:51.852+03	2021-05-23 10:54:51.86+03	
58dd21ac-02a1-282d-0df7-45fe2b06a35e	2021-05-23 10:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:55:12.853+03	2021-05-23 10:55:12.86+03	
989971f7-ae30-0a81-7735-76de63313b13	2021-05-23 10:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:55:32.853+03	2021-05-23 10:55:32.859+03	
b146eda8-31da-39a2-b657-bd541f89789a	2021-05-23 10:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:55:53.853+03	2021-05-23 10:55:53.859+03	
34537528-0ec5-1b8f-0737-cc3db8ea4263	2021-05-23 10:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:56:13.853+03	2021-05-23 10:56:13.859+03	
9f3bad3a-2d8c-d012-5c08-072f3efced40	2021-05-23 10:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:56:34.852+03	2021-05-23 10:56:34.858+03	
ebcde15f-014b-9a0f-888c-87ce00d92825	2021-05-23 10:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:56:54.853+03	2021-05-23 10:56:54.873+03	
bc5c98bf-0803-9a86-196b-2b3636bb61a5	2021-05-23 10:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:57:15.853+03	2021-05-23 10:57:15.86+03	
720bf39e-fb60-2bbe-7216-d36cc67f05ac	2021-05-23 10:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:57:35.853+03	2021-05-23 10:57:35.859+03	
b7abe5b3-44e8-5210-b10a-81e0eeeb1811	2021-05-23 10:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:57:55.853+03	2021-05-23 10:57:55.859+03	
b3cc6e82-2485-935f-2fe7-993c3e428c1e	2021-05-23 10:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:58:15.853+03	2021-05-23 10:58:15.86+03	
60fb471d-d012-1c07-6a90-ad041651e6c5	2021-05-23 10:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:58:35.853+03	2021-05-23 10:58:35.859+03	
40ba9483-8464-fb2f-4d6b-b05f1e13e820	2021-05-23 10:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:58:56.852+03	2021-05-23 10:58:56.871+03	
ea9f9ece-4950-16e7-7db5-b9fd80e60ad9	2021-05-23 10:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:59:17.853+03	2021-05-23 10:59:17.86+03	
c0b74d2e-e417-2d8c-0239-3814658cdad3	2021-05-23 10:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:59:37.853+03	2021-05-23 10:59:37.859+03	
594ac9d5-3ad8-11f4-d70f-19627d6dafb8	2021-05-23 10:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:59:57.853+03	2021-05-23 10:59:57.866+03	
7ae93cce-327d-e05a-f9ca-75112b25e2fb	2021-05-23 11:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:00:07.853+03	2021-05-23 11:00:07.87+03	
e59e3760-4509-7d04-eccb-3a50ac0bdee6	2021-05-23 11:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:00:27.853+03	2021-05-23 11:00:27.865+03	
2945a953-3fbb-903a-a9f9-5945e313b86d	2021-05-23 11:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:00:47.853+03	2021-05-23 11:00:47.859+03	
0acb83ab-e036-67d9-eef3-0fa46dda216c	2021-05-23 11:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:01:08.853+03	2021-05-23 11:01:08.861+03	
543b03fb-3db3-4563-69d3-df940cbd7f3e	2021-05-23 11:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:01:28.853+03	2021-05-23 11:01:28.861+03	
4285fc7b-8a8e-647c-1834-fc6db7a96e83	2021-05-23 11:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:01:49.853+03	2021-05-23 11:01:49.859+03	
152d879e-94a3-5272-906d-547bfd9d6a1b	2021-05-23 11:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:02:10.853+03	2021-05-23 11:02:10.861+03	
73d131ad-1045-1cb5-6695-90c4eda954d1	2021-05-23 11:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:02:30.853+03	2021-05-23 11:02:30.86+03	
f2d1dc86-6abc-8900-faff-5a3fa18fb99c	2021-05-23 11:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:02:50.853+03	2021-05-23 11:02:50.859+03	
0f9a70a6-8eb1-19aa-867c-0cabf6f5b64b	2021-05-23 10:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:42:34.853+03	2021-05-23 10:42:34.86+03	
c52fa5dd-c67b-6468-e7b5-1da8d4589c9d	2021-05-23 10:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:42:55.853+03	2021-05-23 10:42:55.859+03	
0143914a-6f6d-2958-4b3a-b08d86ef76c7	2021-05-23 10:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:43:17.853+03	2021-05-23 10:43:17.859+03	
6d6adf71-84cc-7f29-ed2b-c8af93db771c	2021-05-23 10:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:43:37.853+03	2021-05-23 10:43:37.859+03	
353ea69d-1906-1093-4fa8-d69c58e2e9cb	2021-05-23 10:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:43:57.853+03	2021-05-23 10:43:57.86+03	
d85f3d2b-5ee9-29dc-61ab-f5c052a7d570	2021-05-23 10:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:44:17.853+03	2021-05-23 10:44:17.862+03	
4abe26e4-911f-c34a-3b23-c334c3cfd901	2021-05-23 10:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:44:37.853+03	2021-05-23 10:44:37.86+03	
8fc031bb-57c1-f771-b5cf-7c10c382c0a6	2021-05-23 10:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:44:58.853+03	2021-05-23 10:44:58.86+03	
24346e19-090b-ced1-b0d0-a3a5ced8cb4f	2021-05-23 10:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:45:19.853+03	2021-05-23 10:45:19.869+03	
e812c962-31f0-2f4f-656a-89e76558eca1	2021-05-23 10:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:45:39.853+03	2021-05-23 10:45:39.86+03	
9605f9f4-28ab-570b-f805-043e2fa54867	2021-05-23 10:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:45:59.853+03	2021-05-23 10:45:59.86+03	
bac0b4a9-35db-afc4-3717-9852ac86c684	2021-05-23 10:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:46:19.853+03	2021-05-23 10:46:19.859+03	
abc5179c-a5fb-22b8-48bf-412e3d8f78b3	2021-05-23 10:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:46:39.853+03	2021-05-23 10:46:39.86+03	
8d6c4c4e-8c00-3094-f06e-b597f3c05aa7	2021-05-23 10:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:47:00.852+03	2021-05-23 10:47:00.859+03	
01ed9c54-f189-ffe0-64e4-289c42ea0789	2021-05-23 10:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:47:20.853+03	2021-05-23 10:47:20.859+03	
41bc86f7-ae02-7f04-ccab-c3df699fac5e	2021-05-23 10:47:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:47:40.853+03	2021-05-23 10:47:40.859+03	
5817897c-182b-0bd2-680e-5b4c967e3529	2021-05-23 10:48:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:48:01.853+03	2021-05-23 10:48:01.862+03	
8d624115-afdd-b2e5-706c-82b122b76ad0	2021-05-23 10:48:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:48:21.853+03	2021-05-23 10:48:21.859+03	
c54ff48b-5119-9a9c-7a99-91b913bc8112	2021-05-23 10:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:48:42.852+03	2021-05-23 10:48:42.864+03	
5297b62b-81bf-717d-70ad-5e102d532164	2021-05-23 10:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:49:02.853+03	2021-05-23 10:49:02.86+03	
942d57a4-f6e0-9d93-98cf-7ccaa4fcb425	2021-05-23 10:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:49:22.853+03	2021-05-23 10:49:22.863+03	
7b3b1e5f-edbf-72e8-8208-44db58d63078	2021-05-23 10:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:49:44.853+03	2021-05-23 10:49:44.861+03	
125e5f85-6c0d-f580-4d19-864ec5323092	2021-05-23 10:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 10:50:00.853+03	2021-05-23 10:50:00.859+03	ERROR
dc4b690f-2649-6f88-3962-d702923b25fc	2021-05-23 10:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:50:15.853+03	2021-05-23 10:50:15.86+03	
8b78cce8-adb8-2ce8-8cba-dd47af576eb7	2021-05-23 10:50:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:50:35.853+03	2021-05-23 10:50:35.859+03	
76ea83bd-4af2-ad49-afdd-0cd1c88f6907	2021-05-23 10:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:50:55.853+03	2021-05-23 10:50:55.863+03	
de469c7f-c6ea-a98d-4825-8a17f0e17dc2	2021-05-23 10:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:51:15.853+03	2021-05-23 10:51:15.865+03	
ccc10564-e432-9beb-2665-ffecdd9788a2	2021-05-23 10:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:51:35.853+03	2021-05-23 10:51:35.86+03	
13170e42-a7c6-db85-f4a3-c3c25d757217	2021-05-23 10:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:51:55.853+03	2021-05-23 10:51:55.859+03	
3d1460c6-f58d-c861-9f20-bcf52c537b36	2021-05-23 10:52:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:52:16.852+03	2021-05-23 10:52:16.86+03	
94083288-221e-32d4-21e3-83b55dd56d00	2021-05-23 10:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:52:36.853+03	2021-05-23 10:52:36.86+03	
df59715e-8afa-16e0-3739-12989d17b3f5	2021-05-23 10:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:52:58.852+03	2021-05-23 10:52:58.86+03	
14b54cb1-945d-31cd-bb84-87a6c1edd475	2021-05-23 10:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:53:18.853+03	2021-05-23 10:53:18.859+03	
95de30f2-921c-46cd-0c49-420b2d7b9c60	2021-05-23 10:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:53:38.853+03	2021-05-23 10:53:38.858+03	
77b0bc17-36f7-f18b-0ceb-f06548db41d9	2021-05-23 10:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:53:59.853+03	2021-05-23 10:53:59.86+03	
7735b278-c882-1369-072d-97a54ae8b48c	2021-05-23 10:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:54:20.853+03	2021-05-23 10:54:20.86+03	
4c9683a7-8a30-2064-0cd5-b2559617cfd9	2021-05-23 10:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:54:40.853+03	2021-05-23 10:54:40.86+03	
e6de0fc1-ef62-52cb-4172-cbb4ec50a27d	2021-05-23 10:55:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:55:01.854+03	2021-05-23 10:55:01.863+03	
67f2c87c-4005-24a6-371e-4ccad82ec7d1	2021-05-23 10:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:55:22.853+03	2021-05-23 10:55:22.859+03	
c6b7430a-6692-339b-dff5-406e4c2ac6e6	2021-05-23 10:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:55:42.853+03	2021-05-23 10:55:42.859+03	
62dca3f3-fd0f-63a5-951e-b9fbd2c00eae	2021-05-23 10:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:56:03.853+03	2021-05-23 10:56:03.862+03	
eea6f032-d04b-7df8-5e9e-8f4085865dc7	2021-05-23 10:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:56:23.853+03	2021-05-23 10:56:23.861+03	
f6ac08ec-b356-fc07-d397-c2e717329076	2021-05-23 10:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:56:44.853+03	2021-05-23 10:56:44.861+03	
119e136d-a2bb-aef9-6fc9-694a28b321a7	2021-05-23 10:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:57:05.853+03	2021-05-23 10:57:05.859+03	
d5a5c421-819d-f479-8a0d-40627fedf24b	2021-05-23 10:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:57:25.853+03	2021-05-23 10:57:25.862+03	
715d5a9b-b548-b0a5-75c8-252fe278d664	2021-05-23 10:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:57:45.853+03	2021-05-23 10:57:45.859+03	
8b7bd0ff-9317-034b-1538-3ca4e5228ce3	2021-05-23 10:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:58:05.853+03	2021-05-23 10:58:05.859+03	
d325b046-3d58-28b3-11ec-74e322e5cb86	2021-05-23 10:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:58:25.853+03	2021-05-23 10:58:25.859+03	
c3796dc2-8920-591f-8475-6ce6d48ed04d	2021-05-23 10:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:58:46.852+03	2021-05-23 10:58:46.859+03	
742246fd-7457-9d80-704c-ffb8f242f777	2021-05-23 10:59:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:59:06.854+03	2021-05-23 10:59:06.873+03	
ff03d433-ab58-55f1-c6d6-42a341f9d0e5	2021-05-23 10:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:59:27.853+03	2021-05-23 10:59:27.86+03	
6d136cc7-850b-338f-033b-66ddda57c6db	2021-05-23 10:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 10:59:47.853+03	2021-05-23 10:59:47.859+03	
cf83e7bf-9e17-004a-951f-11c93f61d68f	2021-05-23 11:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 11:00:00.853+03	2021-05-23 11:00:00.863+03	ERROR
fc843635-0665-5da9-3f6a-750f5d17100b	2021-05-23 11:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:00:17.853+03	2021-05-23 11:00:17.863+03	
2e1a6729-d687-27d9-a14a-0b745ec923e9	2021-05-23 11:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:00:37.853+03	2021-05-23 11:00:37.862+03	
e2f8b7a4-4d6e-8d3b-ac4e-b5d4f49d4619	2021-05-23 11:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:00:58.853+03	2021-05-23 11:00:58.86+03	
ed4c2bb7-76e5-a418-2ab2-9a39e212122c	2021-05-23 11:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:01:18.853+03	2021-05-23 11:01:18.859+03	
4d5c473b-3115-d60e-7ded-903b84ff2faf	2021-05-23 11:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:01:39.852+03	2021-05-23 11:01:39.86+03	
b9ec48bf-c60c-0732-91e6-10ed1cc0dde5	2021-05-23 11:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:02:00.852+03	2021-05-23 11:02:00.86+03	
e5d4556f-0f4c-d299-0e22-562b4c232949	2021-05-23 11:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:02:20.853+03	2021-05-23 11:02:20.907+03	
e33acb0b-2577-baa5-17ee-1c4e23e45143	2021-05-23 11:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:02:40.853+03	2021-05-23 11:02:40.859+03	
f786a287-ee0c-6dbd-fd7c-f2432f32e4dd	2021-05-23 11:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:03:00.853+03	2021-05-23 11:03:00.86+03	
b10c8d99-66ba-fbf8-0f64-83514028cbea	2021-05-23 11:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:03:20.853+03	2021-05-23 11:03:20.863+03	
3df66b81-f791-34a0-5c2a-7cb329db1062	2021-05-23 11:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:03:10.853+03	2021-05-23 11:03:10.88+03	
5f020395-1cbc-1513-69b4-b19c00dc273a	2021-05-23 11:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:03:30.853+03	2021-05-23 11:03:30.86+03	
2a88915f-2237-7de6-cf06-f1d5996cecb6	2021-05-23 11:03:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:03:51.852+03	2021-05-23 11:03:51.86+03	
cea51619-9c38-0c7f-64bc-f281d7653d05	2021-05-23 11:04:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:04:11.854+03	2021-05-23 11:04:11.867+03	
61dbb5fc-ae83-485d-4fac-fff0085a7bed	2021-05-23 11:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:04:32.852+03	2021-05-23 11:04:32.861+03	
417c599e-9efe-56a1-2361-fe5030645776	2021-05-23 11:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:04:52.853+03	2021-05-23 11:04:52.859+03	
07087592-02c4-800a-5a87-e180db1b30bc	2021-05-23 11:05:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:05:12.853+03	2021-05-23 11:05:12.859+03	
44ca21e0-d096-4bae-1353-1ca2f02b9a8c	2021-05-23 11:05:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:05:32.853+03	2021-05-23 11:05:32.871+03	
49307d41-5273-dd1e-9409-82bcaf9f7b1e	2021-05-23 11:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:05:52.853+03	2021-05-23 11:05:52.86+03	
f87e6ecc-f9f2-9ae9-57f9-5ea6cd555f2f	2021-05-23 11:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:06:13.852+03	2021-05-23 11:06:13.858+03	
13c2d391-6c90-2ec3-e26b-5499ac4cc327	2021-05-23 11:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:06:33.853+03	2021-05-23 11:06:33.859+03	
d57e032a-9a7e-7315-e557-1d711858ba79	2021-05-23 11:06:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:06:53.853+03	2021-05-23 11:06:53.859+03	
990a2d6c-96ac-a38d-3e48-cae07d418008	2021-05-23 11:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:07:14.852+03	2021-05-23 11:07:14.86+03	
3661cb64-d074-83cd-e1cb-2a3f7732bdee	2021-05-23 11:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:07:34.853+03	2021-05-23 11:07:34.861+03	
ab41671c-4cb1-7979-c9d4-b2e012f8f205	2021-05-23 11:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:07:55.852+03	2021-05-23 11:07:55.859+03	
c3e00364-7798-d9e5-6230-adc7a9a96a58	2021-05-23 11:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:08:15.853+03	2021-05-23 11:08:15.86+03	
2f200cf9-d313-29fd-45a6-8012eacd492e	2021-05-23 11:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:08:35.853+03	2021-05-23 11:08:35.86+03	
c30425dc-f68d-f2de-5d56-b3752095d41c	2021-05-23 11:08:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:08:56.854+03	2021-05-23 11:08:56.86+03	
962f29a0-ec09-174b-936a-6b1fc9f7204a	2021-05-23 11:09:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:09:17.853+03	2021-05-23 11:09:17.859+03	
7b1c703b-8aac-f70a-bb05-e193f044c36f	2021-05-23 11:09:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:09:38.853+03	2021-05-23 11:09:38.859+03	
0ebf5c9b-2df7-218b-32cb-2d8a5140bb50	2021-05-23 11:09:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:09:58.853+03	2021-05-23 11:09:58.866+03	
709f64a1-93a9-5a95-5c8d-a4833040ae4f	2021-05-23 11:10:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:10:08.853+03	2021-05-23 11:10:08.866+03	
1ab87c6c-de73-dd2a-31ed-305c04095cd4	2021-05-23 11:10:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:10:28.853+03	2021-05-23 11:10:28.859+03	
0a82fa62-c6ea-aaf9-f9f0-db2059c41690	2021-05-23 11:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:10:48.853+03	2021-05-23 11:10:48.862+03	
9d49f61c-e6c3-0260-cc15-415500eda160	2021-05-23 11:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:11:09.852+03	2021-05-23 11:11:09.859+03	
d4c67c57-5bf2-ccb2-7dfc-6372d95c616c	2021-05-23 11:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:11:29.852+03	2021-05-23 11:11:29.86+03	
eca90746-f78c-f6ac-c505-0f5b2f4276bc	2021-05-23 11:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:11:50.852+03	2021-05-23 11:11:50.861+03	
f7113947-3213-e829-1c0d-f78f15c6ca56	2021-05-23 11:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:12:10.852+03	2021-05-23 11:12:10.859+03	
1a0df18d-9301-3f67-cea4-fd1eab9f3c23	2021-05-23 11:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:12:30.853+03	2021-05-23 11:12:30.86+03	
71ca8f15-d42b-6784-361e-8ef016fc448b	2021-05-23 11:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:12:51.852+03	2021-05-23 11:12:51.86+03	
92eaa3b9-3833-8a9e-b737-c5eebf1df251	2021-05-23 11:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:13:12.852+03	2021-05-23 11:13:12.859+03	
8c8eee25-a03c-8875-6fb0-3ba8a8807d41	2021-05-23 11:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:13:32.853+03	2021-05-23 11:13:32.86+03	
85ceebf8-8934-ac94-14ad-49ab4d2d2ba6	2021-05-23 11:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:13:53.852+03	2021-05-23 11:13:53.86+03	
89d5a80d-2451-c9bc-d552-b4dd8caa5391	2021-05-23 11:14:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:14:13.853+03	2021-05-23 11:14:13.859+03	
1207816c-1420-a1b0-84ae-abc77a08841b	2021-05-23 11:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:14:34.852+03	2021-05-23 11:14:34.859+03	
8be5b046-d8a0-ae3e-942b-65a29bc11c33	2021-05-23 11:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:14:54.853+03	2021-05-23 11:14:54.862+03	
48914c2d-57a5-176c-132e-6bdfcff61348	2021-05-23 11:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:15:16.853+03	2021-05-23 11:15:16.86+03	
99ecc3e4-e6f5-0cc7-5241-38b27a76588b	2021-05-23 11:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:15:37.853+03	2021-05-23 11:15:37.859+03	
d23abcc2-1065-bbf3-20e1-867baed970ce	2021-05-23 11:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:15:57.853+03	2021-05-23 11:15:57.859+03	
71c09f27-1fad-76dc-0f41-4f211fb05a4f	2021-05-23 11:16:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:16:17.853+03	2021-05-23 11:16:17.859+03	
e414467f-f3c1-12d7-4725-284d4b4d5f3e	2021-05-23 11:16:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:16:37.853+03	2021-05-23 11:16:37.863+03	
97775d2a-5cd1-a0f6-6db2-e3d22a8407e8	2021-05-23 11:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:16:57.853+03	2021-05-23 11:16:57.872+03	
195584d4-8486-e253-c1e0-b3611df70315	2021-05-23 11:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:17:17.853+03	2021-05-23 11:17:17.86+03	
1c68a937-99dc-e25b-8f18-8488831787d0	2021-05-23 11:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:17:37.853+03	2021-05-23 11:17:37.859+03	
c3d8a390-3f65-f5ee-d522-d4f5b7c02780	2021-05-23 11:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:17:57.853+03	2021-05-23 11:17:57.859+03	
649b8415-468c-a0fe-9cca-ddca866da109	2021-05-23 11:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:18:18.853+03	2021-05-23 11:18:18.867+03	
514b1835-d63e-c336-14b5-ac80148e8f00	2021-05-23 11:18:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:18:40.853+03	2021-05-23 11:18:40.861+03	
76b70957-01e6-c959-cac6-f708bc90551c	2021-05-23 11:19:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:19:01.852+03	2021-05-23 11:19:01.858+03	
4f354b31-9815-7e51-86df-e47a539f4ca0	2021-05-23 11:19:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:19:21.853+03	2021-05-23 11:19:21.86+03	
9a808846-3be2-31ff-e0ff-ba14528a56b8	2021-05-23 11:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:19:42.853+03	2021-05-23 11:19:42.859+03	
b6059410-6fca-85e2-909e-f45cb04de459	2021-05-23 11:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 11:20:00.852+03	2021-05-23 11:20:00.858+03	ERROR
816e60d6-5892-ccdd-39a5-804f7b5d950d	2021-05-23 11:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:20:12.853+03	2021-05-23 11:20:12.86+03	
88941019-d457-770d-ec38-1974ff300d36	2021-05-23 11:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:20:33.853+03	2021-05-23 11:20:33.859+03	
830dc370-05e7-fb25-0401-c24531a4bdc9	2021-05-23 11:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:20:54.852+03	2021-05-23 11:20:54.859+03	
77b53baf-5d71-0c2f-0730-2ee2ab26e6aa	2021-05-23 11:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:21:14.853+03	2021-05-23 11:21:14.866+03	
ff07129b-1eb2-96cb-c567-53b057add8e7	2021-05-23 11:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:21:34.853+03	2021-05-23 11:21:34.859+03	
456555a2-4607-096c-e123-c4142aba176b	2021-05-23 11:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:21:55.853+03	2021-05-23 11:21:55.86+03	
d6d8ce94-844e-4e66-7a4c-b93ec6547605	2021-05-23 11:22:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:22:16.854+03	2021-05-23 11:22:16.861+03	
23e909a8-8757-9866-4076-2c46e5ca4316	2021-05-23 11:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:22:37.853+03	2021-05-23 11:22:37.859+03	
ce50786a-4e55-5e7b-15e4-550aedbdc41a	2021-05-23 11:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:22:58.852+03	2021-05-23 11:22:58.861+03	
5208b7a3-d688-6c76-52c5-9f43e2594b1b	2021-05-23 11:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:23:18.853+03	2021-05-23 11:23:18.869+03	
716b79f8-6789-33a1-52de-297913f51dcd	2021-05-23 11:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:23:38.853+03	2021-05-23 11:23:38.859+03	
7dac6d3e-b4d9-d336-239e-d2e67e1a12cc	2021-05-23 11:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:23:59.853+03	2021-05-23 11:23:59.859+03	
ed4666bf-64c6-ff6b-0b7e-ccad4c502404	2021-05-23 11:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:03:40.853+03	2021-05-23 11:03:40.874+03	
24c49268-74b3-d16a-cb16-77e373f8301d	2021-05-23 11:04:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:04:01.853+03	2021-05-23 11:04:01.86+03	
0c5ce51c-6707-a368-2ff8-f5e0e3ada6f8	2021-05-23 11:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:04:22.852+03	2021-05-23 11:04:22.86+03	
89eae524-caf7-a55e-1159-e2f6e7481e89	2021-05-23 11:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:04:42.852+03	2021-05-23 11:04:42.859+03	
9e68f7ff-2e71-236c-ea75-ccd59786906d	2021-05-23 11:05:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:05:02.853+03	2021-05-23 11:05:02.859+03	
85364699-e040-6ae0-e3a3-9e335b913df2	2021-05-23 11:05:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:05:22.853+03	2021-05-23 11:05:22.86+03	
8f65cdab-0d86-27b8-8659-215ea4ca7006	2021-05-23 11:05:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:05:42.853+03	2021-05-23 11:05:42.86+03	
fc181827-342f-8961-17d4-86feeb4eb718	2021-05-23 11:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:06:03.852+03	2021-05-23 11:06:03.859+03	
107deb57-77f0-64fd-94d5-2dae85bcad4b	2021-05-23 11:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:06:23.852+03	2021-05-23 11:06:23.858+03	
f44f336d-d6fe-d88f-5847-6765901e89dd	2021-05-23 11:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:06:43.853+03	2021-05-23 11:06:43.86+03	
89ff608e-e27d-9c8a-cbdc-689715e1f5e5	2021-05-23 11:07:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:07:03.853+03	2021-05-23 11:07:03.86+03	
7683f20b-19b5-3472-d68a-005fa40408dd	2021-05-23 11:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:07:24.853+03	2021-05-23 11:07:24.861+03	
9e17b071-79cb-f3e2-6808-0c7561c8bc13	2021-05-23 11:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:07:44.853+03	2021-05-23 11:07:44.859+03	
89b4c3ce-ecfc-f845-23d7-c7691712fcfa	2021-05-23 11:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:08:05.853+03	2021-05-23 11:08:05.861+03	
16686fb5-7e33-68b3-93a4-4a5db4acc734	2021-05-23 11:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:08:25.853+03	2021-05-23 11:08:25.87+03	
c89b58b1-6170-1a5e-afeb-65338429bc38	2021-05-23 11:08:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:08:46.853+03	2021-05-23 11:08:46.874+03	
e0b876e0-a565-112c-80b8-a7547d557a9e	2021-05-23 11:09:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:09:07.853+03	2021-05-23 11:09:07.86+03	
98d7040e-47b8-0781-1021-a49c3900c12a	2021-05-23 11:09:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:09:28.852+03	2021-05-23 11:09:28.859+03	
3335bed4-0c7e-3cf4-a548-c6bf7900fb40	2021-05-23 11:09:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:09:48.853+03	2021-05-23 11:09:48.859+03	
e2267b44-3467-08fb-b109-b3cce14f79af	2021-05-23 11:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 11:10:00.853+03	2021-05-23 11:10:00.859+03	ERROR
c6440854-3001-ead1-5dd6-5b3293d1180b	2021-05-23 11:10:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:10:18.853+03	2021-05-23 11:10:18.859+03	
ca4abf76-2498-1c65-7508-b199e99c23f3	2021-05-23 11:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:10:38.853+03	2021-05-23 11:10:38.859+03	
b4d95642-a90e-d3f0-fe50-db3a051bcc3c	2021-05-23 11:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:10:58.853+03	2021-05-23 11:10:58.859+03	
022bcacc-b74d-fbfb-93ab-091f6d01b89b	2021-05-23 11:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:11:19.852+03	2021-05-23 11:11:19.859+03	
28b5c735-2c7a-f9e0-b3e4-f31df102b402	2021-05-23 11:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:11:39.853+03	2021-05-23 11:11:39.861+03	
b09aa055-ea89-7ea0-be77-a2f6733a2cba	2021-05-23 11:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:12:00.852+03	2021-05-23 11:12:00.86+03	
eccdc677-fafa-118e-817b-20b8eeae6c46	2021-05-23 11:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:12:20.853+03	2021-05-23 11:12:20.869+03	
5b9f356d-99a5-d187-f36d-2f3b07ad8129	2021-05-23 11:12:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:12:40.853+03	2021-05-23 11:12:40.859+03	
642690ff-4045-f874-8ed4-e025235cf387	2021-05-23 11:13:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:13:01.854+03	2021-05-23 11:13:01.906+03	
14b14bb9-3c99-7c59-64c6-c1f33cd366a5	2021-05-23 11:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:13:22.853+03	2021-05-23 11:13:22.861+03	
9bb701b3-db86-32cf-6ff8-f6d9b852f0ac	2021-05-23 11:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:13:43.852+03	2021-05-23 11:13:43.86+03	
d421b6cb-cb8e-604d-0e77-ad10e5565e5e	2021-05-23 11:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:14:03.853+03	2021-05-23 11:14:03.86+03	
8dc4f9b0-b261-f496-8825-ef22d93f55cd	2021-05-23 11:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:14:24.852+03	2021-05-23 11:14:24.859+03	
3f1a4c7a-73e3-41be-ac35-70bf91445d04	2021-05-23 11:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:14:44.853+03	2021-05-23 11:14:44.86+03	
6b1fef9f-0b42-0862-6350-01fa38b20970	2021-05-23 11:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:15:05.853+03	2021-05-23 11:15:05.859+03	
5ae3b5c5-23ed-1aac-1b13-39bf7cd43e84	2021-05-23 11:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:15:27.852+03	2021-05-23 11:15:27.859+03	
a4bb0df6-6002-4177-0759-2cb639e75bb5	2021-05-23 11:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:15:47.853+03	2021-05-23 11:15:47.859+03	
0ef5a2f0-dbfb-0770-9a62-0420b2acad17	2021-05-23 11:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:16:07.853+03	2021-05-23 11:16:07.859+03	
e287109d-a86e-9cf9-dcf2-5e45ae317d5e	2021-05-23 11:16:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:16:27.853+03	2021-05-23 11:16:27.859+03	
50a83afe-807b-0077-0b3d-290da9408100	2021-05-23 11:16:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:16:47.853+03	2021-05-23 11:16:47.86+03	
f71c048e-ce84-bcac-9857-45ca57354701	2021-05-23 11:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:17:07.853+03	2021-05-23 11:17:07.86+03	
9cc72859-7032-3ef9-a969-cad1c2666574	2021-05-23 11:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:17:27.853+03	2021-05-23 11:17:27.86+03	
377041e4-0245-224a-0296-96f6ca8a3029	2021-05-23 11:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:17:47.853+03	2021-05-23 11:17:47.86+03	
d620a449-8dcc-4420-50da-3b5d7c76d45d	2021-05-23 11:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:18:07.853+03	2021-05-23 11:18:07.859+03	
c72a00c1-4bc0-530a-ec19-98d05c283927	2021-05-23 11:18:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:18:29.853+03	2021-05-23 11:18:29.861+03	
038bfdf6-d085-dcbc-fb5e-6e1c7ddd9573	2021-05-23 11:18:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:18:51.852+03	2021-05-23 11:18:51.859+03	
35069674-0ecc-e7a0-f44e-e68ed8f1fd92	2021-05-23 11:19:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:19:11.852+03	2021-05-23 11:19:11.86+03	
ffb671d0-c3a5-58a6-9548-99de9eee7dd9	2021-05-23 11:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:19:32.852+03	2021-05-23 11:19:32.872+03	
aee15587-dec6-34e1-71e8-9eb2ff7954c0	2021-05-23 11:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:19:52.853+03	2021-05-23 11:19:52.858+03	
b5e1208e-d454-5dc1-ba7f-4064b5f132c0	2021-05-23 11:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:20:02.853+03	2021-05-23 11:20:02.86+03	
869e4977-db1b-2a64-6592-b89d7b7a8aa1	2021-05-23 11:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:20:23.852+03	2021-05-23 11:20:23.86+03	
d0b78a20-02f8-6000-9b47-75bc81951973	2021-05-23 11:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:20:43.853+03	2021-05-23 11:20:43.859+03	
efabcf44-36bd-d179-6263-df7a1c7f699b	2021-05-23 11:21:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:21:04.853+03	2021-05-23 11:21:04.859+03	
a223d7b5-1ab9-7eff-fe05-8f0a54f3b01d	2021-05-23 11:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:21:24.853+03	2021-05-23 11:21:24.86+03	
750f40fa-0d78-0b49-a4ed-5c26fef3f668	2021-05-23 11:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:21:45.853+03	2021-05-23 11:21:45.859+03	
a2e564c0-08a5-52c2-3970-0b39955d3a2d	2021-05-23 11:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:22:05.853+03	2021-05-23 11:22:05.861+03	
62f807f3-0df0-e3db-23e2-a95ba3c4524f	2021-05-23 11:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:22:27.852+03	2021-05-23 11:22:27.859+03	
758174d3-05c4-70de-bea3-1c4b9d5ca072	2021-05-23 11:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:22:48.852+03	2021-05-23 11:22:48.861+03	
3ad0951e-0039-41ec-4a9d-0e6d462c7fda	2021-05-23 11:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:23:08.853+03	2021-05-23 11:23:08.863+03	
cf692e09-9f7d-9687-a7e5-528dceec5dcb	2021-05-23 11:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:23:28.853+03	2021-05-23 11:23:28.86+03	
1e0af34d-d074-e4c6-24e4-04c0e941405f	2021-05-23 11:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:23:49.853+03	2021-05-23 11:23:49.862+03	
3561a6df-1218-51c4-cb56-e45fff0b5c1c	2021-05-23 11:24:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:24:10.853+03	2021-05-23 11:24:10.859+03	
9badedcc-5176-44e6-c9ed-03acfe399974	2021-05-23 11:24:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:24:31.853+03	2021-05-23 11:24:31.86+03	
c85874bf-57e7-505d-a722-e02ba0867e7e	2021-05-23 11:24:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:24:20.853+03	2021-05-23 11:24:20.859+03	
1f6b40a2-3d58-b9e2-2e53-9cb7d57f3373	2021-05-23 11:24:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:24:41.853+03	2021-05-23 11:24:41.86+03	
d1a50492-fbf9-a436-6a7a-8d14dbc6f872	2021-05-23 11:25:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:25:01.853+03	2021-05-23 11:25:01.859+03	
70d1ab00-f6c9-9843-3bc9-69b4ed8cacbf	2021-05-23 11:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:25:22.853+03	2021-05-23 11:25:22.865+03	
a31df78d-2185-3007-25cf-a5571a0e44c2	2021-05-23 11:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:25:42.853+03	2021-05-23 11:25:42.859+03	
4e9eaaa8-397c-6b61-21b8-4180609c26fd	2021-05-23 11:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:26:03.853+03	2021-05-23 11:26:03.859+03	
fe7178e7-6677-05c8-491d-dd3dad57bb80	2021-05-23 11:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:26:25.853+03	2021-05-23 11:26:25.86+03	
6d57b46b-f527-17f3-9360-6572ee97135d	2021-05-23 11:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:26:45.853+03	2021-05-23 11:26:45.86+03	
a2d6b472-c5f8-3d5d-1f0d-b25079ed93e2	2021-05-23 11:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:27:05.853+03	2021-05-23 11:27:05.86+03	
b4f7775d-5eb1-2838-c6c1-9df9354ce466	2021-05-23 11:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:27:26.852+03	2021-05-23 11:27:26.86+03	
4f3d28db-00e6-b22a-fd79-497d8166c782	2021-05-23 11:27:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:27:46.853+03	2021-05-23 11:27:46.861+03	
b81225bb-55ec-c5af-1dfa-b5c0f166b335	2021-05-23 11:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:28:07.852+03	2021-05-23 11:28:07.86+03	
04e8cde4-c4cd-5008-1285-a36c465b0ffc	2021-05-23 11:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:28:27.853+03	2021-05-23 11:28:27.859+03	
8986bc58-89e3-04ef-0b41-644fb99a4ed4	2021-05-23 11:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:28:47.853+03	2021-05-23 11:28:47.894+03	
9e167ff8-6c2f-a4e8-2db8-4ab6f5e7cb7d	2021-05-23 11:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:29:08.852+03	2021-05-23 11:29:08.859+03	
584a02e6-9d9f-48d9-db1e-5432e33af476	2021-05-23 11:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:29:28.853+03	2021-05-23 11:29:28.869+03	
490344d3-6809-19e6-b014-add6448970f0	2021-05-23 11:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:29:48.853+03	2021-05-23 11:29:48.859+03	
0ef1edb5-0ad4-f9f3-0869-5a595ae918b0	2021-05-23 11:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 11:30:00.853+03	2021-05-23 11:30:00.858+03	ERROR
5e9d038b-6360-c7d0-a67c-359873eb0271	2021-05-23 11:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:30:19.853+03	2021-05-23 11:30:19.859+03	
915a00f3-846d-0ef1-41a0-86e9e2afccaf	2021-05-23 11:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:30:40.853+03	2021-05-23 11:30:40.859+03	
0714ea11-43ee-06b2-ca40-5fd809e778d0	2021-05-23 11:31:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:31:01.853+03	2021-05-23 11:31:01.859+03	
986c3f13-6e53-49f8-c006-4be273f2b9c1	2021-05-23 11:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:31:22.853+03	2021-05-23 11:31:22.859+03	
235b53d3-c4e3-67a3-7afb-e65e8f561377	2021-05-23 11:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:31:43.853+03	2021-05-23 11:31:43.859+03	
48f5959a-0cfa-6ff2-12b1-2a4cfe195eaa	2021-05-23 11:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:32:04.853+03	2021-05-23 11:32:04.858+03	
03472405-4f2c-1310-7c73-fa4767678c24	2021-05-23 11:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:32:24.853+03	2021-05-23 11:32:24.86+03	
f68369e0-664e-ae99-5e79-c2ac0e78c9cf	2021-05-23 11:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:32:45.853+03	2021-05-23 11:32:45.86+03	
f10c1911-b777-fdaa-3db3-0de9a40b42f5	2021-05-23 11:33:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:33:06.852+03	2021-05-23 11:33:06.86+03	
3a7c27b5-d224-d6f3-de94-8ca34aca2a85	2021-05-23 11:33:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:33:26.852+03	2021-05-23 11:33:26.858+03	
78dfd37c-d774-7720-b429-f8df5c774fe1	2021-05-23 11:33:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:33:46.852+03	2021-05-23 11:33:46.859+03	
85e8dca4-e9e3-1316-e5b3-ed00f38796e4	2021-05-23 11:34:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:34:06.853+03	2021-05-23 11:34:06.863+03	
75da4536-83c4-f569-bd08-1bc4392ca073	2021-05-23 11:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:34:28.852+03	2021-05-23 11:34:28.86+03	
21e245f4-341b-d5bd-f08e-ebf8c0e94bdf	2021-05-23 11:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:34:48.853+03	2021-05-23 11:34:48.859+03	
a00cfbc9-9061-4625-d3af-b5a31372bdeb	2021-05-23 11:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:35:09.852+03	2021-05-23 11:35:09.859+03	
dc3d801d-9b3a-b74f-ddda-ff4e1a63bc9d	2021-05-23 11:35:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:35:29.853+03	2021-05-23 11:35:29.86+03	
6ed0d06c-b570-b147-d5a4-5faa265dbdb9	2021-05-23 11:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:35:49.853+03	2021-05-23 11:35:49.859+03	
11629474-8387-056e-5b2e-e32b59e2938b	2021-05-23 11:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:36:09.853+03	2021-05-23 11:36:09.869+03	
0f6a6d2b-cefd-efc1-a70c-00eb9c6d171a	2021-05-23 11:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:36:30.853+03	2021-05-23 11:36:30.86+03	
c6c1c333-a3f3-181e-e69d-411809239916	2021-05-23 11:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:36:50.853+03	2021-05-23 11:36:50.858+03	
a848d0e6-b166-f718-dc37-0a6943832522	2021-05-23 11:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:37:10.853+03	2021-05-23 11:37:10.86+03	
f743d636-5b40-c958-abd8-829f76c60290	2021-05-23 11:37:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:37:30.853+03	2021-05-23 11:37:30.859+03	
b0bf90d2-4674-844e-8250-3face47ed5c1	2021-05-23 11:37:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:37:51.853+03	2021-05-23 11:37:51.862+03	
abd76efc-fd3d-5a7d-0b6c-9e942d85c3df	2021-05-23 11:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:38:12.852+03	2021-05-23 11:38:12.86+03	
017d7b0d-8321-e762-c301-93deb694a1da	2021-05-23 11:38:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:38:32.853+03	2021-05-23 11:38:32.86+03	
ea1b48e2-787a-2b8e-8513-b07c72815311	2021-05-23 11:38:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:38:53.853+03	2021-05-23 11:38:53.861+03	
cc87f632-aafd-7f84-99d4-8a58a07d942b	2021-05-23 11:39:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:39:14.853+03	2021-05-23 11:39:14.859+03	
01d40d68-e737-e543-4515-63bf162bcba3	2021-05-23 11:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:39:35.853+03	2021-05-23 11:39:35.859+03	
e565253f-a11c-4f70-1205-62d99d933138	2021-05-23 11:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:39:57.852+03	2021-05-23 11:39:57.859+03	
6c3c5cda-3045-ccbc-e534-7bc3ed755282	2021-05-23 11:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:40:07.853+03	2021-05-23 11:40:07.861+03	
3de4cbc9-2ae0-2040-c856-880912f8fd66	2021-05-23 11:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:40:27.853+03	2021-05-23 11:40:27.859+03	
8875de41-da18-fb3d-b615-fdf7a3cf6ccb	2021-05-23 11:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:40:49.852+03	2021-05-23 11:40:49.859+03	
026612ee-40b2-0003-74af-0abbf23f38d1	2021-05-23 11:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:41:09.853+03	2021-05-23 11:41:09.859+03	
6fb42a5a-0795-5906-4d27-83e550cf5a35	2021-05-23 11:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:41:29.853+03	2021-05-23 11:41:29.862+03	
d01515a2-d431-e4ee-2fc4-43731e14066f	2021-05-23 11:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:41:49.853+03	2021-05-23 11:41:49.861+03	
52582075-9b72-b856-5abe-c1ca9373745f	2021-05-23 11:42:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:42:09.853+03	2021-05-23 11:42:09.859+03	
57c98cfe-3272-5489-d216-7b13e3818ffd	2021-05-23 11:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:42:30.852+03	2021-05-23 11:42:30.859+03	
94c9cc07-597d-0fd8-d2cc-f51b29062c82	2021-05-23 11:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:42:50.852+03	2021-05-23 11:42:50.858+03	
acdc9c97-18de-ae80-6ea6-aec29fe2ac11	2021-05-23 11:43:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:43:11.853+03	2021-05-23 11:43:11.859+03	
45647f58-7191-348a-49df-b2ebe7644210	2021-05-23 11:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:43:32.852+03	2021-05-23 11:43:32.859+03	
51b23a9c-2e15-708c-488b-b6d09ec7bb77	2021-05-23 11:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:43:52.852+03	2021-05-23 11:43:52.859+03	
2466fda8-905f-c4f4-5bd8-e7dac79a615c	2021-05-23 11:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:44:12.853+03	2021-05-23 11:44:12.859+03	
5b670037-32ea-9277-d651-82edb6ad1ede	2021-05-23 11:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:44:33.853+03	2021-05-23 11:44:33.859+03	
5c7fb8ab-6c16-d02e-36e2-92c9239c3ab3	2021-05-23 11:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:44:53.853+03	2021-05-23 11:44:53.859+03	
e5b607ed-9b22-141d-4db0-4de9eedd7bb3	2021-05-23 11:45:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:45:14.853+03	2021-05-23 11:45:14.861+03	
03d0608d-dc1d-e61d-85be-8f224fb3bf3a	2021-05-23 11:24:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:24:51.853+03	2021-05-23 11:24:51.86+03	
1d1928bc-b19d-0262-008e-33688bed5a6d	2021-05-23 11:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:25:12.852+03	2021-05-23 11:25:12.859+03	
4d491f08-bf0b-0cdd-1dca-bb3edb8fd91c	2021-05-23 11:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:25:32.853+03	2021-05-23 11:25:32.86+03	
6b6a4a54-6944-ab94-5d78-207e34ab5ca5	2021-05-23 11:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:25:53.853+03	2021-05-23 11:25:53.859+03	
8e8231ac-4009-8801-944e-0916c2db848b	2021-05-23 11:26:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:26:14.853+03	2021-05-23 11:26:14.859+03	
cec46140-57fe-53e9-8d1a-b05e610d62a4	2021-05-23 11:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:26:35.853+03	2021-05-23 11:26:35.859+03	
ef5ae9ba-ee53-f36b-dcfa-e5c38d801f93	2021-05-23 11:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:26:55.853+03	2021-05-23 11:26:55.861+03	
55f99a9e-acb0-3f16-9af1-a9c195167783	2021-05-23 11:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:27:16.852+03	2021-05-23 11:27:16.86+03	
28f68d3e-96ed-8063-5399-ad55746993f1	2021-05-23 11:27:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:27:36.852+03	2021-05-23 11:27:36.859+03	
121d705e-abbd-36e9-c6f6-463966ca293c	2021-05-23 11:27:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:27:56.853+03	2021-05-23 11:27:56.861+03	
bea59e7c-430b-fd8c-f316-433f01bfcd8a	2021-05-23 11:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:28:17.853+03	2021-05-23 11:28:17.86+03	
aa7bcfaf-3227-12c3-da46-52554aa0a54e	2021-05-23 11:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:28:37.853+03	2021-05-23 11:28:37.953+03	
f20899d3-6361-1efe-5b07-f61647e953c0	2021-05-23 11:28:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:28:57.853+03	2021-05-23 11:28:57.859+03	
6e4c5f78-aa31-b089-7517-7df762271234	2021-05-23 11:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:29:18.853+03	2021-05-23 11:29:18.859+03	
6c6f91c8-6404-243f-8349-d8c232029bd4	2021-05-23 11:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:29:38.853+03	2021-05-23 11:29:38.865+03	
3058aa4e-2dc3-1812-a8a8-a3e57fc78c05	2021-05-23 11:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:29:58.853+03	2021-05-23 11:29:58.86+03	
3b52ca56-b56d-c7e1-60c2-2fe700a8e982	2021-05-23 11:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:30:09.852+03	2021-05-23 11:30:09.861+03	
c715d053-866c-86ef-b6bb-9d785859d7a5	2021-05-23 11:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:30:30.852+03	2021-05-23 11:30:30.859+03	
4d92bbde-11ce-51ab-6d82-5946d26cd8c1	2021-05-23 11:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:30:50.853+03	2021-05-23 11:30:50.859+03	
f16f2293-9efd-a4ea-de43-6a5869e1b3df	2021-05-23 11:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:31:12.852+03	2021-05-23 11:31:12.859+03	
5e623f9d-464f-8586-ec8b-5e5e3db04dbb	2021-05-23 11:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:31:33.853+03	2021-05-23 11:31:33.859+03	
4cc63ce5-493a-41c3-37a0-864a370a77cf	2021-05-23 11:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:31:53.853+03	2021-05-23 11:31:53.859+03	
3745b1e1-28d3-79e8-35cb-57d39b814a77	2021-05-23 11:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:32:14.853+03	2021-05-23 11:32:14.859+03	
5cbd497c-9711-fd47-73e7-6f338e75f3f2	2021-05-23 11:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:32:35.852+03	2021-05-23 11:32:35.86+03	
01175845-281f-3b60-ca47-1e71c0e69235	2021-05-23 11:32:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:32:56.852+03	2021-05-23 11:32:56.859+03	
1886cb98-8270-6777-2e52-77a5c8ca7434	2021-05-23 11:33:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:33:16.852+03	2021-05-23 11:33:16.86+03	
c373727e-85d6-cd3c-8624-4754802b583e	2021-05-23 11:33:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:33:36.852+03	2021-05-23 11:33:36.859+03	
9cf467ff-51bb-170a-e1ea-2f1a6f67f189	2021-05-23 11:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:33:56.853+03	2021-05-23 11:33:56.861+03	
fe370893-f3a5-2d27-9d76-653968672acd	2021-05-23 11:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:34:17.853+03	2021-05-23 11:34:17.862+03	
cb6b288d-be85-2c94-a8e1-ba74ef91cb99	2021-05-23 11:34:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:34:38.852+03	2021-05-23 11:34:38.859+03	
91176c3a-a407-8f5e-e487-9bbf98a62525	2021-05-23 11:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:34:59.852+03	2021-05-23 11:34:59.868+03	
9daa9b3a-caf8-ea48-12df-48dbbc71fecc	2021-05-23 11:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:35:19.853+03	2021-05-23 11:35:19.859+03	
1cae8cec-3a5a-a520-6918-aa2f585d1e03	2021-05-23 11:35:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:35:39.853+03	2021-05-23 11:35:39.861+03	
62344fb2-505b-9d78-032c-145a2afff73a	2021-05-23 11:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:35:59.853+03	2021-05-23 11:35:59.862+03	
83f27470-3716-5706-7962-546f0a8a434c	2021-05-23 11:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:36:20.852+03	2021-05-23 11:36:20.862+03	
49285ab2-99e1-3ccc-f8c0-5e91e8e06600	2021-05-23 11:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:36:40.853+03	2021-05-23 11:36:40.859+03	
f17c8f01-0f45-bbbd-2f8b-1197f304b17f	2021-05-23 11:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:37:00.853+03	2021-05-23 11:37:00.859+03	
84c99e04-af35-1b4e-43bf-6fa01d768dcf	2021-05-23 11:37:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:37:20.853+03	2021-05-23 11:37:20.862+03	
656c7f27-f625-3900-b96d-b90871b8ebf2	2021-05-23 11:37:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:37:41.853+03	2021-05-23 11:37:41.86+03	
7a7dd059-ffe3-ed72-4c6c-ba5924da4a58	2021-05-23 11:38:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:38:01.853+03	2021-05-23 11:38:01.86+03	
67e90eb6-0769-bbc4-c3f0-719bf7dde596	2021-05-23 11:38:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:38:22.853+03	2021-05-23 11:38:22.86+03	
22286142-ac18-d9a3-e8d7-3040e60759d1	2021-05-23 11:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:38:43.853+03	2021-05-23 11:38:43.875+03	
e59144d9-eb0f-abfa-f5cc-2a6d25f35cf6	2021-05-23 11:39:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:39:03.853+03	2021-05-23 11:39:03.859+03	
7eb7fb02-460d-568b-ddaa-8401545a2091	2021-05-23 11:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:39:25.853+03	2021-05-23 11:39:25.859+03	
59f0f004-7fa8-5ce6-3fe6-c2b877464538	2021-05-23 11:39:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:39:46.854+03	2021-05-23 11:39:46.884+03	
1d4c75c4-76c7-e002-538e-7c4ff4fae1fc	2021-05-23 11:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 11:40:00.853+03	2021-05-23 11:40:00.858+03	ERROR
ea9a115c-55be-000d-cc4c-fca28c0697d0	2021-05-23 11:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:40:17.853+03	2021-05-23 11:40:17.861+03	
edc8f0d8-9a54-1e73-2a82-d8c2c6dad9dd	2021-05-23 11:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:40:38.853+03	2021-05-23 11:40:38.859+03	
12217a1e-6196-742b-8516-4a8e8d274319	2021-05-23 11:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:40:59.853+03	2021-05-23 11:40:59.86+03	
145c1c26-077b-01f4-ca2a-ad660749a239	2021-05-23 11:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:41:19.853+03	2021-05-23 11:41:19.861+03	
2c1a15bd-a744-648e-ed1d-2cb64c771b9e	2021-05-23 11:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:41:39.853+03	2021-05-23 11:41:39.86+03	
9fc3d81f-67c8-4b55-224f-5a93dfc71306	2021-05-23 11:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:41:59.853+03	2021-05-23 11:41:59.86+03	
1505074e-7ee2-298c-b50d-b32141b8ca0d	2021-05-23 11:42:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:42:19.853+03	2021-05-23 11:42:19.859+03	
ff1cb89f-4b39-87aa-2bc1-1866b8930178	2021-05-23 11:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:42:40.852+03	2021-05-23 11:42:40.859+03	
808f8e4c-93c2-9222-d14c-a15d013d0e41	2021-05-23 11:43:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:43:00.853+03	2021-05-23 11:43:00.859+03	
92c9ab49-c928-7ce1-01e3-8823d8c426ad	2021-05-23 11:43:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:43:21.853+03	2021-05-23 11:43:21.861+03	
ec56284a-5b10-2b6d-696e-9e4a1bdf1bfa	2021-05-23 11:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:43:42.852+03	2021-05-23 11:43:42.859+03	
1e4f04c7-36f2-1dd7-a206-01a5446cee4e	2021-05-23 11:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:44:02.852+03	2021-05-23 11:44:02.859+03	
0e00aed8-a6b2-aaba-dbaf-6be9a02c9302	2021-05-23 11:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:44:23.853+03	2021-05-23 11:44:23.86+03	
7ff6a0cd-a4bb-54c8-0c36-1c378bde8711	2021-05-23 11:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:44:43.853+03	2021-05-23 11:44:43.861+03	
a9200f8f-54c3-60f4-6f5a-27cce5dd86cc	2021-05-23 11:45:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:45:04.852+03	2021-05-23 11:45:04.859+03	
cf3fa3e7-f659-c390-dc01-28eb1436781c	2021-05-23 11:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:45:25.853+03	2021-05-23 11:45:25.859+03	
ad69dfd4-70a6-0303-878f-bf3807139d40	2021-05-23 11:45:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:45:46.852+03	2021-05-23 11:45:46.877+03	
c9992e82-0df9-f47d-4d6c-3d8b69c727fb	2021-05-26 04:17:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:17:44.79+03	2021-05-26 04:17:44.797+03	
eb1b7ede-219e-d613-d29e-57436934791e	2021-05-23 11:45:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:45:36.852+03	2021-05-23 11:45:36.859+03	
1b7e8262-ce61-284b-f6cf-16989a1e5bf3	2021-05-23 22:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:55:30.852+03	2021-05-23 22:55:30.859+03	
2063db7a-75a7-8c0d-18ca-fd7c8c374f19	2021-05-23 11:45:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:45:56.852+03	2021-05-23 11:45:56.868+03	
0ceb8a28-ac41-711c-6992-840caa945898	2021-05-23 11:46:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:46:16.854+03	2021-05-23 11:46:16.863+03	
f05478f6-b149-1f16-0fba-f037d1550169	2021-05-23 22:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:55:50.853+03	2021-05-23 22:55:50.866+03	
79e2b452-b2b3-0561-a2c3-15c6730e4c7f	2021-05-23 11:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:46:37.853+03	2021-05-23 11:46:37.86+03	
e816c0fc-7ff9-19aa-cecf-5469b7f78305	2021-05-23 11:46:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:46:58.852+03	2021-05-23 11:46:58.861+03	
62abe53e-5df8-447b-909c-8eedfeee490e	2021-05-23 22:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:56:11.853+03	2021-05-23 22:56:11.86+03	
76c271da-44d4-4355-c411-f7434bd56abf	2021-05-23 11:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:47:18.853+03	2021-05-23 11:47:18.859+03	
ba53c2ce-4a9c-6e35-e12d-8004d9ed1cb6	2021-05-23 11:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:47:38.853+03	2021-05-23 11:47:38.86+03	
203ee7b9-62c4-9a98-03d7-099e1c1efe94	2021-05-23 22:56:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:56:31.853+03	2021-05-23 22:56:31.859+03	
a4da7be9-29f4-7f9e-7a1b-b8b094702442	2021-05-23 11:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:47:58.853+03	2021-05-23 11:47:58.884+03	
760e71da-159c-af1a-520d-b010618f11e4	2021-05-23 11:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:48:19.853+03	2021-05-23 11:48:19.868+03	
6b45b691-28e9-9c86-ce06-0d65e7a16602	2021-05-23 22:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:56:52.853+03	2021-05-23 22:56:52.859+03	
44a3bf57-cf75-7482-6f25-ba1e0d787228	2021-05-23 11:48:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:48:40.853+03	2021-05-23 11:48:41.143+03	
468b75a4-a31b-05eb-dd70-db437defc437	2021-05-23 11:49:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:49:01.854+03	2021-05-23 11:49:01.9+03	
e07328f1-3943-27ff-16a2-863c2842c565	2021-05-23 22:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:57:13.852+03	2021-05-23 22:57:13.859+03	
fc9312a0-b0ee-9c58-85f9-c39f56272b0a	2021-05-23 11:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:49:22.853+03	2021-05-23 11:49:22.955+03	
f20d3964-b415-bf73-fa93-a9232c20f927	2021-05-23 11:49:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:49:42.853+03	2021-05-23 11:49:42.862+03	
90da5e6e-f86a-9d0c-7d60-0da54196fd13	2021-05-23 22:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:57:33.853+03	2021-05-23 22:57:33.859+03	
c56d962e-01db-e89a-4388-85373729ed8f	2021-05-23 11:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 11:50:00.853+03	2021-05-23 11:50:00.859+03	ERROR
5d8b1500-dd82-a870-82d5-a8d96db9c2e5	2021-05-23 11:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:50:13.853+03	2021-05-23 11:50:13.861+03	
46076378-61ba-7ba3-563e-a3e60d87863a	2021-05-23 22:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:57:54.852+03	2021-05-23 22:57:54.859+03	
6a6ca6e0-5042-c474-f7df-82f2694ecdef	2021-05-23 11:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:50:33.853+03	2021-05-23 11:50:33.86+03	
95742a78-e6cb-4319-9e55-375a8598d0a6	2021-05-23 22:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:58:14.853+03	2021-05-23 22:58:15.065+03	
ca554f22-14b7-7da5-40c3-585b848ae0f7	2021-05-23 22:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:58:35.852+03	2021-05-23 22:58:35.858+03	
e258728a-6139-b10a-f448-09fe4995951d	2021-05-23 22:58:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:58:55.852+03	2021-05-23 22:58:55.859+03	
0b2a8b53-022e-4575-f836-e851462bdbcc	2021-05-23 22:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:59:15.853+03	2021-05-23 22:59:15.859+03	
d3e4950a-265d-1685-32e4-f51aeb133dae	2021-05-23 22:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:59:35.853+03	2021-05-23 22:59:35.859+03	
3a1708c7-ca5c-4e66-7de0-81ecb1a24c62	2021-05-23 23:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 23:00:00.853+03	2021-05-23 23:00:00.872+03	ERROR
4085981e-6298-3126-1018-302b79571cae	2021-05-23 23:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:00:17.852+03	2021-05-23 23:00:17.862+03	
720d7319-a3e7-521c-5b28-5f89aa028240	2021-05-23 23:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:00:37.852+03	2021-05-23 23:00:37.859+03	
43a166c2-d442-d680-be5c-989d9729f6ab	2021-05-23 23:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:00:57.853+03	2021-05-23 23:00:57.861+03	
b54c6e74-833c-d85e-bcc0-20b425140cd8	2021-05-23 23:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:01:17.853+03	2021-05-23 23:01:17.871+03	
1967f602-cd9a-b464-40bb-b3d1d3812cf9	2021-05-23 23:01:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:01:37.853+03	2021-05-23 23:01:37.86+03	
c8e08037-73a8-fa7f-bf3e-19fcde311763	2021-05-23 23:01:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:01:58.852+03	2021-05-23 23:01:58.859+03	
c6ca8b68-2942-9ff7-0eff-250b97bd223d	2021-05-23 23:02:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:02:18.852+03	2021-05-23 23:02:18.859+03	
cdbdf601-9088-422f-5665-ddee6116de01	2021-05-23 23:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:02:38.853+03	2021-05-23 23:02:38.859+03	
77b98755-5c76-5b4d-d64d-8353ee2c51cd	2021-05-23 23:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:03:00.852+03	2021-05-23 23:03:00.858+03	
d815578b-1900-5435-7c39-b77f8ded492c	2021-05-23 23:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:03:20.852+03	2021-05-23 23:03:20.858+03	
7ea0e4f2-ca79-285d-05fa-4aa012ad1175	2021-05-23 23:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:03:40.852+03	2021-05-23 23:03:40.861+03	
0fc6cdd1-e0dc-5d45-5765-ef21c946bada	2021-05-23 23:04:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:04:01.853+03	2021-05-23 23:04:01.862+03	
eed32d0b-bb91-bfd5-9825-db196ccd9c23	2021-05-23 23:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:04:22.852+03	2021-05-23 23:04:22.859+03	
9993577d-6af6-254b-5616-a091883c6a02	2021-05-23 23:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:04:42.852+03	2021-05-23 23:04:42.859+03	
be9d3fb0-47ae-757e-a191-a59c7072181c	2021-05-23 23:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:05:03.852+03	2021-05-23 23:05:03.921+03	
45753854-128a-d72c-3908-dcef6a54639d	2021-05-23 23:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:05:23.852+03	2021-05-23 23:05:23.859+03	
0a74ff88-4d8a-55c8-1bbf-3c644b758279	2021-05-23 23:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:05:43.853+03	2021-05-23 23:05:43.859+03	
99071df1-6eff-2d8a-d61c-a9caa9ebe460	2021-05-23 23:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:06:05.852+03	2021-05-23 23:06:05.859+03	
a3db33e5-3b24-a591-1eeb-efe23ea5f0e1	2021-05-23 23:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:06:25.852+03	2021-05-23 23:06:25.858+03	
14452f5b-f2b5-cd2d-96b1-29ca1fca99e7	2021-05-23 23:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:06:45.853+03	2021-05-23 23:06:45.859+03	
910f4d2f-20eb-311e-20d7-7d74e7d709ac	2021-05-23 23:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:07:05.853+03	2021-05-23 23:07:05.861+03	
3ff6c015-bcde-7422-ab19-8c20c3d0b2d1	2021-05-23 23:07:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:07:26.852+03	2021-05-23 23:07:26.859+03	
8e179e04-07c8-e433-adfc-683ea520a311	2021-05-23 23:07:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:07:46.852+03	2021-05-23 23:07:46.861+03	
199e7a67-4978-99c7-46aa-3b31c91c3d04	2021-05-23 23:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:08:07.853+03	2021-05-23 23:08:07.861+03	
4bb0d742-dfa9-cd42-f4a3-ec2ca2bfccfb	2021-05-23 23:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:08:28.852+03	2021-05-23 23:08:28.859+03	
5c56921d-06fd-061c-96a8-2f261b6a4d1a	2021-05-23 23:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:08:48.852+03	2021-05-23 23:08:48.859+03	
f7542210-9fb5-8a6d-aad4-dfb1b4a6f0eb	2021-05-23 23:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:09:08.853+03	2021-05-23 23:09:08.86+03	
e570b927-ecfc-1581-4b1f-164f6042e0ff	2021-05-23 23:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:09:29.853+03	2021-05-23 23:09:29.873+03	
c5205ec5-0020-d18d-3cb6-d4e5e0f35ab0	2021-05-23 23:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:09:50.852+03	2021-05-23 23:09:50.859+03	
9085c6fb-58ad-69ff-cc3c-1c35952aebaf	2021-05-23 23:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:10:10.852+03	2021-05-23 23:10:10.86+03	
a5225739-44f9-aa10-c300-b004a41af113	2021-05-23 23:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:10:30.853+03	2021-05-23 23:10:30.859+03	
afd2cc7c-d515-df89-4d09-d477bea26546	2021-05-23 23:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:10:52.853+03	2021-05-23 23:10:52.859+03	
b51f8a13-c7f9-4b3d-daff-fcd9ce70ee1d	2021-05-23 23:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:11:13.852+03	2021-05-23 23:11:13.858+03	
3b14a156-90c4-63de-f55d-58491710eb7f	2021-05-23 11:46:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:46:06.853+03	2021-05-23 11:46:06.86+03	
ecaaac39-bfba-d454-982f-02e6dfbb3a48	2021-05-23 11:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:46:27.853+03	2021-05-23 11:46:27.859+03	
19e40b92-3cc6-1280-ac19-a743bc8b9a77	2021-05-23 11:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:46:47.853+03	2021-05-23 11:46:47.859+03	
884b896d-0b19-2495-8990-f8821f5a6496	2021-05-23 11:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:47:08.852+03	2021-05-23 11:47:08.859+03	
dccb0556-079d-a495-d72a-357b2514ed1a	2021-05-23 11:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:47:28.853+03	2021-05-23 11:47:28.871+03	
97b33597-2351-bba6-9c89-ba780a1acfa9	2021-05-23 11:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:47:48.853+03	2021-05-23 11:47:48.867+03	
6a2a49cf-06a6-29a8-1546-b43af3863947	2021-05-23 11:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:48:08.853+03	2021-05-23 11:48:08.869+03	
fa34a067-8429-a8cb-a401-633507c1c416	2021-05-23 11:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:48:29.853+03	2021-05-23 11:48:29.859+03	
3300431b-2acd-1252-b189-a4408bb343a3	2021-05-23 11:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:48:50.853+03	2021-05-23 11:48:51.101+03	
785eb4ed-9140-52ed-ca5c-f9c0dc1f5544	2021-05-23 11:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:49:12.853+03	2021-05-23 11:49:12.86+03	
db707910-abcc-952b-00bb-a20bb8712d5c	2021-05-23 11:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:49:32.853+03	2021-05-23 11:49:32.862+03	
314606c4-82fe-ad7d-7c07-38488a7f33d4	2021-05-23 11:49:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:49:52.853+03	2021-05-23 11:49:52.945+03	
25a0eaf6-cf23-b397-2c5b-37dafb6f8a31	2021-05-23 11:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:50:03.853+03	2021-05-23 11:50:03.912+03	
5cbaef81-fa56-6506-2786-a531727f03c8	2021-05-23 11:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:50:23.853+03	2021-05-23 11:50:23.861+03	
e6dfbdab-71df-3e27-f1ac-283789e4ce0b	2021-05-23 11:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:50:43.853+03	2021-05-23 11:50:43.869+03	
f43a64b3-346d-dbfe-e62b-11ed6b6153e3	2021-05-23 11:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:50:53.853+03	2021-05-23 11:50:53.866+03	
2fe1bc80-1a03-7065-bb0f-a56d698cb865	2021-05-23 11:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:51:03.853+03	2021-05-23 11:51:03.863+03	
a53dccbd-b85e-0537-76ff-b42648a05576	2021-05-23 11:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:51:14.853+03	2021-05-23 11:51:14.86+03	
dd7f68fd-6912-e418-2fca-dea6c55bcc51	2021-05-23 11:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:51:24.853+03	2021-05-23 11:51:24.86+03	
6d25a310-1442-9b7e-e645-00f96c085f43	2021-05-23 11:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:51:35.852+03	2021-05-23 11:51:35.86+03	
b4dff266-c4f1-e540-f023-4d25daa595cc	2021-05-23 11:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:51:45.853+03	2021-05-23 11:51:45.861+03	
580d7dd0-6850-d95a-c862-8dede2f85b33	2021-05-23 11:51:56.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:51:56.859+03	2021-05-23 11:51:56.868+03	
16b1b654-356c-61a7-1a0d-218d1f9cac74	2021-05-23 11:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:52:07.853+03	2021-05-23 11:52:07.86+03	
3817b46f-6daf-252b-a400-6275b3b561c3	2021-05-23 11:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:52:17.853+03	2021-05-23 11:52:17.87+03	
cf51a230-97d6-fd2a-e998-f8b29ef9e11d	2021-05-23 11:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:52:27.853+03	2021-05-23 11:52:27.861+03	
69f7a12c-77e2-5752-5964-9345dea48f92	2021-05-23 11:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:52:37.853+03	2021-05-23 11:52:37.873+03	
66f161bc-f238-a602-ab97-1aa601078600	2021-05-23 11:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:52:48.853+03	2021-05-23 11:52:48.864+03	
c8e8940f-2e66-faf7-6360-cac81864beea	2021-05-23 11:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:52:58.853+03	2021-05-23 11:52:58.861+03	
657859ee-9e07-047d-dd24-30e1e1cdd660	2021-05-23 11:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:53:08.853+03	2021-05-23 11:53:08.859+03	
14922d4e-47e5-9515-79b2-a5cc1d2a781c	2021-05-23 11:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:53:18.853+03	2021-05-23 11:53:18.863+03	
450a4765-f7cb-8699-672e-6af9b605a22a	2021-05-23 11:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:53:28.853+03	2021-05-23 11:53:28.861+03	
4633ebe0-52fb-efde-0782-212efeb915dc	2021-05-23 11:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:53:39.853+03	2021-05-23 11:53:39.863+03	
25eda579-5458-cf7d-8e4b-5e343b2d8523	2021-05-23 11:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:53:50.853+03	2021-05-23 11:53:50.859+03	
efec5186-5d5a-855e-0d3e-ea5b51fb9776	2021-05-23 11:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:54:00.853+03	2021-05-23 11:54:00.872+03	
4f387307-9fe5-aeab-2e22-035c3cf7ad7c	2021-05-23 11:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:54:10.853+03	2021-05-23 11:54:10.864+03	
1d1de43f-8bf2-334d-cc24-381acdadb631	2021-05-23 11:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:54:20.853+03	2021-05-23 11:54:20.862+03	
90995b66-1566-52d7-6773-4a966cfafb3f	2021-05-23 11:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:54:30.853+03	2021-05-23 11:54:30.871+03	
cc5e324c-c993-8e7c-2908-514545099c36	2021-05-23 11:54:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:54:41.854+03	2021-05-23 11:54:41.862+03	
1c9521ec-799b-0a01-29a0-7d52c7301737	2021-05-23 11:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:54:52.853+03	2021-05-23 11:54:52.86+03	
c7bb09a6-2d12-0f71-bfbe-d108672d0c02	2021-05-23 11:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:55:02.853+03	2021-05-23 11:55:02.86+03	
5e9464fe-0479-7937-346b-5b1554b60b2d	2021-05-23 11:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:55:12.853+03	2021-05-23 11:55:12.861+03	
c193b41a-55c1-6ddf-3be9-d07ecf33133d	2021-05-23 11:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:55:22.853+03	2021-05-23 11:55:22.863+03	
46629f95-202b-8e75-5bda-bd1e0a39174b	2021-05-23 11:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:55:32.853+03	2021-05-23 11:55:32.87+03	
d2b2b065-7721-0d93-e278-85778308612c	2021-05-23 11:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:55:42.853+03	2021-05-23 11:55:42.859+03	
9ce98b48-00d4-28dd-2f50-5d16e5d03c99	2021-05-23 11:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:55:52.853+03	2021-05-23 11:55:52.865+03	
b346dd4e-cd28-7e16-501c-3329593a7f4b	2021-05-23 11:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:56:02.853+03	2021-05-23 11:56:02.867+03	
595c942d-641d-9dd4-35c5-4aaa460688a3	2021-05-23 11:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:56:12.853+03	2021-05-23 11:56:12.862+03	
0435afd3-6b44-097c-c317-e61184524a5d	2021-05-23 11:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:56:22.853+03	2021-05-23 11:56:22.861+03	
d98fb0b9-55f9-7a48-f516-7b66cac5b2e1	2021-05-23 11:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:56:32.853+03	2021-05-23 11:56:32.867+03	
00f91f52-4a57-28fb-9151-a4a7af9149e8	2021-05-23 11:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:56:42.853+03	2021-05-23 11:56:42.868+03	
b6ce4836-214c-021a-8569-091565ee78ec	2021-05-23 11:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:56:52.853+03	2021-05-23 11:56:52.862+03	
f86b84be-928f-ef3a-213c-7e61b270188d	2021-05-23 11:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:57:02.853+03	2021-05-23 11:57:02.864+03	
2e6932c7-beef-9ac9-46a1-96b58beec0ef	2021-05-23 11:57:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:57:12.853+03	2021-05-23 11:57:12.859+03	
8e2c1c78-e2c4-1467-b669-6a944c9c3a3b	2021-05-23 11:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:57:22.853+03	2021-05-23 11:57:22.86+03	
4763afc3-10af-ae7f-d626-5fb4b0f0a670	2021-05-23 11:57:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:57:33.853+03	2021-05-23 11:57:33.863+03	
64dc7595-1474-9873-50e1-2299d66ab6cf	2021-05-23 11:57:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:57:43.853+03	2021-05-23 11:57:43.86+03	
1ac8dc7e-38d6-d545-c5c2-aadfcd2163df	2021-05-23 11:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:57:53.853+03	2021-05-23 11:57:53.859+03	
1709f886-30d7-c92f-30c1-102caa410a8d	2021-05-23 11:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:58:04.853+03	2021-05-23 11:58:04.859+03	
72c10ef8-dc25-b254-edea-02cdc1a57393	2021-05-23 11:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:58:14.853+03	2021-05-23 11:58:14.861+03	
5d1d579f-b758-80ef-a933-9695d334c658	2021-05-23 11:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:58:24.853+03	2021-05-23 11:58:24.862+03	
eb29ada3-b4a8-1a3d-a349-f720fff9f30d	2021-05-23 11:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:58:35.853+03	2021-05-23 11:58:35.859+03	
74002166-5829-aabe-a5af-1184df78d4af	2021-05-23 11:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:58:45.853+03	2021-05-23 11:58:45.86+03	
2c31b505-781c-0691-a740-50171af54cfd	2021-05-23 11:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:58:56.853+03	2021-05-23 11:58:56.859+03	
430c1eeb-2c9e-3951-692e-3038fe4c79da	2021-05-23 11:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:59:06.853+03	2021-05-23 11:59:06.861+03	
d0fb1d34-25c5-86e3-0434-4dee06c591a5	2021-05-23 11:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:59:27.853+03	2021-05-23 11:59:27.859+03	
c2881129-0151-08b2-6807-6c9389444e8f	2021-05-23 11:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:59:47.853+03	2021-05-23 11:59:48.144+03	
178b4531-62fc-cd91-9fe1-064dcc582f75	2021-05-23 12:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 12:00:00.853+03	2021-05-23 12:00:00.863+03	ERROR
26956c30-05c9-2f9c-11fe-33d550868b74	2021-05-23 12:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:00:17.853+03	2021-05-23 12:00:17.873+03	
837b0d75-fc2c-130b-4a3e-3629cfffc5a1	2021-05-23 12:00:37.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:00:37.853+03	2021-05-23 12:00:37.865+03	
805a9025-e1b7-d98f-6362-b535779e350f	2021-05-23 12:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:00:58.853+03	2021-05-23 12:00:58.863+03	
009989ae-def8-7446-ab45-c1e977845848	2021-05-23 12:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:01:18.853+03	2021-05-23 12:01:18.863+03	
014fd772-080d-a531-917f-4034831906aa	2021-05-23 12:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:01:38.853+03	2021-05-23 12:01:38.86+03	
03f133c5-ac8b-3703-a22a-38ac183783e8	2021-05-23 12:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:01:59.853+03	2021-05-23 12:01:59.859+03	
b6c9670c-8b47-76cb-a2f7-3e453e3175aa	2021-05-23 12:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:02:20.853+03	2021-05-23 12:02:20.861+03	
ce69a983-e683-55f5-e56e-970e8f7e42e1	2021-05-23 12:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:02:40.853+03	2021-05-23 12:02:40.861+03	
590844e6-73c2-cb90-731e-a989d690dbcc	2021-05-23 12:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:03:00.853+03	2021-05-23 12:03:00.86+03	
cb288400-9847-5959-c3df-a8684e308b22	2021-05-23 12:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:03:20.853+03	2021-05-23 12:03:20.86+03	
626c6d95-0f2b-6c8d-ac8d-682f0c654193	2021-05-23 12:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:03:40.853+03	2021-05-23 12:03:40.863+03	
a95c81d2-7509-d06b-53b6-9c27f1fe44f3	2021-05-23 12:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:04:00.853+03	2021-05-23 12:04:00.86+03	
4ac0f69a-7d23-98f8-f13e-666c6af8f4db	2021-05-23 12:04:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:04:21.852+03	2021-05-23 12:04:21.859+03	
951edb6e-ec53-67b6-9267-d200e00984a9	2021-05-23 12:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:04:42.853+03	2021-05-23 12:04:42.86+03	
c4667c48-b90e-5df6-b78a-497945ffb961	2021-05-23 12:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:05:25.853+03	2021-05-23 12:05:25.875+03	
3b560cd5-112c-cdc1-41be-039668267351	2021-05-23 12:05:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:05:46.853+03	2021-05-23 12:05:46.86+03	
a82913ac-8b10-5e49-712c-23a2c3471bb5	2021-05-23 12:06:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:06:06.854+03	2021-05-23 12:06:07.43+03	
d5f3c3ff-07d7-51ec-fc7e-e5ae441b9593	2021-05-23 12:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:06:27.853+03	2021-05-23 12:06:27.864+03	
7beae664-7e80-33a2-aa66-507937bc2cea	2021-05-23 12:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:06:47.853+03	2021-05-23 12:06:47.871+03	
520bca15-fb0e-3f6b-882c-e8a4066bb611	2021-05-23 12:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:07:08.853+03	2021-05-23 12:07:08.863+03	
14182151-8012-9b1f-2120-0bf057d8926d	2021-05-23 12:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:07:29.853+03	2021-05-23 12:07:29.859+03	
bbce47db-8afa-a538-1e06-09460959e109	2021-05-23 12:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:07:49.853+03	2021-05-23 12:07:49.863+03	
4f7a6edb-cbe8-6ac4-b8df-3f2522496b2b	2021-05-23 12:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:08:09.853+03	2021-05-23 12:08:09.861+03	
554d3f87-b119-32d8-f0b5-b3372cd4e398	2021-05-23 12:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:08:29.853+03	2021-05-23 12:08:29.873+03	
a996ab33-ed6a-9468-44df-4044adb87860	2021-05-23 12:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:08:49.853+03	2021-05-23 12:08:49.877+03	
b24d20da-db8a-c3df-64a1-5f010fb413cd	2021-05-23 12:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:09:09.853+03	2021-05-23 12:09:09.865+03	
8f702b7b-25cc-25ff-3a50-4e16c76eac34	2021-05-23 12:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:09:29.853+03	2021-05-23 12:09:29.861+03	
c0edb5dd-09a1-e7a9-1ce4-f0ef383422b2	2021-05-23 12:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:09:49.853+03	2021-05-23 12:09:49.974+03	
d6b10f4e-cefd-cb4f-e3f9-77e81f2c76c8	2021-05-23 12:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 12:10:00.853+03	2021-05-23 12:10:00.858+03	ERROR
10edf91f-6168-cd98-ba75-54e724cc5708	2021-05-23 12:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:10:19.853+03	2021-05-23 12:10:19.869+03	
fb1260b1-d793-187f-2dee-a5e5229739b2	2021-05-23 12:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:10:39.853+03	2021-05-23 12:10:39.861+03	
bace28ed-a9cf-4772-6186-1095e28ae45f	2021-05-23 12:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:10:59.853+03	2021-05-23 12:10:59.861+03	
206e6cd0-bec0-66d4-c1bf-465c26855c5a	2021-05-23 12:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:11:19.853+03	2021-05-23 12:11:19.863+03	
75083d90-279b-001c-30ad-42b98540f940	2021-05-23 12:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:11:39.853+03	2021-05-23 12:11:39.861+03	
d9f8ebb4-9646-c5cb-ab65-504088185c20	2021-05-23 12:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:11:59.853+03	2021-05-23 12:12:00.1+03	
c429894a-cbfe-0234-6412-1d5dd056e239	2021-05-23 12:12:19.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:12:19.853+03	2021-05-23 12:12:19.862+03	
b0ba2ae2-8f96-de3c-5ea1-3f8f775ac043	2021-05-23 12:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:12:39.853+03	2021-05-23 12:12:39.861+03	
a55f42ff-481f-3473-4701-1ed026cb1595	2021-05-23 12:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:12:59.853+03	2021-05-23 12:12:59.878+03	
aacf9ff0-e330-3f85-8f0a-5e9b4ffda6f6	2021-05-23 12:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:13:19.853+03	2021-05-23 12:13:19.862+03	
3c907932-c8a1-f65f-f3df-8bdb1e74a960	2021-05-23 12:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:13:39.853+03	2021-05-23 12:13:39.86+03	
98d0b9ab-e10a-7709-bb49-d948c79f7d05	2021-05-23 12:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:13:59.853+03	2021-05-23 12:13:59.861+03	
7014af1d-b8c7-b735-d643-7b540a71b764	2021-05-23 12:14:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:14:19.853+03	2021-05-23 12:14:19.895+03	
0243882d-48da-0a2c-8078-8c95902cb044	2021-05-23 12:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:14:39.853+03	2021-05-23 12:14:39.861+03	
ae86db8b-afe1-ab33-0a54-196d9f221939	2021-05-23 12:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:14:59.853+03	2021-05-23 12:14:59.862+03	
3038f20d-f0ea-aaf6-a3f3-c791f7560dd8	2021-05-23 12:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:15:20.853+03	2021-05-23 12:15:20.865+03	
eaa67be7-d55f-c9b0-c32d-b935b3da6b73	2021-05-23 12:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:15:40.853+03	2021-05-23 12:15:40.892+03	
b6d4b512-d147-faca-76c7-c6888699b67f	2021-05-23 12:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:16:00.853+03	2021-05-23 12:16:00.869+03	
f72d21c9-7734-e375-419f-2fcd01cdbf9c	2021-05-23 12:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:16:20.853+03	2021-05-23 12:16:20.862+03	
99c7587f-6c0e-4f10-26f0-355e4f7a91b6	2021-05-23 12:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:16:40.853+03	2021-05-23 12:16:40.863+03	
4f6098b9-2c0b-db47-124b-be1694490743	2021-05-23 12:17:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:17:00.853+03	2021-05-23 12:17:00.871+03	
f2d936b2-897b-3200-72a9-7d2fe657ed2f	2021-05-23 12:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:17:20.853+03	2021-05-23 12:17:20.872+03	
6c6d41c7-04fe-4a19-4eab-9b65b956c2db	2021-05-23 12:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:17:40.853+03	2021-05-23 12:17:40.864+03	
7fc2e0d8-3326-d73f-4a88-a1baf16fbe6e	2021-05-23 12:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:18:00.853+03	2021-05-23 12:18:00.862+03	
8ee18821-6066-a5bf-cd82-69bb78e4be3f	2021-05-23 12:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:18:20.853+03	2021-05-23 12:18:20.87+03	
fd03819c-5108-4ed5-73e8-ac83d7ad1046	2021-05-23 12:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:18:41.853+03	2021-05-23 12:18:41.867+03	
4d2d1b64-e7b7-20a0-a366-0b93a8ed2ec8	2021-05-23 12:19:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:19:01.855+03	2021-05-23 12:19:01.874+03	
bbd2a471-adfd-d725-0e33-74116f8c1874	2021-05-23 12:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:19:22.853+03	2021-05-23 12:19:22.866+03	
56f7db5e-2395-7f4c-0d78-664e9a97b22b	2021-05-23 12:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:19:42.853+03	2021-05-23 12:19:42.861+03	
0400ce5e-4c56-6490-6cbc-a2f2de5ed1b2	2021-05-23 12:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 12:20:00.853+03	2021-05-23 12:20:00.864+03	ERROR
450534de-f8c3-8339-52e0-6b750a3464d3	2021-05-23 11:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:59:17.853+03	2021-05-23 11:59:17.86+03	
89d3ba5d-4dc9-3bc7-a5d9-ddf4c16d407e	2021-05-23 11:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:59:37.853+03	2021-05-23 11:59:37.86+03	
a6b1b52b-688a-7e6c-e09b-95f3658bc163	2021-05-23 11:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 11:59:57.853+03	2021-05-23 11:59:57.861+03	
e105b39f-c7e1-001e-d699-540698a9afa3	2021-05-23 12:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:00:07.853+03	2021-05-23 12:00:07.865+03	
8542c85e-2c95-8202-734e-37e60d007cc2	2021-05-23 12:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:00:27.853+03	2021-05-23 12:00:27.87+03	
f8ae689f-81e7-68d9-fe6f-45044af4ff00	2021-05-23 12:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:00:47.853+03	2021-05-23 12:00:47.864+03	
e1031ee7-3cb8-ac98-f4b1-609fdd8c04a9	2021-05-23 12:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:01:08.853+03	2021-05-23 12:01:08.86+03	
53e1c898-a920-b78c-6a8d-2d005a703ba4	2021-05-23 12:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:01:28.853+03	2021-05-23 12:01:28.873+03	
ec53b281-2978-9629-dbd7-ca616d5d2604	2021-05-23 12:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:01:49.852+03	2021-05-23 12:01:49.861+03	
f07fe3dd-614c-e927-ac32-5ea23ab328b0	2021-05-23 12:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:02:09.853+03	2021-05-23 12:02:09.861+03	
d1ba7003-8958-26f6-0a43-22953fef4945	2021-05-23 12:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:02:30.853+03	2021-05-23 12:02:30.863+03	
f050cbc2-7899-04c5-f72a-4d02ef689adf	2021-05-23 12:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:02:50.853+03	2021-05-23 12:02:50.874+03	
c7cf7b96-d523-fb6e-5a1d-2489e0428a16	2021-05-23 12:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:03:10.853+03	2021-05-23 12:03:10.86+03	
49a71406-66a1-15c7-9a17-adeaa6e31049	2021-05-23 12:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:03:30.853+03	2021-05-23 12:03:30.902+03	
8740acfe-7284-7114-8a0d-d4988d112ec9	2021-05-23 12:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:03:50.853+03	2021-05-23 12:03:50.861+03	
fdb42689-985c-80d4-f982-35129e50c477	2021-05-23 12:04:10.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:04:10.858+03	2021-05-23 12:04:10.867+03	
bdcbdaf5-6b4a-60a0-c5c7-b63275839f0c	2021-05-23 12:04:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:04:31.854+03	2021-05-23 12:04:31.865+03	
cad32527-5e19-5609-6fec-bf0fa25bc5b4	2021-05-23 12:05:15.154	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:05:15.154+03	2021-05-23 12:05:15.176+03	
1d9b6d17-5eb2-f923-769f-52528f78cd16	2021-05-23 12:05:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:05:36.852+03	2021-05-23 12:05:36.872+03	
5b48addb-f439-1aa5-7303-007d118d34f2	2021-05-23 12:05:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:05:56.854+03	2021-05-23 12:05:56.862+03	
154e609f-b8a4-c2c5-7721-f6e115c74a31	2021-05-23 12:06:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:06:17.853+03	2021-05-23 12:06:17.878+03	
198e17ab-25fe-cb3b-49b5-be4bfd119ae3	2021-05-23 12:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:06:37.853+03	2021-05-23 12:06:37.862+03	
ae53c52f-79bd-a52f-6680-63f431686a79	2021-05-23 12:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:06:58.852+03	2021-05-23 12:06:58.86+03	
b0c872a5-0b96-0229-efa3-62b5e9f05c49	2021-05-23 12:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:07:19.853+03	2021-05-23 12:07:20.195+03	
0c23821a-ea90-3fe7-96d0-a41371955538	2021-05-23 12:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:07:39.853+03	2021-05-23 12:07:39.86+03	
30e025c0-d948-6d6d-f2d9-140edffcc19d	2021-05-23 12:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:07:59.853+03	2021-05-23 12:07:59.863+03	
77b71da0-78cc-5b7f-5bd3-c13bd79f6217	2021-05-23 12:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:08:19.853+03	2021-05-23 12:08:19.87+03	
21a6d337-ee35-db7d-3774-f172a0c04647	2021-05-23 12:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:08:39.853+03	2021-05-23 12:08:39.863+03	
11093a6f-c376-43db-2fc7-4fff4c76ddfc	2021-05-23 12:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:08:59.853+03	2021-05-23 12:08:59.861+03	
918daa1e-f0e8-0674-0f71-cd687020a744	2021-05-23 12:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:09:19.853+03	2021-05-23 12:09:19.87+03	
731d6170-428b-2f78-9b4a-3726ef5e3050	2021-05-23 12:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:09:39.853+03	2021-05-23 12:09:39.901+03	
f333175c-e42d-0591-b786-ffd2ad1925f1	2021-05-23 12:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:09:59.853+03	2021-05-23 12:09:59.861+03	
ad96581e-72fa-5302-c6d0-276ea5789cfc	2021-05-23 12:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:10:09.853+03	2021-05-23 12:10:09.864+03	
4b4ccee3-83c4-cf1c-3e7f-85e20085ebfb	2021-05-23 12:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:10:29.853+03	2021-05-23 12:10:29.873+03	
f64b5a19-1095-1878-5b59-8b7b003415f3	2021-05-23 12:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:10:49.853+03	2021-05-23 12:10:49.862+03	
169fa0f6-144b-e6c4-6f6f-8b5ab8d0908b	2021-05-23 12:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:11:09.853+03	2021-05-23 12:11:09.862+03	
8f8f41ec-82c0-ecf4-bdb5-81d7c954284c	2021-05-23 12:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:11:29.853+03	2021-05-23 12:11:29.863+03	
13c1c413-33c1-f190-621d-1d587e326d72	2021-05-23 12:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:11:49.853+03	2021-05-23 12:11:49.863+03	
28369f30-3df4-7cb6-c460-18130dd6b96a	2021-05-23 12:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:12:09.853+03	2021-05-23 12:12:09.862+03	
9c59954f-a5fc-52cb-9a23-118ed0732f39	2021-05-23 12:12:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:12:29.853+03	2021-05-23 12:12:29.868+03	
a5428a7a-1823-71be-d5e0-4bac80b70ca9	2021-05-23 12:12:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:12:49.853+03	2021-05-23 12:12:49.862+03	
07f67228-136b-3803-abf5-e572e35ed5d1	2021-05-23 12:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:13:09.853+03	2021-05-23 12:13:09.865+03	
ed5ca933-cf44-41f8-7ade-c4a59a77e1e8	2021-05-23 12:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:13:29.853+03	2021-05-23 12:13:29.868+03	
8ac72cb6-3bf2-8487-df91-98a9c8b9fd37	2021-05-23 12:13:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:13:49.853+03	2021-05-23 12:13:49.862+03	
46f71f9f-892c-f27b-6616-bfd0b4e6d0e5	2021-05-23 12:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:14:09.853+03	2021-05-23 12:14:09.885+03	
9f2ecb5f-3b0a-551e-1280-0720f094cee3	2021-05-23 12:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:14:29.853+03	2021-05-23 12:14:29.865+03	
f9ea77d3-7c50-655f-6564-530494a2d1ff	2021-05-23 12:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:14:49.853+03	2021-05-23 12:14:49.86+03	
14cc61c9-3145-010e-d2eb-5836023de165	2021-05-23 12:15:09.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:15:09.858+03	2021-05-23 12:15:09.873+03	
3c0495b4-35b5-0b64-089c-76fb215e229d	2021-05-23 12:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:15:30.853+03	2021-05-23 12:15:30.86+03	
40896725-4c87-b789-acdd-59dc9c5108c3	2021-05-23 12:15:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:15:50.853+03	2021-05-23 12:15:50.866+03	
6497bac3-0133-e4f5-1f3d-e04384402077	2021-05-23 12:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:16:10.853+03	2021-05-23 12:16:10.874+03	
a79a7efb-16b2-171d-bf1f-dfaae29b132d	2021-05-23 12:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:16:30.853+03	2021-05-23 12:16:31.185+03	
5e3b9f46-aa06-aaa4-f0f5-de66b5d8b98b	2021-05-23 12:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:16:50.853+03	2021-05-23 12:16:50.863+03	
37213352-e7a7-a54e-0795-3832d1581ee7	2021-05-23 12:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:17:10.853+03	2021-05-23 12:17:10.871+03	
bf1928f9-1cb3-0f5a-16d1-23452d1b9ad2	2021-05-23 12:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:17:30.853+03	2021-05-23 12:17:30.863+03	
cf8ac800-de19-8b1d-66b0-bfc540f3107a	2021-05-23 12:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:17:50.853+03	2021-05-23 12:17:50.871+03	
5c8c8764-6c33-147e-ab9d-86586168f9d4	2021-05-23 12:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:18:10.853+03	2021-05-23 12:18:10.864+03	
c80442a9-f5a9-3f3e-5295-3104485b97d3	2021-05-23 12:18:30.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:18:30.859+03	2021-05-23 12:18:30.869+03	
46a02ab8-6fe8-d2dd-d7fb-f3292be69286	2021-05-23 12:18:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:18:51.854+03	2021-05-23 12:18:51.863+03	
76375eda-82b3-58b9-ed44-74474ba28102	2021-05-23 12:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:19:12.853+03	2021-05-23 12:19:12.869+03	
cf502a7c-d063-8613-6218-d36bbb4a2ba4	2021-05-23 12:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:19:32.853+03	2021-05-23 12:19:33.151+03	
5a56ffb8-7814-7522-15d6-b5bed272df16	2021-05-23 12:19:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:19:52.853+03	2021-05-23 12:19:52.863+03	
cc9b14d5-a2cd-2563-85c1-bf8fcf3ce439	2021-05-23 12:20:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:20:02.853+03	2021-05-23 12:20:02.862+03	
06498a0e-d726-b692-395d-ad9337231f54	2021-05-23 12:20:12.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:20:12.853+03	2021-05-23 12:20:12.874+03	
805bc632-7ee8-0f4a-8cb9-a6d944b21d23	2021-05-23 12:20:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:20:32.853+03	2021-05-23 12:20:32.878+03	
96a46deb-2bb6-5849-67df-4c0453b0b3c0	2021-05-23 12:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:20:52.853+03	2021-05-23 12:20:52.867+03	
ebe0cf4e-e8d7-1783-927b-77c2f6fc7983	2021-05-23 12:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:21:12.853+03	2021-05-23 12:21:12.869+03	
15e24ab6-d598-6b39-3ae8-300e3352906e	2021-05-23 12:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:21:32.853+03	2021-05-23 12:21:32.869+03	
9aaff404-0ad2-709c-3be7-80ca2d6ab9d1	2021-05-23 12:21:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:21:52.853+03	2021-05-23 12:21:52.867+03	
48e50226-c6b3-82fd-4250-359aa6156f5d	2021-05-23 12:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:22:12.853+03	2021-05-23 12:22:12.866+03	
cc1f287c-40cf-0098-7b75-241b2e87ed8f	2021-05-23 12:22:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:22:32.853+03	2021-05-23 12:22:32.871+03	
ee69b2fd-7445-e03f-a9b4-941573a1eb46	2021-05-23 12:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:22:53.853+03	2021-05-23 12:22:53.863+03	
23c7b9a8-0341-c01e-529f-706b41d44b82	2021-05-23 12:23:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:23:13.853+03	2021-05-23 12:23:13.867+03	
0d3ae5d7-f84d-be40-2504-230cd9b50401	2021-05-23 12:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:23:33.853+03	2021-05-23 12:23:33.868+03	
f430a1c1-41cb-9521-8511-e4fba5832f79	2021-05-23 12:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:23:53.853+03	2021-05-23 12:23:53.865+03	
7b64f75d-a43c-7923-ba40-294698df82cb	2021-05-23 12:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:24:13.853+03	2021-05-23 12:24:13.892+03	
8a8462fb-c7d1-3c8c-fd40-68b33ac91458	2021-05-23 12:24:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:24:33.853+03	2021-05-23 12:24:33.883+03	
2868175a-c56c-f732-c5fb-37580dc5aa90	2021-05-23 12:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:24:53.853+03	2021-05-23 12:24:53.862+03	
f326bb1b-cea5-7a91-2e86-0d61b67d3967	2021-05-23 12:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:25:13.853+03	2021-05-23 12:25:13.864+03	
ca220ab2-b7b1-e759-cd20-0de88e4bb92b	2021-05-23 12:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:25:33.853+03	2021-05-23 12:25:33.861+03	
48124296-a217-c9c9-a17c-f64b9b63e352	2021-05-23 12:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:25:53.853+03	2021-05-23 12:25:53.863+03	
82fe5fc6-2302-0ede-744f-d4ec3d0efba0	2021-05-23 12:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:26:13.853+03	2021-05-23 12:26:14.026+03	
a6548344-2674-3946-21bc-551d5193c7ae	2021-05-23 12:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:26:33.853+03	2021-05-23 12:26:33.861+03	
3e642024-7193-e762-018e-d5773dd4852b	2021-05-23 12:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:26:53.853+03	2021-05-23 12:26:53.866+03	
9e8cda89-0d5c-56c6-6e37-d1033b5b4371	2021-05-23 12:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:27:13.853+03	2021-05-23 12:27:13.871+03	
9144b216-0b00-85b4-72a9-cfdaa9152807	2021-05-23 12:27:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:27:33.853+03	2021-05-23 12:27:33.871+03	
da4bde1c-380b-8c89-3262-04df9ebaf774	2021-05-23 12:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:27:53.853+03	2021-05-23 12:27:53.875+03	
6c8085a6-ec56-22ee-a075-b483f08a589c	2021-05-23 12:28:13.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:28:13.853+03	2021-05-23 12:28:13.94+03	
0f957f3b-d9ae-7652-4205-691043cba183	2021-05-23 12:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:28:33.853+03	2021-05-23 12:28:33.873+03	
00ee41c0-91f4-cefc-9407-d8fa2a358124	2021-05-23 12:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:28:53.853+03	2021-05-23 12:28:53.879+03	
8c01f767-4d2e-b4b4-531a-0be7a71707b7	2021-05-23 12:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:29:13.853+03	2021-05-23 12:29:13.863+03	
20e33097-5265-ea5b-e74a-76cdaca5f20f	2021-05-23 12:29:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:29:33.853+03	2021-05-23 12:29:33.863+03	
04409b9a-acd0-6bb1-6a00-30ee7a2d62ad	2021-05-23 12:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:29:53.853+03	2021-05-23 12:29:53.864+03	
99159c95-1dae-2b72-a2f9-a9ea3cdc22f6	2021-05-23 12:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:30:03.853+03	2021-05-23 12:30:03.863+03	
88bbfd7d-9910-a59d-60e7-14292f3c864f	2021-05-23 12:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:30:24.853+03	2021-05-23 12:30:24.86+03	
f5fab292-561b-40ee-f7d3-ae3a93d8c665	2021-05-23 12:30:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:30:44.853+03	2021-05-23 12:30:44.87+03	
a4fb8f52-7534-02bd-db33-3da17c427c7b	2021-05-23 12:31:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:31:04.853+03	2021-05-23 12:31:04.86+03	
cad15d17-adf1-2727-be29-c27e827f25aa	2021-05-23 12:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:31:25.853+03	2021-05-23 12:31:25.862+03	
edea0336-f624-ba4a-9bc0-c1b59a1a395e	2021-05-23 12:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:31:45.853+03	2021-05-23 12:31:45.86+03	
593df7ae-94a8-0011-9cc5-ef3cb76eab39	2021-05-23 12:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:32:05.853+03	2021-05-23 12:32:05.86+03	
8fb9ae55-55b5-19b8-b7dc-717380bf1059	2021-05-23 12:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:32:25.853+03	2021-05-23 12:32:25.86+03	
3a4bbdd7-dd66-7837-3e51-67bbdcf647e2	2021-05-23 12:32:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:32:46.853+03	2021-05-23 12:32:46.872+03	
7df81bd3-a75a-fbc4-36dd-e0ad2cb124be	2021-05-23 12:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:33:07.853+03	2021-05-23 12:33:07.86+03	
dfbcf496-6872-8144-8354-df4b51f654b3	2021-05-23 12:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:33:27.853+03	2021-05-23 12:33:27.864+03	
dfcffa54-9fa1-ec75-12e3-7a717a73f7b7	2021-05-23 12:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:33:47.853+03	2021-05-23 12:33:47.861+03	
cf13074b-1fe2-20bb-79f6-ff1106793687	2021-05-23 12:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:34:08.853+03	2021-05-23 12:34:08.86+03	
ff19c28e-135a-bb10-5800-40cd58a1dca9	2021-05-23 12:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:34:28.853+03	2021-05-23 12:34:28.862+03	
88b36de5-20fd-0eaf-a51d-c8f9ee32a380	2021-05-23 12:34:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:34:49.853+03	2021-05-23 12:34:50.179+03	
4148240b-2375-c752-e772-c478573e9919	2021-05-23 12:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:35:09.853+03	2021-05-23 12:35:09.861+03	
3439ef00-d8b2-da1c-0b86-4842139a4bd4	2021-05-23 12:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:35:30.853+03	2021-05-23 12:35:30.861+03	
c3a1826c-a45e-8ae0-729e-5f601a5169b9	2021-05-23 12:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:35:50.853+03	2021-05-23 12:35:50.86+03	
fb019923-cc91-690f-4d57-14884c6ac441	2021-05-23 12:36:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:36:11.852+03	2021-05-23 12:36:11.874+03	
ef2a0628-6250-c5e1-856c-f0268094d423	2021-05-23 12:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:36:32.853+03	2021-05-23 12:36:32.865+03	
5507849c-c9be-34a3-0271-91ec6c63f707	2021-05-23 12:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:36:53.853+03	2021-05-23 12:36:53.859+03	
aaf0cbb7-21a3-c959-d326-05b33f4eab19	2021-05-23 12:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:37:15.853+03	2021-05-23 12:37:15.864+03	
e468b7ed-8f44-d5a2-ddfe-718355b1404d	2021-05-23 12:37:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:37:36.853+03	2021-05-23 12:37:36.861+03	
38f488c3-a240-a5a7-2547-e1c7892c5b02	2021-05-23 12:37:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:37:57.853+03	2021-05-23 12:37:57.871+03	
50becc2d-d5e9-8e1e-1a21-08f90701855f	2021-05-23 12:38:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:38:17.853+03	2021-05-23 12:38:17.861+03	
1c0d766f-9ae7-31f6-6ab0-ae0d5983d93c	2021-05-23 12:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:38:37.853+03	2021-05-23 12:38:37.86+03	
64ae7821-86b6-b07a-1bc3-2c5274da3f86	2021-05-23 12:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:38:57.853+03	2021-05-23 12:38:57.86+03	
00840661-aea8-9dd8-e655-d46856e0ba22	2021-05-23 12:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:39:17.853+03	2021-05-23 12:39:17.861+03	
73eb84d1-078b-41bc-b88e-339782ae0713	2021-05-23 12:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:39:38.852+03	2021-05-23 12:39:38.861+03	
acd678f9-27c4-b46f-31d2-46daa21b80fc	2021-05-23 12:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:39:59.853+03	2021-05-23 12:39:59.862+03	
7c894795-f8e4-aaac-91d8-a94daedd0c8a	2021-05-23 12:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:40:09.853+03	2021-05-23 12:40:09.86+03	
f681e043-15cf-ed01-f0a0-b5f3846e6beb	2021-05-23 12:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:40:29.853+03	2021-05-23 12:40:29.861+03	
c56596bd-2a5f-4153-7487-d739b3def96a	2021-05-23 12:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:40:50.852+03	2021-05-23 12:40:50.859+03	
59af859a-3602-1918-ec22-3caf9b686c4c	2021-05-23 12:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:20:22.853+03	2021-05-23 12:20:22.86+03	
7201a7fb-1b77-871a-7ecc-a6583e07caff	2021-05-23 12:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:20:42.853+03	2021-05-23 12:20:42.862+03	
1fc6eac0-cf49-a5f5-d330-da846d75f501	2021-05-23 12:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:21:02.853+03	2021-05-23 12:21:02.862+03	
6a282bba-3af0-5e96-5de9-46782620aeac	2021-05-23 12:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:21:22.853+03	2021-05-23 12:21:22.863+03	
7dfe1a33-b9ec-65f8-cc83-dc3e061571a7	2021-05-23 12:21:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:21:42.853+03	2021-05-23 12:21:42.861+03	
39c4b823-63ed-2c00-9e97-58b7671b9655	2021-05-23 12:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:22:02.853+03	2021-05-23 12:22:02.863+03	
14abc117-8176-5c38-72bb-da5f50f8141d	2021-05-23 12:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:22:22.853+03	2021-05-23 12:22:22.87+03	
bf199cb3-5149-948f-b2aa-9971fd748ef3	2021-05-23 12:22:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:22:42.854+03	2021-05-23 12:22:42.869+03	
9d3856fe-13ff-d9ce-0896-f62b7597d330	2021-05-23 12:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:23:03.853+03	2021-05-23 12:23:03.862+03	
b0c196e2-2b2b-036c-dbfb-779c3c9cd1a0	2021-05-23 12:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:23:23.853+03	2021-05-23 12:23:24.176+03	
d73b5ae3-5095-cac6-6eee-b6a80e2905b9	2021-05-23 12:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:23:43.853+03	2021-05-23 12:23:43.865+03	
1cca1b5a-87ef-3a13-4a37-29ed4f352fc8	2021-05-23 12:24:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:24:03.853+03	2021-05-23 12:24:04.091+03	
af608b0f-241b-010f-100f-4aecff2c0ed6	2021-05-23 12:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:24:23.853+03	2021-05-23 12:24:23.865+03	
3384c0a8-c0d7-4468-8c1a-63c11db3d665	2021-05-23 12:24:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:24:43.853+03	2021-05-23 12:24:43.863+03	
72c2c425-eeba-6cee-ba5c-faea476be1cb	2021-05-23 12:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:25:03.853+03	2021-05-23 12:25:03.862+03	
da3d8ea4-daea-5132-a005-dda41a293a2c	2021-05-23 12:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:25:23.853+03	2021-05-23 12:25:23.865+03	
10b03c30-2e83-9ce3-5b56-81e2e8b24a39	2021-05-23 12:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:25:43.853+03	2021-05-23 12:25:43.874+03	
41727933-7b85-9c1f-4dad-465a48c040f4	2021-05-23 12:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:26:03.853+03	2021-05-23 12:26:03.867+03	
1fc4a413-d295-fbe0-ddf3-f8733d973ed3	2021-05-23 12:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:26:23.853+03	2021-05-23 12:26:23.863+03	
10d67b98-1d21-9397-0ee2-5e45c9427433	2021-05-23 12:26:43.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:26:43.853+03	2021-05-23 12:26:43.862+03	
a727c6f3-6650-c3ac-4a55-c40379153cc6	2021-05-23 12:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:27:03.853+03	2021-05-23 12:27:03.928+03	
4e8c9f77-acd3-9340-f90b-0d607937c1a7	2021-05-23 12:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:27:23.853+03	2021-05-23 12:27:23.878+03	
d6b72895-a260-75dd-3933-ee6f2e33cc41	2021-05-23 12:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:27:43.853+03	2021-05-23 12:27:43.867+03	
b43d0761-4899-35cd-e886-959b8559292d	2021-05-23 12:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:28:03.853+03	2021-05-23 12:28:03.861+03	
e91dd542-c3fe-dc23-43f2-931ab89c42fb	2021-05-23 12:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:28:23.853+03	2021-05-23 12:28:23.865+03	
6631315e-120d-ad64-e197-2a2d402be629	2021-05-23 12:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:28:43.853+03	2021-05-23 12:28:43.876+03	
9ffbd897-9ad9-f1b4-94d8-c428f4ca50c9	2021-05-23 12:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:29:03.853+03	2021-05-23 12:29:03.862+03	
2e6c854a-94d9-1013-2825-646e1bc44a27	2021-05-23 12:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:29:23.853+03	2021-05-23 12:29:23.86+03	
7138df78-47c7-fd48-ed83-084fe019c275	2021-05-23 12:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:29:43.853+03	2021-05-23 12:29:43.865+03	
bc2bb57a-c1b8-07a4-c43c-8cb6bd6da168	2021-05-23 12:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 12:30:00.853+03	2021-05-23 12:30:00.868+03	ERROR
2bc49190-feb0-33ae-8271-713a1cdde476	2021-05-23 12:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:30:13.853+03	2021-05-23 12:30:13.862+03	
e9211155-afd7-08a3-7428-0667dca50e5a	2021-05-23 12:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:30:34.853+03	2021-05-23 12:30:34.864+03	
14ade45f-2c64-b38d-24c5-f529ca78c911	2021-05-23 12:30:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:30:54.853+03	2021-05-23 12:30:54.866+03	
402fe925-843e-ce43-d5b1-4bf232802379	2021-05-23 12:31:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:31:14.853+03	2021-05-23 12:31:14.87+03	
72fee725-6cbd-a83e-5137-4de4455a9089	2021-05-23 12:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:31:35.853+03	2021-05-23 12:31:35.86+03	
bc4d1a3b-342b-9284-fef3-cd7875ea15bc	2021-05-23 12:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:31:55.853+03	2021-05-23 12:31:55.861+03	
70b79e3b-087d-a836-37cd-cc6a8bbc0173	2021-05-23 12:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:32:15.853+03	2021-05-23 12:32:15.861+03	
083516fe-e821-c685-8b80-724431d6fcc1	2021-05-23 12:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:32:35.853+03	2021-05-23 12:32:35.862+03	
b13ff480-92ce-990a-1486-7a5af3cb1a71	2021-05-23 12:32:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:32:56.854+03	2021-05-23 12:32:56.862+03	
81366f62-6e20-d2bd-1a73-4a04988398d1	2021-05-23 12:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:33:17.853+03	2021-05-23 12:33:17.865+03	
54fe7372-71d3-0dbf-9d80-da57d5385ba2	2021-05-23 12:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:33:37.853+03	2021-05-23 12:33:37.861+03	
c506008a-53eb-a65f-be35-900cd7202f0c	2021-05-23 12:33:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:33:58.853+03	2021-05-23 12:33:58.875+03	
bd81607e-dc91-901f-d18b-4a2b26f4e353	2021-05-23 12:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:34:18.853+03	2021-05-23 12:34:18.862+03	
1adc3b54-db48-d526-26df-5e6df6886818	2021-05-23 12:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:34:39.853+03	2021-05-23 12:34:39.93+03	
473e7439-7829-71e3-ba6c-49277aec585c	2021-05-23 12:34:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:34:59.853+03	2021-05-23 12:34:59.863+03	
cf121a0f-a0af-ba1d-5276-93c75205238b	2021-05-23 12:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:35:20.852+03	2021-05-23 12:35:20.859+03	
e66feae9-4bd3-adb0-843b-93750850b538	2021-05-23 12:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:35:40.853+03	2021-05-23 12:35:40.859+03	
b388c531-3b9c-5a9e-687e-63e09ba68910	2021-05-23 12:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:36:00.853+03	2021-05-23 12:36:00.863+03	
4cab0f8b-e80a-83b0-de17-c3fee8b73ca0	2021-05-23 12:36:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:36:21.854+03	2021-05-23 12:36:21.863+03	
77995288-a05b-3a92-5b7b-2f51f3dcd8b2	2021-05-23 12:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:36:42.853+03	2021-05-23 12:36:42.861+03	
d6a0886f-481b-8543-f5a0-8ffbed7089cb	2021-05-23 12:37:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:37:04.853+03	2021-05-23 12:37:04.871+03	
1df4f714-1acd-6253-8900-9c992b0222f5	2021-05-23 12:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:37:25.853+03	2021-05-23 12:37:25.861+03	
4424f142-5a2c-6642-68f2-9d66d31a092e	2021-05-23 12:37:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:37:47.853+03	2021-05-23 12:37:47.863+03	
2dd94dd2-7d1a-9f90-87ca-17e710744cb1	2021-05-23 12:38:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:38:07.853+03	2021-05-23 12:38:07.872+03	
af059dc8-1249-9bc1-f5e2-3397f7375407	2021-05-23 12:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:38:27.853+03	2021-05-23 12:38:27.86+03	
f6fa31e0-4fe9-a0ac-bd9c-4e7cb0bbfcfe	2021-05-23 12:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:38:47.853+03	2021-05-23 12:38:47.862+03	
13083b89-6017-9292-684e-7ca2e584e244	2021-05-23 12:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:39:07.853+03	2021-05-23 12:39:07.861+03	
69b1c2c9-9034-a1e5-ca4e-5e7a120d9272	2021-05-23 12:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:39:27.853+03	2021-05-23 12:39:27.861+03	
b374e7f9-171b-225c-fc64-47125ccb7202	2021-05-23 12:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:39:48.853+03	2021-05-23 12:39:48.865+03	
bf00e9fa-f403-f3ff-a6af-93937bf40789	2021-05-23 12:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 12:40:00.853+03	2021-05-23 12:40:00.859+03	ERROR
1da4d24f-97d4-fc11-8bc8-505717ebf087	2021-05-23 12:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:40:19.853+03	2021-05-23 12:40:19.863+03	
da41f495-dd7e-f425-a408-70ceefc36ae9	2021-05-23 12:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:40:39.853+03	2021-05-23 12:40:39.873+03	
a1a1be90-9589-2ad9-3b0b-e9790cf4ab41	2021-05-23 12:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:41:00.852+03	2021-05-23 12:41:00.859+03	
6e1c05d0-f5be-a6c7-236e-8c638e976f07	2021-05-23 12:41:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:41:10.853+03	2021-05-23 12:41:10.86+03	
2cddcde9-a810-5f10-d586-f645da2b9f92	2021-05-23 12:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:41:31.853+03	2021-05-23 12:41:31.86+03	
479308be-1fc7-44a4-2f60-c17359e46dbd	2021-05-23 12:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:41:52.853+03	2021-05-23 12:41:52.861+03	
7f85baae-00a1-f611-e490-2fea89d81056	2021-05-23 12:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:42:12.853+03	2021-05-23 12:42:12.861+03	
f8d64411-d920-2700-3234-69b73a0dc039	2021-05-23 12:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:42:32.853+03	2021-05-23 12:42:32.867+03	
55e27a4f-6f22-eb95-099f-0b55a991496c	2021-05-23 12:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:42:52.853+03	2021-05-23 12:42:52.859+03	
1a756de4-9d78-7aa9-fab1-b012925adbdb	2021-05-23 12:43:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:43:12.853+03	2021-05-23 12:43:12.862+03	
cc274cee-bea7-4b58-0208-3195bf1ccebb	2021-05-23 12:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:43:32.853+03	2021-05-23 12:43:32.862+03	
d8cf83b4-fa3e-202d-7255-7d981c1963d4	2021-05-23 12:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:43:52.853+03	2021-05-23 12:43:52.86+03	
e3957424-9034-7e90-5447-c82f3aa8e510	2021-05-23 12:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:44:12.853+03	2021-05-23 12:44:12.861+03	
eada7155-7f17-7776-4f8c-550cecd5bc3d	2021-05-23 12:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:44:32.853+03	2021-05-23 12:44:32.859+03	
8f36b063-92ec-8d94-34f6-c0a1f9d4bcc6	2021-05-23 12:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:44:52.853+03	2021-05-23 12:44:52.862+03	
6203c7bf-869c-e870-64ec-c5b008dc433f	2021-05-23 12:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:45:12.853+03	2021-05-23 12:45:12.874+03	
115b0574-751d-f34a-804e-be946c0175cd	2021-05-23 12:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:45:32.853+03	2021-05-23 12:45:32.86+03	
42b4dacd-10e1-40e5-00d9-fcc096cf44bc	2021-05-23 12:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:45:53.853+03	2021-05-23 12:45:53.861+03	
24675a8d-b268-566a-537d-a54add09a1aa	2021-05-23 12:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:46:13.853+03	2021-05-23 12:46:13.861+03	
8633fd66-550a-0993-a32d-6950b2362d15	2021-05-23 12:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:46:33.853+03	2021-05-23 12:46:33.86+03	
5734cbef-1705-f9ed-c990-ff87b3e5b9af	2021-05-23 12:46:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:46:53.853+03	2021-05-23 12:46:53.859+03	
06384b33-0b9e-054e-5600-5042a36dadc6	2021-05-23 12:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:47:14.853+03	2021-05-23 12:47:14.859+03	
a36f70fb-63b1-910c-dc04-c0e07525cbaf	2021-05-23 12:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:47:35.852+03	2021-05-23 12:47:35.86+03	
38a4c8bb-9dd2-5f63-823b-93416f559b63	2021-05-23 12:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:47:55.853+03	2021-05-23 12:47:55.86+03	
c33a59ad-c4a7-3911-f0ad-3f2ce2d4f22d	2021-05-23 12:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:48:15.853+03	2021-05-23 12:48:15.859+03	
9d0df5cc-258e-301e-ea98-c292f7866f49	2021-05-23 12:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:48:35.853+03	2021-05-23 12:48:35.86+03	
a29c0d8c-59d4-06b2-31a1-2f8a5dff297d	2021-05-23 12:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:48:55.853+03	2021-05-23 12:48:55.859+03	
9e0c05f5-d4d0-2d16-d262-98996dd7d940	2021-05-23 12:49:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:49:16.854+03	2021-05-23 12:49:16.863+03	
029bee83-0141-9e02-44f7-692d941245ab	2021-05-23 12:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:49:37.853+03	2021-05-23 12:49:37.859+03	
35d9ddf1-1b67-cc0f-58cd-562859e79613	2021-05-23 12:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:49:58.853+03	2021-05-23 12:49:58.862+03	
f0a8eb95-fc11-9655-7ad8-9276a67c056c	2021-05-23 12:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:50:08.853+03	2021-05-23 12:50:08.908+03	
e8586271-ca93-6a3e-dbe0-a4a512d45811	2021-05-23 12:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:50:28.853+03	2021-05-23 12:50:28.867+03	
7111b79a-7513-91ca-abc6-b63a34580273	2021-05-23 12:50:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:50:48.853+03	2021-05-23 12:50:48.917+03	
a741d2ae-3901-b439-1a7a-b38e86b0466c	2021-05-23 12:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:51:09.853+03	2021-05-23 12:51:09.86+03	
2eb5f7d3-4117-7498-e186-9c992400db5a	2021-05-23 12:51:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:51:29.853+03	2021-05-23 12:51:29.859+03	
b5b88bf4-1745-85e7-8f2a-d036082d1d2f	2021-05-23 12:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:51:50.853+03	2021-05-23 12:51:50.861+03	
04551bbe-9839-3f3c-9201-f3de2bcf3cbd	2021-05-23 12:52:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:52:11.853+03	2021-05-23 12:52:11.86+03	
107712cd-ea49-6775-918e-02a1327e7fe5	2021-05-23 12:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:52:32.853+03	2021-05-23 12:52:32.859+03	
c5cf2b1b-ee65-1712-92cf-e3e9a13ff9f5	2021-05-23 12:52:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:52:52.853+03	2021-05-23 12:52:52.86+03	
31219d71-4ed5-5e35-3da2-e7f85cb213c3	2021-05-23 12:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:53:12.853+03	2021-05-23 12:53:12.863+03	
5bc32bd0-466e-d9a3-3da8-419f4944e091	2021-05-23 12:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:53:32.853+03	2021-05-23 12:53:32.863+03	
ca61cee5-c372-b76a-02a6-dfed9f73e664	2021-05-23 12:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:53:53.853+03	2021-05-23 12:53:53.861+03	
25811a21-dc7b-dd26-7a19-0bcc574827f4	2021-05-23 12:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:54:14.853+03	2021-05-23 12:54:14.86+03	
9bf679ee-5b2b-9710-4ef0-8def5aa809e6	2021-05-23 12:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:54:35.853+03	2021-05-23 12:54:35.858+03	
ef05d87b-64a3-3d88-268e-800565f9ffeb	2021-05-23 12:54:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:54:56.852+03	2021-05-23 12:54:56.86+03	
2acce6b3-c37f-1ffd-6c5f-166441bbb593	2021-05-23 12:55:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:55:16.853+03	2021-05-23 12:55:16.86+03	
24d11d7d-022a-baf5-c5e8-75f546ca0cd9	2021-05-23 12:55:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:55:36.853+03	2021-05-23 12:55:36.859+03	
cc9dcf1d-c965-56f7-769e-6b682eeb728b	2021-05-23 12:55:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:55:57.853+03	2021-05-23 12:55:57.859+03	
50d67219-bdd0-39ad-0b5e-420f1259f495	2021-05-23 12:56:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:56:18.853+03	2021-05-23 12:56:18.861+03	
12fb0c6d-7e12-4d87-4590-f00fdb05d902	2021-05-23 12:56:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:56:39.853+03	2021-05-23 12:56:39.862+03	
7680cfd5-1938-3182-bb5f-52c6b83785aa	2021-05-23 12:56:59.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:56:59.854+03	2021-05-23 12:56:59.863+03	
a84ee9b6-67ec-9bf0-91ab-ef87734b436d	2021-05-23 12:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:57:20.853+03	2021-05-23 12:57:20.86+03	
97b12d74-b1f3-91a4-afb5-8d08e7dc9009	2021-05-23 12:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:57:40.853+03	2021-05-23 12:57:40.86+03	
176ef516-2143-8ec2-da0a-c312f9bd1bf2	2021-05-23 12:58:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:58:00.853+03	2021-05-23 12:58:00.862+03	
b2957dbb-1671-35a8-207c-0502881932d7	2021-05-23 12:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:58:20.853+03	2021-05-23 12:58:20.862+03	
c10638e2-c619-bff7-082f-280cf8b40874	2021-05-23 12:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:58:40.853+03	2021-05-23 12:58:40.862+03	
4aa5b277-8ce6-c697-a4d1-4a84d5b57d24	2021-05-23 12:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:59:00.853+03	2021-05-23 12:59:00.866+03	
78d9f262-638f-8082-011c-201579822547	2021-05-23 12:59:20.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:59:20.853+03	2021-05-23 12:59:20.928+03	
d4579b97-7ece-bfab-a206-0b1ff30aa3e2	2021-05-23 12:59:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:59:42.852+03	2021-05-23 12:59:42.859+03	
fac39438-3bce-1b1e-35f6-db78b92b34a1	2021-05-23 12:59:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:59:52.852+03	2021-05-23 12:59:52.861+03	
15b9398e-2a42-a52c-21b0-b51e7d146332	2021-05-23 13:00:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:00:02.852+03	2021-05-23 13:00:02.859+03	
d0ae21d4-cb3f-3b67-7ea7-5bb4893f402b	2021-05-23 13:00:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:00:22.853+03	2021-05-23 13:00:22.86+03	
51eb04c5-541b-c379-58c3-19766ad53730	2021-05-23 13:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:00:43.852+03	2021-05-23 13:00:43.86+03	
d7103bdf-8241-7cb0-8cf6-ff61c905ff49	2021-05-23 13:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:01:03.852+03	2021-05-23 13:01:03.861+03	
91c99ae8-c84c-be79-aada-60982d0923bd	2021-05-23 13:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:01:23.852+03	2021-05-23 13:01:23.859+03	
74e17fbb-1022-f556-f803-2ed44b34cf27	2021-05-23 13:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:01:43.852+03	2021-05-23 13:01:43.859+03	
d6d2f8b2-1ea8-7e8c-48b4-8aba707659fe	2021-05-23 12:41:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:41:21.853+03	2021-05-23 12:41:21.859+03	
f2d1868f-5777-e9f6-1391-552796d517bb	2021-05-23 12:41:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:41:41.854+03	2021-05-23 12:41:41.861+03	
c66a95dd-625b-a30d-5a75-ae4ad0412337	2021-05-23 12:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:42:02.853+03	2021-05-23 12:42:02.861+03	
7f89711f-bdd0-e830-b288-7a7870d3cdbd	2021-05-23 12:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:42:22.853+03	2021-05-23 12:42:22.86+03	
b845b029-1217-8992-2f88-4061b9091f55	2021-05-23 12:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:42:42.853+03	2021-05-23 12:42:42.867+03	
a503a3ad-1ccf-dcc4-3f47-4923a80b3bab	2021-05-23 12:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:43:02.853+03	2021-05-23 12:43:02.861+03	
b8478595-82d6-1389-18f3-661acd656b79	2021-05-23 12:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:43:22.853+03	2021-05-23 12:43:22.859+03	
b8cef758-1739-05eb-0459-236e8b22de2a	2021-05-23 12:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:43:42.853+03	2021-05-23 12:43:42.86+03	
2f959e05-fc7b-94b7-123b-a0ecebebc70c	2021-05-23 12:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:44:02.853+03	2021-05-23 12:44:02.864+03	
8d8fa751-9024-3f06-7213-df0ff71e4dae	2021-05-23 12:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:44:22.853+03	2021-05-23 12:44:22.86+03	
f87b44a6-7e66-d847-fa62-0339bd91451e	2021-05-23 12:44:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:44:42.853+03	2021-05-23 12:44:42.874+03	
053d4990-f217-b1b5-ddbe-46a5546c87ec	2021-05-23 12:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:45:02.853+03	2021-05-23 12:45:02.876+03	
9c74dafd-78b9-c5f7-0dee-26140e1b3f97	2021-05-23 12:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:45:22.853+03	2021-05-23 12:45:22.861+03	
a9221eee-febd-501f-a59c-f75c77c703b8	2021-05-23 12:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:45:43.853+03	2021-05-23 12:45:43.864+03	
ea89f338-53fc-0877-7ce4-8ccf5d3fb599	2021-05-23 12:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:46:03.853+03	2021-05-23 12:46:03.86+03	
45719266-7525-ff6e-ec93-18bef4c8d273	2021-05-23 12:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:46:23.853+03	2021-05-23 12:46:23.869+03	
77326fb8-aa0a-83e4-4b15-f86b628bb099	2021-05-23 12:46:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:46:43.853+03	2021-05-23 12:46:43.862+03	
e8f8595f-cc2e-4d0c-6334-caf3a57e7ed3	2021-05-23 12:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:47:04.853+03	2021-05-23 12:47:04.859+03	
f330073e-5c95-e2a8-19ce-36906ef686a4	2021-05-23 12:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:47:24.853+03	2021-05-23 12:47:24.862+03	
e653e60c-585c-537d-cdb0-94dd7ed1236f	2021-05-23 12:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:47:45.852+03	2021-05-23 12:47:45.858+03	
99441c26-0cc9-08d0-b6f2-4b72042e7aa6	2021-05-23 12:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:48:05.853+03	2021-05-23 12:48:05.859+03	
0a3d358a-a3b4-1c1a-9801-1a5e37ecc3f7	2021-05-23 12:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:48:25.853+03	2021-05-23 12:48:25.86+03	
45a2c122-cbfa-ee89-55ee-30e79da20237	2021-05-23 12:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:48:45.853+03	2021-05-23 12:48:45.859+03	
0ab24720-ac10-cb18-0dad-3bc3f7e62cfe	2021-05-23 12:49:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:49:06.853+03	2021-05-23 12:49:06.863+03	
887177bc-b366-0b17-ac0e-a212d1259960	2021-05-23 12:49:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:49:27.853+03	2021-05-23 12:49:27.86+03	
4618fe42-c57d-dead-0d93-caa94588ee9e	2021-05-23 12:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:49:48.853+03	2021-05-23 12:49:49.099+03	
f60137ca-fc6a-4abf-e3d7-3e1bdcdf52a3	2021-05-23 12:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 12:50:00.853+03	2021-05-23 12:50:00.865+03	ERROR
86ce8c3c-811f-3e4b-4c55-f77e2f456660	2021-05-23 12:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:50:18.853+03	2021-05-23 12:50:18.86+03	
f86efc74-1542-626f-47f6-aec80a35a54a	2021-05-23 12:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:50:38.853+03	2021-05-23 12:50:38.859+03	
2ed55a7d-2a2e-df86-ce83-500581ac53fb	2021-05-23 12:50:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:50:58.853+03	2021-05-23 12:50:58.86+03	
3057c2e6-bf38-04d2-6622-6cb5d2a97606	2021-05-23 12:51:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:51:19.853+03	2021-05-23 12:51:19.861+03	
cee60d55-c4af-c707-5de4-ce6a42629fcf	2021-05-23 12:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:51:40.853+03	2021-05-23 12:51:40.86+03	
7a96dfb1-a94a-0ef0-5fe8-02b88b3664ab	2021-05-23 12:52:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:52:01.853+03	2021-05-23 12:52:01.859+03	
1657221e-fec3-1a48-501b-eabdfac577e5	2021-05-23 12:52:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:52:21.854+03	2021-05-23 12:52:21.863+03	
fc76d622-01e1-55d9-04b1-4a5301001cce	2021-05-23 12:52:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:52:42.853+03	2021-05-23 12:52:42.86+03	
614aa1e5-1cec-11c4-8520-6b07c86f82ec	2021-05-23 12:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:53:02.853+03	2021-05-23 12:53:02.873+03	
f95e3fb4-5c2c-5c4b-878c-42368d470021	2021-05-23 12:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:53:22.853+03	2021-05-23 12:53:22.86+03	
c6881aa3-dd33-84bc-fe20-0b8d5762959d	2021-05-23 12:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:53:43.852+03	2021-05-23 12:53:43.867+03	
e5b2a601-b7df-8264-aee8-06b6dc43316c	2021-05-23 12:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:54:04.853+03	2021-05-23 12:54:04.859+03	
174a19ca-e8e3-65ce-2781-ff169a74f085	2021-05-23 12:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:54:24.853+03	2021-05-23 12:54:24.862+03	
270a0702-480f-b16d-1100-15b8d3d91099	2021-05-23 12:54:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:54:46.852+03	2021-05-23 12:54:46.868+03	
154fe4fd-57e7-8037-5f10-2df71b9ebfaf	2021-05-23 12:55:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:55:06.853+03	2021-05-23 12:55:06.868+03	
e6434b29-ab0e-7833-88b1-cb1e1b30195d	2021-05-23 12:55:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:55:26.853+03	2021-05-23 12:55:26.861+03	
c08aa66b-ccd9-3895-70fb-9db1255aa866	2021-05-23 12:55:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:55:47.853+03	2021-05-23 12:55:47.859+03	
2b183660-4f00-9adf-1ccc-58d35c7fa4c0	2021-05-23 12:56:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:56:07.853+03	2021-05-23 12:56:07.86+03	
4e5b09b6-9545-be95-1c56-c1863d826423	2021-05-23 12:56:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:56:28.853+03	2021-05-23 12:56:28.86+03	
4c0cb4ac-a1cc-6068-001b-a6edc2d4481e	2021-05-23 12:56:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:56:49.853+03	2021-05-23 12:56:49.865+03	
0c3b61c1-dcd8-8fbf-948c-6ce6c06b3b1d	2021-05-23 12:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:57:10.853+03	2021-05-23 12:57:10.871+03	
cb94e9e3-c8b0-5070-059a-f646db1f1d5d	2021-05-23 12:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:57:30.853+03	2021-05-23 12:57:30.861+03	
0fb38bbd-6488-dda5-aec3-05a97ecc0251	2021-05-23 12:57:50.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:57:50.853+03	2021-05-23 12:57:50.862+03	
16f6cd0e-97dc-a868-7450-e565adc2aa80	2021-05-23 12:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:58:10.853+03	2021-05-23 12:58:10.867+03	
77e10352-8c1c-f71e-1376-a161fd7e6a73	2021-05-23 12:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:58:30.853+03	2021-05-23 12:58:30.863+03	
ace05f52-37b8-8784-d029-cf2e728adf61	2021-05-23 12:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:58:50.853+03	2021-05-23 12:58:50.862+03	
bbf438d9-64d1-b664-f20c-c8232350f152	2021-05-23 12:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:59:10.853+03	2021-05-23 12:59:10.873+03	
e0abbd59-8da1-7f8f-18de-41e0230830eb	2021-05-23 12:59:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 12:59:31.853+03	2021-05-23 12:59:31.875+03	
a5c402d8-a062-b29e-c95e-e5d6a0a0a488	2021-05-23 13:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 13:00:00.853+03	2021-05-23 13:00:00.863+03	ERROR
54081883-3377-09d7-7812-3dc424cf67d8	2021-05-23 13:00:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:00:12.852+03	2021-05-23 13:00:12.859+03	
d9626e64-8c90-debe-ccf2-953d69df539a	2021-05-23 13:00:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:00:33.852+03	2021-05-23 13:00:33.861+03	
b04827da-8015-a5ed-6e34-a51fbfe4e8fc	2021-05-23 13:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:00:53.852+03	2021-05-23 13:00:53.861+03	
11c7f0b5-f6f3-34e9-1dc9-cc84df753ca4	2021-05-23 13:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:01:13.852+03	2021-05-23 13:01:13.904+03	
f313d7cc-bb97-5e34-c88a-3890069e06de	2021-05-23 13:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:01:33.852+03	2021-05-23 13:01:33.859+03	
f2e289f1-799c-c1c4-2855-2cee7f291543	2021-05-23 13:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:01:53.852+03	2021-05-23 13:01:53.882+03	
24d9f209-8ca7-2cda-2605-94c60b8f5f08	2021-05-23 13:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:02:13.853+03	2021-05-23 13:02:13.859+03	
01427adc-b6a8-f944-088b-5a54ef2fcc9b	2021-05-23 13:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:02:03.853+03	2021-05-23 13:02:03.859+03	
9c4c4af6-de11-004b-5dd8-56c5a772bac6	2021-05-23 13:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:02:24.852+03	2021-05-23 13:02:24.858+03	
098fee50-9a2d-613f-5f23-852c2a64f129	2021-05-23 13:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:02:44.852+03	2021-05-23 13:02:44.859+03	
f499f52b-e0c5-f86e-e4bf-9ffc69a48e27	2021-05-23 13:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:03:04.852+03	2021-05-23 13:03:04.859+03	
f7b1f8ca-a48d-42aa-ab9b-bf6e70b21847	2021-05-23 13:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:03:25.852+03	2021-05-23 13:03:25.858+03	
c3603324-51bc-8482-e144-5a1d4828d63c	2021-05-23 13:03:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:03:45.852+03	2021-05-23 13:03:45.859+03	
5be48858-aa7c-ce10-af66-1ba80b671a51	2021-05-23 13:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:04:05.853+03	2021-05-23 13:04:05.859+03	
1ab4f6bb-5b6d-05c4-38ef-79bc0c9484bc	2021-05-23 13:04:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:04:26.852+03	2021-05-23 13:04:26.859+03	
601bedb4-e8c1-f7b6-0b72-2ddeb2df71c2	2021-05-23 13:04:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:04:46.852+03	2021-05-23 13:04:46.859+03	
512c9f68-93b1-be2e-c496-5a9e5c0b1722	2021-05-23 13:05:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:05:06.853+03	2021-05-23 13:05:06.86+03	
592d1829-2ed7-d259-5527-67370204dcf2	2021-05-23 13:05:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:05:27.852+03	2021-05-23 13:05:27.861+03	
5ed45a25-55c1-98c5-3f32-30d581330da1	2021-05-23 13:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:05:47.852+03	2021-05-23 13:05:47.859+03	
b5fff660-0fb8-536c-f306-ecc845d60302	2021-05-23 13:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:06:07.852+03	2021-05-23 13:06:07.858+03	
99e4fb6e-7d54-a318-e4fe-b69220e9c3c9	2021-05-23 13:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:06:27.853+03	2021-05-23 13:06:27.86+03	
19004d74-c47d-43d9-5bc5-b36bec92598a	2021-05-23 13:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:06:48.852+03	2021-05-23 13:06:48.88+03	
565d3bdc-1a0c-8b88-655e-0e1e52b39869	2021-05-23 13:07:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:07:08.852+03	2021-05-23 13:07:08.859+03	
ed400d73-81a4-6382-7336-f48d0d492b95	2021-05-23 13:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:07:28.852+03	2021-05-23 13:07:28.859+03	
df1e2efe-5502-3350-196d-0f373b64e564	2021-05-23 13:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:07:48.852+03	2021-05-23 13:07:48.86+03	
e9e56683-76dd-a8e1-040c-86918ad93f8b	2021-05-23 13:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:08:08.852+03	2021-05-23 13:08:08.869+03	
3255cd9e-a206-bc2b-8962-14d9abe3f906	2021-05-23 13:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:08:28.852+03	2021-05-23 13:08:28.858+03	
1c03619f-1402-098f-c21f-477e2d0bea7b	2021-05-23 13:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:08:48.852+03	2021-05-23 13:08:48.859+03	
7b4414af-8c44-cc44-535e-757ecee24fc8	2021-05-23 13:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:09:08.852+03	2021-05-23 13:09:08.858+03	
c9f0b7d7-b84f-0b70-86cb-ad17ba21ab03	2021-05-23 13:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:09:29.852+03	2021-05-23 13:09:29.859+03	
791a8efd-7ce1-72da-b232-fdf90b0044f9	2021-05-23 13:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:09:49.852+03	2021-05-23 13:09:49.858+03	
beedb219-3e81-7765-0a72-8ef653e726ac	2021-05-23 13:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 13:10:00.852+03	2021-05-23 13:10:00.857+03	ERROR
7c53e052-0df6-7dc7-41d1-6a9286f8266a	2021-05-23 13:10:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:10:20.853+03	2021-05-23 13:10:20.864+03	
1ac84d42-4505-201c-9a7e-91f24c83922d	2021-05-23 13:10:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:10:41.853+03	2021-05-23 13:10:41.859+03	
ee745086-27dd-3ef5-9fb8-f703a1d6ceb0	2021-05-23 13:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:11:02.853+03	2021-05-23 13:11:02.865+03	
56624c96-0853-baf5-923e-c4ac1f2d6df8	2021-05-23 13:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:11:23.852+03	2021-05-23 13:11:23.867+03	
698b7971-652b-60a9-d972-f2822dfedf61	2021-05-23 13:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:11:44.853+03	2021-05-23 13:11:44.865+03	
6cbd6024-e95e-71f8-e57b-e24da57bd928	2021-05-23 13:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:12:05.852+03	2021-05-23 13:12:05.873+03	
ba96ecc4-b7ac-3549-b4a6-593b587617f5	2021-05-23 13:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:12:25.852+03	2021-05-23 13:12:25.859+03	
a1e4ba89-d2fa-a7e3-dd39-4c9aaf75a1dd	2021-05-23 13:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:12:45.852+03	2021-05-23 13:12:45.862+03	
d82937c1-f528-4b12-fc21-5eb6f50c0b5e	2021-05-23 13:13:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:13:16.853+03	2021-05-23 13:13:16.859+03	
8140a633-7db0-a122-d52d-3f6b03f458dd	2021-05-23 13:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:13:37.853+03	2021-05-23 13:13:37.861+03	
7ca32131-a76d-6a45-4491-cbf9dec970f2	2021-05-23 13:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:13:57.853+03	2021-05-23 13:13:57.859+03	
c401f96c-0b1f-6b7c-5c0c-c9ec4de69ae7	2021-05-23 13:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:14:18.853+03	2021-05-23 13:14:18.861+03	
cd0e9ec8-e3a2-a8ba-ab42-d1444bf1b190	2021-05-23 13:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:14:39.853+03	2021-05-23 13:14:39.859+03	
f694d0ec-3910-a794-27a3-8633e2e4c244	2021-05-23 13:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:14:59.853+03	2021-05-23 13:14:59.859+03	
b624a8ff-e2dd-39d7-3659-b7678774a10f	2021-05-23 13:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:15:19.853+03	2021-05-23 13:15:19.859+03	
f3dbab9b-0b1c-c56f-f950-1dad7a0038e6	2021-05-23 13:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:15:40.852+03	2021-05-23 13:15:40.858+03	
69d2ed99-92ce-1849-e97f-fba16a65c92f	2021-05-23 13:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:16:00.853+03	2021-05-23 13:16:00.859+03	
8f0b4d82-2d6e-7329-77bb-d8972bf856d8	2021-05-23 13:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:16:20.853+03	2021-05-23 13:16:20.863+03	
53ce6cd9-828b-6c44-aa39-c2551cc2ed4f	2021-05-23 13:16:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:16:40.853+03	2021-05-23 13:16:40.859+03	
3bada209-cc79-b2cb-9ad1-537e6d05d233	2021-05-23 13:17:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:17:01.853+03	2021-05-23 13:17:01.859+03	
a3270781-9671-80ea-f14d-b524486cb51d	2021-05-23 13:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:17:22.853+03	2021-05-23 13:17:22.859+03	
b5e5cc24-7eea-e70f-ce4f-ce1e0647f755	2021-05-23 13:17:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:17:42.853+03	2021-05-23 13:17:42.859+03	
6da0004c-30a9-02ad-69ba-93bd0a524d99	2021-05-23 13:18:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:18:02.853+03	2021-05-23 13:18:02.859+03	
bb54b319-0a15-a421-b807-cb036b8aadfe	2021-05-23 13:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:18:23.852+03	2021-05-23 13:18:23.859+03	
a44192ba-6bf2-c945-6066-a5869871603e	2021-05-23 13:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:18:43.853+03	2021-05-23 13:18:43.859+03	
0034df27-15ed-849d-f655-87250e805af6	2021-05-23 13:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:19:03.853+03	2021-05-23 13:19:03.859+03	
9634a8bb-6769-ebc3-01fd-13e9655ec1f4	2021-05-23 13:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:19:24.852+03	2021-05-23 13:19:24.858+03	
496bb811-b924-3e16-8319-83134fae0ecd	2021-05-23 13:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:19:44.852+03	2021-05-23 13:19:44.859+03	
02b6096a-4234-9e84-1aad-b2af50494a93	2021-05-23 13:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 13:20:00.853+03	2021-05-23 13:20:00.857+03	ERROR
1cf9df1a-ff41-916f-910c-174fed1a4393	2021-05-23 13:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:20:15.853+03	2021-05-23 13:20:15.859+03	
2464d06a-ee27-6216-8427-31ac5bc623c7	2021-05-23 13:20:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:20:36.852+03	2021-05-23 13:20:36.86+03	
be332e6d-d482-9fce-7a78-ab3cff333c59	2021-05-23 13:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:20:56.852+03	2021-05-23 13:20:56.859+03	
5acfd9b3-22b8-7035-f617-58a2fe9ebe85	2021-05-23 13:21:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:21:16.852+03	2021-05-23 13:21:16.861+03	
36da6407-ef96-fb2c-dee3-b0a0b3c55a27	2021-05-23 13:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:21:36.852+03	2021-05-23 13:21:36.867+03	
244fadb8-9995-7519-a1a7-e5943f2ef2a8	2021-05-23 13:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:21:56.852+03	2021-05-23 13:21:56.869+03	
2673d421-f6f7-7221-6b6a-68e333fd7149	2021-05-23 13:22:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:22:16.852+03	2021-05-23 13:22:16.865+03	
a8d265f2-0300-8855-fc88-f72af0aef319	2021-05-23 13:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:22:37.852+03	2021-05-23 13:22:37.872+03	
d690b8f9-3758-f0f8-3dbc-4fd46f7a8008	2021-05-23 13:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:22:57.853+03	2021-05-23 13:22:57.86+03	
a87685a2-63c0-9740-d471-8e7a74c2b5be	2021-05-23 13:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:02:34.852+03	2021-05-23 13:02:34.858+03	
c5199cba-bbc4-5d00-3cf6-a7d488fa7cb8	2021-05-23 13:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:02:54.852+03	2021-05-23 13:02:54.858+03	
cef2cf95-0e6d-b3e4-d0a6-b4ccbb6d904e	2021-05-23 13:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:03:14.853+03	2021-05-23 13:03:14.861+03	
46bbe07a-e6a0-9e63-cba0-7293edebeb32	2021-05-23 13:03:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:03:35.852+03	2021-05-23 13:03:35.865+03	
69953520-dd29-6908-5ba8-171549296d85	2021-05-23 13:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:03:55.852+03	2021-05-23 13:03:55.859+03	
c30c188f-e86c-1c99-3674-2af275fd4748	2021-05-23 13:04:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:04:16.852+03	2021-05-23 13:04:16.862+03	
6df26e05-9478-2f29-dc18-873b0b3f8f02	2021-05-23 13:04:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:04:36.852+03	2021-05-23 13:04:36.859+03	
16787413-d3b5-ea98-468b-5cd928c27a60	2021-05-23 13:04:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:04:56.852+03	2021-05-23 13:04:56.858+03	
69d074a4-cb80-0fc1-3a83-5a3a76c65cf1	2021-05-23 13:05:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:05:17.852+03	2021-05-23 13:05:17.858+03	
3e481424-8d6c-bb86-e14d-8c47c1babb49	2021-05-23 13:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:05:37.852+03	2021-05-23 13:05:37.859+03	
4f456554-0b78-c428-7b35-103da50c6c67	2021-05-23 13:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:05:57.852+03	2021-05-23 13:05:57.858+03	
af30476a-ec97-46ae-df00-9f135d72511a	2021-05-23 13:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:06:17.852+03	2021-05-23 13:06:17.859+03	
5b9f9064-3250-18cb-a078-4c02ede65d59	2021-05-23 13:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:06:37.853+03	2021-05-23 13:06:37.859+03	
013d0cd0-94fa-41be-c6be-0fadad655463	2021-05-23 13:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:06:58.852+03	2021-05-23 13:06:58.859+03	
9c0bf946-fbed-ab1c-1a8c-a4266e46c70c	2021-05-23 13:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:07:18.852+03	2021-05-23 13:07:18.858+03	
a1a64b05-5d06-4b95-2043-a572cff9085e	2021-05-23 13:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:07:38.852+03	2021-05-23 13:07:38.859+03	
bc97f60c-94e4-dff7-a7d7-6073f89b89b4	2021-05-23 13:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:07:58.852+03	2021-05-23 13:07:58.86+03	
72ca5467-6843-0bb3-d96e-01cd22769fcc	2021-05-23 13:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:08:18.852+03	2021-05-23 13:08:18.859+03	
f41ce7bf-da8d-c436-fc05-1f616dc20f2f	2021-05-23 13:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:08:38.852+03	2021-05-23 13:08:38.858+03	
07a66714-b682-86e7-bb2f-ea178cc4887a	2021-05-23 13:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:08:58.852+03	2021-05-23 13:08:58.859+03	
201b6c0b-b567-638a-6885-3db7152099a5	2021-05-23 13:09:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:09:18.853+03	2021-05-23 13:09:18.859+03	
f1b5f9c4-d4ab-bb92-5316-925e813b0cb7	2021-05-23 13:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:09:39.852+03	2021-05-23 13:09:39.858+03	
2d3f3519-1d51-511c-b1d0-89f34fbebee1	2021-05-23 13:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:09:59.852+03	2021-05-23 13:09:59.858+03	
591031c4-7480-4599-71ec-de090f2c79d5	2021-05-23 13:10:09.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:10:09.863+03	2021-05-23 13:10:09.869+03	
e4ad5b3f-c7fb-d5be-52da-c4d3ab351eb1	2021-05-23 13:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:10:30.853+03	2021-05-23 13:10:30.86+03	
8f789773-955b-704d-c311-c82505654a14	2021-05-23 13:10:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:10:51.854+03	2021-05-23 13:10:51.86+03	
24e4cdef-341e-663b-801c-0cd6db532939	2021-05-23 13:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:11:13.852+03	2021-05-23 13:11:13.858+03	
642fc475-8262-8b64-e6fa-63e01bee75aa	2021-05-23 13:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:11:33.853+03	2021-05-23 13:11:33.859+03	
28957d7a-eabe-c27d-d443-0a6ec8dd19fe	2021-05-23 13:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:11:55.852+03	2021-05-23 13:11:55.858+03	
077d76eb-42ee-a885-05ca-790293ee46da	2021-05-23 13:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:12:15.852+03	2021-05-23 13:12:15.859+03	
9d129e69-aa27-b292-a0e2-ca2dc7f39c50	2021-05-23 13:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:12:35.852+03	2021-05-23 13:12:35.859+03	
7bbeea5d-a933-39cd-b70d-927aa2424c53	2021-05-23 13:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:12:55.853+03	2021-05-23 13:12:55.858+03	
e0182753-253c-35a4-cd9c-0ac5188fb63a	2021-05-23 13:13:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:13:06.852+03	2021-05-23 13:13:06.86+03	
d77f0f0f-d01e-3a06-c2c3-8f059e7c522b	2021-05-23 13:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:13:27.852+03	2021-05-23 13:13:27.866+03	
4df12ff5-e3bc-8f58-0e80-973d23b48700	2021-05-23 13:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:13:47.853+03	2021-05-23 13:13:47.861+03	
6441fa52-53bb-e201-7134-6b4cd5b4472a	2021-05-23 13:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:14:08.853+03	2021-05-23 13:14:08.858+03	
6cd9efdb-bd21-3be6-bf57-0ecd8c4eea65	2021-05-23 13:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:14:29.853+03	2021-05-23 13:14:29.859+03	
2b5b6af9-ba3b-e71f-3b38-ee40f083055b	2021-05-23 13:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:14:49.853+03	2021-05-23 13:14:49.873+03	
e301df25-f894-0df6-0a00-16cc8530d206	2021-05-23 13:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:15:09.853+03	2021-05-23 13:15:09.858+03	
278b276c-bc57-cdbc-2c5e-5ea94badd2dd	2021-05-23 13:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:15:29.853+03	2021-05-23 13:15:29.866+03	
c111d79c-74ec-0916-eead-efd36b9f750a	2021-05-23 13:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:15:50.852+03	2021-05-23 13:15:50.859+03	
405a74e5-19a2-0d3a-400c-47be4827aea8	2021-05-23 13:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:16:10.853+03	2021-05-23 13:16:10.86+03	
85e0f19a-2cca-7338-9f5f-8f644fc5a242	2021-05-23 13:16:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:16:30.853+03	2021-05-23 13:16:30.86+03	
fbcfac63-23c4-c71c-08ac-c1849437971c	2021-05-23 13:16:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:16:50.853+03	2021-05-23 13:16:50.861+03	
ecd6a118-241f-d7d7-fa40-71ff2cec8a66	2021-05-23 13:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:17:12.852+03	2021-05-23 13:17:12.859+03	
7636591b-18b8-6857-6ec2-a4a085fc367f	2021-05-23 13:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:17:32.853+03	2021-05-23 13:17:32.867+03	
4df5bf2b-890b-b321-e814-e8404c74574c	2021-05-23 13:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:17:52.853+03	2021-05-23 13:17:52.86+03	
2b934c3c-6167-23d7-eded-a211877bc091	2021-05-23 13:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:18:13.852+03	2021-05-23 13:18:13.858+03	
a9c2bae4-7365-19d8-fa0f-55621f50106b	2021-05-23 13:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:18:33.852+03	2021-05-23 13:18:33.859+03	
db6e0258-4507-51a2-0fab-dccbf3e43315	2021-05-23 13:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:18:53.853+03	2021-05-23 13:18:53.859+03	
41f774fd-c83b-91c0-9978-85ad5276a9da	2021-05-23 13:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:19:14.852+03	2021-05-23 13:19:14.86+03	
8000a2b8-46ef-9af8-1cee-e8afd88aab28	2021-05-23 13:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:19:34.852+03	2021-05-23 13:19:34.864+03	
02fd4cb8-c1f6-889a-7aa3-d72d6a05955f	2021-05-23 13:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:19:54.852+03	2021-05-23 13:19:54.859+03	
37808967-0127-2c2e-9e68-b9b8bbaa33f4	2021-05-23 13:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:20:04.853+03	2021-05-23 13:20:04.859+03	
bad6ca0c-fd2b-c2b5-2953-3c85a6d205f3	2021-05-23 13:20:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:20:26.852+03	2021-05-23 13:20:26.858+03	
765b834c-9dde-8042-5ac5-331e0a5802e2	2021-05-23 13:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:20:46.852+03	2021-05-23 13:20:46.859+03	
d16ba26e-c552-2242-be8e-88f0907b8b02	2021-05-23 13:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:21:06.852+03	2021-05-23 13:21:06.859+03	
5635ad5b-6cab-f70d-32a7-0377ee5b824d	2021-05-23 13:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:21:26.852+03	2021-05-23 13:21:26.86+03	
15605996-aab4-cf04-21bf-1b1dc1ac6349	2021-05-23 13:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:21:46.852+03	2021-05-23 13:21:46.858+03	
f1db3cfd-5c29-cab8-ceac-3d10debc5565	2021-05-23 13:22:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:22:06.852+03	2021-05-23 13:22:06.858+03	
a517a930-81cd-d79d-5bc9-bb6a06cc6f77	2021-05-23 13:22:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:22:26.853+03	2021-05-23 13:22:26.861+03	
fdf98f80-527c-9fa1-557b-7721607c71ff	2021-05-23 13:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:22:47.852+03	2021-05-23 13:22:47.859+03	
63351b55-7f9b-5c43-0af3-d07afba3f16c	2021-05-23 13:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:23:08.852+03	2021-05-23 13:23:08.858+03	
dd02dafc-22f7-3cc7-48a5-c69d9411564a	2021-05-23 13:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:23:18.852+03	2021-05-23 13:23:18.868+03	
000c72fb-733c-99d5-3f5d-76022d2d3ef6	2021-05-23 13:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:23:39.853+03	2021-05-23 13:23:39.867+03	
f50dcbb1-0798-9665-b7ab-8c7e9ca760cf	2021-05-23 13:24:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:24:00.853+03	2021-05-23 13:24:00.86+03	
f818593a-c1ee-ac3b-8570-396dc3ea11a3	2021-05-23 13:24:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:24:21.854+03	2021-05-23 13:24:21.861+03	
13bc8837-e159-5e30-3ec4-59f4828ef603	2021-05-23 13:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:24:42.852+03	2021-05-23 13:24:42.858+03	
7a4fe246-242a-0327-a375-b44071fdd9ab	2021-05-23 13:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:25:02.853+03	2021-05-23 13:25:02.861+03	
afdea56c-d096-f033-e858-2a409fb5f42a	2021-05-23 13:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:25:23.853+03	2021-05-23 13:25:23.87+03	
08a127e9-c5c9-4117-6ee0-691a1d782440	2021-05-23 13:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:25:44.853+03	2021-05-23 13:25:44.859+03	
b6c5b5d4-36c3-8240-3d22-82c0f35c807c	2021-05-23 13:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:26:05.852+03	2021-05-23 13:26:05.859+03	
c96a8363-641a-92b7-67a2-55b2895b5610	2021-05-23 13:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:26:26.852+03	2021-05-23 13:26:26.859+03	
e65883bd-e8b7-0d51-9519-82970b110cba	2021-05-23 13:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:26:46.852+03	2021-05-23 13:26:46.86+03	
dda6579b-4565-a0dc-aee1-1fb491c9dd9f	2021-05-23 13:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:27:06.853+03	2021-05-23 13:27:06.859+03	
95d6cea4-dcd6-54d6-4468-e956f388b2ca	2021-05-23 13:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:27:26.853+03	2021-05-23 13:27:26.861+03	
5d8fed00-712f-808e-7486-8b760052e053	2021-05-23 13:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:27:47.853+03	2021-05-23 13:27:47.858+03	
fc73c887-9ec3-fbd3-241c-5e3b58e03369	2021-05-23 13:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:28:08.852+03	2021-05-23 13:28:08.86+03	
55a22574-2bf3-0038-6643-6faeb6275164	2021-05-23 13:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:28:28.852+03	2021-05-23 13:28:28.859+03	
c1f9738f-c150-5d44-ebf3-2215407d9d16	2021-05-23 13:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:28:48.852+03	2021-05-23 13:28:48.859+03	
bf56ea69-0062-51c3-851f-135e993760d0	2021-05-23 13:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:29:08.853+03	2021-05-23 13:29:08.866+03	
42772a7a-f0a1-1228-a88e-4d666d26c896	2021-05-23 13:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:29:29.853+03	2021-05-23 13:29:29.861+03	
8964323e-be09-e18f-8a67-78efd6848799	2021-05-23 13:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:29:49.853+03	2021-05-23 13:29:49.86+03	
771f2c1b-955b-5432-c0c4-c046404a8465	2021-05-23 13:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 13:30:00.852+03	2021-05-23 13:30:00.857+03	ERROR
d4b06d01-5009-94c3-5ad6-decc010845e5	2021-05-23 13:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:30:20.852+03	2021-05-23 13:30:20.859+03	
0bb5c376-bc56-b990-490b-6682b19734b6	2021-05-23 13:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:30:40.852+03	2021-05-23 13:30:40.86+03	
5391fd42-f371-fd7c-3c3b-1f5eaead2ba7	2021-05-23 13:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:31:00.853+03	2021-05-23 13:31:00.86+03	
2394e76c-4449-1c70-c1da-ccc24e890034	2021-05-23 13:31:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:31:21.852+03	2021-05-23 13:31:21.858+03	
13a21afb-b848-f4c5-79a6-dcb4c746e236	2021-05-23 13:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:31:42.852+03	2021-05-23 13:31:42.86+03	
575bf2c1-4335-7f31-778c-ba70cc5e8fba	2021-05-23 13:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:32:03.853+03	2021-05-23 13:32:03.861+03	
4f7ad27a-0557-4005-916d-1d74529f879c	2021-05-23 13:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:32:24.852+03	2021-05-23 13:32:24.859+03	
34cecc71-3b6c-708d-5378-f17bca12421d	2021-05-23 13:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:32:44.853+03	2021-05-23 13:32:44.865+03	
53229e73-6682-ca25-957d-fbdb9d069f7c	2021-05-23 13:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:33:05.852+03	2021-05-23 13:33:05.87+03	
a7cfcc1a-6375-bc66-0d93-15477a3666dd	2021-05-23 13:33:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:33:26.852+03	2021-05-23 13:33:26.861+03	
72593b60-fd66-b1df-0191-01c71d6c33b9	2021-05-23 13:33:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:33:46.852+03	2021-05-23 13:33:46.873+03	
9e2fcbfb-c652-974b-984d-af48e3a5579a	2021-05-23 13:34:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:34:06.853+03	2021-05-23 13:34:06.861+03	
7cac5471-e005-f75f-0d46-50e9e6dd0bf3	2021-05-23 13:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:34:27.852+03	2021-05-23 13:34:27.861+03	
9e2d3976-630c-17bc-5df3-5a7a63e7c39e	2021-05-23 13:34:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:34:48.853+03	2021-05-23 13:34:48.859+03	
a4f3d9ce-ab9f-b164-3480-d8916307ecf2	2021-05-23 13:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:35:09.852+03	2021-05-23 13:35:09.859+03	
97ac6dc2-a3e3-33ed-1dc4-520b62c8a5d2	2021-05-23 13:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:35:30.852+03	2021-05-23 13:35:30.865+03	
56c3720f-0052-192d-3405-cebcf40c03af	2021-05-23 13:35:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:35:51.852+03	2021-05-23 13:35:51.859+03	
78585af8-3d91-e9e6-2c42-54f57983f918	2021-05-23 13:36:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:36:11.852+03	2021-05-23 13:36:11.858+03	
f5a8a02e-d6bc-94ac-afa0-7676b45716c5	2021-05-23 13:36:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:36:31.853+03	2021-05-23 13:36:31.859+03	
2f2772b1-e50b-8760-1292-ca69f19ae3b9	2021-05-23 13:36:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:36:51.853+03	2021-05-23 13:36:51.869+03	
73a1a8ad-1ba8-b2db-c5ed-bdb0309ad485	2021-05-23 13:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:37:12.853+03	2021-05-23 13:37:12.871+03	
e051ebb0-a96d-e6b5-45dd-e9843fb72866	2021-05-23 13:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:37:33.852+03	2021-05-23 13:37:33.858+03	
ec1eedca-1c19-89b8-d41f-ec639b5bb068	2021-05-23 13:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:37:54.853+03	2021-05-23 13:37:54.864+03	
9bba004b-0126-ad71-1587-6a8a9dd7340f	2021-05-23 13:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:38:15.852+03	2021-05-23 13:38:15.859+03	
706910a2-d486-6baf-4271-7e995ff0098a	2021-05-23 13:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:38:35.852+03	2021-05-23 13:38:35.858+03	
0169ff07-5f85-42f4-67ec-882682e93cec	2021-05-23 13:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:38:55.853+03	2021-05-23 13:38:55.862+03	
90b82604-0a5a-ecd8-85e9-f0c7b1997351	2021-05-23 13:39:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:39:16.852+03	2021-05-23 13:39:16.864+03	
7bf8154f-7850-8442-5056-215c95eb8c35	2021-05-23 13:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:39:36.852+03	2021-05-23 13:39:36.858+03	
129ac8b3-1917-f9ba-c079-d363fcb7d81c	2021-05-23 13:39:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:39:56.852+03	2021-05-23 13:39:56.859+03	
7000a8c0-58d2-02f9-f540-5a7d2b53858b	2021-05-23 13:40:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:40:06.852+03	2021-05-23 13:40:06.862+03	
5386e953-3d99-dcfa-6544-edde581e6270	2021-05-23 13:40:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:40:26.852+03	2021-05-23 13:40:26.861+03	
77a3cdd2-1a11-85b0-c8fa-f89a6a205ce6	2021-05-23 13:40:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:40:46.852+03	2021-05-23 13:40:46.877+03	
a32eee65-9f5c-47e6-5d64-35f12e9c8b15	2021-05-23 13:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:41:07.852+03	2021-05-23 13:41:07.863+03	
7b042ad3-51ad-6443-79ef-596e229bc350	2021-05-23 13:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:41:27.853+03	2021-05-23 13:41:27.861+03	
5b00c9d5-7e7d-7a4f-a648-5a763d9d80ab	2021-05-23 13:41:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:41:48.852+03	2021-05-23 13:41:48.861+03	
df35bd23-31ea-8ce4-ac9e-e37ff7ed95ef	2021-05-23 13:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:42:08.852+03	2021-05-23 13:42:08.859+03	
59960b88-cd9a-98a1-3204-39be53e4d048	2021-05-23 13:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:42:28.852+03	2021-05-23 13:42:28.858+03	
8ff40942-c3b8-399e-22f3-8a112b67a7e8	2021-05-23 13:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:42:48.853+03	2021-05-23 13:42:48.86+03	
373cdc48-0ce4-1317-6125-56a99c12dae9	2021-05-23 13:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:43:09.852+03	2021-05-23 13:43:09.859+03	
71b2e1ff-d5e8-3200-e800-c52b43cfb3a2	2021-05-23 13:43:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:43:29.852+03	2021-05-23 13:43:29.862+03	
b486283f-75ed-c15f-478f-d3caceb20c68	2021-05-23 13:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:43:49.852+03	2021-05-23 13:43:49.859+03	
d234d005-7ae7-0dbb-8a2c-106391fe83f0	2021-05-23 13:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:44:09.852+03	2021-05-23 13:44:09.858+03	
66546d5c-be84-9f67-0186-b25cc5ecb9e0	2021-05-23 13:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:23:28.853+03	2021-05-23 13:23:28.86+03	
e8587255-b3b2-7640-46f2-bbcd7cf8be34	2021-05-23 13:23:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:23:50.852+03	2021-05-23 13:23:50.872+03	
a6d66c49-3709-3baa-c6f6-8f1f0da43f1b	2021-05-23 13:24:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:24:11.854+03	2021-05-23 13:24:11.869+03	
1d2217d9-4976-d1db-a8db-48bfbfb9953b	2021-05-23 13:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:24:32.852+03	2021-05-23 13:24:32.865+03	
73e78f68-a133-cd3e-fb11-eda5ac753299	2021-05-23 13:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:24:52.852+03	2021-05-23 13:24:52.858+03	
22dcb2c9-da8c-3482-4cab-c5b5e271830e	2021-05-23 13:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:25:13.852+03	2021-05-23 13:25:13.858+03	
332c7c88-5ad0-67c9-9199-e179f6f94c5e	2021-05-23 13:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:25:34.852+03	2021-05-23 13:25:34.86+03	
74d37524-3156-3378-2b4e-44b022265e0f	2021-05-23 13:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:25:54.853+03	2021-05-23 13:25:54.859+03	
28ffbb0e-2530-8898-bd8b-473be7444541	2021-05-23 13:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:26:15.853+03	2021-05-23 13:26:15.862+03	
7f391106-32f9-bedf-2b2b-5b235ddb68de	2021-05-23 13:26:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:26:36.852+03	2021-05-23 13:26:36.86+03	
005561d2-1235-83d2-7651-3da800ecd39e	2021-05-23 13:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:26:56.852+03	2021-05-23 13:26:56.859+03	
a1e3508f-8c68-6590-147c-e6502a8f49a3	2021-05-23 13:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:27:16.853+03	2021-05-23 13:27:16.859+03	
8be5365c-3a06-a9d1-2ea6-e686911d2b1a	2021-05-23 13:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:27:37.853+03	2021-05-23 13:27:37.859+03	
94a5b64e-ed1b-0034-89dd-bc5f9dadf093	2021-05-23 13:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:27:58.852+03	2021-05-23 13:27:58.868+03	
f2f8ff77-7a97-93c9-83d7-d82e9d7a393f	2021-05-23 13:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:28:18.852+03	2021-05-23 13:28:18.86+03	
3110f225-0038-8aef-94a0-bad34dc13f04	2021-05-23 13:28:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:28:38.852+03	2021-05-23 13:28:38.859+03	
ccccee08-d7a3-f546-9bbb-33650ca9c1da	2021-05-23 13:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:28:58.853+03	2021-05-23 13:28:58.859+03	
c956548c-5670-7870-9e1f-9da50981db54	2021-05-23 13:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:29:19.853+03	2021-05-23 13:29:19.859+03	
9d556114-2102-d5b3-4a0c-4b5c27ef7a21	2021-05-23 13:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:29:39.853+03	2021-05-23 13:29:39.873+03	
cdf819f8-97a1-9c0a-a260-610c68300bae	2021-05-23 13:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:29:59.853+03	2021-05-23 13:29:59.859+03	
0d4ec9af-f999-ba10-58cf-d54a8702c71a	2021-05-23 13:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:30:10.852+03	2021-05-23 13:30:10.858+03	
a465c473-5dbc-e8fc-12ad-aa69a39f61ec	2021-05-23 13:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:30:30.852+03	2021-05-23 13:30:30.859+03	
882badeb-62b3-ce30-9f63-fadb51cf9087	2021-05-23 13:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:30:50.853+03	2021-05-23 13:30:50.859+03	
bdd81e95-d5ca-8f07-aa07-9ef202ea8641	2021-05-23 13:31:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:31:11.852+03	2021-05-23 13:31:11.858+03	
aba673d3-0ff6-1409-0888-f8fbd2099bd6	2021-05-23 13:31:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:31:31.853+03	2021-05-23 13:31:31.86+03	
34d7cebf-6678-3d17-c780-d5fcee215f17	2021-05-23 13:31:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:31:52.853+03	2021-05-23 13:31:52.86+03	
1d5b7dde-e0da-67c9-8ca1-c7151206d96d	2021-05-23 13:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:32:14.852+03	2021-05-23 13:32:14.859+03	
185f0e62-627e-2c5f-1e26-5fefabd928f4	2021-05-23 13:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:32:34.852+03	2021-05-23 13:32:34.859+03	
03a731a6-d502-7767-c16f-b62b43421d35	2021-05-23 13:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:32:54.853+03	2021-05-23 13:32:54.86+03	
4e117003-3a34-4f28-168d-a34513e3f1bf	2021-05-23 13:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:33:15.853+03	2021-05-23 13:33:15.86+03	
77899c6a-43c6-7802-aeb2-db8688578da6	2021-05-23 13:33:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:33:36.852+03	2021-05-23 13:33:36.865+03	
f6e11f46-438c-d7f0-1fdd-504f43151924	2021-05-23 13:33:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:33:56.853+03	2021-05-23 13:33:56.86+03	
6b26dd19-0cd4-2dfe-9da0-1420cd70133b	2021-05-23 13:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:34:17.852+03	2021-05-23 13:34:17.868+03	
dec83808-e4bf-cddb-fca5-f53205a4aaad	2021-05-23 13:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:34:37.853+03	2021-05-23 13:34:37.859+03	
3f793ee8-d519-64e9-dd7a-442f79765cf1	2021-05-23 13:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:34:59.852+03	2021-05-23 13:34:59.858+03	
aa00c6fd-27ef-58e3-fdd2-ff1d0331db63	2021-05-23 13:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:35:19.853+03	2021-05-23 13:35:19.874+03	
5a47794f-711b-a2e9-7040-8be55384828e	2021-05-23 13:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:35:40.853+03	2021-05-23 13:35:40.859+03	
ab58beec-a8f6-8b6e-c9e2-80718e2f951a	2021-05-23 13:36:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:36:01.852+03	2021-05-23 13:36:01.863+03	
ba83f3c0-8f36-9c30-d400-99c40695cd18	2021-05-23 13:36:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:36:21.853+03	2021-05-23 13:36:21.859+03	
122d82c6-303d-2f54-e478-e6a3eb94adbc	2021-05-23 13:36:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:36:41.853+03	2021-05-23 13:36:41.86+03	
7383fb7b-2587-4799-25fc-f309ccacd60e	2021-05-23 13:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:37:02.853+03	2021-05-23 13:37:02.859+03	
42a1d092-04df-11ec-e1a7-23d6af757162	2021-05-23 13:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:37:23.852+03	2021-05-23 13:37:23.859+03	
a31d259c-4ca1-35d2-2d6c-4083c028563f	2021-05-23 13:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:37:43.853+03	2021-05-23 13:37:43.861+03	
f0fb1527-9e67-9bbf-f79b-8c20e10649ef	2021-05-23 13:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:38:05.852+03	2021-05-23 13:38:05.859+03	
9ff10f3b-1155-2a4c-2236-7d409a0eb85a	2021-05-23 13:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:38:25.852+03	2021-05-23 13:38:25.858+03	
d08f2c65-9acc-959c-2c75-e61f6b193343	2021-05-23 13:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:38:45.852+03	2021-05-23 13:38:45.859+03	
7a3a9fd7-24f7-0cb1-059b-cf78146d64b7	2021-05-23 13:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:39:05.853+03	2021-05-23 13:39:05.859+03	
f7aec985-3f24-11b9-97aa-c99679b72f5b	2021-05-23 13:39:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:39:26.852+03	2021-05-23 13:39:26.86+03	
43fe4336-8eb2-00f7-53c0-2f22206d07cc	2021-05-23 13:39:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:39:46.852+03	2021-05-23 13:39:46.86+03	
537729a8-7a96-e81f-1fe0-bd9a3d9c464d	2021-05-23 13:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 13:40:00.853+03	2021-05-23 13:40:00.858+03	ERROR
434423f1-79fe-06e9-22c7-a0b6e1f155f8	2021-05-23 13:40:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:40:16.852+03	2021-05-23 13:40:16.868+03	
ec0ef4e7-62f3-fdca-8f27-f0f36640a2c4	2021-05-23 13:40:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:40:36.852+03	2021-05-23 13:40:36.858+03	
efcec129-1f0a-7053-5bd5-7188d23564a3	2021-05-23 13:40:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:40:56.853+03	2021-05-23 13:40:56.86+03	
ce1ac0b9-d287-e9d5-0e0f-3e1a943a6f8d	2021-05-23 13:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:41:17.853+03	2021-05-23 13:41:17.858+03	
712c8ae6-9ce0-6c09-07b8-26b3b27c201c	2021-05-23 13:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:41:38.852+03	2021-05-23 13:41:38.859+03	
d109fd74-8cd3-3434-9dc3-c846f28df522	2021-05-23 13:41:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:41:58.852+03	2021-05-23 13:41:58.86+03	
38c743e3-0b7f-3f47-0c56-5fe8db160983	2021-05-23 13:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:42:18.852+03	2021-05-23 13:42:18.859+03	
f41d6f11-6129-c78e-404b-1cf9fd56765e	2021-05-23 13:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:42:38.852+03	2021-05-23 13:42:38.859+03	
4ab3e809-c190-de20-858b-7b16729dce3b	2021-05-23 13:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:42:59.852+03	2021-05-23 13:42:59.861+03	
3033cbb7-fd81-3723-73a8-2585cdd70935	2021-05-23 13:43:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:43:19.852+03	2021-05-23 13:43:19.86+03	
43becdd1-8003-8f78-d608-b22a2323032a	2021-05-23 13:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:43:39.852+03	2021-05-23 13:43:39.863+03	
fcd056a3-e1e9-7a85-9aae-74a29584d5dc	2021-05-23 13:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:43:59.852+03	2021-05-23 13:43:59.859+03	
e00166da-e905-983c-ed42-1816afe91371	2021-05-23 13:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:44:19.852+03	2021-05-23 13:44:19.861+03	
79d37501-a74f-1bed-e19e-0184074ae12f	2021-05-23 13:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:44:29.853+03	2021-05-23 13:44:29.877+03	
17d27b83-6d1d-5f69-f0d7-d8c8b8ce6ee2	2021-05-23 13:44:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:44:51.852+03	2021-05-23 13:44:51.865+03	
d69a42cc-0007-7ac5-2a6b-45dfd9ae1b9f	2021-05-23 13:45:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:45:11.854+03	2021-05-23 13:45:11.861+03	
015d9439-ebf7-25c6-04f0-6d036028aef0	2021-05-23 13:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:45:32.853+03	2021-05-23 13:45:32.876+03	
574cf187-f007-63c2-627d-db700f4a3618	2021-05-23 13:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:45:53.852+03	2021-05-23 13:45:53.858+03	
fa637fd6-5837-2e7a-8aa7-6ccb1bc7c43e	2021-05-23 13:46:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:46:13.852+03	2021-05-23 13:46:13.859+03	
7d99ab15-9b37-e278-b331-8c0a61c34eb9	2021-05-23 13:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:46:34.853+03	2021-05-23 13:46:34.86+03	
72b74c4d-18f5-2a4b-97bd-1d2f7d6c9d08	2021-05-23 13:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:46:55.853+03	2021-05-23 13:46:55.861+03	
0234ef9e-88c1-8ff7-4f11-68e7af33ba8f	2021-05-23 13:47:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:47:16.852+03	2021-05-23 13:47:16.858+03	
97d79935-1c24-af17-fc24-05a319488043	2021-05-23 13:47:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:47:37.852+03	2021-05-23 13:47:37.872+03	
7ccd11ea-3de7-0ec6-7a36-ace0df1c3f0b	2021-05-23 13:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:47:57.853+03	2021-05-23 13:47:57.863+03	
db8beabb-6b70-f813-c8e2-ef76dc89efaa	2021-05-23 13:48:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:48:18.852+03	2021-05-23 13:48:18.858+03	
60a1f003-f0ed-9f5b-7632-e0d10f787b47	2021-05-23 13:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:48:38.852+03	2021-05-23 13:48:38.858+03	
29f90759-9865-59cd-a1b8-2903cd81ab11	2021-05-23 13:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:48:58.852+03	2021-05-23 13:48:58.86+03	
b8da31c2-fc1a-f19e-755b-deeed356fd1f	2021-05-23 13:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:49:18.853+03	2021-05-23 13:49:18.86+03	
452f9242-5d0a-ff24-68b2-f2840bd18025	2021-05-23 13:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:49:39.853+03	2021-05-23 13:49:39.858+03	
b315ea61-b86d-eb37-4863-f65e90988cbf	2021-05-23 13:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:50:00.853+03	2021-05-23 13:50:00.862+03	
6be687de-343a-7c02-0315-f85b2700eee6	2021-05-23 13:50:11.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:50:11.852+03	2021-05-23 13:50:11.865+03	
43e313f7-50c6-6fd8-d719-7f11137133e5	2021-05-23 13:50:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:50:32.852+03	2021-05-23 13:50:32.859+03	
19a55681-0ed8-3a81-9e6c-9d4d4c64dcf3	2021-05-23 13:50:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:50:52.852+03	2021-05-23 13:50:52.867+03	
4ecb4043-d790-3904-5c0a-4cd7aca3a242	2021-05-23 13:51:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:51:12.853+03	2021-05-23 13:51:12.86+03	
ed4a5a6c-bc89-9f6b-44e3-489ccc09b704	2021-05-23 13:51:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:51:33.852+03	2021-05-23 13:51:33.859+03	
20e822a7-43d0-29a1-073f-b1dea4bd1038	2021-05-23 13:51:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:51:53.853+03	2021-05-23 13:51:53.859+03	
bb6c207f-de95-f567-979f-eadec71b8f26	2021-05-23 13:52:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:52:14.853+03	2021-05-23 13:52:14.859+03	
95aa64fe-9e1e-bcc7-1dca-be24fcb0e3fa	2021-05-23 13:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:52:36.852+03	2021-05-23 13:52:36.872+03	
c7567f03-998b-1795-2ce6-03d5d76f149b	2021-05-23 13:52:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:52:56.852+03	2021-05-23 13:52:56.861+03	
fc20c76e-ee61-51cd-2bf1-4c480c9012eb	2021-05-23 13:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:53:16.852+03	2021-05-23 13:53:16.861+03	
bafcbf60-c52c-9a77-6177-005bfe5aa90a	2021-05-23 13:53:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:53:36.852+03	2021-05-23 13:53:36.86+03	
5b6026b0-e5a8-915b-9859-7759ce464d6c	2021-05-23 13:53:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:53:56.854+03	2021-05-23 13:53:56.873+03	
ea2a0aa2-55bd-16c4-db64-f1e7a1d6cb61	2021-05-23 13:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:54:17.853+03	2021-05-23 13:54:17.859+03	
69ef8956-8105-6331-5418-32bf7603221e	2021-05-23 13:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:54:38.852+03	2021-05-23 13:54:38.859+03	
b7330cbf-d457-77db-dd0c-ebbb25733093	2021-05-23 13:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:54:58.852+03	2021-05-23 13:54:58.861+03	
9c094294-32df-fec8-8eb1-1f645b8acaf7	2021-05-23 13:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:55:18.853+03	2021-05-23 13:55:18.86+03	
031d6240-622d-b4bd-7270-da7c8d403783	2021-05-23 13:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:55:40.852+03	2021-05-23 13:55:40.859+03	
091dc1f1-e2c6-a33a-b998-66132fc0c6fc	2021-05-23 13:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:56:00.853+03	2021-05-23 13:56:00.859+03	
ef72ec54-383f-e1bc-4b1b-6fe8ea18051f	2021-05-23 13:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:56:22.853+03	2021-05-23 13:56:22.859+03	
93682b5b-efd4-d135-ed5b-66a69c63f3ae	2021-05-23 13:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:56:43.852+03	2021-05-23 13:56:43.859+03	
e79be0e4-1c9a-e63c-5b85-21f9c8f373ef	2021-05-23 13:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:57:03.852+03	2021-05-23 13:57:03.859+03	
bc204416-8e84-b101-0cd2-b757af191fc3	2021-05-23 13:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:57:24.852+03	2021-05-23 13:57:24.859+03	
bb3986d5-c22c-d6d0-d16d-de064defa4d5	2021-05-23 13:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:57:44.852+03	2021-05-23 13:57:44.86+03	
e857dd93-71ec-2ba4-5989-08c80c39a53c	2021-05-23 13:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:58:05.852+03	2021-05-23 13:58:05.858+03	
de98fdf9-07fc-b0dc-dfcb-75a53d874d2b	2021-05-23 13:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:58:25.853+03	2021-05-23 13:58:25.866+03	
0f08e539-56cb-b777-6206-aa08b0e1fead	2021-05-23 13:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:58:45.853+03	2021-05-23 13:58:45.861+03	
cc8f5989-68bc-08e8-ec6a-fd766738062d	2021-05-23 13:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:59:06.852+03	2021-05-23 13:59:06.86+03	
518047dd-9247-f676-bb1a-843ff51b83cd	2021-05-23 13:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:59:27.853+03	2021-05-23 13:59:27.87+03	
350f14ba-6767-d914-e2c5-a2351b7c6a20	2021-05-23 13:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:59:47.853+03	2021-05-23 13:59:47.859+03	
4fd31020-5f0b-6605-1b22-aad21aeeece8	2021-05-23 14:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 14:00:00.852+03	2021-05-23 14:00:00.857+03	ERROR
90b14e94-b63a-3164-830c-7ea023190515	2021-05-23 14:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:00:18.852+03	2021-05-23 14:00:18.862+03	
73769f3a-517a-0d6c-5b48-e8c018264522	2021-05-23 14:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:00:38.852+03	2021-05-23 14:00:38.859+03	
f028ab2f-6ed3-9f0e-fae5-bdc32de9835f	2021-05-23 14:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:00:58.852+03	2021-05-23 14:00:58.859+03	
540999b1-6a1a-d8c6-3291-ce28934c3f90	2021-05-23 14:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:01:18.853+03	2021-05-23 14:01:18.873+03	
5f2123f6-bc79-2399-ed7f-549e96834aa9	2021-05-23 14:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:01:38.853+03	2021-05-23 14:01:38.86+03	
e2da058a-b098-c398-bcd4-a7c713895b10	2021-05-23 14:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:01:59.852+03	2021-05-23 14:01:59.859+03	
ad2252f9-b097-95cc-d48e-837c0560062e	2021-05-23 14:02:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:02:19.853+03	2021-05-23 14:02:19.86+03	
3844587a-3579-5253-936c-4ae63430c3bb	2021-05-23 14:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:02:40.853+03	2021-05-23 14:02:40.859+03	
d1d8dfbb-60c2-7bd5-9b8a-92060c9f2fd8	2021-05-23 14:03:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:03:01.852+03	2021-05-23 14:03:01.86+03	
f8626d7c-1a4e-9947-13d2-7939aa9f1e0a	2021-05-23 14:03:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:03:21.852+03	2021-05-23 14:03:21.879+03	
b03de8b9-e168-5fce-b9ac-1318651473e9	2021-05-23 14:03:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:03:41.852+03	2021-05-23 14:03:41.859+03	
73884bc2-1bb1-cfe8-cdfa-270fbee5b8e1	2021-05-23 14:04:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:04:01.853+03	2021-05-23 14:04:01.859+03	
9d5271c4-aafe-f510-50f7-b7e8d77e61f8	2021-05-23 14:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:04:22.852+03	2021-05-23 14:04:22.86+03	
2b1b9a50-681a-e589-7159-1fafa0280c86	2021-05-23 14:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:04:42.852+03	2021-05-23 14:04:42.858+03	
3d20be5c-b57c-9507-6a50-6bcb6648f8c2	2021-05-23 14:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:05:03.852+03	2021-05-23 14:05:03.859+03	
3617ecc1-4d32-afcc-7dc5-9648bde3da8f	2021-05-23 14:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:05:23.853+03	2021-05-23 14:05:23.86+03	
9d7ba641-77b2-b221-6dac-44f3f18a7911	2021-05-23 13:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:44:40.853+03	2021-05-23 13:44:40.859+03	
ab7d16d8-3c9e-d528-daf1-ad52c7994b5f	2021-05-23 13:45:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:45:01.852+03	2021-05-23 13:45:01.859+03	
e5bef3f5-549e-c022-0864-33bb60042f3d	2021-05-23 13:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:45:22.852+03	2021-05-23 13:45:22.859+03	
bc2f89fa-a9ae-c881-fa56-f53e92f8ae4b	2021-05-23 13:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:45:42.853+03	2021-05-23 13:45:42.874+03	
04965da8-5fa7-9ebc-8f35-883df9942986	2021-05-23 13:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:46:03.852+03	2021-05-23 13:46:03.86+03	
860b8108-0dd5-5f02-7cad-cd16284d87a8	2021-05-23 13:46:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:46:23.853+03	2021-05-23 13:46:23.859+03	
bc912a67-c11f-16a1-b81e-89c0bcb538d2	2021-05-23 13:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:46:45.853+03	2021-05-23 13:46:45.859+03	
f606e816-0b92-55df-daea-3318f66c6072	2021-05-23 13:47:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:47:06.852+03	2021-05-23 13:47:06.859+03	
6cf2cb25-5a40-0f1c-be28-10e2c3f2d020	2021-05-23 13:47:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:47:26.854+03	2021-05-23 13:47:26.861+03	
3584dc10-d11d-d437-2f23-af027d191390	2021-05-23 13:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:47:47.852+03	2021-05-23 13:47:47.86+03	
d2e197a1-b495-89e9-ff5c-c4fdbc18b093	2021-05-23 13:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:48:07.853+03	2021-05-23 13:48:07.868+03	
bbe44d43-a880-6301-bd05-2034af0444ca	2021-05-23 13:48:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:48:28.852+03	2021-05-23 13:48:28.86+03	
60ee04e7-3395-8f4e-8ef2-a480282dc302	2021-05-23 13:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:48:48.852+03	2021-05-23 13:48:48.86+03	
6802d912-412a-cf55-104c-4692e85f60ea	2021-05-23 13:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:49:08.852+03	2021-05-23 13:49:08.86+03	
364906a7-6866-a737-c5ea-88a432a325df	2021-05-23 13:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:49:29.853+03	2021-05-23 13:49:29.861+03	
c002d698-7558-54eb-1030-79454f89e35e	2021-05-23 13:49:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:49:50.852+03	2021-05-23 13:49:50.858+03	
a5e982e7-7b1f-f117-ce12-55ec45f6a1b4	2021-05-23 13:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 13:50:00.853+03	2021-05-23 13:50:00.877+03	ERROR
b9512545-77fe-c2c4-4c23-1444afaabe35	2021-05-23 13:50:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:50:21.855+03	2021-05-23 13:50:21.861+03	
4ba9960a-7679-80b1-4d7b-a341ea238c29	2021-05-23 13:50:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:50:42.852+03	2021-05-23 13:50:42.858+03	
07b2dba2-b4a3-bdc2-069e-8a777e23791b	2021-05-23 13:51:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:51:02.852+03	2021-05-23 13:51:02.867+03	
cc8ffa3c-aa48-c114-9faf-ea7f36c27b9c	2021-05-23 13:51:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:51:23.852+03	2021-05-23 13:51:23.86+03	
5e1d2f19-6087-08b2-6880-696d91784a4f	2021-05-23 13:51:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:51:43.852+03	2021-05-23 13:51:43.861+03	
9b097406-d775-974e-c639-a6fb20467c54	2021-05-23 13:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:52:04.852+03	2021-05-23 13:52:04.859+03	
67c8ca08-d5ca-43de-6b61-1fb220c8d43e	2021-05-23 13:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:52:25.853+03	2021-05-23 13:52:25.859+03	
2b3ad898-c54d-dcd2-7467-fdb568b417c3	2021-05-23 13:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:52:46.852+03	2021-05-23 13:52:46.861+03	
4c241dc9-32b6-bd30-74b1-14f41200a14b	2021-05-23 13:53:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:53:06.852+03	2021-05-23 13:53:06.859+03	
73a7a3e8-a4a5-f80c-501b-4ae7ffeda502	2021-05-23 13:53:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:53:26.852+03	2021-05-23 13:53:26.86+03	
2dbda55a-bc77-02be-3824-7fd442701eaf	2021-05-23 13:53:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:53:46.853+03	2021-05-23 13:53:46.86+03	
3922e0e5-5202-621e-7982-80db17d375f8	2021-05-23 13:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:54:07.853+03	2021-05-23 13:54:07.861+03	
2312a5d1-1978-1b93-b1c7-b97f2c2541d7	2021-05-23 13:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:54:28.852+03	2021-05-23 13:54:28.86+03	
34e30cec-9b67-33f5-532f-b9452e7fbf4e	2021-05-23 13:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:54:48.852+03	2021-05-23 13:54:48.859+03	
7755ff6c-c514-d1f6-be34-a297681f5645	2021-05-23 13:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:55:08.852+03	2021-05-23 13:55:08.859+03	
c76da8a0-b62e-554c-add3-67ac78c91000	2021-05-23 13:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:55:29.853+03	2021-05-23 13:55:29.86+03	
a180c988-7eab-8188-5e6f-c50dfad8c7ba	2021-05-23 13:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:55:50.852+03	2021-05-23 13:55:50.859+03	
e8522d18-5337-8fa9-e685-c797d1de3f75	2021-05-23 13:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:56:11.854+03	2021-05-23 13:56:11.86+03	
d1cd55c0-cf53-3db5-2a99-24a1f34083a1	2021-05-23 13:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:56:33.852+03	2021-05-23 13:56:33.858+03	
5315b57f-b3cb-1d82-75e4-8a0cab237098	2021-05-23 13:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:56:53.852+03	2021-05-23 13:56:53.859+03	
7c1b1f19-8e43-e3c7-1348-a4b370efc849	2021-05-23 13:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:57:13.853+03	2021-05-23 13:57:13.86+03	
67b282af-f6cf-bbd1-ab7c-b777d46dd87f	2021-05-23 13:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:57:34.852+03	2021-05-23 13:57:34.859+03	
d728f766-fa12-eacb-4d92-c71829325adc	2021-05-23 13:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:57:54.853+03	2021-05-23 13:57:54.86+03	
f34d53a0-c046-db30-abf6-c548bed552db	2021-05-23 13:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:58:15.852+03	2021-05-23 13:58:15.859+03	
4a0ba606-939e-6d74-8221-16745e9741f5	2021-05-23 13:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:58:35.853+03	2021-05-23 13:58:35.869+03	
f70f20b8-7706-38d1-706e-06d8a1c9b1ad	2021-05-23 13:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:58:56.852+03	2021-05-23 13:58:56.862+03	
27a42993-9e75-f810-b328-12b7f78bfaa1	2021-05-23 13:59:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:59:16.853+03	2021-05-23 13:59:16.868+03	
c0f05752-7e5b-c5ad-841f-fd512cdd65df	2021-05-23 13:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:59:37.853+03	2021-05-23 13:59:37.859+03	
d0a12025-b3fb-c821-c140-453322720174	2021-05-23 13:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 13:59:57.853+03	2021-05-23 13:59:57.859+03	
f9a6bbdc-4abd-3ed0-f0be-3e9fc2749866	2021-05-23 14:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:00:08.852+03	2021-05-23 14:00:08.859+03	
20dfc4aa-10ca-05d8-ec24-68c46c0b341e	2021-05-23 14:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:00:28.852+03	2021-05-23 14:00:28.858+03	
1f5ab802-6248-9af5-ad8b-3259537fadfa	2021-05-23 14:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:00:48.852+03	2021-05-23 14:00:48.858+03	
a1f442e9-d3d3-09dd-e52e-94c0153984f5	2021-05-23 14:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:01:08.852+03	2021-05-23 14:01:08.86+03	
c876d734-a030-2efe-f140-eeecd89b7a26	2021-05-23 14:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:01:28.853+03	2021-05-23 14:01:28.859+03	
21122221-6839-1798-3a62-2e5c5ba0762f	2021-05-23 14:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:01:49.852+03	2021-05-23 14:01:49.858+03	
a1e8cdbf-371e-3731-30e8-42572c16d763	2021-05-23 14:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:02:09.852+03	2021-05-23 14:02:09.858+03	
acaeffb2-8977-423e-27c9-3b09c0ec6414	2021-05-23 14:02:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:02:29.853+03	2021-05-23 14:02:29.861+03	
8b6648ab-1041-69f7-385f-09b7a545ef34	2021-05-23 14:02:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:02:51.852+03	2021-05-23 14:02:51.859+03	
e2946b7a-936f-7d11-e39c-a1dd223510b2	2021-05-23 14:03:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:03:11.852+03	2021-05-23 14:03:11.858+03	
cfd8f414-0b09-3fee-20ab-098d395bcdba	2021-05-23 14:03:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:03:31.852+03	2021-05-23 14:03:31.858+03	
95e544cd-6543-80de-3031-233951a4b2c2	2021-05-23 14:03:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:03:51.852+03	2021-05-23 14:03:51.86+03	
35e2346e-9e46-e87d-4236-7432ef82b96a	2021-05-23 14:04:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:04:11.853+03	2021-05-23 14:04:11.86+03	
ad449140-39c4-b61a-1713-e0e7dd27752f	2021-05-23 14:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:04:32.852+03	2021-05-23 14:04:32.864+03	
7ce20852-2de7-9424-4290-3f6120818d60	2021-05-23 14:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:04:52.853+03	2021-05-23 14:04:52.859+03	
c2369203-7e80-d6bf-013c-9a69216cc647	2021-05-23 14:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:05:13.852+03	2021-05-23 14:05:13.858+03	
b4e3c0dd-e490-6880-f33c-fb2f1a6ece39	2021-05-23 14:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:05:33.853+03	2021-05-23 14:05:33.86+03	
95b4fcd8-e57c-5c45-0ec6-705bde6039eb	2021-05-23 14:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:05:44.853+03	2021-05-23 14:05:44.86+03	
f58b2e10-e280-d07a-3277-0758e463ef7f	2021-05-23 14:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:06:04.853+03	2021-05-23 14:06:04.859+03	
c261b8c6-4b52-c3e9-b3e1-5c14490b597e	2021-05-23 14:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:06:24.853+03	2021-05-23 14:06:24.86+03	
bc2e9f1c-4e3e-89a2-59e4-5da84b2e2385	2021-05-23 14:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:06:45.853+03	2021-05-23 14:06:45.866+03	
0a183628-2395-40ef-fe6a-4d4bc2d75249	2021-05-23 14:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:07:06.853+03	2021-05-23 14:07:06.858+03	
e6c4cc98-7030-85f4-84aa-55dc7531409d	2021-05-23 14:07:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:07:27.852+03	2021-05-23 14:07:27.859+03	
3183ab82-05cc-4228-67b4-676823d916e8	2021-05-23 14:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:07:47.853+03	2021-05-23 14:07:47.859+03	
a81d8ec8-1ef7-1529-804b-0aa6b01a07cb	2021-05-23 14:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:08:08.852+03	2021-05-23 14:08:08.863+03	
c4c2da5c-5126-7630-2f6a-ab32babd1336	2021-05-23 14:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:08:28.853+03	2021-05-23 14:08:28.862+03	
a34851c2-74a3-c94e-e13b-236c3d9ab9e1	2021-05-23 14:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:08:49.852+03	2021-05-23 14:08:49.859+03	
a0929fd9-0816-1e56-cdc8-c1f52a3eff75	2021-05-23 14:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:09:09.852+03	2021-05-23 14:09:09.859+03	
607d0a34-026d-a455-42ce-03465da0b3c0	2021-05-23 14:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:09:29.852+03	2021-05-23 14:09:29.858+03	
6f777c70-a33d-31a1-88c7-a96e8fa9a96e	2021-05-23 14:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:09:49.852+03	2021-05-23 14:09:49.859+03	
d7a20612-b53b-9c26-9166-15f247726044	2021-05-23 14:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 14:10:00.852+03	2021-05-23 14:10:00.857+03	ERROR
b20efdec-9a05-9552-9e15-b5d029685fbb	2021-05-23 14:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:10:19.852+03	2021-05-23 14:10:19.859+03	
b258572b-f1ad-58d2-f173-98a2430ab5a3	2021-05-23 14:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:10:39.852+03	2021-05-23 14:10:39.858+03	
176e0fb0-7b2c-0841-e2b3-08131f2b7bfb	2021-05-23 14:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:10:59.852+03	2021-05-23 14:10:59.859+03	
c91a4231-e0f8-6132-8d18-ae75fb2cff28	2021-05-23 14:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:11:19.852+03	2021-05-23 14:11:19.859+03	
c95c69b8-9d7c-17f7-1cb1-ba20b7f167f9	2021-05-23 14:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:11:39.852+03	2021-05-23 14:11:39.859+03	
14efff63-9a24-ea64-06e1-9c16bb460577	2021-05-23 14:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:12:00.852+03	2021-05-23 14:12:00.859+03	
af2daa0d-a35d-8633-c9f5-b66bcced5dd9	2021-05-23 14:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:12:20.852+03	2021-05-23 14:12:20.866+03	
0bf2a2cf-5489-ea4f-082a-fb22e8307316	2021-05-23 14:12:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:12:40.853+03	2021-05-23 14:12:40.859+03	
fcfc1a31-aae8-9a50-7ec2-394db07349c3	2021-05-23 14:13:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:13:00.853+03	2021-05-23 14:13:00.859+03	
bb95da06-dd54-fd89-d70c-c70f5f91f1fa	2021-05-23 14:13:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:13:21.852+03	2021-05-23 14:13:21.859+03	
e702028a-4bd8-1855-d834-547bcb811839	2021-05-23 14:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:13:41.852+03	2021-05-23 14:13:41.859+03	
77f2b10c-3de1-4f74-62e7-fa6a2aefff37	2021-05-23 14:14:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:14:01.853+03	2021-05-23 14:14:01.86+03	
935d7ba2-bbac-cb01-a5ea-f8ba040592df	2021-05-23 14:14:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:14:21.854+03	2021-05-23 14:14:21.861+03	
a03b86a6-6812-d95d-4d9a-70454362a94f	2021-05-23 14:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:14:42.852+03	2021-05-23 14:14:42.859+03	
47da30c0-2d05-b53a-751e-d4639061b5a8	2021-05-23 14:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:15:02.852+03	2021-05-23 14:15:02.859+03	
392a3c85-cd1c-4784-fd22-c99940c65ab0	2021-05-23 14:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:15:22.852+03	2021-05-23 14:15:22.86+03	
528542c3-a07e-60e4-23c8-033525787d6c	2021-05-23 14:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:15:42.852+03	2021-05-23 14:15:42.858+03	
ce3f7165-0227-eaf2-cbcd-c2846d8caad7	2021-05-23 14:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:16:03.852+03	2021-05-23 14:16:03.859+03	
70735dd1-1222-320c-3230-54d659390ebc	2021-05-23 14:16:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:16:23.853+03	2021-05-23 14:16:23.868+03	
8287d795-41a7-732e-2a6c-dc6f620e7b8f	2021-05-23 14:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:16:44.853+03	2021-05-23 14:16:44.859+03	
36dcc2f3-fea7-f116-914c-d8fdab0dc219	2021-05-23 14:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:17:05.852+03	2021-05-23 14:17:05.858+03	
754d699b-1439-04f9-c2c3-11259ec3c77a	2021-05-23 14:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:17:25.853+03	2021-05-23 14:17:25.859+03	
aac12d1a-4ae6-12ef-057b-7d8988810538	2021-05-23 14:17:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:17:46.852+03	2021-05-23 14:17:46.86+03	
89b8907a-d03e-7350-d962-af06622ceb2b	2021-05-23 14:18:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:18:06.853+03	2021-05-23 14:18:06.86+03	
cff2cde5-551d-7408-a771-06791b11a989	2021-05-23 14:18:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:18:27.852+03	2021-05-23 14:18:27.86+03	
3c28d51a-830b-5feb-96df-f15873a0d724	2021-05-23 14:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:18:48.853+03	2021-05-23 14:18:48.868+03	
06e91d48-b60e-12c8-37cb-4af2f409fd9c	2021-05-23 14:19:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:19:09.852+03	2021-05-23 14:19:09.859+03	
b58452e7-f0ef-06ba-6b27-3cbfa1196ac1	2021-05-23 14:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:19:29.852+03	2021-05-23 14:19:29.868+03	
be5c844d-573d-720c-addc-e1c4d75a82a7	2021-05-23 14:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:19:49.852+03	2021-05-23 14:19:49.859+03	
5a0babb4-60af-a8bd-7f50-5477a510fb40	2021-05-23 14:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 14:20:00.853+03	2021-05-23 14:20:00.858+03	ERROR
2e7d78d9-609a-3c12-df0f-c9a8cf0dcedc	2021-05-23 14:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:20:19.853+03	2021-05-23 14:20:19.859+03	
2bdffb1d-e4cf-9d58-5f9d-db380d295eb9	2021-05-23 14:20:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:20:40.852+03	2021-05-23 14:20:40.859+03	
7eacd615-1410-4291-99d2-1fc7b6030e32	2021-05-23 14:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:21:00.853+03	2021-05-23 14:21:00.859+03	
0d7cb807-eeae-55f7-6e60-6741a48c0f4a	2021-05-23 14:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:21:20.853+03	2021-05-23 14:21:20.86+03	
07173966-53af-06f6-74fa-92ba3022d71f	2021-05-23 14:21:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:21:41.852+03	2021-05-23 14:21:41.858+03	
d4b21c57-f305-690e-27e3-b4d96ef9e3ec	2021-05-23 14:22:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:22:01.852+03	2021-05-23 14:22:01.858+03	
b07e4387-477d-9b0b-0b26-c290cf0db26d	2021-05-23 14:22:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:22:21.853+03	2021-05-23 14:22:21.86+03	
0ce77a0b-e4ff-b2a7-414e-229f28e1b81e	2021-05-23 14:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:22:42.852+03	2021-05-23 14:22:42.859+03	
629b5234-bcf5-dc9c-90c7-8653148b7924	2021-05-23 14:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:23:03.852+03	2021-05-23 14:23:03.859+03	
bf7f46e4-2b5f-4952-d089-442490b66d55	2021-05-23 14:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:23:23.852+03	2021-05-23 14:23:23.859+03	
e4cc6479-e57b-6905-3f73-4fe172d928c5	2021-05-23 14:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:23:43.852+03	2021-05-23 14:23:43.859+03	
7aee092e-7763-b851-1ad9-1db37cc162bc	2021-05-23 14:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:24:03.852+03	2021-05-23 14:24:03.858+03	
bf08da93-0b3d-476f-c03a-eaecb7df0af5	2021-05-23 14:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:24:23.852+03	2021-05-23 14:24:23.858+03	
72500929-c9fc-0941-648d-daff42a1b642	2021-05-23 14:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:24:43.852+03	2021-05-23 14:24:43.859+03	
ffc23025-fb40-cfb2-f6b3-884a66c4228f	2021-05-23 14:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:25:03.853+03	2021-05-23 14:25:03.859+03	
299a8ee0-33f4-4df9-3ba7-3abb9bade6ad	2021-05-23 14:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:25:24.852+03	2021-05-23 14:25:24.858+03	
d5ca5094-d876-c780-ed8f-7eaea0a8ce4f	2021-05-23 14:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:25:44.853+03	2021-05-23 14:25:44.86+03	
74e37041-0dcb-e2e0-34a3-4dff67eb7879	2021-05-23 14:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:26:05.853+03	2021-05-23 14:26:05.859+03	
ed53ec40-836d-913d-0e8d-9d2b8470b814	2021-05-23 14:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:26:26.852+03	2021-05-23 14:26:26.859+03	
b9f65e06-bb3f-bd54-dbfe-a266eadd73be	2021-05-23 14:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:05:54.853+03	2021-05-23 14:05:54.985+03	
1ff4266a-050d-a2a1-5f76-a853ac01c439	2021-05-23 14:06:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:06:14.853+03	2021-05-23 14:06:14.859+03	
23e7ca1c-9fd9-a72f-4f1a-24b818791e83	2021-05-23 14:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:06:34.853+03	2021-05-23 14:06:34.859+03	
60621980-afe8-51d6-3ad1-a7527e28079a	2021-05-23 14:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:06:55.853+03	2021-05-23 14:06:55.858+03	
13431177-199c-bc72-f046-222d65e68ee0	2021-05-23 14:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:07:17.852+03	2021-05-23 14:07:17.858+03	
19a1a413-b93c-e2da-d666-98461d864f2e	2021-05-23 14:07:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:07:37.853+03	2021-05-23 14:07:37.86+03	
7f2b113a-2351-d424-b9ce-a618d8ae6703	2021-05-23 14:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:07:57.853+03	2021-05-23 14:07:57.859+03	
913cc228-53f8-c7b3-95b8-b44377d71563	2021-05-23 14:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:08:18.852+03	2021-05-23 14:08:18.858+03	
64aa08a5-c3b5-723a-abc4-97dbb22873c0	2021-05-23 14:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:08:39.852+03	2021-05-23 14:08:39.859+03	
927b9868-1621-7efa-b1e1-d1ae56106c21	2021-05-23 14:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:08:59.852+03	2021-05-23 14:08:59.859+03	
c56d6aa6-a0e4-2ca5-2b6a-d79e37d73e37	2021-05-23 14:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:09:19.852+03	2021-05-23 14:09:19.871+03	
704b4c59-ee78-b1af-eb9c-8b7858b4a27c	2021-05-23 14:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:09:39.852+03	2021-05-23 14:09:39.859+03	
0b6b0154-c457-4b74-a39b-91c3a0f2677f	2021-05-23 14:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:09:59.852+03	2021-05-23 14:09:59.859+03	
d9f7f8dc-cec6-2ab4-ffbc-dfc3086e2d46	2021-05-23 14:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:10:09.852+03	2021-05-23 14:10:09.866+03	
00c7d02a-370d-4b00-7b94-06dda8ecddb2	2021-05-23 14:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:10:29.852+03	2021-05-23 14:10:29.859+03	
8e677250-01a5-8901-e559-2e4484c9201a	2021-05-23 14:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:10:49.852+03	2021-05-23 14:10:49.858+03	
8b3d1097-1106-cb03-0ceb-b5e64c2b96f2	2021-05-23 14:11:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:11:09.852+03	2021-05-23 14:11:09.859+03	
83c1be51-1a8f-c88c-44ac-f1c80d94261c	2021-05-23 14:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:11:29.852+03	2021-05-23 14:11:29.859+03	
317c6fb2-70f5-22c4-6189-cea2c916d777	2021-05-23 14:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:11:49.853+03	2021-05-23 14:11:49.859+03	
b7d6f715-b01b-58e0-cca9-2f2881bc79ba	2021-05-23 14:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:12:10.852+03	2021-05-23 14:12:10.859+03	
5892459c-f3bb-75e9-4ad4-e05a0b81867b	2021-05-23 14:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:12:30.852+03	2021-05-23 14:12:30.859+03	
c2e1e4e7-d00a-0494-f106-fa59f394c6d8	2021-05-23 14:12:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:12:50.853+03	2021-05-23 14:12:50.859+03	
109f9001-8022-167f-d473-c1d26a8d0ae3	2021-05-23 14:13:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:13:11.852+03	2021-05-23 14:13:11.858+03	
f1d8a1c8-05fa-58f9-672d-c15e31fe57ac	2021-05-23 14:13:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:13:31.852+03	2021-05-23 14:13:31.858+03	
eae1be20-9f0a-df88-50a4-e7fd519877a6	2021-05-23 14:13:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:13:51.852+03	2021-05-23 14:13:51.859+03	
484914e2-4c45-5616-d2d4-ec238914e1d6	2021-05-23 14:14:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:14:11.854+03	2021-05-23 14:14:11.86+03	
8f04da1b-94ec-08f2-ed3f-496b32ceb19b	2021-05-23 14:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:14:32.852+03	2021-05-23 14:14:32.859+03	
c1c99f01-ea69-c74a-1a04-c8aeda9b49ec	2021-05-23 14:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:14:52.852+03	2021-05-23 14:14:52.858+03	
bac31324-b584-fec4-4172-1c241de2c3b4	2021-05-23 14:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:15:12.852+03	2021-05-23 14:15:12.858+03	
a6625d63-c23d-d65c-2740-9cd7bff18a5c	2021-05-23 14:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:15:32.852+03	2021-05-23 14:15:32.859+03	
d7576bc2-4d3e-8ad8-dc30-bcea8c2982e3	2021-05-23 14:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:15:52.853+03	2021-05-23 14:15:52.858+03	
5b43c905-652f-7226-a820-8d6293725603	2021-05-23 14:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:16:13.853+03	2021-05-23 14:16:13.859+03	
c485b3b0-7707-6321-41df-5fb0cf91b76b	2021-05-23 14:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:16:34.853+03	2021-05-23 14:16:34.858+03	
fa25cf82-fc7d-2608-ca2f-381e6d257181	2021-05-23 14:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:16:55.852+03	2021-05-23 14:16:55.858+03	
21ed15df-6f49-74c9-07fa-a09487fd15cf	2021-05-23 14:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:17:15.853+03	2021-05-23 14:17:15.859+03	
e8c3b484-689a-f42a-088d-fb46264c161d	2021-05-23 14:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:17:35.853+03	2021-05-23 14:17:35.859+03	
969c7fff-fcf1-2c85-658f-532b517fde21	2021-05-23 14:17:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:17:56.852+03	2021-05-23 14:17:56.874+03	
8a9f96e9-53fc-23f4-953e-1e511ec0a7d3	2021-05-23 14:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:18:16.853+03	2021-05-23 14:18:16.859+03	
7a22acb7-98f4-e587-8daf-62ecf4614df5	2021-05-23 14:18:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:18:37.853+03	2021-05-23 14:18:37.861+03	
fe9257bc-bdf3-3b93-d1a3-ffb18e0279ea	2021-05-23 14:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:18:59.852+03	2021-05-23 14:18:59.858+03	
aba83ecb-0a9d-320c-e630-1b49d50170e0	2021-05-23 14:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:19:19.852+03	2021-05-23 14:19:19.859+03	
5b67a29c-71d4-d5f6-cddc-c2860fb4a738	2021-05-23 14:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:19:39.852+03	2021-05-23 14:19:39.858+03	
3227c469-1807-1482-f38a-6c229551490f	2021-05-23 14:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:19:59.852+03	2021-05-23 14:19:59.858+03	
09955d85-7f4d-8f5b-8f7d-c75ca57d060e	2021-05-23 14:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:20:09.852+03	2021-05-23 14:20:09.867+03	
6498a717-c0cf-a8df-300b-326d82c86122	2021-05-23 14:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:20:30.852+03	2021-05-23 14:20:30.858+03	
309b1c41-fccf-f984-266c-b80732c378bb	2021-05-23 14:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:20:50.852+03	2021-05-23 14:20:50.862+03	
6f4aa409-a63c-ad84-980a-a95ad523c3ce	2021-05-23 14:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:21:10.853+03	2021-05-23 14:21:10.859+03	
007b52e2-cb68-942c-dc04-423970a2e95d	2021-05-23 14:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:21:31.852+03	2021-05-23 14:21:31.859+03	
27a5b433-d96e-bb5e-54e2-f1295be8a437	2021-05-23 14:21:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:21:51.852+03	2021-05-23 14:21:51.859+03	
d0b38204-3837-cfc1-6d4d-558df01e9d29	2021-05-23 14:22:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:22:11.852+03	2021-05-23 14:22:11.86+03	
618355b9-c168-1a37-5493-181abfc90900	2021-05-23 14:22:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:22:31.854+03	2021-05-23 14:22:31.861+03	
2c1119e4-53dc-74a3-fcb8-ea45dc491219	2021-05-23 14:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:22:52.853+03	2021-05-23 14:22:52.858+03	
e3082daa-7d4b-a86e-9d5f-3fb563f3137f	2021-05-23 14:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:23:13.852+03	2021-05-23 14:23:13.858+03	
f2234a5f-7efb-bf1f-b350-1dcd09901240	2021-05-23 14:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:23:33.852+03	2021-05-23 14:23:33.858+03	
00255e85-5a9b-6175-b77b-d941f45072ab	2021-05-23 14:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:23:53.852+03	2021-05-23 14:23:53.858+03	
a6716f6a-dae5-d164-6ebb-07dfd582385f	2021-05-23 14:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:24:13.852+03	2021-05-23 14:24:13.858+03	
b390b373-7dec-cc00-432c-9b35f2b57d1e	2021-05-23 14:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:24:33.852+03	2021-05-23 14:24:33.859+03	
15b35f98-a0b7-4693-99cc-b94d2821e211	2021-05-23 14:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:24:53.853+03	2021-05-23 14:24:53.859+03	
d550b571-9fdd-0b9e-6974-11355b190b22	2021-05-23 14:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:25:14.852+03	2021-05-23 14:25:14.858+03	
9283678d-c2c5-7735-d047-c01635705945	2021-05-23 14:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:25:34.852+03	2021-05-23 14:25:34.859+03	
94186d21-e73e-e84e-a85d-a08a181718d5	2021-05-23 14:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:25:55.852+03	2021-05-23 14:25:55.859+03	
1a7bc55b-9ee4-c60e-9d04-5c6086c009af	2021-05-23 14:26:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:26:16.852+03	2021-05-23 14:26:16.858+03	
297a8a22-91b4-7c49-7c73-39c747ef1b21	2021-05-23 14:26:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:26:36.852+03	2021-05-23 14:26:36.859+03	
b3205183-d8ab-99c4-4ab5-05956a372cf9	2021-05-23 14:26:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:26:46.852+03	2021-05-23 14:26:46.859+03	
648f187d-92f8-8cb0-9ed2-e562cfddc71d	2021-05-23 14:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:27:06.852+03	2021-05-23 14:27:06.859+03	
73d06d27-2922-df95-a703-9d74779ca986	2021-05-23 14:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:27:26.852+03	2021-05-23 14:27:26.86+03	
4f794314-cbbd-3f45-7ff6-eae143d6b84a	2021-05-23 14:27:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:27:46.852+03	2021-05-23 14:27:46.859+03	
20ad1af4-bf5e-12ce-cb0e-463bfd8dd32c	2021-05-23 14:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:28:07.852+03	2021-05-23 14:28:07.859+03	
fc407e3d-3a26-2f61-0a67-037f4cb63da5	2021-05-23 14:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:28:27.853+03	2021-05-23 14:28:27.86+03	
9404ac65-5909-40ee-cb48-889cea42d2a8	2021-05-23 14:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:28:47.853+03	2021-05-23 14:28:47.859+03	
17b7ed80-0998-e2f8-b71f-56b057f1889d	2021-05-23 14:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:29:08.852+03	2021-05-23 14:29:08.859+03	
e9595bd9-6487-7b14-45a4-cc94020f00c1	2021-05-23 14:29:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:29:28.852+03	2021-05-23 14:29:28.859+03	
c4db5364-9790-db03-8128-642dff2c83c3	2021-05-23 14:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:29:48.853+03	2021-05-23 14:29:48.859+03	
d24cffb8-b0a7-25e1-7176-e6e7f3de3796	2021-05-23 14:30:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 14:30:00.853+03	2021-05-23 14:30:00.872+03	ERROR
c9d8a8f8-e91f-48b3-a829-28969c4a6b76	2021-05-23 14:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:30:19.853+03	2021-05-23 14:30:19.859+03	
afdaedad-2f48-33ff-e434-4cf50ec61eed	2021-05-23 14:30:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:30:41.852+03	2021-05-23 14:30:41.859+03	
50cf08b6-56d0-3241-61b5-e9ccbb0117c6	2021-05-23 14:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:31:02.853+03	2021-05-23 14:31:02.859+03	
a4ef3602-0f73-ac9c-c349-d16b49c12d98	2021-05-23 14:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:31:23.852+03	2021-05-23 14:31:23.858+03	
b3d225a4-b93b-ccb6-51fa-8b647d6e3a6e	2021-05-23 14:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:31:44.852+03	2021-05-23 14:31:44.86+03	
7ad7142d-689c-e67c-ac59-9c088aedf068	2021-05-23 14:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:32:04.852+03	2021-05-23 14:32:04.859+03	
37f59322-8b05-5b31-08a1-bf8f422b5e51	2021-05-23 14:32:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:32:24.853+03	2021-05-23 14:32:24.866+03	
3d055cb7-fdb2-95c0-75bc-bd2f7deb9936	2021-05-23 14:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:32:45.853+03	2021-05-23 14:32:45.86+03	
12abf102-eb74-df3b-4339-0babf223b144	2021-05-23 14:33:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:33:06.852+03	2021-05-23 14:33:06.86+03	
7a7d6446-3484-92bc-2a32-98d4c33e6b03	2021-05-23 14:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:33:27.853+03	2021-05-23 14:33:27.858+03	
4fb67dcb-6b5c-d302-5a48-6fcd0b2cfaba	2021-05-23 14:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:33:47.853+03	2021-05-23 14:33:47.859+03	
bd8ca653-ad2c-6367-f128-3ff00fa22ef5	2021-05-23 14:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:34:07.853+03	2021-05-23 14:34:07.932+03	
7d1ff5ce-5b01-22b0-fa32-b819a8597247	2021-05-23 14:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:34:28.853+03	2021-05-23 14:34:28.859+03	
b35df251-48cc-001d-5f43-5aab4c0ac9f3	2021-05-23 14:34:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:34:49.852+03	2021-05-23 14:34:49.858+03	
ffa8bbd7-4a2b-95a9-5b62-4b909a199a61	2021-05-23 14:35:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:35:09.852+03	2021-05-23 14:35:09.858+03	
c0bcd5e8-97d5-1d2b-b3fe-5c17774250d9	2021-05-23 14:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:35:30.852+03	2021-05-23 14:35:30.859+03	
2dcd3c7d-d2c9-0c32-49b1-42fabd760230	2021-05-23 14:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:35:50.852+03	2021-05-23 14:35:50.859+03	
8a19cd10-0dc0-7b12-860a-dead52df65b0	2021-05-23 14:36:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:36:10.852+03	2021-05-23 14:36:10.859+03	
3f6fb0e0-c6b1-851c-cf89-d76051783971	2021-05-23 14:36:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:36:31.853+03	2021-05-23 14:36:31.859+03	
aa36c79e-6c21-283a-3b1f-e06d7d3a635f	2021-05-23 14:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:36:52.852+03	2021-05-23 14:36:52.859+03	
b1e9ac6d-1fac-62f1-0d24-50c2224166c8	2021-05-23 14:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:37:12.852+03	2021-05-23 14:37:12.859+03	
ff5df2d4-c80a-97f2-8948-a5d249fb127f	2021-05-23 14:37:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:37:32.852+03	2021-05-23 14:37:32.859+03	
673b14fe-9c38-8a2c-bde0-5d2e3b072d4c	2021-05-23 14:37:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:37:52.853+03	2021-05-23 14:37:52.859+03	
cde2d446-225a-08b3-a410-1ba83484b5c3	2021-05-23 14:38:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:38:12.853+03	2021-05-23 14:38:12.859+03	
648539d2-a0a8-f056-4a1d-e9549e7ffb76	2021-05-23 14:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:38:33.852+03	2021-05-23 14:38:33.858+03	
7a97f5fe-880a-836c-e29e-3250c014f56d	2021-05-23 14:38:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:38:53.853+03	2021-05-23 14:38:53.86+03	
4b6b5104-f813-504d-796e-7515a74fd327	2021-05-23 14:39:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:39:14.853+03	2021-05-23 14:39:14.859+03	
6cbb1158-3972-276f-600a-5baae4e1997a	2021-05-23 14:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:39:35.853+03	2021-05-23 14:39:35.86+03	
d2849376-24ef-9fdc-81e7-6804341a1f8e	2021-05-23 14:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:39:55.853+03	2021-05-23 14:39:55.859+03	
0c91eb91-2184-244f-65fd-5a62412fe430	2021-05-23 14:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:40:05.853+03	2021-05-23 14:40:05.861+03	
d150de73-1101-fb26-5baa-c4ac61399111	2021-05-23 14:40:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:40:26.852+03	2021-05-23 14:40:26.861+03	
2cc25482-24d4-d799-5fd4-03ace4a85901	2021-05-23 14:40:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:40:46.852+03	2021-05-23 14:40:46.859+03	
0dfedb29-354e-ba10-06c7-f04efdd1b927	2021-05-23 14:41:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:41:06.852+03	2021-05-23 14:41:07.123+03	
303f13f4-506f-dce0-7d20-83f8ebddb899	2021-05-23 14:41:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:41:26.854+03	2021-05-23 14:41:26.861+03	
931f7cad-32ae-a931-a800-c41427789dd7	2021-05-23 14:41:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:41:48.852+03	2021-05-23 14:41:48.859+03	
28f49337-d54d-381f-8cb8-216c9d539a74	2021-05-23 14:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:42:08.852+03	2021-05-23 14:42:08.858+03	
59ce264f-885a-7392-333f-94f56c3e9e07	2021-05-23 14:42:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:42:28.852+03	2021-05-23 14:42:28.859+03	
cdef05cf-b2e8-96f8-63a3-ce59234f43af	2021-05-23 14:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:42:48.853+03	2021-05-23 14:42:48.86+03	
ec54ff2d-61b9-fbd1-ad27-2ecc2166bfec	2021-05-23 14:43:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:43:10.852+03	2021-05-23 14:43:10.865+03	
3687ce30-9bd5-1d93-d568-7515b185f39f	2021-05-23 14:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:43:30.852+03	2021-05-23 14:43:30.859+03	
5baf0f7c-8cc5-c1e9-e0de-25e1cd029f0f	2021-05-23 14:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:43:50.852+03	2021-05-23 14:43:50.859+03	
562eebe7-aa6b-750b-60f7-c30f511201ed	2021-05-23 14:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:44:10.852+03	2021-05-23 14:44:10.874+03	
074cded3-b66f-6814-4afb-e237b05836bf	2021-05-23 14:44:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:44:31.853+03	2021-05-23 14:44:31.859+03	
58fc59e9-30fe-ba19-31b1-c31e7a5aa16c	2021-05-23 14:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:44:52.852+03	2021-05-23 14:44:52.86+03	
5676c564-ab89-8f0c-7731-592648a25d11	2021-05-23 14:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:45:12.852+03	2021-05-23 14:45:12.864+03	
5772d950-7cd5-3c4c-074f-0ff2c4d1ca94	2021-05-23 14:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:45:32.852+03	2021-05-23 14:45:32.859+03	
f1586426-6726-f488-627c-93ce091c322c	2021-05-23 14:45:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:45:52.852+03	2021-05-23 14:45:52.86+03	
527f05af-39f0-85b1-9717-0390ca36169c	2021-05-23 14:46:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:46:12.853+03	2021-05-23 14:46:12.859+03	
b75da5aa-eecd-a2fb-3d87-e74da598bb3d	2021-05-23 14:46:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:46:33.853+03	2021-05-23 14:46:33.859+03	
02d8ebfd-88a8-9608-209a-0d9e1eb90651	2021-05-23 14:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:46:54.852+03	2021-05-23 14:46:54.858+03	
83e38ceb-45ae-46d9-7159-6b3b49257a70	2021-05-23 14:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:47:15.852+03	2021-05-23 14:47:15.867+03	
47b06090-f36c-8331-cb88-ebd7b755e2ed	2021-05-23 14:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:47:35.853+03	2021-05-23 14:47:35.859+03	
be2f7d1c-69d4-6b86-f316-9c6da6eaf4ee	2021-05-23 14:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:26:56.852+03	2021-05-23 14:26:56.86+03	
e7237549-b82f-d3e6-9aeb-e691b1947369	2021-05-23 14:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:27:16.852+03	2021-05-23 14:27:16.859+03	
0176fe02-50ab-e601-812b-146f3dff22f8	2021-05-23 14:27:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:27:36.852+03	2021-05-23 14:27:36.859+03	
9d9af3bb-2997-b86a-7eec-324a138d094d	2021-05-23 14:27:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:27:56.854+03	2021-05-23 14:27:56.86+03	
7b28c3e0-cd99-2a34-31b3-3de9a681b68c	2021-05-23 14:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:28:17.853+03	2021-05-23 14:28:17.858+03	
a2a08e80-b0da-1d4e-e425-f4b2f589a08e	2021-05-23 14:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:28:37.853+03	2021-05-23 14:28:37.86+03	
947f8ff2-3e0e-871e-445a-9da9b875fd4c	2021-05-23 14:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:28:58.852+03	2021-05-23 14:28:58.858+03	
0cad5f3b-1919-6348-a08b-22c7deab9594	2021-05-23 14:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:29:18.852+03	2021-05-23 14:29:18.859+03	
7bbac4f6-6c39-8edd-c2ec-17998ea2d0fe	2021-05-23 14:29:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:29:38.852+03	2021-05-23 14:29:38.86+03	
f40e69a5-1be3-e7bc-8a70-defb6c735911	2021-05-23 14:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:29:59.852+03	2021-05-23 14:29:59.868+03	
820976b2-32cb-e3bb-7480-8ff6620da13b	2021-05-23 14:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:30:09.852+03	2021-05-23 14:30:09.858+03	
40d8388d-ff1f-2fca-fb96-cdaf7658abb7	2021-05-23 14:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:30:30.853+03	2021-05-23 14:30:30.861+03	
394607a4-f5a6-6cea-e06d-ca440e74ef14	2021-05-23 14:30:51.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:30:51.854+03	2021-05-23 14:30:51.861+03	
0c22520f-cd67-cb57-e0b2-03d8f9d4a4ab	2021-05-23 14:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:31:12.853+03	2021-05-23 14:31:12.863+03	
ffa53225-8909-35d0-93ef-fef22bcd8d20	2021-05-23 14:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:31:33.853+03	2021-05-23 14:31:33.859+03	
abee250d-4e1a-1766-c73f-d45678675e72	2021-05-23 14:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:31:54.852+03	2021-05-23 14:31:54.859+03	
219a0457-f14d-07aa-cbba-c87e80fbc12d	2021-05-23 14:32:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:32:14.853+03	2021-05-23 14:32:14.86+03	
603b5a84-6972-0c28-35c9-1207c7cfeba8	2021-05-23 14:32:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:32:34.853+03	2021-05-23 14:32:34.859+03	
88f11e53-7b46-eb8f-f66d-13002453b29c	2021-05-23 14:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:32:55.853+03	2021-05-23 14:32:55.859+03	
420b9694-3c55-7f48-bb35-bb955ba49530	2021-05-23 14:33:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:33:16.853+03	2021-05-23 14:33:16.859+03	
5f0d53d8-fa70-efe1-fb98-f59b63460162	2021-05-23 14:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:33:37.853+03	2021-05-23 14:33:37.859+03	
0b7ee29f-8bd5-c895-804d-10feba5035a1	2021-05-23 14:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:33:57.853+03	2021-05-23 14:33:57.859+03	
7bdff140-66c6-06a5-9d40-557d992d848e	2021-05-23 14:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:34:18.852+03	2021-05-23 14:34:18.859+03	
db4e15f7-9008-9cd9-fd7a-86d805c52b5a	2021-05-23 14:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:34:39.852+03	2021-05-23 14:34:39.858+03	
d1268ff0-d6fd-8373-3f99-9cfaabf3574a	2021-05-23 14:34:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:34:59.852+03	2021-05-23 14:34:59.859+03	
c26fcaa5-6e6c-1d06-e666-139f137da6b2	2021-05-23 14:35:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:35:19.853+03	2021-05-23 14:35:19.869+03	
614f9def-7186-978d-34b1-24c739b28159	2021-05-23 14:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:35:40.852+03	2021-05-23 14:35:40.859+03	
5f1b8f3d-a3f0-2e65-0b7a-66b41a367643	2021-05-23 14:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:36:00.852+03	2021-05-23 14:36:00.858+03	
68325d8d-40f8-6631-6ac0-f7b0dfed9a40	2021-05-23 14:36:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:36:20.853+03	2021-05-23 14:36:20.859+03	
b5d86be5-475d-00ea-7ae6-7d69fe0c74f4	2021-05-23 14:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:36:42.852+03	2021-05-23 14:36:42.859+03	
c876289e-494d-7aa3-8d08-1bc4ea124f70	2021-05-23 14:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:37:02.852+03	2021-05-23 14:37:02.858+03	
d0f450bc-5119-7083-04d4-70cfd0bd83c2	2021-05-23 14:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:37:22.852+03	2021-05-23 14:37:22.858+03	
2f474209-6c48-bd43-c18d-8737f1da2a5c	2021-05-23 14:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:37:42.852+03	2021-05-23 14:37:42.861+03	
6d418a46-1ffb-c190-3e4e-b8b07b4b7a48	2021-05-23 14:38:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:38:02.853+03	2021-05-23 14:38:02.86+03	
1a95ff1a-29b9-cdd6-ddc2-62fb2fd6be90	2021-05-23 14:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:38:23.852+03	2021-05-23 14:38:23.859+03	
90aaf796-f6f7-696c-b728-8ee926f4c22b	2021-05-23 14:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:38:43.853+03	2021-05-23 14:38:43.859+03	
82ff4da4-8e1d-ec92-34c1-95e6d53457ed	2021-05-23 14:39:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:39:04.852+03	2021-05-23 14:39:04.858+03	
516e894d-a320-5fdc-2ff5-415046d71c0f	2021-05-23 14:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:39:25.852+03	2021-05-23 14:39:25.867+03	
dcb19202-eff4-c668-94b0-0de05d21adbb	2021-05-23 14:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:39:45.853+03	2021-05-23 14:39:45.859+03	
918327e8-c51d-95b7-dee1-302b69ed56e7	2021-05-23 14:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 14:40:00.852+03	2021-05-23 14:40:00.867+03	ERROR
6fee2c05-f8df-3d7c-be39-ed8679829ea7	2021-05-23 14:40:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:40:16.852+03	2021-05-23 14:40:16.859+03	
15d2d16a-59f5-cf1c-6dcd-8aded2995a37	2021-05-23 14:40:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:40:36.852+03	2021-05-23 14:40:36.858+03	
86381141-4436-80ef-5b96-3cc8a9c86877	2021-05-23 14:40:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:40:56.852+03	2021-05-23 14:40:56.858+03	
f4bdc97c-352c-4f56-abb6-a612264b6c49	2021-05-23 14:41:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:41:16.852+03	2021-05-23 14:41:16.859+03	
c84d0109-7201-2c33-d462-1a56d2604eb7	2021-05-23 14:41:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:41:37.853+03	2021-05-23 14:41:37.86+03	
ddfb3203-b422-e6a5-16ff-f649745bd594	2021-05-23 14:41:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:41:58.852+03	2021-05-23 14:41:58.874+03	
b1258382-4dd9-a470-53f9-ef3bca518ab8	2021-05-23 14:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:42:18.852+03	2021-05-23 14:42:18.859+03	
e1d5f6b1-43a2-60bb-0f45-d659a700e773	2021-05-23 14:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:42:38.853+03	2021-05-23 14:42:38.858+03	
b7a0625c-4de0-47ce-609c-c4c67b3296b9	2021-05-23 14:42:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:42:59.853+03	2021-05-23 14:42:59.858+03	
6c41d54f-5422-189c-3884-ee85547d6925	2021-05-23 14:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:43:20.852+03	2021-05-23 14:43:20.859+03	
e7dad7d0-62a7-7986-6462-485dda973f74	2021-05-23 14:43:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:43:40.852+03	2021-05-23 14:43:40.859+03	
9455379a-bf42-01b5-7bed-1dea8aca5016	2021-05-23 14:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:44:00.852+03	2021-05-23 14:44:00.862+03	
594c1e34-9633-ede4-17bf-403336ac3989	2021-05-23 14:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:44:20.853+03	2021-05-23 14:44:20.859+03	
05c4d415-146e-8fe1-0d56-404e3602377f	2021-05-23 14:44:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:44:41.854+03	2021-05-23 14:44:41.862+03	
652f8067-df93-ff44-9b53-3e68a2cfa696	2021-05-23 14:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:45:02.852+03	2021-05-23 14:45:02.858+03	
6aace374-aec2-90a9-09fb-9524af99474c	2021-05-23 14:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:45:22.852+03	2021-05-23 14:45:22.862+03	
e12a8a01-2162-e624-d46a-7c88cd036502	2021-05-23 14:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:45:42.852+03	2021-05-23 14:45:42.858+03	
b447127e-79d2-212f-9b74-702c1071f691	2021-05-23 14:46:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:46:02.852+03	2021-05-23 14:46:02.859+03	
8dc90786-6a9d-1f9b-fcb8-a0f603256a04	2021-05-23 14:46:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:46:22.853+03	2021-05-23 14:46:22.861+03	
5712bd07-fea3-d22e-8e4c-a349608591d2	2021-05-23 14:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:46:44.852+03	2021-05-23 14:46:44.858+03	
2079a5a3-12df-68be-c0ff-66ad9d9e9e8d	2021-05-23 14:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:47:04.853+03	2021-05-23 14:47:04.859+03	
4730d3ce-6b2d-7f3c-c67a-73f4a5cddac4	2021-05-23 14:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:47:25.852+03	2021-05-23 14:47:25.858+03	
725eda15-7d2e-1a51-60cc-3a1dbefb01af	2021-05-23 14:47:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:47:46.853+03	2021-05-23 14:47:46.859+03	
9c2360b6-bbda-26bc-fdc3-430644811c64	2021-05-23 14:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:47:57.852+03	2021-05-23 14:47:57.858+03	
9a4d7efe-f5e6-b76f-3938-c99795d5586f	2021-05-23 14:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:48:17.852+03	2021-05-23 14:48:17.858+03	
aec16a08-ce17-0299-9544-7a5b92d3fcb3	2021-05-23 14:48:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:48:37.852+03	2021-05-23 14:48:37.859+03	
6a8c3f49-c45f-de73-8936-1a77a2635881	2021-05-23 14:48:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:48:57.853+03	2021-05-23 14:48:57.859+03	
c16c87ff-abad-c4e2-0e52-a7d38880b6ff	2021-05-23 14:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:49:18.852+03	2021-05-23 14:49:18.865+03	
78f42758-e3e7-f128-8d32-7b5f209bbe7a	2021-05-23 14:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:49:39.853+03	2021-05-23 14:49:39.859+03	
2e16069a-dac3-752e-6983-8401da622722	2021-05-23 14:50:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:50:00.852+03	2021-05-23 14:50:00.859+03	
0c7aa06c-5958-25ce-b3de-5c61f38802a6	2021-05-23 14:50:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:50:20.852+03	2021-05-23 14:50:20.858+03	
0172def4-52c1-7a09-9634-cfd17c0f7351	2021-05-23 14:50:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:50:41.853+03	2021-05-23 14:50:41.861+03	
e940855f-0731-69c9-9943-8d94a24a7a64	2021-05-23 14:51:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:51:01.853+03	2021-05-23 14:51:01.859+03	
ff803381-2008-63cd-cf4d-e91f58a1bc23	2021-05-23 14:51:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:51:22.852+03	2021-05-23 14:51:22.86+03	
67e30ca8-eea2-e300-7ccf-5fc6e73525f4	2021-05-23 14:51:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:51:42.852+03	2021-05-23 14:51:42.863+03	
cb017e36-cd38-668c-b765-eb8c82302145	2021-05-23 14:52:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:52:03.852+03	2021-05-23 14:52:03.859+03	
9cb72ad2-6533-a5ec-ce1a-903d5d56ba9a	2021-05-23 14:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:52:23.852+03	2021-05-23 14:52:23.86+03	
9fa389e6-82fc-cb16-5284-62f3521deae9	2021-05-23 14:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:52:43.852+03	2021-05-23 14:52:43.858+03	
2900c065-2d42-afad-c3f1-b4c59956f658	2021-05-23 14:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:53:03.852+03	2021-05-23 14:53:03.859+03	
cd4ea45c-cfd7-8ab1-c06b-4e002cb3bc22	2021-05-23 14:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:53:23.852+03	2021-05-23 14:53:23.858+03	
d4610929-7ab3-c970-651a-ccb8acb28a1e	2021-05-23 14:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:53:44.852+03	2021-05-23 14:53:44.858+03	
e0fcb0e6-60ba-2ca7-ad74-e7cd0e911351	2021-05-23 14:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:54:04.852+03	2021-05-23 14:54:04.863+03	
9211cf57-9ad6-1ed9-64c4-21617703dc2e	2021-05-23 14:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:54:24.852+03	2021-05-23 14:54:24.861+03	
a474f6c6-c161-642a-a76b-59534743c4b5	2021-05-23 14:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:54:44.853+03	2021-05-23 14:54:44.859+03	
a15954c5-e8a5-a84b-b499-b4e367d6d744	2021-05-23 14:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:55:05.852+03	2021-05-23 14:55:05.869+03	
36eb3cbf-700a-4339-5396-a3cdc192262d	2021-05-23 14:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:55:25.852+03	2021-05-23 14:55:25.866+03	
1ebf2507-7fba-18c9-6b55-fc440619925d	2021-05-23 14:55:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:55:46.852+03	2021-05-23 14:55:46.864+03	
52934c30-95ba-b1e0-db00-fc205409bae7	2021-05-23 14:56:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:56:06.852+03	2021-05-23 14:56:06.858+03	
f727f384-bb24-fefa-3b42-fbcef5d5ed23	2021-05-23 14:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:56:26.852+03	2021-05-23 14:56:26.859+03	
9b920520-a98b-0f3f-cb2a-410f068a04db	2021-05-23 14:56:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:56:46.854+03	2021-05-23 14:56:46.863+03	
7bb8f3e0-6a45-02d8-0626-389e70fbc4a0	2021-05-23 14:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:57:07.852+03	2021-05-23 14:57:07.872+03	
187d2814-f54a-be46-76a3-bd5a93bcb5e7	2021-05-23 14:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:57:28.852+03	2021-05-23 14:57:28.871+03	
26a886d5-8751-e7fa-20b9-eca8438b7c36	2021-05-23 14:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:57:48.852+03	2021-05-23 14:57:48.858+03	
492fa64b-b0f3-7b76-b8e6-112983f09d12	2021-05-23 14:58:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:58:08.852+03	2021-05-23 14:58:08.866+03	
9433108e-0f4d-d4ee-c294-4008264838b1	2021-05-23 14:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:58:28.852+03	2021-05-23 14:58:28.859+03	
b42dd842-4087-4de8-8b41-a51e22fe3705	2021-05-23 14:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:58:48.852+03	2021-05-23 14:58:48.863+03	
2aa894e7-507a-9e3a-70a1-f33405450787	2021-05-23 14:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:59:08.852+03	2021-05-23 14:59:08.858+03	
b43cb42a-3e18-fc4e-60d0-196d1c242c3d	2021-05-23 14:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:59:28.852+03	2021-05-23 14:59:28.865+03	
a4c5a881-1a34-6733-30c6-c8443f97a26d	2021-05-23 14:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:59:48.852+03	2021-05-23 14:59:48.859+03	
b0a4f319-96c9-004c-3342-61c53d6af393	2021-05-23 15:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 15:00:00.852+03	2021-05-23 15:00:00.857+03	ERROR
91e3b133-1fe2-ebe3-cb9f-41a3e32348d6	2021-05-23 15:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:00:18.852+03	2021-05-23 15:00:18.859+03	
5cc00ed9-426a-e8e8-3239-a24c8d87a682	2021-05-23 15:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:00:38.852+03	2021-05-23 15:00:38.858+03	
03d60039-d43f-2527-304b-133971b6d453	2021-05-23 15:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:00:58.852+03	2021-05-23 15:00:58.859+03	
a5a4392c-0276-2b1d-aa36-6ae72291a5e4	2021-05-23 15:01:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:01:18.853+03	2021-05-23 15:01:18.86+03	
8ee7ec81-31fa-3f86-0cf3-49123024fd70	2021-05-23 15:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:01:39.853+03	2021-05-23 15:01:39.858+03	
7c3901d4-d4eb-9a0f-c3d7-975a0545b495	2021-05-23 15:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:02:00.852+03	2021-05-23 15:02:00.863+03	
035be2d3-f0e1-05a2-b937-535f4df1ab4e	2021-05-23 15:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:02:20.853+03	2021-05-23 15:02:20.859+03	
792a914f-8aa2-e129-ee4c-9e1b4608fa1f	2021-05-23 15:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:02:41.852+03	2021-05-23 15:02:41.871+03	
4ea3b0e2-d367-841a-f51a-42dca0dbf43e	2021-05-23 15:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:03:02.852+03	2021-05-23 15:03:02.862+03	
10f477c5-d877-6b6c-24bf-f0878c7c53bb	2021-05-23 15:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:03:22.853+03	2021-05-23 15:03:22.86+03	
4066019b-af41-1f6f-7fe2-fd72b39d275f	2021-05-23 15:03:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:03:43.852+03	2021-05-23 15:03:43.859+03	
3a84b58c-5d1e-eed6-c539-25e73045638f	2021-05-23 15:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:04:03.852+03	2021-05-23 15:04:03.859+03	
224387d8-0f05-b435-c92a-8a05a6526aef	2021-05-23 15:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:04:23.852+03	2021-05-23 15:04:23.859+03	
9888aa76-4174-4486-676b-d88cfc725970	2021-05-23 15:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:04:44.852+03	2021-05-23 15:04:44.859+03	
8e10b17c-d581-5b40-8819-1aa7e9203008	2021-05-23 15:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:05:04.853+03	2021-05-23 15:05:04.859+03	
db2474ab-f4fd-9fec-18f9-8ba7a1bf554d	2021-05-23 15:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:05:25.852+03	2021-05-23 15:05:25.869+03	
13e1e721-e5aa-abf0-2a93-b32b0d660a99	2021-05-23 15:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:05:45.853+03	2021-05-23 15:05:45.86+03	
80934d72-9658-6f27-b9a5-34858b1d1a88	2021-05-23 15:06:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:06:06.853+03	2021-05-23 15:06:06.86+03	
4913f6b7-6ac7-9f30-81a9-e40cb4b61fd9	2021-05-23 15:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:06:27.852+03	2021-05-23 15:06:27.859+03	
e845b839-fc16-c98d-bbd5-a822a0638a73	2021-05-23 15:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:06:47.853+03	2021-05-23 15:06:47.859+03	
d2ff85c7-4d3c-4247-ae3e-27aba4a1ed68	2021-05-23 15:07:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:07:07.853+03	2021-05-23 15:07:07.859+03	
f5c16420-f2ea-6bfa-d88b-4b3e0984a817	2021-05-23 15:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:07:28.852+03	2021-05-23 15:07:28.859+03	
5491ed28-b0c2-a5b4-9521-291ce4370de6	2021-05-23 15:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:07:48.852+03	2021-05-23 15:07:48.858+03	
7b6c797e-939a-1d61-32e4-21f234561848	2021-05-23 15:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:08:08.853+03	2021-05-23 15:08:08.859+03	
aa395eb6-753e-e1cf-0db4-68108abeb724	2021-05-23 15:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:08:29.852+03	2021-05-23 15:08:29.866+03	
7260daad-b3eb-b5b1-ff62-30df7659c3a2	2021-05-23 15:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:08:49.852+03	2021-05-23 15:08:49.859+03	
7036a020-58cc-4b00-2257-b409fdf97194	2021-05-23 14:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:48:07.852+03	2021-05-23 14:48:07.86+03	
188f5e09-6bce-9be9-2b3d-fd5bd606eff0	2021-05-23 14:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:48:27.852+03	2021-05-23 14:48:27.858+03	
0fca75dd-b975-82db-2c75-9a78567234cf	2021-05-23 14:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:48:47.853+03	2021-05-23 14:48:47.861+03	
a00e18bf-91c0-295e-f3ff-8cb4a377800b	2021-05-23 14:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:49:08.852+03	2021-05-23 14:49:08.859+03	
444cbbef-7135-f44c-d74a-a6620edc8f6c	2021-05-23 14:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:49:28.853+03	2021-05-23 14:49:28.863+03	
11fb0615-055c-ecd7-eeb6-0ac6db893eba	2021-05-23 14:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:49:49.853+03	2021-05-23 14:49:49.859+03	
e126684e-31d4-5118-82a0-29824dbe5380	2021-05-23 14:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 14:50:00.853+03	2021-05-23 14:50:00.868+03	ERROR
a234a06e-7489-7907-6ce7-d71b5a5ae987	2021-05-23 14:50:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:50:10.852+03	2021-05-23 14:50:10.86+03	
52377694-7aef-109b-3671-fce1862079d3	2021-05-23 14:50:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:50:30.853+03	2021-05-23 14:50:30.86+03	
d70eb7d1-de2d-9a14-d509-a81a7a38256f	2021-05-23 14:50:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:50:51.853+03	2021-05-23 14:50:51.862+03	
2bf4b35e-820e-6a78-5624-e121608c54ea	2021-05-23 14:51:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:51:12.852+03	2021-05-23 14:51:12.858+03	
d71f5568-2f3e-83ff-64c1-665930b62ab2	2021-05-23 14:51:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:51:32.852+03	2021-05-23 14:51:32.858+03	
2ae1eb3d-67b5-e347-7a44-7ce4ab45ec36	2021-05-23 14:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:51:52.853+03	2021-05-23 14:51:52.86+03	
fa4135e3-bbd2-48bd-91bd-c81088b18a40	2021-05-23 14:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:52:13.852+03	2021-05-23 14:52:13.859+03	
203a06e4-a6e0-f64f-26f0-74217ee8125b	2021-05-23 14:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:52:33.852+03	2021-05-23 14:52:33.858+03	
e2628f22-d1f4-254e-7ad1-347b481f37b6	2021-05-23 14:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:52:53.852+03	2021-05-23 14:52:53.859+03	
e382618c-d3bc-5374-44cd-e2c4ca00f03f	2021-05-23 14:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:53:13.852+03	2021-05-23 14:53:13.858+03	
1a9d180a-8057-ca93-a29d-75f816ed4e0a	2021-05-23 14:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:53:33.853+03	2021-05-23 14:53:33.859+03	
34f344ba-f34c-ee3b-a8a9-9a21d0a9ed0d	2021-05-23 14:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:53:54.852+03	2021-05-23 14:53:54.859+03	
79ac530c-efbb-4955-e22b-06cd2c221dae	2021-05-23 14:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:54:14.852+03	2021-05-23 14:54:14.859+03	
7d95f3b6-4d8e-1ad9-6372-2fe8caeac71d	2021-05-23 14:54:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:54:34.852+03	2021-05-23 14:54:34.86+03	
e02e24fc-6445-7784-0f63-6394b4ccac8d	2021-05-23 14:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:54:54.853+03	2021-05-23 14:54:54.866+03	
1a67fc28-19cb-cd15-4934-937e860585b3	2021-05-23 14:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:55:15.852+03	2021-05-23 14:55:15.859+03	
9332356d-109f-493d-d6ea-87827df6b0ff	2021-05-23 14:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:55:35.853+03	2021-05-23 14:55:35.859+03	
28215f2e-07ef-2e86-7b26-eb5889f6d059	2021-05-23 14:55:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:55:56.852+03	2021-05-23 14:55:56.859+03	
dd945798-d429-e44c-2359-f7dc34e353b8	2021-05-23 14:56:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:56:16.852+03	2021-05-23 14:56:16.859+03	
5b465570-bbb5-ce8e-2b9c-0fea9c710972	2021-05-23 14:56:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:56:36.852+03	2021-05-23 14:56:36.859+03	
46075883-b473-2719-b4ac-b7730cba35df	2021-05-23 14:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:56:57.852+03	2021-05-23 14:56:57.859+03	
2d69b0c0-e1e0-3565-b985-13d6d86f0858	2021-05-23 14:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:57:17.853+03	2021-05-23 14:57:17.86+03	
f68c0252-ee95-41e5-2216-fd394e16db0c	2021-05-23 14:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:57:38.852+03	2021-05-23 14:57:38.862+03	
38dd8ec6-bd06-5d38-ee1a-1537973b2cb1	2021-05-23 14:57:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:57:58.852+03	2021-05-23 14:57:58.859+03	
9885c2a3-b869-7718-8b1d-794e783b616a	2021-05-23 14:58:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:58:18.852+03	2021-05-23 14:58:18.858+03	
8ec843a9-ca66-8356-886c-91d168dcde05	2021-05-23 14:58:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:58:38.852+03	2021-05-23 14:58:38.859+03	
5530059e-fdc5-265f-467b-cfdde1a27bd4	2021-05-23 14:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:58:58.852+03	2021-05-23 14:58:58.87+03	
f372a7f6-9eb2-ce2e-a92a-f016d66ad7b8	2021-05-23 14:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:59:18.852+03	2021-05-23 14:59:18.865+03	
3e984518-5b75-1ed6-8d0a-b0c114f5bf83	2021-05-23 14:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:59:38.852+03	2021-05-23 14:59:38.871+03	
39946043-0ce8-f9a5-96e5-1af02b220cda	2021-05-23 14:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 14:59:58.852+03	2021-05-23 14:59:58.86+03	
0fd8179e-462c-6a56-1993-4b306a59077b	2021-05-23 15:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:00:08.852+03	2021-05-23 15:00:08.859+03	
0ad94930-93db-5cc2-93a3-97acb1e051be	2021-05-23 15:00:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:00:28.852+03	2021-05-23 15:00:28.859+03	
c03fdc7f-be1e-7255-30ff-2f0c486fc885	2021-05-23 15:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:00:48.852+03	2021-05-23 15:00:48.859+03	
78e510f7-1afa-5995-0ae3-0bcd14dd4be4	2021-05-23 15:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:01:08.853+03	2021-05-23 15:01:08.859+03	
b5d7d22f-a6ba-507e-2c09-569c1b7c40ce	2021-05-23 15:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:01:28.853+03	2021-05-23 15:01:28.867+03	
e54e123d-7caf-258b-4914-f938b9afe8d5	2021-05-23 15:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:01:49.853+03	2021-05-23 15:01:49.859+03	
08c7c683-125a-0d92-ba94-81545ee31729	2021-05-23 15:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:02:10.852+03	2021-05-23 15:02:10.86+03	
646ab7f6-0970-a579-fddf-56fd21c12baa	2021-05-23 15:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:02:31.852+03	2021-05-23 15:02:31.872+03	
4758b28e-1d4b-95a6-6e26-2b12ece2f008	2021-05-23 15:02:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:02:51.854+03	2021-05-23 15:02:51.859+03	
409b0769-1970-2280-3c79-fb70dcd7ad28	2021-05-23 15:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:03:12.852+03	2021-05-23 15:03:12.859+03	
a0a85da7-e1a3-0a7d-c7af-0cb418f00373	2021-05-23 15:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:03:33.852+03	2021-05-23 15:03:33.859+03	
ec18c40e-d03e-5d9a-28f2-a6cad2290350	2021-05-23 15:03:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:03:53.852+03	2021-05-23 15:03:53.858+03	
0f65b442-8bd7-7d88-4999-e6a68021ca7c	2021-05-23 15:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:04:13.852+03	2021-05-23 15:04:13.862+03	
20cf23e6-f47a-e694-ea6e-8e2dce82a714	2021-05-23 15:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:04:33.853+03	2021-05-23 15:04:33.859+03	
163b49d9-bc47-acf6-20b2-1aa362efa3b0	2021-05-23 15:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:04:54.852+03	2021-05-23 15:04:54.859+03	
000c98b0-f8ca-b299-8603-5284e21b2c13	2021-05-23 15:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:05:15.852+03	2021-05-23 15:05:15.859+03	
0c7f4eec-1f0b-3c03-ca6f-a102a08dd3bf	2021-05-23 15:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:05:35.853+03	2021-05-23 15:05:35.864+03	
a14eaaff-ff1a-a07e-6403-32ea67f8ae58	2021-05-23 15:05:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:05:56.853+03	2021-05-23 15:05:56.869+03	
854eccb4-2a0b-3a1f-568f-ddabe163a520	2021-05-23 15:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:06:17.852+03	2021-05-23 15:06:17.858+03	
3ae48c3c-c4ca-83da-1789-b144b60c7ec8	2021-05-23 15:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:06:37.852+03	2021-05-23 15:06:37.858+03	
11f93381-9104-9afb-2207-66fd6dc7686c	2021-05-23 15:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:06:57.853+03	2021-05-23 15:06:57.861+03	
cc14cef0-8e4c-f032-fc45-c44d4633ee73	2021-05-23 15:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:07:17.853+03	2021-05-23 15:07:17.859+03	
d8691d98-e532-b3ff-dd3e-e2d522d92519	2021-05-23 15:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:07:38.852+03	2021-05-23 15:07:38.872+03	
bed8a1c7-05bc-b726-a435-41d7a5030590	2021-05-23 15:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:07:58.852+03	2021-05-23 15:07:58.86+03	
34daf381-be96-3d7a-c323-df4aa8291466	2021-05-23 15:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:08:18.853+03	2021-05-23 15:08:18.859+03	
ce409067-69c5-bbda-7258-c4e0e30ec901	2021-05-23 15:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:08:39.852+03	2021-05-23 15:08:39.859+03	
1fbbc524-a3cd-fcf4-a435-99be1ebd7cf0	2021-05-23 15:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:08:59.852+03	2021-05-23 15:08:59.869+03	
955a6302-5705-1525-c63c-ce4570156440	2021-05-23 15:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:09:19.852+03	2021-05-23 15:09:19.858+03	
7fa973e7-9ca7-295c-560d-c5423348eeb2	2021-05-23 15:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:09:39.852+03	2021-05-23 15:09:39.869+03	
3aff59a0-7631-8b87-b648-570bd032eaf5	2021-05-23 15:09:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:09:59.852+03	2021-05-23 15:09:59.859+03	
db6aaa59-88fa-d218-6292-fb8d7d343e80	2021-05-23 15:10:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:10:09.852+03	2021-05-23 15:10:09.859+03	
80f89a71-929d-56c7-6e74-10c68f306893	2021-05-23 15:10:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:10:29.852+03	2021-05-23 15:10:29.859+03	
b948ac8d-ea14-7965-05b3-8cf521e8940f	2021-05-23 15:10:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:10:49.852+03	2021-05-23 15:10:49.859+03	
2761aded-1512-9b5c-4b2e-cd7b64db9208	2021-05-23 15:11:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:11:10.853+03	2021-05-23 15:11:10.86+03	
79de04ca-0d52-8070-ec81-7eedca83c9c4	2021-05-23 15:11:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:11:31.853+03	2021-05-23 15:11:31.859+03	
d3c2c36b-736b-b4f9-e3e9-e5e9ea46fc5a	2021-05-23 15:11:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:11:51.853+03	2021-05-23 15:11:51.86+03	
109da49c-a2d9-4e6a-e4b7-7be2f1675b24	2021-05-23 15:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:12:12.853+03	2021-05-23 15:12:12.859+03	
d8b8833b-2d70-55fc-8b5c-4539316a3417	2021-05-23 15:12:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:12:33.852+03	2021-05-23 15:12:33.859+03	
916dabd8-6957-5183-0a4d-5b7e042650d5	2021-05-23 15:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:12:54.852+03	2021-05-23 15:12:54.859+03	
c7157081-04d8-c0ac-a8e3-935371367119	2021-05-23 15:13:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:13:14.853+03	2021-05-23 15:13:14.861+03	
1f0d8246-291c-8487-658e-a70044ad8b49	2021-05-23 15:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:13:35.853+03	2021-05-23 15:13:35.861+03	
b8d4d57e-3124-88c8-27be-ad1b97ad3e8a	2021-05-23 15:13:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:13:56.852+03	2021-05-23 15:13:56.859+03	
af3b406c-085f-11da-76f6-2ad5ccc92ae7	2021-05-23 15:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:14:17.853+03	2021-05-23 15:14:17.872+03	
4dace3e8-055a-8b19-05cc-8b7c852dfd34	2021-05-23 15:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:14:39.853+03	2021-05-23 15:14:39.859+03	
92f3e2ee-1c3e-cd83-9986-9c8ad90a8d34	2021-05-23 15:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:15:00.852+03	2021-05-23 15:15:00.858+03	
8700978f-6f21-e229-9433-f6b1891eec79	2021-05-23 15:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:15:20.852+03	2021-05-23 15:15:20.859+03	
f11f1917-700a-8816-7db8-8a19ef698d3a	2021-05-23 15:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:15:40.852+03	2021-05-23 15:15:40.859+03	
925f0de0-4e5d-adde-3bed-becf22020513	2021-05-23 15:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:16:00.853+03	2021-05-23 15:16:00.858+03	
e6bf6dd0-38b5-2ea6-dbb4-09d8dac78d7a	2021-05-23 15:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:16:22.853+03	2021-05-23 15:16:22.859+03	
26ff6068-4a2f-6fce-8578-468c0bd351df	2021-05-23 15:16:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:16:44.853+03	2021-05-23 15:16:44.859+03	
28ec3fca-5d8a-e6f6-c1aa-d65b47dabbcf	2021-05-23 15:17:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:17:06.853+03	2021-05-23 15:17:06.86+03	
ef1e1424-9b40-0407-5b1e-74e9a2e1240f	2021-05-23 15:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:17:27.852+03	2021-05-23 15:17:27.859+03	
de965799-adbd-6251-1b11-f9c6d453f259	2021-05-23 15:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:17:48.852+03	2021-05-23 15:17:48.863+03	
abb747ea-d9eb-7536-a024-17f4df2b685f	2021-05-23 15:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:18:08.853+03	2021-05-23 15:18:08.86+03	
77efd670-e52d-3ff0-42c4-e1ed528b0192	2021-05-23 15:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:18:28.853+03	2021-05-23 15:18:28.86+03	
3396f3e5-c596-1343-a4cf-daa5116eb8e1	2021-05-23 15:18:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:18:49.853+03	2021-05-23 15:18:49.859+03	
e59a9fb6-254f-aace-844f-35340174e8a7	2021-05-23 15:19:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:19:10.852+03	2021-05-23 15:19:10.859+03	
ebef8a80-970d-3442-7f60-309ae86cd1c4	2021-05-23 15:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:19:30.853+03	2021-05-23 15:19:30.86+03	
4b23be3b-1d52-edb7-4e09-ff07a5f8396a	2021-05-23 15:19:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:19:51.853+03	2021-05-23 15:19:51.874+03	
208cc3b0-09da-50d9-0e8a-3fd10a14d3e4	2021-05-23 15:20:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:20:01.854+03	2021-05-23 15:20:01.86+03	
53461508-680c-f25e-bbdf-e3e4c7955679	2021-05-23 15:20:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:20:22.853+03	2021-05-23 15:20:22.862+03	
247b7b59-708f-8a56-b157-efba53749098	2021-05-23 15:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:20:43.852+03	2021-05-23 15:20:43.859+03	
5e3d35e7-6db5-4101-aff1-2b45f8edb9ea	2021-05-23 15:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:21:03.853+03	2021-05-23 15:21:03.86+03	
244e76fe-a333-a432-ec21-d192db49f08c	2021-05-23 15:21:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:21:24.853+03	2021-05-23 15:21:24.859+03	
61cc8080-4c8c-8f86-395f-80d2a2b44c77	2021-05-23 15:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:21:44.853+03	2021-05-23 15:21:44.86+03	
1b78565c-c9bb-702e-6b17-e3badbb855e7	2021-05-23 15:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:22:05.853+03	2021-05-23 15:22:05.86+03	
e4413998-4b32-d274-207d-60f2d6b2fb77	2021-05-23 15:22:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:22:26.852+03	2021-05-23 15:22:26.859+03	
650bbeed-af39-9945-9ac4-2f3bc26e197f	2021-05-23 15:22:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:22:46.852+03	2021-05-23 15:22:46.859+03	
39af38d5-9bbc-bad2-2cd6-1e979aecf832	2021-05-23 15:23:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:23:06.852+03	2021-05-23 15:23:06.859+03	
6f2a19af-02da-c33d-a417-6c985c88e3ca	2021-05-23 15:23:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:23:26.852+03	2021-05-23 15:23:26.859+03	
8369fe94-92dc-e9d2-76ae-92e36e31e38c	2021-05-23 15:23:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:23:47.852+03	2021-05-23 15:23:47.859+03	
afbbae66-7551-02b9-d1cd-db8ae4617b9f	2021-05-23 15:24:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:24:07.852+03	2021-05-23 15:24:07.859+03	
c1024b50-3838-07e5-bcab-58d24b1befab	2021-05-23 15:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:24:27.852+03	2021-05-23 15:24:27.859+03	
539f6ad5-7028-e1e5-1e42-7506585b495a	2021-05-23 15:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:24:48.853+03	2021-05-23 15:24:48.86+03	
edface7b-bc86-cd99-0b3a-a683a98fc8d4	2021-05-23 15:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:25:09.852+03	2021-05-23 15:25:09.859+03	
50489c72-0fb3-77cd-6df9-d190e908005a	2021-05-23 15:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:25:29.853+03	2021-05-23 15:25:29.859+03	
53d68553-9eb4-4d4e-46fe-6de5d2aadc9e	2021-05-23 15:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:25:50.853+03	2021-05-23 15:25:50.859+03	
14936b07-1391-18cc-692f-56301a1cf4e5	2021-05-23 15:26:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:26:11.852+03	2021-05-23 15:26:11.858+03	
19586331-678c-b24b-6801-8bb12ef4211f	2021-05-23 15:26:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:26:31.853+03	2021-05-23 15:26:31.859+03	
9e937b5c-77cb-f696-f412-52a7afec1801	2021-05-23 15:26:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:26:51.853+03	2021-05-23 15:26:51.86+03	
617961a1-df74-acb3-f3b2-6f3dc4bd4503	2021-05-23 15:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:27:12.852+03	2021-05-23 15:27:12.858+03	
ecdd0954-3d2b-da59-8ad9-4b9527c9cb03	2021-05-23 15:27:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:27:32.852+03	2021-05-23 15:27:32.858+03	
a9cfef1c-cafd-cfa1-c23b-d48a61c276e2	2021-05-23 15:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:27:52.852+03	2021-05-23 15:27:52.859+03	
d3f5c8ea-4eb8-6a81-7741-3ba9b0763942	2021-05-23 15:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:28:13.853+03	2021-05-23 15:28:13.859+03	
acb0ab5c-e35f-3aae-6a4c-7f73d255f2c0	2021-05-23 15:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:28:34.853+03	2021-05-23 15:28:34.859+03	
52ba1dd2-5df7-a100-2dc0-2d2d07caa88c	2021-05-23 15:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:28:55.853+03	2021-05-23 15:28:55.859+03	
a57306da-3c8c-0cdb-48eb-550db58b0b43	2021-05-23 15:29:16.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:29:16.854+03	2021-05-23 15:29:16.861+03	
5073b4da-7ba2-94c1-eb96-315d0d73b087	2021-05-23 15:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:29:37.852+03	2021-05-23 15:29:37.858+03	
d3dc6bc9-4315-928e-61d3-22f2c8d50d08	2021-05-23 15:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:29:57.852+03	2021-05-23 15:29:57.859+03	
2394cfbe-e323-19b0-a6f0-2477a71f5de6	2021-05-23 15:09:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:09:09.852+03	2021-05-23 15:09:09.86+03	
411551eb-9301-564e-2144-0fa266ab2235	2021-05-23 15:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:09:29.852+03	2021-05-23 15:09:29.859+03	
821c284e-67de-a74d-92dc-e22f9befcd08	2021-05-23 15:09:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:09:49.852+03	2021-05-23 15:09:49.859+03	
0aa63957-f927-3075-0427-412810c1a32f	2021-05-23 15:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 15:10:00.853+03	2021-05-23 15:10:00.857+03	ERROR
7a9eaf03-bb11-6339-03a5-eb7b8421248d	2021-05-23 15:10:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:10:19.852+03	2021-05-23 15:10:19.858+03	
44d999b4-5244-904d-9010-985a8f8370f4	2021-05-23 15:10:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:10:39.852+03	2021-05-23 15:10:39.859+03	
9d7d08e3-ffcd-b11a-6797-db9660daf5f3	2021-05-23 15:10:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:10:59.853+03	2021-05-23 15:10:59.859+03	
cece3aec-42a8-7122-20ed-7fb2001c61f6	2021-05-23 15:11:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:11:21.853+03	2021-05-23 15:11:21.859+03	
2c1b0c97-87d1-d906-b427-2fb04c5dc4aa	2021-05-23 15:11:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:11:41.853+03	2021-05-23 15:11:41.866+03	
d049a4da-5d54-7966-12e9-a5def6faa022	2021-05-23 15:12:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:12:01.854+03	2021-05-23 15:12:01.86+03	
4c4d60eb-0453-3d27-c47e-706c4c8bcc96	2021-05-23 15:12:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:12:23.852+03	2021-05-23 15:12:23.858+03	
0abfdad5-9be3-ad18-f9cc-51f26058b826	2021-05-23 15:12:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:12:43.853+03	2021-05-23 15:12:43.871+03	
8dc7f20c-bca4-c793-a070-41415bbd165f	2021-05-23 15:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:13:04.852+03	2021-05-23 15:13:04.859+03	
3d4fcde8-d4ca-6a5f-6a0d-d14fcef950b0	2021-05-23 15:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:13:25.852+03	2021-05-23 15:13:25.859+03	
bc259dc6-c232-3c04-4b72-76e575e8a8a3	2021-05-23 15:13:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:13:46.852+03	2021-05-23 15:13:46.859+03	
ae5fdf13-146a-e25a-5620-9883aa5f482d	2021-05-23 15:14:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:14:06.854+03	2021-05-23 15:14:06.86+03	
cab2ae4a-c37e-0c09-f797-da2d1fe83244	2021-05-23 15:14:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:14:28.853+03	2021-05-23 15:14:28.859+03	
6c9f9162-fdce-e6b3-236b-fb9513770281	2021-05-23 15:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:14:50.852+03	2021-05-23 15:14:50.86+03	
6946df28-aae3-bae9-4ab6-ac97350984a6	2021-05-23 15:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:15:10.852+03	2021-05-23 15:15:10.858+03	
183e82ff-0570-664e-56ee-0db73d9e96f2	2021-05-23 15:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:15:30.852+03	2021-05-23 15:15:30.86+03	
0e104355-69a5-a4d8-ac4f-0a445d4a7ed1	2021-05-23 15:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:15:50.852+03	2021-05-23 15:15:50.858+03	
549fb71c-62f8-9aa8-16e4-6ea61260827b	2021-05-23 15:16:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:16:11.854+03	2021-05-23 15:16:11.859+03	
6d3718d1-1631-80a8-6e03-3aa71f505f12	2021-05-23 15:16:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:16:33.853+03	2021-05-23 15:16:33.861+03	
b30cebca-2565-ac8e-8120-0aa6dd0fec9b	2021-05-23 15:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:16:55.853+03	2021-05-23 15:16:55.859+03	
92a03435-fda7-0f7f-6697-edae040cd542	2021-05-23 15:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:17:17.852+03	2021-05-23 15:17:17.858+03	
7cad774f-47e5-6743-b58c-0161c4cf97e3	2021-05-23 15:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:17:37.853+03	2021-05-23 15:17:37.859+03	
ae5dcd9a-0a6a-ad77-6cbb-63d473d433db	2021-05-23 15:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:17:58.852+03	2021-05-23 15:17:58.859+03	
414568c9-981b-ecf4-e32c-c95235a92869	2021-05-23 15:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:18:18.853+03	2021-05-23 15:18:18.859+03	
5617b37a-fd8f-f534-4163-f8a31d563514	2021-05-23 15:18:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:18:38.853+03	2021-05-23 15:18:38.859+03	
83c20c93-ab95-aa6e-1aeb-152321c5073d	2021-05-23 15:18:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:18:59.853+03	2021-05-23 15:18:59.872+03	
6f408a2d-4a00-a627-7d91-593de8d035e9	2021-05-23 15:19:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:19:20.853+03	2021-05-23 15:19:20.86+03	
d0393eb3-4ee7-91c1-2ea1-a7e41ee658ba	2021-05-23 15:19:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:19:41.852+03	2021-05-23 15:19:41.859+03	
00004fa3-65ba-71f7-5761-6f38855452a7	2021-05-23 15:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 15:20:00.852+03	2021-05-23 15:20:00.857+03	ERROR
d4923708-b538-3747-86f0-1cea8561538f	2021-05-23 15:20:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:20:12.852+03	2021-05-23 15:20:12.859+03	
3fa08603-16c2-0418-3598-12fe1b24d136	2021-05-23 15:20:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:20:32.853+03	2021-05-23 15:20:32.86+03	
8f5bef8f-1e74-8f0a-e152-fd60b79b8595	2021-05-23 15:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:20:53.852+03	2021-05-23 15:20:53.861+03	
8aeff716-6fb2-d574-4ec8-7cae2433ff7f	2021-05-23 15:21:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:21:14.852+03	2021-05-23 15:21:14.858+03	
faa8da39-aad2-bc5a-6269-fc75ac556bd1	2021-05-23 15:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:21:34.853+03	2021-05-23 15:21:34.888+03	
a07c29f0-c096-f702-13ae-1a51730d007a	2021-05-23 15:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:21:54.853+03	2021-05-23 15:21:54.867+03	
cad903db-f5e1-ce08-8792-cf5b0a9ff542	2021-05-23 15:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:22:15.853+03	2021-05-23 15:22:15.877+03	
84a5043d-e1b3-215b-361a-3205ab85003e	2021-05-23 15:22:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:22:36.852+03	2021-05-23 15:22:36.859+03	
58e181b1-15ce-24cb-981c-16158632c37f	2021-05-23 15:22:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:22:56.852+03	2021-05-23 15:22:56.858+03	
a6bca044-b511-6e8f-1415-cabfcbb653e2	2021-05-23 15:23:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:23:16.852+03	2021-05-23 15:23:16.878+03	
15b20f9e-2b63-2873-ebf4-f34d5f92919c	2021-05-23 15:23:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:23:36.854+03	2021-05-23 15:23:36.874+03	
b1ad6643-2124-2e21-fc23-c71ac7367c55	2021-05-23 15:23:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:23:57.852+03	2021-05-23 15:23:57.864+03	
ff4dace5-7cb4-c3be-6acd-af2cbcd76613	2021-05-23 15:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:24:17.852+03	2021-05-23 15:24:17.859+03	
43e561ee-5305-5a00-0f10-6bd8ccea7e0c	2021-05-23 15:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:24:37.853+03	2021-05-23 15:24:37.872+03	
18523afa-3e34-4dca-8d5f-46ed58a98ae7	2021-05-23 15:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:24:59.852+03	2021-05-23 15:24:59.86+03	
cca9ab68-df67-b236-3c00-6d378943105e	2021-05-23 15:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:25:19.852+03	2021-05-23 15:25:19.861+03	
f1fdad20-eb96-91f7-049d-31a628ee7535	2021-05-23 15:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:25:40.852+03	2021-05-23 15:25:40.858+03	
e6741730-8b41-5174-5f5a-04e2630be877	2021-05-23 15:26:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:26:01.852+03	2021-05-23 15:26:01.87+03	
8d52834f-5665-e6c2-36bd-2b0b21d9a1d6	2021-05-23 15:26:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:26:21.853+03	2021-05-23 15:26:21.86+03	
75663d12-7d72-079e-9b63-1b9e0c9c0fdb	2021-05-23 15:26:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:26:41.853+03	2021-05-23 15:26:41.859+03	
a47bfa0b-4403-b441-d7c2-8b789a37c47f	2021-05-23 15:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:27:02.852+03	2021-05-23 15:27:02.859+03	
60eae1c1-4295-ad5b-8b89-3903cb0e766b	2021-05-23 15:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:27:22.852+03	2021-05-23 15:27:22.859+03	
babd235b-a332-525f-7806-1ee8d8a5241a	2021-05-23 15:27:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:27:42.852+03	2021-05-23 15:27:42.859+03	
bf03b80b-afed-af06-408e-ec51059757e9	2021-05-23 15:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:28:02.853+03	2021-05-23 15:28:02.866+03	
01bda142-e840-59d5-fb01-ba8b44394814	2021-05-23 15:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:28:24.852+03	2021-05-23 15:28:24.858+03	
c1d360f0-21a1-9a3e-5d4c-090be4b7ad56	2021-05-23 15:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:28:45.852+03	2021-05-23 15:28:45.859+03	
771633f6-80f8-b3d5-e5f1-8b4c7ab5050f	2021-05-23 15:29:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:29:06.852+03	2021-05-23 15:29:06.858+03	
ab52c975-aa8e-567a-3b78-e9730c544ca5	2021-05-23 15:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:29:27.852+03	2021-05-23 15:29:27.86+03	
5dcf7238-0ead-8aa5-299c-6781802818c9	2021-05-23 15:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:29:47.852+03	2021-05-23 15:29:47.858+03	
cc045466-a1ff-0613-3b8a-d6ddd80409f4	2021-05-23 15:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 15:30:00.853+03	2021-05-23 15:30:00.858+03	ERROR
95e8a4e1-65b4-6161-b802-407644f1ffa8	2021-05-23 15:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:30:07.852+03	2021-05-23 15:30:07.859+03	
6dc48ef5-3c42-f17f-51cf-b1f6bcdf035e	2021-05-23 15:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:30:27.852+03	2021-05-23 15:30:27.859+03	
4fe7ba40-43c2-6195-8310-7f2ea965ccb4	2021-05-23 15:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:30:47.853+03	2021-05-23 15:30:47.859+03	
7f375ef5-ea27-bbd4-f7f6-ad3099d4febf	2021-05-23 15:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:31:08.852+03	2021-05-23 15:31:08.858+03	
bcbbcc9d-5c83-b7b3-be18-ecc42245d4c4	2021-05-23 15:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:31:28.853+03	2021-05-23 15:31:28.859+03	
25fa8619-f0c1-5cd9-6aa2-8ff81295eeb1	2021-05-23 15:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:31:49.853+03	2021-05-23 15:31:49.86+03	
19808df9-2517-87f6-7276-9d391b049755	2021-05-23 15:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:32:10.852+03	2021-05-23 15:32:10.858+03	
d8ef7ccc-997f-baad-f8ca-bb95bd119f6f	2021-05-23 15:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:32:30.852+03	2021-05-23 15:32:30.859+03	
da469f6b-8e07-9143-7004-50fbd343a937	2021-05-23 15:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:32:50.853+03	2021-05-23 15:32:50.859+03	
ee1f50b4-38d3-e38e-077a-c8294a27d2eb	2021-05-23 15:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:33:10.853+03	2021-05-23 15:33:10.859+03	
34374858-6075-24de-c807-1a7677f3f299	2021-05-23 15:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:33:31.853+03	2021-05-23 15:33:31.859+03	
071c02e8-d45d-6960-53e6-166b2b79cb12	2021-05-23 15:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:33:53.853+03	2021-05-23 15:33:53.86+03	
6e863ee7-a38c-f8e8-0b74-26ccf946f909	2021-05-23 15:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:34:14.853+03	2021-05-23 15:34:14.859+03	
24c523b1-6e29-f0ef-1223-07215003ec74	2021-05-23 15:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:34:35.852+03	2021-05-23 15:34:35.859+03	
3f90081d-dff2-4e6d-0bd8-c8219fb98ec4	2021-05-23 15:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:34:55.853+03	2021-05-23 15:34:55.859+03	
1a39564c-2100-5887-4f29-9c75b5249039	2021-05-23 15:35:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:35:16.852+03	2021-05-23 15:35:16.858+03	
fc7daffd-0727-2448-8d1d-03573827f5a7	2021-05-23 15:35:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:35:36.852+03	2021-05-23 15:35:36.859+03	
c65e3668-9096-d20a-86b4-d54c696751f1	2021-05-23 15:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:35:56.852+03	2021-05-23 15:35:56.859+03	
e6653ed7-95dc-aeee-5b01-80cb26192925	2021-05-23 15:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:36:16.852+03	2021-05-23 15:36:16.86+03	
95cf5623-72eb-310f-4f63-ef78fbe815c3	2021-05-23 15:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:36:36.852+03	2021-05-23 15:36:36.859+03	
30239b50-b1c8-e7c7-1eb9-fd36f9b15037	2021-05-23 15:36:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:36:56.853+03	2021-05-23 15:36:56.869+03	
6c7ef26f-02a3-bfdd-c503-c0dba71f46b9	2021-05-23 15:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:37:17.853+03	2021-05-23 15:37:17.86+03	
f9cad734-1cff-ac49-0f86-9e63a646402c	2021-05-23 15:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:37:38.852+03	2021-05-23 15:37:38.858+03	
8a9b7dbe-f5b1-cdcb-2d38-86ef860a0229	2021-05-23 15:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:37:58.852+03	2021-05-23 15:37:58.859+03	
ce2735b2-f049-617b-1a9d-970689810632	2021-05-23 15:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:38:18.852+03	2021-05-23 15:38:18.859+03	
152be997-4ac6-4dfe-bf9a-e2dd4e1debfd	2021-05-23 15:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:38:38.853+03	2021-05-23 15:38:38.859+03	
421d5e67-939b-9e48-07ad-95183cff9cb4	2021-05-23 15:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:38:59.852+03	2021-05-23 15:38:59.859+03	
ba397b45-6596-d6f6-94cc-44d857a44422	2021-05-23 15:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:39:19.853+03	2021-05-23 15:39:19.859+03	
31adee5c-9dd7-6701-ee5a-a4fc2cc9dda9	2021-05-23 15:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:39:40.852+03	2021-05-23 15:39:40.859+03	
77de145f-97fc-f7d6-1de2-4423fd697a15	2021-05-23 15:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:40:00.852+03	2021-05-23 15:40:00.86+03	
0ef61ce8-6c40-e3eb-2903-9320e24ce52e	2021-05-23 15:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:40:20.853+03	2021-05-23 15:40:20.859+03	
59a52eb6-fc46-ed00-25cf-b1368acb16f4	2021-05-23 15:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:40:41.853+03	2021-05-23 15:40:41.859+03	
52c24d27-3126-88fe-ac2d-02a82b267c2b	2021-05-23 15:41:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:41:01.854+03	2021-05-23 15:41:01.871+03	
4fab44c2-e8d5-a1f2-b2d8-cce373ab9fc1	2021-05-23 15:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:41:22.853+03	2021-05-23 15:41:22.859+03	
18080da8-5a90-5b23-ccc4-30ffa48e5729	2021-05-23 15:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:41:43.852+03	2021-05-23 15:41:43.86+03	
668a1c6a-de52-d07b-6487-36bbfac42674	2021-05-23 15:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:42:03.853+03	2021-05-23 15:42:03.86+03	
7cd2a9a5-1099-eb61-6c1e-568707fef256	2021-05-23 15:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:42:23.853+03	2021-05-23 15:42:23.86+03	
65cb25ae-2b8b-9e9c-dd35-448da981ab88	2021-05-23 15:42:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:42:44.852+03	2021-05-23 15:42:44.859+03	
a2dedc13-74d7-84d2-411f-7bec0a6769a7	2021-05-23 15:43:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:43:04.852+03	2021-05-23 15:43:04.858+03	
f625033b-fab9-d3c1-d201-c45a71e8bd89	2021-05-23 15:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:43:24.853+03	2021-05-23 15:43:24.859+03	
af2fbed8-a201-1fba-2dfa-638e32971071	2021-05-23 15:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:43:44.853+03	2021-05-23 15:43:44.859+03	
2017abf0-59b4-7777-74d5-cd3d4a4d5c4f	2021-05-23 15:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:44:05.852+03	2021-05-23 15:44:05.858+03	
680a0778-2c23-8915-9e18-88f20264a730	2021-05-23 15:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:44:26.852+03	2021-05-23 15:44:26.86+03	
6e59402b-a566-11a9-67e1-e4f06620b364	2021-05-23 15:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:44:47.853+03	2021-05-23 15:44:47.861+03	
ed46f3bb-b2c1-4f40-7653-9e9cd8cc0fdc	2021-05-23 15:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:45:09.852+03	2021-05-23 15:45:09.859+03	
53d54fe9-6a20-ecce-f91a-1fdfea22c28d	2021-05-23 15:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:45:29.852+03	2021-05-23 15:45:29.859+03	
4e5eab6f-6e2c-2297-bb1c-44cb30310ace	2021-05-23 15:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:45:49.852+03	2021-05-23 15:45:49.859+03	
268d11a5-3d82-0d67-e4da-c3cd2f50c650	2021-05-23 15:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:46:09.852+03	2021-05-23 15:46:09.86+03	
96e57337-b40a-f2bd-c593-35735dfd4b9a	2021-05-23 15:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:46:30.852+03	2021-05-23 15:46:30.859+03	
66cba495-ecc4-622c-b14b-0928dcb16c29	2021-05-23 15:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:46:50.853+03	2021-05-23 15:46:50.859+03	
9898b964-1c3c-4fa2-d690-d9f01074245f	2021-05-23 15:47:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:47:11.852+03	2021-05-23 15:47:11.859+03	
16acb8df-6412-9fa8-5e2e-ff749e5e18f2	2021-05-23 15:47:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:47:31.854+03	2021-05-23 15:47:31.86+03	
09e14944-2b8e-3334-dc15-766172da277c	2021-05-23 15:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:47:52.852+03	2021-05-23 15:47:52.858+03	
2d5e4aab-ce9e-b8d9-e942-94d966106199	2021-05-23 15:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:48:12.852+03	2021-05-23 15:48:12.858+03	
366ff277-4d1e-7739-db48-3d7211c4233f	2021-05-23 15:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:48:32.853+03	2021-05-23 15:48:32.859+03	
a9642052-b802-7950-1ba8-91efc84a9865	2021-05-23 15:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:48:52.853+03	2021-05-23 15:48:52.859+03	
aecc2ed9-6141-4026-c352-a13832a5fb93	2021-05-23 15:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:49:13.852+03	2021-05-23 15:49:13.859+03	
4f4c8f65-4ac7-2d0b-b1e7-d3114b45cd09	2021-05-23 15:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:49:34.852+03	2021-05-23 15:49:34.859+03	
685c8747-dc4d-0228-eeb9-47481f3c8eee	2021-05-23 15:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:49:54.852+03	2021-05-23 15:49:54.861+03	
78f927c4-c4ce-fa25-91ec-dfb848e3a58c	2021-05-23 15:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:50:04.853+03	2021-05-23 15:50:04.862+03	
d1413474-260c-9fe5-15d7-c8270cdafe72	2021-05-23 15:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:50:25.853+03	2021-05-23 15:50:25.86+03	
14b9b366-d18e-4a34-7255-cd91da2578d3	2021-05-23 15:50:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:50:46.853+03	2021-05-23 15:50:46.86+03	
badcc9d6-9258-5639-7499-da9d403c0888	2021-05-23 15:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:51:07.852+03	2021-05-23 15:51:07.859+03	
af294c0b-361a-ebda-5427-068ea7e42b5c	2021-05-23 15:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:30:17.852+03	2021-05-23 15:30:17.859+03	
40d4c457-0b9f-9027-b9be-cc36990908e6	2021-05-23 15:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:30:37.852+03	2021-05-23 15:30:37.86+03	
54ca5c54-bf52-e2d7-06ef-d24a76428463	2021-05-23 15:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:30:58.852+03	2021-05-23 15:30:58.858+03	
22314593-8d20-2162-b6d8-dbff28d8d444	2021-05-23 15:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:31:18.852+03	2021-05-23 15:31:18.859+03	
921efeb2-5b1c-6c89-bc91-312f73a7f2bc	2021-05-23 15:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:31:38.853+03	2021-05-23 15:31:38.861+03	
ea88296b-50f7-8e1d-3244-235ad2beee7a	2021-05-23 15:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:32:00.852+03	2021-05-23 15:32:00.858+03	
f22968be-1445-4748-fc10-0d2370c50f96	2021-05-23 15:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:32:20.852+03	2021-05-23 15:32:20.858+03	
394df5b3-d735-45d7-648d-9b25627a992f	2021-05-23 15:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:32:40.852+03	2021-05-23 15:32:40.859+03	
d5e7c294-1dd8-aba7-e068-73ee2b9cf427	2021-05-23 15:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:33:00.853+03	2021-05-23 15:33:00.859+03	
c6dc3b6f-aaff-0cad-203a-be5b87ca4c37	2021-05-23 15:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:33:20.853+03	2021-05-23 15:33:20.859+03	
08bef6be-6ba6-c6d2-f000-e7e47183ba53	2021-05-23 15:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:33:42.853+03	2021-05-23 15:33:42.859+03	
0eec9872-02a4-ceac-956c-3b17009fe4c6	2021-05-23 15:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:34:04.852+03	2021-05-23 15:34:04.859+03	
0b1dd1db-70e6-cecf-0c0c-8be346a8a09c	2021-05-23 15:34:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:34:25.852+03	2021-05-23 15:34:25.859+03	
885c1a12-1f31-8952-23c5-25955e190258	2021-05-23 15:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:34:45.852+03	2021-05-23 15:34:45.859+03	
37c0c88e-39a8-10f0-a5c8-2f05863a9aa5	2021-05-23 15:35:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:35:06.852+03	2021-05-23 15:35:06.859+03	
e4ecc183-c6c3-75c7-3e95-2737d53ef984	2021-05-23 15:35:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:35:26.852+03	2021-05-23 15:35:26.861+03	
ae4ef1f3-85e8-644a-2d81-818c52c1fa2c	2021-05-23 15:35:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:35:46.852+03	2021-05-23 15:35:46.859+03	
be831cd7-b6ca-e888-f906-10d6283d187c	2021-05-23 15:36:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:36:06.852+03	2021-05-23 15:36:06.859+03	
be89297e-98ba-0d6b-6811-ca6de1a3c4a4	2021-05-23 15:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:36:26.852+03	2021-05-23 15:36:26.859+03	
c4d7de07-1b4a-8c0e-de3e-b03b22a89e8e	2021-05-23 15:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:36:46.852+03	2021-05-23 15:36:46.86+03	
5ccbbb23-ccac-8cce-9802-527947813378	2021-05-23 15:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:37:07.852+03	2021-05-23 15:37:07.86+03	
25c52642-cd83-5cb8-507e-d269ce0d4046	2021-05-23 15:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:37:28.852+03	2021-05-23 15:37:28.859+03	
a3ee2aad-c3c9-8492-476d-fcc6cafeb2c4	2021-05-23 15:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:37:48.852+03	2021-05-23 15:37:48.859+03	
f5f43359-f470-6a8d-3cfc-20986854769b	2021-05-23 15:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:38:08.852+03	2021-05-23 15:38:08.859+03	
32d67e22-7f8a-f3e8-b45f-349912022690	2021-05-23 15:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:38:28.852+03	2021-05-23 15:38:28.859+03	
f7b22eaf-42fd-6981-f61c-ed649632ed76	2021-05-23 15:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:38:49.852+03	2021-05-23 15:38:49.859+03	
1b90fa9e-0e8f-aa4c-878a-5813808b37cc	2021-05-23 15:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:39:09.853+03	2021-05-23 15:39:09.859+03	
2373e06b-55fa-0f77-d6e6-6e46852116be	2021-05-23 15:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:39:29.853+03	2021-05-23 15:39:29.859+03	
d818ec73-d29d-e52e-afa5-d1ea647a2d2e	2021-05-23 15:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:39:50.852+03	2021-05-23 15:39:50.859+03	
4d4a97b8-6332-0559-b16a-896d569c4634	2021-05-23 15:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 15:40:00.852+03	2021-05-23 15:40:00.868+03	ERROR
ad5d6c3b-e248-6e31-9607-5d727d926ecd	2021-05-23 15:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:40:10.852+03	2021-05-23 15:40:10.858+03	
2873c9d9-8e20-8b1e-0782-d625c2e78b55	2021-05-23 15:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:40:31.852+03	2021-05-23 15:40:31.859+03	
58cb9e28-1cea-da0b-5ec8-553d0a6cff3a	2021-05-23 15:40:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:40:51.854+03	2021-05-23 15:40:51.86+03	
552e48c5-d675-a64c-de3a-b330d072555a	2021-05-23 15:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:41:12.853+03	2021-05-23 15:41:12.859+03	
62eea28c-1d15-e51d-4edd-d48734b411d2	2021-05-23 15:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:41:33.852+03	2021-05-23 15:41:33.859+03	
10814c63-ee82-c929-5bdc-43235a08f356	2021-05-23 15:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:41:53.852+03	2021-05-23 15:41:53.861+03	
b49f9170-fa60-a16f-20e3-64d6e2d755ad	2021-05-23 15:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:42:13.853+03	2021-05-23 15:42:13.86+03	
6daf6bf2-6b09-f9bd-d621-1234a1831d06	2021-05-23 15:42:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:42:34.852+03	2021-05-23 15:42:34.859+03	
0da8239e-77ce-2dcd-8d08-ac6d304dd662	2021-05-23 15:42:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:42:54.852+03	2021-05-23 15:42:54.858+03	
421b821b-6f8b-f17c-7e8b-4a03e84d1169	2021-05-23 15:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:43:14.852+03	2021-05-23 15:43:14.859+03	
f19ca77d-d624-7caa-b7b9-af536c62f3a2	2021-05-23 15:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:43:34.853+03	2021-05-23 15:43:34.859+03	
a72254a7-6d2d-6ceb-a979-7d1aeb0c12a5	2021-05-23 15:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:43:55.852+03	2021-05-23 15:43:55.86+03	
a53dc329-848f-cc4f-f623-556e5929600c	2021-05-23 15:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:44:15.853+03	2021-05-23 15:44:15.859+03	
ffd9f6a5-af9e-38a3-bcbc-fc395de4e0b2	2021-05-23 15:44:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:44:36.853+03	2021-05-23 15:44:36.859+03	
b6458d49-301e-ee25-5852-71a1e81cdf0e	2021-05-23 15:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:44:58.853+03	2021-05-23 15:44:58.861+03	
12a8aa51-ca14-3c29-ed6f-1425a1b42a58	2021-05-23 15:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:45:19.852+03	2021-05-23 15:45:19.858+03	
d709f666-cc48-f5f0-9832-a8933e4197c2	2021-05-23 15:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:45:39.852+03	2021-05-23 15:45:39.859+03	
bcda1ca0-e48d-3b45-b999-38ab9473479f	2021-05-23 15:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:45:59.852+03	2021-05-23 15:45:59.859+03	
f435858a-55da-ed93-059f-58189baa9865	2021-05-23 15:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:46:19.853+03	2021-05-23 15:46:19.859+03	
815d57b0-9428-2d8f-0a05-034c40eddbec	2021-05-23 15:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:46:40.852+03	2021-05-23 15:46:40.858+03	
0a57d9ec-e541-0aba-3d7e-e44e4163b666	2021-05-23 15:47:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:47:01.852+03	2021-05-23 15:47:01.859+03	
f8de2891-6391-20fd-a713-f0302d302f94	2021-05-23 15:47:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:47:21.853+03	2021-05-23 15:47:21.859+03	
19ea28ba-cf44-d9fb-6998-a3b7584d098c	2021-05-23 15:47:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:47:41.854+03	2021-05-23 15:47:41.86+03	
392cf694-238f-2804-1165-4bcd4591f1b0	2021-05-23 15:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:48:02.852+03	2021-05-23 15:48:02.859+03	
cd4439f5-d932-8c2c-e7d3-f73e88646e86	2021-05-23 15:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:48:22.852+03	2021-05-23 15:48:22.859+03	
0486f25d-965a-3ba8-7722-ffa06c62ec98	2021-05-23 15:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:48:42.853+03	2021-05-23 15:48:42.86+03	
1d728b9b-0a1b-3b2b-91e8-c55d1f7fae8f	2021-05-23 15:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:49:03.852+03	2021-05-23 15:49:03.858+03	
be43e47b-cfaf-608b-edc4-c30e97adb1b7	2021-05-23 15:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:49:23.853+03	2021-05-23 15:49:23.861+03	
5e935101-20db-c13a-49d9-ceea35b43283	2021-05-23 15:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:49:44.852+03	2021-05-23 15:49:44.859+03	
7ba99e34-af2c-75b5-aa82-e40bddd2c1fa	2021-05-23 15:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 15:50:00.853+03	2021-05-23 15:50:00.858+03	ERROR
41f5d467-9090-8819-851d-e543e57feae0	2021-05-23 15:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:50:15.852+03	2021-05-23 15:50:15.859+03	
4ce940db-c410-4355-9085-86dc24fae300	2021-05-23 15:50:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:50:36.852+03	2021-05-23 15:50:36.859+03	
b0c6de13-ddf2-54a7-31f3-5c8443a32509	2021-05-23 15:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:50:57.852+03	2021-05-23 15:50:57.859+03	
6b34f877-53e8-0b63-2ef3-b9a19cd8eb09	2021-05-23 15:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:51:17.852+03	2021-05-23 15:51:17.86+03	
f7ea9a27-e082-f34c-472e-2d54bc67230a	2021-05-23 15:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:51:38.852+03	2021-05-23 15:51:38.858+03	
8926fb5d-2871-4185-c16f-4770e7300535	2021-05-23 15:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:51:58.852+03	2021-05-23 15:51:58.859+03	
476b2627-d203-272c-fa89-36d1012b4692	2021-05-23 15:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:52:18.852+03	2021-05-23 15:52:18.858+03	
cc56706f-545c-532a-2986-7df0af1dec63	2021-05-23 15:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:52:38.853+03	2021-05-23 15:52:38.859+03	
3db29354-e9a7-52c9-115d-e657b8b1dcaa	2021-05-23 15:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:52:59.852+03	2021-05-23 15:52:59.859+03	
84e56aea-1947-3ec0-0094-d994b4b0a501	2021-05-23 15:53:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:53:19.853+03	2021-05-23 15:53:19.86+03	
9e4bc416-7038-38ca-8bb0-2726acd2dfc1	2021-05-23 15:53:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:53:41.853+03	2021-05-23 15:53:41.86+03	
18941d8a-9af7-027f-6665-6ff96309a75b	2021-05-23 15:54:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:54:01.853+03	2021-05-23 15:54:01.859+03	
80273fc1-1c5c-8f87-4079-ca10690a246c	2021-05-23 15:54:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:54:21.853+03	2021-05-23 15:54:21.859+03	
48d4b8f9-4799-dc07-da78-37bf14675b97	2021-05-23 15:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:54:42.852+03	2021-05-23 15:54:42.859+03	
7f6c3e5a-fb08-48de-486d-df32b6f86a84	2021-05-23 15:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:55:02.852+03	2021-05-23 15:55:02.858+03	
b9aaedaf-fa2f-f86f-d3ec-3b202f4b1d29	2021-05-23 15:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:55:22.852+03	2021-05-23 15:55:22.859+03	
81244cbf-1880-8145-567e-d7ee31342657	2021-05-23 15:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:55:42.852+03	2021-05-23 15:55:42.858+03	
4e979f91-5d4b-aac9-efbb-7669be3645b5	2021-05-23 15:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:56:02.853+03	2021-05-23 15:56:02.863+03	
b76466c9-c3bd-cd3f-e3e7-b92f7266038b	2021-05-23 15:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:56:23.853+03	2021-05-23 15:56:23.861+03	
7dab17f8-ec55-1f48-12df-25c5c3019091	2021-05-23 15:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:56:44.852+03	2021-05-23 15:56:44.858+03	
ead6cfd8-777f-31d0-eda1-16137490dfb7	2021-05-23 15:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:57:04.852+03	2021-05-23 15:57:04.859+03	
9a3629ab-3c30-7f03-dcdd-15e0b2f68ca4	2021-05-23 15:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:57:24.852+03	2021-05-23 15:57:24.859+03	
44e7af9b-2711-37f7-1b42-a0814e6d18fa	2021-05-23 15:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:57:44.853+03	2021-05-23 15:57:44.859+03	
73d5818d-dc42-b7cc-a6b9-6820cf38ff81	2021-05-23 15:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:58:05.852+03	2021-05-23 15:58:05.859+03	
f8f5a348-a528-75aa-df0e-d449cc6553f6	2021-05-23 15:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:58:25.852+03	2021-05-23 15:58:25.859+03	
3c9d05c3-fc2a-f6e8-befb-3e4b646732e8	2021-05-23 15:58:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:58:46.852+03	2021-05-23 15:58:46.859+03	
54abfcfc-ce3c-2111-49cc-c230d09aaffd	2021-05-23 15:59:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:59:06.853+03	2021-05-23 15:59:06.859+03	
f6bd5201-cad4-6b13-6dd9-0c72eb6ca4d6	2021-05-23 15:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:59:27.852+03	2021-05-23 15:59:27.858+03	
5ca4cc51-36da-c3f0-583a-6110dec3cda9	2021-05-23 15:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:59:47.852+03	2021-05-23 15:59:47.87+03	
e3534ef3-3952-9441-2891-e3e4b3386e85	2021-05-23 16:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 16:00:00.853+03	2021-05-23 16:00:00.857+03	ERROR
cb232006-defb-7bcb-4ed1-eddd9b7f350b	2021-05-23 16:00:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:00:17.852+03	2021-05-23 16:00:17.859+03	
2412fdc3-6327-298d-1b99-973a10dca008	2021-05-23 16:00:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:00:37.852+03	2021-05-23 16:00:37.874+03	
18e5cd3b-de90-ae99-817a-40c9982f8254	2021-05-23 16:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:00:57.852+03	2021-05-23 16:00:57.858+03	
9c3c7109-1b3d-a65d-e313-e1261fa7882a	2021-05-23 16:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:01:17.853+03	2021-05-23 16:01:17.858+03	
1d078c0e-630d-6173-f150-5e3ee0882e8c	2021-05-23 16:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:01:38.853+03	2021-05-23 16:01:38.86+03	
f9b663dd-070c-d79e-8e7d-e44e86f58c3b	2021-05-23 16:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:01:59.853+03	2021-05-23 16:01:59.861+03	
6a271b0a-8cef-5c28-ed9d-b3fe0eaeffac	2021-05-23 16:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:02:20.852+03	2021-05-23 16:02:20.859+03	
0e992a3e-56a6-33b7-4858-3703ff3f415b	2021-05-23 16:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:02:40.853+03	2021-05-23 16:02:40.86+03	
a25b2124-b869-5640-fb3e-2f03bb70f190	2021-05-23 16:03:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:03:01.852+03	2021-05-23 16:03:01.859+03	
2c0592e7-8cb5-76ce-264c-ab273e15947c	2021-05-23 16:03:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:03:21.853+03	2021-05-23 16:03:21.859+03	
385711f1-b7d4-741e-5d82-c644ae7c1fab	2021-05-23 16:03:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:03:41.854+03	2021-05-23 16:03:41.861+03	
70208726-1e10-1346-622c-a10b4ba55cc1	2021-05-23 16:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:04:02.853+03	2021-05-23 16:04:02.859+03	
51e255eb-9e4e-3fe7-320a-474fd43e1893	2021-05-23 16:04:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:04:23.852+03	2021-05-23 16:04:23.86+03	
ca90d8eb-527d-33d4-9088-4eeaba0c84e3	2021-05-23 16:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:04:44.853+03	2021-05-23 16:04:44.866+03	
8c15a47f-6a5b-ba47-d797-cfd2f1ad519d	2021-05-23 16:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:05:05.852+03	2021-05-23 16:05:05.86+03	
4ef53b16-a4fb-5c25-8682-91381423be04	2021-05-23 16:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:05:25.853+03	2021-05-23 16:05:25.86+03	
7c3022b8-f24f-5db3-859b-940684a325d4	2021-05-23 16:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:05:45.853+03	2021-05-23 16:05:45.859+03	
8925714a-9395-6238-2114-c0d64aeea3ae	2021-05-23 16:06:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:06:06.854+03	2021-05-23 16:06:06.859+03	
1034ddf4-76e8-dce1-23d6-7a2c57560e11	2021-05-23 16:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:06:28.852+03	2021-05-23 16:06:28.859+03	
8258c357-4084-dc6a-a610-80ea7b8844b3	2021-05-23 16:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:06:48.853+03	2021-05-23 16:06:48.859+03	
6ada9707-53b4-3e37-96a4-a1f82ead50e8	2021-05-23 16:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:07:09.852+03	2021-05-23 16:07:09.859+03	
31593b76-0bdb-61c7-395e-cb514d055b05	2021-05-23 16:07:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:07:29.853+03	2021-05-23 16:07:29.862+03	
4fc72472-84cb-1899-ea00-f56e3bed54a0	2021-05-23 16:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:07:49.853+03	2021-05-23 16:07:49.861+03	
cd37457e-3402-0d09-aa50-92add0033ab0	2021-05-23 16:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:08:10.853+03	2021-05-23 16:08:10.862+03	
bd4dc8db-b5ce-f127-ada2-7d73e5dd61f9	2021-05-23 16:08:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:08:31.854+03	2021-05-23 16:08:31.861+03	
86ca99e2-803b-0970-f193-1414bc5eecee	2021-05-23 16:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:08:52.852+03	2021-05-23 16:08:52.859+03	
fdc74e7e-f837-b650-5eeb-12ccbc800db4	2021-05-23 16:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:09:12.853+03	2021-05-23 16:09:12.859+03	
484534d3-1de9-ab18-b582-ed5179dde5be	2021-05-23 16:09:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:09:33.852+03	2021-05-23 16:09:33.859+03	
857d45bf-7ccb-35b1-5c48-f753b6f552a2	2021-05-23 16:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:09:53.852+03	2021-05-23 16:09:53.861+03	
d55ad37e-59f5-1c93-62c7-5b3c3b247328	2021-05-23 16:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:10:03.853+03	2021-05-23 16:10:03.859+03	
4cb389a8-4d24-8304-430a-9aa7dc7f1d24	2021-05-23 16:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:10:24.852+03	2021-05-23 16:10:24.859+03	
d6ba8bc5-1b27-95c1-c25d-ad7f11f4bdb3	2021-05-23 16:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:10:45.852+03	2021-05-23 16:10:45.859+03	
df7194b0-de80-ceea-5aca-c04661d57837	2021-05-23 16:11:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:11:06.852+03	2021-05-23 16:11:06.863+03	
0a7e3f61-83d2-f176-4988-a26f959d9fc2	2021-05-23 16:11:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:11:27.852+03	2021-05-23 16:11:27.859+03	
f333f5a7-5de3-f681-3f81-42158308eb33	2021-05-23 16:11:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:11:48.852+03	2021-05-23 16:11:48.858+03	
efe62bf1-ba8a-0821-d46a-989156195f9d	2021-05-23 16:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:12:08.852+03	2021-05-23 16:12:08.862+03	
23585346-fa4d-c111-125d-0771507d65aa	2021-05-23 15:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:51:27.853+03	2021-05-23 15:51:27.859+03	
1596d94a-678f-a5fd-be1c-bca62a89dc14	2021-05-23 15:51:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:51:48.852+03	2021-05-23 15:51:48.858+03	
6785ce93-436b-9311-4ed8-7cc31a4ad510	2021-05-23 15:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:52:08.852+03	2021-05-23 15:52:08.858+03	
26673c8e-2d0a-a514-62e3-7b4821cd7d6a	2021-05-23 15:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:52:28.853+03	2021-05-23 15:52:28.859+03	
a0bc44de-0391-2028-695a-82ebbc266b92	2021-05-23 15:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:52:49.852+03	2021-05-23 15:52:49.858+03	
91445276-ace0-a8b4-3787-69072951691d	2021-05-23 15:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:53:09.853+03	2021-05-23 15:53:09.859+03	
27b0e553-6a41-98ee-1ce6-04e0ce195acf	2021-05-23 15:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:53:30.853+03	2021-05-23 15:53:30.859+03	
d10c064e-503e-4ea9-2f77-d46137f06e9b	2021-05-23 15:53:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:53:51.853+03	2021-05-23 15:53:51.858+03	
9530420a-c32b-a788-1bf5-a606e6ffc126	2021-05-23 15:54:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:54:11.853+03	2021-05-23 15:54:11.859+03	
64e3ad5f-2580-18e8-e62d-2f2fec6f1ed2	2021-05-23 15:54:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:54:31.854+03	2021-05-23 15:54:31.859+03	
79d8b2aa-1f77-4619-1ad1-75d9ef0c2b51	2021-05-23 15:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:54:52.852+03	2021-05-23 15:54:52.858+03	
3e1d7c73-c07e-cdda-8dee-15086a3233b5	2021-05-23 15:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:55:12.852+03	2021-05-23 15:55:12.858+03	
bb23b4a9-916c-76f8-2221-0611a0d500a9	2021-05-23 15:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:55:32.852+03	2021-05-23 15:55:32.858+03	
451c1049-54b1-fdd7-9577-5232211a33ed	2021-05-23 15:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:55:52.852+03	2021-05-23 15:55:52.859+03	
ab98aa03-fb83-c267-93bf-d267c59f1465	2021-05-23 15:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:56:13.852+03	2021-05-23 15:56:13.858+03	
1ee9604a-2b04-06f0-5528-b650d561b56d	2021-05-23 15:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:56:34.852+03	2021-05-23 15:56:34.859+03	
a164c2c7-c325-4ab1-68a5-6c6091c2d6c2	2021-05-23 15:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:56:54.852+03	2021-05-23 15:56:54.859+03	
9781634c-548b-cc03-8d34-cfabff0a4f49	2021-05-23 15:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:57:14.852+03	2021-05-23 15:57:14.859+03	
467eba65-f2ec-fab9-c180-6b5b13ed1dab	2021-05-23 15:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:57:34.852+03	2021-05-23 15:57:34.859+03	
dfe09353-4028-01f9-758a-31e09d0954f2	2021-05-23 15:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:57:54.853+03	2021-05-23 15:57:54.86+03	
b74678cb-cb22-5d48-48cf-f52eb04bd2a6	2021-05-23 15:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:58:15.852+03	2021-05-23 15:58:15.858+03	
55ec80d8-ecca-7953-10cd-e8788b5deea0	2021-05-23 15:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:58:35.853+03	2021-05-23 15:58:35.859+03	
488d2f28-b0f3-0cea-1712-31c1f8147605	2021-05-23 15:58:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:58:56.852+03	2021-05-23 15:58:56.866+03	
2c9191fb-14d1-0186-bdb6-66071b45e2f8	2021-05-23 15:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:59:17.852+03	2021-05-23 15:59:17.858+03	
0e60c877-8c7a-9052-09b0-99edcdce801e	2021-05-23 15:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:59:37.852+03	2021-05-23 15:59:37.858+03	
c1769718-9502-7453-f180-191ba5c5caa2	2021-05-23 15:59:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 15:59:57.852+03	2021-05-23 15:59:57.867+03	
cacfec23-b260-3db2-d6b5-41da4261e0a4	2021-05-23 16:00:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:00:07.852+03	2021-05-23 16:00:07.859+03	
02aeb5bc-b94e-c46f-87e6-56c360d97af9	2021-05-23 16:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:00:27.852+03	2021-05-23 16:00:27.872+03	
197685f0-0207-86d0-5099-3d12490d04d0	2021-05-23 16:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:00:47.852+03	2021-05-23 16:00:47.858+03	
ab2a3af1-1e46-f6e4-d37e-53f1283454b3	2021-05-23 16:01:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:01:07.853+03	2021-05-23 16:01:07.861+03	
09c1464d-2663-c0d0-59cb-1baf6c0b32fd	2021-05-23 16:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:01:28.853+03	2021-05-23 16:01:28.86+03	
af289c40-e43d-d129-ba32-df940e4df339	2021-05-23 16:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:01:49.853+03	2021-05-23 16:01:49.86+03	
18994e7a-5875-a85d-a527-7440e29b54dd	2021-05-23 16:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:02:10.852+03	2021-05-23 16:02:10.858+03	
68bb5c35-259b-d609-908e-4c90da1f9e98	2021-05-23 16:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:02:30.852+03	2021-05-23 16:02:30.866+03	
abda09cd-353c-e6ca-c655-e379d83e23a9	2021-05-23 16:02:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:02:51.852+03	2021-05-23 16:02:51.859+03	
4e268407-f2e8-0712-3902-ba516d7f8741	2021-05-23 16:03:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:03:11.853+03	2021-05-23 16:03:11.859+03	
ff3cd158-3bd2-7c08-bc0b-bf712f7dc160	2021-05-23 16:03:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:03:31.853+03	2021-05-23 16:03:31.859+03	
69aa0cbb-4f8c-3a1d-8ed4-713744ffbb10	2021-05-23 16:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:03:52.852+03	2021-05-23 16:03:52.859+03	
a2b028d1-07ac-0b01-6f87-6cd608e9345c	2021-05-23 16:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:04:13.852+03	2021-05-23 16:04:13.858+03	
474c4ba7-d8e8-d0f7-b837-75694ea608e6	2021-05-23 16:04:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:04:33.853+03	2021-05-23 16:04:33.859+03	
8b4c4274-521f-b051-6808-6771a8affb29	2021-05-23 16:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:04:55.852+03	2021-05-23 16:04:55.858+03	
71f622b3-a628-502f-2742-d625c6814797	2021-05-23 16:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:05:15.853+03	2021-05-23 16:05:15.861+03	
323d9d99-336a-6f6a-bfba-57e29dc79bd2	2021-05-23 16:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:05:35.853+03	2021-05-23 16:05:35.86+03	
02ee5d40-252b-5ed1-513e-7c7a3c9de77c	2021-05-23 16:05:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:05:56.852+03	2021-05-23 16:05:56.858+03	
06897809-50f0-0524-b6cc-1b8af22cdf0f	2021-05-23 16:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:06:17.853+03	2021-05-23 16:06:17.858+03	
0f2d84fa-7826-4b0c-e2b6-2e7d563e3026	2021-05-23 16:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:06:38.852+03	2021-05-23 16:06:38.859+03	
c55305e1-ee8f-2999-4032-117dc4b016c6	2021-05-23 16:06:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:06:59.852+03	2021-05-23 16:06:59.859+03	
bb29c45f-6bf9-2328-3c01-6a5e8d43307c	2021-05-23 16:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:07:19.852+03	2021-05-23 16:07:19.859+03	
4755bf8a-7383-fdd3-32c6-9edfc4cefed3	2021-05-23 16:07:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:07:39.853+03	2021-05-23 16:07:39.862+03	
e3dd9901-b174-3611-d27c-37975cf46708	2021-05-23 16:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:08:00.853+03	2021-05-23 16:08:00.86+03	
e2385da8-eaa7-258d-ec51-8f54cdde3e1f	2021-05-23 16:08:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:08:20.853+03	2021-05-23 16:08:20.859+03	
632314a8-c068-1af1-3b0b-b45bbbbc239d	2021-05-23 16:08:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:08:41.854+03	2021-05-23 16:08:41.861+03	
37208acb-9e7a-8d69-2b76-2f8a9c4cd3f8	2021-05-23 16:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:09:02.853+03	2021-05-23 16:09:02.86+03	
e9ac69ba-ec3f-e267-7b30-8c4a9c3fb73c	2021-05-23 16:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:09:22.853+03	2021-05-23 16:09:22.859+03	
75792d2e-b1ff-3377-fae9-444553b9425e	2021-05-23 16:09:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:09:43.852+03	2021-05-23 16:09:43.858+03	
cdc99272-9818-101c-ca86-05adf73b1707	2021-05-23 16:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 16:10:00.852+03	2021-05-23 16:10:00.858+03	ERROR
7092a4c4-1db9-dd59-26da-d6f8d09f2bc6	2021-05-23 16:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:10:14.852+03	2021-05-23 16:10:14.859+03	
6b8fec4a-8c32-ea02-8fbc-259cf53635c6	2021-05-23 16:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:10:34.853+03	2021-05-23 16:10:34.861+03	
1aa4e90e-e7b2-4b9f-06d3-204fab8a4040	2021-05-23 16:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:10:55.853+03	2021-05-23 16:10:55.863+03	
4e60aae2-1399-7192-f37f-acbe8b80d012	2021-05-23 16:11:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:11:16.854+03	2021-05-23 16:11:16.86+03	
3f29677a-252d-5683-66ed-e023ebbbe68e	2021-05-23 16:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:11:37.853+03	2021-05-23 16:11:37.86+03	
a6eebb6d-2bbe-4bb0-a6c9-822c0d55b5d8	2021-05-23 16:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:11:58.852+03	2021-05-23 16:11:58.859+03	
7326137b-df5c-ce0a-279e-40ebb3b6f189	2021-05-23 16:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:12:18.852+03	2021-05-23 16:12:18.859+03	
fb4c30c5-07aa-779b-0c41-22170a79aede	2021-05-24 23:00:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:00:41.877+03	2021-05-24 23:00:41.884+03	
e0572de0-fac1-0faa-fcd5-72abfafa8066	2021-05-23 16:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:12:28.852+03	2021-05-23 16:12:28.86+03	
a68f9c1f-17d1-8276-0b7a-94e2a6216045	2021-05-23 22:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:57:03.852+03	2021-05-23 22:57:03.865+03	
93f2a203-a9b5-3350-b7d0-8151022bf222	2021-05-23 16:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:12:48.853+03	2021-05-23 16:12:48.87+03	
1733851a-2dce-aab0-1c54-db26d813805f	2021-05-23 16:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:13:09.852+03	2021-05-23 16:13:09.859+03	
12b12f42-1b2e-ea31-0547-9c44bde8182b	2021-05-23 22:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:57:23.853+03	2021-05-23 22:57:23.859+03	
e07fa901-16f7-62cd-f036-22c89f33376e	2021-05-23 16:13:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:13:29.852+03	2021-05-23 16:13:29.859+03	
68ff8137-8d79-7971-7816-29ad012cd183	2021-05-23 16:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:13:50.852+03	2021-05-23 16:13:50.859+03	
c0d0eb3c-4dc5-8152-877c-8f8a53a7d634	2021-05-23 22:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:57:44.852+03	2021-05-23 22:57:44.86+03	
af306df2-f7ba-754e-ac35-c2bc8fd24a16	2021-05-23 16:14:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:14:10.852+03	2021-05-23 16:14:10.859+03	
9d3b6c46-2b47-5d39-b911-cfff04d2b8c9	2021-05-23 16:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:14:30.853+03	2021-05-23 16:14:30.86+03	
6325eeba-e416-bb1d-187b-d3bc2df95b6c	2021-05-23 22:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:58:04.852+03	2021-05-23 22:58:04.859+03	
986861f4-ff7f-883a-8731-53024f19146f	2021-05-23 16:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:14:52.852+03	2021-05-23 16:14:52.859+03	
a31f7aa8-7051-aec9-d81f-915a5aaecad5	2021-05-23 16:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:15:13.852+03	2021-05-23 16:15:13.858+03	
6894eedc-2f08-8238-7cf4-f5b2d154a370	2021-05-23 22:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:58:25.852+03	2021-05-23 22:58:25.859+03	
e9391540-bdde-c568-4bee-c24995017c7f	2021-05-23 16:15:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:15:33.852+03	2021-05-23 16:15:33.858+03	
47bcaa63-c134-60dd-7a73-40fad95c599b	2021-05-23 16:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:15:53.853+03	2021-05-23 16:15:53.859+03	
76875338-3415-19fd-6af2-25b858197a96	2021-05-23 22:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:58:45.852+03	2021-05-23 22:58:45.859+03	
22524f08-77dc-2091-579a-86ca366b6648	2021-05-23 16:16:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:16:14.852+03	2021-05-23 16:16:14.858+03	
a18f2aa3-fb45-02f6-40bf-ee7912ad9421	2021-05-23 16:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:16:34.853+03	2021-05-23 16:16:34.861+03	
a81d556b-c1b1-baf5-0b67-a10677bb94af	2021-05-23 22:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:59:05.852+03	2021-05-23 22:59:05.859+03	
605d7521-9290-5b69-58e7-bc5f8e555cfb	2021-05-23 16:16:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:16:56.852+03	2021-05-23 16:16:56.858+03	
1bd59f4b-d436-7d7b-c74a-bae095f9a494	2021-05-23 16:17:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:17:16.852+03	2021-05-23 16:17:16.858+03	
e9c85fe6-bb6f-67d2-8ecb-c323990272e3	2021-05-23 22:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:59:25.853+03	2021-05-23 22:59:25.86+03	
38f9925f-707d-23d8-1c0a-dec02cc534a2	2021-05-23 16:17:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:17:37.853+03	2021-05-23 16:17:37.86+03	
208a277a-046e-e9f0-a762-89a8af493437	2021-05-23 16:17:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:17:58.852+03	2021-05-23 16:17:58.859+03	
2cdb6d33-e916-1eb7-bd78-0bf34ab07a4e	2021-05-23 22:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:59:45.853+03	2021-05-23 22:59:45.859+03	
70aae155-25a3-9bbc-b45b-c1011b3e5036	2021-05-23 16:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:18:18.852+03	2021-05-23 16:18:18.858+03	
b4d79e79-d5e3-c20a-2be2-b82b25d709b0	2021-05-23 16:18:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:18:38.852+03	2021-05-23 16:18:38.859+03	
d875e165-7901-90c5-36ef-b8e796831da9	2021-05-23 22:59:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:59:56.852+03	2021-05-23 22:59:56.859+03	
08b39fca-9a5a-12f3-4cd9-9eb8fd2d723a	2021-05-23 16:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:18:58.852+03	2021-05-23 16:18:58.858+03	
cb4c499e-095d-9752-4bfa-3a322488ec2e	2021-05-23 16:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:19:19.852+03	2021-05-23 16:19:19.859+03	
704bf94b-1698-92ef-cef0-19eaff1ee2d3	2021-05-23 23:00:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:00:06.853+03	2021-05-23 23:00:06.86+03	
735e949c-dc44-866d-df27-e0c7978ff26e	2021-05-23 16:19:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:19:39.852+03	2021-05-23 16:19:39.859+03	
56c8054d-a150-c93d-8b1f-34eea38f0872	2021-05-23 16:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:20:00.852+03	2021-05-23 16:20:00.86+03	
d1acf5b2-8ed8-f78f-d23c-4a84f2e9ebdc	2021-05-23 23:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:00:27.852+03	2021-05-23 23:00:27.858+03	
b52e6fbd-7a84-55ad-10ff-dc930f483161	2021-05-23 16:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:20:20.853+03	2021-05-23 16:20:20.86+03	
e059e43d-ba7c-c58c-dc02-a11c1a9f5204	2021-05-23 16:20:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:20:41.852+03	2021-05-23 16:20:41.859+03	
31bfedfa-0aff-f9b2-ecb7-7617b42cd713	2021-05-23 23:00:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:00:47.853+03	2021-05-23 23:00:47.859+03	
63594b21-9be2-334a-4318-b3e2c6f5b6f4	2021-05-23 16:21:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:21:01.853+03	2021-05-23 16:21:01.859+03	
b8d7e025-b582-4c31-3a30-22d66201964b	2021-05-23 16:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:21:22.853+03	2021-05-23 16:21:22.86+03	
93799ad3-c901-2dbe-7e48-c2aa4262988e	2021-05-23 23:01:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:01:07.853+03	2021-05-23 23:01:07.866+03	
d82974ba-db9a-8a8c-8c77-c214c5e1d912	2021-05-23 16:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:21:43.853+03	2021-05-23 16:21:43.86+03	
a1f7bd4c-78db-40bf-a4ba-df16d919313b	2021-05-23 16:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:22:04.852+03	2021-05-23 16:22:04.86+03	
39654f66-d34d-f5b8-cf90-13862766ec44	2021-05-23 23:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:01:27.853+03	2021-05-23 23:01:27.859+03	
5a774c0f-e3ac-ee01-f70f-5c80afd5a38a	2021-05-23 16:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:22:25.853+03	2021-05-23 16:22:25.86+03	
717a0ebe-8cff-5132-1bf3-e26e72dd951b	2021-05-23 16:22:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:22:46.854+03	2021-05-23 16:22:46.859+03	
4c27db30-3f66-5a06-0314-59c23a3b42e3	2021-05-23 23:01:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:01:48.852+03	2021-05-23 23:01:48.858+03	
fe9f2e72-0cb8-6f32-cad1-8985c9374374	2021-05-23 16:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:23:07.852+03	2021-05-23 16:23:07.865+03	
3a4a1ab1-3ae0-98e5-1294-2ea9ddfd6c49	2021-05-23 16:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:23:27.853+03	2021-05-23 16:23:27.859+03	
ade1d531-e2c6-68ee-c033-4c1f4b9e715d	2021-05-23 23:02:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:02:08.852+03	2021-05-23 23:02:08.86+03	
019eadfa-3635-394d-1f26-82ebf76ffff0	2021-05-23 16:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:23:48.852+03	2021-05-23 16:23:48.859+03	
9403982b-d46d-13c6-eaec-1a43d59a8b41	2021-05-23 16:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:24:08.852+03	2021-05-23 16:24:08.859+03	
1f23a4fe-ffc1-d71c-8ee8-b894d1b6e4e7	2021-05-23 23:02:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:02:28.853+03	2021-05-23 23:02:28.865+03	
af00be76-d1b4-94c6-1389-c6feb194c27c	2021-05-23 16:24:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:24:28.852+03	2021-05-23 16:24:28.858+03	
b75a4470-0bc2-af94-25ca-16b3fd42dbc2	2021-05-23 16:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:24:48.852+03	2021-05-23 16:24:48.859+03	
04badc14-8d6f-0739-257e-50aad28b2c1d	2021-05-23 23:02:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:02:49.853+03	2021-05-23 23:02:49.859+03	
0e7cd44c-55c0-d2b2-d2c4-aa1c0f42a24f	2021-05-23 16:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:25:08.853+03	2021-05-23 16:25:08.866+03	
04c60121-8acb-cc1b-1f1c-67f4717abb2e	2021-05-23 16:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:25:30.852+03	2021-05-23 16:25:30.858+03	
bb670e32-85f5-f88b-fd95-4e9c9aa2f570	2021-05-23 23:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:03:10.852+03	2021-05-23 23:03:10.863+03	
7e4ea17c-5305-0442-f815-5fffb0634bd1	2021-05-23 16:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:25:50.852+03	2021-05-23 16:25:50.858+03	
b2767529-1723-2886-b648-c3a1dfb12f42	2021-05-23 16:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:26:10.853+03	2021-05-23 16:26:10.859+03	
eeba1384-1590-4175-b329-3d50df3f4f4f	2021-05-23 16:26:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:26:31.852+03	2021-05-23 16:26:31.865+03	
9a2dc06b-988e-db3b-cba4-8945de1bfcf9	2021-05-23 16:26:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:26:51.853+03	2021-05-23 16:26:51.859+03	
5d766e38-17df-fb20-663a-233e2232a9c7	2021-05-23 16:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:27:12.852+03	2021-05-23 16:27:12.87+03	
3aa34e3f-2780-4f31-9559-aa604e9c1e66	2021-05-23 16:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:12:38.852+03	2021-05-23 16:12:38.859+03	
485b7633-3ba0-2a7a-a41a-cc2a064c44dc	2021-05-23 16:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:12:59.852+03	2021-05-23 16:12:59.859+03	
6c4b347b-a76a-ac3f-a157-5d199cae2f0b	2021-05-23 16:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:13:19.852+03	2021-05-23 16:13:19.859+03	
b36eeb0c-1d0c-4ace-2e2c-cceaaf5b49b7	2021-05-23 16:13:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:13:39.853+03	2021-05-23 16:13:39.86+03	
06ed6d47-d881-539f-b08f-2365b7fee98f	2021-05-23 16:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:14:00.852+03	2021-05-23 16:14:00.859+03	
7c75830c-bf71-cfd5-dcd2-e7879f0c5d12	2021-05-23 16:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:14:20.852+03	2021-05-23 16:14:20.858+03	
4779e13c-4655-d9ed-27b7-9c79dd759d73	2021-05-23 16:14:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:14:41.853+03	2021-05-23 16:14:41.859+03	
aa4563cb-5132-586a-f250-5df94304bc92	2021-05-23 16:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:15:02.853+03	2021-05-23 16:15:02.86+03	
7f73d843-795e-9a63-e572-816c46221875	2021-05-23 16:15:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:15:23.852+03	2021-05-23 16:15:23.86+03	
8ba82c32-38ee-b2e1-9d92-4985c172134c	2021-05-23 16:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:15:43.852+03	2021-05-23 16:15:43.859+03	
678e5bd3-e24e-63cb-163c-6522f9cab901	2021-05-23 16:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:16:03.853+03	2021-05-23 16:16:03.859+03	
b46006cb-b6b2-d0b7-9809-79549e9937ea	2021-05-23 16:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:16:24.852+03	2021-05-23 16:16:24.86+03	
9c031dc7-a1a2-592b-9996-a558b04fd48e	2021-05-23 16:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:16:45.853+03	2021-05-23 16:16:45.859+03	
2704534d-74fb-989e-4fa2-cc4c492655dc	2021-05-23 16:17:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:17:06.852+03	2021-05-23 16:17:06.859+03	
bef47efd-87df-b1d2-57b6-6737c072c4aa	2021-05-23 16:17:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:17:26.853+03	2021-05-23 16:17:26.86+03	
18039c81-024c-bcbc-d900-75bf8b50c74e	2021-05-23 16:17:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:17:48.852+03	2021-05-23 16:17:48.858+03	
f6e252e1-8ea1-efef-44c9-d26ad65ad007	2021-05-23 16:18:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:18:08.852+03	2021-05-23 16:18:08.874+03	
7163962e-31c9-1952-dfa6-82c7a246f403	2021-05-23 16:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:18:28.852+03	2021-05-23 16:18:28.86+03	
370e83bb-d2dd-81ee-9422-de534ddae144	2021-05-23 16:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:18:48.852+03	2021-05-23 16:18:48.859+03	
09936e3b-233d-f8d0-c70b-1f270d72efb6	2021-05-23 16:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:19:08.853+03	2021-05-23 16:19:08.859+03	
49db500e-dd98-e360-9986-df0b5f31b224	2021-05-23 16:19:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:19:29.852+03	2021-05-23 16:19:29.86+03	
c6ad43d0-987a-9da4-dde3-8e8e70dfb718	2021-05-23 16:19:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:19:49.853+03	2021-05-23 16:19:49.859+03	
8212d0eb-7909-f110-c1b8-3f0e01e1f92f	2021-05-23 16:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 16:20:00.853+03	2021-05-23 16:20:00.87+03	ERROR
1dd9b475-efc6-68e3-7857-489415b31711	2021-05-23 16:20:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:20:10.853+03	2021-05-23 16:20:10.859+03	
3d04149c-5d40-e069-fbe2-a81a45a9a459	2021-05-23 16:20:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:20:30.853+03	2021-05-23 16:20:30.859+03	
80a38f97-9afe-9eeb-f995-cee26b2c25c1	2021-05-23 16:20:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:20:51.853+03	2021-05-23 16:20:51.862+03	
d0a4fef5-21b4-1afe-51c1-1734fdaacbd7	2021-05-23 16:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:21:12.853+03	2021-05-23 16:21:12.862+03	
e13e9d2e-6d9c-5d6d-08ad-d4008cc35fc5	2021-05-23 16:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:21:33.852+03	2021-05-23 16:21:33.86+03	
6eaf24e7-1544-b3cd-2e69-a586412387e0	2021-05-23 16:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:21:54.852+03	2021-05-23 16:21:54.859+03	
39288120-bea6-12b7-66cf-3c7826e42f1c	2021-05-23 16:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:22:14.853+03	2021-05-23 16:22:14.858+03	
4ea91570-e843-8575-8d7c-18b28c0820ff	2021-05-23 16:22:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:22:36.853+03	2021-05-23 16:22:36.859+03	
3e58a206-36bd-8d3c-fa73-c9a1cf6b3bc8	2021-05-23 16:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:22:57.852+03	2021-05-23 16:22:57.869+03	
2f52fa5e-1748-878f-6233-59b9ff5fb9ac	2021-05-23 16:23:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:23:17.852+03	2021-05-23 16:23:17.859+03	
b5119284-c87e-88d7-73fc-2eae188414d1	2021-05-23 16:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:23:38.852+03	2021-05-23 16:23:38.859+03	
eecfafc9-4293-08b8-5d85-2df35f626f73	2021-05-23 16:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:23:58.852+03	2021-05-23 16:23:58.858+03	
17caaed3-bf40-4f6b-9b76-e25812e5c934	2021-05-23 16:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:24:18.852+03	2021-05-23 16:24:18.858+03	
1de6ccf6-40c4-44b3-92f8-8dc2a9646379	2021-05-23 16:24:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:24:38.852+03	2021-05-23 16:24:38.86+03	
f8e94139-1fb9-d9f9-27d7-1c6428adacbf	2021-05-23 16:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:24:58.853+03	2021-05-23 16:24:58.859+03	
93293ac9-0c4e-985d-4b8e-e76ebbc8c7fb	2021-05-23 16:25:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:25:19.853+03	2021-05-23 16:25:19.859+03	
7fe07f98-51e7-9c80-9b45-a5789e5e1f63	2021-05-23 16:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:25:40.852+03	2021-05-23 16:25:40.913+03	
62d602e0-f88d-8d47-aafc-9c86c26530a7	2021-05-23 16:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:26:00.852+03	2021-05-23 16:26:00.861+03	
5f34916a-e899-a60b-0d44-f22559fb34cb	2021-05-23 16:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:26:20.853+03	2021-05-23 16:26:20.859+03	
e1cd4f72-a8b4-d2e8-d8e3-9e9766680abc	2021-05-23 16:26:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:26:41.852+03	2021-05-23 16:26:41.859+03	
66eafddc-8bcc-24f1-47b1-96dbfcd89ff5	2021-05-23 16:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:27:02.852+03	2021-05-23 16:27:02.86+03	
e2f2ec58-d695-ee09-c6a8-8c04db9508ca	2021-05-23 16:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:27:22.853+03	2021-05-23 16:27:22.859+03	
4192efc4-23d0-31e1-affe-38dcf44d070d	2021-05-23 16:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:27:33.852+03	2021-05-23 16:27:33.859+03	
e5219dd0-66bb-b03d-5795-46bf02140c3f	2021-05-23 16:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:27:43.852+03	2021-05-23 16:27:43.86+03	
f917d1be-5395-94b1-a61d-20c4aafe92a0	2021-05-23 16:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:27:53.853+03	2021-05-23 16:27:53.859+03	
459f6577-9ced-e3c0-520a-63d101b2b79a	2021-05-23 16:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:28:03.853+03	2021-05-23 16:28:03.859+03	
b5508f8b-9935-7eb0-aa92-ec6ee1d6451d	2021-05-23 16:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:28:13.853+03	2021-05-23 16:28:13.861+03	
b8fe69aa-dc19-b7d4-117d-51743a5ff7b6	2021-05-23 16:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:28:23.853+03	2021-05-23 16:28:23.86+03	
b164ccb4-56af-0d04-3b00-c2db0bda83f0	2021-05-23 16:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:28:34.852+03	2021-05-23 16:28:34.859+03	
0af9ad55-72ae-ba7e-b536-0dfcaa7c962a	2021-05-23 16:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:28:44.852+03	2021-05-23 16:28:44.868+03	
6f1953bf-b36e-1aab-f44c-cbd1311e9b0c	2021-05-23 16:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:28:54.852+03	2021-05-23 16:28:54.859+03	
2bff2ad5-cea1-4441-a008-783ddc3aa9f1	2021-05-23 16:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:29:04.853+03	2021-05-23 16:29:04.859+03	
59f31bfd-06c4-9c33-e2d9-87f84b941e53	2021-05-23 16:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:29:15.853+03	2021-05-23 16:29:15.865+03	
e29976ac-a4ef-f206-a2f9-e619a2c17e17	2021-05-23 16:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:29:25.853+03	2021-05-23 16:29:25.859+03	
99711cd4-fa60-e3cf-9c09-3ed31756e71f	2021-05-23 16:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:29:35.853+03	2021-05-23 16:29:35.859+03	
c9a6191d-5d2b-884e-611f-fe3615ebdfb3	2021-05-23 16:29:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:29:46.852+03	2021-05-23 16:29:46.861+03	
84840c5f-8772-af4d-e220-5eec14f9ce9b	2021-05-23 16:29:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:29:56.852+03	2021-05-23 16:29:56.859+03	
176b7a37-e5ed-1fd9-25db-94176c42648a	2021-05-23 16:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 16:30:00.852+03	2021-05-23 16:30:00.858+03	ERROR
e0a4287b-b0a9-4f82-ae06-5e908c3c27d0	2021-05-23 16:30:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:30:06.854+03	2021-05-23 16:30:06.86+03	
061bf662-375e-7c44-44d3-cc027bbcdf68	2021-05-23 16:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:30:17.852+03	2021-05-23 16:30:17.861+03	
21c6ae58-0631-29a1-30e4-7e6dbe85faec	2021-05-23 16:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:30:27.853+03	2021-05-23 16:30:27.859+03	
e22325cb-edd4-cffd-7f75-78c3b57a6d26	2021-05-23 16:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:30:47.853+03	2021-05-23 16:30:47.859+03	
ea0140be-4d37-f145-fd6b-c3eb7c427538	2021-05-23 16:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:31:08.852+03	2021-05-23 16:31:08.86+03	
21fafa09-abfe-1244-1b00-5af0592162f7	2021-05-23 16:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:31:28.853+03	2021-05-23 16:31:28.86+03	
5d0d9017-b6f7-161d-575e-9405d28aa122	2021-05-23 16:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:31:49.852+03	2021-05-23 16:31:49.858+03	
19a43f90-0deb-4daa-1264-07da225c79e9	2021-05-23 16:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:32:09.852+03	2021-05-23 16:32:09.858+03	
b0314152-dd26-dba3-647a-42b934d40e35	2021-05-23 16:32:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:32:29.853+03	2021-05-23 16:32:29.859+03	
3a2499cd-233b-3b66-f536-dc0f0e39ee8c	2021-05-23 16:32:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:32:49.853+03	2021-05-23 16:32:49.859+03	
39ffc4f0-997d-f5e3-c01a-2b09752fc429	2021-05-23 16:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:33:10.852+03	2021-05-23 16:33:10.859+03	
fc983d32-acba-de99-1d8e-3d702aed3734	2021-05-23 16:33:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:33:31.853+03	2021-05-23 16:33:31.859+03	
b2a8c24e-1a6f-4563-6a1c-9642b1bce80f	2021-05-23 16:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:33:52.852+03	2021-05-23 16:33:52.861+03	
9dfd2c9a-8a9b-aa19-70cb-3171864bd819	2021-05-23 16:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:34:12.853+03	2021-05-23 16:34:12.861+03	
8bc83b59-28a6-c7fe-283c-d9c4308c4c40	2021-05-23 16:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:34:33.852+03	2021-05-23 16:34:33.859+03	
2cb2f31b-fd9b-3840-bb0d-ac5bf3348560	2021-05-23 16:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:34:53.852+03	2021-05-23 16:34:53.873+03	
d072cf55-db5e-cc13-e7c0-3a2b298c801c	2021-05-23 16:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:35:14.853+03	2021-05-23 16:35:14.859+03	
992e8603-7280-6ba0-5e24-ffba3c3cc3e9	2021-05-23 16:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:35:35.852+03	2021-05-23 16:35:35.858+03	
660151cd-a0bf-999d-db54-3d23db952e1a	2021-05-23 16:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:35:55.853+03	2021-05-23 16:35:55.859+03	
ae3e7a73-b37c-7095-f5ac-fbd8a6122a09	2021-05-23 16:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:36:16.852+03	2021-05-23 16:36:16.86+03	
f14d7930-b21f-aa8e-c979-c121408ccdc1	2021-05-23 16:36:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:36:36.852+03	2021-05-23 16:36:36.859+03	
8d0f791e-90d0-df12-3ffc-ff232d630f73	2021-05-23 16:36:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:36:56.853+03	2021-05-23 16:36:56.866+03	
82f8801b-12d8-290c-10b5-89b87e582949	2021-05-23 16:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:37:17.853+03	2021-05-23 16:37:17.859+03	
fb8db431-4999-dee4-56fb-85051480e4dc	2021-05-23 16:37:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:37:37.853+03	2021-05-23 16:37:37.859+03	
8fa9d921-1b1d-1e1f-d2e8-17f4ab2f2012	2021-05-23 16:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:37:58.853+03	2021-05-23 16:37:58.86+03	
429a842e-cee8-6929-28ee-53343e3931ff	2021-05-23 16:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:38:19.852+03	2021-05-23 16:38:19.86+03	
93b75c37-5803-a11a-3af7-a17414976d57	2021-05-23 16:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:38:39.853+03	2021-05-23 16:38:39.859+03	
d0c4d8ef-d04c-e818-7524-1c7c340425d3	2021-05-23 16:39:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:39:00.852+03	2021-05-23 16:39:00.859+03	
3ce4e45f-d156-cdae-85dc-e1af57d833d6	2021-05-23 16:39:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:39:21.852+03	2021-05-23 16:39:21.859+03	
bff3e3e5-2360-25d3-eeb2-d1ec0f84dfba	2021-05-23 16:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:39:41.852+03	2021-05-23 16:39:41.858+03	
9b84defd-0d95-2423-902e-e9c9d8ab22a8	2021-05-23 16:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 16:40:00.853+03	2021-05-23 16:40:00.857+03	ERROR
0cf54b82-1596-99fd-1f14-0b87a31af7d1	2021-05-23 16:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:40:11.852+03	2021-05-23 16:40:11.858+03	
078de36f-74a6-e46d-6dd7-4de11ce7afcc	2021-05-23 16:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:40:31.853+03	2021-05-23 16:40:31.859+03	
ed774450-99c9-483b-ae12-5f1d5ffe1c33	2021-05-23 16:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:40:52.852+03	2021-05-23 16:40:52.858+03	
4c7bd1bb-10be-5f73-165d-d6d191b4d2a5	2021-05-23 16:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:41:12.852+03	2021-05-23 16:41:12.859+03	
b234e470-3c27-692f-f765-c6e80784fded	2021-05-23 16:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:41:32.853+03	2021-05-23 16:41:32.859+03	
b4de3cd5-bb70-3cd9-3c0c-17521aaa888f	2021-05-23 16:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:41:53.853+03	2021-05-23 16:41:53.86+03	
f4997191-5265-50fa-817a-dc2da0109415	2021-05-23 16:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:42:14.853+03	2021-05-23 16:42:15.218+03	
067ba104-517c-4729-b49e-decdb6678084	2021-05-23 16:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:42:35.852+03	2021-05-23 16:42:35.859+03	
f6e493fb-4644-9d17-ba41-f128da262487	2021-05-23 16:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:42:55.853+03	2021-05-23 16:42:55.859+03	
caf08ddb-a87d-0a4a-b3f4-fdbd218bb813	2021-05-23 16:43:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:43:16.852+03	2021-05-23 16:43:16.859+03	
d9ed691b-0a0a-d471-3499-c635200419d5	2021-05-23 16:43:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:43:36.852+03	2021-05-23 16:43:36.86+03	
02f3f6b8-17df-51f2-aaf5-5daaa8dc9732	2021-05-23 16:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:43:57.852+03	2021-05-23 16:43:57.859+03	
cea00f66-71de-67d3-fc86-d6ca0452a64e	2021-05-23 16:44:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:44:18.852+03	2021-05-23 16:44:18.859+03	
1b9ef94f-c5be-f6fd-699e-e11811a75e36	2021-05-23 16:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:44:38.852+03	2021-05-23 16:44:39.156+03	
980c4d47-a0d1-2c2e-6527-a466fd84967a	2021-05-23 16:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:44:58.852+03	2021-05-23 16:44:58.86+03	
8e153387-613c-80e0-05a3-0303459f3868	2021-05-23 16:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:45:18.852+03	2021-05-23 16:45:18.859+03	
b5484c88-05e7-e45b-65bd-a97128b05028	2021-05-23 16:45:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:45:38.852+03	2021-05-23 16:45:38.864+03	
685d8a5b-9115-d6ca-6e47-03fd9bb5e54e	2021-05-23 16:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:45:59.853+03	2021-05-23 16:45:59.859+03	
46102033-62d9-8111-3c8b-47469e28c5bd	2021-05-23 16:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:46:19.853+03	2021-05-23 16:46:19.859+03	
1b489171-26d9-6e70-4366-5fc60d4b1451	2021-05-23 16:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:46:40.852+03	2021-05-23 16:46:40.859+03	
3880b817-01fa-7921-4737-a9563cdc3f4c	2021-05-23 16:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:47:00.853+03	2021-05-23 16:47:00.859+03	
c865ed2d-85b4-9c7e-4b58-2fd210b451bc	2021-05-23 16:47:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:47:21.854+03	2021-05-23 16:47:21.86+03	
1298be60-06b5-9b35-19a4-2f56022cfc93	2021-05-23 16:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:47:42.853+03	2021-05-23 16:47:42.859+03	
b44e478e-284f-1f2f-a512-af889d0dd1f9	2021-05-23 16:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:48:02.853+03	2021-05-23 16:48:02.86+03	
4b59006b-b896-914a-d3c0-2506a6b9b426	2021-05-23 16:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:48:22.853+03	2021-05-23 16:48:22.859+03	
df6c5f1d-73ec-1a3e-80d3-3d67c08a0f0c	2021-05-23 16:48:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:48:42.853+03	2021-05-23 16:48:42.859+03	
68681453-ca1b-6fda-fee8-57fe4d0c7049	2021-05-23 16:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:49:03.852+03	2021-05-23 16:49:03.859+03	
4d0fe0ae-cb83-ed38-64d9-389ae6307b13	2021-05-23 16:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:49:23.852+03	2021-05-23 16:49:23.859+03	
16383c4b-9cbc-0e1e-2a77-5184fc69da8c	2021-05-23 16:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:49:43.852+03	2021-05-23 16:49:43.858+03	
46a020ef-87b2-8f80-2a82-8e68c0db6710	2021-05-23 16:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 16:50:00.853+03	2021-05-23 16:50:00.858+03	ERROR
41aefaab-475a-635b-3277-17743355da6a	2021-05-23 16:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:50:14.852+03	2021-05-23 16:50:14.858+03	
d7827c0c-94c8-2f8c-1d0d-7cd2acb1c437	2021-05-23 16:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:50:34.853+03	2021-05-23 16:50:34.859+03	
1caf1f0d-a706-5b8b-1744-7a0be3d2e8e3	2021-05-23 16:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:50:54.853+03	2021-05-23 16:50:54.859+03	
1c171cb7-7b74-ff76-c077-fe0efbd2f026	2021-05-23 16:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:51:14.853+03	2021-05-23 16:51:14.86+03	
c5363315-5bc5-49dc-0bfa-c9f8c18e87dd	2021-05-23 16:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:30:37.853+03	2021-05-23 16:30:37.859+03	
bec6511e-f563-f852-dd64-ec6afbccf2ea	2021-05-23 16:30:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:30:57.853+03	2021-05-23 16:30:57.859+03	
ccc55179-c089-b498-c39e-16eadf96c8ea	2021-05-23 16:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:31:18.852+03	2021-05-23 16:31:18.86+03	
c62386a5-e3eb-aaee-f72f-1ec01a196bc9	2021-05-23 16:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:31:39.852+03	2021-05-23 16:31:39.865+03	
0149bec6-4748-ec54-7e7f-bcbb4b00a4de	2021-05-23 16:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:31:59.852+03	2021-05-23 16:31:59.858+03	
82947ef7-5d9a-3b9e-f9a7-038951463e81	2021-05-23 16:32:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:32:19.853+03	2021-05-23 16:32:19.862+03	
f08de59d-8a28-8ef8-f104-51e5aba5db42	2021-05-23 16:32:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:32:39.853+03	2021-05-23 16:32:39.859+03	
73045798-48fd-83b6-0558-2164e990aaf2	2021-05-23 16:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:32:59.853+03	2021-05-23 16:32:59.863+03	
338ea99e-6b62-2b59-e930-8d78e4e63d3c	2021-05-23 16:33:20.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:33:20.858+03	2021-05-23 16:33:20.864+03	
e17c43b9-8fc0-b8b2-0370-f1d6c591ef44	2021-05-23 16:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:33:42.852+03	2021-05-23 16:33:42.859+03	
0d475d39-12d5-7d06-fbf9-0f5a3ce5e8ca	2021-05-23 16:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:34:02.852+03	2021-05-23 16:34:02.861+03	
947503ab-fead-7f3b-cf6f-8fc43d5f673d	2021-05-23 16:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:34:22.853+03	2021-05-23 16:34:22.859+03	
91788d04-cf35-1a9b-b59a-898803709b8a	2021-05-23 16:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:34:43.852+03	2021-05-23 16:34:43.858+03	
4ccebcc8-b185-cd1f-eba6-6734ceb93fa5	2021-05-23 16:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:35:03.853+03	2021-05-23 16:35:03.859+03	
890d4102-448e-30a0-8306-5883c30b8012	2021-05-23 16:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:35:25.852+03	2021-05-23 16:35:25.859+03	
72597031-4c4e-5989-2aff-cf988af97b16	2021-05-23 16:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:35:45.852+03	2021-05-23 16:35:45.858+03	
5f395c72-4805-c9ad-fb9f-3e8e562e3eb0	2021-05-23 16:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:36:05.853+03	2021-05-23 16:36:05.86+03	
bf9e4f6d-cab0-eb59-a1c6-bbf8502c17c2	2021-05-23 16:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:36:26.852+03	2021-05-23 16:36:26.859+03	
060fc645-6a91-65aa-5750-5b79db09d81a	2021-05-23 16:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:36:46.852+03	2021-05-23 16:36:46.858+03	
f5d8fe66-5e93-7837-41a1-8a6d0e9c2538	2021-05-23 16:37:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:37:06.854+03	2021-05-23 16:37:06.859+03	
2ee08b24-a753-8996-f455-1f2b629d8536	2021-05-23 16:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:37:27.853+03	2021-05-23 16:37:27.86+03	
358b59ab-1efd-7ab1-e031-8077423cd99c	2021-05-23 16:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:37:48.852+03	2021-05-23 16:37:48.859+03	
8057c2f1-ad01-a79c-1e6b-3477f20e6bda	2021-05-23 16:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:38:09.852+03	2021-05-23 16:38:09.858+03	
e90af91f-c273-137f-0632-b9151416141f	2021-05-23 16:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:38:29.852+03	2021-05-23 16:38:29.873+03	
0e3910a2-7e90-1bf3-20a7-2f6c439d935d	2021-05-23 16:38:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:38:50.852+03	2021-05-23 16:38:50.861+03	
2fceec13-85da-36b5-b942-70090bef028d	2021-05-23 16:39:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:39:10.853+03	2021-05-23 16:39:10.859+03	
4b57b6f8-0a3e-de89-40d0-9d166b397a0c	2021-05-23 16:39:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:39:31.852+03	2021-05-23 16:39:31.859+03	
a8a28030-b4cb-15b4-4773-9ae9a172ba49	2021-05-23 16:39:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:39:51.852+03	2021-05-23 16:39:51.859+03	
77b0bccb-f514-5ebf-c090-13c526dd83df	2021-05-23 16:40:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:40:01.852+03	2021-05-23 16:40:01.86+03	
d7b3b295-9b49-7e43-534b-b313cf6bce19	2021-05-23 16:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:40:21.852+03	2021-05-23 16:40:21.86+03	
0fbbd0bf-7f45-6921-5313-4490a2243624	2021-05-23 16:40:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:40:41.854+03	2021-05-23 16:40:41.861+03	
a5106428-6255-c4bf-a1fe-8eb68b9f1a3d	2021-05-23 16:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:41:02.852+03	2021-05-23 16:41:02.859+03	
3fc420cd-c5bd-1d31-8a23-ad5ec7d37ca3	2021-05-23 16:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:41:22.852+03	2021-05-23 16:41:22.86+03	
68a9e5a0-08bc-3106-9b6b-25f7d4223ffe	2021-05-23 16:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:41:43.852+03	2021-05-23 16:41:43.858+03	
d24dfadb-17b9-caee-d722-057f38f13b33	2021-05-23 16:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:42:04.852+03	2021-05-23 16:42:04.859+03	
7cf5661b-aa66-0f2f-40c3-7f368e194a05	2021-05-23 16:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:42:24.853+03	2021-05-23 16:42:24.859+03	
0868ff88-7843-2e46-8a70-ccc10ef77ce4	2021-05-23 16:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:42:45.852+03	2021-05-23 16:42:45.859+03	
7337f4b3-a9a7-4a12-ca27-7f5f82e04330	2021-05-23 16:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:43:05.853+03	2021-05-23 16:43:05.86+03	
60c8f985-99ea-8c29-2424-a7d10c323053	2021-05-23 16:43:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:43:26.852+03	2021-05-23 16:43:26.858+03	
f458d01b-5285-b728-249e-f51b0cd841ea	2021-05-23 16:43:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:43:46.853+03	2021-05-23 16:43:46.86+03	
468dd477-87be-7a19-83e2-c5acad39c376	2021-05-23 16:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:44:07.853+03	2021-05-23 16:44:07.86+03	
28767622-a7b6-c945-d3d8-5b80b433deeb	2021-05-23 16:44:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:44:28.852+03	2021-05-23 16:44:28.858+03	
a29231a6-351e-9071-1e1e-cf45bc690e7d	2021-05-23 16:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:44:48.852+03	2021-05-23 16:44:48.86+03	
04a33487-c02f-3399-84fe-34b1d8c03f79	2021-05-23 16:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:45:08.852+03	2021-05-23 16:45:08.859+03	
0ca5bed1-3f0f-6a06-a7f3-54a530d86b83	2021-05-23 16:45:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:45:28.852+03	2021-05-23 16:45:28.859+03	
44372708-4edf-e5f0-7f8b-890b7bbc0115	2021-05-23 16:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:45:48.853+03	2021-05-23 16:45:48.86+03	
dbf4a3fa-dd67-e1be-88c8-cd0a1c932942	2021-05-23 16:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:46:09.853+03	2021-05-23 16:46:09.859+03	
fa5e8839-9d3e-2f96-eff1-5ff32eb1fdde	2021-05-23 16:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:46:29.853+03	2021-05-23 16:46:29.86+03	
2874bc23-8c02-937f-8f28-58263cd429a6	2021-05-23 16:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:46:50.852+03	2021-05-23 16:46:50.864+03	
155e4585-d31d-8789-977c-efa50a0a44df	2021-05-23 16:47:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:47:11.853+03	2021-05-23 16:47:11.859+03	
90d83da1-34d5-c912-70ca-5b07b29e2c47	2021-05-23 16:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:47:32.853+03	2021-05-23 16:47:32.859+03	
90166253-3ff7-506d-78bf-dc67447015ee	2021-05-23 16:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:47:52.853+03	2021-05-23 16:47:52.859+03	
12e91f6a-c174-4875-74ba-29eab0e60f9e	2021-05-23 16:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:48:12.853+03	2021-05-23 16:48:12.859+03	
33ffac8b-f8ea-2125-ad76-9a8f3ab5af8a	2021-05-23 16:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:48:32.853+03	2021-05-23 16:48:32.863+03	
558582b4-5847-35d4-54df-55ca1d2e81c0	2021-05-23 16:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:48:53.852+03	2021-05-23 16:48:53.859+03	
ba480191-3695-2c65-b686-0367b8a6c5c0	2021-05-23 16:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:49:13.852+03	2021-05-23 16:49:13.859+03	
fb8f71f8-0675-2ed5-0094-77476e2efbc2	2021-05-23 16:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:49:33.852+03	2021-05-23 16:49:33.86+03	
6b37b130-be38-7df4-644d-b4d56bec94f6	2021-05-23 16:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:49:53.853+03	2021-05-23 16:49:53.875+03	
06751f39-6142-3932-19a1-adf96b51c9cf	2021-05-23 16:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:50:04.852+03	2021-05-23 16:50:04.86+03	
ae19e40d-07d4-8675-af3a-e2576db1db87	2021-05-23 16:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:50:24.852+03	2021-05-23 16:50:24.859+03	
39d6938e-20b7-bc64-60d9-88b561981f04	2021-05-23 16:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:50:44.853+03	2021-05-23 16:50:44.859+03	
45792b66-94ca-6b56-f15f-832b81b32867	2021-05-23 16:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:51:04.853+03	2021-05-23 16:51:04.86+03	
8bd7fe4b-1af2-cfcf-758d-5a59bb9db8cd	2021-05-23 16:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:51:24.853+03	2021-05-23 16:51:24.859+03	
c8e6189a-4ee2-64b5-4d8b-c2a5bb5df225	2021-05-23 16:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:51:34.853+03	2021-05-23 16:51:34.86+03	
602fe73e-9bbd-c678-9206-644f152f0927	2021-05-23 16:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:51:55.853+03	2021-05-23 16:51:55.859+03	
556775f0-ca19-ef53-7036-d30a55d97621	2021-05-23 16:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:52:17.852+03	2021-05-23 16:52:17.86+03	
7a7abec2-4cda-af61-fa9b-230b175b588b	2021-05-23 16:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:52:37.852+03	2021-05-23 16:52:37.86+03	
2334fd91-adf6-26ca-90a6-2ea34bf6cdd9	2021-05-23 16:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:52:58.852+03	2021-05-23 16:52:58.858+03	
d8c0951f-71f8-aba0-ae99-46a22c248368	2021-05-23 16:53:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:53:18.853+03	2021-05-23 16:53:18.86+03	
be27a2b5-b48e-d8b8-b4a6-fcf5369f6524	2021-05-23 16:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:53:38.853+03	2021-05-23 16:53:38.861+03	
23acf674-665c-0010-de1c-e1956503b866	2021-05-23 16:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:54:00.853+03	2021-05-23 16:54:00.86+03	
7a109a51-be9a-8f11-7d87-d994be5c95dc	2021-05-23 16:54:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:54:21.853+03	2021-05-23 16:54:21.86+03	
294a05ba-7101-4b71-3b6f-53c29dfe6275	2021-05-23 16:54:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:54:41.854+03	2021-05-23 16:54:41.86+03	
65ac2f64-8cf8-2b4b-4d25-5e775ba25127	2021-05-23 16:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:55:02.853+03	2021-05-23 16:55:02.859+03	
d9741b21-386a-4b4e-3049-7235ac10c7f4	2021-05-23 16:55:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:55:23.852+03	2021-05-23 16:55:23.859+03	
0be68c01-6a7a-35bd-8b35-ad1cf25f1f1b	2021-05-23 16:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:55:43.852+03	2021-05-23 16:55:43.859+03	
b95005a4-f2f0-d90a-399a-47f21440901d	2021-05-23 16:56:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:56:03.853+03	2021-05-23 16:56:03.872+03	
2143730d-e733-cb89-e39a-29fdd9eeb911	2021-05-23 16:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:56:24.853+03	2021-05-23 16:56:24.859+03	
f532dc4a-d26e-a665-8af7-6ac69fd653f4	2021-05-23 16:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:56:44.853+03	2021-05-23 16:56:44.859+03	
efd5775f-9877-9d4b-c6c7-eb10d7e68ec0	2021-05-23 16:57:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:57:06.852+03	2021-05-23 16:57:06.86+03	
26403c51-840a-a67e-5fbf-ad181f0171e4	2021-05-23 16:57:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:57:26.853+03	2021-05-23 16:57:26.859+03	
3e05570f-dba9-0485-82dd-2d67bfa363a6	2021-05-23 16:57:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:57:46.853+03	2021-05-23 16:57:46.861+03	
57a477cb-1b4b-afeb-a5f9-e85affa6048f	2021-05-23 16:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:58:07.853+03	2021-05-23 16:58:07.858+03	
b493b1dd-0bb7-de75-73e2-2f93bb7ee193	2021-05-23 16:58:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:58:28.853+03	2021-05-23 16:58:28.859+03	
bd4cd4a4-02b8-91a7-9505-53e1180fdaa7	2021-05-23 16:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:58:50.853+03	2021-05-23 16:58:50.859+03	
361ed0af-ffc8-6d4a-739b-b67a6044ef4c	2021-05-23 16:59:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:59:11.852+03	2021-05-23 16:59:11.858+03	
1c7a3cad-b9b3-0a6f-8453-8953c2e5ce15	2021-05-23 16:59:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:59:31.852+03	2021-05-23 16:59:31.858+03	
e6f71d12-883b-e5e3-3ab2-5f1befb032b1	2021-05-23 16:59:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:59:51.853+03	2021-05-23 16:59:51.866+03	
7b042263-5d25-6c93-0f39-30dd3f41dac7	2021-05-23 17:00:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:00:01.853+03	2021-05-23 17:00:01.879+03	
98304f58-13ac-3ccd-6733-ae665ed2e23f	2021-05-23 17:00:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:00:22.853+03	2021-05-23 17:00:22.859+03	
5bc8f5a6-143d-f41e-ef01-8ee8f933ce78	2021-05-23 17:00:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:00:43.852+03	2021-05-23 17:00:43.858+03	
95ff9b15-e95b-af71-88e6-519689feb100	2021-05-23 17:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:01:03.852+03	2021-05-23 17:01:03.859+03	
4b76f773-71cf-9e73-a426-a6a052b4e2ae	2021-05-23 17:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:01:23.852+03	2021-05-23 17:01:23.859+03	
b1879244-e9f0-4662-b221-cdca053d9a95	2021-05-23 17:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:01:43.852+03	2021-05-23 17:01:43.859+03	
fce94b08-fd81-2355-cc7f-4665cc998e55	2021-05-23 17:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:02:03.852+03	2021-05-23 17:02:03.86+03	
09056cdc-f38a-edd9-547f-75750bc462e4	2021-05-23 17:02:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:02:23.852+03	2021-05-23 17:02:23.859+03	
7db1666a-035d-1a9f-ddff-2c29d42f8d19	2021-05-23 17:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:02:44.852+03	2021-05-23 17:02:44.858+03	
1c8f6923-21b1-90b1-3069-db191828c69a	2021-05-23 17:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:03:04.852+03	2021-05-23 17:03:04.858+03	
4e84559b-b86a-229d-e257-7645fd552c80	2021-05-23 17:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:03:24.852+03	2021-05-23 17:03:24.859+03	
ed13ca19-efe5-5452-3723-357bbbbe0c85	2021-05-23 17:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:03:44.852+03	2021-05-23 17:03:44.871+03	
ba756d08-75e2-4d3c-59e3-5133c9631237	2021-05-23 17:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:04:04.852+03	2021-05-23 17:04:04.859+03	
265714f6-a6cd-1060-6676-1783ab4955fc	2021-05-23 17:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:04:24.852+03	2021-05-23 17:04:24.873+03	
10303e9b-56d0-9e8b-7d6d-db0aa65efa9b	2021-05-23 17:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:04:45.852+03	2021-05-23 17:04:45.86+03	
ad875a4b-46d8-2a0f-3ebe-ec96b39f770b	2021-05-23 17:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:05:05.852+03	2021-05-23 17:05:05.859+03	
5d84965c-c3f5-f4fe-1737-fb26d6c41bf6	2021-05-23 17:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:05:25.852+03	2021-05-23 17:05:25.859+03	
cef4ffa3-9ff3-354c-78a2-142f7ac63452	2021-05-23 17:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:05:45.852+03	2021-05-23 17:05:45.859+03	
e3d192df-26e1-7f15-acb0-2e2bb29ddd23	2021-05-23 17:06:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:06:06.852+03	2021-05-23 17:06:06.86+03	
37e77e87-9c16-903a-1946-68bba41cb167	2021-05-23 17:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:06:26.853+03	2021-05-23 17:06:26.86+03	
0033cb3c-716a-1487-a4b2-bac019c37863	2021-05-23 17:06:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:06:47.853+03	2021-05-23 17:06:47.876+03	
a8fcfdbd-18b4-c1ba-7438-63bff564d981	2021-05-23 17:07:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:07:07.853+03	2021-05-23 17:07:07.86+03	
9ac98d52-0cfa-198a-49ae-f50990b5a465	2021-05-23 17:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:07:28.852+03	2021-05-23 17:07:28.859+03	
e99ad110-abf9-dd3e-bc38-51cbf45bca2f	2021-05-23 17:07:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:07:49.852+03	2021-05-23 17:07:49.858+03	
ab1ac72b-7a69-b3e1-29bf-d5f41896c480	2021-05-23 17:08:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:08:09.852+03	2021-05-23 17:08:09.858+03	
e9596664-ed8a-acd3-0e2c-68297a024fff	2021-05-23 17:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:08:29.852+03	2021-05-23 17:08:29.859+03	
68afc0f4-a664-8367-5ab2-db20e6440c86	2021-05-23 17:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:08:49.853+03	2021-05-23 17:08:49.859+03	
5e696a56-8603-29fe-13dd-3b360d8f425b	2021-05-23 17:09:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:09:11.852+03	2021-05-23 17:09:11.859+03	
2f4e1353-ce26-6cdb-80ec-39a69aa88f11	2021-05-23 17:09:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:09:32.852+03	2021-05-23 17:09:32.869+03	
9270bed3-9940-8365-0782-07fd7fcf54c1	2021-05-23 17:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:09:53.852+03	2021-05-23 17:09:53.859+03	
4db9540c-e073-7672-ac90-e7a869e11785	2021-05-23 17:10:03.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:10:03.858+03	2021-05-23 17:10:03.864+03	
c77f703e-2b55-3e3c-cb13-a9cae043b9b8	2021-05-23 17:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:10:24.852+03	2021-05-23 17:10:24.858+03	
a596dd04-0471-f166-d028-8a00b0ba3ea8	2021-05-23 17:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:10:44.853+03	2021-05-23 17:10:44.864+03	
e5d72e0e-2baa-457b-c642-f83dbd1f4e43	2021-05-23 17:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:11:05.853+03	2021-05-23 17:11:06.511+03	
998b8e9e-e417-90ba-214b-94b69e4747ae	2021-05-23 17:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:11:25.853+03	2021-05-23 17:11:25.861+03	
2b1ee9a3-5594-93cc-dd4e-0760cd658829	2021-05-23 17:11:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:11:46.853+03	2021-05-23 17:11:46.86+03	
60722bf0-642a-fd6c-fb97-a80fb08b0bf1	2021-05-23 17:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:12:07.853+03	2021-05-23 17:12:07.866+03	
731351f2-0ea4-0d0a-15fd-4e365f767f35	2021-05-23 17:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:12:27.853+03	2021-05-23 17:12:27.864+03	
a813a7d5-a449-45f3-7289-d61cdccfdddd	2021-05-23 16:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:51:45.853+03	2021-05-23 16:51:45.86+03	
2db9eeea-2c4e-799e-caa7-097580e168d5	2021-05-23 16:52:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:52:06.853+03	2021-05-23 16:52:06.861+03	
74a0544f-2f98-81a8-08ae-560d26569e17	2021-05-23 16:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:52:27.852+03	2021-05-23 16:52:27.876+03	
cdfcded1-d155-e8c1-b240-7accad9d5061	2021-05-23 16:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:52:47.853+03	2021-05-23 16:52:47.861+03	
37b75493-0227-56d6-39be-e70a79dfa16c	2021-05-23 16:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:53:08.852+03	2021-05-23 16:53:08.859+03	
008d46bf-2033-e3a7-47c2-e184b50a1067	2021-05-23 16:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:53:28.853+03	2021-05-23 16:53:28.86+03	
675629af-c7bf-2f15-605f-990d93800d26	2021-05-23 16:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:53:49.853+03	2021-05-23 16:53:49.86+03	
e62f3b92-367a-5588-1bee-be7ff9ae39b1	2021-05-23 16:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:54:10.853+03	2021-05-23 16:54:10.86+03	
a4b82f50-beb5-bd4e-d3fd-68b003286f6f	2021-05-23 16:54:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:54:31.853+03	2021-05-23 16:54:31.859+03	
f555de92-c748-0ceb-06ce-e9212d41c374	2021-05-23 16:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:54:52.853+03	2021-05-23 16:54:52.861+03	
a00ba718-4739-5b81-4066-b3fe070b885c	2021-05-23 16:55:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:55:13.852+03	2021-05-23 16:55:13.859+03	
ef995576-59a7-568a-60e6-b854220d712a	2021-05-23 16:55:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:55:33.852+03	2021-05-23 16:55:33.858+03	
4d5ac397-96b0-cf02-e8bf-6da2377f77a7	2021-05-23 16:55:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:55:53.852+03	2021-05-23 16:55:53.858+03	
82a38acf-79f4-9cb6-f7aa-38c303abe67f	2021-05-23 16:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:56:13.853+03	2021-05-23 16:56:13.86+03	
76c4b7c9-3abe-c084-145e-f58864792950	2021-05-23 16:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:56:34.853+03	2021-05-23 16:56:34.86+03	
e86ad17f-867f-5499-ad0f-6ba1f2d6c175	2021-05-23 16:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:56:55.853+03	2021-05-23 16:56:55.858+03	
12b11809-6e65-07a8-4276-a557acc4f34d	2021-05-23 16:57:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:57:16.853+03	2021-05-23 16:57:16.86+03	
89a9f4c0-7ca9-9cf4-3963-0642bff0e962	2021-05-23 16:57:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:57:36.853+03	2021-05-23 16:57:36.859+03	
e834f788-1f3b-9bbe-c992-2a7a0f615d18	2021-05-23 16:57:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:57:56.853+03	2021-05-23 16:57:56.86+03	
8f3f1e98-adf4-a3c8-f4a1-986598e18691	2021-05-23 16:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:58:17.853+03	2021-05-23 16:58:17.859+03	
593119f2-4316-901e-6ceb-0a858928b8fd	2021-05-23 16:58:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:58:39.853+03	2021-05-23 16:58:39.859+03	
27f46200-3b32-eccc-1e1b-3a3940b7e159	2021-05-23 16:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:59:00.853+03	2021-05-23 16:59:00.86+03	
efc93612-a288-6f71-29c0-69254fb693eb	2021-05-23 16:59:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:59:21.852+03	2021-05-23 16:59:21.858+03	
e9209055-43ca-45af-554c-4717074c87eb	2021-05-23 16:59:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 16:59:41.852+03	2021-05-23 16:59:41.858+03	
6d217e35-b41d-bc9e-6b4a-a313edfdab03	2021-05-23 17:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 17:00:00.853+03	2021-05-23 17:00:00.863+03	ERROR
65de4dd6-552b-8f02-6ffa-3bff9c261a1b	2021-05-23 17:00:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:00:11.853+03	2021-05-23 17:00:11.863+03	
50c3ff3b-d15a-a306-a938-212f6c8ea8ec	2021-05-23 17:00:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:00:32.853+03	2021-05-23 17:00:32.858+03	
815621e4-a180-80f2-8f58-b77e2d60ee23	2021-05-23 17:00:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:00:53.852+03	2021-05-23 17:00:53.859+03	
ed3a6e07-6072-e7f2-d9bd-0e5ad876ac45	2021-05-23 17:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:01:13.852+03	2021-05-23 17:01:13.859+03	
61671513-2b5c-87fc-030a-e6a54d3932fb	2021-05-23 17:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:01:33.852+03	2021-05-23 17:01:33.86+03	
a3112c3d-6bb4-400e-d3a6-41ba54c71a5b	2021-05-23 17:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:01:53.852+03	2021-05-23 17:01:53.865+03	
25283207-cfcd-d6c9-ced8-6d05872523ea	2021-05-23 17:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:02:13.852+03	2021-05-23 17:02:13.859+03	
bb6b1b9f-0439-88ea-5940-36500c43385a	2021-05-23 17:02:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:02:33.853+03	2021-05-23 17:02:33.859+03	
32eb5d02-8546-53e1-d14a-db7232b7078f	2021-05-23 17:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:02:54.852+03	2021-05-23 17:02:54.858+03	
0de0f603-0d10-cf79-0ded-47158f19ea05	2021-05-23 17:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:03:14.852+03	2021-05-23 17:03:14.859+03	
2ffd08dd-751d-ed77-841e-74cd0857d2ba	2021-05-23 17:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:03:34.852+03	2021-05-23 17:03:34.859+03	
f4c47996-6faf-442b-9edf-67a9041f5842	2021-05-23 17:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:03:54.852+03	2021-05-23 17:03:54.876+03	
7b84624e-e053-3133-0696-1b50baece76a	2021-05-23 17:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:04:14.852+03	2021-05-23 17:04:14.87+03	
9544e42e-0eec-0c82-d200-88d69778425e	2021-05-23 17:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:04:34.853+03	2021-05-23 17:04:34.861+03	
9dbbc674-8e55-880e-c3d4-88f99346951d	2021-05-23 17:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:04:55.852+03	2021-05-23 17:04:55.859+03	
d24d3786-12d7-820a-f667-b065e8fb81cd	2021-05-23 17:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:05:15.852+03	2021-05-23 17:05:15.859+03	
09aef9ab-eeb7-4a2d-b640-3e215d120783	2021-05-23 17:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:05:35.852+03	2021-05-23 17:05:35.873+03	
d348864e-440c-37f3-5edd-a7bfb5186de7	2021-05-23 17:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:05:55.853+03	2021-05-23 17:05:55.859+03	
91d0c0bc-664a-b34b-e58c-2dcc09f23610	2021-05-23 17:06:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:06:16.852+03	2021-05-23 17:06:16.859+03	
8908df92-7e58-64aa-121d-43abfb496a1d	2021-05-23 17:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:06:37.853+03	2021-05-23 17:06:37.859+03	
2d068964-b3bd-c8a1-8ea3-a2fb5e823a40	2021-05-23 17:06:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:06:57.853+03	2021-05-23 17:06:57.859+03	
cd9e6a87-b34b-7a19-da29-ea1fea37975c	2021-05-23 17:07:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:07:18.852+03	2021-05-23 17:07:18.858+03	
117798ea-3ee4-1ecc-56f7-42a56c3bcbbe	2021-05-23 17:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:07:38.853+03	2021-05-23 17:07:38.859+03	
1126a62d-db55-b46f-7426-b8d33baf0061	2021-05-23 17:07:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:07:59.852+03	2021-05-23 17:07:59.864+03	
8c8468d6-2ae7-9b7c-de7a-cd74aea7494c	2021-05-23 17:08:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:08:19.852+03	2021-05-23 17:08:19.86+03	
6be09f11-c1a2-73bf-9549-3ee9c475dbfe	2021-05-23 17:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:08:39.852+03	2021-05-23 17:08:39.859+03	
c1da5985-087d-5d0b-9455-91004ca6444f	2021-05-23 17:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:09:00.853+03	2021-05-23 17:09:00.859+03	
92830379-5d8d-592d-e44c-59391df59c56	2021-05-23 17:09:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:09:21.853+03	2021-05-23 17:09:21.859+03	
c3ad12a5-6d6f-d67d-f015-b65e61d9132e	2021-05-23 17:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:09:42.853+03	2021-05-23 17:09:42.86+03	
22230c7c-e53c-0e40-763a-151e2610b677	2021-05-23 17:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 17:10:00.853+03	2021-05-23 17:10:00.859+03	ERROR
02b6177f-d325-1422-0654-fcc097b63d62	2021-05-23 17:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:10:14.852+03	2021-05-23 17:10:14.859+03	
6bc27bb0-340c-ca27-6770-5e72e9988c8c	2021-05-23 17:10:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:10:34.853+03	2021-05-23 17:10:34.859+03	
a9e81c29-4fbb-bdba-3414-3452d86f2c61	2021-05-23 17:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:10:54.853+03	2021-05-23 17:10:54.859+03	
22c2b65f-aea6-9feb-08e2-c5b83f8118a5	2021-05-23 17:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:11:15.853+03	2021-05-23 17:11:15.86+03	
5482c1c8-9308-db6a-cb45-f871e27d0368	2021-05-23 17:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:11:35.853+03	2021-05-23 17:11:35.86+03	
db9f9cd0-e97d-7a19-1ad9-78cbea8b6c92	2021-05-23 17:11:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:11:57.853+03	2021-05-23 17:11:57.859+03	
1adb07f9-3b81-17c9-9f67-5782151e00c2	2021-05-23 17:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:12:17.853+03	2021-05-23 17:12:17.861+03	
7cda6c50-20c6-4b15-d06a-fb262cdc3019	2021-05-23 17:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:12:37.853+03	2021-05-23 17:12:37.861+03	
ac4a1d03-7669-3251-a590-44dfb0f115a7	2021-05-23 17:12:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:12:47.853+03	2021-05-23 17:12:47.86+03	
1e94acc4-83f7-2869-b197-be9031bb8096	2021-05-23 17:13:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:13:08.852+03	2021-05-23 17:13:08.859+03	
73704243-f556-5bbd-866d-bd4795c6dfda	2021-05-23 17:13:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:13:28.852+03	2021-05-23 17:13:28.86+03	
f58b46fc-2c2a-9d10-171c-30d9975efc64	2021-05-23 17:13:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:13:49.853+03	2021-05-23 17:13:49.859+03	
39e67dc3-5043-e112-31dc-f4bf59f1677e	2021-05-23 17:14:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:14:09.853+03	2021-05-23 17:14:09.859+03	
e92405ee-65b1-6f50-6e3c-eb3a43cb83fa	2021-05-23 17:14:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:14:30.852+03	2021-05-23 17:14:30.859+03	
26587ca4-1e19-fa87-c25b-e9bcc56a8df7	2021-05-23 17:14:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:14:50.852+03	2021-05-23 17:14:50.861+03	
6178ca64-369d-ded0-3507-d54ed454d3f3	2021-05-23 17:15:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:15:10.852+03	2021-05-23 17:15:10.859+03	
c4148d59-f5a4-8538-e708-925ca98f8e29	2021-05-23 17:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:15:30.852+03	2021-05-23 17:15:30.86+03	
21ef9006-a289-6ae6-eab6-9adc6bf8be92	2021-05-23 17:15:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:15:51.852+03	2021-05-23 17:15:51.859+03	
23bf9d96-cf45-001a-ce7f-902c86e4b6eb	2021-05-23 17:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:16:12.852+03	2021-05-23 17:16:12.859+03	
337c9d51-2fd1-cdf9-39d6-69a2b44f1439	2021-05-23 17:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:16:32.853+03	2021-05-23 17:16:32.859+03	
aa217ec3-85c8-5758-c8ef-efd63807c781	2021-05-23 17:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:16:52.853+03	2021-05-23 17:16:52.859+03	
55a9a53f-9c2a-3ad9-c5c9-c7e81ec1ea3a	2021-05-23 17:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:17:13.852+03	2021-05-23 17:17:13.859+03	
0f83cd44-32c4-514a-05ca-4c0e08bc4292	2021-05-23 17:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:17:33.852+03	2021-05-23 17:17:33.859+03	
43ad49a9-733e-3a4a-cbfc-0dd4443835a1	2021-05-23 17:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:17:53.852+03	2021-05-23 17:17:53.859+03	
38108cab-a43c-e2ca-8afd-b59f3731d6bb	2021-05-23 17:18:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:18:13.852+03	2021-05-23 17:18:13.859+03	
6c049ceb-c0a7-0d9f-c2c1-50a96473773d	2021-05-23 17:18:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:18:33.852+03	2021-05-23 17:18:33.858+03	
14aa311c-335b-73c8-ab1b-64039474a5a5	2021-05-23 17:18:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:18:53.852+03	2021-05-23 17:18:53.859+03	
040ed144-f8b5-92db-8a31-8a2a9833b26d	2021-05-23 17:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:19:13.852+03	2021-05-23 17:19:13.859+03	
65b33c33-8804-a8a5-e154-12e5bc175ae6	2021-05-23 17:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:19:33.852+03	2021-05-23 17:19:33.86+03	
58202d0d-3c90-d3ea-0d9c-6cfd4786251d	2021-05-23 17:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:19:53.852+03	2021-05-23 17:19:53.859+03	
ec1af38c-f8e7-81ea-839d-0d6f98b4f93b	2021-05-23 17:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:20:03.852+03	2021-05-23 17:20:03.858+03	
b0567a69-ddbd-6304-e2fa-3a61d741dac5	2021-05-23 17:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:20:24.853+03	2021-05-23 17:20:24.859+03	
ea115b4d-a6d0-dbc0-c461-7cf30a32f3f9	2021-05-23 17:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:20:45.853+03	2021-05-23 17:20:45.86+03	
99821b16-cb2d-83f6-5a79-32803c7fe089	2021-05-23 17:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:21:05.853+03	2021-05-23 17:21:05.86+03	
202e3742-e97f-ff22-95ef-61a7acdc93d3	2021-05-23 17:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:21:25.853+03	2021-05-23 17:21:25.86+03	
46aa8ed6-e6a2-1dee-5202-31f2dbe106ff	2021-05-23 17:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:21:46.852+03	2021-05-23 17:21:46.859+03	
076eeded-304e-127f-0649-8b9513690b22	2021-05-23 17:22:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:22:06.853+03	2021-05-23 17:22:06.859+03	
3b1fd862-b10b-1b20-0547-6994f243c0c6	2021-05-23 17:22:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:22:28.853+03	2021-05-23 17:22:28.859+03	
9e3b24bc-371e-0476-a4bf-a77fc7ddce4a	2021-05-23 17:22:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:22:49.853+03	2021-05-23 17:22:49.859+03	
a5609c1f-786a-24e0-1d51-e069b25dcd2d	2021-05-23 17:23:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:23:11.852+03	2021-05-23 17:23:11.86+03	
ceedf86b-ffd9-faa9-04b1-6ca77d804705	2021-05-23 17:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:23:32.852+03	2021-05-23 17:23:32.859+03	
c5f1188d-0c2d-f42b-abd3-a7614a738ba8	2021-05-23 17:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:23:52.852+03	2021-05-23 17:23:52.859+03	
2879dba0-fcc1-fadc-3131-966c6e19fdb3	2021-05-23 17:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:24:12.852+03	2021-05-23 17:24:12.861+03	
79e3332f-b651-607c-4f3b-616dc71072d4	2021-05-23 17:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:24:33.852+03	2021-05-23 17:24:33.871+03	
e6d449b9-8e69-495f-aa9e-6c51d255d345	2021-05-23 17:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:24:53.853+03	2021-05-23 17:24:53.859+03	
60da5af5-ec60-222f-0bf5-ab36cd5f9390	2021-05-23 17:25:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:25:14.852+03	2021-05-23 17:25:14.859+03	
1db7be4f-c782-44bb-b900-be1e94327838	2021-05-23 17:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:25:35.852+03	2021-05-23 17:25:35.86+03	
ec0fe973-a3f9-a862-3993-5db7be498d2c	2021-05-23 17:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:25:55.853+03	2021-05-23 17:25:55.859+03	
f03f34c3-bda9-a550-b74f-78be9878fbfb	2021-05-23 17:26:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:26:16.852+03	2021-05-23 17:26:16.872+03	
74311ac1-d79a-9dbf-fb67-d1653c936af1	2021-05-23 17:26:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:26:36.852+03	2021-05-23 17:26:36.859+03	
10f5c41e-7725-3de2-456e-25759550a805	2021-05-23 17:26:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:26:56.852+03	2021-05-23 17:26:56.859+03	
d339a4cf-e8b8-cece-1ea7-e891f596a500	2021-05-23 17:27:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:27:17.852+03	2021-05-23 17:27:17.858+03	
33d6f3dc-1f38-a7f2-f598-64007a28d757	2021-05-23 17:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:27:37.853+03	2021-05-23 17:27:37.859+03	
f2f05197-b261-b0a6-f877-2897ce3cffc6	2021-05-23 17:27:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:27:58.852+03	2021-05-23 17:27:58.858+03	
6439136d-b165-301a-8da6-1d703ac97766	2021-05-23 17:28:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:28:18.853+03	2021-05-23 17:28:18.859+03	
b647d97c-68ec-985e-79ff-b00bdd8fd987	2021-05-23 17:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:28:39.852+03	2021-05-23 17:28:39.86+03	
d1dc20c4-1364-0335-882e-bb8d6e0fff18	2021-05-23 17:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:28:59.852+03	2021-05-23 17:28:59.86+03	
10fd31d5-e557-2f6a-85da-990f422314f2	2021-05-23 17:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:29:19.852+03	2021-05-23 17:29:19.858+03	
5be7ef2f-200d-4141-e4df-71fb5a452f2a	2021-05-23 17:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:29:39.852+03	2021-05-23 17:29:39.858+03	
cb5f5f7c-97f2-005b-1f9d-071333282a65	2021-05-23 17:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:30:00.853+03	2021-05-23 17:30:00.864+03	
e0718a6d-fecd-c2e0-3639-f97fde79da49	2021-05-23 17:30:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:30:21.853+03	2021-05-23 17:30:21.859+03	
5ee086a0-851b-7671-35f9-d3a8aa59a345	2021-05-23 17:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:30:42.852+03	2021-05-23 17:30:42.859+03	
e962b30d-cd21-1cb7-b1ee-dec9e4a5606a	2021-05-23 17:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:31:02.853+03	2021-05-23 17:31:02.859+03	
6634d9d7-4793-4e8a-d2b0-56e0b19ebc09	2021-05-23 17:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:31:23.853+03	2021-05-23 17:31:23.89+03	
03725c72-c28c-e48f-4210-21bae94c8db9	2021-05-23 17:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:31:44.853+03	2021-05-23 17:31:44.859+03	
59a50b9e-8c27-ef1d-33cf-a637f764293b	2021-05-23 17:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:32:05.852+03	2021-05-23 17:32:05.858+03	
e99ca201-b0cd-ef41-6a87-d5397cae9ce7	2021-05-23 17:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:32:25.853+03	2021-05-23 17:32:25.86+03	
46fbfd78-6a9b-25ba-4824-91270bb513ff	2021-05-23 17:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:32:47.853+03	2021-05-23 17:32:47.86+03	
2c5515cf-f216-0884-7de3-80df619ee67b	2021-05-23 17:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:33:08.852+03	2021-05-23 17:33:08.858+03	
d890d189-64a6-bacb-e978-a0cca906bb71	2021-05-23 17:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:33:28.852+03	2021-05-23 17:33:28.859+03	
139fb608-6730-bc91-998d-2500cd27eb04	2021-05-23 17:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:33:49.852+03	2021-05-23 17:33:49.859+03	
e0c16e8f-ee50-d06b-c138-d915b930b6f7	2021-05-23 17:12:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:12:58.852+03	2021-05-23 17:12:58.859+03	
d7a43092-dc6b-2ad5-9278-90ed1afe9acd	2021-05-23 17:13:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:13:18.852+03	2021-05-23 17:13:18.858+03	
fab5cbe2-445a-7cfe-2043-9b1ff902ef80	2021-05-23 17:13:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:13:38.853+03	2021-05-23 17:13:38.858+03	
b7b0e7a1-2e0b-b000-96cc-762b1085d049	2021-05-23 17:13:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:13:59.853+03	2021-05-23 17:13:59.86+03	
bc11a80d-1364-c7c7-e1ff-edd0b3abf0e8	2021-05-23 17:14:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:14:20.852+03	2021-05-23 17:14:20.858+03	
c3145d31-3e43-7205-b088-149106c6539b	2021-05-23 17:14:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:14:40.852+03	2021-05-23 17:14:40.859+03	
99338af8-e143-0367-332e-ea9faaa8043d	2021-05-23 17:15:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:15:00.852+03	2021-05-23 17:15:00.86+03	
a5cb8351-ee5d-bb64-9bea-e46e42f937cc	2021-05-23 17:15:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:15:20.852+03	2021-05-23 17:15:20.859+03	
99de137b-66e8-edb8-e096-d8691a5d27a4	2021-05-23 17:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:15:40.853+03	2021-05-23 17:15:40.861+03	
20e13a22-de95-ffcd-c9d4-8f55abe72663	2021-05-23 17:16:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:16:01.853+03	2021-05-23 17:16:01.859+03	
a8b51e2e-79ba-ea91-ef4e-27b8008284a0	2021-05-23 17:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:16:22.853+03	2021-05-23 17:16:22.859+03	
8c9c1984-24ee-e111-8726-48eb7efef40c	2021-05-23 17:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:16:42.853+03	2021-05-23 17:16:42.861+03	
ca9b6908-7321-75e2-73a7-02ad2669e5ec	2021-05-23 17:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:17:03.852+03	2021-05-23 17:17:03.858+03	
c15b533b-2245-4694-f0a7-c17c72e76757	2021-05-23 17:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:17:23.852+03	2021-05-23 17:17:23.859+03	
781d07cc-1b34-0a3b-48e1-7bd04574d8bb	2021-05-23 17:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:17:43.852+03	2021-05-23 17:17:43.859+03	
da82577d-5887-738b-9b2a-86dc65261bd1	2021-05-23 17:18:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:18:03.852+03	2021-05-23 17:18:03.859+03	
5fe96a39-370d-046e-b911-6af23704efb1	2021-05-23 17:18:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:18:23.852+03	2021-05-23 17:18:23.859+03	
a78c49c2-48da-9c84-5bc8-698723a1f42e	2021-05-23 17:18:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:18:43.852+03	2021-05-23 17:18:43.858+03	
31181a23-6675-2e7e-0937-50d1c6b24ac6	2021-05-23 17:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:19:03.852+03	2021-05-23 17:19:03.858+03	
db438605-d41e-37ae-4a9f-6a5e13d05b07	2021-05-23 17:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:19:23.852+03	2021-05-23 17:19:23.86+03	
b458fba1-d0c8-a46c-ab04-faa2094557a1	2021-05-23 17:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:19:43.852+03	2021-05-23 17:19:43.859+03	
16273fce-321b-1a82-0327-585125bcdce5	2021-05-23 17:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 17:20:00.852+03	2021-05-23 17:20:00.857+03	ERROR
c24cadb7-593d-badd-cd69-ccdc71cf12b9	2021-05-23 17:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:20:13.853+03	2021-05-23 17:20:13.87+03	
a484ec42-4c90-2789-8cab-44c6f6d3c75a	2021-05-23 17:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:20:35.852+03	2021-05-23 17:20:35.859+03	
4142e3e8-31b2-21af-fa5f-1d39c5c448e1	2021-05-23 17:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:20:55.853+03	2021-05-23 17:20:55.86+03	
7d3dc93e-56e6-f248-3371-fd15517158b6	2021-05-23 17:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:21:15.853+03	2021-05-23 17:21:15.859+03	
e1ae0cb6-c2b6-4bb5-4753-ab97d21067f1	2021-05-23 17:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:21:35.853+03	2021-05-23 17:21:35.86+03	
ef7b8426-cc34-f9d8-d034-68fcabf3c488	2021-05-23 17:21:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:21:56.853+03	2021-05-23 17:21:56.861+03	
a42407ab-45d3-584c-1eef-eaf8068b9889	2021-05-23 17:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:22:17.853+03	2021-05-23 17:22:17.859+03	
829e7862-d6cc-28d6-f93c-054d7e817de8	2021-05-23 17:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:22:38.853+03	2021-05-23 17:22:38.859+03	
85f7288d-9856-2687-0204-1c03c48080f2	2021-05-23 17:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:23:00.853+03	2021-05-23 17:23:00.859+03	
d81e5f0c-aad5-75a8-e826-d405a8200e7a	2021-05-23 17:23:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:23:21.854+03	2021-05-23 17:23:21.863+03	
7b4229c1-e5aa-0cdc-4ed3-1d4ae1058776	2021-05-23 17:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:23:42.852+03	2021-05-23 17:23:42.859+03	
a5e79acb-ec30-bf5e-0a8f-53add15c553e	2021-05-23 17:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:24:02.852+03	2021-05-23 17:24:02.867+03	
02820d1e-ffe5-64d4-345a-9b53caf72676	2021-05-23 17:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:24:22.853+03	2021-05-23 17:24:22.859+03	
95ca98e6-0d32-bb48-dd1e-88545dc2aaeb	2021-05-23 17:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:24:43.853+03	2021-05-23 17:24:43.859+03	
480d74ff-cd8b-70f8-17ad-7d3eeabf31c7	2021-05-23 17:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:25:04.852+03	2021-05-23 17:25:04.858+03	
ba9b0eba-b983-2a0d-465f-06f38444f499	2021-05-23 17:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:25:24.853+03	2021-05-23 17:25:24.859+03	
2110495e-f639-de0d-1622-10767e66b313	2021-05-23 17:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:25:45.852+03	2021-05-23 17:25:45.859+03	
28ad93a6-385e-6c3f-9306-2c3d028f25d2	2021-05-23 17:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:26:06.852+03	2021-05-23 17:26:06.861+03	
8bae65a6-7beb-351a-12ea-95a566b7d213	2021-05-23 17:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:26:26.852+03	2021-05-23 17:26:26.859+03	
28eeb2ba-0e8b-1c2f-473a-52690bc3646d	2021-05-23 17:26:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:26:46.852+03	2021-05-23 17:26:46.861+03	
5046c332-8f4f-15b7-0efa-8c80c9363d62	2021-05-23 17:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:27:06.853+03	2021-05-23 17:27:06.872+03	
ce293aa2-9aad-9410-cd73-b7d6014b6738	2021-05-23 17:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:27:27.853+03	2021-05-23 17:27:27.859+03	
67204aea-808c-6ee2-5491-cbe69cb99e01	2021-05-23 17:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:27:48.852+03	2021-05-23 17:27:48.858+03	
764e3f0f-a464-a931-f08a-ebba27f453ed	2021-05-23 17:28:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:28:08.852+03	2021-05-23 17:28:08.858+03	
8813ce47-f4c4-340a-6a18-ff53b605e85f	2021-05-23 17:28:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:28:28.853+03	2021-05-23 17:28:28.859+03	
3c5fc256-70e5-5b40-1b2c-140969ece005	2021-05-23 17:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:28:49.852+03	2021-05-23 17:28:49.859+03	
00907871-1279-7a7e-1f83-22160ab2218d	2021-05-23 17:29:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:29:09.852+03	2021-05-23 17:29:09.858+03	
295edc7e-45b5-f165-79d1-0f8e64041fb4	2021-05-23 17:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:29:29.852+03	2021-05-23 17:29:29.859+03	
82f44e43-db4c-49a2-82cf-58a6017c0642	2021-05-23 17:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:29:49.853+03	2021-05-23 17:29:49.858+03	
c188e8e0-b5c2-d328-36b9-adf8095e68c8	2021-05-23 17:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 17:30:00.853+03	2021-05-23 17:30:00.873+03	ERROR
ceeb6c2f-3401-b383-8808-018303365277	2021-05-23 17:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:30:10.853+03	2021-05-23 17:30:10.859+03	
aab7ca2c-d70c-9e4b-3cf9-6418c51c1f58	2021-05-23 17:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:30:32.852+03	2021-05-23 17:30:32.859+03	
6d2b4d0e-a77f-35aa-e83f-82e749b13790	2021-05-23 17:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:30:52.853+03	2021-05-23 17:30:52.859+03	
0ba2d7f2-6ea7-21ed-b7d6-cbc1dd4c7a0e	2021-05-23 17:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:31:13.853+03	2021-05-23 17:31:13.859+03	
6a48a7e1-8afc-393f-ab7b-e7d83c0b190d	2021-05-23 17:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:31:33.853+03	2021-05-23 17:31:33.859+03	
f98936f7-b139-e252-d834-c375489f2704	2021-05-23 17:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:31:54.853+03	2021-05-23 17:31:54.859+03	
66cef330-a71b-dcf1-1c7f-df1234005651	2021-05-23 17:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:32:15.853+03	2021-05-23 17:32:15.859+03	
c22634c2-2b7b-29c8-1dc5-70738883450c	2021-05-23 17:32:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:32:36.854+03	2021-05-23 17:32:36.861+03	
8b1efac1-ac9e-10f2-8eb1-4760cdd054e4	2021-05-23 17:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:32:57.853+03	2021-05-23 17:32:57.86+03	
92ffe935-7ce4-add3-2c0d-6f4adbf4d3c2	2021-05-23 17:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:33:18.852+03	2021-05-23 17:33:18.858+03	
d97bcc17-6047-2850-0a3e-8ca501996de7	2021-05-23 17:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:33:38.853+03	2021-05-23 17:33:38.859+03	
effb0bbf-84f4-0395-bfa5-8e14664eebbd	2021-05-23 17:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:33:59.853+03	2021-05-23 17:33:59.859+03	
bd606f0d-b7e2-cbbe-58a3-231681cf13ab	2021-05-23 17:34:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:34:21.852+03	2021-05-23 17:34:21.858+03	
4d490f8f-b610-9b37-ad1f-4f135edb787a	2021-05-23 17:34:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:34:42.853+03	2021-05-23 17:34:42.86+03	
cf77d071-7f3c-94e5-be39-642350c623a0	2021-05-23 17:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:35:03.852+03	2021-05-23 17:35:03.859+03	
a993f0e3-ad0c-8b5c-b254-cc8c0777957d	2021-05-23 17:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:35:23.852+03	2021-05-23 17:35:23.859+03	
6bddcc20-94be-68a5-4cfa-8ef02320f0a9	2021-05-23 17:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:35:43.853+03	2021-05-23 17:35:43.859+03	
eda433e7-2162-b874-2843-f8d90d30bd2d	2021-05-23 17:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:36:03.853+03	2021-05-23 17:36:03.86+03	
afe64853-d5f8-c8f5-21ac-37f4c965f3bf	2021-05-23 17:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:36:24.853+03	2021-05-23 17:36:24.86+03	
34a86503-384e-62e1-c6d7-d0e72bd5482d	2021-05-23 17:36:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:36:46.852+03	2021-05-23 17:36:46.859+03	
13ff202b-7375-2585-6d33-6aca2ac281b3	2021-05-23 17:37:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:37:06.853+03	2021-05-23 17:37:06.86+03	
1cad38b6-b668-d436-e7d5-67c308d05bdc	2021-05-23 17:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:37:27.853+03	2021-05-23 17:37:27.859+03	
2d6a9d13-a230-a9fc-bf33-7eb09486e338	2021-05-23 17:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:37:48.853+03	2021-05-23 17:37:48.859+03	
51884005-d457-b8c3-4645-800e08294173	2021-05-23 17:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:38:09.852+03	2021-05-23 17:38:09.86+03	
d3d5a4f0-7351-42c2-3ca2-356013ce5db3	2021-05-23 17:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:38:29.852+03	2021-05-23 17:38:29.859+03	
316c6429-d6e9-0fc4-6798-b774e86c8b43	2021-05-23 17:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:38:49.852+03	2021-05-23 17:38:49.864+03	
50698d93-3c82-9fdc-2f37-aaead3b62972	2021-05-23 17:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:39:09.852+03	2021-05-23 17:39:09.858+03	
c36bf4f0-474c-2705-fb40-d996f27ea721	2021-05-23 17:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:39:30.852+03	2021-05-23 17:39:30.859+03	
dcba5704-1439-61ee-a0db-9895817c24eb	2021-05-23 17:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:39:50.852+03	2021-05-23 17:39:50.87+03	
ededf95c-ad39-b101-beab-0e3fa8404460	2021-05-23 17:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:40:11.852+03	2021-05-23 17:40:11.859+03	
58c415ac-91de-cc91-f207-859e1d19e57d	2021-05-23 17:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:40:31.853+03	2021-05-23 17:40:31.86+03	
28a5d8e1-7640-ef1c-d481-2eabf2b54704	2021-05-23 17:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:40:52.852+03	2021-05-23 17:40:52.859+03	
3d11a57f-db53-cfd4-9e92-e46c2719ba39	2021-05-23 17:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:41:13.852+03	2021-05-23 17:41:13.858+03	
766ca958-9c34-235d-fbd8-0258a7db91bb	2021-05-23 17:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:41:33.853+03	2021-05-23 17:41:33.859+03	
2b56adba-7984-34b7-a0c9-7fdfb89a1f4b	2021-05-23 17:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:41:55.852+03	2021-05-23 17:41:55.862+03	
db2ac0da-22d6-014c-3d51-aa68560c0c5a	2021-05-23 17:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:42:15.853+03	2021-05-23 17:42:15.86+03	
0ba6afb8-4c67-e5b8-032a-6ad112a9cec2	2021-05-23 17:42:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:42:36.852+03	2021-05-23 17:42:36.86+03	
2d7cbae8-2926-057d-d4c0-2340eeb5ff3a	2021-05-23 17:42:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:42:56.852+03	2021-05-23 17:42:56.859+03	
b75fe15d-e62a-fe28-5b89-233147b1a56b	2021-05-23 17:43:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:43:16.852+03	2021-05-23 17:43:16.862+03	
66edbdfb-353b-2f55-230e-b509c160eea9	2021-05-23 17:43:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:43:36.853+03	2021-05-23 17:43:36.86+03	
fad83270-e28d-dabc-7bb5-44f8fe52b30d	2021-05-23 17:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:43:57.852+03	2021-05-23 17:43:57.859+03	
32549920-d1a3-6d61-f304-9650c08ba2b8	2021-05-23 17:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:44:17.852+03	2021-05-23 17:44:17.858+03	
b154c463-85fa-97c7-5bae-ba84d78fd589	2021-05-23 17:44:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:44:37.852+03	2021-05-23 17:44:37.859+03	
2e1f844b-8b92-d4ef-9993-6ad505ea30b6	2021-05-23 17:44:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:44:57.853+03	2021-05-23 17:44:57.859+03	
b4975ee0-3978-a751-263c-c090b98c22a8	2021-05-23 17:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:45:18.852+03	2021-05-23 17:45:18.859+03	
e8e95d58-80b5-b907-0e05-123cbafd99f6	2021-05-23 17:45:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:45:38.853+03	2021-05-23 17:45:38.859+03	
88cd5b8e-7652-3e08-7626-f3770ae237d1	2021-05-23 17:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:45:59.853+03	2021-05-23 17:45:59.86+03	
d222edb0-6260-8b5e-3025-fe47d1b8b937	2021-05-23 17:46:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:46:20.852+03	2021-05-23 17:46:20.859+03	
c110b57c-13be-975d-7413-e8155a589d65	2021-05-23 17:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:46:40.853+03	2021-05-23 17:46:40.859+03	
5f3dc5fc-8e0d-21d6-1b63-54414ada1bb4	2021-05-23 17:47:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:47:01.854+03	2021-05-23 17:47:01.86+03	
2fe4a041-d92f-b54e-d946-026c57d47998	2021-05-23 17:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:47:22.853+03	2021-05-23 17:47:22.861+03	
8915d19c-2845-61f6-10a4-48d9ff6b7135	2021-05-23 17:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:47:42.853+03	2021-05-23 17:47:42.859+03	
d286dd1f-7315-22cc-c430-ace55d19b94a	2021-05-23 17:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:48:03.852+03	2021-05-23 17:48:03.862+03	
71df8fc1-fb2b-c8bb-29d9-fb0823b7b9d4	2021-05-23 17:48:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:48:23.852+03	2021-05-23 17:48:23.862+03	
bc52b684-b960-454d-f418-9462b88e843c	2021-05-23 17:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:48:43.853+03	2021-05-23 17:48:43.86+03	
d9ee1a58-eb91-c4fe-f5ed-4e90db89b005	2021-05-23 17:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:49:03.853+03	2021-05-23 17:49:03.86+03	
b071d7e5-6373-d4ab-757f-767baadf48c9	2021-05-23 17:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:49:24.853+03	2021-05-23 17:49:24.86+03	
ecdd3ccd-83f3-814e-7dc2-04976c94921f	2021-05-23 17:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:49:45.852+03	2021-05-23 17:49:45.86+03	
a4737c26-ece3-7946-77bc-df8b74788bc2	2021-05-23 17:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 17:50:00.853+03	2021-05-23 17:50:00.865+03	ERROR
6d0b42cf-e2a3-965a-f028-202339072949	2021-05-23 17:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:50:15.852+03	2021-05-23 17:50:15.858+03	
5efffe4c-14b5-0471-5e73-afb27436a370	2021-05-23 17:50:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:50:35.853+03	2021-05-23 17:50:35.86+03	
c30beb48-904e-932f-019a-efb51200e25a	2021-05-23 17:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:50:55.853+03	2021-05-23 17:50:55.859+03	
1cf40d7e-601b-2464-f042-a32fa547c709	2021-05-23 17:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:51:15.853+03	2021-05-23 17:51:15.861+03	
e3f3177c-d60a-aafa-b067-d149840d0400	2021-05-23 17:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:51:35.853+03	2021-05-23 17:51:35.861+03	
25c72d30-6cef-ee33-c01b-afdf0973cc4e	2021-05-23 17:51:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:51:56.854+03	2021-05-23 17:51:56.861+03	
5da569b8-673b-9e08-87d8-92ea12e1090e	2021-05-23 17:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:52:17.853+03	2021-05-23 17:52:17.86+03	
35e6fb8d-4439-9875-46a9-b2a761d0866c	2021-05-23 17:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:52:37.853+03	2021-05-23 17:52:37.86+03	
1ee3efaf-88b5-02d4-a7ab-409232de7191	2021-05-23 17:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:52:58.853+03	2021-05-23 17:52:58.86+03	
32279c03-5da3-4464-ad6b-8558bff37493	2021-05-23 17:53:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:53:18.853+03	2021-05-23 17:53:18.862+03	
a3862096-5ee1-5080-b684-845ffe605ad1	2021-05-23 17:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:53:38.853+03	2021-05-23 17:53:38.86+03	
42e5db0b-4f14-6c07-b36a-ff1195b42c16	2021-05-23 17:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:53:58.853+03	2021-05-23 17:53:58.859+03	
f3863c1b-2aed-f930-a628-17dfd4b00817	2021-05-23 17:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:54:19.853+03	2021-05-23 17:54:19.859+03	
278af1a1-98e3-46f3-8336-8f9d844a152f	2021-05-23 17:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:54:40.853+03	2021-05-23 17:54:40.86+03	
88f62788-8942-080f-04fe-95a966ca7d02	2021-05-23 17:55:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:55:01.854+03	2021-05-23 17:55:01.86+03	
defef777-e15f-0cb7-2043-5a41f723e33e	2021-05-23 17:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:34:10.853+03	2021-05-23 17:34:10.86+03	
89d88eb2-176c-abec-3b0f-98de74ac620b	2021-05-23 17:34:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:34:31.853+03	2021-05-23 17:34:31.866+03	
526d4c19-54ee-ebe8-9d29-69172183a0e8	2021-05-23 17:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:34:53.852+03	2021-05-23 17:34:53.858+03	
ed428a08-679a-a4ac-c6a5-220c1f3d0060	2021-05-23 17:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:35:13.852+03	2021-05-23 17:35:13.858+03	
32ea7807-943e-30cc-79ef-f28d4611a7d5	2021-05-23 17:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:35:33.852+03	2021-05-23 17:35:33.86+03	
65f24130-661c-168d-f8aa-907b34cac8ef	2021-05-23 17:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:35:53.853+03	2021-05-23 17:35:53.872+03	
5530df73-5e69-16f3-e808-1dba52b7004b	2021-05-23 17:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:36:14.852+03	2021-05-23 17:36:14.859+03	
462ee188-b0a8-a365-d2dc-cfd4b94c552f	2021-05-23 17:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:36:35.853+03	2021-05-23 17:36:35.866+03	
49206ade-8846-6e77-82bb-f859da4232a0	2021-05-23 17:36:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:36:56.852+03	2021-05-23 17:36:56.859+03	
2b53b904-7378-28d6-99a5-4f1a877ab55f	2021-05-23 17:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:37:17.852+03	2021-05-23 17:37:17.859+03	
380915c8-2f0c-6dfd-4bbd-488556076dc3	2021-05-23 17:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:37:38.852+03	2021-05-23 17:37:38.859+03	
3909c235-d554-c0c3-ec25-b57da5949d5e	2021-05-23 17:37:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:37:59.852+03	2021-05-23 17:37:59.871+03	
24af6e88-a152-6685-761c-72ec51ed2139	2021-05-23 17:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:38:19.852+03	2021-05-23 17:38:19.86+03	
a78396a7-e89e-809c-c265-78e5f5d6ac6e	2021-05-23 17:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:38:39.852+03	2021-05-23 17:38:39.859+03	
2ffba0f4-f193-9636-92a6-ddbe7af7e538	2021-05-23 17:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:38:59.852+03	2021-05-23 17:38:59.859+03	
c5143f88-3185-eae0-5e67-a9b4c3048da0	2021-05-23 17:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:39:19.853+03	2021-05-23 17:39:19.861+03	
e68075ba-5d9e-dfd4-c915-599ff503105c	2021-05-23 17:39:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:39:40.852+03	2021-05-23 17:39:40.859+03	
87932e52-fcf3-264b-64fb-2fd928ea74fe	2021-05-23 17:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 17:40:00.853+03	2021-05-23 17:40:00.859+03	ERROR
8743a35e-a53c-02be-b86c-90bf05b11bcf	2021-05-23 17:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:40:00.853+03	2021-05-23 17:40:00.87+03	
4cefa74b-2b4f-7487-ab80-fad0dcfcddf1	2021-05-23 17:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:40:21.852+03	2021-05-23 17:40:21.859+03	
eb443595-6505-5777-29fa-b54490201f24	2021-05-23 17:40:41.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:40:41.855+03	2021-05-23 17:40:41.876+03	
8455cd9e-f177-4b7c-07ce-00d9abe85a7d	2021-05-23 17:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:41:02.853+03	2021-05-23 17:41:02.86+03	
8072abee-4c95-931b-799b-2e2b9c776a4a	2021-05-23 17:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:41:23.853+03	2021-05-23 17:41:23.859+03	
99184f30-6f93-51c9-2408-561d1c224b27	2021-05-23 17:41:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:41:44.853+03	2021-05-23 17:41:44.867+03	
b9b2f528-205c-4638-76d7-6e701aa93f43	2021-05-23 17:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:42:05.852+03	2021-05-23 17:42:05.86+03	
db4999a6-7db8-e5bd-9125-747eb8cce407	2021-05-23 17:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:42:25.853+03	2021-05-23 17:42:25.859+03	
7e20809d-8a4f-18c1-132d-ae2921cb8932	2021-05-23 17:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:42:46.852+03	2021-05-23 17:42:46.859+03	
18e91fd4-fc8b-6103-1233-5a439e813f9c	2021-05-23 17:43:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:43:06.852+03	2021-05-23 17:43:06.86+03	
5774f1d7-b055-a223-9743-49933e69691a	2021-05-23 17:43:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:43:26.853+03	2021-05-23 17:43:26.861+03	
822d3078-c9fa-fe93-a014-2a4ef5eb8ae3	2021-05-23 17:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:43:47.852+03	2021-05-23 17:43:47.872+03	
3d771205-8a8e-18cd-7e57-ca0448fb03de	2021-05-23 17:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:44:07.852+03	2021-05-23 17:44:07.859+03	
3ac39faf-0049-5798-41a1-a6fbf24d0cbc	2021-05-23 17:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:44:27.852+03	2021-05-23 17:44:27.86+03	
e633b711-01b7-f21e-3e2a-6093afc5c5f4	2021-05-23 17:44:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:44:47.853+03	2021-05-23 17:44:47.86+03	
8c65ff45-8366-eb98-2a76-51dae4b38951	2021-05-23 17:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:45:08.852+03	2021-05-23 17:45:08.859+03	
4ce09af0-17ed-7630-c529-85a7a146d343	2021-05-23 17:45:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:45:28.852+03	2021-05-23 17:45:28.858+03	
787c0564-e27c-ce24-af03-59bc7045c9a3	2021-05-23 17:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:45:49.852+03	2021-05-23 17:45:49.861+03	
0fb741ef-038d-a3dd-c931-25f9a63184fa	2021-05-23 17:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:46:09.853+03	2021-05-23 17:46:09.859+03	
05b1184f-ffde-73c8-598a-fd02c4ab900c	2021-05-23 17:46:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:46:30.853+03	2021-05-23 17:46:30.86+03	
7884d437-cf66-f869-1180-ef6c2da4e5a0	2021-05-23 17:46:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:46:51.853+03	2021-05-23 17:46:51.87+03	
74748b04-4de8-26ca-2c5d-34ecf54da599	2021-05-23 17:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:47:12.853+03	2021-05-23 17:47:12.86+03	
994feaea-7379-1a5d-1558-6400043fb90e	2021-05-23 17:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:47:32.853+03	2021-05-23 17:47:32.872+03	
6e867f49-1f85-bf2e-7704-9cef8f008e61	2021-05-23 17:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:47:53.852+03	2021-05-23 17:47:53.86+03	
b9953d7f-6eb0-2d80-d01a-4e8d8d37c488	2021-05-23 17:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:48:13.852+03	2021-05-23 17:48:13.859+03	
b0ba9832-021b-edb6-f450-a757a52377b1	2021-05-23 17:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:48:33.852+03	2021-05-23 17:48:33.858+03	
278384a8-383b-de6d-7bb4-18f65347c64c	2021-05-23 17:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:48:53.853+03	2021-05-23 17:48:53.86+03	
7c6342d0-cb8f-a9c3-9b9e-fd7c543500f2	2021-05-23 17:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:49:13.853+03	2021-05-23 17:49:13.859+03	
1daff195-cc0c-d7c6-1df9-6dbddab9826c	2021-05-23 17:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:49:34.853+03	2021-05-23 17:49:34.859+03	
7d25d91c-2a38-e2cc-48dc-a1c1f1b7498d	2021-05-23 17:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:49:55.852+03	2021-05-23 17:49:55.86+03	
b2850e62-f2d7-7541-43ab-c67147b23eb9	2021-05-23 17:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:50:05.852+03	2021-05-23 17:50:05.859+03	
8f8a32b0-37c3-f81f-aec0-5a7570993476	2021-05-23 17:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:50:25.852+03	2021-05-23 17:50:25.859+03	
aecff838-911e-ee5e-0d77-cfbf1f3c13f2	2021-05-23 17:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:50:45.853+03	2021-05-23 17:50:45.861+03	
7034903b-426b-c149-04a9-f940fe21d74c	2021-05-23 17:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:51:05.853+03	2021-05-23 17:51:05.859+03	
49cfc5b8-d11d-5a2f-b657-a77115074e11	2021-05-23 17:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:51:25.853+03	2021-05-23 17:51:25.859+03	
0545b50f-0d8d-95b3-dc1d-40529568f9b2	2021-05-23 17:51:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:51:46.853+03	2021-05-23 17:51:46.86+03	
a459d1ab-b930-ca4d-1a19-2cbf075666de	2021-05-23 17:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:52:07.853+03	2021-05-23 17:52:07.86+03	
87038e6a-a52b-4139-207e-49ba9daed5f3	2021-05-23 17:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:52:27.853+03	2021-05-23 17:52:27.868+03	
4db85cdd-992a-0596-02b4-04014a274b57	2021-05-23 17:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:52:48.852+03	2021-05-23 17:52:48.861+03	
16517805-1a17-51f6-157f-9e5f9b9fdd53	2021-05-23 17:53:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:53:08.853+03	2021-05-23 17:53:08.872+03	
cdb4c404-f787-c18f-e3b7-2322d5a146a8	2021-05-23 17:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:53:28.853+03	2021-05-23 17:53:28.861+03	
37a85cfc-1c48-9ba8-6398-780a4b159a3e	2021-05-23 17:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:53:48.853+03	2021-05-23 17:53:48.865+03	
3086b808-63d4-7c39-2298-4f312f0c1717	2021-05-23 17:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:54:09.853+03	2021-05-23 17:54:09.859+03	
83959ece-6aec-fc79-564b-30b98ccbf1ce	2021-05-23 17:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:54:30.853+03	2021-05-23 17:54:30.86+03	
88124a81-7d5b-808b-fbfa-815cc43ad648	2021-05-23 17:54:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:54:51.853+03	2021-05-23 17:54:51.86+03	
0d294687-b490-9124-1b83-8f16c5c2e600	2021-05-23 17:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:55:12.852+03	2021-05-23 17:55:12.859+03	
e634b49b-0440-54fe-f78c-90f0ccd42748	2021-05-23 17:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:55:32.852+03	2021-05-23 17:55:32.859+03	
4d567c89-003e-ebb2-0664-9641d67a6a76	2021-05-23 17:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:55:52.852+03	2021-05-23 17:55:52.858+03	
c33377f4-f187-5bb0-a6ed-a7761c86ca39	2021-05-23 17:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:56:12.853+03	2021-05-23 17:56:12.86+03	
e5b7e57c-2220-0d58-029a-dc92de07fcd6	2021-05-23 17:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:56:33.853+03	2021-05-23 17:56:33.859+03	
38398d5b-8a42-317b-563e-07e62f802dcd	2021-05-23 17:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:56:54.853+03	2021-05-23 17:56:54.859+03	
cc8337e3-058b-ed19-a6d7-4c3517c376aa	2021-05-23 17:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:57:14.853+03	2021-05-23 17:57:14.859+03	
aa6e74d5-c399-a182-2e54-c55209f842d9	2021-05-23 17:57:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:57:36.852+03	2021-05-23 17:57:36.873+03	
3e92584e-0b1f-2bd0-a4af-242e7898a917	2021-05-23 17:57:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:57:56.853+03	2021-05-23 17:57:56.859+03	
154b854e-8f0f-2997-7f8f-f6f620839e32	2021-05-23 17:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:58:17.853+03	2021-05-23 17:58:17.859+03	
691449c8-17c6-efab-fcd2-9b80ed73aa12	2021-05-23 17:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:58:37.853+03	2021-05-23 17:58:37.86+03	
ead84a58-4b05-5853-350e-57b06e8c3316	2021-05-23 17:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:58:58.852+03	2021-05-23 17:58:58.859+03	
bc0e43e6-0061-a91f-da94-5ea978a38fa1	2021-05-23 17:59:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:59:19.852+03	2021-05-23 17:59:19.859+03	
3c4c1450-ba66-6bcd-a769-fc4a0e470caf	2021-05-23 17:59:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:59:39.853+03	2021-05-23 17:59:39.862+03	
450577d0-b3bc-77f1-32a4-f251797eb9be	2021-05-23 18:00:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:00:00.853+03	2021-05-23 18:00:00.864+03	
27e3de08-10a4-a01c-b735-87cc1ba161b1	2021-05-23 18:00:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:00:20.853+03	2021-05-23 18:00:20.861+03	
2f2b4bfc-9f20-bd63-8a41-c39b82796404	2021-05-23 18:00:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:00:41.853+03	2021-05-23 18:00:41.86+03	
6bd015e6-e4eb-fec6-7cd3-b8b55b37d174	2021-05-23 18:01:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:01:02.852+03	2021-05-23 18:01:02.888+03	
cfc59f47-918d-9d71-27b5-7cf2652f842d	2021-05-23 18:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:01:22.853+03	2021-05-23 18:01:22.867+03	
2f595ad0-5fce-f572-c50e-b192b9ffea71	2021-05-23 18:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:01:43.853+03	2021-05-23 18:01:43.872+03	
56d29b25-37a4-23ce-3d4c-3c12d2242c38	2021-05-23 18:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:02:04.852+03	2021-05-23 18:02:04.858+03	
9b18bfc1-bd33-698a-f464-c2cdf2384614	2021-05-23 18:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:02:25.852+03	2021-05-23 18:02:25.859+03	
9d9bceda-763a-22bf-a7b4-b5e462a21573	2021-05-23 18:02:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:02:46.853+03	2021-05-23 18:02:46.86+03	
24a6cda8-daf7-3f00-cfdd-34411941fac0	2021-05-23 18:03:06.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:03:06.858+03	2021-05-23 18:03:06.864+03	
17b48ec4-0128-9398-0a6b-76faffc44c7a	2021-05-23 18:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:03:27.853+03	2021-05-23 18:03:27.861+03	
9d512324-f702-aedb-e9e9-77f3795aa883	2021-05-23 18:03:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:03:48.852+03	2021-05-23 18:03:48.858+03	
74617646-75dd-5b8e-71a7-a411d09f6598	2021-05-23 18:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:04:08.853+03	2021-05-23 18:04:08.859+03	
110a3765-38bb-caf3-de23-add8baaccea6	2021-05-23 18:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:04:28.853+03	2021-05-23 18:04:28.86+03	
7e19c23c-b6fa-633d-2074-ec3b16c2461c	2021-05-23 18:04:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:04:49.852+03	2021-05-23 18:04:49.86+03	
dafd1bc1-b354-3b21-3972-c327940c6d4f	2021-05-23 18:05:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:05:09.853+03	2021-05-23 18:05:09.859+03	
c60eb91d-3a22-efd9-d1ab-abc8347aa4aa	2021-05-23 18:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:05:29.853+03	2021-05-23 18:05:29.86+03	
dfc681ae-0314-ef98-2cae-4e5adea4d38f	2021-05-23 18:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:05:50.852+03	2021-05-23 18:05:50.858+03	
4363c745-a596-eae6-6e7d-24f03f6fedb5	2021-05-23 18:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:06:10.853+03	2021-05-23 18:06:10.859+03	
48963922-615a-e22e-2066-99d6b3a2150a	2021-05-23 18:06:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:06:31.853+03	2021-05-23 18:06:31.86+03	
c55618c6-5b90-e797-04a5-b002b6c30e29	2021-05-23 18:06:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:06:51.853+03	2021-05-23 18:06:51.859+03	
6aae5726-4ea2-82d2-8849-c72ac4b87d8b	2021-05-23 18:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:07:12.852+03	2021-05-23 18:07:12.859+03	
7773720d-59c3-0685-eb3f-15a5e8bfc227	2021-05-23 18:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:07:32.852+03	2021-05-23 18:07:32.868+03	
f90db41a-f083-a120-59ba-e92cd32dd941	2021-05-23 18:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:07:52.853+03	2021-05-23 18:07:52.859+03	
a80dbf2b-9f65-51e5-77ee-75cb27f3ee40	2021-05-23 18:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:08:12.853+03	2021-05-23 18:08:12.861+03	
28f8a792-48a1-7880-e29d-b45224d254bf	2021-05-23 18:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:08:33.852+03	2021-05-23 18:08:33.859+03	
d9142c8f-92aa-8fb2-7d1a-dac7b7d6199e	2021-05-23 18:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:08:53.853+03	2021-05-23 18:08:53.862+03	
603f407e-b7df-35c4-4784-aacda5b8f56e	2021-05-23 18:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:09:14.852+03	2021-05-23 18:09:14.859+03	
c37ab32a-21b1-635f-53bf-54287e2d6650	2021-05-23 18:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:09:34.853+03	2021-05-23 18:09:34.862+03	
bd4a6370-6d21-5969-178b-f258c3da0ae0	2021-05-23 18:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:09:55.852+03	2021-05-23 18:09:55.859+03	
f92256b7-a371-4b98-0bc5-6e11b0373273	2021-05-23 18:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:10:05.853+03	2021-05-23 18:10:05.859+03	
cdf36345-a74a-2ee6-16bd-6bb6caf97a1f	2021-05-23 18:10:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:10:26.854+03	2021-05-23 18:10:26.903+03	
6ff9b7ad-8ba2-82a2-2a1c-df244d61c245	2021-05-23 18:10:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:10:47.852+03	2021-05-23 18:10:47.858+03	
200720d6-918b-9a7d-54dd-68e578d0261d	2021-05-23 18:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:11:08.852+03	2021-05-23 18:11:08.859+03	
843e13b6-7951-7b05-c7ea-cdb9fb9673bb	2021-05-23 18:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:11:29.853+03	2021-05-23 18:11:29.859+03	
6fddc9e4-f861-0626-70ab-ab9b34bd4fbb	2021-05-23 18:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:11:50.852+03	2021-05-23 18:11:50.859+03	
cfe5116e-6572-cb6b-e4aa-909a35844573	2021-05-23 18:12:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:12:11.852+03	2021-05-23 18:12:11.859+03	
09509924-6d0c-51a2-6b38-5462aa65ca17	2021-05-23 18:12:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:12:31.854+03	2021-05-23 18:12:31.86+03	
c5fff514-7ebf-6c04-6bd5-469537028e50	2021-05-23 18:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:12:52.853+03	2021-05-23 18:12:52.86+03	
11e697d2-9213-1c66-e618-0915afd04999	2021-05-23 18:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:13:12.853+03	2021-05-23 18:13:12.863+03	
f53b2d61-ef90-dc00-ea8d-7df6cf27b94c	2021-05-23 18:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:13:32.853+03	2021-05-23 18:13:32.861+03	
399874d7-3021-087d-324b-f83aeb4ad48f	2021-05-23 18:13:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:13:53.853+03	2021-05-23 18:13:53.861+03	
2912c1ac-ec06-6301-08bc-6e773546978d	2021-05-23 18:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:14:14.852+03	2021-05-23 18:14:14.859+03	
3910c63b-a1bd-00ea-2aaf-787d525dfcef	2021-05-23 18:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:14:34.852+03	2021-05-23 18:14:34.859+03	
bde692f3-4a32-5104-4f17-fdaf8993c590	2021-05-23 18:14:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:14:54.852+03	2021-05-23 18:14:54.859+03	
32fda7cc-f486-e8bb-3261-d4ec39e06836	2021-05-23 18:15:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:15:14.853+03	2021-05-23 18:15:14.86+03	
20fd83f5-116b-0b2d-b75f-5ba4b5d01426	2021-05-23 18:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:15:34.853+03	2021-05-23 18:15:34.861+03	
aa448368-14f9-96c6-c1c7-b2e92031d445	2021-05-23 18:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:15:55.852+03	2021-05-23 18:15:55.859+03	
69cf1cd2-2346-9f9a-c0d9-4f08fea4a49f	2021-05-23 18:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:16:15.853+03	2021-05-23 18:16:15.859+03	
77c8fa8e-2d61-6891-52d3-6aa316d7b2de	2021-05-23 17:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:55:22.852+03	2021-05-23 17:55:22.858+03	
eb086b9c-5ccd-ed23-56b7-9548407b2225	2021-05-23 17:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:55:42.852+03	2021-05-23 17:55:42.858+03	
b2c21582-b0b5-792f-99ce-c402fd93f889	2021-05-23 17:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:56:02.853+03	2021-05-23 17:56:02.859+03	
cb97ae97-72fb-6531-5f77-d3d0920cb45c	2021-05-23 17:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:56:22.853+03	2021-05-23 17:56:22.859+03	
e100b7d1-8d7f-b4e7-5887-b997a6085d85	2021-05-23 17:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:56:44.852+03	2021-05-23 17:56:44.859+03	
92d3ae80-0eab-4eac-7855-2048d4b44f0a	2021-05-23 17:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:57:04.853+03	2021-05-23 17:57:04.859+03	
fdbd781e-d859-979b-ee18-30c0ec4be22e	2021-05-23 17:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:57:25.853+03	2021-05-23 17:57:25.86+03	
c014f3ed-4902-1bb2-32cf-3b9d53f5e2c3	2021-05-23 17:57:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:57:46.852+03	2021-05-23 17:57:46.858+03	
9a3078d4-5593-3e38-0c87-1e3a987f0a63	2021-05-23 17:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:58:07.852+03	2021-05-23 17:58:07.858+03	
bd8d3fd0-2e95-e5c1-eb3c-9cd7a56ba93e	2021-05-23 17:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:58:27.853+03	2021-05-23 17:58:27.859+03	
40702132-427a-d487-aa15-aed7d52ec36a	2021-05-23 17:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:58:47.853+03	2021-05-23 17:58:47.861+03	
9dca7e9d-7800-695c-810c-e07cb5ce9532	2021-05-23 17:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:59:08.853+03	2021-05-23 17:59:08.873+03	
7abb4eda-08cc-93b4-2d98-c9a0ba8bafba	2021-05-23 17:59:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:59:29.853+03	2021-05-23 17:59:29.859+03	
38d57d4d-a5b5-3591-05fe-a0e469abd1fe	2021-05-23 17:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 17:59:49.853+03	2021-05-23 17:59:49.859+03	
c43247f2-862e-9a3a-7f98-041bedfa7c7e	2021-05-23 18:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 18:00:00.853+03	2021-05-23 18:00:00.875+03	ERROR
d86cab2d-e487-bdfa-b01d-b4441db7159a	2021-05-23 18:00:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:00:10.853+03	2021-05-23 18:00:10.86+03	
0d690128-9dd7-ff8b-c1ab-475348478cec	2021-05-23 18:00:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:00:31.853+03	2021-05-23 18:00:31.86+03	
caccf9dc-e335-3c60-9ee3-2070b774fad2	2021-05-23 18:00:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:00:51.853+03	2021-05-23 18:00:51.859+03	
19f89683-45b2-592f-7e5b-f5aa9d77287d	2021-05-23 18:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:01:12.852+03	2021-05-23 18:01:12.859+03	
a0ab607b-5e2c-9f84-e1da-c5027b8013bc	2021-05-23 18:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:01:32.853+03	2021-05-23 18:01:32.86+03	
ba64c166-9d86-171e-6225-ee7164660310	2021-05-23 18:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:01:54.852+03	2021-05-23 18:01:54.86+03	
32773f2b-66da-6197-e9b3-d9fd411688c9	2021-05-23 18:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:02:14.853+03	2021-05-23 18:02:14.858+03	
9f95bd17-eabd-4728-31c0-df0e3db87e49	2021-05-23 18:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:02:35.853+03	2021-05-23 18:02:35.873+03	
667f1f0c-1d3c-e5f8-f43e-c95f85a5f22e	2021-05-23 18:02:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:02:56.854+03	2021-05-23 18:02:56.873+03	
7d00e9d6-520d-bc79-cba1-68b6701e4059	2021-05-23 18:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:03:17.853+03	2021-05-23 18:03:17.859+03	
76e8cccb-01f3-b03b-e2f1-7dea1e4a946a	2021-05-23 18:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:03:37.853+03	2021-05-23 18:03:37.859+03	
e0d16683-2c48-cf85-9a3d-6d8b7f971c68	2021-05-23 18:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:03:58.852+03	2021-05-23 18:03:58.859+03	
ee32a7a2-fb43-8345-aa8a-3107cf4fa139	2021-05-23 18:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:04:18.853+03	2021-05-23 18:04:18.862+03	
aa934049-9173-2a64-2953-90987b7f3f56	2021-05-23 18:04:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:04:38.853+03	2021-05-23 18:04:38.86+03	
6936aad0-0bc6-a5aa-8ef5-f2a5dbe34a95	2021-05-23 18:04:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:04:59.853+03	2021-05-23 18:04:59.859+03	
d83b7bb2-6bf7-cce7-2a05-0e871b1267bb	2021-05-23 18:05:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:05:19.853+03	2021-05-23 18:05:19.858+03	
8b9dfe00-3348-a674-592d-f136687185ee	2021-05-23 18:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:05:39.853+03	2021-05-23 18:05:39.861+03	
dac4d019-53fb-2164-d635-f4c288f4d492	2021-05-23 18:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:06:00.853+03	2021-05-23 18:06:00.87+03	
3b6c2586-5891-1e35-d4a0-bd781d9a8d7c	2021-05-23 18:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:06:20.853+03	2021-05-23 18:06:20.861+03	
9b2bda2b-5a56-d60d-fc27-d4a78806c460	2021-05-23 18:06:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:06:41.853+03	2021-05-23 18:06:41.859+03	
0e3b0069-0a21-7e25-f45b-ecf782b5aadf	2021-05-23 18:07:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:07:02.852+03	2021-05-23 18:07:02.858+03	
d685366b-bf43-b210-2df4-1075cbf875fa	2021-05-23 18:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:07:22.852+03	2021-05-23 18:07:22.859+03	
9c1b4f93-79b0-7d6f-551d-e38a88eb3003	2021-05-23 18:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:07:42.853+03	2021-05-23 18:07:42.86+03	
98c8b320-024f-09d2-5e38-1e0a30e1e765	2021-05-23 18:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:08:02.853+03	2021-05-23 18:08:02.859+03	
0f867425-3952-36fe-b039-017715d8f514	2021-05-23 18:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:08:22.853+03	2021-05-23 18:08:22.859+03	
2580614b-55ab-2ab5-ef1e-28a768562480	2021-05-23 18:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:08:43.852+03	2021-05-23 18:08:43.859+03	
d6a6b63f-cfc0-46a6-b3cc-7f7d857dacc0	2021-05-23 18:09:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:09:04.852+03	2021-05-23 18:09:04.86+03	
2ada9b7e-0292-ffc3-fe1d-7dc64b20ee62	2021-05-23 18:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:09:24.853+03	2021-05-23 18:09:24.859+03	
0f82beea-cbad-7f98-5031-60dee32ea2e8	2021-05-23 18:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:09:44.853+03	2021-05-23 18:09:44.859+03	
84009e29-dac2-c591-c681-cc9ffba9a2d5	2021-05-23 18:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 18:10:00.853+03	2021-05-23 18:10:00.857+03	ERROR
bfe4fce2-21e7-6bf4-7131-dd68b2c72226	2021-05-23 18:10:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:10:16.852+03	2021-05-23 18:10:16.859+03	
7839c2c2-2700-8ede-a500-d2a0f5b8284b	2021-05-23 18:10:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:10:36.854+03	2021-05-23 18:10:36.861+03	
3e485148-53bf-1d65-ea0d-5bba6fb3fdac	2021-05-23 18:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:10:57.853+03	2021-05-23 18:10:57.859+03	
aab731bb-235d-cf9e-feb3-fb886d33b8ec	2021-05-23 18:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:11:18.853+03	2021-05-23 18:11:18.86+03	
92db0204-5308-0263-b025-0e9f4e3ad377	2021-05-23 18:11:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:11:40.852+03	2021-05-23 18:11:40.859+03	
b21c9244-5b5c-db3e-4744-b79ecb9a0def	2021-05-23 18:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:12:00.853+03	2021-05-23 18:12:00.86+03	
bad6f8ec-1b9f-216d-dd54-60e2200ed548	2021-05-23 18:12:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:12:21.852+03	2021-05-23 18:12:21.86+03	
62ed478d-2c24-4c5e-5229-04de0053bb02	2021-05-23 18:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:12:41.854+03	2021-05-23 18:12:41.86+03	
8c10f987-d8a4-b8ba-8014-474f6ddb6279	2021-05-23 18:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:13:02.853+03	2021-05-23 18:13:02.859+03	
7c3b14c4-d61d-6859-6816-0221953a1759	2021-05-23 18:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:13:22.853+03	2021-05-23 18:13:22.863+03	
3dfbf611-37bb-38c0-eb7c-8037b7b24085	2021-05-23 18:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:13:42.853+03	2021-05-23 18:13:42.86+03	
d18876d7-689b-d479-2d11-3c69fafd0d22	2021-05-23 18:14:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:14:03.853+03	2021-05-23 18:14:03.86+03	
ddcebfd8-a95b-d22d-f4d6-90ba45323200	2021-05-23 18:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:14:24.852+03	2021-05-23 18:14:24.859+03	
c36c5802-5137-40db-5928-058a3eafddb9	2021-05-23 18:14:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:14:44.852+03	2021-05-23 18:14:44.861+03	
63822f07-4b03-7599-dc58-99f13bcb63b0	2021-05-23 18:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:15:04.852+03	2021-05-23 18:15:04.859+03	
f89d4b30-7746-e759-8434-0c6d624c2c52	2021-05-23 18:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:15:24.853+03	2021-05-23 18:15:24.86+03	
40dc6e99-40f3-456b-70f4-c9f645655d3f	2021-05-23 18:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:15:44.853+03	2021-05-23 18:15:44.86+03	
e429c1ca-0a75-cdd4-6640-efbf8c0a2d5a	2021-05-23 18:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:16:05.853+03	2021-05-23 18:16:05.861+03	
45d0e481-c8c4-52d1-1971-a016eeb791c0	2021-05-23 18:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:16:25.853+03	2021-05-23 18:16:25.861+03	
e2d0b5cd-fbc5-1003-3c49-c9c75c667cac	2021-05-23 18:16:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:16:46.854+03	2021-05-23 18:16:46.862+03	
150b342a-35f2-0426-d337-8bcfe45f25fa	2021-05-23 18:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:17:07.853+03	2021-05-23 18:17:07.861+03	
32214fba-2257-bea2-5e1d-722ec541f64c	2021-05-23 18:17:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:17:28.853+03	2021-05-23 18:17:28.86+03	
eaa42bdb-7d7a-093e-3dff-69fc30c0b5d2	2021-05-23 18:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:17:49.853+03	2021-05-23 18:17:49.86+03	
16a5ce2e-142c-0572-4419-cf6848000caa	2021-05-23 18:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:18:11.853+03	2021-05-23 18:18:11.859+03	
a433f5ba-413e-359f-725e-e7170f00b437	2021-05-23 18:18:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:18:31.854+03	2021-05-23 18:18:31.86+03	
bb11e2bc-9f12-5bf6-9ccf-89933d19ba99	2021-05-23 18:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:18:52.852+03	2021-05-23 18:18:52.859+03	
08b21aa0-db45-b26c-0ed2-08e76b185581	2021-05-23 18:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:19:12.853+03	2021-05-23 18:19:12.859+03	
58e6cd68-5345-91fe-8156-56b7cd8d3e27	2021-05-23 18:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:19:33.853+03	2021-05-23 18:19:33.859+03	
e92e2ae6-d359-5fa5-cb26-f44c4affba0c	2021-05-23 18:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:19:54.852+03	2021-05-23 18:19:54.859+03	
07c525b0-ce4e-70d4-9ed2-9cb51a0612d1	2021-05-23 18:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:20:04.852+03	2021-05-23 18:20:04.858+03	
14993057-1d7c-981b-608d-8b2b6f0e1df3	2021-05-23 18:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:20:24.853+03	2021-05-23 18:20:24.859+03	
9ff8ffde-054f-040c-7571-857d7e2da5b9	2021-05-23 18:20:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:20:44.853+03	2021-05-23 18:20:44.866+03	
c6166110-1a78-a2ee-de83-862c6f0ec5e9	2021-05-23 18:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:21:05.853+03	2021-05-23 18:21:05.86+03	
d70eff16-edac-f5f3-b774-165a9dc2c23c	2021-05-23 18:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:21:26.852+03	2021-05-23 18:21:26.865+03	
bb6cf8d3-ce92-31b3-5714-5c1834011809	2021-05-23 18:21:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:21:46.852+03	2021-05-23 18:21:46.86+03	
3dd93010-97fa-eb4f-9a65-e88f799b6311	2021-05-23 18:22:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:22:06.853+03	2021-05-23 18:22:06.869+03	
dabcbec9-6b75-11be-77d7-827fd1f9f9b6	2021-05-23 18:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:22:27.852+03	2021-05-23 18:22:27.858+03	
866f441e-b2fb-180b-6a85-48c34a66996a	2021-05-23 18:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:22:48.852+03	2021-05-23 18:22:48.859+03	
67764bf7-b1b4-6e8d-0812-f0d90e5239c7	2021-05-23 18:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:23:08.852+03	2021-05-23 18:23:08.859+03	
4f90044f-b872-868b-be56-3afc5e6ccf6c	2021-05-23 18:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:23:28.853+03	2021-05-23 18:23:28.865+03	
3f028782-220c-1cc4-dda2-05cd38ba4811	2021-05-23 18:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:23:49.852+03	2021-05-23 18:23:49.859+03	
e08a4d8a-1623-519e-1e1d-1e6ce511fea4	2021-05-23 18:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:24:09.853+03	2021-05-23 18:24:09.859+03	
26d75d7b-06e4-6ade-561b-be9c468f43ca	2021-05-23 18:24:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:24:30.852+03	2021-05-23 18:24:30.859+03	
099cb7f0-e1b5-54e4-a8f7-94fc8eae5565	2021-05-23 18:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:24:50.852+03	2021-05-23 18:24:50.865+03	
614427af-cee9-45b9-7b94-a42757346c8a	2021-05-23 18:25:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:25:11.853+03	2021-05-23 18:25:11.859+03	
4b4dd6f7-c1f3-dc5b-c988-b0b80f509b9f	2021-05-23 18:25:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:25:32.853+03	2021-05-23 18:25:32.881+03	
302ff98b-f556-e2c2-81a6-96aa7764f599	2021-05-23 18:25:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:25:52.853+03	2021-05-23 18:25:53.367+03	
ff7b9563-221a-cb4b-8ed9-eab3ab9d16e5	2021-05-23 18:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:26:13.852+03	2021-05-23 18:26:13.859+03	
bf6dbc18-bada-9003-a1dc-7dade95c08b2	2021-05-23 18:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:26:34.853+03	2021-05-23 18:26:34.862+03	
7a727fe2-0329-cb82-2e37-5ba19c6b8835	2021-05-23 18:26:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:26:54.853+03	2021-05-23 18:26:54.86+03	
9fb523ed-9177-0bbb-9235-7a480e7df223	2021-05-23 18:27:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:27:16.852+03	2021-05-23 18:27:16.859+03	
443e2dec-8afa-0007-189c-414715a72c4e	2021-05-23 18:27:36.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:27:36.859+03	2021-05-23 18:27:36.866+03	
ee1d121e-bf01-4189-acee-f5c72dffff04	2021-05-23 18:27:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:27:57.852+03	2021-05-23 18:27:57.878+03	
0aab0dac-b5e8-37e3-5a03-ffcb20b001e8	2021-05-23 18:28:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:28:17.853+03	2021-05-23 18:28:17.859+03	
1ddf343a-13e7-a99b-ffa4-694808d3bf1c	2021-05-23 18:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:28:37.853+03	2021-05-23 18:28:37.859+03	
c26cb4ae-99ff-31f0-ff3c-784077a39ebd	2021-05-23 18:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:28:58.853+03	2021-05-23 18:28:58.859+03	
eacbfe92-c7dd-c9e0-9818-2fb6ff304ec8	2021-05-23 18:29:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:29:18.853+03	2021-05-23 18:29:18.859+03	
7ef7091f-a0b8-f78c-5b61-d3b5bcd5f57d	2021-05-23 18:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:29:39.852+03	2021-05-23 18:29:39.865+03	
4dc0d6ac-68ba-b928-5fab-2b4d68a20b3a	2021-05-23 18:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:29:59.852+03	2021-05-23 18:29:59.858+03	
ad02ce35-2fb4-9046-2e17-ac58324a843d	2021-05-23 18:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:30:09.852+03	2021-05-23 18:30:09.859+03	
e6479ccd-7748-077d-761c-5c4016cb168e	2021-05-23 18:30:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:30:29.852+03	2021-05-23 18:30:29.876+03	
675118d8-90b9-8e83-5c71-1dfff142df00	2021-05-23 18:30:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:30:49.852+03	2021-05-23 18:30:49.86+03	
b89f1cae-7e90-f15a-d90d-3c9e0ab41e27	2021-05-23 18:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:31:10.852+03	2021-05-23 18:31:10.86+03	
ae426762-1e6b-8727-ff59-cb5255859874	2021-05-23 18:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:31:30.853+03	2021-05-23 18:31:30.859+03	
6b9e4985-0ca0-47b8-bb0c-78e0ae2e157d	2021-05-23 18:31:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:31:51.852+03	2021-05-23 18:31:51.86+03	
dffff96b-00f5-0b67-bd41-97e76c7e32ab	2021-05-23 18:32:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:32:11.854+03	2021-05-23 18:32:11.865+03	
ead495b5-ee90-c98f-e2df-15a97a7f34d0	2021-05-23 18:32:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:32:32.852+03	2021-05-23 18:32:32.858+03	
c01d5e4c-e556-94f1-4d0f-f709af0b3e2b	2021-05-23 18:32:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:32:52.852+03	2021-05-23 18:32:52.859+03	
7effab39-d6bd-d751-9be6-8ecce85b609e	2021-05-23 18:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:33:13.853+03	2021-05-23 18:33:13.86+03	
43095748-cf8a-587c-8be7-9bab6252a99b	2021-05-23 18:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:33:34.852+03	2021-05-23 18:33:34.859+03	
e83185aa-efb4-dc02-04e0-4807c7fdbbcd	2021-05-23 18:33:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:33:54.852+03	2021-05-23 18:33:54.864+03	
1133c0fd-dd7b-23e0-c63c-67d228f5a8e6	2021-05-23 18:34:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:34:14.853+03	2021-05-23 18:34:14.858+03	
6e7d54c2-5576-2070-dbb5-df9eef447406	2021-05-23 18:34:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:34:34.853+03	2021-05-23 18:34:34.859+03	
c9a7eeeb-8dac-69f3-91c3-96b0d3aabf57	2021-05-23 18:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:34:55.852+03	2021-05-23 18:34:55.859+03	
2f4f462e-1c8b-b231-0dba-b4ef745cac9a	2021-05-23 18:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:35:15.852+03	2021-05-23 18:35:15.858+03	
5b5afab5-bcb2-19a5-bda8-1518bd7e76e6	2021-05-23 18:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:35:35.852+03	2021-05-23 18:35:35.858+03	
c2a70313-b144-0abc-51ad-290acbf6b14e	2021-05-23 18:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:35:55.853+03	2021-05-23 18:35:55.86+03	
a55a5bd8-b0f1-6942-5f50-d35ec566580d	2021-05-23 18:36:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:36:16.853+03	2021-05-23 18:36:16.86+03	
3867d4ff-9df8-7677-08d3-963d731f44f5	2021-05-23 18:36:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:36:36.853+03	2021-05-23 18:36:36.86+03	
92a6ca7c-eefc-9979-9c6d-704799a026bb	2021-05-23 18:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:36:57.852+03	2021-05-23 18:36:57.858+03	
1d7ffb2c-0925-5668-7a0b-377808473ed6	2021-05-23 18:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:37:17.853+03	2021-05-23 18:37:17.859+03	
9779fe40-da52-979e-4733-5779599f9db7	2021-05-23 18:16:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:16:36.854+03	2021-05-23 18:16:36.862+03	
92d8a8cf-11b2-a732-4131-cb994de4ad73	2021-05-23 18:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:16:57.853+03	2021-05-23 18:16:57.866+03	
8d5d3bd0-b655-5e09-d83c-aeaca283f44d	2021-05-23 18:17:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:17:18.852+03	2021-05-23 18:17:18.859+03	
f8cbe2b8-02b0-3203-4c78-1f4469df5b8e	2021-05-23 18:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:17:39.852+03	2021-05-23 18:17:39.859+03	
5c68bb20-e0a0-e40d-00c2-aebb9743ce8a	2021-05-23 18:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:18:00.853+03	2021-05-23 18:18:00.859+03	
c33a3c0b-c213-6082-6934-79640e8a4312	2021-05-23 18:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:18:21.853+03	2021-05-23 18:18:21.859+03	
3741fdbe-39c8-4ed4-32b3-b25af8593aa9	2021-05-23 18:18:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:18:41.854+03	2021-05-23 18:18:41.859+03	
3e84029b-72d0-2916-ba3e-237576253479	2021-05-23 18:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:19:02.852+03	2021-05-23 18:19:02.859+03	
20554dd9-64d6-2634-2bba-f92c789eb371	2021-05-23 18:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:19:23.853+03	2021-05-23 18:19:23.859+03	
4ca07455-0845-395a-7695-6157ddd93e0f	2021-05-23 18:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:19:44.852+03	2021-05-23 18:19:44.859+03	
3d35c02d-075c-f402-f337-d315dc6c096b	2021-05-23 18:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 18:20:00.853+03	2021-05-23 18:20:00.858+03	ERROR
2b29d891-a637-7f35-3d43-d022562217d9	2021-05-23 18:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:20:14.852+03	2021-05-23 18:20:14.86+03	
8cfb9fe1-f68b-a419-9eb4-c54f33232039	2021-05-23 18:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:20:34.853+03	2021-05-23 18:20:34.86+03	
07bba90c-0844-0e17-d976-24713034b23f	2021-05-23 18:20:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:20:54.853+03	2021-05-23 18:20:54.858+03	
e4611fbc-458c-bfd5-1984-885f3adc6995	2021-05-23 18:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:21:15.853+03	2021-05-23 18:21:15.869+03	
e1cb1cc1-bde6-cd38-9031-d87bd2606a16	2021-05-23 18:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:21:36.852+03	2021-05-23 18:21:36.859+03	
0278e008-9bc6-558f-d990-150483ab9cb1	2021-05-23 18:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:21:56.852+03	2021-05-23 18:21:56.859+03	
828b4932-ba60-8f59-8d62-5e8784f6c276	2021-05-23 18:22:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:22:16.853+03	2021-05-23 18:22:16.859+03	
a153a985-7f10-00c4-3bda-bfe40ee2ce9f	2021-05-23 18:22:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:22:37.853+03	2021-05-23 18:22:37.859+03	
80c08c70-5ec0-b79d-0d8b-758b4f46191c	2021-05-23 18:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:22:58.852+03	2021-05-23 18:22:58.859+03	
c3ce3b4d-caa6-014d-9902-b64594c3834a	2021-05-23 18:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:23:18.852+03	2021-05-23 18:23:18.86+03	
63c4f010-7c34-88c1-6a7f-175c32fd9967	2021-05-23 18:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:23:39.852+03	2021-05-23 18:23:39.869+03	
c36da764-1b2a-e478-e441-8080d812ace8	2021-05-23 18:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:23:59.852+03	2021-05-23 18:23:59.866+03	
dcfc5813-bf2a-7677-f492-35ca9044c390	2021-05-23 18:24:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:24:19.853+03	2021-05-23 18:24:19.859+03	
b9b58ed0-265d-f5fc-9eef-d26128ea1220	2021-05-23 18:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:24:40.852+03	2021-05-23 18:24:40.858+03	
9d5c79ea-f759-2d0e-0139-086f185cf26a	2021-05-23 18:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:25:00.853+03	2021-05-23 18:25:00.859+03	
68f0d63f-cd0a-dbcc-ea26-b0f42236ed1d	2021-05-23 18:25:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:25:22.853+03	2021-05-23 18:25:22.864+03	
b30fe0fa-529f-f121-d89f-38fb05ec19cc	2021-05-23 18:25:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:25:42.853+03	2021-05-23 18:25:42.858+03	
27cbfb4c-5a31-08aa-96c4-b7831d77a46e	2021-05-23 18:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:26:03.852+03	2021-05-23 18:26:03.858+03	
6a72a901-a54c-818a-6715-c27706332e07	2021-05-23 18:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:26:23.853+03	2021-05-23 18:26:23.859+03	
e216654f-d8a2-9488-cd00-ed664411b785	2021-05-23 18:26:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:26:44.853+03	2021-05-23 18:26:44.863+03	
58c06f67-ef9a-f9d1-79d5-21e200203887	2021-05-23 18:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:27:05.853+03	2021-05-23 18:27:05.859+03	
729adc16-1c2c-b6fd-4cd6-18e157604982	2021-05-23 18:27:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:27:26.853+03	2021-05-23 18:27:26.861+03	
7d169304-52d6-30e3-00bb-f1837093c581	2021-05-23 18:27:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:27:47.852+03	2021-05-23 18:27:47.858+03	
ecb66ac0-5927-fe80-79b3-53a20f7f1b47	2021-05-23 18:28:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:28:07.852+03	2021-05-23 18:28:07.874+03	
2c31f149-ecbb-dcb2-42c3-49253d59c95e	2021-05-23 18:28:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:28:27.853+03	2021-05-23 18:28:27.859+03	
296fd095-be29-e47c-5ecd-77d614d87be8	2021-05-23 18:28:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:28:48.853+03	2021-05-23 18:28:48.86+03	
1e52541b-18f2-6485-e72b-dd2985d24895	2021-05-23 18:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:29:08.853+03	2021-05-23 18:29:08.864+03	
2b0a537f-7c71-fb09-1618-a5a634af0a6f	2021-05-23 18:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:29:29.852+03	2021-05-23 18:29:29.864+03	
9b029919-aff0-d2f4-e7b5-bf2f4e286805	2021-05-23 18:29:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:29:49.852+03	2021-05-23 18:29:49.858+03	
6d9be43f-cd30-4a7f-7aa8-d21973265f78	2021-05-23 18:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 18:30:00.853+03	2021-05-23 18:30:00.863+03	ERROR
5a9ce90f-9f5c-dd02-fbac-a27e3e47ea3a	2021-05-23 18:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:30:19.852+03	2021-05-23 18:30:19.86+03	
1392d381-a9db-2d7d-b73e-fe3ee8bde6b5	2021-05-23 18:30:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:30:39.852+03	2021-05-23 18:30:39.859+03	
46f1f714-2fa8-bdac-ce40-5d7bca3249a2	2021-05-23 18:30:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:30:59.853+03	2021-05-23 18:30:59.872+03	
ea925219-c93b-036b-56d2-36ff89c1a8c5	2021-05-23 18:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:31:20.852+03	2021-05-23 18:31:20.859+03	
481a8618-f9ab-7fc2-132e-844689870aa6	2021-05-23 18:31:40.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:31:40.859+03	2021-05-23 18:31:40.866+03	
f404eb7a-c5a7-f462-048c-19686a6e4dec	2021-05-23 18:32:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:32:01.853+03	2021-05-23 18:32:01.86+03	
8a49fadd-d01b-a583-7f5b-a1217ff22a08	2021-05-23 18:32:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:32:22.852+03	2021-05-23 18:32:22.859+03	
f2ca1dd6-9289-6c60-3a91-a0612b942e6c	2021-05-23 18:32:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:32:42.852+03	2021-05-23 18:32:42.858+03	
7b1c3636-e03d-9847-2674-50a154da151f	2021-05-23 18:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:33:02.853+03	2021-05-23 18:33:02.859+03	
865cad8a-2c53-4bc0-2bf6-673b6a4a70ba	2021-05-23 18:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:33:23.853+03	2021-05-23 18:33:23.86+03	
38342d2c-4311-076a-d09e-6eef849b9337	2021-05-23 18:33:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:33:44.852+03	2021-05-23 18:33:44.859+03	
1cba0000-e489-5def-86a9-3db36f1a0f7c	2021-05-23 18:34:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:34:04.853+03	2021-05-23 18:34:04.859+03	
08b999e5-0f78-dd3b-5751-eb9e494c2c56	2021-05-23 18:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:34:24.853+03	2021-05-23 18:34:24.859+03	
fda8c637-fa97-70e8-cd51-3e5831a3ee86	2021-05-23 18:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:34:45.852+03	2021-05-23 18:34:45.858+03	
228e5ce4-fd87-bc7c-d4b4-448fdedae117	2021-05-23 18:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:35:05.852+03	2021-05-23 18:35:05.859+03	
272d627e-5060-c372-8c29-d9a3b7d1f3c7	2021-05-23 18:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:35:25.852+03	2021-05-23 18:35:25.859+03	
72851241-7c68-cbe2-8a58-7f1c7ce4d1c8	2021-05-23 18:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:35:45.853+03	2021-05-23 18:35:45.858+03	
be4761ba-05ac-1f46-491b-537ca8590992	2021-05-23 18:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:36:05.853+03	2021-05-23 18:36:05.859+03	
0c3fdc5a-abd1-5066-813f-28975efca472	2021-05-23 18:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:36:26.853+03	2021-05-23 18:36:26.864+03	
2773cee9-23bc-8ad7-c1ae-19bb00de6f3d	2021-05-23 18:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:36:47.852+03	2021-05-23 18:36:47.858+03	
063826f2-6dd1-9535-9b53-fb6ff3010463	2021-05-23 18:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:37:07.853+03	2021-05-23 18:37:07.859+03	
cd8e2e28-ac18-8af2-3b0b-1ce43eab58a1	2021-05-23 18:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:37:27.853+03	2021-05-23 18:37:27.859+03	
2d0ed5a4-5ea2-0534-54c1-446d8c1c1c61	2021-05-23 18:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:37:38.852+03	2021-05-23 18:37:38.86+03	
1b3c9550-249f-a690-1f86-ba44c2bf0dac	2021-05-23 18:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:37:58.853+03	2021-05-23 18:37:58.859+03	
86a2d0a1-9923-3575-a97e-a75c5b34fd12	2021-05-23 18:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:38:19.852+03	2021-05-23 18:38:19.859+03	
a9503ae2-9e00-3477-3212-e26727754216	2021-05-23 18:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:38:39.853+03	2021-05-23 18:38:39.86+03	
12ce8ba9-4007-c7d4-f160-285754af4ac2	2021-05-23 18:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:38:59.853+03	2021-05-23 18:38:59.859+03	
d5052e71-b5a0-ec24-88a1-66168a83c89b	2021-05-23 18:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:39:19.853+03	2021-05-23 18:39:19.859+03	
dab99a19-cb60-aa8b-e321-0b3cc651eae1	2021-05-23 18:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:39:39.853+03	2021-05-23 18:39:39.859+03	
7317ece2-31c6-2a6a-d479-307cc28db840	2021-05-23 18:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:40:00.852+03	2021-05-23 18:40:00.86+03	
cfff4252-34a9-55eb-ceec-7e0e31f19d0d	2021-05-23 18:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:40:20.853+03	2021-05-23 18:40:20.868+03	
09d138b1-13e8-0f3d-1d0c-3fe80e4e79fd	2021-05-23 18:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:40:41.853+03	2021-05-23 18:40:41.86+03	
8cb37cf5-5598-ff85-c180-58e84aceedbd	2021-05-23 18:41:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:41:02.852+03	2021-05-23 18:41:02.858+03	
cc5ea635-c8ef-4ce9-d971-50dc34ba9223	2021-05-23 18:41:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:41:22.852+03	2021-05-23 18:41:22.859+03	
fec5b1f0-146d-6cc4-b079-358c4c71b3dd	2021-05-23 18:41:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:41:42.852+03	2021-05-23 18:41:42.858+03	
b896562d-fd59-673e-2ca8-ba543e6b93a0	2021-05-23 18:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:42:03.853+03	2021-05-23 18:42:03.858+03	
3c774334-d4c1-002f-df41-fe4a661716b7	2021-05-23 18:42:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:42:24.853+03	2021-05-23 18:42:24.86+03	
266f0090-7117-0cc9-a3e7-e1ac56149c2a	2021-05-23 18:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:42:45.853+03	2021-05-23 18:42:45.859+03	
f7a40093-0d6f-cee2-abc2-b196abb8fc84	2021-05-23 18:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:43:05.853+03	2021-05-23 18:43:05.861+03	
e9bafaa4-8af0-ddb1-e606-07ab141d2658	2021-05-23 18:43:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:43:27.852+03	2021-05-23 18:43:27.86+03	
57691c3d-03d2-b64e-500f-db2343b8cb00	2021-05-23 18:43:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:43:47.852+03	2021-05-23 18:43:47.876+03	
b327b04a-31ad-7a2a-f59c-7697a4d96564	2021-05-23 18:44:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:44:07.852+03	2021-05-23 18:44:07.873+03	
34366e13-e933-c34b-10ca-6adeb6cbbb64	2021-05-23 18:44:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:44:27.853+03	2021-05-23 18:44:27.86+03	
25d6938f-4c4d-704c-c27b-9d818ae24df4	2021-05-23 18:44:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:44:48.852+03	2021-05-23 18:44:48.858+03	
db8786ff-e260-a9b2-212e-abea8b85529e	2021-05-23 18:45:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:45:08.852+03	2021-05-23 18:45:08.858+03	
7081f671-a238-3e82-f9ee-9df8e7d3f3f7	2021-05-23 18:45:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:45:28.853+03	2021-05-23 18:45:28.859+03	
aecc2d95-112f-4aff-a0f9-85938b6c16a3	2021-05-23 18:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:45:48.853+03	2021-05-23 18:45:48.859+03	
4a28db02-6aa0-68d8-6e40-f63528714b6d	2021-05-23 18:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:46:09.852+03	2021-05-23 18:46:09.869+03	
ed50f517-e8a1-4d49-964d-64c2e02b3829	2021-05-23 18:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:46:29.853+03	2021-05-23 18:46:29.859+03	
00e82b71-0769-b630-e581-d9df1272a464	2021-05-23 18:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:46:49.853+03	2021-05-23 18:46:49.859+03	
8a025bff-507e-69e8-6bf2-a9b503d8804f	2021-05-23 18:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:47:09.853+03	2021-05-23 18:47:09.861+03	
14c3a67f-4528-619c-a912-bbc4b3d055bc	2021-05-23 18:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:47:30.853+03	2021-05-23 18:47:30.859+03	
1a8487d9-1554-bc83-5c4d-446f3ef4e045	2021-05-23 18:47:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:47:51.854+03	2021-05-23 18:47:51.86+03	
54f28dbf-35fa-759f-2f60-9b11e0887a8a	2021-05-23 18:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:48:12.852+03	2021-05-23 18:48:12.858+03	
5da81c2c-d111-a6e0-bd57-14b6078f246a	2021-05-23 18:48:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:48:33.852+03	2021-05-23 18:48:33.859+03	
210eebcd-f46a-5f0e-ef22-85e902186bc6	2021-05-23 18:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:48:54.852+03	2021-05-23 18:48:54.859+03	
514a11d8-aa5b-1377-62e8-8a996d0f1807	2021-05-23 18:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:49:14.852+03	2021-05-23 18:49:14.899+03	
6a509ec2-55e7-86e5-3333-bcf5b0a04c87	2021-05-23 18:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:49:34.853+03	2021-05-23 18:49:34.859+03	
884803fd-9db1-255f-2c13-f40e492d42b6	2021-05-23 18:49:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:49:56.852+03	2021-05-23 18:49:56.86+03	
e8e4a9e1-a23e-8148-64a2-d2b0fa98a09f	2021-05-23 18:50:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:50:06.852+03	2021-05-23 18:50:06.86+03	
fbab58d7-cd59-fb11-a993-0827c37d6f25	2021-05-23 18:50:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:50:26.852+03	2021-05-23 18:50:26.858+03	
a04b957b-dd95-bf8a-5b05-acebc0503e1b	2021-05-23 18:50:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:50:46.853+03	2021-05-23 18:50:46.86+03	
c4e221d2-3450-88fe-ed67-42f0794a2a09	2021-05-23 18:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:51:07.853+03	2021-05-23 18:51:07.859+03	
7e609fcf-c8f4-3ac4-7976-663e29dc0dd2	2021-05-23 18:51:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:51:27.853+03	2021-05-23 18:51:27.86+03	
aec83ed3-09e5-580f-ae0b-473ae8346788	2021-05-23 18:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:51:47.853+03	2021-05-23 18:51:47.859+03	
6a87d9b6-f6ce-993e-cc87-be224652c432	2021-05-23 18:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:52:08.852+03	2021-05-23 18:52:08.858+03	
3429013a-4660-3425-c9a7-546aa6d223d1	2021-05-23 18:52:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:52:28.852+03	2021-05-23 18:52:28.859+03	
1b689b36-d846-af12-fd6d-3116ecd14e26	2021-05-23 18:52:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:52:48.853+03	2021-05-23 18:52:48.861+03	
94018efd-438b-1d21-c245-35632d852dbf	2021-05-23 18:53:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:53:09.853+03	2021-05-23 18:53:09.859+03	
81a7220a-bc68-2fbe-3388-00bd39a32979	2021-05-23 18:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:53:30.852+03	2021-05-23 18:53:30.859+03	
87c40cc5-feaa-1938-ecd3-ddf74e29fe0f	2021-05-23 18:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:53:50.852+03	2021-05-23 18:53:50.876+03	
8bcd1eff-34de-a860-983e-733b142f4be5	2021-05-23 18:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:54:10.853+03	2021-05-23 18:54:10.859+03	
71400333-4acd-5a6e-dabf-b75e44c855ed	2021-05-23 18:54:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:54:32.852+03	2021-05-23 18:54:32.862+03	
653daeb1-7400-e956-efc5-cf8e6a7308bf	2021-05-23 18:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:54:52.853+03	2021-05-23 18:54:52.86+03	
5c517ad6-1a40-407d-5e22-0cced004cdde	2021-05-23 18:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:55:12.853+03	2021-05-23 18:55:12.86+03	
b513832e-2ca8-5399-efb4-4b1ac0754f71	2021-05-23 18:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:55:34.853+03	2021-05-23 18:55:35.079+03	
def2e35e-a3d4-5e7f-ec71-4e2e731f1a4d	2021-05-23 18:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:55:55.852+03	2021-05-23 18:55:55.859+03	
7630c7c6-baba-efdb-0652-f7840847d4fa	2021-05-23 18:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:56:15.853+03	2021-05-23 18:56:15.872+03	
7eeeded7-d3ba-3c70-2e92-9d1882f499d1	2021-05-23 18:56:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:56:36.852+03	2021-05-23 18:56:36.86+03	
4582d3e0-5bb5-66b0-4996-5d8c2006bc5a	2021-05-23 18:56:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:56:56.852+03	2021-05-23 18:56:56.859+03	
fb49230b-d5c5-ad87-1ecc-c7b8db4e22df	2021-05-23 18:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:57:17.852+03	2021-05-23 18:57:17.859+03	
196ca63e-f580-23bc-769f-99bda8b8e200	2021-05-23 18:57:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:57:37.852+03	2021-05-23 18:57:37.859+03	
e3a1fdc1-7681-0a94-f3c6-a34cfd78a534	2021-05-23 18:57:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:57:57.852+03	2021-05-23 18:57:57.861+03	
1323842c-55b9-0dd9-f294-c9bdd6d34393	2021-05-23 18:58:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:58:17.853+03	2021-05-23 18:58:17.859+03	
d1f5ab1a-4ecc-bb55-cbd1-13cc2a424aed	2021-05-23 18:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:58:37.853+03	2021-05-23 18:58:37.859+03	
31c08ce6-ab33-fd1e-b448-2fc093f29025	2021-05-23 18:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:37:48.853+03	2021-05-23 18:37:48.859+03	
3d6ed337-deb4-ad3c-7ed7-14533b428e18	2021-05-23 18:38:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:38:09.852+03	2021-05-23 18:38:09.859+03	
8e148ac2-952c-5c1b-d6ff-4297218b4640	2021-05-23 18:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:38:29.852+03	2021-05-23 18:38:29.859+03	
c892429a-d164-5405-aef4-b6a3127ec1c9	2021-05-23 18:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:38:49.853+03	2021-05-23 18:38:49.859+03	
551a3de5-7b0b-8346-636e-b79196102b17	2021-05-23 18:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:39:09.853+03	2021-05-23 18:39:09.859+03	
8eb58a3a-59f7-8814-cac3-16c25541e8ea	2021-05-23 18:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:39:29.853+03	2021-05-23 18:39:29.859+03	
a12484fb-0a9d-81d1-18ff-2603d953057d	2021-05-23 18:39:49.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:39:49.858+03	2021-05-23 18:39:49.865+03	
8d996360-ced9-c410-e7eb-c8d3203174fd	2021-05-23 18:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 18:40:00.853+03	2021-05-23 18:40:00.868+03	ERROR
b66920b4-e412-9096-bba9-9411c5570129	2021-05-23 18:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:40:10.852+03	2021-05-23 18:40:10.859+03	
2df3839b-da6a-719f-7d05-7c51038cd951	2021-05-23 18:40:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:40:31.852+03	2021-05-23 18:40:31.858+03	
825d7f2a-e5d4-a608-c564-44e9b0d6d5c5	2021-05-23 18:40:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:40:51.854+03	2021-05-23 18:40:51.86+03	
1365dfef-99bc-52df-d9c7-214b5e4721f3	2021-05-23 18:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:41:12.852+03	2021-05-23 18:41:12.858+03	
09c5fabe-c5c4-4dae-f373-e0abddfd8b8d	2021-05-23 18:41:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:41:32.852+03	2021-05-23 18:41:32.858+03	
ba06eb5b-e202-1d10-0b26-a59cf8663136	2021-05-23 18:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:41:52.853+03	2021-05-23 18:41:52.86+03	
8386bcbf-88c0-c1f3-8661-e4a177b1a39f	2021-05-23 18:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:42:14.852+03	2021-05-23 18:42:14.859+03	
ddf5d1ec-8e9e-342f-5127-6e5f847653a2	2021-05-23 18:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:42:35.853+03	2021-05-23 18:42:35.859+03	
23b0a0e8-d207-62de-62c5-3d78f4c8d439	2021-05-23 18:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:42:55.853+03	2021-05-23 18:42:55.859+03	
1c0fc478-c315-31d4-aa92-39831e7fbb01	2021-05-23 18:43:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:43:16.853+03	2021-05-23 18:43:16.859+03	
810f923f-0954-3447-725c-ba9f4017b57d	2021-05-23 18:43:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:43:37.852+03	2021-05-23 18:43:37.86+03	
bc358842-1d3e-2992-e06b-09c5d9ec94bc	2021-05-23 18:43:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:43:57.852+03	2021-05-23 18:43:57.86+03	
c2e11216-4b38-c283-e5de-96e5807e1bba	2021-05-23 18:44:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:44:17.852+03	2021-05-23 18:44:17.86+03	
fbcbf7a6-2921-3847-88c6-9b3e0faee4d2	2021-05-23 18:44:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:44:38.852+03	2021-05-23 18:44:38.865+03	
2c6e0ffe-8366-096a-5104-d3f2ac2be8cd	2021-05-23 18:44:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:44:58.852+03	2021-05-23 18:44:58.858+03	
03994713-a013-8325-4a2f-a3d302511354	2021-05-23 18:45:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:45:18.852+03	2021-05-23 18:45:18.86+03	
ff8bf7ab-a6bb-0d10-78ab-ff17dbaa6293	2021-05-23 18:45:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:45:38.853+03	2021-05-23 18:45:38.859+03	
84b77fdf-07dc-ff07-0607-6f68268c2842	2021-05-23 18:45:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:45:58.853+03	2021-05-23 18:45:58.859+03	
47a8845f-d3ef-3c55-4c49-d6f356932204	2021-05-23 18:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:46:19.852+03	2021-05-23 18:46:19.874+03	
62d5af9e-4990-b9f6-aa34-6160f002c232	2021-05-23 18:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:46:39.853+03	2021-05-23 18:46:39.858+03	
b6317b75-6462-8e0d-62d3-73853c5f1a06	2021-05-23 18:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:46:59.853+03	2021-05-23 18:46:59.871+03	
30645ede-e424-9108-6b97-d7b21cf685f1	2021-05-23 18:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:47:20.852+03	2021-05-23 18:47:20.861+03	
36b619fb-34a5-0c71-4441-90d0b1d64ccd	2021-05-23 18:47:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:47:41.852+03	2021-05-23 18:47:41.858+03	
5a39ae9e-d1be-3491-be62-b0d0bc6ce84a	2021-05-23 18:48:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:48:02.852+03	2021-05-23 18:48:02.859+03	
3b56820a-740d-9a7f-18a8-4e22337c15ce	2021-05-23 18:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:48:22.853+03	2021-05-23 18:48:22.859+03	
689b7315-e50d-abab-8e97-5b7f877ba000	2021-05-23 18:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:48:43.853+03	2021-05-23 18:48:43.863+03	
948acaaa-9b21-64b0-7d6e-1a5015595b27	2021-05-23 18:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:49:04.852+03	2021-05-23 18:49:04.86+03	
02fb05bd-9fe2-3fdb-a3b9-eddd12359dbc	2021-05-23 18:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:49:24.852+03	2021-05-23 18:49:24.865+03	
14e69ee5-358c-8f0c-f867-212017d854dd	2021-05-23 18:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:49:45.853+03	2021-05-23 18:49:45.861+03	
0852b950-7103-687f-6d1e-f36ae07a035b	2021-05-23 18:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 18:50:00.852+03	2021-05-23 18:50:00.863+03	ERROR
fcb70b0b-cd69-be4d-470d-101fc3e229f9	2021-05-23 18:50:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:50:16.852+03	2021-05-23 18:50:16.859+03	
b170b6d3-7e03-c791-b65d-1744c82ec73c	2021-05-23 18:50:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:50:36.852+03	2021-05-23 18:50:36.86+03	
cec16fcb-81ab-35a2-a6c7-b8e71fe3bd55	2021-05-23 18:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:50:57.853+03	2021-05-23 18:50:57.861+03	
4a7c0d5a-a1f0-2f30-cce5-99d3b167c08e	2021-05-23 18:51:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:51:17.853+03	2021-05-23 18:51:17.859+03	
56b8e2ef-4caf-b8a0-6aeb-23a7ff42481f	2021-05-23 18:51:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:51:37.853+03	2021-05-23 18:51:37.86+03	
54a75a4c-ad0a-e114-47bd-3033cbb44ffd	2021-05-23 18:51:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:51:58.852+03	2021-05-23 18:51:58.858+03	
fd8a46eb-5d4b-e437-92c9-febf49529324	2021-05-23 18:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:52:18.852+03	2021-05-23 18:52:18.859+03	
7b2fbbff-a7bf-a5b1-e0f8-4d58fe0a84fe	2021-05-23 18:52:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:52:38.852+03	2021-05-23 18:52:38.862+03	
bd2da41f-8635-b176-1113-1712a17a5b6f	2021-05-23 18:52:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:52:58.853+03	2021-05-23 18:52:58.859+03	
e39512a8-67ff-d7e8-4608-1d9b1d02fbfd	2021-05-23 18:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:53:20.852+03	2021-05-23 18:53:20.859+03	
401e664c-6771-c8b2-eea9-e48cd93c0dc8	2021-05-23 18:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:53:40.852+03	2021-05-23 18:53:40.86+03	
c3a03df5-369b-08b9-e63b-db3d1fbbea73	2021-05-23 18:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:54:00.853+03	2021-05-23 18:54:00.876+03	
7ad92e9e-a3e3-adf4-48e5-9fb52bcb4bd0	2021-05-23 18:54:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:54:21.854+03	2021-05-23 18:54:21.86+03	
33c6ec9b-ef7a-fa52-37d5-2abe736c32fa	2021-05-23 18:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:54:42.852+03	2021-05-23 18:54:42.858+03	
19253e22-f1ea-cbde-2caf-45a13a9ca336	2021-05-23 18:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:55:02.853+03	2021-05-23 18:55:02.861+03	
63e339f5-c6ef-599d-77d1-9bbafa2ac77b	2021-05-23 18:55:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:55:23.853+03	2021-05-23 18:55:23.86+03	
42b462c7-471f-3aa2-2b56-c0d4ab74f743	2021-05-23 18:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:55:45.852+03	2021-05-23 18:55:45.861+03	
2da46a99-79f8-4e4b-0e04-661bf51c26ee	2021-05-23 18:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:56:05.852+03	2021-05-23 18:56:05.872+03	
deb04fcb-f63c-e9f6-3c85-3e9b9089c2ce	2021-05-23 18:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:56:26.852+03	2021-05-23 18:56:26.86+03	
050d567b-40e0-c246-24a5-6b56b90b8ce6	2021-05-23 18:56:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:56:46.852+03	2021-05-23 18:56:46.86+03	
8a5d555d-7cd0-3a2f-473e-48fd4bcb7c03	2021-05-23 18:57:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:57:06.854+03	2021-05-23 18:57:06.861+03	
2da13c6c-dcf7-5031-41ed-96ca94605e50	2021-05-23 18:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:57:27.852+03	2021-05-23 18:57:27.861+03	
a8718cbe-6cc6-fa19-a17c-b158169f973e	2021-05-23 18:57:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:57:47.852+03	2021-05-23 18:57:47.859+03	
c801b4cf-e206-6c72-d49d-7aa6da2a71fa	2021-05-23 18:58:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:58:07.852+03	2021-05-23 18:58:07.86+03	
708bb6ef-0539-1a94-8e75-089ba4315eb3	2021-05-23 18:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:58:27.853+03	2021-05-23 18:58:27.86+03	
69bae646-7834-7cc4-10ed-099b9faf74f3	2021-05-23 18:58:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:58:48.852+03	2021-05-23 18:58:48.859+03	
d24cac79-fafc-a5ba-9b12-77b89492dc5b	2021-05-23 18:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:59:08.852+03	2021-05-23 18:59:08.859+03	
db82886d-6fb4-ca20-a4e6-399478ce2c4d	2021-05-23 18:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:59:28.852+03	2021-05-23 18:59:28.859+03	
a3178ac6-729e-3b6b-c0d2-49e1b617e777	2021-05-23 18:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:59:48.853+03	2021-05-23 18:59:48.859+03	
8ad123c4-3bae-7daa-3b43-e61f122b62d5	2021-05-23 19:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 19:00:00.853+03	2021-05-23 19:00:00.859+03	ERROR
b6d288cf-e6c1-bc32-2cfa-07c73a9dc289	2021-05-23 19:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:00:19.852+03	2021-05-23 19:00:19.859+03	
1b9429f8-5dd7-aca6-11ce-896f1ab2b895	2021-05-23 19:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:00:40.852+03	2021-05-23 19:00:40.859+03	
11fdf8b5-29d9-c54b-090b-fdae5d4a4035	2021-05-23 19:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:01:00.853+03	2021-05-23 19:01:00.86+03	
683a16fa-7cb1-719f-a37e-5b52bfcaf0f6	2021-05-23 19:01:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:01:21.853+03	2021-05-23 19:01:21.86+03	
b987458d-a3ea-70cf-b85a-72f385d19895	2021-05-23 19:01:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:01:41.853+03	2021-05-23 19:01:41.871+03	
50c02839-d7e3-65e0-84b0-14f61e1aee08	2021-05-23 19:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:02:02.853+03	2021-05-23 19:02:02.861+03	
6b7e3b12-ddec-3e22-3996-3e436a113956	2021-05-23 19:02:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:02:23.853+03	2021-05-23 19:02:23.86+03	
ef9ed8e6-dbc8-8dc2-06ed-13f5b7700f0a	2021-05-23 19:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:02:44.853+03	2021-05-23 19:02:44.86+03	
38e98f06-6d34-997a-f393-7018db67bd9e	2021-05-23 19:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:03:05.853+03	2021-05-23 19:03:05.86+03	
ec05a19f-7263-4905-016c-6af0739535b6	2021-05-23 19:03:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:03:26.853+03	2021-05-23 19:03:26.864+03	
49a7eaa1-5238-ceb0-aea1-6e3625a7a592	2021-05-23 19:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:03:47.853+03	2021-05-23 19:03:47.861+03	
6646ed5e-9543-704a-3fd0-603c25d6d1ea	2021-05-23 19:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:04:08.853+03	2021-05-23 19:04:08.859+03	
10d65b02-05de-25f3-7b80-c281f75af54a	2021-05-23 19:04:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:04:29.853+03	2021-05-23 19:04:29.859+03	
0ae6d0c7-27d7-4cd8-5f84-fe5d2354582c	2021-05-23 19:04:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:04:51.852+03	2021-05-23 19:04:51.859+03	
9f5ea8c5-2e0a-55f9-c70d-f00ab30e3359	2021-05-23 19:05:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:05:11.852+03	2021-05-23 19:05:11.859+03	
5cedd748-ad91-e51e-6964-f4f099ecd3f1	2021-05-23 19:05:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:05:31.852+03	2021-05-23 19:05:31.859+03	
9cd7f109-abe6-9029-c4c5-017b02a0d2b7	2021-05-23 19:05:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:05:51.854+03	2021-05-23 19:05:51.86+03	
9de51be4-7e1c-514a-9dd5-cd43f8f657af	2021-05-23 19:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:06:13.852+03	2021-05-23 19:06:13.859+03	
844d6578-7290-e7f4-a4a0-d2a10385e8cb	2021-05-23 19:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:06:34.852+03	2021-05-23 19:06:34.859+03	
f14d5223-28cb-fea0-f480-9e6d3e96ad8c	2021-05-23 19:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:06:54.853+03	2021-05-23 19:06:54.861+03	
fd774426-eef5-a445-dbb2-2503489bd415	2021-05-23 19:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:07:14.853+03	2021-05-23 19:07:14.861+03	
331eb56a-6de4-593b-773b-37b9d05b3e9b	2021-05-23 19:07:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:07:36.854+03	2021-05-23 19:07:36.859+03	
be7a6b12-eddc-c95d-7cd1-d8848abb7d0c	2021-05-23 19:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:07:57.853+03	2021-05-23 19:07:57.861+03	
2e85b61b-5b14-4d76-1d9a-f6bdbb2d789a	2021-05-23 19:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:08:18.852+03	2021-05-23 19:08:18.859+03	
324bc9a4-9550-e0cc-c0af-15e71b99bae2	2021-05-23 19:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:08:38.853+03	2021-05-23 19:08:38.859+03	
5f42e090-4e15-3f0c-546b-2d4b015f6eab	2021-05-23 19:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:08:59.853+03	2021-05-23 19:08:59.862+03	
9f497405-cf0f-a85b-e579-2181a55319cd	2021-05-23 19:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:09:20.853+03	2021-05-23 19:09:20.859+03	
47961d36-fd6f-432b-7e7d-4c348ef5f637	2021-05-23 19:09:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:09:41.853+03	2021-05-23 19:09:41.859+03	
e503cd5e-4d11-779b-58da-a9cdb75ff019	2021-05-23 19:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 19:10:00.853+03	2021-05-23 19:10:00.857+03	ERROR
42606817-649a-9180-b583-45e7a4455072	2021-05-23 19:10:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:10:11.853+03	2021-05-23 19:10:11.86+03	
e89c7551-3ec6-410e-9f5a-2ee00ea7cdcb	2021-05-23 19:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:10:32.853+03	2021-05-23 19:10:32.86+03	
b59ba7f6-c326-428f-4447-aa139e832cae	2021-05-23 19:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:10:54.852+03	2021-05-23 19:10:54.86+03	
9149213d-51ab-a5fc-271b-58e63f24ca28	2021-05-23 19:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:11:14.852+03	2021-05-23 19:11:14.859+03	
949fc804-4c9d-148f-32c2-b12e8795af54	2021-05-23 19:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:11:34.852+03	2021-05-23 19:11:34.861+03	
3cc7da59-d4d9-2107-3107-166e8cbe31d0	2021-05-23 19:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:11:54.853+03	2021-05-23 19:11:54.86+03	
75c39018-5d59-057d-9d06-7e829b03c2dd	2021-05-23 19:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:12:15.852+03	2021-05-23 19:12:15.859+03	
28e622be-f77a-b045-4e0f-7559175e086e	2021-05-23 19:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:12:35.852+03	2021-05-23 19:12:35.871+03	
3c1dfb66-8c74-addb-f222-33d187dc10d6	2021-05-23 19:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:12:55.852+03	2021-05-23 19:12:55.859+03	
ebb942c0-2063-9199-fa1c-4b6562ba98d2	2021-05-23 19:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:13:15.853+03	2021-05-23 19:13:15.859+03	
0c575966-99d5-dd8c-098b-57e9baac7ea7	2021-05-23 19:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:13:35.853+03	2021-05-23 19:13:35.859+03	
12fe6223-9880-1658-ad23-77413f00614a	2021-05-23 19:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:13:55.853+03	2021-05-23 19:13:55.863+03	
1b88ccbf-8850-a6d7-4e71-05e7e00ec7fc	2021-05-23 19:14:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:14:16.852+03	2021-05-23 19:14:16.86+03	
11aa2a7c-3d35-0ddf-fb53-15043512e864	2021-05-23 19:14:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:14:36.854+03	2021-05-23 19:14:36.86+03	
59d64f97-15c6-8fec-f839-7755d6b5fd6f	2021-05-23 19:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:14:57.853+03	2021-05-23 19:14:57.861+03	
1b7f9014-ec33-07e6-5d8d-0cac2694e5fe	2021-05-23 19:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:15:17.853+03	2021-05-23 19:15:17.858+03	
ad848dae-0b83-9fca-6f63-d75561d3808d	2021-05-23 19:15:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:15:38.852+03	2021-05-23 19:15:38.858+03	
41692777-e4a6-8d82-5c7c-41030d0f6580	2021-05-23 19:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:15:58.852+03	2021-05-23 19:15:58.86+03	
b5861368-cebb-0cfd-e3db-d969b747fc41	2021-05-23 19:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:16:18.852+03	2021-05-23 19:16:18.859+03	
ef53deba-e6a7-adbb-f173-ed5daec6d1da	2021-05-23 19:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:16:38.852+03	2021-05-23 19:16:38.863+03	
be7a008d-e583-8aa0-85c7-5a862a4ab72e	2021-05-23 19:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:16:58.853+03	2021-05-23 19:16:58.876+03	
627c94bf-4206-53f8-ad19-35028fdfb01e	2021-05-23 19:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:17:19.852+03	2021-05-23 19:17:19.859+03	
6fba0637-573d-89c0-cc40-d3581e4292b3	2021-05-23 19:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:17:39.853+03	2021-05-23 19:17:39.86+03	
f2488795-abc1-cecb-037b-5d88bd19c2f0	2021-05-23 19:18:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:18:01.852+03	2021-05-23 19:18:01.859+03	
12a1c384-927d-b2e7-7761-45117aa1766f	2021-05-23 19:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:18:21.854+03	2021-05-23 19:18:21.86+03	
4f5556bf-724f-d2a3-be08-2a2ee52c6710	2021-05-23 19:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:18:42.852+03	2021-05-23 19:18:42.859+03	
b838983f-77e9-3ebe-929b-a174ae2ea8c5	2021-05-23 19:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:19:03.853+03	2021-05-23 19:19:03.86+03	
546722c2-0dd6-e4f4-5556-4cccaf4cd9cb	2021-05-23 19:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:19:24.853+03	2021-05-23 19:19:24.86+03	
31897136-4061-17f1-658f-3e39ce530c70	2021-05-23 19:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:19:45.853+03	2021-05-23 19:19:45.873+03	
01ea014a-2e9c-2a8a-5d97-623d51a1b5e6	2021-05-23 18:58:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:58:58.852+03	2021-05-23 18:58:58.858+03	
e68c33bb-2566-939f-690f-ecce5c4f830f	2021-05-23 18:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:59:18.852+03	2021-05-23 18:59:18.858+03	
522db84f-1981-2b4b-a6dd-79c09d652368	2021-05-23 18:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:59:38.852+03	2021-05-23 18:59:38.859+03	
9abeae64-cf24-cc2b-5fb8-50cb86d59aca	2021-05-23 18:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 18:59:59.852+03	2021-05-23 18:59:59.86+03	
82828afd-dd7e-849e-ed83-560f0693d3a3	2021-05-23 19:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:00:09.852+03	2021-05-23 19:00:09.859+03	
b5dab622-20ce-061b-0b2e-a125121d25ef	2021-05-23 19:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:00:29.853+03	2021-05-23 19:00:29.858+03	
af60bf7f-9813-4961-998c-e241320b8d4a	2021-05-23 19:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:00:50.853+03	2021-05-23 19:00:50.858+03	
6c8d687f-808e-120b-8d14-09a064933dca	2021-05-23 19:01:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:01:11.852+03	2021-05-23 19:01:11.859+03	
9148a6b8-9782-60c9-fea8-51741af22db8	2021-05-23 19:01:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:01:31.853+03	2021-05-23 19:01:31.859+03	
616c4125-2f45-1424-8e1a-7d660c402482	2021-05-23 19:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:01:52.852+03	2021-05-23 19:01:52.859+03	
c486577e-dbc3-8a27-9f14-bd07beb4e84f	2021-05-23 19:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:02:13.852+03	2021-05-23 19:02:13.869+03	
ee60bc24-a138-07d3-e6ea-66f7d9caa771	2021-05-23 19:02:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:02:34.853+03	2021-05-23 19:02:34.859+03	
5a5346b8-2af5-b153-22bb-3777a0a109bf	2021-05-23 19:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:02:54.853+03	2021-05-23 19:02:54.859+03	
f55ea463-7f29-bc52-5ec0-62d0719d1ce5	2021-05-23 19:03:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:03:16.852+03	2021-05-23 19:03:16.86+03	
32f54612-425f-21c0-bb1c-b3562b81b4d0	2021-05-23 19:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:03:37.852+03	2021-05-23 19:03:37.859+03	
cbb2ea9e-d670-ee45-4269-ac6e63482e6c	2021-05-23 19:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:03:58.852+03	2021-05-23 19:03:58.858+03	
72cfe4ac-6496-e5ac-d9fb-9641fe7b6708	2021-05-23 19:04:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:04:19.852+03	2021-05-23 19:04:19.861+03	
2fc9c84b-5b03-de95-6fa2-a4a563fe8997	2021-05-23 19:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:04:40.853+03	2021-05-23 19:04:40.876+03	
121608cd-1e86-8e89-709f-04efccd093a4	2021-05-23 19:05:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:05:01.852+03	2021-05-23 19:05:01.859+03	
f3f2e963-c964-69d0-8da7-f4a014de4d15	2021-05-23 19:05:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:05:21.852+03	2021-05-23 19:05:21.86+03	
58ace830-3422-6644-b54c-5f4b45a037a4	2021-05-23 19:05:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:05:41.854+03	2021-05-23 19:05:41.86+03	
48bb9ba0-5ffd-db75-8b97-f009ef474401	2021-05-23 19:06:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:06:02.853+03	2021-05-23 19:06:02.858+03	
c3171188-11b2-2e44-9f16-889ee3bdf7d8	2021-05-23 19:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:06:23.853+03	2021-05-23 19:06:23.872+03	
8cb2ed7f-08d5-1d36-9122-48853302978e	2021-05-23 19:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:06:44.853+03	2021-05-23 19:06:44.861+03	
75b5eef3-f665-0e6f-c8a9-67381607037c	2021-05-23 19:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:07:04.853+03	2021-05-23 19:07:04.861+03	
8114d6d8-b1f4-227a-da7b-a11796d1a284	2021-05-23 19:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:07:25.853+03	2021-05-23 19:07:25.86+03	
e5c4096f-f988-ead2-d78c-2ffe6dbe0704	2021-05-23 19:07:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:07:47.852+03	2021-05-23 19:07:47.858+03	
81315434-5175-45a2-686a-179db8f03547	2021-05-23 19:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:08:07.853+03	2021-05-23 19:08:07.86+03	
accde51a-5861-2ffd-0ed0-6b18763a00e5	2021-05-23 19:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:08:28.853+03	2021-05-23 19:08:28.861+03	
b5d555e5-f141-642c-0be4-d627a889eee3	2021-05-23 19:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:08:48.853+03	2021-05-23 19:08:48.86+03	
8234d931-28fe-85e8-4943-bc1f69c518b3	2021-05-23 19:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:09:10.853+03	2021-05-23 19:09:10.859+03	
4e39ebe8-2306-beaf-e799-44c08d2b7ae0	2021-05-23 19:09:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:09:31.853+03	2021-05-23 19:09:31.86+03	
fe8fd365-5054-ac00-f6d7-d1278e6268fc	2021-05-23 19:09:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:09:51.853+03	2021-05-23 19:09:51.859+03	
517151f8-0f7d-ab8c-7153-e4d760670af5	2021-05-23 19:10:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:10:01.853+03	2021-05-23 19:10:01.859+03	
44c7fdb8-5d87-3453-59c0-93c325a36b0b	2021-05-23 19:10:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:10:22.853+03	2021-05-23 19:10:22.86+03	
a62ed964-ed0f-aaec-25c2-8e8ca9cd5c86	2021-05-23 19:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:10:43.853+03	2021-05-23 19:10:43.861+03	
cdbea337-7060-1545-fc76-13b261bf8069	2021-05-23 19:11:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:11:04.852+03	2021-05-23 19:11:04.858+03	
8a28fb7e-4e47-9f82-065a-1de45b876ba1	2021-05-23 19:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:11:24.852+03	2021-05-23 19:11:24.859+03	
51a72d2a-cf37-235a-d25a-5d2ed8d108a0	2021-05-23 19:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:11:44.852+03	2021-05-23 19:11:44.859+03	
559714cf-3d09-4ebc-8162-38027b79a520	2021-05-23 19:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:12:04.853+03	2021-05-23 19:12:04.859+03	
46e38af9-569a-725f-c7b7-2f67a3b9ec1c	2021-05-23 19:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:12:25.852+03	2021-05-23 19:12:25.858+03	
5a0994e8-db45-2893-3c41-1776c90d9af7	2021-05-23 19:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:12:45.852+03	2021-05-23 19:12:45.859+03	
e6986d67-69ad-0be3-eb00-63a037f76392	2021-05-23 19:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:13:05.853+03	2021-05-23 19:13:05.86+03	
8eacafbb-316e-2375-b37b-a04b2893f499	2021-05-23 19:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:13:25.853+03	2021-05-23 19:13:25.87+03	
8b1dcefe-9916-f145-1903-577f4ffdba58	2021-05-23 19:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:13:45.853+03	2021-05-23 19:13:45.859+03	
38d39170-46e8-4132-e077-3425dd653456	2021-05-23 19:14:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:14:06.852+03	2021-05-23 19:14:06.859+03	
b0736278-50ef-0100-d780-85ed274e47d0	2021-05-23 19:14:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:14:26.852+03	2021-05-23 19:14:26.859+03	
afa609e0-bf70-29b1-a205-f728a2b47aab	2021-05-23 19:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:14:47.853+03	2021-05-23 19:14:47.859+03	
598af486-2447-c401-aa69-676fac768f74	2021-05-23 19:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:15:07.853+03	2021-05-23 19:15:07.859+03	
2cbcf94c-0048-10c9-bfcd-deedd27242be	2021-05-23 19:15:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:15:28.852+03	2021-05-23 19:15:28.86+03	
d0f75190-888a-388b-8fa4-7cf1cfc3c1eb	2021-05-23 19:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:15:48.852+03	2021-05-23 19:15:48.859+03	
7220df7f-4d71-f05c-1488-85ca74775633	2021-05-23 19:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:16:08.852+03	2021-05-23 19:16:08.859+03	
50acc305-92cb-5b9b-d239-688f958cbd79	2021-05-23 19:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:16:28.852+03	2021-05-23 19:16:28.86+03	
1e173e07-c689-4bb7-47f5-296cbf3493aa	2021-05-23 19:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:16:48.852+03	2021-05-23 19:16:48.872+03	
1d095874-4229-b8d2-2a2b-d383685bc105	2021-05-23 19:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:17:08.853+03	2021-05-23 19:17:08.86+03	
794cfe3c-3938-b9ae-38b7-08fb6cfc50c0	2021-05-23 19:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:17:29.852+03	2021-05-23 19:17:29.859+03	
16ed3bdc-3afc-766e-7fde-c883336230bf	2021-05-23 19:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:17:50.853+03	2021-05-23 19:17:50.859+03	
e2a2f037-d162-4d56-ad7f-438da817782c	2021-05-23 19:18:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:18:11.853+03	2021-05-23 19:18:11.86+03	
81d37f36-f726-86cb-a48c-7e7c7dd4ff76	2021-05-23 19:18:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:18:31.854+03	2021-05-23 19:18:31.86+03	
28b93787-0743-0bef-2172-d07bc81d541a	2021-05-23 19:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:18:52.853+03	2021-05-23 19:18:52.86+03	
34bf706d-35b9-9add-a89d-7c239e96d307	2021-05-23 19:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:19:14.853+03	2021-05-23 19:19:14.86+03	
67489004-d7f3-64ca-f178-d3676f6a5f13	2021-05-23 19:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:19:35.852+03	2021-05-23 19:19:35.859+03	
60941827-a838-9f0e-1ad3-f6c2324077e4	2021-05-23 19:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:19:56.853+03	2021-05-23 19:19:56.86+03	
750be117-85f8-aefd-b8e6-96576c57cc28	2021-05-23 19:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 19:20:00.853+03	2021-05-23 19:20:00.858+03	ERROR
18a2b0fe-5a80-3a57-6576-5e6f3e8db43d	2021-05-23 19:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:20:17.852+03	2021-05-23 19:20:17.859+03	
a39bdb7b-728b-a0f1-5409-2d8df1421b9d	2021-05-23 19:20:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:20:37.853+03	2021-05-23 19:20:37.864+03	
894ce5f0-b75a-0aa0-00b1-0a4134e2056a	2021-05-23 19:20:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:20:57.853+03	2021-05-23 19:20:57.859+03	
143a1500-d93b-7ecb-5e83-b1d8a44858a5	2021-05-23 19:21:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:21:18.853+03	2021-05-23 19:21:18.859+03	
8e6a7b9c-0ab9-85b2-bb88-edafad278879	2021-05-23 19:21:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:21:39.853+03	2021-05-23 19:21:39.859+03	
22f420d2-31d4-cae3-7f0b-b801f4769d0b	2021-05-23 19:21:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:21:59.853+03	2021-05-23 19:21:59.859+03	
95f05b49-9a81-0ef1-5335-627feb23c6a3	2021-05-23 19:22:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:22:20.853+03	2021-05-23 19:22:20.859+03	
eeba09e8-9307-03b1-d2ab-2dcb7b71b7e0	2021-05-23 19:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:22:42.852+03	2021-05-23 19:22:42.859+03	
01476fb6-d2b8-a560-970e-f0557b02e39a	2021-05-23 19:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:23:03.852+03	2021-05-23 19:23:03.859+03	
264b30cb-9822-6058-2505-8fa78d40dbb1	2021-05-23 19:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:23:23.853+03	2021-05-23 19:23:23.87+03	
09fe34b5-771e-08aa-0d22-47e10d756885	2021-05-23 19:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:23:44.852+03	2021-05-23 19:23:44.859+03	
5239d7e8-2c15-da8c-b7b5-b83a389ac69c	2021-05-23 19:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:24:04.853+03	2021-05-23 19:24:04.86+03	
8818aea2-db15-6d90-922f-8f3c0d406f1b	2021-05-23 19:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:24:25.852+03	2021-05-23 19:24:25.859+03	
56e24c65-92ba-ce32-409e-5fd784c25223	2021-05-23 19:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:24:45.852+03	2021-05-23 19:24:45.859+03	
4ccde975-81f0-9779-ca17-e620a7399970	2021-05-23 19:25:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:25:06.853+03	2021-05-23 19:25:06.859+03	
f784b824-8a53-5009-98a0-411b2e99b1ae	2021-05-23 19:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:25:27.852+03	2021-05-23 19:25:27.858+03	
974209b6-96b5-b3e0-0104-b057f5b25076	2021-05-23 19:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:25:47.852+03	2021-05-23 19:25:47.858+03	
5cce59b1-ec05-e1ac-b4b6-0e82aca02616	2021-05-23 19:26:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:26:07.853+03	2021-05-23 19:26:07.861+03	
cbc97972-2e99-29c4-bdff-e819afe384b0	2021-05-23 19:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:26:28.853+03	2021-05-23 19:26:28.901+03	
8b095359-ca77-ace4-01b2-1e66a91b8e1c	2021-05-23 19:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:26:49.852+03	2021-05-23 19:26:49.86+03	
30f17bd7-9881-a3d1-b510-b055a8def46e	2021-05-23 19:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:27:10.853+03	2021-05-23 19:27:10.859+03	
69ae1b73-ae79-c861-b702-a152058ccc45	2021-05-23 19:27:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:27:31.853+03	2021-05-23 19:27:31.859+03	
214404cf-11a6-04a7-b02b-c450ad504d76	2021-05-23 19:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:27:52.852+03	2021-05-23 19:27:52.859+03	
438379ef-8cc8-7699-722c-9acd8242aa2b	2021-05-23 19:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:28:12.853+03	2021-05-23 19:28:12.859+03	
c5edf9a2-bda6-be1e-d1ba-89fa4f6b31f1	2021-05-23 19:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:28:33.852+03	2021-05-23 19:28:33.859+03	
80b970a3-492a-9f9a-c618-9bc25baf9d3b	2021-05-23 19:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:28:54.852+03	2021-05-23 19:28:54.859+03	
6be1c077-082f-f2e0-3773-84c8154fd013	2021-05-23 19:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:29:15.853+03	2021-05-23 19:29:15.861+03	
cb1f5225-f681-5cf5-b9ae-65afcbf64734	2021-05-23 19:29:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:29:36.853+03	2021-05-23 19:29:36.859+03	
0912426b-081f-c1ca-f648-6207923ef37f	2021-05-23 19:29:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:29:58.853+03	2021-05-23 19:29:58.86+03	
7d050e77-a66d-30b9-aac2-cb7e82f3a48b	2021-05-23 19:30:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:30:09.852+03	2021-05-23 19:30:09.859+03	
b7c334b8-e32c-560b-b12c-4d016a80d905	2021-05-23 19:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:30:30.853+03	2021-05-23 19:30:30.859+03	
60d51ae1-2f78-d59b-0116-cf39e60cbc08	2021-05-23 19:30:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:30:50.853+03	2021-05-23 19:30:50.86+03	
1e088384-5ce7-5c3b-2034-dd59da44b1e1	2021-05-23 19:31:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:31:10.853+03	2021-05-23 19:31:10.862+03	
6785d426-6e89-c299-6e13-da088413769b	2021-05-23 19:31:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:31:30.853+03	2021-05-23 19:31:30.861+03	
4484a577-26ff-550c-f257-98b06017bf81	2021-05-23 19:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:31:50.853+03	2021-05-23 19:31:50.859+03	
847fd3e8-7487-a8cc-3a4b-f265b84a1054	2021-05-23 19:32:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:32:11.853+03	2021-05-23 19:32:11.862+03	
a17495ec-dfbe-7a95-9ebb-2be40ad1b288	2021-05-23 19:32:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:32:31.854+03	2021-05-23 19:32:31.861+03	
a07d4cee-31fc-a2c1-5516-9a6568f568f5	2021-05-23 19:32:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:32:51.854+03	2021-05-23 19:32:51.862+03	
3b2a691e-a724-d025-aa25-3d0601e4271f	2021-05-23 19:33:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:33:11.854+03	2021-05-23 19:33:11.861+03	
dccf21c4-3ec6-e71a-f77f-79e1ef3e3a3b	2021-05-23 19:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:33:32.852+03	2021-05-23 19:33:32.859+03	
84bfc92e-e40b-eab0-d3a1-31bfc8db93f5	2021-05-23 19:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:33:52.852+03	2021-05-23 19:33:52.863+03	
fce7fe96-9db6-dc18-09bf-37e6c2754f52	2021-05-23 19:34:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:34:12.853+03	2021-05-23 19:34:12.86+03	
87b6755b-a464-103c-eadb-d3ca9ab4aca9	2021-05-23 19:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:34:32.853+03	2021-05-23 19:34:32.859+03	
ab2fbd53-9393-a47a-04c8-1eb3b348d4ca	2021-05-23 19:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:34:53.853+03	2021-05-23 19:34:53.86+03	
83ca3384-72cc-2a35-ec7b-549d8448cfa8	2021-05-23 19:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:35:13.853+03	2021-05-23 19:35:13.86+03	
8a047715-6302-e4fb-376d-a1ea158dde65	2021-05-23 19:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:35:34.852+03	2021-05-23 19:35:34.872+03	
669e639c-803a-43f5-d6c3-3cb2314ce80f	2021-05-23 19:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:35:54.852+03	2021-05-23 19:35:54.859+03	
98a30d46-cb0e-2c61-2280-54c8962e6955	2021-05-23 19:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:36:14.853+03	2021-05-23 19:36:14.861+03	
adfc8bc1-ca5b-f78b-d7d6-952464364bd3	2021-05-23 19:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:36:35.852+03	2021-05-23 19:36:35.858+03	
7c4bc551-fd01-2d65-042a-a44704123258	2021-05-23 19:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:36:55.853+03	2021-05-23 19:36:55.86+03	
167251df-ba98-e632-cb6d-a69cb8e4234a	2021-05-23 19:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:37:15.853+03	2021-05-23 19:37:15.864+03	
98b3c3fd-8138-2fa6-8c62-8144cacdb87f	2021-05-23 19:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:37:35.853+03	2021-05-23 19:37:35.861+03	
4a7da121-839d-1aff-0837-d6fdc8628335	2021-05-23 19:37:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:37:56.852+03	2021-05-23 19:37:56.858+03	
561d21f3-4adf-c1f6-2fbf-4181e18a66ec	2021-05-23 19:38:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:38:16.852+03	2021-05-23 19:38:16.859+03	
2679b49a-9551-4bec-4ee1-48a5fc4ff5c9	2021-05-23 19:38:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:38:37.852+03	2021-05-23 19:38:37.859+03	
184e8739-01f2-1620-e7be-db99967c9408	2021-05-23 19:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:38:57.852+03	2021-05-23 19:38:57.859+03	
230b7f6b-9835-f36c-5cc7-4ff3cee5307c	2021-05-23 19:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:39:17.852+03	2021-05-23 19:39:17.858+03	
555d4d7f-9152-8bb8-5882-ee27ae29b29b	2021-05-23 19:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:39:38.852+03	2021-05-23 19:39:38.859+03	
898861c3-2cd2-3aff-6275-0fac7866d7f5	2021-05-23 19:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:39:59.853+03	2021-05-23 19:39:59.86+03	
c93b4654-f533-1c7b-cb68-047ec11bcbef	2021-05-23 19:40:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:40:10.852+03	2021-05-23 19:40:10.858+03	
5ac34924-6894-ad21-b65a-3bcab29e4add	2021-05-23 19:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:40:30.853+03	2021-05-23 19:40:30.859+03	
b5e8b52d-95fb-fc01-c61c-40b3b9f1c7cc	2021-05-23 19:40:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:40:51.854+03	2021-05-23 19:40:51.86+03	
dde9ea33-690a-5214-2605-6ae4d7388b25	2021-05-23 19:20:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:20:06.853+03	2021-05-23 19:20:06.86+03	
da089d97-2a76-4196-2c2a-93f74b53f4e8	2021-05-23 19:20:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:20:27.852+03	2021-05-23 19:20:27.859+03	
5c30d028-e3f0-d60a-cb51-c1f9fcff2e27	2021-05-23 19:20:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:20:47.853+03	2021-05-23 19:20:47.859+03	
dcc328bb-ee81-f7cb-afe4-86149ffa1612	2021-05-23 19:21:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:21:08.852+03	2021-05-23 19:21:08.86+03	
9153830c-8afe-20de-8e05-50b0425851a6	2021-05-23 19:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:21:29.852+03	2021-05-23 19:21:29.859+03	
30fa3662-3853-e8c5-f949-73e7c199949f	2021-05-23 19:21:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:21:49.853+03	2021-05-23 19:21:49.863+03	
1c983d8f-2c98-487a-bc98-b2c08f171a25	2021-05-23 19:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:22:09.853+03	2021-05-23 19:22:09.859+03	
39399260-4075-53cd-9bb8-0aaa8bb18ecc	2021-05-23 19:22:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:22:31.853+03	2021-05-23 19:22:31.859+03	
9e9a2d41-2cf9-4d47-cdbf-6d40d37fce97	2021-05-23 19:22:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:22:52.853+03	2021-05-23 19:22:52.859+03	
10d0b1a0-15da-2092-a52f-c2441c83b91d	2021-05-23 19:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:23:13.852+03	2021-05-23 19:23:13.87+03	
c55055e1-6b29-ed22-8263-e509c9db8365	2021-05-23 19:23:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:23:34.852+03	2021-05-23 19:23:34.859+03	
808c7481-577e-a837-7d23-da353a47a549	2021-05-23 19:23:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:23:54.852+03	2021-05-23 19:23:54.86+03	
2728fcaf-5ed7-5c5e-7157-14c5ae8ca7e7	2021-05-23 19:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:24:15.852+03	2021-05-23 19:24:15.859+03	
063767c6-542d-0aaa-fb62-179f1251b3e5	2021-05-23 19:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:24:35.852+03	2021-05-23 19:24:35.864+03	
31b674c0-fe62-2584-7042-582b33687d74	2021-05-23 19:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:24:55.853+03	2021-05-23 19:24:55.859+03	
9c108ca4-42f8-ad49-5d5d-fd6173c93444	2021-05-23 19:25:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:25:17.852+03	2021-05-23 19:25:17.862+03	
3835373f-ee38-a722-ed73-c0f04f869b6c	2021-05-23 19:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:25:37.852+03	2021-05-23 19:25:37.859+03	
c2e5b626-2f53-98a3-197a-fcbc5a100c3c	2021-05-23 19:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:25:57.853+03	2021-05-23 19:25:57.859+03	
15c9784f-9958-6af5-4c0c-ca8728e1c6bd	2021-05-23 19:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:26:17.853+03	2021-05-23 19:26:17.859+03	
47ef1757-c008-9e4e-35c2-60c76389e940	2021-05-23 19:26:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:26:38.853+03	2021-05-23 19:26:38.859+03	
438904a3-4bac-d679-43c4-72486e600f3e	2021-05-23 19:26:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:26:59.853+03	2021-05-23 19:26:59.858+03	
dda981fb-f66b-13ae-37c3-2d729835873f	2021-05-23 19:27:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:27:21.853+03	2021-05-23 19:27:21.86+03	
d01871eb-b7d9-1b89-4a26-72d8c6402774	2021-05-23 19:27:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:27:41.854+03	2021-05-23 19:27:41.861+03	
b153466a-7c22-e944-245b-dd1344c7eadc	2021-05-23 19:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:28:02.852+03	2021-05-23 19:28:02.858+03	
bfc49497-a27f-070b-e310-101adef1bfe0	2021-05-23 19:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:28:23.852+03	2021-05-23 19:28:23.858+03	
bf10b9f0-73fb-747c-57bd-ff22b7374ab4	2021-05-23 19:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:28:43.853+03	2021-05-23 19:28:43.859+03	
69ddec47-95e6-5be9-bf4b-3794c7a06109	2021-05-23 19:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:29:04.853+03	2021-05-23 19:29:04.86+03	
714caed5-dba2-f401-0114-9d309b9fa1a3	2021-05-23 19:29:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:29:26.852+03	2021-05-23 19:29:26.859+03	
2558c7db-b1a3-25db-2f76-218b0e44f7e1	2021-05-23 19:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:29:47.853+03	2021-05-23 19:29:47.859+03	
4fdfb1b6-c83d-1495-25aa-363f6ae0cf9e	2021-05-23 19:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 19:30:00.852+03	2021-05-23 19:30:00.857+03	ERROR
6fcb33c7-92b8-0bb2-744f-a1f3649fd339	2021-05-23 19:30:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:30:19.853+03	2021-05-23 19:30:19.859+03	
7199bfd7-960e-313c-af5e-0df9074bc6a7	2021-05-23 19:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:30:40.853+03	2021-05-23 19:30:40.859+03	
1e17075c-5f2d-23e7-b1b2-c1016c294dfb	2021-05-23 19:31:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:31:00.853+03	2021-05-23 19:31:00.859+03	
b6f19241-1933-a461-b4a1-f16a24510009	2021-05-23 19:31:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:31:20.853+03	2021-05-23 19:31:20.861+03	
07af6757-a44f-d3a8-302b-77e72e6cf22d	2021-05-23 19:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:31:40.853+03	2021-05-23 19:31:40.862+03	
15c7530a-5f60-189a-9c6e-022bc55c2104	2021-05-23 19:32:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:32:01.853+03	2021-05-23 19:32:01.86+03	
de0f518a-68ff-acd2-d39f-57e6ef562ce5	2021-05-23 19:32:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:32:21.853+03	2021-05-23 19:32:21.86+03	
161521e0-9a7d-d1fe-a5f4-9414c906115a	2021-05-23 19:32:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:32:41.854+03	2021-05-23 19:32:41.868+03	
fbc56a97-1353-45bf-2652-c1ee63ff6ab3	2021-05-23 19:33:01.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:33:01.854+03	2021-05-23 19:33:01.862+03	
1c1a9e18-27db-a157-bb16-53f16682d206	2021-05-23 19:33:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:33:21.854+03	2021-05-23 19:33:21.864+03	
01a46e43-a924-66e9-d620-6992e4d2d5df	2021-05-23 19:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:33:42.852+03	2021-05-23 19:33:42.858+03	
fee0d3fc-de94-515b-3778-9eace0dedcb4	2021-05-23 19:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:34:02.852+03	2021-05-23 19:34:02.872+03	
62bbc684-f0dc-7f24-1072-629140f6b8e6	2021-05-23 19:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:34:22.853+03	2021-05-23 19:34:22.862+03	
d3c756a4-bcbd-75a0-8934-1c799430ee21	2021-05-23 19:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:34:43.852+03	2021-05-23 19:34:43.859+03	
70b2b0e6-393c-8a79-cb76-3e12d3aeacb5	2021-05-23 19:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:35:03.853+03	2021-05-23 19:35:03.865+03	
fc549899-7a23-8629-5608-3daabe5b3ecc	2021-05-23 19:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:35:23.853+03	2021-05-23 19:35:23.859+03	
d49e1067-6987-f1aa-fd7c-9a20a1ac0393	2021-05-23 19:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:35:44.852+03	2021-05-23 19:35:44.858+03	
1ffc0694-d80f-9ce5-dd7c-a0d1ee7b3864	2021-05-23 19:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:36:04.853+03	2021-05-23 19:36:04.861+03	
95b575b0-1479-d03c-4986-72fa6d68715c	2021-05-23 19:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:36:24.853+03	2021-05-23 19:36:24.861+03	
95f2c576-d1b4-883b-fb1f-05c11a7c6389	2021-05-23 19:36:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:36:45.853+03	2021-05-23 19:36:45.867+03	
e5026542-4bd3-325f-bde3-3a02da0b767d	2021-05-23 19:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:37:05.853+03	2021-05-23 19:37:05.862+03	
70116aa4-256a-bf7f-5a86-6878cdb9d96c	2021-05-23 19:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:37:25.853+03	2021-05-23 19:37:25.861+03	
281ebd58-7d19-ea39-1779-b738d3412431	2021-05-23 19:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:37:45.853+03	2021-05-23 19:37:45.873+03	
5f19e225-18cd-c2da-68b4-d0f05f28d8fc	2021-05-23 19:38:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:38:06.852+03	2021-05-23 19:38:06.859+03	
4623f658-a783-5195-5cec-18a200afe138	2021-05-23 19:38:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:38:26.854+03	2021-05-23 19:38:26.86+03	
7a89f055-5cf7-1090-df28-304e798d8b6d	2021-05-23 19:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:38:47.852+03	2021-05-23 19:38:47.859+03	
c612f7a9-0200-88b7-cc35-dcd870e4c189	2021-05-23 19:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:39:07.852+03	2021-05-23 19:39:07.859+03	
ed59da3f-9d6b-77f9-d0a8-8bac89e1408e	2021-05-23 19:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:39:27.853+03	2021-05-23 19:39:27.859+03	
2636d6ac-79de-bc11-da42-aa5f36a7bdf7	2021-05-23 19:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:39:48.853+03	2021-05-23 19:39:48.859+03	
0256b03d-5024-25c4-f39a-d4176786556c	2021-05-23 19:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 19:40:00.853+03	2021-05-23 19:40:00.857+03	ERROR
62954250-27c1-26d3-b3f5-e6c541e390d7	2021-05-23 19:40:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:40:20.853+03	2021-05-23 19:40:20.864+03	
94148854-e5f5-76ac-c36d-53d124be585b	2021-05-23 19:40:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:40:41.852+03	2021-05-23 19:40:41.859+03	
321f9e71-f5b5-49f5-9115-87f2e88d5fba	2021-05-23 19:41:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:41:01.854+03	2021-05-23 19:41:01.86+03	
889c1c62-d8c4-34bf-66a8-2899716428d0	2021-05-23 19:41:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:41:12.853+03	2021-05-23 19:41:12.861+03	
a2f4e928-e660-76b6-ee4d-767145acb0c7	2021-05-23 19:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:41:33.852+03	2021-05-23 19:41:33.859+03	
85ce9851-ec7e-d8ad-a96a-2978d61573c3	2021-05-23 19:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:41:53.853+03	2021-05-23 19:41:53.859+03	
8fe4e2ba-e217-5dcc-9ef1-067b41566f89	2021-05-23 19:42:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:42:14.853+03	2021-05-23 19:42:14.86+03	
09ec0040-d0a0-60c6-e88e-12232413590b	2021-05-23 19:42:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:42:36.852+03	2021-05-23 19:42:36.858+03	
795e1476-21b3-24a5-e2e4-9bdeba846f3e	2021-05-23 19:42:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:42:56.854+03	2021-05-23 19:42:56.86+03	
1bf15bc0-1c85-e0e4-5035-8dab51272836	2021-05-23 19:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:43:18.852+03	2021-05-23 19:43:18.86+03	
4dcef332-5f42-6ea6-00c2-9de1f54de3b7	2021-05-23 19:43:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:43:39.853+03	2021-05-23 19:43:39.861+03	
e499958d-6ed9-d607-8b7f-409f008c845e	2021-05-23 19:44:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:44:00.853+03	2021-05-23 19:44:00.859+03	
5a53300e-8cb6-5ecb-4e64-13f1b092aa30	2021-05-23 19:44:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:44:21.853+03	2021-05-23 19:44:21.862+03	
8da2b0cc-fc87-a4d5-3d9a-f5bb86e6b492	2021-05-23 19:44:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:44:41.853+03	2021-05-23 19:44:41.86+03	
38ad0f4b-4b81-9a0b-1612-a9551ce6aa6f	2021-05-23 19:45:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:45:02.852+03	2021-05-23 19:45:02.859+03	
56751100-ae41-34bc-561e-9d77f17309a2	2021-05-23 19:45:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:45:22.852+03	2021-05-23 19:45:22.862+03	
77f9d081-1d5e-5151-2a1d-032c23a21789	2021-05-23 19:45:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:45:42.853+03	2021-05-23 19:45:42.858+03	
85b5fd6c-d35f-fd74-e79f-eb66d7a6e192	2021-05-23 19:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:46:03.853+03	2021-05-23 19:46:03.863+03	
e912569d-7cc7-2352-2734-404b2c60e600	2021-05-23 19:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:46:24.853+03	2021-05-23 19:46:24.858+03	
53d5960c-f11b-276b-525d-54deaa6c9d5f	2021-05-23 19:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:46:45.853+03	2021-05-23 19:46:45.858+03	
0c074502-a058-7522-87ec-5ed23b929258	2021-05-23 19:47:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:47:06.852+03	2021-05-23 19:47:06.859+03	
6370b8ce-27d5-41f2-9ce0-cecf37a699dc	2021-05-23 19:47:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:47:27.853+03	2021-05-23 19:47:27.859+03	
4e187c1e-d210-37a5-960c-e795fc21adc8	2021-05-23 19:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:47:48.852+03	2021-05-23 19:47:48.859+03	
c0ba1798-202d-bc4b-88c4-56c2be6ddc24	2021-05-23 19:48:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:48:08.853+03	2021-05-23 19:48:08.86+03	
f36199d1-38f6-f011-3da6-172c5e617431	2021-05-23 19:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:48:29.853+03	2021-05-23 19:48:29.859+03	
2d3196e1-75ee-504a-f71f-5a29fa5a2cc2	2021-05-23 19:48:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:48:50.853+03	2021-05-23 19:48:50.859+03	
349cd221-ae42-26cf-7156-96f78ad4a1f8	2021-05-23 19:49:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:49:11.852+03	2021-05-23 19:49:11.859+03	
52e31cc3-b278-a0d7-d3c5-83d7699b0e00	2021-05-23 19:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:49:32.853+03	2021-05-23 19:49:32.86+03	
68a756b8-c6d0-43dc-eb71-774ddaa50621	2021-05-23 19:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:49:54.852+03	2021-05-23 19:49:54.859+03	
642f09ca-5f56-4cbe-b500-14de02699c21	2021-05-23 19:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:50:04.853+03	2021-05-23 19:50:04.862+03	
572b43dd-6eec-4efd-b326-902da4ac1570	2021-05-23 19:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:50:24.853+03	2021-05-23 19:50:24.861+03	
f416e26c-be6e-c5d7-1833-c5f775ebbbe0	2021-05-23 19:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:50:44.853+03	2021-05-23 19:50:44.865+03	
9b3e1763-0aea-e704-cf5b-514a90559ea3	2021-05-23 19:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:51:05.853+03	2021-05-23 19:51:05.864+03	
8638a488-5cf9-703b-186f-4ec192996ed2	2021-05-23 19:51:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:51:25.853+03	2021-05-23 19:51:25.863+03	
bb3691fd-3664-4f4c-ed32-b5654ad4eefa	2021-05-23 19:51:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:51:46.852+03	2021-05-23 19:51:46.859+03	
86b1b03c-6bfb-2706-ff59-caae98ac62ab	2021-05-23 19:52:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:52:07.853+03	2021-05-23 19:52:07.859+03	
78723c76-9edd-9256-9c03-e7a8f0411e53	2021-05-23 19:52:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:52:27.853+03	2021-05-23 19:52:27.86+03	
210795f6-97e2-8a2c-39f4-d95e13ca3c54	2021-05-23 19:52:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:52:47.853+03	2021-05-23 19:52:47.86+03	
4b106355-7963-8f82-b9bf-c3ada335f2a5	2021-05-23 19:53:07.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:53:07.853+03	2021-05-23 19:53:07.87+03	
15cadd2e-617d-bfbf-01f1-f4b47032c32e	2021-05-23 19:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:53:28.853+03	2021-05-23 19:53:28.859+03	
d26708f4-6e10-6fb6-9f1c-574220ddd985	2021-05-23 19:53:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:53:49.853+03	2021-05-23 19:53:49.861+03	
e3a82ff9-8814-b9a1-55c8-f50d379418cc	2021-05-23 19:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:54:09.853+03	2021-05-23 19:54:09.862+03	
dfa7a9b9-f222-229d-77e0-28283c03e954	2021-05-23 19:54:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:54:29.853+03	2021-05-23 19:54:29.865+03	
d0f684f6-1e79-81ad-df4a-07ef537aae5c	2021-05-23 19:54:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:54:49.853+03	2021-05-23 19:54:49.861+03	
0b11e91c-8ed6-88ea-d511-e4a195bdd9fa	2021-05-23 19:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:55:09.853+03	2021-05-23 19:55:09.867+03	
42e7d7e7-2301-a457-0459-a58c8c187140	2021-05-23 19:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:55:30.852+03	2021-05-23 19:55:30.859+03	
5db40c74-7342-4817-7cdf-1367c7e681e4	2021-05-23 19:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:55:50.853+03	2021-05-23 19:55:50.86+03	
51d67f7f-0387-1be2-9223-5f7cc432228e	2021-05-23 19:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:56:11.853+03	2021-05-23 19:56:11.86+03	
06ef702c-bd07-2b06-1752-f55044f87c55	2021-05-23 19:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:56:32.853+03	2021-05-23 19:56:32.859+03	
3f205bd0-99da-a847-9d04-8f840cc6db24	2021-05-23 19:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:56:53.852+03	2021-05-23 19:56:53.859+03	
afcb40e3-5e4a-5bbf-b8d0-a18c21ca6958	2021-05-23 19:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:57:13.853+03	2021-05-23 19:57:13.859+03	
9311fe7c-c01c-3a33-939a-608067ec96ec	2021-05-23 19:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:57:34.852+03	2021-05-23 19:57:34.86+03	
d27f0968-7c2a-a4ce-be8e-d3b0532f6716	2021-05-23 19:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:57:54.853+03	2021-05-23 19:57:54.862+03	
9595bfbc-a662-c195-c1fe-116f2d687146	2021-05-23 19:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:58:14.853+03	2021-05-23 19:58:14.86+03	
cfe9b96e-e0e6-b335-6352-f20eb26ef8b7	2021-05-23 19:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:58:34.853+03	2021-05-23 19:58:34.859+03	
85d7c348-b7f7-a6ac-2acd-9abae172b144	2021-05-23 19:58:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:58:55.853+03	2021-05-23 19:58:55.86+03	
84d05331-1c9e-4e8e-bc8c-b1818eabe391	2021-05-23 19:59:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:59:16.852+03	2021-05-23 19:59:16.86+03	
bfccf869-829d-65ad-30b4-5bc2548b0f75	2021-05-23 19:59:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:59:37.852+03	2021-05-23 19:59:37.86+03	
8c06b86a-6df1-6de8-f4b0-57a83926dba6	2021-05-23 19:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:59:58.852+03	2021-05-23 19:59:58.859+03	
0806a7e5-e1f6-a02e-6bff-5fbfe359e3ee	2021-05-23 20:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:00:08.853+03	2021-05-23 20:00:08.859+03	
460b3c89-7d48-69bc-3863-d098695397ba	2021-05-23 20:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:00:29.853+03	2021-05-23 20:00:29.859+03	
a1aee0f2-8f27-51b6-f53d-7fd6f3318bde	2021-05-23 20:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:00:50.853+03	2021-05-23 20:00:50.859+03	
47fd31b4-369a-d34f-f323-43b59a78527f	2021-05-23 20:01:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:01:11.852+03	2021-05-23 20:01:11.858+03	
dcf8f1b8-5ee0-ec8d-f7ac-fbb6783a0ad7	2021-05-23 20:01:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:01:31.853+03	2021-05-23 20:01:31.867+03	
928367c9-b976-1d0b-150a-d17407d73b64	2021-05-23 20:01:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:01:52.852+03	2021-05-23 20:01:52.858+03	
3121a236-25d9-ee22-6552-e88b9040b477	2021-05-23 20:02:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:02:12.853+03	2021-05-23 20:02:12.859+03	
4fc5ebe5-14ae-d324-c68c-07accc1888b3	2021-05-23 19:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:41:23.852+03	2021-05-23 19:41:23.863+03	
94c246a0-ed42-4a7a-79c6-d746ab95b589	2021-05-23 19:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:41:43.852+03	2021-05-23 19:41:43.859+03	
4e7da3ce-3026-4566-a584-43139ac6933f	2021-05-23 19:42:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:42:04.853+03	2021-05-23 19:42:04.86+03	
1998e334-ebd0-f9b9-b529-d603b6c9f837	2021-05-23 19:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:42:25.853+03	2021-05-23 19:42:25.86+03	
22ce4f7c-12f6-e7f7-a9b9-b7f532daa258	2021-05-23 19:42:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:42:46.852+03	2021-05-23 19:42:46.861+03	
68d4fed4-edd8-9335-ad4a-8a97011aa177	2021-05-23 19:43:07.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:43:07.853+03	2021-05-23 19:43:07.867+03	
583ee8c0-defe-3a3f-66d7-5b55dd2a8204	2021-05-23 19:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:43:28.853+03	2021-05-23 19:43:28.859+03	
db748221-71fb-c718-7458-f0cb227bed6f	2021-05-23 19:43:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:43:50.852+03	2021-05-23 19:43:50.862+03	
ea20b186-6333-4195-81a2-831301509be8	2021-05-23 19:44:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:44:10.853+03	2021-05-23 19:44:10.86+03	
fcfff11e-f149-cb46-96fe-1b2d684d822b	2021-05-23 19:44:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:44:31.853+03	2021-05-23 19:44:31.861+03	
251707df-66b6-19de-fd4c-a587c73d763b	2021-05-23 19:44:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:44:52.852+03	2021-05-23 19:44:52.858+03	
75e8a540-fe33-dbee-636d-4850b94d18fd	2021-05-23 19:45:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:45:12.852+03	2021-05-23 19:45:13.123+03	
054746fb-4182-e675-9afe-d039717fa300	2021-05-23 19:45:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:45:32.852+03	2021-05-23 19:45:32.86+03	
5972d52f-1ebe-85ef-3195-1c312d55bcaa	2021-05-23 19:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:45:53.852+03	2021-05-23 19:45:53.859+03	
ea15a1a3-74cf-f167-4182-e31e17b20d4b	2021-05-23 19:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:46:14.853+03	2021-05-23 19:46:14.858+03	
8e732da3-f351-21ed-f199-d19052f128ed	2021-05-23 19:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:46:35.853+03	2021-05-23 19:46:35.86+03	
f8ab529b-a0fe-9329-b187-99e9fd868c5d	2021-05-23 19:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:46:55.853+03	2021-05-23 19:46:55.859+03	
66f4a537-d78b-54b8-c02a-97b4c0358524	2021-05-23 19:47:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:47:16.853+03	2021-05-23 19:47:16.859+03	
8e5f50b4-9ddb-fbf3-427c-a87d979ec452	2021-05-23 19:47:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:47:37.853+03	2021-05-23 19:47:37.859+03	
b565ceed-6442-78e1-2f8e-91b35f5096a7	2021-05-23 19:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:47:58.853+03	2021-05-23 19:47:58.86+03	
e04edf82-4aa3-7011-77f3-762417b8cfa1	2021-05-23 19:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:48:19.853+03	2021-05-23 19:48:19.86+03	
a16741be-5477-e817-1ce7-f6fe5874c8a7	2021-05-23 19:48:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:48:39.853+03	2021-05-23 19:48:39.859+03	
dd45e367-75f5-5999-c62f-fe71c5d2ea2e	2021-05-23 19:49:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:49:00.853+03	2021-05-23 19:49:00.859+03	
bb18103d-a9a1-5fc7-e46b-e9fb7496a7de	2021-05-23 19:49:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:49:21.853+03	2021-05-23 19:49:21.861+03	
e04649c2-e962-1016-efed-cd14892663e0	2021-05-23 19:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:49:43.853+03	2021-05-23 19:49:43.859+03	
e58b5356-867d-55cb-e45e-6e56685f4faa	2021-05-23 19:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 19:50:00.853+03	2021-05-23 19:50:00.859+03	ERROR
c5af094f-513d-8d06-067c-df96e8785530	2021-05-23 19:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:50:14.853+03	2021-05-23 19:50:14.86+03	
ae7f48c1-e02c-520b-6e84-6143d9c77c0b	2021-05-23 19:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:50:34.853+03	2021-05-23 19:50:34.868+03	
32369ba6-bd2c-302c-af70-fddd3ba62878	2021-05-23 19:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:50:55.853+03	2021-05-23 19:50:55.862+03	
a62e2efb-b4d1-eb58-bad7-e4910bdadc0c	2021-05-23 19:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:51:15.853+03	2021-05-23 19:51:15.861+03	
15a23829-bdc0-8da7-1c31-51b6fff1e5f7	2021-05-23 19:51:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:51:36.852+03	2021-05-23 19:51:36.858+03	
e76134b7-2898-e738-bea0-7c2e9b472bb5	2021-05-23 19:51:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:51:56.853+03	2021-05-23 19:51:56.859+03	
a8e2fec5-a3b7-7c2d-31f1-a5c8c09b614b	2021-05-23 19:52:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:52:17.853+03	2021-05-23 19:52:17.859+03	
f2184466-4776-91da-15d6-afe1d89b0c95	2021-05-23 19:52:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:52:37.853+03	2021-05-23 19:52:37.86+03	
cc2886ed-6f4e-4e8f-a835-7c6cfa32bb79	2021-05-23 19:52:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:52:57.853+03	2021-05-23 19:52:57.86+03	
341d195f-e01a-0741-3003-26e99fafb0be	2021-05-23 19:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:53:17.853+03	2021-05-23 19:53:17.859+03	
211e4376-6545-7e01-4777-ca766f2e0101	2021-05-23 19:53:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:53:39.853+03	2021-05-23 19:53:39.863+03	
69011eef-c288-de4c-b911-99e569310d46	2021-05-23 19:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:53:59.853+03	2021-05-23 19:53:59.88+03	
2bffff08-8ac9-1221-596a-cbfe33820598	2021-05-23 19:54:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:54:19.853+03	2021-05-23 19:54:19.861+03	
44c008db-7ea2-c273-ecd4-ff95c80b3ce9	2021-05-23 19:54:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:54:39.853+03	2021-05-23 19:54:39.86+03	
1dff9039-cfa5-c737-fd12-492ffe43bd9a	2021-05-23 19:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:54:59.853+03	2021-05-23 19:54:59.875+03	
03b5ed72-134e-c4f6-9a4f-dabea190f5da	2021-05-23 19:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:55:20.852+03	2021-05-23 19:55:20.874+03	
5a7ce4b5-5a78-3d69-41ed-c8ad6d3128ce	2021-05-23 19:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:55:40.852+03	2021-05-23 19:55:40.859+03	
b6c71ea8-b6c6-fad9-2380-8f6674b424b1	2021-05-23 19:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:56:00.853+03	2021-05-23 19:56:00.859+03	
b545a57c-e144-9ba8-272b-b93f9a0c8382	2021-05-23 19:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:56:22.853+03	2021-05-23 19:56:22.859+03	
2781f9cd-ed2e-232b-e891-9bfeacd9e8ce	2021-05-23 19:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:56:42.853+03	2021-05-23 19:56:42.86+03	
a0d072e6-7dcc-ba92-a0e0-508e3858e8a5	2021-05-23 19:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:57:03.852+03	2021-05-23 19:57:03.858+03	
31e48e0f-e4ef-775b-2ed0-f06417f6a2f9	2021-05-23 19:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:57:24.852+03	2021-05-23 19:57:24.859+03	
72104f0f-079e-96b4-b20f-c9f284e4e1ec	2021-05-23 19:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:57:44.853+03	2021-05-23 19:57:44.861+03	
e2508812-102b-d14f-d0b2-dec6c4854cf2	2021-05-23 19:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:58:04.853+03	2021-05-23 19:58:04.864+03	
a505ab82-b245-f156-b004-521913ecbb17	2021-05-23 19:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:58:24.853+03	2021-05-23 19:58:24.859+03	
336b36b9-f83e-62f4-f941-1681776f655b	2021-05-23 19:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:58:45.853+03	2021-05-23 19:58:45.861+03	
23774525-a19b-755f-a506-288b7cacb01d	2021-05-23 19:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:59:05.853+03	2021-05-23 19:59:05.861+03	
7f744a77-3e9b-73a8-6226-d2117c6122db	2021-05-23 19:59:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:59:26.853+03	2021-05-23 19:59:26.859+03	
54089894-5f8b-aff8-56f9-0aac79a2c4b9	2021-05-23 19:59:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 19:59:47.853+03	2021-05-23 19:59:47.86+03	
3c43caf6-e918-a9f0-5e5e-844228af099c	2021-05-23 20:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 20:00:00.853+03	2021-05-23 20:00:00.86+03	ERROR
2e55047e-bb35-8e52-79a1-13d721d98eab	2021-05-23 20:00:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:00:18.853+03	2021-05-23 20:00:18.86+03	
8c731fd0-c385-05b2-cea3-24310a85becf	2021-05-23 20:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:00:39.853+03	2021-05-23 20:00:39.86+03	
d7fa7b16-5170-1b56-531a-172cc2b3e079	2021-05-23 20:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:01:00.853+03	2021-05-23 20:01:00.859+03	
2848ed51-851c-12dc-e09c-68705dfa798e	2021-05-23 20:01:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:01:21.852+03	2021-05-23 20:01:21.859+03	
ab75567d-6855-2e66-632d-425b1cd248bb	2021-05-23 20:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:01:42.852+03	2021-05-23 20:01:42.859+03	
6b43b094-21d6-2b1b-035b-344678d5368a	2021-05-23 20:02:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:02:02.853+03	2021-05-23 20:02:02.859+03	
94fb7ea7-f664-fc60-5887-4fdf8c720e51	2021-05-23 20:02:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:02:22.853+03	2021-05-23 20:02:22.859+03	
0116bf92-4f22-23fb-4f36-25e4726e9805	2021-05-23 20:02:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:02:33.852+03	2021-05-23 20:02:33.858+03	
ce146fd3-3b94-8aed-f125-220b08a7c99e	2021-05-23 20:02:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:02:53.853+03	2021-05-23 20:02:53.859+03	
4ff1a1a9-e7b1-5b6a-00a0-64ac0c3c7e0a	2021-05-23 20:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:03:14.852+03	2021-05-23 20:03:14.859+03	
6f757e9a-2df5-2c8a-d70b-627e37640966	2021-05-23 20:03:34.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:03:34.853+03	2021-05-23 20:03:34.866+03	
1c2b67b0-de5b-5daf-d603-6542a1af8aa9	2021-05-23 20:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:03:55.853+03	2021-05-23 20:03:55.859+03	
965a1a29-d629-b211-9957-fde15987d9a0	2021-05-23 20:04:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:04:15.853+03	2021-05-23 20:04:15.86+03	
c4620bed-558e-bd89-7674-8bce052cd343	2021-05-23 20:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:04:35.853+03	2021-05-23 20:04:35.859+03	
cb3d5dd9-0b62-4966-da5f-8095d4dfa22b	2021-05-23 20:04:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:04:56.852+03	2021-05-23 20:04:56.86+03	
de4fa11f-e013-a461-f22c-cd230ef02849	2021-05-23 20:05:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:05:16.852+03	2021-05-23 20:05:16.859+03	
e43c2fb9-d15a-6c63-5c93-f0f36760e70f	2021-05-23 20:05:36.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:05:36.853+03	2021-05-23 20:05:36.866+03	
24b2b525-91c7-b51b-e4d4-bfb663b3f096	2021-05-23 20:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:05:57.853+03	2021-05-23 20:05:57.859+03	
d59c9eb8-c6a3-5c81-8c1c-b0471f7dbc4d	2021-05-23 20:06:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:06:18.852+03	2021-05-23 20:06:18.858+03	
af24bf33-847b-69ca-5621-4478d9b29eca	2021-05-23 20:06:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:06:38.853+03	2021-05-23 20:06:38.859+03	
20724f0b-8f31-5032-6a4f-dd7cb8423283	2021-05-23 20:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:06:58.853+03	2021-05-23 20:06:58.86+03	
f12d88de-1daf-5049-16f4-ee937a9ffb68	2021-05-23 20:07:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:07:19.853+03	2021-05-23 20:07:19.859+03	
bb09c3e1-448a-8fa6-3ae2-195f62002e79	2021-05-23 20:07:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:07:40.852+03	2021-05-23 20:07:40.858+03	
40f3a66b-028f-bbcb-b774-454433e9afa6	2021-05-23 20:08:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:08:00.853+03	2021-05-23 20:08:00.859+03	
cc5f7ae8-8b6c-7dcc-594f-f95c2b43b8ba	2021-05-23 20:08:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:08:21.853+03	2021-05-23 20:08:21.859+03	
ee206da8-a4d2-b66a-da06-e3651f768809	2021-05-23 20:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:08:42.852+03	2021-05-23 20:08:42.859+03	
dab98405-4c8c-6f08-6770-4e969b76e874	2021-05-23 20:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:09:02.852+03	2021-05-23 20:09:02.861+03	
13cbf888-0810-d14b-cb4c-49618a8f4ec7	2021-05-23 20:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:09:22.853+03	2021-05-23 20:09:22.86+03	
da332bcc-2e37-97ad-38bd-c45f3a077cc4	2021-05-23 20:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:09:42.853+03	2021-05-23 20:09:42.859+03	
eba9328b-b523-629e-6a7f-6cec02497bd3	2021-05-23 20:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 20:10:00.853+03	2021-05-23 20:10:00.858+03	ERROR
06521355-8225-0650-0a54-18cb739a85ee	2021-05-23 20:10:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:10:13.852+03	2021-05-23 20:10:13.858+03	
1d54231d-3a74-7470-3912-2c2065e3b849	2021-05-23 20:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:10:33.853+03	2021-05-23 20:10:33.859+03	
f68dddbb-c5d5-3c5a-6e00-e4edbe7c6b5f	2021-05-23 20:10:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:10:54.853+03	2021-05-23 20:10:54.859+03	
99c4c675-b2a8-7011-2311-5c362da3dd78	2021-05-23 20:11:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:11:16.852+03	2021-05-23 20:11:16.865+03	
832e70c2-aefd-a736-51ca-36417b443cc6	2021-05-23 20:11:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:11:37.852+03	2021-05-23 20:11:37.858+03	
5dd83fa4-3794-e883-c1db-1644d5b12db6	2021-05-23 20:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:11:58.852+03	2021-05-23 20:11:58.859+03	
ba966ff3-9552-c51e-ec92-c56966c9e389	2021-05-23 20:12:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:12:18.852+03	2021-05-23 20:12:18.859+03	
af70e375-c1c6-d13c-3f98-852694b21a76	2021-05-23 20:12:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:12:38.852+03	2021-05-23 20:12:38.863+03	
5af2f5d6-9ff4-2fc2-793c-5168a5581015	2021-05-23 20:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:12:59.853+03	2021-05-23 20:12:59.861+03	
0795602d-ccf1-4502-9384-5cfba7faab05	2021-05-23 20:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:13:20.852+03	2021-05-23 20:13:20.859+03	
7f722f10-db45-f02a-627b-d5a193fa93eb	2021-05-23 20:13:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:13:40.852+03	2021-05-23 20:13:40.859+03	
682c9175-f5dc-ed64-9c4c-0e074ec337c7	2021-05-23 20:14:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:14:00.853+03	2021-05-23 20:14:00.859+03	
a366bf29-c373-6a3c-a65f-e53fde20545e	2021-05-23 20:14:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:14:21.852+03	2021-05-23 20:14:21.859+03	
2d994428-d804-2326-d7f9-e55f84d7c965	2021-05-23 20:14:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:14:41.852+03	2021-05-23 20:14:41.859+03	
9433bfa5-b6ef-942a-701a-9bfcc4bcf14f	2021-05-23 20:15:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:15:01.852+03	2021-05-23 20:15:01.859+03	
ad20ec1e-1a92-f624-ed57-3998fe08c0cd	2021-05-23 20:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:15:22.852+03	2021-05-23 20:15:22.86+03	
4142aacf-8106-93b3-d02e-b15e9ad726e6	2021-05-23 20:15:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:15:43.852+03	2021-05-23 20:15:43.858+03	
986bb326-ce67-cd91-9b24-dcf89f0fb200	2021-05-23 20:16:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:16:03.852+03	2021-05-23 20:16:03.858+03	
be3eb65e-2099-b1ef-4951-60a9f8b92a5a	2021-05-23 20:16:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:16:24.852+03	2021-05-23 20:16:24.859+03	
ad983de6-8cfb-9ee6-0203-e2cd382aad30	2021-05-23 20:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:16:45.852+03	2021-05-23 20:16:45.859+03	
3eb7afcf-fddd-7dc7-8cc9-e5cc8a186569	2021-05-23 20:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:17:05.853+03	2021-05-23 20:17:05.859+03	
075bcbcc-8ba4-50c9-87f4-f7f06f59b0df	2021-05-23 20:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:17:25.853+03	2021-05-23 20:17:25.859+03	
ad8c1fbd-e2a4-a1b5-6b37-52e4d1d52737	2021-05-23 20:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:17:45.853+03	2021-05-23 20:17:45.859+03	
bb041620-72a2-aeb9-8b06-22630426b0a0	2021-05-23 20:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:18:05.853+03	2021-05-23 20:18:05.859+03	
814cc0bb-fa0d-8495-f8f0-35d710839daa	2021-05-23 20:18:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:18:26.852+03	2021-05-23 20:18:26.863+03	
0545295b-3428-30ba-4911-782bf85787c2	2021-05-23 20:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:18:47.853+03	2021-05-23 20:18:47.861+03	
5750529a-02a7-86dc-9079-4cee7c462495	2021-05-23 20:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:19:08.853+03	2021-05-23 20:19:08.945+03	
0b3d777b-c50d-4c73-41f4-f7383297adb8	2021-05-23 20:19:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:19:30.852+03	2021-05-23 20:19:30.86+03	
2f2b497f-d5a9-ac2b-c188-f2269e9fc839	2021-05-23 20:19:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:19:50.853+03	2021-05-23 20:19:50.859+03	
ed4573d6-a16a-bc1b-67eb-e2c85b979a92	2021-05-23 20:20:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:20:11.853+03	2021-05-23 20:20:11.861+03	
1a2b2f3f-21a1-47b9-8b0d-62699a1c23c7	2021-05-23 20:20:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:20:31.853+03	2021-05-23 20:20:31.861+03	
4688e016-bda3-6a0d-0dd9-55e28518e814	2021-05-23 20:20:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:20:52.853+03	2021-05-23 20:20:52.861+03	
dd962a77-eafd-a353-731a-90b715ea1f67	2021-05-23 20:21:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:21:12.853+03	2021-05-23 20:21:12.859+03	
45647cfa-a654-a9a6-70cb-94a5e1a74d07	2021-05-23 20:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:21:33.853+03	2021-05-23 20:21:33.86+03	
c8238fca-5814-e837-792a-5c05df00df44	2021-05-23 20:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:21:53.853+03	2021-05-23 20:21:53.86+03	
6cbc0043-e9ba-5be1-6438-5d175253ce1c	2021-05-23 20:22:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:22:14.854+03	2021-05-23 20:22:15.164+03	
49c7ae36-fe57-bfc5-0357-ca460cdb8d37	2021-05-23 20:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:22:35.853+03	2021-05-23 20:22:35.86+03	
32423ffb-e580-6fac-5818-d499493587c2	2021-05-23 20:22:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:22:56.853+03	2021-05-23 20:22:56.861+03	
37868432-a301-22b5-58c1-6f4979b0e8c3	2021-05-23 20:23:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:23:16.853+03	2021-05-23 20:23:16.86+03	
9d56f560-206d-e8ca-d766-e53d5e94d6bd	2021-05-23 20:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:23:38.853+03	2021-05-23 20:23:38.859+03	
e3e8a549-1b00-3406-d282-903a6e429d29	2021-05-23 20:02:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:02:43.852+03	2021-05-23 20:02:43.859+03	
11af7a14-09b2-ca66-3aa2-8598714156ea	2021-05-23 20:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:03:04.852+03	2021-05-23 20:03:04.859+03	
989efbfd-9b5b-609c-04e2-b73858647dfa	2021-05-23 20:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:03:24.852+03	2021-05-23 20:03:24.859+03	
24007ebb-385b-6de8-9f05-982d9915dbc1	2021-05-23 20:03:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:03:45.852+03	2021-05-23 20:03:45.859+03	
97b33480-84c5-e8ef-a2a6-c3253de6c6c8	2021-05-23 20:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:04:05.853+03	2021-05-23 20:04:05.859+03	
49faf9e6-3b35-083e-a904-24a7c66996b5	2021-05-23 20:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:04:25.853+03	2021-05-23 20:04:25.86+03	
e7d30716-ab3b-f73f-8b7e-642d620f614b	2021-05-23 20:04:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:04:46.852+03	2021-05-23 20:04:46.859+03	
54fdf3de-e345-83bb-bc1d-4cda22a8ffde	2021-05-23 20:05:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:05:06.852+03	2021-05-23 20:05:06.859+03	
3c5964f9-9607-b54e-2946-aa0446893647	2021-05-23 20:05:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:05:26.852+03	2021-05-23 20:05:26.861+03	
f534fbb3-6036-b490-f2a5-bed2ceb06dd5	2021-05-23 20:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:05:47.852+03	2021-05-23 20:05:47.858+03	
b1c2baab-699e-e6bf-e254-11f72bf21a31	2021-05-23 20:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:06:07.853+03	2021-05-23 20:06:07.859+03	
b31f3144-174d-a3ed-3556-ccc881cbeec6	2021-05-23 20:06:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:06:28.852+03	2021-05-23 20:06:28.859+03	
c9adcf1b-0ea0-e042-6a16-f78185c7a464	2021-05-23 20:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:06:48.853+03	2021-05-23 20:06:48.859+03	
ef1f5ea7-c0bc-2615-2295-e812aa51a14d	2021-05-23 20:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:07:09.853+03	2021-05-23 20:07:09.859+03	
25ab013e-f4d0-f24e-78e6-72893a825e05	2021-05-23 20:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:07:30.852+03	2021-05-23 20:07:30.858+03	
0dfbe482-6836-1884-a606-4a66517a55e3	2021-05-23 20:07:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:07:50.852+03	2021-05-23 20:07:50.86+03	
085fccfb-1f19-97e9-3023-d9f48737cf4b	2021-05-23 20:08:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:08:10.853+03	2021-05-23 20:08:10.859+03	
c22058cf-df3b-233b-ab8e-8ca410146d00	2021-05-23 20:08:31.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:08:31.854+03	2021-05-23 20:08:31.861+03	
6471af30-e2ac-9e17-0ce7-bcf5e4e15663	2021-05-23 20:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:08:52.852+03	2021-05-23 20:08:52.859+03	
91a6b046-1996-f79b-30c9-655ea6ee1715	2021-05-23 20:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:09:12.853+03	2021-05-23 20:09:12.859+03	
8b46bf2e-9db1-1b03-6982-4070f94ec199	2021-05-23 20:09:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:09:32.853+03	2021-05-23 20:09:32.86+03	
56918183-1595-5bc9-983c-515e64a9d8d2	2021-05-23 20:09:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:09:53.852+03	2021-05-23 20:09:53.858+03	
8d9fe6d5-8549-c446-071c-c5d2bf4e229f	2021-05-23 20:10:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:10:03.852+03	2021-05-23 20:10:03.858+03	
c065b441-e5b2-ae26-3e11-6d5a4acc9064	2021-05-23 20:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:10:23.853+03	2021-05-23 20:10:23.859+03	
6018797f-9927-900a-8ec8-67c2d0be112c	2021-05-23 20:10:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:10:44.853+03	2021-05-23 20:10:44.859+03	
5e95f592-0694-55bf-1500-f7e89f9771cf	2021-05-23 20:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:11:05.853+03	2021-05-23 20:11:05.859+03	
83ff1ffc-7713-aaad-71ed-61b391f45c5b	2021-05-23 20:11:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:11:26.853+03	2021-05-23 20:11:26.859+03	
a5e3cdb4-189d-7bdf-e06e-bdbe13937a8d	2021-05-23 20:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:11:47.853+03	2021-05-23 20:11:47.859+03	
005d7f5c-19e2-0069-b72a-4b8620e10f5d	2021-05-23 20:12:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:12:08.852+03	2021-05-23 20:12:08.858+03	
00e4c5d6-5c6d-2331-c80f-63b6cbe524a2	2021-05-23 20:12:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:12:28.852+03	2021-05-23 20:12:28.86+03	
77a12c0d-6bf1-ef62-b645-cd57944bdd46	2021-05-23 20:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:12:48.853+03	2021-05-23 20:12:48.858+03	
2a24f7e8-8103-ac13-aa7b-84b9886f540f	2021-05-23 20:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:13:09.853+03	2021-05-23 20:13:09.873+03	
86343f45-15da-8588-3e46-d8b689a5243d	2021-05-23 20:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:13:30.852+03	2021-05-23 20:13:30.859+03	
4e5e4437-6614-d416-0b75-228ce43d5a90	2021-05-23 20:13:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:13:50.853+03	2021-05-23 20:13:50.859+03	
8dfeb9d3-f1fe-8c4a-eb6f-468131b2c561	2021-05-23 20:14:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:14:11.852+03	2021-05-23 20:14:11.862+03	
9a09208b-4ce6-dacc-37c5-5320a73014e2	2021-05-23 20:14:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:14:31.852+03	2021-05-23 20:14:31.859+03	
6443d4f3-060f-2378-985d-9f3d52e4ca5c	2021-05-23 20:14:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:14:51.852+03	2021-05-23 20:14:51.859+03	
80282b44-c232-bfdf-3556-b10522c9a1e0	2021-05-23 20:15:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:15:11.854+03	2021-05-23 20:15:11.861+03	
c3cb9f9d-1f6f-f96c-ddd2-3ce4dd39b577	2021-05-23 20:15:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:15:32.853+03	2021-05-23 20:15:32.862+03	
fa4e223b-2102-4fda-e262-d6f6851f0c43	2021-05-23 20:15:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:15:53.852+03	2021-05-23 20:15:53.859+03	
3b5820ae-4499-3539-4ba8-5e94d6b204cf	2021-05-23 20:16:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:16:13.853+03	2021-05-23 20:16:13.86+03	
b2d3e4c2-a76a-43e8-3f7f-9e2532f58609	2021-05-23 20:16:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:16:34.853+03	2021-05-23 20:16:34.873+03	
daf29520-c67e-c5c7-2d5c-88ba35011b52	2021-05-23 20:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:16:55.852+03	2021-05-23 20:16:55.858+03	
9529da90-00a3-1cd4-2b0a-5e5e258c8263	2021-05-23 20:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:17:15.853+03	2021-05-23 20:17:15.863+03	
d6f1f386-4c94-df39-15a2-4d2e12c28d3e	2021-05-23 20:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:17:35.853+03	2021-05-23 20:17:35.859+03	
ff040feb-5d00-1735-0d23-0987359ff08e	2021-05-23 20:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:17:55.853+03	2021-05-23 20:17:55.859+03	
2ce32bc0-dcc8-d6f3-7ff8-fbf6d0e9968b	2021-05-23 20:18:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:18:16.852+03	2021-05-23 20:18:16.946+03	
10336f09-4f10-f597-fbf2-5313de0a9ea9	2021-05-23 20:18:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:18:36.853+03	2021-05-23 20:18:36.861+03	
270410c7-2c60-9bc5-981e-58d338497009	2021-05-23 20:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:18:58.853+03	2021-05-23 20:18:58.86+03	
8bd89298-a6d5-cea2-24d6-8b9a08e5e07e	2021-05-23 20:19:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:19:19.853+03	2021-05-23 20:19:19.859+03	
b6487346-ebab-f921-dce6-5380856c524b	2021-05-23 20:19:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:19:40.853+03	2021-05-23 20:19:40.861+03	
4905f687-09c9-c68a-97d0-33f496c65cb5	2021-05-23 20:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 20:20:00.852+03	2021-05-23 20:20:00.861+03	ERROR
e2487a8c-fd2a-5c59-1a6a-458ea8f88b8f	2021-05-23 20:20:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:20:00.853+03	2021-05-23 20:20:00.876+03	
37ffd345-3f4a-808d-d680-adf35457ebbb	2021-05-23 20:20:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:20:21.853+03	2021-05-23 20:20:21.86+03	
4c5aa586-98aa-c419-1087-d117330fa409	2021-05-23 20:20:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:20:42.852+03	2021-05-23 20:20:42.859+03	
f6c93dab-8f71-5b44-ebb2-fc987c3a456b	2021-05-23 20:21:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:21:02.853+03	2021-05-23 20:21:02.865+03	
ea4df9ba-73d3-03d0-5b8c-85ab0b90cbde	2021-05-23 20:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:21:22.853+03	2021-05-23 20:21:22.862+03	
69e42b4a-b4a4-3a83-69b1-a584614760aa	2021-05-23 20:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:21:43.853+03	2021-05-23 20:21:43.961+03	
70378f9d-7cf3-bf5d-1f37-856d505ac417	2021-05-23 20:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:22:04.853+03	2021-05-23 20:22:04.859+03	
340e4918-299b-8c46-269a-b0735d2f0dbf	2021-05-23 20:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:22:25.853+03	2021-05-23 20:22:25.863+03	
540ed318-f8af-9843-8c41-e99f707d79e7	2021-05-23 20:22:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:22:45.853+03	2021-05-23 20:22:45.862+03	
699c9ab0-1043-c326-5d50-965d0f0bd352	2021-05-23 20:23:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:23:06.853+03	2021-05-23 20:23:06.859+03	
0398d275-6282-4b67-d119-f72cb94f7d86	2021-05-23 20:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:23:27.853+03	2021-05-23 20:23:27.862+03	
66b4fd9b-7c86-4344-c8d8-f9aa4abf82f3	2021-05-23 20:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:23:48.853+03	2021-05-23 20:23:48.859+03	
1e7ff941-3909-9897-755b-61976b0cf5b1	2021-05-23 20:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:24:09.853+03	2021-05-23 20:24:09.86+03	
9c61df31-5b21-5ede-f4c5-ae15dcac8452	2021-05-23 20:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:24:29.853+03	2021-05-23 20:24:29.868+03	
0cdbc6f8-ac19-bec1-6c61-51b0501c6531	2021-05-23 20:24:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:24:49.853+03	2021-05-23 20:24:49.861+03	
6544d538-217e-ab5f-1cd9-290ad15990ff	2021-05-23 20:25:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:25:09.853+03	2021-05-23 20:25:09.87+03	
0d3c9489-f793-1902-608d-87611845b86f	2021-05-23 20:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:25:30.852+03	2021-05-23 20:25:30.859+03	
bdb3c067-c2d6-6561-ef93-7791db4c41c0	2021-05-23 20:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:25:50.853+03	2021-05-23 20:25:50.861+03	
633a9a96-cafa-00dc-3c34-89911dcbe81a	2021-05-23 20:26:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:26:11.854+03	2021-05-23 20:26:11.862+03	
1bb0a44e-83a3-5e7c-afc4-6803e453569f	2021-05-23 20:26:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:26:32.853+03	2021-05-23 20:26:32.86+03	
75f35dcd-70e4-bb9f-002e-dece3a0e4cb0	2021-05-23 20:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:26:52.853+03	2021-05-23 20:26:52.86+03	
6945ee86-f6f0-5f8b-792e-f65390363816	2021-05-23 20:27:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:27:12.853+03	2021-05-23 20:27:12.862+03	
f4bf1a05-9404-86db-b2c6-aec627e70adc	2021-05-23 20:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:27:33.852+03	2021-05-23 20:27:33.86+03	
17c06040-866e-021e-1c2a-fad7818b975a	2021-05-23 20:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:27:53.852+03	2021-05-23 20:27:53.859+03	
cdc20f9b-81c4-50fa-ae78-b350adbc8bed	2021-05-23 20:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:28:13.852+03	2021-05-23 20:28:13.86+03	
578b7630-f6a3-6889-05a9-2ac5db4664a8	2021-05-23 20:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:28:34.852+03	2021-05-23 20:28:34.861+03	
fb7dcaa0-4b9a-7410-aeb1-cf1c630cdab6	2021-05-23 20:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:28:54.852+03	2021-05-23 20:28:54.86+03	
bc7e4a01-7713-4169-7904-5f6be11b8206	2021-05-23 20:29:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:29:14.852+03	2021-05-23 20:29:14.858+03	
dbbb2f25-4483-77ad-8b4f-587eb7bdf973	2021-05-23 20:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:29:35.852+03	2021-05-23 20:29:35.858+03	
0b2be0d2-a0df-44ee-3de6-2da05b6f02d2	2021-05-23 20:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:29:55.853+03	2021-05-23 20:29:55.86+03	
315af2dc-28da-d020-1c6e-108c202fe49c	2021-05-23 20:30:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:30:06.852+03	2021-05-23 20:30:06.871+03	
27f7078a-a1e2-aea7-08d0-4f7f30605429	2021-05-23 20:30:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:30:26.854+03	2021-05-23 20:30:26.862+03	
ebbae502-2c44-ac8e-b9a2-d065f8817860	2021-05-23 20:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:30:47.853+03	2021-05-23 20:30:47.87+03	
2eb389c3-2ee7-8f0b-8d01-ce09af33220b	2021-05-23 20:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:31:08.853+03	2021-05-23 20:31:08.859+03	
4edb4012-9d13-0d8e-32fa-9e3fcfed9a3f	2021-05-23 20:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:31:29.852+03	2021-05-23 20:31:29.859+03	
3d5f10e7-939c-8fed-a777-669bec64d0e7	2021-05-23 20:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:31:49.852+03	2021-05-23 20:31:49.86+03	
681623ad-8da5-fb97-f9fa-fe11e0d8689e	2021-05-23 20:32:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:32:09.853+03	2021-05-23 20:32:09.86+03	
aa231bcc-2aa8-3511-7e1b-7703403cb9fb	2021-05-23 20:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:32:30.852+03	2021-05-23 20:32:30.858+03	
e7a1526e-8323-5ba0-d917-108196a94f94	2021-05-23 20:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:32:50.853+03	2021-05-23 20:32:50.859+03	
91614f43-0dc3-d578-3e96-9403a1e480cc	2021-05-23 20:33:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:33:11.853+03	2021-05-23 20:33:11.86+03	
e5dee897-b00f-8e60-90e8-0825faa56aad	2021-05-23 20:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:33:32.852+03	2021-05-23 20:33:32.859+03	
8469e4a5-e1ae-4e59-7a6f-509867514b97	2021-05-23 20:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:33:52.853+03	2021-05-23 20:33:52.863+03	
5a8ef7a2-03f7-ef68-11ab-b0df48fdca4b	2021-05-23 20:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:34:13.852+03	2021-05-23 20:34:13.859+03	
4e459df1-5bd4-5823-74bc-6b8160eaf489	2021-05-23 20:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:34:33.853+03	2021-05-23 20:34:33.863+03	
a45ae9ee-934a-f623-874c-e84dc2c8b7bc	2021-05-23 20:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:34:54.852+03	2021-05-23 20:34:54.858+03	
3ce50383-a9f2-5be0-c068-439fba1d4405	2021-05-23 20:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:35:15.853+03	2021-05-23 20:35:15.86+03	
db5385e9-66ea-206c-b26c-2cac7093c13c	2021-05-23 20:35:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:35:36.853+03	2021-05-23 20:35:36.863+03	
27694d3c-ba3c-4dae-aa2a-915b4c19c488	2021-05-23 20:35:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:35:56.853+03	2021-05-23 20:35:56.859+03	
c2274537-daee-46a9-6c67-7854a142db31	2021-05-23 20:36:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:36:17.853+03	2021-05-23 20:36:17.86+03	
f6ea0aab-ed7e-a97c-a32d-f98ae4e63595	2021-05-23 20:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:36:37.853+03	2021-05-23 20:36:37.859+03	
e4c1509a-805b-9595-3e7a-f7e174ca77d2	2021-05-23 20:36:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:36:58.853+03	2021-05-23 20:36:58.858+03	
2f07e778-68a2-7990-9b76-3791b0016c06	2021-05-23 20:37:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:37:19.853+03	2021-05-23 20:37:19.858+03	
14558c0b-b280-0836-277d-1efee741b1e7	2021-05-23 20:37:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:37:40.852+03	2021-05-23 20:37:40.858+03	
9666c254-eb10-797f-0809-c994e03993f3	2021-05-23 20:38:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:38:01.852+03	2021-05-23 20:38:01.86+03	
8616454a-ea57-8699-b067-b7058d34aa85	2021-05-23 20:38:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:38:21.853+03	2021-05-23 20:38:21.86+03	
93412140-936e-a7be-9212-11945f2a0d57	2021-05-23 20:38:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:38:42.853+03	2021-05-23 20:38:42.859+03	
38cc6f9b-d525-5826-fe6b-2381d478c358	2021-05-23 20:39:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:39:03.852+03	2021-05-23 20:39:03.859+03	
2e95136e-2bf2-d6b7-f3ba-f6df48659349	2021-05-23 20:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:39:23.852+03	2021-05-23 20:39:23.86+03	
3407e93e-aaed-cecf-ee8a-33f6b8f634ff	2021-05-23 20:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:39:43.853+03	2021-05-23 20:39:43.86+03	
67351177-2f26-db72-364f-7b4c27082281	2021-05-23 20:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 20:40:00.853+03	2021-05-23 20:40:00.857+03	ERROR
1198ec0c-844f-7ad9-3713-c896addcfb97	2021-05-23 20:40:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:40:14.853+03	2021-05-23 20:40:14.859+03	
1a00b662-cc41-6e49-86ef-7613a33a19b6	2021-05-23 20:40:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:40:36.852+03	2021-05-23 20:40:36.861+03	
c86a5b1f-ba82-6b89-9e08-752130716b58	2021-05-23 20:40:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:40:57.852+03	2021-05-23 20:40:57.859+03	
b344ff61-ee11-2706-a0a1-d1769ac68683	2021-05-23 20:41:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:41:17.852+03	2021-05-23 20:41:17.859+03	
48753f06-b3f4-9312-df75-3f153169df8d	2021-05-23 20:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:41:38.853+03	2021-05-23 20:41:38.862+03	
dd52cdd4-d34c-5f1a-8e8e-a2fc1f4ac925	2021-05-23 20:41:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:41:59.853+03	2021-05-23 20:41:59.859+03	
eca7c02f-c4ed-23eb-3e83-6c22e6e8b260	2021-05-23 20:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:42:20.853+03	2021-05-23 20:42:20.86+03	
8df65426-0e87-ce3b-b4a3-e8cabffd8828	2021-05-23 20:42:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:42:41.853+03	2021-05-23 20:42:41.859+03	
720407bf-664e-6e2b-d33a-6c6245445854	2021-05-23 20:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:43:02.853+03	2021-05-23 20:43:02.859+03	
2a1ff163-5a7b-7fd9-2152-ac5bcc0b7616	2021-05-23 20:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:43:23.852+03	2021-05-23 20:43:23.865+03	
733fa021-bb87-6a77-7ef8-fdf6d16afab3	2021-05-23 20:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:43:43.852+03	2021-05-23 20:43:43.859+03	
c6cb53e3-c040-fe8a-91d5-73816d165847	2021-05-23 20:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:44:03.853+03	2021-05-23 20:44:03.859+03	
cce84609-ab00-5d75-266d-b3ca4d307d86	2021-05-23 20:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:44:23.853+03	2021-05-23 20:44:23.865+03	
2b576d9e-6e8e-bb33-9790-a2b28e41b218	2021-05-23 20:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:44:44.853+03	2021-05-23 20:44:44.859+03	
eb94ddbd-23b6-f690-3063-a50cf1aa30fc	2021-05-23 20:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:23:58.853+03	2021-05-23 20:23:58.867+03	
6b20ddc7-7822-6614-af84-494f879d1d31	2021-05-23 20:24:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:24:19.853+03	2021-05-23 20:24:19.863+03	
f0e0afaa-a8d7-244f-1801-ae4c800a1538	2021-05-23 20:24:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:24:39.853+03	2021-05-23 20:24:39.862+03	
fe491f0c-c2b0-a03a-24e9-6857d5f18bd9	2021-05-23 20:24:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:24:59.853+03	2021-05-23 20:24:59.872+03	
45edafaf-d214-ebb8-0a1d-a37ab1e2aa44	2021-05-23 20:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:25:20.852+03	2021-05-23 20:25:20.858+03	
68a817b7-66b1-2a78-4f28-3274f14ad41d	2021-05-23 20:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:25:40.853+03	2021-05-23 20:25:40.861+03	
45905f02-e7e5-b13b-f04c-51156ccf8994	2021-05-23 20:26:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:26:00.854+03	2021-05-23 20:26:00.868+03	
32f186e4-2002-a791-47d8-86ba0c6ea236	2021-05-23 20:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:26:22.853+03	2021-05-23 20:26:22.861+03	
c17b437b-f9d9-c86a-1718-6e2a2bfd5695	2021-05-23 20:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:26:42.853+03	2021-05-23 20:26:42.86+03	
bcd16f9e-1b68-5b0a-57b5-6f15de4d0ba6	2021-05-23 20:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:27:02.853+03	2021-05-23 20:27:02.86+03	
e849b9ae-0883-f414-0bd9-72880130204c	2021-05-23 20:27:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:27:22.853+03	2021-05-23 20:27:22.872+03	
ee7dee1c-1022-d878-5fd4-34fc37e4cddf	2021-05-23 20:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:27:43.852+03	2021-05-23 20:27:43.858+03	
8b4c36a4-6333-724a-f7a8-9d96546520c8	2021-05-23 20:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:28:03.852+03	2021-05-23 20:28:03.866+03	
c119153e-7c8f-f741-aa62-9c50ab6b3c1a	2021-05-23 20:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:28:23.853+03	2021-05-23 20:28:23.859+03	
0e0f07d5-8da6-22df-7080-e8abf1fa59b1	2021-05-23 20:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:28:44.852+03	2021-05-23 20:28:44.858+03	
5b81efc3-2593-ed24-cf0d-abdd112695d0	2021-05-23 20:29:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:29:04.852+03	2021-05-23 20:29:04.859+03	
e91a26e1-4606-7aa4-d8b1-688c56f52642	2021-05-23 20:29:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:29:24.853+03	2021-05-23 20:29:24.859+03	
6ed18d4b-f266-4f03-3bbf-1bc9116f4ec4	2021-05-23 20:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:29:45.852+03	2021-05-23 20:29:45.859+03	
ff75d1be-7e75-7265-8535-11419dccc723	2021-05-23 20:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 20:30:00.852+03	2021-05-23 20:30:00.857+03	ERROR
e3c58dc2-482f-bb20-9037-f493c3a5ba90	2021-05-23 20:30:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:30:16.852+03	2021-05-23 20:30:16.86+03	
5c4c7f1b-8e08-e056-6756-d4aa162e0f52	2021-05-23 20:30:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:30:36.854+03	2021-05-23 20:30:37.072+03	
8f8c1f43-2e64-8aef-3a78-f4052071070b	2021-05-23 20:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:30:58.853+03	2021-05-23 20:30:58.861+03	
9f570757-3899-b2e1-53a3-470d2262068d	2021-05-23 20:31:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:31:19.852+03	2021-05-23 20:31:19.859+03	
122f2e0a-f646-c937-f80b-25d9db7983a7	2021-05-23 20:31:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:31:39.852+03	2021-05-23 20:31:39.859+03	
5361ec7a-0f95-7583-c05e-5b5025b755cf	2021-05-23 20:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:31:59.853+03	2021-05-23 20:31:59.88+03	
f896bdc8-9fe2-40aa-5c1b-afc12397d0db	2021-05-23 20:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:32:20.852+03	2021-05-23 20:32:20.859+03	
ceb6f526-c921-3507-f65d-f6d7b2ca4602	2021-05-23 20:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:32:40.852+03	2021-05-23 20:32:40.859+03	
cc348dbd-3a4d-8b3e-1aa4-ee51658e6e53	2021-05-23 20:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:33:00.853+03	2021-05-23 20:33:00.859+03	
8cfd7afd-3702-7999-000c-cb6b79ee8949	2021-05-23 20:33:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:33:21.854+03	2021-05-23 20:33:21.861+03	
7dd967be-3ad0-42a1-372a-86b7d29730ee	2021-05-23 20:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:33:42.852+03	2021-05-23 20:33:42.859+03	
44df1f04-ddbc-20db-ff2e-a012786bc6a4	2021-05-23 20:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:34:03.852+03	2021-05-23 20:34:03.858+03	
5c99b81e-538c-264c-502f-9d670ed5735e	2021-05-23 20:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:34:23.852+03	2021-05-23 20:34:23.87+03	
79d1c31b-966f-c81f-34ac-3b5c2ace8ece	2021-05-23 20:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:34:43.853+03	2021-05-23 20:34:43.867+03	
786f4f99-2d46-5831-dd61-24d72fc3d0d8	2021-05-23 20:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:35:04.853+03	2021-05-23 20:35:04.871+03	
a8a14ea1-576f-6325-ac4f-61db95115258	2021-05-23 20:35:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:35:26.852+03	2021-05-23 20:35:26.859+03	
5eb569ee-648c-8077-f247-027d49004a89	2021-05-23 20:35:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:35:46.853+03	2021-05-23 20:35:46.86+03	
f93adb7f-e74d-2e5d-be5e-6df2da489605	2021-05-23 20:36:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:36:07.853+03	2021-05-23 20:36:07.859+03	
76cdf255-b37b-6733-2cb3-a0fd36bc6a9b	2021-05-23 20:36:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:36:27.853+03	2021-05-23 20:36:27.859+03	
2704a22e-8e60-e9d1-7c6c-c43e86f645fd	2021-05-23 20:36:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:36:48.852+03	2021-05-23 20:36:48.859+03	
05cec652-538b-a4fc-747f-a84ece7ac28e	2021-05-23 20:37:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:37:08.853+03	2021-05-23 20:37:08.86+03	
13c81be7-862f-a6f5-0187-8ae4550f5c70	2021-05-23 20:37:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:37:29.853+03	2021-05-23 20:37:29.864+03	
82d53e7f-32f5-8477-7ba2-029789bbd9e8	2021-05-23 20:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:37:50.853+03	2021-05-23 20:37:50.86+03	
8b549000-0291-2d14-20fe-a533f31da83a	2021-05-23 20:38:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:38:11.853+03	2021-05-23 20:38:11.859+03	
dd3e9999-0abf-650c-c2e1-a4b16dd1ba29	2021-05-23 20:38:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:38:31.854+03	2021-05-23 20:38:31.863+03	
58142e32-3e74-fd06-1f61-526c673b9f9b	2021-05-23 20:38:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:38:53.852+03	2021-05-23 20:38:53.858+03	
9a8a8db3-7a85-6b5d-d8fe-6309d4471e2c	2021-05-23 20:39:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:39:13.852+03	2021-05-23 20:39:13.865+03	
db4aeaed-a0fb-e0b8-43ec-6b82b4628be8	2021-05-23 20:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:39:33.853+03	2021-05-23 20:39:33.859+03	
1a39014d-d8bf-9034-a0d1-8c8e38d125dd	2021-05-23 20:39:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:39:54.852+03	2021-05-23 20:39:54.859+03	
e921bd8c-fc59-ed34-24e2-eeda137e7137	2021-05-23 20:40:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:40:04.852+03	2021-05-23 20:40:04.858+03	
458557b6-bd74-aaa3-f971-0f8622a0e698	2021-05-23 20:40:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:40:25.853+03	2021-05-23 20:40:25.859+03	
a21faa37-5b7b-5937-bc09-da9b8c7f5c75	2021-05-23 20:40:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:40:46.853+03	2021-05-23 20:40:46.86+03	
b26b286c-4043-497b-18be-7e235dacdaf3	2021-05-23 20:41:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:41:07.852+03	2021-05-23 20:41:07.858+03	
7346e204-1cd6-4291-9ae4-6cd7174961c3	2021-05-23 20:41:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:41:27.853+03	2021-05-23 20:41:27.86+03	
ddb92c32-b179-1df9-4bff-c76c23552509	2021-05-23 20:41:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:41:48.853+03	2021-05-23 20:41:48.859+03	
60dbc9c7-ab47-8a58-4f4e-308499a23890	2021-05-23 20:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:42:10.852+03	2021-05-23 20:42:10.858+03	
b67af950-3a35-efe0-6723-dbbc1f34748b	2021-05-23 20:42:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:42:31.852+03	2021-05-23 20:42:31.86+03	
ce7933a0-efc0-42b7-8dd2-5dfc48f4c364	2021-05-23 20:42:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:42:51.853+03	2021-05-23 20:42:51.873+03	
b140b6f2-7e68-d3c6-c2d2-ee366cfa0d4f	2021-05-23 20:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:43:13.852+03	2021-05-23 20:43:13.859+03	
bb9e012a-4978-2f65-acb3-6f59c82aa2a7	2021-05-23 20:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:43:33.852+03	2021-05-23 20:43:33.859+03	
4c5fa7ce-9df3-032e-53f8-c0bdac1a0f87	2021-05-23 20:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:43:53.852+03	2021-05-23 20:43:53.86+03	
912e3744-4ca4-96ff-bd3b-e3260a412a28	2021-05-23 20:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:44:13.853+03	2021-05-23 20:44:13.859+03	
ffaf5384-3252-f03b-2aed-e186197d5dec	2021-05-23 20:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:44:34.853+03	2021-05-23 20:44:34.858+03	
43c069d0-6651-de86-9f57-1c1cd1ceae30	2021-05-23 20:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:44:54.853+03	2021-05-23 20:44:54.859+03	
e6e56ae5-7dfa-a36e-8b24-017ec98ff7a1	2021-05-23 20:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:45:05.852+03	2021-05-23 20:45:05.861+03	
ae1896c8-df51-177c-a885-ff28a090ab21	2021-05-23 20:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:45:25.852+03	2021-05-23 20:45:25.859+03	
4e85ac34-6c97-084c-7be1-705118698fa2	2021-05-23 20:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:45:45.852+03	2021-05-23 20:45:45.859+03	
11641a03-b17c-a27e-f30f-e3ff6b1c6b00	2021-05-23 20:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:46:05.852+03	2021-05-23 20:46:05.864+03	
07245a41-59c9-2e4d-58b0-470e69d151e3	2021-05-23 20:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:46:25.853+03	2021-05-23 20:46:25.866+03	
f42268dc-42fc-ae69-b1af-ff5e022f15c5	2021-05-23 20:46:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:46:46.854+03	2021-05-23 20:46:46.862+03	
0b0d2d5d-9929-e6f2-55de-770f7f655b83	2021-05-23 20:47:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:47:08.852+03	2021-05-23 20:47:08.862+03	
77fb7704-b881-b1a4-a1d6-badefc18b7de	2021-05-23 20:47:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:47:29.852+03	2021-05-23 20:47:29.86+03	
f9b61ddd-ba69-5633-20cd-d31325323910	2021-05-23 20:47:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:47:50.852+03	2021-05-23 20:47:50.858+03	
7df2779c-13e7-2a77-a219-57318403fc1e	2021-05-23 20:48:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:48:10.852+03	2021-05-23 20:48:10.858+03	
7196a8e3-6cfb-078d-2129-b0894027e05f	2021-05-23 20:48:31.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:48:31.852+03	2021-05-23 20:48:31.868+03	
32932c53-7a11-9054-0be6-065f7b1077c7	2021-05-23 20:48:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:48:52.852+03	2021-05-23 20:48:52.864+03	
670b7dda-d7d2-81ef-5edc-9fcd88fd0ee6	2021-05-23 20:49:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:49:12.852+03	2021-05-23 20:49:12.858+03	
cfc0544d-eda5-4046-63b4-0e08ec91f25d	2021-05-23 20:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:49:33.852+03	2021-05-23 20:49:33.859+03	
5f0028f9-75c8-94fb-b51a-f0722ab0d9d0	2021-05-23 20:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:49:53.853+03	2021-05-23 20:49:53.859+03	
ada5e330-fff5-fdd7-b004-a58ab517f12e	2021-05-23 20:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:50:04.852+03	2021-05-23 20:50:04.859+03	
ef53c7dd-cbe1-7c05-eafc-bd01e9225e9e	2021-05-23 20:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:50:24.852+03	2021-05-23 20:50:24.858+03	
2175bbdd-999f-0034-2ab2-ffafa01fd25f	2021-05-23 20:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:50:44.853+03	2021-05-23 20:50:44.859+03	
1fb6348b-967e-9556-f315-acef364c6738	2021-05-23 20:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:51:05.852+03	2021-05-23 20:51:05.86+03	
3671b6f3-1169-6436-e568-83508dc136a7	2021-05-23 20:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:51:25.852+03	2021-05-23 20:51:25.859+03	
6708faee-37b8-3148-82db-24f61d34b9e1	2021-05-23 20:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:51:45.852+03	2021-05-23 20:51:45.859+03	
a0a349de-5771-dc0a-c2e5-8ca42e494238	2021-05-23 20:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:52:05.852+03	2021-05-23 20:52:05.859+03	
9acf1f2c-6260-1390-710c-83fcf4894bea	2021-05-23 20:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:52:25.852+03	2021-05-23 20:52:25.858+03	
6d042221-bf47-5f1a-99cb-ab009c834b70	2021-05-23 20:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:52:45.853+03	2021-05-23 20:52:45.864+03	
ffa9ec8c-98b7-055c-6fc8-e294af4c4d24	2021-05-23 20:53:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:53:06.853+03	2021-05-23 20:53:06.861+03	
e9c6903f-4a80-133c-a4d4-6d53e0e294f1	2021-05-23 20:53:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:53:27.853+03	2021-05-23 20:53:27.859+03	
013a0e46-c362-d811-1766-68dbd9e47875	2021-05-23 20:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:53:48.852+03	2021-05-23 20:53:48.86+03	
3f2152d5-b460-32a4-ffa8-6d682e0ecf87	2021-05-23 20:54:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:54:08.852+03	2021-05-23 20:54:08.859+03	
8d420a2c-b278-2690-92ba-6e43623201e1	2021-05-23 20:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:54:28.852+03	2021-05-23 20:54:28.863+03	
5044c8a8-4239-09fc-f9bd-6481bb830d0a	2021-05-23 20:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:54:48.853+03	2021-05-23 20:54:48.86+03	
faf351a4-f824-e60f-0940-1c06d57bb191	2021-05-23 20:55:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:55:09.852+03	2021-05-23 20:55:09.859+03	
63e914f1-565c-d2ce-5569-ddfa004a2dc4	2021-05-23 20:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:55:29.852+03	2021-05-23 20:55:29.859+03	
bb3e6c60-6575-5bc6-2dfc-a15782b0e7d7	2021-05-23 20:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:55:50.852+03	2021-05-23 20:55:50.859+03	
12f7ba99-d09b-98f1-8816-47840f3c7cfb	2021-05-23 20:56:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:56:11.854+03	2021-05-23 20:56:11.862+03	
6f1863a5-aee6-4c23-dd70-ec7097803597	2021-05-23 20:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:56:32.852+03	2021-05-23 20:56:32.859+03	
a7b5055c-2f4f-f507-857a-6c04be95eacf	2021-05-23 20:56:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:56:52.852+03	2021-05-23 20:56:52.858+03	
4ac2a326-ed1b-fb28-c3c8-0ee123aca188	2021-05-23 20:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:57:13.852+03	2021-05-23 20:57:13.859+03	
06a33785-a352-2824-b83c-f0adee6535ae	2021-05-23 20:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:57:34.852+03	2021-05-23 20:57:34.859+03	
be928f65-ff2a-f9aa-d7ae-ee96a00b8544	2021-05-23 20:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:57:54.852+03	2021-05-23 20:57:54.859+03	
c7aa4ef8-3fb1-9f19-b2b5-8d7b9061d90c	2021-05-23 20:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:58:14.852+03	2021-05-23 20:58:14.859+03	
142dbd6f-963d-d96e-6f7d-d39480a2b296	2021-05-23 20:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:58:34.853+03	2021-05-23 20:58:34.859+03	
b72c3a88-7486-bdca-69b4-401564ec8aae	2021-05-23 20:58:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:58:55.852+03	2021-05-23 20:58:55.859+03	
eed411e0-fbde-01d2-648b-ae6949cc6126	2021-05-23 20:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:59:15.852+03	2021-05-23 20:59:15.859+03	
b9527983-3f93-33b8-b2bd-fb224f04c1f5	2021-05-23 20:59:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:59:36.852+03	2021-05-23 20:59:36.861+03	
99bba128-99eb-ab2a-2510-75b4bdf6bee9	2021-05-23 20:59:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:59:56.852+03	2021-05-23 20:59:56.859+03	
7c6f6b35-fc2d-184d-6240-2fbe73069de9	2021-05-23 21:00:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:00:06.853+03	2021-05-23 21:00:06.861+03	
bb256652-3fef-4a9f-1180-10802611808f	2021-05-23 21:00:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:00:27.853+03	2021-05-23 21:00:27.858+03	
ad9ec2f3-4204-910b-c4ef-37652908df5f	2021-05-23 21:00:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:00:48.852+03	2021-05-23 21:00:48.859+03	
b21cd667-fae9-c37a-cf99-d49284e9d779	2021-05-23 21:01:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:01:08.853+03	2021-05-23 21:01:08.859+03	
442dbf92-0467-a7e3-2b75-404bfed544e4	2021-05-23 21:01:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:01:29.852+03	2021-05-23 21:01:29.859+03	
7839993a-d1f6-ce4c-fb67-34b493d02ad0	2021-05-23 21:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:01:49.852+03	2021-05-23 21:01:49.858+03	
943fcfa2-5c0e-cb5f-0d29-aedc0f055c3a	2021-05-23 21:02:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:02:09.853+03	2021-05-23 21:02:09.861+03	
86be7e8b-de19-cb00-8d72-85e14d7a8f7c	2021-05-23 21:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:02:31.852+03	2021-05-23 21:02:31.859+03	
ca248135-7122-802a-175e-c9ab1202553d	2021-05-23 21:02:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:02:51.854+03	2021-05-23 21:02:51.859+03	
30b5ec0b-1af6-7f5a-bb16-55c2a308e8a1	2021-05-23 21:03:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:03:13.853+03	2021-05-23 21:03:13.859+03	
9a0cbdb3-0b27-6e04-3d12-39f4285c5ee6	2021-05-23 21:03:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:03:33.853+03	2021-05-23 21:03:33.859+03	
0f1f3e83-4577-df10-56d7-cc2b4d22832c	2021-05-23 21:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:03:54.852+03	2021-05-23 21:03:54.859+03	
61c53056-d091-4fc8-7932-709a6d0c19f8	2021-05-23 21:04:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:04:15.852+03	2021-05-23 21:04:15.862+03	
5de8a606-f7fc-c55e-ab9f-d3e6000c55b9	2021-05-23 21:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:04:35.852+03	2021-05-23 21:04:35.859+03	
685f3e6d-f4e2-9cee-5704-c60cc6443d42	2021-05-23 21:04:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:04:56.852+03	2021-05-23 21:04:56.86+03	
0cae3988-78f5-2ed0-3813-c940337b19cb	2021-05-23 21:05:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:05:16.853+03	2021-05-23 21:05:16.86+03	
e79bca99-29eb-71df-86f1-9065258f3fee	2021-05-23 21:05:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:05:38.853+03	2021-05-23 21:05:38.872+03	
0371bbf7-ca6b-4c25-8935-28d78579c946	2021-05-23 21:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:06:00.852+03	2021-05-23 21:06:00.858+03	
f583da11-321d-65a1-8684-330b0ee3673f	2021-05-23 20:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:45:15.852+03	2021-05-23 20:45:15.859+03	
723e6047-d9fb-c258-6975-f322d5a07719	2021-05-23 20:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:45:35.852+03	2021-05-23 20:45:35.86+03	
30df0ba3-d9a0-a03a-5c8a-3a2617c15414	2021-05-23 20:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:45:55.852+03	2021-05-23 20:45:55.858+03	
042e7c96-d31b-a475-99c5-1ecbe8ee8d85	2021-05-23 20:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:46:15.852+03	2021-05-23 20:46:15.859+03	
6c5036a6-e663-b3a6-7691-eea1da7765aa	2021-05-23 20:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:46:35.853+03	2021-05-23 20:46:35.86+03	
4d3a87de-7d2a-0641-4757-0b6bbf54ca91	2021-05-23 20:46:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:46:57.853+03	2021-05-23 20:46:57.859+03	
b23c4998-cd78-f1bf-e225-9959dc09f50f	2021-05-23 20:47:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:47:18.853+03	2021-05-23 20:47:18.859+03	
74eee240-34de-d445-e0c0-f3a85c572737	2021-05-23 20:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:47:39.853+03	2021-05-23 20:47:39.86+03	
d10b02b4-2677-4760-786a-168b74654496	2021-05-23 20:48:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:48:00.852+03	2021-05-23 20:48:00.859+03	
41647100-b97c-b940-e7cc-6766312b1cdc	2021-05-23 20:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:48:20.853+03	2021-05-23 20:48:20.859+03	
a8cd346e-22c8-0155-9945-8415a92a06e1	2021-05-23 20:48:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:48:41.853+03	2021-05-23 20:48:41.862+03	
3fc25d15-86ee-2bd1-8ec6-c1c391ab93ac	2021-05-23 20:49:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:49:02.852+03	2021-05-23 20:49:02.859+03	
58ed5f93-b042-7c10-06ad-fe5b014e821d	2021-05-23 20:49:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:49:22.853+03	2021-05-23 20:49:22.859+03	
feb70b9e-4043-10d8-a58f-74de200e887d	2021-05-23 20:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:49:43.853+03	2021-05-23 20:49:43.86+03	
859a212a-9d47-48cc-19bf-806c56068f63	2021-05-23 20:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 20:50:00.853+03	2021-05-23 20:50:00.859+03	ERROR
2f7d10fd-2844-18db-7253-b9990a35ae3d	2021-05-23 20:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:50:14.852+03	2021-05-23 20:50:14.858+03	
338ba035-1e33-aef6-2827-e285169d822a	2021-05-23 20:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:50:34.853+03	2021-05-23 20:50:34.861+03	
b8927007-b4db-8d29-6773-e659aab9ddb7	2021-05-23 20:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:50:54.853+03	2021-05-23 20:50:54.859+03	
6bb951b4-1684-5968-f8d3-c527000b5798	2021-05-23 20:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:51:15.852+03	2021-05-23 20:51:15.859+03	
3a486dea-2328-49c0-8c30-0dd8bd9c59f7	2021-05-23 20:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:51:35.852+03	2021-05-23 20:51:35.859+03	
7e725bf5-5ad4-6316-b058-972f914aa9d2	2021-05-23 20:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:51:55.852+03	2021-05-23 20:51:55.859+03	
fda1dce7-b7c0-767e-9217-0ad416e1f543	2021-05-23 20:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:52:15.852+03	2021-05-23 20:52:15.859+03	
b8a26fe1-e2cd-32da-0c18-400f82a09677	2021-05-23 20:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:52:35.852+03	2021-05-23 20:52:35.859+03	
eccef038-997a-8ae1-54a6-1147d50dabc8	2021-05-23 20:52:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:52:56.853+03	2021-05-23 20:52:56.86+03	
f1f78aa4-f699-2223-b7ab-33fc10001686	2021-05-23 20:53:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:53:16.854+03	2021-05-23 20:53:16.86+03	
37001af0-5156-a664-cb83-93bcb72612f4	2021-05-23 20:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:53:38.852+03	2021-05-23 20:53:38.858+03	
b21c25ab-92dc-ce17-2f8a-a656b8d3ec48	2021-05-23 20:53:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:53:58.852+03	2021-05-23 20:53:58.859+03	
5735df41-614c-1512-5d1f-c8b86bffd605	2021-05-23 20:54:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:54:18.852+03	2021-05-23 20:54:18.858+03	
77081aec-a382-fe8a-bd85-ad46fae132c3	2021-05-23 20:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:54:38.852+03	2021-05-23 20:54:38.859+03	
4407a1b7-aa52-23fd-3b2d-10140cb8b5cd	2021-05-23 20:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:54:59.852+03	2021-05-23 20:54:59.859+03	
e429458d-65c1-883e-cd81-f8323758350d	2021-05-23 20:55:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:55:19.852+03	2021-05-23 20:55:19.859+03	
b3a68161-bd78-14df-ace9-a2ffd7941891	2021-05-23 20:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:55:39.853+03	2021-05-23 20:55:39.859+03	
8c90ec14-3cbd-863f-209c-716fe20fc730	2021-05-23 20:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:56:00.853+03	2021-05-23 20:56:00.86+03	
a063e24e-493f-1acf-0ba6-cd3acd6a866b	2021-05-23 20:56:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:56:21.854+03	2021-05-23 20:56:21.86+03	
3a039c3f-fe2c-46a3-ad80-360d1c79d9ab	2021-05-23 20:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:56:42.852+03	2021-05-23 20:56:42.859+03	
ff2ef7c5-2881-2013-da80-f0ed97f6a09b	2021-05-23 20:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:57:02.853+03	2021-05-23 20:57:02.859+03	
bb09f07a-76dc-8a81-97ba-cf54261df3ca	2021-05-23 20:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:57:23.853+03	2021-05-23 20:57:23.86+03	
2320ffdc-9c83-508d-c2a3-14e9de3a9ae3	2021-05-23 20:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:57:44.852+03	2021-05-23 20:57:44.861+03	
a542fbe2-e265-2ae8-b400-d1bf463627f0	2021-05-23 20:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:58:04.852+03	2021-05-23 20:58:04.859+03	
246f4c0b-e8ae-408c-77d8-8f486454ff23	2021-05-23 20:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:58:24.852+03	2021-05-23 20:58:24.859+03	
d74bf675-424b-0639-6798-0967d0621fd7	2021-05-23 20:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:58:44.853+03	2021-05-23 20:58:44.86+03	
d9737aba-382a-c851-b0ad-029f7435122e	2021-05-23 20:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:59:05.852+03	2021-05-23 20:59:05.859+03	
e5265108-dcd0-04d0-6dbb-368baaabbb26	2021-05-23 20:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:59:25.853+03	2021-05-23 20:59:25.859+03	
2ef51283-5fc1-fbeb-36d8-97c00777dc0a	2021-05-23 20:59:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 20:59:46.852+03	2021-05-23 20:59:46.859+03	
67496d25-532c-3e16-b780-fba2cfb7cb19	2021-05-23 21:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 21:00:00.853+03	2021-05-23 21:00:00.859+03	ERROR
a46e5553-3f02-4d64-4cea-4900627296fe	2021-05-23 21:00:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:00:16.853+03	2021-05-23 21:00:16.861+03	
4a19a54a-2512-9342-eb24-826267707cac	2021-05-23 21:00:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:00:38.852+03	2021-05-23 21:00:38.859+03	
467e2bb9-edd4-805b-9d69-7e76a5a8f128	2021-05-23 21:00:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:00:58.852+03	2021-05-23 21:00:58.861+03	
0eff5740-6df4-8118-b39a-43912e135ea7	2021-05-23 21:01:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:01:19.852+03	2021-05-23 21:01:19.858+03	
c5537867-5941-d5a0-5db1-66e999eaf345	2021-05-23 21:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:01:39.852+03	2021-05-23 21:01:39.858+03	
c1ffc6ac-5b73-a3bb-29d6-e3e652773bdb	2021-05-23 21:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:01:59.853+03	2021-05-23 21:01:59.861+03	
bac9ddaa-21f0-7fb6-899c-d5ffce33d7dc	2021-05-23 21:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:02:20.853+03	2021-05-23 21:02:20.862+03	
04fca0fb-c071-df99-6fa8-601d99bd88d1	2021-05-23 21:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:02:41.852+03	2021-05-23 21:02:41.859+03	
c1513961-81e1-a381-7f3c-9503cbde08cb	2021-05-23 21:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:03:02.853+03	2021-05-23 21:03:02.859+03	
42286ac6-1976-8a5f-6c0a-043b9063a86e	2021-05-23 21:03:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:03:23.853+03	2021-05-23 21:03:23.861+03	
09927072-5bbf-ebba-2d7a-0a468d464ef7	2021-05-23 21:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:03:44.852+03	2021-05-23 21:03:44.86+03	
e31ed9f5-f253-c513-0691-126a38a17244	2021-05-23 21:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:04:04.853+03	2021-05-23 21:04:04.859+03	
3e926927-58fb-a4dc-e1fd-19bb2ca0d37c	2021-05-23 21:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:04:25.852+03	2021-05-23 21:04:25.859+03	
fdf78f7f-8ae9-cd60-e24c-c1e51a9fcc6d	2021-05-23 21:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:04:45.853+03	2021-05-23 21:04:45.863+03	
6fb930dd-c8ba-0a94-443e-e81eceefec89	2021-05-23 21:05:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:05:06.852+03	2021-05-23 21:05:06.86+03	
76df3472-49e3-a9e8-7767-da1bf09bf79f	2021-05-23 21:05:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:05:27.853+03	2021-05-23 21:05:27.859+03	
28f4d7ab-befb-544d-1c6c-d36044f23bd3	2021-05-23 21:05:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:05:49.853+03	2021-05-23 21:05:49.86+03	
c9ead171-60e9-6807-2eec-b460f7cea2f2	2021-05-23 21:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:06:10.852+03	2021-05-23 21:06:10.859+03	
22462597-9c67-9aca-42ea-9ababd3b7e0d	2021-05-23 21:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:06:20.852+03	2021-05-23 21:06:20.859+03	
e265efa6-fd01-11e8-481c-17fee41d621a	2021-05-23 23:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:03:30.852+03	2021-05-23 23:03:30.859+03	
95e01e2b-d7fd-e577-1993-f508c711dbfd	2021-05-23 21:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:06:40.852+03	2021-05-23 21:06:40.86+03	
65c4ce40-89d1-7a13-8694-0b863679496e	2021-05-23 21:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:07:00.853+03	2021-05-23 21:07:00.862+03	
a55202be-5666-6067-1739-224abd482dca	2021-05-23 23:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:03:50.853+03	2021-05-23 23:03:50.859+03	
50cd407e-d9a2-75e4-572d-59e51aa13975	2021-05-23 21:07:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:07:21.852+03	2021-05-23 21:07:21.859+03	
83c00c88-0890-cd65-ca8b-62ab29973df9	2021-05-23 21:07:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:07:41.853+03	2021-05-23 21:07:41.87+03	
4eebb834-5622-529a-bf3f-f2c0fbc8fd76	2021-05-23 23:04:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:04:12.852+03	2021-05-23 23:04:12.858+03	
cf7cda59-59ef-2534-1223-32594abaf14b	2021-05-23 21:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:08:02.853+03	2021-05-23 21:08:02.858+03	
b7a80ce2-7ef7-235c-d545-07dbeb2dcf64	2021-05-23 21:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:08:23.852+03	2021-05-23 21:08:23.86+03	
94432ab5-eef5-7b54-eb85-44bb33f82db3	2021-05-23 23:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:04:32.852+03	2021-05-23 23:04:32.859+03	
397097d6-2045-f3e7-74d0-42e42cfbe67c	2021-05-23 21:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:08:43.853+03	2021-05-23 21:08:43.871+03	
98af5603-eea6-135b-ca25-286b357c18b8	2021-05-23 21:09:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:09:04.852+03	2021-05-23 21:09:04.862+03	
74bef01e-80e5-e117-edd4-1e7eba37de42	2021-05-23 23:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:04:52.853+03	2021-05-23 23:04:52.859+03	
f8309420-055f-45e2-a845-219e7ff52f98	2021-05-23 21:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:09:24.853+03	2021-05-23 21:09:24.859+03	
ad290045-35c3-78ed-16a1-7d623f6691dd	2021-05-23 21:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:09:45.852+03	2021-05-23 21:09:45.872+03	
0cdce9ae-2542-9137-c937-bd6e2cc064ff	2021-05-23 23:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:05:13.852+03	2021-05-23 23:05:13.865+03	
3799f07e-7442-c3d0-194f-95e58340d857	2021-05-23 21:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 21:10:00.852+03	2021-05-23 21:10:00.866+03	ERROR
39aa1989-a653-e104-514b-7b7488f07b48	2021-05-23 21:10:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:10:16.854+03	2021-05-23 21:10:16.86+03	
440b2633-f889-4207-b5d0-6130b270d2fd	2021-05-23 23:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:05:33.852+03	2021-05-23 23:05:33.86+03	
97c595c9-eac6-b3d4-1ad3-d5fe502fbcdc	2021-05-23 21:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:10:38.852+03	2021-05-23 21:10:38.859+03	
e69050ef-2456-1390-8f5a-8f96acdf3290	2021-05-23 21:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:10:58.852+03	2021-05-23 21:10:58.859+03	
b8a6d8ee-d03d-a9fb-b2b3-3c98ff5eb350	2021-05-23 23:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:05:54.853+03	2021-05-23 23:05:54.858+03	
cc23d115-8fa2-e5a3-3c25-5e941acb5b36	2021-05-23 21:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:11:18.853+03	2021-05-23 21:11:18.861+03	
2a3959e5-3955-06c8-4aad-8fa807304689	2021-05-23 21:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:11:39.853+03	2021-05-23 21:11:39.859+03	
5f79091f-c56f-fdac-9070-ec1441829ba8	2021-05-23 23:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:06:15.852+03	2021-05-23 23:06:15.86+03	
196d6118-813b-0ff7-8294-29b214481109	2021-05-23 21:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:12:00.852+03	2021-05-23 21:12:00.859+03	
9f1313db-7fa9-2159-1772-2b5c51acdf18	2021-05-23 21:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:12:20.853+03	2021-05-23 21:12:20.859+03	
8403090c-c586-7397-0b87-28eaf27c3c89	2021-05-23 23:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:06:35.852+03	2021-05-23 23:06:35.859+03	
294f29bc-786f-40f6-0684-f9e8b674fa80	2021-05-23 21:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:12:41.854+03	2021-05-23 21:12:41.861+03	
ed01a727-75f5-d9e1-1c80-9bf27304e8b6	2021-05-23 21:13:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:13:03.852+03	2021-05-23 21:13:03.858+03	
b1134619-d203-ac91-0c30-242b5f41e26e	2021-05-23 23:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:06:55.853+03	2021-05-23 23:06:55.86+03	
b475613e-4f16-c761-1e7d-41cc0dfdb077	2021-05-23 21:13:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:13:24.853+03	2021-05-23 21:13:24.862+03	
929ac4f8-6e81-8a9c-1053-d647630700f7	2021-05-23 21:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:13:44.853+03	2021-05-23 21:13:44.859+03	
d54110a0-9b86-a415-9046-89cff534593f	2021-05-23 23:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:07:15.853+03	2021-05-23 23:07:15.864+03	
e07600d5-8b26-99b7-7e70-56cccf4648ba	2021-05-23 21:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:14:05.853+03	2021-05-23 21:14:05.861+03	
81b214d6-8314-b01b-9e32-e5e18bb79116	2021-05-23 21:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:14:25.853+03	2021-05-23 21:14:25.863+03	
abb2c1ae-1fca-eb8b-47c5-8a72d24cda72	2021-05-23 23:07:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:07:36.852+03	2021-05-23 23:07:36.859+03	
708e106e-afcc-ace5-7a9a-570cec78fa31	2021-05-23 21:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:14:45.853+03	2021-05-23 21:14:45.863+03	
88863243-9067-226b-b834-48d191640486	2021-05-23 21:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:15:07.853+03	2021-05-23 21:15:07.86+03	
c8292a0f-45db-522d-cde1-5db8698e5a8a	2021-05-23 23:07:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:07:56.854+03	2021-05-23 23:07:56.86+03	
0d4880e6-2d25-33d7-ca24-fe377d4d88cd	2021-05-23 21:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:15:27.853+03	2021-05-23 21:15:27.859+03	
51cbc72c-4615-485b-4579-50e077ef70e6	2021-05-23 21:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:15:47.853+03	2021-05-23 21:15:47.86+03	
7e13351b-e322-58e7-32cd-a2737400ab70	2021-05-23 23:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:08:18.852+03	2021-05-23 23:08:18.858+03	
35ebdf14-eb44-31ef-48be-fcb0d4b86e24	2021-05-23 21:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:16:07.853+03	2021-05-23 21:16:07.868+03	
e42c1590-e257-2461-c92c-27f0ac65c951	2021-05-23 21:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:16:28.853+03	2021-05-23 21:16:28.859+03	
f2fccd9c-45e7-10ae-2341-6433a5cafedf	2021-05-23 23:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:08:38.852+03	2021-05-23 23:08:38.858+03	
042a1f56-1f27-a386-8db3-5be0f0a56fcb	2021-05-23 21:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:16:49.853+03	2021-05-23 21:16:49.876+03	
eb259cde-e00b-c6cc-2be6-b3e226c785ea	2021-05-23 21:17:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:17:09.853+03	2021-05-23 21:17:09.86+03	
8c51930b-7de5-b534-9733-993e4338931d	2021-05-23 23:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:08:58.852+03	2021-05-23 23:08:58.859+03	
5b9ae0f0-e306-deac-0ee2-05085980fa5f	2021-05-23 21:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:17:29.853+03	2021-05-23 21:17:29.86+03	
fd9f508e-edc9-717d-0a35-a0a33e7d68b6	2021-05-23 21:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:17:49.853+03	2021-05-23 21:17:49.861+03	
922affac-8116-0bb6-48ec-3ecd3a7e8a15	2021-05-23 23:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:09:19.853+03	2021-05-23 23:09:19.864+03	
d2a6790b-0adf-d634-9d72-9bea3e547de6	2021-05-23 21:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:18:10.853+03	2021-05-23 21:18:10.86+03	
a0c72d7d-a6d3-508f-5926-d0de059b9bf6	2021-05-23 21:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:18:32.853+03	2021-05-23 21:18:32.859+03	
293b31c8-40cf-83cc-0c68-3a0544b49ed7	2021-05-23 23:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:09:40.852+03	2021-05-23 23:09:40.867+03	
a465ba4a-53d4-bc5f-5754-df029ab8ee73	2021-05-23 21:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:18:52.853+03	2021-05-23 21:18:52.864+03	
6d575c06-4fe9-19dd-0711-c004cb57e064	2021-05-23 23:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:10:00.852+03	2021-05-23 23:10:00.862+03	
04bac8b2-7d72-8bd8-d65d-5eba50d34535	2021-05-23 23:10:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:10:20.853+03	2021-05-23 23:10:20.859+03	
1f999224-1a60-8c67-7f63-d8759a7d0274	2021-05-23 23:10:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:10:41.854+03	2021-05-23 23:10:41.86+03	
97fbe98d-ae36-ce53-4109-cd9dc6a8603e	2021-05-23 23:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:11:03.852+03	2021-05-23 23:11:03.859+03	
b9701613-1021-2b42-63be-4ecbf47ac092	2021-05-23 23:11:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:11:23.852+03	2021-05-23 23:11:23.859+03	
b9ccb203-3f9e-c760-b93b-61cff7d26c0a	2021-05-23 23:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:11:44.852+03	2021-05-23 23:11:44.859+03	
ff8828cb-d9ec-bdbf-75c3-3b92745cb8dd	2021-05-23 23:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:12:05.852+03	2021-05-23 23:12:05.859+03	
af978c00-4721-bd2a-bd3f-5346cd396c71	2021-05-23 21:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:06:30.852+03	2021-05-23 21:06:30.859+03	
1e852a81-f574-1bee-97dc-9241a2803d38	2021-05-23 21:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:06:50.852+03	2021-05-23 21:06:50.865+03	
b4b8abda-6fa8-769a-71fb-b22745d8f060	2021-05-23 21:07:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:07:11.852+03	2021-05-23 21:07:11.859+03	
96852ce7-6a24-7fa6-caee-54b514cb6768	2021-05-23 21:07:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:07:31.853+03	2021-05-23 21:07:31.859+03	
574b180a-d99d-dfc8-b6ea-b844b4f31d31	2021-05-23 21:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:07:52.853+03	2021-05-23 21:07:52.859+03	
e7fb647c-f8c2-6619-95d6-1f78aaae986e	2021-05-23 21:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:08:12.853+03	2021-05-23 21:08:12.862+03	
34ac252d-6466-bf75-e0ff-41799a073a98	2021-05-23 21:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:08:33.852+03	2021-05-23 21:08:33.858+03	
59860c7c-2afa-45cf-3bb9-c990fb890021	2021-05-23 21:08:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:08:54.852+03	2021-05-23 21:08:54.867+03	
9d979d7a-22ea-f82b-d93c-468765c0b15c	2021-05-23 21:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:09:14.852+03	2021-05-23 21:09:14.858+03	
59dee218-d354-0eed-ff98-ffbf0a39997c	2021-05-23 21:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:09:35.852+03	2021-05-23 21:09:35.859+03	
8eb92698-2c4b-a3ec-2953-d9b0458e0e3b	2021-05-23 21:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:09:55.853+03	2021-05-23 21:09:55.859+03	
a1e32b9b-9bda-4053-e084-c8c246ffbe08	2021-05-23 21:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:10:05.853+03	2021-05-23 21:10:05.859+03	
56b25344-9e1a-0d39-73e9-031a1fb896c9	2021-05-23 21:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:10:27.853+03	2021-05-23 21:10:27.859+03	
e361301a-ec89-277b-0fe0-d600de87f636	2021-05-23 21:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:10:48.852+03	2021-05-23 21:10:48.859+03	
0a5d8d4a-966b-5e59-dc91-fe5ee29329c6	2021-05-23 21:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:11:08.852+03	2021-05-23 21:11:08.859+03	
021d979c-4fa2-5bbf-0f69-86c8984ea4ab	2021-05-23 21:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:11:29.852+03	2021-05-23 21:11:29.86+03	
dc18c333-1df4-f4b7-796c-168e54072ca1	2021-05-23 21:11:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:11:50.852+03	2021-05-23 21:11:50.86+03	
0db3043e-477d-d851-d62f-366d1e2a07f5	2021-05-23 21:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:12:10.852+03	2021-05-23 21:12:10.859+03	
1c1e20c7-9c39-0d77-1103-5d112081bc2d	2021-05-23 21:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:12:31.852+03	2021-05-23 21:12:31.86+03	
9443e7e5-2288-3f19-d925-23f400025e0f	2021-05-23 21:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:12:52.853+03	2021-05-23 21:12:52.859+03	
b91b082c-5028-d34c-ae4e-a465339abb85	2021-05-23 21:13:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:13:13.853+03	2021-05-23 21:13:13.859+03	
5844927c-9157-776a-7d1a-9e9aea33f176	2021-05-23 21:13:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:13:34.853+03	2021-05-23 21:13:34.861+03	
94786688-6ade-0eae-2c69-9f2020a9bbf0	2021-05-23 21:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:13:55.853+03	2021-05-23 21:13:55.863+03	
f96319a0-03ca-9780-b312-f0dd88c16748	2021-05-23 21:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:14:15.853+03	2021-05-23 21:14:15.865+03	
eaa9f45d-bef4-6e90-df2d-83050697478d	2021-05-23 21:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:14:35.853+03	2021-05-23 21:14:35.858+03	
5ed0f7a8-d6da-4177-9c28-ae1920e54767	2021-05-23 21:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:14:56.853+03	2021-05-23 21:14:56.868+03	
e84c50c0-aa12-f968-995c-6464438a18c0	2021-05-23 21:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:15:17.853+03	2021-05-23 21:15:17.859+03	
fe7e777d-d3c9-1460-30f8-9cca16b989c3	2021-05-23 21:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:15:37.853+03	2021-05-23 21:15:37.865+03	
50890278-ce7c-acd8-5d13-402a76838132	2021-05-23 21:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:15:57.853+03	2021-05-23 21:15:57.861+03	
ce7e35d6-faaf-1a2a-2a56-07887f1a4130	2021-05-23 21:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:16:18.853+03	2021-05-23 21:16:18.861+03	
c890581c-2887-0913-4290-7c5bcc41ee4b	2021-05-23 21:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:16:38.853+03	2021-05-23 21:16:38.87+03	
875562dd-b780-a505-547b-30b6f7e050a4	2021-05-23 21:16:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:16:59.853+03	2021-05-23 21:16:59.87+03	
815e84f0-24f1-2298-4599-d84504342a7c	2021-05-23 21:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:17:19.853+03	2021-05-23 21:17:19.86+03	
642b38c8-24a5-0f15-6a30-c1a8321f3668	2021-05-23 21:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:17:39.853+03	2021-05-23 21:17:39.859+03	
69ed9659-c32d-6377-55b7-77f51969f94f	2021-05-23 21:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:18:00.853+03	2021-05-23 21:18:00.865+03	
4b380541-8d66-d803-09af-b6985f8536ef	2021-05-23 21:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:18:21.853+03	2021-05-23 21:18:21.877+03	
bb823f65-a861-9c63-5605-02094866f472	2021-05-23 21:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:18:42.853+03	2021-05-23 21:18:42.86+03	
42bf78c5-4eb8-94f4-9a6b-bca706f806e4	2021-05-23 21:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:19:03.852+03	2021-05-23 21:19:03.859+03	
205bba3d-3008-176d-58c1-621f7dee71cb	2021-05-23 21:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:19:13.853+03	2021-05-23 21:19:13.861+03	
1c9598a3-2c13-e8c4-7ab1-e891e9395f20	2021-05-23 21:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:19:23.853+03	2021-05-23 21:19:23.86+03	
d58ca09b-c2dc-dd98-5259-bc32dc0806ef	2021-05-23 21:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:19:34.852+03	2021-05-23 21:19:34.859+03	
38d8ce7f-f83c-1880-9f24-01d620b58812	2021-05-23 21:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:19:44.852+03	2021-05-23 21:19:44.859+03	
5f8c2e84-c69c-da07-e0e4-e4dd2290d32f	2021-05-23 21:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:19:54.853+03	2021-05-23 21:19:54.859+03	
429f0870-f101-fad8-3dea-3b0a6525b242	2021-05-23 21:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 21:20:00.852+03	2021-05-23 21:20:00.857+03	ERROR
11343fd0-3a34-37df-fae4-ca370048f2aa	2021-05-23 21:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:20:04.853+03	2021-05-23 21:20:04.859+03	
55dd3b41-8e42-3660-95ac-72bab16997cb	2021-05-23 21:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:20:15.852+03	2021-05-23 21:20:15.859+03	
6b902250-fc4d-64af-4cd9-433272b0ce14	2021-05-23 21:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:20:25.853+03	2021-05-23 21:20:25.859+03	
2b8d26e9-5245-5d08-0a2b-b9384ee5522f	2021-05-23 21:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:20:35.853+03	2021-05-23 21:20:35.859+03	
914dc5f7-0770-76e3-ab4d-c828e4bf5b73	2021-05-23 21:20:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:20:46.852+03	2021-05-23 21:20:46.87+03	
487d84c5-af3f-0cd0-4885-150a17bd4df8	2021-05-23 21:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:20:56.852+03	2021-05-23 21:20:56.86+03	
5d3f0a45-1fd0-3c4f-36d8-d6e7359d9266	2021-05-23 21:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:21:06.852+03	2021-05-23 21:21:06.86+03	
a89e1c5d-b1a2-f7b5-06f1-9cbe0d020c22	2021-05-23 21:21:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:21:16.852+03	2021-05-23 21:21:16.858+03	
642d3343-329b-5cf5-c817-b35b48ec4a6a	2021-05-23 21:21:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:21:26.854+03	2021-05-23 21:21:26.86+03	
549ddd96-c3f0-325b-7f1b-4671f1a06757	2021-05-23 21:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:21:37.853+03	2021-05-23 21:21:37.864+03	
83a3edf7-5502-df8b-78c0-67c4968e332a	2021-05-23 21:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:21:48.853+03	2021-05-23 21:21:48.87+03	
388a12e8-45d9-0476-68bd-2a47035d47ea	2021-05-23 21:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:21:58.853+03	2021-05-23 21:21:58.859+03	
1f86c5bc-08c3-b371-1233-e898e7b29229	2021-05-23 21:22:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:22:09.853+03	2021-05-23 21:22:09.858+03	
332394ef-3780-be2b-9af2-66b90f138e5d	2021-05-23 21:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:22:19.853+03	2021-05-23 21:22:19.859+03	
bb798231-f336-407e-0ee6-671f8122f7ed	2021-05-23 21:22:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:22:29.853+03	2021-05-23 21:22:29.859+03	
27a0477a-6eff-6b4b-033f-64d2a27ceec3	2021-05-23 21:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:22:40.852+03	2021-05-23 21:22:40.858+03	
075234c4-654f-c3e3-200a-db856a4a3b98	2021-05-23 21:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:22:50.853+03	2021-05-23 21:22:50.861+03	
3a9d1673-9da6-622d-83be-c3ee5356f1aa	2021-05-23 21:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:23:00.853+03	2021-05-23 21:23:00.858+03	
64e2a117-406d-1dc9-0587-00dd9239c547	2021-05-23 21:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:23:10.853+03	2021-05-23 21:23:10.859+03	
ebaebb2d-a8a2-d493-ab95-5999d117d882	2021-05-23 21:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:23:20.853+03	2021-05-23 21:23:20.858+03	
7077d977-c735-842c-35ec-1b24c6d67f34	2021-05-23 21:23:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:23:41.853+03	2021-05-23 21:23:41.877+03	
daa6b0a0-4f91-6481-00f7-4f4f4b7e2d28	2021-05-23 21:24:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:24:01.853+03	2021-05-23 21:24:01.859+03	
6f88936a-6b43-83eb-7e61-94c9901d92b8	2021-05-23 21:24:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:24:21.853+03	2021-05-23 21:24:21.86+03	
80e057a7-1e9a-6670-81f5-5c7f53da0a85	2021-05-23 21:24:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:24:42.852+03	2021-05-23 21:24:42.859+03	
0002949d-718d-d407-0b27-6c724e517ca5	2021-05-23 21:25:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:25:02.853+03	2021-05-23 21:25:02.873+03	
5c2a9a18-c4ad-7a9f-ee55-04be50dc4da1	2021-05-23 21:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:25:23.852+03	2021-05-23 21:25:23.859+03	
7c037b84-8202-358f-2aff-ee58a979095d	2021-05-23 21:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:25:43.852+03	2021-05-23 21:25:43.858+03	
74c6436e-736f-cc2c-1bcb-aed97d807fca	2021-05-23 21:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:26:03.852+03	2021-05-23 21:26:03.858+03	
adf3bdd7-dc1b-9c5c-4a75-c1d186d68718	2021-05-23 21:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:26:23.853+03	2021-05-23 21:26:23.86+03	
66ccd5e4-7b95-edee-eac9-d54ed9ed5811	2021-05-23 21:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:26:45.853+03	2021-05-23 21:26:45.859+03	
8f53f62f-b532-3529-ccb1-af3c5c166846	2021-05-23 21:27:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:27:06.852+03	2021-05-23 21:27:06.858+03	
7e10dc91-6883-f68d-116f-7ecec33ad1cb	2021-05-23 21:27:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:27:27.853+03	2021-05-23 21:27:27.859+03	
79dcc073-1734-7259-da8d-6133a2ff6bcc	2021-05-23 21:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:27:48.853+03	2021-05-23 21:27:48.859+03	
081e476c-ca74-c291-4dc6-67f70d5235b8	2021-05-23 21:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:28:09.852+03	2021-05-23 21:28:09.858+03	
bece25d9-c4a0-e7b7-e0cc-3d1223e83354	2021-05-23 21:28:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:28:29.852+03	2021-05-23 21:28:29.868+03	
3118be97-4733-b635-d3ed-31b5a015e2fe	2021-05-23 21:28:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:28:49.853+03	2021-05-23 21:28:49.859+03	
2732271c-92d9-4645-1128-64e826422afa	2021-05-23 21:29:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:29:10.852+03	2021-05-23 21:29:10.859+03	
d6a8bacb-5b07-4517-9240-02e85e36931c	2021-05-23 21:29:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:29:30.852+03	2021-05-23 21:29:30.859+03	
0246951c-27bc-89f5-9f5b-dd2f8faa470d	2021-05-23 21:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:29:50.853+03	2021-05-23 21:29:50.859+03	
2bfb293e-6593-f636-20dd-c35c0f7da3d2	2021-05-23 21:30:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:30:11.853+03	2021-05-23 21:30:11.86+03	
0e3a9948-1bc6-5a96-42dd-c95563396b98	2021-05-23 21:30:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:30:32.852+03	2021-05-23 21:30:32.859+03	
d2b4e12a-23e0-ccb4-d1e8-b57e93937336	2021-05-23 21:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:30:52.852+03	2021-05-23 21:30:52.859+03	
723fca71-a4f1-918a-e0db-48a13dbb32e6	2021-05-23 21:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:31:12.852+03	2021-05-23 21:31:12.859+03	
1ef10d1b-e040-c359-5516-95b454283082	2021-05-23 21:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:31:32.853+03	2021-05-23 21:31:32.859+03	
d699a56e-5f73-234b-45a2-2e2975c1b392	2021-05-23 21:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:31:53.852+03	2021-05-23 21:31:53.866+03	
b9f87629-9e28-91cd-63e4-53b93ec3edbd	2021-05-23 21:32:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:32:13.852+03	2021-05-23 21:32:13.871+03	
60378a13-1000-9e77-5905-30b2953b4058	2021-05-23 21:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:32:33.853+03	2021-05-23 21:32:33.86+03	
b2f4e1ba-7953-129c-9a64-e01091d17077	2021-05-23 21:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:32:54.852+03	2021-05-23 21:32:54.861+03	
86150755-758a-46c6-5f70-820ea588a8ab	2021-05-23 21:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:33:14.853+03	2021-05-23 21:33:14.859+03	
3b26dfb1-5868-9f79-7a01-63d88cbbfbd7	2021-05-23 21:33:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:33:36.852+03	2021-05-23 21:33:36.859+03	
a62652ce-4496-a2af-5e37-e9578f468e73	2021-05-23 21:33:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:33:56.854+03	2021-05-23 21:33:56.861+03	
d2f78efa-d6c9-686e-6f7b-2aaabe557117	2021-05-23 21:34:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:34:17.852+03	2021-05-23 21:34:17.858+03	
9272a8e4-3275-5673-e1b1-ec98310be396	2021-05-23 21:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:34:37.852+03	2021-05-23 21:34:37.86+03	
09ac0d84-52c0-df10-0c10-974776d148bf	2021-05-23 21:34:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:34:57.853+03	2021-05-23 21:34:57.865+03	
01419750-f38b-44f1-9388-f4dab06c12ac	2021-05-23 21:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:35:18.852+03	2021-05-23 21:35:18.859+03	
646a1547-3b7f-cf76-5b32-554e96aff50b	2021-05-23 21:35:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:35:39.853+03	2021-05-23 21:35:39.859+03	
93ba4ae1-c94f-55ed-2760-d5a724260c9f	2021-05-23 21:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:36:00.853+03	2021-05-23 21:36:00.86+03	
55e18333-6d7a-7c73-f032-52797f71f66d	2021-05-23 21:36:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:36:22.852+03	2021-05-23 21:36:22.862+03	
88bc35e0-dbb8-1ea0-c2c0-64a0d8c3faa0	2021-05-23 21:36:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:36:42.852+03	2021-05-23 21:36:42.859+03	
d502765d-144f-1028-75f9-99b0a3306a4f	2021-05-23 21:37:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:37:02.853+03	2021-05-23 21:37:02.859+03	
3bb197b0-9b03-d0a6-ea37-148acfd5c457	2021-05-23 21:37:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:37:22.853+03	2021-05-23 21:37:22.859+03	
0fb1f8b7-049c-ffa8-0efa-24016480d8c5	2021-05-23 21:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:37:43.852+03	2021-05-23 21:37:43.865+03	
70f4191c-2914-23ba-0907-8f96154cd70f	2021-05-23 21:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:38:03.853+03	2021-05-23 21:38:03.867+03	
1f61abc9-5fff-b716-6d4a-7517bae57f08	2021-05-23 21:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:38:23.853+03	2021-05-23 21:38:23.859+03	
602266c9-25cb-0d86-7c80-eb55f2feccde	2021-05-23 21:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:38:45.852+03	2021-05-23 21:38:45.859+03	
6e36d9b9-f281-5ae4-915d-069ce25a9215	2021-05-23 21:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:39:05.852+03	2021-05-23 21:39:05.872+03	
5a55c005-2402-6938-cb12-72d5589027e8	2021-05-23 21:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:39:25.853+03	2021-05-23 21:39:25.858+03	
345080de-2d37-69ce-ffbe-34e131e04013	2021-05-23 21:39:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:39:56.854+03	2021-05-23 21:39:56.86+03	
6fe2bf8d-c3b7-7c6f-f4db-22574a1c8f40	2021-05-23 21:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:40:07.852+03	2021-05-23 21:40:07.858+03	
060b8bd8-cf89-3ead-af55-d3bb0cce6c4f	2021-05-23 21:40:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:40:27.853+03	2021-05-23 21:40:27.87+03	
a4fb3af1-7ea3-4174-872f-065b8d4d7b5f	2021-05-23 21:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:40:48.852+03	2021-05-23 21:40:48.859+03	
90ff016a-e935-97cf-d3e1-f3631906b40a	2021-05-23 21:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:41:09.853+03	2021-05-23 21:41:09.873+03	
1baf3d24-d50c-1f9e-d68b-ae59d31f859a	2021-05-23 21:41:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:41:30.852+03	2021-05-23 21:41:30.859+03	
8815b226-1dbf-aa53-d06e-ad704c2099e9	2021-05-23 21:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:41:50.853+03	2021-05-23 21:41:50.859+03	
100bcd27-d69c-1281-215e-91d2883284de	2021-05-23 21:42:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:42:11.852+03	2021-05-23 21:42:11.859+03	
a9805889-8dc2-be50-713f-9f2e8bb42821	2021-05-23 21:42:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:42:31.852+03	2021-05-23 21:42:31.875+03	
0ea74088-83e2-36ce-5d45-d4743add533c	2021-05-23 21:42:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:42:51.854+03	2021-05-23 21:42:51.87+03	
81c01166-90e0-5ec6-a259-43d96c9b344f	2021-05-23 21:43:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:43:12.852+03	2021-05-23 21:43:12.859+03	
ac179a89-6600-d9b1-8cc5-7c6d8faa397e	2021-05-23 21:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:43:32.852+03	2021-05-23 21:43:32.86+03	
15787341-fa69-035c-49be-7d679f24967d	2021-05-23 21:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:43:52.852+03	2021-05-23 21:43:52.859+03	
d85f58ae-bb8e-dc5c-cc1c-c67642106ec3	2021-05-23 21:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:44:12.853+03	2021-05-23 21:44:12.86+03	
d8909775-3a51-9a01-47ca-9e802f3f884e	2021-05-23 21:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:44:34.852+03	2021-05-23 21:44:34.859+03	
e3d9df8b-be03-e757-71b6-be2066d5cb01	2021-05-23 21:23:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:23:31.853+03	2021-05-23 21:23:31.862+03	
76ae4f26-917d-41d4-db2c-e5b0c288f660	2021-05-23 21:23:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:23:51.853+03	2021-05-23 21:23:51.86+03	
92dcc5aa-445c-0e38-be41-1ef0266741b3	2021-05-23 21:24:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:24:11.853+03	2021-05-23 21:24:11.859+03	
6aada8ca-dd25-a467-680d-f7065a3352ea	2021-05-23 21:24:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:24:32.852+03	2021-05-23 21:24:32.859+03	
d3a2725e-411a-e9b8-b1e4-0675b8be5790	2021-05-23 21:24:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:24:52.853+03	2021-05-23 21:24:52.859+03	
d57bf999-bc0d-bd32-e4d7-2cd81c27d66c	2021-05-23 21:25:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:25:12.853+03	2021-05-23 21:25:12.859+03	
5066f108-500d-f004-9f73-73e33a122ca5	2021-05-23 21:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:25:33.852+03	2021-05-23 21:25:33.859+03	
494ec142-9df4-81e1-3296-6d8ff07431df	2021-05-23 21:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:25:53.852+03	2021-05-23 21:25:53.859+03	
6a123941-6eb8-e06f-a293-afaaca675b2e	2021-05-23 21:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:26:13.852+03	2021-05-23 21:26:13.858+03	
30d5b776-5715-2003-0ea4-5c95390d9162	2021-05-23 21:26:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:26:34.853+03	2021-05-23 21:26:34.86+03	
f45e0da6-3e2c-15be-48e6-8887b9f78a0c	2021-05-23 21:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:26:55.853+03	2021-05-23 21:26:55.876+03	
f49a7fdb-c00d-68e3-5fe3-c7082b8bb141	2021-05-23 21:27:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:27:16.853+03	2021-05-23 21:27:16.864+03	
18462a5f-fca6-500e-024e-dc4a9b08c95a	2021-05-23 21:27:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:27:37.853+03	2021-05-23 21:27:37.859+03	
9efb4369-d530-e2bd-baed-d9c0ce7191bb	2021-05-23 21:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:27:59.852+03	2021-05-23 21:27:59.858+03	
36caf94a-68ff-c4e0-fc0b-c8cc76d31c93	2021-05-23 21:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:28:19.852+03	2021-05-23 21:28:19.859+03	
24588cc3-9846-e1ad-c52a-2026944b7dd1	2021-05-23 21:28:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:28:39.852+03	2021-05-23 21:28:39.859+03	
d4ad31b7-72cd-bf78-d431-bfba6372a0d6	2021-05-23 21:28:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:28:59.853+03	2021-05-23 21:28:59.86+03	
5fe09c6b-ed0b-3541-dd57-4f549cd1f198	2021-05-23 21:29:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:29:20.852+03	2021-05-23 21:29:20.864+03	
1c9f9e93-abbd-1d8f-892b-ef118b5cf3b2	2021-05-23 21:29:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:29:40.852+03	2021-05-23 21:29:40.859+03	
d7819d3e-eb02-3b7a-4cc5-f3e2764f4cde	2021-05-23 21:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 21:30:00.853+03	2021-05-23 21:30:00.858+03	ERROR
4b86fcdc-5cd4-535e-bfef-88925ceea358	2021-05-23 21:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:30:00.853+03	2021-05-23 21:30:00.869+03	
e2776cbf-d2f2-9593-e731-de27597ef016	2021-05-23 21:30:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:30:21.854+03	2021-05-23 21:30:21.86+03	
ca7585b6-ba71-06c0-e92b-aee09afb58ef	2021-05-23 21:30:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:30:42.852+03	2021-05-23 21:30:42.858+03	
0559a0f3-6ed1-03b2-c9b8-491bc0159770	2021-05-23 21:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:31:02.852+03	2021-05-23 21:31:02.859+03	
830318ab-daf0-cff2-5e9c-d29c12b71a2b	2021-05-23 21:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:31:22.852+03	2021-05-23 21:31:22.864+03	
291203a0-1bb4-3b7a-5c60-170fc0e162e8	2021-05-23 21:31:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:31:42.853+03	2021-05-23 21:31:42.86+03	
26747d72-9a8a-442b-26e6-5872584f4643	2021-05-23 21:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:32:03.852+03	2021-05-23 21:32:03.861+03	
58e4c0d8-fbf6-c26d-cab4-fe48bcb7d472	2021-05-23 21:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:32:23.852+03	2021-05-23 21:32:23.859+03	
d6a4e6ca-548d-b69b-1d54-a1232ec3f171	2021-05-23 21:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:32:43.853+03	2021-05-23 21:32:43.859+03	
a5aea53f-6559-434b-cbfe-240a64b05426	2021-05-23 21:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:33:04.852+03	2021-05-23 21:33:04.859+03	
4760d6f6-1a19-5017-daf4-81b196c773ea	2021-05-23 21:33:25.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:33:25.858+03	2021-05-23 21:33:25.865+03	
53258ee7-3815-85ce-ef0b-52d984d23487	2021-05-23 21:33:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:33:46.853+03	2021-05-23 21:33:46.861+03	
9da51635-af93-ecc6-46ff-2b5d10df1622	2021-05-23 21:34:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:34:07.852+03	2021-05-23 21:34:07.859+03	
20ca9c80-bf52-1f85-fd76-32e894900775	2021-05-23 21:34:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:34:27.852+03	2021-05-23 21:34:27.858+03	
b2e1a447-1f01-b8ae-f76c-0e779487980a	2021-05-23 21:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:34:47.852+03	2021-05-23 21:34:47.859+03	
6dbcf7a1-f068-6109-d5bc-39bb84591718	2021-05-23 21:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:35:08.852+03	2021-05-23 21:35:08.872+03	
e363c25d-ff53-686a-71dd-22c3f1ce7d33	2021-05-23 21:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:35:28.853+03	2021-05-23 21:35:28.859+03	
f4d1173f-12b6-07e2-821c-8bdf076f7711	2021-05-23 21:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:35:49.853+03	2021-05-23 21:35:49.859+03	
d7ab02e1-a8d6-e5fd-b34a-a0ea45392fbe	2021-05-23 21:36:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:36:11.854+03	2021-05-23 21:36:11.861+03	
9e34dd8f-6a42-cc1a-5a88-264d53645eef	2021-05-23 21:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:36:32.852+03	2021-05-23 21:36:32.859+03	
63540883-b140-f24c-53f8-41b07165f5b8	2021-05-23 21:36:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:36:52.853+03	2021-05-23 21:36:52.87+03	
cb2f35f5-6719-243b-c622-edef90fa67c1	2021-05-23 21:37:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:37:12.853+03	2021-05-23 21:37:12.859+03	
ef1a204d-3af5-0d7c-201a-de5c3dab183d	2021-05-23 21:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:37:33.852+03	2021-05-23 21:37:33.859+03	
95924079-6e2a-76c8-9ed3-f0a4950ab92b	2021-05-23 21:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:37:53.853+03	2021-05-23 21:37:53.859+03	
11e30444-9e24-8fd7-a1fb-02e28316556c	2021-05-23 21:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:38:13.853+03	2021-05-23 21:38:13.859+03	
1c49e268-f7be-2ce9-c917-43edd1834b2b	2021-05-23 21:38:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:38:34.853+03	2021-05-23 21:38:34.876+03	
144f41a5-96c5-8f47-b623-9a0ee0f0d996	2021-05-23 21:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:38:55.852+03	2021-05-23 21:38:55.861+03	
adb4ebff-778c-aa52-d0bb-648bd008af04	2021-05-23 21:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:39:15.853+03	2021-05-23 21:39:15.872+03	
b008f130-4b58-fd53-a942-75520fed5eb1	2021-05-23 21:39:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:39:36.852+03	2021-05-23 21:39:36.863+03	
1b0ee232-5e7b-7bc2-65a7-494a9cbaee41	2021-05-23 21:39:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:39:46.853+03	2021-05-23 21:39:46.87+03	
d5149ef4-1c6e-d5ed-aa54-d089b64519da	2021-05-23 21:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 21:40:00.852+03	2021-05-23 21:40:00.864+03	ERROR
1469a75a-53c0-19cf-e92a-a457d9732813	2021-05-23 21:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:40:17.853+03	2021-05-23 21:40:17.859+03	
853403c6-c55d-dd23-d5bf-ad95e1319a25	2021-05-23 21:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:40:38.852+03	2021-05-23 21:40:38.859+03	
c8a88f7b-effd-37b9-a1e1-9207d811783d	2021-05-23 21:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:40:58.853+03	2021-05-23 21:40:58.873+03	
2c1ea4a7-c1e8-4b91-dd33-39cb3794f849	2021-05-23 21:41:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:41:20.852+03	2021-05-23 21:41:20.858+03	
eaaef766-e9ef-7d0d-67d8-f022a3331ca9	2021-05-23 21:41:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:41:40.853+03	2021-05-23 21:41:40.859+03	
ac2f9498-a864-3a1f-22d4-1a098bfac9b7	2021-05-23 21:42:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:42:01.852+03	2021-05-23 21:42:01.86+03	
15763f9c-6ec3-1129-70cc-1fcdcbe047ef	2021-05-23 21:42:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:42:21.852+03	2021-05-23 21:42:21.859+03	
72a8be3a-bbcc-fa85-7fb9-a47b87dfbdea	2021-05-23 21:42:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:42:41.852+03	2021-05-23 21:42:41.859+03	
64ef34ee-9f23-cd5f-bbbd-5cf592343815	2021-05-23 21:43:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:43:01.854+03	2021-05-23 21:43:01.861+03	
8f2feffc-381f-e93d-320a-3e0a712fdd28	2021-05-23 21:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:43:22.852+03	2021-05-23 21:43:22.869+03	
13f578e6-eb85-4404-4f95-cc6bf042968f	2021-05-23 21:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:43:42.852+03	2021-05-23 21:43:42.858+03	
6fbbebc3-8475-a853-1c7d-8270f5e93333	2021-05-23 21:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:44:02.852+03	2021-05-23 21:44:02.861+03	
676bf863-1efe-95d7-e5be-ea319cb65632	2021-05-23 21:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:44:23.853+03	2021-05-23 21:44:23.885+03	
0505dc0b-6ded-744f-de6e-14f6cd5d0abf	2021-05-23 21:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:44:44.853+03	2021-05-23 21:44:44.86+03	
5be34f45-9fc6-68e9-9019-0f50753a067d	2021-05-23 21:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:45:05.852+03	2021-05-23 21:45:05.859+03	
87acb321-70fb-d3a1-d790-c6fa68432ee9	2021-05-23 21:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:45:25.852+03	2021-05-23 21:45:25.859+03	
92e820db-b55c-170c-60c8-fc4f89e37ee0	2021-05-23 21:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:45:45.852+03	2021-05-23 21:45:45.859+03	
a90374db-f7fc-d9b5-918a-29ab16c7e2dc	2021-05-23 21:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:46:05.853+03	2021-05-23 21:46:05.859+03	
288e1ff8-7a96-de17-f4c9-a8b16e0ee117	2021-05-23 21:46:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:46:26.852+03	2021-05-23 21:46:26.858+03	
5aa4fcca-bbd0-976f-fe24-152e4d06c5d3	2021-05-23 21:46:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:46:46.852+03	2021-05-23 21:46:46.859+03	
7009cad4-6a27-180d-76dc-8889123352bc	2021-05-23 21:47:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:47:06.852+03	2021-05-23 21:47:06.861+03	
4d2d5c20-e792-9c8f-36a8-701659e3fbc7	2021-05-23 21:47:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:47:26.852+03	2021-05-23 21:47:26.859+03	
72c78412-4803-be40-01f4-8dd151816e9b	2021-05-23 21:47:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:47:47.852+03	2021-05-23 21:47:47.87+03	
618737db-b603-5074-5c2d-251b9dc93bd9	2021-05-23 21:48:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:48:07.853+03	2021-05-23 21:48:07.859+03	
d3459098-deb0-87f0-070e-b6a326b0cd7a	2021-05-23 21:48:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:48:27.853+03	2021-05-23 21:48:27.865+03	
0854553b-e0d2-9721-94f4-6990ea960667	2021-05-23 21:48:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:48:48.852+03	2021-05-23 21:48:48.859+03	
6c8b30ea-3dd7-7f10-0fcd-89c7b250f9c8	2021-05-23 21:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:49:08.853+03	2021-05-23 21:49:08.862+03	
78e8944b-f47a-1352-ffd1-44dd68264761	2021-05-23 21:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:49:29.852+03	2021-05-23 21:49:29.859+03	
99c53856-019f-e6c9-0d75-1f426b792a66	2021-05-23 21:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:49:49.853+03	2021-05-23 21:49:49.86+03	
257923e3-6526-415c-36df-eb3d1a32971e	2021-05-23 21:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 21:50:00.853+03	2021-05-23 21:50:00.859+03	ERROR
b5838384-98b9-dc77-a8f1-96bb28173976	2021-05-23 21:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:50:19.853+03	2021-05-23 21:50:19.859+03	
02867f01-4ba3-af02-077e-ee4e94450e9a	2021-05-23 21:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:50:39.853+03	2021-05-23 21:50:39.864+03	
c232056d-fe22-b811-5b27-151469f38fe8	2021-05-23 21:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:50:59.853+03	2021-05-23 21:50:59.86+03	
8face156-24f2-352c-3823-a90831123e61	2021-05-23 21:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:51:20.853+03	2021-05-23 21:51:20.872+03	
2d43ea88-4d1a-a532-ad78-bf280f5fd1fc	2021-05-23 21:51:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:51:41.853+03	2021-05-23 21:51:41.859+03	
ad8ed7b4-0217-cc4f-78a3-70781b07b835	2021-05-23 21:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:52:02.853+03	2021-05-23 21:52:02.859+03	
33ca6a28-d5d2-4527-de7e-94c2cfce277b	2021-05-23 21:52:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:52:23.852+03	2021-05-23 21:52:23.859+03	
4130620a-c243-f4af-a277-94ec22fc26a9	2021-05-23 21:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:52:43.852+03	2021-05-23 21:52:43.859+03	
ab9a8e86-6d30-7825-3e70-dd62240cf5bd	2021-05-23 21:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:53:03.852+03	2021-05-23 21:53:03.859+03	
e0690629-5ffb-245f-ed14-d0cf7570e585	2021-05-23 21:53:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:53:23.852+03	2021-05-23 21:53:23.859+03	
b3dd8973-bc33-e02a-8944-b2a7fe828f8e	2021-05-23 21:53:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:53:43.852+03	2021-05-23 21:53:43.859+03	
9aef952d-d577-0d45-2dc9-302ac26a640b	2021-05-23 21:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:54:03.852+03	2021-05-23 21:54:03.858+03	
6524e0d4-47d0-1f5c-2a62-b0d118255fbd	2021-05-23 21:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:54:23.852+03	2021-05-23 21:54:23.859+03	
11fab970-31ae-112f-a7c9-88594cc469a5	2021-05-23 21:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:54:44.852+03	2021-05-23 21:54:44.861+03	
b635f0a7-be50-de4b-c8b8-d946c1323634	2021-05-23 21:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:55:05.852+03	2021-05-23 21:55:05.858+03	
77194d0f-fd9f-60b7-bccf-0a5ab2e2935e	2021-05-23 21:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:55:25.852+03	2021-05-23 21:55:25.86+03	
761eda40-7d51-3af7-595e-d258bace9a39	2021-05-23 21:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:55:45.852+03	2021-05-23 21:55:45.87+03	
5c4b9852-ddec-2650-7778-0350ed5c15fe	2021-05-23 21:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:56:05.852+03	2021-05-23 21:56:05.859+03	
609359a2-330a-a9e4-542f-6d41555da062	2021-05-23 21:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:56:25.852+03	2021-05-23 21:56:25.858+03	
c0945bd9-804f-2d62-6d3b-1c545ebbc9c8	2021-05-23 21:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:56:45.853+03	2021-05-23 21:56:45.87+03	
5d7d267c-1811-ecd4-3903-42311db26180	2021-05-23 21:57:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:57:06.852+03	2021-05-23 21:57:06.859+03	
6d68aee8-2f46-ddca-c6bd-42724efebffe	2021-05-23 21:57:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:57:27.853+03	2021-05-23 21:57:27.859+03	
bd73ad25-20e2-e582-ad79-979c242726b1	2021-05-23 21:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:57:48.853+03	2021-05-23 21:57:48.859+03	
02e9424d-0e8d-b488-2532-90404bc9a2b2	2021-05-23 21:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:58:09.852+03	2021-05-23 21:58:09.859+03	
ea5f87b5-ccf3-6801-f530-b7c9d9609903	2021-05-23 21:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:58:30.852+03	2021-05-23 21:58:30.859+03	
3b1d2222-09ae-f77b-78fc-9588b5985715	2021-05-23 21:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:58:50.852+03	2021-05-23 21:58:50.859+03	
402dba2d-9400-084f-5c96-7c67a4a64904	2021-05-23 21:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:59:10.852+03	2021-05-23 21:59:10.859+03	
e663fb05-ed3a-90f2-7161-63473d1b3544	2021-05-23 21:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:59:30.852+03	2021-05-23 21:59:30.859+03	
7111864d-26f7-9077-1f57-6d2ba997b84c	2021-05-23 21:59:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:59:50.852+03	2021-05-23 21:59:50.858+03	
f2b69e6f-ff5a-ac7c-b9e9-d7448179e8e3	2021-05-23 22:00:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:00:11.853+03	2021-05-23 22:00:11.86+03	
817ab0af-4e04-1dfe-94ae-127b0898838b	2021-05-23 22:00:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:00:31.853+03	2021-05-23 22:00:31.859+03	
a9e998bf-9032-26a3-b3ea-b0d629644752	2021-05-23 22:00:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:00:52.853+03	2021-05-23 22:00:52.86+03	
10ac8ff4-20e3-1389-9a68-8f7f35a2067b	2021-05-23 22:01:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:01:13.852+03	2021-05-23 22:01:13.859+03	
682725cf-d853-9984-b4d9-3e5ee1506209	2021-05-23 22:01:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:01:33.853+03	2021-05-23 22:01:33.86+03	
f8053a07-c9c5-af20-928c-6a879d9f9247	2021-05-23 22:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:01:54.853+03	2021-05-23 22:01:54.859+03	
bd1cfdfe-4aa9-ba0c-c68e-de346ea0ef25	2021-05-23 22:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:02:15.853+03	2021-05-23 22:02:15.859+03	
a464b9ae-b36a-149d-b07a-a708e9ec7b38	2021-05-23 22:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:02:35.853+03	2021-05-23 22:02:35.859+03	
841dd8c9-6c5c-a08b-587d-ed008ec4848a	2021-05-23 22:02:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:02:56.854+03	2021-05-23 22:02:56.86+03	
efa84c76-1081-14ea-4899-17eb428d6cf8	2021-05-23 22:03:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:03:17.853+03	2021-05-23 22:03:17.861+03	
e98a892e-565b-832f-c6b1-2d45e7160188	2021-05-23 22:03:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:03:37.853+03	2021-05-23 22:03:37.86+03	
ca0eef61-3055-4684-047a-85ba243a59df	2021-05-23 22:03:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:03:58.852+03	2021-05-23 22:03:58.866+03	
8803f2bd-856d-a8f7-0aa4-f907ad82ddc3	2021-05-23 22:04:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:04:18.853+03	2021-05-23 22:04:18.86+03	
a6a2c814-bfd2-79c8-2e90-a193a235ee97	2021-05-23 22:04:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:04:39.853+03	2021-05-23 22:04:39.861+03	
ca966b38-56d5-1cb3-7797-f0320a50ea86	2021-05-23 22:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:05:00.853+03	2021-05-23 22:05:00.866+03	
067f1330-d35d-a551-e6a3-75c908dfdfd3	2021-05-23 22:05:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:05:21.853+03	2021-05-23 22:05:21.86+03	
a2d7a3f7-4d09-f6a0-cba7-d212e7eb5f68	2021-05-23 21:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:44:55.852+03	2021-05-23 21:44:55.859+03	
f6627531-f167-9340-371a-4f72fad499d8	2021-05-23 21:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:45:15.852+03	2021-05-23 21:45:15.859+03	
c5e92251-ab8a-4a45-bdca-560443bce69d	2021-05-23 21:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:45:35.852+03	2021-05-23 21:45:35.859+03	
ff1b1931-6ce7-c684-0741-b1b3c99fa907	2021-05-23 21:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:45:55.852+03	2021-05-23 21:45:55.86+03	
807e4894-78ba-6acf-b3b1-589568038e5c	2021-05-23 21:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:46:15.853+03	2021-05-23 21:46:15.859+03	
7ea68008-fc96-b417-87eb-0e02f289735d	2021-05-23 21:46:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:46:36.852+03	2021-05-23 21:46:36.863+03	
7b8f1bed-484d-2853-fcb8-51245189bcea	2021-05-23 21:46:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:46:56.852+03	2021-05-23 21:46:56.859+03	
48e179d9-f040-157d-edaf-84e93c396959	2021-05-23 21:47:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:47:16.852+03	2021-05-23 21:47:16.859+03	
08c14ba0-bc90-6756-e48d-bde107121f29	2021-05-23 21:47:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:47:36.854+03	2021-05-23 21:47:36.86+03	
e59ba288-3bee-6907-481a-5d7a37bcef32	2021-05-23 21:47:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:47:57.852+03	2021-05-23 21:47:57.859+03	
559bceaf-bdd4-27bf-1260-1593cfd18a1a	2021-05-23 21:48:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:48:17.853+03	2021-05-23 21:48:17.86+03	
9b66710c-0fd4-f205-d9f4-2c0f9bc16f48	2021-05-23 21:48:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:48:38.852+03	2021-05-23 21:48:38.858+03	
4aef1aa7-0e4a-5e4c-934d-2b4fbcf40e56	2021-05-23 21:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:48:58.853+03	2021-05-23 21:48:58.868+03	
a43f352c-ef18-f51e-3473-9a23b59b8353	2021-05-23 21:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:49:18.853+03	2021-05-23 21:49:18.859+03	
d5f3b3d2-fa47-329d-5c72-193d84fc5f30	2021-05-23 21:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:49:39.853+03	2021-05-23 21:49:39.858+03	
13cfe1a3-e6dd-04e6-eac1-80c22fa644c1	2021-05-23 21:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:49:59.853+03	2021-05-23 21:49:59.875+03	
5fad28a8-6561-0870-2280-61d04ae3d09f	2021-05-23 21:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:50:09.853+03	2021-05-23 21:50:09.86+03	
12b3c4ac-3258-8d05-8567-4dcace54cb6b	2021-05-23 21:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:50:29.853+03	2021-05-23 21:50:29.859+03	
4e12b9ad-4311-a948-39e0-05e077f75a3a	2021-05-23 21:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:50:49.853+03	2021-05-23 21:50:49.861+03	
358fac14-179c-bbc5-9cce-f0a515174ac9	2021-05-23 21:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:51:09.853+03	2021-05-23 21:51:09.859+03	
565e88fb-b56c-062a-5ea2-0514db3e1406	2021-05-23 21:51:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:51:31.853+03	2021-05-23 21:51:31.859+03	
d371de17-812c-aeb6-8820-6491915e5c62	2021-05-23 21:51:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:51:52.852+03	2021-05-23 21:51:52.859+03	
3c7523a5-7596-2960-55cb-697648c9d5c0	2021-05-23 21:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:52:12.853+03	2021-05-23 21:52:12.858+03	
be470654-07ef-3037-c74f-948a9315c9e2	2021-05-23 21:52:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:52:33.852+03	2021-05-23 21:52:33.859+03	
4518bc96-9d9a-3315-8d45-efe729d6865f	2021-05-23 21:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:52:53.852+03	2021-05-23 21:52:53.859+03	
3f394fff-9ba3-27a3-95b6-742bfaae0e6f	2021-05-23 21:53:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:53:13.852+03	2021-05-23 21:53:13.869+03	
e7957fde-4844-2c5d-7669-640697d36e8d	2021-05-23 21:53:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:53:33.852+03	2021-05-23 21:53:33.859+03	
b7c761be-12ee-8a64-c708-ae57ab13f10e	2021-05-23 21:53:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:53:53.852+03	2021-05-23 21:53:53.859+03	
d37722aa-b67e-0884-16b9-9fef1646b9c4	2021-05-23 21:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:54:13.852+03	2021-05-23 21:54:13.858+03	
1303b512-07ec-f025-f0d3-bbd085c80944	2021-05-23 21:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:54:33.853+03	2021-05-23 21:54:33.859+03	
1ef31c6e-25e3-d3a9-d22a-8c956f1bddd9	2021-05-23 21:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:54:54.853+03	2021-05-23 21:54:54.861+03	
5ee03a96-88b1-89f3-e0a6-8f6162980a64	2021-05-23 21:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:55:15.852+03	2021-05-23 21:55:15.858+03	
2a382f9d-d7f6-aa0a-53a4-30d6a8168956	2021-05-23 21:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:55:35.852+03	2021-05-23 21:55:35.859+03	
d84ecaba-e80b-76d1-0a2e-f3efd5bc3a43	2021-05-23 21:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:55:55.852+03	2021-05-23 21:55:55.859+03	
b21f1b9d-d27b-99b5-f938-eaf05cdaa7be	2021-05-23 21:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:56:15.852+03	2021-05-23 21:56:15.858+03	
71cea9c2-f9c3-eccf-2eee-84ec857361a4	2021-05-23 21:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:56:35.852+03	2021-05-23 21:56:35.859+03	
cbed1f56-d1aa-c04e-1546-c3b60f464a44	2021-05-23 21:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:56:55.853+03	2021-05-23 21:56:55.859+03	
e9f1496a-e877-35a0-e31e-f2b065082426	2021-05-23 21:57:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:57:16.854+03	2021-05-23 21:57:16.862+03	
a9b9deb2-6ded-91b1-4892-0fa8f2af1647	2021-05-23 21:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:57:38.852+03	2021-05-23 21:57:38.858+03	
847edd48-376a-8b9b-0911-8c5e89e53243	2021-05-23 21:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:57:59.852+03	2021-05-23 21:57:59.86+03	
eceb5f3b-9fd2-0234-6b18-bb8e5f2defdb	2021-05-23 21:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:58:19.853+03	2021-05-23 21:58:19.859+03	
81b0a2b6-72e7-8fc9-7df6-d2839d77ebbd	2021-05-23 21:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:58:40.852+03	2021-05-23 21:58:40.859+03	
91d7669e-227c-f6a1-edd5-83468ab1190f	2021-05-23 21:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:59:00.852+03	2021-05-23 21:59:00.86+03	
a3151439-9a10-2b3f-2578-4da5b33168c1	2021-05-23 21:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:59:20.852+03	2021-05-23 21:59:20.859+03	
a2d07b60-a209-f1b5-148b-274f0332b429	2021-05-23 21:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 21:59:40.852+03	2021-05-23 21:59:40.859+03	
7c634c50-8147-2e8f-7844-0dc05a048d28	2021-05-23 22:00:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:00:00.853+03	2021-05-23 22:00:00.861+03	
b44eceac-bdb6-16f4-9290-ca0a655df9d5	2021-05-23 22:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 22:00:00.853+03	2021-05-23 22:00:00.871+03	ERROR
6fa5f2e9-9da1-83be-5820-be9f6e186460	2021-05-23 22:00:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:00:21.853+03	2021-05-23 22:00:21.859+03	
11e8f3db-1259-cce6-d726-44a6e8a5a380	2021-05-23 22:00:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:00:41.854+03	2021-05-23 22:00:41.86+03	
a3cc6dbd-082b-e887-a321-0fdf2406f501	2021-05-23 22:01:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:01:03.852+03	2021-05-23 22:01:03.859+03	
aa8bbe11-a99c-90f2-1844-956851088708	2021-05-23 22:01:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:01:23.852+03	2021-05-23 22:01:23.86+03	
3f14390e-bf9a-2efb-2512-30de5e3bf28e	2021-05-23 22:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:01:43.853+03	2021-05-23 22:01:43.859+03	
4e33588f-0355-746b-aec0-ddc7ae19e13b	2021-05-23 22:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:02:05.852+03	2021-05-23 22:02:05.859+03	
42976974-45dc-94b8-cb90-f4ba1ba71b6a	2021-05-23 22:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:02:25.853+03	2021-05-23 22:02:25.859+03	
00907c6e-87d7-38a6-4d87-aab69e0264e0	2021-05-23 22:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:02:45.853+03	2021-05-23 22:02:45.862+03	
1235eba9-494f-98ba-00c7-9c5d380e04ef	2021-05-23 22:03:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:03:07.853+03	2021-05-23 22:03:07.861+03	
71baad43-25e6-15b2-9a5b-04982a2d1acd	2021-05-23 22:03:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:03:27.853+03	2021-05-23 22:03:27.861+03	
31b0f7a7-4e47-90c7-fe4b-da55153d8595	2021-05-23 22:03:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:03:47.853+03	2021-05-23 22:03:47.862+03	
ae8ec5dc-150c-9922-a62e-a7278a04f136	2021-05-23 22:04:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:04:08.852+03	2021-05-23 22:04:08.86+03	
3e7c7842-e5a3-704f-6bd0-506b1c2c31f4	2021-05-23 22:04:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:04:28.853+03	2021-05-23 22:04:28.861+03	
e84a67cb-8526-ccce-a39a-f89047e594f9	2021-05-23 22:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:04:50.853+03	2021-05-23 22:04:50.86+03	
1d896d42-5598-d8ec-841c-12ab4137190f	2021-05-23 22:05:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:05:11.853+03	2021-05-23 22:05:11.859+03	
0f77217c-4e54-bd7c-ff56-c4377e8a5447	2021-05-23 22:05:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:05:31.853+03	2021-05-23 22:05:31.862+03	
0b0f69cc-a7bd-80e8-ac3f-3b1b4302405b	2021-05-23 22:05:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:05:41.854+03	2021-05-23 22:05:41.862+03	
f7b5d48a-1a8f-2b32-44ca-a348190aacdc	2021-05-23 22:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:06:03.853+03	2021-05-23 22:06:03.862+03	
41e1789c-75df-b0bf-db7b-d865f0737e22	2021-05-23 22:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:06:23.853+03	2021-05-23 22:06:23.862+03	
81444b3a-a616-2165-5250-8b5945373311	2021-05-23 22:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:06:44.853+03	2021-05-23 22:06:44.861+03	
fc8081d8-3a29-5897-bc0a-1b747d365bc4	2021-05-23 22:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:07:04.853+03	2021-05-23 22:07:04.86+03	
8d2887f6-0972-6e76-920e-90d6b4c90aa2	2021-05-23 22:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:07:25.853+03	2021-05-23 22:07:25.861+03	
a934ca66-0a8c-a138-cbc1-904fca0d4c4b	2021-05-23 22:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:07:45.853+03	2021-05-23 22:07:45.861+03	
585d0b49-089b-e97c-6b52-4047a5c6dfba	2021-05-23 22:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:08:07.853+03	2021-05-23 22:08:07.86+03	
e60eb230-f391-28f8-e539-ee7b3cf1e80d	2021-05-23 22:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:08:28.853+03	2021-05-23 22:08:28.86+03	
e5b733bb-c696-fec5-293a-6fd7c72505d3	2021-05-23 22:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:08:49.853+03	2021-05-23 22:08:49.862+03	
f3516872-6c7a-db14-dbcc-0f4a25af2786	2021-05-23 22:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:09:10.852+03	2021-05-23 22:09:10.858+03	
c3314d10-ccca-fa3f-b5e4-eb2a5b322758	2021-05-23 22:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:09:30.853+03	2021-05-23 22:09:30.861+03	
e39fd81e-c2fb-7c5e-27fb-bcb8746ec5db	2021-05-23 22:09:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:09:51.853+03	2021-05-23 22:09:51.86+03	
2b5bfd4a-20da-b7a0-033c-c9cadd4b1882	2021-05-23 22:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:10:02.852+03	2021-05-23 22:10:02.859+03	
63b9a7be-b213-4ad2-2a49-6f7fb61359b0	2021-05-23 22:10:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:10:23.852+03	2021-05-23 22:10:23.859+03	
cad62288-d291-6ee8-723e-b65d67c6de7c	2021-05-23 22:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:10:43.852+03	2021-05-23 22:10:43.858+03	
2003ff98-8ac3-6aa0-9760-7b344bdce3a7	2021-05-23 22:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:11:03.852+03	2021-05-23 22:11:03.859+03	
e2add59f-7fd8-aef2-0c83-fcefbe66ed31	2021-05-23 22:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:11:24.853+03	2021-05-23 22:11:24.86+03	
958e0dbb-3981-37d3-8d86-6e86a2463492	2021-05-23 22:11:44.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:11:44.853+03	2021-05-23 22:11:44.861+03	
52304113-28ad-4426-7f39-1d8d0de9f3f9	2021-05-23 22:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:12:05.852+03	2021-05-23 22:12:05.858+03	
0da86c1a-bf45-6926-48f3-b08ddfa1dbf8	2021-05-23 22:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:12:25.853+03	2021-05-23 22:12:25.858+03	
6d2944b4-32cf-8ef2-2963-b0749cc31705	2021-05-23 22:12:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:12:46.852+03	2021-05-23 22:12:46.859+03	
2f18dc79-6487-9b1b-c50b-12cd1879279f	2021-05-23 22:13:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:13:07.852+03	2021-05-23 22:13:07.858+03	
e405a308-d182-0b13-ed73-ea66c2d8c3e9	2021-05-23 22:13:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:13:27.852+03	2021-05-23 22:13:27.859+03	
d4cba01d-13a4-abd7-5a51-d3583021f5ac	2021-05-23 22:13:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:13:48.852+03	2021-05-23 22:13:48.859+03	
c44a8d6a-f2f3-72e3-bfb7-4a5a26e45c4d	2021-05-23 22:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:14:08.852+03	2021-05-23 22:14:08.859+03	
1c0a1160-2c1d-90b2-04dc-d7276c2b0bdf	2021-05-23 22:14:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:14:28.852+03	2021-05-23 22:14:28.858+03	
2de50f25-c699-73fd-7e32-e3a089ca44bd	2021-05-23 22:14:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:14:48.852+03	2021-05-23 22:14:48.859+03	
b22cfbb2-5240-ef23-bb8b-a4c4d9780dce	2021-05-23 22:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:15:08.853+03	2021-05-23 22:15:08.865+03	
aae0c2bd-edcf-457b-aa38-dfddb1cc6103	2021-05-23 22:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:15:29.853+03	2021-05-23 22:15:29.859+03	
6d2bf141-4b25-7af8-3ac1-2d46e3af083d	2021-05-23 22:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:15:50.852+03	2021-05-23 22:15:50.863+03	
84772990-9698-43ee-198d-8fdcde90ccd5	2021-05-23 22:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:16:11.853+03	2021-05-23 22:16:11.859+03	
0b852827-4436-32f0-a689-80ac0ce6f3a8	2021-05-23 22:16:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:16:32.853+03	2021-05-23 22:16:32.861+03	
345c9225-9487-54ed-0788-0a70330bd531	2021-05-23 22:16:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:16:53.852+03	2021-05-23 22:16:53.859+03	
7e21cf75-f909-0b58-0f7b-7c4c8b3b4bfb	2021-05-23 22:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:17:13.853+03	2021-05-23 22:17:13.862+03	
cb8fd497-d6c9-10ff-0d44-9d2f141af45f	2021-05-23 22:17:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:17:34.853+03	2021-05-23 22:17:34.86+03	
0dd7a4d2-c478-af61-839b-64c8f98895d4	2021-05-23 22:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:17:55.852+03	2021-05-23 22:17:55.858+03	
e3fb32e9-eb9b-f474-6209-c5b97a7f9932	2021-05-23 22:18:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:18:15.853+03	2021-05-23 22:18:15.859+03	
a4573e9a-0705-30a9-800b-2e930fa4b465	2021-05-23 22:18:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:18:36.852+03	2021-05-23 22:18:36.859+03	
9af4e8c3-8fcb-1294-a0a6-8039eb861518	2021-05-23 22:18:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:18:56.853+03	2021-05-23 22:18:56.86+03	
281900c7-3057-a69c-b9da-8c36ba846f8f	2021-05-23 22:19:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:19:17.852+03	2021-05-23 22:19:17.859+03	
3d01b056-12ec-b1eb-d9b3-2008745d138d	2021-05-23 22:19:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:19:37.852+03	2021-05-23 22:19:37.86+03	
4a2d5011-efc9-b0e3-0490-fe6c4b29d24d	2021-05-23 22:19:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:19:57.852+03	2021-05-23 22:19:57.859+03	
10addf8a-6164-f353-4763-3b867bbabe17	2021-05-23 22:20:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:20:07.853+03	2021-05-23 22:20:07.859+03	
abc4d5d8-285f-8397-81b9-5315330b5456	2021-05-23 22:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:20:28.853+03	2021-05-23 22:20:28.859+03	
23be4493-c89c-b5b4-002f-24b681f305cb	2021-05-23 22:20:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:20:50.852+03	2021-05-23 22:20:50.858+03	
367a8fed-d9ec-ed2f-2c1b-1815070f29b5	2021-05-23 22:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:21:10.853+03	2021-05-23 22:21:10.859+03	
d9b6a4cf-1dc8-1448-3656-7a46e42a9d3f	2021-05-23 22:21:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:21:31.853+03	2021-05-23 22:21:31.859+03	
15425854-3c70-0f2c-8d6d-f52df0288300	2021-05-23 22:21:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:21:51.853+03	2021-05-23 22:21:51.859+03	
ede1b88d-b8d1-faae-7674-d299257df67b	2021-05-23 22:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:22:12.853+03	2021-05-23 22:22:12.86+03	
5a64636e-c852-45b7-28d7-e6a23aced7b8	2021-05-23 22:22:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:22:32.853+03	2021-05-23 22:22:32.86+03	
c27f83e1-ab8b-0cc1-79bf-341373a30634	2021-05-23 22:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:22:53.852+03	2021-05-23 22:22:53.859+03	
874862a2-968e-3d5d-e8c0-618cd7ab3f2c	2021-05-23 22:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:23:13.852+03	2021-05-23 22:23:13.86+03	
5bdb50ab-92e0-7e6a-714e-fa9ee24d2a98	2021-05-23 22:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:23:33.853+03	2021-05-23 22:23:33.859+03	
89bcaa78-5770-17fd-03e5-a022da6c4e0f	2021-05-23 22:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:23:55.852+03	2021-05-23 22:23:55.859+03	
be9cd7fb-b32b-8c96-701f-d404297913a0	2021-05-23 22:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:24:15.853+03	2021-05-23 22:24:15.859+03	
fc268ca9-6204-fc7b-5043-17e953556c6a	2021-05-23 22:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:24:35.853+03	2021-05-23 22:24:35.859+03	
edc57c2e-039b-0ca5-296b-7fe0463dff6c	2021-05-23 22:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:24:55.853+03	2021-05-23 22:24:55.86+03	
4431f59d-a807-1d56-4d72-9b92b377f235	2021-05-23 22:25:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:25:16.853+03	2021-05-23 22:25:16.875+03	
b96579be-3486-fa1b-db64-e0da08d7a6bc	2021-05-23 22:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:25:37.853+03	2021-05-23 22:25:37.867+03	
17dcdecc-f90f-8297-db8f-7bf136a0889f	2021-05-23 22:25:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:25:58.852+03	2021-05-23 22:25:58.859+03	
a3d6891f-6a85-4b36-1a3e-8475c8dfa466	2021-05-23 22:26:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:26:18.852+03	2021-05-23 22:26:18.858+03	
847c2c2e-6d67-2205-f409-9576ae05c0a5	2021-05-23 22:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:26:39.852+03	2021-05-23 22:26:39.858+03	
5dbfef90-5253-ff8d-50d8-7f5134a77980	2021-05-23 22:05:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:05:52.853+03	2021-05-23 22:05:52.86+03	
b056eae3-0737-8361-1443-b4035c30f2b0	2021-05-23 22:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:06:13.853+03	2021-05-23 22:06:13.863+03	
702c680d-31fd-b6aa-e652-e11cd2abb0ed	2021-05-23 22:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:06:33.853+03	2021-05-23 22:06:33.86+03	
217f5a0c-c4dd-b0f0-471b-ae51647f454b	2021-05-23 22:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:06:54.853+03	2021-05-23 22:06:54.863+03	
346cae89-b79d-cb2a-be03-e373b7abb78f	2021-05-23 22:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:07:14.853+03	2021-05-23 22:07:14.862+03	
e507cd31-f433-96ac-f9d5-14aee20f959d	2021-05-23 22:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:07:35.853+03	2021-05-23 22:07:35.862+03	
2aa3fef8-b927-3bdf-eb86-2f715a4894af	2021-05-23 22:07:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:07:56.853+03	2021-05-23 22:07:56.863+03	
8c54eefa-1ebd-5beb-60d2-8f72459f0f22	2021-05-23 22:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:08:18.853+03	2021-05-23 22:08:18.861+03	
d5562d39-4c24-1732-d056-5fbcbfac5a40	2021-05-23 22:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:08:39.852+03	2021-05-23 22:08:39.862+03	
f4103280-26ec-589c-aaf9-6f7d648b7973	2021-05-23 22:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:08:59.853+03	2021-05-23 22:08:59.861+03	
f12a3941-6a37-471d-3f61-c926ffe8ff48	2021-05-23 22:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:09:20.853+03	2021-05-23 22:09:20.871+03	
6c0b0cb7-a94e-d27f-578e-4137073b862a	2021-05-23 22:09:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:09:41.852+03	2021-05-23 22:09:41.858+03	
63701ebf-10fd-e847-dc6a-7b1af2a4cd4a	2021-05-23 22:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 22:10:00.852+03	2021-05-23 22:10:00.857+03	ERROR
f3b3cb46-89fe-0ad8-07b2-ddc7b41f9001	2021-05-23 22:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:10:12.853+03	2021-05-23 22:10:12.859+03	
18271b06-900e-fd97-9012-e625eca62deb	2021-05-23 22:10:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:10:33.852+03	2021-05-23 22:10:33.858+03	
fa3e3ef9-8a84-701f-2f44-2df582d10ce0	2021-05-23 22:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:10:53.852+03	2021-05-23 22:10:53.858+03	
1754aa94-5ea7-dfba-3d72-df029c7889ee	2021-05-23 22:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:11:13.853+03	2021-05-23 22:11:13.859+03	
19b99a11-6a8a-4013-0f42-64e54cd79e0f	2021-05-23 22:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:11:34.853+03	2021-05-23 22:11:34.873+03	
aaaa08af-b497-8ec3-9cfc-1bfcf7e2d53f	2021-05-23 22:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:11:55.852+03	2021-05-23 22:11:55.858+03	
7c0ace2c-0b45-5734-20de-702872485027	2021-05-23 22:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:12:15.853+03	2021-05-23 22:12:15.863+03	
2fec398a-88b2-f19a-8876-c9b5f2b78e96	2021-05-23 22:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:12:35.853+03	2021-05-23 22:12:35.859+03	
1efb05b3-c977-2461-9f28-3f8561fe5477	2021-05-23 22:12:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:12:56.854+03	2021-05-23 22:12:56.86+03	
992e3ab8-9894-86e1-2668-02218a389410	2021-05-23 22:13:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:13:17.852+03	2021-05-23 22:13:17.858+03	
069c7fc3-fe1e-ea56-6566-2a72e37d7a8f	2021-05-23 22:13:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:13:37.853+03	2021-05-23 22:13:37.861+03	
6034f7c0-3bf7-cfe5-7962-77ff49c1e10d	2021-05-23 22:13:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:13:58.852+03	2021-05-23 22:13:58.859+03	
35332d18-5b5c-d5b1-6bcf-8387cc9e6cdd	2021-05-23 22:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:14:18.852+03	2021-05-23 22:14:18.858+03	
9099db72-2493-1946-374c-e9a0e04f7866	2021-05-23 22:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:14:38.852+03	2021-05-23 22:14:38.858+03	
2ef997cd-ee42-acef-dbc1-1563d5b55b47	2021-05-23 22:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:14:58.852+03	2021-05-23 22:14:58.861+03	
d0d561ff-5530-1415-7f07-0cfe32fe46a7	2021-05-23 22:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:15:19.852+03	2021-05-23 22:15:19.861+03	
15cdcf49-16c6-3f63-e588-09f53282dfc6	2021-05-23 22:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:15:40.852+03	2021-05-23 22:15:40.859+03	
b43fc9cf-4203-134f-1b44-2e4819c36875	2021-05-23 22:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:16:00.853+03	2021-05-23 22:16:00.859+03	
fb40bf48-7c30-fce9-c2ba-7bd85bd0f503	2021-05-23 22:16:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:16:21.853+03	2021-05-23 22:16:21.951+03	
37637e0c-2bf4-b2bc-9cb9-fd58b541cd61	2021-05-23 22:16:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:16:43.852+03	2021-05-23 22:16:43.859+03	
f5bb9af0-2bc3-fa08-db36-227570b7cae8	2021-05-23 22:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:17:03.853+03	2021-05-23 22:17:03.86+03	
2b54bd7e-761e-b277-1e4b-7faf20e75016	2021-05-23 22:17:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:17:24.852+03	2021-05-23 22:17:24.859+03	
be1aa492-ec8c-2222-b023-fbd46c1236d8	2021-05-23 22:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:17:45.852+03	2021-05-23 22:17:45.86+03	
75ff32cd-9d1b-973c-e543-72d558f95e35	2021-05-23 22:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:18:05.852+03	2021-05-23 22:18:05.858+03	
d126c053-cc1f-3f63-ff29-fcf5494de6f6	2021-05-23 22:18:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:18:25.853+03	2021-05-23 22:18:25.859+03	
3652eda4-77c5-b5a4-c9d1-35873ecb5b79	2021-05-23 22:18:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:18:46.852+03	2021-05-23 22:18:46.858+03	
14064e1b-0ec6-0f93-84d7-a24a2f772a28	2021-05-23 22:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:19:07.852+03	2021-05-23 22:19:07.86+03	
6f2eceab-13ce-e875-5ae8-08ea8927f318	2021-05-23 22:19:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:19:27.852+03	2021-05-23 22:19:27.859+03	
7cdf16e0-6385-d4ef-1e6c-d9b5c6bbebd0	2021-05-23 22:19:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:19:47.852+03	2021-05-23 22:19:47.86+03	
fb8dd502-304b-aa55-213f-8fef93c49e1c	2021-05-23 22:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 22:20:00.852+03	2021-05-23 22:20:00.857+03	ERROR
202113ba-4cf4-a2cc-dd71-42d2841eabbe	2021-05-23 22:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:20:17.853+03	2021-05-23 22:20:17.859+03	
08f4efc7-52f5-ede0-0c80-bacceb19a50a	2021-05-23 22:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:20:39.853+03	2021-05-23 22:20:39.858+03	
71393979-e40a-beec-90a2-753751e6403c	2021-05-23 22:21:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:21:00.853+03	2021-05-23 22:21:00.859+03	
e9bde23a-1e23-fe4b-5b0e-d83220c48175	2021-05-23 22:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:21:20.853+03	2021-05-23 22:21:20.859+03	
1d37547f-ab88-066d-cabe-5f9f3438aab7	2021-05-23 22:21:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:21:41.853+03	2021-05-23 22:21:41.87+03	
cecd94f2-9218-4c32-e078-47147d3b4f23	2021-05-23 22:22:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:22:02.853+03	2021-05-23 22:22:02.864+03	
3032cebf-30e3-67b8-accd-0363c959a035	2021-05-23 22:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:22:22.853+03	2021-05-23 22:22:22.866+03	
17c3d5bf-aa01-d982-070e-90d4917bf6ec	2021-05-23 22:22:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:22:42.853+03	2021-05-23 22:22:42.871+03	
58b9e0f1-b72d-10b2-60af-bd4e1e201b02	2021-05-23 22:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:23:03.852+03	2021-05-23 22:23:03.858+03	
1b5b5128-c0c6-fc15-aeeb-cf377c267f90	2021-05-23 22:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:23:23.852+03	2021-05-23 22:23:23.859+03	
011feb9b-900f-fd31-6662-7cfe6dfa1273	2021-05-23 22:23:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:23:44.853+03	2021-05-23 22:23:44.859+03	
a4348231-37ac-b5a9-8fda-7497b62bec96	2021-05-23 22:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:24:05.852+03	2021-05-23 22:24:05.86+03	
a58d8362-ebb3-4f7f-e12e-fb935be8aa36	2021-05-23 22:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:24:25.853+03	2021-05-23 22:24:25.865+03	
c98ad86e-c8c0-4827-837f-743131fca97f	2021-05-23 22:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:24:45.853+03	2021-05-23 22:24:45.863+03	
2bcd668a-8c90-f807-1cfe-0b60f901f0b2	2021-05-23 22:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:25:05.853+03	2021-05-23 22:25:05.859+03	
78f711a9-4520-3792-c066-18a379d34136	2021-05-23 22:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:25:27.852+03	2021-05-23 22:25:27.859+03	
edc9d31d-63b5-cd05-81d1-4ceb3f16ee7c	2021-05-23 22:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:25:47.853+03	2021-05-23 22:25:47.859+03	
e6644ea6-2d46-b498-d974-44d8fe107f03	2021-05-23 22:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:26:08.852+03	2021-05-23 22:26:08.86+03	
18536dcc-733e-fa2e-4eb0-2af03a5b87ff	2021-05-23 22:26:28.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:26:28.858+03	2021-05-23 22:26:28.874+03	
ca4bfd18-e809-07b8-2365-4db95c42aebf	2021-05-23 22:26:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:26:49.853+03	2021-05-23 22:26:49.859+03	
84606841-d4d2-9343-3040-ccc18e136981	2021-05-23 22:26:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:26:59.853+03	2021-05-23 22:26:59.859+03	
6c8a3e86-6d26-55d8-3cb9-57341263684a	2021-05-23 23:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 23:10:00.852+03	2021-05-23 23:10:00.868+03	ERROR
49975af3-bd28-17c6-b0af-95b13ad87e5b	2021-05-23 22:27:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:27:19.853+03	2021-05-23 22:27:19.859+03	
82571ecd-babd-33f7-7534-875a52ed08ac	2021-05-23 22:27:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:27:40.853+03	2021-05-23 22:27:40.859+03	
ab7672d9-bd92-99ab-4a67-f284b1100998	2021-05-23 23:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:12:25.853+03	2021-05-23 23:12:25.875+03	
1f39e9ce-df08-525c-424a-d669652c6286	2021-05-23 22:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:28:02.852+03	2021-05-23 22:28:02.86+03	
7c3d7a77-03c8-37c5-7120-c72f2ebbf88e	2021-05-23 22:28:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:28:22.853+03	2021-05-23 22:28:22.859+03	
e05036e4-2cbe-0156-d7e4-aea602183b5f	2021-05-23 23:12:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:12:46.852+03	2021-05-23 23:12:46.862+03	
01adcbc8-45c0-4010-ccb1-0d1dfc051c12	2021-05-23 22:28:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:28:42.853+03	2021-05-23 22:28:42.86+03	
eea112c0-b0c4-6ef9-10a7-d56eea12d128	2021-05-23 22:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:29:03.852+03	2021-05-23 22:29:03.859+03	
df856d4f-5001-ff45-2537-815875c4ee3c	2021-05-23 23:13:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:13:06.852+03	2021-05-23 23:13:06.859+03	
a48432e6-4217-8d46-8ce5-b4c552105b76	2021-05-23 22:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:29:23.852+03	2021-05-23 22:29:23.859+03	
2b41b292-0ad5-77be-ecd1-34d35ac3d202	2021-05-23 22:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:29:43.853+03	2021-05-23 22:29:43.86+03	
b389bbc1-2454-772a-7f27-710c7399f356	2021-05-23 23:13:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:13:26.852+03	2021-05-23 23:13:26.859+03	
2115b7d4-ec76-17b0-5fec-bba7499950c6	2021-05-23 22:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 22:30:00.852+03	2021-05-23 22:30:00.858+03	ERROR
c948c2e3-cb85-4e4e-6a6d-b71698789a87	2021-05-23 22:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:30:14.853+03	2021-05-23 22:30:14.859+03	
3d0bf221-4434-331d-a1b1-aa1ccaae59e2	2021-05-23 23:13:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:13:36.854+03	2021-05-23 23:13:36.862+03	
add4c670-5b87-2a45-8008-995b59bbd0c8	2021-05-23 22:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:30:35.853+03	2021-05-23 22:30:35.859+03	
205d16ec-b90a-9521-b4ad-39a800f22f37	2021-05-23 22:30:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:30:56.852+03	2021-05-23 22:30:56.859+03	
7bfe208b-d17c-6aec-39bb-54edebc0ad5e	2021-05-23 22:31:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:31:16.853+03	2021-05-23 22:31:16.859+03	
8df96d37-6e3e-de38-4f56-c92f691e2922	2021-05-23 22:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:31:37.852+03	2021-05-23 22:31:37.859+03	
7daa0329-7d23-5b8b-c760-a59212620ec8	2021-05-23 22:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:31:57.852+03	2021-05-23 22:31:57.859+03	
72593496-d5d8-8b9d-97cc-4bed25c7d888	2021-05-23 22:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:32:17.853+03	2021-05-23 22:32:17.859+03	
32081526-3410-f92f-67cc-49976267f550	2021-05-23 22:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:32:37.853+03	2021-05-23 22:32:37.859+03	
f87ff8bf-b678-5c15-9634-43665efced56	2021-05-23 22:32:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:32:58.852+03	2021-05-23 22:32:58.859+03	
bd5e455b-c4c4-3dce-54a2-dc3634d457c2	2021-05-23 22:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:33:18.852+03	2021-05-23 22:33:18.859+03	
b738afef-ee29-2dc7-f8a8-c69be25a2d1f	2021-05-23 22:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:33:38.853+03	2021-05-23 22:33:38.859+03	
8d3ae102-1f93-acbf-baf0-f264e524655c	2021-05-23 22:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:33:59.853+03	2021-05-23 22:33:59.86+03	
e331a26a-8a94-84fb-14d6-2a81d789cb28	2021-05-23 22:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:34:20.852+03	2021-05-23 22:34:20.858+03	
2e6ed01a-33c4-c69c-9d2b-931b319d06e0	2021-05-23 22:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:34:40.852+03	2021-05-23 22:34:40.859+03	
cdc8c6ac-ade8-4611-cf53-71fbe61e663a	2021-05-23 22:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:35:00.852+03	2021-05-23 22:35:00.859+03	
c3e86834-df2a-a9be-8b4f-80ca336aa206	2021-05-23 22:35:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:35:20.852+03	2021-05-23 22:35:20.859+03	
9dda1bdf-6cd9-5fe5-e2dc-cf491846eea1	2021-05-23 22:35:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:35:40.852+03	2021-05-23 22:35:40.859+03	
b4c483d1-fcac-ffd9-2ffa-b8901d0966ec	2021-05-23 22:36:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:36:00.853+03	2021-05-23 22:36:00.859+03	
46c0fb87-431a-9248-afc4-6ac59ae52539	2021-05-23 22:36:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:36:21.854+03	2021-05-23 22:36:21.86+03	
c3b426bb-8eb9-0321-2596-4d72d6ab8de1	2021-05-23 22:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:36:43.852+03	2021-05-23 22:36:43.859+03	
4df60a5e-faa9-9574-5d7b-9e57e9790df4	2021-05-23 22:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:37:03.852+03	2021-05-23 22:37:03.858+03	
e8f6479e-0930-6e34-2f0a-de4686a18770	2021-05-23 22:37:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:37:24.852+03	2021-05-23 22:37:24.859+03	
fd895790-0af6-f4ac-5fcc-ad185a64cc2a	2021-05-23 22:37:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:37:44.853+03	2021-05-23 22:37:44.859+03	
a3606341-3cc2-cc0b-65b7-9cd699400d33	2021-05-23 22:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:38:05.852+03	2021-05-23 22:38:05.858+03	
79279892-e5c8-6fcd-d9d4-82eb527fc86e	2021-05-23 22:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:38:26.852+03	2021-05-23 22:38:26.861+03	
39d61c05-e62a-bac6-5c71-677c9d6687d9	2021-05-23 22:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:38:47.852+03	2021-05-23 22:38:47.859+03	
b0c5f66a-172c-1a95-4043-359d6b94671a	2021-05-23 22:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:39:07.852+03	2021-05-23 22:39:07.861+03	
b51323cb-266a-f80c-b50a-fa731761d44b	2021-05-23 22:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:39:27.852+03	2021-05-23 22:39:27.859+03	
e511c72f-2a34-c0ae-1bf8-d50cac933ccf	2021-05-23 22:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:39:47.852+03	2021-05-23 22:39:47.858+03	
ae547376-072e-9ac8-f5ef-f5850f25debe	2021-05-23 22:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 22:40:00.853+03	2021-05-23 22:40:00.86+03	ERROR
313dc6c0-15d3-98d6-96f4-a9365573c626	2021-05-23 22:40:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:40:17.853+03	2021-05-23 22:40:17.858+03	
753211b5-4d68-e1cb-f481-ba80dfb91bc4	2021-05-23 22:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:40:39.852+03	2021-05-23 22:40:39.858+03	
1fc20c35-a000-094c-c1de-f1de2f28c809	2021-05-23 22:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:40:59.852+03	2021-05-23 22:40:59.858+03	
ee25b942-83a8-b893-52d4-24c72ff008ac	2021-05-23 22:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:41:19.853+03	2021-05-23 22:41:19.859+03	
2017f426-0e64-f562-41fe-3f6ba4bc9b8c	2021-05-23 22:41:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:41:40.852+03	2021-05-23 22:41:40.859+03	
ce0402e7-fcac-9d7e-2c51-b897365b2a56	2021-05-23 22:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:42:00.853+03	2021-05-23 22:42:00.859+03	
43ae7ac3-c13a-78ca-4922-bde0ab1d3250	2021-05-23 22:42:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:42:21.852+03	2021-05-23 22:42:21.858+03	
ee9ea949-a0c1-e954-b4c0-23a816cca0ed	2021-05-23 22:42:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:42:41.853+03	2021-05-23 22:42:41.859+03	
7fb04c8f-6132-278b-d2b7-8c5f86b6a37e	2021-05-23 22:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:43:02.852+03	2021-05-23 22:43:02.86+03	
c66d66c6-67c3-044c-9c0e-1ed46c27186a	2021-05-23 22:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:43:22.853+03	2021-05-23 22:43:22.858+03	
a714a951-1778-a1cd-7491-10ba8599f737	2021-05-23 22:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:43:42.853+03	2021-05-23 22:43:42.86+03	
bc034734-08a4-8050-d129-6bd6d4453bcd	2021-05-23 22:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:44:03.852+03	2021-05-23 22:44:03.859+03	
69da3d73-64e6-2fa5-1aad-7ec4ca7aa7c4	2021-05-23 22:44:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:44:24.853+03	2021-05-23 22:44:24.86+03	
e18499b6-c506-eb45-69d3-4b0465992af4	2021-05-23 22:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:44:45.852+03	2021-05-23 22:44:45.858+03	
7fbf17f5-1ea3-4cef-5e54-7c41ee24941f	2021-05-23 22:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:45:05.852+03	2021-05-23 22:45:05.858+03	
261bff11-c363-16b7-287e-759d5b2f7d91	2021-05-23 22:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:45:25.852+03	2021-05-23 22:45:25.86+03	
87c6a399-e4bc-b5dc-e4ef-daf2be2309c8	2021-05-23 22:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:45:45.853+03	2021-05-23 22:45:45.859+03	
bc5f7dee-208c-d902-570f-f01a0e5b617c	2021-05-24 23:00:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:00:51.877+03	2021-05-24 23:00:51.885+03	
d1a2de35-dbd8-5912-3b69-5ec0f2a1d0d8	2021-05-23 22:27:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:27:09.853+03	2021-05-23 22:27:09.86+03	
a7fe2647-a38b-9143-0c06-0a2e124d0f58	2021-05-23 23:11:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:11:33.853+03	2021-05-23 23:11:33.861+03	
39bd4426-50c7-69ca-6dd3-4632f1753df3	2021-05-23 22:27:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:27:29.853+03	2021-05-23 22:27:29.859+03	
01c2ce61-52a5-103f-cd8d-ae80e258ad61	2021-05-23 22:27:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:27:51.854+03	2021-05-23 22:27:51.86+03	
8f6b1cb8-26be-c65b-93b5-bcb91e6e3c71	2021-05-23 23:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:11:54.853+03	2021-05-23 23:11:54.859+03	
fd1b38f1-9902-f6f4-40bc-7fbabfdad0bd	2021-05-23 22:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:28:12.852+03	2021-05-23 22:28:12.86+03	
63f9abe6-f041-23a9-85ca-afe5e3e029d2	2021-05-23 22:28:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:28:32.853+03	2021-05-23 22:28:32.862+03	
7d58ba7a-b763-2292-ead7-7cd58af71ff4	2021-05-23 23:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:12:15.852+03	2021-05-23 23:12:15.858+03	
ed058aa5-6f77-5b1c-beba-1011a1cc4022	2021-05-23 22:28:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:28:52.853+03	2021-05-23 22:28:52.86+03	
a0295cef-8f92-f3af-3de5-6e2d7b8d4a86	2021-05-23 22:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:29:13.852+03	2021-05-23 22:29:13.859+03	
664a6d78-b53a-8706-432b-8fe595fa5d87	2021-05-23 23:12:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:12:36.852+03	2021-05-23 23:12:36.859+03	
5f830436-9914-b009-9eae-77092371f071	2021-05-23 22:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:29:33.852+03	2021-05-23 22:29:33.859+03	
867eb4e6-acd0-e7c8-5a37-b7b6b2898f04	2021-05-23 22:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:29:53.853+03	2021-05-23 22:29:53.859+03	
d40b1a80-fbb6-5c52-8cd6-28e04123b838	2021-05-23 23:12:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:12:56.852+03	2021-05-23 23:12:56.861+03	
cdb0692b-e9c7-e6ab-3c07-82d550ebb39e	2021-05-23 22:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:30:04.853+03	2021-05-23 22:30:04.871+03	
2fa7d7f5-1ae2-09bb-c19c-9fb983a3f958	2021-05-23 22:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:30:25.852+03	2021-05-23 22:30:25.859+03	
8764f1a8-ba91-4ac6-9a6f-f21f8d5f2b92	2021-05-23 23:13:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:13:16.852+03	2021-05-23 23:13:16.859+03	
8654ccb6-019c-d34f-2b3e-9a53eeab758f	2021-05-23 22:30:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:30:46.852+03	2021-05-23 22:30:46.861+03	
c800fbce-401a-8813-825a-2e2ae44ae7e7	2021-05-23 22:31:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:31:06.852+03	2021-05-23 22:31:06.859+03	
736077b3-0784-7532-0341-e96987011baf	2021-05-23 22:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:31:27.852+03	2021-05-23 22:31:27.858+03	
d5834ac0-e001-a01b-52a4-ca912f2d2844	2021-05-23 22:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:31:47.852+03	2021-05-23 22:31:47.859+03	
3b5a2da4-f04c-0ed9-1927-070690b57ef1	2021-05-23 22:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:32:07.852+03	2021-05-23 22:32:07.859+03	
f2e8cb79-4f50-693d-462c-7cb5b02ee215	2021-05-23 22:32:27.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:32:27.853+03	2021-05-23 22:32:27.864+03	
9da7fc0f-9f59-243a-fb18-4771d158b61f	2021-05-23 22:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:32:47.853+03	2021-05-23 22:32:47.86+03	
76d34633-8753-bd08-392f-7b6c7f9b831e	2021-05-23 22:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:33:08.852+03	2021-05-23 22:33:08.859+03	
baa63969-97a7-141f-f9c6-083480bda4a6	2021-05-23 22:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:33:28.853+03	2021-05-23 22:33:28.859+03	
8af0f957-d0c5-d306-8323-380b28b35b8d	2021-05-23 22:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:33:49.852+03	2021-05-23 22:33:49.859+03	
48063700-d132-8063-59da-ff8127cc0c3b	2021-05-23 22:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:34:10.852+03	2021-05-23 22:34:10.858+03	
475e7674-24d1-84bc-8272-8acc995a6528	2021-05-23 22:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:34:30.852+03	2021-05-23 22:34:30.859+03	
8eccec96-1d2b-1fa7-13da-3a218db561af	2021-05-23 22:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:34:50.852+03	2021-05-23 22:34:50.859+03	
a80763ca-c77f-bc59-9665-63e4e8b63bf1	2021-05-23 22:35:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:35:10.852+03	2021-05-23 22:35:10.859+03	
929fe1b1-9847-3f62-1782-0c1395e212d5	2021-05-23 22:35:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:35:30.852+03	2021-05-23 22:35:30.859+03	
ee4ac270-14a4-5879-e62f-f27cdb8d74dc	2021-05-23 22:35:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:35:50.852+03	2021-05-23 22:35:50.858+03	
6d1a2432-b7a1-aa28-bd10-98493241e8a4	2021-05-23 22:36:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:36:11.854+03	2021-05-23 22:36:11.861+03	
bdd4d3c1-8196-b2ee-89c8-221a322c7e5a	2021-05-23 22:36:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:36:32.853+03	2021-05-23 22:36:32.86+03	
fb538318-e6e8-66e4-2292-25a3bd473771	2021-05-23 22:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:36:53.852+03	2021-05-23 22:36:53.859+03	
b6ea7e1c-7326-b7ee-3849-30ede089b843	2021-05-23 22:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:37:13.853+03	2021-05-23 22:37:13.859+03	
74efd1c1-f335-4778-b9e2-6440e33d08fb	2021-05-23 22:37:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:37:34.853+03	2021-05-23 22:37:34.859+03	
b9738969-ee14-a3a2-6e20-a8f1b953add5	2021-05-23 22:37:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:37:54.853+03	2021-05-23 22:37:54.859+03	
542b9a1a-8d3c-0d4a-072c-4c4f0c0e5613	2021-05-23 22:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:38:15.853+03	2021-05-23 22:38:15.859+03	
e121e3ec-7a96-6937-1125-e1139319870d	2021-05-23 22:38:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:38:36.853+03	2021-05-23 22:38:36.861+03	
123616ea-f186-d7e0-12ef-dc1eb791244a	2021-05-23 22:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:38:57.852+03	2021-05-23 22:38:57.859+03	
b6432711-9aeb-b7c1-c308-a883be927c85	2021-05-23 22:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:39:17.852+03	2021-05-23 22:39:17.858+03	
c85f6a31-fb75-98f4-c4a7-ef14da7bd1a2	2021-05-23 22:39:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:39:37.852+03	2021-05-23 22:39:37.858+03	
3c747f9f-241f-51ed-6131-5a2d03c4ecaa	2021-05-23 22:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:39:57.852+03	2021-05-23 22:39:57.86+03	
20a468fb-da11-3db8-5fe2-8bc07e3d88cf	2021-05-23 22:40:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:40:07.852+03	2021-05-23 22:40:07.859+03	
83088e92-e5fa-3c5c-0ce2-ce84dacbf5da	2021-05-23 22:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:40:28.853+03	2021-05-23 22:40:28.859+03	
8ef00d72-8e89-7153-2db8-6ce5e5f95b9f	2021-05-23 22:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:40:49.852+03	2021-05-23 22:40:49.858+03	
72bbc171-08ef-ed37-4fff-de9f112ca981	2021-05-23 22:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:41:09.852+03	2021-05-23 22:41:09.859+03	
6e4c7294-441c-bfc6-1ca0-6ef97e3d259d	2021-05-23 22:41:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:41:30.852+03	2021-05-23 22:41:30.859+03	
dc003bae-9d9a-32b9-bb8f-610b01a93c18	2021-05-23 22:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:41:50.852+03	2021-05-23 22:41:50.86+03	
d8ef09e8-e6de-186c-f47e-b3fd9a3459fa	2021-05-23 22:42:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:42:11.852+03	2021-05-23 22:42:11.858+03	
44b999fa-5d99-b11a-f58a-52e12ad71871	2021-05-23 22:42:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:42:31.852+03	2021-05-23 22:42:31.862+03	
c28c9379-048b-d628-e0be-d9e9e1b5721c	2021-05-23 22:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:42:52.852+03	2021-05-23 22:42:52.859+03	
efeb056d-916a-6311-b512-1084adae9556	2021-05-23 22:43:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:43:12.853+03	2021-05-23 22:43:12.86+03	
dbb3862f-9582-c66a-f8c5-50cce79c83a7	2021-05-23 22:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:43:32.853+03	2021-05-23 22:43:32.86+03	
bd9696bd-1dab-898b-995d-2bd3092749e5	2021-05-23 22:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:43:53.852+03	2021-05-23 22:43:53.86+03	
c58f510c-cbc0-eb56-2a2f-135dfea811b6	2021-05-23 22:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:44:13.853+03	2021-05-23 22:44:13.86+03	
1e738acd-69d1-09f1-b36c-673865a96c32	2021-05-23 22:44:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:44:34.853+03	2021-05-23 22:44:34.86+03	
da242b86-603b-a00e-0268-7bb51b9353dc	2021-05-23 22:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:44:55.852+03	2021-05-23 22:44:55.859+03	
f70f578c-87a6-9169-ce56-1a0cb234ca2c	2021-05-23 22:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:45:15.852+03	2021-05-23 22:45:15.858+03	
75ad5774-d279-1f78-1509-060a9c3c1b90	2021-05-23 22:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:45:35.852+03	2021-05-23 22:45:35.86+03	
3d26c920-5456-b11a-65e2-9e6511c9ad52	2021-05-23 22:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 22:45:55.853+03	2021-05-23 22:45:55.859+03	
af872c16-485b-cd2b-8520-c8bff83f7243	2021-05-23 23:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:13:47.852+03	2021-05-23 23:13:47.874+03	
d847640e-595e-e7b1-cb02-12ecdf71fa38	2021-05-23 23:14:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:14:07.852+03	2021-05-23 23:14:07.872+03	
cca99e3a-6268-dd3f-5c83-75f4b14978d9	2021-05-23 23:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:14:27.853+03	2021-05-23 23:14:27.86+03	
ce099807-1929-2d09-abf0-c531cad1b6ed	2021-05-23 23:14:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:14:48.852+03	2021-05-23 23:14:48.859+03	
d0289f4f-68aa-5812-bd3d-6d17f68936f0	2021-05-23 23:15:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:15:08.853+03	2021-05-23 23:15:08.859+03	
1da3281c-84b1-9fc6-3cbf-b424c5f9777c	2021-05-23 23:15:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:15:29.852+03	2021-05-23 23:15:29.859+03	
69665917-c553-b362-87aa-9fa55ef491af	2021-05-23 23:15:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:15:49.853+03	2021-05-23 23:15:49.859+03	
e0d7d8ed-4693-b5b8-3801-715308e7aacc	2021-05-23 23:16:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:16:10.852+03	2021-05-23 23:16:10.859+03	
7a01873b-4eb7-a504-f9f6-22ceb7a882f1	2021-05-23 23:16:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:16:31.853+03	2021-05-23 23:16:31.859+03	
256eec6c-a574-7027-654d-baf1798fd63f	2021-05-23 23:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:16:52.852+03	2021-05-23 23:16:52.859+03	
540414ec-5d35-8a94-2799-ff4368e2cded	2021-05-23 23:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:17:12.853+03	2021-05-23 23:17:12.873+03	
1e780414-73ee-6081-abef-026a8eb74d9c	2021-05-23 23:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:17:33.853+03	2021-05-23 23:17:33.861+03	
0800487e-a394-adf9-5795-06e842b7b3f0	2021-05-23 23:17:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:17:54.853+03	2021-05-23 23:17:54.859+03	
e2eae10c-197a-323e-9bb0-aeb2fef2c7df	2021-05-23 23:18:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:18:15.853+03	2021-05-23 23:18:15.859+03	
16e425be-7659-50fe-c0d5-eb09b58a1e72	2021-05-23 23:18:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:18:36.853+03	2021-05-23 23:18:36.859+03	
4eed375d-7240-d9bf-8f15-a2a2ed979008	2021-05-23 23:18:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:18:57.852+03	2021-05-23 23:18:57.859+03	
780b3414-96f9-323d-e455-19ce19574a11	2021-05-23 23:19:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:19:17.853+03	2021-05-23 23:19:17.858+03	
8d75b693-184d-6148-e63c-3b09b60f39d1	2021-05-23 23:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:19:38.852+03	2021-05-23 23:19:38.859+03	
d57a709f-3929-b637-6ea4-113116ce181c	2021-05-23 23:19:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:19:59.852+03	2021-05-23 23:19:59.86+03	
5fd2ac1c-6ab5-029a-0a96-bbfb3713e44e	2021-05-23 23:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:20:09.852+03	2021-05-23 23:20:09.859+03	
a5febab0-89dc-2400-bb85-6b54037cb3b6	2021-05-23 23:20:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:20:29.853+03	2021-05-23 23:20:29.859+03	
d2c338b1-db2a-1c2c-d429-40931e2dad3b	2021-05-23 23:20:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:20:49.853+03	2021-05-23 23:20:49.859+03	
7b9afcb3-19a2-65ac-ebc6-40a24ea76da2	2021-05-23 23:21:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:21:10.852+03	2021-05-23 23:21:10.86+03	
97f41c3b-0217-7373-511a-a8b82bea366f	2021-05-23 23:21:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:21:30.853+03	2021-05-23 23:21:30.859+03	
44fc3fd9-3ece-628a-cae1-3af47ed0fcb0	2021-05-23 23:21:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:21:51.854+03	2021-05-23 23:21:51.86+03	
ff26bcb9-7eb4-b622-57fc-30e7c8f4844c	2021-05-23 23:22:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:22:12.853+03	2021-05-23 23:22:12.859+03	
10e0118b-6997-aa36-0c02-bc8f0834a330	2021-05-23 23:22:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:22:33.852+03	2021-05-23 23:22:33.858+03	
5345d932-bc2b-4043-1b47-8824006c826e	2021-05-23 23:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:22:53.852+03	2021-05-23 23:22:53.865+03	
7cde8f81-01f8-9602-31ae-a5d0c50b16f0	2021-05-23 23:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:23:13.852+03	2021-05-23 23:23:13.859+03	
4295322b-7426-87a7-56c2-7263c7df3cfc	2021-05-23 23:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:23:33.852+03	2021-05-23 23:23:33.866+03	
9bd3312b-20e6-9294-2cf0-8344a5864ba2	2021-05-23 23:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:23:53.853+03	2021-05-23 23:23:53.87+03	
690beff9-fd79-9f1d-4012-bfcfa386d666	2021-05-23 23:24:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:24:14.853+03	2021-05-23 23:24:14.859+03	
c9e27d18-3597-bf38-61ec-33690208c396	2021-05-23 23:24:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:24:36.852+03	2021-05-23 23:24:36.861+03	
827cf0d0-5478-cf65-b41e-2f1b5b5fa58e	2021-05-23 23:24:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:24:56.852+03	2021-05-23 23:24:56.86+03	
fe9f9e1f-e88d-8c52-def3-e0f649d245f0	2021-05-23 23:25:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:25:17.852+03	2021-05-23 23:25:17.859+03	
7e1addd2-6c7b-1af2-9fec-7468567674c8	2021-05-23 23:25:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:25:37.853+03	2021-05-23 23:25:37.867+03	
09606aca-1ad3-15fa-ecb2-0427537ad9a5	2021-05-23 23:25:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:25:57.853+03	2021-05-23 23:25:57.859+03	
e739adee-1862-bfe1-0a5f-c108cc07f69e	2021-05-23 23:26:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:26:18.853+03	2021-05-23 23:26:18.86+03	
ec376f78-0b17-fab6-e267-a481f1112583	2021-05-23 23:26:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:26:39.853+03	2021-05-23 23:26:39.859+03	
8d4b0303-203e-b507-0670-3717f879c720	2021-05-23 23:27:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:27:00.853+03	2021-05-23 23:27:00.861+03	
7287d719-4cca-6dec-cba5-f87e35219ce1	2021-05-23 23:27:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:27:20.853+03	2021-05-23 23:27:20.859+03	
5356ef58-6c20-b873-c0b3-12e92d88226b	2021-05-23 23:27:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:27:41.852+03	2021-05-23 23:27:41.877+03	
9c615ac3-1c30-d408-17b0-781235301587	2021-05-23 23:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:28:02.852+03	2021-05-23 23:28:02.859+03	
5ab9d5ae-a666-4522-5465-84312f087ef5	2021-05-23 23:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:28:23.852+03	2021-05-23 23:28:23.859+03	
e0ebb7ff-2489-c5e5-d459-a5829ddf6f81	2021-05-23 23:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:28:43.852+03	2021-05-23 23:28:43.859+03	
d6065cfa-394b-8c4a-8c3c-34e22ed5e605	2021-05-23 23:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:29:03.852+03	2021-05-23 23:29:03.862+03	
d78e8ca1-1006-41a4-2868-26f648f26182	2021-05-23 23:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:29:23.852+03	2021-05-23 23:29:23.859+03	
e4ca1f39-13e7-6eb0-de58-530cfd687ee0	2021-05-23 23:29:43.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:29:43.859+03	2021-05-23 23:29:43.865+03	
f700d6da-22cf-afa8-34a0-c73d0fa68ae0	2021-05-23 23:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 23:30:00.853+03	2021-05-23 23:30:00.858+03	ERROR
e0aac39d-8bf9-4c7f-b67e-fbc5af2a95a0	2021-05-23 23:30:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:30:14.852+03	2021-05-23 23:30:14.859+03	
73ebafc3-3bbe-a3d1-5236-8bec90576129	2021-05-23 23:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:30:34.853+03	2021-05-23 23:30:34.86+03	
b8505e8a-fb46-167d-9f64-e8681cbb65da	2021-05-23 23:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:30:55.853+03	2021-05-23 23:30:55.873+03	
9881db14-c0f4-8ac5-62a2-8d2205ef6be4	2021-05-23 23:31:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:31:16.853+03	2021-05-23 23:31:16.864+03	
282f3658-9bcf-3576-de3c-383860669836	2021-05-23 23:31:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:31:37.852+03	2021-05-23 23:31:37.859+03	
0f1f8090-25a5-0e5d-848d-8ed7a0b545e4	2021-05-23 23:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:31:57.852+03	2021-05-23 23:31:57.859+03	
d166d28b-4438-aaf0-bc2b-4593d302e22b	2021-05-23 23:32:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:32:17.853+03	2021-05-23 23:32:17.859+03	
f8637b90-dc5d-f534-12d9-d72f4954196b	2021-05-23 23:32:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:32:37.853+03	2021-05-23 23:32:37.86+03	
e75ee3d4-8069-11c5-ac6e-a7c112bb2da3	2021-05-23 23:32:57.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:32:57.853+03	2021-05-23 23:32:57.86+03	
691b1a41-a241-21c3-fc6a-9744d340fbab	2021-05-23 23:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:33:18.852+03	2021-05-23 23:33:18.858+03	
c65662af-f72a-6e38-79c4-4db493fc444a	2021-05-23 23:33:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:33:38.853+03	2021-05-23 23:33:38.859+03	
d40f1ab7-435c-f37d-e119-326ee2d83a97	2021-05-23 23:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:33:59.852+03	2021-05-23 23:33:59.86+03	
772a94b9-c9a9-5028-be36-be53f317e428	2021-05-23 23:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:34:20.852+03	2021-05-23 23:34:20.859+03	
d16b3952-3651-0cfd-3d4a-284f4fa62800	2021-05-23 23:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:34:40.853+03	2021-05-23 23:34:40.859+03	
2dd70c97-5ea9-c6df-1b77-873bd5c1c932	2021-05-23 23:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:13:57.852+03	2021-05-23 23:13:57.86+03	
71209d8f-eba3-41b1-16ed-ce58a5a84260	2021-05-23 23:14:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:14:17.852+03	2021-05-23 23:14:17.858+03	
0f5099f1-d288-d6ea-2329-ccd458ab93eb	2021-05-23 23:14:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:14:38.852+03	2021-05-23 23:14:38.859+03	
3e48f5be-ded8-28e6-02e2-41071fdd7c8a	2021-05-23 23:14:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:14:58.852+03	2021-05-23 23:14:58.859+03	
c200e08d-d9eb-b226-6e64-a9757c6ea282	2021-05-23 23:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:15:19.852+03	2021-05-23 23:15:19.858+03	
3518f301-3428-d531-4547-c077b621c734	2021-05-23 23:15:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:15:39.852+03	2021-05-23 23:15:39.858+03	
29756bb4-2db4-f708-883b-4dd8ef7fae0a	2021-05-23 23:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:16:00.852+03	2021-05-23 23:16:00.862+03	
3eb38a19-6ee6-b421-5cdf-44317f96ab2f	2021-05-23 23:16:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:16:20.853+03	2021-05-23 23:16:20.859+03	
ec825eca-8c36-81ec-c10a-93c3dfd1c2d1	2021-05-23 23:16:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:16:41.853+03	2021-05-23 23:16:41.859+03	
32c560ae-302b-4b28-864e-15772b975874	2021-05-23 23:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:17:02.853+03	2021-05-23 23:17:02.859+03	
e4f339d7-540b-309b-5e7b-517410ec99e6	2021-05-23 23:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:17:23.853+03	2021-05-23 23:17:23.876+03	
c1993e3f-4375-970f-4fe7-3e5091a3d29b	2021-05-23 23:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:17:43.853+03	2021-05-23 23:17:43.859+03	
0f13ee89-24c5-0cc0-f3b4-0e99fa9b200a	2021-05-23 23:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:18:05.853+03	2021-05-23 23:18:05.859+03	
f27e19b8-f4e3-9d9b-11cc-d53ff6766aa5	2021-05-23 23:18:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:18:26.852+03	2021-05-23 23:18:26.863+03	
0d587e98-904d-235d-f589-37086bc7ccc4	2021-05-23 23:18:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:18:47.852+03	2021-05-23 23:18:47.859+03	
5cded573-397e-bef7-5a9f-aa76c667e118	2021-05-23 23:19:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:19:07.852+03	2021-05-23 23:19:07.859+03	
e86a47f2-6448-fcac-b12a-48a2a3b72756	2021-05-23 23:19:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:19:27.853+03	2021-05-23 23:19:27.859+03	
1e5d4be7-ec1b-3de3-871f-dfd16dcbab17	2021-05-23 23:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:19:48.853+03	2021-05-23 23:19:48.859+03	
af3e242f-950b-ae01-e3f7-752b6895aabd	2021-05-23 23:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 23:20:00.852+03	2021-05-23 23:20:00.861+03	ERROR
9e7eb053-0399-2f57-e471-bd4f290da29b	2021-05-23 23:20:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:20:19.852+03	2021-05-23 23:20:19.858+03	
10ce104c-4f19-5921-ae88-0a229d910089	2021-05-23 23:20:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:20:39.853+03	2021-05-23 23:20:39.859+03	
3666f18c-14eb-3ff4-3f7a-b31628637380	2021-05-23 23:20:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:20:59.853+03	2021-05-23 23:20:59.859+03	
94b6403a-907a-d8c8-274d-7f8b55636c5a	2021-05-23 23:21:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:21:20.852+03	2021-05-23 23:21:20.86+03	
77bfd34f-e1fb-c5ec-d887-223376cd8077	2021-05-23 23:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:21:40.853+03	2021-05-23 23:21:40.859+03	
70719324-cb37-cf8c-88f3-38046177fb0e	2021-05-23 23:22:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:22:01.854+03	2021-05-23 23:22:01.861+03	
33b8ac6d-c203-c7c0-9862-1875b7e0e9a9	2021-05-23 23:22:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:22:22.853+03	2021-05-23 23:22:22.859+03	
2770c54a-87c4-e597-7509-11a96e954ec3	2021-05-23 23:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:22:43.852+03	2021-05-23 23:22:43.859+03	
81c5b738-dcfb-a939-ff17-11141f71a89e	2021-05-23 23:23:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:23:03.852+03	2021-05-23 23:23:03.86+03	
e4dc2f06-d4bc-ca93-cc7f-17406327bf19	2021-05-23 23:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:23:23.852+03	2021-05-23 23:23:23.859+03	
45ff861d-bf57-4ecb-0912-8cd3f25b992f	2021-05-23 23:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:23:43.852+03	2021-05-23 23:23:43.859+03	
d8e46803-6233-d919-9fb4-d70af1a7f4b7	2021-05-23 23:24:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:24:04.852+03	2021-05-23 23:24:04.859+03	
9aa4319b-7ad9-5b94-c5fa-dc63885414bc	2021-05-23 23:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:24:25.853+03	2021-05-23 23:24:25.858+03	
9da3141f-43d3-2d2d-8b83-bfeef1473d96	2021-05-23 23:24:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:24:46.852+03	2021-05-23 23:24:46.86+03	
466eadfb-b7f8-f789-335f-65ad52b598f0	2021-05-23 23:25:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:25:06.854+03	2021-05-23 23:25:06.861+03	
3dd7ba3c-dd3c-89df-c745-a550f36e686d	2021-05-23 23:25:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:25:27.852+03	2021-05-23 23:25:27.87+03	
8e08806f-4fa2-6378-bbd5-98b0a374b354	2021-05-23 23:25:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:25:47.853+03	2021-05-23 23:25:47.859+03	
a9b40322-337c-e2e8-1d7f-d7be0fba126b	2021-05-23 23:26:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:26:08.853+03	2021-05-23 23:26:08.859+03	
2a04fbf1-17bc-8788-6d4d-d8f0e064005f	2021-05-23 23:26:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:26:28.853+03	2021-05-23 23:26:28.86+03	
0065ee7d-8987-6d40-0067-585339cac84f	2021-05-23 23:26:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:26:50.852+03	2021-05-23 23:26:50.861+03	
c2117ad8-3f78-f01d-9415-6ff4fca33c47	2021-05-23 23:27:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:27:10.853+03	2021-05-23 23:27:10.859+03	
c73965bc-f2a6-a1c9-a7e0-4d5e49d9ff32	2021-05-23 23:27:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:27:30.853+03	2021-05-23 23:27:30.859+03	
094bdb0c-04fa-8676-6540-949e6b92664f	2021-05-23 23:27:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:27:51.853+03	2021-05-23 23:27:51.859+03	
db7160fa-9757-76c9-457b-1f4b5b2bdc80	2021-05-23 23:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:28:12.853+03	2021-05-23 23:28:12.86+03	
fe5725d1-2915-722b-edbb-ba158d53fcfd	2021-05-23 23:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:28:33.852+03	2021-05-23 23:28:33.871+03	
b28c53b9-6ae1-2b6a-5bd2-866cf270e909	2021-05-23 23:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:28:53.852+03	2021-05-23 23:28:53.859+03	
815728fd-f7cc-eeb4-c9b9-12a8dc0aab2f	2021-05-23 23:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:29:13.852+03	2021-05-23 23:29:13.859+03	
c089bf5e-9947-d01d-b9a7-eddd9ae1c1f2	2021-05-23 23:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:29:33.852+03	2021-05-23 23:29:33.859+03	
ad661a0e-692a-ed0e-1f86-ef2133a82e21	2021-05-23 23:29:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:29:54.852+03	2021-05-23 23:29:54.858+03	
588cfc6c-0590-388c-d023-341a2005f5ad	2021-05-23 23:30:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:30:04.852+03	2021-05-23 23:30:04.858+03	
dafaafac-e813-11ef-2092-730cdd295d7d	2021-05-23 23:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:30:24.852+03	2021-05-23 23:30:24.859+03	
2572585b-e0fb-0ab0-2869-482bf15e2163	2021-05-23 23:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:30:45.852+03	2021-05-23 23:30:46.012+03	
d3951007-802c-f7a4-334e-22733c6de74c	2021-05-23 23:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:31:05.853+03	2021-05-23 23:31:05.862+03	
446e891a-7ae2-3bfb-50b5-78e9a3dc955e	2021-05-23 23:31:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:31:27.852+03	2021-05-23 23:31:27.872+03	
1c9c5ea0-0c26-5b20-2591-7167056dd0c2	2021-05-23 23:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:31:47.852+03	2021-05-23 23:31:47.858+03	
8982bb64-6de6-adcf-3b39-3dc6ba5d90c6	2021-05-23 23:32:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:32:07.852+03	2021-05-23 23:32:07.858+03	
e2609d19-c7b1-5137-e33f-cfcdf1721f94	2021-05-23 23:32:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:32:27.853+03	2021-05-23 23:32:27.861+03	
16413642-199a-5fb5-f3d5-b48b47e965a5	2021-05-23 23:32:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:32:47.853+03	2021-05-23 23:32:47.86+03	
c43f0a34-d959-a915-e518-7b03f8677e7f	2021-05-23 23:33:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:33:07.853+03	2021-05-23 23:33:07.862+03	
e4e5a3ef-4fc8-03b4-1f59-c3cb199a8383	2021-05-23 23:33:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:33:28.853+03	2021-05-23 23:33:28.861+03	
e1eb7eb0-fb36-b6f8-ede1-63bcf1cd7293	2021-05-23 23:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:33:49.852+03	2021-05-23 23:33:49.859+03	
757bdc15-fbd9-fe81-7185-4442bcfb59a3	2021-05-23 23:34:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:34:09.853+03	2021-05-23 23:34:09.86+03	
d1eaf120-444c-7880-e0ba-c9c6a379f3a4	2021-05-23 23:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:34:30.852+03	2021-05-23 23:34:30.859+03	
691c7f6d-8194-8b00-7854-78e2421a987b	2021-05-23 23:34:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:34:51.852+03	2021-05-23 23:34:51.859+03	
e65e7d49-84f5-d412-b03c-4b7a2d88c939	2021-05-23 23:35:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:35:01.852+03	2021-05-23 23:35:01.859+03	
5bcbc733-c4ca-7f61-fd3b-f390af65431c	2021-05-23 23:35:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:35:21.853+03	2021-05-23 23:35:21.859+03	
b1e96a43-d096-51b8-02e6-43496e928c55	2021-05-23 23:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:35:43.852+03	2021-05-23 23:35:43.859+03	
15b4166a-257d-84f1-9426-40250113b48f	2021-05-23 23:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:36:03.852+03	2021-05-23 23:36:03.86+03	
c11e6589-a112-cc48-7088-e6dfa1839aa2	2021-05-23 23:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:36:24.852+03	2021-05-23 23:36:24.859+03	
1bde6328-c4d9-0525-7430-969247aebe21	2021-05-23 23:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:36:44.853+03	2021-05-23 23:36:44.858+03	
56dc3678-f20d-1d3c-e7ca-3f64be7e7963	2021-05-23 23:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:37:05.852+03	2021-05-23 23:37:05.86+03	
17b245aa-fa90-b3c1-507a-9392c6b972dd	2021-05-23 23:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:37:25.853+03	2021-05-23 23:37:25.859+03	
da63c5b7-a129-b393-4e63-3b691c284fb8	2021-05-23 23:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:37:45.853+03	2021-05-23 23:37:45.859+03	
5ff4b919-56b5-1de3-45db-1ca9611c6e86	2021-05-23 23:38:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:38:06.852+03	2021-05-23 23:38:06.86+03	
6c6a1b06-f11b-fc09-601c-962a47f80c40	2021-05-23 23:38:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:38:26.852+03	2021-05-23 23:38:26.859+03	
86eae4a5-f77c-e3a4-98a8-7826e49d12c8	2021-05-23 23:38:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:38:47.852+03	2021-05-23 23:38:47.858+03	
51407e18-061d-d672-53a1-f41fe3555309	2021-05-23 23:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:39:07.852+03	2021-05-23 23:39:07.859+03	
d5b574f8-0a3f-c40a-093e-30a9cda5c3f2	2021-05-23 23:39:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:39:27.853+03	2021-05-23 23:39:27.859+03	
88184819-ff95-c85e-d7cf-21225c79e2ac	2021-05-23 23:39:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:39:47.853+03	2021-05-23 23:39:47.86+03	
a1d4efb0-c415-6ff8-c7b8-60d319510818	2021-05-23 23:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 23:40:00.852+03	2021-05-23 23:40:00.858+03	ERROR
50cba75a-b192-139b-58e5-dd95c62f72a3	2021-05-23 23:40:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:40:18.852+03	2021-05-23 23:40:18.871+03	
36fea2c9-6486-7c58-0ef4-77fe603bc717	2021-05-23 23:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:40:39.852+03	2021-05-23 23:40:39.859+03	
b3fb5c36-b7ce-e1a9-a816-098337405826	2021-05-23 23:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:40:59.852+03	2021-05-23 23:40:59.86+03	
e1ad2117-dd54-8cf9-76b4-dc471889141c	2021-05-23 23:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:41:19.853+03	2021-05-23 23:41:19.86+03	
d06940c2-2b16-2dd3-69a0-57701032ebe3	2021-05-23 23:41:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:41:39.853+03	2021-05-23 23:41:39.86+03	
d14c491d-cd04-cffd-d393-eb932de3a4e5	2021-05-23 23:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:42:00.852+03	2021-05-23 23:42:00.859+03	
ac541385-bacf-3d0b-1616-3c44f03aa144	2021-05-23 23:42:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:42:20.852+03	2021-05-23 23:42:20.859+03	
6cdb222e-4e8d-d716-149e-bbcecfc4f7e9	2021-05-23 23:42:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:42:40.852+03	2021-05-23 23:42:40.871+03	
4c1049a4-2335-04ed-ab88-274eb465e556	2021-05-23 23:43:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:43:00.854+03	2021-05-23 23:43:00.862+03	
d6a746e5-057a-9e59-6cca-bcf585dfa43c	2021-05-23 23:43:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:43:21.854+03	2021-05-23 23:43:21.86+03	
42a4ef91-747c-6428-b45b-a79c738b66b1	2021-05-23 23:43:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:43:42.852+03	2021-05-23 23:43:42.859+03	
1bc5db6b-5fde-8749-4925-64b413fc1b13	2021-05-23 23:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:44:02.852+03	2021-05-23 23:44:02.859+03	
7716d769-d8c5-778d-716f-48d811cc87d8	2021-05-23 23:44:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:44:22.853+03	2021-05-23 23:44:22.859+03	
1c6d5bed-ea86-50b8-fa5e-ecbf9789038e	2021-05-23 23:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:44:43.852+03	2021-05-23 23:44:43.861+03	
7ae61495-ab90-2ea3-8c6b-b9928a71bede	2021-05-23 23:45:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:45:03.852+03	2021-05-23 23:45:03.859+03	
404019ff-b51f-00ae-2318-b9e18bf169ba	2021-05-23 23:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:45:23.852+03	2021-05-23 23:45:23.859+03	
c4f57431-65e7-b002-921c-428f6bdc79af	2021-05-23 23:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:45:43.852+03	2021-05-23 23:45:43.858+03	
b6f22607-7a61-00e2-5e4f-d3a9bc9d1513	2021-05-23 23:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:46:03.853+03	2021-05-23 23:46:03.859+03	
6c56dd02-66ae-5936-48ea-a020fd10a4d0	2021-05-23 23:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:46:24.852+03	2021-05-23 23:46:24.859+03	
7acbc6c5-c563-0384-6ea1-bd67ca36cb92	2021-05-23 23:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:46:44.852+03	2021-05-23 23:46:44.859+03	
836ae55d-05bb-02ab-2494-5d147241548a	2021-05-23 23:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:47:04.852+03	2021-05-23 23:47:04.861+03	
d90f2273-4d86-04c0-760a-bf4f7ad8d2b5	2021-05-23 23:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:47:24.852+03	2021-05-23 23:47:24.859+03	
0f8e91e5-d67a-8b6b-9f71-e285e101b136	2021-05-23 23:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:47:44.853+03	2021-05-23 23:47:44.859+03	
3ebddc53-d1c7-ad7b-dc79-0b7e041d8821	2021-05-23 23:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:48:05.852+03	2021-05-23 23:48:05.859+03	
5248e3d4-327f-30db-9889-ecece359b10f	2021-05-23 23:48:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:48:26.852+03	2021-05-23 23:48:26.86+03	
2b0b7e4b-e756-ae6b-61c2-f0a1d5a9a6fd	2021-05-23 23:48:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:48:47.853+03	2021-05-23 23:48:47.858+03	
93dcd767-2db9-6fcc-5d76-e7f419e8b017	2021-05-23 23:49:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:49:08.852+03	2021-05-23 23:49:08.859+03	
d32c4693-cc46-de05-8913-0ab06a06f314	2021-05-23 23:49:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:49:28.852+03	2021-05-23 23:49:28.859+03	
6953b121-c7ea-2e90-ddcf-1e96036b2555	2021-05-23 23:49:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:49:48.852+03	2021-05-23 23:49:48.874+03	
76356453-88be-0ecc-2cde-45d3639a1b29	2021-05-23 23:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-23 23:50:00.852+03	2021-05-23 23:50:00.857+03	ERROR
97af6215-15bf-2ea9-0ff4-e96c79909551	2021-05-23 23:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:50:19.852+03	2021-05-23 23:50:19.859+03	
b1382bad-d3c6-90d7-4796-bfebf9c7dbbf	2021-05-23 23:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:50:39.853+03	2021-05-23 23:50:39.86+03	
f7ddc8c6-86e2-f526-359f-73472385d271	2021-05-23 23:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:51:00.852+03	2021-05-23 23:51:00.859+03	
28c4f770-7575-850f-ab58-913b92a1cfeb	2021-05-23 23:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:51:20.853+03	2021-05-23 23:51:20.874+03	
e18cc87c-b3b5-47a8-05e4-23456268b46f	2021-05-23 23:51:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:51:41.853+03	2021-05-23 23:51:41.86+03	
f39825b1-104b-f2ce-986e-8f5352ccd1e5	2021-05-23 23:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:52:02.853+03	2021-05-23 23:52:02.859+03	
26f2be3f-84d7-8cd4-4c79-b2ca1d9b155a	2021-05-23 23:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:52:24.852+03	2021-05-23 23:52:24.871+03	
2912aee7-006c-fbce-e6ec-4ca887362907	2021-05-23 23:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:52:44.852+03	2021-05-23 23:52:44.859+03	
a3a8ec77-1fbb-b133-d6dd-8bfb08542fbc	2021-05-23 23:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:53:04.853+03	2021-05-23 23:53:04.862+03	
fd2749f6-44f9-faed-2a3f-9369d58e51d3	2021-05-23 23:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:53:25.852+03	2021-05-23 23:53:25.859+03	
d915fa3a-b6fd-17a4-4e8b-3f8bd82f4d48	2021-05-23 23:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:53:45.853+03	2021-05-23 23:53:45.859+03	
56be6102-cac7-a6d3-6057-dcbe260ed3b5	2021-05-23 23:54:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:54:06.852+03	2021-05-23 23:54:06.859+03	
905e674b-a78d-7c94-54f9-5b5ebd25c7e8	2021-05-23 23:54:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:54:26.852+03	2021-05-23 23:54:26.859+03	
42628960-4fa1-74a5-e0f0-c84f791c95d4	2021-05-23 23:54:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:54:47.853+03	2021-05-23 23:54:47.86+03	
d38fddbb-00aa-9b53-2137-9f9613d59756	2021-05-23 23:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:55:08.852+03	2021-05-23 23:55:08.86+03	
2bde210f-132a-1e95-fd2b-b3d9e6523edc	2021-05-23 23:55:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:55:28.853+03	2021-05-23 23:55:28.858+03	
a90e0765-5cbc-a4dc-bd19-ede5eeace16f	2021-05-23 23:55:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:55:48.853+03	2021-05-23 23:55:48.859+03	
3efa8785-4562-f2b8-aa2e-105a2431e4cb	2021-05-23 23:35:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:35:11.853+03	2021-05-23 23:35:11.858+03	
2dc5dbca-b87d-d4aa-f82a-4162d9556200	2021-05-23 23:35:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:35:32.853+03	2021-05-23 23:35:32.859+03	
e02c6789-0ff3-bbfe-ded9-b465c6cfcfc1	2021-05-23 23:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:35:53.852+03	2021-05-23 23:35:53.861+03	
4968877d-e7c4-5544-0dbc-ff6ee9f1b00e	2021-05-23 23:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:36:13.853+03	2021-05-23 23:36:13.858+03	
e942d152-39e8-cf9e-74e2-7af8db231e82	2021-05-23 23:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:36:34.852+03	2021-05-23 23:36:34.86+03	
7e3de2e9-47d8-3a25-caf9-2134303e0f8f	2021-05-23 23:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:36:55.852+03	2021-05-23 23:36:55.859+03	
85a78c50-7d06-3775-f51b-ff027abd8691	2021-05-23 23:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:37:15.852+03	2021-05-23 23:37:15.872+03	
39d07495-6ed1-0506-faf4-314ecef896ad	2021-05-23 23:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:37:35.853+03	2021-05-23 23:37:35.859+03	
bd009f09-a40c-d642-dfe9-e153813f92af	2021-05-23 23:37:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:37:56.852+03	2021-05-23 23:37:56.859+03	
b1d28319-a5e1-69df-f24c-cc8d8746075e	2021-05-23 23:38:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:38:16.852+03	2021-05-23 23:38:16.859+03	
8964af45-fe04-c0ab-47df-399541a13f0f	2021-05-23 23:38:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:38:36.854+03	2021-05-23 23:38:36.86+03	
9ceb2ea6-66cc-9138-0b28-ec51e75e4b9c	2021-05-23 23:38:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:38:57.852+03	2021-05-23 23:38:57.859+03	
a0856b5e-dff2-bdb3-7653-a113a7a171e5	2021-05-23 23:39:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:39:17.852+03	2021-05-23 23:39:17.858+03	
9dbe929d-5a10-36cb-eb5b-b7a8499213c5	2021-05-23 23:39:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:39:37.853+03	2021-05-23 23:39:37.859+03	
ea7fe667-0924-d074-177a-e32bca5a11f2	2021-05-23 23:39:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:39:57.853+03	2021-05-23 23:39:57.864+03	
ff11c69c-84c3-402b-4093-61469ff7bf3c	2021-05-23 23:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:40:08.852+03	2021-05-23 23:40:08.86+03	
1362f4b0-60aa-f76c-bd39-b1920533da9f	2021-05-23 23:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:40:28.853+03	2021-05-23 23:40:28.86+03	
fccbd718-9f9a-d80d-d640-d6c6fafbfda9	2021-05-23 23:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:40:49.852+03	2021-05-23 23:40:49.858+03	
c03a45d8-62dd-36af-d4af-4b6c3b945313	2021-05-23 23:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:41:09.853+03	2021-05-23 23:41:09.86+03	
bc337c06-9951-541d-cec1-1abd11327730	2021-05-23 23:41:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:41:29.853+03	2021-05-23 23:41:29.859+03	
e6d4c5ba-09d7-1112-874c-8cf307b19924	2021-05-23 23:41:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:41:49.853+03	2021-05-23 23:41:49.86+03	
ba0132f5-4758-dc7d-3854-e028570c043a	2021-05-23 23:42:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:42:10.852+03	2021-05-23 23:42:10.858+03	
133979d2-41eb-44dd-e350-253dd3e16794	2021-05-23 23:42:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:42:30.852+03	2021-05-23 23:42:30.859+03	
5367d821-9896-3aba-697e-1e8273f08c91	2021-05-23 23:42:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:42:50.852+03	2021-05-23 23:42:50.858+03	
4c49f8f5-0b23-a7ae-b597-9044e955668e	2021-05-23 23:43:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:43:11.852+03	2021-05-23 23:43:11.859+03	
7ab83790-c4eb-1979-eafc-598840dc2119	2021-05-23 23:43:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:43:32.852+03	2021-05-23 23:43:32.858+03	
c0c79a45-b324-9aa9-5adf-1a3d267ea288	2021-05-23 23:43:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:43:52.852+03	2021-05-23 23:43:52.859+03	
423a76ea-44fd-3e4d-848f-6517e81e7e20	2021-05-23 23:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:44:12.852+03	2021-05-23 23:44:12.859+03	
ee589d82-2c81-3813-e83d-06f44be28906	2021-05-23 23:44:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:44:32.853+03	2021-05-23 23:44:32.859+03	
d1bcf4d6-fadc-95bf-6ab2-a0e08d28aa77	2021-05-23 23:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:44:53.852+03	2021-05-23 23:44:53.859+03	
b291b539-15ba-fcc0-6517-a6db398164ec	2021-05-23 23:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:45:13.852+03	2021-05-23 23:45:13.859+03	
64570029-fb6f-3373-14d4-01f31b8a6a8a	2021-05-23 23:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:45:33.852+03	2021-05-23 23:45:33.859+03	
c9c482e2-2702-54f6-2d9e-70ed6c727bdc	2021-05-23 23:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:45:53.853+03	2021-05-23 23:45:53.86+03	
521dda80-3bcd-8290-d10b-6035b75c0ddd	2021-05-23 23:46:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:46:14.852+03	2021-05-23 23:46:14.859+03	
b42b2cd4-b923-579c-b665-334bc13e8761	2021-05-23 23:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:46:34.852+03	2021-05-23 23:46:34.861+03	
90b1e018-b366-966d-e7a6-2d5ff557b88a	2021-05-23 23:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:46:54.852+03	2021-05-23 23:46:54.859+03	
40bbee75-b820-b80a-e7f8-b7c10c16ba8b	2021-05-23 23:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:47:14.852+03	2021-05-23 23:47:14.859+03	
5021cb54-f02d-577a-521f-905dba906938	2021-05-23 23:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:47:34.852+03	2021-05-23 23:47:34.919+03	
3836c6e7-ed69-4a2e-6b89-5df89b6eebbf	2021-05-23 23:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:47:55.852+03	2021-05-23 23:47:55.859+03	
9670a140-58c5-a1e6-0f4c-23ce0ace263d	2021-05-23 23:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:48:15.853+03	2021-05-23 23:48:15.859+03	
13bb80b0-0200-7944-3a0d-e5353e9a87d3	2021-05-23 23:48:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:48:36.854+03	2021-05-23 23:48:36.873+03	
bfaeee6e-4b8c-975b-f175-eddce762d17b	2021-05-23 23:48:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:48:58.852+03	2021-05-23 23:48:58.859+03	
c5a1be73-6fe2-06fb-6331-dc9956cf9ad4	2021-05-23 23:49:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:49:18.852+03	2021-05-23 23:49:18.859+03	
2f939e97-0ca3-0e8a-86f1-f196bca47dc3	2021-05-23 23:49:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:49:38.852+03	2021-05-23 23:49:38.863+03	
a43f0525-1f9d-6ac4-53db-a535ce3ec901	2021-05-23 23:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:49:58.853+03	2021-05-23 23:49:58.862+03	
96be9a0c-cd42-9528-223f-d84926267fa9	2021-05-23 23:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:50:09.852+03	2021-05-23 23:50:09.858+03	
38aa32a1-4784-f419-0791-1de69d7af96d	2021-05-23 23:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:50:29.852+03	2021-05-23 23:50:29.859+03	
b4479df7-8020-3190-6235-5ea2ca9b4a34	2021-05-23 23:50:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:50:50.852+03	2021-05-23 23:50:50.864+03	
c3422fce-552b-9169-676d-269280c17995	2021-05-23 23:51:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:51:10.852+03	2021-05-23 23:51:10.859+03	
1de7b612-29e5-4537-6d24-3f0ce24f63c1	2021-05-23 23:51:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:51:31.853+03	2021-05-23 23:51:31.869+03	
d1afd9ab-277b-2737-7fa2-2a97c9ffb5ea	2021-05-23 23:51:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:51:51.853+03	2021-05-23 23:51:51.86+03	
df660572-ff62-b944-048d-7266181cdaca	2021-05-23 23:52:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:52:13.853+03	2021-05-23 23:52:13.86+03	
6d70ad75-e35c-6cf5-dd20-98e4f5a5517c	2021-05-23 23:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:52:34.852+03	2021-05-23 23:52:34.915+03	
3c5ad60b-4536-af1f-63ba-fb0e3129ed95	2021-05-23 23:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:52:54.852+03	2021-05-23 23:52:54.858+03	
2652071b-f813-8b76-c28f-957bc1aea78f	2021-05-23 23:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:53:15.852+03	2021-05-23 23:53:15.859+03	
2d2f9aa3-1f23-2a8c-68ac-b22b2a28b35b	2021-05-23 23:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:53:35.852+03	2021-05-23 23:53:35.863+03	
2be42315-d560-ec72-98ec-957de3fea328	2021-05-23 23:53:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:53:56.852+03	2021-05-23 23:53:56.859+03	
cd5a9b4c-8c1f-af41-959e-036a530240ef	2021-05-23 23:54:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:54:16.852+03	2021-05-23 23:54:16.859+03	
5953acb7-52e3-f2b1-789a-8ce76e6670dd	2021-05-23 23:54:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:54:36.853+03	2021-05-23 23:54:36.861+03	
c8e21462-34be-e5d9-b46c-85778f3906d3	2021-05-23 23:54:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:54:57.853+03	2021-05-23 23:54:57.861+03	
49dfb640-1af9-625b-5b60-d8360da1f9d0	2021-05-23 23:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:55:18.853+03	2021-05-23 23:55:18.859+03	
ea3206d8-0f88-1b15-df41-34fa18292b98	2021-05-23 23:55:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:55:38.853+03	2021-05-23 23:55:38.859+03	
b77e9e7d-b04c-e41e-d4d7-4aa6222ffab4	2021-05-23 23:55:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:55:58.853+03	2021-05-23 23:55:58.86+03	
369a3d70-6738-a07e-ffcf-3dcaec5c3ebe	2021-05-23 23:56:09.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:56:09.853+03	2021-05-23 23:56:09.861+03	
49e31918-d9df-fb28-e6cf-fff9ece0b621	2021-05-23 23:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:56:30.852+03	2021-05-23 23:56:30.863+03	
ae951d8a-bed0-aade-7e0f-02116fcd1680	2021-05-23 23:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:56:50.852+03	2021-05-23 23:56:50.859+03	
dabb5f37-285d-7f76-b6a2-8f33e55c9b7a	2021-05-23 23:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:57:10.852+03	2021-05-23 23:57:10.859+03	
5f4d5211-4870-7d97-7d08-5a87226071f8	2021-05-23 23:57:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:57:30.853+03	2021-05-23 23:57:30.861+03	
9f24b195-f09b-f634-686e-a15deebf1b58	2021-05-23 23:57:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:57:51.854+03	2021-05-23 23:57:51.86+03	
62dabb3e-5941-5592-4963-cee781409f14	2021-05-23 23:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:58:13.852+03	2021-05-23 23:58:13.859+03	
c1bdd6fa-6fdf-da59-ec20-3c93863268f6	2021-05-23 23:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:58:33.853+03	2021-05-23 23:58:33.861+03	
2a385f2d-d1c3-97fe-9c44-7357cdb5e08f	2021-05-23 23:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:58:54.853+03	2021-05-23 23:58:54.86+03	
dc10b45b-4114-cd31-efde-dacfaa566b6e	2021-05-23 23:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:59:15.852+03	2021-05-23 23:59:15.86+03	
5d6ecf8c-4ec4-b5a8-cff1-0536879e8928	2021-05-23 23:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:59:35.852+03	2021-05-23 23:59:35.858+03	
829c94a0-10f7-b9c5-f92e-434b213bdcac	2021-05-23 23:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:59:55.852+03	2021-05-23 23:59:55.858+03	
86174a4c-42e4-d124-e381-67f7d21b9347	2021-05-24 00:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:00:05.852+03	2021-05-24 00:00:05.86+03	
88b971cb-e373-0aa8-59ab-fe4c887a1bb8	2021-05-24 00:00:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:00:26.852+03	2021-05-24 00:00:26.86+03	
b2ba5428-9bb9-82eb-eb9c-ce9fde8ad076	2021-05-24 00:00:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:00:46.853+03	2021-05-24 00:00:46.861+03	
7587afb1-58ca-27d0-f238-004d2d53dcaf	2021-05-24 00:01:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:01:07.852+03	2021-05-24 00:01:07.859+03	
890495c0-213b-1d14-43d2-3f91cc2e62ec	2021-05-24 00:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:01:27.852+03	2021-05-24 00:01:27.859+03	
06cbef34-2729-ec81-eb39-a5a7f1e38022	2021-05-24 00:01:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:01:47.852+03	2021-05-24 00:01:47.859+03	
24b9b069-113a-598d-f655-d77b01d407cc	2021-05-24 00:02:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:02:07.852+03	2021-05-24 00:02:07.86+03	
2c97add1-7064-250e-3160-e7dd7c79497b	2021-05-24 00:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:02:27.853+03	2021-05-24 00:02:27.861+03	
b537defc-f93b-b180-ad70-2f7519c428d7	2021-05-24 00:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:02:48.853+03	2021-05-24 00:02:48.859+03	
347d56fd-ef8e-fd02-54fe-3632d07e2e4a	2021-05-24 00:03:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:03:09.852+03	2021-05-24 00:03:09.86+03	
b9bbf1fe-0606-a6ab-8716-f790735a483e	2021-05-24 00:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:03:30.852+03	2021-05-24 00:03:30.858+03	
86032e0e-2219-63d1-f41b-c40d80c8397e	2021-05-24 00:03:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:03:51.852+03	2021-05-24 00:03:51.865+03	
3083c242-abda-35f7-1db7-282c09d6960c	2021-05-24 00:04:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:04:12.852+03	2021-05-24 00:04:12.859+03	
3baf8174-5e87-7688-a7ec-1adf6c8827fb	2021-05-24 00:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:04:32.853+03	2021-05-24 00:04:32.859+03	
ae321614-26cb-e95f-8642-d731e87ca434	2021-05-24 00:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:04:53.852+03	2021-05-24 00:04:53.858+03	
9b95126e-ccd7-9dd4-ae6e-10d9e4807780	2021-05-24 00:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:05:13.852+03	2021-05-24 00:05:13.859+03	
6b84802d-e4b8-4e24-ac92-58d27904a7ee	2021-05-24 00:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:05:33.853+03	2021-05-24 00:05:33.86+03	
8e6337c7-20dc-dd2c-0c25-278a082a1eb8	2021-05-24 00:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:05:53.853+03	2021-05-24 00:05:53.861+03	
86e71a7d-d59f-195a-3757-d1fc2f7f85dc	2021-05-24 00:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:06:14.852+03	2021-05-24 00:06:14.859+03	
ffc345f0-efff-df3f-669a-a3fb609f7c84	2021-05-24 00:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:06:34.852+03	2021-05-24 00:06:34.858+03	
5c320ceb-9af9-0139-6eaf-5e34f601b9c8	2021-05-24 00:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:06:54.853+03	2021-05-24 00:06:54.86+03	
a480ac34-cfcf-99e5-16bb-ee89c1f971e6	2021-05-24 00:07:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:07:16.852+03	2021-05-24 00:07:16.859+03	
da35d757-9873-47d9-7366-7c2d07c6fe93	2021-05-24 00:07:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:07:36.852+03	2021-05-24 00:07:36.859+03	
ae072201-ca31-c8c5-5d69-33e595381e6f	2021-05-24 00:07:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:07:57.852+03	2021-05-24 00:07:57.858+03	
2c7197ab-53c7-e891-d27b-3d33f200522d	2021-05-24 00:08:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:08:17.853+03	2021-05-24 00:08:17.859+03	
14a7156f-e590-2e8d-4b51-e4d508f897c7	2021-05-24 00:08:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:08:38.853+03	2021-05-24 00:08:38.859+03	
496c4d01-84e2-40ed-e287-40a7325c10dd	2021-05-24 00:08:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:08:59.853+03	2021-05-24 00:08:59.86+03	
2b523744-6c4c-22b5-3a9a-d10984777824	2021-05-24 00:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:09:20.853+03	2021-05-24 00:09:20.859+03	
32d1f0ce-9b77-2e7f-d5d9-19ccd2bcca06	2021-05-24 00:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:09:42.852+03	2021-05-24 00:09:42.859+03	
ac86645b-72b9-de30-a72f-fc52c16bcc1b	2021-05-24 00:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 00:10:00.852+03	2021-05-24 00:10:00.857+03	ERROR
b3f41030-948c-7a77-79f0-168395a62ad5	2021-05-24 00:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:10:12.852+03	2021-05-24 00:10:12.859+03	
fa88874d-f82b-7e72-ae12-cad4f7fcf0dd	2021-05-24 00:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:10:32.853+03	2021-05-24 00:10:32.873+03	
6a84a6c1-e892-2472-0f91-26d225f24fbe	2021-05-24 00:10:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:10:53.853+03	2021-05-24 00:10:53.859+03	
dd19fb4d-b6a3-b0bd-4225-0cd073bc90b4	2021-05-24 00:11:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:11:14.853+03	2021-05-24 00:11:14.86+03	
6a4cb542-9c69-781d-b276-3588d8f3425a	2021-05-24 00:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:11:35.852+03	2021-05-24 00:11:35.859+03	
5f9e1945-8c0a-71bd-9ec5-4d0155427a76	2021-05-24 00:11:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:11:56.853+03	2021-05-24 00:11:56.86+03	
63016326-0394-e438-9039-17329ef9c59d	2021-05-24 00:12:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:12:17.852+03	2021-05-24 00:12:17.859+03	
2938d283-7cb8-98ad-7389-5436c27aa407	2021-05-24 00:12:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:12:37.853+03	2021-05-24 00:12:37.859+03	
baa778c8-05e6-208a-af3a-fdd35ad19900	2021-05-24 00:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:12:59.852+03	2021-05-24 00:12:59.859+03	
a962773a-de89-31b9-81e3-72f37b12d22a	2021-05-24 00:13:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:13:19.853+03	2021-05-24 00:13:19.86+03	
016706b3-a193-3000-a557-3ad2d75423d9	2021-05-24 00:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:13:41.853+03	2021-05-24 00:13:41.859+03	
e9965f30-505d-19c0-ff59-8b6cd99b489e	2021-05-24 00:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:14:02.852+03	2021-05-24 00:14:02.874+03	
4480cf15-ba83-c517-6498-c52cb2c8852b	2021-05-24 00:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:14:22.853+03	2021-05-24 00:14:22.86+03	
ce2a6077-bd11-9b05-3060-26298bcd1b70	2021-05-24 00:14:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:14:43.852+03	2021-05-24 00:14:43.859+03	
92e01fac-b879-318a-80a3-d3c0e813b133	2021-05-24 00:15:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:15:04.852+03	2021-05-24 00:15:04.86+03	
6357f330-2c90-1a6b-2fca-ee97186cfe80	2021-05-24 00:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:15:24.853+03	2021-05-24 00:15:24.862+03	
6bd86665-2640-f6af-b215-b7b83a8ace61	2021-05-24 00:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:15:45.852+03	2021-05-24 00:15:45.86+03	
45381c90-fb3b-4075-72e8-903475a6d060	2021-05-24 00:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:16:05.853+03	2021-05-24 00:16:05.859+03	
6a019650-c701-0dcc-1168-1cfdcf5270ff	2021-05-24 00:16:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:16:26.852+03	2021-05-24 00:16:26.859+03	
a2340c66-94ce-b46f-1b9b-36bf3610f155	2021-05-24 00:16:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:16:46.853+03	2021-05-24 00:16:46.859+03	
c85fe5cc-7c69-3cc9-08cb-2e6836156397	2021-05-24 00:17:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:17:07.853+03	2021-05-24 00:17:07.86+03	
617d3dbb-2cb3-2137-68e7-aa66da1e5adc	2021-05-23 23:56:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:56:19.853+03	2021-05-23 23:56:19.859+03	
7d33868a-89bc-ca20-1027-e6b4cb31bda8	2021-05-23 23:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:56:40.852+03	2021-05-23 23:56:40.858+03	
5ed211b9-34c5-3f75-887a-310fbadeb48c	2021-05-23 23:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:57:00.852+03	2021-05-23 23:57:00.859+03	
f262843f-8ccd-4b4d-e61a-0cd105186e2f	2021-05-23 23:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:57:20.852+03	2021-05-23 23:57:20.859+03	
a1c1dabf-f8a7-e88d-586d-f8baa76041e3	2021-05-23 23:57:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:57:41.853+03	2021-05-23 23:57:41.86+03	
ac5c6cef-2986-b261-c7dd-f34d5781f30d	2021-05-23 23:58:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:58:02.853+03	2021-05-23 23:58:02.859+03	
c5454cbf-4376-19ef-5611-077f5f0d60ed	2021-05-23 23:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:58:23.853+03	2021-05-23 23:58:23.862+03	
c8e3516b-a933-890d-4b05-82ca5f27ede7	2021-05-23 23:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:58:44.852+03	2021-05-23 23:58:44.865+03	
81c39c9a-7399-bd19-d447-9909b3de6a23	2021-05-23 23:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:59:04.853+03	2021-05-23 23:59:04.862+03	
8050bff4-316e-3f2c-8a46-30d394467636	2021-05-23 23:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:59:25.852+03	2021-05-23 23:59:25.858+03	
90374bc0-33a6-b9fe-f737-7ec9429de921	2021-05-23 23:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-23 23:59:45.852+03	2021-05-23 23:59:45.859+03	
c82d44d9-ef1c-eeb5-0559-a54dc6933e04	2021-05-24 00:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 00:00:00.853+03	2021-05-24 00:00:00.867+03	ERROR
5dd5aa82-f39a-0ccd-0c29-d0cb73315e6c	2021-05-24 00:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:00:15.853+03	2021-05-24 00:00:15.86+03	
a448de41-af4b-4049-3bd6-728867b1e779	2021-05-24 00:00:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:00:36.852+03	2021-05-24 00:00:36.86+03	
c21785fd-a264-a629-a55e-1f773d18fbe3	2021-05-24 00:00:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:00:57.852+03	2021-05-24 00:00:57.86+03	
756027b5-23a2-6074-0496-03dd94ff8134	2021-05-24 00:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:01:17.852+03	2021-05-24 00:01:17.859+03	
6b5ff241-6858-05e1-85af-9c4e71957d02	2021-05-24 00:01:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:01:37.852+03	2021-05-24 00:01:37.859+03	
ff7dab1c-4e91-8b18-5617-68f035dd0118	2021-05-24 00:01:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:01:57.852+03	2021-05-24 00:01:57.859+03	
4c07a8aa-6501-f1c9-ebaa-fd03d435a99a	2021-05-24 00:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:02:17.853+03	2021-05-24 00:02:17.861+03	
d2ec8827-4517-60c8-deb9-57bca6600171	2021-05-24 00:02:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:02:38.852+03	2021-05-24 00:02:38.869+03	
aea5f004-83a7-5f0d-1c49-22e94090091c	2021-05-24 00:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:02:58.853+03	2021-05-24 00:02:58.859+03	
37d7501f-faa1-6f44-dafa-0188191b3b8f	2021-05-24 00:03:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:03:19.853+03	2021-05-24 00:03:19.86+03	
94aaefce-00b4-bd7a-39ac-53dbe44faead	2021-05-24 00:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:03:40.853+03	2021-05-24 00:03:40.86+03	
630b95e0-4f69-35cf-06f8-82bc71be96bb	2021-05-24 00:04:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:04:01.853+03	2021-05-24 00:04:01.86+03	
4635f433-9a4a-0d09-45f1-6cb496072727	2021-05-24 00:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:04:22.853+03	2021-05-24 00:04:22.882+03	
0cf2e940-c0f5-abd0-6402-50e43745d6c4	2021-05-24 00:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:04:43.852+03	2021-05-24 00:04:43.858+03	
c5ac96ec-7dd5-f0ed-b6dc-2a5e2d9338c7	2021-05-24 00:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:05:03.852+03	2021-05-24 00:05:03.871+03	
e76b9b8f-9a93-858c-6119-abfafbfc84c3	2021-05-24 00:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:05:23.853+03	2021-05-24 00:05:23.858+03	
f99202f0-f2ae-e3ad-0180-36017d7d75a9	2021-05-24 00:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:05:43.853+03	2021-05-24 00:05:43.859+03	
80f5dcf1-9a6b-730a-d09d-89b1cb54ef5c	2021-05-24 00:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:06:04.852+03	2021-05-24 00:06:04.86+03	
106bd44a-432a-ec7b-dd9d-502905a89a15	2021-05-24 00:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:06:24.852+03	2021-05-24 00:06:24.867+03	
29a6d481-b3ef-846b-b6db-69bb2f41858a	2021-05-24 00:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:06:44.853+03	2021-05-24 00:06:44.858+03	
1f0dfd5f-9ec9-9652-9e41-5da097df69d8	2021-05-24 00:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:07:05.853+03	2021-05-24 00:07:05.859+03	
ea616498-46a2-f4d0-3598-4bae7fd87ba1	2021-05-24 00:07:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:07:26.852+03	2021-05-24 00:07:26.869+03	
1b8ff04b-bb22-a982-3de9-e677e432ee2c	2021-05-24 00:07:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:07:46.853+03	2021-05-24 00:07:46.861+03	
c60fd92d-d025-f74c-7572-399827c6325f	2021-05-24 00:08:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:08:07.853+03	2021-05-24 00:08:07.86+03	
1281209e-93a8-33ba-ed48-d93f7bfbbd11	2021-05-24 00:08:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:08:28.852+03	2021-05-24 00:08:28.86+03	
7149eb7f-6725-7f89-9a05-38b6561f5fe6	2021-05-24 00:08:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:08:48.853+03	2021-05-24 00:08:48.861+03	
df96a80b-e8d7-c812-7783-a4a5d851b894	2021-05-24 00:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:09:10.852+03	2021-05-24 00:09:10.859+03	
5333f371-ce12-986a-b5f9-959ed9b158b4	2021-05-24 00:09:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:09:31.853+03	2021-05-24 00:09:31.859+03	
dcb0c50e-30f8-c762-f64d-f1f988d12280	2021-05-24 00:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:09:52.852+03	2021-05-24 00:09:52.87+03	
6d06394e-3db4-e70c-e686-ac98ff358ce1	2021-05-24 00:10:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:10:02.852+03	2021-05-24 00:10:02.859+03	
326c0fa4-b851-9af5-6dab-758a7972ef4f	2021-05-24 00:10:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:10:22.853+03	2021-05-24 00:10:22.86+03	
d88a194c-64bc-1e2a-eee5-9774ced1db1b	2021-05-24 00:10:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:10:43.853+03	2021-05-24 00:10:43.859+03	
96ee1485-d19d-8b94-37e1-fc4f8c57c42f	2021-05-24 00:11:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:11:03.853+03	2021-05-24 00:11:04.017+03	
f8696050-6f97-eff5-49e6-ece26f0d0123	2021-05-24 00:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:11:25.852+03	2021-05-24 00:11:25.859+03	
ee70303f-3e7f-dbc6-a529-54e5a00e43c3	2021-05-24 00:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:11:45.853+03	2021-05-24 00:11:45.865+03	
6b919170-412a-fa4b-a310-f5c4e67ec4cd	2021-05-24 00:12:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:12:07.852+03	2021-05-24 00:12:07.86+03	
75fe7cad-0b9a-cf87-3257-b7e6e982f8e3	2021-05-24 00:12:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:12:27.853+03	2021-05-24 00:12:27.867+03	
8e75c906-1022-1e87-de2f-340d3b1dffa2	2021-05-24 00:12:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:12:48.853+03	2021-05-24 00:12:48.859+03	
f87fcfb0-d15e-e5ff-1904-7bab9938c432	2021-05-24 00:13:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:13:09.852+03	2021-05-24 00:13:09.859+03	
0b834fb7-80aa-828c-6e1b-2fbbbf20b1d3	2021-05-24 00:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:13:30.853+03	2021-05-24 00:13:30.859+03	
7bde2cff-eea7-b022-c332-6507307d861c	2021-05-24 00:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:13:52.852+03	2021-05-24 00:13:52.859+03	
499635a9-91df-6af4-43da-5ed67cbe4f3c	2021-05-24 00:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:14:12.852+03	2021-05-24 00:14:12.859+03	
21f8c485-4ea0-bdfa-13ab-778da7d19f20	2021-05-24 00:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:14:32.853+03	2021-05-24 00:14:32.86+03	
a7d03433-c632-9bdb-0887-fc86affe244b	2021-05-24 00:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:14:53.853+03	2021-05-24 00:14:53.86+03	
6b5e5cc0-a744-dd6f-0960-85eeca17da91	2021-05-24 00:15:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:15:14.852+03	2021-05-24 00:15:14.858+03	
deeaf185-f234-751b-e878-6b8b698e6564	2021-05-24 00:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:15:35.852+03	2021-05-24 00:15:35.874+03	
4f9921ec-ebfc-c540-7cc4-90e96ff7029b	2021-05-24 00:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:15:55.853+03	2021-05-24 00:15:55.859+03	
a72f8ade-c8df-89b6-e8cc-f3384d637088	2021-05-24 00:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:16:15.853+03	2021-05-24 00:16:15.86+03	
a2e77fd8-3e42-316d-f106-931d5b01ebba	2021-05-24 00:16:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:16:36.852+03	2021-05-24 00:16:36.859+03	
77066c05-cb5a-294f-aece-646520efbaa5	2021-05-24 00:16:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:16:57.853+03	2021-05-24 00:16:57.859+03	
82d99e98-2795-2dcc-fda5-276067df9679	2021-05-24 00:17:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:17:17.853+03	2021-05-24 00:17:17.859+03	
28f072eb-5a48-74bb-a56b-5dc8ad55e1aa	2021-05-24 00:17:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:17:27.853+03	2021-05-24 00:17:27.859+03	
eb37c50d-8210-b55b-a355-bbbb1a4c4747	2021-05-24 00:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:17:49.852+03	2021-05-24 00:17:49.859+03	
9ef6d752-1160-31e3-6dcf-e383192b90e8	2021-05-24 00:18:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:18:09.853+03	2021-05-24 00:18:09.86+03	
78eda6b8-b2cd-d067-20e0-fa4d94c692ec	2021-05-24 00:18:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:18:30.853+03	2021-05-24 00:18:30.859+03	
5a7e59bf-6916-f93f-93db-6aa71e77ea34	2021-05-24 00:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:18:52.852+03	2021-05-24 00:18:52.859+03	
69220d53-ce42-3a61-7eea-2b5b381ab0c2	2021-05-24 00:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:19:12.852+03	2021-05-24 00:19:12.859+03	
379b4183-bb8f-c907-54c9-78cefbaa5988	2021-05-24 00:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:19:33.852+03	2021-05-24 00:19:33.859+03	
d73a5b45-7412-d5fe-95e2-b802464b5ab6	2021-05-24 00:19:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:19:53.852+03	2021-05-24 00:19:53.859+03	
6a323b94-be23-7e38-befd-a47542faf206	2021-05-24 00:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:20:03.852+03	2021-05-24 00:20:03.858+03	
4b6c93c7-ac22-ee9c-7df1-10b54e369ea6	2021-05-24 00:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:20:23.852+03	2021-05-24 00:20:23.858+03	
bd82413e-55d3-9f60-46e0-55f7c323687d	2021-05-24 00:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:20:43.852+03	2021-05-24 00:20:43.865+03	
62065ec2-b6f8-7025-c743-7aed0401b4cb	2021-05-24 00:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:21:03.853+03	2021-05-24 00:21:03.861+03	
f2426383-ed82-5f1b-61df-bf7b00ae0704	2021-05-24 00:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:21:23.853+03	2021-05-24 00:21:23.861+03	
3fd593ee-1daf-9baf-6fd6-a43ae3572b6f	2021-05-24 00:21:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:21:44.852+03	2021-05-24 00:21:44.859+03	
efab53df-59c8-e413-1e4f-494dcdeeda1f	2021-05-24 00:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:22:04.852+03	2021-05-24 00:22:04.859+03	
88747c65-f1f5-35cd-519b-8de74513ceb0	2021-05-24 00:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:22:24.853+03	2021-05-24 00:22:24.859+03	
d5886361-c757-2254-a07a-662d1c1e03fc	2021-05-24 00:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:22:45.853+03	2021-05-24 00:22:45.865+03	
48663051-f83f-9fb7-2f6f-019e923397c9	2021-05-24 00:23:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:23:06.853+03	2021-05-24 00:23:06.86+03	
231777db-efa7-da3c-b17f-c9f05838b7d9	2021-05-24 00:23:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:23:27.852+03	2021-05-24 00:23:27.859+03	
c8c177de-22aa-3d1d-aff7-10dddcbbc809	2021-05-24 00:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:23:48.852+03	2021-05-24 00:23:48.86+03	
9911ffb9-023a-6379-129a-1247c6fd1ee8	2021-05-24 00:24:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:24:08.852+03	2021-05-24 00:24:08.859+03	
f2fd3a7f-f798-3aff-7858-4becc8ff03c8	2021-05-24 00:24:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:24:28.853+03	2021-05-24 00:24:28.873+03	
bf483b6a-7bc0-b7ee-5e14-e9bd12bf53d3	2021-05-24 00:24:49.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:24:49.86+03	2021-05-24 00:24:49.867+03	
ae669bfe-9437-6d24-f1e6-0fd577a37171	2021-05-24 00:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:25:10.852+03	2021-05-24 00:25:10.859+03	
93bfdba5-bf42-d388-c62e-1eff31dfe2a1	2021-05-24 00:25:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:25:30.853+03	2021-05-24 00:25:30.859+03	
02e6f951-f83d-504b-33cc-4e86b1ad015f	2021-05-24 00:25:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:25:50.853+03	2021-05-24 00:25:50.859+03	
d7c7116f-8878-5fd0-e01e-3ea70d4a1177	2021-05-24 00:26:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:26:11.852+03	2021-05-24 00:26:11.859+03	
0e8584b5-04bc-93a9-ebd9-fe192943da2b	2021-05-24 00:26:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:26:31.854+03	2021-05-24 00:26:31.86+03	
50e68f0e-921f-7ebc-76d3-6fdd81f9a176	2021-05-24 00:26:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:26:52.852+03	2021-05-24 00:26:52.859+03	
e7fa5af3-aad8-69a7-e0b1-f56c2e904cdd	2021-05-24 00:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:27:13.852+03	2021-05-24 00:27:13.866+03	
4b751dd4-ff74-2ea5-632f-5a8b7a068bfe	2021-05-24 00:27:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:27:33.853+03	2021-05-24 00:27:33.859+03	
7240397c-66e1-3454-a656-f70eb04f94a3	2021-05-24 00:27:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:27:54.852+03	2021-05-24 00:27:54.87+03	
94ed2da0-0301-7be4-84dc-8a671b949f8d	2021-05-24 00:28:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:28:14.853+03	2021-05-24 00:28:14.859+03	
6ba38c5c-bb80-98d0-86ab-6424b3c137fa	2021-05-24 00:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:28:34.853+03	2021-05-24 00:28:34.86+03	
bd498b03-b105-f025-d9c5-89c43b57b55f	2021-05-24 00:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:28:55.852+03	2021-05-24 00:28:55.859+03	
bdfc7c1d-eaa3-6cac-cdee-5a9c6e7cde69	2021-05-24 00:29:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:29:16.854+03	2021-05-24 00:29:16.859+03	
2a77bc9e-b909-dab6-f333-4f45d47e2a77	2021-05-24 00:29:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:29:37.853+03	2021-05-24 00:29:37.859+03	
5382d2a5-6e8e-ff1c-109d-1e7b44fcfc14	2021-05-24 00:29:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:29:59.853+03	2021-05-24 00:29:59.879+03	
9f3db42c-b250-84ab-553d-9bff781082f2	2021-05-24 00:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:30:10.853+03	2021-05-24 00:30:10.859+03	
2846b7da-7e09-dfcd-1e52-b8f710eedf39	2021-05-24 00:30:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:30:31.854+03	2021-05-24 00:30:31.86+03	
57d1e913-f312-20f9-cbcf-c2069cd0f64e	2021-05-24 00:30:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:30:52.852+03	2021-05-24 00:30:52.861+03	
128c6022-ff21-beb7-f4d3-93703c5233dc	2021-05-24 00:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:31:13.852+03	2021-05-24 00:31:13.858+03	
af8eda66-9191-6db9-ce48-82129a1a3a14	2021-05-24 00:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:31:33.853+03	2021-05-24 00:31:33.86+03	
be0dd88d-b8e6-6a17-5195-2ec2b1628e8d	2021-05-24 00:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:31:55.853+03	2021-05-24 00:31:55.859+03	
5016f109-d3aa-e63f-440c-3886cbce57d7	2021-05-24 00:32:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:32:16.852+03	2021-05-24 00:32:16.859+03	
e9df0e5a-41e2-cedd-2986-1cafa8510972	2021-05-24 00:32:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:32:36.852+03	2021-05-24 00:32:36.861+03	
e9f6e065-ba2f-6cbd-e6f6-ab82e705124f	2021-05-24 00:32:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:32:56.853+03	2021-05-24 00:32:56.86+03	
637afd64-e13f-4778-bcf6-2512e2b7814e	2021-05-24 00:33:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:33:17.852+03	2021-05-24 00:33:17.859+03	
9cd08b2c-cb0f-89e0-2700-1be3960dd861	2021-05-24 00:33:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:33:37.853+03	2021-05-24 00:33:37.86+03	
c51ca661-edb1-6127-7bd5-a77d38e69d6c	2021-05-24 00:33:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:33:57.853+03	2021-05-24 00:33:57.862+03	
86b80b4d-9ae5-7646-4a64-e514e3236c9d	2021-05-24 00:34:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:34:18.852+03	2021-05-24 00:34:18.859+03	
4625ef16-d8a2-2b2a-72cd-7c34e4eae8f4	2021-05-24 00:34:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:34:39.853+03	2021-05-24 00:34:39.859+03	
188057cc-77ae-d3ee-f979-5572cdfcd7a3	2021-05-24 00:35:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:35:00.853+03	2021-05-24 00:35:00.858+03	
e77b2514-b653-2465-5321-1b3ec9b5690e	2021-05-24 00:35:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:35:21.852+03	2021-05-24 00:35:21.859+03	
7dbb0238-295a-b29d-2173-875390547c75	2021-05-24 00:35:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:35:41.853+03	2021-05-24 00:35:41.859+03	
8fe71b36-a5dd-6c8a-7a77-66c3aa2caa0f	2021-05-24 00:36:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:36:02.853+03	2021-05-24 00:36:02.859+03	
aa46366e-b668-4142-e227-274bbb759bd3	2021-05-24 00:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:36:23.852+03	2021-05-24 00:36:23.859+03	
5bf5b663-b2ca-98d2-9201-9817008d17e9	2021-05-24 00:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:36:44.852+03	2021-05-24 00:36:44.859+03	
8e407df4-6b97-5794-a817-b2b2d25a95c2	2021-05-24 00:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:37:05.853+03	2021-05-24 00:37:05.866+03	
511b55d8-a602-1e29-f049-4d344c26b82d	2021-05-24 00:37:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:37:26.852+03	2021-05-24 00:37:26.859+03	
0523e5fc-4fa1-5a6d-156b-823df244372d	2021-05-24 00:37:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:37:46.852+03	2021-05-24 00:37:46.86+03	
192251dd-c583-9abe-20fe-e02ff8a3bfd1	2021-05-24 00:37:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:37:56.852+03	2021-05-24 00:37:56.86+03	
f388db4d-6af1-266c-8c4c-2bbc93a769fa	2021-05-24 00:38:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:38:16.854+03	2021-05-24 00:38:16.86+03	
36b218c9-0f09-37fa-9dfd-ff9221d2ec01	2021-05-24 00:17:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:17:38.853+03	2021-05-24 00:17:38.858+03	
6088935d-598a-07d7-a7a2-56086daf9d77	2021-05-24 00:17:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:17:59.852+03	2021-05-24 00:17:59.858+03	
c3bb46d8-545c-8f0f-d7b6-d6817420e8b2	2021-05-24 00:18:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:18:19.853+03	2021-05-24 00:18:19.859+03	
284cb03d-1757-f32e-f5bf-49e351eb3fb0	2021-05-24 00:18:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:18:41.853+03	2021-05-24 00:18:41.868+03	
3cdd7e2f-6f0c-cce2-3a2a-49157ba5d258	2021-05-24 00:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:19:02.852+03	2021-05-24 00:19:02.859+03	
023bd52e-63cb-0b56-313f-ecac598cc0ca	2021-05-24 00:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:19:22.853+03	2021-05-24 00:19:22.859+03	
d4ee725b-fe71-30f3-93c3-d346be129a69	2021-05-24 00:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:19:43.852+03	2021-05-24 00:19:43.859+03	
7aada808-f1fe-8985-683c-a15859fc31d0	2021-05-24 00:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 00:20:00.852+03	2021-05-24 00:20:00.857+03	ERROR
3d31b1de-0215-90c3-0f69-62da0fbf1f38	2021-05-24 00:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:20:13.852+03	2021-05-24 00:20:13.858+03	
75abb683-d369-2fb9-ca8c-32a0d699b199	2021-05-24 00:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:20:33.852+03	2021-05-24 00:20:33.859+03	
c43d14fd-7c9a-873b-ccbc-fe50831e2a5a	2021-05-24 00:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:20:53.852+03	2021-05-24 00:20:53.858+03	
c4ae8ddc-7fb3-3e47-75af-59fb4c689b08	2021-05-24 00:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:21:13.853+03	2021-05-24 00:21:13.86+03	
e26eacff-e2a6-8bd9-89f7-f3a3b431efd4	2021-05-24 00:21:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:21:34.852+03	2021-05-24 00:21:34.86+03	
91379e77-ee66-4d78-988e-c5849f77c4e5	2021-05-24 00:21:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:21:54.852+03	2021-05-24 00:21:54.859+03	
49324539-d35a-8c9b-65ac-8a83d9166db1	2021-05-24 00:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:22:14.852+03	2021-05-24 00:22:14.859+03	
31fd4e09-d345-be5d-9e38-c45fa9a8497c	2021-05-24 00:22:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:22:34.853+03	2021-05-24 00:22:34.859+03	
9495f686-30e5-8e10-8f02-866967f78a4e	2021-05-24 00:22:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:22:56.852+03	2021-05-24 00:22:56.861+03	
280deafe-56eb-e68f-b286-4fb637ae283a	2021-05-24 00:23:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:23:16.854+03	2021-05-24 00:23:16.861+03	
22648b48-e598-463e-6240-d1941aab775c	2021-05-24 00:23:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:23:37.853+03	2021-05-24 00:23:37.861+03	
16b8e045-bbb0-2ca3-46ca-c443e46421bb	2021-05-24 00:23:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:23:58.852+03	2021-05-24 00:23:58.859+03	
ec9b8d83-bca9-2d9d-2e3b-20b2553c1b1c	2021-05-24 00:24:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:24:18.852+03	2021-05-24 00:24:18.858+03	
384ad52c-05ac-d89b-3325-9b3dacf41daf	2021-05-24 00:24:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:24:39.853+03	2021-05-24 00:24:39.86+03	
7d1fc03e-0aba-1844-c906-68c4f1652e0c	2021-05-24 00:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:25:00.852+03	2021-05-24 00:25:00.861+03	
6a15bdec-e25e-fe87-166e-b6c1e3cce840	2021-05-24 00:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:25:20.853+03	2021-05-24 00:25:20.86+03	
e7b1eba8-ba4b-ac28-3eec-00b83e861770	2021-05-24 00:25:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:25:40.853+03	2021-05-24 00:25:40.86+03	
9ab984c9-ffbc-6327-348c-c6ceabfb73c6	2021-05-24 00:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:26:00.853+03	2021-05-24 00:26:00.859+03	
dc6a4ec1-0b6c-90be-6119-d410cdd46bf1	2021-05-24 00:26:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:26:21.852+03	2021-05-24 00:26:21.859+03	
df11513f-7f82-0e22-8f53-06c9908a22d9	2021-05-24 00:26:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:26:42.852+03	2021-05-24 00:26:42.859+03	
57989c22-7385-f2ae-0508-6663ce06c9c8	2021-05-24 00:27:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:27:02.853+03	2021-05-24 00:27:02.86+03	
cb0287e1-af61-bc90-73ed-f38902ed27aa	2021-05-24 00:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:27:23.853+03	2021-05-24 00:27:23.859+03	
b94ca5d0-25b1-93f4-224f-ff4755146ee3	2021-05-24 00:27:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:27:44.852+03	2021-05-24 00:27:44.859+03	
df1eb8da-a5c3-5778-b574-7c04d5570d66	2021-05-24 00:28:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:28:04.853+03	2021-05-24 00:28:04.859+03	
2b41a2b3-50a1-1ec8-0cb4-fa92a80529fd	2021-05-24 00:28:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:28:24.853+03	2021-05-24 00:28:24.859+03	
7b7147ca-4215-253d-41a4-37bc3a53897e	2021-05-24 00:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:28:45.852+03	2021-05-24 00:28:45.859+03	
1da8203a-0b40-32e0-961b-9a7f7c854ec4	2021-05-24 00:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:29:05.853+03	2021-05-24 00:29:05.861+03	
a8dce83a-f64d-8b17-c125-e586493807d0	2021-05-24 00:29:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:29:27.852+03	2021-05-24 00:29:27.859+03	
f6adb5c3-2ae8-dbdc-a2b7-9828b839d6d7	2021-05-24 00:29:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:29:48.853+03	2021-05-24 00:29:48.859+03	
d40abdc3-b783-bf07-d73a-015949109863	2021-05-24 00:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 00:30:00.852+03	2021-05-24 00:30:00.858+03	ERROR
12c135e2-62fc-8bed-b151-3b56aae9ff12	2021-05-24 00:30:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:30:21.852+03	2021-05-24 00:30:21.86+03	
8dcbbe71-537e-85ec-2e69-5f6850d759ba	2021-05-24 00:30:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:30:41.854+03	2021-05-24 00:30:41.86+03	
ffa83a23-5e7b-8d75-f1af-2b09c62f4057	2021-05-24 00:31:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:31:02.853+03	2021-05-24 00:31:02.859+03	
18be815c-a77e-81d6-0ae8-5ec9d32628b5	2021-05-24 00:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:31:23.852+03	2021-05-24 00:31:23.858+03	
650da5be-8113-0c65-983d-ee5d13d7dc3c	2021-05-24 00:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:31:44.853+03	2021-05-24 00:31:44.859+03	
cba1784e-84cd-7041-9bd1-d05fd322f474	2021-05-24 00:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:32:05.853+03	2021-05-24 00:32:05.86+03	
d38d06ac-4a0e-8b3a-8371-7c15cfd100a6	2021-05-24 00:32:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:32:26.852+03	2021-05-24 00:32:26.859+03	
4b9c75e8-db2f-9edf-1215-ab974e450c98	2021-05-24 00:32:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:32:46.852+03	2021-05-24 00:32:46.859+03	
4fdf75c7-dab1-f993-b116-bb19e5351d0d	2021-05-24 00:33:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:33:06.853+03	2021-05-24 00:33:06.86+03	
20ff9cf6-9167-0456-810d-4e84d92d9f3f	2021-05-24 00:33:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:33:27.853+03	2021-05-24 00:33:27.859+03	
8ec23259-f3eb-4749-4a0a-d21067d30b50	2021-05-24 00:33:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:33:47.853+03	2021-05-24 00:33:47.859+03	
238fcc1a-49e2-22fd-6aa7-dd99d8615eee	2021-05-24 00:34:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:34:08.852+03	2021-05-24 00:34:08.858+03	
d5c038d1-d0bb-1e06-79b6-20cb17a905d5	2021-05-24 00:34:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:34:28.853+03	2021-05-24 00:34:28.862+03	
07d3b17c-807a-0234-5a63-cfa5d0b58731	2021-05-24 00:34:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:34:50.852+03	2021-05-24 00:34:50.858+03	
ada0215b-8e6e-4581-6c77-bfd49b25f582	2021-05-24 00:35:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:35:11.852+03	2021-05-24 00:35:11.871+03	
5b85a040-1809-d6d3-51ae-47089a21900b	2021-05-24 00:35:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:35:31.853+03	2021-05-24 00:35:31.859+03	
c7461716-2ac6-2c98-ae44-1f7c276201ed	2021-05-24 00:35:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:35:52.852+03	2021-05-24 00:35:52.859+03	
438e473a-c29b-e9bc-ad7b-cc6226f22a8c	2021-05-24 00:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:36:13.852+03	2021-05-24 00:36:13.859+03	
2321b9c1-f027-93f4-ea51-add003174e57	2021-05-24 00:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:36:33.853+03	2021-05-24 00:36:33.877+03	
ff1c37c2-d192-fd3e-f640-606119213626	2021-05-24 00:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:36:54.853+03	2021-05-24 00:36:54.871+03	
19d5784f-df7c-b58c-b0b2-9c0a8aa7deec	2021-05-24 00:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:37:15.853+03	2021-05-24 00:37:15.86+03	
e352c9a9-e697-8495-191e-8d62aafc24f6	2021-05-24 00:37:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:37:36.852+03	2021-05-24 00:37:36.859+03	
3b8d1258-c2a0-8a2c-fcf9-b7469c8975d9	2021-05-24 00:38:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:38:06.853+03	2021-05-24 00:38:06.86+03	
ecf81ee2-65f8-91de-1b44-1e3a3ef4d7a9	2021-05-24 00:38:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:38:27.853+03	2021-05-24 00:38:27.86+03	
aa4d60aa-6d41-f29c-c0d6-6ad1f4876fc3	2021-05-24 00:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:38:48.852+03	2021-05-24 00:38:48.869+03	
0d475217-9efb-525a-02f5-931909ec218f	2021-05-24 00:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:38:38.852+03	2021-05-24 00:38:38.86+03	
aa00fac7-7c54-58a7-eda3-af356162cb26	2021-05-24 00:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:38:58.852+03	2021-05-24 00:38:58.859+03	
f0cefc4f-9ba2-fdf1-0bf4-692270427d8f	2021-05-24 00:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:39:18.853+03	2021-05-24 00:39:18.859+03	
93dbf7bc-e4be-5728-a3f3-40dc4c890aa7	2021-05-24 00:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:39:39.852+03	2021-05-24 00:39:39.861+03	
46838874-4520-e8c3-2ee7-012efa0884b0	2021-05-24 00:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:39:59.852+03	2021-05-24 00:39:59.858+03	
51d03520-43d4-1ab9-9861-f6d6c21179a4	2021-05-24 00:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:40:09.852+03	2021-05-24 00:40:09.858+03	
1aeb69d9-6d83-3deb-aa39-455d38f508e4	2021-05-24 00:40:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:40:29.852+03	2021-05-24 00:40:29.873+03	
6fc69c49-0ad6-ab1c-a22b-c925f153a52f	2021-05-24 00:40:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:40:49.853+03	2021-05-24 00:40:49.859+03	
3b02a3f3-b875-7df9-4132-abc55cbc87d4	2021-05-24 00:41:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:41:09.853+03	2021-05-24 00:41:09.868+03	
54ba6063-23b7-b0e8-afed-d5afa4cd3c7e	2021-05-24 00:41:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:41:30.852+03	2021-05-24 00:41:30.858+03	
2ef63308-dcf4-3b3b-e63d-c84d126af69a	2021-05-24 00:41:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:41:50.852+03	2021-05-24 00:41:50.866+03	
198f3d9a-f2a0-c996-4778-0e5cfa779f49	2021-05-24 00:42:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:42:11.853+03	2021-05-24 00:42:11.873+03	
185c0b8b-e0af-152b-55c1-a41e7502f19d	2021-05-24 00:42:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:42:31.854+03	2021-05-24 00:42:31.861+03	
51344f13-23d9-d365-95f5-fe5f0734a199	2021-05-24 00:42:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:42:52.852+03	2021-05-24 00:42:52.859+03	
27b6de3d-18c5-c237-cd54-b3f601b01b15	2021-05-24 00:43:12.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:43:12.852+03	2021-05-24 00:43:12.865+03	
df32fb54-3bd6-c217-f426-f597173c51d1	2021-05-24 00:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:43:33.852+03	2021-05-24 00:43:33.859+03	
de221c27-198b-742f-6255-9ce9f6a803b4	2021-05-24 00:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:43:53.853+03	2021-05-24 00:43:53.86+03	
cddf9894-7f93-5e51-3ade-859140873dfa	2021-05-24 00:44:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:44:14.853+03	2021-05-24 00:44:14.86+03	
6915d127-e35c-bdf7-c2a9-98ea34417413	2021-05-24 00:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:44:35.852+03	2021-05-24 00:44:35.861+03	
925adb06-dbca-adbf-2fc7-4ff3133f8588	2021-05-24 00:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:44:55.853+03	2021-05-24 00:44:55.874+03	
0a31bc6d-814c-a2e4-31aa-212d182e0444	2021-05-24 00:45:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:45:16.854+03	2021-05-24 00:45:16.86+03	
12cc85d1-92d3-35ae-027b-9c71b411b64d	2021-05-24 00:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:45:37.852+03	2021-05-24 00:45:37.86+03	
afe7bc33-04f6-5479-81b6-5b23225c5d25	2021-05-24 00:45:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:45:57.852+03	2021-05-24 00:45:57.859+03	
51bb65d6-c8ba-7746-8c76-a9d4feaa3d11	2021-05-24 00:46:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:46:17.853+03	2021-05-24 00:46:17.86+03	
61032133-6ea9-4f95-cf56-5ecba517cf0c	2021-05-24 00:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:46:39.853+03	2021-05-24 00:46:39.859+03	
7d40c818-20ec-9b86-4845-849a159e7385	2021-05-24 00:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:47:00.853+03	2021-05-24 00:47:00.86+03	
333b76c6-486c-ee17-9dcb-b208ff109def	2021-05-24 00:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:47:20.853+03	2021-05-24 00:47:20.859+03	
83fade05-8238-b3e3-db68-7dc36f5cea28	2021-05-24 00:47:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:47:41.852+03	2021-05-24 00:47:41.859+03	
546887c4-0979-84a3-cf4e-1b281e5426c9	2021-05-24 00:48:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:48:01.853+03	2021-05-24 00:48:01.861+03	
89cccdd4-4673-e0d2-48b8-bc31da4d1c2f	2021-05-24 00:48:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:48:22.853+03	2021-05-24 00:48:22.86+03	
fae49993-3e6b-01db-2d06-54019debc83d	2021-05-24 00:48:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:48:43.852+03	2021-05-24 00:48:43.859+03	
c148bfdc-c92d-961f-0bee-667cbb715972	2021-05-24 00:49:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:49:03.852+03	2021-05-24 00:49:03.859+03	
8ddb8ad6-4afc-d43b-441d-207bb217ac9a	2021-05-24 00:49:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:49:23.852+03	2021-05-24 00:49:23.859+03	
662bcbeb-5318-d158-9530-4d19a5bd4c1f	2021-05-24 00:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:49:43.852+03	2021-05-24 00:49:43.859+03	
ca8935cc-249e-061a-7bd6-0942cf0404e6	2021-05-24 00:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 00:50:00.853+03	2021-05-24 00:50:00.857+03	ERROR
f0e03e66-1d90-b46e-07c8-66b4c8dab790	2021-05-24 00:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:50:14.852+03	2021-05-24 00:50:14.859+03	
3c90016b-5000-6d8b-aee7-99b5276d27a3	2021-05-24 00:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:50:34.852+03	2021-05-24 00:50:34.859+03	
fbb383a2-65fb-8e0f-8f71-b6878b5e3538	2021-05-24 00:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:50:54.853+03	2021-05-24 00:50:54.86+03	
de73f028-d44d-6a9d-b25d-d2359f994543	2021-05-24 00:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:51:14.853+03	2021-05-24 00:51:14.859+03	
098cc46a-ac2a-c862-284a-e72271c05f90	2021-05-24 00:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:51:35.852+03	2021-05-24 00:51:35.86+03	
95cee0d8-3db6-4ace-bf25-9048a5dd67ae	2021-05-24 00:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:51:55.853+03	2021-05-24 00:51:55.859+03	
aa5b4d06-213a-d845-1eb8-4e004b3b6866	2021-05-24 00:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:52:15.853+03	2021-05-24 00:52:15.861+03	
a24c7de7-e7e8-be0a-aad2-e1b31d04a9de	2021-05-24 00:52:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:52:36.852+03	2021-05-24 00:52:36.86+03	
f0ed8be1-e145-f359-9663-ab3ab00673c0	2021-05-24 00:52:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:52:56.852+03	2021-05-24 00:52:56.858+03	
f3e30124-5c92-0c59-f601-9a5423c1c3bd	2021-05-24 00:53:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:53:16.852+03	2021-05-24 00:53:16.859+03	
b64d8514-0605-9e4e-b0cd-4ad173fcb9f0	2021-05-24 00:53:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:53:36.852+03	2021-05-24 00:53:36.861+03	
e00fbe48-f302-4b6f-4120-c430644445d5	2021-05-24 00:53:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:53:56.853+03	2021-05-24 00:53:56.86+03	
72c5f6d8-bba9-0f74-2ff8-866eff170011	2021-05-24 00:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:54:17.853+03	2021-05-24 00:54:17.861+03	
f9cbad7b-a4d8-c0ef-e2c8-6bd7a1fe4d7a	2021-05-24 00:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:54:38.852+03	2021-05-24 00:54:38.871+03	
0f4a3ecc-d659-2a4e-e992-ff5e7edb346d	2021-05-24 00:54:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:54:58.852+03	2021-05-24 00:54:58.859+03	
e864c22f-9c30-727d-389c-a60e7df1f89c	2021-05-24 00:55:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:55:18.853+03	2021-05-24 00:55:18.859+03	
e52e6e26-d6ac-37e6-9d4f-4a4965b00dee	2021-05-24 00:55:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:55:39.852+03	2021-05-24 00:55:39.859+03	
94dab3d9-74ab-722d-17cd-7a7ac1b3b862	2021-05-24 00:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:56:00.852+03	2021-05-24 00:56:00.859+03	
7c510c59-7d47-4bec-72a5-17b55b7933f4	2021-05-24 00:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:56:20.852+03	2021-05-24 00:56:20.863+03	
5c4eac79-054e-72da-3293-0c3b79aca4d3	2021-05-24 00:56:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:56:41.852+03	2021-05-24 00:56:41.861+03	
bdfe4d1f-e2a3-3807-4808-4153db6b29eb	2021-05-24 00:57:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:57:02.852+03	2021-05-24 00:57:02.863+03	
f2183f06-6db9-6920-2114-9a3c15613424	2021-05-24 00:57:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:57:22.852+03	2021-05-24 00:57:22.86+03	
b7e0f15d-96fc-aec8-7333-2327b9855493	2021-05-24 00:57:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:57:42.853+03	2021-05-24 00:57:42.861+03	
5894b18f-1bf4-8132-c434-f714dbd14fea	2021-05-24 00:58:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:58:03.852+03	2021-05-24 00:58:03.859+03	
41693a62-0e34-5c88-1eac-c14950edcd0b	2021-05-24 00:58:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:58:23.852+03	2021-05-24 00:58:23.859+03	
d348fd7a-58cb-0dd1-3a2c-522bc7eb2b38	2021-05-24 00:58:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:58:43.852+03	2021-05-24 00:58:43.858+03	
362ffba0-1f26-e243-7835-ff4b40989851	2021-05-24 00:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:59:03.853+03	2021-05-24 00:59:03.859+03	
fb9f6ab9-806a-80cb-bfe0-dd38a9a6d9c2	2021-05-24 00:59:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:59:24.852+03	2021-05-24 00:59:24.859+03	
76228c87-dc31-4d4b-02dd-459fc5ec10f4	2021-05-24 00:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:39:08.853+03	2021-05-24 00:39:08.878+03	
4898cfc8-bf84-45f5-5a7b-478f5e60717e	2021-05-24 00:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:39:29.852+03	2021-05-24 00:39:29.877+03	
49b57065-d078-cc12-9c4a-65a1321c3d21	2021-05-24 00:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:39:49.852+03	2021-05-24 00:39:49.86+03	
258c9860-6e2e-e440-96ef-44eb9e0f8da0	2021-05-24 00:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 00:40:00.852+03	2021-05-24 00:40:00.857+03	ERROR
b8469200-1a0c-6b79-eb03-e1352be32ad4	2021-05-24 00:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:40:19.852+03	2021-05-24 00:40:19.859+03	
ae8b2548-65b5-b8c2-47bf-c4106d49722c	2021-05-24 00:40:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:40:39.853+03	2021-05-24 00:40:39.872+03	
a77727cf-81df-73f1-9f30-789373e6a1f7	2021-05-24 00:40:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:40:59.853+03	2021-05-24 00:40:59.866+03	
bf6e72c5-3fde-12fe-6ba8-226f88ac9b1a	2021-05-24 00:41:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:41:19.853+03	2021-05-24 00:41:19.859+03	
f75919e9-3691-8eb6-32e0-5f02198f9333	2021-05-24 00:41:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:41:40.852+03	2021-05-24 00:41:40.859+03	
cbc6e8b5-e5d4-35a9-55e2-f6a0990c73a5	2021-05-24 00:42:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:42:00.853+03	2021-05-24 00:42:00.859+03	
b2546019-9dec-b8d3-6c4f-bba57dfc7cdc	2021-05-24 00:42:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:42:21.854+03	2021-05-24 00:42:21.86+03	
46fe7e26-51fc-e9cd-8754-50e48304fdfd	2021-05-24 00:42:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:42:42.852+03	2021-05-24 00:42:42.859+03	
f4c5d26a-4a99-825d-f7e3-7f9f0394a996	2021-05-24 00:43:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:43:02.852+03	2021-05-24 00:43:02.981+03	
4dc98ffe-0b3b-32d9-8170-305092a6c45a	2021-05-24 00:43:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:43:22.853+03	2021-05-24 00:43:22.86+03	
47ca362c-ff20-e5dd-61da-fbf67ecf3bad	2021-05-24 00:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:43:43.853+03	2021-05-24 00:43:43.861+03	
d252129e-5e07-a665-347f-2a85750c2599	2021-05-24 00:44:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:44:04.853+03	2021-05-24 00:44:04.864+03	
9181db6f-6eb7-d1b8-032d-273fce699287	2021-05-24 00:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:44:25.852+03	2021-05-24 00:44:25.86+03	
0091a531-1d3b-841f-b6ce-fc5c9e79e8a1	2021-05-24 00:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:44:45.853+03	2021-05-24 00:44:45.859+03	
410da513-f32d-5293-ee7a-010b61813882	2021-05-24 00:45:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:45:06.852+03	2021-05-24 00:45:06.859+03	
e4b835dc-963e-da1c-b668-f58a8f94d0a9	2021-05-24 00:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:45:27.852+03	2021-05-24 00:45:27.858+03	
4761cbd5-3541-ab60-9118-54b86e5a21e7	2021-05-24 00:45:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:45:47.852+03	2021-05-24 00:45:47.859+03	
6b944a93-a665-2b76-dbed-aea8940926a2	2021-05-24 00:46:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:46:07.853+03	2021-05-24 00:46:07.859+03	
e81774b6-36bb-5064-fc3d-55cc2f6a4e28	2021-05-24 00:46:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:46:28.853+03	2021-05-24 00:46:28.859+03	
cdd77323-aa8e-4d75-6904-1a18be5b9a94	2021-05-24 00:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:46:50.852+03	2021-05-24 00:46:50.858+03	
ebbbffc1-1bf6-775d-84dc-036c3e2969e0	2021-05-24 00:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:47:10.853+03	2021-05-24 00:47:10.859+03	
96061102-a07e-803a-51e3-8092cca64129	2021-05-24 00:47:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:47:30.853+03	2021-05-24 00:47:30.859+03	
ccb23239-71ea-f50b-d44e-ba522c0b388c	2021-05-24 00:47:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:47:51.853+03	2021-05-24 00:47:51.859+03	
cbe8074b-d6f9-d971-3312-915ebc23b183	2021-05-24 00:48:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:48:12.852+03	2021-05-24 00:48:12.858+03	
41057f24-f729-eadc-6798-e125f479216e	2021-05-24 00:48:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:48:32.853+03	2021-05-24 00:48:32.868+03	
fce55751-3f2b-bb32-6bac-89f74e163782	2021-05-24 00:48:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:48:53.852+03	2021-05-24 00:48:53.859+03	
9e21374e-ef7e-a64e-4747-06b914e06073	2021-05-24 00:49:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:49:13.852+03	2021-05-24 00:49:13.858+03	
a77dd620-0e55-d49e-40fc-903dee646f4b	2021-05-24 00:49:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:49:33.852+03	2021-05-24 00:49:33.859+03	
3e66e02e-72bf-cc48-93b9-6f2ca666425a	2021-05-24 00:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:49:53.853+03	2021-05-24 00:49:53.86+03	
8bd48094-52f8-a3f9-6703-d62e7674ed8a	2021-05-24 00:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:50:04.852+03	2021-05-24 00:50:04.859+03	
73f791ef-cb23-d9d0-da9e-9e6b32b1d213	2021-05-24 00:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:50:24.852+03	2021-05-24 00:50:24.859+03	
9dcc199c-0832-f7fc-110d-b4ab2c157b9b	2021-05-24 00:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:50:44.852+03	2021-05-24 00:50:44.859+03	
5490344f-23ae-d1bf-9d65-10fe854ba4b4	2021-05-24 00:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:51:04.853+03	2021-05-24 00:51:04.869+03	
4b25b765-9e28-1df1-aba2-501943d242a6	2021-05-24 00:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:51:25.852+03	2021-05-24 00:51:25.858+03	
e7673369-9383-da1f-54b6-234dc54eb899	2021-05-24 00:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:51:45.852+03	2021-05-24 00:51:45.859+03	
5a95a623-612a-15ff-a71c-366934e37de3	2021-05-24 00:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:52:05.853+03	2021-05-24 00:52:05.87+03	
2829a786-276a-2bfd-619e-b05815d2da6c	2021-05-24 00:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:52:26.852+03	2021-05-24 00:52:26.859+03	
9ecd50c4-820e-debc-4d8b-cc8373ae9cc0	2021-05-24 00:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:52:46.852+03	2021-05-24 00:52:46.863+03	
e42f06fe-aa52-0e92-db26-b746818c15c8	2021-05-24 00:53:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:53:06.852+03	2021-05-24 00:53:06.859+03	
4a70e81e-e831-b54e-2428-bf72fe1d4924	2021-05-24 00:53:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:53:26.852+03	2021-05-24 00:53:26.859+03	
e29673b8-2da6-5901-73c6-f5b62f7bdd74	2021-05-24 00:53:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:53:46.852+03	2021-05-24 00:53:46.859+03	
8fbdd8b1-7999-fea7-ed93-db29f2fa04e8	2021-05-24 00:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:54:07.852+03	2021-05-24 00:54:07.859+03	
386c7eb0-cbca-6b8a-28a3-051112cfa675	2021-05-24 00:54:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:54:27.853+03	2021-05-24 00:54:27.859+03	
3340a192-58d3-1c8a-a4d9-ae383b83db09	2021-05-24 00:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:54:48.852+03	2021-05-24 00:54:48.859+03	
376e3ecd-dcf1-73fb-4b19-492f4172681f	2021-05-24 00:55:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:55:08.852+03	2021-05-24 00:55:08.858+03	
0810c373-8dc1-d1f2-d6fc-7ec489595217	2021-05-24 00:55:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:55:29.852+03	2021-05-24 00:55:29.861+03	
914ed473-6d11-57c7-16aa-b296830f48ad	2021-05-24 00:55:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:55:49.853+03	2021-05-24 00:55:49.859+03	
4ecc6184-e631-9f78-8fe3-08cea07e7005	2021-05-24 00:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:56:10.852+03	2021-05-24 00:56:10.871+03	
e9d06218-5cb9-7528-0d4f-f85c16d6707d	2021-05-24 00:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:56:30.853+03	2021-05-24 00:56:30.859+03	
7a993ab3-b9ad-c0b8-2084-9d70dd782f6b	2021-05-24 00:56:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:56:51.853+03	2021-05-24 00:56:51.859+03	
6a93b1b7-ebf8-18bd-bd1b-6f9a16ef804b	2021-05-24 00:57:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:57:12.852+03	2021-05-24 00:57:12.874+03	
858fda22-2faa-d1e0-15d7-89b04720fefc	2021-05-24 00:57:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:57:32.852+03	2021-05-24 00:57:32.859+03	
f9ab5f71-93ed-12c6-cf6d-b58afec68506	2021-05-24 00:57:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:57:53.852+03	2021-05-24 00:57:53.862+03	
babd318f-0c64-3c78-6cf1-d9a2e050e2fd	2021-05-24 00:58:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:58:13.852+03	2021-05-24 00:58:13.858+03	
76d67596-70f1-046c-d0bf-1e71361c37a7	2021-05-24 00:58:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:58:33.852+03	2021-05-24 00:58:33.859+03	
4dfc97ec-4683-888c-3269-f45f45ac76f2	2021-05-24 00:58:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:58:53.852+03	2021-05-24 00:58:53.859+03	
9620edc4-ede6-db12-b19d-ef02ea50a80d	2021-05-24 00:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:59:14.852+03	2021-05-24 00:59:14.86+03	
9907d396-3b6b-3edb-1e35-5c2e62f8e39c	2021-05-24 00:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:59:34.852+03	2021-05-24 00:59:34.86+03	
f1c3aa69-2f12-088a-cc7d-f0b07ba9b210	2021-05-24 00:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:59:54.852+03	2021-05-24 00:59:54.859+03	
f22e408c-a268-e6fd-7fb6-42f73c3473ed	2021-05-24 00:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 00:59:44.852+03	2021-05-24 00:59:44.858+03	
46700258-6253-f43a-3c82-70c0a0f851f6	2021-05-24 01:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 01:00:00.853+03	2021-05-24 01:00:00.859+03	ERROR
35cd14c8-5f3b-a633-1de7-1e7b37220a36	2021-05-24 01:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:00:15.853+03	2021-05-24 01:00:15.871+03	
4cce4fd5-e2a6-9f47-434b-fb874cc5de77	2021-05-24 01:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:00:35.853+03	2021-05-24 01:00:35.859+03	
2635edd3-4f4f-071c-2fd0-ab8fda752faa	2021-05-24 01:00:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:00:56.853+03	2021-05-24 01:00:56.859+03	
e0a7f9a2-ea95-fceb-89e0-a74ab33a9949	2021-05-24 01:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:01:17.853+03	2021-05-24 01:01:17.86+03	
63a66e68-121f-50ea-98c4-4afde75c1359	2021-05-24 01:01:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:01:39.853+03	2021-05-24 01:01:39.86+03	
fb4b5d42-099f-c5b4-96a3-18737212ff58	2021-05-24 01:02:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:02:00.853+03	2021-05-24 01:02:00.86+03	
b109e208-0104-ae9a-b70e-27c5cc6e9120	2021-05-24 01:02:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:02:21.852+03	2021-05-24 01:02:21.858+03	
c49c040f-871b-0ba7-7602-65eb6e594ff2	2021-05-24 01:02:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:02:42.852+03	2021-05-24 01:02:42.859+03	
3a5bef90-d8a5-d944-ed86-7bc82123b977	2021-05-24 01:03:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:03:02.852+03	2021-05-24 01:03:02.859+03	
27161466-a4be-c4c8-a893-b72e5af35d59	2021-05-24 01:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:03:22.852+03	2021-05-24 01:03:22.86+03	
e70b4fda-a607-5dcb-480d-f4ac66fc037b	2021-05-24 01:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:03:42.853+03	2021-05-24 01:03:42.86+03	
69585eca-77d8-b1b8-dffc-c461ef3ca7fc	2021-05-24 01:04:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:04:03.852+03	2021-05-24 01:04:03.858+03	
a2220e57-3e7d-8f36-cc01-eec90a312e54	2021-05-24 01:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:04:24.852+03	2021-05-24 01:04:24.859+03	
95a52112-54eb-257c-ad14-fa5d7ffc8870	2021-05-24 01:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:04:44.852+03	2021-05-24 01:04:44.859+03	
199a0226-0283-afc7-6801-591f780c5d83	2021-05-24 01:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:05:04.852+03	2021-05-24 01:05:04.859+03	
011692b2-d961-42d4-5aa1-baea3099edb9	2021-05-24 01:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:05:24.853+03	2021-05-24 01:05:24.859+03	
5ef6ca1e-a760-14eb-986b-1ed1c25ef77a	2021-05-24 01:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:05:45.852+03	2021-05-24 01:05:45.858+03	
154ce920-3d51-7c13-1781-cb1841c08ab4	2021-05-24 01:06:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:06:06.852+03	2021-05-24 01:06:06.859+03	
c077d74a-918a-b4bf-31e3-0441fad109fa	2021-05-24 01:06:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:06:26.852+03	2021-05-24 01:06:26.859+03	
585df201-b8bd-f970-25b7-63b13dacb996	2021-05-24 01:06:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:06:46.852+03	2021-05-24 01:06:46.865+03	
e7a977e6-510f-1faf-620b-7f004f6b99c8	2021-05-24 01:07:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:07:06.853+03	2021-05-24 01:07:06.862+03	
ab23a968-fa31-4dd1-3366-eac6a8d92e89	2021-05-24 01:07:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:07:28.852+03	2021-05-24 01:07:28.859+03	
d2e304ae-bd97-0554-564e-2c9c17c1277e	2021-05-24 01:07:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:07:48.852+03	2021-05-24 01:07:48.858+03	
8728e5eb-25e5-3564-bc85-1118d7815ecb	2021-05-24 01:08:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:08:08.853+03	2021-05-24 01:08:08.868+03	
e5ae9173-a70d-32d7-aae2-de2a426a1106	2021-05-24 01:08:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:08:29.852+03	2021-05-24 01:08:29.86+03	
23e16e22-dd55-5365-0eb7-466e2bffc683	2021-05-24 01:08:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:08:49.853+03	2021-05-24 01:08:49.865+03	
287f23e1-86bb-d3f9-b661-23fd68dbb137	2021-05-24 01:09:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:09:10.852+03	2021-05-24 01:09:10.858+03	
8df3134b-773b-07e1-37ea-99152b9420cb	2021-05-24 01:09:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:09:30.852+03	2021-05-24 01:09:30.858+03	
8e351415-37f6-e91d-d632-32b28915f2fd	2021-05-24 01:09:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:09:50.852+03	2021-05-24 01:09:50.858+03	
8a86b977-f888-f0ce-f230-1f83372a139d	2021-05-24 01:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:10:10.853+03	2021-05-24 01:10:10.86+03	
234783e3-2ef5-b808-e0e3-ed7a5b86e7f0	2021-05-24 01:10:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:10:31.854+03	2021-05-24 01:10:31.861+03	
4530cdaa-8861-2cba-36ce-9c8e9f49ef44	2021-05-24 01:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:10:52.853+03	2021-05-24 01:10:52.859+03	
d29a0b5d-013b-3d06-fa67-a8f51c98f17b	2021-05-24 01:11:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:11:13.853+03	2021-05-24 01:11:13.859+03	
24d0f6c7-0ab4-c2f2-3bcc-78f473350db2	2021-05-24 01:11:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:11:34.853+03	2021-05-24 01:11:34.859+03	
7aba3a3d-26ea-969f-fe3d-681b8c0858f8	2021-05-24 01:11:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:11:54.853+03	2021-05-24 01:11:54.859+03	
44fd5e06-3eb9-4079-3d5e-ce9f42c5081a	2021-05-24 01:12:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:12:14.853+03	2021-05-24 01:12:14.859+03	
6a82f320-3f0c-29b6-4c70-bd6c8c01498f	2021-05-24 01:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:12:34.853+03	2021-05-24 01:12:34.859+03	
cfbed38f-01b6-662b-e4d0-38ec557ea683	2021-05-24 01:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:12:54.853+03	2021-05-24 01:12:54.874+03	
bdf1210b-ff71-2a97-92e4-025c89a34dca	2021-05-24 01:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:13:15.852+03	2021-05-24 01:13:15.859+03	
9d478cd0-d079-b3b8-99b9-63f422e3375c	2021-05-24 01:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:13:35.853+03	2021-05-24 01:13:35.86+03	
d3dd9b4b-c76a-cc3e-a8d1-42d78f56523f	2021-05-24 01:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:13:55.853+03	2021-05-24 01:13:55.86+03	
54969ddc-456a-3d7a-7a1f-69843e633264	2021-05-24 01:14:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:14:16.853+03	2021-05-24 01:14:16.86+03	
6523b983-2845-463b-834c-d9c0e0513651	2021-05-24 01:14:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:14:37.852+03	2021-05-24 01:14:37.859+03	
473155ea-abdd-58d2-a6ef-00b4e9a022f1	2021-05-24 01:14:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:14:57.853+03	2021-05-24 01:14:57.859+03	
e38e871b-0bf0-79f9-583a-8f1c4928b61c	2021-05-24 01:15:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:15:17.853+03	2021-05-24 01:15:17.869+03	
4d8c0844-65ee-dd97-2d95-32ef07bc4713	2021-05-24 01:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:15:37.853+03	2021-05-24 01:15:37.859+03	
964ad9cf-10d8-d618-8233-87b0fd2cb6c9	2021-05-24 01:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:15:58.852+03	2021-05-24 01:15:58.859+03	
20834d09-6ca7-1b99-447c-27465182f542	2021-05-24 01:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:16:18.852+03	2021-05-24 01:16:18.859+03	
d31a2186-21a7-cfb7-5f8f-5d15c4d62a73	2021-05-24 01:16:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:16:38.853+03	2021-05-24 01:16:38.859+03	
c740bd7d-fc63-f650-bea4-5a7780b66850	2021-05-24 01:16:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:16:58.853+03	2021-05-24 01:16:58.859+03	
42a8626f-e5d2-602b-87f6-16a15ad3ea8a	2021-05-24 01:17:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:17:19.852+03	2021-05-24 01:17:19.859+03	
fca612fd-1fe2-e644-bcc7-2fe349f5a6ec	2021-05-24 01:17:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:17:39.852+03	2021-05-24 01:17:39.858+03	
a8eef8f2-44a2-a2ee-5f81-45e634c65a62	2021-05-24 01:18:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:18:00.853+03	2021-05-24 01:18:00.86+03	
a1a7b942-d242-3922-fabd-2fc942caf575	2021-05-24 01:18:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:18:20.853+03	2021-05-24 01:18:20.859+03	
7afe110e-715b-6a4f-1a2f-d9b6ce45f62e	2021-05-24 01:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:18:42.852+03	2021-05-24 01:18:42.858+03	
6954cff9-6e1b-12e4-aeea-ea90601d0f43	2021-05-24 01:19:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:19:03.853+03	2021-05-24 01:19:03.86+03	
e450d8c2-1505-b0e1-6657-a2cbfb8c572b	2021-05-24 01:19:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:19:24.852+03	2021-05-24 01:19:24.859+03	
6e46b274-066d-eb5d-7693-ee54c124058f	2021-05-24 01:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:19:45.852+03	2021-05-24 01:19:45.859+03	
213b92e1-c377-ae9a-df4c-1ec3cb41fc01	2021-05-24 01:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 01:20:00.853+03	2021-05-24 01:20:00.857+03	ERROR
f9a63d3c-bd3c-ebe3-cf94-fcbf32951be7	2021-05-24 01:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:20:15.853+03	2021-05-24 01:20:15.859+03	
3ecb9b1d-afb5-ce00-a37a-e99760dfeb41	2021-05-24 01:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:20:35.853+03	2021-05-24 01:20:35.861+03	
074b10c3-9f81-cd40-0e18-8c855ea96898	2021-05-24 01:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:00:04.853+03	2021-05-24 01:00:04.86+03	
4e0084a3-a431-8897-3316-941d576d9e8b	2021-05-24 01:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:00:25.853+03	2021-05-24 01:00:25.859+03	
38de66a3-54b7-9b5c-3b27-4852e44c7127	2021-05-24 01:00:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:00:46.853+03	2021-05-24 01:00:46.86+03	
383ef020-f0f0-674d-1b61-89f1d9b0a9aa	2021-05-24 01:01:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:01:07.852+03	2021-05-24 01:01:07.859+03	
b22616e6-c5cb-7ad3-6cef-79ca71f4d4f4	2021-05-24 01:01:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:01:28.853+03	2021-05-24 01:01:28.874+03	
11788fbb-bbce-1d7c-4abb-9ff9e01a8a38	2021-05-24 01:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:01:50.853+03	2021-05-24 01:01:50.859+03	
97810c79-8a61-5c8f-14ae-a0d8c2681191	2021-05-24 01:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:02:10.853+03	2021-05-24 01:02:10.859+03	
ee9c0242-c428-ce09-4e97-101883279f95	2021-05-24 01:02:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:02:31.853+03	2021-05-24 01:02:31.859+03	
b2c83145-8d0c-174b-996e-e7cc47c9ca81	2021-05-24 01:02:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:02:52.852+03	2021-05-24 01:02:52.859+03	
aaa64463-a2cb-0133-8036-c5b6d17a689c	2021-05-24 01:03:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:03:12.852+03	2021-05-24 01:03:12.859+03	
8b205e72-ee50-2011-af1a-90dfa73573ce	2021-05-24 01:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:03:32.853+03	2021-05-24 01:03:32.859+03	
750f6090-ed9f-d512-088e-e81619eece13	2021-05-24 01:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:03:52.853+03	2021-05-24 01:03:52.86+03	
653ea56c-0df8-3f59-4f3d-e8a1e8d6881d	2021-05-24 01:04:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:04:13.853+03	2021-05-24 01:04:13.859+03	
1ab3a229-8b95-39f7-f250-047657dd7b0a	2021-05-24 01:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:04:34.852+03	2021-05-24 01:04:34.859+03	
70de618d-76da-32f4-e89c-25a336de091d	2021-05-24 01:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:04:54.852+03	2021-05-24 01:04:54.858+03	
d8cc83d5-cc9a-c4da-1bfc-7c88af781963	2021-05-24 01:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:05:14.853+03	2021-05-24 01:05:14.859+03	
feb49dee-d81a-d3ca-075a-c53880f84fd6	2021-05-24 01:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:05:35.852+03	2021-05-24 01:05:35.859+03	
a9bcda05-6868-2987-8768-775d3fbc8955	2021-05-24 01:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:05:55.853+03	2021-05-24 01:05:55.86+03	
562bd202-87ae-eab5-15d2-17fa0b0363f7	2021-05-24 01:06:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:06:16.852+03	2021-05-24 01:06:16.858+03	
6e1e20bf-adcb-3198-591a-6d5f194360e6	2021-05-24 01:06:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:06:36.852+03	2021-05-24 01:06:36.86+03	
968d1470-5f8a-00f8-4878-3c784b7625af	2021-05-24 01:06:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:06:56.853+03	2021-05-24 01:06:56.86+03	
175f34ad-93c3-02ac-4643-1ff1bfb90b7f	2021-05-24 01:07:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:07:17.853+03	2021-05-24 01:07:17.86+03	
c5807fba-670b-f91a-dbde-11d7c85a2bae	2021-05-24 01:07:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:07:38.852+03	2021-05-24 01:07:38.859+03	
6a007134-b717-af31-24b5-a33a095aadfa	2021-05-24 01:07:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:07:58.852+03	2021-05-24 01:07:58.859+03	
8a7c25df-310d-265a-c292-69ff2ae403bd	2021-05-24 01:08:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:08:18.853+03	2021-05-24 01:08:18.86+03	
b2192727-a620-dfb3-049f-902202f5e720	2021-05-24 01:08:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:08:39.853+03	2021-05-24 01:08:39.86+03	
e876f631-1c50-1b2b-2bbc-6853c0ae6ddb	2021-05-24 01:09:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:09:00.852+03	2021-05-24 01:09:00.859+03	
eb6a754c-eaee-fb8c-82aa-a437f098c105	2021-05-24 01:09:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:09:20.852+03	2021-05-24 01:09:20.859+03	
a886c5fe-5c3e-2fb8-517d-85d8ceddbd51	2021-05-24 01:09:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:09:40.852+03	2021-05-24 01:09:40.859+03	
ff5d2dc3-ff96-dc3d-7814-4ff262371552	2021-05-24 01:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:10:00.852+03	2021-05-24 01:10:00.862+03	
d4092739-875c-462e-b613-7172a4ca1769	2021-05-24 01:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 01:10:00.853+03	2021-05-24 01:10:00.874+03	ERROR
9358efe7-6f17-98a2-d1a8-bbd11cec5967	2021-05-24 01:10:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:10:21.853+03	2021-05-24 01:10:21.86+03	
af056fe7-bd1a-3e33-3017-05bfbb15a312	2021-05-24 01:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:10:42.852+03	2021-05-24 01:10:42.859+03	
ce9a518a-7bec-572e-f7e0-aba6272952a2	2021-05-24 01:11:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:11:02.853+03	2021-05-24 01:11:02.859+03	
b483d2a9-8f29-4168-81d3-2c40fbe5e96b	2021-05-24 01:11:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:11:24.853+03	2021-05-24 01:11:24.862+03	
613f204e-4a34-da66-bd83-e5c15e500afe	2021-05-24 01:11:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:11:44.853+03	2021-05-24 01:11:44.864+03	
1f75f8dc-1ba9-98a5-705b-2e77f2ca5d1a	2021-05-24 01:12:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:12:04.853+03	2021-05-24 01:12:04.859+03	
225b6867-815b-85a7-529b-f47ac71d39b1	2021-05-24 01:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:12:24.853+03	2021-05-24 01:12:24.86+03	
aeca37a8-05ff-015d-1ca2-184842511314	2021-05-24 01:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:12:44.853+03	2021-05-24 01:12:44.859+03	
8b676f3a-2b50-83dd-1c68-0b8fc19ad473	2021-05-24 01:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:13:05.852+03	2021-05-24 01:13:05.859+03	
92b62cd2-ab7b-0f42-953c-a57218d2d02f	2021-05-24 01:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:13:25.852+03	2021-05-24 01:13:25.859+03	
8a16ff75-69dd-e23a-3a73-de3123bf55ca	2021-05-24 01:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:13:45.853+03	2021-05-24 01:13:45.871+03	
13935531-0fcc-0129-594c-c1d62070a944	2021-05-24 01:14:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:14:06.852+03	2021-05-24 01:14:06.865+03	
69747065-0fec-f47a-3d1e-2c081c1b817a	2021-05-24 01:14:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:14:27.852+03	2021-05-24 01:14:27.86+03	
ed309a17-a218-05de-7e8f-b6e25fcdbafb	2021-05-24 01:14:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:14:47.853+03	2021-05-24 01:14:47.859+03	
ef952a5c-c2e0-3c86-aa10-a9eea6583a4f	2021-05-24 01:15:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:15:07.853+03	2021-05-24 01:15:07.859+03	
dfe785a1-258c-68cb-1e6e-2999d7a6b148	2021-05-24 01:15:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:15:27.853+03	2021-05-24 01:15:27.865+03	
c85ca313-ba53-7052-af3a-5a41a93640ff	2021-05-24 01:15:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:15:48.852+03	2021-05-24 01:15:48.859+03	
cb4c60dc-a90d-bd49-2d39-c9ed05f1662f	2021-05-24 01:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:16:08.852+03	2021-05-24 01:16:08.872+03	
9f36f750-fcba-1837-826f-80cbaf28e271	2021-05-24 01:16:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:16:28.853+03	2021-05-24 01:16:28.866+03	
b3144e79-eaca-1e46-b63f-17f549ab9e75	2021-05-24 01:16:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:16:48.853+03	2021-05-24 01:16:48.859+03	
8f6afd3b-3b68-7cd3-06b7-b19fad5d19e6	2021-05-24 01:17:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:17:08.853+03	2021-05-24 01:17:08.859+03	
5e8324ea-4736-acec-5742-ed9fb055b370	2021-05-24 01:17:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:17:29.852+03	2021-05-24 01:17:29.859+03	
ce75c44d-3ba2-c8bc-6d60-2dd34bd77316	2021-05-24 01:17:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:17:49.853+03	2021-05-24 01:17:49.866+03	
b4fec1a0-6572-0faa-97bc-dd9d6aa7c57d	2021-05-24 01:18:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:18:10.853+03	2021-05-24 01:18:10.859+03	
7600c305-ec94-5404-e795-fd2e3566cbe1	2021-05-24 01:18:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:18:31.853+03	2021-05-24 01:18:31.859+03	
2298c405-efcf-7744-88a5-dc3dbadbee7a	2021-05-24 01:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:18:52.853+03	2021-05-24 01:18:52.872+03	
3a3bc795-2468-dd69-8592-333cf0f37454	2021-05-24 01:19:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:19:14.852+03	2021-05-24 01:19:14.86+03	
de5fe527-19a6-7c4f-65d2-9d6d33a106cc	2021-05-24 01:19:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:19:34.853+03	2021-05-24 01:19:34.86+03	
d883bbc5-9652-210b-0a65-50d891a48258	2021-05-24 01:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:19:55.852+03	2021-05-24 01:19:55.864+03	
d1f09f50-ab5a-b0ce-1897-1ea62530173e	2021-05-24 01:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:20:05.853+03	2021-05-24 01:20:05.859+03	
51372693-4aa0-5dad-2799-9012c648d81b	2021-05-24 01:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:20:25.853+03	2021-05-24 01:20:25.859+03	
e5b6576a-1ee2-1857-2534-38f5575cabcd	2021-05-24 01:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:20:45.853+03	2021-05-24 01:20:45.86+03	
f584d83a-175d-3ca3-0cc9-d8ab41cc7304	2021-05-24 01:20:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:20:56.852+03	2021-05-24 01:20:56.859+03	
d43555dc-2227-0e84-1fdd-9816b81e158a	2021-05-24 01:21:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:21:16.852+03	2021-05-24 01:21:16.867+03	
644e8377-4b0f-a8a0-a24a-6630e6707421	2021-05-24 01:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:21:36.852+03	2021-05-24 01:21:36.903+03	
3d14442a-b379-a548-545b-d0657e67a66f	2021-05-24 01:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:21:56.853+03	2021-05-24 01:21:56.869+03	
9d0b8206-1d2c-2ba7-bda7-ec064c7c226b	2021-05-24 01:22:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:22:17.853+03	2021-05-24 01:22:17.859+03	
131b708b-66bd-55dd-bb2c-54f78a2821ff	2021-05-24 01:22:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:22:38.852+03	2021-05-24 01:22:38.859+03	
8fcd2047-e5d3-4211-1f95-7fd8ac6c673d	2021-05-24 01:22:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:22:58.852+03	2021-05-24 01:22:58.859+03	
7e649622-e8bc-55cf-c9f1-19669129ccad	2021-05-24 01:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:23:18.853+03	2021-05-24 01:23:18.859+03	
2e366359-84e3-bd57-21f9-6905573e9abc	2021-05-24 01:23:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:23:39.852+03	2021-05-24 01:23:39.859+03	
5ec7361b-7690-cbe0-6c07-e4c3b1a4ef75	2021-05-24 01:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:23:59.852+03	2021-05-24 01:23:59.866+03	
539273a9-59ae-b881-7847-d922cb5b4a1d	2021-05-24 01:24:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:24:19.852+03	2021-05-24 01:24:19.86+03	
43a619a3-6a3d-2ea2-b169-370ac23cf47a	2021-05-24 01:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:24:40.852+03	2021-05-24 01:24:40.859+03	
09082b70-25c9-be39-1a42-7454ced3c69b	2021-05-24 01:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:25:00.853+03	2021-05-24 01:25:00.863+03	
5ef275e6-0515-fd3a-b329-a1b5bc3070da	2021-05-24 01:25:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:25:21.852+03	2021-05-24 01:25:21.858+03	
77f8547c-eea4-b173-3dfd-f55746dcb567	2021-05-24 01:25:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:25:41.853+03	2021-05-24 01:25:41.859+03	
8a5ec76a-30bc-d492-8959-97946162f5dd	2021-05-24 01:26:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:26:02.853+03	2021-05-24 01:26:02.866+03	
65dc6f7e-d908-991f-fe7a-32f3ab39ea3f	2021-05-24 01:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:26:23.852+03	2021-05-24 01:26:23.859+03	
2b06817a-fc51-65d9-e2e5-d0650ace5be9	2021-05-24 01:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:26:43.853+03	2021-05-24 01:26:43.864+03	
4c48859d-f128-b333-4be4-089c93ae887a	2021-05-24 01:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:27:03.853+03	2021-05-24 01:27:03.859+03	
142a224a-78f6-f8e6-de88-1317288360e5	2021-05-24 01:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:27:24.852+03	2021-05-24 01:27:24.859+03	
544dc4d1-8093-76e4-da4f-ded71166cb3e	2021-05-24 01:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:27:45.852+03	2021-05-24 01:27:45.858+03	
40c0b81b-2b85-1bb0-fb8a-6c35afa8f928	2021-05-24 01:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:28:05.853+03	2021-05-24 01:28:05.868+03	
b0286964-823b-117a-671e-da39d4997d82	2021-05-24 01:28:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:28:26.853+03	2021-05-24 01:28:26.86+03	
a2e0531f-892d-c620-63ce-ddbecc22b6c6	2021-05-24 01:28:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:28:47.853+03	2021-05-24 01:28:47.862+03	
663013a8-e8eb-1a31-2b2a-f48bc571e78a	2021-05-24 01:29:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:29:08.853+03	2021-05-24 01:29:08.86+03	
44445bca-5e58-59b5-d3bb-0f383e2645a8	2021-05-24 01:29:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:29:29.852+03	2021-05-24 01:29:29.858+03	
e8b0ef6b-9b49-da88-9d11-9e7275208eaf	2021-05-24 01:29:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:29:50.852+03	2021-05-24 01:29:50.859+03	
5ed85705-5786-1520-cf8c-39182aa6d27d	2021-05-24 01:30:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:30:10.852+03	2021-05-24 01:30:10.859+03	
7938253a-2d74-50b4-13d9-dea876c8abf8	2021-05-24 01:30:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:30:30.853+03	2021-05-24 01:30:30.86+03	
8d6c0db2-fa52-b243-c4d4-8ab67b2fb711	2021-05-24 01:30:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:30:51.853+03	2021-05-24 01:30:51.86+03	
8d7b93ad-3171-70e6-249d-32693346025a	2021-05-24 01:31:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:31:12.852+03	2021-05-24 01:31:12.859+03	
c1cac434-e213-9d9a-7a60-56ae5d64aed1	2021-05-24 01:31:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:31:32.853+03	2021-05-24 01:31:32.859+03	
9ac7e576-2515-c955-5b75-f8f90813e977	2021-05-24 01:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:31:53.852+03	2021-05-24 01:31:53.859+03	
f61a22f4-e8a5-e63d-9d0c-4c4d851b3e3a	2021-05-24 01:32:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:32:13.853+03	2021-05-24 01:32:13.861+03	
d6c7e317-0114-007c-8495-d6a151f9c316	2021-05-24 01:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:32:33.853+03	2021-05-24 01:32:33.861+03	
f64b9f2a-f68a-3fd5-70a5-3f7b86341acd	2021-05-24 01:32:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:32:54.852+03	2021-05-24 01:32:54.858+03	
b2897515-64f0-5eec-e9a4-3b0b42402313	2021-05-24 01:33:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:33:14.853+03	2021-05-24 01:33:14.859+03	
09ef4c2d-2fdc-91b0-4bb3-d05ef7972ab9	2021-05-24 01:33:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:33:34.853+03	2021-05-24 01:33:34.859+03	
2d8a4d7d-66a6-ed2e-d371-654befb9a9a9	2021-05-24 01:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:33:55.852+03	2021-05-24 01:33:55.868+03	
c5b0fd6d-0c9c-28b8-1c4e-3e1736a02665	2021-05-24 01:34:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:34:15.853+03	2021-05-24 01:34:15.859+03	
12aedace-f7cd-97f9-d5a1-6788b591ab40	2021-05-24 01:34:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:34:37.853+03	2021-05-24 01:34:37.859+03	
aa063a0a-a062-3194-908e-94ca70b2eb85	2021-05-24 01:34:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:34:58.852+03	2021-05-24 01:34:58.859+03	
72550ba7-1e7d-716d-01b4-b2dd84ba4d49	2021-05-24 01:35:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:35:18.852+03	2021-05-24 01:35:18.858+03	
ecd91334-c969-906f-1012-194c3c922920	2021-05-24 01:35:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:35:38.853+03	2021-05-24 01:35:38.859+03	
9bbb5117-f9ad-4a75-79b1-ae77cfaa86b3	2021-05-24 01:35:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:35:59.852+03	2021-05-24 01:35:59.859+03	
175816a2-9092-1f16-c257-376100822107	2021-05-24 01:36:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:36:19.853+03	2021-05-24 01:36:19.858+03	
6f6032c6-0b49-7cfe-d118-7d9a5df08544	2021-05-24 01:36:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:36:40.852+03	2021-05-24 01:36:40.862+03	
9d4fec83-a29b-0003-95ae-12be6599690d	2021-05-24 01:37:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:37:00.852+03	2021-05-24 01:37:00.864+03	
0efd79d0-b04d-f906-1895-359bdd2bd555	2021-05-24 01:37:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:37:21.853+03	2021-05-24 01:37:21.859+03	
0f0a0f99-b084-067c-c2c7-f7bdd6ed625e	2021-05-24 01:37:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:37:42.853+03	2021-05-24 01:37:42.858+03	
378135fb-81f1-536a-7195-5b15daa0f200	2021-05-24 01:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:38:03.853+03	2021-05-24 01:38:03.859+03	
49b5276a-b7a8-c095-f1b4-43de28c4da1d	2021-05-24 01:38:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:38:24.853+03	2021-05-24 01:38:24.859+03	
3635a88f-0eec-ec31-8600-08b7e480178c	2021-05-24 01:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:38:45.853+03	2021-05-24 01:38:45.859+03	
3d100d07-9a69-ab40-adc8-755bc5cb9349	2021-05-24 01:39:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:39:07.853+03	2021-05-24 01:39:07.859+03	
3a30ad8b-e814-60e8-cb2e-8dc4e4f6d873	2021-05-24 01:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:39:28.853+03	2021-05-24 01:39:28.86+03	
07b99819-d650-841d-8542-277e036d413e	2021-05-24 01:39:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:39:59.852+03	2021-05-24 01:39:59.859+03	
df0fe406-3aff-31dc-0c89-68bc397fc49d	2021-05-24 01:40:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:40:09.852+03	2021-05-24 01:40:09.859+03	
e3d3d6bb-fea8-aebf-0410-07d29f9858aa	2021-05-24 01:40:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:40:30.853+03	2021-05-24 01:40:30.859+03	
9f7d2aab-a74e-9d36-808c-00d969b8a44b	2021-05-24 01:40:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:40:50.853+03	2021-05-24 01:40:50.86+03	
333a32f4-96f0-b915-9eba-d1e3df8ffe63	2021-05-24 01:41:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:41:11.853+03	2021-05-24 01:41:11.859+03	
b8c34208-e890-9d55-5161-afe4d2aebe08	2021-05-24 01:41:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:41:31.853+03	2021-05-24 01:41:31.859+03	
8381a2a6-3760-bda4-7548-979fbceec1f6	2021-05-24 01:41:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:41:52.853+03	2021-05-24 01:41:52.86+03	
14e83074-24ea-a37f-f21f-b4ce95df716c	2021-05-24 01:42:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:42:12.853+03	2021-05-24 01:42:12.859+03	
27ac00a4-2a5c-16d2-8399-5e59821b69d7	2021-05-24 01:21:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:21:06.852+03	2021-05-24 01:21:06.904+03	
51df0577-8e37-70f3-0634-578042829081	2021-05-24 01:21:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:21:26.852+03	2021-05-24 01:21:26.858+03	
6565b58d-ffe0-ee63-a395-85bd1366e23c	2021-05-24 01:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:21:46.852+03	2021-05-24 01:21:46.872+03	
be675238-0187-680a-dba7-616c064a65d6	2021-05-24 01:22:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:22:07.852+03	2021-05-24 01:22:07.859+03	
62b5370a-af69-a6a3-447e-8cde04723554	2021-05-24 01:22:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:22:27.853+03	2021-05-24 01:22:27.862+03	
9c8dd457-0d30-258d-dfd2-e8c2d3fe2cbb	2021-05-24 01:22:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:22:48.852+03	2021-05-24 01:22:48.858+03	
8348307f-b359-d9a3-8fed-1ed0051e6e36	2021-05-24 01:23:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:23:08.853+03	2021-05-24 01:23:08.863+03	
2924f246-6386-f6d3-9c56-01a8b4f2f66b	2021-05-24 01:23:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:23:29.852+03	2021-05-24 01:23:29.859+03	
dec16b6d-40b7-6961-eec2-6d964ca68a95	2021-05-24 01:23:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:23:49.852+03	2021-05-24 01:23:49.859+03	
17788444-897e-d749-db46-04b2b4e19698	2021-05-24 01:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:24:09.852+03	2021-05-24 01:24:09.859+03	
01e9ddd6-fc94-c4ba-18e4-3516da12d494	2021-05-24 01:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:24:29.853+03	2021-05-24 01:24:29.859+03	
9fad404e-f42a-27a3-cdd6-42058172b570	2021-05-24 01:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:24:50.852+03	2021-05-24 01:24:50.86+03	
d68ff05d-69a2-7f86-c30d-883eaf6039a4	2021-05-24 01:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:25:10.853+03	2021-05-24 01:25:10.865+03	
9506c908-3763-18b8-f7e2-d90a1c0b4b68	2021-05-24 01:25:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:25:31.853+03	2021-05-24 01:25:31.86+03	
5afd159b-bbfc-89a9-99b5-a9517ae029ff	2021-05-24 01:25:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:25:51.853+03	2021-05-24 01:25:51.859+03	
3c576274-3e00-e6f3-9587-052472694e3e	2021-05-24 01:26:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:26:12.853+03	2021-05-24 01:26:12.86+03	
29dc4d3b-24d5-fccf-535a-2997e997b24b	2021-05-24 01:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:26:33.853+03	2021-05-24 01:26:33.859+03	
06b63c22-a5c8-166d-81ab-4188ad87ddb2	2021-05-24 01:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:26:53.853+03	2021-05-24 01:26:53.862+03	
d2ee6125-adf9-2ba1-5404-70c387123382	2021-05-24 01:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:27:13.853+03	2021-05-24 01:27:13.861+03	
073e9f96-a9ea-1c02-08dd-03d5ba3c27e0	2021-05-24 01:27:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:27:34.853+03	2021-05-24 01:27:34.861+03	
e84e4670-fcb2-7a77-b2cf-1cebf94b426a	2021-05-24 01:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:27:55.853+03	2021-05-24 01:27:55.859+03	
e5363893-4db7-b1fa-33d2-5b30280e9136	2021-05-24 01:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:28:15.853+03	2021-05-24 01:28:15.863+03	
f107df04-7144-7626-aafc-eed9d815a097	2021-05-24 01:28:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:28:37.852+03	2021-05-24 01:28:37.858+03	
467f21eb-7e2a-68c5-cb77-3e79eb3460c2	2021-05-24 01:28:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:28:58.852+03	2021-05-24 01:28:58.859+03	
98ff3087-7269-3b1a-e3e8-e823fa77ed5f	2021-05-24 01:29:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:29:19.852+03	2021-05-24 01:29:19.862+03	
a6bab9a2-a9be-e2a8-d750-e5913e1e7487	2021-05-24 01:29:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:29:39.853+03	2021-05-24 01:29:39.859+03	
39e0eba0-bda0-5eaf-7cc5-e1ccdea429ce	2021-05-24 01:30:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:30:00.852+03	2021-05-24 01:30:00.86+03	
91bf9786-1a03-b62a-11d3-51fc883d9fc9	2021-05-24 01:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 01:30:00.853+03	2021-05-24 01:30:00.867+03	ERROR
2c0caf74-8421-58a4-975f-ac2cd1916084	2021-05-24 01:30:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:30:20.852+03	2021-05-24 01:30:20.864+03	
fd392d55-e9ca-6808-796f-e119cde0e916	2021-05-24 01:30:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:30:40.853+03	2021-05-24 01:30:40.859+03	
6d87d592-6701-38c2-f029-170442e250c5	2021-05-24 01:31:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:31:01.853+03	2021-05-24 01:31:01.859+03	
12706c56-c0b5-ce56-c966-c2cab2b60012	2021-05-24 01:31:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:31:22.853+03	2021-05-24 01:31:22.859+03	
21748bb9-98a2-a3fc-70fb-b46707353aee	2021-05-24 01:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:31:43.852+03	2021-05-24 01:31:43.859+03	
3841bd84-ee3f-88ee-94e2-b6e320151267	2021-05-24 01:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:32:03.852+03	2021-05-24 01:32:03.859+03	
5610d046-34bb-3579-b54e-8606dbffe80b	2021-05-24 01:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:32:23.853+03	2021-05-24 01:32:23.861+03	
d0696d64-9406-397a-57aa-20b4a7276d58	2021-05-24 01:32:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:32:44.852+03	2021-05-24 01:32:44.859+03	
b3cfe89b-f097-b96e-c922-8014ae121e45	2021-05-24 01:33:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:33:04.853+03	2021-05-24 01:33:04.86+03	
cc4c7e23-afc5-183b-6072-2edac3ded89d	2021-05-24 01:33:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:33:24.853+03	2021-05-24 01:33:24.859+03	
e17c8cd7-35a6-1d36-1422-308a6c3be147	2021-05-24 01:33:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:33:44.853+03	2021-05-24 01:33:44.859+03	
6fbf9414-d6ea-fca0-b51b-6a4803bf8be0	2021-05-24 01:34:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:34:05.853+03	2021-05-24 01:34:05.858+03	
df1baa6f-7087-4dc5-4ec6-aa2db50cac64	2021-05-24 01:34:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:34:26.853+03	2021-05-24 01:34:26.861+03	
e7f38cc9-f40f-a5da-954f-9bde6b3f936f	2021-05-24 01:34:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:34:47.853+03	2021-05-24 01:34:47.859+03	
92822f2f-1afc-1d8f-525c-30f9059453fc	2021-05-24 01:35:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:35:08.852+03	2021-05-24 01:35:08.858+03	
7ff8cee1-1f10-4cc3-82ef-7de017c185c8	2021-05-24 01:35:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:35:28.853+03	2021-05-24 01:35:28.859+03	
c18116f0-790a-34e8-a2a7-0d8655253217	2021-05-24 01:35:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:35:49.852+03	2021-05-24 01:35:49.859+03	
cc614a64-5c59-0ce5-804f-e8792275dd9e	2021-05-24 01:36:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:36:09.852+03	2021-05-24 01:36:09.859+03	
e720658d-7caa-c958-aba6-ea13822adb36	2021-05-24 01:36:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:36:30.852+03	2021-05-24 01:36:30.859+03	
4e3a2072-3154-0ef0-220f-95546e53d008	2021-05-24 01:36:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:36:50.852+03	2021-05-24 01:36:50.859+03	
3f6c802e-85b6-56d2-3f0d-676f1b364f6e	2021-05-24 01:37:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:37:10.853+03	2021-05-24 01:37:10.859+03	
3223d62b-30db-8ae4-b539-1b82e6108017	2021-05-24 01:37:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:37:31.853+03	2021-05-24 01:37:31.862+03	
428fbb56-f7ee-b006-e093-88c29fcfefd7	2021-05-24 01:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:37:53.853+03	2021-05-24 01:37:53.859+03	
c0d731b7-4623-5076-a98a-31d16c572ee7	2021-05-24 01:38:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:38:14.853+03	2021-05-24 01:38:14.859+03	
b8b1e63a-0f85-2446-618e-f13d22ebb746	2021-05-24 01:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:38:35.853+03	2021-05-24 01:38:35.859+03	
e21b2597-416b-a964-d2fc-6d029e458172	2021-05-24 01:38:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:38:56.853+03	2021-05-24 01:38:56.859+03	
c8461067-34fd-d397-f99b-b54289166b32	2021-05-24 01:39:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:39:18.853+03	2021-05-24 01:39:18.859+03	
575150c2-d927-0f47-f2ef-643a8861b00f	2021-05-24 01:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:39:38.853+03	2021-05-24 01:39:38.859+03	
e5306a2a-726d-b602-73bd-4beaa79abe09	2021-05-24 01:39:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:39:49.852+03	2021-05-24 01:39:49.858+03	
4de47243-e343-fef7-c8a2-6467d19491c4	2021-05-24 01:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 01:40:00.853+03	2021-05-24 01:40:00.857+03	ERROR
51374525-fd2a-1a9a-6c2a-2f94066267fc	2021-05-24 01:40:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:40:19.853+03	2021-05-24 01:40:19.859+03	
97f815e7-ee49-f5f0-90eb-5096184c6ba6	2021-05-24 01:40:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:40:40.853+03	2021-05-24 01:40:40.86+03	
a660154d-a3b3-df01-d0f1-13d193edbb82	2021-05-24 01:41:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:41:00.853+03	2021-05-24 01:41:00.859+03	
82043c12-8530-5f5a-c54d-1c071a6f03b2	2021-05-24 01:41:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:41:21.853+03	2021-05-24 01:41:21.86+03	
7730adef-7dda-9f3a-bb74-b0ef4d64e41d	2021-05-24 01:41:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:41:41.854+03	2021-05-24 01:41:41.861+03	
1e10705f-6ea0-4284-7067-5621e6ddf040	2021-05-24 01:42:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:42:02.853+03	2021-05-24 01:42:02.859+03	
34c8eccc-a43c-ac73-c11d-5b2ca97b81e4	2021-05-24 01:42:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:42:22.853+03	2021-05-24 01:42:22.867+03	
37316956-070e-6ef8-ecae-21797b7176ae	2021-05-24 01:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:42:43.852+03	2021-05-24 01:42:43.859+03	
e1120961-94c2-7c2c-a3ab-d193376dfecf	2021-05-24 01:43:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:43:03.853+03	2021-05-24 01:43:03.861+03	
a476a1fd-f754-07ad-1527-a51bc3d409f4	2021-05-24 01:43:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:43:24.853+03	2021-05-24 01:43:24.86+03	
b61089d9-e52f-0382-6107-bd982f565e86	2021-05-24 01:43:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:43:44.853+03	2021-05-24 01:43:44.859+03	
dc52b1f7-d5cb-6855-b0b4-a3da74fa27f5	2021-05-24 01:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:44:05.853+03	2021-05-24 01:44:05.861+03	
e20064ca-7c26-9dc6-8615-184f12907ba4	2021-05-24 01:44:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:44:26.852+03	2021-05-24 01:44:26.868+03	
dc574ece-6204-2343-b559-82fb8e57835b	2021-05-24 01:44:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:44:46.852+03	2021-05-24 01:44:46.859+03	
90cf1c27-c3ca-a0b1-ec59-5609f3ed279d	2021-05-24 01:45:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:45:06.852+03	2021-05-24 01:45:06.86+03	
90046cc8-6f32-9fe7-8542-95da70b3ec72	2021-05-24 01:45:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:45:27.852+03	2021-05-24 01:45:27.859+03	
47a25cd6-b4d2-1b17-afc1-930c02e432f2	2021-05-24 01:45:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:45:48.853+03	2021-05-24 01:45:48.859+03	
455db5ca-c3a6-7acc-6ee8-282b91b5d207	2021-05-24 01:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:46:09.852+03	2021-05-24 01:46:09.858+03	
b55bbce8-6b12-791c-331e-64a4a48ace27	2021-05-24 01:46:30.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:46:30.852+03	2021-05-24 01:46:30.867+03	
d53dbbd4-3e80-6e15-96af-01130bb3d0fc	2021-05-24 01:46:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:46:50.853+03	2021-05-24 01:46:50.859+03	
c710e034-f3bd-39a5-07eb-fc67989742b2	2021-05-24 01:47:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:47:10.853+03	2021-05-24 01:47:10.859+03	
9b069856-faf2-7b6e-8d42-4c0a3192a0e7	2021-05-24 01:47:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:47:31.854+03	2021-05-24 01:47:31.86+03	
e9756618-2656-c23d-509a-6952b7a66e2e	2021-05-24 01:47:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:47:52.853+03	2021-05-24 01:47:52.859+03	
7338dc33-eb97-158f-e71e-79b1f47da0e4	2021-05-24 01:48:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:48:13.853+03	2021-05-24 01:48:13.862+03	
9398d2f1-4475-6ee8-993c-9b52bfc50fa2	2021-05-24 01:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:48:35.852+03	2021-05-24 01:48:35.859+03	
4a4be7d0-dbc9-26a9-71ef-60c7228dacd9	2021-05-24 01:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:48:56.852+03	2021-05-24 01:48:56.86+03	
c2b2712e-935c-9ea8-41fb-940b4529d9fe	2021-05-24 01:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:49:16.853+03	2021-05-24 01:49:16.861+03	
133b8453-4979-f8cf-90f9-f27af0478aee	2021-05-24 01:49:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:49:37.852+03	2021-05-24 01:49:37.86+03	
8a3d9d26-259e-6a35-c881-85993d093259	2021-05-24 01:49:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:49:58.853+03	2021-05-24 01:49:58.861+03	
69bf44ce-b1f7-753d-3c9b-49d84bb838db	2021-05-24 01:50:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:50:08.853+03	2021-05-24 01:50:08.859+03	
6dc77c3c-174b-05b5-c6a9-ee748933369c	2021-05-24 01:50:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:50:28.853+03	2021-05-24 01:50:28.862+03	
8ab63ecb-f1cb-9d90-8099-8b9d0368d346	2021-05-24 01:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:50:49.853+03	2021-05-24 01:50:49.859+03	
9fff9270-59e5-634e-5cf8-40bca5c728e0	2021-05-24 01:51:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:51:10.853+03	2021-05-24 01:51:10.859+03	
2313e6b3-c2f9-f8a2-9912-0ee0e5a9c68d	2021-05-24 01:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:51:30.853+03	2021-05-24 01:51:30.859+03	
e437eee7-96a5-507b-e51f-accf0d64a3b3	2021-05-24 01:51:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:51:51.853+03	2021-05-24 01:51:51.86+03	
940496e6-4293-46f7-089d-5d02c46a95b6	2021-05-24 01:52:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:52:12.852+03	2021-05-24 01:52:12.859+03	
3fdd0691-7960-8489-c297-2c986bacee15	2021-05-24 01:52:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:52:32.853+03	2021-05-24 01:52:32.862+03	
43bc947e-1133-2ff5-af8b-fc8ab5c8aa74	2021-05-24 01:52:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:52:53.853+03	2021-05-24 01:52:53.86+03	
ed1577ea-08cc-6707-ef32-9917004fe393	2021-05-24 01:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:53:14.853+03	2021-05-24 01:53:14.859+03	
69d58896-c695-f735-33b0-efe61da9f18a	2021-05-24 01:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:53:35.853+03	2021-05-24 01:53:35.86+03	
f22bfbbf-3039-c831-728c-2622d52e9ac4	2021-05-24 01:53:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:53:57.852+03	2021-05-24 01:53:57.859+03	
86e87118-b322-a1cd-fca7-576816a7f628	2021-05-24 01:54:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:54:17.853+03	2021-05-24 01:54:17.859+03	
eb8497d0-fb72-6646-13c0-fd05c8003c5b	2021-05-24 01:54:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:54:38.853+03	2021-05-24 01:54:38.868+03	
95d41ece-2e74-e638-13d2-36ed37815bea	2021-05-24 01:54:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:54:59.853+03	2021-05-24 01:54:59.859+03	
10b49c48-106f-4f59-9dca-813f410017a5	2021-05-24 01:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:55:20.852+03	2021-05-24 01:55:20.859+03	
52e665a4-8d9a-5c3b-6d37-7d6c502cb839	2021-05-24 01:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:55:40.853+03	2021-05-24 01:55:40.86+03	
c2aaed6c-3856-4d31-9775-d3e4efe51dd4	2021-05-24 01:56:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:56:01.853+03	2021-05-24 01:56:01.86+03	
66f69d66-1678-f3d6-f784-3b4d3653f574	2021-05-24 01:56:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:56:22.852+03	2021-05-24 01:56:22.863+03	
b345b8c3-56f9-fa00-67b5-5796714310d2	2021-05-24 01:56:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:56:42.853+03	2021-05-24 01:56:42.866+03	
7a69431d-16ae-2bb6-6361-c24f59157ad4	2021-05-24 01:57:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:57:03.853+03	2021-05-24 01:57:03.859+03	
902b89ae-be9a-594d-35c5-0c1212181beb	2021-05-24 01:57:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:57:23.853+03	2021-05-24 01:57:23.86+03	
08ebd6ee-c77f-5d96-68b3-e517f787af89	2021-05-24 01:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:57:44.853+03	2021-05-24 01:57:44.859+03	
5a86660d-96f0-4c03-b0ef-63cd51a740b9	2021-05-24 01:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:58:05.853+03	2021-05-24 01:58:05.861+03	
0d8741e2-ff5f-c8fa-c4aa-7a84a2445a72	2021-05-24 01:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:58:27.852+03	2021-05-24 01:58:27.859+03	
8fd3c3ff-e647-8d76-f8c9-f70ce5f00b40	2021-05-24 01:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:58:47.853+03	2021-05-24 01:58:47.865+03	
58864e8d-27a3-6b19-27e6-0b20f766aa08	2021-05-24 01:59:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:59:08.853+03	2021-05-24 01:59:08.869+03	
4977644e-3b92-b830-7c99-53543ab700f7	2021-05-24 01:59:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:59:28.853+03	2021-05-24 01:59:28.859+03	
997c0d9f-563d-eeea-3b69-42f80c52e07c	2021-05-24 01:59:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:59:49.852+03	2021-05-24 01:59:49.859+03	
54b2c1a3-13de-087c-2282-40e7484fd951	2021-05-24 02:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 02:00:00.853+03	2021-05-24 02:00:00.861+03	ERROR
f5a8483d-4d04-83dc-faad-7bcddd6b1fb3	2021-05-24 02:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:00:19.853+03	2021-05-24 02:00:19.86+03	
c3d9cd94-7880-3dd2-d6d9-0ddfea23330c	2021-05-24 02:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:00:40.853+03	2021-05-24 02:00:40.861+03	
c7ec6da7-84bd-ae45-2ec4-326e8e0901a9	2021-05-24 02:01:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:01:02.852+03	2021-05-24 02:01:02.859+03	
2fe0f573-3a28-7ca9-21fc-c9e370627ae8	2021-05-24 02:01:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:01:22.853+03	2021-05-24 02:01:22.859+03	
4a992e84-168e-81a7-b8c1-94480664259e	2021-05-24 02:01:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:01:42.853+03	2021-05-24 02:01:42.87+03	
019c1a2e-a19d-5273-e5ba-6bfb2b5b4461	2021-05-24 02:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:02:03.852+03	2021-05-24 02:02:03.859+03	
f776bd44-8ec5-74cf-665e-74f2b5be7790	2021-05-24 02:02:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:02:23.852+03	2021-05-24 02:02:23.859+03	
b661b6ae-d1d5-1134-c6c6-e161e78ac0fa	2021-05-24 02:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:02:44.853+03	2021-05-24 02:02:44.859+03	
474ce302-376b-643b-5d7f-1167d6cb5f0a	2021-05-24 02:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:03:05.852+03	2021-05-24 02:03:05.862+03	
3aad634d-06a6-748b-c840-1a86d8e7ec24	2021-05-24 01:42:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:42:32.853+03	2021-05-24 01:42:32.859+03	
6b74f720-0a6b-9290-3e90-a301ebf7a359	2021-05-24 01:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:42:53.853+03	2021-05-24 01:42:53.859+03	
4836ac46-cb61-efaa-e249-e6f7d31b8a35	2021-05-24 01:43:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:43:14.852+03	2021-05-24 01:43:14.859+03	
375762c3-d3f4-e2e8-11db-1b347e2e37dc	2021-05-24 01:43:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:43:34.853+03	2021-05-24 01:43:34.859+03	
89fcb222-37aa-65a6-1855-9c454ffc1d8a	2021-05-24 01:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:43:55.853+03	2021-05-24 01:43:55.861+03	
296d4c42-6977-eb8d-273b-ea24858365be	2021-05-24 01:44:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:44:16.852+03	2021-05-24 01:44:16.861+03	
792f37ba-28ac-64c1-3a97-4923f56098a4	2021-05-24 01:44:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:44:36.852+03	2021-05-24 01:44:36.859+03	
2c171a77-6e38-5575-7880-b40d85fd1f10	2021-05-24 01:44:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:44:56.852+03	2021-05-24 01:44:56.858+03	
c3714e92-b7db-46de-4dc5-a8bfd0561051	2021-05-24 01:45:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:45:16.853+03	2021-05-24 01:45:16.86+03	
b84d7de6-ab93-f907-1742-d64857e6fd3a	2021-05-24 01:45:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:45:37.853+03	2021-05-24 01:45:37.861+03	
0d1b0b92-914a-a80f-9ecd-4218f59c4958	2021-05-24 01:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:45:59.852+03	2021-05-24 01:45:59.859+03	
4d911a7e-374f-0882-2e3b-af01dea82aca	2021-05-24 01:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:46:19.853+03	2021-05-24 01:46:19.877+03	
2d283a63-4fc0-35cd-ad0d-817acb781a42	2021-05-24 01:46:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:46:40.852+03	2021-05-24 01:46:40.86+03	
5f19b33a-001e-0490-61ef-943790543d28	2021-05-24 01:47:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:47:00.853+03	2021-05-24 01:47:00.859+03	
74b22d45-8809-93e8-ef92-70d3210de3bb	2021-05-24 01:47:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:47:20.853+03	2021-05-24 01:47:20.858+03	
03c3aa9c-9024-b7f5-083b-1e8146c85752	2021-05-24 01:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:47:42.852+03	2021-05-24 01:47:42.875+03	
8d82e9cb-7cb3-cecb-f6d7-a3c37a176795	2021-05-24 01:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:48:03.852+03	2021-05-24 01:48:03.86+03	
1a648bca-bc78-5ca8-b2e3-1d89f1fc9cb5	2021-05-24 01:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:48:24.853+03	2021-05-24 01:48:24.86+03	
4437c513-a715-af90-fe71-4f9c9a9dbe1a	2021-05-24 01:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:48:45.853+03	2021-05-24 01:48:45.86+03	
1551145e-1ad8-99af-9b9e-27330537dad8	2021-05-24 01:49:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:49:06.853+03	2021-05-24 01:49:06.86+03	
fcfbcb1a-4fe6-3cde-f321-d87f8bf79bca	2021-05-24 01:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:49:26.853+03	2021-05-24 01:49:26.861+03	
1210eb47-5e39-72c1-ad98-081c1d248d68	2021-05-24 01:49:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:49:47.853+03	2021-05-24 01:49:47.858+03	
f85e9b2c-8bed-c368-a616-6133494c6e27	2021-05-24 01:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 01:50:00.853+03	2021-05-24 01:50:00.858+03	ERROR
3df27ae5-cebc-7289-d975-111ba509a8aa	2021-05-24 01:50:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:50:18.853+03	2021-05-24 01:50:18.863+03	
deef1d09-ccb6-f9f5-0541-dad1c3ddee37	2021-05-24 01:50:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:50:38.853+03	2021-05-24 01:50:38.862+03	
cc67c0c2-cd5d-3e30-def7-d0889f11a485	2021-05-24 01:51:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:51:00.853+03	2021-05-24 01:51:00.859+03	
8f5cad36-9a51-7ed9-d9b3-187fddb8108f	2021-05-24 01:51:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:51:20.853+03	2021-05-24 01:51:20.86+03	
c6d8fd2c-773a-7466-c5fe-5f168ae0a58f	2021-05-24 01:51:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:51:41.853+03	2021-05-24 01:51:41.86+03	
8bdc4404-4ba9-045c-4ffa-1399c87d429e	2021-05-24 01:52:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:52:02.852+03	2021-05-24 01:52:02.859+03	
5c3d01dd-3df2-d9fd-bd50-473ec7b947ee	2021-05-24 01:52:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:52:22.853+03	2021-05-24 01:52:22.861+03	
96d9546b-9ae0-e83e-2706-59b6c3e46e9a	2021-05-24 01:52:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:52:43.852+03	2021-05-24 01:52:43.861+03	
b98e69fc-34cd-9934-2723-29cb9a8231e0	2021-05-24 01:53:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:53:03.853+03	2021-05-24 01:53:03.859+03	
f593d710-439c-6b5e-9be2-01ea8a4976dc	2021-05-24 01:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:53:25.852+03	2021-05-24 01:53:25.859+03	
82d148f4-0f87-a239-770f-1b66f018a0cd	2021-05-24 01:53:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:53:46.853+03	2021-05-24 01:53:46.86+03	
48b95f10-ae4c-a791-670b-dd341f463d04	2021-05-24 01:54:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:54:07.852+03	2021-05-24 01:54:07.859+03	
1bba6b94-4d33-134e-6334-4f711f4d0c70	2021-05-24 01:54:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:54:28.852+03	2021-05-24 01:54:28.859+03	
5dded36f-c741-0bf9-9a8c-9567ac7d2161	2021-05-24 01:54:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:54:48.853+03	2021-05-24 01:54:48.859+03	
8b551a18-c524-b876-4bd8-f447a5f65c86	2021-05-24 01:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:55:10.852+03	2021-05-24 01:55:10.859+03	
fa8e6254-8f8a-6033-458d-71b80a381021	2021-05-24 01:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:55:30.852+03	2021-05-24 01:55:30.859+03	
d2badeca-d4bc-1ed1-3c15-652901b2dba2	2021-05-24 01:55:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:55:51.852+03	2021-05-24 01:55:51.86+03	
9f99a069-1f02-9b8a-b40b-64d35346bb1b	2021-05-24 01:56:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:56:12.852+03	2021-05-24 01:56:12.86+03	
b07c1fd4-b4e0-1b93-06f8-0424581827bb	2021-05-24 01:56:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:56:32.853+03	2021-05-24 01:56:32.859+03	
0d9c9be1-b50e-88b7-adaf-e71c440a95c0	2021-05-24 01:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:56:53.853+03	2021-05-24 01:56:53.86+03	
b1dd92b7-c09f-9d4a-8cc8-b542afae1fb4	2021-05-24 01:57:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:57:13.853+03	2021-05-24 01:57:13.859+03	
c6c8b02e-2a9c-c10b-09e0-9f01dce058dc	2021-05-24 01:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:57:34.852+03	2021-05-24 01:57:34.858+03	
418802e5-5bb9-751e-0f7b-197ee89b4e3f	2021-05-24 01:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:57:55.852+03	2021-05-24 01:57:55.859+03	
2e58dc1a-6abe-e572-4187-9a242ee6a9fc	2021-05-24 01:58:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:58:16.853+03	2021-05-24 01:58:16.86+03	
1ef6f852-8b0d-15a1-2684-b8b577dd4e97	2021-05-24 01:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:58:37.852+03	2021-05-24 01:58:37.861+03	
589dac0a-5ab6-000f-853b-15f352ba5461	2021-05-24 01:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:58:57.853+03	2021-05-24 01:58:57.859+03	
2a3bd77e-6111-b1cc-bd2b-f8cd801571b5	2021-05-24 01:59:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:59:18.853+03	2021-05-24 01:59:18.86+03	
b08c5635-495d-dee1-bbff-27ee37a385ef	2021-05-24 01:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:59:38.853+03	2021-05-24 01:59:38.861+03	
7898de4d-22bf-6985-4ace-9c5a8e8e0696	2021-05-24 01:59:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 01:59:59.852+03	2021-05-24 01:59:59.859+03	
738a2334-5293-1b1b-799b-1129dcc59d9e	2021-05-24 02:00:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:00:09.852+03	2021-05-24 02:00:09.863+03	
a4ae237d-872e-e3bc-636d-cf1ddf09bd9c	2021-05-24 02:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:00:29.853+03	2021-05-24 02:00:29.86+03	
6df7449c-e47d-42b2-663b-09d1a875c33b	2021-05-24 02:00:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:00:51.853+03	2021-05-24 02:00:51.86+03	
600f7edd-3bf3-ecb0-855e-baa15fb94073	2021-05-24 02:01:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:01:12.852+03	2021-05-24 02:01:12.859+03	
49b829dd-71c7-0ae1-7eee-3926b48d365b	2021-05-24 02:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:01:32.853+03	2021-05-24 02:01:32.861+03	
8d399004-03ba-d85c-d4da-23151ba48f73	2021-05-24 02:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:01:53.852+03	2021-05-24 02:01:53.859+03	
f4748b34-8958-28d7-fe22-a8a6770affe8	2021-05-24 02:02:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:02:13.852+03	2021-05-24 02:02:13.859+03	
dafd0838-884b-4e14-8ec4-595254afae16	2021-05-24 02:02:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:02:33.853+03	2021-05-24 02:02:33.875+03	
0ce7de08-7f1f-7d75-9842-0263b1312116	2021-05-24 02:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:02:54.853+03	2021-05-24 02:02:54.859+03	
73736bc5-bedd-db76-cb97-991cd5c138dd	2021-05-24 02:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:03:15.852+03	2021-05-24 02:03:15.858+03	
e6e95423-c5cd-eaca-4db2-fa5a6606a770	2021-05-24 02:03:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:03:35.853+03	2021-05-24 02:03:35.859+03	
a1a18c02-0a76-58d2-7b39-f5d9a194da41	2021-05-24 02:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:03:25.852+03	2021-05-24 02:03:25.859+03	
4fdeeb76-e687-8c65-5b96-d23178d86938	2021-05-24 02:03:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:03:45.853+03	2021-05-24 02:03:45.859+03	
d574e7f7-591a-0c91-7ac3-82ac93d84c2c	2021-05-24 02:04:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:04:06.852+03	2021-05-24 02:04:06.859+03	
470e6b0e-92f6-d62b-a83e-70392fb1773e	2021-05-24 02:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:04:27.852+03	2021-05-24 02:04:27.859+03	
2b27b590-9d9a-f6d6-08c8-c89380958f29	2021-05-24 02:04:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:04:47.852+03	2021-05-24 02:04:47.873+03	
1e86a36b-dd02-0c4c-d1d1-cb42bdf91520	2021-05-24 02:05:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:05:07.852+03	2021-05-24 02:05:07.871+03	
5d993677-2129-22d6-d669-bb71d80fa0a0	2021-05-24 02:05:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:05:27.852+03	2021-05-24 02:05:27.86+03	
f00e66fe-b9e2-0a80-32dd-f5b395b4a182	2021-05-24 02:05:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:05:47.852+03	2021-05-24 02:05:47.859+03	
1752e5ec-0df4-b455-81e2-3373bba2cf97	2021-05-24 02:06:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:06:07.852+03	2021-05-24 02:06:07.859+03	
a33ff837-fd87-933d-0160-b148904e067b	2021-05-24 02:06:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:06:27.853+03	2021-05-24 02:06:27.861+03	
c8f1e3af-53bc-1d9f-f019-1975395ca127	2021-05-24 02:06:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:06:48.852+03	2021-05-24 02:06:48.859+03	
e536e481-617b-58ff-a086-e69cfc078f37	2021-05-24 02:07:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:07:09.853+03	2021-05-24 02:07:09.862+03	
0914bb9f-2bbb-9eb2-eb4a-7670a58f9986	2021-05-24 02:07:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:07:31.853+03	2021-05-24 02:07:31.859+03	
5503c46e-ed5c-2149-f1e8-dd178b11a5fb	2021-05-24 02:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:07:52.852+03	2021-05-24 02:07:52.86+03	
4c9ce89c-105b-f282-fc41-ef3a9969cf66	2021-05-24 02:08:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:08:12.853+03	2021-05-24 02:08:12.86+03	
50b5d7ed-6950-7947-f1d8-6e8febab92a7	2021-05-24 02:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:08:32.853+03	2021-05-24 02:08:32.858+03	
cb693c05-e1c3-16b9-d387-82de92f84d8f	2021-05-24 02:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:08:53.853+03	2021-05-24 02:08:53.86+03	
291b2317-6791-c0f2-7e69-fca3269ad3df	2021-05-24 02:09:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:09:14.852+03	2021-05-24 02:09:14.86+03	
d110f1db-d348-291d-e2a6-f2f6815be92c	2021-05-24 02:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:09:34.852+03	2021-05-24 02:09:34.859+03	
5be02c18-1240-4689-966e-9dc1b8a151f7	2021-05-24 02:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:09:54.852+03	2021-05-24 02:09:54.858+03	
3657a328-485c-edea-80b8-6eb5a59e5dfc	2021-05-24 02:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:10:04.852+03	2021-05-24 02:10:04.858+03	
e3384597-fd0e-7694-b2e4-c92593fb706d	2021-05-24 02:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:10:24.853+03	2021-05-24 02:10:24.86+03	
ae4f9244-aa35-80ae-6b4e-1bc71bd99161	2021-05-24 02:10:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:10:46.852+03	2021-05-24 02:10:46.861+03	
cb08eb12-48c2-7b81-cb5d-1154dd7ac0ba	2021-05-24 02:11:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:11:06.852+03	2021-05-24 02:11:06.859+03	
fe518421-6898-1b03-55d2-1efef23200d8	2021-05-24 02:11:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:11:26.852+03	2021-05-24 02:11:26.861+03	
6bcea2b1-f058-9f49-d357-3fb8942592a2	2021-05-24 02:11:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:11:47.853+03	2021-05-24 02:11:47.859+03	
1426deac-1bab-0963-2f7d-7740b95edc86	2021-05-24 02:12:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:12:09.852+03	2021-05-24 02:12:09.858+03	
cf22dce6-e110-2db4-4152-0200d6aa3cbe	2021-05-24 02:12:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:12:29.852+03	2021-05-24 02:12:29.859+03	
1153258c-1af4-e740-8bd0-e8ead77c6857	2021-05-24 02:12:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:12:49.852+03	2021-05-24 02:12:49.859+03	
f482a899-3a7f-a26e-bd38-e09567f5e7cf	2021-05-24 02:13:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:13:10.852+03	2021-05-24 02:13:10.858+03	
5ed81138-8b54-51a8-0a98-8cea119a9633	2021-05-24 02:13:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:13:30.853+03	2021-05-24 02:13:30.859+03	
b025aa33-953e-2f78-4841-c81223880cf3	2021-05-24 02:13:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:13:51.854+03	2021-05-24 02:13:51.866+03	
edeec063-db67-1e5e-708a-fb42f76ddff0	2021-05-24 02:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:14:12.852+03	2021-05-24 02:14:12.859+03	
bd4d4908-8408-42ca-9626-30395866af5e	2021-05-24 02:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:14:32.853+03	2021-05-24 02:14:32.87+03	
dc17d467-58e7-1ba3-aa6a-51d03ef2e963	2021-05-24 02:14:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:14:53.852+03	2021-05-24 02:14:53.859+03	
8d16558c-4850-10f8-d8f7-b23e0661f800	2021-05-24 02:15:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:15:13.853+03	2021-05-24 02:15:13.86+03	
6f258a21-c027-bc12-3ee8-0ff1ba36d3ad	2021-05-24 02:15:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:15:34.852+03	2021-05-24 02:15:34.878+03	
3409d216-fc97-732e-76b0-93331a468705	2021-05-24 02:15:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:15:54.853+03	2021-05-24 02:15:54.859+03	
59dc7d6e-436c-159f-2001-617f59dbdd53	2021-05-24 02:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:16:15.852+03	2021-05-24 02:16:15.859+03	
b2ffd2cb-905e-b827-2ed9-30d881a88c85	2021-05-24 02:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:16:35.853+03	2021-05-24 02:16:35.859+03	
2d92c3e0-ae95-e7e0-1564-094ccef82f1a	2021-05-24 02:16:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:16:56.852+03	2021-05-24 02:16:56.859+03	
230bfc1e-2eb9-e02c-55fe-6234e0a98884	2021-05-24 02:17:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:17:16.852+03	2021-05-24 02:17:16.859+03	
e787b1d2-1304-473a-f731-b3b9ce7b8385	2021-05-24 02:17:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:17:36.853+03	2021-05-24 02:17:36.864+03	
117a7d75-5cb3-503c-4c8d-49f8832527ae	2021-05-24 02:17:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:17:57.853+03	2021-05-24 02:17:57.859+03	
bca930a2-6801-32a4-ab09-3469984894d3	2021-05-24 02:18:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:18:18.852+03	2021-05-24 02:18:18.859+03	
5b4a191e-414c-46f1-17f9-34af99a2f084	2021-05-24 02:18:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:18:38.852+03	2021-05-24 02:18:38.873+03	
64798f7c-3a48-2ebf-e9cb-a4be8da7316c	2021-05-24 02:18:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:18:58.852+03	2021-05-24 02:18:58.859+03	
986d18a7-f04f-bcd5-7aa4-dd621a9be515	2021-05-24 02:19:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:19:18.852+03	2021-05-24 02:19:18.859+03	
b1e88a21-96bb-ae9c-5f93-fa80e6d2e758	2021-05-24 02:19:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:19:38.852+03	2021-05-24 02:19:38.859+03	
bff39fa2-2dea-80a2-a09e-51cdd023fff7	2021-05-24 02:19:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:19:58.853+03	2021-05-24 02:19:58.86+03	
7e196ec6-7309-9235-468a-1445c0844bac	2021-05-24 02:20:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:20:09.853+03	2021-05-24 02:20:09.859+03	
78a9dc26-b025-61be-d0d2-e019f5deec9e	2021-05-24 02:20:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:20:31.852+03	2021-05-24 02:20:31.859+03	
75dcf195-afb9-90ff-8f25-41806221c823	2021-05-24 02:20:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:20:51.852+03	2021-05-24 02:20:51.861+03	
bf81262c-8001-0ac7-417e-7914409101d6	2021-05-24 02:21:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:21:11.854+03	2021-05-24 02:21:11.866+03	
c293f269-481b-0b37-c882-62dc02963ddb	2021-05-24 02:21:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:21:32.853+03	2021-05-24 02:21:32.864+03	
ab313c6b-b691-030a-18bb-b67427284c1f	2021-05-24 02:21:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:21:53.853+03	2021-05-24 02:21:53.86+03	
2921bdc5-1e76-1d77-6a5d-d6a350b82d53	2021-05-24 02:22:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:22:14.853+03	2021-05-24 02:22:14.86+03	
d4558a3c-b47c-59a4-69d3-70f775d48c86	2021-05-24 02:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:22:35.852+03	2021-05-24 02:22:35.862+03	
eb513e55-b23b-8ed2-6c99-09908f2cee1b	2021-05-24 02:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:22:55.852+03	2021-05-24 02:22:55.859+03	
9a1dc4b7-3922-9cb5-d69d-cb2a78a97126	2021-05-24 02:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:23:15.852+03	2021-05-24 02:23:15.864+03	
af5c815f-0112-2dc6-c3d4-f47cc4db3969	2021-05-24 02:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:23:35.853+03	2021-05-24 02:23:35.86+03	
b1756f68-b1d5-eb69-8dba-b1abd5c94c5e	2021-05-24 02:23:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:23:56.852+03	2021-05-24 02:23:56.86+03	
8052bc1d-9999-05b2-bf97-68c45e85cc29	2021-05-24 02:24:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:24:17.852+03	2021-05-24 02:24:17.859+03	
94987b89-d59a-7771-22c4-f0d39397572e	2021-05-24 02:03:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:03:56.852+03	2021-05-24 02:03:56.86+03	
e6c078d1-e08a-46a3-a8fa-9a3dc3d38d90	2021-05-24 02:04:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:04:16.854+03	2021-05-24 02:04:16.86+03	
f188c6c0-8c51-88d4-b5d1-863742e80866	2021-05-24 02:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:04:37.852+03	2021-05-24 02:04:37.86+03	
9cd656b9-1600-e0d6-88e9-472890b7f5d1	2021-05-24 02:04:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:04:57.852+03	2021-05-24 02:04:57.859+03	
8b61f35f-6c91-f65c-89a5-b29f04aacbdf	2021-05-24 02:05:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:05:17.852+03	2021-05-24 02:05:17.863+03	
ca133662-1551-31ce-3bac-72b22438c7b6	2021-05-24 02:05:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:05:37.852+03	2021-05-24 02:05:37.859+03	
32905434-33c6-6318-952b-70e40d824b93	2021-05-24 02:05:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:05:57.852+03	2021-05-24 02:05:57.858+03	
10e2c65d-8ac7-570c-71fe-189202f1f124	2021-05-24 02:06:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:06:17.853+03	2021-05-24 02:06:17.859+03	
8edd2426-7dd8-1c23-320d-c1a593303fc8	2021-05-24 02:06:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:06:37.853+03	2021-05-24 02:06:37.861+03	
68594597-41ea-9b82-8a85-6284e4340f08	2021-05-24 02:06:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:06:58.853+03	2021-05-24 02:06:58.859+03	
8dfef5e9-b6ad-7672-553e-50696c7ed23a	2021-05-24 02:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:07:20.853+03	2021-05-24 02:07:20.858+03	
bb89566d-e9d3-72c9-e775-822c96bd435d	2021-05-24 02:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:07:42.852+03	2021-05-24 02:07:42.86+03	
83db5afe-1799-2502-c9f5-1d2a82aebc19	2021-05-24 02:08:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:08:02.853+03	2021-05-24 02:08:02.86+03	
4cb5b371-1c61-33f0-6e44-8ae0e6594744	2021-05-24 02:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:08:22.853+03	2021-05-24 02:08:22.859+03	
381267f7-2abf-6691-b6d8-ef11f81a7b2d	2021-05-24 02:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:08:43.852+03	2021-05-24 02:08:43.859+03	
8c5557ef-888f-779f-4d9c-673461054877	2021-05-24 02:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:09:03.853+03	2021-05-24 02:09:03.859+03	
0bc7c411-ad6f-c73a-79d3-9161825d1e49	2021-05-24 02:09:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:09:24.852+03	2021-05-24 02:09:24.859+03	
3eb637d6-ab48-3a5e-7b28-ad46dc57a0a1	2021-05-24 02:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:09:44.852+03	2021-05-24 02:09:44.86+03	
29f2a9dd-54dd-d60f-42c9-4d564d219827	2021-05-24 02:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 02:10:00.852+03	2021-05-24 02:10:00.858+03	ERROR
9a6218f5-61eb-ff02-0f74-0422bb0d836f	2021-05-24 02:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:10:14.852+03	2021-05-24 02:10:14.859+03	
8ee10839-774e-151b-e5b2-a11d632d6ce6	2021-05-24 02:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:10:35.853+03	2021-05-24 02:10:35.875+03	
7a700a3f-9026-6c22-7b66-b558464296df	2021-05-24 02:10:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:10:56.852+03	2021-05-24 02:10:56.86+03	
a4df787a-fde3-69e5-5193-1fde4252dd0e	2021-05-24 02:11:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:11:16.852+03	2021-05-24 02:11:16.858+03	
5c564d60-1be7-363d-a833-23793e363088	2021-05-24 02:11:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:11:36.854+03	2021-05-24 02:11:36.86+03	
12d6f586-9bba-d94d-de01-d9f1f2123ba2	2021-05-24 02:11:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:11:58.853+03	2021-05-24 02:11:58.858+03	
e5182048-a353-795c-d434-b48aa84d0f73	2021-05-24 02:12:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:12:19.852+03	2021-05-24 02:12:19.858+03	
c67460eb-cc3b-3470-6c0f-201497f505bd	2021-05-24 02:12:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:12:39.852+03	2021-05-24 02:12:39.86+03	
f45a4983-7d79-91e7-1435-75188d4de276	2021-05-24 02:12:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:12:59.853+03	2021-05-24 02:12:59.86+03	
da5c1697-8ad7-2d8d-8100-2721a96e21ae	2021-05-24 02:13:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:13:20.853+03	2021-05-24 02:13:20.86+03	
fd8c4ee7-bf32-0531-52c4-a4de7f9d17b0	2021-05-24 02:13:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:13:41.852+03	2021-05-24 02:13:41.859+03	
94069a98-2f05-e0c2-80d6-0bfbd323da82	2021-05-24 02:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:14:02.852+03	2021-05-24 02:14:02.859+03	
a898ea01-7c7a-ddf7-4a6d-841ecfd7f38a	2021-05-24 02:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:14:22.853+03	2021-05-24 02:14:22.86+03	
5d015f5c-cdfd-ebe1-3768-eec6272baea6	2021-05-24 02:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:14:42.853+03	2021-05-24 02:14:42.86+03	
ae6deecf-b02b-a0b5-3094-ede8b6da0797	2021-05-24 02:15:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:15:03.852+03	2021-05-24 02:15:03.875+03	
baab3f37-d865-badf-1a55-fb15767d4cb6	2021-05-24 02:15:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:15:24.852+03	2021-05-24 02:15:24.859+03	
029bf1f1-2c2b-402c-8bd9-d05b171d48ed	2021-05-24 02:15:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:15:44.853+03	2021-05-24 02:15:44.859+03	
00621a23-1223-456a-cd5c-2d1bdc643534	2021-05-24 02:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:16:05.852+03	2021-05-24 02:16:05.858+03	
c7898d11-3b0a-f24b-4d46-8d9715e43317	2021-05-24 02:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:16:25.853+03	2021-05-24 02:16:25.861+03	
093b716d-ac6c-7622-b4af-a5b5dae1ab56	2021-05-24 02:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:16:45.853+03	2021-05-24 02:16:45.86+03	
e4a2f12a-5d34-887a-da1c-17338193f0c1	2021-05-24 02:17:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:17:06.852+03	2021-05-24 02:17:06.859+03	
e5d17c1e-54eb-f3b6-0539-53185bd87044	2021-05-24 02:17:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:17:26.852+03	2021-05-24 02:17:26.858+03	
43c24536-ceba-8e81-7e2b-8d1da08a6ccf	2021-05-24 02:17:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:17:47.852+03	2021-05-24 02:17:47.86+03	
eb5e0f83-b720-bf2a-c4d0-e60896535751	2021-05-24 02:18:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:18:07.853+03	2021-05-24 02:18:07.89+03	
fa02897d-2278-a214-783e-54d85e4b755c	2021-05-24 02:18:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:18:28.852+03	2021-05-24 02:18:28.86+03	
090572ce-5b7b-5b72-da33-e30a5bdaf37c	2021-05-24 02:18:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:18:48.852+03	2021-05-24 02:18:48.859+03	
d827bf94-be7b-7738-8e4e-b6cd4993279a	2021-05-24 02:19:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:19:08.852+03	2021-05-24 02:19:08.858+03	
eef749b8-383a-f3b3-63f0-fbe90e3e73f9	2021-05-24 02:19:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:19:28.852+03	2021-05-24 02:19:28.859+03	
ba264629-46a1-71c1-2042-2fd50113ff78	2021-05-24 02:19:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:19:48.852+03	2021-05-24 02:19:48.859+03	
bceeb44e-9d00-72a3-53d8-77b23797dfe5	2021-05-24 02:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 02:20:00.852+03	2021-05-24 02:20:00.858+03	ERROR
2ebaf3cf-eb04-8fc9-450f-4c972529f8a5	2021-05-24 02:20:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:20:20.853+03	2021-05-24 02:20:20.86+03	
e329b792-794f-f7ef-88c9-cb7b75931dd8	2021-05-24 02:20:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:20:41.852+03	2021-05-24 02:20:41.859+03	
f01fffbb-1758-0b1d-c485-bacc76102c1a	2021-05-24 02:21:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:21:01.852+03	2021-05-24 02:21:01.86+03	
bf4b5125-0bf7-484f-861e-6f11be47abcc	2021-05-24 02:21:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:21:22.853+03	2021-05-24 02:21:22.859+03	
6dc94b2e-063f-4c15-1092-ebd158588e83	2021-05-24 02:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:21:43.853+03	2021-05-24 02:21:43.861+03	
48d4ec40-33c4-b4d9-5181-52e609a69ee8	2021-05-24 02:22:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:22:04.852+03	2021-05-24 02:22:04.859+03	
df52b35a-80f5-a345-baed-49cf7193737e	2021-05-24 02:22:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:22:24.853+03	2021-05-24 02:22:24.86+03	
1a90edb2-2037-3462-1701-092d64d3b30b	2021-05-24 02:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:22:45.852+03	2021-05-24 02:22:45.858+03	
6c68d3ba-dc90-caa8-647a-6bf553e91fbb	2021-05-24 02:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:23:05.852+03	2021-05-24 02:23:05.859+03	
354b892c-11a6-62e2-8a16-46c7f3633771	2021-05-24 02:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:23:25.853+03	2021-05-24 02:23:25.861+03	
c6d0eee5-39ab-7a52-78be-bcbdb2e22831	2021-05-24 02:23:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:23:46.852+03	2021-05-24 02:23:46.859+03	
f2fe3639-a833-062b-70bd-ee6b54ab8ff4	2021-05-24 02:24:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:24:06.853+03	2021-05-24 02:24:06.863+03	
014aa4a2-7213-72cf-fc80-320398e156c4	2021-05-24 02:24:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:24:27.853+03	2021-05-24 02:24:27.858+03	
43104e32-1922-7796-3afe-b5aeef912493	2021-05-24 02:24:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:24:48.852+03	2021-05-24 02:24:48.859+03	
f6d58311-8f72-4185-b391-70eb868ef4af	2021-05-26 04:17:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:17:54.79+03	2021-05-26 04:17:54.797+03	
48752951-6418-6744-7b42-92e27b67f2fa	2021-05-24 02:24:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:24:37.853+03	2021-05-24 02:24:37.868+03	
abcbbc1e-54ca-b7a9-70f1-62e6d2555076	2021-05-24 23:01:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:01:01.877+03	2021-05-24 23:01:01.893+03	
db027f89-2b21-4021-ef81-199dec61a608	2021-05-24 02:24:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:24:58.852+03	2021-05-24 02:24:58.86+03	
3ff21960-8288-d11e-d38f-4108591d34a1	2021-05-24 02:25:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:25:18.853+03	2021-05-24 02:25:18.866+03	
1e8f6495-9dac-252f-cdd7-0f496fade52a	2021-05-24 23:01:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:01:21.877+03	2021-05-24 23:01:21.882+03	
2f17f22d-a6eb-135a-b641-aa369e53ade6	2021-05-24 02:25:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:25:39.852+03	2021-05-24 02:25:39.859+03	
c40eaee6-8b5e-2324-d0b4-1b9e8d08b70b	2021-05-24 02:26:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:26:00.853+03	2021-05-24 02:26:00.866+03	
1b97650d-8165-075b-4918-3701c23b9443	2021-05-24 23:01:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:01:41.877+03	2021-05-24 23:01:41.883+03	
09fd95d1-2fc7-602d-1ecc-df1b0155c247	2021-05-24 02:26:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:26:20.853+03	2021-05-24 02:26:20.86+03	
e18f2027-0c2c-d4dd-97b1-460cc43e8dc9	2021-05-24 02:26:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:26:41.852+03	2021-05-24 02:26:41.87+03	
12dff3ae-ede0-6a8b-5cf8-0b4dbc3cf0c1	2021-05-24 23:02:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:02:01.877+03	2021-05-24 23:02:01.885+03	
48d09d4c-d8d5-5e40-665a-a2773e1e1d65	2021-05-24 02:27:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:27:01.852+03	2021-05-24 02:27:01.859+03	
ab328e44-ae0c-0659-bdd5-bb3287de6535	2021-05-24 02:27:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:27:21.853+03	2021-05-24 02:27:21.868+03	
69bf9136-d6c3-ddec-d1ec-3907e85286d0	2021-05-24 23:02:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:02:21.877+03	2021-05-24 23:02:21.882+03	
638709b7-d2f0-d807-cfdf-ce6f6161da97	2021-05-24 23:02:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:02:41.877+03	2021-05-24 23:02:41.884+03	
656e41dc-d94b-97b1-d37e-24a5c99e59db	2021-05-24 23:03:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:03:01.877+03	2021-05-24 23:03:01.884+03	
3f16a7da-df9b-0eb4-9281-12248c50da8e	2021-05-24 23:03:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:03:21.877+03	2021-05-24 23:03:21.883+03	
71ebf508-7a43-c4e1-2018-0e518cba16e9	2021-05-24 23:03:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:03:42.877+03	2021-05-24 23:03:42.886+03	
9f91781e-1076-639a-7b70-367ece33fccb	2021-05-24 23:04:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:04:02.877+03	2021-05-24 23:04:02.884+03	
d4e52ee9-e2e6-55b6-1b83-617d0e854fa0	2021-05-24 23:04:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:04:23.877+03	2021-05-24 23:04:23.885+03	
02ae6bbf-0cf5-dfb1-9b0d-c5b583608480	2021-05-24 23:04:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:04:43.877+03	2021-05-24 23:04:43.884+03	
a4e78786-cb12-1345-aa4b-25c757394cda	2021-05-24 23:05:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:05:03.877+03	2021-05-24 23:05:03.884+03	
c1d1b1e0-8121-6f1b-fe18-cda1fc394dbd	2021-05-24 23:05:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:05:23.877+03	2021-05-24 23:05:23.883+03	
9fe8095a-f136-4593-45dd-0ea297342838	2021-05-24 23:05:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:05:43.877+03	2021-05-24 23:05:43.885+03	
21d497ac-68ce-520a-0b50-9618c1e114bf	2021-05-24 23:06:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:06:03.877+03	2021-05-24 23:06:03.887+03	
fe78dddf-8f9d-1d96-37b1-85b522a19393	2021-05-24 23:06:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:06:23.877+03	2021-05-24 23:06:23.883+03	
e95634b4-fb4e-c869-63a0-aad8ee8b6893	2021-05-24 23:06:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:06:43.877+03	2021-05-24 23:06:43.884+03	
cdc37456-d38a-6a4b-085f-fcdb006c3622	2021-05-24 23:07:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:07:03.877+03	2021-05-24 23:07:03.883+03	
a8a886ef-0337-6c22-ea14-b53256ae19d9	2021-05-24 23:07:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:07:23.877+03	2021-05-24 23:07:23.884+03	
16b39670-2559-82de-1a06-61fa8a722cd4	2021-05-24 23:07:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:07:43.877+03	2021-05-24 23:07:43.883+03	
f95a24e1-5ca1-413c-79eb-defadeccbd91	2021-05-24 23:08:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:08:03.877+03	2021-05-24 23:08:03.884+03	
cf441dea-aa6c-b4e1-0eab-216afd2bde0c	2021-05-24 23:08:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:08:23.877+03	2021-05-24 23:08:24.125+03	
589e4388-202c-6728-25f0-e238b6bfa79e	2021-05-24 23:08:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:08:43.877+03	2021-05-24 23:08:43.897+03	
076ad956-3175-d322-5a00-5e76d85f4aa9	2021-05-24 23:09:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:09:03.877+03	2021-05-24 23:09:03.884+03	
a6a6a4f9-3b9f-edef-f88b-39e41d89ff1f	2021-05-24 23:09:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:09:23.877+03	2021-05-24 23:09:23.886+03	
8f9223ff-cb3d-abc7-e130-b0958dbc61dc	2021-05-24 23:09:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:09:43.877+03	2021-05-24 23:09:43.885+03	
202aa9a3-35cb-274d-77c9-a7746427183f	2021-05-24 23:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 23:10:00.877+03	2021-05-24 23:10:00.882+03	ERROR
06bdca31-335e-c396-89ab-618492c283cb	2021-05-24 23:10:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:10:13.877+03	2021-05-24 23:10:13.883+03	
0e5e91ca-0a15-7e7c-71f1-ea549c5f4259	2021-05-24 23:10:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:10:33.877+03	2021-05-24 23:10:33.885+03	
a161dc7d-23ec-6ef5-7a6b-df21765dde90	2021-05-24 23:10:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:10:53.877+03	2021-05-24 23:10:53.886+03	
f9f903ae-6b45-7dad-3734-18e8229210bf	2021-05-24 23:11:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:11:13.877+03	2021-05-24 23:11:13.884+03	
5fa512d5-004c-886d-5eb4-e42f5b87c54d	2021-05-24 23:11:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:11:33.877+03	2021-05-24 23:11:33.883+03	
891eb8bb-a543-81ae-0894-c2b3f32f89aa	2021-05-24 23:11:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:11:53.877+03	2021-05-24 23:11:53.885+03	
81c54104-f0c2-fc5a-eada-0cfe7058cb89	2021-05-24 23:12:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:12:13.877+03	2021-05-24 23:12:13.885+03	
72f45ee6-5a2a-befa-12d0-b1cfc8890a96	2021-05-24 23:12:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:12:33.877+03	2021-05-24 23:12:33.882+03	
712c19ad-914f-44f7-bffa-ba900e596fec	2021-05-24 23:12:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:12:53.877+03	2021-05-24 23:12:53.885+03	
239eaee7-1267-09db-a584-7266979fd2b8	2021-05-24 23:13:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:13:13.877+03	2021-05-24 23:13:13.883+03	
a6c55f22-4fcc-f710-e0aa-10af71d66a8b	2021-05-24 23:13:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:13:33.877+03	2021-05-24 23:13:33.883+03	
d6f9c52c-7562-33be-972d-9fc87b96a861	2021-05-24 23:13:53.888	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:13:53.877+03	2021-05-24 23:13:53.895+03	
51f07e6d-f59e-f298-022a-5adb68b0f3b6	2021-05-24 23:14:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:14:13.877+03	2021-05-24 23:14:13.884+03	
5910a99e-f2f2-a63e-2307-8809b6a72fdd	2021-05-24 23:14:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:14:33.877+03	2021-05-24 23:14:33.885+03	
1988aa79-3d24-6722-83c0-d1048c91ce12	2021-05-24 23:14:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:14:53.877+03	2021-05-24 23:14:53.884+03	
9a8d7bd4-21de-51cc-19b9-637c3eeb7791	2021-05-24 23:15:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:15:13.877+03	2021-05-24 23:15:13.883+03	
3284c3ff-c086-704d-25ed-85334e9be522	2021-05-24 23:15:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:15:33.877+03	2021-05-24 23:15:33.883+03	
9824407f-c519-621d-decb-8983c3fc1fab	2021-05-24 23:15:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:15:53.877+03	2021-05-24 23:15:53.883+03	
f7615280-6b0f-1cc4-1046-3b3301605268	2021-05-24 23:16:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:16:13.877+03	2021-05-24 23:16:13.884+03	
b40586ce-b52f-865c-1d9b-cb0b73ff7cef	2021-05-24 23:16:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:16:33.877+03	2021-05-24 23:16:33.882+03	
ea402adb-9d8a-2bc8-416c-2196cd4d22f5	2021-05-24 23:16:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:16:53.877+03	2021-05-24 23:16:53.885+03	
d134aae7-3b3c-9d58-f2ed-5b010a971458	2021-05-24 23:17:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:17:13.877+03	2021-05-24 23:17:13.884+03	
cefe6a3b-1f76-de06-db90-3a08e0d5af54	2021-05-24 23:17:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:17:33.877+03	2021-05-24 23:17:33.883+03	
f5a5badc-abd4-8dab-41f4-372860cae5b1	2021-05-24 23:17:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:17:53.877+03	2021-05-24 23:17:53.883+03	
dcaefbff-ebf6-b309-0c49-37fb2756efe0	2021-05-24 23:18:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:18:13.877+03	2021-05-24 23:18:13.907+03	
70709f26-b3fb-46d6-1a77-71fb14447352	2021-05-24 23:18:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:18:33.877+03	2021-05-24 23:18:33.883+03	
001ad5cc-ce99-1115-a8fc-097f2b486d49	2021-05-24 02:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:25:08.852+03	2021-05-24 02:25:08.862+03	
fb337129-2879-84c9-5fda-47a8f10fc9c0	2021-05-24 02:25:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:25:29.852+03	2021-05-24 02:25:29.859+03	
59e5a5cf-7faa-047f-20a3-5b1486a62b63	2021-05-24 02:25:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:25:49.853+03	2021-05-24 02:25:49.859+03	
5dc6331a-ba1d-1860-94bf-49219b798c3a	2021-05-24 02:26:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:26:10.853+03	2021-05-24 02:26:10.859+03	
d3ab4781-1634-05d2-48e7-4e63a7c498da	2021-05-24 02:26:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:26:30.853+03	2021-05-24 02:26:30.86+03	
15ff6571-24ab-a3d1-e1f1-16577b0faa39	2021-05-24 02:26:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:26:51.852+03	2021-05-24 02:26:51.859+03	
6d5d0d15-57d5-131c-932f-ef2d8368172e	2021-05-24 02:27:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:27:11.853+03	2021-05-24 02:27:11.86+03	
77d65fbd-beab-21d3-23ea-d003b49cae3f	2021-05-24 02:27:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:27:31.853+03	2021-05-24 02:27:31.859+03	
09db79cb-9545-233d-d090-aa5a8af449d3	2021-05-24 02:27:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:27:41.854+03	2021-05-24 02:27:41.861+03	
d5545656-1ee7-dc5c-4875-3958e65d1210	2021-05-24 02:27:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:27:52.852+03	2021-05-24 02:27:52.86+03	
370b6bd8-d940-5108-8cfe-b97e82808e2f	2021-05-24 02:28:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:28:02.852+03	2021-05-24 02:28:02.859+03	
a3b9cb5d-63bd-aa24-1ea1-6367018dfc19	2021-05-24 02:28:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:28:12.853+03	2021-05-24 02:28:12.858+03	
cc939ce9-ffe0-9cae-95fd-5a7b1f30e022	2021-05-24 02:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:28:23.853+03	2021-05-24 02:28:23.859+03	
9f4eb5a3-a2b4-3d39-0271-036fd44e19bb	2021-05-24 02:28:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:28:34.852+03	2021-05-24 02:28:34.861+03	
5e1d1861-18d2-4659-0961-28b04d210710	2021-05-24 02:28:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:28:44.853+03	2021-05-24 02:28:44.861+03	
c66252e7-9b7d-f448-e0da-f58f11ef6e46	2021-05-24 02:28:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:28:54.853+03	2021-05-24 02:28:54.86+03	
01098cba-b685-0356-0a8b-6d514479df54	2021-05-24 02:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:29:05.852+03	2021-05-24 02:29:05.865+03	
6c0f9798-21c6-0962-e518-b399f3cb36c6	2021-05-24 02:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:29:15.852+03	2021-05-24 02:29:15.858+03	
b65cbcc2-71ed-b238-82b6-b1cd5b2b3fe7	2021-05-24 02:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:29:25.852+03	2021-05-24 02:29:25.859+03	
a3eac1ef-6ee5-b34d-c176-bcec2325c7dc	2021-05-24 02:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:29:35.852+03	2021-05-24 02:29:35.858+03	
1aeb2932-9389-0b06-637e-6c99f6eb9097	2021-05-24 02:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:29:45.852+03	2021-05-24 02:29:45.861+03	
81b4a225-6589-3f78-e258-5d49ec33190e	2021-05-24 02:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:29:55.852+03	2021-05-24 02:29:55.86+03	
a78abe7b-42b0-775a-e219-ea86a1be8c5e	2021-05-24 02:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 02:30:00.853+03	2021-05-24 02:30:00.857+03	ERROR
5eff7328-cc3b-e94b-ea7a-338cc2d05df6	2021-05-24 02:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:30:05.852+03	2021-05-24 02:30:05.859+03	
02a939ec-aa22-e188-a3a0-12c324f81ec3	2021-05-24 02:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:30:15.853+03	2021-05-24 02:30:15.859+03	
dc568740-4a71-a9de-d345-5b3627a9bc75	2021-05-24 02:30:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:30:26.853+03	2021-05-24 02:30:26.863+03	
f57b1a8d-2ab1-ac2c-a307-14da54915990	2021-05-24 02:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:30:37.852+03	2021-05-24 02:30:37.866+03	
2db70f98-1b8f-a995-0d5e-3c7c97cdf012	2021-05-24 02:30:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:30:47.853+03	2021-05-24 02:30:47.872+03	
22102551-4cff-b4e7-cd04-412d51177dea	2021-05-24 02:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:30:58.852+03	2021-05-24 02:30:58.858+03	
51bc2832-6684-4efd-0ad7-14d1663571a6	2021-05-24 02:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:31:08.853+03	2021-05-24 02:31:08.86+03	
485bf7a2-829d-ac3e-cabb-26701a920797	2021-05-24 02:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:31:18.853+03	2021-05-24 02:31:18.859+03	
1f5822ba-88fd-b8f9-6df0-a9a15f6aab83	2021-05-24 02:31:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:31:29.853+03	2021-05-24 02:31:29.86+03	
00b85334-485f-2cbd-6fc1-9839f76757c4	2021-05-24 02:31:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:31:40.852+03	2021-05-24 02:31:40.858+03	
07d4858f-a08e-d44d-58ed-14b3e060d70c	2021-05-24 02:31:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:31:50.852+03	2021-05-24 02:31:50.858+03	
623d1e3a-9c81-86aa-e949-66c6709d0709	2021-05-24 02:32:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:32:00.852+03	2021-05-24 02:32:00.859+03	
61c4c367-1c6c-74d2-6701-96db569b5056	2021-05-24 02:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:32:10.852+03	2021-05-24 02:32:10.86+03	
68e5a8d1-ebea-4c97-38d3-36378934a24a	2021-05-24 02:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:32:20.852+03	2021-05-24 02:32:20.861+03	
1df35adc-6919-6312-bd9a-bf8daaf88e1e	2021-05-24 02:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:32:30.852+03	2021-05-24 02:32:30.865+03	
017507ac-53b1-9550-f9c0-fa9e30ca2e6e	2021-05-24 02:32:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:32:40.852+03	2021-05-24 02:32:40.86+03	
b095eb6e-a12b-e451-f2a1-f0fcaed4e376	2021-05-24 02:32:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:32:50.852+03	2021-05-24 02:32:50.861+03	
591965e2-953b-e62a-fee6-4936607e6bfa	2021-05-24 02:33:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:33:00.853+03	2021-05-24 02:33:00.863+03	
5d9259bd-b09d-26d2-5d29-74e18ae241e4	2021-05-24 02:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:33:10.853+03	2021-05-24 02:33:10.86+03	
e0d5f274-1061-aea6-0ccf-bf4388e793f0	2021-05-24 02:33:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:33:20.853+03	2021-05-24 02:33:20.86+03	
284b0eea-9062-3092-4d3e-cac49b3e9b0e	2021-05-24 02:33:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:33:30.853+03	2021-05-24 02:33:30.861+03	
3a60a040-13de-15ea-afab-7a0a6e86e1b2	2021-05-24 02:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:33:41.853+03	2021-05-24 02:33:41.86+03	
4197c679-d6bf-3715-5e09-82d66312a998	2021-05-24 02:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:33:52.853+03	2021-05-24 02:33:52.859+03	
560c3dd7-1b46-ea8e-f372-0dd4b52ef792	2021-05-24 02:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:34:03.852+03	2021-05-24 02:34:03.859+03	
85375fc2-ebff-59c4-ddd5-0c9b651c108a	2021-05-24 02:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:34:13.853+03	2021-05-24 02:34:13.861+03	
a67c69f8-8783-4cd2-1923-6d82238820d4	2021-05-24 02:34:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:34:24.852+03	2021-05-24 02:34:24.858+03	
a1209166-50c7-edb3-2e7d-7597c97f9d77	2021-05-24 02:34:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:34:34.852+03	2021-05-24 02:34:34.858+03	
fb39e15b-a9c6-f408-ea2d-76bb83eec2b1	2021-05-24 02:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:34:44.852+03	2021-05-24 02:34:44.858+03	
30294bcb-13eb-0164-00a8-31e7b9980116	2021-05-24 02:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:34:54.852+03	2021-05-24 02:34:54.86+03	
1469f04a-b4ca-bfb9-d460-b364b35b98eb	2021-05-24 02:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:35:04.853+03	2021-05-24 02:35:04.86+03	
9151e10e-ba24-0ce0-f196-40246f54c2eb	2021-05-24 02:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:35:15.853+03	2021-05-24 02:35:15.86+03	
b3a29b2d-af53-95be-2ae9-de519f6bd7b6	2021-05-24 02:35:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:35:26.853+03	2021-05-24 02:35:26.859+03	
afda0309-4312-9eae-0735-df07f0bf932b	2021-05-24 02:35:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:35:37.852+03	2021-05-24 02:35:37.862+03	
aad97023-81be-6f41-4648-897413b4f7d7	2021-05-24 02:35:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:35:47.852+03	2021-05-24 02:35:47.859+03	
60922eaa-4310-aba0-4c73-5b0592708d96	2021-05-24 02:35:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:35:57.852+03	2021-05-24 02:35:57.859+03	
c79703e0-7295-26f0-a3d3-ee2386ae00a9	2021-05-24 02:36:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:36:07.852+03	2021-05-24 02:36:07.859+03	
691de795-2829-051a-86bd-c6c3a501a3be	2021-05-24 02:36:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:36:17.853+03	2021-05-24 02:36:17.86+03	
1dd3f1de-b8f8-9120-dd32-49eb6b5bf6a2	2021-05-24 02:36:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:36:28.852+03	2021-05-24 02:36:28.859+03	
bc79a5aa-5f69-ebe9-b247-6ccfa6a41589	2021-05-24 02:36:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:36:38.853+03	2021-05-24 02:36:38.902+03	
398295c7-9694-3b4f-96ab-cb15a3b298e8	2021-05-24 02:36:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:36:49.852+03	2021-05-24 02:36:49.859+03	
1beef449-b003-df9c-382c-2b8e114f769f	2021-05-24 02:36:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:36:59.852+03	2021-05-24 02:36:59.859+03	
1e0b850b-2f9c-85c3-cba5-2f3fe326eefe	2021-05-24 02:37:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:37:20.853+03	2021-05-24 02:37:20.861+03	
2c4d46c2-3930-73d5-65d6-3762a250a78f	2021-05-24 02:37:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:37:40.853+03	2021-05-24 02:37:40.86+03	
ccddde46-5ea8-80ce-5b03-b6fbecadffe5	2021-05-24 02:38:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:38:00.853+03	2021-05-24 02:38:00.859+03	
2e7c060a-8109-cbbe-7491-cab895fa0de8	2021-05-24 02:38:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:38:20.853+03	2021-05-24 02:38:20.86+03	
754d409a-970f-bc3d-c55a-b957b0b2b986	2021-05-24 02:38:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:38:41.852+03	2021-05-24 02:38:41.859+03	
f90f66b3-120e-a8cf-5105-f71869f65572	2021-05-24 02:39:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:39:01.854+03	2021-05-24 02:39:01.861+03	
497d932e-b254-eb31-88ed-ae59ab729a8f	2021-05-24 02:39:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:39:22.852+03	2021-05-24 02:39:22.859+03	
ff2f8e3d-fb41-8e57-48c2-9e241a4aa0f5	2021-05-24 02:39:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:39:42.852+03	2021-05-24 02:39:42.858+03	
419e01bf-d38e-7c81-2a4c-a58c973d4019	2021-05-24 02:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 02:40:00.853+03	2021-05-24 02:40:00.858+03	ERROR
f140025f-9998-07cf-1b40-b37c0f3a03bd	2021-05-24 02:40:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:40:12.853+03	2021-05-24 02:40:12.859+03	
1abc3a3d-ee9a-e29c-353e-fc496156ef2f	2021-05-24 02:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:40:33.853+03	2021-05-24 02:40:33.859+03	
48dc0d92-bb3e-844d-85b9-9d9e9674df9f	2021-05-24 02:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:40:54.852+03	2021-05-24 02:40:54.859+03	
28593053-a85c-8f1a-675f-f26b8c284a78	2021-05-24 02:41:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:41:14.852+03	2021-05-24 02:41:14.859+03	
a6876dbe-be11-9086-84e0-50bf1e529047	2021-05-24 02:41:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:41:34.853+03	2021-05-24 02:41:34.86+03	
566b984d-f710-393e-7f25-28354da7bf3a	2021-05-24 02:41:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:41:56.852+03	2021-05-24 02:41:56.858+03	
d9058fde-f361-0fef-cd8a-35145edcfd83	2021-05-24 02:42:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:42:17.852+03	2021-05-24 02:42:17.86+03	
5fc6d921-69f7-e899-9c02-d4b81bfa40a2	2021-05-24 02:42:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:42:37.853+03	2021-05-24 02:42:37.859+03	
b6f3fcd0-1c80-7f29-834c-5cc8b6709edd	2021-05-24 02:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:42:57.853+03	2021-05-24 02:42:57.863+03	
b43d1128-c20a-63f2-b013-c8f71f63b878	2021-05-24 02:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:43:18.852+03	2021-05-24 02:43:18.859+03	
a8b31787-e6dd-a3a7-e192-83498b175869	2021-05-24 02:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:43:38.852+03	2021-05-24 02:43:38.863+03	
60d589b2-b768-982e-1216-31fff8a3bf82	2021-05-24 02:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:43:58.853+03	2021-05-24 02:43:58.861+03	
11497f63-fa5e-4e83-16de-cb7087d27fc2	2021-05-24 02:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:44:19.852+03	2021-05-24 02:44:19.872+03	
9a78d310-be48-8ceb-3c60-dff65b4f822d	2021-05-24 02:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:44:39.852+03	2021-05-24 02:44:39.859+03	
b925db6d-9275-dcaf-687f-ce2c6fddd4d5	2021-05-24 02:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:44:59.853+03	2021-05-24 02:44:59.86+03	
d0641148-9722-db28-fc4b-ad7368e062ad	2021-05-24 02:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:45:20.853+03	2021-05-24 02:45:20.859+03	
d8041ec1-e9ff-23c0-f4e6-57434dfdff77	2021-05-24 02:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:45:40.853+03	2021-05-24 02:45:40.86+03	
6049280c-a696-bd27-ed0c-64c622cb947c	2021-05-24 02:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:46:01.852+03	2021-05-24 02:46:01.859+03	
b03ca4d9-7bc5-c5ef-21c3-d65616d5bba4	2021-05-24 02:46:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:46:21.853+03	2021-05-24 02:46:21.86+03	
a09ae04e-dcb7-ff34-3775-afe338f681ca	2021-05-24 02:46:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:46:41.853+03	2021-05-24 02:46:41.859+03	
4a8be906-bd91-379c-0c22-041810072737	2021-05-24 02:47:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:47:01.854+03	2021-05-24 02:47:01.86+03	
d8a88435-14ca-6cd6-4da1-86bc9ec5b084	2021-05-24 02:47:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:47:23.853+03	2021-05-24 02:47:23.859+03	
d3ee43aa-bce5-8bc3-7c11-2179122d1b59	2021-05-24 02:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:47:44.852+03	2021-05-24 02:47:44.87+03	
82f3a0f4-fce5-8d08-87be-016af664faf4	2021-05-24 02:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:48:04.853+03	2021-05-24 02:48:04.86+03	
37fba07d-434d-c224-0c7b-a0aef681ce1b	2021-05-24 02:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:48:25.852+03	2021-05-24 02:48:25.859+03	
9d64d96a-a5b5-a94e-b7c0-1d860fe06205	2021-05-24 02:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:48:45.852+03	2021-05-24 02:48:45.859+03	
ebcef536-ac26-fb4e-41cc-71b6a6d6d87f	2021-05-24 02:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:49:05.853+03	2021-05-24 02:49:05.861+03	
617e3478-5bb5-a39d-4929-18632c105aff	2021-05-24 02:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:49:25.853+03	2021-05-24 02:49:25.86+03	
40d7f3f8-904d-15b4-8921-07a717b68745	2021-05-24 02:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:49:45.853+03	2021-05-24 02:49:45.86+03	
eeeb40f6-3809-7cb1-63d2-f3180eed2cab	2021-05-24 02:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 02:50:00.853+03	2021-05-24 02:50:00.858+03	ERROR
be2b3fa1-f4ae-7418-f714-13a3e02ad25d	2021-05-24 02:50:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:50:16.852+03	2021-05-24 02:50:16.86+03	
4bedac98-c3bf-50b6-a26b-f6bf909e635b	2021-05-24 02:50:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:50:36.852+03	2021-05-24 02:50:36.859+03	
0597cd62-2683-2313-c7d1-50b3be331f99	2021-05-24 02:50:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:50:56.853+03	2021-05-24 02:50:56.861+03	
ac726a4b-3a3e-770b-3787-7f97b4f272f2	2021-05-24 02:51:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:51:16.853+03	2021-05-24 02:51:16.859+03	
0744e02d-81b2-2934-5426-ed47cfa01d33	2021-05-24 02:51:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:51:36.854+03	2021-05-24 02:51:36.86+03	
d1b191e1-8385-4a04-fe96-aff628518a0e	2021-05-24 02:51:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:51:57.853+03	2021-05-24 02:51:57.861+03	
81c59a44-95a2-0276-0be6-0459c807df37	2021-05-24 02:52:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:52:18.853+03	2021-05-24 02:52:18.866+03	
d586e648-138c-c79e-3cae-1a6657c0a2c1	2021-05-24 02:52:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:52:39.852+03	2021-05-24 02:52:39.859+03	
e65a3a89-957e-014d-ce23-74fadaf48d52	2021-05-24 02:52:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:52:59.853+03	2021-05-24 02:52:59.858+03	
4ce7446b-025f-07d8-017a-e7529b4ca079	2021-05-24 02:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:53:20.853+03	2021-05-24 02:53:20.86+03	
5be5aaef-b3e4-1d58-9967-15a4ff62068a	2021-05-24 02:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:53:40.853+03	2021-05-24 02:53:40.86+03	
5115bbf5-9e97-4d87-9968-c1e553cd46c2	2021-05-24 02:54:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:54:01.852+03	2021-05-24 02:54:01.874+03	
9a75f054-92fe-e43c-1ac0-9bd7d1733874	2021-05-24 02:54:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:54:21.853+03	2021-05-24 02:54:21.859+03	
aff077c7-005b-263b-fa63-e3f8f2f34ec5	2021-05-24 02:54:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:54:42.852+03	2021-05-24 02:54:42.859+03	
48e676bc-e3bb-73d7-52ae-7070da64977f	2021-05-24 02:55:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:55:02.853+03	2021-05-24 02:55:02.859+03	
5819d95e-60f1-3217-d949-39498b6a286a	2021-05-24 02:55:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:55:23.852+03	2021-05-24 02:55:23.859+03	
c0e551e9-3746-7871-e8ac-4dfcde83cf82	2021-05-24 02:55:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:55:43.853+03	2021-05-24 02:55:43.859+03	
392d13c2-7c66-8d6e-d89f-a90c55b22f97	2021-05-24 02:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:56:04.853+03	2021-05-24 02:56:04.862+03	
c149d9cc-db29-e5bc-fd4f-2185c7e10e86	2021-05-24 02:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:56:26.852+03	2021-05-24 02:56:26.858+03	
685c25c4-c536-1204-6739-a492c435cbf4	2021-05-24 02:56:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:56:46.854+03	2021-05-24 02:56:46.861+03	
500ffd5e-ca7d-c9d0-ff02-857fd0dca7fe	2021-05-24 02:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:57:07.853+03	2021-05-24 02:57:07.86+03	
dfa69b75-ce9a-b9b6-98e6-2c0a7a0e5d2c	2021-05-24 02:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:57:28.852+03	2021-05-24 02:57:28.859+03	
4fadf80a-24e5-9145-61b8-ed34d4665fcd	2021-05-24 02:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:57:48.852+03	2021-05-24 02:57:48.861+03	
be16ee17-fcc0-3263-e14e-e0c7e5cc145c	2021-05-24 02:37:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:37:09.853+03	2021-05-24 02:37:09.859+03	
46f3f7ff-0ace-ee21-0723-a10bbf8e520d	2021-05-24 02:37:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:37:30.853+03	2021-05-24 02:37:30.865+03	
ccc88c81-1f58-0690-16b8-8c5c023a22fa	2021-05-24 02:37:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:37:50.853+03	2021-05-24 02:37:50.86+03	
399dd2a2-0e17-61a0-4847-32a550295770	2021-05-24 02:38:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:38:10.853+03	2021-05-24 02:38:10.86+03	
b2d3fcad-06c3-7c46-0bfa-a316a975bc0e	2021-05-24 02:38:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:38:30.853+03	2021-05-24 02:38:30.861+03	
a3bf1c3a-b019-f5da-9d52-fb9b88f2c269	2021-05-24 02:38:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:38:51.853+03	2021-05-24 02:38:51.859+03	
fbe00fc9-ed00-9c75-f09b-3823d98bd70a	2021-05-24 02:39:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:39:12.852+03	2021-05-24 02:39:12.861+03	
81995cf0-501f-11e5-7ba4-5b56e3ca2ff2	2021-05-24 02:39:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:39:32.852+03	2021-05-24 02:39:32.859+03	
5270bf76-5bf2-9d21-2c0e-c94b966510d8	2021-05-24 02:39:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:39:52.852+03	2021-05-24 02:39:52.861+03	
faa5b24b-4ea9-64ad-70e9-a806ef678411	2021-05-24 02:40:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:40:02.852+03	2021-05-24 02:40:02.858+03	
7f39bb2d-8af8-3553-0780-f7ba8888d67c	2021-05-24 02:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:40:23.852+03	2021-05-24 02:40:23.859+03	
7552d6f3-afd4-768b-e48d-b7565f730baf	2021-05-24 02:40:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:40:44.852+03	2021-05-24 02:40:44.858+03	
e28aa640-417b-c27e-210b-15d5ed97edff	2021-05-24 02:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:41:04.852+03	2021-05-24 02:41:04.86+03	
f7a91dc5-d493-c3fd-15f3-47774301f0ed	2021-05-24 02:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:41:24.852+03	2021-05-24 02:41:24.86+03	
74cc4c6c-bc69-6d78-a5f2-405b9bf94d5e	2021-05-24 02:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:41:45.853+03	2021-05-24 02:41:45.859+03	
f3313840-5260-e1ec-85bc-63550460c2cb	2021-05-24 02:42:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:42:06.853+03	2021-05-24 02:42:06.859+03	
8a1d32f7-df2a-aebe-775a-06d92e8b1405	2021-05-24 02:42:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:42:27.852+03	2021-05-24 02:42:27.859+03	
2a9039cd-5f95-29fd-6ec3-1b0546c54975	2021-05-24 02:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:42:47.853+03	2021-05-24 02:42:47.859+03	
c9163832-72eb-3f04-3828-a802265a32bd	2021-05-24 02:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:43:08.852+03	2021-05-24 02:43:08.862+03	
e3486969-7e8e-70f6-aef7-8b6b64711a75	2021-05-24 02:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:43:28.852+03	2021-05-24 02:43:28.858+03	
1cf237fa-c220-fb67-c586-c5c40f3129e1	2021-05-24 02:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:43:48.852+03	2021-05-24 02:43:48.859+03	
37ad19f1-a7dc-a194-cb84-53e4eb58aa73	2021-05-24 02:44:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:44:08.853+03	2021-05-24 02:44:08.859+03	
f0f6405a-4fb7-2fe1-b7ef-f3d740b23b96	2021-05-24 02:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:44:29.852+03	2021-05-24 02:44:29.859+03	
b950aa88-81fd-d2c0-97d6-3b494d5cdc15	2021-05-24 02:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:44:49.852+03	2021-05-24 02:44:49.859+03	
8a6e37da-1345-74cd-98f6-bce19662c63c	2021-05-24 02:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:45:10.852+03	2021-05-24 02:45:10.859+03	
400dcd3e-f6d8-2aac-19ef-d3a5cb4de62c	2021-05-24 02:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:45:30.853+03	2021-05-24 02:45:30.862+03	
a013b5a5-1113-51e8-fae1-2590e0f48dd9	2021-05-24 02:45:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:45:50.853+03	2021-05-24 02:45:50.861+03	
180c32c9-fcf7-3dbe-a116-2f1d843c2a27	2021-05-24 02:46:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:46:11.852+03	2021-05-24 02:46:11.859+03	
11d036a7-b6df-8e62-d041-8327189a561d	2021-05-24 02:46:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:46:31.853+03	2021-05-24 02:46:31.862+03	
fd6a04ee-3147-7099-ca6a-df4f5e5c1afd	2021-05-24 02:46:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:46:51.853+03	2021-05-24 02:46:51.86+03	
896f0eee-f663-cc69-662c-afe4e877f5d6	2021-05-24 02:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:47:12.853+03	2021-05-24 02:47:12.858+03	
bd15d636-e0fd-893d-a0ca-48c7001ed62b	2021-05-24 02:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:47:34.852+03	2021-05-24 02:47:34.859+03	
7c936eb2-e1ff-846e-ed04-03f47240a8e9	2021-05-24 02:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:47:54.853+03	2021-05-24 02:47:54.881+03	
bb20a376-7bd4-2dd4-a679-88a675d555d5	2021-05-24 02:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:48:15.852+03	2021-05-24 02:48:15.859+03	
21404c07-e855-1d32-d55d-f9264fbf5dba	2021-05-24 02:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:48:35.852+03	2021-05-24 02:48:35.859+03	
05723042-8088-1c36-cca5-fad081de1e37	2021-05-24 02:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:48:55.853+03	2021-05-24 02:48:55.859+03	
e359a50d-6dd8-607f-6f8f-94a5fe638c01	2021-05-24 02:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:49:15.853+03	2021-05-24 02:49:15.86+03	
ca6723fb-f935-3de9-42a3-6002bc02f4f3	2021-05-24 02:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:49:35.853+03	2021-05-24 02:49:35.87+03	
57998f9a-a045-bb12-fad1-42ab5ecd04e8	2021-05-24 02:49:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:49:56.852+03	2021-05-24 02:49:56.866+03	
e041106c-d88d-3cd1-0a0c-95a89aaf3df6	2021-05-24 02:50:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:50:06.852+03	2021-05-24 02:50:06.859+03	
c2c407ad-7d5b-b71d-eb26-23f0a50df13b	2021-05-24 02:50:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:50:26.852+03	2021-05-24 02:50:26.86+03	
9b0f254f-f957-a935-5995-40c7bdc25847	2021-05-24 02:50:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:50:46.853+03	2021-05-24 02:50:46.873+03	
3d16c1a8-0af3-2252-bab9-546cd0fb4b92	2021-05-24 02:51:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:51:06.853+03	2021-05-24 02:51:06.86+03	
130208a3-cf63-c4b1-a0ff-c2c929f6f08c	2021-05-24 02:51:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:51:26.853+03	2021-05-24 02:51:26.859+03	
ab43c9c9-c08f-95a9-4a8c-c18329963066	2021-05-24 02:51:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:51:47.852+03	2021-05-24 02:51:47.859+03	
1fdc59d0-e29e-0fe8-f8ca-156ae11ea290	2021-05-24 02:52:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:52:08.852+03	2021-05-24 02:52:08.859+03	
6ed03ba2-d15a-2887-61a5-eb72be962509	2021-05-24 02:52:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:52:29.852+03	2021-05-24 02:52:29.859+03	
5453ed58-b4b8-ac75-0e59-093c09d76591	2021-05-24 02:52:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:52:49.852+03	2021-05-24 02:52:49.859+03	
1b645b1e-8785-d18f-cbb2-57177b050077	2021-05-24 02:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:53:10.853+03	2021-05-24 02:53:10.871+03	
d805c9fd-baa5-c24e-30ac-a9413b439e05	2021-05-24 02:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:53:30.853+03	2021-05-24 02:53:30.861+03	
a8c67d1b-dfed-747e-c6f3-efcfdb112e6a	2021-05-24 02:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:53:50.853+03	2021-05-24 02:53:50.881+03	
a5fea61a-5fcb-2c3a-c4bc-1f21c835daff	2021-05-24 02:54:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:54:11.853+03	2021-05-24 02:54:11.86+03	
1bbfcf68-65d9-0f26-af0b-f98d46115aea	2021-05-24 02:54:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:54:31.853+03	2021-05-24 02:54:31.864+03	
a3b202df-eb06-6193-8051-1fb28f72331a	2021-05-24 02:54:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:54:52.853+03	2021-05-24 02:54:52.86+03	
0381e2b4-dc88-4547-6b3f-df2c8ce89869	2021-05-24 02:55:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:55:12.853+03	2021-05-24 02:55:12.859+03	
0a4b2fdd-1d95-1398-5fd2-15c6523fef72	2021-05-24 02:55:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:55:33.853+03	2021-05-24 02:55:33.859+03	
5a1e65e2-71f3-6294-30ee-6661311d7a5e	2021-05-24 02:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:55:54.852+03	2021-05-24 02:55:54.865+03	
dd993b3f-1e73-3112-a088-89c0bd301ec5	2021-05-24 02:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:56:15.853+03	2021-05-24 02:56:15.858+03	
448bc6bf-fa68-3951-2fd5-23d2fd837f3b	2021-05-24 02:56:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:56:36.852+03	2021-05-24 02:56:36.859+03	
93257ee8-5ed4-da85-29c3-cf0b069ee9f0	2021-05-24 02:56:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:56:57.852+03	2021-05-24 02:56:57.859+03	
78210e0c-1e09-f8f3-9641-122ffc172355	2021-05-24 02:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:57:17.853+03	2021-05-24 02:57:17.859+03	
b623224d-d3b7-9ae3-b34d-a0c60bf9e862	2021-05-24 02:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:57:38.852+03	2021-05-24 02:57:38.861+03	
c5309960-0ac8-7cd5-7d10-16e11d5d9005	2021-05-24 02:57:58.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:57:58.859+03	2021-05-24 02:57:58.867+03	
651e9405-1a71-70d9-f7c0-dcf3d7d71476	2021-05-24 02:58:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:58:09.853+03	2021-05-24 02:58:09.859+03	
da57b9f8-6b04-f60b-8d6c-66de047c166d	2021-05-24 02:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:58:30.853+03	2021-05-24 02:58:30.858+03	
6c80e57d-03b1-b12f-19ae-e31c42c92978	2021-05-24 02:58:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:58:52.853+03	2021-05-24 02:58:52.859+03	
3d68c033-2c52-3d3e-6d42-2691921dbabf	2021-05-24 02:59:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:59:13.853+03	2021-05-24 02:59:13.859+03	
a9a35be0-d674-d75d-5988-06ac1d7926ee	2021-05-24 02:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:59:34.852+03	2021-05-24 02:59:34.859+03	
14abc8ac-1c65-9ebe-3064-e0a3e34fca98	2021-05-24 02:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:59:54.853+03	2021-05-24 02:59:54.861+03	
8cdef076-f408-e823-adcf-0410be870783	2021-05-24 03:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:00:04.853+03	2021-05-24 03:00:04.861+03	
d1a6d7a4-61d3-e576-a174-8a161cc3e64f	2021-05-24 03:00:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:00:24.853+03	2021-05-24 03:00:24.859+03	
ef7e2004-894b-1479-0f09-bcd2825cf345	2021-05-24 03:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:00:45.853+03	2021-05-24 03:00:45.859+03	
0c734e4e-fa8f-d00f-5eae-1a055029dd2d	2021-05-24 03:01:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:01:06.853+03	2021-05-24 03:01:06.859+03	
f83de47d-e486-c8cd-fcec-4dc5dac6c2ee	2021-05-24 03:01:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:01:27.853+03	2021-05-24 03:01:27.859+03	
3b8d070e-3ec3-b190-d40f-3c70fb734fa3	2021-05-24 03:01:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:01:49.852+03	2021-05-24 03:01:49.859+03	
b0d31465-0da5-7072-2eda-47780d2fdf61	2021-05-24 03:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:02:10.852+03	2021-05-24 03:02:10.859+03	
fc28e5b1-8524-0f8a-be15-e8b94a818d71	2021-05-24 03:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:02:30.853+03	2021-05-24 03:02:30.859+03	
ca27cd73-4e93-e26c-f0e3-37aaa5fdaffa	2021-05-24 03:02:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:02:51.853+03	2021-05-24 03:02:51.86+03	
8a4e3511-4fb4-ccdb-d768-0ffc10e16bde	2021-05-24 03:03:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:03:11.853+03	2021-05-24 03:03:11.861+03	
811a8c42-1657-3b75-abab-5d2c10aab4ec	2021-05-24 03:03:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:03:32.852+03	2021-05-24 03:03:32.858+03	
cb20424d-d577-25d7-3969-5f91cb4b38a5	2021-05-24 03:03:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:03:52.852+03	2021-05-24 03:03:52.86+03	
887cdb33-7203-8140-1c42-e2cb3d63b397	2021-05-24 03:04:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:04:12.852+03	2021-05-24 03:04:12.86+03	
8840b059-ff02-b764-3ebd-cb74ab57a136	2021-05-24 03:04:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:04:32.853+03	2021-05-24 03:04:32.88+03	
74bd32b8-e7a5-da23-5f64-af00785bedcd	2021-05-24 03:04:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:04:53.852+03	2021-05-24 03:04:53.861+03	
ea3ba983-93e8-3ec3-935e-1be3c73641d4	2021-05-24 03:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:05:13.852+03	2021-05-24 03:05:13.861+03	
8aa7325a-364b-25e9-04b7-61500a9c8998	2021-05-24 03:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:05:33.853+03	2021-05-24 03:05:33.859+03	
cb5d3a4b-dfaa-2f7a-baad-0f34d9b23018	2021-05-24 03:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:05:53.853+03	2021-05-24 03:05:53.859+03	
09337622-db4e-428e-2cd7-a47ca9e0f363	2021-05-24 03:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:06:14.852+03	2021-05-24 03:06:14.86+03	
418dfb7c-d79b-929e-4a46-b4efa54981b6	2021-05-24 03:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:06:34.853+03	2021-05-24 03:06:34.86+03	
ce9bc2a8-4544-7c20-a874-89add44ecdbf	2021-05-24 03:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:06:55.853+03	2021-05-24 03:06:55.859+03	
22426bb6-c268-3f24-81c8-1734a6ce2b3b	2021-05-24 03:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:07:15.853+03	2021-05-24 03:07:15.861+03	
68999f6a-52ca-6a62-06ac-5a65a67ed507	2021-05-24 03:07:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:07:36.852+03	2021-05-24 03:07:36.859+03	
f8e08558-74d5-2d8c-4f82-0c21720d6bd1	2021-05-24 03:07:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:07:56.852+03	2021-05-24 03:07:56.859+03	
eb2df621-2c5f-62cb-6e6d-a59f85999817	2021-05-24 03:08:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:08:16.853+03	2021-05-24 03:08:16.859+03	
cd6f75f5-d738-e6d2-78f1-bc804e4d8fbd	2021-05-24 03:08:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:08:36.853+03	2021-05-24 03:08:36.859+03	
aef86469-252a-d7a4-4779-297407586ec5	2021-05-24 03:08:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:08:58.852+03	2021-05-24 03:08:58.859+03	
c9ad5d32-5339-f0af-1b5e-1fa6ab0b6b3d	2021-05-24 03:09:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:09:19.852+03	2021-05-24 03:09:19.859+03	
04d77cc2-0fdf-3302-eb9c-d48e23366b66	2021-05-24 03:09:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:09:39.853+03	2021-05-24 03:09:39.859+03	
c4a17838-d04a-f1e7-1df9-c90759855495	2021-05-24 03:10:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:10:00.852+03	2021-05-24 03:10:00.86+03	
67a65eac-82f3-10d6-b038-e1f25419a7bc	2021-05-24 03:10:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:10:20.852+03	2021-05-24 03:10:20.86+03	
446d0719-aded-688b-7917-3e07f88073f2	2021-05-24 03:10:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:10:40.853+03	2021-05-24 03:10:40.861+03	
9bd237d4-f8de-b15b-5be5-dc5f97f561d5	2021-05-24 03:11:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:11:00.853+03	2021-05-24 03:11:00.862+03	
2f78a13a-4045-2ea9-39d0-bdfc39e1ef72	2021-05-24 03:11:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:11:20.853+03	2021-05-24 03:11:20.86+03	
1d6f3d4b-7f88-cc45-7e8d-0e9cb46f8fa1	2021-05-24 03:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:11:42.853+03	2021-05-24 03:11:42.859+03	
5a323dbb-5711-17c6-1d74-4141a6319a33	2021-05-24 03:12:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:12:03.852+03	2021-05-24 03:12:03.859+03	
5d58fab2-1b49-2d85-2cb7-9d6afbf28617	2021-05-24 03:12:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:12:24.852+03	2021-05-24 03:12:24.859+03	
ee1ebce8-e0ff-8cc6-daad-1f5fdd8c0942	2021-05-24 03:12:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:12:44.852+03	2021-05-24 03:12:44.859+03	
135db74e-9ea8-f556-b559-48becfe46f82	2021-05-24 03:13:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:13:04.853+03	2021-05-24 03:13:04.859+03	
b30191e6-596f-fbcb-e4fe-0d671365c034	2021-05-24 03:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:13:25.853+03	2021-05-24 03:13:25.859+03	
c493b6af-813d-1e32-c92f-94c131f08318	2021-05-24 03:13:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:13:47.852+03	2021-05-24 03:13:47.858+03	
eaeb46d8-9a41-3623-93d0-9fa28efbd062	2021-05-24 03:14:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:14:08.853+03	2021-05-24 03:14:08.879+03	
159f630c-346d-7f29-2281-f9da913ebea5	2021-05-24 03:14:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:14:29.852+03	2021-05-24 03:14:29.859+03	
3ecc2066-7373-c04b-1a65-ee095c802644	2021-05-24 03:14:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:14:49.852+03	2021-05-24 03:14:49.86+03	
186e6c0f-9f8e-19f3-5d1c-908fcdfb17b2	2021-05-24 03:15:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:15:09.852+03	2021-05-24 03:15:09.859+03	
87668246-6b12-2a71-942f-ea8f1f58c18f	2021-05-24 03:15:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:15:30.853+03	2021-05-24 03:15:30.861+03	
1a5e0528-5489-78e3-66db-1cb7520374f4	2021-05-24 03:15:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:15:50.853+03	2021-05-24 03:15:50.858+03	
2eefb4cd-77ce-1051-7154-188a194b88da	2021-05-24 03:16:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:16:11.852+03	2021-05-24 03:16:11.859+03	
228cbfd9-65c2-3e20-dcb3-64602cf371c9	2021-05-24 03:16:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:16:31.853+03	2021-05-24 03:16:31.859+03	
1b0bdf30-d995-81bb-fe24-aaed5f93183b	2021-05-24 03:16:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:16:52.853+03	2021-05-24 03:16:52.859+03	
4bc84c54-57b0-0404-5b77-3d28fc73c19f	2021-05-24 03:17:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:17:13.852+03	2021-05-24 03:17:13.859+03	
5f8528c9-866d-292f-a7cc-92ba3a7994c0	2021-05-24 03:17:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:17:33.852+03	2021-05-24 03:17:33.859+03	
f4ea3758-da62-ec7c-7cdd-ddf83e29a747	2021-05-24 03:17:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:17:53.853+03	2021-05-24 03:17:53.865+03	
60ae0172-6a30-da7a-189b-d8d784c34249	2021-05-24 03:18:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:18:14.852+03	2021-05-24 03:18:14.859+03	
4c0fecd8-ea5e-0c61-909e-41416bd77cbb	2021-05-24 03:18:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:18:34.852+03	2021-05-24 03:18:34.859+03	
460b5d94-aaf0-a944-fef4-e83bf4d43e9d	2021-05-24 03:18:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:18:54.852+03	2021-05-24 03:18:54.859+03	
31a50989-ef44-31f8-7c6f-ac8bc1984f8c	2021-05-24 03:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:19:15.852+03	2021-05-24 03:19:15.86+03	
e089a032-5a9e-3f1e-bb00-58007e4a3d2d	2021-05-24 02:58:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:58:19.853+03	2021-05-24 02:58:19.86+03	
e77c83a1-8e2b-b754-01e3-63aaa5c64553	2021-05-24 02:58:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:58:41.854+03	2021-05-24 02:58:41.859+03	
78ab1693-db8a-f280-425b-dd84cee98afd	2021-05-24 02:59:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:59:03.853+03	2021-05-24 02:59:03.86+03	
ec2e63aa-2fc5-ed4a-24b3-402329027b68	2021-05-24 02:59:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:59:23.853+03	2021-05-24 02:59:23.861+03	
abb33e34-7924-96e8-5e35-7f8a96ba461c	2021-05-24 02:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 02:59:44.852+03	2021-05-24 02:59:44.858+03	
9402167c-b2ef-80b4-bc27-9d3e7422a381	2021-05-24 03:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 03:00:00.853+03	2021-05-24 03:00:00.87+03	ERROR
7c351ef5-af22-c7de-6e74-61acf7cf3871	2021-05-24 03:00:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:00:14.853+03	2021-05-24 03:00:14.861+03	
9bb38336-8711-369d-d433-428ce88b9751	2021-05-24 03:00:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:00:34.853+03	2021-05-24 03:00:34.862+03	
23d76157-53dd-aff2-c2c2-0c86fdd9601b	2021-05-24 03:00:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:00:56.852+03	2021-05-24 03:00:56.859+03	
72b33600-8318-4139-8150-6c8797c19e95	2021-05-24 03:01:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:01:17.852+03	2021-05-24 03:01:17.859+03	
9a1ee85b-b584-d795-07e2-77a0a450a464	2021-05-24 03:01:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:01:38.853+03	2021-05-24 03:01:38.86+03	
d9ed857f-ad19-c8b0-ed68-9e5604e2de78	2021-05-24 03:01:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:01:59.853+03	2021-05-24 03:01:59.859+03	
29222421-39f0-a035-2f65-bc27bab68907	2021-05-24 03:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:02:20.852+03	2021-05-24 03:02:20.86+03	
bd618ba8-95ce-706e-1cd2-bf69faf5f90c	2021-05-24 03:02:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:02:41.852+03	2021-05-24 03:02:41.86+03	
e5e5438d-ebd5-3225-729c-bcdbba1896aa	2021-05-24 03:03:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:03:01.853+03	2021-05-24 03:03:01.862+03	
bee895ac-8055-adcd-b270-42daae04eb09	2021-05-24 03:03:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:03:22.852+03	2021-05-24 03:03:22.859+03	
79a7e692-f2d9-ab05-2f57-a9662a910308	2021-05-24 03:03:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:03:42.852+03	2021-05-24 03:03:42.859+03	
3057ebf9-5885-00c9-3931-3691bc5e0c76	2021-05-24 03:04:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:04:02.852+03	2021-05-24 03:04:02.859+03	
3b3a0adb-2b50-c5bf-0638-7042b5b28f49	2021-05-24 03:04:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:04:22.852+03	2021-05-24 03:04:22.86+03	
3d0d5566-3d0f-487d-c6fa-ae981412b5da	2021-05-24 03:04:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:04:43.852+03	2021-05-24 03:04:43.859+03	
833ec02f-9ba1-37c6-4097-e6927dffe34a	2021-05-24 03:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:05:03.852+03	2021-05-24 03:05:03.858+03	
20de6143-be01-216d-9b37-a9d1bdfc9a94	2021-05-24 03:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:05:23.853+03	2021-05-24 03:05:23.86+03	
e8820b0c-f07a-a254-030b-1e41e21251a2	2021-05-24 03:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:05:43.853+03	2021-05-24 03:05:43.86+03	
fd8c694b-9830-22eb-a636-ab2c746f7453	2021-05-24 03:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:06:03.853+03	2021-05-24 03:06:03.868+03	
04a7c73e-882e-a248-8377-3706f1168ba5	2021-05-24 03:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:06:24.852+03	2021-05-24 03:06:24.858+03	
4a9c3b1c-ca11-db74-db54-837184c8f3b6	2021-05-24 03:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:06:44.853+03	2021-05-24 03:06:44.86+03	
b0aa75bb-fb75-01a8-ca42-e170118eec8a	2021-05-24 03:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:07:05.853+03	2021-05-24 03:07:05.86+03	
b4c72027-a947-9e37-56b6-2814eed6d55e	2021-05-24 03:07:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:07:26.852+03	2021-05-24 03:07:26.859+03	
a1cbad53-cb4c-bc3e-4982-f806deee8dd1	2021-05-24 03:07:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:07:46.852+03	2021-05-24 03:07:46.859+03	
ffa8320c-f229-9d11-f3a5-74e2c607b21e	2021-05-24 03:08:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:08:06.852+03	2021-05-24 03:08:06.859+03	
e58b7c4e-6577-fdd3-7c11-b5f70d3df841	2021-05-24 03:08:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:08:26.853+03	2021-05-24 03:08:26.86+03	
7289ba4f-2fed-66d2-cbad-fd97da8d0c0d	2021-05-24 03:08:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:08:47.853+03	2021-05-24 03:08:47.858+03	
789fbfea-d16a-2cd7-1e0b-13c4d2161988	2021-05-24 03:09:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:09:08.853+03	2021-05-24 03:09:08.86+03	
eda493e4-b34a-d825-3723-38f4e68e6031	2021-05-24 03:09:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:09:29.852+03	2021-05-24 03:09:29.86+03	
46a97bc9-1377-eb21-f101-0ecd6077d4a6	2021-05-24 03:09:49.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:09:49.853+03	2021-05-24 03:09:49.859+03	
017653bd-fff0-9d94-acb2-d1959da170d2	2021-05-24 03:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 03:10:00.853+03	2021-05-24 03:10:00.869+03	ERROR
a6fff955-9d14-f281-7969-6fdefd521e1b	2021-05-24 03:10:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:10:10.852+03	2021-05-24 03:10:10.876+03	
184cf46c-425d-762b-aea6-29f71e3403e2	2021-05-24 03:10:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:10:30.853+03	2021-05-24 03:10:30.86+03	
21bf69f0-b8d8-d74a-b7fd-d7f928584ba0	2021-05-24 03:10:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:10:50.853+03	2021-05-24 03:10:50.86+03	
95ec3a12-2c6a-ea8b-ced1-6cdbd958df24	2021-05-24 03:11:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:11:10.853+03	2021-05-24 03:11:10.861+03	
814df495-2d48-dfbb-9b3c-0335e9f4c8e8	2021-05-24 03:11:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:11:31.853+03	2021-05-24 03:11:31.859+03	
ad4d0909-448f-aefd-4893-43da0ddf933c	2021-05-24 03:11:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:11:52.853+03	2021-05-24 03:11:52.861+03	
2e57d7fa-721a-b848-f9d0-a578b6c93651	2021-05-24 03:12:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:12:13.853+03	2021-05-24 03:12:13.868+03	
2fa2fafd-db30-88ff-d60e-88b98f0bb969	2021-05-24 03:12:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:12:34.852+03	2021-05-24 03:12:34.859+03	
5e9d6831-0d21-7855-181f-b2149d703053	2021-05-24 03:12:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:12:54.853+03	2021-05-24 03:12:54.859+03	
ba9b4a14-13eb-627a-c986-f045b18e105b	2021-05-24 03:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:13:15.852+03	2021-05-24 03:13:15.859+03	
d33dde85-aab2-a976-306c-10956ea2e4e3	2021-05-24 03:13:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:13:36.853+03	2021-05-24 03:13:36.86+03	
b473aa97-9120-6c16-6820-3ac486abb83e	2021-05-24 03:13:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:13:57.853+03	2021-05-24 03:13:57.86+03	
7506058a-4842-e51b-74aa-764ac88cf9c5	2021-05-24 03:14:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:14:18.853+03	2021-05-24 03:14:18.865+03	
ed467d32-d50f-64e3-bedd-903991160730	2021-05-24 03:14:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:14:39.852+03	2021-05-24 03:14:39.86+03	
8049d51c-928a-a346-5802-2934c250d7f9	2021-05-24 03:14:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:14:59.852+03	2021-05-24 03:14:59.861+03	
1a1bd17e-1679-9d3b-4d3f-5bfb325dc1fa	2021-05-24 03:15:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:15:19.853+03	2021-05-24 03:15:19.86+03	
997f132b-dd02-8d3d-9ab8-e6eac2c50457	2021-05-24 03:15:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:15:40.853+03	2021-05-24 03:15:40.86+03	
e2e2d015-a7a0-5da6-1dc9-c834341f2165	2021-05-24 03:16:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:16:00.853+03	2021-05-24 03:16:00.859+03	
ca37cf28-2275-324f-f511-2eb25046f8b0	2021-05-24 03:16:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:16:21.853+03	2021-05-24 03:16:21.866+03	
150a6848-c3c8-e0b7-5342-c7987dba768c	2021-05-24 03:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:16:42.853+03	2021-05-24 03:16:42.86+03	
997cfc76-f484-4031-1bf6-e4d49b38170f	2021-05-24 03:17:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:17:03.852+03	2021-05-24 03:17:03.859+03	
3506253b-b184-4ecc-22c6-0dc7ff8f77b8	2021-05-24 03:17:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:17:23.852+03	2021-05-24 03:17:23.858+03	
d4dd34b1-6c11-d4bd-ba9f-29fa709b82bd	2021-05-24 03:17:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:17:43.852+03	2021-05-24 03:17:43.86+03	
bc91468c-3125-5417-96d6-55e1cfae74c1	2021-05-24 03:18:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:18:04.852+03	2021-05-24 03:18:04.859+03	
203824e5-be22-3eec-7c8c-12784a197024	2021-05-24 03:18:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:18:24.852+03	2021-05-24 03:18:24.867+03	
6f6a7e36-73d2-0199-3b10-ae46e4a3dd67	2021-05-24 03:18:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:18:44.852+03	2021-05-24 03:18:44.859+03	
0c5c8457-e775-d179-d94a-a9b6da5acf06	2021-05-24 03:19:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:19:04.853+03	2021-05-24 03:19:04.86+03	
750a0eea-582a-31d4-ed91-786bb5bd7942	2021-05-24 03:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:19:25.852+03	2021-05-24 03:19:25.868+03	
337b64ee-770e-b668-b6dd-303f3fa52207	2021-05-24 03:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:19:45.853+03	2021-05-24 03:19:45.859+03	
17770808-1208-d3ab-4a87-e002325f0a8b	2021-05-24 03:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 03:20:00.853+03	2021-05-24 03:20:00.859+03	ERROR
c3e1929c-38e2-d34e-caa2-c3e7478d2206	2021-05-24 03:20:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:20:17.853+03	2021-05-24 03:20:17.86+03	
1d681548-c281-e7f2-0416-4089f309cdb2	2021-05-24 03:20:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:20:38.852+03	2021-05-24 03:20:38.859+03	
12784f54-84e3-d2ae-8704-2b03e9ed4548	2021-05-24 03:20:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:20:58.853+03	2021-05-24 03:20:58.859+03	
5288eec0-9d7e-1fc4-a78b-3bd5d5d5fa5f	2021-05-24 03:21:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:21:19.852+03	2021-05-24 03:21:19.86+03	
2b0dca4d-88b5-c858-f409-80789e8ee1c5	2021-05-24 03:21:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:21:40.853+03	2021-05-24 03:21:40.859+03	
78c8d1c1-2b2d-28c6-b157-2cb8fe5e0ad3	2021-05-24 03:22:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:22:01.852+03	2021-05-24 03:22:01.859+03	
81d7dcc9-ead1-19b9-8945-3b39f4ce3ae1	2021-05-24 03:22:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:22:21.852+03	2021-05-24 03:22:21.859+03	
47decfb2-91b3-793e-7cfe-1bc54551e9e0	2021-05-24 03:22:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:22:41.852+03	2021-05-24 03:22:41.859+03	
8c20031a-a620-69fc-8548-15d22ac2bc9a	2021-05-24 03:23:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:23:01.853+03	2021-05-24 03:23:01.859+03	
556b0400-d95e-41fc-4af5-83dd6f760d6a	2021-05-24 03:23:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:23:21.854+03	2021-05-24 03:23:21.861+03	
73b1aec2-f51d-3444-9481-ddba508e2365	2021-05-24 03:23:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:23:42.852+03	2021-05-24 03:23:42.859+03	
9c7f9149-b747-91f5-bb68-32532bc76d83	2021-05-24 03:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:24:02.853+03	2021-05-24 03:24:02.86+03	
9cf836a8-eea1-add8-b688-9d3dcdf8b55a	2021-05-24 03:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:24:23.852+03	2021-05-24 03:24:23.86+03	
b363ffbe-1744-d782-befa-c346c96327ba	2021-05-24 03:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:24:43.852+03	2021-05-24 03:24:43.859+03	
e3265c86-45a6-58f0-2b03-be57659fb122	2021-05-24 03:25:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:25:03.853+03	2021-05-24 03:25:03.866+03	
0ff339de-eb99-039c-43a6-2c75dbfba19d	2021-05-24 03:25:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:25:24.852+03	2021-05-24 03:25:24.861+03	
e194f16e-23c2-85a1-8b79-64986d0b59f3	2021-05-24 03:25:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:25:44.853+03	2021-05-24 03:25:44.859+03	
e2363a09-e46a-16f6-e1d7-668143096166	2021-05-24 03:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:26:05.852+03	2021-05-24 03:26:05.859+03	
d36a187f-42a5-d41b-3217-c792e4574218	2021-05-24 03:26:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:26:26.853+03	2021-05-24 03:26:26.859+03	
14439de4-0f0e-f2f5-82ac-8b6c927808d0	2021-05-24 03:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:26:47.853+03	2021-05-24 03:26:47.859+03	
a1b61f30-78aa-0fe5-b7d5-c64bc2dbc1e0	2021-05-24 03:27:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:27:07.853+03	2021-05-24 03:27:07.862+03	
93a3ab0d-154e-4302-3b42-649787b457d4	2021-05-24 03:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:27:28.853+03	2021-05-24 03:27:28.862+03	
3875f0f3-540e-1bb7-6c7a-bb55e15d593e	2021-05-24 03:27:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:27:49.852+03	2021-05-24 03:27:49.859+03	
44821560-f67d-b90c-9a9f-ddfdeae2271f	2021-05-24 03:28:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:28:09.852+03	2021-05-24 03:28:09.86+03	
48444897-6101-b58e-6f0d-37d16c87bd28	2021-05-24 03:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:28:30.853+03	2021-05-24 03:28:30.859+03	
252c6a49-7105-22a4-4f1b-2ee7f9afde9b	2021-05-24 03:28:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:28:50.853+03	2021-05-24 03:28:50.861+03	
924514ce-cf65-6eae-fa3b-8267044c7b2a	2021-05-24 03:29:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:29:11.852+03	2021-05-24 03:29:11.858+03	
39523c1a-2d58-fed6-95f7-a1df0c20e162	2021-05-24 03:29:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:29:31.854+03	2021-05-24 03:29:31.862+03	
59e53c7c-3042-9621-cbd2-c20403b0d8c4	2021-05-24 03:29:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:29:52.853+03	2021-05-24 03:29:52.859+03	
4f942b51-67c0-2f35-6321-94e32071498a	2021-05-24 03:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:30:03.852+03	2021-05-24 03:30:03.861+03	
0a67246b-e5eb-86da-ab52-36ae314afb9e	2021-05-24 03:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:30:23.853+03	2021-05-24 03:30:23.859+03	
2b0821ff-7739-a5c4-60af-17750c1d73ac	2021-05-24 03:30:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:30:43.853+03	2021-05-24 03:30:43.86+03	
a9db1060-5067-3b09-2357-9e9b62e782de	2021-05-24 03:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:31:03.853+03	2021-05-24 03:31:03.863+03	
63ad2d40-8fac-32ec-7caf-48e20f858951	2021-05-24 03:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:31:23.853+03	2021-05-24 03:31:23.859+03	
507f02c4-596b-f790-09c6-a4c1b980b55d	2021-05-24 03:31:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:31:44.853+03	2021-05-24 03:31:44.859+03	
ac98f6fd-cd45-07ce-16ff-76199a40e0b4	2021-05-24 03:32:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:32:04.853+03	2021-05-24 03:32:04.859+03	
222db91f-d422-e261-b219-f80d95e38039	2021-05-24 03:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:32:25.853+03	2021-05-24 03:32:25.861+03	
e687e314-5a74-592c-486c-13fb607afdbf	2021-05-24 03:32:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:32:46.853+03	2021-05-24 03:32:46.858+03	
b97c8163-3d0e-5b5f-c87d-fa5872a74fb7	2021-05-24 03:33:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:33:08.853+03	2021-05-24 03:33:08.86+03	
cf3f22d9-7b6c-e8ac-a11a-f751f953471b	2021-05-24 03:33:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:33:29.852+03	2021-05-24 03:33:29.859+03	
678bfa25-a7fc-b33a-2e7f-c876e3e090a6	2021-05-24 03:33:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:33:49.853+03	2021-05-24 03:33:49.861+03	
653419a5-fabf-7bb9-bd27-d8ce162e199a	2021-05-24 03:34:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:34:10.852+03	2021-05-24 03:34:10.859+03	
b5e2a164-3d43-5bf7-8875-7deeb270e4e0	2021-05-24 03:34:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:34:30.853+03	2021-05-24 03:34:30.859+03	
a6ee7995-eb06-7a63-f7e7-db742d2159de	2021-05-24 03:34:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:34:51.853+03	2021-05-24 03:34:51.861+03	
2cb661a1-372a-3e6d-6dba-5c29a8d52619	2021-05-24 03:35:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:35:12.853+03	2021-05-24 03:35:12.86+03	
e424b208-78e4-0c86-d972-1ddc27814f49	2021-05-24 03:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:35:33.853+03	2021-05-24 03:35:33.86+03	
568b414d-5e19-ef73-a89c-52cb1bf55131	2021-05-24 03:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:35:54.852+03	2021-05-24 03:35:54.86+03	
4364dccb-9281-00b7-36da-af02e3b87735	2021-05-24 03:36:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:36:14.852+03	2021-05-24 03:36:14.859+03	
dccca8fe-8310-81d2-964c-353dfbd12365	2021-05-24 03:36:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:36:34.853+03	2021-05-24 03:36:34.858+03	
8ef34917-b00c-97ed-751d-2b81bc08ad43	2021-05-24 03:36:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:36:54.853+03	2021-05-24 03:36:54.859+03	
9315d386-66a6-3530-6bd9-f15f0f8fd416	2021-05-24 03:37:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:37:16.854+03	2021-05-24 03:37:16.86+03	
150355a0-8a03-c1ef-c6ce-1fe2999372e2	2021-05-24 03:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:37:38.852+03	2021-05-24 03:37:38.859+03	
715626f9-678b-6eca-ab0b-ec697b4f3fb5	2021-05-24 03:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:37:58.852+03	2021-05-24 03:37:58.879+03	
81cec583-49f6-5510-1070-02a8f0292d88	2021-05-24 03:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:38:18.853+03	2021-05-24 03:38:18.86+03	
81d0b131-36fa-2a05-0e35-e5541464559f	2021-05-24 03:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:38:38.853+03	2021-05-24 03:38:38.859+03	
2b1ef857-9faa-1765-948c-55d9702d2532	2021-05-24 03:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:38:59.852+03	2021-05-24 03:38:59.859+03	
ef509792-9fb9-ce08-b050-c349e5becc83	2021-05-24 03:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:39:19.852+03	2021-05-24 03:39:19.859+03	
2fbf297f-b411-ac10-9f23-63168661f97f	2021-05-24 03:39:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:39:39.853+03	2021-05-24 03:39:39.909+03	
1071681b-5e7d-504a-fb62-2a68fa4809a8	2021-05-24 03:40:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:40:00.853+03	2021-05-24 03:40:00.86+03	
8402ce7e-ccfe-0c3d-dd04-1249d6dedd5f	2021-05-24 03:40:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:40:21.852+03	2021-05-24 03:40:21.86+03	
42d068fa-7c66-810c-79af-45a28ac93e96	2021-05-24 03:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:19:35.852+03	2021-05-24 03:19:35.862+03	
81d19cb7-c2da-b365-2884-3a4b2ed88656	2021-05-24 03:19:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:19:56.852+03	2021-05-24 03:19:56.859+03	
2dfdc8dc-b608-f0d6-630e-2a918ff28f72	2021-05-24 03:20:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:20:06.854+03	2021-05-24 03:20:06.861+03	
994c8b6f-333f-27ac-44ff-3fa600ce9289	2021-05-24 03:20:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:20:28.852+03	2021-05-24 03:20:28.859+03	
40ee3007-cd2e-821c-3fc2-f5f9bd753827	2021-05-24 03:20:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:20:48.853+03	2021-05-24 03:20:48.86+03	
2e26f8d6-e653-1486-cd81-12ee74b39adb	2021-05-24 03:21:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:21:09.852+03	2021-05-24 03:21:09.858+03	
129cc710-f916-42dc-0439-16e4c9392fa4	2021-05-24 03:21:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:21:29.853+03	2021-05-24 03:21:29.859+03	
ba0c2293-963e-cb6a-d000-878fd47b5141	2021-05-24 03:21:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:21:50.853+03	2021-05-24 03:21:50.859+03	
3374cbe6-18ac-8b96-dacb-87fa58596b10	2021-05-24 03:22:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:22:11.852+03	2021-05-24 03:22:11.859+03	
03462695-1903-da7c-7ff2-f81202909aa3	2021-05-24 03:22:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:22:31.852+03	2021-05-24 03:22:31.859+03	
308cb893-a240-b931-a1bf-52d7fb974e8d	2021-05-24 03:22:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:22:51.852+03	2021-05-24 03:22:51.86+03	
01a6a056-3082-6630-2041-015f87d609ea	2021-05-24 03:23:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:23:11.853+03	2021-05-24 03:23:11.871+03	
741acb48-ab48-c9eb-e782-7df478a60736	2021-05-24 03:23:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:23:32.852+03	2021-05-24 03:23:32.859+03	
bfb7bef4-0fbe-b651-06d4-64961b48e323	2021-05-24 03:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:23:52.852+03	2021-05-24 03:23:52.859+03	
6f776f7e-2afb-927a-2d30-d4900c0b8eb3	2021-05-24 03:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:24:13.852+03	2021-05-24 03:24:13.859+03	
5eb87108-1415-b758-b437-7d0feb5fc091	2021-05-24 03:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:24:33.852+03	2021-05-24 03:24:33.859+03	
12a4ef6a-fa6a-ad76-c8e7-aa7767c44272	2021-05-24 03:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:24:53.853+03	2021-05-24 03:24:53.859+03	
011f5432-d4e8-1d13-1b6a-36cb51c919fd	2021-05-24 03:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:25:13.853+03	2021-05-24 03:25:13.859+03	
f6b3ca50-b271-ee45-a378-9e1f00168bee	2021-05-24 03:25:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:25:34.852+03	2021-05-24 03:25:34.859+03	
e46b41c1-3121-cbce-bdb3-4ba052b42887	2021-05-24 03:25:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:25:54.853+03	2021-05-24 03:25:54.861+03	
baa47ac2-e836-53c1-8c58-f8fed68dddb9	2021-05-24 03:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:26:15.853+03	2021-05-24 03:26:15.861+03	
03b40af0-7f1f-10a2-ce98-210ba0c4dde5	2021-05-24 03:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:26:37.853+03	2021-05-24 03:26:37.859+03	
78217769-5767-32f8-4141-cb2d1c04ca8a	2021-05-24 03:26:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:26:57.853+03	2021-05-24 03:26:57.86+03	
e88d7731-d655-a08a-824b-52e1ba01a8c1	2021-05-24 03:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:27:18.853+03	2021-05-24 03:27:18.859+03	
33370f1b-8be0-2544-667d-bb7449ecba05	2021-05-24 03:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:27:38.853+03	2021-05-24 03:27:38.859+03	
32071825-9904-5b9f-ce29-3dc242af01de	2021-05-24 03:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:27:59.852+03	2021-05-24 03:27:59.859+03	
9561f0e8-f9b9-36bf-a1b3-e110be242130	2021-05-24 03:28:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:28:19.853+03	2021-05-24 03:28:19.859+03	
3dfcc80e-e306-5a2c-f145-5fc5ece0fee5	2021-05-24 03:28:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:28:40.853+03	2021-05-24 03:28:40.859+03	
272e5fb1-ea90-d3c8-9e5b-9bbd332f1616	2021-05-24 03:29:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:29:00.853+03	2021-05-24 03:29:00.859+03	
0c7674f3-99c1-7170-87ba-8b6266e9dcc1	2021-05-24 03:29:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:29:21.853+03	2021-05-24 03:29:21.86+03	
41e3db20-ea66-ac46-4ad5-55cec3bf7881	2021-05-24 03:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:29:42.853+03	2021-05-24 03:29:42.859+03	
c5409134-9092-6662-df5c-7a469afc58a8	2021-05-24 03:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 03:30:00.852+03	2021-05-24 03:30:00.857+03	ERROR
20caea21-5fb8-9063-4473-c09b64d2231b	2021-05-24 03:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:30:13.852+03	2021-05-24 03:30:13.859+03	
87c97f82-3346-749d-5761-754674fb654d	2021-05-24 03:30:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:30:33.853+03	2021-05-24 03:30:33.859+03	
4de2aa0a-7c23-01dc-367b-dcf6d0bcf28b	2021-05-24 03:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:30:53.853+03	2021-05-24 03:30:53.864+03	
3eddf340-c949-f2c2-c920-914757b31a22	2021-05-24 03:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:31:13.853+03	2021-05-24 03:31:13.86+03	
97de4ad6-e43b-b335-f434-f7f4670613ff	2021-05-24 03:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:31:33.853+03	2021-05-24 03:31:33.859+03	
bba17dd2-f679-1a7f-d9bc-2d04cea23faf	2021-05-24 03:31:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:31:54.853+03	2021-05-24 03:31:54.859+03	
b1a0e336-58fa-b72a-ea01-1221b284e4f9	2021-05-24 03:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:32:15.852+03	2021-05-24 03:32:15.859+03	
c7a5c0aa-42d0-60ba-f27b-74b7f90eac3a	2021-05-24 03:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:32:35.853+03	2021-05-24 03:32:35.859+03	
61d7f743-b11e-3bfc-1ab9-28db5cb1380e	2021-05-24 03:32:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:32:57.853+03	2021-05-24 03:32:57.858+03	
4e1e5ee2-b556-26cd-f202-5e93b36d1b00	2021-05-24 03:33:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:33:18.853+03	2021-05-24 03:33:18.863+03	
71cc9f72-1164-2b64-d9c6-381cdbdad758	2021-05-24 03:33:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:33:39.853+03	2021-05-24 03:33:39.869+03	
88aabc40-bee9-290c-537d-a3760d3867b8	2021-05-24 03:33:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:33:59.853+03	2021-05-24 03:33:59.861+03	
e907c7c4-75cf-bf4c-e09f-ee96eff8f458	2021-05-24 03:34:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:34:20.852+03	2021-05-24 03:34:20.858+03	
384dd778-92b1-57b3-4a7d-6b551a5b99d5	2021-05-24 03:34:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:34:40.853+03	2021-05-24 03:34:40.859+03	
405bd255-8a1d-9032-1ddb-8a74f123add0	2021-05-24 03:35:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:35:02.852+03	2021-05-24 03:35:02.859+03	
a328578a-180f-9db6-46b7-dd76d57636fb	2021-05-24 03:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:35:23.852+03	2021-05-24 03:35:23.86+03	
fe815cc5-057a-1859-b865-0684ef580cc2	2021-05-24 03:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:35:44.852+03	2021-05-24 03:35:44.86+03	
0d9d6dbb-ec42-e1c9-944a-97afa66e427f	2021-05-24 03:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:36:04.852+03	2021-05-24 03:36:04.859+03	
62773d38-fc7c-94db-01b1-0c7e5c8f36f8	2021-05-24 03:36:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:36:24.852+03	2021-05-24 03:36:24.858+03	
e8a024fa-77d4-fcbc-e48e-3cbb3e19e471	2021-05-24 03:36:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:36:44.853+03	2021-05-24 03:36:44.866+03	
720116d9-8250-c052-2486-82b9593168ef	2021-05-24 03:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:37:05.853+03	2021-05-24 03:37:05.859+03	
62416120-143b-9d8b-55a3-faf22bfe81a1	2021-05-24 03:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:37:27.853+03	2021-05-24 03:37:27.86+03	
5cf0ce25-57a2-3489-47f4-8c6cbbe6cb28	2021-05-24 03:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:37:48.852+03	2021-05-24 03:37:48.858+03	
524f0366-0642-7c9d-6880-0d46d2ba1dd0	2021-05-24 03:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:38:08.852+03	2021-05-24 03:38:08.86+03	
b64319b5-067a-bee3-dc12-3c7f0aa77a0a	2021-05-24 03:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:38:28.853+03	2021-05-24 03:38:28.859+03	
dcd20d2f-335e-4e1c-7327-f30c2e5c8890	2021-05-24 03:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:38:48.853+03	2021-05-24 03:38:48.866+03	
191bdc9a-67a6-d9fe-2d98-e8b436deef35	2021-05-24 03:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:39:09.852+03	2021-05-24 03:39:09.86+03	
992eab8f-24f1-3b09-083c-1d2dd90110fd	2021-05-24 03:39:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:39:29.852+03	2021-05-24 03:39:29.86+03	
a2911604-2ada-cac9-9027-3f0c010d20a0	2021-05-24 03:39:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:39:50.852+03	2021-05-24 03:39:50.859+03	
aca990a9-dd2a-c723-8b8a-73f21d23c5af	2021-05-24 03:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 03:40:00.853+03	2021-05-24 03:40:00.869+03	ERROR
15aea448-93fe-0c59-005f-526a41dab6a4	2021-05-24 03:40:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:40:11.852+03	2021-05-24 03:40:11.859+03	
f0a837a5-8aae-bd62-76d0-4a3ee7bf4932	2021-05-24 03:40:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:40:31.853+03	2021-05-24 03:40:31.86+03	
d3bc2d00-9415-6cac-cae5-46c6978b53e3	2021-05-24 03:40:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:40:52.853+03	2021-05-24 03:40:52.86+03	
7409fe94-a72d-ad34-80cb-07e2d458fd85	2021-05-24 03:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:41:13.853+03	2021-05-24 03:41:13.859+03	
8cffd712-f34a-0ffa-3764-7889cc699ecc	2021-05-24 03:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:41:35.852+03	2021-05-24 03:41:35.859+03	
27fab82b-18bd-9f41-2ca6-94bc0a8fd439	2021-05-24 03:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:41:55.853+03	2021-05-24 03:41:55.86+03	
0d801bfc-dd92-bfe9-c068-97b3a02ed7ce	2021-05-24 03:42:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:42:16.852+03	2021-05-24 03:42:16.86+03	
6fd003c5-ec7d-dc42-97d6-4849d4f88ac5	2021-05-24 03:42:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:42:36.853+03	2021-05-24 03:42:36.859+03	
981a8c5e-62de-92cb-b434-8c8dae40bfa8	2021-05-24 03:42:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:42:57.853+03	2021-05-24 03:42:57.861+03	
ade94023-5abf-8a5f-57cf-c5df80d8564f	2021-05-24 03:43:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:43:17.853+03	2021-05-24 03:43:17.86+03	
ebf43adc-19b7-9842-6e00-29503dc8b026	2021-05-24 03:43:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:43:38.852+03	2021-05-24 03:43:38.859+03	
6cd31c96-5712-bfd2-c313-575c65c451c8	2021-05-24 03:43:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:43:58.853+03	2021-05-24 03:43:58.86+03	
58034796-e5c7-81fd-2651-5e71e29b9219	2021-05-24 03:44:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:44:20.852+03	2021-05-24 03:44:20.861+03	
54a4bc11-8ebd-bfc2-b946-647805ae8480	2021-05-24 03:44:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:44:40.852+03	2021-05-24 03:44:40.859+03	
5b7cc9e6-9a28-501b-1dbc-121f5a0fddf1	2021-05-24 03:45:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:45:00.852+03	2021-05-24 03:45:00.858+03	
a31c8612-29d2-cb35-4a33-7fa5af579f97	2021-05-24 03:45:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:45:20.853+03	2021-05-24 03:45:20.859+03	
147bdbd6-4cea-c6c9-a0f8-b1632a6f2d36	2021-05-24 03:45:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:45:40.853+03	2021-05-24 03:45:40.86+03	
4e93418e-306b-0c51-9dd1-0e21463601ad	2021-05-24 03:46:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:46:01.852+03	2021-05-24 03:46:01.859+03	
73e03ba3-dad8-9181-8011-4c05fbbaef36	2021-05-24 03:46:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:46:21.853+03	2021-05-24 03:46:21.86+03	
f0894485-a5ec-e5e9-7b31-a023369a81b0	2021-05-24 03:46:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:46:41.854+03	2021-05-24 03:46:41.86+03	
9e456d82-ddeb-61b9-c6d9-0bbd36f4f4a7	2021-05-24 03:47:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:47:01.854+03	2021-05-24 03:47:01.86+03	
98208d65-cfdb-cfb7-f801-27def88247a2	2021-05-24 03:47:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:47:22.852+03	2021-05-24 03:47:22.859+03	
6be5f7a3-6349-5ad8-246b-7344b6e0cc38	2021-05-24 03:47:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:47:42.853+03	2021-05-24 03:47:42.858+03	
428fe0dd-bf2b-8770-f309-580fcee8fd67	2021-05-24 03:48:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:48:03.853+03	2021-05-24 03:48:03.859+03	
8c47dd0d-d7c7-b064-bb9a-64bcec134ea8	2021-05-24 03:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:48:24.853+03	2021-05-24 03:48:24.859+03	
b6617f40-51e9-762a-e6c5-0370aeb04255	2021-05-24 03:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:48:45.853+03	2021-05-24 03:48:45.859+03	
d15f3bcd-b059-c0c7-90ff-a71c591349ae	2021-05-24 03:49:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:49:06.852+03	2021-05-24 03:49:06.86+03	
df7c46cb-4b60-8499-2299-ab0b1095ef71	2021-05-24 03:49:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:49:26.852+03	2021-05-24 03:49:26.86+03	
405d0d5d-4391-9021-e852-e4a4b215f011	2021-05-24 03:49:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:49:46.852+03	2021-05-24 03:49:46.859+03	
2639d099-c714-c530-469d-e4b9e5fabb3f	2021-05-24 03:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 03:50:00.852+03	2021-05-24 03:50:00.857+03	ERROR
6d31fbb6-42f3-ef5f-c7e6-b6285fa843e4	2021-05-24 03:50:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:50:17.852+03	2021-05-24 03:50:17.859+03	
e7c3a784-20c3-d7d1-a456-a1df47cf8636	2021-05-24 03:50:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:50:37.852+03	2021-05-24 03:50:37.859+03	
dc46c5e7-0ce9-cfe0-a39c-f8610bc40739	2021-05-24 03:50:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:50:57.853+03	2021-05-24 03:50:57.86+03	
4425257f-f20a-5679-8379-3ab8f1f19a87	2021-05-24 03:51:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:51:18.852+03	2021-05-24 03:51:18.859+03	
76f92914-047a-7a1d-3214-996c1ac1b0c3	2021-05-24 03:51:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:51:38.853+03	2021-05-24 03:51:38.863+03	
af55ccd4-22f3-f30c-9d55-1ff788b3779b	2021-05-24 03:51:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:51:59.853+03	2021-05-24 03:51:59.86+03	
1307d322-bfa2-8f16-2f16-fefac48162de	2021-05-24 03:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:52:20.853+03	2021-05-24 03:52:20.861+03	
78c2c41a-b611-2351-dbf8-74f56f4add88	2021-05-24 03:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:52:40.853+03	2021-05-24 03:52:40.861+03	
0ccc3589-2a78-5253-ecb5-9a7b0020e8cf	2021-05-24 03:53:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:53:02.852+03	2021-05-24 03:53:02.859+03	
32b82cf7-2281-c5ca-3fbf-1df1cd2a3924	2021-05-24 03:53:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:53:22.853+03	2021-05-24 03:53:22.86+03	
4443f691-5883-4c36-d557-2b4ba4399b3f	2021-05-24 03:53:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:53:42.853+03	2021-05-24 03:53:42.859+03	
c8d08a85-69e5-1561-b94d-9fb3d08e995c	2021-05-24 03:54:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:54:03.852+03	2021-05-24 03:54:03.86+03	
754807a2-ff40-77f6-054e-a7e926aaae05	2021-05-24 03:54:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:54:23.852+03	2021-05-24 03:54:23.858+03	
db2ec0f6-9524-6eab-613d-4304b381b1cd	2021-05-24 03:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:54:44.853+03	2021-05-24 03:54:44.859+03	
35818381-534f-3a4d-cb34-421e0f991840	2021-05-24 03:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:55:04.853+03	2021-05-24 03:55:04.86+03	
f5431504-b31d-9beb-5b8f-09bfc72a8201	2021-05-24 03:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:55:25.852+03	2021-05-24 03:55:25.865+03	
c4cd002f-09af-699d-476a-72585e6efd25	2021-05-24 03:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:55:45.853+03	2021-05-24 03:55:45.86+03	
9d308edb-fe24-9202-cdf9-9cb11c45adb3	2021-05-24 03:56:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:56:06.852+03	2021-05-24 03:56:06.859+03	
d226765b-1a5b-aff9-40b3-6ecd8d116af5	2021-05-24 03:56:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:56:26.852+03	2021-05-24 03:56:26.861+03	
31bca424-8510-c17e-b755-016e096d373d	2021-05-24 03:56:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:56:46.852+03	2021-05-24 03:56:46.859+03	
1a2e4e51-91b9-afbc-40db-fccf9d406349	2021-05-24 03:57:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:57:07.853+03	2021-05-24 03:57:07.859+03	
0c837c13-5374-01b4-0b5d-60a18b735f2f	2021-05-24 03:57:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:57:28.853+03	2021-05-24 03:57:28.859+03	
a88c4140-ca3f-8382-466e-919d90430f07	2021-05-24 03:57:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:57:48.853+03	2021-05-24 03:57:48.859+03	
30b84a72-1c73-c480-a6c6-2aa4b0cdc0e9	2021-05-24 03:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:58:10.852+03	2021-05-24 03:58:10.86+03	
a99f783b-e109-01e7-4608-3ee9c36db4d8	2021-05-24 03:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:58:30.853+03	2021-05-24 03:58:30.86+03	
a0d554b2-d0b6-c9fb-582c-8403a57b523a	2021-05-24 03:58:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:58:51.854+03	2021-05-24 03:58:51.86+03	
48fe4f76-a38e-46ab-a36e-af98d2bfe79f	2021-05-24 03:59:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:59:12.853+03	2021-05-24 03:59:12.866+03	
df2230fb-0309-4ccb-b369-a815dde19ce1	2021-05-24 03:59:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:59:32.853+03	2021-05-24 03:59:32.86+03	
88e93739-7ad2-ae02-2bf7-b03b50151019	2021-05-24 03:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:59:54.853+03	2021-05-24 03:59:54.86+03	
fa33335b-8f66-b252-906e-aebba03e6573	2021-05-24 04:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:00:05.852+03	2021-05-24 04:00:05.87+03	
dae91fdd-5bd8-85a1-a42a-cd08ac44b2b9	2021-05-24 04:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:00:25.852+03	2021-05-24 04:00:25.859+03	
011b6188-859e-2386-d9ae-137bb7d69f51	2021-05-24 04:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:00:45.853+03	2021-05-24 04:00:45.859+03	
d1323cd5-6954-3b05-6fbc-cd3904596c9c	2021-05-24 04:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:01:05.853+03	2021-05-24 04:01:05.861+03	
17b21743-c586-8bde-d1c0-d1bcd3660fee	2021-05-24 04:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:01:25.853+03	2021-05-24 04:01:25.859+03	
fd3f0619-6f73-27bc-61c4-13c7669f9d8b	2021-05-24 03:40:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:40:41.854+03	2021-05-24 03:40:41.862+03	
13dfc54a-f326-7230-b3a1-ef7789948abc	2021-05-24 03:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:41:03.853+03	2021-05-24 03:41:03.86+03	
6e7562b5-9551-9a5f-ed1a-7bf28209eb74	2021-05-24 03:41:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:41:24.853+03	2021-05-24 03:41:24.859+03	
ef530105-aabc-14da-63fc-5e8b8aa232c1	2021-05-24 03:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:41:45.852+03	2021-05-24 03:41:45.859+03	
bcaf5505-4f12-7c73-f839-0fcfcb3ef568	2021-05-24 03:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:42:05.853+03	2021-05-24 03:42:05.86+03	
15141a24-04d2-119a-25de-d4c229e58b2e	2021-05-24 03:42:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:42:26.853+03	2021-05-24 03:42:26.862+03	
34445a66-829e-a1e2-076d-303a16b5244f	2021-05-24 03:42:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:42:47.853+03	2021-05-24 03:42:47.861+03	
c956567b-1fc5-954d-78e4-c99ffde5023b	2021-05-24 03:43:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:43:07.853+03	2021-05-24 03:43:07.86+03	
cdc2490f-132d-a7c3-e6c4-db2db6f0f808	2021-05-24 03:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:43:28.852+03	2021-05-24 03:43:28.859+03	
6ad1a074-2ed6-0a22-17a9-7ea4290b8169	2021-05-24 03:43:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:43:48.852+03	2021-05-24 03:43:48.859+03	
4884bd89-67d1-c9e4-e18d-e23157ce170c	2021-05-24 03:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:44:09.853+03	2021-05-24 03:44:09.86+03	
4dad1f0a-d2e0-56d0-d884-3fcf00dfe2d7	2021-05-24 03:44:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:44:30.852+03	2021-05-24 03:44:30.86+03	
e8c1f05d-7be3-8766-3ba7-f8b27c29c6c5	2021-05-24 03:44:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:44:50.852+03	2021-05-24 03:44:50.859+03	
ce2902d0-3529-2d4a-fba3-b6007fc4a3c1	2021-05-24 03:45:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:45:10.852+03	2021-05-24 03:45:10.86+03	
f13f2386-f4be-0bd9-d84a-07b167bd0651	2021-05-24 03:45:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:45:30.853+03	2021-05-24 03:45:30.859+03	
f3461659-c664-38dc-e00c-d6fe3b503670	2021-05-24 03:45:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:45:51.852+03	2021-05-24 03:45:51.86+03	
e0bc42ba-ccbc-c760-9c50-be3c3e993c9c	2021-05-24 03:46:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:46:11.852+03	2021-05-24 03:46:11.86+03	
17d93046-d6d6-d6e0-3856-50c1c96cf504	2021-05-24 03:46:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:46:31.853+03	2021-05-24 03:46:31.859+03	
abe77aa7-98f4-b07e-bc7b-f563dc131fc6	2021-05-24 03:46:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:46:51.854+03	2021-05-24 03:46:51.861+03	
e17cb166-55e9-21f1-6ed7-862c9ac92174	2021-05-24 03:47:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:47:12.852+03	2021-05-24 03:47:12.859+03	
c6d3ab54-7f14-3483-8efb-b826c01bd168	2021-05-24 03:47:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:47:32.853+03	2021-05-24 03:47:32.859+03	
67949d34-37c9-82e0-7ff0-954da7941043	2021-05-24 03:47:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:47:53.853+03	2021-05-24 03:47:53.859+03	
b5a40a29-a1af-b964-3205-2ee1825378c3	2021-05-24 03:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:48:14.853+03	2021-05-24 03:48:14.859+03	
828146a3-bb52-cefc-3d83-ca239ec8575b	2021-05-24 03:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:48:35.853+03	2021-05-24 03:48:35.863+03	
8bfbd49b-4dd8-d922-eea8-51bf5d17e5b9	2021-05-24 03:48:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:48:56.852+03	2021-05-24 03:48:56.875+03	
066f8981-a6fb-a1cb-ae34-7fdaed9ddb12	2021-05-24 03:49:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:49:16.852+03	2021-05-24 03:49:16.86+03	
5e5fb739-1b49-123d-d8c4-c4e5aa370cc1	2021-05-24 03:49:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:49:36.852+03	2021-05-24 03:49:36.86+03	
abc2e8d2-cbd5-f9a0-6314-17ed457148b0	2021-05-24 03:49:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:49:56.852+03	2021-05-24 03:49:56.86+03	
65bbb0e4-f275-3701-472a-9e79f1f1a5f1	2021-05-24 03:50:06.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:50:06.854+03	2021-05-24 03:50:06.861+03	
535627df-6644-7cf3-827c-f1c8f1abbaf2	2021-05-24 03:50:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:50:27.852+03	2021-05-24 03:50:27.858+03	
63365a4d-57bc-3fd1-7624-fe58726cff28	2021-05-24 03:50:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:50:47.853+03	2021-05-24 03:50:47.86+03	
9a221198-c316-ce91-7867-0e886f4bcd1b	2021-05-24 03:51:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:51:07.853+03	2021-05-24 03:51:07.86+03	
de56799d-b356-301f-567d-1000788e7163	2021-05-24 03:51:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:51:28.852+03	2021-05-24 03:51:28.875+03	
4414a770-ca39-585f-0e62-71cfe4956b8d	2021-05-24 03:51:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:51:49.852+03	2021-05-24 03:51:49.861+03	
7726a693-b02b-f717-4810-2e622d689bad	2021-05-24 03:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:52:10.852+03	2021-05-24 03:52:10.861+03	
de3a98a8-65fc-6c10-da29-738a00baa864	2021-05-24 03:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:52:30.853+03	2021-05-24 03:52:30.86+03	
1706882f-5f2d-08c6-8ddc-e4b70b4fcecc	2021-05-24 03:52:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:52:51.853+03	2021-05-24 03:52:51.862+03	
a22be336-ee46-5040-6259-0351e37277cd	2021-05-24 03:53:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:53:12.853+03	2021-05-24 03:53:12.859+03	
6a9f83c0-62c1-f2b9-788d-a190fa5d1b96	2021-05-24 03:53:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:53:32.853+03	2021-05-24 03:53:32.859+03	
c80b4a40-fc4c-e298-7e99-55db4059b219	2021-05-24 03:53:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:53:52.853+03	2021-05-24 03:53:52.863+03	
aa0baf9f-49b8-130d-3129-9bb5abfdf5a2	2021-05-24 03:54:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:54:13.852+03	2021-05-24 03:54:13.858+03	
089b2ff1-e19c-bb90-513d-bdcb774901be	2021-05-24 03:54:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:54:33.853+03	2021-05-24 03:54:33.86+03	
1ba7fe06-6f37-79b3-cc6e-c7577c6bfa91	2021-05-24 03:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:54:54.853+03	2021-05-24 03:54:54.859+03	
993296f4-74fe-76a5-8628-543665606473	2021-05-24 03:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:55:14.853+03	2021-05-24 03:55:14.862+03	
f122b695-be58-c53c-487e-330b0f7cdd19	2021-05-24 03:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:55:35.852+03	2021-05-24 03:55:35.859+03	
c71ad7c2-69a8-798f-4a6f-7e3d07667d8a	2021-05-24 03:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:55:55.853+03	2021-05-24 03:55:55.862+03	
60edd8df-35e3-94b2-fce3-bc737da27c14	2021-05-24 03:56:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:56:16.852+03	2021-05-24 03:56:16.859+03	
c6731e68-fc96-87a4-182d-be32d5a87db9	2021-05-24 03:56:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:56:36.852+03	2021-05-24 03:56:36.859+03	
0f1549de-29d2-3983-963a-0d571d133115	2021-05-24 03:56:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:56:56.853+03	2021-05-24 03:56:56.859+03	
ccf22a5b-7eea-6e4f-a14f-c00c7ae0b3fe	2021-05-24 03:57:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:57:17.853+03	2021-05-24 03:57:17.859+03	
bc288bfb-3a91-ed1c-a9e6-d57fa0721e35	2021-05-24 03:57:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:57:38.853+03	2021-05-24 03:57:38.86+03	
2895b8c4-d4b0-6301-ec8c-209bf49fd56e	2021-05-24 03:57:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:57:59.853+03	2021-05-24 03:57:59.859+03	
c0692b3c-e688-0d00-1349-47b6165c236a	2021-05-24 03:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:58:20.853+03	2021-05-24 03:58:20.861+03	
019c007c-136d-45ae-3adf-4cb03e0ee544	2021-05-24 03:58:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:58:40.853+03	2021-05-24 03:58:40.867+03	
6b4ed163-6f5d-a7ab-0de0-a808832fbc27	2021-05-24 03:59:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:59:02.853+03	2021-05-24 03:59:02.859+03	
8ada539b-f093-4ef4-8d72-2224385b520e	2021-05-24 03:59:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:59:22.853+03	2021-05-24 03:59:22.862+03	
ef70ebfd-e127-5128-ebf8-19033634b838	2021-05-24 03:59:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 03:59:43.853+03	2021-05-24 03:59:43.859+03	
567f3307-a057-d961-383a-fd5e8edb45cb	2021-05-24 04:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 04:00:00.853+03	2021-05-24 04:00:00.877+03	ERROR
51bf6b82-2aaf-23f5-604e-7fa7c1b93c6e	2021-05-24 04:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:00:15.852+03	2021-05-24 04:00:15.86+03	
c43be0b2-4552-3575-a792-c04dfc7488ca	2021-05-24 04:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:00:35.852+03	2021-05-24 04:00:35.86+03	
b1af7f45-b9e8-c0c2-6831-28b527e6e783	2021-05-24 04:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:00:55.853+03	2021-05-24 04:00:55.859+03	
9fcc39f2-54d4-9846-224c-7fb717bc6fe2	2021-05-24 04:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:01:15.853+03	2021-05-24 04:01:15.866+03	
d27018be-4c05-2d68-8860-d18ce7221547	2021-05-24 04:01:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:01:36.852+03	2021-05-24 04:01:36.859+03	
ba4a2c8a-cd44-fcae-6539-1a75eb65acf7	2021-05-24 04:01:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:01:46.852+03	2021-05-24 04:01:46.863+03	
0f12b4a6-9c94-bf38-e624-1b273df106c4	2021-05-24 04:02:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:02:06.853+03	2021-05-24 04:02:06.859+03	
58d8fc5e-5f9e-fa80-cf86-01902b76685b	2021-05-24 04:02:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:02:27.853+03	2021-05-24 04:02:27.862+03	
b6956d54-a2ef-32ed-d640-7720ecf98a2d	2021-05-24 04:02:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:02:48.852+03	2021-05-24 04:02:48.859+03	
5371834a-5083-5dee-e992-355281a75207	2021-05-24 04:03:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:03:08.853+03	2021-05-24 04:03:08.862+03	
94b3a2c1-d4ba-97ce-cccc-b92bd36545ab	2021-05-24 04:03:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:03:29.853+03	2021-05-24 04:03:29.86+03	
e61cce91-3ec4-c01d-0e23-051b838a7fe0	2021-05-24 04:03:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:03:49.853+03	2021-05-24 04:03:49.859+03	
d177e6fc-5c58-475d-2daf-71324e5a5cb7	2021-05-24 04:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:04:10.853+03	2021-05-24 04:04:10.861+03	
6e7fed7c-cbc9-2425-6163-6736d3ce1121	2021-05-24 04:04:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:04:31.853+03	2021-05-24 04:04:31.859+03	
589152cc-1478-5c8a-1d4f-d9b5cd05b37f	2021-05-24 04:04:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:04:52.853+03	2021-05-24 04:04:52.859+03	
2f691d1a-4e21-a32f-1768-21c194ea2c1f	2021-05-24 04:05:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:05:13.852+03	2021-05-24 04:05:13.858+03	
00e7ec1c-f7d4-d85c-9dff-e93ed483f8e9	2021-05-24 04:05:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:05:33.852+03	2021-05-24 04:05:33.869+03	
b2abf45d-0766-72da-e524-0c8009ef2629	2021-05-24 04:05:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:05:53.852+03	2021-05-24 04:05:53.859+03	
fcca3649-6dda-d4d2-3521-976ee4a2502a	2021-05-24 04:06:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:06:13.852+03	2021-05-24 04:06:13.859+03	
25c62cbb-88f3-39a7-80a3-fb613a1518c9	2021-05-24 04:06:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:06:33.853+03	2021-05-24 04:06:33.858+03	
96e096ab-a848-6578-7309-2377dd879755	2021-05-24 04:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:06:54.852+03	2021-05-24 04:06:54.858+03	
a6e24d60-f8e7-5a66-a7ef-778984115b9b	2021-05-24 04:07:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:07:14.853+03	2021-05-24 04:07:14.859+03	
5fff187b-4e9e-2e14-6441-73523d88c5fc	2021-05-24 04:07:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:07:34.853+03	2021-05-24 04:07:34.859+03	
758ce56b-b63f-4a13-eefc-119603f21d9c	2021-05-24 04:07:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:07:54.853+03	2021-05-24 04:07:54.859+03	
2aadd697-b1ac-7dc9-b405-6cfe4e4841ca	2021-05-24 04:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:08:15.852+03	2021-05-24 04:08:15.859+03	
e3f9e147-8d0d-8cd1-91d7-8ef49671d631	2021-05-24 04:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:08:35.853+03	2021-05-24 04:08:35.859+03	
f5a9f926-a1c3-102b-627e-b432d75239d1	2021-05-24 04:08:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:08:56.852+03	2021-05-24 04:08:56.859+03	
700aff53-406a-2ae4-e16a-349dd11da29d	2021-05-24 04:09:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:09:16.852+03	2021-05-24 04:09:16.859+03	
43cb1775-8468-19d3-1117-2b6f6e8bbc64	2021-05-24 04:09:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:09:36.852+03	2021-05-24 04:09:36.859+03	
73c2bc37-9e93-7ffa-56a2-94a27e06b3c0	2021-05-24 04:09:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:09:56.854+03	2021-05-24 04:09:56.861+03	
e79cf107-b6c6-a14f-fb09-d0d4c1f1714e	2021-05-24 04:10:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:10:07.852+03	2021-05-24 04:10:07.858+03	
595594c6-adad-b545-217d-926292732ee8	2021-05-24 04:10:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:10:27.853+03	2021-05-24 04:10:27.859+03	
ca9228bf-efa0-7ab9-7ef2-8a138c3aef44	2021-05-24 04:10:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:10:48.852+03	2021-05-24 04:10:48.859+03	
4608d051-0788-1cba-f4e2-758b21b79c69	2021-05-24 04:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:11:08.853+03	2021-05-24 04:11:08.859+03	
e857cd85-4888-a959-1524-cb0eccebdc1d	2021-05-24 04:11:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:11:29.853+03	2021-05-24 04:11:29.86+03	
5fb93d30-3c3c-54d3-2be8-50146c1f1ee9	2021-05-24 04:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:11:49.853+03	2021-05-24 04:11:49.859+03	
20d82d44-4948-ee24-299a-40a75e57a7c0	2021-05-24 04:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:12:10.853+03	2021-05-24 04:12:10.862+03	
0b6a4e80-40de-2f62-283b-3cbddd9f4965	2021-05-24 04:12:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:12:30.853+03	2021-05-24 04:12:30.86+03	
41d4552a-910a-3742-1544-d006504e86a2	2021-05-24 04:12:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:12:51.853+03	2021-05-24 04:12:51.859+03	
24ba4ada-6959-9872-65f8-1c2308ad5388	2021-05-24 04:13:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:13:11.853+03	2021-05-24 04:13:11.86+03	
e75e91f8-a9e6-2aac-de60-7afa4ac0cecf	2021-05-24 04:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:13:33.852+03	2021-05-24 04:13:33.858+03	
69a5692f-51e8-00f6-6453-d4020d1d4dfb	2021-05-24 04:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:13:54.852+03	2021-05-24 04:13:54.876+03	
281ca186-7a81-e835-de2d-5763c4c69331	2021-05-24 04:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:14:15.853+03	2021-05-24 04:14:15.86+03	
c3197733-353b-2311-59df-007eeaa1a0fe	2021-05-24 04:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:14:35.853+03	2021-05-24 04:14:35.861+03	
96a17a67-b067-64e9-bfe6-99600c4df0e2	2021-05-24 04:14:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:14:56.852+03	2021-05-24 04:14:56.859+03	
1adb34b7-4b15-d6f8-df4a-5a4f419afcb9	2021-05-24 04:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:15:16.853+03	2021-05-24 04:15:16.863+03	
1191b08b-5581-c1cf-7ad9-996034a58b65	2021-05-24 04:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:15:37.852+03	2021-05-24 04:15:37.866+03	
344754d4-d523-bbf9-4946-e155d0480913	2021-05-24 04:15:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:15:57.853+03	2021-05-24 04:15:57.862+03	
c7f3be1a-b706-6b8e-0b92-5a44f2425d7f	2021-05-24 04:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:16:18.853+03	2021-05-24 04:16:18.869+03	
3700fc6c-c6e1-df69-7c25-9954a68573c2	2021-05-24 04:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:16:39.853+03	2021-05-24 04:16:39.874+03	
2e2f6c4f-74f2-6926-8dd0-a808436b44ca	2021-05-24 04:16:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:16:59.853+03	2021-05-24 04:16:59.859+03	
0d8a7780-32f5-b151-b9f3-480575039dc8	2021-05-24 04:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:17:20.852+03	2021-05-24 04:17:20.86+03	
ccea57c7-01c7-fb11-7847-0e5f33a298cc	2021-05-24 04:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:17:40.853+03	2021-05-24 04:17:40.861+03	
e01ce7a9-1168-cf83-241a-d9f4c94ddb9c	2021-05-24 04:18:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:18:01.852+03	2021-05-24 04:18:01.861+03	
4f24b6fc-f92d-6f13-cab6-c358632f9573	2021-05-24 04:18:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:18:21.852+03	2021-05-24 04:18:21.871+03	
26c397dc-b895-6d8d-d9f9-32499b944978	2021-05-24 04:18:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:18:41.852+03	2021-05-24 04:18:41.859+03	
3f28bfed-a0bb-aee5-a724-336e39df933a	2021-05-24 04:19:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:19:01.854+03	2021-05-24 04:19:01.861+03	
ea6f0209-9fcb-2fff-761a-bf3755c7d9e9	2021-05-24 04:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:19:22.853+03	2021-05-24 04:19:22.859+03	
53046a51-3d65-8057-391c-4ff3624c89c3	2021-05-24 04:19:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:19:44.853+03	2021-05-24 04:19:44.858+03	
6c531dec-e080-6b45-0cf2-d85e51bbe2db	2021-05-24 04:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 04:20:00.853+03	2021-05-24 04:20:00.86+03	ERROR
1daad6d2-99bc-0ed2-9ff8-489c18278d57	2021-05-24 04:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:20:15.853+03	2021-05-24 04:20:15.859+03	
561e114c-2280-f82b-64b5-bc14c7306999	2021-05-24 04:20:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:20:36.852+03	2021-05-24 04:20:36.86+03	
a9e9dd62-7ecb-1571-bf6b-d9c7651aefdb	2021-05-24 04:20:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:20:56.852+03	2021-05-24 04:20:56.859+03	
a64eaa58-08bb-8ee2-9694-f9162e4c459f	2021-05-24 04:21:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:21:16.853+03	2021-05-24 04:21:16.861+03	
39c20cda-74ce-3062-cb6d-c548ced5babf	2021-05-24 04:21:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:21:37.853+03	2021-05-24 04:21:37.874+03	
f4b1d790-c270-faa3-cf11-5dbe2cc6f940	2021-05-24 04:21:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:21:58.852+03	2021-05-24 04:21:58.859+03	
735393ce-0296-46f5-3cef-27be2cab3d3e	2021-05-24 04:22:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:22:19.853+03	2021-05-24 04:22:19.86+03	
bd4912f3-c70c-d0ff-0dba-111be42f2585	2021-05-24 04:22:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:22:40.852+03	2021-05-24 04:22:40.874+03	
f80a124e-e361-f7e4-3448-4206ea3c1501	2021-05-24 04:01:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:01:56.853+03	2021-05-24 04:01:56.86+03	
0c7d9204-02a5-a6d1-ff24-784fbb889dca	2021-05-24 04:02:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:02:17.853+03	2021-05-24 04:02:17.859+03	
29abc569-0e73-e6c5-38eb-a6db1a0ecefd	2021-05-24 04:02:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:02:37.853+03	2021-05-24 04:02:37.859+03	
e8ff56f3-c2bb-a08d-7942-12131a7ce516	2021-05-24 04:02:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:02:58.852+03	2021-05-24 04:02:58.859+03	
212c089f-8120-2b1a-cbe9-49dcb3e7110f	2021-05-24 04:03:19.858	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:03:19.852+03	2021-05-24 04:03:19.864+03	
ec4dfc1a-7cac-254c-25ed-dde065ca211a	2021-05-24 04:03:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:03:39.853+03	2021-05-24 04:03:39.861+03	
93b36cc8-dba4-d49c-9a84-01bcd0bee33b	2021-05-24 04:03:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:03:59.853+03	2021-05-24 04:03:59.862+03	
bd5ea89c-1acc-f391-0bcc-9d40a101a33c	2021-05-24 04:04:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:04:21.853+03	2021-05-24 04:04:21.86+03	
0569fb38-ebb1-82a8-b713-d61bf4daec8c	2021-05-24 04:04:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:04:42.853+03	2021-05-24 04:04:42.859+03	
abc0413a-0bec-2006-f11b-c9293c96372a	2021-05-24 04:05:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:05:03.852+03	2021-05-24 04:05:03.859+03	
feb5298a-f733-c9c4-fe6e-75ea08727f57	2021-05-24 04:05:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:05:23.852+03	2021-05-24 04:05:23.88+03	
6a28f396-dbe9-3b69-a572-aeadd860f2dc	2021-05-24 04:05:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:05:43.852+03	2021-05-24 04:05:43.859+03	
5dbd6d58-c92b-42a1-f9ac-601dea130f9d	2021-05-24 04:06:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:06:03.852+03	2021-05-24 04:06:03.858+03	
051ba9e4-b2f1-a0b0-350f-1a379eac304d	2021-05-24 04:06:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:06:23.852+03	2021-05-24 04:06:23.859+03	
e3f90a72-1e76-3980-dab1-229306ffe8b5	2021-05-24 04:06:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:06:43.853+03	2021-05-24 04:06:43.859+03	
74b9cef4-c6c6-d875-3280-a766d4f74f4d	2021-05-24 04:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:07:04.853+03	2021-05-24 04:07:04.859+03	
5fb6f44c-09a3-0590-27c7-430d978e7f8b	2021-05-24 04:07:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:07:24.853+03	2021-05-24 04:07:24.867+03	
70dc46f7-5996-207a-276b-b18a9d1ca1fa	2021-05-24 04:07:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:07:44.853+03	2021-05-24 04:07:44.861+03	
02c55ee6-8b71-b7bd-5a04-24b539560494	2021-05-24 04:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:08:05.852+03	2021-05-24 04:08:05.861+03	
2272fa75-9a7e-1062-7c91-344319c08e58	2021-05-24 04:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:08:25.853+03	2021-05-24 04:08:25.861+03	
234e5024-1a87-5f95-49b0-d5746f79cc4f	2021-05-24 04:08:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:08:46.852+03	2021-05-24 04:08:46.859+03	
8a38b4f2-04e3-3036-6f66-c3ded9430dc0	2021-05-24 04:09:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:09:06.852+03	2021-05-24 04:09:06.86+03	
085afc44-5de7-75ea-fedf-d29a30629c97	2021-05-24 04:09:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:09:26.852+03	2021-05-24 04:09:26.865+03	
589b8d56-bfc0-ad36-ab82-5c9e6dee6864	2021-05-24 04:09:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:09:46.853+03	2021-05-24 04:09:46.861+03	
524ecab2-56ef-cb98-c94c-2ba6980791ca	2021-05-24 04:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 04:10:00.853+03	2021-05-24 04:10:00.858+03	ERROR
85fc83c7-b869-2226-7535-65fd7396bb76	2021-05-24 04:10:17.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:10:17.853+03	2021-05-24 04:10:17.86+03	
8477d3c5-afb5-bd1f-3f58-d826a8fa21ea	2021-05-24 04:10:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:10:38.852+03	2021-05-24 04:10:38.859+03	
24320d99-e4eb-2ac6-78e4-798bafa5b89e	2021-05-24 04:10:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:10:58.853+03	2021-05-24 04:10:58.859+03	
dd3bd92d-d028-5c45-bc1b-a4020948fd6b	2021-05-24 04:11:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:11:19.852+03	2021-05-24 04:11:19.86+03	
79528044-8935-162d-12e1-23369de21053	2021-05-24 04:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:11:39.853+03	2021-05-24 04:11:39.859+03	
25d0ba9a-5ca7-70a7-8543-a7ad85093239	2021-05-24 04:12:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:12:00.853+03	2021-05-24 04:12:00.861+03	
a7775675-9f5d-3928-feb8-b32cf54b43d6	2021-05-24 04:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:12:20.853+03	2021-05-24 04:12:20.863+03	
e9c98ccc-1362-4cfa-f5c0-36cfd1371691	2021-05-24 04:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:12:41.853+03	2021-05-24 04:12:41.86+03	
ce2d0fd3-a215-d2d3-0717-1bdb423e5b04	2021-05-24 04:13:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:13:01.853+03	2021-05-24 04:13:01.859+03	
20ffe910-12ae-533b-ee8f-9183025dfe14	2021-05-24 04:13:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:13:22.853+03	2021-05-24 04:13:22.866+03	
9e859585-4df2-1712-9427-8717db4ce904	2021-05-24 04:13:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:13:43.853+03	2021-05-24 04:13:43.859+03	
36031186-d759-ed3c-4882-8376ddb2c462	2021-05-24 04:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:14:04.853+03	2021-05-24 04:14:04.859+03	
d01a22a9-7c71-d811-0933-c00f48e7443b	2021-05-24 04:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:14:25.853+03	2021-05-24 04:14:25.86+03	
8bb173ff-3cef-900f-ec65-41a208db55f9	2021-05-24 04:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:14:45.853+03	2021-05-24 04:14:45.86+03	
f61d26ca-e15a-d863-3053-ea1afb149b0e	2021-05-24 04:15:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:15:06.853+03	2021-05-24 04:15:06.871+03	
020f9dfb-0b11-9b1a-e33b-ed83e8ebb900	2021-05-24 04:15:26.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:15:26.854+03	2021-05-24 04:15:26.86+03	
4f838217-d3bf-7c9f-13b7-628927514f36	2021-05-24 04:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:15:47.853+03	2021-05-24 04:15:47.863+03	
49389f42-9971-91c9-3073-c2db40a9d788	2021-05-24 04:16:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:16:07.853+03	2021-05-24 04:16:07.859+03	
ab37bf18-ca12-cbf2-1a97-e849743aa5f4	2021-05-24 04:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:16:29.852+03	2021-05-24 04:16:29.858+03	
bedc5f29-3074-0747-8ed6-1562f589e5c1	2021-05-24 04:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:16:49.853+03	2021-05-24 04:16:49.859+03	
e4bc19b9-de39-1207-4b69-8df549665ef9	2021-05-24 04:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:17:10.852+03	2021-05-24 04:17:10.86+03	
af694ec4-de55-0590-9bb3-cf9a6a1512ff	2021-05-24 04:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:17:30.853+03	2021-05-24 04:17:30.875+03	
5b68f570-f96e-2b6f-d60d-ce69fac838dc	2021-05-24 04:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:17:50.853+03	2021-05-24 04:17:50.859+03	
cdf7ecee-55f5-f676-c309-9f34e20c7235	2021-05-24 04:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:18:11.852+03	2021-05-24 04:18:11.859+03	
252bcd90-dfa4-964f-c2c4-c9676eff3618	2021-05-24 04:18:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:18:31.852+03	2021-05-24 04:18:31.861+03	
6a9ae5ee-6b32-f04d-4787-c7261d3dd2af	2021-05-24 04:18:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:18:51.854+03	2021-05-24 04:18:51.86+03	
9edc89b9-4044-5ff5-0f5f-e13ecde4575a	2021-05-24 04:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:19:12.852+03	2021-05-24 04:19:12.859+03	
00b42355-2624-f98e-f7ec-d952e4239146	2021-05-24 04:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:19:33.853+03	2021-05-24 04:19:33.859+03	
7e48caf2-14b7-a98f-0aa3-cb1ad87d1dd2	2021-05-24 04:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:19:55.852+03	2021-05-24 04:19:55.86+03	
d893b183-dd0d-8d3a-3200-71ee320e9312	2021-05-24 04:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:20:05.852+03	2021-05-24 04:20:05.859+03	
90b22e8d-59ae-e005-4862-509cf5d65836	2021-05-24 04:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:20:25.853+03	2021-05-24 04:20:25.859+03	
1ba95adb-8f7e-bc8f-7003-0a85b9bb73bf	2021-05-24 04:20:46.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:20:46.852+03	2021-05-24 04:20:46.859+03	
0f1931e4-48c1-3320-0827-116c48ffd921	2021-05-24 04:21:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:21:06.853+03	2021-05-24 04:21:06.86+03	
f2f4a44d-6fc4-2131-a4e0-5affc663dd45	2021-05-24 04:21:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:21:27.853+03	2021-05-24 04:21:27.859+03	
fbd320ab-52be-b918-7bba-7501b33f050c	2021-05-24 04:21:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:21:48.852+03	2021-05-24 04:21:48.859+03	
50d7c6ff-cfdf-556c-d4d3-eb3f56196072	2021-05-24 04:22:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:22:08.853+03	2021-05-24 04:22:08.859+03	
361a259f-4664-0782-5883-00a759ec66c5	2021-05-24 04:22:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:22:30.852+03	2021-05-24 04:22:30.859+03	
54558bbe-90d1-16ac-991c-6f17a14637c2	2021-05-24 04:22:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:22:50.852+03	2021-05-24 04:22:50.859+03	
18d73353-7b1f-52da-c323-6a9b0890b7d9	2021-05-24 04:23:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:23:00.852+03	2021-05-24 04:23:00.858+03	
92fadb57-8428-a02d-2d79-5e79b765080e	2021-05-24 04:23:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:23:20.853+03	2021-05-24 04:23:20.858+03	
576a923c-7d5c-e2d9-3d3a-96713046f33b	2021-05-24 04:23:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:23:41.854+03	2021-05-24 04:23:41.861+03	
477fb665-3d32-7ae8-bb85-6e61c0ff747f	2021-05-24 04:24:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:24:02.853+03	2021-05-24 04:24:02.859+03	
c2f23a18-fd22-01f6-945c-976029616cdc	2021-05-24 04:24:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:24:22.853+03	2021-05-24 04:24:22.859+03	
032494ca-7c18-0839-4843-8352daba2a37	2021-05-24 04:24:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:24:44.853+03	2021-05-24 04:24:44.859+03	
7e345046-b61b-9c20-86ae-63e5922c395d	2021-05-24 04:25:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:25:04.853+03	2021-05-24 04:25:04.859+03	
81660cd4-f4e7-7da1-e087-ddeeaff263c4	2021-05-24 04:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:25:25.853+03	2021-05-24 04:25:25.859+03	
d46ba79a-76ce-2b24-e403-321d495f0c28	2021-05-24 04:25:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:25:46.852+03	2021-05-24 04:25:46.865+03	
2eca1a48-735b-5ecd-8911-252b6c4ae134	2021-05-24 04:26:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:26:06.853+03	2021-05-24 04:26:06.859+03	
9eb9fbb4-c4f4-b8d5-0df1-02e22ddc03c3	2021-05-24 04:26:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:26:27.852+03	2021-05-24 04:26:27.861+03	
ac80dede-f06a-8ebc-5a18-0b90cbfd9a62	2021-05-24 04:26:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:26:47.853+03	2021-05-24 04:26:47.86+03	
3eb8a614-4aa9-f657-2f23-17a755081db2	2021-05-24 04:27:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:27:08.852+03	2021-05-24 04:27:08.861+03	
dd70e95d-0c57-9c99-10af-91cd74c1646c	2021-05-24 04:27:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:27:28.852+03	2021-05-24 04:27:28.859+03	
5bed4b7e-7b50-cf56-ed66-acc07b9ac39f	2021-05-24 04:27:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:27:48.853+03	2021-05-24 04:27:48.868+03	
e25d85fc-184c-649e-f1f7-cd2097e75525	2021-05-24 04:28:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:28:10.853+03	2021-05-24 04:28:10.859+03	
4aa34b00-29ff-31f5-838c-e3959dd329af	2021-05-24 04:28:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:28:30.853+03	2021-05-24 04:28:30.859+03	
6e446a2f-15b8-293d-62aa-c8f06fa6ae1a	2021-05-24 04:28:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:28:51.854+03	2021-05-24 04:28:51.86+03	
3f076427-1ac0-7830-d4fc-a05dde6766cc	2021-05-24 04:29:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:29:12.852+03	2021-05-24 04:29:12.859+03	
2076f8f0-ecec-ee08-6785-b13477ea0ff3	2021-05-24 04:29:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:29:32.852+03	2021-05-24 04:29:32.859+03	
803c0b5b-abd0-c6ff-8b18-fa2f7ccf3528	2021-05-24 04:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:29:53.853+03	2021-05-24 04:29:53.86+03	
d15464d9-47e5-e396-cdc6-ae78ee9e6915	2021-05-24 04:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:30:03.853+03	2021-05-24 04:30:03.859+03	
dfa0eccd-9c0b-7b6c-ec56-f7d04f8597e0	2021-05-24 04:30:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:30:24.853+03	2021-05-24 04:30:24.86+03	
2a8c2992-760c-970a-e8d9-f0d7215ed8a3	2021-05-24 04:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:30:45.853+03	2021-05-24 04:30:45.858+03	
71855afd-6730-090d-b76f-85ea0caf2c1b	2021-05-24 04:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:31:05.853+03	2021-05-24 04:31:05.859+03	
2938faa0-8c11-83ca-3313-136307fa5c8a	2021-05-24 04:31:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:31:26.853+03	2021-05-24 04:31:26.86+03	
c97e357e-fcc8-f5f3-1a52-1f2ebbcc302f	2021-05-24 04:31:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:31:47.852+03	2021-05-24 04:31:47.859+03	
7ea8ff29-ace1-ec43-8d77-efc3683594c1	2021-05-24 04:32:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:32:08.852+03	2021-05-24 04:32:08.858+03	
44065fd5-2d91-3ef8-0d02-d25229f1dcdb	2021-05-24 04:32:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:32:28.852+03	2021-05-24 04:32:28.86+03	
3ced2930-a85d-8f1f-25b2-b31a11791985	2021-05-24 04:32:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:32:48.853+03	2021-05-24 04:32:48.86+03	
121f8eba-ef08-3d0f-eb1e-37a43626bdc2	2021-05-24 04:33:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:33:10.853+03	2021-05-24 04:33:10.859+03	
299d7591-56cf-7db8-296b-569ba8bed617	2021-05-24 04:33:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:33:31.853+03	2021-05-24 04:33:31.859+03	
308461fe-e922-801a-2dd2-d1db55d61def	2021-05-24 04:33:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:33:51.853+03	2021-05-24 04:33:51.861+03	
e0b75dfb-6999-2474-7878-68278930f592	2021-05-24 04:34:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:34:11.854+03	2021-05-24 04:34:11.863+03	
9bc95ca5-0119-3c5c-b975-2817d1459229	2021-05-24 04:34:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:34:32.853+03	2021-05-24 04:34:32.858+03	
a117c00e-e04b-1f3b-36d5-a03611da1e86	2021-05-24 04:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:34:53.852+03	2021-05-24 04:34:53.87+03	
ff835815-dd64-3701-6355-dbc20e85948f	2021-05-24 04:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:35:13.852+03	2021-05-24 04:35:13.86+03	
b99b12b6-3ade-d391-6489-50acddcd9a7e	2021-05-24 04:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:35:33.853+03	2021-05-24 04:35:33.859+03	
d0bbbe77-4260-34bc-197a-c631f3ba8dda	2021-05-24 04:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:35:55.852+03	2021-05-24 04:35:55.859+03	
e5624fc0-8722-7522-30df-55261c4851f4	2021-05-24 04:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:36:15.853+03	2021-05-24 04:36:15.859+03	
3e78f6c6-edd8-2bd0-8ac1-0670695de411	2021-05-24 04:36:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:36:36.853+03	2021-05-24 04:36:36.861+03	
d692c1cc-b73f-d39d-12e3-1a0f509ee8bb	2021-05-24 04:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:36:57.852+03	2021-05-24 04:36:57.859+03	
b5aae76a-67a4-e4a2-1be8-f51335aec3d9	2021-05-24 04:37:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:37:17.853+03	2021-05-24 04:37:17.859+03	
b35db259-0e2c-d1e1-1e0b-75bb54612229	2021-05-24 04:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:37:38.853+03	2021-05-24 04:37:38.877+03	
ed5405ed-9fe7-df68-4ada-d8207e86c9e9	2021-05-24 04:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:37:58.853+03	2021-05-24 04:37:58.862+03	
f72a1e18-ff06-7b4e-3c1b-0bc849cd03c0	2021-05-24 04:38:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:38:19.852+03	2021-05-24 04:38:19.858+03	
cf6c8905-d6a0-f341-2393-f5f6bdf7adbf	2021-05-24 04:38:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:38:39.852+03	2021-05-24 04:38:39.859+03	
4a3d3976-fff0-d313-f51f-e52f16ac1183	2021-05-24 04:38:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:38:59.852+03	2021-05-24 04:38:59.859+03	
db9a4e27-1803-0dac-169d-9c0e115a14cc	2021-05-24 04:39:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:39:19.853+03	2021-05-24 04:39:19.873+03	
1804cafa-9208-c769-7164-fbb3689efe07	2021-05-24 04:39:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:39:41.852+03	2021-05-24 04:39:41.86+03	
f934a305-5b3a-55a7-65db-5ed277287c88	2021-05-24 04:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 04:40:00.853+03	2021-05-24 04:40:00.859+03	ERROR
84ffd877-285f-2969-a61f-292978d39fdb	2021-05-24 04:40:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:40:11.854+03	2021-05-24 04:40:11.903+03	
d6e1546a-20b2-4bba-4313-bb2d48e8b694	2021-05-24 04:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:40:33.853+03	2021-05-24 04:40:33.859+03	
b8f74863-c41e-98f5-8309-e65aa7b542ca	2021-05-24 04:40:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:40:54.853+03	2021-05-24 04:40:54.859+03	
a368586d-7482-37c0-90ae-7be6a473e77f	2021-05-24 04:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:41:15.852+03	2021-05-24 04:41:15.86+03	
fe0052b3-9371-a616-ac9b-abe26ec55f3e	2021-05-24 04:41:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:41:36.852+03	2021-05-24 04:41:36.859+03	
56dccdcb-81c2-2002-4318-f0338d02634c	2021-05-24 04:41:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:41:56.852+03	2021-05-24 04:41:56.859+03	
df514677-b845-120c-9bef-d8155fbda752	2021-05-24 04:42:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:42:17.852+03	2021-05-24 04:42:17.868+03	
97ea917f-1681-15a8-5c58-3a011e160e5c	2021-05-24 04:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:42:38.853+03	2021-05-24 04:42:38.86+03	
18860dcc-20cb-188f-4b58-1ec802ed3cc8	2021-05-24 04:42:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:42:58.853+03	2021-05-24 04:42:58.877+03	
2cf2b42e-30fc-81e2-3a7d-4b4d1856a2c7	2021-05-24 04:43:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:43:20.852+03	2021-05-24 04:43:20.861+03	
b54c6d1d-917f-be13-daca-4f7d0dfe6c65	2021-05-24 04:43:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:43:41.852+03	2021-05-24 04:43:41.86+03	
2c91cbfb-a39a-ec8d-8e91-111b02ba490b	2021-05-24 04:44:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:44:02.852+03	2021-05-24 04:44:02.859+03	
91a8f143-18d3-0829-0d71-146936f51201	2021-05-24 04:23:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:23:10.852+03	2021-05-24 04:23:10.859+03	
06718eed-d493-f9ce-51b3-8a68d4066486	2021-05-24 04:23:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:23:30.853+03	2021-05-24 04:23:30.858+03	
5bb9acce-49a2-84c9-a46c-93d092d6f233	2021-05-24 04:23:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:23:52.853+03	2021-05-24 04:23:52.86+03	
e1c7a66e-e806-2831-e3c4-968d76f12a12	2021-05-24 04:24:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:24:12.853+03	2021-05-24 04:24:12.86+03	
af7e8420-9ca7-fc78-e1c7-f5f9dea481e2	2021-05-24 04:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:24:33.853+03	2021-05-24 04:24:33.859+03	
e8496e7b-155c-db67-eebe-e7d586ba7e4b	2021-05-24 04:24:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:24:54.853+03	2021-05-24 04:24:54.859+03	
1b44a381-2021-7f07-ac25-4bc72c5a36d5	2021-05-24 04:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:25:15.852+03	2021-05-24 04:25:15.859+03	
2ddd5a1a-68e3-562c-6aac-4903d534dc07	2021-05-24 04:25:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:25:36.852+03	2021-05-24 04:25:36.859+03	
67aef689-b379-63cc-5eef-0acb1ed87318	2021-05-24 04:25:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:25:56.853+03	2021-05-24 04:25:56.859+03	
2547492b-952c-7303-462a-e0a290790951	2021-05-24 04:26:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:26:17.852+03	2021-05-24 04:26:17.859+03	
cb0499b8-ff1e-7507-cd05-8cd8b415cb57	2021-05-24 04:26:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:26:37.852+03	2021-05-24 04:26:37.861+03	
e81748a9-eb0a-4908-662e-247940bac944	2021-05-24 04:26:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:26:58.852+03	2021-05-24 04:26:58.859+03	
ae006c36-f452-7a06-a3b3-46851361edea	2021-05-24 04:27:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:27:18.852+03	2021-05-24 04:27:18.859+03	
e741a0c4-d3b9-9042-9ad8-6b7f990d86f5	2021-05-24 04:27:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:27:38.853+03	2021-05-24 04:27:38.864+03	
30365a81-4a61-f8ab-466e-cba80e5b271c	2021-05-24 04:27:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:27:59.853+03	2021-05-24 04:27:59.859+03	
d6ef11d1-3f76-f1a0-6c3d-e3883352e887	2021-05-24 04:28:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:28:20.853+03	2021-05-24 04:28:20.859+03	
332bb372-bbba-8832-9ead-4abaa986faff	2021-05-24 04:28:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:28:41.853+03	2021-05-24 04:28:41.859+03	
75a46da4-fc1f-e56d-c799-ac98247e6892	2021-05-24 04:29:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:29:01.854+03	2021-05-24 04:29:01.865+03	
6c009dde-abb6-fe68-7289-0692ffec8d7f	2021-05-24 04:29:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:29:22.852+03	2021-05-24 04:29:22.858+03	
15487336-b176-928d-2f73-ef4abfb1c798	2021-05-24 04:29:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:29:42.853+03	2021-05-24 04:29:42.868+03	
9037f835-bfe1-6d73-696f-212399a3cf06	2021-05-24 04:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 04:30:00.853+03	2021-05-24 04:30:00.857+03	ERROR
9000674f-07d7-3495-8de2-7ad1fc1bf584	2021-05-24 04:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:30:13.853+03	2021-05-24 04:30:13.86+03	
22e7b4e3-62c4-4197-cca3-5e2e8fb5c562	2021-05-24 04:30:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:30:34.853+03	2021-05-24 04:30:34.86+03	
d0fe6d65-4dd7-905a-2e62-e57a725a3630	2021-05-24 04:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:30:55.853+03	2021-05-24 04:30:55.858+03	
8d97d262-87ad-6696-630e-943cf15237fb	2021-05-24 04:31:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:31:16.852+03	2021-05-24 04:31:16.86+03	
5a64ba6e-fba4-4a5f-4a4d-6c476e216990	2021-05-24 04:31:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:31:36.853+03	2021-05-24 04:31:36.86+03	
b153be9f-951e-0200-bbbc-cabd3351c300	2021-05-24 04:31:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:31:57.853+03	2021-05-24 04:31:57.859+03	
bacf0da2-671c-151c-4ff5-4537bebdeb44	2021-05-24 04:32:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:32:18.852+03	2021-05-24 04:32:18.859+03	
800bc99f-7042-0625-886a-1f40529b657c	2021-05-24 04:32:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:32:38.853+03	2021-05-24 04:32:38.86+03	
1aa074b1-004b-4998-05ce-895bf48108ff	2021-05-24 04:32:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:32:59.853+03	2021-05-24 04:32:59.861+03	
b8dc0e84-29ef-68f2-0d4c-669909d649da	2021-05-24 04:33:21.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:33:21.852+03	2021-05-24 04:33:21.859+03	
4f25ad59-b5d4-4326-73ed-540f6105f064	2021-05-24 04:33:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:33:41.853+03	2021-05-24 04:33:41.86+03	
2219c8e2-0346-7623-3df9-55f1d060a876	2021-05-24 04:34:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:34:01.854+03	2021-05-24 04:34:01.861+03	
8861a7d3-5e4e-ae0f-18da-b405ec0d790f	2021-05-24 04:34:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:34:22.853+03	2021-05-24 04:34:22.859+03	
a05c28ab-b437-32b1-e9c7-99ce484ed0ee	2021-05-24 04:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:34:43.852+03	2021-05-24 04:34:43.859+03	
5661742e-7289-6946-184a-215c41724d50	2021-05-24 04:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:35:03.852+03	2021-05-24 04:35:03.86+03	
e59a40c7-09fc-d0e8-0164-cfb1760ee7cc	2021-05-24 04:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:35:23.853+03	2021-05-24 04:35:23.859+03	
c1926812-4cdf-9610-0cee-bce9492f6aaf	2021-05-24 04:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:35:44.853+03	2021-05-24 04:35:44.859+03	
72622e4a-443c-aa41-49d3-e6cd88f247df	2021-05-24 04:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:36:05.853+03	2021-05-24 04:36:05.871+03	
d4908d44-58c2-2801-053b-0e649d189611	2021-05-24 04:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:36:26.852+03	2021-05-24 04:36:26.859+03	
1ac913b1-60be-7b5d-ae97-5feeb4a2b016	2021-05-24 04:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:36:47.852+03	2021-05-24 04:36:47.87+03	
f5913b3f-c4a6-6af5-9e78-2933c26deb03	2021-05-24 04:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:37:07.853+03	2021-05-24 04:37:07.859+03	
992ee836-574b-860e-10d6-ed12156ecf24	2021-05-24 04:37:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:37:27.853+03	2021-05-24 04:37:27.861+03	
acf1af15-f313-ca43-584e-cc3e29f2868b	2021-05-24 04:37:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:37:48.853+03	2021-05-24 04:37:48.863+03	
9deacd42-a346-362f-982c-526436d5c062	2021-05-24 04:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:38:08.853+03	2021-05-24 04:38:08.863+03	
3b844fc9-3d42-bc69-a46b-32cc45f22b55	2021-05-24 04:38:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:38:29.852+03	2021-05-24 04:38:29.863+03	
f0183382-0cea-d64f-860e-2dcce916459c	2021-05-24 04:38:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:38:49.852+03	2021-05-24 04:38:49.86+03	
f0112057-8607-f221-8188-86a340ca3136	2021-05-24 04:39:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:39:09.852+03	2021-05-24 04:39:09.86+03	
fe2ea451-82da-3b16-3b96-65e4e1a8b3bf	2021-05-24 04:39:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:39:30.853+03	2021-05-24 04:39:30.86+03	
189b7579-bbfe-2433-a31d-88a3ef12e1ec	2021-05-24 04:39:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:39:51.854+03	2021-05-24 04:39:51.86+03	
fd14107f-fda6-2f4d-072d-2131e7b65970	2021-05-24 04:40:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:40:01.854+03	2021-05-24 04:40:01.876+03	
e31bb2ab-6c57-ed21-d9e0-1e7eb7eb7bf3	2021-05-24 04:40:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:40:22.853+03	2021-05-24 04:40:22.862+03	
0f65ac34-5de6-b8de-0c3c-0036d93b0a48	2021-05-24 04:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:40:43.853+03	2021-05-24 04:40:43.859+03	
b657d0b0-db1c-8c86-81ed-9d62375ebd54	2021-05-24 04:41:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:41:04.853+03	2021-05-24 04:41:04.86+03	
100564c6-79a0-c03b-6e17-2d80fe24e9d1	2021-05-24 04:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:41:25.853+03	2021-05-24 04:41:25.859+03	
9a3d23b2-644a-592b-b68f-445680b4bc39	2021-05-24 04:41:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:41:46.852+03	2021-05-24 04:41:46.862+03	
63eb55c1-34d9-8cf0-3741-228dfc864ced	2021-05-24 04:42:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:42:06.853+03	2021-05-24 04:42:06.864+03	
aad21e63-0f66-d8ef-42ef-41ec554fa0d7	2021-05-24 04:42:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:42:27.853+03	2021-05-24 04:42:27.86+03	
25500050-6740-bf08-68c6-2c04081bdc67	2021-05-24 04:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:42:48.853+03	2021-05-24 04:42:48.859+03	
4c2f426f-5426-6ec3-f4c7-80680c9a557e	2021-05-24 04:43:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:43:09.853+03	2021-05-24 04:43:09.862+03	
a0a66e4c-daee-2250-534e-46d25f3c7649	2021-05-24 04:43:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:43:30.853+03	2021-05-24 04:43:30.861+03	
c9feed47-5e55-e414-de83-6a17181871ea	2021-05-24 04:43:51.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:43:51.854+03	2021-05-24 04:43:51.86+03	
8bd3bafe-2d60-5e75-6dc8-ef8ba85edab0	2021-05-24 04:44:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:44:12.852+03	2021-05-24 04:44:12.859+03	
dc7a0e2a-99ee-de94-5670-69b1393d43a0	2021-05-24 04:44:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:44:22.853+03	2021-05-24 04:44:22.862+03	
938ef118-75c1-7712-e863-1c4e3df14ac4	2021-05-24 04:44:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:44:44.852+03	2021-05-24 04:44:44.861+03	
9b215b8f-460e-587f-f619-aadc97a6a72d	2021-05-24 04:45:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:45:05.852+03	2021-05-24 04:45:05.86+03	
6e46305f-7527-c0c4-85b5-d6aa022cd074	2021-05-24 04:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:45:25.853+03	2021-05-24 04:45:25.861+03	
e62ccff6-f322-051a-b9a8-e33ddcc49b20	2021-05-24 04:45:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:45:46.852+03	2021-05-24 04:45:46.86+03	
06baa4fb-8bb6-6e94-da69-8f44842ba49e	2021-05-24 04:46:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:46:06.852+03	2021-05-24 04:46:06.858+03	
921d5723-e525-1ca5-188d-28129127f69d	2021-05-24 04:46:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:46:27.852+03	2021-05-24 04:46:27.859+03	
cf83e3fa-6a7a-8c4c-bd21-21d1d558d2ef	2021-05-24 04:46:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:46:47.852+03	2021-05-24 04:46:47.859+03	
f29a3ffa-073b-4dab-6836-b2a33e4dae27	2021-05-24 04:47:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:47:07.853+03	2021-05-24 04:47:07.86+03	
9911ef6a-0b07-f2ad-da9d-152e724b859e	2021-05-24 04:47:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:47:28.852+03	2021-05-24 04:47:28.859+03	
70e1f715-df30-a2e9-00bc-f792d2659a3c	2021-05-24 04:47:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:47:48.852+03	2021-05-24 04:47:48.859+03	
032dfde8-be68-7bfb-0442-fa8ab01c9824	2021-05-24 04:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:48:09.853+03	2021-05-24 04:48:09.859+03	
825783c7-89d0-abee-4d2f-c41b0a5e5984	2021-05-24 04:48:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:48:31.852+03	2021-05-24 04:48:31.859+03	
b7358c40-c5c1-879f-df12-3538218e6c38	2021-05-24 04:48:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:48:51.852+03	2021-05-24 04:48:51.86+03	
d6573351-e95f-705e-302a-749f3e815db3	2021-05-24 04:49:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:49:11.854+03	2021-05-24 04:49:11.86+03	
15b9b06c-2a27-9c1e-30a2-e90b35fb1dc2	2021-05-24 04:49:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:49:32.853+03	2021-05-24 04:49:32.859+03	
4ee68bef-1711-3f7a-43c2-f53a602076af	2021-05-24 04:49:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:49:53.852+03	2021-05-24 04:49:53.859+03	
9f6b3f97-d72c-06a3-458d-dfef3c982364	2021-05-24 04:50:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:50:03.852+03	2021-05-24 04:50:03.873+03	
11f89319-81e2-5441-524e-7e7ed44eaf79	2021-05-24 04:50:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:50:23.852+03	2021-05-24 04:50:23.859+03	
6e987ec6-2d51-ce89-7216-6eeac6aac9e3	2021-05-24 04:50:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:50:43.853+03	2021-05-24 04:50:43.861+03	
d286fad0-ae33-7038-afa8-753ff5cdb19c	2021-05-24 04:51:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:51:03.853+03	2021-05-24 04:51:03.861+03	
26c3cc99-4cea-a3ab-82dc-e7297e933c8c	2021-05-24 04:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:51:24.853+03	2021-05-24 04:51:24.859+03	
af4118c4-802e-757e-0b5b-ea7ebb3811d0	2021-05-24 04:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:51:44.853+03	2021-05-24 04:51:44.859+03	
7148ec52-03b1-437f-1a55-757e14aa98ce	2021-05-24 04:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:52:04.853+03	2021-05-24 04:52:04.859+03	
71a24fc9-a374-59a4-86f5-a47b5a949ecd	2021-05-24 04:52:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:52:26.852+03	2021-05-24 04:52:26.859+03	
78f73e88-c3b6-120c-f963-59d28265acd7	2021-05-24 04:52:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:52:46.852+03	2021-05-24 04:52:46.859+03	
de9385c0-a1c1-dcaf-bea2-de3e417953ef	2021-05-24 04:53:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:53:07.853+03	2021-05-24 04:53:07.86+03	
28829c78-1be4-92e4-32f0-3824067ccf76	2021-05-24 04:53:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:53:28.852+03	2021-05-24 04:53:28.872+03	
693704d9-0ded-3dd9-dbd0-0ad923d4920a	2021-05-24 04:53:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:53:48.853+03	2021-05-24 04:53:48.859+03	
12a78c8d-0dcd-28d2-703a-cd145a83bed1	2021-05-24 04:54:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:54:09.853+03	2021-05-24 04:54:09.859+03	
0cd834d9-e7e6-e128-762c-dfdecedb277e	2021-05-24 04:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:54:30.853+03	2021-05-24 04:54:30.862+03	
45f2b4ec-537f-1015-4a67-a4b49e22729c	2021-05-24 04:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:54:50.853+03	2021-05-24 04:54:50.86+03	
d173febb-5df5-6ab3-53a3-f7724de5b804	2021-05-24 04:55:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:55:11.854+03	2021-05-24 04:55:11.862+03	
8575f00f-2456-c7d4-7125-5b026f03fbea	2021-05-24 04:55:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:55:32.853+03	2021-05-24 04:55:32.859+03	
9901856f-ef87-fbbb-83af-3965952f8068	2021-05-24 04:55:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:55:52.853+03	2021-05-24 04:55:52.86+03	
c56ac84f-f7b4-0d3a-2709-187abefe9640	2021-05-24 04:56:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:56:13.852+03	2021-05-24 04:56:13.859+03	
d505c521-ab4b-8442-47e1-2436f47a53be	2021-05-24 04:56:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:56:33.852+03	2021-05-24 04:56:33.861+03	
d1d5e743-b5ca-4cb7-0a53-77bcfa845040	2021-05-24 04:56:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:56:53.853+03	2021-05-24 04:56:53.861+03	
9432d046-2ceb-bbd1-72e0-874f352eec69	2021-05-24 04:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:57:14.853+03	2021-05-24 04:57:14.859+03	
75a48583-5cae-aced-1591-a1b62465d5e7	2021-05-24 04:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:57:35.852+03	2021-05-24 04:57:35.86+03	
656418d3-a6e0-7fa3-5b3d-9adaabdb71ca	2021-05-24 04:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:57:55.853+03	2021-05-24 04:57:55.861+03	
c1ba1859-9a88-5b07-5597-7441a9e74ee4	2021-05-24 04:58:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:58:16.854+03	2021-05-24 04:58:16.874+03	
fd4411a9-e4ba-f33a-6ef6-9383935b37a9	2021-05-24 04:58:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:58:37.853+03	2021-05-24 04:58:37.868+03	
49717f63-9249-54a3-1b66-0142745ae01d	2021-05-24 04:58:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:58:57.853+03	2021-05-24 04:58:57.86+03	
dd7d6da6-6f88-7da2-29ae-ed309b027b8d	2021-05-24 04:59:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:59:17.853+03	2021-05-24 04:59:17.859+03	
e1159ce0-cb57-7b19-4dc8-e398e9a9a9fc	2021-05-24 04:59:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:59:38.852+03	2021-05-24 04:59:38.858+03	
85a70ede-286e-9a49-e1a8-7d455d089545	2021-05-24 04:59:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:59:58.852+03	2021-05-24 04:59:58.869+03	
28a08efb-4a05-ce39-4cf2-d7c816bc32ca	2021-05-24 05:00:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:00:08.853+03	2021-05-24 05:00:08.859+03	
43cfff84-0231-e628-9a97-141fee1d50fb	2021-05-24 05:00:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:00:29.853+03	2021-05-24 05:00:29.859+03	
1b767219-a2da-2e07-a6a2-dfef2a2311cf	2021-05-24 05:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:00:50.853+03	2021-05-24 05:00:50.859+03	
9b25c513-9daa-229e-b79e-3e2147a47d33	2021-05-24 05:01:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:01:11.852+03	2021-05-24 05:01:11.86+03	
b6f6fa55-dd67-7573-907d-b1e513898353	2021-05-24 05:01:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:01:32.853+03	2021-05-24 05:01:32.859+03	
42a3c197-0a2d-8155-35d1-2073aa065191	2021-05-24 05:01:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:01:53.853+03	2021-05-24 05:01:53.859+03	
057ec3fc-8524-7646-f946-d52901d44e1c	2021-05-24 05:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:02:14.853+03	2021-05-24 05:02:14.869+03	
723f5f29-4d5d-ae0d-79fb-39de6e8f8664	2021-05-24 05:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:02:35.853+03	2021-05-24 05:02:35.871+03	
907e9953-2846-ff95-8918-eea56a3be4e3	2021-05-24 05:02:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:02:55.853+03	2021-05-24 05:02:55.86+03	
d22ec8db-e0d4-d868-d069-3439a105de59	2021-05-24 05:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:03:15.853+03	2021-05-24 05:03:15.859+03	
5ce82c34-f5c8-52e3-0270-7e7d36d3a4d3	2021-05-24 05:03:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:03:36.852+03	2021-05-24 05:03:36.867+03	
ad128301-5073-e230-e89e-61f87be9dc47	2021-05-24 05:03:56.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:03:56.853+03	2021-05-24 05:03:56.86+03	
7122e877-fee3-9f2c-a9c5-5bfc3fa72f3d	2021-05-24 05:04:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:04:16.854+03	2021-05-24 05:04:16.86+03	
66c93234-26cd-d9f4-c155-cc51a8b9c82e	2021-05-24 05:04:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:04:37.852+03	2021-05-24 05:04:37.866+03	
fdf29148-8358-d3de-fea6-0cc40b344bdb	2021-05-24 05:04:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:04:57.853+03	2021-05-24 05:04:57.866+03	
3cbad0ac-3c3d-d8b2-9434-e74f3474bcff	2021-05-24 05:05:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:05:18.853+03	2021-05-24 05:05:18.859+03	
4ab89e11-8346-a1ed-03ea-7c0ea6c1bac8	2021-05-24 04:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:44:33.853+03	2021-05-24 04:44:33.867+03	
7649bd6b-cce2-b6ed-1e33-66355efc5f0d	2021-05-24 04:44:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:44:54.853+03	2021-05-24 04:44:54.859+03	
eaec6293-f585-4878-7cbf-96129955fe60	2021-05-24 04:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:45:15.852+03	2021-05-24 04:45:15.86+03	
95072b1a-acfe-b0e0-0b92-c5868c4d1351	2021-05-24 04:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:45:35.853+03	2021-05-24 04:45:35.86+03	
747bcdc7-2427-b502-ea33-32fbc019618f	2021-05-24 04:45:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:45:56.852+03	2021-05-24 04:45:56.859+03	
e217df77-2c97-a745-f25e-a1922bc0ac18	2021-05-24 04:46:16.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:46:16.853+03	2021-05-24 04:46:16.86+03	
d7c466bc-678d-a28d-5f78-bebb3cdb2682	2021-05-24 04:46:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:46:37.852+03	2021-05-24 04:46:37.859+03	
c10c86e4-2668-db44-fe27-9c41bc5565e6	2021-05-24 04:46:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:46:57.853+03	2021-05-24 04:46:57.86+03	
9968da3e-a443-09b5-2620-ff71624842ba	2021-05-24 04:47:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:47:17.853+03	2021-05-24 04:47:17.859+03	
69d75743-fe86-1dff-8f80-ddfd0f9d99e9	2021-05-24 04:47:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:47:38.852+03	2021-05-24 04:47:38.862+03	
16690b34-1471-98bd-9e31-b716acf2e5a5	2021-05-24 04:47:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:47:58.853+03	2021-05-24 04:47:58.859+03	
2bddd116-85e9-735f-6af7-88b52f5ecb64	2021-05-24 04:48:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:48:20.853+03	2021-05-24 04:48:20.859+03	
653fc85d-e9ee-ffb2-63cf-62cf90e8f1e0	2021-05-24 04:48:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:48:41.852+03	2021-05-24 04:48:41.86+03	
1cb10dff-5d9e-2afe-791d-238648fc8d3f	2021-05-24 04:49:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:49:01.852+03	2021-05-24 04:49:01.862+03	
bf1bdba8-6f9e-f570-35d2-d2136b530a04	2021-05-24 04:49:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:49:21.854+03	2021-05-24 04:49:21.863+03	
02241a6c-4cf2-1c1d-de5f-314061e0b640	2021-05-24 04:49:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:49:43.852+03	2021-05-24 04:49:43.858+03	
79f8eee8-776d-e68f-514b-f8c5d3c51d4d	2021-05-24 04:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 04:50:00.853+03	2021-05-24 04:50:00.858+03	ERROR
4c67a71e-89db-ea0a-bb0f-0ca9dceef6aa	2021-05-24 04:50:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:50:13.852+03	2021-05-24 04:50:13.858+03	
5d1eaf82-7647-8179-437f-7e6015f17696	2021-05-24 04:50:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:50:33.853+03	2021-05-24 04:50:33.859+03	
23440358-f14c-8337-c5a9-a511cd2518e2	2021-05-24 04:50:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:50:53.853+03	2021-05-24 04:50:53.865+03	
d0ec3651-1949-c76d-ea57-05e3f6303805	2021-05-24 04:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:51:14.852+03	2021-05-24 04:51:14.858+03	
0262abe4-1c98-4f64-e9b7-57754de864e4	2021-05-24 04:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:51:34.853+03	2021-05-24 04:51:34.859+03	
07312249-48a8-0d34-7955-8e885107410d	2021-05-24 04:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:51:54.853+03	2021-05-24 04:51:54.859+03	
4b8306d0-9594-df31-7bf6-19da244eb9ec	2021-05-24 04:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:52:15.853+03	2021-05-24 04:52:15.86+03	
a13ff427-6fee-dd5b-7317-074aac4c9d51	2021-05-24 04:52:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:52:36.852+03	2021-05-24 04:52:36.858+03	
9ac68faf-3e60-0858-080f-77da78e3405b	2021-05-24 04:52:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:52:56.853+03	2021-05-24 04:52:56.86+03	
fd839d68-98ce-b073-e35f-e70e4bd472f1	2021-05-24 04:53:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:53:17.853+03	2021-05-24 04:53:17.862+03	
5c77d2c8-5b61-324e-87d9-598338baf2b5	2021-05-24 04:53:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:53:38.852+03	2021-05-24 04:53:38.858+03	
035c3512-7b48-acb8-1b7b-6fb07edb5693	2021-05-24 04:53:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:53:59.853+03	2021-05-24 04:53:59.861+03	
2d4f8ee0-7244-aeef-6294-6dd914dacb68	2021-05-24 04:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:54:20.853+03	2021-05-24 04:54:20.86+03	
ffa213a9-7e35-41c5-a3f4-7e7c9a239d15	2021-05-24 04:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:54:40.853+03	2021-05-24 04:54:40.872+03	
f9aa45e5-ef6d-83d8-e13e-ee7b4f9e7571	2021-05-24 04:55:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:55:01.852+03	2021-05-24 04:55:01.858+03	
9fbe120f-cb9e-7647-b068-518125f07097	2021-05-24 04:55:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:55:22.852+03	2021-05-24 04:55:22.859+03	
b9d5e808-a5e3-78f8-e15b-ed0eb8be8523	2021-05-24 04:55:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:55:42.853+03	2021-05-24 04:55:42.859+03	
e6a59a78-9d33-5ec0-4b45-fa5225a6aaad	2021-05-24 04:56:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:56:02.853+03	2021-05-24 04:56:02.859+03	
3a8dfe6a-5d8c-b8b1-5799-051752368dda	2021-05-24 04:56:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:56:23.852+03	2021-05-24 04:56:23.861+03	
0305a537-6565-60d1-65e3-5ef4ca46837b	2021-05-24 04:56:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:56:43.852+03	2021-05-24 04:56:43.859+03	
73887d7f-b33e-04e9-668e-b870ad29726b	2021-05-24 04:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:57:04.853+03	2021-05-24 04:57:04.859+03	
045fc0e0-c506-e8d7-e6c0-eb00e81c31a1	2021-05-24 04:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:57:25.852+03	2021-05-24 04:57:25.859+03	
72969d25-f91d-a5a2-6365-d0a033e48c7c	2021-05-24 04:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:57:45.853+03	2021-05-24 04:57:45.86+03	
41230ea1-7356-b5f0-03e2-a7296d468758	2021-05-24 04:58:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:58:06.852+03	2021-05-24 04:58:06.859+03	
2daed8c7-1be6-4a87-1fac-f63e51400706	2021-05-24 04:58:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:58:27.853+03	2021-05-24 04:58:27.859+03	
4c11af25-9af4-8ce6-079b-a319aed13138	2021-05-24 04:58:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:58:47.853+03	2021-05-24 04:58:47.859+03	
07ed2078-61ea-9896-3c78-e026416e16ba	2021-05-24 04:59:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:59:07.853+03	2021-05-24 04:59:07.859+03	
55b5a8e1-1b86-6c93-8de4-aaa9160845aa	2021-05-24 04:59:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:59:27.853+03	2021-05-24 04:59:27.862+03	
b604f300-8331-da30-e0f6-199874257180	2021-05-24 04:59:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 04:59:48.852+03	2021-05-24 04:59:48.859+03	
8fbc94e9-e579-329a-59eb-03800038c567	2021-05-24 05:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 05:00:00.853+03	2021-05-24 05:00:00.859+03	ERROR
34929cd0-9c37-fc1f-6ac7-1a6b45429fc5	2021-05-24 05:00:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:00:19.852+03	2021-05-24 05:00:19.874+03	
3c071fa6-e22c-81a8-30ac-cfcacfafdadf	2021-05-24 05:00:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:00:39.853+03	2021-05-24 05:00:39.86+03	
42ac16ca-304b-4f55-b459-5fb44a7baa27	2021-05-24 05:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:01:00.853+03	2021-05-24 05:01:00.859+03	
d001009a-c139-dedd-21a0-d5a1358de6a8	2021-05-24 05:01:21.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:01:21.854+03	2021-05-24 05:01:21.864+03	
6949d147-4102-1731-3f73-2df8cb2f43ce	2021-05-24 05:01:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:01:43.853+03	2021-05-24 05:01:43.86+03	
11f8acff-5ff1-e317-de89-3a71a76b6f24	2021-05-24 05:02:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:02:03.853+03	2021-05-24 05:02:03.86+03	
8a5b6632-e348-9919-54f2-33dd674d335b	2021-05-24 05:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:02:25.853+03	2021-05-24 05:02:25.864+03	
516264fa-cb46-f8b5-2a0f-0f6c13669de0	2021-05-24 05:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:02:45.853+03	2021-05-24 05:02:45.859+03	
e0fee156-3cf3-d4bc-7679-d818eea14cf5	2021-05-24 05:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:03:05.853+03	2021-05-24 05:03:05.859+03	
351ac01a-bb15-836e-4b61-56ed02c1b9ab	2021-05-24 05:03:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:03:26.852+03	2021-05-24 05:03:26.859+03	
87945e27-3dc3-db3a-2529-d60015575991	2021-05-24 05:03:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:03:46.852+03	2021-05-24 05:03:46.859+03	
94b26b5a-ead7-9fb4-0a48-45a38d3ba7b4	2021-05-24 05:04:06.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:04:06.853+03	2021-05-24 05:04:06.861+03	
b2e9182b-dd04-7ea0-3441-0ec991d805b9	2021-05-24 05:04:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:04:27.852+03	2021-05-24 05:04:27.859+03	
2e16b3bf-4a5f-c8e7-967e-d67ce697ff42	2021-05-24 05:04:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:04:47.852+03	2021-05-24 05:04:47.859+03	
8becceee-88c2-684f-d957-2e8699981cfd	2021-05-24 05:05:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:05:07.853+03	2021-05-24 05:05:07.859+03	
0b0516f3-bbe3-3468-789b-499903234965	2021-05-24 05:05:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:05:29.852+03	2021-05-24 05:05:29.86+03	
771b0bc2-ea27-306a-ca8f-64a6461a9b2a	2021-05-24 05:05:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:05:39.853+03	2021-05-24 05:05:39.858+03	
e7d8c1a0-d50f-811a-1359-283e84f4e8aa	2021-05-24 05:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:06:00.853+03	2021-05-24 05:06:00.861+03	
8d3c7022-699d-4552-ced1-9c89fbe1be57	2021-05-24 05:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:06:20.853+03	2021-05-24 05:06:20.859+03	
3316f4aa-ca56-f45f-f6c5-53a769c77b80	2021-05-24 05:06:40.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:06:40.86+03	2021-05-24 05:06:40.874+03	
70461946-4f87-d61f-4dd8-34c442f82407	2021-05-24 05:07:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:07:01.853+03	2021-05-24 05:07:01.859+03	
d564a9ff-3fa9-ce91-e51f-e4b096680cf4	2021-05-24 05:07:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:07:22.852+03	2021-05-24 05:07:22.858+03	
41e4d550-ed2d-0ed4-cdee-d48a884cb266	2021-05-24 05:07:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:07:42.853+03	2021-05-24 05:07:42.86+03	
fea9b598-5fd9-af38-995b-a876af17d30d	2021-05-24 05:08:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:08:03.852+03	2021-05-24 05:08:03.858+03	
1e8aa552-4124-b183-1509-fa0e65b42ca1	2021-05-24 05:08:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:08:23.852+03	2021-05-24 05:08:23.859+03	
9c791872-f0e3-905f-94a0-f8a9a8ab889c	2021-05-24 05:08:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:08:43.853+03	2021-05-24 05:08:43.86+03	
5c478b38-455f-9b1e-c85a-1cd8c19c2536	2021-05-24 05:09:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:09:03.853+03	2021-05-24 05:09:03.859+03	
4b766a22-8111-1b90-13f6-351b64bd209f	2021-05-24 05:09:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:09:23.853+03	2021-05-24 05:09:23.859+03	
b0738ea0-88d0-28e5-908b-cc68f5b87653	2021-05-24 05:09:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:09:44.852+03	2021-05-24 05:09:44.859+03	
9e6a7487-da1f-80fd-4198-079e21a1b0e5	2021-05-24 05:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 05:10:00.852+03	2021-05-24 05:10:00.857+03	ERROR
0e673af1-905b-8e06-c571-43173b043f69	2021-05-24 05:10:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:10:14.853+03	2021-05-24 05:10:14.862+03	
a8059cff-abb9-8436-b4c2-bd8ae92f6118	2021-05-24 05:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:10:35.853+03	2021-05-24 05:10:35.859+03	
4367fcd5-a743-c7d2-e992-707504e2215a	2021-05-24 05:10:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:10:57.853+03	2021-05-24 05:10:57.869+03	
c273d53f-2ee9-2810-8094-1e04b60e554d	2021-05-24 05:11:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:11:18.853+03	2021-05-24 05:11:18.859+03	
c72f8a7a-0866-68b3-141a-9e77465f67d3	2021-05-24 05:11:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:11:39.852+03	2021-05-24 05:11:39.859+03	
10e8cd90-7506-cdc8-c3b5-6a99978d9693	2021-05-24 05:11:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:11:59.853+03	2021-05-24 05:11:59.859+03	
cac879d6-90bf-016e-6b81-24bbc8297211	2021-05-24 05:12:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:12:20.853+03	2021-05-24 05:12:20.859+03	
8eb79fe8-4e5d-2c11-195d-38b4f40c4cb0	2021-05-24 05:12:41.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:12:41.854+03	2021-05-24 05:12:41.861+03	
ca89f7ea-49cf-44b0-dc3e-1eede3dc6a7d	2021-05-24 05:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:13:02.853+03	2021-05-24 05:13:02.859+03	
0c54eac1-e91c-c51c-96b8-7d9322fbb170	2021-05-24 05:13:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:13:23.853+03	2021-05-24 05:13:23.859+03	
b12f5d2f-1ee7-74cb-9710-678676abcf67	2021-05-24 05:13:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:13:44.852+03	2021-05-24 05:13:44.859+03	
b71e0ddb-2328-1ac1-a9e7-ef7f46132ea3	2021-05-24 05:14:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:14:04.852+03	2021-05-24 05:14:04.859+03	
ee87df6c-e776-6711-553f-e91bd8f28a42	2021-05-24 05:14:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:14:24.853+03	2021-05-24 05:14:24.859+03	
74099f3a-5f26-9266-9789-82ff0d4c3442	2021-05-24 05:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:14:45.853+03	2021-05-24 05:14:45.868+03	
f40a7737-5858-22d6-4cda-e380410bc9d9	2021-05-24 05:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:15:05.853+03	2021-05-24 05:15:05.86+03	
e4d04fdb-3169-c11a-1b4a-8ad6f89c81c4	2021-05-24 05:15:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:15:26.853+03	2021-05-24 05:15:26.86+03	
79186545-1bf5-09ef-cd88-4bc4da33f00f	2021-05-24 05:15:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:15:47.853+03	2021-05-24 05:15:47.87+03	
8d366b75-03ae-af40-e139-831ed8c0aea0	2021-05-24 05:16:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:16:08.852+03	2021-05-24 05:16:08.859+03	
42046af6-1711-3ebe-bb77-85d91662f68a	2021-05-24 05:16:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:16:29.852+03	2021-05-24 05:16:29.858+03	
a512e646-f495-c28f-7a6e-25e802ff22a6	2021-05-24 05:16:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:16:49.853+03	2021-05-24 05:16:49.858+03	
acc2a31d-fc3a-8033-d4fe-38bcc73c76cd	2021-05-24 05:17:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:17:10.852+03	2021-05-24 05:17:10.859+03	
f0d2b051-0960-50c7-39d0-579cc896be0d	2021-05-24 05:17:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:17:30.852+03	2021-05-24 05:17:30.859+03	
d6634843-f25a-45bb-921c-706c67580798	2021-05-24 05:17:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:17:50.853+03	2021-05-24 05:17:50.859+03	
e13b5a34-382e-1e39-7122-8a2d9dc069cd	2021-05-24 05:18:11.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:18:11.852+03	2021-05-24 05:18:11.859+03	
3953f364-6bf6-7924-ae34-43ab584bed7d	2021-05-24 05:18:31.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:18:31.853+03	2021-05-24 05:18:31.86+03	
b2594b15-a313-7f76-ad36-63b8715b5ce9	2021-05-24 05:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:18:52.853+03	2021-05-24 05:18:52.858+03	
094de684-10da-eeda-84b9-9259cf065e44	2021-05-24 05:19:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:19:13.852+03	2021-05-24 05:19:13.859+03	
51c0cca1-2a4a-6d43-07ec-97ed731f9f5e	2021-05-24 05:19:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:19:33.853+03	2021-05-24 05:19:33.861+03	
0e854622-76e3-46fc-d21a-d22e58ac5a08	2021-05-24 05:19:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:19:54.852+03	2021-05-24 05:19:54.859+03	
2b9802d4-bde2-8e6b-d9cc-60efa51545ab	2021-05-24 05:20:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:20:04.852+03	2021-05-24 05:20:04.858+03	
abb9bdb9-cac9-26bf-2f75-a77b0167bde3	2021-05-24 05:20:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:20:24.852+03	2021-05-24 05:20:24.864+03	
9fffb490-b338-5af7-3452-e410b01e10bf	2021-05-24 05:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:20:45.852+03	2021-05-24 05:20:45.859+03	
11d02dd0-1427-172e-5549-8b51db71f0c3	2021-05-24 05:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:21:05.852+03	2021-05-24 05:21:05.859+03	
8949a122-f773-a4a0-5fdb-6e5e784f2438	2021-05-24 05:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:21:25.853+03	2021-05-24 05:21:25.861+03	
7b5031e0-2df1-0ef9-9dc2-bd13834e889d	2021-05-24 05:21:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:21:46.852+03	2021-05-24 05:21:46.86+03	
baf262bb-dae3-f173-46c7-1b5a968f54c7	2021-05-24 05:22:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:22:06.852+03	2021-05-24 05:22:06.859+03	
5032341e-f679-f259-47fc-97e8f3cfee3e	2021-05-24 05:22:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:22:26.853+03	2021-05-24 05:22:26.859+03	
73834542-500a-8c3a-3dd3-f62358573d34	2021-05-24 05:22:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:22:47.852+03	2021-05-24 05:22:47.859+03	
be436a1a-8769-4885-ff62-8302f9cb737d	2021-05-24 05:23:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:23:07.853+03	2021-05-24 05:23:07.861+03	
ccfb785a-6743-9084-ec9a-5064e864cc78	2021-05-24 05:23:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:23:28.852+03	2021-05-24 05:23:28.858+03	
770b08ce-1b13-5bf3-2df7-4fc99de1bf46	2021-05-24 05:23:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:23:48.853+03	2021-05-24 05:23:48.861+03	
f0ba6f1b-add2-4131-f74f-ae5ebe263504	2021-05-24 05:24:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:24:09.853+03	2021-05-24 05:24:09.861+03	
460ddc26-7a15-88a1-49bd-9d06091f8356	2021-05-24 05:24:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:24:29.853+03	2021-05-24 05:24:29.859+03	
b66f1e71-8d3d-17df-39dc-2d12bc1415fd	2021-05-24 05:24:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:24:50.852+03	2021-05-24 05:24:50.858+03	
bc27b747-13bb-d833-f93e-b33864997e15	2021-05-24 05:25:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:25:10.853+03	2021-05-24 05:25:10.859+03	
7e0a9d7b-de1a-7551-787e-917e6158fdab	2021-05-24 05:25:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:25:31.852+03	2021-05-24 05:25:31.863+03	
84d1a4e2-95e7-53e1-4741-b9581ae5fa71	2021-05-24 05:25:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:25:51.853+03	2021-05-24 05:25:51.86+03	
ab79886e-d127-283e-b8c3-bb4afade9d02	2021-05-24 05:26:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:26:12.852+03	2021-05-24 05:26:12.86+03	
d7e97c4b-b25a-2e1d-7f8d-fb0773b5dd0f	2021-05-24 05:26:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:26:32.853+03	2021-05-24 05:26:32.859+03	
1480d567-5371-d4ff-b7aa-e6815b6a1881	2021-05-24 05:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:05:50.853+03	2021-05-24 05:05:50.858+03	
2d9c5546-6467-a3b0-d922-f880be5d9a6b	2021-05-24 05:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:06:10.853+03	2021-05-24 05:06:10.872+03	
c4e8a429-8437-3bd9-878d-9ec5e3c44db4	2021-05-24 05:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:06:30.853+03	2021-05-24 05:06:30.863+03	
51d2435e-1e3f-5e7c-fdfc-c39eb8607469	2021-05-24 05:06:51.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:06:51.853+03	2021-05-24 05:06:51.873+03	
eb9ac58c-a849-eded-7965-761103af1d40	2021-05-24 05:07:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:07:12.852+03	2021-05-24 05:07:12.858+03	
7146c7a4-b8b1-c98e-f6e8-5865d6c020ed	2021-05-24 05:07:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:07:32.853+03	2021-05-24 05:07:32.86+03	
b444ac02-6e75-c87d-cb8f-90e63bfc7f28	2021-05-24 05:07:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:07:52.853+03	2021-05-24 05:07:52.86+03	
911063b9-e106-96ba-64cf-a204f9ad678a	2021-05-24 05:08:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:08:13.852+03	2021-05-24 05:08:13.859+03	
9fcaea13-7a94-deb4-a4af-2faede80e058	2021-05-24 05:08:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:08:33.853+03	2021-05-24 05:08:33.867+03	
cb9464ce-f5fb-82e2-f44e-c734c7a913bb	2021-05-24 05:08:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:08:53.853+03	2021-05-24 05:08:53.86+03	
b355f24b-3607-f49c-dc3c-18293ab02985	2021-05-24 05:09:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:09:13.853+03	2021-05-24 05:09:13.859+03	
7813afd4-ec9c-894a-0775-c4ff0a963fd0	2021-05-24 05:09:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:09:34.852+03	2021-05-24 05:09:34.859+03	
633a8de1-864f-08af-500d-8e04dfe32e26	2021-05-24 05:09:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:09:54.852+03	2021-05-24 05:09:54.86+03	
861fa2d8-3909-4e82-1582-9920bde8a58b	2021-05-24 05:10:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:10:04.852+03	2021-05-24 05:10:04.859+03	
63edc866-df2e-4855-5251-1f914a5a4c58	2021-05-24 05:10:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:10:24.853+03	2021-05-24 05:10:24.861+03	
8ee72040-1756-c631-d156-5d6aa9ab5785	2021-05-24 05:10:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:10:46.853+03	2021-05-24 05:10:46.86+03	
109cf071-e7b7-67b7-d4a3-ad29f89d0110	2021-05-24 05:11:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:11:08.853+03	2021-05-24 05:11:08.859+03	
fff099ef-30b6-22cf-ef4c-891054eb729d	2021-05-24 05:11:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:11:28.853+03	2021-05-24 05:11:28.861+03	
ea7db4da-c064-3d50-26c2-ccfb587b2198	2021-05-24 05:11:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:11:49.852+03	2021-05-24 05:11:49.859+03	
9d0e0b1a-409e-69dd-8a18-93ae5fc93e87	2021-05-24 05:12:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:12:10.853+03	2021-05-24 05:12:10.86+03	
bd0cd90b-9ea3-d139-958f-5844920e9913	2021-05-24 05:12:31.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:12:31.853+03	2021-05-24 05:12:31.859+03	
ea88d13f-7450-bc85-f50b-b444a24a8f68	2021-05-24 05:12:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:12:52.853+03	2021-05-24 05:12:52.859+03	
6ea64a21-2e64-ff80-7b97-604a93efc327	2021-05-24 05:13:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:13:13.853+03	2021-05-24 05:13:13.859+03	
386b459d-c10f-95db-e8c2-47edfeda5719	2021-05-24 05:13:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:13:33.853+03	2021-05-24 05:13:33.859+03	
8de4d46e-8b52-5956-b142-d5a98daaed97	2021-05-24 05:13:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:13:54.852+03	2021-05-24 05:13:54.859+03	
3cb413de-cdfb-3b59-5b8d-c4b55e0aa787	2021-05-24 05:14:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:14:14.853+03	2021-05-24 05:14:14.859+03	
4831326b-4b76-1a07-bc3a-7527ed504036	2021-05-24 05:14:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:14:34.853+03	2021-05-24 05:14:34.863+03	
1d8bf149-88ad-1a4e-84b9-883c444a476e	2021-05-24 05:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:14:55.853+03	2021-05-24 05:14:55.86+03	
5bee65ae-1c2e-ccea-d020-17c699e971c5	2021-05-24 05:15:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:15:16.852+03	2021-05-24 05:15:16.871+03	
b780773f-a19b-c092-ea8e-c56cb0e31ded	2021-05-24 05:15:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:15:37.852+03	2021-05-24 05:15:37.858+03	
9416e23d-4527-7065-66e7-3341f47294c8	2021-05-24 05:15:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:15:58.852+03	2021-05-24 05:15:58.859+03	
5003feff-56b9-d082-306a-7dfc636c49b2	2021-05-24 05:16:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:16:18.853+03	2021-05-24 05:16:18.86+03	
a7bd3fea-f9d8-51db-8f5a-329c20a8bea1	2021-05-24 05:16:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:16:39.853+03	2021-05-24 05:16:39.859+03	
6ced763e-8ef5-d5ab-cbdd-22de2318995c	2021-05-24 05:16:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:16:59.853+03	2021-05-24 05:16:59.858+03	
9a4fd384-6e0c-0b36-afd5-a697c00e7ccb	2021-05-24 05:17:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:17:20.852+03	2021-05-24 05:17:20.859+03	
a3d03c97-bb89-2fc8-35e1-378a7f7dd1e4	2021-05-24 05:17:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:17:40.852+03	2021-05-24 05:17:40.868+03	
accda4c9-50ad-cb51-f1d5-8720a50c89b0	2021-05-24 05:18:01.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:18:01.852+03	2021-05-24 05:18:01.859+03	
b6136e55-6a28-c542-5b59-eb096d7cebf8	2021-05-24 05:18:21.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:18:21.853+03	2021-05-24 05:18:21.859+03	
724709a2-6938-e061-d8dd-30ac32e6a22a	2021-05-24 05:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:18:42.852+03	2021-05-24 05:18:42.859+03	
0def32c8-7307-ae58-ea82-5f64eb9bb483	2021-05-24 05:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:19:02.853+03	2021-05-24 05:19:02.864+03	
0bfe6752-7e26-b7cf-86e1-69ff1a521064	2021-05-24 05:19:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:19:23.852+03	2021-05-24 05:19:23.858+03	
a3ee75ff-d9d2-954d-b73c-968ba27ef636	2021-05-24 05:19:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:19:43.853+03	2021-05-24 05:19:43.859+03	
6d45496f-b085-ac8e-494c-bedc897402f2	2021-05-24 05:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 05:20:00.852+03	2021-05-24 05:20:00.857+03	ERROR
6620919c-fd74-a12d-dfb0-f80ff81ce44d	2021-05-24 05:20:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:20:14.852+03	2021-05-24 05:20:14.859+03	
8cd71504-74fb-9904-00db-92188ef41156	2021-05-24 05:20:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:20:34.853+03	2021-05-24 05:20:34.859+03	
09206392-37b3-471d-752d-458895e1db36	2021-05-24 05:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:20:55.852+03	2021-05-24 05:20:55.86+03	
83e2fa3d-297d-f6ec-8131-cc3b95d9dcb8	2021-05-24 05:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:21:15.852+03	2021-05-24 05:21:15.859+03	
091fa975-a00f-1aeb-975e-df5ea473fb35	2021-05-24 05:21:36.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:21:36.852+03	2021-05-24 05:21:36.859+03	
b8835549-05d2-5bc1-1456-a8b3393a944f	2021-05-24 05:21:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:21:56.852+03	2021-05-24 05:21:56.859+03	
488a2296-3769-bab3-8ae1-edcdc7ecbd22	2021-05-24 05:22:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:22:16.852+03	2021-05-24 05:22:16.858+03	
fb93b2a4-39d0-5cd6-5814-d736890fd174	2021-05-24 05:22:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:22:36.853+03	2021-05-24 05:22:36.859+03	
a98970be-0746-927c-2980-b8197b39bd4c	2021-05-24 05:22:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:22:57.852+03	2021-05-24 05:22:57.86+03	
15d11562-b541-bfa2-a02e-a2bdc11b393e	2021-05-24 05:23:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:23:18.852+03	2021-05-24 05:23:18.859+03	
691621f8-fb7c-2c25-1409-fb0f7ba76add	2021-05-24 05:23:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:23:38.852+03	2021-05-24 05:23:38.859+03	
21671d27-b13c-721f-5371-680de58132e7	2021-05-24 05:23:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:23:59.853+03	2021-05-24 05:23:59.859+03	
b4ea5831-5e0d-1fbd-066c-5a695de38517	2021-05-24 05:24:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:24:19.853+03	2021-05-24 05:24:19.86+03	
9dddd197-e8de-e9fd-8751-a1ff7073f1b7	2021-05-24 05:24:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:24:40.852+03	2021-05-24 05:24:40.858+03	
b0ab2644-0b22-d6e3-dca1-47d87df7ebae	2021-05-24 05:25:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:25:00.853+03	2021-05-24 05:25:00.86+03	
42cc14b0-0c25-f04e-8b66-509424b97664	2021-05-24 05:25:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:25:20.853+03	2021-05-24 05:25:20.859+03	
001afe77-36a2-fa6d-ae90-3a45bd42e114	2021-05-24 05:25:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:25:41.853+03	2021-05-24 05:25:41.859+03	
4eb5e48f-6bcc-fdfb-4c70-c7ca34180a27	2021-05-24 05:26:01.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:26:01.853+03	2021-05-24 05:26:01.86+03	
2d7485c4-3a21-de71-c442-e96c678b1077	2021-05-24 05:26:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:26:22.852+03	2021-05-24 05:26:22.858+03	
f7315024-b59e-9eb8-ca17-0b5c8f766cde	2021-05-24 05:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:26:43.852+03	2021-05-24 05:26:43.859+03	
096b1851-4cad-7732-f966-0471a7a1c6f7	2021-05-24 05:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:26:53.852+03	2021-05-24 05:26:53.859+03	
83364774-0476-ddc2-7bb7-efe78299da9a	2021-05-24 05:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:27:13.853+03	2021-05-24 05:27:13.859+03	
0fa64317-5549-e7ef-fbb6-74a8186a238d	2021-05-24 05:27:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:27:34.853+03	2021-05-24 05:27:34.859+03	
f2102a21-69be-7f76-7791-a1be674997cf	2021-05-24 05:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:27:55.852+03	2021-05-24 05:27:55.858+03	
028323ed-74bf-119c-920a-8911f16a6add	2021-05-24 05:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:28:15.853+03	2021-05-24 05:28:15.86+03	
4169a81c-4393-5db7-f675-4dd0facf5a04	2021-05-24 05:28:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:28:36.852+03	2021-05-24 05:28:36.859+03	
64e21020-a5b2-8b22-455d-ef708bfd492d	2021-05-24 05:28:56.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:28:56.852+03	2021-05-24 05:28:56.859+03	
9e09b5f2-0be5-8fbe-960d-54ffbafdfad8	2021-05-24 05:29:16.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:29:16.852+03	2021-05-24 05:29:16.859+03	
0df08f85-ac5a-bd27-1b84-f53341be8518	2021-05-24 05:29:36.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:29:36.854+03	2021-05-24 05:29:36.861+03	
d447e812-bbcc-a727-2453-12e9be3b9adf	2021-05-24 05:29:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:29:57.852+03	2021-05-24 05:29:57.86+03	
45016f8f-7ca7-309e-8da6-1b5909ff6084	2021-05-24 05:30:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:30:07.852+03	2021-05-24 05:30:07.859+03	
b5deb0cd-9a80-911d-169b-7f33115a46c2	2021-05-24 05:30:27.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:30:27.852+03	2021-05-24 05:30:27.861+03	
d4800735-01b4-7e3a-5741-f66065d67f15	2021-05-24 05:30:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:30:48.852+03	2021-05-24 05:30:48.86+03	
4b7d098e-4469-be30-bf32-542c726fc775	2021-05-24 05:31:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:31:08.852+03	2021-05-24 05:31:08.866+03	
2bed81d7-ad21-281a-a630-c9038fe666c2	2021-05-24 05:31:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:31:28.853+03	2021-05-24 05:31:28.861+03	
fb2c7cf0-5750-c631-7980-331028eb6039	2021-05-24 05:31:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:31:49.852+03	2021-05-24 05:31:49.859+03	
4b049c80-53aa-1f34-d0b1-3deea0b96b4c	2021-05-24 05:32:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:32:10.852+03	2021-05-24 05:32:10.859+03	
7cf9bb4e-f442-fe89-0f83-f267b723259c	2021-05-24 05:32:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:32:30.853+03	2021-05-24 05:32:30.859+03	
af30ad18-290f-b147-95df-76c37b0e4b1a	2021-05-24 05:32:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:32:52.852+03	2021-05-24 05:32:52.859+03	
76c161fd-fa4c-2e29-3129-459376ce16d8	2021-05-24 05:33:12.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:33:12.852+03	2021-05-24 05:33:12.912+03	
b8c5572f-5bcd-4444-4494-ca2da5736747	2021-05-24 05:33:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:33:32.852+03	2021-05-24 05:33:32.859+03	
655c8444-e0a2-ed0c-94ab-b05cfffe1a1c	2021-05-24 05:33:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:33:52.852+03	2021-05-24 05:33:52.859+03	
3b12adde-0683-fab2-e9a6-cc04dc8000ac	2021-05-24 05:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:34:13.852+03	2021-05-24 05:34:13.859+03	
108925fb-a0f7-0a71-b905-6745d66c21ea	2021-05-24 05:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:34:33.853+03	2021-05-24 05:34:33.86+03	
e6622bce-611e-a19a-3984-403bb0dde345	2021-05-24 05:34:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:34:54.852+03	2021-05-24 05:34:54.859+03	
7878b897-6c29-48e6-55ea-76bea01ce61a	2021-05-24 05:35:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:35:14.852+03	2021-05-24 05:35:14.868+03	
92bfac9b-c0f4-0db6-129e-804cf5cca7fd	2021-05-24 05:35:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:35:34.853+03	2021-05-24 05:35:34.86+03	
2353737f-497d-790c-2d93-99025d1dd410	2021-05-24 05:35:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:35:54.853+03	2021-05-24 05:35:54.859+03	
962921db-61ad-246e-b288-47411b5a522b	2021-05-24 05:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:36:15.853+03	2021-05-24 05:36:15.859+03	
f9c1f552-a47c-0458-8325-3f8ca0371c69	2021-05-24 05:36:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:36:37.853+03	2021-05-24 05:36:37.859+03	
4f506797-46b9-0dc3-9008-f8bdd80ffd88	2021-05-24 05:36:57.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:36:57.853+03	2021-05-24 05:36:57.862+03	
ee272ce9-fb1e-85b8-e7af-e3fbe7d0d8fb	2021-05-24 05:37:17.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:37:17.862+03	2021-05-24 05:37:17.872+03	
6f2e582f-a62e-3653-0895-640d22721dfb	2021-05-24 05:37:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:37:38.853+03	2021-05-24 05:37:38.861+03	
09579aa4-6495-85c5-d603-8415ab1b6b52	2021-05-24 05:37:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:37:58.853+03	2021-05-24 05:37:58.861+03	
76a2c612-6dd2-527a-ca33-45d11a9a5809	2021-05-24 05:38:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:38:18.853+03	2021-05-24 05:38:18.863+03	
8e461eaa-c220-6699-8f60-02cfdd0f0dcf	2021-05-24 05:38:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:38:38.853+03	2021-05-24 05:38:38.861+03	
68652f29-3a14-7e92-64bd-f5a7a2dd2a2d	2021-05-24 05:38:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:38:58.853+03	2021-05-24 05:38:58.862+03	
65c19ff8-683f-8016-48d7-985211e97043	2021-05-24 05:39:18.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:39:18.853+03	2021-05-24 05:39:18.884+03	
b3f81ed2-26d8-74a1-0d27-6dc1f6154fdb	2021-05-24 05:39:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:39:38.853+03	2021-05-24 05:39:38.862+03	
10f6680d-f20e-b936-0227-63adfe874391	2021-05-24 05:39:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:39:58.853+03	2021-05-24 05:39:58.865+03	
4022a93f-44ea-44d6-a316-ad55d4adea92	2021-05-24 05:40:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:40:08.853+03	2021-05-24 05:40:08.86+03	
44f7c1e9-7b71-dc08-f36b-a76772b5f312	2021-05-24 05:40:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:40:28.853+03	2021-05-24 05:40:28.86+03	
8a718ad3-75ca-3e5a-181f-2a5a2a7e539b	2021-05-24 05:40:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:40:48.853+03	2021-05-24 05:40:48.86+03	
f2d08c7f-3dde-cc6b-cda3-404412cfcaff	2021-05-24 05:41:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:41:08.853+03	2021-05-24 05:41:08.86+03	
c03bbe88-126d-fc82-4c32-823418dd293a	2021-05-24 05:41:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:41:28.853+03	2021-05-24 05:41:28.861+03	
f5fa437b-e5b7-0afb-8f23-f40a61acff3c	2021-05-24 05:41:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:41:48.853+03	2021-05-24 05:41:48.861+03	
949e8b4e-4fa6-8e7b-6cc5-c589a910eddf	2021-05-24 05:42:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:42:08.853+03	2021-05-24 05:42:08.86+03	
bdf7dea2-b037-8742-44bd-5d8aca3711f6	2021-05-24 05:42:28.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:42:28.853+03	2021-05-24 05:42:28.865+03	
034555a1-6fca-157b-9ba4-50dac047176e	2021-05-24 05:42:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:42:48.853+03	2021-05-24 05:42:48.86+03	
dbc10c38-ede6-1ad5-5ef7-bab490d8fa10	2021-05-24 05:43:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:43:08.853+03	2021-05-24 05:43:08.861+03	
73788ddf-f0ec-e00d-37d5-6c35ff79107a	2021-05-24 05:43:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:43:28.853+03	2021-05-24 05:43:28.86+03	
1109e68a-f21e-0612-ab83-5589a1c64106	2021-05-24 05:43:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:43:49.853+03	2021-05-24 05:43:49.86+03	
23142eb4-a026-561f-4b11-4d8630cbb80c	2021-05-24 05:44:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:44:09.853+03	2021-05-24 05:44:09.86+03	
1bda9e2d-ca8c-b0cb-b3e8-3c3b32626976	2021-05-24 05:44:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:44:29.853+03	2021-05-24 05:44:29.86+03	
d48f72e1-b1e2-6c55-8eb6-5fd4164b07ed	2021-05-24 05:44:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:44:49.853+03	2021-05-24 05:44:49.86+03	
1df0d2bc-7f3f-d648-0062-7a6341ff89d2	2021-05-24 05:45:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:45:09.853+03	2021-05-24 05:45:09.863+03	
a5e05e1a-e46e-3962-d7c7-68e3df12bef4	2021-05-24 05:45:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:45:29.853+03	2021-05-24 05:45:29.86+03	
43e4064c-8c38-abee-a678-c859322996c2	2021-05-24 05:45:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:45:49.853+03	2021-05-24 05:45:49.86+03	
1bac0c41-98ee-a92b-e5d8-c8126542bf12	2021-05-24 05:46:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:46:09.853+03	2021-05-24 05:46:09.86+03	
cb459586-434e-70f4-e7d0-9ec8f7bfe275	2021-05-24 05:46:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:46:29.853+03	2021-05-24 05:46:29.862+03	
610ae786-a29f-adfe-2391-22f47dbdadbb	2021-05-24 05:46:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:46:49.853+03	2021-05-24 05:46:49.861+03	
35b8b856-cb82-0390-ffa8-d10da0910e31	2021-05-24 05:47:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:47:09.853+03	2021-05-24 05:47:09.861+03	
6cc10885-8222-09a8-999f-322b43aaad74	2021-05-24 05:47:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:47:29.853+03	2021-05-24 05:47:29.86+03	
352d8d89-04ec-7490-4d31-ce900dfc36e1	2021-05-24 05:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:27:03.853+03	2021-05-24 05:27:03.869+03	
ad25e09e-8e37-696d-462f-fb56b18fa235	2021-05-24 05:27:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:27:24.852+03	2021-05-24 05:27:24.858+03	
7b8c7475-a2f4-05d2-47ac-d15ad17bb141	2021-05-24 05:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:27:45.852+03	2021-05-24 05:27:45.859+03	
f6ee47a9-848e-b2b4-4c78-362589920a7b	2021-05-24 05:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:28:05.853+03	2021-05-24 05:28:05.86+03	
bd0214d0-b641-d9e9-3d5f-0f64bc6b1781	2021-05-24 05:28:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:28:26.852+03	2021-05-24 05:28:26.859+03	
f4610b22-df2c-a204-5371-02d71f1be8a6	2021-05-24 05:28:46.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:28:46.852+03	2021-05-24 05:28:46.858+03	
a3792a01-0444-e0ba-fb05-4eec58f8f88e	2021-05-24 05:29:06.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:29:06.852+03	2021-05-24 05:29:06.866+03	
5c5dfe35-ea12-bff3-62e8-fc389b1be0ae	2021-05-24 05:29:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:29:26.852+03	2021-05-24 05:29:26.875+03	
7b7e02db-4825-ea3a-6dfc-65beabac1874	2021-05-24 05:29:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:29:47.852+03	2021-05-24 05:29:47.859+03	
e4e7df70-9f03-e505-b5fe-a4b5dae71a76	2021-05-24 05:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 05:30:00.852+03	2021-05-24 05:30:00.857+03	ERROR
dc55fba4-f589-9e43-46da-eed8842ac46d	2021-05-24 05:30:17.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:30:17.852+03	2021-05-24 05:30:17.859+03	
d7db8b33-35e6-fcbb-6d99-c047d9e766e5	2021-05-24 05:30:37.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:30:37.853+03	2021-05-24 05:30:37.87+03	
e397d520-39a9-078a-44a0-10d7778c6ca5	2021-05-24 05:30:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:30:58.852+03	2021-05-24 05:30:58.859+03	
59ef53a0-7797-04ea-ef5f-a78025e3c1a3	2021-05-24 05:31:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:31:18.853+03	2021-05-24 05:31:18.859+03	
876b5351-3824-7a07-b9ac-cabcb221df79	2021-05-24 05:31:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:31:38.853+03	2021-05-24 05:31:38.859+03	
1ed29694-9bff-6a4e-61e7-bc49580bf1e3	2021-05-24 05:31:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:31:59.853+03	2021-05-24 05:31:59.859+03	
a82cc769-2e28-255f-2892-7078eb9689ee	2021-05-24 05:32:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:32:20.852+03	2021-05-24 05:32:20.859+03	
c98cc2ad-8951-a31f-7955-5ba45a72caaa	2021-05-24 05:32:41.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:32:41.853+03	2021-05-24 05:32:41.859+03	
2ece84f9-548f-eb12-45eb-ae2dac0bc96f	2021-05-24 05:33:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:33:02.852+03	2021-05-24 05:33:02.859+03	
d673a98d-5df7-e1d2-0d8e-587f97f6f690	2021-05-24 05:33:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:33:22.852+03	2021-05-24 05:33:22.858+03	
d96c3ab4-1966-98f2-afdf-3e86f60eb452	2021-05-24 05:33:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:33:42.852+03	2021-05-24 05:33:42.86+03	
cb74eed9-415a-dd08-91f8-417ed81cdcb3	2021-05-24 05:34:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:34:02.853+03	2021-05-24 05:34:02.861+03	
5f80965f-64f9-3138-baad-c059192f08e0	2021-05-24 05:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:34:23.853+03	2021-05-24 05:34:23.859+03	
70085cc5-495e-13f7-016c-343c2774f877	2021-05-24 05:34:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:34:44.852+03	2021-05-24 05:34:44.859+03	
970f677e-2aca-9e6d-6ab0-57a134bde96b	2021-05-24 05:35:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:35:04.852+03	2021-05-24 05:35:04.859+03	
73c0bc71-7246-e103-4154-7b9706dd1249	2021-05-24 05:35:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:35:24.852+03	2021-05-24 05:35:24.859+03	
f043dff5-306b-b964-1e82-10526dab1276	2021-05-24 05:35:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:35:44.853+03	2021-05-24 05:35:44.859+03	
df032073-a9dc-8a1c-b177-65efd4222d82	2021-05-24 05:36:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:36:04.853+03	2021-05-24 05:36:04.859+03	
01f287ec-cac6-ee32-c10f-9681e95ed0ed	2021-05-24 05:36:26.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:36:26.853+03	2021-05-24 05:36:26.859+03	
0aaee297-1958-13b7-c3b5-c994a7e7688d	2021-05-24 05:36:47.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:36:47.853+03	2021-05-24 05:36:47.859+03	
d9b72b47-5d2c-6b3b-81c1-475d31fd1625	2021-05-24 05:37:07.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:37:07.853+03	2021-05-24 05:37:07.86+03	
af8d7035-aa25-ecc2-5f77-9b7ee10e29d7	2021-05-24 05:37:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:37:28.853+03	2021-05-24 05:37:28.861+03	
21c8a2af-891d-8483-1b41-6c925339c170	2021-05-24 05:37:48.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:37:48.853+03	2021-05-24 05:37:48.866+03	
c6a04f2e-b2e8-ddf2-4f82-3cee3433bb27	2021-05-24 05:38:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:38:08.853+03	2021-05-24 05:38:08.861+03	
f721120f-a498-17ab-b564-20b69557714f	2021-05-24 05:38:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:38:28.853+03	2021-05-24 05:38:28.866+03	
203e506f-99f9-12df-bd06-d52e1072e840	2021-05-24 05:38:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:38:48.853+03	2021-05-24 05:38:48.861+03	
644702a7-996b-e69d-b0c4-404c77410695	2021-05-24 05:39:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:39:08.853+03	2021-05-24 05:39:08.861+03	
e27932e5-03d6-942b-d377-501f14554bc4	2021-05-24 05:39:28.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:39:28.853+03	2021-05-24 05:39:28.861+03	
a3721768-9bef-0e05-9c47-58707a244acb	2021-05-24 05:39:48.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:39:48.853+03	2021-05-24 05:39:48.861+03	
98478057-fb8f-629a-792e-2e953a94ce21	2021-05-24 05:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 05:40:00.853+03	2021-05-24 05:40:00.86+03	ERROR
1b24077c-6ea1-ece3-7afc-b8d7acd4bf7b	2021-05-24 05:40:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:40:18.853+03	2021-05-24 05:40:18.86+03	
fbe7333d-a912-a908-007b-0ad63038459b	2021-05-24 05:40:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:40:38.853+03	2021-05-24 05:40:38.86+03	
cc7340fe-7363-f03f-332d-03ea1bde40cf	2021-05-24 05:40:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:40:58.853+03	2021-05-24 05:40:58.86+03	
f67716aa-5399-1fb3-fb45-203e73a076c7	2021-05-24 05:41:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:41:18.853+03	2021-05-24 05:41:18.868+03	
6ef747e9-3260-3541-a8d3-7c9898423cf3	2021-05-24 05:41:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:41:38.853+03	2021-05-24 05:41:39.338+03	
5f0c0f98-2966-acb0-da52-249ab9e0b52e	2021-05-24 05:41:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:41:58.853+03	2021-05-24 05:41:58.862+03	
21ab27cb-7e52-fbd5-0ea5-fe5e67312f42	2021-05-24 05:42:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:42:18.853+03	2021-05-24 05:42:18.862+03	
0394993f-b095-4326-ec32-f1261d16ca80	2021-05-24 05:42:38.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:42:38.853+03	2021-05-24 05:42:38.86+03	
c1c00ef2-9e3b-0c85-f0bc-55d53f3ddc17	2021-05-24 05:42:58.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:42:58.853+03	2021-05-24 05:42:58.86+03	
21223f33-0bc1-ecb1-1d95-bc3af8c26bb7	2021-05-24 05:43:18.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:43:18.853+03	2021-05-24 05:43:18.86+03	
bb452e58-859f-7664-394a-1edc2ea4cac2	2021-05-24 05:43:38.856	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:43:38.856+03	2021-05-24 05:43:38.863+03	
4c2c3bd7-6091-1166-30e1-14f3a4fcb770	2021-05-24 05:43:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:43:59.853+03	2021-05-24 05:43:59.861+03	
17c21443-9c12-675e-fd6e-ddcde773f706	2021-05-24 05:44:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:44:19.853+03	2021-05-24 05:44:19.86+03	
bc02ef9d-6d68-9068-3c10-71be1e62f551	2021-05-24 05:44:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:44:39.853+03	2021-05-24 05:44:39.86+03	
12df7942-d1d2-839d-b4a1-83d3b120afbf	2021-05-24 05:44:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:44:59.853+03	2021-05-24 05:44:59.86+03	
51d70923-29c8-0e0c-9977-76fa1e90dca0	2021-05-24 05:45:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:45:19.853+03	2021-05-24 05:45:19.863+03	
80769e39-84f3-5264-827e-5ca84189d58b	2021-05-24 05:45:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:45:39.853+03	2021-05-24 05:45:39.861+03	
ef0f71eb-e256-e2cf-95d0-5e1a102063c9	2021-05-24 05:45:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:45:59.853+03	2021-05-24 05:45:59.86+03	
977c2dee-3079-11de-d29f-54cceeeec093	2021-05-24 05:46:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:46:19.853+03	2021-05-24 05:46:19.86+03	
d92ca403-5a77-884b-10be-433407d6ca58	2021-05-24 05:46:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:46:39.853+03	2021-05-24 05:46:39.86+03	
fa81d4db-0e5a-af42-e062-a505fdf16f85	2021-05-24 05:46:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:46:59.853+03	2021-05-24 05:46:59.86+03	
a128aa41-c521-f18a-eb11-4de9f0f0992b	2021-05-24 05:47:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:47:19.853+03	2021-05-24 05:47:19.86+03	
2524e994-4eb0-ce56-5468-70ce7e350f78	2021-05-24 05:47:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:47:39.853+03	2021-05-24 05:47:39.86+03	
95ece8f8-ac02-a04d-6a46-c4016bc3242f	2021-05-24 05:47:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:47:49.853+03	2021-05-24 05:47:49.861+03	
f7c8bfb2-baf3-587e-a76c-a0b0a1daa704	2021-05-24 05:48:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:48:09.853+03	2021-05-24 05:48:09.86+03	
47fc134b-4711-6984-f829-786776a8f88d	2021-05-24 05:48:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:48:29.853+03	2021-05-24 05:48:29.86+03	
98a9dd8e-d6ec-c6c2-4438-235038197ece	2021-05-24 05:48:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:48:49.853+03	2021-05-24 05:48:49.86+03	
51af68c1-c4fb-2b04-2d50-48592829a2fb	2021-05-24 05:49:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:49:09.853+03	2021-05-24 05:49:09.861+03	
b33defe8-402d-8097-ed4a-d0a31f26f116	2021-05-24 05:49:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:49:29.853+03	2021-05-24 05:49:29.86+03	
702150af-8591-1ccf-e021-1ab63cfc13b3	2021-05-24 05:49:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:49:49.853+03	2021-05-24 05:49:49.86+03	
64a709c6-865c-19d5-3b23-383d07171d7a	2021-05-24 05:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 05:50:00.853+03	2021-05-24 05:50:00.858+03	ERROR
727d7ec9-e1b8-06b1-90e5-0c5429759e04	2021-05-24 05:50:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:50:19.853+03	2021-05-24 05:50:19.86+03	
18f7c5a9-a56e-d1b3-d040-4d7c46d2d611	2021-05-24 05:50:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:50:39.853+03	2021-05-24 05:50:39.86+03	
5c3004e1-a20a-b73c-5011-17cae3c3f9ff	2021-05-24 05:50:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:50:59.853+03	2021-05-24 05:50:59.86+03	
2dcead2d-31e7-249e-7ee7-3ac9dcfb932a	2021-05-24 05:51:19.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:51:19.86+03	2021-05-24 05:51:19.868+03	
3a7f43c1-b22f-5948-93ef-b16fb1d37ac5	2021-05-24 05:51:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:51:40.853+03	2021-05-24 05:51:40.86+03	
68bb1a2f-fcb0-4c1c-f515-cff1d529b508	2021-05-24 05:52:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:52:00.853+03	2021-05-24 05:52:00.86+03	
fa2160bc-dcdf-fb60-1c79-75a0af10e510	2021-05-24 05:52:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:52:20.853+03	2021-05-24 05:52:20.862+03	
710536d3-5026-e1cf-82c9-fb014be63e49	2021-05-24 05:52:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:52:40.853+03	2021-05-24 05:52:40.86+03	
d58d219a-fbec-aef3-aa06-7a3b72c465e1	2021-05-24 05:53:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:53:00.853+03	2021-05-24 05:53:00.861+03	
ff93fdc4-8327-ec7c-a7e8-f054ff5ba5b8	2021-05-24 05:53:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:53:20.853+03	2021-05-24 05:53:20.86+03	
a120f1d2-f6cc-c959-29bf-4cbf961dab2c	2021-05-24 05:53:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:53:40.853+03	2021-05-24 05:53:40.86+03	
179792f3-1cf7-aa4f-89a1-dc590f276504	2021-05-24 05:54:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:54:00.853+03	2021-05-24 05:54:00.861+03	
ab522720-3292-88bd-4bf5-d53bfca881b2	2021-05-24 05:54:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:54:20.853+03	2021-05-24 05:54:20.861+03	
71ba8133-8bc0-73e3-7e87-be518c4c3690	2021-05-24 05:54:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:54:40.853+03	2021-05-24 05:54:40.86+03	
8d044261-2611-553d-0591-337d70c40df5	2021-05-24 05:55:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:55:00.853+03	2021-05-24 05:55:00.86+03	
d8fad358-ba3b-b793-7329-fa14dc66e948	2021-05-24 05:55:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:55:20.853+03	2021-05-24 05:55:20.861+03	
a376ed81-98dc-6559-2af0-9cf83cb8f684	2021-05-24 05:55:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:55:40.853+03	2021-05-24 05:55:40.86+03	
2f97578d-7cf3-b8e7-a1d8-52d62f3b1daa	2021-05-24 05:56:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:56:00.853+03	2021-05-24 05:56:00.863+03	
6e4432ce-2e64-b300-01ec-0eddaa9ad0ef	2021-05-24 05:56:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:56:20.853+03	2021-05-24 05:56:20.86+03	
2ed1c2ca-8429-d5cf-d529-0b59378fa157	2021-05-24 05:56:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:56:40.853+03	2021-05-24 05:56:40.861+03	
e56aa752-4950-99fd-4d90-d4e7650a188e	2021-05-24 05:57:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:57:00.853+03	2021-05-24 05:57:00.86+03	
f58a382f-841b-f886-82a9-4f113c99451e	2021-05-24 05:57:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:57:20.853+03	2021-05-24 05:57:20.86+03	
34edb759-b2a1-ec83-56d3-9430716264a4	2021-05-24 05:57:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:57:40.853+03	2021-05-24 05:57:40.86+03	
991bb08c-090b-990c-0433-88736e3e9a03	2021-05-24 05:58:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:58:00.853+03	2021-05-24 05:58:00.862+03	
41a2be30-3bee-4d1c-dc62-dc8b8e0af2fe	2021-05-24 05:58:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:58:20.853+03	2021-05-24 05:58:20.86+03	
878ccc9b-f82d-5028-e015-aa38833bff74	2021-05-24 05:58:40.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:58:40.853+03	2021-05-24 05:58:40.861+03	
57dd8ff9-8abb-97dc-44b9-40d7353e8e13	2021-05-24 05:59:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:59:00.853+03	2021-05-24 05:59:00.86+03	
68cf65bf-c21d-77bc-3fd2-59e5e37f51f4	2021-05-24 05:59:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:59:20.853+03	2021-05-24 05:59:20.86+03	
c5852280-130f-d7a2-f591-554cc2dc2030	2021-05-24 05:59:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:59:40.853+03	2021-05-24 05:59:40.862+03	
71f3398a-0b38-5602-64c7-2744d803bb39	2021-05-24 05:59:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:59:50.853+03	2021-05-24 05:59:50.86+03	
2885ae6e-9aa6-33f0-b997-c7f16b4990bc	2021-05-24 06:00:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:00:10.853+03	2021-05-24 06:00:10.86+03	
4817f745-956c-332b-e5ff-2d3e61fbe357	2021-05-24 06:00:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:00:30.853+03	2021-05-24 06:00:30.859+03	
5953e936-b1a9-711f-6b3d-e276b627c8dc	2021-05-24 06:00:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:00:50.853+03	2021-05-24 06:00:50.86+03	
32178c2f-a264-b294-4ad1-74c702cdebbf	2021-05-24 06:01:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:01:10.853+03	2021-05-24 06:01:10.862+03	
b560887c-18fb-ec9d-8057-a78d4e6c4e3f	2021-05-24 06:01:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:01:30.853+03	2021-05-24 06:01:30.86+03	
9b3316ee-8826-dbd8-d84a-eace83bf3af3	2021-05-24 06:01:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:01:50.853+03	2021-05-24 06:01:50.86+03	
e6f1b267-cb6f-15ac-be02-3c81b270de40	2021-05-24 06:02:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:02:10.853+03	2021-05-24 06:02:10.86+03	
69d2716b-cde5-626c-2216-347d14125a78	2021-05-24 06:02:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:02:30.853+03	2021-05-24 06:02:30.861+03	
80ef3b3e-fa5f-250a-ff8e-2e825b31954c	2021-05-24 06:02:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:02:50.853+03	2021-05-24 06:02:50.86+03	
eb097914-fcd8-d9e3-87b1-a8ed2362fabe	2021-05-24 06:03:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:03:10.853+03	2021-05-24 06:03:10.86+03	
c6432e9d-1c52-bbc6-96a6-6257aa9094dc	2021-05-24 06:03:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:03:30.853+03	2021-05-24 06:03:30.86+03	
c09179a4-8566-bc16-e8bc-537fd5c7fa36	2021-05-24 06:03:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:03:50.853+03	2021-05-24 06:03:50.86+03	
e6bf1bb7-3580-3078-314b-6550715ba871	2021-05-24 06:04:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:04:10.853+03	2021-05-24 06:04:10.861+03	
d621a5c9-8ba6-951f-c4d5-d43a0ab9b9af	2021-05-24 06:04:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:04:30.853+03	2021-05-24 06:04:30.86+03	
64406860-6fdb-55f3-c212-07e21645fab3	2021-05-24 06:04:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:04:50.853+03	2021-05-24 06:04:50.86+03	
ad4cb815-7a2a-4d06-9e2f-f92dfe3f4330	2021-05-24 06:05:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:05:10.853+03	2021-05-24 06:05:10.86+03	
de96f40a-e54a-abfd-ba38-3b6ce4961053	2021-05-24 06:05:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:05:30.853+03	2021-05-24 06:05:30.86+03	
ba89fc57-d1d8-8131-c582-88057bd93b4d	2021-05-24 06:05:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:05:50.853+03	2021-05-24 06:05:50.86+03	
6c22e1e4-069d-61cf-a2b0-f05c0bda5314	2021-05-24 06:06:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:06:10.853+03	2021-05-24 06:06:10.86+03	
12833127-b915-67a5-250f-92084b6fb69c	2021-05-24 06:06:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:06:30.853+03	2021-05-24 06:06:30.861+03	
b1b1311a-834e-1588-16da-26143fc27c53	2021-05-24 06:06:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:06:50.853+03	2021-05-24 06:06:50.86+03	
09f6a1e7-33a9-bea3-4ca1-5629ba3db2be	2021-05-24 06:07:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:07:10.853+03	2021-05-24 06:07:10.86+03	
7e2df732-985e-667f-d97c-6d11c07ee424	2021-05-24 06:07:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:07:30.853+03	2021-05-24 06:07:30.86+03	
40aefed2-fb26-a7f6-e1cc-e4d8f8aa0e11	2021-05-24 06:07:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:07:50.853+03	2021-05-24 06:07:50.86+03	
e1dc919d-f7d7-dd31-114f-53140ac68478	2021-05-24 06:08:11.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:08:11.854+03	2021-05-24 06:08:11.861+03	
02df6693-5e3f-aa55-1787-7986eb5b4d9e	2021-05-24 05:47:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:47:59.853+03	2021-05-24 05:47:59.862+03	
cd7ea27a-c6f5-4386-2481-0eaf381c9e5f	2021-05-24 05:48:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:48:19.853+03	2021-05-24 05:48:19.86+03	
89597796-ff11-50dc-50a3-0b28a611dc50	2021-05-24 05:48:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:48:39.853+03	2021-05-24 05:48:39.86+03	
31978d03-cafc-b294-f13b-6bb8eada61cb	2021-05-24 05:48:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:48:59.853+03	2021-05-24 05:48:59.86+03	
041d8a2c-2699-f332-4416-780c8de9c2f2	2021-05-24 05:49:19.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:49:19.853+03	2021-05-24 05:49:19.863+03	
50cabb15-87c1-e971-39e7-57614a95a8bb	2021-05-24 05:49:39.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:49:39.853+03	2021-05-24 05:49:39.86+03	
8ac36388-45d8-180f-22a4-c10e824681e8	2021-05-24 05:49:59.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:49:59.853+03	2021-05-24 05:49:59.861+03	
f4420a78-3df0-35df-bcd8-b189dd04390e	2021-05-24 05:50:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:50:09.853+03	2021-05-24 05:50:09.86+03	
9bda1c9f-cdf7-e7f6-fd7e-795aa3726046	2021-05-24 05:50:29.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:50:29.853+03	2021-05-24 05:50:29.86+03	
35636c38-d9c0-30cf-fc34-b9095dd9c850	2021-05-24 05:50:49.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:50:49.853+03	2021-05-24 05:50:49.86+03	
df747be4-ff8a-b798-90fb-6ca5db9f61bd	2021-05-24 05:51:09.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:51:09.853+03	2021-05-24 05:51:09.861+03	
4ebadaab-ec8b-24fb-525a-7dbcc5804387	2021-05-24 05:51:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:51:30.853+03	2021-05-24 05:51:30.86+03	
bcd4ed8f-d5f5-77a3-1085-2ba9ae1047e6	2021-05-24 05:51:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:51:50.853+03	2021-05-24 05:51:50.86+03	
ba49bda4-f119-3739-ffdf-20a389e50d5f	2021-05-24 05:52:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:52:10.853+03	2021-05-24 05:52:10.86+03	
905c1eda-96fc-cb29-dae3-a8a6b6fa732c	2021-05-24 05:52:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:52:30.853+03	2021-05-24 05:52:30.86+03	
995b2c77-b2d7-4e61-0e08-fb17b14050a6	2021-05-24 05:52:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:52:50.853+03	2021-05-24 05:52:50.86+03	
96b90e7b-76d8-b8a9-3361-15fc6672d36b	2021-05-24 05:53:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:53:10.853+03	2021-05-24 05:53:10.861+03	
e1e1daa1-70cf-02b7-70a9-0319e72e9030	2021-05-24 05:53:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:53:30.853+03	2021-05-24 05:53:30.868+03	
11ee6dea-5b90-07f2-dde0-e7bd8a3e9325	2021-05-24 05:53:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:53:50.853+03	2021-05-24 05:53:50.861+03	
fdd1ba40-4ac3-bd6e-ef90-0ff7b1f530cf	2021-05-24 05:54:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:54:10.853+03	2021-05-24 05:54:10.86+03	
a74eb5a0-2cd4-2319-60c0-ed741c5fe1c2	2021-05-24 05:54:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:54:30.853+03	2021-05-24 05:54:30.86+03	
7f70787b-4c48-6109-fb82-25ce9a7700b1	2021-05-24 05:54:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:54:50.853+03	2021-05-24 05:54:50.86+03	
937f7ddf-a5eb-3e7d-c8a4-004489c6efa7	2021-05-24 05:55:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:55:10.853+03	2021-05-24 05:55:10.86+03	
9e5262a4-5469-d0ed-d289-d4abc373133c	2021-05-24 05:55:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:55:30.853+03	2021-05-24 05:55:30.86+03	
3fc71eab-a8ef-1d42-9827-287f818bcd67	2021-05-24 05:55:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:55:50.853+03	2021-05-24 05:55:50.86+03	
2565ff4b-3dad-136f-2def-5c8f488621de	2021-05-24 05:56:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:56:10.853+03	2021-05-24 05:56:10.86+03	
20fc92fd-7067-631b-26ba-b08f82fb8292	2021-05-24 05:56:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:56:30.853+03	2021-05-24 05:56:30.861+03	
8f8ee55e-caf2-5958-5c29-bea4a4d2e0b2	2021-05-24 05:56:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:56:50.853+03	2021-05-24 05:56:50.86+03	
53de4cf7-3e11-bfa9-9c9e-b125b164b5c0	2021-05-24 05:57:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:57:10.853+03	2021-05-24 05:57:10.861+03	
925db643-a464-b15c-88dc-d3a45f1ba7c4	2021-05-24 05:57:30.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:57:30.853+03	2021-05-24 05:57:30.86+03	
aeab2a59-7af7-fcc4-8986-f527ba46f9fa	2021-05-24 05:57:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:57:50.853+03	2021-05-24 05:57:50.86+03	
0576500b-e9c8-591e-bcb4-a4b33d17d8ba	2021-05-24 05:58:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:58:10.853+03	2021-05-24 05:58:10.86+03	
e68443f8-3270-f7f8-2658-91afc906b57e	2021-05-24 05:58:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:58:30.853+03	2021-05-24 05:58:30.86+03	
113c329b-91a5-c818-c633-864976b8244f	2021-05-24 05:58:50.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:58:50.853+03	2021-05-24 05:58:50.861+03	
0b6a07d9-2c32-a939-cb0f-565dd67e251a	2021-05-24 05:59:10.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:59:10.853+03	2021-05-24 05:59:10.86+03	
25c58b9d-ca80-2ff2-6dca-f0d7be28f503	2021-05-24 05:59:30.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 05:59:30.853+03	2021-05-24 05:59:30.86+03	
40733a5a-e161-ce6d-ad12-ed644c05ca7f	2021-05-24 06:00:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:00:00.853+03	2021-05-24 06:00:00.861+03	
738ea8c0-b37a-9609-7677-92da45b7ae7d	2021-05-24 06:00:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 06:00:00.853+03	2021-05-24 06:00:00.873+03	ERROR
bb658e4d-e1da-7215-64f6-6ffd684ae5bb	2021-05-24 06:00:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:00:20.853+03	2021-05-24 06:00:20.861+03	
f93e7715-4c70-4e9e-a936-886c14da5e5c	2021-05-24 06:00:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:00:40.853+03	2021-05-24 06:00:40.86+03	
58903bde-a9db-9b48-060e-926a5bb02f5f	2021-05-24 06:01:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:01:00.853+03	2021-05-24 06:01:00.86+03	
a1ae3ede-5e4b-3ecd-2ed0-c5709d902e0e	2021-05-24 06:01:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:01:20.853+03	2021-05-24 06:01:20.86+03	
abc542fb-639b-d3a1-f709-6cbf15788d13	2021-05-24 06:01:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:01:40.853+03	2021-05-24 06:01:40.861+03	
4024c061-a18b-6a35-e523-9ebf39c32a7c	2021-05-24 06:02:00.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:02:00.853+03	2021-05-24 06:02:00.86+03	
66a46224-24d0-49b8-1bba-ad2e51682259	2021-05-24 06:02:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:02:20.853+03	2021-05-24 06:02:20.86+03	
55e389af-48d4-557c-d7d6-d8de494eb549	2021-05-24 06:02:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:02:40.853+03	2021-05-24 06:02:40.861+03	
1143591d-165b-cecf-06bd-be3eb16bcaa4	2021-05-24 06:03:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:03:00.853+03	2021-05-24 06:03:00.86+03	
f216ba43-29af-5209-46b0-5311bde13e33	2021-05-24 06:03:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:03:20.853+03	2021-05-24 06:03:20.86+03	
41049b10-8ede-a746-af8b-108a97621cc8	2021-05-24 06:03:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:03:40.853+03	2021-05-24 06:03:40.86+03	
27df0c87-0bd3-cebc-2a6c-0a3bb035b16c	2021-05-24 06:04:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:04:00.853+03	2021-05-24 06:04:00.861+03	
a1b0df63-f56b-2851-5c94-5ddc5c384f88	2021-05-24 06:04:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:04:20.853+03	2021-05-24 06:04:20.86+03	
0344e3dd-177e-0fe0-07c2-413614079549	2021-05-24 06:04:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:04:40.853+03	2021-05-24 06:04:40.86+03	
696892aa-a1fa-be27-93de-27907a7f8f88	2021-05-24 06:05:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:05:00.853+03	2021-05-24 06:05:00.86+03	
5b602cd3-408a-6580-7f0d-8558ccb27834	2021-05-24 06:05:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:05:20.853+03	2021-05-24 06:05:20.86+03	
47f52506-2e1a-96af-2e73-1396aee49040	2021-05-24 06:05:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:05:40.853+03	2021-05-24 06:05:40.867+03	
cefe9972-bb8b-c636-2c87-badce8e739d4	2021-05-24 06:06:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:06:00.853+03	2021-05-24 06:06:00.86+03	
53ba0ca7-db30-abd6-6e04-cccb26ff455f	2021-05-24 06:06:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:06:20.853+03	2021-05-24 06:06:20.86+03	
41a5b890-a1c6-eac5-4b39-f7ef39bb97fb	2021-05-24 06:06:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:06:40.853+03	2021-05-24 06:06:40.86+03	
89795062-7d91-bd19-7a15-8b805afb0223	2021-05-24 06:07:00.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:07:00.853+03	2021-05-24 06:07:00.86+03	
d029a424-8c2d-3a19-be9e-22a3f0156b4a	2021-05-24 06:07:20.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:07:20.853+03	2021-05-24 06:07:20.86+03	
e646e9ce-20d6-98e7-77d9-6f750ed57f79	2021-05-24 06:07:40.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:07:40.853+03	2021-05-24 06:07:40.868+03	
623a568e-25ee-6134-5081-1d474b097020	2021-05-24 06:08:00.855	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:08:00.855+03	2021-05-24 06:08:00.863+03	
e3a5f774-faaa-3a9c-5255-1cdd0482be45	2021-05-24 06:08:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:08:22.853+03	2021-05-24 06:08:22.86+03	
cfe0443c-c84a-9407-3a82-1825fa2ec70b	2021-05-24 06:08:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:08:32.853+03	2021-05-24 06:08:32.861+03	
773cdcd4-f604-cf7b-fcfe-f2bc34aa7bf7	2021-05-24 06:08:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:08:52.853+03	2021-05-24 06:08:52.86+03	
606178c8-e18b-1023-7ce2-3c6ab3889c80	2021-05-24 06:09:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:09:12.853+03	2021-05-24 06:09:12.86+03	
9b54e350-344c-d0ec-06c0-ab7c21b4f990	2021-05-24 06:09:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:09:32.853+03	2021-05-24 06:09:32.86+03	
83baac4d-dc38-115e-a360-e0418c024c95	2021-05-24 06:09:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:09:52.853+03	2021-05-24 06:09:52.86+03	
bc9d220d-a452-a596-6408-e8f3ff9f8b7b	2021-05-24 06:10:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:10:02.853+03	2021-05-24 06:10:02.861+03	
0e2f57b8-0943-fa51-008e-95b62a99be8f	2021-05-24 06:10:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:10:22.853+03	2021-05-24 06:10:22.861+03	
68098b2c-1781-0095-5eef-ff0de1956a2d	2021-05-24 06:10:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:10:42.853+03	2021-05-24 06:10:42.86+03	
e8ebab43-8569-6455-30c7-e22a43cbf7b5	2021-05-24 06:11:02.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:11:02.853+03	2021-05-24 06:11:02.86+03	
5f26256b-c07e-43fa-156b-4c6ab5f9b4fe	2021-05-24 06:11:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:11:22.853+03	2021-05-24 06:11:22.861+03	
ff8be660-d9e4-5154-6972-d852fd0403ea	2021-05-24 06:11:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:11:42.853+03	2021-05-24 06:11:42.86+03	
ce4e0932-5555-e360-87c1-a5448904c56d	2021-05-24 06:12:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:12:02.853+03	2021-05-24 06:12:02.861+03	
99ce1884-ce51-18cb-5865-a70a7c893c00	2021-05-24 06:12:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:12:22.853+03	2021-05-24 06:12:22.862+03	
5998005c-a504-8557-d841-0f0180563649	2021-05-24 06:12:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:12:42.853+03	2021-05-24 06:12:42.861+03	
0acde461-ea4c-0310-808a-624aea351864	2021-05-24 06:13:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:13:02.853+03	2021-05-24 06:13:02.861+03	
a5406109-d904-f7b6-969d-e61e84a9eab3	2021-05-24 06:13:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:13:22.853+03	2021-05-24 06:13:22.861+03	
7e04a4de-8093-9656-3408-d00d76e8e525	2021-05-24 06:13:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:13:42.853+03	2021-05-24 06:13:42.86+03	
9a8d5b9a-727d-06e8-9810-6bc406951f0b	2021-05-24 06:14:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:14:02.853+03	2021-05-24 06:14:02.861+03	
14017845-b912-4538-02ae-e7e438426883	2021-05-24 06:14:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:14:22.853+03	2021-05-24 06:14:22.86+03	
6b473a9d-d900-867a-64e9-b9c861d0b489	2021-05-24 06:14:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:14:42.853+03	2021-05-24 06:14:42.86+03	
34879514-db1b-fca8-4b0a-115f11dc23ae	2021-05-24 06:15:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:15:02.853+03	2021-05-24 06:15:02.861+03	
d81516f2-b5b3-5348-637e-b0d8a99c85a0	2021-05-24 06:15:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:15:22.853+03	2021-05-24 06:15:22.86+03	
edca75f3-cc22-5cd3-913c-379b6374108d	2021-05-24 06:15:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:15:42.853+03	2021-05-24 06:15:42.86+03	
e84b6bf3-514b-e44d-96e8-cdc901c261ad	2021-05-24 06:16:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:16:02.853+03	2021-05-24 06:16:02.86+03	
1a70e278-3b99-d65d-5eff-66258d373929	2021-05-24 06:16:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:16:22.853+03	2021-05-24 06:16:22.86+03	
bcb58ebc-34b8-1611-dbd1-f6c77aebbe18	2021-05-24 06:16:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:16:42.853+03	2021-05-24 06:16:42.86+03	
5c223214-d824-d697-a7ac-ebc576f2fa02	2021-05-24 06:17:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:17:02.853+03	2021-05-24 06:17:02.86+03	
165c34cf-4fb4-d060-446f-93e4b35c137e	2021-05-24 06:17:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:17:22.853+03	2021-05-24 06:17:22.86+03	
9393c80e-217a-ac31-a448-92431fe212fd	2021-05-24 06:17:42.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:17:42.853+03	2021-05-24 06:17:42.861+03	
7bcb9c32-abeb-fe36-5bcd-02b5e9165504	2021-05-24 06:18:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:18:02.853+03	2021-05-24 06:18:02.86+03	
130022c2-b065-d8f2-eb75-7aa07865ad63	2021-05-24 06:18:22.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:18:22.853+03	2021-05-24 06:18:22.867+03	
de59af48-befc-780d-f1cd-efbf5df0a545	2021-05-24 06:18:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:18:42.853+03	2021-05-24 06:18:42.861+03	
37f34a6e-3b9f-a472-849a-0844cd3bc2ee	2021-05-24 06:19:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:19:02.853+03	2021-05-24 06:19:02.861+03	
b00de7a1-193a-68f6-affc-a14b88fdf4d5	2021-05-24 06:19:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:19:22.853+03	2021-05-24 06:19:22.861+03	
462d4954-320c-3707-201a-e1c830b0c117	2021-05-24 06:19:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:19:42.853+03	2021-05-24 06:19:42.86+03	
f39d9a75-c93b-8cf8-9d83-de9b644df90c	2021-05-24 06:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 06:20:00.853+03	2021-05-24 06:20:00.858+03	ERROR
24a6a4a9-135a-3092-990c-7b068cc1d9a8	2021-05-24 06:20:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:20:13.853+03	2021-05-24 06:20:13.861+03	
df41a7f6-a10c-b0a1-aea8-f38a9e04011e	2021-05-24 06:20:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:20:33.853+03	2021-05-24 06:20:33.864+03	
e375a4ac-7a41-0235-fb74-bb9c38491d8b	2021-05-24 06:20:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:20:53.853+03	2021-05-24 06:20:53.86+03	
158628c0-d586-99d7-fd83-23e079412ca7	2021-05-24 06:21:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:21:13.853+03	2021-05-24 06:21:13.86+03	
d769f3dc-bb87-5b09-5a98-5e6c08e6fb38	2021-05-24 06:21:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:21:33.853+03	2021-05-24 06:21:33.859+03	
02078958-c496-2a01-06d7-47996294ce3b	2021-05-24 06:21:53.86	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:21:53.853+03	2021-05-24 06:21:53.867+03	
e461f8b4-901e-45cf-8b07-6077c69d6933	2021-05-24 06:22:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:22:13.853+03	2021-05-24 06:22:13.861+03	
ce345af7-88fd-b359-6c74-906dd142aea2	2021-05-24 06:22:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:22:33.853+03	2021-05-24 06:22:33.86+03	
f04e2781-85bc-ea65-b952-a109cfbe5f08	2021-05-24 06:22:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:22:53.853+03	2021-05-24 06:22:53.861+03	
eb6f6772-71fa-3149-cf67-e8c984d1f33a	2021-05-24 06:23:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:23:13.853+03	2021-05-24 06:23:13.913+03	
525fa25c-cb27-863f-ac09-b6a03bdfd0d9	2021-05-24 06:23:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:23:33.853+03	2021-05-24 06:23:33.86+03	
c70d8f22-9437-073e-5198-b22b24de3556	2021-05-24 06:23:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:23:53.853+03	2021-05-24 06:23:53.866+03	
0791ffad-0f05-f8a1-1271-07f7f7052a64	2021-05-24 06:24:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:24:13.853+03	2021-05-24 06:24:13.862+03	
51f0a623-db25-aadc-9900-928d63181c45	2021-05-24 06:24:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:24:33.853+03	2021-05-24 06:24:33.86+03	
3530125f-e3d3-b5f1-6b0f-b5e1ea3ec458	2021-05-24 06:24:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:24:53.853+03	2021-05-24 06:24:53.861+03	
3980fd70-36fb-5a4f-9b2e-59880465fd0a	2021-05-24 06:25:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:25:13.853+03	2021-05-24 06:25:13.861+03	
e30f3796-c0bb-9d1e-1b77-1a8f733a0713	2021-05-24 06:25:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:25:33.853+03	2021-05-24 06:25:33.86+03	
ed2e3f85-2e1d-5dd0-0a96-dd16764bdb07	2021-05-24 06:25:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:25:53.853+03	2021-05-24 06:25:53.86+03	
4826ae4a-e65c-3b29-22ea-e2d5962e7885	2021-05-24 06:26:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:26:13.853+03	2021-05-24 06:26:13.908+03	
c0f276ce-33ef-df01-88c3-6709690179f4	2021-05-24 06:26:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:26:33.853+03	2021-05-24 06:26:33.861+03	
84c423d7-4241-5999-92ee-a1b87261b80a	2021-05-24 06:26:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:26:53.853+03	2021-05-24 06:26:53.86+03	
5181347e-b097-1bbc-2b6b-feb46475c494	2021-05-24 06:27:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:27:13.853+03	2021-05-24 06:27:13.859+03	
64ddecbd-7389-b940-70d2-ec3d0e87d6e2	2021-05-24 06:27:33.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:27:33.853+03	2021-05-24 06:27:33.866+03	
be6668b6-a91d-ed48-6405-031ed8ed3c00	2021-05-24 06:27:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:27:53.853+03	2021-05-24 06:27:53.86+03	
34566b26-e97a-ec34-e146-0e609990d56f	2021-05-24 06:28:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:28:13.853+03	2021-05-24 06:28:13.86+03	
3b02fa8b-a242-5120-8b40-3c4bd58da6a9	2021-05-24 06:28:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:28:33.853+03	2021-05-24 06:28:33.86+03	
317cfa12-bec6-3870-b680-3c10bc8de460	2021-05-24 06:28:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:28:53.853+03	2021-05-24 06:28:53.86+03	
c5eb885c-06dc-d8db-a176-1aa35a57cc0e	2021-05-24 06:08:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:08:42.853+03	2021-05-24 06:08:42.86+03	
ae3614f2-6294-7cb3-2f33-4a8d60497593	2021-05-24 06:09:02.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:09:02.853+03	2021-05-24 06:09:02.86+03	
a63f35a0-b5b3-5871-7f1e-753476492bdb	2021-05-24 06:09:22.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:09:22.853+03	2021-05-24 06:09:22.86+03	
67e4ceae-7b15-e485-4cc1-0030b35ee351	2021-05-24 06:09:42.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:09:42.853+03	2021-05-24 06:09:42.867+03	
36ab1852-76d4-cff2-c269-4924a6961bf0	2021-05-24 06:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 06:10:00.853+03	2021-05-24 06:10:00.858+03	ERROR
fc648ede-7fd5-03c5-0446-d37695469d0c	2021-05-24 06:10:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:10:12.853+03	2021-05-24 06:10:12.861+03	
96251629-3e8f-8806-afaa-c7bf81459673	2021-05-24 06:10:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:10:32.853+03	2021-05-24 06:10:32.86+03	
48a70b11-f607-9248-cbfb-2723ef2b0d80	2021-05-24 06:10:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:10:52.853+03	2021-05-24 06:10:52.86+03	
73e814f2-e39d-ec88-54de-12cc24949683	2021-05-24 06:11:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:11:12.853+03	2021-05-24 06:11:12.86+03	
e366b189-738a-08c1-ee1e-cdfdd72b871c	2021-05-24 06:11:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:11:32.853+03	2021-05-24 06:11:32.86+03	
5b56d89c-d8af-3538-f2ae-668d3045dce1	2021-05-24 06:11:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:11:52.853+03	2021-05-24 06:11:52.861+03	
7440803b-3f5b-bb71-1e5e-72603b104e0e	2021-05-24 06:12:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:12:12.853+03	2021-05-24 06:12:12.86+03	
bea33a63-d07b-9dcc-dc08-10920344d0b3	2021-05-24 06:12:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:12:32.853+03	2021-05-24 06:12:32.861+03	
abba72f4-b5d1-81bd-65e6-44a36fa724ad	2021-05-24 06:12:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:12:52.853+03	2021-05-24 06:12:52.861+03	
09062505-cb6c-7d9d-7c73-f51559fc028e	2021-05-24 06:13:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:13:12.853+03	2021-05-24 06:13:12.86+03	
8210049d-48f1-2b52-6d04-6b08c71806ae	2021-05-24 06:13:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:13:32.853+03	2021-05-24 06:13:32.861+03	
d2570b38-8a5b-4ff8-07a9-5494082b1ef2	2021-05-24 06:13:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:13:52.853+03	2021-05-24 06:13:52.862+03	
c5b21375-f9d9-8a0a-8440-ea9eacb8921f	2021-05-24 06:14:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:14:12.853+03	2021-05-24 06:14:12.862+03	
b133670b-60ec-d7b3-be52-a05dd1f8faa4	2021-05-24 06:14:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:14:32.853+03	2021-05-24 06:14:32.862+03	
f7695182-53f0-4735-3f27-a88a3dbc9067	2021-05-24 06:14:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:14:52.853+03	2021-05-24 06:14:52.862+03	
0a8b3f66-2620-bb37-3039-bce1ffe3e061	2021-05-24 06:15:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:15:12.853+03	2021-05-24 06:15:12.86+03	
8e405a46-9e15-d9d8-4fa3-628dfc831f97	2021-05-24 06:15:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:15:32.853+03	2021-05-24 06:15:32.861+03	
f9a5a3d3-5c91-982e-a24f-3d89e7b449ff	2021-05-24 06:15:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:15:52.853+03	2021-05-24 06:15:52.86+03	
9275683f-0807-3b91-a9b6-ec3262586d7b	2021-05-24 06:16:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:16:12.853+03	2021-05-24 06:16:12.86+03	
870549e0-c20c-2bfc-0b09-5ec07b2db030	2021-05-24 06:16:32.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:16:32.853+03	2021-05-24 06:16:32.863+03	
f8d749e3-aad0-63bf-663e-9f7befe8d2a5	2021-05-24 06:16:52.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:16:52.853+03	2021-05-24 06:16:52.86+03	
bdd56948-24ee-c131-c03f-bdd270aa9475	2021-05-24 06:17:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:17:12.853+03	2021-05-24 06:17:12.86+03	
851c435a-d226-df23-32f9-50d14209f00d	2021-05-24 06:17:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:17:32.853+03	2021-05-24 06:17:32.86+03	
b6452ae0-d97f-b44c-8580-5bff6cd72e68	2021-05-24 06:17:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:17:52.853+03	2021-05-24 06:17:52.86+03	
23096db4-8c00-fc66-7698-fbb4a8184738	2021-05-24 06:18:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:18:12.853+03	2021-05-24 06:18:12.861+03	
3b9377d3-ecde-6797-21af-498fcb9407ed	2021-05-24 06:18:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:18:32.853+03	2021-05-24 06:18:32.86+03	
7e905296-1bb6-edab-63ce-7eeeac639a85	2021-05-24 06:18:52.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:18:52.853+03	2021-05-24 06:18:52.86+03	
42620b70-3b4a-c4d9-4fe3-ad2248e238d4	2021-05-24 06:19:12.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:19:12.853+03	2021-05-24 06:19:12.861+03	
c7e7edf0-38f0-f840-c5c5-f1211c2b1490	2021-05-24 06:19:32.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:19:32.853+03	2021-05-24 06:19:32.86+03	
50b2f569-d1e7-4ced-f096-138248417fc2	2021-05-24 06:19:52.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:19:52.861+03	2021-05-24 06:19:52.868+03	
ce8c7f25-f6fd-5c01-7423-e47bb12d4cb1	2021-05-24 06:20:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:20:03.853+03	2021-05-24 06:20:03.86+03	
4bdde747-2f07-e52b-a11f-61497ff356de	2021-05-24 06:20:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:20:23.853+03	2021-05-24 06:20:23.86+03	
d5d835d0-de09-8a01-8953-563c106885a0	2021-05-24 06:20:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:20:43.853+03	2021-05-24 06:20:43.861+03	
eff299dc-afbc-e4b0-5760-6279f5b763d9	2021-05-24 06:21:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:21:03.853+03	2021-05-24 06:21:03.86+03	
f54a517b-98e9-0fd5-2442-ebfc8d71a22b	2021-05-24 06:21:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:21:23.853+03	2021-05-24 06:21:23.878+03	
e6d2c1b1-f85e-fcc9-918b-208de672abd9	2021-05-24 06:21:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:21:43.853+03	2021-05-24 06:21:43.866+03	
e862400b-0845-a739-04d5-fc1d0bd3b276	2021-05-24 06:22:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:22:03.853+03	2021-05-24 06:22:03.86+03	
5d803eef-99d1-67e3-78de-d9e799e3fe92	2021-05-24 06:22:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:22:23.853+03	2021-05-24 06:22:23.862+03	
42c102d4-41e6-da5d-818f-377b6506cbd8	2021-05-24 06:22:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:22:43.853+03	2021-05-24 06:22:43.861+03	
506d8015-afba-8d7f-e86a-3a402ca7865d	2021-05-24 06:23:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:23:03.853+03	2021-05-24 06:23:03.861+03	
d88304a5-79b1-eb3f-4059-32bc7970081f	2021-05-24 06:23:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:23:23.853+03	2021-05-24 06:23:23.86+03	
822c6159-f984-1e46-daae-df63313a78ec	2021-05-24 06:23:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:23:43.853+03	2021-05-24 06:23:43.912+03	
2a76895e-4537-9b12-10f2-62d7e0284a6a	2021-05-24 06:24:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:24:03.853+03	2021-05-24 06:24:03.863+03	
a0d4c497-acca-9883-0f33-7b557f46a586	2021-05-24 06:24:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:24:23.853+03	2021-05-24 06:24:23.863+03	
60457bcd-342e-7674-4887-d04a6e169ec4	2021-05-24 06:24:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:24:43.853+03	2021-05-24 06:24:43.911+03	
bd409531-7ae9-16ec-0d39-fc00e2b0e23b	2021-05-24 06:25:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:25:03.853+03	2021-05-24 06:25:03.861+03	
47290caf-399e-8b08-eec9-d2195793f725	2021-05-24 06:25:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:25:23.853+03	2021-05-24 06:25:23.861+03	
6743334f-cc2f-84e0-3d8b-15d836426904	2021-05-24 06:25:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:25:43.853+03	2021-05-24 06:25:43.861+03	
4600fa32-3148-3fe1-47f3-73a38d80ca99	2021-05-24 06:26:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:26:03.853+03	2021-05-24 06:26:03.86+03	
8a9628e7-7deb-05cf-0f42-fb9bca4fd130	2021-05-24 06:26:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:26:23.853+03	2021-05-24 06:26:23.86+03	
203ee7eb-0c05-1065-8a3e-b4516af8baa8	2021-05-24 06:26:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:26:43.853+03	2021-05-24 06:26:43.861+03	
54da8289-76b7-03dd-c7ee-dff90b3b7bc9	2021-05-24 06:27:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:27:03.853+03	2021-05-24 06:27:03.86+03	
fa090680-5fb6-b689-a2a2-f1479447ab69	2021-05-24 06:27:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:27:23.853+03	2021-05-24 06:27:23.86+03	
6a4cb7c9-71b5-483c-b51e-ae8627dd627c	2021-05-24 06:27:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:27:43.853+03	2021-05-24 06:27:43.861+03	
891cc2e5-40d6-895b-e2cc-ce38eef7ac39	2021-05-24 06:28:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:28:03.853+03	2021-05-24 06:28:03.86+03	
1b411dc7-e7d4-4e59-0dfc-432834d3f066	2021-05-24 06:28:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:28:23.853+03	2021-05-24 06:28:23.86+03	
aa7efb79-eaf5-0b75-2dc8-0886771389b9	2021-05-24 06:28:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:28:43.853+03	2021-05-24 06:28:43.905+03	
3f000aab-464d-7347-53d4-58941a729d4d	2021-05-24 06:29:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:29:03.853+03	2021-05-24 06:29:03.86+03	
78bdd16f-30b8-edb2-f84c-e40683c8ad5f	2021-05-24 06:29:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:29:13.853+03	2021-05-24 06:29:13.86+03	
8b69bd93-7524-6066-73b3-9de89753b377	2021-05-24 06:29:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:29:33.853+03	2021-05-24 06:29:33.86+03	
9e4b7801-0ea2-8f6d-bf9d-522dd71b1df7	2021-05-24 06:29:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:29:53.853+03	2021-05-24 06:29:53.86+03	
6a6f3aca-e615-357e-fc9f-f3e24ab91eba	2021-05-24 06:30:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:30:03.853+03	2021-05-24 06:30:03.862+03	
a272a353-99ee-b63b-67e2-135b797022b4	2021-05-24 06:30:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:30:23.853+03	2021-05-24 06:30:23.86+03	
9ab62646-e73e-9713-ed78-59c17da48c09	2021-05-24 06:30:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:30:43.853+03	2021-05-24 06:30:43.862+03	
603c30b9-31f2-6b09-3e60-599872edd4d3	2021-05-24 06:31:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:31:03.853+03	2021-05-24 06:31:03.863+03	
fef036c8-52f8-50c2-b36f-e364ef05c8d9	2021-05-24 06:31:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:31:23.853+03	2021-05-24 06:31:23.86+03	
ca184bb3-e217-531e-881d-3bf489303a66	2021-05-24 06:31:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:31:43.853+03	2021-05-24 06:31:43.86+03	
f44ceb5f-dd09-a458-b249-1e37a3c61628	2021-05-24 06:32:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:32:03.853+03	2021-05-24 06:32:03.861+03	
1504e4f3-70ee-91c1-ec96-4dd22ff0383c	2021-05-24 06:32:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:32:23.853+03	2021-05-24 06:32:23.86+03	
0dd090fd-45f9-cacc-8db7-ea38830474a2	2021-05-24 06:32:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:32:43.853+03	2021-05-24 06:32:43.86+03	
94dd4c57-9676-70fc-4ea2-cee1200fc184	2021-05-24 06:33:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:33:03.853+03	2021-05-24 06:33:03.86+03	
fdb9e1a9-4a0f-15b9-2e88-0e62e43844c6	2021-05-24 06:33:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:33:23.853+03	2021-05-24 06:33:23.86+03	
86b52412-d8c9-cc3a-2f50-aadf5d53df07	2021-05-24 06:33:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:33:43.853+03	2021-05-24 06:33:43.861+03	
03e5843c-e4c9-e5c7-4978-cc929b70fc0e	2021-05-24 06:34:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:34:03.853+03	2021-05-24 06:34:03.868+03	
f6c5bfef-87ee-11a6-1733-fdbabce796f6	2021-05-24 06:34:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:34:23.853+03	2021-05-24 06:34:23.86+03	
349d4d8d-c211-63d7-1d41-236bb4d86779	2021-05-24 06:34:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:34:43.853+03	2021-05-24 06:34:43.861+03	
25900c5a-fa50-f3f0-30c3-ad641af7df7e	2021-05-24 06:35:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:35:03.853+03	2021-05-24 06:35:03.86+03	
757b3897-40f1-ddbb-8ce4-be44ac4091cf	2021-05-24 06:35:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:35:23.853+03	2021-05-24 06:35:23.86+03	
c65a6ae0-f431-3545-75c7-6fdbe2243363	2021-05-24 06:35:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:35:43.853+03	2021-05-24 06:35:43.86+03	
143a1ec8-9bb5-4a04-4825-1262dd32ae43	2021-05-24 06:36:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:36:03.853+03	2021-05-24 06:36:03.868+03	
b99dbf09-de69-3c5d-5c91-4f4000e073e1	2021-05-24 06:36:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:36:23.853+03	2021-05-24 06:36:23.859+03	
88558182-f5e3-5741-d2f9-3cd9cb8a3541	2021-05-24 06:36:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:36:43.853+03	2021-05-24 06:36:43.86+03	
349a59a2-7edd-4542-0bcb-abb3d733569c	2021-05-24 06:37:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:37:03.853+03	2021-05-24 06:37:03.863+03	
2f9182e4-3cda-2314-b04d-45512ce8cead	2021-05-24 06:37:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:37:23.853+03	2021-05-24 06:37:23.86+03	
469f10b8-b7ab-20e6-fca7-3bf9b7af1885	2021-05-24 06:37:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:37:43.853+03	2021-05-24 06:37:43.86+03	
03dc3268-9501-cc94-4dc7-80547cd99e06	2021-05-24 06:38:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:38:03.853+03	2021-05-24 06:38:03.86+03	
a476c2f6-fe8c-cf65-b6f7-59938941e7a8	2021-05-24 06:38:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:38:23.853+03	2021-05-24 06:38:23.86+03	
13b60ead-d82f-a86f-4fef-e99543176e76	2021-05-24 06:38:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:38:43.853+03	2021-05-24 06:38:43.86+03	
0a2a2099-9b0b-24ff-9567-618d8e99c0d0	2021-05-24 06:39:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:39:03.853+03	2021-05-24 06:39:03.861+03	
486a69f7-d445-1072-0b52-e87191fb7484	2021-05-24 06:39:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:39:23.853+03	2021-05-24 06:39:23.86+03	
31d05c3a-354a-4289-875a-857218e14d53	2021-05-24 06:39:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:39:43.853+03	2021-05-24 06:39:43.86+03	
725f91fc-5d2c-72d5-8bac-268e15adc13f	2021-05-24 06:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 06:40:00.853+03	2021-05-24 06:40:00.858+03	ERROR
22525b6f-7780-e524-4274-a06b300b0364	2021-05-24 06:40:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:40:13.853+03	2021-05-24 06:40:13.861+03	
e8a70a63-08aa-63d0-fd3b-3eb1a82dcd22	2021-05-24 06:40:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:40:33.853+03	2021-05-24 06:40:33.861+03	
6d94ef22-57d5-6afc-fb55-39b8e9f1e25a	2021-05-24 06:40:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:40:53.853+03	2021-05-24 06:40:53.86+03	
cffcd694-905f-8250-6f84-3d35d1f80069	2021-05-24 06:41:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:41:13.853+03	2021-05-24 06:41:13.862+03	
7dfed11d-32aa-75b9-cd31-1261cbe169a7	2021-05-24 06:41:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:41:33.853+03	2021-05-24 06:41:33.86+03	
be071ce8-7476-f8ec-319c-82e9ca0097d3	2021-05-24 06:41:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:41:53.853+03	2021-05-24 06:41:53.86+03	
38c51d62-af51-d0ea-c143-6d9cc1690f09	2021-05-24 06:42:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:42:13.853+03	2021-05-24 06:42:13.86+03	
ee7b539d-b203-7125-226b-212818433591	2021-05-24 06:42:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:42:33.853+03	2021-05-24 06:42:33.861+03	
372f4958-a607-dbbd-1e9d-86b7efc49718	2021-05-24 06:42:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:42:53.853+03	2021-05-24 06:42:53.86+03	
910257fb-7c1c-a35d-2556-c9219606f6fc	2021-05-24 06:43:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:43:13.853+03	2021-05-24 06:43:13.86+03	
9f8baa34-4023-f856-57ae-8f08eabc702e	2021-05-24 06:43:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:43:33.853+03	2021-05-24 06:43:33.859+03	
088c062e-d07f-3ddd-8ba9-9a0dfd8465af	2021-05-24 06:43:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:43:53.853+03	2021-05-24 06:43:53.86+03	
7b01327b-d1b9-b934-5155-0c76a3200c7f	2021-05-24 06:44:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:44:13.853+03	2021-05-24 06:44:13.86+03	
1591046b-ea02-78fe-fb75-1ab81cfd3d30	2021-05-24 06:44:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:44:33.853+03	2021-05-24 06:44:33.86+03	
c989b072-b04e-aa68-055e-27b8d0d36227	2021-05-24 06:44:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:44:53.853+03	2021-05-24 06:44:53.863+03	
11c47f42-a43f-2b6f-a928-773a6e34d2b7	2021-05-24 06:45:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:45:13.853+03	2021-05-24 06:45:13.861+03	
e7e99dfe-25ec-5753-96d2-abb748f50af3	2021-05-24 06:45:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:45:33.853+03	2021-05-24 06:45:33.86+03	
df85408a-fc73-e014-e4f8-94e842ec3e56	2021-05-24 06:45:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:45:53.853+03	2021-05-24 06:45:53.862+03	
464ff6e0-a7a7-f300-9e82-2bf98aad80c1	2021-05-24 06:46:13.861	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:46:13.86+03	2021-05-24 06:46:13.867+03	
963a82cf-fa51-3b27-cd4f-82c202b88b2b	2021-05-24 06:46:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:46:34.853+03	2021-05-24 06:46:34.86+03	
49ebc078-2e6b-5ad1-8f00-45ede5fe72b0	2021-05-24 06:46:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:46:54.853+03	2021-05-24 06:46:54.86+03	
c9456763-0d63-26ae-afd4-c6be5458251b	2021-05-24 06:47:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:47:14.853+03	2021-05-24 06:47:14.861+03	
b581148b-e7a2-1192-b786-70ea784cf501	2021-05-24 06:47:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:47:34.853+03	2021-05-24 06:47:34.86+03	
92c97b62-d7d2-58a9-27ff-4b37339bdb76	2021-05-24 06:47:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:47:54.853+03	2021-05-24 06:47:54.876+03	
63f08ced-655f-bd2d-7e1c-603cad50c83d	2021-05-24 06:48:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:48:14.853+03	2021-05-24 06:48:14.868+03	
3e322c31-d948-b587-7935-7f231aee85e8	2021-05-24 06:48:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:48:34.853+03	2021-05-24 06:48:34.86+03	
119d8c71-c296-3e60-7c2b-6512272f1b9b	2021-05-24 06:48:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:48:54.853+03	2021-05-24 06:48:54.86+03	
f04b4e45-41d9-e879-412f-541b6b32f4f4	2021-05-24 06:49:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:49:14.853+03	2021-05-24 06:49:14.861+03	
59b087d1-3ba7-1bd4-f3d8-66edfc7aa944	2021-05-24 06:49:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:49:34.853+03	2021-05-24 06:49:34.86+03	
e8ddb85c-2f54-b85b-8686-9304b2c96ee8	2021-05-24 06:29:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:29:23.853+03	2021-05-24 06:29:23.861+03	
bb935858-c444-8ade-e413-580cdef27a82	2021-05-24 06:29:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:29:43.853+03	2021-05-24 06:29:43.901+03	
539b0062-5e30-baa4-bb49-eaa5aef28da4	2021-05-24 06:30:00.86	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 06:30:00.853+03	2021-05-24 06:30:00.865+03	ERROR
5ce870fa-dfd3-78be-d5ea-b8b1a24f0b83	2021-05-24 06:30:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:30:13.853+03	2021-05-24 06:30:13.86+03	
adcd0f92-3173-641f-2d34-8c95f7de9e8c	2021-05-24 06:30:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:30:33.853+03	2021-05-24 06:30:33.864+03	
3d589eff-d0a9-48ab-2055-4126c4570d7d	2021-05-24 06:30:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:30:53.853+03	2021-05-24 06:30:53.861+03	
9409287d-1559-2dc6-681a-267c3a1f873e	2021-05-24 06:31:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:31:13.853+03	2021-05-24 06:31:13.86+03	
7d059065-da9a-4104-5c19-8cdf1248847d	2021-05-24 06:31:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:31:33.853+03	2021-05-24 06:31:33.86+03	
33809f38-66ff-493e-fa75-730aa3d5dc4e	2021-05-24 06:31:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:31:53.853+03	2021-05-24 06:31:53.86+03	
971efaab-6c7e-e6c6-ae7d-9b317ecf2fa6	2021-05-24 06:32:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:32:13.853+03	2021-05-24 06:32:13.86+03	
c3f83139-8644-cc98-eef6-30e95425686c	2021-05-24 06:32:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:32:33.853+03	2021-05-24 06:32:33.86+03	
48085f3d-4308-eca8-52a2-40522a98ec0d	2021-05-24 06:32:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:32:53.853+03	2021-05-24 06:32:53.86+03	
98a2d4e7-9980-ddee-e610-5ecfce88c80b	2021-05-24 06:33:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:33:13.853+03	2021-05-24 06:33:13.86+03	
1b160515-f4f8-b134-83b5-e0d330b37c28	2021-05-24 06:33:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:33:33.853+03	2021-05-24 06:33:33.86+03	
452e76bd-6913-00b6-7bb3-3cd06a300b23	2021-05-24 06:33:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:33:53.853+03	2021-05-24 06:33:53.86+03	
e8dbd8de-dac8-a4bc-758d-6e756f4a032c	2021-05-24 06:34:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:34:13.853+03	2021-05-24 06:34:13.86+03	
25379c22-14ec-1e12-0802-d9e2f1a9c88b	2021-05-24 06:34:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:34:33.853+03	2021-05-24 06:34:33.86+03	
33ada2b5-39a1-c761-cb6a-ebcf73486463	2021-05-24 06:34:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:34:53.853+03	2021-05-24 06:34:53.86+03	
212c0a9d-2890-67c4-0579-87fcc23027ed	2021-05-24 06:35:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:35:13.853+03	2021-05-24 06:35:13.86+03	
85f2e491-d47c-f2e1-313f-a5c9f8b46785	2021-05-24 06:35:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:35:33.853+03	2021-05-24 06:35:33.86+03	
ec1feec5-d7e2-5408-0e64-99fbe11384fb	2021-05-24 06:35:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:35:53.853+03	2021-05-24 06:35:53.86+03	
22777296-473a-1087-7353-6d36c46dbf22	2021-05-24 06:36:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:36:13.853+03	2021-05-24 06:36:13.862+03	
5ed6ebcb-84c2-a6a3-e7bc-13db6eda47ca	2021-05-24 06:36:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:36:33.853+03	2021-05-24 06:36:33.86+03	
b1091861-9245-4ed1-3d51-f0b324be42ce	2021-05-24 06:36:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:36:53.853+03	2021-05-24 06:36:53.86+03	
fbb2b621-b64e-c27f-5a7e-9065a40831a4	2021-05-24 06:37:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:37:13.853+03	2021-05-24 06:37:13.86+03	
3d14e42c-0b87-e130-fb10-85bc5807297b	2021-05-24 06:37:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:37:33.853+03	2021-05-24 06:37:33.86+03	
b396934c-53a4-d7da-3934-939ed945f24c	2021-05-24 06:37:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:37:53.853+03	2021-05-24 06:37:53.86+03	
41f3fe4b-2031-fd75-08ee-e1fbdc87375e	2021-05-24 06:38:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:38:13.853+03	2021-05-24 06:38:13.86+03	
8ccebb0d-a679-97d7-4ba6-5a474c1f11a5	2021-05-24 06:38:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:38:33.853+03	2021-05-24 06:38:33.86+03	
820fe55a-a53a-e20f-05de-ee222b1cebae	2021-05-24 06:38:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:38:53.853+03	2021-05-24 06:38:53.861+03	
68fbefff-cdc4-10b4-09aa-cd506e116caf	2021-05-24 06:39:13.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:39:13.853+03	2021-05-24 06:39:13.86+03	
3c17f820-66a4-0da3-8818-aeda6b35ec57	2021-05-24 06:39:33.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:39:33.853+03	2021-05-24 06:39:33.86+03	
ce188e48-fac3-afa8-233b-97c9955661db	2021-05-24 06:39:53.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:39:53.853+03	2021-05-24 06:39:53.86+03	
3b160ee1-bcab-bfce-3e56-b569c1adaf0b	2021-05-24 06:40:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:40:03.853+03	2021-05-24 06:40:03.864+03	
18b6e873-cf50-14f0-c4d5-17696c142639	2021-05-24 06:40:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:40:23.853+03	2021-05-24 06:40:23.86+03	
9f33ad42-1f83-5a18-3389-6bbfb9d1c862	2021-05-24 06:40:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:40:43.853+03	2021-05-24 06:40:43.861+03	
436898a0-f19b-f67d-d2e7-9778f1c5677b	2021-05-24 06:41:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:41:03.853+03	2021-05-24 06:41:03.861+03	
ea346ce7-4c13-c061-28ca-457195eed460	2021-05-24 06:41:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:41:23.853+03	2021-05-24 06:41:23.86+03	
472360ab-a450-712b-2568-9a5fb345044f	2021-05-24 06:41:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:41:43.853+03	2021-05-24 06:41:43.86+03	
e3b68c4b-3339-4675-cb40-725898ba21f0	2021-05-24 06:42:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:42:03.853+03	2021-05-24 06:42:03.86+03	
9b375e19-b02c-f88c-809d-b447e5f742e8	2021-05-24 06:42:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:42:23.853+03	2021-05-24 06:42:23.86+03	
b975c0c8-5dbe-b474-0111-68a3f058c057	2021-05-24 06:42:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:42:43.853+03	2021-05-24 06:42:43.86+03	
23d7357e-0fc9-cb3b-c3fa-aa4336e8a87d	2021-05-24 06:43:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:43:03.853+03	2021-05-24 06:43:03.86+03	
f469b203-bda0-ff63-62fc-b9ef1f246585	2021-05-24 06:43:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:43:23.853+03	2021-05-24 06:43:23.86+03	
e2949d42-9ab0-03ec-e426-363e61ce36f9	2021-05-24 06:43:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:43:43.853+03	2021-05-24 06:43:43.86+03	
e2e519c0-f8ec-b1cc-b37d-1321dd51c7b2	2021-05-24 06:44:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:44:03.853+03	2021-05-24 06:44:03.861+03	
dcdea8a0-7ca2-6767-f672-52b70478fd22	2021-05-24 06:44:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:44:23.853+03	2021-05-24 06:44:23.861+03	
d171f8ae-4bd3-0418-ddb4-80be667f6da1	2021-05-24 06:44:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:44:43.853+03	2021-05-24 06:44:43.873+03	
865d9b52-9ccf-ef69-a962-4950dd72eec6	2021-05-24 06:45:03.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:45:03.853+03	2021-05-24 06:45:03.862+03	
bafbe832-d3b0-e7c5-5475-f95b0ddfba2d	2021-05-24 06:45:23.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:45:23.853+03	2021-05-24 06:45:23.86+03	
56339936-1f0b-03e8-9382-4adbaef0ba89	2021-05-24 06:45:43.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:45:43.853+03	2021-05-24 06:45:43.86+03	
908aa3b6-1630-3bac-48a7-6de80718c485	2021-05-24 06:46:03.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:46:03.853+03	2021-05-24 06:46:03.86+03	
d2ad4d27-4d1a-d3b5-6371-4d98c4093293	2021-05-24 06:46:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:46:24.853+03	2021-05-24 06:46:24.861+03	
1fee1491-51f2-0ad7-d7a8-9efe47936a44	2021-05-24 06:46:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:46:44.853+03	2021-05-24 06:46:44.861+03	
0777cfb6-554a-720f-8aa8-8b1c1c81eb61	2021-05-24 06:47:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:47:04.853+03	2021-05-24 06:47:04.86+03	
2bcc03be-7c56-43c4-e894-8931ed23a9ef	2021-05-24 06:47:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:47:24.853+03	2021-05-24 06:47:24.86+03	
75340cc8-b75d-37cd-0f53-92641d956863	2021-05-24 06:47:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:47:44.853+03	2021-05-24 06:47:44.861+03	
7b4fc6bd-5b10-b53c-efba-59aceaebc1e4	2021-05-24 06:48:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:48:04.853+03	2021-05-24 06:48:04.861+03	
2530db44-b89b-4efe-b3cf-573b1e955164	2021-05-24 06:48:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:48:24.853+03	2021-05-24 06:48:24.862+03	
67acafc4-e4e3-9d93-507b-338d5a4d38ad	2021-05-24 06:48:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:48:44.853+03	2021-05-24 06:48:44.912+03	
0da76344-e122-5217-7c87-d7caad84f027	2021-05-24 06:49:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:49:04.853+03	2021-05-24 06:49:04.861+03	
c2d79856-0557-0772-c3d5-a80871debc92	2021-05-24 06:49:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:49:24.853+03	2021-05-24 06:49:24.86+03	
dcabe5da-8949-e19a-3f0e-7d8cf9b7043d	2021-05-24 06:49:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:49:44.853+03	2021-05-24 06:49:44.862+03	
7e24e93d-2818-b7fe-a16e-2fe16249a6c0	2021-05-24 06:49:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:49:54.853+03	2021-05-24 06:49:54.86+03	
e3328ec4-db64-3eea-5674-3f4c0c2cf899	2021-05-24 06:50:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:50:04.853+03	2021-05-24 06:50:04.86+03	
0616cdcb-f41b-307d-bef3-2a2b21ba9986	2021-05-24 06:50:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:50:24.853+03	2021-05-24 06:50:24.861+03	
7670f58c-643a-cb38-903f-aed6f5cb806e	2021-05-24 06:50:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:50:44.853+03	2021-05-24 06:50:44.862+03	
d8cfca4d-5cbd-88b9-7b5e-373780bf421c	2021-05-24 06:51:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:51:04.853+03	2021-05-24 06:51:04.86+03	
5e3dfbfe-76fe-7b2c-5945-172bc52f4f36	2021-05-24 06:51:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:51:24.853+03	2021-05-24 06:51:24.86+03	
0c53cc8b-f9c7-9bb6-ded5-87cd484c3371	2021-05-24 06:51:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:51:44.853+03	2021-05-24 06:51:44.863+03	
9be54f46-ada0-2769-75b2-0fee7fd4e81d	2021-05-24 06:52:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:52:04.853+03	2021-05-24 06:52:04.861+03	
f3eec34e-1bea-9fd7-7357-d24c6c98087a	2021-05-24 06:52:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:52:24.853+03	2021-05-24 06:52:24.86+03	
ceecfc90-65d2-1cae-73d6-74d421117b3d	2021-05-24 06:52:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:52:44.853+03	2021-05-24 06:52:44.862+03	
e6a96141-144f-d0e6-cbff-b259f4e1b16c	2021-05-24 06:53:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:53:04.853+03	2021-05-24 06:53:04.86+03	
bde58305-bd13-214d-1f6d-0fcb60fbc170	2021-05-24 06:53:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:53:24.853+03	2021-05-24 06:53:24.86+03	
3d67da47-0775-82df-a2c0-8bd41679c7f2	2021-05-24 06:53:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:53:44.853+03	2021-05-24 06:53:44.902+03	
de49a0d5-925e-3e2c-0a05-1636a2074a5a	2021-05-24 06:54:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:54:04.853+03	2021-05-24 06:54:04.862+03	
45ea1ac0-f72c-90c5-2332-fe38dbd28f1f	2021-05-24 06:54:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:54:24.853+03	2021-05-24 06:54:24.863+03	
66c277f8-61db-d9de-278c-7d8e6c20ad2e	2021-05-24 06:54:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:54:44.853+03	2021-05-24 06:54:44.861+03	
4c2cac9a-a09a-27f1-aa90-6d112dad310f	2021-05-24 06:55:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:55:04.853+03	2021-05-24 06:55:04.86+03	
8eedb677-5616-fb64-a388-63bbf2455700	2021-05-24 06:55:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:55:24.853+03	2021-05-24 06:55:24.861+03	
5aec5be0-f9f4-5208-abbf-32b25ad5624f	2021-05-24 06:55:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:55:44.853+03	2021-05-24 06:55:44.862+03	
3ae5a65e-5379-dfe1-ca45-009f7aa0451c	2021-05-24 06:56:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:56:04.853+03	2021-05-24 06:56:04.86+03	
4726d9ca-d874-5d92-b340-a882fda46719	2021-05-24 06:56:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:56:24.853+03	2021-05-24 06:56:24.86+03	
5d5e87dc-752a-70ac-b174-a01fc7839dbb	2021-05-24 06:56:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:56:44.853+03	2021-05-24 06:56:44.863+03	
795f2001-3b52-2bd6-de62-ddc7fe0c0ffd	2021-05-24 06:57:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:57:04.853+03	2021-05-24 06:57:04.86+03	
b1c690a1-c097-e099-f636-8d188616f6ca	2021-05-24 06:57:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:57:24.853+03	2021-05-24 06:57:24.86+03	
55d7eab1-6493-313d-a573-f70f06fc913a	2021-05-24 06:57:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:57:44.853+03	2021-05-24 06:57:44.861+03	
87ac5c57-a843-1888-83d2-29f87800a20b	2021-05-24 06:58:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:58:04.853+03	2021-05-24 06:58:04.86+03	
3d0d398a-b521-afe8-b7bc-66d685a4cacb	2021-05-24 06:58:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:58:24.853+03	2021-05-24 06:58:24.861+03	
1eeecd10-ff33-634f-73ee-6a117a70fd3c	2021-05-24 06:58:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:58:44.853+03	2021-05-24 06:58:44.909+03	
2cfc5591-ae4c-fa6d-a308-f91b5f551511	2021-05-24 06:59:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:59:04.853+03	2021-05-24 06:59:04.861+03	
dd0cf61a-9b33-94ef-f7ab-fc8f0ea98804	2021-05-24 06:59:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:59:24.853+03	2021-05-24 06:59:24.86+03	
ccdc6a07-3f0d-fbb7-f098-a7d895b7ea9c	2021-05-24 06:59:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:59:44.853+03	2021-05-24 06:59:44.861+03	
bcb6c782-b1f2-829d-0ba0-8128c9b393cb	2021-05-24 07:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 07:00:00.853+03	2021-05-24 07:00:00.91+03	ERROR
40022bc1-40f8-64c5-d554-2537d8a483e7	2021-05-24 07:00:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:00:14.853+03	2021-05-24 07:00:14.861+03	
8e655b3a-e169-99d5-4f87-0bd396b01f89	2021-05-24 07:00:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:00:34.853+03	2021-05-24 07:00:34.861+03	
46121bdb-d5a4-6405-f814-f5398671ba1b	2021-05-24 07:00:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:00:54.853+03	2021-05-24 07:00:54.86+03	
6cacbc96-37da-391a-5614-93171b560f1b	2021-05-24 07:01:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:01:14.853+03	2021-05-24 07:01:14.866+03	
f7108421-7e61-12c6-4bbf-4612829d0c6c	2021-05-24 07:01:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:01:34.853+03	2021-05-24 07:01:34.86+03	
bc8b9b88-a40a-09aa-26ef-2f8edf700980	2021-05-24 07:01:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:01:54.853+03	2021-05-24 07:01:54.86+03	
c2746365-99df-0db3-b49c-a990678b3f52	2021-05-24 07:02:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:02:14.853+03	2021-05-24 07:02:14.861+03	
87b73266-acd5-4ca8-ec4c-526abc6cea9a	2021-05-24 07:02:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:02:34.853+03	2021-05-24 07:02:34.861+03	
f4a0d500-fccb-bfb1-7841-484715e2cdaa	2021-05-24 07:02:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:02:54.853+03	2021-05-24 07:02:54.86+03	
3d6462ac-ce5a-e262-00c9-1c4ba0a60eb9	2021-05-24 07:03:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:03:14.853+03	2021-05-24 07:03:14.861+03	
6abf2363-4004-95fb-9fb2-2153cec23bdf	2021-05-24 07:03:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:03:34.853+03	2021-05-24 07:03:34.86+03	
096011f1-4e61-9b85-2d41-26b7825e068b	2021-05-24 07:03:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:03:54.853+03	2021-05-24 07:03:54.86+03	
78c06924-5d23-b96e-baa5-40e3695f17c1	2021-05-24 07:04:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:04:14.853+03	2021-05-24 07:04:14.861+03	
d8a6a418-96dd-a58a-23ce-7e7a168f432c	2021-05-24 07:04:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:04:34.853+03	2021-05-24 07:04:34.862+03	
3f1fa015-da7f-095c-cd63-4abc0db2a5b9	2021-05-24 07:04:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:04:54.853+03	2021-05-24 07:04:54.861+03	
41f50b57-8c7d-d530-b9b0-b18d00a8f52b	2021-05-24 07:05:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:05:14.853+03	2021-05-24 07:05:14.911+03	
3790caf5-3374-cbd8-d572-5f2dcc255448	2021-05-24 07:05:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:05:34.853+03	2021-05-24 07:05:34.86+03	
d31dcc91-2f75-014b-2c12-b7e78feb6f38	2021-05-24 07:05:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:05:54.853+03	2021-05-24 07:05:54.86+03	
5305b46a-312b-a598-2d8d-ce188756e6a1	2021-05-24 07:06:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:06:14.853+03	2021-05-24 07:06:14.91+03	
d1788327-e552-6218-f485-6c9461fa9238	2021-05-24 07:06:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:06:34.853+03	2021-05-24 07:06:34.86+03	
7447aaec-1768-4d0a-fe8a-176207f9b860	2021-05-24 07:06:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:06:54.853+03	2021-05-24 07:06:54.865+03	
1bfbfbfa-3b13-5707-531b-ad8d18c7f5e5	2021-05-24 07:07:14.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:07:14.854+03	2021-05-24 07:07:14.861+03	
82c031b1-9b6c-dff4-819e-6f970f985f96	2021-05-24 07:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:07:35.853+03	2021-05-24 07:07:35.86+03	
f881bc88-b2c3-9355-fa73-89b413c91b26	2021-05-24 07:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:07:55.853+03	2021-05-24 07:07:55.86+03	
d908e2ab-c568-34ea-ae35-414c4a3c0683	2021-05-24 07:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:08:15.853+03	2021-05-24 07:08:15.86+03	
ad8c4fda-576b-53a2-64c9-08e5860a83bb	2021-05-24 07:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:08:35.853+03	2021-05-24 07:08:35.86+03	
9c4d14c9-6893-e1dc-3804-b2bb65fab4d8	2021-05-24 07:08:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:08:55.853+03	2021-05-24 07:08:55.86+03	
c78d39e6-a354-7e49-0436-c26c793689ef	2021-05-24 07:09:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:09:15.853+03	2021-05-24 07:09:15.86+03	
fabd2411-63c8-dd17-717c-91b1e9049d68	2021-05-24 07:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:09:35.853+03	2021-05-24 07:09:35.862+03	
d270a4c7-cb1e-f15b-5cd5-1097b8852066	2021-05-24 07:09:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:09:55.853+03	2021-05-24 07:09:55.861+03	
d8199b33-0b6b-b7a0-e060-90cee9c4906a	2021-05-24 07:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:10:05.853+03	2021-05-24 07:10:05.86+03	
7f7c8a6a-5768-53c3-3c53-4e35cbad0fc1	2021-05-24 06:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 06:50:00.853+03	2021-05-24 06:50:00.858+03	ERROR
92cd1a2b-70b3-900b-25d6-fe0129c4dcb0	2021-05-24 06:50:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:50:14.853+03	2021-05-24 06:50:14.86+03	
73bdef16-29fb-f313-cc89-3874a440ddad	2021-05-24 06:50:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:50:34.853+03	2021-05-24 06:50:34.86+03	
f3749734-b36e-e2a7-691c-37d455983809	2021-05-24 06:50:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:50:54.853+03	2021-05-24 06:50:54.86+03	
a74bfc10-d9ce-496a-04f7-49e2b0cb62bf	2021-05-24 06:51:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:51:14.853+03	2021-05-24 06:51:14.906+03	
451fa12e-ad3c-72e5-c5ed-16e89a953558	2021-05-24 06:51:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:51:34.853+03	2021-05-24 06:51:34.86+03	
a1beae24-8d8b-f551-432a-39ff11e26879	2021-05-24 06:51:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:51:54.853+03	2021-05-24 06:51:54.86+03	
1c1dae3a-02db-0493-efad-368d4bbee458	2021-05-24 06:52:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:52:14.853+03	2021-05-24 06:52:14.862+03	
07f2fe01-65ce-2484-ff7a-77c0a0ecb10c	2021-05-24 06:52:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:52:34.853+03	2021-05-24 06:52:34.861+03	
93f24c2e-4dcd-29af-0465-2bdec16a512c	2021-05-24 06:52:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:52:54.853+03	2021-05-24 06:52:54.861+03	
70264a5d-f342-9c9d-9dc0-fa6e07bd4670	2021-05-24 06:53:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:53:14.853+03	2021-05-24 06:53:14.904+03	
a44daf26-a42f-3740-c518-7f2b3a22cc57	2021-05-24 06:53:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:53:34.853+03	2021-05-24 06:53:34.86+03	
b3e73847-03c2-eece-d566-846a604dc49e	2021-05-24 06:53:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:53:54.853+03	2021-05-24 06:53:54.861+03	
10c9cd9b-4c18-e362-5081-f02d68460bab	2021-05-24 06:54:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:54:14.853+03	2021-05-24 06:54:14.861+03	
a751da1f-ca4d-9e07-6dd8-675fe8306e5c	2021-05-24 06:54:34.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:54:34.853+03	2021-05-24 06:54:34.862+03	
52231507-d721-f25a-0488-afae71a830e5	2021-05-24 06:54:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:54:54.853+03	2021-05-24 06:54:54.86+03	
a91bfaa6-f2eb-d132-929e-080bc404f2fe	2021-05-24 06:55:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:55:14.853+03	2021-05-24 06:55:14.899+03	
4e0f5ff7-2ebe-c825-0ede-fe0d30c89529	2021-05-24 06:55:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:55:34.853+03	2021-05-24 06:55:34.86+03	
e139aa87-3bb7-6ed2-ac18-6e014f432d0b	2021-05-24 06:55:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:55:54.853+03	2021-05-24 06:55:54.86+03	
11d01a58-cfbb-7af9-98bb-84f1907f9d25	2021-05-24 06:56:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:56:14.853+03	2021-05-24 06:56:14.861+03	
e6d79c4b-7151-a313-0089-775a2eee8af5	2021-05-24 06:56:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:56:34.853+03	2021-05-24 06:56:34.86+03	
eef1f0c5-1f7f-a62c-44ac-3299be9df6e7	2021-05-24 06:56:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:56:54.853+03	2021-05-24 06:56:54.86+03	
a5b1e5e2-e738-ed36-7467-e224ef564143	2021-05-24 06:57:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:57:14.853+03	2021-05-24 06:57:14.861+03	
90819b57-539e-60cf-d776-5113facffb02	2021-05-24 06:57:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:57:34.853+03	2021-05-24 06:57:34.861+03	
d80d979d-d3bf-62a5-ea28-b6a5ce36479f	2021-05-24 06:57:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:57:54.853+03	2021-05-24 06:57:54.86+03	
633078e4-dd91-9c51-0df8-157f770cfadb	2021-05-24 06:58:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:58:14.853+03	2021-05-24 06:58:14.86+03	
79fe742d-5041-7e46-9562-a49d8be49421	2021-05-24 06:58:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:58:34.853+03	2021-05-24 06:58:34.86+03	
b3fe9bc2-a978-e20a-4a07-e85f38f78497	2021-05-24 06:58:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:58:54.853+03	2021-05-24 06:58:54.861+03	
70a06036-4f70-64f5-0afc-ecbfe36c680d	2021-05-24 06:59:14.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:59:14.853+03	2021-05-24 06:59:14.862+03	
da341916-668c-005f-6377-7726faad4cce	2021-05-24 06:59:34.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:59:34.853+03	2021-05-24 06:59:34.861+03	
772d9d27-147e-04da-208d-add41e1d9e86	2021-05-24 06:59:54.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 06:59:54.853+03	2021-05-24 06:59:54.86+03	
ac9ec8c2-e918-2a68-7815-db4023bcea4e	2021-05-24 07:00:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:00:04.853+03	2021-05-24 07:00:04.861+03	
75a03b5a-cf25-0b53-f1d6-cb3a0fdb3f63	2021-05-24 07:00:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:00:24.853+03	2021-05-24 07:00:24.867+03	
4adbd95e-4f81-e83f-4fa4-e8f757550661	2021-05-24 07:00:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:00:44.853+03	2021-05-24 07:00:44.861+03	
8166aa51-0dba-424f-7978-550250119f65	2021-05-24 07:01:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:01:04.853+03	2021-05-24 07:01:04.86+03	
3050a204-c0fd-ea5b-476d-8f09a9521e2a	2021-05-24 07:01:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:01:24.853+03	2021-05-24 07:01:24.861+03	
4a774587-8ee2-3cce-a456-beae596ce51a	2021-05-24 07:01:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:01:44.853+03	2021-05-24 07:01:44.86+03	
6256410b-740a-03bc-fbe6-8bbd8645d0e6	2021-05-24 07:02:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:02:04.853+03	2021-05-24 07:02:04.86+03	
595e8c94-ac44-98a9-5af0-86d5addc6f12	2021-05-24 07:02:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:02:24.853+03	2021-05-24 07:02:24.869+03	
068e572d-74c6-c8f3-c900-8eed89df1d06	2021-05-24 07:02:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:02:44.853+03	2021-05-24 07:02:44.902+03	
829210a1-5aea-6958-60b1-1a39db806ecb	2021-05-24 07:03:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:03:04.853+03	2021-05-24 07:03:04.86+03	
5eae7207-9bc0-4c4d-b71c-467a8c5f5d06	2021-05-24 07:03:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:03:24.853+03	2021-05-24 07:03:24.86+03	
d1ff689f-e8d6-9480-34b3-b19a553b8521	2021-05-24 07:03:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:03:44.853+03	2021-05-24 07:03:44.876+03	
a6e62e61-71ee-493d-00cd-5e31a4f21802	2021-05-24 07:04:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:04:04.853+03	2021-05-24 07:04:04.86+03	
50db42a4-864c-edc9-f227-99cfaa8dcd2a	2021-05-24 07:04:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:04:24.853+03	2021-05-24 07:04:24.86+03	
7f856645-af26-c1ef-7aea-d270bbbae82b	2021-05-24 07:04:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:04:44.853+03	2021-05-24 07:04:44.86+03	
f3c3ded3-d2db-efcb-be25-1c24815a298a	2021-05-24 07:05:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:05:04.853+03	2021-05-24 07:05:04.86+03	
034dad92-268b-108e-8bec-7866f406aff2	2021-05-24 07:05:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:05:24.853+03	2021-05-24 07:05:24.86+03	
da9957ce-a593-30ec-b7c0-b4ca12ca913b	2021-05-24 07:05:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:05:44.853+03	2021-05-24 07:05:44.861+03	
86c4b144-34b2-55c4-bcba-580beb0fe2d3	2021-05-24 07:06:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:06:04.853+03	2021-05-24 07:06:04.861+03	
f6f0dcda-39c8-d4a7-7f4f-a5d0fa68585f	2021-05-24 07:06:24.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:06:24.853+03	2021-05-24 07:06:24.863+03	
ee04678d-98f4-9084-b5b8-ad3ab934aa37	2021-05-24 07:06:44.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:06:44.853+03	2021-05-24 07:06:44.861+03	
472ae72c-e084-1ae8-f7e8-46f577e5f584	2021-05-24 07:07:04.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:07:04.853+03	2021-05-24 07:07:04.86+03	
a4c91aa7-6472-a5f9-16b5-2ef6dd86611b	2021-05-24 07:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:07:25.853+03	2021-05-24 07:07:25.86+03	
29a8fd64-b4a6-d627-a5e1-b8e4d6310279	2021-05-24 07:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:07:45.853+03	2021-05-24 07:07:45.86+03	
f035155c-a199-cc26-8c6f-f556f8328fa5	2021-05-24 07:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:08:05.853+03	2021-05-24 07:08:05.86+03	
4faf84ab-0929-8e0a-4f1a-bb53676f9a85	2021-05-24 07:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:08:25.853+03	2021-05-24 07:08:25.86+03	
b17ad1f5-f7ac-32d9-c177-167310713f34	2021-05-24 07:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:08:45.853+03	2021-05-24 07:08:45.861+03	
d901475e-4833-954a-a74f-000b250a949d	2021-05-24 07:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:09:05.853+03	2021-05-24 07:09:05.86+03	
46cfe5ee-0202-8649-5b9f-d175b5197488	2021-05-24 07:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:09:25.853+03	2021-05-24 07:09:25.861+03	
29c91484-099a-2335-74f2-a5da201d9f0e	2021-05-24 07:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:09:45.853+03	2021-05-24 07:09:45.86+03	
f4abe863-2294-bd50-38a1-45e9e07af6c5	2021-05-24 07:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 07:10:00.853+03	2021-05-24 07:10:00.858+03	ERROR
6069be52-828c-79d9-d439-b0aaa814a4cb	2021-05-24 07:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:10:15.853+03	2021-05-24 07:10:15.86+03	
f8cf5b0e-2727-beb3-3948-c4e01bb75e06	2021-05-24 07:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:10:25.853+03	2021-05-24 07:10:25.86+03	
bb4d47c6-a5b0-ebd9-a81a-4bbccdd309de	2021-05-24 07:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:10:45.853+03	2021-05-24 07:10:45.86+03	
ac841161-b3ee-9455-5f93-01e21fef7e74	2021-05-24 07:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:11:05.853+03	2021-05-24 07:11:05.86+03	
d60a7384-a78a-b7bd-a401-563cf0279a0e	2021-05-24 07:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:11:25.853+03	2021-05-24 07:11:25.86+03	
99280da4-349a-293c-e0a7-1c21cb8d5f65	2021-05-24 07:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:11:45.853+03	2021-05-24 07:11:45.861+03	
b0380c79-542c-52f0-2ed8-d4f6db2993f9	2021-05-24 07:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:12:05.853+03	2021-05-24 07:12:05.86+03	
10fb3532-7597-9369-87e5-f4520050e9bf	2021-05-24 07:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:12:25.853+03	2021-05-24 07:12:25.861+03	
c7c827c1-cf4a-a338-4543-5e959f1f8748	2021-05-24 07:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:12:45.853+03	2021-05-24 07:12:45.86+03	
bd9dc82e-74dd-5040-8033-aaa00e367b81	2021-05-24 07:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:13:05.853+03	2021-05-24 07:13:05.86+03	
9c55ad04-7726-448a-56e5-edbd726e666c	2021-05-24 07:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:13:25.853+03	2021-05-24 07:13:25.86+03	
88a27e15-1083-d614-772b-d0c62822a3e4	2021-05-24 07:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:13:45.853+03	2021-05-24 07:13:45.861+03	
4d589235-d5b7-933b-1441-c8fb5875e9a0	2021-05-24 07:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:14:05.853+03	2021-05-24 07:14:05.861+03	
2599a220-b17e-f3cc-0d34-7271327d84dd	2021-05-24 07:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:14:25.853+03	2021-05-24 07:14:25.86+03	
02b614ab-9eb1-d905-ccfa-1d7d8deea535	2021-05-24 07:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:14:45.853+03	2021-05-24 07:14:45.86+03	
9217d356-ee87-da64-95d3-6982c1885728	2021-05-24 07:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:15:05.853+03	2021-05-24 07:15:05.86+03	
ffb3c139-42e0-2c37-8236-e07badbafc5c	2021-05-24 07:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:15:25.853+03	2021-05-24 07:15:25.86+03	
2bd1df96-cf84-9734-bdbc-b7f9508b9cf8	2021-05-24 07:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:15:45.853+03	2021-05-24 07:15:45.86+03	
d0e494a3-895f-891f-f77d-5b5325250de4	2021-05-24 07:16:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:16:05.853+03	2021-05-24 07:16:05.86+03	
3ec4da30-1c20-012d-15c5-9380f1c56331	2021-05-24 07:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:16:25.853+03	2021-05-24 07:16:25.86+03	
b3c32666-f060-b412-edcc-28e0fc84bb9f	2021-05-24 07:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:16:45.853+03	2021-05-24 07:16:45.86+03	
6e96f339-16e6-e44e-6a48-b46fce515878	2021-05-24 07:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:17:05.853+03	2021-05-24 07:17:05.86+03	
2e6d2ebb-4e64-ddd4-6927-aa6130132d0a	2021-05-24 07:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:17:25.853+03	2021-05-24 07:17:25.86+03	
5ba7650d-e960-380f-9881-e939eba67739	2021-05-24 07:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:17:45.853+03	2021-05-24 07:17:45.86+03	
5fdde3c4-4664-19fb-fe22-c554a90bffda	2021-05-24 07:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:18:05.853+03	2021-05-24 07:18:05.861+03	
1f61a063-1e68-b500-65e7-1d66eb446863	2021-05-24 07:18:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:18:25.853+03	2021-05-24 07:18:25.86+03	
b352ae8b-2625-ec2c-1ee1-32c9da650994	2021-05-24 07:18:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:18:45.853+03	2021-05-24 07:18:45.859+03	
26a641b6-f361-13a6-165e-6d9b3a6bdfc3	2021-05-24 07:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:19:05.853+03	2021-05-24 07:19:05.89+03	
372d69d5-6aa8-05cd-387b-30e91e4b95b0	2021-05-24 07:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:19:25.853+03	2021-05-24 07:19:25.86+03	
a9b1775f-cf80-a1b2-39e4-6b3cd23e6a74	2021-05-24 07:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:19:45.853+03	2021-05-24 07:19:45.867+03	
7dd1cddb-df3a-37ab-2abc-b85e1ca6340a	2021-05-24 07:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 07:20:00.853+03	2021-05-24 07:20:00.858+03	ERROR
12fbcc12-9b01-34e7-c130-946dcbddad12	2021-05-24 07:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:20:15.853+03	2021-05-24 07:20:15.887+03	
a4ac920a-b2fd-01e1-61fa-17a5456a75a9	2021-05-24 07:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:20:35.853+03	2021-05-24 07:20:35.86+03	
bb25d32c-4917-65cc-2f56-acc339b25b1f	2021-05-24 07:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:20:55.853+03	2021-05-24 07:20:55.861+03	
c6887e65-ac50-7e85-4576-6023c7d2b8ba	2021-05-24 07:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:21:15.853+03	2021-05-24 07:21:15.861+03	
1eb290e0-84bd-7c80-7c14-0d44d63ef481	2021-05-24 07:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:21:35.853+03	2021-05-24 07:21:35.86+03	
2ea223ac-19a0-3b9e-7cef-8d97dec9390f	2021-05-24 07:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:21:55.853+03	2021-05-24 07:21:55.861+03	
2d987d81-8b17-06fb-a241-14bbd05818ea	2021-05-24 07:22:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:22:15.853+03	2021-05-24 07:22:15.861+03	
230c0740-02ac-512e-165c-e6d64bb31a53	2021-05-24 07:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:22:35.853+03	2021-05-24 07:22:35.86+03	
75ea8c1e-46a7-b694-8400-0f8e57313b3c	2021-05-24 07:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:22:55.853+03	2021-05-24 07:22:55.862+03	
96ad0fff-b927-a33d-f0d6-41bf727d16c8	2021-05-24 07:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:23:15.853+03	2021-05-24 07:23:15.861+03	
e1aeec37-bacc-10d9-3685-68c4d59d4d87	2021-05-24 07:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:23:35.853+03	2021-05-24 07:23:35.885+03	
8ca1da52-c353-ff69-5d40-02a5ceacdda0	2021-05-24 07:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:23:55.853+03	2021-05-24 07:23:55.861+03	
f60cee8c-e6fc-2325-9816-8ffb0d3ed6e8	2021-05-24 07:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:24:15.853+03	2021-05-24 07:24:15.861+03	
5bdfa2f2-5ef0-701b-17fd-6a7e3a36c43f	2021-05-24 07:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:24:35.853+03	2021-05-24 07:24:35.86+03	
a7652363-3387-3a1b-e47a-ee2c927cbaec	2021-05-24 07:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:24:55.853+03	2021-05-24 07:24:55.86+03	
51379265-5de0-b407-2aae-72677701f74e	2021-05-24 07:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:25:15.853+03	2021-05-24 07:25:15.86+03	
b65ed50b-4ddf-0c3a-4d25-f6c7fc9f1a7f	2021-05-24 07:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:25:35.853+03	2021-05-24 07:25:35.86+03	
efb0da87-4765-a971-3d06-1b9fdd6a6a28	2021-05-24 07:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:25:55.853+03	2021-05-24 07:25:55.861+03	
9a1f0d1a-9a3d-b526-af37-503aba2c4087	2021-05-24 07:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:26:15.853+03	2021-05-24 07:26:15.861+03	
97ec54ec-c8be-976d-af5e-c739897a689f	2021-05-24 07:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:26:35.853+03	2021-05-24 07:26:35.86+03	
4733671f-9b85-8361-6f6d-7ba8ca357fa0	2021-05-24 07:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:26:55.853+03	2021-05-24 07:26:55.861+03	
2f0e477f-4738-6f68-a3de-43734a852ed4	2021-05-24 07:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:27:15.853+03	2021-05-24 07:27:15.861+03	
ad9d63e1-98ad-419c-6b6c-b9c160576f84	2021-05-24 07:27:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:27:35.853+03	2021-05-24 07:27:35.86+03	
5eeab12e-13a2-6d92-70b8-123c05a423ff	2021-05-24 07:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:27:55.853+03	2021-05-24 07:27:55.86+03	
fd8ab59c-82de-bf0f-ff0d-68521cf9e80f	2021-05-24 07:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:28:15.853+03	2021-05-24 07:28:15.862+03	
daad56b9-0331-452b-2d32-1e4d116ddfeb	2021-05-24 07:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:28:35.853+03	2021-05-24 07:28:35.861+03	
f52892e2-f67a-c841-a9b4-8736e9598168	2021-05-24 07:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:28:55.853+03	2021-05-24 07:28:55.86+03	
b74baaf2-7262-791e-ac2d-4c521a2e4281	2021-05-24 07:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:29:15.853+03	2021-05-24 07:29:15.862+03	
31e1c30c-d3bd-44e4-d93e-e1d11d0047c2	2021-05-24 07:29:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:29:35.853+03	2021-05-24 07:29:35.86+03	
092569b5-a37b-95e0-47df-56bfd1f63af8	2021-05-24 07:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:29:55.853+03	2021-05-24 07:29:55.86+03	
5ffcf871-87d9-84f1-f5d3-87864e411ba1	2021-05-24 07:30:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:30:05.853+03	2021-05-24 07:30:05.86+03	
0ae7c577-13f7-33eb-3665-02c579a4603e	2021-05-24 07:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:30:25.853+03	2021-05-24 07:30:25.86+03	
6d31a198-c1c4-83d7-801a-0a3eedd469f7	2021-05-24 07:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:30:45.853+03	2021-05-24 07:30:45.86+03	
669ea59f-25ea-bd49-710a-78a9443b64cb	2021-05-24 07:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:10:35.853+03	2021-05-24 07:10:35.861+03	
f64a3ae7-9426-125a-2dab-58881668eef8	2021-05-24 07:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:10:55.853+03	2021-05-24 07:10:55.86+03	
ae900c22-2b58-2e5e-a2d8-84a5e5edc3a6	2021-05-24 07:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:11:15.853+03	2021-05-24 07:11:15.86+03	
2a5bd974-7b96-d831-d90a-dde9dd5c35e5	2021-05-24 07:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:11:35.853+03	2021-05-24 07:11:35.86+03	
556df4f2-4ae5-a396-2896-5ae34ae30d1f	2021-05-24 07:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:11:55.853+03	2021-05-24 07:11:55.861+03	
0cd7cf3a-ff9c-40a6-57e7-645e01ab1a6f	2021-05-24 07:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:12:15.853+03	2021-05-24 07:12:15.86+03	
573f63a0-266c-77bf-5501-c30fc684c719	2021-05-24 07:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:12:35.853+03	2021-05-24 07:12:35.866+03	
8b44be4e-a0a6-84ac-3465-e64a19b38660	2021-05-24 07:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:12:55.853+03	2021-05-24 07:12:55.86+03	
6a25860b-26e4-99c4-16f8-a0f22c80b251	2021-05-24 07:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:13:15.853+03	2021-05-24 07:13:15.86+03	
09960079-07b2-8916-ac26-3200827c4efa	2021-05-24 07:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:13:35.853+03	2021-05-24 07:13:35.859+03	
42e07fbd-f723-5da7-d629-208770caaec6	2021-05-24 07:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:13:55.853+03	2021-05-24 07:13:55.86+03	
01c1a161-f931-7115-f454-ebac233cce01	2021-05-24 07:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:14:15.853+03	2021-05-24 07:14:15.86+03	
22dbb149-f451-6c88-5ae8-2fd36aa46acf	2021-05-24 07:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:14:35.853+03	2021-05-24 07:14:35.869+03	
d391288c-d907-522d-6938-0ef7e4dedb81	2021-05-24 07:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:14:55.853+03	2021-05-24 07:14:55.86+03	
8a9cfdfc-79f6-f278-e091-d28d77ff001a	2021-05-24 07:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:15:15.853+03	2021-05-24 07:15:15.86+03	
2dea0c1f-c397-7ab5-1da0-fdb310481d98	2021-05-24 07:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:15:35.853+03	2021-05-24 07:15:35.86+03	
98f791ef-e490-195d-f619-6382153b006f	2021-05-24 07:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:15:55.853+03	2021-05-24 07:15:55.86+03	
38a4e3b8-b7bf-6298-5a46-a2d20d75c2f5	2021-05-24 07:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:16:15.853+03	2021-05-24 07:16:15.864+03	
ae5c1b0c-f12c-9745-de84-9e15cb69e88d	2021-05-24 07:16:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:16:35.853+03	2021-05-24 07:16:35.86+03	
f58ce5c0-2f16-a92d-b1ed-ac87cf283a61	2021-05-24 07:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:16:55.853+03	2021-05-24 07:16:55.86+03	
0ae7d2f4-76c2-806a-ee6d-6dcc3fd5a4d5	2021-05-24 07:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:17:15.853+03	2021-05-24 07:17:15.86+03	
cdcd43b3-cd0b-c757-35e4-e1df127fef42	2021-05-24 07:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:17:35.853+03	2021-05-24 07:17:35.861+03	
1e438c2b-9bea-95c4-f62f-f8fc1c932d39	2021-05-24 07:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:17:55.853+03	2021-05-24 07:17:55.9+03	
b34dc98e-1547-935d-3ff8-9afed5b975e0	2021-05-24 07:18:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:18:15.853+03	2021-05-24 07:18:15.861+03	
447cdc0b-4422-917e-9f75-d81650ba7542	2021-05-24 07:18:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:18:35.853+03	2021-05-24 07:18:35.865+03	
803629bc-3e9b-042e-3b3f-9e6750f709d2	2021-05-24 07:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:18:55.853+03	2021-05-24 07:18:55.865+03	
9e99c14d-3a89-b9ef-2f28-33583da3a9ba	2021-05-24 07:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:19:15.853+03	2021-05-24 07:19:15.895+03	
457af527-ce38-e98a-ee09-0773695fd388	2021-05-24 07:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:19:35.853+03	2021-05-24 07:19:35.861+03	
90ae3095-10e5-b9e5-bffb-4a063aaf3742	2021-05-24 07:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:19:55.853+03	2021-05-24 07:19:55.86+03	
d739b3d8-413f-05e9-f11c-97aec1f21c6c	2021-05-24 07:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:20:05.853+03	2021-05-24 07:20:05.861+03	
dcac94af-274d-edb0-8c86-c890ab613c1f	2021-05-24 07:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:20:25.853+03	2021-05-24 07:20:25.893+03	
1719ee38-7f4f-3d29-6bc5-944f1bdf97f9	2021-05-24 07:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:20:45.853+03	2021-05-24 07:20:45.86+03	
5780b930-5969-0027-1cb7-de1d86454660	2021-05-24 07:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:21:05.853+03	2021-05-24 07:21:05.861+03	
e4ebd91a-ea78-55f9-1b20-ab0464d8a082	2021-05-24 07:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:21:25.853+03	2021-05-24 07:21:25.86+03	
ca4a6d02-c316-c370-4370-fa811b5b090c	2021-05-24 07:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:21:45.853+03	2021-05-24 07:21:45.86+03	
5891d989-0ba2-e3a7-895c-20d4e3c84e3a	2021-05-24 07:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:22:05.853+03	2021-05-24 07:22:05.868+03	
2c8236d3-639e-99ed-28d2-702b322cde69	2021-05-24 07:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:22:25.853+03	2021-05-24 07:22:25.86+03	
82438cf2-4635-8e8e-468d-4dc04354763a	2021-05-24 07:22:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:22:45.853+03	2021-05-24 07:22:45.86+03	
fcb8f0bb-2c4c-500c-c400-6e0d192ab4fb	2021-05-24 07:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:23:05.853+03	2021-05-24 07:23:05.86+03	
67cb3d8d-3840-1baa-8d35-42b76d557a86	2021-05-24 07:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:23:25.853+03	2021-05-24 07:23:25.895+03	
f9326fd3-e42c-fe7d-1006-dda82127730c	2021-05-24 07:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:23:45.853+03	2021-05-24 07:23:45.862+03	
245bb983-ecab-6192-d476-c45231e926c9	2021-05-24 07:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:24:05.853+03	2021-05-24 07:24:05.86+03	
07f38b52-d4f0-ee91-a954-5815c46d486b	2021-05-24 07:24:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:24:25.853+03	2021-05-24 07:24:25.86+03	
7dbb0436-7deb-32d4-a510-ffb7e9490c78	2021-05-24 07:24:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:24:45.853+03	2021-05-24 07:24:45.869+03	
5204dca9-e7d7-dd56-d297-2c0de47a3a79	2021-05-24 07:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:25:05.853+03	2021-05-24 07:25:05.86+03	
c405dbaa-8ed1-a96a-c78d-58aa260dfc55	2021-05-24 07:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:25:25.853+03	2021-05-24 07:25:25.86+03	
feb4533f-60ce-859e-722d-801cb1250f57	2021-05-24 07:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:25:45.853+03	2021-05-24 07:25:45.861+03	
0a716e80-542b-b4f5-ee6e-1b6dbc301965	2021-05-24 07:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:26:05.853+03	2021-05-24 07:26:05.864+03	
4b338c84-95a7-0916-8414-bd7906eb7aa5	2021-05-24 07:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:26:25.853+03	2021-05-24 07:26:25.861+03	
ac34b525-4dac-7b29-141a-52b64feb5b56	2021-05-24 07:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:26:45.853+03	2021-05-24 07:26:45.867+03	
d7928e5c-c95a-6b99-f66c-5bb44e381ab4	2021-05-24 07:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:27:05.853+03	2021-05-24 07:27:05.86+03	
b91b231c-785f-2eb3-928e-3dba2571596a	2021-05-24 07:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:27:25.853+03	2021-05-24 07:27:25.86+03	
51d4835b-3e42-8cb1-be06-5dc48a3bac45	2021-05-24 07:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:27:45.853+03	2021-05-24 07:27:45.86+03	
85970c51-bc7e-0560-4244-718ca020bab2	2021-05-24 07:28:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:28:05.853+03	2021-05-24 07:28:05.861+03	
8e700c2d-bc9a-79de-6279-91a4dafeff60	2021-05-24 07:28:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:28:25.853+03	2021-05-24 07:28:25.862+03	
12cfe32a-d54c-3096-1ced-a99161175bab	2021-05-24 07:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:28:45.853+03	2021-05-24 07:28:45.861+03	
1ed33df6-40bd-ceb2-cf4c-c5b90927b54c	2021-05-24 07:29:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:29:05.853+03	2021-05-24 07:29:05.86+03	
10fbca74-69ff-e5ac-967f-3d5b6b65376f	2021-05-24 07:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:29:25.853+03	2021-05-24 07:29:25.86+03	
ff5b418c-8cb6-5ea5-afb4-d6e92b9507df	2021-05-24 07:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:29:45.853+03	2021-05-24 07:29:45.861+03	
22c39d9d-df46-8e8d-326b-2d55ec4ef135	2021-05-24 07:30:00.854	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 07:30:00.853+03	2021-05-24 07:30:00.859+03	ERROR
7d80437c-86cc-7f5b-d046-99e790ce4f1f	2021-05-24 07:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:30:15.853+03	2021-05-24 07:30:15.911+03	
57db50e7-22b9-cc01-c42a-daceb5592348	2021-05-24 07:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:30:35.853+03	2021-05-24 07:30:35.86+03	
2bec74a2-c113-9813-cc8e-691887df16e5	2021-05-24 07:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:30:55.853+03	2021-05-24 07:30:55.871+03	
ac4cac9b-54bc-32ed-c3b5-08a4380b50ed	2021-05-24 07:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:31:05.853+03	2021-05-24 07:31:05.861+03	
2f17425e-7599-d4bd-ef26-3a05457e17dc	2021-05-24 23:01:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:01:11.877+03	2021-05-24 23:01:11.883+03	
34ce97e7-91c8-2e4e-11d3-4d51b0bf4e7e	2021-05-24 07:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:31:25.853+03	2021-05-24 07:31:25.86+03	
ebaad58f-0d7b-423f-5d72-74cb925be0cc	2021-05-24 07:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:31:45.853+03	2021-05-24 07:31:45.861+03	
79b6170f-68c6-4b73-de31-246192f187f2	2021-05-24 23:01:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:01:31.877+03	2021-05-24 23:01:31.884+03	
38752037-9000-c930-6638-5cff518057c0	2021-05-24 07:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:32:05.853+03	2021-05-24 07:32:05.86+03	
0cecb0a2-7557-9f0f-998c-3623533ab95e	2021-05-24 07:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:32:25.853+03	2021-05-24 07:32:25.861+03	
b1b95c4c-0386-fa69-fdd7-916609c1b601	2021-05-24 23:01:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:01:51.877+03	2021-05-24 23:01:51.883+03	
efa5de43-2da5-4771-888e-7e00a5a4c34c	2021-05-24 07:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:32:45.853+03	2021-05-24 07:32:45.862+03	
c55241f9-4803-0dff-3b6c-65864d6328f7	2021-05-24 07:33:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:33:05.853+03	2021-05-24 07:33:05.86+03	
225a704d-cc7a-e2dc-d196-08b17cf055df	2021-05-24 23:02:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:02:11.877+03	2021-05-24 23:02:11.884+03	
f4420d99-5a40-101d-7aa0-a3ab74d79824	2021-05-24 07:33:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:33:25.853+03	2021-05-24 07:33:25.86+03	
d91e8175-7737-d447-c2cb-43229e249304	2021-05-24 07:33:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:33:45.853+03	2021-05-24 07:33:45.904+03	
b45f4112-1b29-3d89-dd22-cb6758ab43a6	2021-05-24 23:02:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:02:31.877+03	2021-05-24 23:02:31.882+03	
33f57db8-d2ec-48b3-10fa-32b5d4511601	2021-05-24 07:34:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:34:05.853+03	2021-05-24 07:34:05.861+03	
d43bd0b8-af9f-6c9e-24bb-2dd88f555308	2021-05-24 07:34:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:34:25.853+03	2021-05-24 07:34:25.86+03	
1facea2c-2c52-4a26-05d1-580b2637366a	2021-05-24 23:02:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:02:51.877+03	2021-05-24 23:02:51.884+03	
1a135bfe-790e-4c56-4208-a37dfe8ad8f8	2021-05-24 07:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:34:45.853+03	2021-05-24 07:34:45.861+03	
23ad4c03-66b5-a2a8-445b-e3317df9a050	2021-05-24 07:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:35:05.853+03	2021-05-24 07:35:05.86+03	
91321477-ba4e-b79b-9457-0233c75b34c5	2021-05-24 23:03:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:03:11.877+03	2021-05-24 23:03:11.884+03	
1748b042-9c9b-c981-7225-99358abfeab6	2021-05-24 07:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:35:25.853+03	2021-05-24 07:35:25.86+03	
c48be64b-7dd9-1520-3123-268733dcd3c2	2021-05-24 07:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:35:45.853+03	2021-05-24 07:35:46.102+03	
2b531e51-c41a-59de-3be1-25e77688f0dd	2021-05-24 23:03:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:03:32.877+03	2021-05-24 23:03:32.885+03	
6605bc64-c4f7-6ff0-c3d5-ea9084341bdb	2021-05-24 07:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:36:05.853+03	2021-05-24 07:36:05.86+03	
dae91065-8b65-e0e1-18d4-14affdca911a	2021-05-24 07:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:36:25.853+03	2021-05-24 07:36:25.86+03	
2540ee81-72f9-e711-97fd-6af276c7e973	2021-05-24 23:03:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:03:52.877+03	2021-05-24 23:03:52.926+03	
9afac72d-b08d-0538-ad47-14bc929e994c	2021-05-24 07:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:36:45.853+03	2021-05-24 07:36:45.862+03	
6f3869b6-29e3-8e15-fce5-e06648d7235d	2021-05-24 07:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:37:05.853+03	2021-05-24 07:37:05.863+03	
da0c6db9-9c6a-b57f-2b41-7465f409cba5	2021-05-24 23:04:12.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:04:12.878+03	2021-05-24 23:04:12.888+03	
431e82ce-252a-6848-927d-ad988e6c6a00	2021-05-24 07:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:37:25.853+03	2021-05-24 07:37:25.86+03	
c57f74e8-5642-27d1-5d59-dd22a8a44e50	2021-05-24 07:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:37:45.853+03	2021-05-24 07:37:45.861+03	
144d70d3-7311-a5c9-cf35-8439b15e7c57	2021-05-24 23:04:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:04:33.877+03	2021-05-24 23:04:34.169+03	
ac8eb987-3f6b-8e0f-2f43-aba352c503ca	2021-05-24 07:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:38:05.853+03	2021-05-24 07:38:05.861+03	
157f6c47-9392-1950-6759-fe171ac7d72b	2021-05-24 07:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:38:25.853+03	2021-05-24 07:38:25.873+03	
69121a59-35e1-7b94-3770-c59469ad6370	2021-05-24 23:04:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:04:53.877+03	2021-05-24 23:04:53.889+03	
f4096496-8907-9463-2e56-1a0cea67730c	2021-05-24 07:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:38:45.853+03	2021-05-24 07:38:45.86+03	
c0c7b3c5-592c-0183-6b32-68292512d544	2021-05-24 07:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:39:05.853+03	2021-05-24 07:39:05.86+03	
6c81a896-cd21-1bde-c9c1-700fe3c4c8a9	2021-05-24 23:05:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:05:13.877+03	2021-05-24 23:05:14.055+03	
66d684a4-792d-000f-4f8d-a09db662e374	2021-05-24 07:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:39:25.853+03	2021-05-24 07:39:25.861+03	
398aa53a-a7cf-6669-2597-75a538f2605c	2021-05-24 07:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:39:45.853+03	2021-05-24 07:39:45.862+03	
e422f5b2-ac47-1432-f8c0-a2da70488ee9	2021-05-24 23:05:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:05:33.877+03	2021-05-24 23:05:33.883+03	
ba7fbdfe-2511-293c-a047-56af3e9e9c95	2021-05-24 07:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 07:40:00.853+03	2021-05-24 07:40:00.858+03	ERROR
ba2a89ba-b77f-4f95-8a62-5268e7c64f65	2021-05-24 07:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:40:15.853+03	2021-05-24 07:40:15.861+03	
8cb68d42-1a63-c5e3-c837-090f0e4bc061	2021-05-24 23:05:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:05:53.877+03	2021-05-24 23:05:53.883+03	
de648eff-81be-783f-c397-569a50934009	2021-05-24 07:40:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:40:35.853+03	2021-05-24 07:40:35.861+03	
9950fe82-f4e1-296d-9416-39af57bc62e1	2021-05-24 07:40:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:40:55.853+03	2021-05-24 07:40:55.861+03	
bfcd6050-8a7a-110b-71c4-048be5d76b18	2021-05-24 23:06:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:06:13.877+03	2021-05-24 23:06:13.886+03	
b2979c61-2514-1d39-5b9f-35aaacffe4c0	2021-05-24 07:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:41:15.853+03	2021-05-24 07:41:15.861+03	
d5342a9a-1eca-e55f-c9e7-696b2076f5c9	2021-05-24 07:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:41:35.853+03	2021-05-24 07:41:35.86+03	
02ef62d7-3331-4573-4339-5fde3675e2c7	2021-05-24 23:06:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:06:33.877+03	2021-05-24 23:06:33.885+03	
e4390a94-dc66-31a0-8b8f-7bbf5ccdac87	2021-05-24 07:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:41:55.853+03	2021-05-24 07:41:55.86+03	
6ba2fc75-0d45-51f5-7075-fe28f3cd9786	2021-05-24 07:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:42:15.853+03	2021-05-24 07:42:15.861+03	
49faf2d2-48a2-8070-2909-9785ef021fba	2021-05-24 23:06:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:06:53.877+03	2021-05-24 23:06:53.884+03	
7651db63-765d-02a3-f755-842280654edb	2021-05-24 07:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:42:35.853+03	2021-05-24 07:42:35.859+03	
ea4cc889-535e-13a7-4e19-a3c7bc68470b	2021-05-24 07:42:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:42:55.853+03	2021-05-24 07:42:55.86+03	
e8d8c074-aaf6-f2e1-e069-8fa386711873	2021-05-24 23:07:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:07:13.877+03	2021-05-24 23:07:13.883+03	
7470c13e-046b-f6c6-5397-4132531e638c	2021-05-24 07:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:43:15.853+03	2021-05-24 07:43:15.903+03	
4f341c2d-a967-d41b-89a0-0c1845e65bff	2021-05-24 07:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:43:35.853+03	2021-05-24 07:43:35.86+03	
861d2456-3d39-8a19-f4e0-b616beadcc50	2021-05-24 07:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:43:55.853+03	2021-05-24 07:43:55.861+03	
6bd1277e-20be-b694-d071-4614f9b99120	2021-05-24 07:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:44:15.853+03	2021-05-24 07:44:15.861+03	
d3659558-2b23-ef77-4f7c-69c7b98fc101	2021-05-24 07:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:44:35.853+03	2021-05-24 07:44:35.863+03	
c4b8494a-7d8f-4660-2bb3-a119ecdf60e3	2021-05-24 07:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:44:55.853+03	2021-05-24 07:44:55.86+03	
b9169b99-41ee-7752-dbbc-551785628a89	2021-05-24 07:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:45:15.853+03	2021-05-24 07:45:15.86+03	
6c60608d-bdac-4391-4770-747a5ee0d923	2021-05-24 07:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:45:35.853+03	2021-05-24 07:45:35.86+03	
4ad08a96-53b7-73fc-8a84-eb98a53b2797	2021-05-24 07:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:31:15.853+03	2021-05-24 07:31:15.861+03	
23443cfc-44fb-4227-0597-4ffa62eae727	2021-05-24 07:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:31:35.853+03	2021-05-24 07:31:35.86+03	
10ef02bd-a9d0-5678-d4f7-2fc244ca3a16	2021-05-24 07:31:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:31:55.853+03	2021-05-24 07:31:55.86+03	
86775386-5081-9c93-f917-4f7c7c58b821	2021-05-24 07:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:32:15.853+03	2021-05-24 07:32:15.861+03	
ae66eab9-3452-4806-ccc7-af48646a8eef	2021-05-24 07:32:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:32:35.853+03	2021-05-24 07:32:35.86+03	
f1c3b5c2-8f7d-a137-bddd-4783c8c0405a	2021-05-24 07:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:32:55.853+03	2021-05-24 07:32:55.86+03	
d8bd2640-22ba-0496-f8ac-600583dd7e0d	2021-05-24 07:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:33:15.853+03	2021-05-24 07:33:15.86+03	
f721f1e0-5026-67a4-e3c2-fbc95d22f604	2021-05-24 07:33:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:33:35.853+03	2021-05-24 07:33:35.86+03	
0f5fee4c-72b0-039a-0d08-9afbbf74fbe3	2021-05-24 07:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:33:55.853+03	2021-05-24 07:33:55.86+03	
c32fa79b-2b25-113d-83a4-f411cd7ae195	2021-05-24 07:34:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:34:15.853+03	2021-05-24 07:34:15.861+03	
17b4ecdd-b1e5-6667-a779-64780b36e0c9	2021-05-24 07:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:34:35.853+03	2021-05-24 07:34:35.86+03	
1b91b4ba-56be-8d4e-587c-b6569c3c2d93	2021-05-24 07:34:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:34:55.853+03	2021-05-24 07:34:55.861+03	
10133307-282c-01e7-c223-862147fcb64c	2021-05-24 07:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:35:15.853+03	2021-05-24 07:35:15.861+03	
517e1cc5-343f-f611-c365-b9c7a8cedb2c	2021-05-24 07:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:35:35.853+03	2021-05-24 07:35:35.86+03	
f2cd2666-4d7a-28a4-37f2-1bd1d9fa8b92	2021-05-24 07:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:35:55.853+03	2021-05-24 07:35:55.861+03	
8614c8e9-b7ff-76da-213e-d9e6a4f953d0	2021-05-24 07:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:36:15.853+03	2021-05-24 07:36:15.9+03	
1d3996cc-1a79-1d0b-9bcd-20b60bbf2220	2021-05-24 07:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:36:35.853+03	2021-05-24 07:36:35.86+03	
ba2547ba-8f64-b6b1-4e91-3d4fcc81a160	2021-05-24 07:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:36:55.853+03	2021-05-24 07:36:55.87+03	
eaa676e3-1c3b-00e1-e898-383136b5a11e	2021-05-24 07:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:37:15.853+03	2021-05-24 07:37:15.861+03	
3661b2fd-8b13-7c4e-562e-71a8921a11ae	2021-05-24 07:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:37:35.853+03	2021-05-24 07:37:35.86+03	
b6804a1b-27c6-b74e-d7bd-33e2e92e72b1	2021-05-24 07:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:37:55.853+03	2021-05-24 07:37:55.86+03	
eeba5816-463c-1664-df81-7decb03ab44a	2021-05-24 07:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:38:15.853+03	2021-05-24 07:38:15.911+03	
51e01927-14d6-ac9a-45c7-2dd8d3b2aa97	2021-05-24 07:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:38:35.853+03	2021-05-24 07:38:35.868+03	
15efbc9d-53d4-78fd-d63a-4b09f81d1cc9	2021-05-24 07:38:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:38:55.853+03	2021-05-24 07:38:55.867+03	
ce002567-fdf8-283d-c176-e7a2413da603	2021-05-24 07:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:39:15.853+03	2021-05-24 07:39:15.861+03	
4bfb4ed1-ccfa-8e40-1d3f-81f160eb77ee	2021-05-24 07:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:39:35.853+03	2021-05-24 07:39:35.86+03	
447620dc-328b-d735-d0a2-6270364c0383	2021-05-24 07:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:39:55.853+03	2021-05-24 07:39:55.86+03	
9e102f7e-ec13-cbce-422b-7a63eab6b76a	2021-05-24 07:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:40:05.853+03	2021-05-24 07:40:05.86+03	
77e4e078-640f-4c76-5fbe-089b9b427086	2021-05-24 07:40:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:40:25.853+03	2021-05-24 07:40:25.861+03	
d57b58fe-dd0e-5e0c-6f97-ab0ccb70dac5	2021-05-24 07:40:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:40:45.853+03	2021-05-24 07:40:45.862+03	
94e40510-8ca2-d50c-0cdf-990af484ee85	2021-05-24 07:41:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:41:05.853+03	2021-05-24 07:41:05.86+03	
6a75c982-8dec-feb8-919d-77bf29ab6dd8	2021-05-24 07:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:41:25.853+03	2021-05-24 07:41:25.861+03	
eda653fb-fef4-89fb-7a86-7da7333d6ec2	2021-05-24 07:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:41:45.853+03	2021-05-24 07:41:45.861+03	
fe0bfdf8-9351-b61a-f307-04d65dee1070	2021-05-24 07:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:42:05.853+03	2021-05-24 07:42:05.86+03	
fd7ff5c6-e5a5-2bc8-0679-f7a37e4d8a4e	2021-05-24 07:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:42:25.853+03	2021-05-24 07:42:25.86+03	
7b84e26b-46dc-9099-2584-c872ce0b031a	2021-05-24 07:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:42:45.853+03	2021-05-24 07:42:45.863+03	
fa13a2cb-b4f2-b853-d929-99a3cd92e6b8	2021-05-24 07:43:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:43:05.853+03	2021-05-24 07:43:05.862+03	
57fee2d9-7133-7856-01a2-61bd04478677	2021-05-24 07:43:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:43:25.853+03	2021-05-24 07:43:25.86+03	
3435746c-3f76-a558-73da-fa7b6c32451f	2021-05-24 07:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:43:45.853+03	2021-05-24 07:43:45.861+03	
7ee4eb83-a7f8-66f1-82dd-78383103d320	2021-05-24 07:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:44:05.853+03	2021-05-24 07:44:05.86+03	
ae7a456a-e92c-a7d6-2955-7b1bffd7075e	2021-05-24 07:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:44:25.853+03	2021-05-24 07:44:25.86+03	
544b0196-5482-3488-d39f-b008732eb322	2021-05-24 07:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:44:45.853+03	2021-05-24 07:44:45.861+03	
e4a5d8cb-0e9f-17fb-15b0-d5488fc80c57	2021-05-24 07:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:45:05.853+03	2021-05-24 07:45:05.86+03	
bd680966-2ece-64e9-ad93-0d031b6f17e3	2021-05-24 07:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:45:25.853+03	2021-05-24 07:45:25.86+03	
0532987e-a0db-cbcb-9141-494229256bab	2021-05-24 07:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:45:45.853+03	2021-05-24 07:45:45.862+03	
e06004cc-c527-091e-dbf3-1fcf46357049	2021-05-24 07:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:45:55.853+03	2021-05-24 07:45:55.86+03	
20e7b3e4-b9ff-46d9-fa8c-239883eefca2	2021-05-24 07:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:46:05.853+03	2021-05-24 07:46:05.86+03	
02f9b94c-538c-b070-64c0-6f988e878d82	2021-05-24 07:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:46:15.853+03	2021-05-24 07:46:15.86+03	
e0e284f5-0616-48c2-0c10-2678d76c538e	2021-05-24 07:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:46:25.853+03	2021-05-24 07:46:25.86+03	
3017a455-8cb9-d1a6-cd3c-148aac1031b5	2021-05-24 07:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:46:35.853+03	2021-05-24 07:46:35.862+03	
fb99c72a-43d4-2788-e0e7-1dddede40572	2021-05-24 07:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:46:45.853+03	2021-05-24 07:46:45.913+03	
3d8fed77-cb92-60ad-32a8-f65af2b5302a	2021-05-24 07:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:46:55.853+03	2021-05-24 07:46:55.86+03	
2db3f026-e7e4-9714-e72c-520944c9f920	2021-05-24 07:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:47:05.853+03	2021-05-24 07:47:05.86+03	
a399661a-c7ff-7263-3d2e-a4deba6977de	2021-05-24 07:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:47:15.853+03	2021-05-24 07:47:15.86+03	
e1ff83bc-d63d-f6d9-d55f-d1b82ac82402	2021-05-24 07:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:47:25.853+03	2021-05-24 07:47:25.86+03	
93477bfa-84a7-48a5-506d-28859276d5dd	2021-05-24 07:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:47:35.853+03	2021-05-24 07:47:35.86+03	
bd61dc22-6cac-de24-91fd-5c5be6428e05	2021-05-24 07:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:47:45.853+03	2021-05-24 07:47:45.863+03	
d8dbd932-fec0-d9ae-7889-e30e81518596	2021-05-24 07:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:47:55.853+03	2021-05-24 07:47:55.863+03	
09176bfa-97dc-aba9-072d-303c4b434e76	2021-05-24 07:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:48:05.853+03	2021-05-24 07:48:05.86+03	
fa63c2d5-e6cf-cbc6-95e4-9b7a336bdae6	2021-05-24 07:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:48:15.853+03	2021-05-24 07:48:15.86+03	
2927fee9-03c4-65f7-ad1a-82d5381649c3	2021-05-24 07:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:48:25.853+03	2021-05-24 07:48:25.86+03	
abb9715c-4a28-1877-9e6d-f680481bc1d9	2021-05-24 07:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:48:35.853+03	2021-05-24 07:48:35.861+03	
6f3967dd-be64-d9f8-2fb3-c60430591087	2021-05-24 07:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:48:45.853+03	2021-05-24 07:48:45.86+03	
2b8a4f36-7ce9-f9b0-a41f-62c52426d00e	2021-05-24 07:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:48:55.853+03	2021-05-24 07:48:55.861+03	
3c237080-b569-d668-36ef-9cbf614fc0ae	2021-05-24 07:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:49:15.853+03	2021-05-24 07:49:15.86+03	
71a3e36e-a4f0-4459-6422-54ee0505a5fc	2021-05-24 07:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:49:35.853+03	2021-05-24 07:49:35.86+03	
793fbdde-5b40-11bd-08a5-43d01f505fee	2021-05-24 07:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:49:55.853+03	2021-05-24 07:49:55.86+03	
da2b49fb-3230-25dd-1054-b308c0902a7a	2021-05-24 07:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:50:05.853+03	2021-05-24 07:50:05.86+03	
fcb47a5d-b3c5-c80e-bf9f-2384da89a1b1	2021-05-24 07:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:50:25.853+03	2021-05-24 07:50:25.861+03	
203dd3bc-3125-f589-1b6f-f9a437beecd9	2021-05-24 07:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:50:45.853+03	2021-05-24 07:50:45.861+03	
6e5b339d-cf0f-b0cc-a0a7-7dc07087aeee	2021-05-24 07:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:51:05.853+03	2021-05-24 07:51:05.867+03	
fe8d6376-6e6f-6f84-9c68-c214f8cf7e5f	2021-05-24 07:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:51:25.853+03	2021-05-24 07:51:25.861+03	
ff52ad93-7613-72a0-3108-e27c9b0fd996	2021-05-24 07:51:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:51:45.853+03	2021-05-24 07:51:45.86+03	
5c874eb4-4414-9024-96eb-cee3edb0c3cb	2021-05-24 07:52:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:52:05.853+03	2021-05-24 07:52:05.86+03	
036721a1-bd67-36db-efe5-9c33e479e420	2021-05-24 07:52:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:52:25.853+03	2021-05-24 07:52:25.86+03	
ff679ca8-7e3d-5ca4-4a72-2ac685d6b765	2021-05-24 07:52:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:52:45.853+03	2021-05-24 07:52:45.861+03	
6d468852-40df-a933-c7d6-0cf66307d2c6	2021-05-24 07:53:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:53:05.853+03	2021-05-24 07:53:05.861+03	
f06e58b7-fde2-2150-0d8b-bbf7071eb39e	2021-05-24 07:53:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:53:25.853+03	2021-05-24 07:53:25.86+03	
f5b53b22-33e1-895c-3404-df4573bb7290	2021-05-24 07:53:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:53:45.853+03	2021-05-24 07:53:45.862+03	
93d1b3a1-8a84-89b8-93a8-ea8415ca8c1c	2021-05-24 07:54:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:54:05.853+03	2021-05-24 07:54:05.86+03	
bb8cca32-1584-afbd-5ac5-31387045d470	2021-05-24 07:54:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:54:25.853+03	2021-05-24 07:54:25.86+03	
df0e2a86-3297-9ac5-5a77-e5cbbacc612b	2021-05-24 07:54:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:54:45.853+03	2021-05-24 07:54:45.915+03	
c878854d-9a0c-854a-d818-e5127a4ca941	2021-05-24 07:55:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:55:05.853+03	2021-05-24 07:55:05.86+03	
4488adf2-3661-c4cb-e12a-e91bed902ea2	2021-05-24 07:55:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:55:25.853+03	2021-05-24 07:55:25.86+03	
776ccf0c-9bb4-7cf5-f999-9fdfb9d010d0	2021-05-24 07:55:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:55:45.853+03	2021-05-24 07:55:45.861+03	
80da336d-0630-20f3-df24-01641a4c895c	2021-05-24 07:56:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:56:05.853+03	2021-05-24 07:56:05.86+03	
ad0639e0-dd3e-718d-7dc1-436e56b96f70	2021-05-24 07:56:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:56:25.853+03	2021-05-24 07:56:25.86+03	
5f94c337-4cc9-56fb-0878-623e70bba934	2021-05-24 07:56:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:56:45.853+03	2021-05-24 07:56:45.908+03	
52727b72-c7de-fb82-d2a9-bf2b7e7e3d95	2021-05-24 07:57:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:57:05.853+03	2021-05-24 07:57:05.86+03	
52d8ad3f-885b-ade7-4013-19c4c76acb10	2021-05-24 07:57:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:57:25.853+03	2021-05-24 07:57:25.86+03	
a6903bda-5e8b-d622-db55-769977cfd94d	2021-05-24 07:57:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:57:45.853+03	2021-05-24 07:57:45.861+03	
196121d1-2f08-fc29-35b6-413f059f23c5	2021-05-24 07:58:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:58:05.853+03	2021-05-24 07:58:05.86+03	
6b699423-62d5-317e-116a-e5206c570900	2021-05-24 07:58:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:58:25.853+03	2021-05-24 07:58:25.862+03	
a2345237-86b2-5a3b-0b82-c018c7e43f6f	2021-05-24 07:58:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:58:45.853+03	2021-05-24 07:58:45.861+03	
c7620485-5ed3-6395-53ef-e2a9584eaf50	2021-05-24 07:59:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:59:05.853+03	2021-05-24 07:59:05.861+03	
c47cd134-823a-6290-d59f-bdba94770e9a	2021-05-24 07:59:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:59:25.853+03	2021-05-24 07:59:25.86+03	
6ffa413a-10cc-ab7b-66e9-b560b98a85c8	2021-05-24 07:59:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:59:45.853+03	2021-05-24 07:59:45.86+03	
6e945607-a446-b806-6c58-5e6301cfb211	2021-05-24 08:00:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 08:00:00.853+03	2021-05-24 08:00:00.858+03	ERROR
4477db68-05b5-6bf0-068c-ae5bb11117ed	2021-05-24 08:00:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:00:15.853+03	2021-05-24 08:00:15.862+03	
32bb81c2-1a44-0614-bc2e-399e48b58b43	2021-05-24 08:00:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:00:35.853+03	2021-05-24 08:00:35.86+03	
d6ef7d07-dcc8-5832-9552-39b65362e022	2021-05-24 08:00:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:00:55.853+03	2021-05-24 08:00:55.86+03	
f81e0daf-1bbd-20e8-27ca-e3c9ea9939c5	2021-05-24 08:01:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:01:15.853+03	2021-05-24 08:01:15.86+03	
b8c7379b-7ab1-ed42-098f-19e12c860964	2021-05-24 08:01:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:01:35.853+03	2021-05-24 08:01:35.86+03	
b7b65006-88a9-0404-decf-cbb6ba61f97f	2021-05-24 08:01:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:01:55.853+03	2021-05-24 08:01:55.86+03	
531815d6-0009-bb87-b218-34959b8cd220	2021-05-24 08:02:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:02:15.853+03	2021-05-24 08:02:15.86+03	
1253f970-634d-e3c5-de70-1840dfbeaf56	2021-05-24 08:02:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:02:35.853+03	2021-05-24 08:02:35.86+03	
9b482af0-1794-03e9-60e9-cfa08f99ee23	2021-05-24 08:02:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:02:55.853+03	2021-05-24 08:02:55.863+03	
56eba015-425a-612a-c16d-412ef71a6375	2021-05-24 08:03:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:03:15.853+03	2021-05-24 08:03:15.867+03	
446a4c87-64c2-a26a-ed90-7e8f36c47b9a	2021-05-24 08:03:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:03:35.853+03	2021-05-24 08:03:35.86+03	
d82d8c31-56f3-84f5-87e6-269efa96bb04	2021-05-24 08:03:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:03:55.853+03	2021-05-24 08:03:55.861+03	
466dd0a4-5593-1c97-b268-e94ea6f39a99	2021-05-24 08:04:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:04:15.853+03	2021-05-24 08:04:15.86+03	
0f051181-f487-d20d-c7b6-d44cc6c67270	2021-05-24 08:04:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:04:35.853+03	2021-05-24 08:04:35.861+03	
7e0e4df9-8e67-40f0-a39e-464602a1b746	2021-05-24 08:04:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:04:55.853+03	2021-05-24 08:04:55.86+03	
b6e9020a-8631-5f01-5d27-e852df8051d2	2021-05-24 08:05:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:05:15.853+03	2021-05-24 08:05:15.866+03	
7f5af142-a702-d433-85bf-927da25007d6	2021-05-24 08:05:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:05:35.853+03	2021-05-24 08:05:35.86+03	
e1fbee6c-f94f-7e6c-d33d-8c3255bfb187	2021-05-24 08:05:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:05:55.853+03	2021-05-24 08:05:55.86+03	
6ed516fd-ce3e-025a-a53a-2b3fdec03f38	2021-05-24 08:06:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:06:15.853+03	2021-05-24 08:06:15.86+03	
c82fc21a-ac36-a094-6352-c3603572995d	2021-05-24 08:06:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:06:35.853+03	2021-05-24 08:06:35.86+03	
0e106a3e-9fdc-0718-9838-ba7a01986432	2021-05-24 08:06:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:06:55.853+03	2021-05-24 08:06:55.86+03	
6b7e38f5-8a74-8a81-2844-fbe0f54ba95a	2021-05-24 08:07:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:07:15.853+03	2021-05-24 08:07:15.86+03	
2baf38da-9664-ddf2-c92d-96f58940818e	2021-05-24 08:07:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:07:35.853+03	2021-05-24 08:07:35.862+03	
bc2bf4a7-eea8-93ff-2a13-b7ae3ebb298d	2021-05-24 08:07:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:07:55.853+03	2021-05-24 08:07:55.86+03	
f35034b4-d8d9-201c-19e2-c14dc671cc63	2021-05-24 08:08:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:08:15.853+03	2021-05-24 08:08:15.86+03	
62e541a2-5b8d-4f8e-89f0-09a76c67f4f1	2021-05-24 08:08:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:08:35.853+03	2021-05-24 08:08:35.86+03	
0d061cb2-f15f-a60c-e412-95d3cd624e91	2021-05-24 08:08:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:08:55.853+03	2021-05-24 08:08:55.86+03	
4036b0a6-f7ba-7a45-d96b-8560bb916a13	2021-05-24 08:09:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:09:15.853+03	2021-05-24 08:09:15.861+03	
ea0ce222-b641-98ea-f052-e1d2f1963e6b	2021-05-24 07:49:05.859	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:49:05.853+03	2021-05-24 07:49:05.867+03	
0457c1fa-5604-3f9f-e3ec-8eb6aae9006d	2021-05-24 07:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:49:25.853+03	2021-05-24 07:49:25.86+03	
98f95c8a-4aa6-0ec4-f465-9e4ff88f3eb0	2021-05-24 07:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:49:45.853+03	2021-05-24 07:49:45.86+03	
89f3a4d0-cc91-0fab-58d4-77edb0054a2a	2021-05-24 07:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 07:50:00.853+03	2021-05-24 07:50:00.859+03	ERROR
e869ca3e-997f-eae9-815e-2eb941535e06	2021-05-24 07:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:50:15.853+03	2021-05-24 07:50:15.86+03	
ed273db3-df8a-97d3-bcb8-aecc97c6aabc	2021-05-24 07:50:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:50:35.853+03	2021-05-24 07:50:35.86+03	
26617f7b-102e-9601-533e-4b027f65f4c3	2021-05-24 07:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:50:55.853+03	2021-05-24 07:50:55.861+03	
1a08d57b-c3a6-e81f-6ecb-ff86164da88c	2021-05-24 07:51:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:51:15.853+03	2021-05-24 07:51:15.861+03	
7a39c227-af32-2cbd-de7a-c465b44340ba	2021-05-24 07:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:51:35.853+03	2021-05-24 07:51:35.859+03	
2f7a24f3-b196-cc69-9f9f-49cafec67fbb	2021-05-24 07:51:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:51:55.853+03	2021-05-24 07:51:55.86+03	
bc60ac23-3bb9-b6f3-f32d-2c39bcf8a7b3	2021-05-24 07:52:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:52:15.853+03	2021-05-24 07:52:15.86+03	
b49e991b-4b16-3729-a492-e60cc3b5265e	2021-05-24 07:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:52:35.853+03	2021-05-24 07:52:35.861+03	
de234aa5-2916-dcf1-4314-f6eeacf4889b	2021-05-24 07:52:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:52:55.853+03	2021-05-24 07:52:55.861+03	
ab0c7307-a213-3bd8-e7d3-63e47a62bfed	2021-05-24 07:53:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:53:15.853+03	2021-05-24 07:53:15.86+03	
a11691d2-499b-b0a8-016c-d8c04712d95d	2021-05-24 07:53:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:53:35.853+03	2021-05-24 07:53:35.86+03	
28149840-e325-26bf-6746-1835df29a985	2021-05-24 07:53:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:53:55.853+03	2021-05-24 07:53:55.86+03	
baca2801-5acd-9380-3ca7-85a476fd1ec1	2021-05-24 07:54:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:54:15.853+03	2021-05-24 07:54:15.861+03	
6e1c4394-407a-0369-c7ce-2a86f70dfe3f	2021-05-24 07:54:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:54:35.853+03	2021-05-24 07:54:35.86+03	
f1ea9395-d3e5-683e-15a2-26629b303de2	2021-05-24 07:54:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:54:55.853+03	2021-05-24 07:54:55.86+03	
71de3cef-a3a0-01c0-2897-587d527e8e27	2021-05-24 07:55:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:55:15.853+03	2021-05-24 07:55:15.86+03	
881da255-ae18-4081-970d-31837a81b0f5	2021-05-24 07:55:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:55:35.853+03	2021-05-24 07:55:35.86+03	
5940ff4e-89ae-2012-4f14-00486ad50a24	2021-05-24 07:55:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:55:55.853+03	2021-05-24 07:55:55.862+03	
04efda34-8e3a-794a-864e-3bc08fc00e25	2021-05-24 07:56:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:56:15.853+03	2021-05-24 07:56:15.86+03	
5826dfb0-6a05-be10-7e59-7f48c0b95ee1	2021-05-24 07:56:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:56:35.853+03	2021-05-24 07:56:35.862+03	
307d29a1-e783-d6c4-54df-bb514463d6ce	2021-05-24 07:56:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:56:55.853+03	2021-05-24 07:56:55.86+03	
325cbc34-009e-ee5e-005d-cb616ab86766	2021-05-24 07:57:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:57:15.853+03	2021-05-24 07:57:15.86+03	
7d7bfff1-71da-b99b-0513-04aab84d3191	2021-05-24 07:57:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:57:35.853+03	2021-05-24 07:57:35.86+03	
a89b8b38-004c-73b0-e311-8588b226d5da	2021-05-24 07:57:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:57:55.853+03	2021-05-24 07:57:55.861+03	
a5a939fc-6e07-937c-b627-7c0faee5d98e	2021-05-24 07:58:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:58:15.853+03	2021-05-24 07:58:15.86+03	
0cd0589a-bc51-bf41-efaf-92676351ca7c	2021-05-24 07:58:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:58:35.853+03	2021-05-24 07:58:35.86+03	
462b17c1-262c-850b-23e3-83d5e5c00f71	2021-05-24 07:58:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:58:55.853+03	2021-05-24 07:58:55.86+03	
d3af251b-a47e-2813-71ef-b7d2d5f2a355	2021-05-24 07:59:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:59:15.853+03	2021-05-24 07:59:15.86+03	
676b4bc5-28cc-8087-d7b4-0ae5437179b4	2021-05-24 07:59:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:59:35.853+03	2021-05-24 07:59:35.859+03	
7a2041da-1db9-8b86-0782-afa3a2ec9727	2021-05-24 07:59:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 07:59:55.853+03	2021-05-24 07:59:55.859+03	
959ca735-2096-1864-84d7-2e68c8c46a00	2021-05-24 08:00:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:00:05.853+03	2021-05-24 08:00:05.86+03	
bf5cac7f-ed7e-8173-4bc3-17ce591e3494	2021-05-24 08:00:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:00:25.853+03	2021-05-24 08:00:25.86+03	
b59d31c3-dd30-e03b-cdf5-41ef7e9290a4	2021-05-24 08:00:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:00:45.853+03	2021-05-24 08:00:45.86+03	
0942085f-454d-1aa6-f496-72050d46464d	2021-05-24 08:01:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:01:05.853+03	2021-05-24 08:01:05.86+03	
7fcb0535-4be2-3a6c-f869-3bb8d6368320	2021-05-24 08:01:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:01:25.853+03	2021-05-24 08:01:25.861+03	
7004ccee-bef1-14fc-2ab4-fceb2b4adbbd	2021-05-24 08:01:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:01:45.853+03	2021-05-24 08:01:45.86+03	
8688bf46-34b5-c63e-0451-f7dcf52a5e70	2021-05-24 08:02:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:02:05.853+03	2021-05-24 08:02:05.86+03	
4adf4eae-d897-8883-5dcb-1605bb6f18ff	2021-05-24 08:02:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:02:25.853+03	2021-05-24 08:02:25.86+03	
6aed3520-c80e-8cde-62df-9ab674cfbe2b	2021-05-24 08:02:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:02:45.853+03	2021-05-24 08:02:45.86+03	
5343d6c6-881d-a3cd-2999-e6ac6b209ea5	2021-05-24 08:03:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:03:05.853+03	2021-05-24 08:03:05.859+03	
648b1a77-401e-3218-d03f-f6899da25513	2021-05-24 08:03:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:03:25.853+03	2021-05-24 08:03:25.862+03	
a8e3b001-f45a-e9ff-573a-5c66541d875c	2021-05-24 08:03:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:03:45.853+03	2021-05-24 08:03:45.86+03	
47ec0a98-a69e-2215-85a8-8edc4320e5c1	2021-05-24 08:04:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:04:05.853+03	2021-05-24 08:04:05.86+03	
62da3c23-627e-4e4f-1f64-4aaaaec69b33	2021-05-24 08:04:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:04:25.853+03	2021-05-24 08:04:25.861+03	
04a924d3-7b38-3c4c-3e4c-cb417497d9b2	2021-05-24 08:04:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:04:45.853+03	2021-05-24 08:04:45.861+03	
81afe739-7aa1-9ee5-a33a-9930e2adcaba	2021-05-24 08:05:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:05:05.853+03	2021-05-24 08:05:05.861+03	
1ce9819f-d7e0-01fe-d3c9-029a0e2de007	2021-05-24 08:05:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:05:25.853+03	2021-05-24 08:05:25.86+03	
b50c005b-47fe-9767-bc6f-63288b13c056	2021-05-24 08:05:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:05:45.853+03	2021-05-24 08:05:45.86+03	
fb6a2608-bb85-d0d5-f378-a8a0f53006bd	2021-05-24 08:06:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:06:05.853+03	2021-05-24 08:06:05.86+03	
7371af5a-5f6e-74a6-a737-e58c8d334276	2021-05-24 08:06:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:06:25.853+03	2021-05-24 08:06:25.86+03	
87a8afbf-7966-f858-7480-e57eaa55a293	2021-05-24 08:06:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:06:45.853+03	2021-05-24 08:06:45.866+03	
65a036a4-1e10-f48c-89c7-b897bec48082	2021-05-24 08:07:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:07:05.853+03	2021-05-24 08:07:05.861+03	
6343d559-e171-86ca-6b1d-fd1e4f7ec45a	2021-05-24 08:07:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:07:25.853+03	2021-05-24 08:07:25.862+03	
3c02cd64-bf08-af22-e553-cc7212801d86	2021-05-24 08:07:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:07:45.853+03	2021-05-24 08:07:45.86+03	
fa421a31-26ea-e4f2-077d-4ff203234d5f	2021-05-24 08:08:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:08:05.853+03	2021-05-24 08:08:05.86+03	
0d9ceffc-ed2e-9b82-ff34-247542434d0f	2021-05-24 08:08:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:08:25.853+03	2021-05-24 08:08:25.859+03	
fd4219d2-a13f-7529-08a8-17afa3dc2229	2021-05-24 08:08:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:08:45.853+03	2021-05-24 08:08:45.861+03	
3edb66ef-6713-6488-135e-b07167a92cd8	2021-05-24 08:09:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:09:05.853+03	2021-05-24 08:09:05.861+03	
5747c76c-8b96-4929-565c-20cd38b7c272	2021-05-24 08:09:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:09:25.853+03	2021-05-24 08:09:25.86+03	
52be32d0-f5c7-7fbe-4b30-6dade3859dd2	2021-05-24 08:09:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:09:35.853+03	2021-05-24 08:09:35.86+03	
ece40781-d0f4-8e81-0bac-8e82f6bed5ac	2021-05-24 08:09:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:09:55.853+03	2021-05-24 08:09:55.86+03	
ef2cac53-2c2a-30bf-0b68-d2bd7a9755ca	2021-05-24 08:10:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:10:05.853+03	2021-05-24 08:10:05.86+03	
b59b4f31-5e19-418b-bbff-237922ebca40	2021-05-24 08:10:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:10:25.853+03	2021-05-24 08:10:25.86+03	
4d18f39d-f08d-75c2-8d7c-25ebfdd419be	2021-05-24 08:10:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:10:45.853+03	2021-05-24 08:10:45.86+03	
5f75c075-3483-f1c4-ea44-c38d210aa0a7	2021-05-24 08:11:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:11:05.853+03	2021-05-24 08:11:05.86+03	
e5a1acf6-cb28-0172-5f5c-03c4fa172e75	2021-05-24 08:11:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:11:25.853+03	2021-05-24 08:11:25.86+03	
69e1e401-a704-d086-a462-f29f16ce3177	2021-05-24 08:11:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:11:45.853+03	2021-05-24 08:11:45.861+03	
19ae2b2f-48a1-1d23-c959-313c7a8ed597	2021-05-24 08:12:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:12:05.853+03	2021-05-24 08:12:05.86+03	
1f2576e8-e096-345c-ffd0-947e04b57b00	2021-05-24 08:12:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:12:25.853+03	2021-05-24 08:12:25.86+03	
307d7c63-edd7-fd1a-56e9-0244bc07f533	2021-05-24 08:12:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:12:45.853+03	2021-05-24 08:12:45.86+03	
d7937aae-6446-7842-0d29-5cad4213ee65	2021-05-24 08:13:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:13:05.853+03	2021-05-24 08:13:05.86+03	
4d9762b4-3a83-9011-ccfc-48eabb6541e6	2021-05-24 08:13:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:13:25.853+03	2021-05-24 08:13:25.862+03	
2929cd97-ae32-cfa0-756d-74b6082eb625	2021-05-24 08:13:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:13:45.853+03	2021-05-24 08:13:45.86+03	
935491fb-98c9-e386-c471-6bec62da38de	2021-05-24 08:14:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:14:05.853+03	2021-05-24 08:14:05.86+03	
633ac6dc-a7cf-bd6a-eb55-980e54deaf11	2021-05-24 08:14:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:14:25.853+03	2021-05-24 08:14:25.861+03	
d9d5be0b-e48b-1cc6-c819-4e1e8a3adad4	2021-05-24 08:14:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:14:45.853+03	2021-05-24 08:14:45.86+03	
aeb5b8a7-4c71-cc73-97c1-9944c0b014dc	2021-05-24 08:15:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:15:05.853+03	2021-05-24 08:15:05.862+03	
7bdbf878-2a3b-5307-36d0-1e9f44d8ae9a	2021-05-24 08:15:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:15:25.853+03	2021-05-24 08:15:25.868+03	
565d5e0b-60da-02dc-7588-b8e2b958e533	2021-05-24 08:15:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:15:45.853+03	2021-05-24 08:15:45.86+03	
22455e2e-e7ca-9fda-c354-44fba225d602	2021-05-24 08:16:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:16:05.853+03	2021-05-24 08:16:05.861+03	
553024d2-74ce-cdd1-f6c5-250d868dcd0d	2021-05-24 08:16:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:16:25.853+03	2021-05-24 08:16:25.86+03	
52749c86-3f6d-efbd-2409-b24b891ea8ab	2021-05-24 08:16:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:16:45.853+03	2021-05-24 08:16:45.86+03	
330d657e-f3a5-dc9a-6817-47907faef521	2021-05-24 08:17:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:17:05.853+03	2021-05-24 08:17:05.859+03	
275c2e34-82c3-a78d-9aca-0ad129b332f2	2021-05-24 08:17:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:17:25.853+03	2021-05-24 08:17:25.86+03	
4a39972c-7fd3-495b-ddd6-575a5d3ab452	2021-05-24 08:17:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:17:45.853+03	2021-05-24 08:17:45.86+03	
2009b74a-8344-474f-78f5-ca4d2880c5df	2021-05-24 08:18:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:18:05.853+03	2021-05-24 08:18:05.86+03	
1bb82f3a-b9da-56e0-4e1b-c8d57d9a74bd	2021-05-24 08:18:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:18:25.853+03	2021-05-24 08:18:25.859+03	
609d03c9-af04-01c3-fb90-6e354fd5db0e	2021-05-24 08:18:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:18:45.853+03	2021-05-24 08:18:45.86+03	
224f3e5e-b2d5-397e-46e0-e4830172b938	2021-05-24 08:19:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:19:05.853+03	2021-05-24 08:19:05.861+03	
de4b8e1a-4917-925d-ab0c-b4083ac0476e	2021-05-24 08:19:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:19:25.853+03	2021-05-24 08:19:25.86+03	
4bc6cc4e-afdb-0e1f-0998-3d056b19c271	2021-05-24 08:19:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:19:45.853+03	2021-05-24 08:19:45.861+03	
9ee29d50-b297-23da-35c7-2431355d5e5a	2021-05-24 08:20:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 08:20:00.853+03	2021-05-24 08:20:00.858+03	ERROR
ee4900a0-341d-e4b9-9411-452117afe38b	2021-05-24 08:20:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:20:15.853+03	2021-05-24 08:20:15.86+03	
d7248153-10fa-a58a-9a19-f3b830084d1a	2021-05-24 08:20:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:20:35.853+03	2021-05-24 08:20:35.86+03	
eb4d173d-668c-743b-5c4c-3cce38fd22ef	2021-05-24 08:20:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:20:55.853+03	2021-05-24 08:20:55.86+03	
7f3d21fc-349d-8fd2-1c0d-96e345795c77	2021-05-24 08:21:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:21:15.853+03	2021-05-24 08:21:15.86+03	
6b8e7dbf-94b3-d4d9-e464-21fa6b2c10bd	2021-05-24 08:21:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:21:35.853+03	2021-05-24 08:21:35.861+03	
6ed512e0-3559-e85b-6b23-db9739296016	2021-05-24 08:21:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:21:55.853+03	2021-05-24 08:21:55.86+03	
6d547576-17fb-8c19-8c2f-51126eb305aa	2021-05-24 08:22:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:22:15.853+03	2021-05-24 08:22:15.861+03	
1790901f-3eca-350a-f19f-f73a3ac5e8ca	2021-05-24 08:22:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:22:35.853+03	2021-05-24 08:22:35.859+03	
4ab776a3-2813-edfb-147a-e52c9a444148	2021-05-24 08:22:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:22:55.853+03	2021-05-24 08:22:55.86+03	
7059c852-a0f1-6b6a-e944-3d1334281b9d	2021-05-24 08:23:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:23:15.853+03	2021-05-24 08:23:15.86+03	
c8f23c83-2deb-e221-f63d-aceb3c35e1a6	2021-05-24 08:23:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:23:35.853+03	2021-05-24 08:23:35.859+03	
ccd9f56b-9a99-34e2-632f-374a3455f092	2021-05-24 08:23:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:23:55.853+03	2021-05-24 08:23:55.86+03	
38acc36e-2c3a-d194-266c-c67dac054ebe	2021-05-24 08:24:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:24:15.853+03	2021-05-24 08:24:15.86+03	
3b745703-f4be-ff00-cb01-682162e34fa7	2021-05-24 08:24:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:24:35.853+03	2021-05-24 08:24:35.86+03	
5a93f6c9-0b2d-9c82-4f8e-cf6caa9ff29e	2021-05-24 08:24:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:24:55.853+03	2021-05-24 08:24:55.86+03	
6501cc1f-8064-b8be-9e6d-a22a9d15dd2d	2021-05-24 08:25:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:25:15.853+03	2021-05-24 08:25:15.86+03	
b94f83c2-b087-a382-432b-1584f1a43957	2021-05-24 08:25:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:25:35.853+03	2021-05-24 08:25:35.86+03	
bf6b8f81-7797-a961-8fb8-d7a3c13257fe	2021-05-24 08:25:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:25:55.853+03	2021-05-24 08:25:55.86+03	
221aaa2d-df72-570b-1807-0610dfa31801	2021-05-24 08:26:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:26:15.853+03	2021-05-24 08:26:15.86+03	
7528ce7b-57b1-c737-6739-ca351b0c64fd	2021-05-24 08:26:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:26:35.853+03	2021-05-24 08:26:35.86+03	
203bf8d6-8f42-4b28-f521-a71ca357f291	2021-05-24 08:26:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:26:55.853+03	2021-05-24 08:26:55.86+03	
27874b96-5c12-f48d-5cc6-78e7c3bd999e	2021-05-24 08:27:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:27:15.853+03	2021-05-24 08:27:15.86+03	
be73de44-d2d1-13ca-b07e-1e422115e0d6	2021-05-24 08:27:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:27:35.853+03	2021-05-24 08:27:35.867+03	
a45d740e-59d3-a129-de97-876fdcee9754	2021-05-24 08:27:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:27:55.853+03	2021-05-24 08:27:55.86+03	
10a372b1-7b02-3079-b6f9-0dad8211ce35	2021-05-24 08:28:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:28:15.853+03	2021-05-24 08:28:15.86+03	
9cd127fe-ce23-dc41-5b54-7505b8c0dd60	2021-05-24 08:28:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:28:35.853+03	2021-05-24 08:28:35.86+03	
2777393a-ed4f-bcaa-8805-7b83369e94b0	2021-05-24 08:28:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:28:55.853+03	2021-05-24 08:28:55.86+03	
dc6f3822-2fa0-dfb4-1453-8ee75136a862	2021-05-24 08:29:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:29:15.853+03	2021-05-24 08:29:15.86+03	
8e7bed84-737a-3340-f624-2e9f20e65173	2021-05-24 08:29:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:29:35.853+03	2021-05-24 08:29:35.86+03	
bc5a5b4c-ec80-79ef-e22b-d4ca17fe3709	2021-05-24 08:29:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:29:55.853+03	2021-05-24 08:29:55.861+03	
5c315912-64f9-ccd1-2cb7-edb644a65021	2021-05-24 08:09:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:09:45.853+03	2021-05-24 08:09:45.861+03	
63bbd182-cc60-d88e-0a51-271bfc2efc3a	2021-05-24 08:10:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 08:10:00.853+03	2021-05-24 08:10:00.857+03	ERROR
23baea44-5ef7-bd0f-f28d-9f06a61e8cf8	2021-05-24 08:10:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:10:15.853+03	2021-05-24 08:10:15.86+03	
46b5b61d-7f3f-3cfb-7c7d-f797f5789fb6	2021-05-24 08:10:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:10:35.853+03	2021-05-24 08:10:35.86+03	
39437f9c-d38d-fc69-d2f9-977b96bd9d5e	2021-05-24 08:10:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:10:55.853+03	2021-05-24 08:10:55.862+03	
2373667f-c527-eee1-16d7-d48225024b46	2021-05-24 08:11:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:11:15.853+03	2021-05-24 08:11:15.86+03	
d3da5ab7-cc98-2b9e-25d1-f2ffad593d7b	2021-05-24 08:11:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:11:35.853+03	2021-05-24 08:11:35.86+03	
f18107d6-66f8-fcd3-c2ca-d47408c12f14	2021-05-24 08:11:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:11:55.853+03	2021-05-24 08:11:55.86+03	
d5270980-fb59-441b-63aa-59373fe863a3	2021-05-24 08:12:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:12:15.853+03	2021-05-24 08:12:15.86+03	
fee9033e-006f-87ea-e786-6c0b8184c211	2021-05-24 08:12:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:12:35.853+03	2021-05-24 08:12:35.86+03	
eba83ce1-4a65-8623-90a2-feb82401d11c	2021-05-24 08:12:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:12:55.853+03	2021-05-24 08:12:55.86+03	
0c89d64a-78c5-0746-6066-83e48b48fa8e	2021-05-24 08:13:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:13:15.853+03	2021-05-24 08:13:15.863+03	
3ad7a70e-e21b-b46a-fa16-d6bd5026a568	2021-05-24 08:13:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:13:35.853+03	2021-05-24 08:13:35.86+03	
9f592911-0c23-ab6d-a453-df7202fe6ead	2021-05-24 08:13:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:13:55.853+03	2021-05-24 08:13:55.86+03	
62a3400f-e346-79f1-07bb-e30fb7258256	2021-05-24 08:14:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:14:15.853+03	2021-05-24 08:14:15.86+03	
54d9f8b6-f509-7e7d-1ed0-7959e338e6b4	2021-05-24 08:14:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:14:35.853+03	2021-05-24 08:14:35.86+03	
87c81a21-835e-a55a-56cd-cffd5b91ee60	2021-05-24 08:14:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:14:55.853+03	2021-05-24 08:14:55.86+03	
52bb785d-af81-4045-b6f4-8b82552c1358	2021-05-24 08:15:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:15:15.853+03	2021-05-24 08:15:15.86+03	
a4cdb03e-f0f8-83d5-8d19-dcbe8f27b63b	2021-05-24 08:15:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:15:35.853+03	2021-05-24 08:15:35.86+03	
fa6b64f3-346a-0eab-abe2-613dca819572	2021-05-24 08:15:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:15:55.853+03	2021-05-24 08:15:55.86+03	
a81e767d-5cd6-21f1-0c12-830cde320c99	2021-05-24 08:16:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:16:15.853+03	2021-05-24 08:16:15.86+03	
a13592c1-860a-6a59-2dd7-e5df7dd977e0	2021-05-24 08:16:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:16:35.853+03	2021-05-24 08:16:35.861+03	
3a4cf5b1-19ae-48cd-0775-f2ad845fcfc7	2021-05-24 08:16:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:16:55.853+03	2021-05-24 08:16:55.86+03	
b762a196-991c-1829-bb2f-34627c548e2e	2021-05-24 08:17:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:17:15.853+03	2021-05-24 08:17:15.86+03	
b7078d32-3145-4265-bfb3-12f9f47d91eb	2021-05-24 08:17:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:17:35.853+03	2021-05-24 08:17:35.86+03	
5e6d7e97-72b5-bf4e-e2c6-6124d7671b46	2021-05-24 08:17:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:17:55.853+03	2021-05-24 08:17:55.86+03	
9eee681b-5c4c-90f3-1d69-d56af27571b1	2021-05-24 08:18:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:18:15.853+03	2021-05-24 08:18:15.86+03	
5aff3ffb-9bd3-13f9-39aa-57cfc89971f7	2021-05-24 08:18:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:18:35.853+03	2021-05-24 08:18:35.859+03	
beecc711-57b1-c71a-a514-404d6e331d1a	2021-05-24 08:18:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:18:55.853+03	2021-05-24 08:18:55.86+03	
17118eec-d6a8-0439-1fa4-6d10f0a58dbb	2021-05-24 08:19:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:19:15.853+03	2021-05-24 08:19:15.861+03	
9bad6af3-80be-c74f-fff3-07e1313bf465	2021-05-24 08:19:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:19:35.853+03	2021-05-24 08:19:35.86+03	
6062ee28-c01f-729d-fa04-fb0c741913fb	2021-05-24 08:19:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:19:55.853+03	2021-05-24 08:19:55.86+03	
33589f9e-7029-5d68-4b8f-ef2a8b1d5543	2021-05-24 08:20:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:20:05.853+03	2021-05-24 08:20:05.86+03	
39794ecc-ee70-1a52-0382-69f8375bc3c4	2021-05-24 08:20:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:20:25.853+03	2021-05-24 08:20:25.86+03	
4d9911a8-e8c1-b2a1-a3fb-983b408d8fde	2021-05-24 08:20:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:20:45.853+03	2021-05-24 08:20:45.86+03	
be2108a7-f72c-ce7a-68d0-de54623237a7	2021-05-24 08:21:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:21:05.853+03	2021-05-24 08:21:05.86+03	
fab876cb-3b3e-fd96-85f5-be7a3884ac72	2021-05-24 08:21:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:21:25.853+03	2021-05-24 08:21:25.86+03	
1f0f4c46-542a-2771-fd12-1bf225794f92	2021-05-24 08:21:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:21:45.853+03	2021-05-24 08:21:45.86+03	
d433ac21-be55-ab7b-0dab-fb805c30fd07	2021-05-24 08:22:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:22:05.853+03	2021-05-24 08:22:05.86+03	
9edbf09b-7341-a9e1-3ab1-5ffe1e7daee0	2021-05-24 08:22:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:22:25.853+03	2021-05-24 08:22:25.86+03	
53627412-7482-0513-c2cc-88e53f16608c	2021-05-24 08:22:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:22:45.853+03	2021-05-24 08:22:45.861+03	
d9ba1243-f1b4-0f80-335e-a014d1ff0e1c	2021-05-24 08:23:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:23:05.853+03	2021-05-24 08:23:05.86+03	
27aeed18-64ae-bdcf-be80-824d73a70dc4	2021-05-24 08:23:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:23:25.853+03	2021-05-24 08:23:25.861+03	
75da1be4-2fad-0502-b19e-d4650dbab679	2021-05-24 08:23:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:23:45.853+03	2021-05-24 08:23:45.862+03	
40f10570-9720-1f86-b3f8-24e55d493c5d	2021-05-24 08:24:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:24:05.853+03	2021-05-24 08:24:05.862+03	
9fc2a3c8-08a9-2171-db19-fe62fd858246	2021-05-24 08:24:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:24:25.853+03	2021-05-24 08:24:25.86+03	
f0d81469-a41f-0e6f-1e75-ed864457c155	2021-05-24 08:24:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:24:45.853+03	2021-05-24 08:24:45.86+03	
3cdcae45-9781-d536-043f-3d1ad8a6326a	2021-05-24 08:25:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:25:05.853+03	2021-05-24 08:25:05.86+03	
f6ba210c-fef1-b05c-b511-2feefb4bab0d	2021-05-24 08:25:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:25:25.853+03	2021-05-24 08:25:25.86+03	
f198586b-8bab-0721-9ad3-89d2d934f63a	2021-05-24 08:25:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:25:45.853+03	2021-05-24 08:25:45.86+03	
5bb9733f-496d-070a-e24d-4df96a6904f5	2021-05-24 08:26:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:26:05.853+03	2021-05-24 08:26:05.86+03	
d91be1c6-439a-4891-8442-f922bdb4704d	2021-05-24 08:26:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:26:25.853+03	2021-05-24 08:26:25.863+03	
592fdd9b-f4b1-71fc-dec4-8aab5feb9613	2021-05-24 08:26:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:26:45.853+03	2021-05-24 08:26:45.861+03	
050a6dae-4892-fd96-35ef-aa039953e007	2021-05-24 08:27:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:27:05.853+03	2021-05-24 08:27:05.861+03	
36c116a6-9402-6c7d-b927-78c60b8f0b4d	2021-05-24 08:27:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:27:25.853+03	2021-05-24 08:27:25.86+03	
162a1cf1-1286-e72b-86e9-c355faf943e0	2021-05-24 08:27:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:27:45.853+03	2021-05-24 08:27:45.86+03	
a026abdd-a97e-056b-ef41-efe79ea8ca37	2021-05-24 08:28:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:28:05.853+03	2021-05-24 08:28:05.861+03	
4e5dd756-d1f8-167f-c0fc-0027da0e7a4c	2021-05-24 08:28:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:28:25.853+03	2021-05-24 08:28:25.861+03	
5916502d-ce59-3cc2-6bec-a489d0441ca2	2021-05-24 08:28:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:28:45.853+03	2021-05-24 08:28:45.86+03	
6a239fc4-5234-d521-1a72-2cbf34253e74	2021-05-24 08:29:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:29:05.853+03	2021-05-24 08:29:05.86+03	
2d2f10f4-ff06-a971-518e-c3b9060cdac9	2021-05-24 08:29:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:29:25.853+03	2021-05-24 08:29:25.86+03	
aba3573d-60d4-5079-57ed-c509cc3fbe73	2021-05-24 08:29:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:29:45.853+03	2021-05-24 08:29:45.863+03	
4ac72588-42a3-95d3-663e-938ffa410c41	2021-05-24 08:30:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 08:30:00.853+03	2021-05-24 08:30:00.858+03	ERROR
ba5502b1-50c4-693f-af17-75953bfa4301	2021-05-24 08:30:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:30:05.853+03	2021-05-24 08:30:05.861+03	
7c5e5f19-58ff-f4ef-3ef8-bc3504a4ea96	2021-05-24 08:30:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:30:25.853+03	2021-05-24 08:30:25.86+03	
850f49f6-9c08-b99a-4e53-850b951104bb	2021-05-24 08:30:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:30:45.853+03	2021-05-24 08:30:45.861+03	
fffeef65-d6a7-33e5-0cfc-f84b72f608b8	2021-05-24 08:31:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:31:05.853+03	2021-05-24 08:31:05.862+03	
afd82829-9051-b8be-b7e0-099277d02130	2021-05-24 08:31:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:31:25.853+03	2021-05-24 08:31:25.86+03	
886e72ea-19ae-9125-2f4e-0ddf26a4d941	2021-05-24 08:31:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:31:45.853+03	2021-05-24 08:31:45.86+03	
bcc3808f-1373-fe55-7992-8cb8bc14231a	2021-05-24 08:32:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:32:05.853+03	2021-05-24 08:32:05.86+03	
ad9b8c6e-8b87-8c3d-b4a7-f0e98164e8b2	2021-05-24 08:32:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:32:25.853+03	2021-05-24 08:32:25.86+03	
fbd2a616-a4a0-8366-cbbe-4559a6b4e46a	2021-05-24 08:32:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:32:45.853+03	2021-05-24 08:32:45.86+03	
5788ffce-8cc1-bbfb-0636-2b6045e442ad	2021-05-24 08:33:05.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:33:05.853+03	2021-05-24 08:33:05.86+03	
942c6561-2639-ca70-9702-0df820120951	2021-05-24 08:33:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:33:25.853+03	2021-05-24 08:33:25.86+03	
a37132f6-e303-d311-df11-2fd77b785d46	2021-05-24 08:33:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:33:45.853+03	2021-05-24 08:33:45.861+03	
faec8c82-2df5-67a6-7d25-06ea3ea34f61	2021-05-24 08:34:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:34:05.853+03	2021-05-24 08:34:05.861+03	
9bf60b63-a256-cddd-489b-111cd380660d	2021-05-24 08:34:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:34:25.853+03	2021-05-24 08:34:25.862+03	
e6f91a03-968c-76ed-d47f-fb09234f75db	2021-05-24 08:34:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:34:45.853+03	2021-05-24 08:34:45.86+03	
03c16b02-b9e9-9190-0fd9-47c0c0977e2d	2021-05-24 08:35:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:35:05.853+03	2021-05-24 08:35:05.861+03	
6ad763b1-1fb1-9ee8-cf17-6e4ef8185143	2021-05-24 08:35:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:35:25.853+03	2021-05-24 08:35:25.86+03	
44dff099-18f1-ec14-062c-6caf9b2a4b87	2021-05-24 08:35:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:35:45.853+03	2021-05-24 08:35:45.873+03	
07c87470-d177-0ab2-0fe0-230d2c932b1d	2021-05-24 08:36:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:36:05.853+03	2021-05-24 08:36:05.86+03	
08c88ef7-a66f-4849-8373-46ee453bb664	2021-05-24 08:36:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:36:25.853+03	2021-05-24 08:36:25.86+03	
a2dc9283-4d85-a455-1fa6-00f14d15d53e	2021-05-24 08:36:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:36:45.853+03	2021-05-24 08:36:45.86+03	
5ba54d62-3996-8f3a-1bf4-877f70459792	2021-05-24 08:37:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:37:05.853+03	2021-05-24 08:37:05.86+03	
55d2b5f4-7f00-de94-bc79-2bf486ed1bc1	2021-05-24 08:37:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:37:25.853+03	2021-05-24 08:37:25.859+03	
8c8dae0e-0956-863d-1fd4-c0b7813c9e65	2021-05-24 08:37:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:37:45.853+03	2021-05-24 08:37:45.86+03	
2959495c-ff6c-e3b2-2aba-0883e870feed	2021-05-24 08:38:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:38:05.853+03	2021-05-24 08:38:05.861+03	
8d6653e8-e37a-684b-2f65-bdcfa511c1d7	2021-05-24 08:38:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:38:25.853+03	2021-05-24 08:38:25.86+03	
0162375d-6878-0f15-7504-c001840cd3b1	2021-05-24 08:38:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:38:45.853+03	2021-05-24 08:38:45.86+03	
f3b225fd-dda0-2a72-19bc-d7d4c0e24cbe	2021-05-24 08:39:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:39:05.853+03	2021-05-24 08:39:05.861+03	
8580f204-474e-5ff2-df03-3e1d1dc2e2f9	2021-05-24 08:39:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:39:25.853+03	2021-05-24 08:39:25.86+03	
37501d80-d9f2-2e40-a52e-1a5e4ad11464	2021-05-24 08:39:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:39:45.853+03	2021-05-24 08:39:45.869+03	
b8dca6c0-2064-71d8-287b-fc21cd2f1cfb	2021-05-24 08:40:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 08:40:00.853+03	2021-05-24 08:40:00.858+03	ERROR
1133c2c4-97f1-0d5f-4170-33c1c647e819	2021-05-24 08:40:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:40:15.853+03	2021-05-24 08:40:15.86+03	
8cdef6d4-cd11-e0c9-33bd-5b4803b9d474	2021-05-24 08:40:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:40:35.853+03	2021-05-24 08:40:35.861+03	
0a6642a1-b8ba-d97d-e670-618af1107c7d	2021-05-24 08:40:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:40:55.853+03	2021-05-24 08:40:55.86+03	
6f245979-6c27-5aee-21dd-b76f64f14b11	2021-05-24 08:41:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:41:15.853+03	2021-05-24 08:41:15.86+03	
d2310402-560b-a739-7f23-b5bd50dde264	2021-05-24 08:41:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:41:35.853+03	2021-05-24 08:41:35.86+03	
ef50563c-39ef-835a-c069-b9bef34eb086	2021-05-24 08:41:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:41:55.853+03	2021-05-24 08:41:55.86+03	
41ebc144-b024-57c1-bc39-ce67d43334c1	2021-05-24 08:42:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:42:15.853+03	2021-05-24 08:42:15.86+03	
1253e469-6cd3-af2f-206b-e3645050d92d	2021-05-24 08:42:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:42:35.853+03	2021-05-24 08:42:35.86+03	
01bb5131-2cf4-34cf-6c0d-75907270609a	2021-05-24 08:42:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:42:55.853+03	2021-05-24 08:42:55.861+03	
268d29f3-52a0-9703-04c5-2704bcb665af	2021-05-24 08:43:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:43:15.853+03	2021-05-24 08:43:15.86+03	
4e55e99f-91b2-f8a1-116e-63781f136cf2	2021-05-24 08:43:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:43:35.853+03	2021-05-24 08:43:35.86+03	
6c8039c5-23fd-8bd8-c870-73df53b64acf	2021-05-24 08:43:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:43:55.853+03	2021-05-24 08:43:55.86+03	
8e9eb320-62b2-b091-e9e2-84c84b566509	2021-05-24 08:44:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:44:15.853+03	2021-05-24 08:44:15.861+03	
8fb613ac-bcfc-db67-d963-3c08df6cba2e	2021-05-24 08:44:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:44:35.853+03	2021-05-24 08:44:35.86+03	
ceacff2e-8440-8e57-3184-62bc4db1fef8	2021-05-24 08:44:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:44:55.853+03	2021-05-24 08:44:55.86+03	
d45702ce-88a4-826a-91a1-b530a6b07a64	2021-05-24 08:45:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:45:15.853+03	2021-05-24 08:45:15.86+03	
30aff60e-daae-f77d-4228-0264c45dfe08	2021-05-24 08:45:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:45:35.853+03	2021-05-24 08:45:35.86+03	
5f613301-3834-2f9e-0375-1d471d0d02ba	2021-05-24 08:45:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:45:55.853+03	2021-05-24 08:45:55.86+03	
a2c91d6d-9366-30ae-70f6-7b6afe27bbe6	2021-05-24 08:46:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:46:15.853+03	2021-05-24 08:46:15.86+03	
e3864941-7683-b3db-6e4b-d1068b078547	2021-05-24 08:46:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:46:35.853+03	2021-05-24 08:46:35.86+03	
c52a8dbc-da02-8631-f2dd-eea755c0e3eb	2021-05-24 08:46:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:46:55.853+03	2021-05-24 08:46:55.86+03	
a896f5a4-db1c-ebdd-674b-bdd21364cb7a	2021-05-24 08:47:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:47:15.853+03	2021-05-24 08:47:15.86+03	
21b17c20-943b-de80-686d-a80bb77ed3c7	2021-05-24 08:47:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:47:35.853+03	2021-05-24 08:47:35.86+03	
7c1297c8-ec65-00ea-91c2-8b08b2733586	2021-05-24 08:47:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:47:55.853+03	2021-05-24 08:47:55.86+03	
a1716b5c-318b-613f-2b00-04f4f68b0eac	2021-05-24 08:48:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:48:15.853+03	2021-05-24 08:48:15.86+03	
bfc87e44-aef3-0cce-b8ca-a70a3d47443b	2021-05-24 08:48:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:48:35.853+03	2021-05-24 08:48:35.861+03	
3a987e3a-07dc-fec2-f386-3b516ea428e0	2021-05-24 08:48:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:48:55.853+03	2021-05-24 08:48:55.86+03	
793f471d-c2c3-ba30-9f87-e88549739109	2021-05-24 08:49:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:49:15.853+03	2021-05-24 08:49:15.861+03	
d045ad5a-c400-fad6-a6f0-33a7a73a5d7f	2021-05-24 08:49:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:49:35.853+03	2021-05-24 08:49:35.861+03	
9ae3dd41-dfcb-5469-216d-626050090988	2021-05-24 08:49:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:49:55.853+03	2021-05-24 08:49:55.86+03	
0210cb27-9035-e274-4929-c4f04e6aef51	2021-05-24 08:50:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:50:05.853+03	2021-05-24 08:50:05.866+03	
5efc9598-c9c7-8db5-8025-c4901d7fb786	2021-05-24 08:50:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:50:25.853+03	2021-05-24 08:50:25.86+03	
f85fd3f9-b6b7-65ba-ef85-e7353e95e2d4	2021-05-24 08:30:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:30:15.853+03	2021-05-24 08:30:15.861+03	
01bb6fc5-db68-4d36-85ff-2d7eb46c5322	2021-05-24 08:30:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:30:35.853+03	2021-05-24 08:30:35.86+03	
159c07e6-b3de-8023-7d83-af9bb00fecb2	2021-05-24 08:30:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:30:55.853+03	2021-05-24 08:30:55.86+03	
026a47dc-4ac8-dd9c-8ddb-2e4c575c4979	2021-05-24 08:31:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:31:15.853+03	2021-05-24 08:31:15.86+03	
4c0b76a6-a3a5-665c-e864-682c11260ad6	2021-05-24 08:31:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:31:35.853+03	2021-05-24 08:31:35.861+03	
8a106dcc-bfca-0762-ed77-1257a9063d09	2021-05-24 08:31:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:31:55.853+03	2021-05-24 08:31:55.861+03	
3faddc3b-0cae-3447-eb95-31d00074cc26	2021-05-24 08:32:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:32:15.853+03	2021-05-24 08:32:15.86+03	
e3a229bd-0d33-95fc-be52-27290c575e5e	2021-05-24 08:32:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:32:35.853+03	2021-05-24 08:32:35.861+03	
19310820-90f4-d7f2-0680-21faa59f45b9	2021-05-24 08:32:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:32:55.853+03	2021-05-24 08:32:55.863+03	
01a422fb-e591-023c-96ef-54af84485578	2021-05-24 08:33:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:33:15.853+03	2021-05-24 08:33:15.86+03	
d81d2fcd-7831-d28d-f6c7-9d06e5171b17	2021-05-24 08:33:35.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:33:35.853+03	2021-05-24 08:33:35.86+03	
8a4ab1b6-0ef5-3036-004c-35cb3c6e3704	2021-05-24 08:33:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:33:55.853+03	2021-05-24 08:33:55.861+03	
760fdedf-df4b-bd27-23c8-06cbd0b1b5a1	2021-05-24 08:34:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:34:15.853+03	2021-05-24 08:34:15.86+03	
571ef907-df2f-dfa7-3fc8-5890bcc34be5	2021-05-24 08:34:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:34:35.853+03	2021-05-24 08:34:35.86+03	
21772dca-87db-e721-f2c0-a19c798e5a7c	2021-05-24 08:34:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:34:55.853+03	2021-05-24 08:34:55.86+03	
63e02a86-63f2-e5df-ba79-3dc86acde4e3	2021-05-24 08:35:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:35:15.853+03	2021-05-24 08:35:15.86+03	
c6083d63-e640-ad7c-065b-b92453b55b82	2021-05-24 08:35:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:35:35.853+03	2021-05-24 08:35:35.86+03	
03a5dadf-9c0d-1799-a86b-7186e2f13cdc	2021-05-24 08:35:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:35:55.853+03	2021-05-24 08:35:55.86+03	
da494f67-ecdb-3721-8432-71df50651010	2021-05-24 08:36:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:36:15.853+03	2021-05-24 08:36:15.86+03	
0486ab6f-76dc-c6b6-8695-51937115de2a	2021-05-24 08:36:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:36:35.853+03	2021-05-24 08:36:35.865+03	
f7cfd209-944c-0718-c944-dfbcc7768658	2021-05-24 08:36:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:36:55.853+03	2021-05-24 08:36:55.86+03	
597aa801-7174-33b9-ea6a-61c3ccc9c0e8	2021-05-24 08:37:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:37:15.853+03	2021-05-24 08:37:15.86+03	
7f132e92-ed1c-5068-cf0f-c0d46e24d7e4	2021-05-24 08:37:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:37:35.853+03	2021-05-24 08:37:35.86+03	
fbf8163f-248a-4244-a534-d653ba12a148	2021-05-24 08:37:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:37:55.853+03	2021-05-24 08:37:55.861+03	
e29c36e2-bd43-7d6c-3273-2a9ae37b9b52	2021-05-24 08:38:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:38:15.853+03	2021-05-24 08:38:15.86+03	
9a140bcb-76f9-e349-4a6e-9df39e9f4149	2021-05-24 08:38:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:38:35.853+03	2021-05-24 08:38:35.86+03	
61d9ffb8-909e-42d5-375b-e8ac20a016f3	2021-05-24 08:38:55.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:38:55.853+03	2021-05-24 08:38:55.861+03	
ada5ebd1-4b96-3613-0828-890061a2c046	2021-05-24 08:39:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:39:15.853+03	2021-05-24 08:39:15.86+03	
9a20d672-756f-e1fe-2b19-d2828a9268fc	2021-05-24 08:39:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:39:35.853+03	2021-05-24 08:39:35.86+03	
40805707-0ae7-acbe-a776-2efe6f488061	2021-05-24 08:39:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:39:55.853+03	2021-05-24 08:39:55.861+03	
f0042eb9-40e1-4770-1c10-282ba30de6f3	2021-05-24 08:40:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:40:05.853+03	2021-05-24 08:40:05.86+03	
25cdeaa7-e14c-934e-0bcb-a188904e98a5	2021-05-24 08:40:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:40:25.853+03	2021-05-24 08:40:25.86+03	
8c6e5c59-f6b0-f16f-5c81-a055e4445e7b	2021-05-24 08:40:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:40:45.853+03	2021-05-24 08:40:45.86+03	
555797fe-13c9-afe6-2aef-b836dbab9c40	2021-05-24 08:41:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:41:05.853+03	2021-05-24 08:41:05.861+03	
add90ab5-fff5-4c5f-83e7-e61cb4b55601	2021-05-24 08:41:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:41:25.853+03	2021-05-24 08:41:25.86+03	
f62a2c03-68bc-e785-ca75-564e19555c5e	2021-05-24 08:41:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:41:45.853+03	2021-05-24 08:41:45.867+03	
b6bf7664-051e-485f-631d-e5095901f0fa	2021-05-24 08:42:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:42:05.853+03	2021-05-24 08:42:05.86+03	
d772a70e-81f5-9877-2a8f-669d94209293	2021-05-24 08:42:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:42:25.853+03	2021-05-24 08:42:25.86+03	
1b5f5cbf-c7ac-728c-4d66-44c893ec9883	2021-05-24 08:42:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:42:45.853+03	2021-05-24 08:42:45.86+03	
59b79510-7f08-1936-5e39-09a3e8805d24	2021-05-24 08:43:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:43:05.853+03	2021-05-24 08:43:05.86+03	
7d5d7ea0-f923-9fd2-0e7a-ab69986589de	2021-05-24 08:43:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:43:25.853+03	2021-05-24 08:43:25.861+03	
220c4b54-f384-6099-103c-ddf20da9eba0	2021-05-24 08:43:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:43:45.853+03	2021-05-24 08:43:45.86+03	
60dc292c-d4ab-751d-9dfb-c6820a73fc61	2021-05-24 08:44:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:44:05.853+03	2021-05-24 08:44:05.86+03	
feb3c250-aac6-fc40-ad66-9152765fdf41	2021-05-24 08:44:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:44:25.853+03	2021-05-24 08:44:25.86+03	
31c9f7b4-5d72-917a-d813-85f16f551ab1	2021-05-24 08:44:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:44:45.853+03	2021-05-24 08:44:45.86+03	
6e6cc84c-510d-0deb-5aa3-c0cb8294ffba	2021-05-24 08:45:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:45:05.853+03	2021-05-24 08:45:05.86+03	
14a9aac2-06e2-772d-1c80-4be3f668290e	2021-05-24 08:45:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:45:25.853+03	2021-05-24 08:45:25.861+03	
d0ca23a8-d4f8-3f91-b181-1092b1c54f35	2021-05-24 08:45:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:45:45.853+03	2021-05-24 08:45:45.86+03	
0193735e-676a-fb3c-2067-f0ec1c1e104f	2021-05-24 08:46:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:46:05.853+03	2021-05-24 08:46:05.865+03	
01b91ddc-bd4a-d355-5526-440b76d3e348	2021-05-24 08:46:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:46:25.853+03	2021-05-24 08:46:25.86+03	
ec6818e2-8234-b869-4479-20663c119a31	2021-05-24 08:46:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:46:45.853+03	2021-05-24 08:46:45.86+03	
d674933a-7441-b239-caa2-0a0b1aa4b083	2021-05-24 08:47:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:47:05.853+03	2021-05-24 08:47:05.86+03	
8e9d86b6-d3ec-36a6-8c5a-759741856dc7	2021-05-24 08:47:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:47:25.853+03	2021-05-24 08:47:25.859+03	
6b344237-bb38-955c-7343-da6dc73f218c	2021-05-24 08:47:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:47:45.853+03	2021-05-24 08:47:45.859+03	
a791e107-2399-97d1-a0ff-4cfc0febab81	2021-05-24 08:48:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:48:05.853+03	2021-05-24 08:48:05.862+03	
5b2e61ef-4db7-f0a0-1081-35dda627847a	2021-05-24 08:48:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:48:25.853+03	2021-05-24 08:48:25.86+03	
2c68b47a-8200-6f2e-30b5-b395bb8e6a75	2021-05-24 08:48:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:48:45.853+03	2021-05-24 08:48:45.86+03	
fb8dd42a-7d66-37fc-dd2c-a454b7c46aae	2021-05-24 08:49:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:49:05.853+03	2021-05-24 08:49:05.862+03	
3c3c20aa-0546-f970-ce29-7b12b03365aa	2021-05-24 08:49:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:49:25.853+03	2021-05-24 08:49:25.862+03	
50492878-6b46-7c13-5011-ec1c6d40a842	2021-05-24 08:49:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:49:45.853+03	2021-05-24 08:49:45.861+03	
c12f795b-43af-abac-62d3-5c93afed39e4	2021-05-24 08:50:00.853	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 08:50:00.853+03	2021-05-24 08:50:00.858+03	ERROR
ad6658a6-f54b-8b3c-5e8d-8b3bb33240cd	2021-05-24 08:50:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:50:15.853+03	2021-05-24 08:50:15.86+03	
660f0676-4009-c0d9-887c-3ac7414eb030	2021-05-24 08:50:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:50:35.853+03	2021-05-24 08:50:35.861+03	
bf461434-b1e8-bb6a-2cff-0cf969e3ce01	2021-05-24 08:50:45.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:50:45.853+03	2021-05-24 08:50:45.86+03	
16d02344-6d09-e271-f6cb-fa70bb4354dd	2021-05-24 08:51:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:51:05.853+03	2021-05-24 08:51:05.861+03	
a0468ab3-beff-dd57-523f-02fa48580d63	2021-05-24 08:51:25.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:51:25.853+03	2021-05-24 08:51:25.86+03	
e747a451-ae54-2dc3-c015-f28a114e8b42	2021-05-24 08:51:45.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:51:45.853+03	2021-05-24 08:51:45.861+03	
eb4d8685-6f52-9b85-821d-e171ac7499bf	2021-05-24 08:52:05.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:52:05.853+03	2021-05-24 08:52:05.867+03	
db03f2a6-ab44-da70-7b79-1a4c0027ba00	2021-05-24 08:52:25.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:52:25.853+03	2021-05-24 08:52:25.862+03	
7c8a24fd-61e9-3716-03e4-0b9f720dc112	2021-05-24 08:52:45.885	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:52:45.879+03	2021-05-24 08:52:45.948+03	
ea70797c-ce06-6ac0-9c97-9829046fad2e	2021-05-24 08:53:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:53:06.877+03	2021-05-24 08:53:06.891+03	
2c4daed0-f54d-f4dd-8711-5464b4664c82	2021-05-24 08:53:27.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:53:27.877+03	2021-05-24 08:53:27.886+03	
95215121-a2b0-4c5c-b82a-0ca35b38bc50	2021-05-24 08:53:47.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:53:47.877+03	2021-05-24 08:53:48.165+03	
e373462c-6ce5-b620-a797-acb600d146c8	2021-05-24 08:54:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:54:07.877+03	2021-05-24 08:54:07.883+03	
4b1cd1ca-fc04-27af-df2c-93b037e73a2f	2021-05-24 08:54:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:54:28.877+03	2021-05-24 08:54:28.883+03	
f27164dd-dd39-1526-b902-e7beed4059f3	2021-05-24 08:54:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:54:48.877+03	2021-05-24 08:54:48.883+03	
a360fc62-01c6-4ad8-b0c0-fd79b6923dad	2021-05-24 08:55:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:55:09.877+03	2021-05-24 08:55:09.883+03	
6896ad80-4d93-5bf5-dc40-b8559a38e3ce	2021-05-24 08:55:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:55:29.877+03	2021-05-24 08:55:29.882+03	
8d52a7f6-2ef0-81bc-195a-4c8a8eed2b89	2021-05-24 08:55:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:55:49.877+03	2021-05-24 08:55:49.885+03	
8560e747-614d-2b7d-7674-a3cea21348ce	2021-05-24 08:56:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:56:09.877+03	2021-05-24 08:56:09.883+03	
10092608-8f9d-44f6-812a-98b60d5e9a1a	2021-05-24 08:56:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:56:29.877+03	2021-05-24 08:56:29.884+03	
900a08a4-a595-ec2e-eaed-a1e990f84c73	2021-05-24 08:56:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:56:49.877+03	2021-05-24 08:56:49.884+03	
643a7956-313a-e850-6361-f286e08eec15	2021-05-24 08:57:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:57:09.877+03	2021-05-24 08:57:09.883+03	
5325cb97-cab0-d0e4-0892-7894eed3706d	2021-05-24 08:57:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:57:29.877+03	2021-05-24 08:57:29.883+03	
7e84eaed-6591-2577-57f1-28a48e57a763	2021-05-24 08:57:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:57:49.877+03	2021-05-24 08:57:49.883+03	
10282298-67a5-e08d-dd33-a704f2e90eb4	2021-05-24 08:58:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:58:10.877+03	2021-05-24 08:58:10.883+03	
1aa8447b-689f-e20d-61ab-9728af95fab8	2021-05-24 08:58:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:58:30.877+03	2021-05-24 08:58:30.889+03	
62c90d16-83fd-b936-7893-1837d4dfa548	2021-05-24 08:58:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:58:50.877+03	2021-05-24 08:58:50.883+03	
76934b58-7083-cfdf-3498-dfd251a970a8	2021-05-24 08:59:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:59:10.877+03	2021-05-24 08:59:10.884+03	
22a3e5ac-dc8c-227f-87b3-01cfc98df9aa	2021-05-24 08:59:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:59:30.877+03	2021-05-24 08:59:30.883+03	
b70514cd-4e58-c1e3-61b9-24ee78c638db	2021-05-24 09:00:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:00:00.877+03	2021-05-24 09:00:00.885+03	
1bbc5c29-aa43-ee71-0139-90e97f5cce09	2021-05-24 09:00:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:00:21.877+03	2021-05-24 09:00:21.883+03	
53711fdf-5544-351e-1ddd-cfffdcf2c69d	2021-05-24 09:00:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:00:41.877+03	2021-05-24 09:00:41.884+03	
0dfbf268-62f5-91bb-8d90-592cc5ac8f29	2021-05-24 09:01:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:01:02.877+03	2021-05-24 09:01:02.883+03	
32615658-32d5-68e1-3fc1-3ed5232e68df	2021-05-24 09:01:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:01:23.877+03	2021-05-24 09:01:23.882+03	
e961a99b-1625-e982-1c3b-0276b500721c	2021-05-24 09:01:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:01:43.877+03	2021-05-24 09:01:43.883+03	
4a921a1e-e995-d9e0-490f-825397195b70	2021-05-24 09:02:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:02:03.877+03	2021-05-24 09:02:03.888+03	
ab9389fa-d824-68f3-f66a-b8f90c9697c7	2021-05-24 09:02:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:02:23.877+03	2021-05-24 09:02:23.882+03	
356236b4-fc4f-fcae-47bc-2bf2f03b7bf7	2021-05-24 09:02:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:02:43.877+03	2021-05-24 09:02:43.883+03	
f04b92a9-9600-d448-7147-6094d00cca78	2021-05-24 09:03:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:03:03.877+03	2021-05-24 09:03:04.124+03	
3eed6324-445b-27d4-83e5-2e083369214a	2021-05-24 09:03:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:03:23.877+03	2021-05-24 09:03:23.885+03	
f25b6aeb-7582-9883-7d33-f9c788f00714	2021-05-24 09:03:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:03:43.877+03	2021-05-24 09:03:43.883+03	
cca261c7-d4bf-daac-3a36-47b4e67dd881	2021-05-24 09:04:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:04:03.877+03	2021-05-24 09:04:03.883+03	
dd6cd80c-2df9-d1b6-d313-89e66c58a5e7	2021-05-24 09:04:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:04:23.877+03	2021-05-24 09:04:23.884+03	
c5e2c30b-3c9a-2cc9-9a2d-dd475635af27	2021-05-24 09:04:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:04:43.877+03	2021-05-24 09:04:43.882+03	
fa665352-c73b-ddc3-70c4-ac06a4dda822	2021-05-24 09:05:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:05:03.877+03	2021-05-24 09:05:03.886+03	
2b1b9112-91c8-a624-2892-48d2a4a49904	2021-05-24 09:05:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:05:23.877+03	2021-05-24 09:05:23.882+03	
bf5d3a4f-1d86-63ac-679d-c3dd32c7a4c2	2021-05-24 09:05:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:05:43.877+03	2021-05-24 09:05:43.883+03	
4c1e5838-f88d-958f-2ba5-0d0f52badea7	2021-05-24 09:06:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:06:03.877+03	2021-05-24 09:06:04.123+03	
1e4d44a8-6905-9b0c-ae01-2d35986c5fdb	2021-05-24 09:06:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:06:23.877+03	2021-05-24 09:06:23.882+03	
b5057340-38d0-72b8-0f68-e6a5356e8d73	2021-05-24 09:06:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:06:43.877+03	2021-05-24 09:06:43.882+03	
90720881-2524-f95e-a642-9da957ce5076	2021-05-24 09:07:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:07:03.877+03	2021-05-24 09:07:03.885+03	
6bb39e42-0194-9c93-e705-02bb3d9a31ed	2021-05-24 09:07:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:07:23.877+03	2021-05-24 09:07:23.883+03	
7968ec9f-b9f7-aecf-b91d-200f6894c91c	2021-05-24 09:07:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:07:43.877+03	2021-05-24 09:07:43.883+03	
25ee1329-6d1a-2412-7502-a11ba9885efd	2021-05-24 09:08:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:08:03.877+03	2021-05-24 09:08:03.883+03	
e4e40322-a01d-9530-12f6-32e912a7d82e	2021-05-24 09:08:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:08:24.877+03	2021-05-24 09:08:24.882+03	
c8f47125-0598-1bc4-606e-a46256b8e519	2021-05-24 09:08:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:08:45.877+03	2021-05-24 09:08:45.882+03	
8ee88fd1-4dc2-240b-39b1-303d98eb634d	2021-05-24 09:09:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:09:05.877+03	2021-05-24 09:09:05.883+03	
c21b4d4c-c579-eb48-2898-233dbbad41b3	2021-05-24 09:09:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:09:25.877+03	2021-05-24 09:09:25.883+03	
82f8c472-f775-b5de-f8aa-a7699fdcdafb	2021-05-24 09:09:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:09:45.877+03	2021-05-24 09:09:45.883+03	
97d28a60-89fc-fbd8-ef8f-53f6a9975a45	2021-05-24 09:09:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:09:55.877+03	2021-05-24 09:09:55.883+03	
7529755a-5799-56cc-b629-e5902019310a	2021-05-24 09:10:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:10:05.877+03	2021-05-24 09:10:05.885+03	
11739a3f-fccc-305f-8f21-107047b47577	2021-05-24 09:10:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:10:26.877+03	2021-05-24 09:10:26.885+03	
262b90a8-94ae-9db8-3847-0b5021bd480c	2021-05-24 09:10:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:10:46.877+03	2021-05-24 09:10:46.883+03	
b11beb11-e267-51df-7299-2629df3992f5	2021-05-24 09:11:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:11:06.877+03	2021-05-24 09:11:06.884+03	
67b9e652-b05f-9961-3a9d-d2170ed7f1ea	2021-05-24 09:11:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:11:26.877+03	2021-05-24 09:11:26.883+03	
6dfb1aae-e2f9-4b90-efab-0c2c461c5f12	2021-05-24 08:50:55.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:50:55.853+03	2021-05-24 08:50:55.86+03	
dd68aae6-6fe4-5116-87dd-bfa2d4e35eeb	2021-05-24 08:51:15.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:51:15.853+03	2021-05-24 08:51:15.86+03	
5e6caee5-d9e9-bae8-ac3c-c6d7b05c2035	2021-05-24 08:51:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:51:35.853+03	2021-05-24 08:51:35.861+03	
ecaf734e-2bce-1060-4fc2-516d3467af4d	2021-05-24 08:51:55.863	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:51:55.853+03	2021-05-24 08:51:55.871+03	
4d65b1f6-6207-3327-2cc3-cd1fca606f80	2021-05-24 08:52:15.854	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:52:15.853+03	2021-05-24 08:52:15.862+03	
2fe802d6-e5ad-d3c5-3b28-a56108208340	2021-05-24 08:52:35.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:52:35.853+03	2021-05-24 08:52:35.861+03	
8598c056-90bb-c820-4409-4dad57265958	2021-05-24 08:52:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:52:56.877+03	2021-05-24 08:52:56.891+03	
c4564f4a-5775-cf9d-0680-c63fbb20245c	2021-05-24 08:53:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:53:16.877+03	2021-05-24 08:53:16.884+03	
64385f0c-1d50-bedb-e1c3-737384e9e83c	2021-05-24 08:53:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:53:37.877+03	2021-05-24 08:53:37.887+03	
a8027d79-d991-8790-1828-2b0ae27caff7	2021-05-24 08:53:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:53:57.877+03	2021-05-24 08:53:57.904+03	
8d28087d-7ebf-dc60-25b5-d12514d91ba4	2021-05-24 08:54:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:54:18.877+03	2021-05-24 08:54:19.177+03	
a157362e-bc96-a6b5-2eaf-d4d1e7bf2729	2021-05-24 08:54:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:54:38.877+03	2021-05-24 08:54:38.883+03	
63ef19a1-bfaf-64ed-da1e-bb658056632a	2021-05-24 08:54:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:54:59.877+03	2021-05-24 08:55:00.122+03	
7a4991f3-e12b-7051-c95f-21de3ed32211	2021-05-24 08:55:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:55:19.877+03	2021-05-24 08:55:19.883+03	
f7aead17-84ba-b686-0d81-92658b4aacd2	2021-05-24 08:55:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:55:39.877+03	2021-05-24 08:55:39.884+03	
622f9028-80b8-2f10-071c-21438383c30d	2021-05-24 08:55:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:55:59.877+03	2021-05-24 08:55:59.889+03	
6166b2c1-2969-7ca5-b111-801fb854a332	2021-05-24 08:56:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:56:19.877+03	2021-05-24 08:56:19.885+03	
0de7ca79-ccfa-9c47-43fc-e52423e11aba	2021-05-24 08:56:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:56:39.877+03	2021-05-24 08:56:40.368+03	
f9146acb-848f-66f8-908f-5fe1072d92a1	2021-05-24 08:56:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:56:59.877+03	2021-05-24 08:57:00.126+03	
5ed24475-8fca-eef1-bc0f-3aed95992e6d	2021-05-24 08:57:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:57:19.877+03	2021-05-24 08:57:19.885+03	
4b4cddbd-cff5-214c-ad21-1cae47b66f4b	2021-05-24 08:57:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:57:39.877+03	2021-05-24 08:57:39.883+03	
2b208481-7e30-4c9a-5e63-f90e74968dbe	2021-05-24 08:57:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:57:59.877+03	2021-05-24 08:57:59.891+03	
5d287158-261b-f752-b840-7e35a0dcae62	2021-05-24 08:58:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:58:20.877+03	2021-05-24 08:58:20.882+03	
5032bcb5-3459-13c7-a1e0-8d681d834041	2021-05-24 08:58:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:58:40.877+03	2021-05-24 08:58:40.882+03	
4453af84-dc42-eb2b-ac50-395928eb5046	2021-05-24 08:59:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:59:00.877+03	2021-05-24 08:59:00.883+03	
c27fbfb7-73d3-ca3a-f8a2-e12a2a2e43cc	2021-05-24 08:59:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:59:20.877+03	2021-05-24 08:59:20.883+03	
8eb204d3-77b4-8217-ba5c-98c620839b73	2021-05-24 08:59:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:59:40.877+03	2021-05-24 08:59:40.883+03	
4c556c8d-da50-3b25-0360-5fd45df0a905	2021-05-24 08:59:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 08:59:50.877+03	2021-05-24 08:59:50.884+03	
e47133c6-fe66-2f0e-9e98-24921d56f8d3	2021-05-24 09:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 09:00:00.877+03	2021-05-24 09:00:00.907+03	ERROR
0708f23e-6794-c8f2-4f0d-02e9274106d8	2021-05-24 09:00:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:00:10.877+03	2021-05-24 09:00:10.883+03	
ea9e851f-e8a8-d110-3d22-052ad0b3d540	2021-05-24 09:00:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:00:31.877+03	2021-05-24 09:00:31.883+03	
1e9434b0-8270-2ac4-f7cf-e7e36d8f6e60	2021-05-24 09:00:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:00:52.877+03	2021-05-24 09:00:52.882+03	
9133190a-bf12-98d4-47aa-cf6134bc8a2b	2021-05-24 09:01:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:01:12.878+03	2021-05-24 09:01:12.883+03	
2eec333f-7163-76d9-3a00-52fbead7af8b	2021-05-24 09:01:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:01:33.877+03	2021-05-24 09:01:33.884+03	
5dc9341e-79ed-a4c4-d683-47bf27841d52	2021-05-24 09:01:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:01:53.877+03	2021-05-24 09:01:53.883+03	
abad36c7-9409-851a-7520-5e007bcd6c74	2021-05-24 09:02:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:02:13.877+03	2021-05-24 09:02:13.883+03	
b946606d-98a0-dc97-b5da-b38bb71c61ed	2021-05-24 09:02:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:02:33.877+03	2021-05-24 09:02:33.883+03	
081317ec-ac55-4d8d-5be1-4d8d682d505a	2021-05-24 09:02:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:02:53.877+03	2021-05-24 09:02:53.886+03	
21e23069-d610-cd75-2158-ec88eaa584d4	2021-05-24 09:03:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:03:13.877+03	2021-05-24 09:03:13.882+03	
77e5bfd6-5b54-f4ed-e70d-049c8b180319	2021-05-24 09:03:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:03:33.877+03	2021-05-24 09:03:33.883+03	
3408445e-a00d-0c38-cc15-b5a36dbfca3a	2021-05-24 09:03:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:03:53.877+03	2021-05-24 09:03:53.884+03	
db12206a-d69e-6f1d-1a5f-da179f1d5f9e	2021-05-24 09:04:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:04:13.877+03	2021-05-24 09:04:13.885+03	
db426eeb-6da6-e069-37f3-ebbe3804d221	2021-05-24 09:04:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:04:33.877+03	2021-05-24 09:04:33.883+03	
eed8e5e3-9133-79c2-c8c6-ea36d2ae89bb	2021-05-24 09:04:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:04:53.877+03	2021-05-24 09:04:53.882+03	
83f83c31-5c69-411b-f1d8-3060335ce439	2021-05-24 09:05:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:05:13.877+03	2021-05-24 09:05:13.882+03	
b530075e-6532-924f-9222-0cd042151cc7	2021-05-24 09:05:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:05:33.877+03	2021-05-24 09:05:34.418+03	
7f8da216-aa73-47c6-3c24-fdae727fd937	2021-05-24 09:05:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:05:53.877+03	2021-05-24 09:05:54.239+03	
44940e7b-abf2-7d6e-ae61-83f134c7a150	2021-05-24 09:06:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:06:13.877+03	2021-05-24 09:06:13.883+03	
f51a53a5-212e-ec1f-a1c9-d8f25f7b73fc	2021-05-24 09:06:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:06:33.877+03	2021-05-24 09:06:33.883+03	
17c1dc48-cea3-a56f-ae71-70242af84300	2021-05-24 09:06:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:06:53.877+03	2021-05-24 09:06:53.885+03	
18e793d2-40b1-fd1c-4490-d27167f41048	2021-05-24 09:07:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:07:13.877+03	2021-05-24 09:07:13.882+03	
5ab6dcbd-4bd3-3151-800b-52d3e7d18212	2021-05-24 09:07:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:07:33.877+03	2021-05-24 09:07:33.884+03	
af40dde0-31ea-5138-764d-ed9691d7ea89	2021-05-24 09:07:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:07:53.877+03	2021-05-24 09:07:53.883+03	
d31c040f-2267-961c-f9e5-8fae8cffe2e3	2021-05-24 09:08:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:08:13.877+03	2021-05-24 09:08:13.884+03	
dc6274e8-3788-c250-685d-ba646d9a595d	2021-05-24 09:08:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:08:35.877+03	2021-05-24 09:08:35.883+03	
f3054a5f-718c-6eb3-a332-7dae674517ef	2021-05-24 09:08:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:08:55.877+03	2021-05-24 09:08:55.883+03	
14826a25-f5bf-017c-c19c-b843ff72fb25	2021-05-24 09:09:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:09:15.877+03	2021-05-24 09:09:15.883+03	
218ddefa-38f1-c00c-15b6-c36e05f578b7	2021-05-24 09:09:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:09:35.877+03	2021-05-24 09:09:35.884+03	
eff1b6a1-cbdc-e61f-4582-60653857a195	2021-05-24 09:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 09:10:00.877+03	2021-05-24 09:10:00.882+03	ERROR
9b24cc40-29eb-89a8-8bbb-49214f9e8b36	2021-05-24 09:10:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:10:15.877+03	2021-05-24 09:10:15.882+03	
e979d006-4421-32a6-593c-a0f1a56fdba5	2021-05-24 09:10:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:10:36.877+03	2021-05-24 09:10:36.883+03	
2ad48265-bfd1-ed83-f54b-d6c5ad0666c5	2021-05-24 09:10:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:10:56.877+03	2021-05-24 09:10:56.883+03	
6c222873-fecd-b792-96b1-6eff5fc02991	2021-05-24 09:11:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:11:16.877+03	2021-05-24 09:11:16.885+03	
ce5a2f45-61bb-694f-c452-b0df508eb8eb	2021-05-24 09:11:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:11:36.877+03	2021-05-24 09:11:36.885+03	
4e7daf42-bee1-893d-6687-1c1acb597adc	2021-05-24 09:11:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:11:56.877+03	2021-05-24 09:11:56.883+03	
1e0a9435-d03e-bbe2-fa8f-88aa29fd5959	2021-05-24 09:12:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:12:16.877+03	2021-05-24 09:12:16.882+03	
f1a93bef-dda4-a9ba-c545-8f045bd437bf	2021-05-24 09:12:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:12:36.877+03	2021-05-24 09:12:36.885+03	
45496ca9-8fe5-08e5-7149-c865bf0b8637	2021-05-24 09:12:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:12:58.877+03	2021-05-24 09:12:58.883+03	
1ee9be43-02dc-325f-33e4-d921a2e6030d	2021-05-24 09:13:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:13:19.876+03	2021-05-24 09:13:19.886+03	
6c88da04-0194-6c8e-ad25-fb8a0d413b19	2021-05-24 09:13:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:13:40.876+03	2021-05-24 09:13:40.941+03	
914d722a-e3c5-c587-85e8-d1822b4ddf36	2021-05-24 09:14:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:14:00.877+03	2021-05-24 09:14:01.162+03	
5e028ac7-eff2-ae16-9fd4-84d7e769eeb4	2021-05-24 09:14:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:14:20.877+03	2021-05-24 09:14:20.884+03	
264bc32b-7d9e-6375-284e-ba51bca88239	2021-05-24 09:14:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:14:40.877+03	2021-05-24 09:14:40.883+03	
9349420e-fe75-e3d2-790b-11ba1a229f4a	2021-05-24 09:15:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:15:00.877+03	2021-05-24 09:15:00.883+03	
a603d97c-c39d-de4f-632d-c17bdb62846d	2021-05-24 09:15:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:15:20.877+03	2021-05-24 09:15:20.884+03	
79602770-83b3-9bf2-8bd4-41dbabf3c5f7	2021-05-24 09:15:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:15:40.877+03	2021-05-24 09:15:40.882+03	
4d2f2fad-c057-878b-7969-f93e5f03ebbe	2021-05-24 09:16:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:16:00.877+03	2021-05-24 09:16:00.884+03	
df811eae-1136-fdc9-b095-5d70da30af6c	2021-05-24 09:16:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:16:20.877+03	2021-05-24 09:16:20.887+03	
5b684991-11e3-c5ec-9987-efc4a7b83dc2	2021-05-24 09:16:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:16:40.877+03	2021-05-24 09:16:41.158+03	
25d8c8f0-8e8e-7aed-3803-55d0bdfe1b78	2021-05-24 09:17:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:17:00.877+03	2021-05-24 09:17:00.883+03	
f1210137-7b24-2ccc-ee91-e59f9deb3c96	2021-05-24 09:17:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:17:20.877+03	2021-05-24 09:17:20.886+03	
fd932546-3aa8-0816-8149-1410cc3ae4a6	2021-05-24 09:17:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:17:40.877+03	2021-05-24 09:17:40.885+03	
40807fac-6a18-a6ba-151c-8db65cca4103	2021-05-24 09:18:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:18:00.877+03	2021-05-24 09:18:00.883+03	
dbd7a26c-7755-7aff-8a81-941ea5993e82	2021-05-24 09:18:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:18:20.877+03	2021-05-24 09:18:20.889+03	
a7c0fea9-dd4c-defa-5597-6260fa31eba7	2021-05-24 09:18:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:18:40.877+03	2021-05-24 09:18:40.891+03	
a4c4c59a-49f8-7e52-0f62-bb23ce6a2c2f	2021-05-24 09:19:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:19:00.877+03	2021-05-24 09:19:00.884+03	
8359b2e0-bb1d-10e5-661a-26aa308c784b	2021-05-24 09:19:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:19:21.877+03	2021-05-24 09:19:21.883+03	
5f776a11-084e-3233-4cb0-31300c595413	2021-05-24 09:19:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:19:42.876+03	2021-05-24 09:19:42.883+03	
b88a6f6f-9647-6ec1-7053-6d96a6070dac	2021-05-24 09:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 09:20:00.877+03	2021-05-24 09:20:01.433+03	ERROR
07e1c8da-55f0-d1bd-c17d-ff52ab3fb372	2021-05-24 09:20:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:20:12.877+03	2021-05-24 09:20:12.884+03	
f1d3a062-7773-395c-a419-b562a6a99ab8	2021-05-24 09:20:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:20:32.877+03	2021-05-24 09:20:32.882+03	
61aab825-1996-733d-242c-bd7b7602325e	2021-05-24 09:20:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:20:52.877+03	2021-05-24 09:20:52.894+03	
6bc3426d-de38-fa44-4f96-161c6062ff43	2021-05-24 09:21:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:21:12.877+03	2021-05-24 09:21:12.897+03	
2579f3b4-a416-f16c-c57d-06faeaab5d31	2021-05-24 09:21:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:21:33.877+03	2021-05-24 09:21:33.891+03	
d6d06aee-6819-ff97-699a-72c5b3dcd2e0	2021-05-24 09:21:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:21:53.877+03	2021-05-24 09:21:53.885+03	
75bebaa6-390c-6a5a-acb5-a12f998b74ba	2021-05-24 09:22:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:22:14.877+03	2021-05-24 09:22:14.884+03	
cbba6639-a1fc-5826-5b82-08e5f92e96a8	2021-05-24 09:22:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:22:35.877+03	2021-05-24 09:22:35.882+03	
5c120185-5c87-c254-e9c5-2c16632d2679	2021-05-24 09:22:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:22:55.877+03	2021-05-24 09:22:55.883+03	
d781e16c-5b56-6d77-6c21-a0d5593d7682	2021-05-24 09:23:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:23:15.877+03	2021-05-24 09:23:15.883+03	
333f549d-eb6c-add2-f08b-11eca3f24641	2021-05-24 09:23:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:23:35.877+03	2021-05-24 09:23:35.885+03	
7ea3aa4c-f37b-2e12-da5c-b4ab715252a1	2021-05-24 09:23:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:23:56.877+03	2021-05-24 09:23:56.883+03	
bb08e2e6-a730-7bc2-92ae-df96afc489e5	2021-05-24 09:24:17.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:24:17.877+03	2021-05-24 09:24:17.885+03	
9f042f60-d83b-6432-58e3-f25cb4101144	2021-05-24 09:24:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:24:39.876+03	2021-05-24 09:24:39.883+03	
b7f23a77-107e-b028-8a05-575c63b2aed5	2021-05-24 09:24:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:24:59.877+03	2021-05-24 09:24:59.884+03	
00206e5e-0ac8-4829-7cac-9f30091cbb1b	2021-05-24 09:25:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:25:19.877+03	2021-05-24 09:25:19.883+03	
672eca8a-2fba-1093-2bfb-8d47a448c3d0	2021-05-24 09:25:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:25:39.877+03	2021-05-24 09:25:39.882+03	
ae1b43fb-80e0-be9b-c9d6-a4674824d90b	2021-05-24 09:25:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:25:59.877+03	2021-05-24 09:25:59.884+03	
d5384486-0ab3-ccb2-913c-8466af966367	2021-05-24 09:26:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:26:19.877+03	2021-05-24 09:26:19.884+03	
63a750fc-a0b0-9c67-0a70-f03c2e849051	2021-05-24 09:26:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:26:39.877+03	2021-05-24 09:26:39.885+03	
a76944dd-0025-cf65-8207-9ff2993485e7	2021-05-24 09:26:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:26:59.877+03	2021-05-24 09:26:59.884+03	
42488b49-998d-d4e3-be38-a48539e47a98	2021-05-24 09:27:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:27:19.877+03	2021-05-24 09:27:19.883+03	
859fd362-be07-bc85-d909-f49bae1dc5b1	2021-05-24 09:27:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:27:39.877+03	2021-05-24 09:27:39.884+03	
d7ae9f2f-5212-d5ed-e5af-2e18c4dcd46e	2021-05-24 09:27:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:27:59.877+03	2021-05-24 09:27:59.886+03	
1e19d915-b85e-e1fe-c0e4-d81f7c03a3cd	2021-05-24 09:28:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:28:19.877+03	2021-05-24 09:28:19.884+03	
b69f8b40-464e-ab70-20af-4cff0f8c4440	2021-05-24 09:28:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:28:39.877+03	2021-05-24 09:28:39.883+03	
312cc1ed-29f9-8015-8578-18632b99a0bf	2021-05-24 09:28:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:28:59.877+03	2021-05-24 09:28:59.886+03	
a50d175e-e856-9a50-db07-d28ef2c692fc	2021-05-24 09:29:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:29:20.877+03	2021-05-24 09:29:20.883+03	
4c718add-840c-b5ae-4ae8-223d6477adb6	2021-05-24 09:29:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:29:40.877+03	2021-05-24 09:29:40.937+03	
e3e6ffc9-4ac0-25c4-1c7e-2a42383ae93d	2021-05-24 09:30:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:30:00.877+03	2021-05-24 09:30:00.884+03	
0550b6ed-a224-569d-b2bc-b2ce90dc4c4d	2021-05-24 09:30:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:30:20.877+03	2021-05-24 09:30:20.882+03	
4d61f175-c4a4-3139-917e-e15fb9957813	2021-05-24 09:30:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:30:40.877+03	2021-05-24 09:30:40.882+03	
e6ab1d3d-6e0b-7e38-c732-c47776e12bd6	2021-05-24 09:31:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:31:00.877+03	2021-05-24 09:31:00.885+03	
5124a33d-8fe0-2417-07cd-d198df805430	2021-05-24 09:31:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:31:20.877+03	2021-05-24 09:31:20.883+03	
ef59c9c8-a951-ff93-6d7d-ddab9fee5ca4	2021-05-24 09:31:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:31:40.877+03	2021-05-24 09:31:40.883+03	
8842bfc0-e18c-5a34-055b-6dfa83d69f06	2021-05-24 09:32:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:32:00.877+03	2021-05-24 09:32:00.883+03	
cb29a879-27b7-4f01-313d-722fc4b32ad8	2021-05-24 09:32:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:32:20.877+03	2021-05-24 09:32:20.882+03	
15117fc7-c9ab-32ae-e42b-a63de0c197e1	2021-05-24 09:11:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:11:46.877+03	2021-05-24 09:11:46.883+03	
ec4de886-5876-6063-8b9a-de3ae13c433f	2021-05-24 09:12:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:12:06.877+03	2021-05-24 09:12:06.886+03	
3c892538-b00a-b04d-ea59-a7255e6dd81d	2021-05-24 09:12:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:12:26.877+03	2021-05-24 09:12:26.882+03	
31edfb75-fcb0-d04f-fa4a-f02fc84f3a84	2021-05-24 09:12:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:12:47.877+03	2021-05-24 09:12:47.885+03	
3ee3a44e-c77b-d992-ddeb-c21d7a37ab63	2021-05-24 09:13:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:13:08.877+03	2021-05-24 09:13:09.407+03	
789cb1f5-4bbb-9561-6b6a-0a212a576b04	2021-05-24 09:13:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:13:29.877+03	2021-05-24 09:13:29.883+03	
496143e6-30ae-d6ba-da9f-ca1e6db71dbc	2021-05-24 09:13:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:13:50.877+03	2021-05-24 09:13:50.883+03	
9d627bf6-e8cb-0f45-796c-7ef9f042bb53	2021-05-24 09:14:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:14:10.877+03	2021-05-24 09:14:10.883+03	
b8db4b74-3aad-f44c-db15-630dc0ebbb46	2021-05-24 09:14:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:14:30.877+03	2021-05-24 09:14:30.883+03	
c0c9afb0-3e53-dd3a-9f56-5ff93e100afa	2021-05-24 09:14:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:14:50.877+03	2021-05-24 09:14:50.886+03	
5a40543c-81e2-5d14-98bd-cb743ebbbad2	2021-05-24 09:15:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:15:10.877+03	2021-05-24 09:15:10.884+03	
c87f1c4d-4e12-abf9-ef20-ffca3d04a57a	2021-05-24 09:15:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:15:30.877+03	2021-05-24 09:15:30.884+03	
9bec2eeb-a29c-0821-224c-9436f547a4d8	2021-05-24 09:15:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:15:50.877+03	2021-05-24 09:15:50.885+03	
01ac4c7c-3942-63dd-e403-275d0331bea4	2021-05-24 09:16:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:16:10.877+03	2021-05-24 09:16:10.934+03	
785d4bfb-5816-1749-b889-5e4d965495f5	2021-05-24 09:16:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:16:30.877+03	2021-05-24 09:16:30.883+03	
1e5024a7-5711-8fbf-186a-7e9356e723f5	2021-05-24 09:16:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:16:50.877+03	2021-05-24 09:16:50.882+03	
5892c126-d177-00a7-2151-20dfabdb4976	2021-05-24 09:17:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:17:10.877+03	2021-05-24 09:17:10.883+03	
b6b17e65-c116-65a2-ef4a-66e951067604	2021-05-24 09:17:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:17:30.877+03	2021-05-24 09:17:30.883+03	
c093a70e-a8b9-7562-8c41-79558e298e4f	2021-05-24 09:17:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:17:50.877+03	2021-05-24 09:17:50.884+03	
98613281-9bb1-5ac8-06fd-ec69fb6f67fd	2021-05-24 09:18:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:18:10.877+03	2021-05-24 09:18:10.928+03	
cca9d1eb-25cd-77ba-f597-d1b35058f949	2021-05-24 09:18:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:18:30.877+03	2021-05-24 09:18:31.202+03	
1ab8aa46-8f02-6523-c4ce-ba8745a51d80	2021-05-24 09:18:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:18:50.877+03	2021-05-24 09:18:50.886+03	
736d5700-09ab-1df0-31c8-a3cea64bd552	2021-05-24 09:19:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:19:11.877+03	2021-05-24 09:19:11.882+03	
8e49f2bb-e821-4fd1-fdb8-d3687e6a0995	2021-05-24 09:19:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:19:31.877+03	2021-05-24 09:19:31.883+03	
094dfca6-f6df-fc23-bfdc-ef9ecf690bfc	2021-05-24 09:19:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:19:52.877+03	2021-05-24 09:19:53.011+03	
66c2f157-6bbf-2211-f4b0-85992a924bc5	2021-05-24 09:20:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:20:02.877+03	2021-05-24 09:20:03.202+03	
f420c4c1-64ad-a7cf-d745-d5a581d9458f	2021-05-24 09:20:22.885	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:20:22.877+03	2021-05-24 09:20:22.89+03	
8939db31-0e23-f365-8ca9-ddc03c85feda	2021-05-24 09:20:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:20:42.877+03	2021-05-24 09:20:42.883+03	
08d51fb0-1838-af86-6687-bf9c5b667cc2	2021-05-24 09:21:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:21:02.877+03	2021-05-24 09:21:02.885+03	
c8659b4c-4f9c-49e1-1e06-9cabd4cda0ae	2021-05-24 09:21:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:21:22.877+03	2021-05-24 09:21:22.906+03	
49749617-3aad-a1e4-f651-0eb6e7cdad04	2021-05-24 09:21:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:21:43.877+03	2021-05-24 09:21:43.895+03	
555ff4bd-bdd2-aca0-59bf-71a37212382d	2021-05-24 09:22:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:22:03.877+03	2021-05-24 09:22:03.886+03	
b038a473-c5ce-2950-74d6-05d856f6e5b8	2021-05-24 09:22:24.886	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:22:24.886+03	2021-05-24 09:22:24.892+03	
29667f70-8d20-fe0e-701e-e9bb04e04ad8	2021-05-24 09:22:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:22:45.877+03	2021-05-24 09:22:45.883+03	
af290a1a-7f7e-4a22-2259-3b3372f9bf49	2021-05-24 09:23:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:23:05.877+03	2021-05-24 09:23:05.882+03	
91ee7c4c-4acf-7aa6-3257-5b6aa69bded4	2021-05-24 09:23:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:23:25.877+03	2021-05-24 09:23:26.122+03	
f5bb63df-fd1d-09c0-c8a7-2c2c203ae817	2021-05-24 09:23:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:23:46.877+03	2021-05-24 09:23:46.886+03	
bd7c2bd4-c9fb-ce35-0dc7-2d2db882d7f4	2021-05-24 09:24:07.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:24:07.877+03	2021-05-24 09:24:07.884+03	
873d9a3d-da05-7369-3752-53a5b319963e	2021-05-24 09:24:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:24:28.877+03	2021-05-24 09:24:28.883+03	
b598ff1b-8106-9aba-52a1-7d03d6e88cd1	2021-05-24 09:24:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:24:49.877+03	2021-05-24 09:24:49.884+03	
581050c3-bdbc-d812-1468-a4c9c0dd12c7	2021-05-24 09:25:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:25:09.877+03	2021-05-24 09:25:09.883+03	
ada90d72-44de-79e0-5ffb-54b433a306d3	2021-05-24 09:25:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:25:29.877+03	2021-05-24 09:25:29.883+03	
135870f4-f125-5ea2-0af5-76ad4cc17c7a	2021-05-24 09:25:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:25:49.877+03	2021-05-24 09:25:49.884+03	
47ad49c7-5cf1-3caa-af5f-ddda105b45ef	2021-05-24 09:26:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:26:09.877+03	2021-05-24 09:26:09.884+03	
70083e08-c427-8eac-0e45-9bdd17ff836d	2021-05-24 09:26:29.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:26:29.877+03	2021-05-24 09:26:29.892+03	
2b432777-9499-8fc7-5e43-d1fb54ef98c1	2021-05-24 09:26:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:26:49.877+03	2021-05-24 09:26:49.884+03	
728471a7-1189-0d84-233e-ef8b70a519d5	2021-05-24 09:27:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:27:09.877+03	2021-05-24 09:27:09.882+03	
edaa13b5-321d-a1f6-c95e-79bb3285ae4a	2021-05-24 09:27:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:27:29.877+03	2021-05-24 09:27:29.883+03	
3d28f10c-8b4e-d306-b9f7-198f21806680	2021-05-24 09:27:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:27:49.877+03	2021-05-24 09:27:50.173+03	
4c2b2932-cbbd-8d3b-2c57-65ef5b385855	2021-05-24 09:28:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:28:09.877+03	2021-05-24 09:28:09.883+03	
49a40fd5-dd87-22a2-5769-d6350a14b1aa	2021-05-24 09:28:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:28:29.877+03	2021-05-24 09:28:29.89+03	
9aaa7fe4-b202-728c-e436-b729e648d17f	2021-05-24 09:28:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:28:49.877+03	2021-05-24 09:28:49.882+03	
c4110c7f-0693-ef8d-8a4e-c0ee8bcf3872	2021-05-24 09:29:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:29:09.877+03	2021-05-24 09:29:09.883+03	
5d07c3f0-4cfa-a17e-90b1-258dc1d4ad31	2021-05-24 09:29:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:29:30.877+03	2021-05-24 09:29:30.883+03	
59e7c86e-5fc9-1342-db45-62596ccaf519	2021-05-24 09:29:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:29:50.877+03	2021-05-24 09:29:50.886+03	
4734c8d6-ead4-0938-f15e-f3258e6c2d37	2021-05-24 09:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 09:30:00.877+03	2021-05-24 09:30:00.895+03	ERROR
63702c3a-9d2e-1c69-b041-be86e8266eeb	2021-05-24 09:30:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:30:10.877+03	2021-05-24 09:30:10.882+03	
d690e0d5-3b42-a726-ad52-1a213f9f2fe6	2021-05-24 09:30:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:30:30.877+03	2021-05-24 09:30:30.889+03	
fa627af9-9996-9b1f-887f-d6f26e4e603b	2021-05-24 09:30:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:30:50.877+03	2021-05-24 09:30:50.883+03	
412bba48-6fad-3d17-9e76-3827bb94e4c3	2021-05-24 09:31:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:31:10.877+03	2021-05-24 09:31:10.884+03	
ff63a30d-3f37-399e-89f5-ce7c18a41107	2021-05-24 09:31:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:31:30.877+03	2021-05-24 09:31:30.886+03	
981b1c10-e982-f27a-f814-316c2946cb37	2021-05-24 09:31:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:31:50.877+03	2021-05-24 09:31:50.883+03	
ca6567ce-fd56-9f5c-014c-7bc8d6d4da6a	2021-05-24 09:32:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:32:10.877+03	2021-05-24 09:32:10.885+03	
3a2b3895-12d1-3842-0092-3266d7f557a8	2021-05-24 09:32:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:32:30.877+03	2021-05-24 09:32:30.883+03	
6e83eeec-4f15-ff74-1062-e235b41d57c5	2021-05-24 09:32:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:32:50.877+03	2021-05-24 09:32:50.883+03	
12017fc6-02d9-f0c6-7191-c3017f2056df	2021-05-24 09:33:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:33:10.877+03	2021-05-24 09:33:10.882+03	
3c732676-0a6e-5650-f7e6-c2dea11064fd	2021-05-24 09:33:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:33:30.877+03	2021-05-24 09:33:30.883+03	
060aa431-5d3b-f3ae-a435-9d4050fd40ed	2021-05-24 09:33:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:33:50.877+03	2021-05-24 09:33:50.883+03	
547c8f6c-86a4-0673-5e0f-1eb7f97fdec5	2021-05-24 09:34:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:34:10.877+03	2021-05-24 09:34:10.883+03	
a1e467ae-259f-96dd-49e3-f888b55e50a6	2021-05-24 09:34:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:34:30.877+03	2021-05-24 09:34:30.884+03	
4736a31e-29a0-754c-86aa-5a31dcdbb585	2021-05-24 09:34:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:34:51.877+03	2021-05-24 09:34:51.884+03	
d0ae6de1-40fd-384d-da12-9ff835876c8f	2021-05-24 09:35:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:35:11.877+03	2021-05-24 09:35:11.885+03	
de818440-55a8-2965-4ecf-cb4b0c0894f4	2021-05-24 09:35:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:35:31.877+03	2021-05-24 09:35:31.885+03	
cdacc243-bf44-62e5-2870-c26729f43439	2021-05-24 09:35:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:35:51.877+03	2021-05-24 09:35:51.883+03	
40e52e6c-5686-2054-405d-9bb7db23e7eb	2021-05-24 09:36:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:36:11.877+03	2021-05-24 09:36:11.883+03	
cb085223-4cfd-47f9-7874-fad1abb7716d	2021-05-24 09:36:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:36:31.877+03	2021-05-24 09:36:31.882+03	
4b4310a2-f747-d5ba-db19-bed0bee2446c	2021-05-24 09:36:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:36:51.877+03	2021-05-24 09:36:51.883+03	
97b56d3e-af9f-f2d5-9b40-5fa4dc82c1ce	2021-05-24 09:37:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:37:11.877+03	2021-05-24 09:37:11.884+03	
550c4c1b-88eb-9816-0ab9-296d41bb9ca4	2021-05-24 09:37:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:37:31.877+03	2021-05-24 09:37:31.883+03	
c56859a8-cee5-081e-5ea2-96d50b303ec4	2021-05-24 09:37:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:37:51.877+03	2021-05-24 09:37:51.883+03	
56be57ef-e8af-a9f5-6ef2-611bb4f5f9a6	2021-05-24 09:38:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:38:11.877+03	2021-05-24 09:38:11.883+03	
8c0a8dd0-6fbc-4722-8aec-152b3add26e5	2021-05-24 09:38:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:38:31.877+03	2021-05-24 09:38:31.882+03	
a8a15514-54e7-fd2e-b4bf-286e4888f284	2021-05-24 09:38:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:38:51.877+03	2021-05-24 09:38:51.883+03	
3b6e8b2a-701d-9486-9f19-83857eea3f1b	2021-05-24 09:39:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:39:11.877+03	2021-05-24 09:39:11.883+03	
2bbbc1e4-76ef-9bd6-5057-6b9b6ed9ddfb	2021-05-24 09:39:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:39:31.877+03	2021-05-24 09:39:31.882+03	
48460977-076a-5ba0-533f-de067446042b	2021-05-24 09:39:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:39:51.877+03	2021-05-24 09:39:51.888+03	
8fbae562-1123-6fae-0cc4-eeeefcabf9e7	2021-05-24 09:40:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:40:01.877+03	2021-05-24 09:40:01.883+03	
3aaf876f-7770-288d-e00f-99ba63f8e080	2021-05-24 09:40:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:40:21.877+03	2021-05-24 09:40:21.883+03	
a433a956-ed44-1866-e855-e30169502202	2021-05-24 09:40:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:40:41.877+03	2021-05-24 09:40:41.89+03	
a33c18e3-ffc6-4e93-9314-1db6cc779b64	2021-05-24 09:41:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:41:01.877+03	2021-05-24 09:41:01.884+03	
2e86e255-4a0c-7624-5ae2-85823e94826a	2021-05-24 09:41:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:41:22.877+03	2021-05-24 09:41:22.883+03	
7750936d-a987-437e-6322-a375d03a0872	2021-05-24 09:41:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:41:43.877+03	2021-05-24 09:41:43.882+03	
41e94563-0338-5036-f432-59e86e3e3648	2021-05-24 09:42:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:42:03.877+03	2021-05-24 09:42:03.883+03	
10b417e4-ef2f-d236-69cd-d0c8a8f819ae	2021-05-24 09:42:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:42:23.877+03	2021-05-24 09:42:23.893+03	
f1d8c26e-f89f-719d-3b4f-d700009e81f3	2021-05-24 09:42:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:42:43.877+03	2021-05-24 09:42:43.883+03	
ccd3a4f7-f596-6012-c7ff-e5e50bda0ea7	2021-05-24 09:43:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:43:03.877+03	2021-05-24 09:43:03.883+03	
09099b1e-c8d6-ff4b-73df-06f0035a86e0	2021-05-24 09:43:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:43:23.877+03	2021-05-24 09:43:23.885+03	
f4e294c4-13f6-266c-8650-013c687a4f4f	2021-05-24 09:43:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:43:43.877+03	2021-05-24 09:43:43.883+03	
96b15f8b-9901-e4ed-f446-f23c7ed006f5	2021-05-24 09:44:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:44:03.877+03	2021-05-24 09:44:03.886+03	
0cec59c9-ce31-0104-cb39-84b62e106802	2021-05-24 09:44:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:44:23.877+03	2021-05-24 09:44:23.891+03	
0f98fc46-f53c-dccb-75b2-95acf88830cb	2021-05-24 09:44:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:44:45.876+03	2021-05-24 09:44:45.882+03	
4c75c79f-e1f9-ad5f-a3cf-33df23b03b94	2021-05-24 09:45:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:45:05.877+03	2021-05-24 09:45:05.882+03	
0d95a993-5725-e31e-e5c4-7547514882d9	2021-05-24 09:45:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:45:26.877+03	2021-05-24 09:45:26.883+03	
719a00fd-a598-effe-0b0d-aacb191af47c	2021-05-24 09:45:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:45:46.877+03	2021-05-24 09:45:47.124+03	
3fee3024-8e3e-5fa9-58f6-080bbbc5d98d	2021-05-24 09:46:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:46:07.877+03	2021-05-24 09:46:07.883+03	
a260af2a-eb8e-eb21-dc85-edd00dc1c70e	2021-05-24 09:46:28.883	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:46:28.877+03	2021-05-24 09:46:28.889+03	
be37ae55-789f-b6bb-78da-5cef631c5118	2021-05-24 09:46:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:46:48.877+03	2021-05-24 09:46:48.883+03	
eb3e0955-2d47-7e42-14b0-484185e256b8	2021-05-24 09:47:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:47:08.877+03	2021-05-24 09:47:08.884+03	
8a7fada6-4404-aecb-f953-ef9f2dc95912	2021-05-24 09:47:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:47:28.877+03	2021-05-24 09:47:28.887+03	
0bdb5a10-81a4-9aaa-a693-8f375ec3127f	2021-05-24 09:47:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:47:49.877+03	2021-05-24 09:47:49.884+03	
b4b980d4-04e7-1eeb-cfb8-bf6bba63dcf0	2021-05-24 09:48:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:48:09.877+03	2021-05-24 09:48:09.886+03	
a6c43d9f-08cd-fda2-8dbb-8d078462c012	2021-05-24 09:48:29.884	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:48:29.877+03	2021-05-24 09:48:29.889+03	
0f7ee15c-b4b8-8112-b038-16365a9a0198	2021-05-24 09:48:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:48:49.877+03	2021-05-24 09:48:49.884+03	
8a3677fa-6b10-a574-289f-c6b7d1239002	2021-05-24 09:49:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:49:09.877+03	2021-05-24 09:49:09.882+03	
5648d67e-72a8-7cac-dc6c-2b294bf2ace3	2021-05-24 09:49:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:49:29.877+03	2021-05-24 09:49:29.884+03	
620ef131-346d-cf16-f38f-d400242a60d3	2021-05-24 09:49:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:49:49.877+03	2021-05-24 09:49:49.883+03	
f336fb9e-639e-f14c-ae91-8fc973fc29ba	2021-05-24 09:50:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:50:10.877+03	2021-05-24 09:50:10.882+03	
9b516602-c00b-a96e-ea54-d7c1564eb521	2021-05-24 09:50:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:50:30.877+03	2021-05-24 09:50:30.89+03	
6f9c06c5-6462-28d3-f357-23185fafd861	2021-05-24 09:50:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:50:50.877+03	2021-05-24 09:50:50.882+03	
aaa7dece-4acc-478f-6eaf-56f964aa5a5e	2021-05-24 09:51:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:51:10.877+03	2021-05-24 09:51:10.884+03	
ba4039c8-5f75-554b-52ef-3ae4b7267be9	2021-05-24 09:51:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:51:30.877+03	2021-05-24 09:51:30.883+03	
be21012d-fa95-d29d-c12c-ed9427e14c4d	2021-05-24 09:51:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:51:50.877+03	2021-05-24 09:51:50.883+03	
c97edb5f-961f-9bb7-f4df-1eb10f827490	2021-05-24 09:52:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:52:11.877+03	2021-05-24 09:52:11.882+03	
c01f7a80-46cc-d754-1f22-9c64e1fa3831	2021-05-24 09:52:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:52:31.877+03	2021-05-24 09:52:31.892+03	
847cb575-e925-be37-0ca4-05c530e7e613	2021-05-24 09:52:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:52:51.877+03	2021-05-24 09:52:51.883+03	
bb6f28a4-6076-002a-7e7c-2799ab68bdec	2021-05-24 09:53:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:53:11.877+03	2021-05-24 09:53:11.884+03	
32c555ac-9a83-53ae-53c0-68b8c586cb83	2021-05-24 09:32:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:32:40.877+03	2021-05-24 09:32:40.884+03	
05048f1e-b78f-9c34-1b17-3de4a3cc2add	2021-05-24 09:33:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:33:00.877+03	2021-05-24 09:33:00.885+03	
0f45db55-a823-7f54-c459-625ca4095efd	2021-05-24 09:33:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:33:20.877+03	2021-05-24 09:33:20.886+03	
2f2dff2e-bc97-3c1b-24c8-e8c2d9b6e73a	2021-05-24 09:33:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:33:40.877+03	2021-05-24 09:33:40.882+03	
7af206d6-eb31-3a20-cb44-968f5a3638c3	2021-05-24 09:34:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:34:00.877+03	2021-05-24 09:34:00.886+03	
e6cfc263-b639-3349-bb89-dfb2e01d260e	2021-05-24 09:34:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:34:20.877+03	2021-05-24 09:34:20.882+03	
e1663c9e-6c64-aed6-714c-1dedc8356e16	2021-05-24 09:34:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:34:41.877+03	2021-05-24 09:34:41.883+03	
d8dd15c0-dfa9-964d-9a78-26ec59bd0367	2021-05-24 09:35:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:35:01.877+03	2021-05-24 09:35:01.882+03	
5e5b9cca-690e-bf88-86a3-cb5468ccd0a5	2021-05-24 09:35:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:35:21.877+03	2021-05-24 09:35:21.882+03	
dde88ba9-2b12-b503-400d-863fc32ad875	2021-05-24 09:35:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:35:41.877+03	2021-05-24 09:35:41.882+03	
4efd9ad9-35da-b081-e330-a41476dda9de	2021-05-24 09:36:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:36:01.877+03	2021-05-24 09:36:01.882+03	
96a0b609-0e13-00a2-00b0-45a4784c56ae	2021-05-24 09:36:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:36:21.877+03	2021-05-24 09:36:21.882+03	
0eb1107d-354c-1ed1-762c-93fa463d319a	2021-05-24 09:36:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:36:41.877+03	2021-05-24 09:36:41.883+03	
14d4b0f3-1efb-bc87-69d3-5e2799c69d26	2021-05-24 09:37:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:37:01.877+03	2021-05-24 09:37:01.883+03	
4cfed334-5ca3-ff54-9854-5fc424204f53	2021-05-24 09:37:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:37:21.877+03	2021-05-24 09:37:21.883+03	
43fd0cd3-7b13-b28a-42ed-d2a6525a31d2	2021-05-24 09:37:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:37:41.877+03	2021-05-24 09:37:41.883+03	
1d85c7db-36a8-c029-bf25-9576132ad5e2	2021-05-24 09:38:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:38:01.877+03	2021-05-24 09:38:01.882+03	
a130ea59-f5e1-ead5-63aa-cf3d2a2c8631	2021-05-24 09:38:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:38:21.877+03	2021-05-24 09:38:21.883+03	
57b16d8f-7223-9d31-75c1-f26bd8239199	2021-05-24 09:38:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:38:41.877+03	2021-05-24 09:38:41.883+03	
63ac8fb0-6ffd-154e-20cd-140edb56466d	2021-05-24 09:39:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:39:01.877+03	2021-05-24 09:39:01.885+03	
195f6bd7-8ccc-feeb-5533-e17b4f9a1441	2021-05-24 09:39:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:39:21.877+03	2021-05-24 09:39:21.883+03	
4d006af1-fbfb-d281-7a70-d3d7969a5a7e	2021-05-24 09:39:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:39:41.877+03	2021-05-24 09:39:41.883+03	
54b52875-d0d4-f783-0854-86e189203a6f	2021-05-24 09:40:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 09:40:00.877+03	2021-05-24 09:40:00.882+03	ERROR
c42d55d9-4ebe-3069-ded9-558f4e362951	2021-05-24 09:40:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:40:11.877+03	2021-05-24 09:40:11.883+03	
62386594-1c22-f099-ef33-34b3300311ce	2021-05-24 09:40:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:40:31.877+03	2021-05-24 09:40:31.885+03	
b35e86ef-069f-5d69-76c1-9832b820cdd4	2021-05-24 09:40:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:40:51.877+03	2021-05-24 09:40:51.884+03	
f69eaee2-de47-9bd5-83f0-51259a937198	2021-05-24 09:41:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:41:12.877+03	2021-05-24 09:41:12.882+03	
4e7937e2-bc16-bd76-9c0c-6a77f5267659	2021-05-24 09:41:32.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:41:32.878+03	2021-05-24 09:41:32.885+03	
ebf6b1d8-999f-e7cd-6479-7adcca503446	2021-05-24 09:41:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:41:53.877+03	2021-05-24 09:41:53.883+03	
360b9bf7-9bbc-64d5-88a5-064e3395e76e	2021-05-24 09:42:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:42:13.877+03	2021-05-24 09:42:13.884+03	
d7ee61bc-9495-0b54-6fe9-ffe710f70b12	2021-05-24 09:42:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:42:33.877+03	2021-05-24 09:42:33.885+03	
5a2c6b6e-92e8-1959-2f51-b991ba0d1c73	2021-05-24 09:42:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:42:53.877+03	2021-05-24 09:42:53.884+03	
b65863e1-1106-cf35-507a-d1c13c3f3447	2021-05-24 09:43:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:43:13.877+03	2021-05-24 09:43:13.883+03	
befad01c-a543-3701-a1fe-167b2d890854	2021-05-24 09:43:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:43:33.877+03	2021-05-24 09:43:33.882+03	
a5283d15-1900-84a7-c3db-e91fdd59e2fe	2021-05-24 09:43:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:43:53.877+03	2021-05-24 09:43:53.886+03	
bb45d8f9-9f3c-306c-f7c7-08248624a069	2021-05-24 09:44:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:44:13.877+03	2021-05-24 09:44:13.883+03	
4e1806e3-41e8-6db2-a755-d79b6e3b9ef5	2021-05-24 09:44:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:44:34.877+03	2021-05-24 09:44:34.884+03	
d4d06cf1-f534-79cf-b127-30753d86a821	2021-05-24 09:44:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:44:55.877+03	2021-05-24 09:44:55.885+03	
d35f4e9a-a15e-3ca5-308c-756c1fbf77f7	2021-05-24 09:45:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:45:15.877+03	2021-05-24 09:45:15.885+03	
934b8e1a-032a-4ec2-a51e-84843dadecee	2021-05-24 09:45:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:45:36.877+03	2021-05-24 09:45:36.882+03	
a76bdd68-3e08-c87d-20a4-e9e0da1b0f78	2021-05-24 09:45:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:45:56.877+03	2021-05-24 09:45:56.882+03	
bd5766d1-042b-56ae-34d8-4f5df46384be	2021-05-24 09:46:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:46:17.877+03	2021-05-24 09:46:17.883+03	
8d4e7eaf-6cf5-ad8d-06c9-db942513742f	2021-05-24 09:46:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:46:38.877+03	2021-05-24 09:46:38.883+03	
c2e46e85-b0a2-13ce-9b56-13de272dbcec	2021-05-24 09:46:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:46:58.877+03	2021-05-24 09:46:58.887+03	
5dc89268-c1f7-59e3-5b6e-419b1a363c0c	2021-05-24 09:47:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:47:18.877+03	2021-05-24 09:47:18.882+03	
b7721891-7d9e-6d2b-637f-8561575011c2	2021-05-24 09:47:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:47:39.876+03	2021-05-24 09:47:39.882+03	
471d5c55-8401-a66a-e8c3-3144acc62013	2021-05-24 09:47:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:47:59.877+03	2021-05-24 09:47:59.885+03	
68bb5132-2f68-a3ca-730e-13b630486fa2	2021-05-24 09:48:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:48:19.877+03	2021-05-24 09:48:19.887+03	
e79c3a72-c332-ce55-4a17-674349a98dd5	2021-05-24 09:48:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:48:39.877+03	2021-05-24 09:48:39.882+03	
66b15e5a-16db-812a-50ab-cbea12b3578c	2021-05-24 09:48:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:48:59.877+03	2021-05-24 09:48:59.884+03	
ecc4bb10-a3b7-4074-1596-48a23516a18f	2021-05-24 09:49:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:49:19.877+03	2021-05-24 09:49:19.885+03	
6bd9c589-525e-e5bc-ebab-097884bbd40a	2021-05-24 09:49:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:49:39.877+03	2021-05-24 09:49:39.883+03	
b09c9a31-e3b8-7fa2-b8fb-1e72d9301c12	2021-05-24 09:50:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:50:00.877+03	2021-05-24 09:50:00.888+03	
5a488954-dae3-3f37-90d6-92ad4a8ee3fd	2021-05-24 09:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 09:50:00.877+03	2021-05-24 09:50:00.895+03	ERROR
42a4cd08-b8ec-2551-b812-33191ab82c9d	2021-05-24 09:50:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:50:20.877+03	2021-05-24 09:50:20.886+03	
d3e5c591-1e23-d416-73dc-02a0e598158c	2021-05-24 09:50:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:50:40.877+03	2021-05-24 09:50:40.883+03	
b16507e7-390a-631c-eca8-8ed047d4f9bb	2021-05-24 09:51:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:51:00.877+03	2021-05-24 09:51:00.883+03	
f9c1e5b5-092f-af17-edd5-b9e35090995d	2021-05-24 09:51:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:51:20.877+03	2021-05-24 09:51:20.882+03	
5b3d65cf-6e90-c2b9-50a0-d77332db4b92	2021-05-24 09:51:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:51:40.877+03	2021-05-24 09:51:40.882+03	
0cad6665-f7dc-d706-6ae8-c7ee3292bc8f	2021-05-24 09:52:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:52:00.877+03	2021-05-24 09:52:00.883+03	
9f7f6785-ea84-755e-33cf-792d43e627d1	2021-05-24 09:52:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:52:21.877+03	2021-05-24 09:52:21.883+03	
2250f08f-e905-d37c-13cf-c72c37b0ea87	2021-05-24 09:52:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:52:41.877+03	2021-05-24 09:52:41.883+03	
d6653e5f-3c7d-0505-a670-36c02a9c2112	2021-05-24 09:53:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:53:01.877+03	2021-05-24 09:53:01.883+03	
5b73c568-5058-3029-a3a8-d107355b059f	2021-05-24 09:53:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:53:21.877+03	2021-05-24 09:53:21.882+03	
6dc6695b-f6b4-9829-f6c0-adf0cd8269be	2021-05-24 09:53:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:53:41.877+03	2021-05-24 09:53:41.882+03	
3dda901c-6c1d-2b4e-292e-8121ac081b49	2021-05-24 09:54:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:54:02.877+03	2021-05-24 09:54:02.883+03	
9c73df0e-68ae-b4e9-770a-01b85f254c43	2021-05-24 09:54:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:54:22.877+03	2021-05-24 09:54:22.882+03	
97aefbeb-5274-c9f0-5b6a-4a87bec5a96e	2021-05-24 09:54:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:54:42.877+03	2021-05-24 09:54:42.883+03	
cafb8929-cb01-bd0f-e21f-cbbeb2947ee2	2021-05-24 09:55:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:55:03.877+03	2021-05-24 09:55:03.882+03	
c5e4e134-574c-8e03-b07b-7de91561cef7	2021-05-24 09:55:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:55:23.877+03	2021-05-24 09:55:23.886+03	
3c352341-f0d9-ecca-341e-382630251858	2021-05-24 09:55:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:55:43.877+03	2021-05-24 09:55:43.883+03	
eedbd106-fc7b-ec89-4444-b4bbf3edb06f	2021-05-24 09:56:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:56:03.877+03	2021-05-24 09:56:03.882+03	
d0957a54-19e4-25e6-7231-450baa4fa41c	2021-05-24 09:56:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:56:24.877+03	2021-05-24 09:56:24.886+03	
c5bcc411-05d4-61b3-3a39-2d3ff7e05beb	2021-05-24 09:56:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:56:45.877+03	2021-05-24 09:56:45.883+03	
3380269f-7176-aa32-a407-7df2c36cebef	2021-05-24 09:57:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:57:05.877+03	2021-05-24 09:57:05.882+03	
1c1d822e-fb62-a660-5629-8faeb5114b4d	2021-05-24 09:57:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:57:25.877+03	2021-05-24 09:57:25.885+03	
0c625892-5001-622e-bf96-9da23817f6c7	2021-05-24 09:57:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:57:45.877+03	2021-05-24 09:57:45.883+03	
47a45618-5601-f71c-3b09-52ebdd518ee4	2021-05-24 09:58:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:58:05.877+03	2021-05-24 09:58:05.883+03	
600a6a90-3c31-a86f-4b11-cc96cf7ea55b	2021-05-24 09:58:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:58:25.877+03	2021-05-24 09:58:25.882+03	
de78cf86-8220-5e7c-bd54-5c0d14f6b6c1	2021-05-24 09:58:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:58:46.877+03	2021-05-24 09:58:46.883+03	
dde9fceb-876c-f6da-12d4-5f71582c25d9	2021-05-24 09:59:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:59:06.877+03	2021-05-24 09:59:06.883+03	
85b177a2-e2a2-a6f3-be85-573e07096f67	2021-05-24 09:59:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:59:26.877+03	2021-05-24 09:59:26.883+03	
a5ba4507-a554-fc8b-9d69-96604a9805ac	2021-05-24 09:59:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:59:46.877+03	2021-05-24 09:59:46.882+03	
54bae935-cbec-c2c5-0a89-69e1ec804dc2	2021-05-24 10:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 10:00:00.877+03	2021-05-24 10:00:00.881+03	ERROR
4367f543-a90c-8ba6-6bc0-4f4486fbf2e7	2021-05-24 10:00:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:00:16.877+03	2021-05-24 10:00:16.892+03	
3ffae7a0-f97d-cdca-a850-6ae4ac3c1f78	2021-05-24 10:00:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:00:37.876+03	2021-05-24 10:00:37.89+03	
bc0d3b90-6f9d-c32f-f572-8ec1ff0c4451	2021-05-24 10:00:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:00:58.877+03	2021-05-24 10:00:58.884+03	
ed7e0018-7808-44a2-03d5-21ee9a1db263	2021-05-24 10:01:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:01:18.877+03	2021-05-24 10:01:18.883+03	
8f6d32f8-9cc3-0244-8f7d-bc339c165e98	2021-05-24 10:01:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:01:39.877+03	2021-05-24 10:01:39.882+03	
a4ac082e-bfff-9444-1196-d4aa406ab86f	2021-05-24 10:02:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:02:00.877+03	2021-05-24 10:02:00.883+03	
f5fa3073-41d5-04c4-8cb1-c0ce724dad4c	2021-05-24 10:02:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:02:20.877+03	2021-05-24 10:02:21.201+03	
8f459981-450f-474c-96d9-c1510e8dc30c	2021-05-24 10:02:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:02:40.877+03	2021-05-24 10:02:40.883+03	
d5ddc83f-a279-4372-b0a0-40f666628fa7	2021-05-24 10:03:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:03:00.877+03	2021-05-24 10:03:00.883+03	
c19cb76e-03c1-43ff-674d-0de8f108713a	2021-05-24 10:03:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:03:20.877+03	2021-05-24 10:03:20.884+03	
4320f94e-234c-bcd0-b59b-a22673bc3f43	2021-05-24 10:03:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:03:40.877+03	2021-05-24 10:03:40.886+03	
c0651df1-3199-a2a9-53f4-64290a42b8bf	2021-05-24 10:04:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:04:00.877+03	2021-05-24 10:04:00.884+03	
4fb6cd45-c960-0dec-50ce-bd49e1413225	2021-05-24 10:04:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:04:20.877+03	2021-05-24 10:04:20.886+03	
d86b1aa4-1b01-a38b-bc86-235fdec03e36	2021-05-24 10:04:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:04:40.877+03	2021-05-24 10:04:40.883+03	
23646e5b-f901-6f4e-0b39-9cca0ef6918c	2021-05-24 10:05:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:05:00.877+03	2021-05-24 10:05:00.884+03	
e6667d3f-a460-fb2d-67d7-c9c7026be9ea	2021-05-24 10:05:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:05:20.877+03	2021-05-24 10:05:20.884+03	
f140578b-718e-c683-8cab-a0f868d914b8	2021-05-24 10:05:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:05:40.877+03	2021-05-24 10:05:40.885+03	
d04f798c-38d6-5af2-68d8-9f86712b1f80	2021-05-24 10:06:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:06:00.877+03	2021-05-24 10:06:00.884+03	
82117f27-358e-b198-3466-7e6d1b7e2454	2021-05-24 10:06:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:06:20.877+03	2021-05-24 10:06:20.887+03	
f2fae35f-8ff7-2219-d5d8-36112ffcaacd	2021-05-24 10:06:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:06:40.877+03	2021-05-24 10:06:40.884+03	
a0b05c6c-3bd4-f250-ef38-a8f00e1bed2e	2021-05-24 10:07:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:07:00.877+03	2021-05-24 10:07:00.883+03	
9c3cc11f-fd48-98fc-7068-d6d01b10047b	2021-05-24 10:07:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:07:20.877+03	2021-05-24 10:07:20.885+03	
19e1dc5f-f01c-6830-daef-c4f7e643580d	2021-05-24 10:07:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:07:40.877+03	2021-05-24 10:07:40.883+03	
24b98c5b-089b-da41-0b1c-7fd1092762d0	2021-05-24 10:08:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:08:00.877+03	2021-05-24 10:08:00.885+03	
c7af188e-f915-86c6-19c5-6c10b8e7a9c5	2021-05-24 10:08:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:08:20.877+03	2021-05-24 10:08:20.883+03	
88c3b578-ff7c-aa9f-6a5a-b0d4d67b92fa	2021-05-24 10:08:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:08:40.877+03	2021-05-24 10:08:40.884+03	
c70aa1b3-cf8c-7342-8239-652e735f7394	2021-05-24 10:09:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:09:00.877+03	2021-05-24 10:09:00.884+03	
c7f43164-afce-db6e-761e-994e75bb8d07	2021-05-24 10:09:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:09:21.877+03	2021-05-24 10:09:21.883+03	
e1dc352f-1270-be2e-08a3-84f337658a9a	2021-05-24 10:09:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:09:41.877+03	2021-05-24 10:09:41.889+03	
c5e0142b-075f-740d-6f81-268d3930daa5	2021-05-24 10:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 10:10:00.877+03	2021-05-24 10:10:00.882+03	ERROR
4f1089c6-8de8-47db-c21c-68fc268dd077	2021-05-24 10:10:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:10:11.877+03	2021-05-24 10:10:11.883+03	
75234e0b-7432-1fea-35e6-8b9946ca7517	2021-05-24 10:10:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:10:31.877+03	2021-05-24 10:10:31.884+03	
39720ce7-c269-b5d1-77a3-1943bcda07e9	2021-05-24 10:10:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:10:51.877+03	2021-05-24 10:10:51.882+03	
22d08674-4534-00db-7cc2-972b4ef8a06e	2021-05-24 10:11:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:11:11.877+03	2021-05-24 10:11:11.884+03	
095b6a5b-c0c6-616f-a13f-6fccc714ff1c	2021-05-24 10:11:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:11:31.877+03	2021-05-24 10:11:31.883+03	
bdf3391d-fbc2-82fd-bc0e-78c42bde7b4b	2021-05-24 10:11:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:11:51.877+03	2021-05-24 10:11:51.884+03	
831db35a-8d4c-4cd6-3280-ee3258a6692c	2021-05-24 10:12:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:12:11.877+03	2021-05-24 10:12:11.884+03	
cda2f26b-64d7-7a6e-08cd-c44373cac291	2021-05-24 10:12:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:12:31.877+03	2021-05-24 10:12:31.884+03	
badb3f69-fc8c-dd65-002a-2eed7647ae21	2021-05-24 10:12:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:12:51.877+03	2021-05-24 10:12:51.885+03	
72f715af-be7d-3375-0539-f022f8b3ea4c	2021-05-24 10:13:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:13:11.877+03	2021-05-24 10:13:11.883+03	
e33807ef-29cf-6cac-d04c-3137c8351f38	2021-05-24 10:13:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:13:31.877+03	2021-05-24 10:13:31.885+03	
78134fd7-9fa7-926a-94db-ce8563af38dd	2021-05-24 10:13:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:13:51.877+03	2021-05-24 10:13:51.886+03	
a8c292e9-68e7-9a67-7d94-f51a6f2e74e1	2021-05-24 09:53:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:53:31.877+03	2021-05-24 09:53:31.883+03	
5093ed2b-90ab-6b60-ce2a-6289892e10c0	2021-05-24 09:53:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:53:52.877+03	2021-05-24 09:53:52.885+03	
52e03c45-5b5c-3b02-f571-fcc99afe3eaa	2021-05-24 09:54:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:54:12.877+03	2021-05-24 09:54:12.882+03	
89a8a553-0392-0697-e1be-1acd7197c5ca	2021-05-24 09:54:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:54:32.877+03	2021-05-24 09:54:32.889+03	
7efed1ee-6cd5-d69c-590b-df5bea9f8a4b	2021-05-24 09:54:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:54:52.878+03	2021-05-24 09:54:52.884+03	
be61327d-52f8-204f-a836-c7cb0f48c156	2021-05-24 09:55:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:55:13.877+03	2021-05-24 09:55:13.883+03	
f6dd9316-0cba-19e3-a94d-3da39ca84693	2021-05-24 09:55:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:55:33.877+03	2021-05-24 09:55:33.884+03	
b0f4d342-3753-9275-ed75-83d7306b5402	2021-05-24 09:55:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:55:53.877+03	2021-05-24 09:55:53.883+03	
7112e1d4-db2a-81ce-59d6-99c5940a651f	2021-05-24 09:56:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:56:13.877+03	2021-05-24 09:56:14.107+03	
b11cf2af-1cb0-1ed3-7ee3-0f7929b0dc96	2021-05-24 09:56:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:56:35.877+03	2021-05-24 09:56:35.883+03	
165e0f5f-185f-d89b-4c8f-d85609beb709	2021-05-24 09:56:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:56:55.877+03	2021-05-24 09:56:55.884+03	
08b06c01-c1ac-c415-5c8c-47baafc1647a	2021-05-24 09:57:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:57:15.877+03	2021-05-24 09:57:15.882+03	
2c2790fd-f897-53c9-174b-d093d4d55093	2021-05-24 09:57:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:57:35.877+03	2021-05-24 09:57:35.886+03	
03067039-20cf-92e0-31e2-a136e16f99aa	2021-05-24 09:57:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:57:55.877+03	2021-05-24 09:57:55.882+03	
56ece548-4dd4-0fbc-d21a-3112a25e9193	2021-05-24 09:58:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:58:15.877+03	2021-05-24 09:58:15.884+03	
9086932f-f17b-ca52-afc8-5587ca57bc2b	2021-05-24 09:58:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:58:36.877+03	2021-05-24 09:58:37.126+03	
e2719e6c-ce5c-fd57-b689-06900ad6c518	2021-05-24 09:58:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:58:56.877+03	2021-05-24 09:58:56.883+03	
9ad2490c-5cee-128d-b800-1b2373482f56	2021-05-24 09:59:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:59:16.877+03	2021-05-24 09:59:16.888+03	
b67dc85c-82ea-cdeb-30a1-16c9b2a872fe	2021-05-24 09:59:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:59:36.877+03	2021-05-24 09:59:37.028+03	
75ae0c5d-fd20-c18d-e6f2-f84160787449	2021-05-24 09:59:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 09:59:56.877+03	2021-05-24 09:59:57.172+03	
05617ebc-19f5-f869-0e42-18a7fa351d12	2021-05-24 10:00:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:00:06.877+03	2021-05-24 10:00:06.884+03	
ebcd8a65-99db-6354-62a2-11803ad67b0d	2021-05-24 10:00:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:00:27.876+03	2021-05-24 10:00:27.887+03	
c4e689c0-ee71-6b4d-99bd-d7abbf1b0bd9	2021-05-24 10:00:47.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:00:47.878+03	2021-05-24 10:00:47.884+03	
fdc10e6c-62df-7ab8-ee30-cc466ca5e3eb	2021-05-24 10:01:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:01:08.877+03	2021-05-24 10:01:08.883+03	
d6351772-7a15-631d-5fbe-6a22b8f6b060	2021-05-24 10:01:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:01:29.876+03	2021-05-24 10:01:29.883+03	
662ca525-e9d3-4b88-6c4c-c13dd4736ca6	2021-05-24 10:01:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:01:50.877+03	2021-05-24 10:01:50.882+03	
8bad06f9-edda-68f5-176e-9910b9a59465	2021-05-24 10:02:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:02:10.877+03	2021-05-24 10:02:10.884+03	
2060fac1-e267-c1a0-01c6-92bc413b239b	2021-05-24 10:02:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:02:30.877+03	2021-05-24 10:02:30.882+03	
7bda52ab-4c78-9eaa-70bb-9966aee8d15f	2021-05-24 10:02:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:02:50.877+03	2021-05-24 10:02:50.886+03	
cfc367e9-6f45-3376-5b40-9779479a72f2	2021-05-24 10:03:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:03:10.877+03	2021-05-24 10:03:10.883+03	
bcbb4cb3-3790-761a-73a6-3751e8a660bb	2021-05-24 10:03:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:03:30.877+03	2021-05-24 10:03:30.885+03	
26bd272a-5c29-1f23-e6ce-e09f25b4ddc3	2021-05-24 10:03:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:03:50.877+03	2021-05-24 10:03:50.884+03	
c3e11b2a-652f-2051-2add-bd423fbf3019	2021-05-24 10:04:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:04:10.877+03	2021-05-24 10:04:10.884+03	
0f2603a8-3caf-f74f-4f52-f4ce9827a787	2021-05-24 10:04:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:04:30.877+03	2021-05-24 10:04:30.883+03	
3cf6ba80-7cb9-7e5e-ccff-aba00ba70f80	2021-05-24 10:04:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:04:50.877+03	2021-05-24 10:04:50.883+03	
29bd7b46-86f1-0dd1-f526-0fd003b27990	2021-05-24 10:05:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:05:10.877+03	2021-05-24 10:05:10.887+03	
e0158450-0d6b-bf49-dafc-04471ea89e4e	2021-05-24 10:05:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:05:30.877+03	2021-05-24 10:05:31.488+03	
e079768e-232b-590c-894c-321325c8c197	2021-05-24 10:05:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:05:50.877+03	2021-05-24 10:05:50.968+03	
a7e63aad-a918-a7c8-85f1-1fd8f6574857	2021-05-24 10:06:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:06:10.877+03	2021-05-24 10:06:10.886+03	
43bc6d77-01af-770a-b7b8-6c7186ea92e3	2021-05-24 10:06:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:06:30.877+03	2021-05-24 10:06:30.886+03	
93e5dbb6-b3f4-d59b-690e-31d9479ed089	2021-05-24 10:06:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:06:50.877+03	2021-05-24 10:06:50.885+03	
f264f3d4-60b5-1416-5f59-f6034ada4f69	2021-05-24 10:07:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:07:10.877+03	2021-05-24 10:07:10.89+03	
b8fcb559-4b4c-7c9b-a141-5e6aa2ac0c4a	2021-05-24 10:07:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:07:30.877+03	2021-05-24 10:07:30.883+03	
b8062e8b-915a-3a27-903e-e214665e69f6	2021-05-24 10:07:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:07:50.877+03	2021-05-24 10:07:50.885+03	
f9d57251-e746-e46f-58be-8968be788632	2021-05-24 10:08:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:08:10.877+03	2021-05-24 10:08:10.883+03	
0bc2ce60-c8a3-c6d6-2d7f-db41f1b27a25	2021-05-24 10:08:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:08:30.877+03	2021-05-24 10:08:30.885+03	
6e1ec7f7-e7e7-10ef-7970-a974b4f44e7e	2021-05-24 10:08:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:08:50.877+03	2021-05-24 10:08:50.886+03	
0217e237-fd58-854c-a4cb-01203ea999bd	2021-05-24 10:09:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:09:11.877+03	2021-05-24 10:09:11.884+03	
985932c9-7156-a7e6-6d67-a45f029a86f4	2021-05-24 10:09:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:09:31.877+03	2021-05-24 10:09:31.883+03	
f674f98a-c665-cc61-3859-5b59baeb4748	2021-05-24 10:09:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:09:51.877+03	2021-05-24 10:09:51.882+03	
793ea274-ca16-b871-e582-c68e99a096a4	2021-05-24 10:10:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:10:01.877+03	2021-05-24 10:10:01.903+03	
53d585ff-f748-9ecb-f72b-24f982564d45	2021-05-24 10:10:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:10:21.877+03	2021-05-24 10:10:21.884+03	
ca46aed2-556d-5eaf-67a4-fb8c365e15c0	2021-05-24 10:10:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:10:41.877+03	2021-05-24 10:10:41.887+03	
38565ce3-e598-22a9-d095-04a643dbf3c2	2021-05-24 10:11:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:11:01.877+03	2021-05-24 10:11:01.882+03	
97417aad-ecba-ace9-c64b-ca6d2e2acd56	2021-05-24 10:11:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:11:21.877+03	2021-05-24 10:11:21.883+03	
ef89bd2a-bc70-51ef-aed5-cbb801458f9c	2021-05-24 10:11:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:11:41.877+03	2021-05-24 10:11:41.883+03	
b77f351d-f358-431d-ccbb-ea99231d5834	2021-05-24 10:12:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:12:01.877+03	2021-05-24 10:12:01.894+03	
ba5056ec-e070-6be7-72cf-5b29001dd7ef	2021-05-24 10:12:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:12:21.877+03	2021-05-24 10:12:21.886+03	
2e44a1dd-4eb6-3aac-2d7e-2f1c79213902	2021-05-24 10:12:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:12:41.877+03	2021-05-24 10:12:41.886+03	
f83b46dd-3a62-1f1a-525a-3e32a568b778	2021-05-24 10:13:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:13:01.877+03	2021-05-24 10:13:01.882+03	
639e5915-cdbe-131a-1d7b-015b2d59899a	2021-05-24 10:13:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:13:21.877+03	2021-05-24 10:13:21.885+03	
2235b489-e005-9c4c-271e-3f0472f279c0	2021-05-24 10:13:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:13:41.877+03	2021-05-24 10:13:41.883+03	
d53e0765-8677-a8ce-7da6-9840c16e95ec	2021-05-24 10:14:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:14:01.877+03	2021-05-24 10:14:01.887+03	
f597c1f4-b5e5-866f-3f85-e7097bc0fff2	2021-05-24 10:14:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:14:11.877+03	2021-05-24 10:14:11.884+03	
c1500afa-fff7-53bb-1705-56f4e198fc7f	2021-05-24 10:14:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:14:31.877+03	2021-05-24 10:14:31.885+03	
90feef20-7414-2ef0-7eb6-e1918f3b6c9b	2021-05-24 10:14:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:14:51.877+03	2021-05-24 10:14:51.885+03	
ec524fe3-4df5-f47f-15f6-9445349d446a	2021-05-24 10:15:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:15:11.877+03	2021-05-24 10:15:11.883+03	
33cc469b-4ae6-d40d-8a22-be9a7bd3f8a1	2021-05-24 10:15:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:15:31.877+03	2021-05-24 10:15:32.687+03	
7fb3b159-fb70-ddaa-f84a-637dc84db99b	2021-05-24 10:15:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:15:51.877+03	2021-05-24 10:15:51.883+03	
a2065d73-1fba-0904-edb6-d2092805ec0f	2021-05-24 10:16:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:16:11.877+03	2021-05-24 10:16:11.885+03	
ee204e58-a242-510a-ad0d-8b80ffbfee74	2021-05-24 10:16:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:16:31.877+03	2021-05-24 10:16:31.883+03	
1fc3f2cb-bc09-cd9b-bada-182025a3955a	2021-05-24 10:16:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:16:51.877+03	2021-05-24 10:16:51.883+03	
1dd11736-be78-f99a-4e01-8a802275289e	2021-05-24 10:17:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:17:11.877+03	2021-05-24 10:17:11.882+03	
757bc234-9abc-312e-a270-c35d975d6357	2021-05-24 10:17:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:17:31.877+03	2021-05-24 10:17:31.887+03	
ba8cff3e-2047-1f95-2173-cb50afa280a7	2021-05-24 10:17:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:17:51.877+03	2021-05-24 10:17:51.885+03	
b0d93cba-996f-347b-6d28-16ebc3506aa8	2021-05-24 10:18:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:18:11.877+03	2021-05-24 10:18:11.883+03	
462364bc-38d0-6573-f0b5-5fb910af3339	2021-05-24 10:18:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:18:31.877+03	2021-05-24 10:18:31.883+03	
354fc178-242c-8275-0ca5-e479c19215c9	2021-05-24 10:18:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:18:51.877+03	2021-05-24 10:18:51.884+03	
5b8830fb-fb6a-8216-1749-0cea26d19da1	2021-05-24 10:19:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:19:11.877+03	2021-05-24 10:19:11.882+03	
fcf83339-885f-5701-fef5-fd509f2057ed	2021-05-24 10:19:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:19:31.877+03	2021-05-24 10:19:31.882+03	
2532daec-0a5b-4ad4-201a-08bc1973d63f	2021-05-24 10:19:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:19:51.877+03	2021-05-24 10:19:51.883+03	
ae0d4085-4c28-cc20-f811-55c8ebee5dcf	2021-05-24 10:20:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:20:01.877+03	2021-05-24 10:20:01.882+03	
8671e3fd-e9f8-9a54-f5e8-c02c0ea8ab11	2021-05-24 10:20:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:20:22.877+03	2021-05-24 10:20:22.934+03	
60aa3e4c-1b41-10a7-0a3d-9a52d24e68bc	2021-05-24 10:20:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:20:43.877+03	2021-05-24 10:20:43.89+03	
8362379b-c4fa-ec5a-8010-92b910a8390a	2021-05-24 10:21:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:21:03.877+03	2021-05-24 10:21:03.883+03	
160b2681-3d99-b7cd-5a58-aca0c1427d22	2021-05-24 10:21:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:21:23.877+03	2021-05-24 10:21:23.883+03	
3f42256c-5196-e2ff-abeb-0bee636794b4	2021-05-24 10:21:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:21:43.877+03	2021-05-24 10:21:43.883+03	
8b103c78-6d3a-10ba-97ef-2fbd831aa07f	2021-05-24 10:22:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:22:04.877+03	2021-05-24 10:22:05.124+03	
fa264097-ae27-bf3d-34da-ac33170135d4	2021-05-24 10:22:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:22:24.877+03	2021-05-24 10:22:24.882+03	
02642cae-398a-05d5-d83f-a0714538b7ce	2021-05-24 10:22:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:22:45.877+03	2021-05-24 10:22:45.882+03	
f825fa59-88e9-570e-f929-9d22e905d6d9	2021-05-24 10:23:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:23:06.877+03	2021-05-24 10:23:06.882+03	
ce84518b-142c-f36d-0b51-0fbac7b735f0	2021-05-24 10:23:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:23:26.877+03	2021-05-24 10:23:26.885+03	
8eb76016-f51e-055b-c54b-dd329c1c0358	2021-05-24 10:23:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:23:46.877+03	2021-05-24 10:23:46.883+03	
ef53edad-a7eb-f111-0adf-8c5bc6e0a490	2021-05-24 10:24:07.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:24:07.877+03	2021-05-24 10:24:07.886+03	
015b2e60-23a5-9707-b4e2-d5b5d803d5f4	2021-05-24 10:24:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:24:28.877+03	2021-05-24 10:24:28.885+03	
fde95f78-6b11-6e00-0a7f-c220cb946c3f	2021-05-24 10:24:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:24:48.877+03	2021-05-24 10:24:48.887+03	
72eff7ea-1b20-c9e2-0a63-d087287775d2	2021-05-24 10:25:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:25:08.877+03	2021-05-24 10:25:08.886+03	
0fbe16da-030a-fcd9-8a13-3650dcd56836	2021-05-24 10:25:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:25:28.877+03	2021-05-24 10:25:28.883+03	
fbe5a525-1e0b-27fe-b4b5-a5ff14f31c7d	2021-05-24 10:25:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:25:48.877+03	2021-05-24 10:25:48.884+03	
c1796a59-eb65-83a4-acf2-fe30b4e21832	2021-05-24 10:26:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:26:08.877+03	2021-05-24 10:26:08.883+03	
43792878-0e57-ef6c-9685-f99acd9a2e14	2021-05-24 10:26:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:26:28.877+03	2021-05-24 10:26:28.883+03	
d0d5351c-dc41-39c2-5a4c-6bec5c22b8fb	2021-05-24 10:26:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:26:48.877+03	2021-05-24 10:26:48.883+03	
cbab89b1-cb51-6dba-1938-466edd7af9ef	2021-05-24 10:27:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:27:08.877+03	2021-05-24 10:27:08.886+03	
7b6bcc27-06f5-332e-acf6-f8e05958c353	2021-05-24 10:27:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:27:28.877+03	2021-05-24 10:27:28.884+03	
08f3908f-de41-f2b7-328f-7bc1fba76f98	2021-05-24 10:27:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:27:48.877+03	2021-05-24 10:27:48.883+03	
7bcc3310-eb4d-5609-672a-8e4727e8d02d	2021-05-24 10:28:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:28:08.877+03	2021-05-24 10:28:08.883+03	
e135997f-8dd0-4cb0-3aa7-c32c2721792a	2021-05-24 10:28:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:28:29.877+03	2021-05-24 10:28:29.885+03	
a7c6264c-3d96-877c-7386-0022852bef22	2021-05-24 10:28:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:28:49.877+03	2021-05-24 10:28:49.882+03	
53ccc81a-4c60-fd83-00a6-a6699475c28c	2021-05-24 10:29:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:29:09.877+03	2021-05-24 10:29:09.884+03	
86bd9a2e-d56e-2e8a-fcd0-5a00d44ab7c3	2021-05-24 10:29:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:29:29.877+03	2021-05-24 10:29:29.883+03	
8009dd7b-ee55-1423-2170-299634331800	2021-05-24 10:29:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:29:49.877+03	2021-05-24 10:29:49.884+03	
7d982af7-5765-608c-d905-d93ecce91201	2021-05-24 10:30:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 10:30:00.877+03	2021-05-24 10:30:00.883+03	ERROR
16fa7152-3b70-1d4e-b937-20a989314993	2021-05-24 10:30:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:30:19.877+03	2021-05-24 10:30:19.884+03	
ece172a8-37aa-5fc1-7298-bc2332704e33	2021-05-24 10:30:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:30:39.877+03	2021-05-24 10:30:39.887+03	
24604430-b843-3e66-e4d9-1a5da76776e1	2021-05-24 10:30:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:30:59.877+03	2021-05-24 10:30:59.901+03	
5a9bab29-9442-e6b1-69f0-328a1df6d5ae	2021-05-24 10:31:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:31:19.877+03	2021-05-24 10:31:19.882+03	
528b8f3b-d79a-2dfc-1b63-d9288ee6f491	2021-05-24 10:31:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:31:39.877+03	2021-05-24 10:31:39.883+03	
2c797384-69bd-903d-4e9a-d9def34972c7	2021-05-24 10:32:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:32:00.877+03	2021-05-24 10:32:00.883+03	
3cfb1332-5746-edd7-5480-64784de8bb91	2021-05-24 10:32:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:32:20.877+03	2021-05-24 10:32:20.883+03	
996e9c61-6244-76ad-fef0-990ac90db267	2021-05-24 10:32:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:32:40.877+03	2021-05-24 10:32:40.882+03	
039e35ae-95dc-e3e8-3681-243305051f8f	2021-05-24 10:33:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:33:01.876+03	2021-05-24 10:33:01.888+03	
efeae00e-9db3-6105-40bb-51c7b8139c6a	2021-05-24 10:33:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:33:21.877+03	2021-05-24 10:33:21.884+03	
7f73f050-4c3f-bd09-6483-6ac8c32eac98	2021-05-24 10:33:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:33:41.877+03	2021-05-24 10:33:41.883+03	
14a6a097-8deb-8a54-4279-340fea19579c	2021-05-24 10:34:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:34:01.877+03	2021-05-24 10:34:01.883+03	
16d3fe8d-9bd7-1443-cfc5-fcfbc0a8ed48	2021-05-24 10:34:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:34:21.877+03	2021-05-24 10:34:21.884+03	
765312ff-d1ea-97ef-3c22-e9767c3e465a	2021-05-24 10:34:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:34:41.877+03	2021-05-24 10:34:41.883+03	
dd71073b-aa62-1241-ad1a-0a52ae328b5b	2021-05-24 10:14:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:14:21.877+03	2021-05-24 10:14:21.885+03	
38e7c779-5dcb-17c3-8c1f-d617e0de9f58	2021-05-24 10:14:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:14:41.877+03	2021-05-24 10:14:41.883+03	
af283033-2f30-9df9-c779-31d09dbab901	2021-05-24 10:15:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:15:01.877+03	2021-05-24 10:15:01.886+03	
821d1d02-60cf-97b7-eefd-5a4ca640d1a4	2021-05-24 10:15:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:15:21.877+03	2021-05-24 10:15:21.882+03	
42620c48-06ff-b60b-9518-2a7142a3042c	2021-05-24 10:15:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:15:41.877+03	2021-05-24 10:15:41.884+03	
df2dd3a6-2c42-dac9-a30d-1fa28d002fc3	2021-05-24 10:16:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:16:01.877+03	2021-05-24 10:16:01.885+03	
941a755e-a21b-17cc-bdc3-de971a866fdf	2021-05-24 10:16:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:16:21.877+03	2021-05-24 10:16:21.882+03	
b8f028e1-3023-e7f7-bade-42957794fd8c	2021-05-24 10:16:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:16:41.877+03	2021-05-24 10:16:41.884+03	
585f89a0-a1dd-271d-8267-d79e61e862af	2021-05-24 10:17:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:17:01.877+03	2021-05-24 10:17:01.883+03	
35784749-e60d-cf02-1d5e-0164580830d7	2021-05-24 10:17:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:17:21.877+03	2021-05-24 10:17:21.885+03	
99e3371e-0590-305a-2b08-1306bc85dca0	2021-05-24 10:17:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:17:41.877+03	2021-05-24 10:17:41.885+03	
4bb7694c-c8e8-7d4b-6ce2-0e8903625e12	2021-05-24 10:18:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:18:01.877+03	2021-05-24 10:18:01.934+03	
9fc136d2-7561-9423-021e-f0adce20bf80	2021-05-24 10:18:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:18:21.877+03	2021-05-24 10:18:21.885+03	
bc59df53-8c77-1f33-72bf-7633f35f9b52	2021-05-24 10:18:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:18:41.877+03	2021-05-24 10:18:41.884+03	
f819edaa-5e46-5fbe-cfe6-116a194cc2e1	2021-05-24 10:19:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:19:01.877+03	2021-05-24 10:19:01.883+03	
9e9842bd-fb19-d669-6b07-5bdcde8fb5cc	2021-05-24 10:19:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:19:21.877+03	2021-05-24 10:19:21.882+03	
5b040726-ff35-f247-1bc5-20644ed1bcc4	2021-05-24 10:19:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:19:41.877+03	2021-05-24 10:19:41.882+03	
69885242-4b35-3b33-c2c3-bc4bf2bbf971	2021-05-24 10:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 10:20:00.877+03	2021-05-24 10:20:00.882+03	ERROR
b2dccf71-c5a1-923f-f748-7d75c304024e	2021-05-24 10:20:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:20:11.877+03	2021-05-24 10:20:11.884+03	
9f6944a6-e2f8-4238-c89b-67342dc69c4b	2021-05-24 10:20:32.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:20:32.879+03	2021-05-24 10:20:32.887+03	
f0cc005a-6e9b-fd20-d8c8-0b43330418ba	2021-05-24 10:20:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:20:53.877+03	2021-05-24 10:20:53.884+03	
5cdc82ff-351e-8bd9-3ec6-661b1d2f1698	2021-05-24 10:21:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:21:13.877+03	2021-05-24 10:21:13.884+03	
769f270e-882b-162e-72d1-206f69eb9305	2021-05-24 10:21:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:21:33.877+03	2021-05-24 10:21:33.883+03	
168bf4d6-80c7-0c5e-dbe5-7689846026ec	2021-05-24 10:21:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:21:53.877+03	2021-05-24 10:21:53.883+03	
dd626c0c-e73b-600c-bdf0-c0869a7be927	2021-05-24 10:22:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:22:14.877+03	2021-05-24 10:22:14.886+03	
bcbbb45d-327f-f7b4-9fc7-3570bcd28e33	2021-05-24 10:22:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:22:34.877+03	2021-05-24 10:22:34.884+03	
0eaaed7b-df74-feee-b01a-26332353f7d5	2021-05-24 10:22:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:22:55.877+03	2021-05-24 10:22:55.884+03	
a1d936b0-22dc-6676-30f8-5695f4d037f3	2021-05-24 10:23:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:23:16.877+03	2021-05-24 10:23:16.882+03	
8dd99f13-fd91-255f-9dbb-1b8c005e8732	2021-05-24 10:23:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:23:36.877+03	2021-05-24 10:23:36.883+03	
4ec79b68-83c0-3ca8-9957-c57e72f03f18	2021-05-24 10:23:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:23:56.877+03	2021-05-24 10:23:56.884+03	
4c0fea92-690e-8c3e-b58f-1a1e4bac1e66	2021-05-24 10:24:17.886	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:24:17.877+03	2021-05-24 10:24:17.892+03	
f7d0e183-f269-98fd-925d-7bd229e78fc1	2021-05-24 10:24:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:24:38.877+03	2021-05-24 10:24:38.886+03	
690fcdb3-d7ac-7343-6a4c-9ccb83251a66	2021-05-24 10:24:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:24:58.877+03	2021-05-24 10:24:58.883+03	
a83423ee-964a-2cec-ec44-652eaa2fbcb3	2021-05-24 10:25:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:25:18.877+03	2021-05-24 10:25:18.884+03	
c0250783-0165-c3e3-d3f0-5876fd4b79d5	2021-05-24 10:25:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:25:38.877+03	2021-05-24 10:25:38.883+03	
269fcea5-8d3e-caa6-47ad-d9951e7c0ed6	2021-05-24 10:25:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:25:58.877+03	2021-05-24 10:25:58.883+03	
476e2693-b2d0-45f2-ebc3-2dc0e7d9c5ee	2021-05-24 10:26:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:26:18.877+03	2021-05-24 10:26:18.884+03	
5fe77149-c821-10da-47f1-5cd867353f0c	2021-05-24 10:26:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:26:38.877+03	2021-05-24 10:26:38.884+03	
4b9412da-1506-adab-97d7-4ac8dcbb0ff7	2021-05-24 10:26:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:26:58.877+03	2021-05-24 10:26:58.884+03	
54893c71-4080-f6c0-84ad-516484257b0c	2021-05-24 10:27:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:27:18.877+03	2021-05-24 10:27:18.882+03	
08bfc2d7-49ed-a44d-5693-53e4bca4ccff	2021-05-24 10:27:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:27:38.877+03	2021-05-24 10:27:38.884+03	
c13453b7-13b1-9975-2bb8-f9e3d9524693	2021-05-24 10:27:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:27:58.877+03	2021-05-24 10:27:58.883+03	
56331870-03f6-5336-8c20-a45918debcb0	2021-05-24 10:28:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:28:19.876+03	2021-05-24 10:28:19.882+03	
4df0f981-e13c-05c7-9930-df5e11c89b99	2021-05-24 10:28:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:28:39.877+03	2021-05-24 10:28:39.882+03	
5d5386cf-e819-8f42-3f88-a05561d60b1d	2021-05-24 10:28:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:28:59.877+03	2021-05-24 10:28:59.883+03	
dfe73783-d86f-2e2e-7874-ef82030caf25	2021-05-24 10:29:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:29:19.877+03	2021-05-24 10:29:19.885+03	
95c57ddf-601d-d13e-a59c-b7a06b159226	2021-05-24 10:29:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:29:39.877+03	2021-05-24 10:29:39.886+03	
bc10ca12-24ea-af52-286a-4a69a5546bca	2021-05-24 10:29:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:29:59.877+03	2021-05-24 10:29:59.885+03	
3b1cec29-342b-290a-c71e-203ce5f7bb58	2021-05-24 10:30:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:30:09.877+03	2021-05-24 10:30:09.885+03	
fd139a24-814b-fc02-bcea-43f19d9abc80	2021-05-24 10:30:29.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:30:29.877+03	2021-05-24 10:30:29.888+03	
f6d450cf-3a7a-2d37-221d-d00efa1691d5	2021-05-24 10:30:49.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:30:49.877+03	2021-05-24 10:30:49.884+03	
d7f18dab-d30d-7cd1-9437-3504c1bd6649	2021-05-24 10:31:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:31:09.877+03	2021-05-24 10:31:09.882+03	
0390bcfb-87d4-59af-9e98-7334851dc701	2021-05-24 10:31:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:31:29.877+03	2021-05-24 10:31:29.894+03	
38eda9de-77ca-15be-9fcd-3173b03a4f04	2021-05-24 10:31:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:31:50.877+03	2021-05-24 10:31:50.883+03	
ef979a03-7524-3acb-30c0-68059e98a339	2021-05-24 10:32:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:32:10.877+03	2021-05-24 10:32:10.884+03	
1383b6e6-b931-fadc-5562-21b92b3c7d97	2021-05-24 10:32:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:32:30.877+03	2021-05-24 10:32:30.883+03	
9b48bba2-2d45-95d6-8456-179f04b1a6fa	2021-05-24 10:32:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:32:50.877+03	2021-05-24 10:32:50.883+03	
7e07ad2a-dc21-2aa1-cc0e-b481dc8ef5b1	2021-05-24 10:33:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:33:11.877+03	2021-05-24 10:33:11.882+03	
1ff61643-3a9c-1d21-e3b8-1e4786723b1b	2021-05-24 10:33:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:33:31.877+03	2021-05-24 10:33:31.883+03	
59628d41-d61a-9480-b75e-cf76406bd8a9	2021-05-24 10:33:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:33:51.877+03	2021-05-24 10:33:51.883+03	
e44111e4-7c83-babf-a2dc-858d97a5ec4b	2021-05-24 10:34:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:34:11.877+03	2021-05-24 10:34:11.883+03	
2be47d92-84b5-e168-ae3d-a833ca843d7d	2021-05-24 10:34:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:34:31.877+03	2021-05-24 10:34:31.883+03	
938491e0-b6de-e8b6-889e-04d7303ac94b	2021-05-24 10:34:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:34:51.877+03	2021-05-24 10:34:51.883+03	
27d167b6-400e-271c-d6f1-8de1e4a201ee	2021-05-24 10:35:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:35:01.877+03	2021-05-24 10:35:01.883+03	
a92009f7-b26b-b255-01ee-15065e50be13	2021-05-24 10:35:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:35:21.877+03	2021-05-24 10:35:21.883+03	
5ccba12b-33a8-ff69-9a6c-8d7d76f7fdec	2021-05-24 10:35:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:35:41.877+03	2021-05-24 10:35:41.885+03	
3910f8e8-5459-44ec-be3f-f47a50ba3ef7	2021-05-24 10:36:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:36:01.877+03	2021-05-24 10:36:01.885+03	
be946901-d773-7f46-74d6-0adbcf06d676	2021-05-24 10:36:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:36:21.877+03	2021-05-24 10:36:21.884+03	
500f5a82-ddd6-a9f4-fe1c-cecc3ebf3d62	2021-05-24 10:36:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:36:41.877+03	2021-05-24 10:36:41.884+03	
d57df712-cc05-4db4-b344-d6a3aad1326e	2021-05-24 10:37:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:37:01.877+03	2021-05-24 10:37:02.1+03	
a5f07b42-1d22-92fb-aa7d-654172dabaf0	2021-05-24 10:37:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:37:22.877+03	2021-05-24 10:37:23.019+03	
0ba669ac-83a0-8e3a-6827-925914dc8a8d	2021-05-24 10:37:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:37:42.877+03	2021-05-24 10:37:42.882+03	
31beec2a-2070-4001-22f6-48eb11fe616b	2021-05-24 10:38:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:38:02.877+03	2021-05-24 10:38:02.89+03	
a42cd120-10f5-71ba-7fd7-9d4fa8e5e0f3	2021-05-24 10:38:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:38:22.877+03	2021-05-24 10:38:22.883+03	
38bde628-b5a9-673c-644d-77bbfb608080	2021-05-24 10:38:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:38:42.877+03	2021-05-24 10:38:42.883+03	
483678b6-d049-3e62-3571-0c90aee47861	2021-05-24 10:39:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:39:02.877+03	2021-05-24 10:39:02.892+03	
cb028d21-638a-f369-a0f1-65f2017f0769	2021-05-24 10:39:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:39:22.877+03	2021-05-24 10:39:22.883+03	
73c458ff-ee6a-2926-db8a-58ac1e77f5cd	2021-05-24 10:39:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:39:43.877+03	2021-05-24 10:39:43.883+03	
116b5c82-d702-29a1-1578-9cb5c83c8039	2021-05-24 10:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 10:40:00.877+03	2021-05-24 10:40:00.902+03	ERROR
8ca1504e-2a24-c833-0ba3-a33b8eae036b	2021-05-24 10:40:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:40:13.877+03	2021-05-24 10:40:13.886+03	
0bee41ef-29d9-8e02-9127-f5384dcf877d	2021-05-24 10:40:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:40:33.877+03	2021-05-24 10:40:33.883+03	
8b9b1918-df79-dcbd-bedc-845d00965d78	2021-05-24 10:40:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:40:53.877+03	2021-05-24 10:40:53.884+03	
deccf677-c247-7eef-8403-6edf85110c83	2021-05-24 10:41:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:41:13.877+03	2021-05-24 10:41:13.883+03	
61aadf8c-40a3-299e-64fd-f5657a83b52b	2021-05-24 10:41:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:41:33.877+03	2021-05-24 10:41:33.884+03	
4f839135-b58b-e2c7-eccc-688113b4a584	2021-05-24 10:41:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:41:53.878+03	2021-05-24 10:41:53.89+03	
507075f4-8df5-eeb2-12f2-32b629f2e9bd	2021-05-24 10:42:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:42:14.877+03	2021-05-24 10:42:14.884+03	
8d7e3355-fe62-5704-8817-50f508b6c7bb	2021-05-24 10:42:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:42:34.877+03	2021-05-24 10:42:34.883+03	
82de9191-ae87-9c9a-0805-384c908cb680	2021-05-24 10:42:54.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:42:54.877+03	2021-05-24 10:42:54.884+03	
2632609f-80da-b045-9cdb-87e88b7625b8	2021-05-24 10:43:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:43:14.877+03	2021-05-24 10:43:14.885+03	
c2ac54a1-87f3-e6ee-9cc0-ff2ab73e7b9f	2021-05-24 10:43:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:43:34.877+03	2021-05-24 10:43:34.882+03	
3705ab83-efa2-37be-73ec-b262004c2707	2021-05-24 10:43:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:43:55.877+03	2021-05-24 10:43:55.883+03	
9eb3698e-ef7b-9076-844d-4b0e9e0f0c8b	2021-05-24 10:44:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:44:15.877+03	2021-05-24 10:44:15.885+03	
14e5ea64-be39-9d78-be29-e61db5670980	2021-05-24 10:44:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:44:35.877+03	2021-05-24 10:44:35.884+03	
65fef04f-702e-5921-6a1d-b86452aab526	2021-05-24 10:44:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:44:55.877+03	2021-05-24 10:44:55.886+03	
863df83e-ad1a-7f3e-a9d8-635d9fe65bb4	2021-05-24 10:45:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:45:15.877+03	2021-05-24 10:45:15.885+03	
0f3c0a76-834a-a5d4-1dab-2814a90e229b	2021-05-24 10:45:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:45:35.877+03	2021-05-24 10:45:35.891+03	
ec033106-76a1-5d3a-0d00-0f6fe9961aec	2021-05-24 10:45:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:45:55.877+03	2021-05-24 10:45:55.887+03	
d9803355-d013-2815-5bc8-ba7b57a0c84f	2021-05-24 10:46:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:46:16.877+03	2021-05-24 10:46:16.885+03	
1c3f0a19-9232-6d92-577c-6dfb3c2678ba	2021-05-24 10:46:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:46:36.877+03	2021-05-24 10:46:37.439+03	
d086137a-2694-cfb9-49fe-de37c36c1b65	2021-05-24 10:46:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:46:56.877+03	2021-05-24 10:46:56.888+03	
7ebe2c40-a8c1-44af-b8de-ec52e203b029	2021-05-24 10:47:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:47:16.877+03	2021-05-24 10:47:16.889+03	
6f3244b4-c74c-afd3-8102-a43b1c3d98c3	2021-05-24 10:47:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:47:36.877+03	2021-05-24 10:47:36.889+03	
6e8bd1c1-3991-69ed-d97a-8f74057892ed	2021-05-24 10:47:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:47:56.877+03	2021-05-24 10:47:56.903+03	
dcab8064-74de-2352-4519-2be6cd4c60ca	2021-05-24 10:48:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:48:16.877+03	2021-05-24 10:48:16.883+03	
0a36636c-8cff-0593-9d06-0015d7b8b239	2021-05-24 10:48:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:48:36.877+03	2021-05-24 10:48:36.886+03	
14a0c4c6-3dd2-8865-0a7e-2d23119fa3e3	2021-05-24 10:48:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:48:56.877+03	2021-05-24 10:48:56.885+03	
6317cea3-d71d-cff7-b6c1-fcc4a5f67d44	2021-05-24 10:49:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:49:16.877+03	2021-05-24 10:49:16.884+03	
a37e3ccf-b028-2a4b-dab5-5e0c77f3fe3c	2021-05-24 10:49:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:49:36.877+03	2021-05-24 10:49:36.883+03	
ba77a610-8cae-0769-ccaf-d625e686a49b	2021-05-24 10:49:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:49:56.877+03	2021-05-24 10:49:56.884+03	
5cb917ad-a615-848c-1f10-7aeb4ae2513f	2021-05-24 10:50:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:50:06.877+03	2021-05-24 10:50:06.884+03	
336b34bd-aa3b-7157-46cb-41a44f89a55f	2021-05-24 10:50:26.897	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:50:26.877+03	2021-05-24 10:50:26.903+03	
f29c7022-7752-dce5-7ee2-199ca3e531ef	2021-05-24 10:50:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:50:46.877+03	2021-05-24 10:50:46.884+03	
8c4aaf38-4a7b-0f2c-964d-2a51193e8105	2021-05-24 10:51:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:51:06.877+03	2021-05-24 10:51:07.193+03	
8668d4f0-b6f0-ec3c-e102-857a8c0ad858	2021-05-24 10:51:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:51:26.877+03	2021-05-24 10:51:26.885+03	
29f72ccd-0874-ef22-7906-e47a6af521ad	2021-05-24 10:51:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:51:46.877+03	2021-05-24 10:51:46.883+03	
607b566b-bc12-3683-6851-861859075c3e	2021-05-24 10:52:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:52:06.877+03	2021-05-24 10:52:06.886+03	
701f7592-b1a9-c61d-1cdd-dda2065d996f	2021-05-24 10:52:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:52:26.877+03	2021-05-24 10:52:26.884+03	
89841961-ef82-4644-b9ca-ea8aa9b78b00	2021-05-24 10:52:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:52:46.877+03	2021-05-24 10:52:46.882+03	
58e32900-a16f-1389-7a67-199e5a187978	2021-05-24 10:53:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:53:06.877+03	2021-05-24 10:53:06.886+03	
135a5d9f-d66f-0bac-41fc-928b633091df	2021-05-24 10:53:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:53:26.877+03	2021-05-24 10:53:26.885+03	
e8bbb452-285a-e456-2e24-f62f8614fe72	2021-05-24 10:53:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:53:46.877+03	2021-05-24 10:53:46.883+03	
b0f9224b-2a37-b0dd-a7c9-5624192f69ab	2021-05-24 10:54:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:54:06.877+03	2021-05-24 10:54:06.884+03	
ac4fc917-9b90-22bd-390c-b18001daa7c3	2021-05-24 10:54:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:54:26.877+03	2021-05-24 10:54:26.883+03	
3bb3ccb5-4cfd-b2b5-6643-61c32229ccb6	2021-05-24 10:54:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:54:46.877+03	2021-05-24 10:54:46.884+03	
d881bff3-2931-e621-2b0a-7ed26c9f7296	2021-05-24 10:55:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:55:06.877+03	2021-05-24 10:55:06.883+03	
7c74b136-6733-bb91-5208-94188a76a5ac	2021-05-24 10:55:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:55:26.877+03	2021-05-24 10:55:26.885+03	
aee2a65b-a50e-69dc-0450-8607d77842e1	2021-05-24 10:35:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:35:11.877+03	2021-05-24 10:35:11.884+03	
c8f4ce15-19dd-a740-b0fc-f474506b5788	2021-05-24 10:35:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:35:31.877+03	2021-05-24 10:35:31.882+03	
22c15186-67be-bbdb-b509-831c8e4533ae	2021-05-24 10:35:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:35:51.877+03	2021-05-24 10:35:51.885+03	
9e5708b9-8458-1611-e155-848d51179661	2021-05-24 10:36:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:36:11.877+03	2021-05-24 10:36:11.884+03	
5ad424f3-b143-952f-072a-b5353f83c607	2021-05-24 10:36:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:36:31.877+03	2021-05-24 10:36:31.884+03	
9ad4bd56-5272-5457-6f14-fec304dd2b16	2021-05-24 10:36:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:36:51.877+03	2021-05-24 10:36:51.882+03	
f3467305-600c-b6d3-6ca5-4b17eb24250d	2021-05-24 10:37:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:37:12.877+03	2021-05-24 10:37:12.883+03	
1ed4a162-3877-efe9-7a19-62f17003ad7a	2021-05-24 10:37:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:37:32.877+03	2021-05-24 10:37:32.885+03	
34806042-6c4f-4dcc-e4cf-3b6510c18783	2021-05-24 10:37:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:37:52.877+03	2021-05-24 10:37:52.883+03	
82a50b59-9252-0672-29b4-78c1cb84647e	2021-05-24 10:38:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:38:12.877+03	2021-05-24 10:38:12.884+03	
5c82ed5b-3992-2210-3597-40056b21da77	2021-05-24 10:38:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:38:32.877+03	2021-05-24 10:38:32.882+03	
0bbda50f-60a3-0ed3-b6e1-c6bea8d9c4a7	2021-05-24 10:38:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:38:52.877+03	2021-05-24 10:38:52.882+03	
6009ca79-4e18-9888-e703-4a4461c9036d	2021-05-24 10:39:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:39:12.877+03	2021-05-24 10:39:12.883+03	
e0230904-8f16-06e5-3dc5-9ebc30bf5631	2021-05-24 10:39:32.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:39:32.878+03	2021-05-24 10:39:32.883+03	
09be0df7-aa59-8873-cf8f-473c43e72c86	2021-05-24 10:39:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:39:53.877+03	2021-05-24 10:39:53.884+03	
b633952d-f77e-fec4-6af8-eb0d79a5062c	2021-05-24 10:40:03.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:40:03.877+03	2021-05-24 10:40:03.886+03	
e953af97-8383-7d2e-619b-41869cd2ae33	2021-05-24 10:40:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:40:23.877+03	2021-05-24 10:40:23.884+03	
dd653594-150f-bbeb-185c-e9b926495df1	2021-05-24 10:40:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:40:43.877+03	2021-05-24 10:40:44.102+03	
ceac8823-02de-4f9a-33d7-66342b88b040	2021-05-24 10:41:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:41:03.877+03	2021-05-24 10:41:03.883+03	
24a2d83d-dd1e-52b8-56a9-ddb35b0d614c	2021-05-24 10:41:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:41:23.877+03	2021-05-24 10:41:23.884+03	
328d8296-f9c7-0ac0-30c6-90fbbae48ab8	2021-05-24 10:41:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:41:43.878+03	2021-05-24 10:41:43.886+03	
212392ad-5427-ec83-b41b-2ecfa0562aef	2021-05-24 10:42:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:42:04.877+03	2021-05-24 10:42:04.886+03	
322a24c0-b2e8-722c-6087-d0fde6a14e2b	2021-05-24 10:42:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:42:24.877+03	2021-05-24 10:42:24.884+03	
5913843f-7c62-4c52-eb52-bc844040b5de	2021-05-24 10:42:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:42:44.877+03	2021-05-24 10:42:44.882+03	
65be2eca-a32d-765d-bbcd-d5745402f599	2021-05-24 10:43:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:43:04.877+03	2021-05-24 10:43:04.883+03	
f6a5989c-441a-2915-04b3-80d6b42f9402	2021-05-24 10:43:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:43:24.877+03	2021-05-24 10:43:24.883+03	
f3720a4e-616a-ecf8-6aac-98e65697f513	2021-05-24 10:43:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:43:45.877+03	2021-05-24 10:43:46.126+03	
ae9ecfe4-23da-3639-0e44-cb3ea041c718	2021-05-24 10:44:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:44:05.877+03	2021-05-24 10:44:05.884+03	
ed2a2963-131b-2afa-dc70-d37ec57e501a	2021-05-24 10:44:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:44:25.877+03	2021-05-24 10:44:25.883+03	
506ff668-9e87-329b-f93c-ee4010e7a0e7	2021-05-24 10:44:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:44:45.877+03	2021-05-24 10:44:45.883+03	
fc3123dc-54fe-069f-54ba-28c8c5b68505	2021-05-24 10:45:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:45:05.877+03	2021-05-24 10:45:05.883+03	
6d2b7d4e-58a6-c252-6292-1f1548a0d466	2021-05-24 10:45:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:45:25.877+03	2021-05-24 10:45:25.892+03	
ce2db077-cff0-5909-aba2-7c7e65e86cfb	2021-05-24 10:45:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:45:45.877+03	2021-05-24 10:45:45.886+03	
b3ae9431-0922-fa1a-7e93-dc65e2202c8f	2021-05-24 10:46:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:46:05.877+03	2021-05-24 10:46:05.884+03	
6e4dc693-de25-6b68-b848-5393d0ead7c5	2021-05-24 10:46:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:46:26.877+03	2021-05-24 10:46:26.896+03	
59f0d4b2-4470-6fb3-62ed-1038a3b891f8	2021-05-24 10:46:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:46:46.877+03	2021-05-24 10:46:46.886+03	
820d2f8c-0214-e2de-3bd4-124f08a89f90	2021-05-24 10:47:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:47:06.877+03	2021-05-24 10:47:06.885+03	
2dd39c30-e52a-75c3-dfec-16cb6aab40a7	2021-05-24 10:47:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:47:26.877+03	2021-05-24 10:47:26.891+03	
5da08294-dadb-0eed-205a-a4641c757278	2021-05-24 10:47:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:47:46.877+03	2021-05-24 10:47:46.883+03	
423e4073-0710-0582-74be-b62c44bfe638	2021-05-24 10:48:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:48:06.877+03	2021-05-24 10:48:06.884+03	
b72595ff-d3a2-392e-25cc-60c34a6f6509	2021-05-24 10:48:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:48:26.877+03	2021-05-24 10:48:26.883+03	
482d80e4-30a9-f56c-e1cb-a491574139bd	2021-05-24 10:48:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:48:46.877+03	2021-05-24 10:48:46.883+03	
8dae7057-0f1c-9166-8d7f-b090ad8e8848	2021-05-24 10:49:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:49:06.877+03	2021-05-24 10:49:06.885+03	
c0468582-a60b-07bc-22fe-d0534450843e	2021-05-24 10:49:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:49:26.877+03	2021-05-24 10:49:26.884+03	
e546fbb9-06b0-ce6a-d8d0-4b60b136ff56	2021-05-24 10:49:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:49:46.877+03	2021-05-24 10:49:46.883+03	
83fe5861-9cca-c0bd-7e15-4b76cf3cb57d	2021-05-24 10:50:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 10:50:00.877+03	2021-05-24 10:50:00.882+03	ERROR
115acdf7-132b-9179-e35a-3368b6e8e38c	2021-05-24 10:50:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:50:16.877+03	2021-05-24 10:50:16.883+03	
4e95b5b3-4487-7330-3219-89becf883899	2021-05-24 10:50:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:50:36.877+03	2021-05-24 10:50:36.883+03	
b22367e2-54b0-897c-7f0e-569a563e942d	2021-05-24 10:50:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:50:56.877+03	2021-05-24 10:50:56.883+03	
ac58ed57-5255-447c-35fe-3bfe3ec08db0	2021-05-24 10:51:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:51:16.877+03	2021-05-24 10:51:17.135+03	
d4fb288e-61bd-151b-6486-a35ed9e5dd55	2021-05-24 10:51:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:51:36.877+03	2021-05-24 10:51:36.883+03	
8bf382b3-9bfd-613b-6ff1-7b18b2e50d43	2021-05-24 10:51:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:51:56.877+03	2021-05-24 10:51:56.885+03	
bf57289a-e0d8-c194-51ee-b270795668d1	2021-05-24 10:52:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:52:16.877+03	2021-05-24 10:52:17.095+03	
4672ecc2-420f-a88a-1e16-f1529514d647	2021-05-24 10:52:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:52:36.877+03	2021-05-24 10:52:36.882+03	
7de6646a-aee0-3c52-0afc-b20bd61922d3	2021-05-24 10:52:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:52:56.877+03	2021-05-24 10:52:56.884+03	
ca7a071a-9b14-347c-567d-f5e750c65b3f	2021-05-24 10:53:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:53:16.877+03	2021-05-24 10:53:16.989+03	
d114f371-e6d6-d1c0-27e8-38af0eeb5afa	2021-05-24 10:53:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:53:36.877+03	2021-05-24 10:53:36.883+03	
ca5bc9cb-0c7a-192e-19d6-5b46e254b6ce	2021-05-24 10:53:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:53:56.877+03	2021-05-24 10:53:56.883+03	
d6e59eb9-f3be-5844-f124-caf4f2b5c655	2021-05-24 10:54:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:54:16.877+03	2021-05-24 10:54:16.883+03	
c10acda9-88e4-8035-5d24-8123aa1223b0	2021-05-24 10:54:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:54:36.877+03	2021-05-24 10:54:36.884+03	
4a1e1e3f-fc7f-0a94-3738-5b90833050ea	2021-05-24 10:54:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:54:56.877+03	2021-05-24 10:54:56.885+03	
940bfe71-c75a-0f67-c6a6-d85445cef077	2021-05-24 10:55:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:55:16.877+03	2021-05-24 10:55:16.883+03	
e1a52cf0-2eb3-f074-7a7e-761d0130357f	2021-05-24 10:55:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:55:36.877+03	2021-05-24 10:55:36.883+03	
f61cc8f2-eff5-c340-963f-1c54ec9ce171	2021-05-24 10:55:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:55:46.877+03	2021-05-24 10:55:46.885+03	
8f239e5f-a059-2ff2-9b3f-32ef950af220	2021-05-24 10:56:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:56:06.877+03	2021-05-24 10:56:06.882+03	
c7b2fbfa-afe9-7c04-06e4-d06676f84fff	2021-05-24 10:56:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:56:26.877+03	2021-05-24 10:56:26.883+03	
4c68d1ce-1c2b-7ee9-8773-e1b7843b2d20	2021-05-24 10:56:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:56:46.877+03	2021-05-24 10:56:47.13+03	
1ded7b51-54da-d56a-d9a0-26bc7f061f2a	2021-05-24 10:57:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:57:06.877+03	2021-05-24 10:57:06.883+03	
861ca392-8009-58f3-5652-b086b8e831df	2021-05-24 10:57:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:57:27.876+03	2021-05-24 10:57:27.883+03	
8b6cf18d-1564-34a6-98e1-ef44f4e880a8	2021-05-24 10:57:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:57:47.877+03	2021-05-24 10:57:47.883+03	
3bc83b36-fba0-da38-9d83-3d06990304fd	2021-05-24 10:58:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:58:07.877+03	2021-05-24 10:58:07.883+03	
1318837e-b2c8-933e-a170-62b81e8a1777	2021-05-24 10:58:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:58:28.877+03	2021-05-24 10:58:28.882+03	
14a047d5-1a3e-8597-69f6-681675fb18ac	2021-05-24 10:58:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:58:48.877+03	2021-05-24 10:58:48.883+03	
d944cb2a-abb9-00c5-cd82-b7f5347d1c1b	2021-05-24 10:59:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:59:08.877+03	2021-05-24 10:59:08.883+03	
8def4de7-ec95-01be-3b02-e02a247e44f0	2021-05-24 10:59:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:59:28.877+03	2021-05-24 10:59:29.198+03	
90bde1f9-7566-6f8f-6e9f-74f8eca77cfe	2021-05-24 10:59:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:59:48.877+03	2021-05-24 10:59:48.883+03	
55d4b6bd-f7c0-4a4f-33b8-d511040f32fa	2021-05-24 11:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 11:00:00.877+03	2021-05-24 11:00:00.882+03	ERROR
8a0baef9-dd00-b9f2-5638-20ad6ee730a9	2021-05-24 11:00:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:00:19.876+03	2021-05-24 11:00:19.882+03	
8cf46224-4253-ac1e-62eb-3eb40ba99c8d	2021-05-24 11:00:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:00:39.877+03	2021-05-24 11:00:39.882+03	
a92c9ba3-731f-06b2-5af2-6ee135eef657	2021-05-24 11:00:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:00:59.877+03	2021-05-24 11:01:00+03	
0087e37c-38e6-6167-86d7-fe9634238a45	2021-05-24 11:01:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:01:19.877+03	2021-05-24 11:01:19.937+03	
1aef4701-76ac-8a93-d83d-ee3b08ff7057	2021-05-24 11:01:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:01:50.877+03	2021-05-24 11:01:50.885+03	
29a9d2fa-9c7d-7002-6128-f79cf1113cae	2021-05-24 11:02:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:02:10.877+03	2021-05-24 11:02:10.883+03	
1e804ff0-c628-2c63-7e2e-16643819559a	2021-05-24 11:02:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:02:31.877+03	2021-05-24 11:02:31.884+03	
820c3a64-687e-5e74-ff13-191251e72693	2021-05-24 11:02:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:02:51.877+03	2021-05-24 11:02:51.882+03	
2e85db67-a061-af70-1c95-21e37f78fadf	2021-05-24 11:03:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:03:11.877+03	2021-05-24 11:03:11.882+03	
4f305c20-6601-2f20-42d4-8093f8b85c3b	2021-05-24 11:03:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:03:31.877+03	2021-05-24 11:03:31.883+03	
c7a2a9b7-2395-b5b9-219e-edbcfcf3d856	2021-05-24 11:03:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:03:51.877+03	2021-05-24 11:03:51.884+03	
a2693fd9-71e6-4347-96ff-b8bbd871d11e	2021-05-24 11:04:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:04:11.877+03	2021-05-24 11:04:11.884+03	
4cc8f6da-7822-d86e-e185-309843c54795	2021-05-24 11:04:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:04:31.877+03	2021-05-24 11:04:31.883+03	
ab5ba281-fc1f-16fc-1751-5083550d4927	2021-05-24 11:04:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:04:51.877+03	2021-05-24 11:04:51.882+03	
3c825250-9123-dad5-9ea0-f785ea30212a	2021-05-24 11:05:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:05:11.877+03	2021-05-24 11:05:11.885+03	
7a7af004-05df-a580-1d2b-d3406ce939d5	2021-05-24 11:05:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:05:31.877+03	2021-05-24 11:05:31.882+03	
72b5ab43-975d-5a44-09bd-5a15d178246f	2021-05-24 11:05:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:05:51.877+03	2021-05-24 11:05:51.883+03	
3f86cbc6-8b14-9dd7-742a-ac01856646ac	2021-05-24 11:06:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:06:11.877+03	2021-05-24 11:06:11.882+03	
c95be35a-4ddf-7ba9-2210-794e1cf45563	2021-05-24 11:06:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:06:31.877+03	2021-05-24 11:06:31.883+03	
92d3d742-6f70-6268-c2ac-6f836af335ba	2021-05-24 11:06:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:06:51.877+03	2021-05-24 11:06:51.882+03	
1fadbf2e-2bf6-3d42-cd81-becce23c4bd0	2021-05-24 11:07:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:07:11.877+03	2021-05-24 11:07:11.885+03	
1c31a359-69dc-1cc1-0fdc-410e537fb37c	2021-05-24 11:07:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:07:31.877+03	2021-05-24 11:07:31.883+03	
c33b47e8-4b2c-1316-e44c-3178fed48230	2021-05-24 11:07:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:07:51.877+03	2021-05-24 11:07:51.883+03	
be4d3e69-a592-bb48-7b1f-fc01c4262ea8	2021-05-24 11:08:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:08:11.877+03	2021-05-24 11:08:11.883+03	
0c1e8e87-89ea-cee5-9601-6491fb66814b	2021-05-24 11:08:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:08:31.877+03	2021-05-24 11:08:31.882+03	
ebed6ac6-924c-891b-bf27-63079cb111e1	2021-05-24 11:08:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:08:52.877+03	2021-05-24 11:08:52.884+03	
b1aa1cd7-1f91-a5d9-edbd-e54770a6807f	2021-05-24 11:09:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:09:12.877+03	2021-05-24 11:09:12.883+03	
976129ed-3701-f6fd-985c-20d876a43e76	2021-05-24 11:09:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:09:32.877+03	2021-05-24 11:09:32.885+03	
f285eb1c-a260-2512-3dfe-6898cfe28877	2021-05-24 11:09:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:09:52.877+03	2021-05-24 11:09:52.884+03	
7b4e388e-26ef-8448-6fce-2d6fd6e5a246	2021-05-24 11:10:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:10:02.878+03	2021-05-24 11:10:02.886+03	
5a2e3b98-bf50-9877-bcd9-c31a37b5a13a	2021-05-24 11:10:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:10:23.877+03	2021-05-24 11:10:24.011+03	
2d71bdcf-8fcf-b17d-18b9-d5b38ef2ea9a	2021-05-24 11:10:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:10:43.877+03	2021-05-24 11:10:43.885+03	
a36bb4d6-fb4e-b9fb-1c28-0ff8c28e90f4	2021-05-24 11:11:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:11:03.877+03	2021-05-24 11:11:03.884+03	
5a6e62b5-84ac-2f38-4a13-bdb58e1d591a	2021-05-24 11:11:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:11:23.877+03	2021-05-24 11:11:23.883+03	
4603304a-f739-fd2d-2593-2088822c3239	2021-05-24 11:11:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:11:44.877+03	2021-05-24 11:11:44.884+03	
8cf2d334-ce76-d139-fdb9-969473409596	2021-05-24 11:12:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:12:05.877+03	2021-05-24 11:12:05.885+03	
80f53009-e6c8-7683-6beb-3510445db75f	2021-05-24 11:12:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:12:25.877+03	2021-05-24 11:12:25.883+03	
81594f40-e139-3a6a-84fd-7a0c64d3ee3f	2021-05-24 11:12:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:12:46.877+03	2021-05-24 11:12:46.885+03	
3eea534c-494b-b1d2-c452-498f62f5d8cf	2021-05-24 11:13:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:13:06.877+03	2021-05-24 11:13:07.221+03	
ca01ef47-7414-1ef8-a3ae-33f51796aa47	2021-05-24 11:13:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:13:26.877+03	2021-05-24 11:13:26.884+03	
cab3e591-2825-169b-affc-8601d1639ccb	2021-05-24 11:13:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:13:46.877+03	2021-05-24 11:13:46.882+03	
eeef5fd7-dec9-30e0-3042-2efda481acb4	2021-05-24 11:14:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:14:08.877+03	2021-05-24 11:14:08.884+03	
e2a1eaa1-330e-be62-a98b-46cbb05df580	2021-05-24 11:14:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:14:28.877+03	2021-05-24 11:14:28.883+03	
37d4ef1d-75fc-39db-c65d-9e75e9458585	2021-05-24 11:14:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:14:48.877+03	2021-05-24 11:14:48.883+03	
68a94052-9754-e731-91cc-92b49185e59f	2021-05-24 11:15:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:15:08.877+03	2021-05-24 11:15:08.882+03	
585dff27-7ac3-d9d3-00bf-250f3e4ce5cf	2021-05-24 11:15:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:15:28.877+03	2021-05-24 11:15:28.883+03	
7d929784-efbc-fcd4-5c96-8754897bef77	2021-05-24 11:15:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:15:48.877+03	2021-05-24 11:15:48.883+03	
f5096e24-484d-c9f8-2b9a-f9f0629770a8	2021-05-24 11:16:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:16:08.877+03	2021-05-24 11:16:08.882+03	
ac11fbc6-4009-e279-9d27-64bbded7089f	2021-05-24 11:16:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:16:28.877+03	2021-05-24 11:16:28.883+03	
94f0cbaa-8c05-3d31-0cee-ba79249c4d0e	2021-05-24 10:55:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:55:56.877+03	2021-05-24 10:55:56.885+03	
5f227a69-0ee5-6770-550f-e084238ecea3	2021-05-24 10:56:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:56:16.877+03	2021-05-24 10:56:16.882+03	
5c45065e-7500-085d-49bd-4224e5409ab0	2021-05-24 10:56:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:56:36.877+03	2021-05-24 10:56:36.882+03	
6836dbfe-3b6f-dd99-24b6-8f0f740eb706	2021-05-24 10:56:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:56:56.877+03	2021-05-24 10:56:56.883+03	
c8e79dd5-f5b3-cd04-3936-42fdce279a55	2021-05-24 10:57:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:57:16.877+03	2021-05-24 10:57:16.884+03	
eb29f3b6-4ec7-2a79-6435-ad17b098c187	2021-05-24 10:57:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:57:37.877+03	2021-05-24 10:57:37.883+03	
4b80fbc0-e860-f81e-a673-31a1a0ed4ee7	2021-05-24 10:57:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:57:57.877+03	2021-05-24 10:57:57.885+03	
7d4e8df7-c3c5-181e-1731-b15b106ee7f3	2021-05-24 10:58:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:58:17.877+03	2021-05-24 10:58:17.882+03	
be2e827a-8fd8-8457-0c2b-cc6a787eda40	2021-05-24 10:58:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:58:38.877+03	2021-05-24 10:58:38.884+03	
bfa58f67-d11e-0416-f85f-94513f4b3f7a	2021-05-24 10:58:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:58:58.877+03	2021-05-24 10:58:58.883+03	
9e73fe3e-3ecf-92b8-a662-d48cd79481b7	2021-05-24 10:59:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:59:18.877+03	2021-05-24 10:59:18.882+03	
6022dfbc-7712-079c-f1a1-257400060dbf	2021-05-24 10:59:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:59:38.877+03	2021-05-24 10:59:38.885+03	
1c2838df-a68c-ddf6-b491-ccd0acb6b250	2021-05-24 10:59:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 10:59:58.877+03	2021-05-24 10:59:58.883+03	
a10d8062-3f9b-34d6-100d-a43ea961ab97	2021-05-24 11:00:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:00:09.876+03	2021-05-24 11:00:09.882+03	
726e00ed-5317-3ca5-a162-f123b3f658ca	2021-05-24 11:00:29.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:00:29.877+03	2021-05-24 11:00:29.894+03	
e9ef3c99-7042-8cc8-d57d-f367a0760143	2021-05-24 11:00:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:00:49.877+03	2021-05-24 11:00:49.883+03	
0ca45309-e07d-9e74-8de9-c4b739a9139f	2021-05-24 11:01:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:01:09.877+03	2021-05-24 11:01:09.883+03	
22242749-bc5d-c41e-adfc-2310a85f79ff	2021-05-24 11:01:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:01:29.877+03	2021-05-24 11:01:29.883+03	
17c9b311-183d-ad69-f418-549b1bc23ce1	2021-05-24 11:01:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:01:39.877+03	2021-05-24 11:01:39.882+03	
2fc4e34c-4754-6d42-8a7b-8006c6c5b81d	2021-05-24 11:02:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:02:00.877+03	2021-05-24 11:02:00.882+03	
0296a723-fd8c-e0d4-e890-f0d89734eecd	2021-05-24 11:02:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:02:21.877+03	2021-05-24 11:02:21.883+03	
30126720-c456-72e3-b917-e500773f1b71	2021-05-24 11:02:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:02:41.877+03	2021-05-24 11:02:41.884+03	
be01289d-06a8-74ac-dd28-ee0504515369	2021-05-24 11:03:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:03:01.877+03	2021-05-24 11:03:01.884+03	
92e88ab1-6612-9537-0077-ba827c8b4952	2021-05-24 11:03:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:03:21.877+03	2021-05-24 11:03:21.889+03	
a0f5e817-9b63-384a-7e14-949ac876650e	2021-05-24 11:03:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:03:41.877+03	2021-05-24 11:03:41.883+03	
cda42c68-9127-380c-b965-9bb31df0420b	2021-05-24 11:04:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:04:01.877+03	2021-05-24 11:04:01.884+03	
3e9d401f-0762-59c0-1469-43a1d4137f09	2021-05-24 11:04:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:04:21.877+03	2021-05-24 11:04:21.883+03	
5b4e2d94-224f-8ff5-6324-b848c7d6c6e5	2021-05-24 11:04:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:04:41.877+03	2021-05-24 11:04:41.883+03	
1c20ea42-b36c-fd89-474c-d080e3b42c6e	2021-05-24 11:05:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:05:01.877+03	2021-05-24 11:05:01.93+03	
440a78fc-050f-03bb-b1e5-3245721b3389	2021-05-24 11:05:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:05:21.877+03	2021-05-24 11:05:21.883+03	
17450bfb-a956-0c30-c180-3c51d929bd31	2021-05-24 11:05:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:05:41.877+03	2021-05-24 11:05:41.883+03	
322ab0df-81d0-e3d6-497b-138c47e126c5	2021-05-24 11:06:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:06:01.877+03	2021-05-24 11:06:01.882+03	
a111b85c-bfb3-b862-8b4c-c76801bd3a1e	2021-05-24 11:06:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:06:21.877+03	2021-05-24 11:06:21.884+03	
b3fff318-6322-3ce0-3954-f4eacbc9bccd	2021-05-24 11:06:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:06:41.877+03	2021-05-24 11:06:41.884+03	
706ada5a-9092-9435-82f2-a50d86bf3fa0	2021-05-24 11:07:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:07:01.877+03	2021-05-24 11:07:01.883+03	
eadf24d5-5e3b-38fb-c8c7-4e00490f95ed	2021-05-24 11:07:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:07:21.877+03	2021-05-24 11:07:21.882+03	
360dfeb1-7760-94f4-606f-82caf8d7552e	2021-05-24 11:07:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:07:41.877+03	2021-05-24 11:07:41.884+03	
a933b2ce-0919-46fe-0c17-6c27c59c9e21	2021-05-24 11:08:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:08:01.877+03	2021-05-24 11:08:01.883+03	
be1a30c3-ee96-1db1-4205-6cece7700b2e	2021-05-24 11:08:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:08:21.877+03	2021-05-24 11:08:21.882+03	
60340d85-4b86-dbff-0ecd-d2e3019a845a	2021-05-24 11:08:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:08:41.878+03	2021-05-24 11:08:41.884+03	
9fac1dd1-9807-e600-81f0-2f8e4298997e	2021-05-24 11:09:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:09:02.877+03	2021-05-24 11:09:02.883+03	
86e86ddc-6796-769c-6202-26341759462c	2021-05-24 11:09:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:09:22.877+03	2021-05-24 11:09:22.885+03	
c2f39733-4ba2-53bb-e3dd-76d1773e0441	2021-05-24 11:09:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:09:42.877+03	2021-05-24 11:09:42.884+03	
e1020e76-f396-0ed0-7440-ba05fa6bf417	2021-05-24 11:10:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 11:10:00.877+03	2021-05-24 11:10:00.883+03	ERROR
6a1b8d9b-4d21-d812-71e1-fcbaf839d56e	2021-05-24 11:10:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:10:13.877+03	2021-05-24 11:10:13.891+03	
0e45bc41-e389-847c-4afa-bfd63bc5c973	2021-05-24 11:10:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:10:33.877+03	2021-05-24 11:10:33.888+03	
99f11c83-1475-a56f-75be-0e76dc47b874	2021-05-24 11:10:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:10:53.877+03	2021-05-24 11:10:53.883+03	
aff401ad-06f0-025f-6576-f4c6647f0f35	2021-05-24 11:11:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:11:13.877+03	2021-05-24 11:11:13.883+03	
7cd22fd8-65c8-915d-f479-8e1669d841b0	2021-05-24 11:11:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:11:33.878+03	2021-05-24 11:11:33.908+03	
21f5f09e-3717-4a99-a61f-d38f8fc0d092	2021-05-24 11:11:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:11:54.877+03	2021-05-24 11:11:54.884+03	
ca3ce7b5-9711-8643-1d73-1ba0b869997b	2021-05-24 11:12:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:12:15.877+03	2021-05-24 11:12:15.883+03	
db916bb1-bb6c-4766-f638-8f5db2710dca	2021-05-24 11:12:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:12:35.877+03	2021-05-24 11:12:35.883+03	
33bf17b9-a303-246c-0301-ba8a01b52fd3	2021-05-24 11:12:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:12:56.877+03	2021-05-24 11:12:56.882+03	
7f65e510-5711-9867-dbaf-4fecd2a3803c	2021-05-24 11:13:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:13:16.877+03	2021-05-24 11:13:16.883+03	
3f005e8a-723b-aba6-6860-270cb7565f8b	2021-05-24 11:13:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:13:36.877+03	2021-05-24 11:13:36.891+03	
c2c33937-6a6f-0b7b-cc53-9881eec2e89a	2021-05-24 11:13:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:13:57.877+03	2021-05-24 11:13:57.883+03	
1ffde0d2-15a9-eaf0-a3fa-ee63cf4547d3	2021-05-24 11:14:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:14:18.877+03	2021-05-24 11:14:18.886+03	
0bc51c43-cd06-19bf-0900-0a996cfad627	2021-05-24 11:14:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:14:38.877+03	2021-05-24 11:14:38.936+03	
7d7b6866-18bd-0f66-2b18-668a2267bc6e	2021-05-24 11:14:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:14:58.877+03	2021-05-24 11:14:58.882+03	
375ac41c-6c8e-fa7e-63c1-7408572f4eb2	2021-05-24 11:15:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:15:18.877+03	2021-05-24 11:15:18.883+03	
1ba0d42d-2987-139c-094e-0ddabd8376bc	2021-05-24 11:15:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:15:38.877+03	2021-05-24 11:15:38.883+03	
678b7071-47a9-2652-46c5-8816c3780747	2021-05-24 11:15:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:15:58.877+03	2021-05-24 11:15:58.883+03	
670198b4-9d0d-fe57-3dad-6a811a1b05fe	2021-05-24 11:16:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:16:18.877+03	2021-05-24 11:16:18.893+03	
15ac4d80-a4f6-b4f5-0fde-3000dbc59738	2021-05-24 11:16:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:16:38.877+03	2021-05-24 11:16:38.886+03	
60c32a82-3350-b8a6-76fd-1b72b4e87335	2021-05-24 11:16:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:16:59.877+03	2021-05-24 11:16:59.883+03	
8b8b4860-38f1-dd97-3397-40d7105b0723	2021-05-24 11:17:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:17:19.877+03	2021-05-24 11:17:19.884+03	
073c9d15-7413-17a3-78c9-1218082134c9	2021-05-24 11:17:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:17:40.877+03	2021-05-24 11:17:40.896+03	
5c75a7fe-b365-bdeb-9985-5b19bc08df6d	2021-05-24 11:18:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:18:00.877+03	2021-05-24 11:18:00.883+03	
0d7d3cce-b0d3-ddbe-172c-77d80e71014f	2021-05-24 11:18:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:18:21.877+03	2021-05-24 11:18:21.882+03	
0beb0a4c-ab5d-b92d-3b8b-260617907457	2021-05-24 11:18:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:18:41.877+03	2021-05-24 11:18:41.883+03	
59b06d6d-2a57-7630-1ea1-b4f2f185cea0	2021-05-24 11:19:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:19:01.877+03	2021-05-24 11:19:01.882+03	
eeda01e8-c76c-fea7-4e32-11218550f058	2021-05-24 11:19:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:19:21.877+03	2021-05-24 11:19:21.883+03	
c2fee4e5-653d-f110-84b6-d7549f940c32	2021-05-24 11:19:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:19:41.877+03	2021-05-24 11:19:41.883+03	
b35b914b-b29c-6196-c96b-b09a8087dea0	2021-05-24 11:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 11:20:00.877+03	2021-05-24 11:20:00.883+03	ERROR
f98c7113-c834-57b5-9a2d-c9e5f41f5592	2021-05-24 11:20:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:20:11.877+03	2021-05-24 11:20:11.885+03	
7ddfb9af-11f3-4167-0516-f04a010b9584	2021-05-24 11:20:31.892	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:20:31.891+03	2021-05-24 11:20:31.897+03	
5f5db19f-db53-82a5-14fc-07ddce733135	2021-05-24 11:20:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:20:52.877+03	2021-05-24 11:20:52.883+03	
0e828ba9-2b84-2305-777d-c311cabb8e8f	2021-05-24 11:21:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:21:12.877+03	2021-05-24 11:21:12.883+03	
5b720475-cd62-c318-4303-2970d8ff7764	2021-05-24 11:21:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:21:33.877+03	2021-05-24 11:21:33.937+03	
57038dd3-6fe7-968a-ec2a-8ac81df48648	2021-05-24 11:21:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:21:53.877+03	2021-05-24 11:21:53.883+03	
55959423-399a-86a3-e591-bad3841fcdf5	2021-05-24 11:22:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:22:03.877+03	2021-05-24 11:22:04.982+03	
337c0479-c8d3-02a2-e953-a82357e4ae46	2021-05-24 11:22:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:22:13.877+03	2021-05-24 11:22:13.885+03	
d06e6d3b-9f62-b967-f0d3-5eaf4bef0448	2021-05-24 11:22:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:22:33.877+03	2021-05-24 11:22:33.883+03	
0a7b78a5-25ad-88d2-ff2a-b52f8af0b666	2021-05-24 11:22:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:22:53.877+03	2021-05-24 11:22:53.883+03	
c7a4fd2f-1f68-2833-639c-50aa1c0d0688	2021-05-24 11:23:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:23:13.877+03	2021-05-24 11:23:13.883+03	
ea51c9a8-11ab-5729-de13-d1b12817324a	2021-05-24 11:23:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:23:33.877+03	2021-05-24 11:23:33.885+03	
59a1f20c-f379-fa3a-39f2-18f0ac92e947	2021-05-24 11:23:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:23:53.877+03	2021-05-24 11:23:53.884+03	
b09df252-3587-255f-7485-213605210719	2021-05-24 11:24:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:24:13.877+03	2021-05-24 11:24:13.891+03	
ebc3c751-ce9f-3401-a2c3-f3d5a65dd155	2021-05-24 11:24:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:24:33.877+03	2021-05-24 11:24:33.884+03	
bcbcb927-31fb-5a6b-e147-6ff304eabd74	2021-05-24 11:24:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:24:53.877+03	2021-05-24 11:24:53.885+03	
8559bc7b-2f4a-4042-35b9-7a40096897e4	2021-05-24 11:25:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:25:23.877+03	2021-05-24 11:25:23.884+03	
c71d8258-4353-1c30-1bee-9f38d71e0cca	2021-05-24 11:25:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:25:43.877+03	2021-05-24 11:25:43.883+03	
c2071949-2360-8d1c-5f6b-db99b7112359	2021-05-24 11:26:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:26:03.877+03	2021-05-24 11:26:03.883+03	
89af9638-b62b-7476-8a6f-3a5db9ca5333	2021-05-24 11:26:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:26:23.877+03	2021-05-24 11:26:23.884+03	
7df6cf39-56cc-ea4e-f66b-c0b2b6f91cbb	2021-05-24 11:26:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:26:43.877+03	2021-05-24 11:26:43.884+03	
15818532-f067-c31b-a221-a7f7bc459cea	2021-05-24 11:27:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:27:03.877+03	2021-05-24 11:27:03.883+03	
f85fd92b-6830-7c24-8ad4-f028c9ab26e1	2021-05-24 11:27:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:27:23.877+03	2021-05-24 11:27:23.883+03	
34d91985-796f-e516-04bc-fae661a23e4e	2021-05-24 11:27:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:27:43.877+03	2021-05-24 11:27:43.883+03	
a0ff9492-e888-2384-9ce9-9479ff172ae6	2021-05-24 11:28:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:28:03.877+03	2021-05-24 11:28:03.885+03	
378f3c0b-4758-8c60-9e4b-54127c748e07	2021-05-24 11:28:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:28:23.877+03	2021-05-24 11:28:23.883+03	
b83d1197-1fd9-e660-bf60-fa8bb05142bc	2021-05-24 11:28:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:28:43.877+03	2021-05-24 11:28:43.883+03	
f5bab7c1-1532-ccae-daf4-7b8b72754455	2021-05-24 11:29:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:29:03.877+03	2021-05-24 11:29:03.883+03	
bfebe616-2c3c-e3fa-1bde-81dce982d63c	2021-05-24 11:29:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:29:23.877+03	2021-05-24 11:29:23.883+03	
addf6f77-5eee-8980-7dd9-6b774e843af7	2021-05-24 11:29:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:29:43.877+03	2021-05-24 11:29:43.883+03	
9b18f1dc-fbec-9c8b-4fa7-edcdb786ebfe	2021-05-24 11:29:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:29:53.877+03	2021-05-24 11:29:53.886+03	
f8a7a547-c193-e402-ba8f-b06b388917de	2021-05-24 11:30:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:30:03.877+03	2021-05-24 11:30:03.894+03	
78de601e-02a3-8ff9-b945-c73fc44f1766	2021-05-24 11:30:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:30:23.877+03	2021-05-24 11:30:23.883+03	
f72f06cb-ae07-2b8c-ad34-31dafb76e619	2021-05-24 11:30:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:30:43.877+03	2021-05-24 11:30:44.133+03	
04de0066-d763-cb93-4c37-95e26f8e4caf	2021-05-24 11:31:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:31:03.877+03	2021-05-24 11:31:03.883+03	
eb727d0c-b361-7f95-633b-d018ef1461a8	2021-05-24 11:31:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:31:23.877+03	2021-05-24 11:31:23.884+03	
358c37a2-7e1c-d943-0684-268bb735886e	2021-05-24 11:31:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:31:43.877+03	2021-05-24 11:31:43.883+03	
f483ba32-bbb5-95e2-903e-384c92b849a3	2021-05-24 11:32:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:32:03.877+03	2021-05-24 11:32:03.884+03	
74b372aa-66ef-b8a9-53e5-870acc87c871	2021-05-24 11:32:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:32:23.877+03	2021-05-24 11:32:24.199+03	
583f95c3-a57c-2259-5096-933236ba56b9	2021-05-24 11:32:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:32:43.877+03	2021-05-24 11:32:43.931+03	
2aa390f3-4f23-5396-8e55-d1582d5a60f0	2021-05-24 11:33:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:33:03.877+03	2021-05-24 11:33:03.885+03	
11fd032f-b805-5451-9844-70d6db2394e0	2021-05-24 11:33:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:33:23.877+03	2021-05-24 11:33:23.883+03	
67a4a254-20b8-28ec-3d52-bda39e67b5c4	2021-05-24 11:33:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:33:44.877+03	2021-05-24 11:33:44.888+03	
45f6b689-7ac1-db44-abe1-deec02b06273	2021-05-24 11:34:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:34:04.877+03	2021-05-24 11:34:04.884+03	
8c61e542-cb18-9c75-6c3a-196bddf2e182	2021-05-24 11:34:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:34:24.877+03	2021-05-24 11:34:24.888+03	
4679f0dd-57bb-5718-6dfb-32c6e6aefdca	2021-05-24 11:34:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:34:45.877+03	2021-05-24 11:34:45.885+03	
6db3f55f-3b0f-c1e1-5fcb-193c71dc8534	2021-05-24 11:35:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:35:05.877+03	2021-05-24 11:35:05.885+03	
65068d91-99c4-3a47-c2aa-bab758d972cd	2021-05-24 11:35:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:35:25.877+03	2021-05-24 11:35:25.886+03	
a03d3355-0bd6-d9ab-7caa-245eb3ff5230	2021-05-24 11:35:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:35:45.877+03	2021-05-24 11:35:45.883+03	
191a1b52-9d92-cca4-6ca1-1c9ccda88612	2021-05-24 11:36:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:36:05.877+03	2021-05-24 11:36:05.889+03	
59ac7e53-1526-ab6f-dcbf-5c048f3def37	2021-05-24 11:36:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:36:25.877+03	2021-05-24 11:36:25.884+03	
ac63a562-52d7-a801-69b2-40e4228a4fc3	2021-05-24 11:36:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:36:46.877+03	2021-05-24 11:36:46.884+03	
686faa50-aafe-26cb-3646-afcb2b565b54	2021-05-24 11:16:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:16:48.877+03	2021-05-24 11:16:48.882+03	
680d63d8-61a3-04e2-c88f-f67c78eae8d5	2021-05-24 11:17:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:17:09.877+03	2021-05-24 11:17:09.886+03	
a9ecb927-067c-2df3-e811-62f92dfa1c14	2021-05-24 11:17:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:17:30.877+03	2021-05-24 11:17:30.882+03	
d7e4387c-eb9f-66dc-8115-27eab981eedd	2021-05-24 11:17:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:17:50.877+03	2021-05-24 11:17:50.882+03	
c5815fdf-0252-c852-9450-1b7acacdbdad	2021-05-24 11:18:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:18:11.877+03	2021-05-24 11:18:11.883+03	
9af5ae3e-fe1b-0bf1-31df-46c46c74ec0f	2021-05-24 11:18:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:18:31.877+03	2021-05-24 11:18:31.882+03	
d7bbe309-2449-010b-d8cb-d7262e170f49	2021-05-24 11:18:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:18:51.877+03	2021-05-24 11:18:51.884+03	
ae99322f-0d95-4914-50de-cbe33cbe3efd	2021-05-24 11:19:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:19:11.877+03	2021-05-24 11:19:11.883+03	
27dbfdce-0ea0-4c73-935e-1a1d00c3005e	2021-05-24 11:19:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:19:31.877+03	2021-05-24 11:19:31.882+03	
3ed3edbb-6398-3061-00b8-503f024ac32c	2021-05-24 11:19:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:19:51.877+03	2021-05-24 11:19:51.886+03	
fa181d59-0789-f004-669d-53ff2134d381	2021-05-24 11:20:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:20:01.877+03	2021-05-24 11:20:01.926+03	
27f3f34b-96c8-e893-1a20-2128605b8e43	2021-05-24 11:20:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:20:21.877+03	2021-05-24 11:20:21.884+03	
b5d3ddcd-dff4-6467-7778-741bf29665d5	2021-05-24 11:20:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:20:42.877+03	2021-05-24 11:20:43.136+03	
8e4f96a3-134f-1078-fcad-e2d456ec5bc1	2021-05-24 11:21:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:21:02.877+03	2021-05-24 11:21:02.884+03	
c4acc639-11d1-e8ca-22ae-9f47f2f7bfd7	2021-05-24 11:21:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:21:22.878+03	2021-05-24 11:21:22.884+03	
75b353d6-8f07-d7fc-0493-ed7d44423458	2021-05-24 11:21:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:21:43.877+03	2021-05-24 11:21:43.884+03	
f8db6b58-35c0-adad-f6d5-0b84f4586cad	2021-05-24 11:22:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:22:23.877+03	2021-05-24 11:22:23.885+03	
8f53494a-834f-91ac-79a4-2216f79e9d21	2021-05-24 11:22:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:22:43.877+03	2021-05-24 11:22:43.885+03	
8783be55-2fee-7b7f-dd7c-6505f96ad7aa	2021-05-24 11:23:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:23:03.877+03	2021-05-24 11:23:03.883+03	
451d72f9-04ab-367c-3ff3-e063c058c55a	2021-05-24 11:23:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:23:23.877+03	2021-05-24 11:23:23.884+03	
fac1b190-6491-7afc-5528-c6bc24b3a768	2021-05-24 11:23:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:23:43.877+03	2021-05-24 11:23:43.882+03	
60686735-ebb6-c1e6-0606-140dcaa88920	2021-05-24 11:24:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:24:03.877+03	2021-05-24 11:24:03.884+03	
dd49ac37-82cb-fa1c-ed56-5a9a62db5026	2021-05-24 11:24:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:24:23.877+03	2021-05-24 11:24:23.883+03	
d68fe97a-f81b-567c-8587-fe1ef06db58a	2021-05-24 11:24:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:24:43.877+03	2021-05-24 11:24:43.883+03	
2119054d-3f37-733e-77bb-1200d88afcc8	2021-05-24 11:25:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:25:03.877+03	2021-05-24 11:25:03.887+03	
274f1a4e-8e4f-740a-ff85-f2168b62907a	2021-05-24 11:25:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:25:13.877+03	2021-05-24 11:25:13.906+03	
b451eaab-6afb-924b-c75b-c6cfbc597540	2021-05-24 11:25:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:25:33.877+03	2021-05-24 11:25:33.885+03	
72ead457-4ad9-8917-faaa-a1ca8504c5fc	2021-05-24 11:25:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:25:53.877+03	2021-05-24 11:25:53.885+03	
dfdb93cb-a6d3-2998-4ffc-3b4a9722a611	2021-05-24 11:26:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:26:13.877+03	2021-05-24 11:26:13.884+03	
65478f1d-6d7d-5c53-f9cf-b6fc25a1cd6e	2021-05-24 11:26:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:26:33.877+03	2021-05-24 11:26:33.89+03	
0fef0fa3-471b-65f8-0dfe-1242f0f10978	2021-05-24 11:26:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:26:53.877+03	2021-05-24 11:26:53.884+03	
3da27f6f-56c1-f643-ab27-b642bd45d175	2021-05-24 11:27:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:27:13.877+03	2021-05-24 11:27:13.883+03	
cacf722e-61f5-9d00-4256-7f0286026331	2021-05-24 11:27:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:27:33.877+03	2021-05-24 11:27:34.118+03	
66b46027-2a80-d453-4a5d-a590c73a97e6	2021-05-24 11:27:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:27:53.877+03	2021-05-24 11:27:53.884+03	
5f99cf0c-82ac-3317-8172-e39acf8b71ac	2021-05-24 11:28:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:28:13.877+03	2021-05-24 11:28:13.884+03	
8a9ed8d4-af9c-a8cf-1183-53944dbefcb8	2021-05-24 11:28:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:28:33.877+03	2021-05-24 11:28:33.882+03	
8737c9df-5413-f314-b470-80756086543f	2021-05-24 11:28:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:28:53.877+03	2021-05-24 11:28:53.884+03	
2900aac4-bfd1-43d4-c881-b7dbf245df49	2021-05-24 11:29:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:29:13.877+03	2021-05-24 11:29:13.882+03	
9cd5f046-b362-6740-b228-fb0e659023d6	2021-05-24 11:29:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:29:33.877+03	2021-05-24 11:29:33.883+03	
631a443a-9f47-6e1a-b525-5b7f4fa0e3d4	2021-05-24 11:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 11:30:00.877+03	2021-05-24 11:30:00.882+03	ERROR
2807b95e-7b22-6735-26a0-d31da91edf4c	2021-05-24 11:30:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:30:13.877+03	2021-05-24 11:30:13.883+03	
349bdf3e-27fd-66ed-5a5b-9ceae47f12bd	2021-05-24 11:30:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:30:33.877+03	2021-05-24 11:30:33.883+03	
953093cd-3c4e-f132-3612-d9689e2a45af	2021-05-24 11:30:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:30:53.877+03	2021-05-24 11:30:53.885+03	
6d1cd249-be20-439a-098f-e83a772b6000	2021-05-24 11:31:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:31:13.877+03	2021-05-24 11:31:13.883+03	
3b2e6363-fd93-bdca-166f-f05e3e158152	2021-05-24 11:31:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:31:33.877+03	2021-05-24 11:31:33.882+03	
b49eb5e3-a4a1-18f8-3441-7a6369cee4d3	2021-05-24 11:31:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:31:53.877+03	2021-05-24 11:31:53.883+03	
67d94c0d-257a-f9ca-1188-e572b43e98c2	2021-05-24 11:32:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:32:13.877+03	2021-05-24 11:32:14.19+03	
125039d5-7c6a-1350-8c98-13952915c8bf	2021-05-24 11:32:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:32:33.877+03	2021-05-24 11:32:33.883+03	
dc027e7b-a059-4ad4-b071-7066250bb120	2021-05-24 11:32:53.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:32:53.877+03	2021-05-24 11:32:53.885+03	
f820464b-bb73-3a43-3c0d-638085066aa9	2021-05-24 11:33:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:33:13.877+03	2021-05-24 11:33:13.883+03	
879769ee-4d43-455f-5a8d-686d7ffa3371	2021-05-24 11:33:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:33:33.877+03	2021-05-24 11:33:33.886+03	
c7676507-0bc4-4836-152f-bdd5808baa4c	2021-05-24 11:33:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:33:54.877+03	2021-05-24 11:33:54.888+03	
ca5250fa-11d1-8b67-128b-9ae4496e7da0	2021-05-24 11:34:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:34:14.877+03	2021-05-24 11:34:14.885+03	
5e5b924e-2a02-4a77-c6f8-a107ded94a67	2021-05-24 11:34:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:34:34.877+03	2021-05-24 11:34:34.883+03	
4fef22b4-b51b-1b91-ae37-4e37603869e4	2021-05-24 11:34:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:34:55.877+03	2021-05-24 11:34:56.199+03	
8f585db4-ae24-22d1-ce56-c0e0d7e73bec	2021-05-24 11:35:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:35:15.877+03	2021-05-24 11:35:15.883+03	
aaf02199-bb5f-b8e2-adae-c81e6ea959bc	2021-05-24 11:35:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:35:35.877+03	2021-05-24 11:35:35.885+03	
e59f7eef-ea9d-1767-1db5-f3384b05942f	2021-05-24 11:35:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:35:55.877+03	2021-05-24 11:35:55.883+03	
39cb9ab6-7d6b-b041-462d-76c72742a8ef	2021-05-24 11:36:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:36:15.877+03	2021-05-24 11:36:15.893+03	
2751f237-cb94-a470-2bcf-d4641c20af29	2021-05-24 11:36:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:36:35.877+03	2021-05-24 11:36:35.89+03	
eea78d92-e99a-62c3-26ba-f57d33436dfd	2021-05-24 11:36:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:36:56.877+03	2021-05-24 11:36:56.885+03	
85004cec-9c0a-66da-d65e-eddbe64b28f6	2021-05-24 11:37:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:37:16.877+03	2021-05-24 11:37:16.885+03	
54a0ace6-2603-a2b5-e866-79ccef4ea569	2021-05-24 11:37:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:37:36.877+03	2021-05-24 11:37:36.883+03	
11936cf4-3ce8-f7bd-32f0-7272515e5c40	2021-05-24 11:37:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:37:06.877+03	2021-05-24 11:37:06.884+03	
b3769251-ad2a-9f23-58ce-b50ccace2f06	2021-05-24 11:37:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:37:26.877+03	2021-05-24 11:37:26.883+03	
ae611ab9-63b2-3808-5638-94109d88caa2	2021-05-24 11:37:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:37:46.877+03	2021-05-24 11:37:46.883+03	
9dce3e55-94f7-7e9a-7fad-80ccdaedcf0b	2021-05-24 11:38:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:38:06.877+03	2021-05-24 11:38:06.882+03	
dc63e748-d6d7-9e12-9552-cd5c3d944394	2021-05-24 11:38:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:38:26.877+03	2021-05-24 11:38:26.883+03	
b83f93a5-c274-bd09-c115-f2b6ad22e980	2021-05-24 11:38:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:38:46.877+03	2021-05-24 11:38:46.882+03	
8a8d2be8-ad67-7095-3dda-e470191cc741	2021-05-24 11:39:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:39:06.877+03	2021-05-24 11:39:06.883+03	
0cba090d-e904-edea-62dc-7023c1259284	2021-05-24 11:39:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:39:26.877+03	2021-05-24 11:39:26.885+03	
28034972-d2d6-efb6-3bfb-ee29c7dc0f05	2021-05-24 11:39:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:39:46.877+03	2021-05-24 11:39:46.884+03	
6ff9cfcc-8432-e89b-72fb-1ce42ddd1be4	2021-05-24 11:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 11:40:00.877+03	2021-05-24 11:40:00.881+03	ERROR
484c057f-a093-a72b-f6b6-d49d64651a69	2021-05-24 11:40:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:40:16.877+03	2021-05-24 11:40:16.882+03	
3818b768-d968-0cf6-817d-93a33d1cbb18	2021-05-24 11:40:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:40:36.877+03	2021-05-24 11:40:36.885+03	
c1130f43-2b0c-a76e-010a-f9b844f0288e	2021-05-24 11:40:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:40:56.877+03	2021-05-24 11:40:56.886+03	
0c7dc7cf-6e20-714b-41f2-b0d32cf47e8f	2021-05-24 11:41:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:41:16.877+03	2021-05-24 11:41:16.883+03	
9b14790b-b380-0599-0e0f-09ac121d5b6a	2021-05-24 11:41:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:41:36.877+03	2021-05-24 11:41:36.883+03	
2095d3a6-5345-6450-6458-0bf0563e014c	2021-05-24 11:41:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:41:56.877+03	2021-05-24 11:41:56.885+03	
4fb1663e-542c-bd72-1152-0d5b6778e1ca	2021-05-24 11:42:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:42:17.877+03	2021-05-24 11:42:17.882+03	
f4fe3358-aeed-1f56-b1ac-58a82d3b0471	2021-05-24 11:42:37.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:42:37.877+03	2021-05-24 11:42:37.882+03	
51e998c5-3e18-b3e5-9243-5095e95506c3	2021-05-24 11:42:57.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:42:57.877+03	2021-05-24 11:42:57.886+03	
6d6800b5-af3c-8532-7068-e40b7db592ac	2021-05-24 11:43:17.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:43:17.877+03	2021-05-24 11:43:17.883+03	
d3063cc0-f808-bf70-f1b4-04d892dca038	2021-05-24 11:43:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:43:37.877+03	2021-05-24 11:43:37.886+03	
1be4f39f-d25b-bba8-8df9-518b34362640	2021-05-24 11:43:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:43:57.877+03	2021-05-24 11:43:57.886+03	
a76c4f8d-0ced-22f0-62bb-c0efe9e4da8e	2021-05-24 11:44:17.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:44:17.877+03	2021-05-24 11:44:17.883+03	
583983ff-71d2-e266-dc79-50956c957b0f	2021-05-24 11:44:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:44:37.877+03	2021-05-24 11:44:37.885+03	
67405e7c-2a73-4dd5-51c4-8f9878051b0e	2021-05-24 11:44:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:44:58.877+03	2021-05-24 11:44:58.883+03	
a61a1fda-af6d-cc6a-0391-c0cd842fa8c4	2021-05-24 11:45:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:45:19.876+03	2021-05-24 11:45:19.883+03	
238de4ca-09bd-33e4-8194-cb6b81e12b36	2021-05-24 11:45:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:45:39.877+03	2021-05-24 11:45:39.883+03	
6d1251b6-5bc0-f7b5-eae4-67adbb89efc9	2021-05-24 11:45:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:45:59.877+03	2021-05-24 11:45:59.884+03	
19a6c47b-a08e-da7d-ada7-b3de2cf81ac4	2021-05-24 11:46:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:46:19.877+03	2021-05-24 11:46:19.886+03	
d457dd94-c6e8-37bc-d6c9-3723421824ab	2021-05-24 11:46:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:46:39.877+03	2021-05-24 11:46:39.883+03	
43f62b27-4137-f82a-7670-6ad39da89901	2021-05-24 11:46:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:46:59.877+03	2021-05-24 11:47:00.334+03	
e9066ed4-da3c-475b-4a8e-d74cb0898520	2021-05-24 11:47:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:47:19.877+03	2021-05-24 11:47:19.893+03	
2b7fc0fb-df00-68e1-624a-b3493a9246e1	2021-05-24 11:47:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:47:39.877+03	2021-05-24 11:47:39.883+03	
280aec12-124d-25a5-df1c-fcbe347f9793	2021-05-24 11:48:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:48:00.877+03	2021-05-24 11:48:00.885+03	
28bf8178-c000-f7c2-532a-7ba081575133	2021-05-24 11:48:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:48:20.877+03	2021-05-24 11:48:20.883+03	
44bc8a58-b28d-7b20-4ad2-7ee19c648209	2021-05-24 11:48:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:48:40.877+03	2021-05-24 11:48:40.887+03	
3cb14776-48a0-8c5b-78fe-ff9bf7c262f4	2021-05-24 11:49:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:49:00.877+03	2021-05-24 11:49:00.886+03	
5d2eaff6-320f-e4d6-0787-b3ff6211a886	2021-05-24 11:49:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:49:20.877+03	2021-05-24 11:49:20.884+03	
3bcc2cb5-1402-1f89-5f59-6603d84373e9	2021-05-24 11:49:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:49:40.877+03	2021-05-24 11:49:40.882+03	
93ec3252-a076-2f5e-0522-5091f17866d4	2021-05-24 11:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 11:50:00.877+03	2021-05-24 11:50:00.881+03	ERROR
4eb26889-a38a-a02b-d16f-3efb4de6b450	2021-05-24 11:50:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:50:11.877+03	2021-05-24 11:50:11.884+03	
b43b02a8-d335-21ca-9d9c-dd1c162f21ce	2021-05-24 11:50:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:50:31.877+03	2021-05-24 11:50:31.882+03	
3ef64bbe-638c-dc38-2991-ea52e0a95050	2021-05-24 11:50:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:50:51.877+03	2021-05-24 11:50:51.883+03	
f5a1e9f2-e2f3-093e-9569-93557db492a1	2021-05-24 11:51:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:51:11.877+03	2021-05-24 11:51:12.117+03	
cf67651f-8b3c-b04b-e380-763c251b7a51	2021-05-24 11:51:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:51:31.877+03	2021-05-24 11:51:31.882+03	
f71c74f7-a85e-1e84-20ac-21742277d5d5	2021-05-24 11:51:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:51:51.877+03	2021-05-24 11:51:51.886+03	
33e145e8-94bf-ddec-a58b-4755bf39455f	2021-05-24 11:52:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:52:12.877+03	2021-05-24 11:52:12.883+03	
b3c0e126-8696-c339-55bc-d91c9bcaec48	2021-05-24 11:52:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:52:32.877+03	2021-05-24 11:52:32.885+03	
e571dcc6-1fb2-4586-cc96-e8de247d1e26	2021-05-24 11:52:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:52:52.877+03	2021-05-24 11:52:52.885+03	
4dec20b5-5b23-0ad2-01c2-2be3393361b0	2021-05-24 11:53:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:53:12.877+03	2021-05-24 11:53:12.883+03	
fbdd93e3-2853-be77-374c-a85c71f3d95f	2021-05-24 11:53:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:53:32.877+03	2021-05-24 11:53:32.884+03	
b0422f5d-d6b2-406f-1ff2-a00881ca71e8	2021-05-24 11:53:52.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:53:52.878+03	2021-05-24 11:53:52.884+03	
07842440-8eee-e89f-f1a5-7faccde31cd1	2021-05-24 11:54:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:54:13.877+03	2021-05-24 11:54:13.883+03	
9f999399-84d6-cd66-330c-5f865b2d44e4	2021-05-24 11:54:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:54:33.877+03	2021-05-24 11:54:33.884+03	
73850c37-fbe9-38d0-0972-3279982292de	2021-05-24 11:54:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:54:53.877+03	2021-05-24 11:54:53.884+03	
40576f94-eb5e-90c5-8288-b3008b39aa8e	2021-05-24 11:55:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:55:13.877+03	2021-05-24 11:55:13.885+03	
fd63cc5b-3478-144e-8809-cdc702ab2f28	2021-05-24 11:55:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:55:33.877+03	2021-05-24 11:55:33.885+03	
3a1664fb-954d-3539-6793-7157872253a7	2021-05-24 11:55:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:55:53.877+03	2021-05-24 11:55:54.177+03	
b471ad8a-7b48-c21b-c910-abe3d31b14ed	2021-05-24 11:56:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:56:13.877+03	2021-05-24 11:56:13.887+03	
3a7e2aa4-89cb-2740-6e15-244cb6428c1b	2021-05-24 11:56:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:56:33.877+03	2021-05-24 11:56:33.883+03	
c88274a1-e718-33e4-6470-f0a9c80ee16f	2021-05-24 11:56:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:56:53.877+03	2021-05-24 11:56:53.883+03	
cd20fdd3-abb0-bf76-0807-6b4263c06cc8	2021-05-24 11:57:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:57:14.877+03	2021-05-24 11:57:14.882+03	
8a709df9-b20d-7ee6-046c-ee94096a54ce	2021-05-24 11:57:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:57:34.877+03	2021-05-24 11:57:34.883+03	
d0594e81-35e8-618c-3e67-8f03aea7b84c	2021-05-24 11:37:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:37:56.877+03	2021-05-24 11:37:56.885+03	
d7dbede1-902e-c40a-8bb1-b5547e1d0f3f	2021-05-24 11:38:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:38:16.877+03	2021-05-24 11:38:16.883+03	
530a6965-b829-7b52-9453-ddb0cd5b4cd5	2021-05-24 11:38:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:38:36.877+03	2021-05-24 11:38:36.883+03	
cfcd5162-55c6-76f6-6fe8-1786e5cc8185	2021-05-24 11:38:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:38:56.877+03	2021-05-24 11:38:57.213+03	
fa7625ce-3156-7152-497d-c59f8730e38f	2021-05-24 11:39:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:39:16.877+03	2021-05-24 11:39:16.884+03	
e96dea34-0af7-6965-982d-3751164d1194	2021-05-24 11:39:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:39:36.877+03	2021-05-24 11:39:36.883+03	
1ac7b6c0-051a-89f4-2588-fd869b430b94	2021-05-24 11:39:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:39:56.877+03	2021-05-24 11:39:56.885+03	
41792943-ec1b-8964-30e5-e4f8fd68a45a	2021-05-24 11:40:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:40:06.877+03	2021-05-24 11:40:06.882+03	
dceea3eb-d238-158e-f505-993db0d5f1f8	2021-05-24 11:40:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:40:26.877+03	2021-05-24 11:40:26.885+03	
911828a5-f9a5-f909-d970-8bd2949132a4	2021-05-24 11:40:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:40:46.877+03	2021-05-24 11:40:46.885+03	
d25c8a34-55b9-5f30-d937-af68d43a9d28	2021-05-24 11:41:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:41:06.877+03	2021-05-24 11:41:06.883+03	
3ba808ce-f651-c192-d69d-8dd1c4d5619d	2021-05-24 11:41:26.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:41:26.877+03	2021-05-24 11:41:26.886+03	
5cd32610-c1cb-f379-4942-fcaa27a52ea2	2021-05-24 11:41:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:41:46.877+03	2021-05-24 11:41:46.884+03	
a5967dfc-ffdb-315d-11d6-5d172b4cc676	2021-05-24 11:42:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:42:07.876+03	2021-05-24 11:42:08.134+03	
0ef24105-5cca-279e-b86e-5731f1fd24e6	2021-05-24 11:42:27.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:42:27.877+03	2021-05-24 11:42:27.884+03	
9897575b-25bc-7276-d6d6-d6d4afcf8fd6	2021-05-24 11:42:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:42:47.877+03	2021-05-24 11:42:47.885+03	
3f5eef2b-13f7-c405-8709-0b2b4d280a12	2021-05-24 11:43:07.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:43:07.877+03	2021-05-24 11:43:07.885+03	
f18e36c6-bc15-a086-d00d-0c19579f3deb	2021-05-24 11:43:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:43:27.877+03	2021-05-24 11:43:27.883+03	
9d494d5e-5c6e-5140-46d5-627fc2a1bdec	2021-05-24 11:43:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:43:47.877+03	2021-05-24 11:43:48.124+03	
c12565d2-09e8-63a1-9c34-6bcfbb1def67	2021-05-24 11:44:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:44:07.877+03	2021-05-24 11:44:07.884+03	
588f2741-c2bc-6844-3699-ce21b3e9745d	2021-05-24 11:44:27.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:44:27.877+03	2021-05-24 11:44:27.886+03	
32e9bd03-1932-34e0-cb46-95312d836865	2021-05-24 11:44:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:44:48.877+03	2021-05-24 11:44:48.883+03	
c3121d89-16da-1278-cbfa-c95276a8a4af	2021-05-24 11:45:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:45:09.876+03	2021-05-24 11:45:09.882+03	
88e74877-c89f-1167-2374-1fcd7a3c7ca8	2021-05-24 11:45:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:45:29.877+03	2021-05-24 11:45:29.883+03	
f7186b00-72e0-3d66-1055-27031757b7a3	2021-05-24 11:45:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:45:49.877+03	2021-05-24 11:45:49.882+03	
08aaaebf-541a-967b-6fec-5b1b6c0f45c5	2021-05-24 11:46:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:46:09.877+03	2021-05-24 11:46:09.885+03	
5eb0660d-c767-3028-4ad9-36363522ec5f	2021-05-24 11:46:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:46:29.877+03	2021-05-24 11:46:29.883+03	
b6695bb2-0339-a3e7-4841-8c48bc34a65b	2021-05-24 11:46:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:46:49.877+03	2021-05-24 11:46:49.884+03	
aeb855b5-dbeb-eac5-7599-77aab84172ad	2021-05-24 11:47:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:47:09.877+03	2021-05-24 11:47:09.882+03	
de521243-ca44-6319-00b9-2482e67437e0	2021-05-24 11:47:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:47:29.877+03	2021-05-24 11:47:29.886+03	
15ec3ad2-bf66-c527-5a54-8a6527ff8c9c	2021-05-24 11:47:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:47:49.877+03	2021-05-24 11:47:49.883+03	
0df95b5a-9c44-77a5-04f5-47536a971d89	2021-05-24 11:48:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:48:10.877+03	2021-05-24 11:48:10.885+03	
05e6845d-b8bf-228f-83e1-1c1422f86006	2021-05-24 11:48:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:48:30.877+03	2021-05-24 11:48:30.883+03	
55cd0f07-fee0-516d-cc87-64b5d519985f	2021-05-24 11:48:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:48:50.877+03	2021-05-24 11:48:50.884+03	
17bef9e8-c633-63b5-8868-0af917aae248	2021-05-24 11:49:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:49:10.877+03	2021-05-24 11:49:10.882+03	
ef8b6387-e23b-1562-7a28-383503bc3f66	2021-05-24 11:49:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:49:30.877+03	2021-05-24 11:49:30.888+03	
9403e9ba-deda-ebe9-6608-46c7614d7d03	2021-05-24 11:49:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:49:51.876+03	2021-05-24 11:49:51.883+03	
91c191d6-e948-c151-1574-cd5ba273c2ca	2021-05-24 11:50:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:50:01.877+03	2021-05-24 11:50:01.883+03	
251e283b-6a37-db5d-e3dc-5a3ddac28687	2021-05-24 11:50:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:50:21.877+03	2021-05-24 11:50:21.883+03	
bac81f8b-95fe-cbac-49d1-e40f415e7ea4	2021-05-24 11:50:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:50:41.877+03	2021-05-24 11:50:41.883+03	
83722a79-5532-2bb7-fca9-c331922975af	2021-05-24 11:51:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:51:01.877+03	2021-05-24 11:51:01.883+03	
5d4e99d6-b0d8-c1ca-41cc-5ebc767bf6c6	2021-05-24 11:51:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:51:21.877+03	2021-05-24 11:51:21.883+03	
170a84ee-e64d-5a58-094c-cf107ee1c9b2	2021-05-24 11:51:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:51:41.877+03	2021-05-24 11:51:41.884+03	
32d082bd-49fa-f3e4-3f9c-c3eabf327ba7	2021-05-24 11:52:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:52:01.877+03	2021-05-24 11:52:01.884+03	
f9565088-38c6-9905-ab64-fada6a3fc623	2021-05-24 11:52:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:52:22.877+03	2021-05-24 11:52:23.207+03	
578b3e00-c9a1-9c48-3a0f-0398d4281581	2021-05-24 11:52:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:52:42.877+03	2021-05-24 11:52:42.883+03	
b556821d-c853-7fa3-9cba-9e82205ba91c	2021-05-24 11:53:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:53:02.877+03	2021-05-24 11:53:02.885+03	
e4dfea10-89ff-48f5-4124-8cddd3551e89	2021-05-24 11:53:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:53:22.877+03	2021-05-24 11:53:22.884+03	
7bc19094-31fe-13e8-598a-3b696aaa782d	2021-05-24 11:53:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:53:42.877+03	2021-05-24 11:53:42.894+03	
d2ee893a-8a22-7157-d557-f5b98127c50e	2021-05-24 11:54:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:54:03.877+03	2021-05-24 11:54:03.885+03	
8f6d98d5-7362-69eb-3cd4-57429e98b2db	2021-05-24 11:54:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:54:23.877+03	2021-05-24 11:54:23.886+03	
8c7b18de-1a33-397f-3cb7-d547fb96479d	2021-05-24 11:54:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:54:43.877+03	2021-05-24 11:54:43.891+03	
221e3be2-cf7f-78a1-f4b3-eaa263eb66ba	2021-05-24 11:55:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:55:03.877+03	2021-05-24 11:55:03.883+03	
b3092fbf-e5a6-f294-8111-9882dc0ba0f5	2021-05-24 11:55:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:55:23.877+03	2021-05-24 11:55:23.885+03	
231e9215-8dd3-98ff-4eb7-7d135ee808a1	2021-05-24 11:55:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:55:43.877+03	2021-05-24 11:55:43.885+03	
af52adf3-492c-8d46-1113-903d253c7f6f	2021-05-24 11:56:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:56:03.877+03	2021-05-24 11:56:03.883+03	
5f35cb33-3c95-edf6-dce6-f8d986616586	2021-05-24 11:56:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:56:23.877+03	2021-05-24 11:56:23.885+03	
2778cab7-ccb6-0f07-6d17-0c6a0b26d6f4	2021-05-24 11:56:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:56:43.877+03	2021-05-24 11:56:43.886+03	
1a0ec950-848f-3643-84ef-adc766e14448	2021-05-24 11:57:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:57:03.878+03	2021-05-24 11:57:03.884+03	
ec5c82dc-14b5-410e-64e5-670b86cf2aa1	2021-05-24 11:57:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:57:24.877+03	2021-05-24 11:57:24.885+03	
795bda6f-cbd3-c913-3304-e30cb11f0821	2021-05-24 11:57:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:57:44.877+03	2021-05-24 11:57:44.883+03	
08c981a6-0bb7-20c4-f0dc-6d46521a6d4c	2021-05-24 11:58:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:58:04.877+03	2021-05-24 11:58:04.892+03	
f368c143-71ce-c8ff-cc79-181040aaa39d	2021-05-24 11:58:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:58:24.877+03	2021-05-24 11:58:24.898+03	
936f2d7c-bd74-376f-9552-315b627d3a97	2021-05-24 11:57:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:57:54.877+03	2021-05-24 11:57:54.884+03	
1c8c96df-2e67-3485-875a-33e832bb6621	2021-05-24 11:58:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:58:14.877+03	2021-05-24 11:58:14.888+03	
c0608a14-59b4-f53e-85bf-7f1ef2229831	2021-05-24 11:58:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:58:35.877+03	2021-05-24 11:58:35.898+03	
2303572a-3710-ba10-a6c2-304fa4dbe8a7	2021-05-24 11:58:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:58:55.877+03	2021-05-24 11:58:55.894+03	
bfc0ddbd-70b2-7929-38c2-707c03db8aba	2021-05-24 11:59:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:59:15.877+03	2021-05-24 11:59:15.884+03	
1f76e3cc-06ec-8424-d9e6-f858ea241b9c	2021-05-24 11:59:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:59:35.877+03	2021-05-24 11:59:36.181+03	
5baa2484-5f76-c207-2823-0e0df8bbe5fb	2021-05-24 11:59:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:59:55.877+03	2021-05-24 11:59:55.883+03	
f505ed3c-b421-f41a-f17c-68a37d5e8b30	2021-05-24 12:00:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:00:05.877+03	2021-05-24 12:00:05.983+03	
067cbdb3-a5d0-ed72-8a86-5c6bf67e87dc	2021-05-24 12:00:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:00:25.877+03	2021-05-24 12:00:25.884+03	
c741a920-bbf7-6905-a62c-5b2a5a0952ca	2021-05-24 12:00:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:00:45.877+03	2021-05-24 12:00:45.883+03	
7c7f10eb-082d-585e-aba4-70d2c629b269	2021-05-24 12:01:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:01:05.877+03	2021-05-24 12:01:05.885+03	
c19765bf-b5b5-6fd7-b8ef-f553a5d52e4b	2021-05-24 12:01:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:01:25.877+03	2021-05-24 12:01:25.883+03	
d121dda8-9c13-a3df-68b9-5ba113090341	2021-05-24 12:01:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:01:45.877+03	2021-05-24 12:01:46.201+03	
fc89c784-73d1-712b-f750-d5ed36ec3110	2021-05-24 12:02:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:02:05.877+03	2021-05-24 12:02:05.883+03	
d7ab8a57-a9a1-ab9e-4ba9-b17aa14defd3	2021-05-24 12:02:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:02:25.877+03	2021-05-24 12:02:25.885+03	
0410e239-c8ad-beff-7c42-92e1aba2f837	2021-05-24 12:02:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:02:45.877+03	2021-05-24 12:02:45.884+03	
fbbd50b8-aebe-71fc-6bf0-e111121cfe70	2021-05-24 12:03:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:03:05.877+03	2021-05-24 12:03:05.885+03	
055d5ecd-4cb8-ec85-14ba-8132e7ce888f	2021-05-24 12:03:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:03:25.877+03	2021-05-24 12:03:25.883+03	
7caab1cc-00fb-5105-9138-6f51f6d1963f	2021-05-24 12:03:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:03:45.877+03	2021-05-24 12:03:45.886+03	
a48cb7d1-2be5-212c-d46d-8c74e54dc90b	2021-05-24 12:04:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:04:05.877+03	2021-05-24 12:04:05.883+03	
cc133cd7-ecfc-9d01-616e-e5f3545b2345	2021-05-24 12:04:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:04:25.877+03	2021-05-24 12:04:25.883+03	
c70cc9de-dce0-1e88-2c09-d8db1761739c	2021-05-24 12:04:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:04:45.877+03	2021-05-24 12:04:45.883+03	
3a5c847a-be5d-90b4-b595-2fff28e3270a	2021-05-24 12:05:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:05:05.877+03	2021-05-24 12:05:05.891+03	
d557cab6-743c-7982-45af-8808da8297ff	2021-05-24 12:05:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:05:25.877+03	2021-05-24 12:05:25.883+03	
dc3b708e-9e88-9aff-f7f5-0c73ad9b3f61	2021-05-24 12:05:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:05:45.877+03	2021-05-24 12:05:45.886+03	
039872b2-8642-2ac5-71fa-a47f3389cdd3	2021-05-24 12:06:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:06:05.877+03	2021-05-24 12:06:05.885+03	
a0acd568-dc4c-dd73-e743-7421cc99d638	2021-05-24 12:06:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:06:25.877+03	2021-05-24 12:06:25.885+03	
574f779c-2f73-4ed4-3d27-5d4fdbebf366	2021-05-24 12:06:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:06:45.877+03	2021-05-24 12:06:46.202+03	
6446f0f1-dc58-3166-bf1c-916ca501ec57	2021-05-24 12:07:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:07:05.877+03	2021-05-24 12:07:05.931+03	
027d9bfc-62a3-6be4-7688-e51f920d7baf	2021-05-24 12:07:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:07:25.877+03	2021-05-24 12:07:25.885+03	
748758b2-31fc-2f84-1cf7-aaccd284d85e	2021-05-24 12:07:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:07:45.877+03	2021-05-24 12:07:45.883+03	
c4ba504a-ad80-9ef2-acdc-32efa6283ab4	2021-05-24 12:08:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:08:05.877+03	2021-05-24 12:08:05.883+03	
5aa1e979-218c-582a-37b4-31f241fe9faf	2021-05-24 12:08:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:08:25.877+03	2021-05-24 12:08:25.885+03	
998293c9-3bf9-1159-6e68-be4e1c7c7127	2021-05-24 12:08:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:08:45.877+03	2021-05-24 12:08:45.892+03	
933e7bb8-bae2-1d73-2928-0f2a9e3abc70	2021-05-24 12:09:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:09:05.877+03	2021-05-24 12:09:05.887+03	
21833886-b551-86b6-6181-05342e5d1c7e	2021-05-24 12:09:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:09:25.877+03	2021-05-24 12:09:25.884+03	
ad812762-f51f-b032-d0ac-f955f23d30c7	2021-05-24 12:09:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:09:55.877+03	2021-05-24 12:09:55.883+03	
b0dbfef7-7369-9602-cc0c-24b934c60677	2021-05-24 12:10:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:10:05.877+03	2021-05-24 12:10:05.884+03	
25cd47ec-0e55-9a3b-cd38-886476d05624	2021-05-24 12:10:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:10:25.877+03	2021-05-24 12:10:25.885+03	
1db4c674-1bdd-ee82-6891-ab609775aad0	2021-05-24 12:10:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:10:45.877+03	2021-05-24 12:10:45.882+03	
dadf378a-380f-1afb-9af4-a5325adbe142	2021-05-24 12:11:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:11:05.877+03	2021-05-24 12:11:06.213+03	
5caedb54-adf6-2614-29e6-10004c700ceb	2021-05-24 12:11:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:11:25.877+03	2021-05-24 12:11:25.883+03	
782043c0-8a24-a98f-7f6f-5c663890d7f6	2021-05-24 12:11:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:11:45.877+03	2021-05-24 12:11:46.165+03	
37d454ed-148c-3c7f-3571-2322803728f4	2021-05-24 12:12:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:12:05.877+03	2021-05-24 12:12:05.884+03	
c51120e3-705d-9357-73b0-bcef889eabba	2021-05-24 12:12:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:12:25.877+03	2021-05-24 12:12:25.882+03	
d1127237-23c1-c463-75b1-52bab6eeea77	2021-05-24 12:12:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:12:45.877+03	2021-05-24 12:12:45.885+03	
3dd99baf-8df1-3247-aa9b-bd9f8abedd9b	2021-05-24 12:13:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:13:05.877+03	2021-05-24 12:13:05.885+03	
43fb254e-21fc-3244-5233-53a6b58ba87a	2021-05-24 12:13:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:13:25.877+03	2021-05-24 12:13:25.883+03	
90d9923f-8d52-0943-d997-b2530663d18a	2021-05-24 12:13:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:13:45.877+03	2021-05-24 12:13:45.883+03	
a160a9f4-5592-3733-cdb4-3dd4bd1c058b	2021-05-24 12:14:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:14:05.877+03	2021-05-24 12:14:06.127+03	
25646cd6-be0b-98d3-0b57-45e41e2d966e	2021-05-24 12:14:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:14:25.877+03	2021-05-24 12:14:25.883+03	
d59d83ac-9f37-460e-8304-b9c6b32978a0	2021-05-24 12:14:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:14:45.877+03	2021-05-24 12:14:45.884+03	
5631b3db-07d8-1bfc-c060-8f7b1a6b373d	2021-05-24 12:15:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:15:05.877+03	2021-05-24 12:15:05.885+03	
9e4b0793-67a6-2df2-89b9-7a22c501d1c3	2021-05-24 12:15:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:15:25.877+03	2021-05-24 12:15:25.885+03	
5356080c-12e1-76b2-a54b-c0efc7258fa0	2021-05-24 12:15:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:15:45.877+03	2021-05-24 12:15:45.883+03	
79e6b82e-cf07-c57a-b3c6-d9ced0f23ea0	2021-05-24 12:16:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:16:05.877+03	2021-05-24 12:16:05.885+03	
3dd00816-3104-3942-401f-e4245631167d	2021-05-24 12:16:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:16:26.877+03	2021-05-24 12:16:26.885+03	
737df2a9-27e4-4373-55a7-fee8366285eb	2021-05-24 12:16:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:16:46.877+03	2021-05-24 12:16:46.888+03	
3cf0a921-59ce-b890-1e26-ba181380552b	2021-05-24 12:17:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:17:06.877+03	2021-05-24 12:17:06.885+03	
53b16ec1-7ea4-0b6c-b439-0487996c9d00	2021-05-24 12:17:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:17:26.877+03	2021-05-24 12:17:26.883+03	
fc6adab7-2972-b1ea-e99d-6880a3966e6f	2021-05-24 12:17:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:17:46.877+03	2021-05-24 12:17:46.882+03	
6a4985cb-b4e6-959d-62b2-5bb39b54e3a4	2021-05-24 12:18:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:18:06.877+03	2021-05-24 12:18:06.883+03	
410df785-5045-1127-acb4-ccfa66f6277c	2021-05-24 12:18:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:18:26.877+03	2021-05-24 12:18:26.886+03	
f8a0ca64-ad9e-8b29-ad1c-6a151f4d5486	2021-05-24 11:58:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:58:45.877+03	2021-05-24 11:58:45.897+03	
402e203a-bd01-15bc-5c7d-c31181decc4a	2021-05-24 11:59:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:59:05.877+03	2021-05-24 11:59:05.894+03	
4a643268-0dd8-f6dc-0d5b-71c9babee8b1	2021-05-24 11:59:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:59:25.877+03	2021-05-24 11:59:25.882+03	
55bbb5e5-6c7b-a1e3-a208-14993caf1773	2021-05-24 11:59:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 11:59:45.877+03	2021-05-24 11:59:45.884+03	
9a3acfb2-6603-7b0d-e2be-d5a74dbaa7ca	2021-05-24 12:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 12:00:00.877+03	2021-05-24 12:00:00.882+03	ERROR
575b68a8-0f39-215a-5137-3e9df5fd6163	2021-05-24 12:00:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:00:15.877+03	2021-05-24 12:00:15.888+03	
376861ed-dd22-80b1-e8c2-453e4ecd1793	2021-05-24 12:00:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:00:35.877+03	2021-05-24 12:00:35.886+03	
5621aec5-900e-46d3-8a17-15b6f0c07138	2021-05-24 12:00:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:00:55.877+03	2021-05-24 12:00:55.882+03	
eaa132b2-4a08-3807-d7e7-041b027229e6	2021-05-24 12:01:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:01:15.877+03	2021-05-24 12:01:15.885+03	
3c9c8f80-c672-29c8-a11c-21182aac1fea	2021-05-24 12:01:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:01:35.877+03	2021-05-24 12:01:35.886+03	
ec58f95a-3997-f116-972b-7dbf31c3967a	2021-05-24 12:01:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:01:55.877+03	2021-05-24 12:01:56.12+03	
0185590c-d80b-4c27-de69-5ee12d2e90a6	2021-05-24 12:02:15.886	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:02:15.877+03	2021-05-24 12:02:15.891+03	
202dabc0-5f54-bd9f-e6e5-9636cc85b67a	2021-05-24 12:02:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:02:35.877+03	2021-05-24 12:02:35.883+03	
bd4e61a5-d355-4da8-fd8d-3e02cb8bc60b	2021-05-24 12:02:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:02:55.877+03	2021-05-24 12:02:55.884+03	
15961621-32a3-3190-8ac9-798b6037abee	2021-05-24 12:03:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:03:15.877+03	2021-05-24 12:03:15.892+03	
6df4170b-e59b-112a-84d4-3f82f05b7df6	2021-05-24 12:03:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:03:35.877+03	2021-05-24 12:03:35.883+03	
1d1214b0-43dc-d757-4f75-477c234fbdd1	2021-05-24 12:03:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:03:55.877+03	2021-05-24 12:03:55.884+03	
4d9a688c-498d-961d-aaa9-6ae6e10694de	2021-05-24 12:04:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:04:15.877+03	2021-05-24 12:04:15.884+03	
25f044e1-6ce9-3959-0f73-162dc922b31b	2021-05-24 12:04:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:04:35.877+03	2021-05-24 12:04:35.884+03	
f3960222-d930-2252-6eb9-855e948e1cf0	2021-05-24 12:04:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:04:55.877+03	2021-05-24 12:04:55.883+03	
430b5964-c7e4-5d2b-54a6-9fe70dee561a	2021-05-24 12:05:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:05:15.877+03	2021-05-24 12:05:15.882+03	
d3a5b4d6-0ff7-f98b-e080-b6fef7828760	2021-05-24 12:05:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:05:35.877+03	2021-05-24 12:05:35.882+03	
3310796e-c87b-ba55-224b-659e6f8419c9	2021-05-24 12:05:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:05:55.877+03	2021-05-24 12:05:55.885+03	
43a6c046-86c6-7a3b-3c79-5df3a1017f37	2021-05-24 12:06:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:06:15.877+03	2021-05-24 12:06:15.882+03	
997cc8a0-cacb-3b28-4355-1f951a264306	2021-05-24 12:06:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:06:35.877+03	2021-05-24 12:06:35.886+03	
82dc6145-821d-378c-66ad-9c98694b5b2a	2021-05-24 12:06:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:06:55.877+03	2021-05-24 12:06:55.886+03	
72c10aa3-a902-6672-45ec-801d09e7d3c2	2021-05-24 12:07:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:07:15.877+03	2021-05-24 12:07:15.883+03	
9d68fc67-1a50-65c8-47e6-8b7921990dd6	2021-05-24 12:07:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:07:35.877+03	2021-05-24 12:07:35.886+03	
e5045357-f4da-3eb6-120a-ad04d3a40968	2021-05-24 12:07:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:07:55.877+03	2021-05-24 12:07:55.883+03	
26ce08fd-0339-f1fd-4f48-d62938a770d2	2021-05-24 12:08:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:08:15.877+03	2021-05-24 12:08:15.885+03	
59900754-4b1e-398b-38ba-5c352532de74	2021-05-24 12:08:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:08:35.877+03	2021-05-24 12:08:35.884+03	
d7e18756-64b8-0d68-ad7e-18a32e1e09e5	2021-05-24 12:08:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:08:55.877+03	2021-05-24 12:08:55.884+03	
5324fa0c-ff11-fbe0-b414-0857d645d6c5	2021-05-24 12:09:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:09:15.877+03	2021-05-24 12:09:15.886+03	
87b637f1-f3fd-619e-fdb3-16aef85e2f3e	2021-05-24 12:09:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:09:35.877+03	2021-05-24 12:09:35.884+03	
75608ea9-f7a6-1803-16f6-5f9b5273709c	2021-05-24 12:09:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:09:45.877+03	2021-05-24 12:09:45.883+03	
87fe7759-4da7-68fd-d3c2-b896d1049a1d	2021-05-24 12:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 12:10:00.877+03	2021-05-24 12:10:00.882+03	ERROR
54f9ad05-b9cb-3655-bd7c-2fad0927a4c5	2021-05-24 12:10:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:10:15.877+03	2021-05-24 12:10:15.882+03	
f55aee0b-1802-44bb-f18b-29044a6ade77	2021-05-24 12:10:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:10:35.877+03	2021-05-24 12:10:35.893+03	
96c14ddc-31fc-b038-40ff-b97234a8a1cb	2021-05-24 12:10:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:10:55.877+03	2021-05-24 12:10:55.884+03	
985bda87-344f-3fe7-be75-659f8a28efbd	2021-05-24 12:11:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:11:15.877+03	2021-05-24 12:11:15.883+03	
d0acb899-d0c5-7f99-eeaf-12da82c11aaa	2021-05-24 12:11:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:11:35.877+03	2021-05-24 12:11:35.884+03	
59066b17-5143-3e7d-6dbe-76943955059f	2021-05-24 12:11:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:11:55.877+03	2021-05-24 12:11:55.886+03	
e550b0c9-4b01-0179-be5a-84510acd9af3	2021-05-24 12:12:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:12:15.877+03	2021-05-24 12:12:15.884+03	
ee3d6d08-bba6-1e6d-807f-b8ae9ffac726	2021-05-24 12:12:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:12:35.877+03	2021-05-24 12:12:35.883+03	
c6acd29e-b496-cce3-bb44-0ce97f48584a	2021-05-24 12:12:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:12:55.877+03	2021-05-24 12:12:55.883+03	
99586f46-3f4b-5b7b-6792-3f02e72e5812	2021-05-24 12:13:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:13:15.877+03	2021-05-24 12:13:15.885+03	
25b0f0ab-0d04-dfcd-4cb1-777678c6f1e9	2021-05-24 12:13:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:13:35.877+03	2021-05-24 12:13:35.883+03	
19b3d0f3-9eb9-b378-8e51-a02b58c53dc3	2021-05-24 12:13:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:13:55.877+03	2021-05-24 12:13:55.884+03	
6ce3aea2-0238-cd9b-a10c-b0d0c54514e4	2021-05-24 12:14:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:14:15.877+03	2021-05-24 12:14:15.884+03	
635cda7f-b73a-63f9-695b-0b316a101b6f	2021-05-24 12:14:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:14:35.877+03	2021-05-24 12:14:35.885+03	
56a446d3-f4bf-1dde-9cd3-5c7a00627a9f	2021-05-24 12:14:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:14:55.877+03	2021-05-24 12:14:55.883+03	
ce2e3b34-d6b6-59b3-1bd4-d17d260a3095	2021-05-24 12:15:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:15:15.877+03	2021-05-24 12:15:15.883+03	
09d0bbbd-33dd-19fd-e543-eb458e1ec2b3	2021-05-24 12:15:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:15:35.877+03	2021-05-24 12:15:35.885+03	
c85d77c2-381a-51c9-de95-ccb124b0165f	2021-05-24 12:15:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:15:55.877+03	2021-05-24 12:15:55.885+03	
6c501190-d00e-b29d-3cb8-f638b4908d43	2021-05-24 12:16:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:16:15.877+03	2021-05-24 12:16:15.886+03	
4c5213bb-4dbb-cb83-7203-8690e91b7a9e	2021-05-24 12:16:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:16:36.877+03	2021-05-24 12:16:36.884+03	
650c3152-52b9-8a60-e6a7-f9551ca676ff	2021-05-24 12:16:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:16:56.877+03	2021-05-24 12:16:56.882+03	
517ebcc9-13e2-fdcf-a8dc-5b916b4a8f09	2021-05-24 12:17:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:17:16.877+03	2021-05-24 12:17:16.883+03	
f2b7abf6-6244-c7f3-8daa-f07953e65ed9	2021-05-24 12:17:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:17:36.877+03	2021-05-24 12:17:36.886+03	
b8da1ac2-37a3-8ebb-5863-6f978003d0ee	2021-05-24 12:17:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:17:56.877+03	2021-05-24 12:17:56.885+03	
796e42ee-e665-8444-2b86-b4cc8a6ed75e	2021-05-24 12:18:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:18:16.877+03	2021-05-24 12:18:16.885+03	
0dbf6830-911c-c6db-fd54-e3599a3e9b49	2021-05-24 12:18:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:18:36.877+03	2021-05-24 12:18:36.885+03	
e29e27ed-cc0d-9b3f-7e83-f9cef18ff096	2021-05-24 12:18:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:18:56.877+03	2021-05-24 12:18:56.884+03	
22a2544e-8e66-194c-d773-08295f42a653	2021-05-24 12:18:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:18:46.877+03	2021-05-24 12:18:46.886+03	
8fdf8585-1a89-bfb9-9ac6-47149ccf0264	2021-05-24 12:19:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:19:06.877+03	2021-05-24 12:19:06.884+03	
f58506ef-557f-7c84-0c12-310ca16ced30	2021-05-24 12:19:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:19:26.877+03	2021-05-24 12:19:26.882+03	
d54062aa-4d07-6528-7a08-f71100651af8	2021-05-24 12:19:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:19:46.877+03	2021-05-24 12:19:46.884+03	
f3b8717a-8d26-9c84-0728-f97054ca52f6	2021-05-24 12:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 12:20:00.877+03	2021-05-24 12:20:00.883+03	ERROR
c941fdaa-07de-64f7-6a79-c64a49b00cf8	2021-05-24 12:20:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:20:16.877+03	2021-05-24 12:20:16.883+03	
238e1882-e877-f075-1c8a-b463e3332fa4	2021-05-24 12:20:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:20:36.877+03	2021-05-24 12:20:36.883+03	
1db33737-5912-7843-bc33-3886d52f5b26	2021-05-24 12:20:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:20:56.877+03	2021-05-24 12:20:56.886+03	
b1d8d830-2359-90e9-8f91-f45fc638b115	2021-05-24 12:21:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:21:16.877+03	2021-05-24 12:21:17.177+03	
82a916b2-f08a-56d6-6e8b-fa71d350503b	2021-05-24 12:21:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:21:36.877+03	2021-05-24 12:21:37.197+03	
38d24eb3-f8c6-b47e-e3c3-41ccbe1bd26c	2021-05-24 12:21:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:21:56.877+03	2021-05-24 12:21:56.896+03	
82664b98-733f-772b-ea2f-8fdd906585c3	2021-05-24 12:22:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:22:16.877+03	2021-05-24 12:22:16.883+03	
bc843e84-2cec-6a1b-d8ce-e90a0caeff6b	2021-05-24 12:22:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:22:36.877+03	2021-05-24 12:22:36.883+03	
9f5adb0a-d22d-35bc-18d3-49b55f22a5ea	2021-05-24 12:22:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:22:56.877+03	2021-05-24 12:22:56.885+03	
bdb21c7e-49ed-58f9-39aa-2da66f672e55	2021-05-24 12:23:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:23:17.876+03	2021-05-24 12:23:17.882+03	
01556911-02f3-16fa-7166-6bf75310212b	2021-05-24 12:23:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:23:37.877+03	2021-05-24 12:23:37.883+03	
d0db2ad3-cb7a-68ec-b277-7243dda521bc	2021-05-24 12:23:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:23:58.877+03	2021-05-24 12:23:59.199+03	
018c97ae-3183-5a3a-3829-8fd78a0eef7c	2021-05-24 12:24:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:24:19.877+03	2021-05-24 12:24:19.884+03	
18915f91-81f8-c776-977f-0425991221f8	2021-05-24 12:24:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:24:39.877+03	2021-05-24 12:24:39.884+03	
8a1c5489-547a-3bc6-967d-e2b44dad8eab	2021-05-24 12:24:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:24:59.877+03	2021-05-24 12:24:59.883+03	
3f28ea03-3b1e-9708-f021-6034c59e1a92	2021-05-24 12:25:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:25:19.877+03	2021-05-24 12:25:19.882+03	
6d5b3f9a-34ed-95ef-7db3-1d15b269ff20	2021-05-24 12:25:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:25:40.877+03	2021-05-24 12:25:40.883+03	
60437f92-f860-77d9-2361-5d18ebadf570	2021-05-24 12:26:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:26:00.877+03	2021-05-24 12:26:00.883+03	
474de033-b7dc-b340-8ae1-ca3ed5ee46cd	2021-05-24 12:26:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:26:20.877+03	2021-05-24 12:26:20.883+03	
e79b1d28-5f10-6adb-afea-e51519f2c43d	2021-05-24 12:26:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:26:40.877+03	2021-05-24 12:26:40.884+03	
c9ad7ae0-d97f-420b-96ed-3a2a3867f30c	2021-05-24 12:27:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:27:00.877+03	2021-05-24 12:27:00.887+03	
933c79b0-6c86-47fd-8dcd-32fc50fb74fe	2021-05-24 12:27:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:27:20.877+03	2021-05-24 12:27:20.882+03	
4a3aa30b-c438-fbc5-f03f-4ce94a42888d	2021-05-24 12:27:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:27:40.877+03	2021-05-24 12:27:40.882+03	
d4ff6bbc-647e-e244-99cb-e45518a27ca5	2021-05-24 12:28:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:28:00.877+03	2021-05-24 12:28:00.883+03	
d8b61d1f-ae5e-8f9c-cbb9-99146c6cab83	2021-05-24 12:28:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:28:20.877+03	2021-05-24 12:28:20.883+03	
fa04f2a7-1b01-c327-5dae-4f286396c30d	2021-05-24 12:28:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:28:40.877+03	2021-05-24 12:28:40.883+03	
09601fdc-466c-8ffc-d917-280c8a601405	2021-05-24 12:29:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:29:00.877+03	2021-05-24 12:29:00.897+03	
6c2b154d-6ff5-56ed-a363-a014f6ee65c9	2021-05-24 12:29:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:29:20.877+03	2021-05-24 12:29:20.884+03	
4fb7246d-199f-93ea-a890-36ee16c9dd2c	2021-05-24 12:29:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:29:40.877+03	2021-05-24 12:29:40.883+03	
ef2ca9ea-02bd-d587-2fe9-2538bb4a578e	2021-05-24 12:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 12:30:00.877+03	2021-05-24 12:30:00.885+03	ERROR
b061f0f7-18a9-ac96-4cb6-e0847788ef45	2021-05-24 12:30:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:30:20.877+03	2021-05-24 12:30:20.884+03	
959b30c9-6777-967c-729e-40b79b2fd446	2021-05-24 12:30:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:30:40.877+03	2021-05-24 12:30:40.883+03	
f9023b62-3d16-5282-7209-07432b89780d	2021-05-24 12:31:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:31:00.877+03	2021-05-24 12:31:00.883+03	
11e005c9-0aca-1fb1-24c8-2cbe3bbe0a16	2021-05-24 12:31:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:31:20.877+03	2021-05-24 12:31:20.883+03	
1ac0e7e6-78b3-4895-00f8-5d82d68fbff9	2021-05-24 12:31:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:31:40.877+03	2021-05-24 12:31:40.882+03	
16674025-076e-816c-269f-c95227e0be0d	2021-05-24 12:32:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:32:00.877+03	2021-05-24 12:32:01.208+03	
a8674059-7140-7c12-8100-3845872c773d	2021-05-24 12:32:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:32:20.878+03	2021-05-24 12:32:20.883+03	
e63e2af6-8d9a-473d-cc6e-7470bd3cabde	2021-05-24 12:32:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:32:41.877+03	2021-05-24 12:32:41.883+03	
191e6376-c8a2-544b-6086-5d7b12fc4a9d	2021-05-24 12:33:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:33:01.877+03	2021-05-24 12:33:01.884+03	
76c1e38d-7486-a815-009d-c098c83079dd	2021-05-24 12:33:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:33:21.877+03	2021-05-24 12:33:21.885+03	
e820d410-469e-fe1c-a0fa-9182ba70304f	2021-05-24 12:33:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:33:41.877+03	2021-05-24 12:33:41.885+03	
66e0643f-b88b-1390-ffed-df20b0c35372	2021-05-24 12:34:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:34:01.877+03	2021-05-24 12:34:01.891+03	
8a07ca3b-70c6-ae7e-4ba0-e7516ad7d61e	2021-05-24 12:34:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:34:21.877+03	2021-05-24 12:34:21.884+03	
5e1b489e-73de-5997-fd3d-aa5d08d49b31	2021-05-24 12:34:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:34:41.877+03	2021-05-24 12:34:41.883+03	
009399e6-8184-238c-d15f-6bd670a9e686	2021-05-24 12:35:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:35:01.877+03	2021-05-24 12:35:01.882+03	
af888ded-5d43-e464-6c9d-96468450999c	2021-05-24 12:35:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:35:21.877+03	2021-05-24 12:35:21.884+03	
cf55956d-306a-c7e5-e989-788deeb25f76	2021-05-24 12:35:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:35:41.877+03	2021-05-24 12:35:42.203+03	
3835b557-ae93-dcde-da2f-e434d5f92adb	2021-05-24 12:36:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:36:01.877+03	2021-05-24 12:36:01.883+03	
a214b72f-0d22-c0b0-1fa1-02131ad93627	2021-05-24 12:36:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:36:21.877+03	2021-05-24 12:36:21.883+03	
fc0fdc8e-0952-524c-025e-a03e8246da51	2021-05-24 12:36:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:36:41.877+03	2021-05-24 12:36:41.883+03	
0fa9e24c-06e6-5608-a8e5-95ba98450a58	2021-05-24 12:37:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:37:01.877+03	2021-05-24 12:37:01.885+03	
b7b7f122-3f49-e956-fa75-9d979a3a406a	2021-05-24 12:37:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:37:21.877+03	2021-05-24 12:37:21.883+03	
a1dbc0e9-69df-4365-5399-efe0a20069e9	2021-05-24 12:37:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:37:41.877+03	2021-05-24 12:37:41.883+03	
5395b5cb-4a42-ba86-9ff1-71ce15d4c8d3	2021-05-24 12:38:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:38:01.877+03	2021-05-24 12:38:01.884+03	
a56d90aa-f48c-41d7-77f8-ab3a36df2a2a	2021-05-24 12:38:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:38:21.877+03	2021-05-24 12:38:22.135+03	
d782421d-9ec8-58bc-0740-9245c19859e3	2021-05-24 12:38:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:38:41.877+03	2021-05-24 12:38:41.886+03	
f1fc697e-108d-35c4-2acc-1fbe93c809cf	2021-05-24 12:39:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:39:01.877+03	2021-05-24 12:39:01.933+03	
afa65082-4ba1-96e4-88af-572176f6a298	2021-05-24 12:39:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:39:21.877+03	2021-05-24 12:39:21.882+03	
a58f98b8-cb9c-44d8-08c5-da937f9d4606	2021-05-24 12:19:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:19:16.877+03	2021-05-24 12:19:16.883+03	
de166c5d-5c20-0dd1-2d9f-82cf23ffc612	2021-05-24 12:19:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:19:36.877+03	2021-05-24 12:19:36.884+03	
c1fb9db8-3f4d-5b28-4194-58448e4cbaae	2021-05-24 12:19:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:19:56.877+03	2021-05-24 12:19:56.885+03	
f56c8545-e34b-32c1-a1a4-ce5c9c8c8b2e	2021-05-24 12:20:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:20:06.877+03	2021-05-24 12:20:06.885+03	
66e5d8b2-a8dc-ac06-056d-22ce93e1c354	2021-05-24 12:20:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:20:26.877+03	2021-05-24 12:20:26.882+03	
bf9445e8-1677-3551-344e-80d5cc10c86a	2021-05-24 12:20:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:20:46.877+03	2021-05-24 12:20:46.882+03	
8c479582-d1e2-b959-5f5d-d30c6f3571d9	2021-05-24 12:21:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:21:06.877+03	2021-05-24 12:21:06.883+03	
8510b187-ad30-a303-10f9-e66f2f20ef0b	2021-05-24 12:21:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:21:26.877+03	2021-05-24 12:21:26.883+03	
91072ae7-a03d-544d-d9ab-28f46a9f994b	2021-05-24 12:21:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:21:46.877+03	2021-05-24 12:21:46.885+03	
84e33fb8-9e46-51c8-19d8-f97d01e62c1c	2021-05-24 12:22:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:22:06.877+03	2021-05-24 12:22:06.885+03	
f402b76b-7d25-c009-4428-56dd3eade5d3	2021-05-24 12:22:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:22:26.877+03	2021-05-24 12:22:26.883+03	
1f9157d1-7a1c-ade4-e172-2a451e6bae3a	2021-05-24 12:22:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:22:46.877+03	2021-05-24 12:22:46.883+03	
152a2e54-d946-3cf1-388d-586b8791b31d	2021-05-24 12:23:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:23:06.877+03	2021-05-24 12:23:06.94+03	
9fa51723-7047-f88a-318e-f9f80783e1c0	2021-05-24 12:23:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:23:27.877+03	2021-05-24 12:23:27.883+03	
415ae586-0540-a140-5151-faaebedb00fb	2021-05-24 12:23:47.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:23:47.878+03	2021-05-24 12:23:47.884+03	
43a1fa04-c869-c26d-5629-5929b4019698	2021-05-24 12:24:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:24:09.877+03	2021-05-24 12:24:09.884+03	
e9b06c36-af9e-1cfe-addb-c0c84c79c8a5	2021-05-24 12:24:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:24:29.877+03	2021-05-24 12:24:30.2+03	
2029a2c1-a7f1-74cb-b400-a7278605dfff	2021-05-24 12:24:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:24:49.877+03	2021-05-24 12:24:49.883+03	
940bd8e4-cec0-7e98-d360-f834be9b2025	2021-05-24 12:25:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:25:09.877+03	2021-05-24 12:25:09.882+03	
00ab2447-7ecd-37bb-d38c-30a9a6bc91b1	2021-05-24 12:25:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:25:29.877+03	2021-05-24 12:25:29.883+03	
3a35eacb-cf37-d6d9-8ba8-db122c949f86	2021-05-24 12:25:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:25:50.877+03	2021-05-24 12:25:50.882+03	
dc6d39ec-4f76-356e-7c0f-3e51473cfcf5	2021-05-24 12:26:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:26:10.877+03	2021-05-24 12:26:10.884+03	
4f973a39-c2ba-137a-4c90-e177b7748bea	2021-05-24 12:26:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:26:30.877+03	2021-05-24 12:26:30.883+03	
333809d0-a078-4cbb-3990-359c91655dec	2021-05-24 12:26:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:26:50.877+03	2021-05-24 12:26:50.883+03	
eb5ab765-29e6-98cf-3973-1db9cc0e3db3	2021-05-24 12:27:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:27:10.877+03	2021-05-24 12:27:10.884+03	
f746ee74-7fd2-80e8-130e-ede40b539e78	2021-05-24 12:27:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:27:30.877+03	2021-05-24 12:27:31.131+03	
103facce-e322-503b-4534-82bb177bca76	2021-05-24 12:27:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:27:50.877+03	2021-05-24 12:27:50.885+03	
44bd70c7-15f4-cefb-b368-bb0f20f7b42f	2021-05-24 12:28:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:28:10.877+03	2021-05-24 12:28:10.882+03	
8ba2c708-5c6d-03db-896b-e7913dc67f7a	2021-05-24 12:28:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:28:30.877+03	2021-05-24 12:28:30.882+03	
252adfae-bf46-b981-4178-ec16997d8d65	2021-05-24 12:28:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:28:50.877+03	2021-05-24 12:28:50.882+03	
02c2a06e-6a04-ddbb-bdc7-25be5b2f2b8b	2021-05-24 12:29:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:29:10.877+03	2021-05-24 12:29:10.883+03	
13675d1f-e2f2-9a23-ac84-c1910e385885	2021-05-24 12:29:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:29:30.877+03	2021-05-24 12:29:30.885+03	
ac67c78f-1559-5a06-0749-ff61e8e881ff	2021-05-24 12:29:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:29:50.877+03	2021-05-24 12:29:50.883+03	
cbb2493a-dab5-fc67-830d-3e84ccf1693e	2021-05-24 12:30:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:30:00.877+03	2021-05-24 12:30:00.896+03	
1d23eb7c-eb29-00ce-c7e5-702b8bca770a	2021-05-24 12:30:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:30:10.877+03	2021-05-24 12:30:10.883+03	
1d64b7f0-932c-1ce9-8feb-9446d93f0d69	2021-05-24 12:30:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:30:30.877+03	2021-05-24 12:30:30.883+03	
ec121029-81e4-ee02-1546-b5f7613260e1	2021-05-24 12:30:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:30:50.877+03	2021-05-24 12:30:50.883+03	
7e6f8046-adec-811e-50b3-f9a845fac30e	2021-05-24 12:31:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:31:10.877+03	2021-05-24 12:31:10.885+03	
652922b8-0324-7db7-3bd3-9f720e605603	2021-05-24 12:31:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:31:30.877+03	2021-05-24 12:31:30.882+03	
0ff708b0-1ff1-f2b4-cdad-556b3bd1e5ce	2021-05-24 12:31:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:31:50.877+03	2021-05-24 12:31:50.882+03	
a15ca773-7068-404a-08d6-196d7e9c2dcf	2021-05-24 12:32:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:32:10.877+03	2021-05-24 12:32:10.885+03	
fac63aa0-2a3d-16c3-5e3d-7d237a1f44d5	2021-05-24 12:32:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:32:31.877+03	2021-05-24 12:32:31.886+03	
23d7f5e1-08bd-6d65-fc21-9b9e645185d6	2021-05-24 12:32:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:32:51.877+03	2021-05-24 12:32:51.883+03	
d7f16604-c55c-38ec-8181-792ab602cfae	2021-05-24 12:33:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:33:11.877+03	2021-05-24 12:33:11.883+03	
351548fc-808e-071c-5335-6904c1cab767	2021-05-24 12:33:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:33:31.877+03	2021-05-24 12:33:31.883+03	
5a708784-2aa8-2293-e432-de19c6ed9de5	2021-05-24 12:33:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:33:51.877+03	2021-05-24 12:33:51.883+03	
ae6c3ea9-5e3e-7a46-d8b4-6ad1cd39da8d	2021-05-24 12:34:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:34:11.877+03	2021-05-24 12:34:11.886+03	
fdc156ab-9536-70a3-2b76-738d6f9fe2ea	2021-05-24 12:34:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:34:31.877+03	2021-05-24 12:34:31.884+03	
5b3c963b-c066-09d7-220d-36674ff4759c	2021-05-24 12:34:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:34:51.877+03	2021-05-24 12:34:51.883+03	
845c9e5b-3e16-f6da-03ee-7e7175971afb	2021-05-24 12:35:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:35:11.877+03	2021-05-24 12:35:11.882+03	
e77d988e-523d-bd6b-f9ef-f2349b97666f	2021-05-24 12:35:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:35:31.877+03	2021-05-24 12:35:31.884+03	
e11ed112-db3d-b03e-3bec-5888210a2da5	2021-05-24 12:35:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:35:51.877+03	2021-05-24 12:35:51.884+03	
4ce15d04-557a-aa7f-5044-d7253805f4d5	2021-05-24 12:36:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:36:11.877+03	2021-05-24 12:36:11.883+03	
79e40662-3140-ef98-268e-bbe359fea10a	2021-05-24 12:36:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:36:31.877+03	2021-05-24 12:36:31.885+03	
7309934d-d22a-b903-1a37-7bdbeeecf881	2021-05-24 12:36:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:36:51.877+03	2021-05-24 12:36:51.884+03	
c6a1d1fe-0360-244e-190c-98fb13412e69	2021-05-24 12:37:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:37:11.877+03	2021-05-24 12:37:11.882+03	
964fb8bf-b9df-1ebe-4c42-2cc4bf74210d	2021-05-24 12:37:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:37:31.877+03	2021-05-24 12:37:31.883+03	
21cb6ecc-e052-bd95-a3a9-ab09d588d8ab	2021-05-24 12:37:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:37:51.877+03	2021-05-24 12:37:51.882+03	
399fe7c5-b7a6-cb68-0e97-d8bfa3506532	2021-05-24 12:38:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:38:11.877+03	2021-05-24 12:38:11.882+03	
e36a4433-de21-f259-7ced-0deffff125d7	2021-05-24 12:38:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:38:31.877+03	2021-05-24 12:38:31.883+03	
ad497b06-4308-9365-38e2-ca07809865b1	2021-05-24 12:38:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:38:51.877+03	2021-05-24 12:38:51.883+03	
e81fd18c-8881-3fc0-3715-be90cc442df0	2021-05-24 12:39:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:39:11.877+03	2021-05-24 12:39:11.884+03	
1e4d4ab6-a237-23d0-b248-2cede90ef51c	2021-05-24 12:39:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:39:31.877+03	2021-05-24 12:39:31.884+03	
5f718075-1081-a003-ea71-6abe1de8177f	2021-05-24 12:39:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:39:41.877+03	2021-05-24 12:39:42.398+03	
1b715740-c61d-4c19-38b0-08158b347f4e	2021-05-24 12:40:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 12:40:00.877+03	2021-05-24 12:40:00.884+03	ERROR
43a12be6-b1cb-626a-6baf-e2cd0898c2f3	2021-05-24 12:40:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:40:11.877+03	2021-05-24 12:40:11.883+03	
4b8ea182-9040-deba-efa6-ce9bf27d725b	2021-05-24 12:40:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:40:31.877+03	2021-05-24 12:40:31.883+03	
c2a2f663-17b9-71d9-7521-d8f547733ff4	2021-05-24 12:40:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:40:51.877+03	2021-05-24 12:40:51.885+03	
2456cbbc-86e5-ddf6-145d-d682fadcfc88	2021-05-24 12:41:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:41:11.877+03	2021-05-24 12:41:11.886+03	
9a844e5b-a765-effa-413d-f2177ad48479	2021-05-24 12:41:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:41:31.877+03	2021-05-24 12:41:31.884+03	
a7ff120f-5b0c-4845-b67f-143de07dae87	2021-05-24 12:41:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:41:51.877+03	2021-05-24 12:41:51.883+03	
b72c8133-f02f-e0cd-4b17-1205939f58dd	2021-05-24 12:42:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:42:11.877+03	2021-05-24 12:42:11.889+03	
961395af-4780-93a9-d887-a851480ac583	2021-05-24 12:42:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:42:31.877+03	2021-05-24 12:42:31.883+03	
bb5c1a62-dcc5-bd8e-9fb6-0353d055611a	2021-05-24 12:42:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:42:51.877+03	2021-05-24 12:42:51.884+03	
71fe6347-8450-fe77-9220-04161b59a8c5	2021-05-24 12:43:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:43:11.877+03	2021-05-24 12:43:11.883+03	
6df74da1-84bf-36e6-2763-2ed95269e611	2021-05-24 12:43:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:43:31.877+03	2021-05-24 12:43:31.884+03	
da8b29fb-c40c-b988-6b02-5ed9a4dd5ea4	2021-05-24 12:43:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:43:51.877+03	2021-05-24 12:43:51.884+03	
c69d252e-6ed2-db1a-4e6f-6df08c8fd36c	2021-05-24 12:44:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:44:11.877+03	2021-05-24 12:44:11.886+03	
1c1d93d9-ef1e-19f1-378e-40795f4e539d	2021-05-24 12:44:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:44:31.877+03	2021-05-24 12:44:31.882+03	
35577d1f-3cef-f814-c78e-75592087ae88	2021-05-24 12:44:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:44:51.877+03	2021-05-24 12:44:51.884+03	
03d094e5-8c98-f06b-aaf9-d8686c25dc9c	2021-05-24 12:45:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:45:01.877+03	2021-05-24 12:45:01.896+03	
5ab44044-dfb1-49a4-ea51-eb0b68fbe112	2021-05-24 12:45:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:45:21.877+03	2021-05-24 12:45:21.885+03	
acc89472-57b2-5253-2187-1d047588cd17	2021-05-24 12:45:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:45:41.877+03	2021-05-24 12:45:41.884+03	
0e0f99c8-e8c4-66b4-c729-489c5fad4cf6	2021-05-24 12:46:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:46:01.877+03	2021-05-24 12:46:01.885+03	
261974bb-27d1-0dcc-a964-e55e0d0df8c0	2021-05-24 12:46:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:46:21.877+03	2021-05-24 12:46:21.883+03	
0a414af4-7f5e-cdc6-a18e-eff0796ed2b3	2021-05-24 12:46:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:46:41.877+03	2021-05-24 12:46:41.884+03	
f928caef-6083-f034-47c9-a5cf43c726f7	2021-05-24 12:47:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:47:01.877+03	2021-05-24 12:47:01.884+03	
20b0e3b8-811d-b631-1969-897549c235a5	2021-05-24 12:47:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:47:21.877+03	2021-05-24 12:47:21.883+03	
f53ac636-0ed3-d8e7-4b9a-a2d3807b2751	2021-05-24 12:47:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:47:41.877+03	2021-05-24 12:47:41.889+03	
6bd169b8-e576-9907-6b43-0c3d92591df3	2021-05-24 12:48:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:48:01.877+03	2021-05-24 12:48:01.884+03	
34d8e7e9-7774-b130-2b2c-25c7c88bf210	2021-05-24 12:48:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:48:21.877+03	2021-05-24 12:48:21.885+03	
76276044-1c45-7dab-8e58-b5fc9f53da9a	2021-05-24 12:48:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:48:41.877+03	2021-05-24 12:48:41.885+03	
781783a1-25c3-4a18-0c9a-9e7ba9af285b	2021-05-24 12:49:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:49:01.877+03	2021-05-24 12:49:02.181+03	
ac85b4f3-5ffa-4cc5-355a-9ab7ded11b93	2021-05-24 12:49:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:49:21.877+03	2021-05-24 12:49:21.887+03	
739c5fca-e22a-f06c-4ed4-a71f4170b216	2021-05-24 12:49:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:49:41.877+03	2021-05-24 12:49:41.885+03	
6fc68b0f-443c-e83c-e524-d79596de7efa	2021-05-24 12:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 12:50:00.877+03	2021-05-24 12:50:00.883+03	ERROR
a5e3d8dc-8af2-d5e4-239d-184deed44221	2021-05-24 12:50:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:50:11.877+03	2021-05-24 12:50:11.884+03	
e35a3817-36db-66aa-9013-233c2008b181	2021-05-24 12:50:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:50:31.877+03	2021-05-24 12:50:31.884+03	
e5489ded-9af8-e1de-572b-2120d651a811	2021-05-24 12:50:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:50:51.877+03	2021-05-24 12:50:51.9+03	
eac94866-1762-e0be-3150-69ae645cbc1c	2021-05-24 12:51:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:51:11.877+03	2021-05-24 12:51:11.884+03	
347381ab-3dcc-cda1-59e8-896e9d9911c4	2021-05-24 12:51:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:51:31.877+03	2021-05-24 12:51:31.886+03	
3954eb0e-01ab-93d4-49fb-da843a4c6272	2021-05-24 12:51:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:51:51.877+03	2021-05-24 12:51:51.886+03	
dc72f403-d2b2-2cc7-c6ad-82047a2ef3df	2021-05-24 12:52:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:52:11.877+03	2021-05-24 12:52:11.884+03	
8d37f853-9a24-4af7-9892-a49148bf5050	2021-05-24 12:52:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:52:31.877+03	2021-05-24 12:52:31.885+03	
25950109-a3ab-a021-871b-a3521cdf928c	2021-05-24 12:52:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:52:51.877+03	2021-05-24 12:52:51.884+03	
7c2f4e40-ce48-eace-4973-9f407a30a364	2021-05-24 12:53:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:53:11.877+03	2021-05-24 12:53:11.896+03	
7b802dd8-e3fd-c0b3-8b81-86460f517f60	2021-05-24 12:53:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:53:31.877+03	2021-05-24 12:53:31.883+03	
9f81a9c5-dd45-0f3d-5861-9ba90a9fb51a	2021-05-24 12:53:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:53:51.877+03	2021-05-24 12:53:51.883+03	
9b945aec-1464-4e61-8025-a1d1fda8dfe1	2021-05-24 12:54:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:54:11.877+03	2021-05-24 12:54:11.883+03	
d09a5923-7443-ac61-39ef-504222f5d1ff	2021-05-24 12:54:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:54:31.877+03	2021-05-24 12:54:31.883+03	
9051370c-08d1-8efc-2ae1-86bd3e4ccfff	2021-05-24 12:54:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:54:51.877+03	2021-05-24 12:54:51.883+03	
3b6813a6-a1af-5020-8fe3-cd3d6d4ce24a	2021-05-24 12:55:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:55:11.877+03	2021-05-24 12:55:11.883+03	
9d72e004-b72a-53e2-f90e-59a44fb53d38	2021-05-24 12:55:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:55:31.877+03	2021-05-24 12:55:31.883+03	
e977bf61-70fe-f8ae-4e77-7409c624fc6a	2021-05-24 12:55:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:55:51.877+03	2021-05-24 12:55:51.882+03	
aa9177cc-e7ef-6baf-608a-79f1c5150e05	2021-05-24 12:56:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:56:11.877+03	2021-05-24 12:56:11.883+03	
efdeb15c-958b-a037-59f9-c5460824ad8c	2021-05-24 12:56:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:56:31.877+03	2021-05-24 12:56:31.883+03	
85067f3f-679c-1183-9996-f1966e0d2c06	2021-05-24 12:56:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:56:51.877+03	2021-05-24 12:56:51.883+03	
ec44fa7d-0999-7f64-fa36-c466bf34af63	2021-05-24 12:57:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:57:11.877+03	2021-05-24 12:57:11.883+03	
53268663-f8c7-7325-445b-f690cd484326	2021-05-24 12:57:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:57:31.877+03	2021-05-24 12:57:31.882+03	
33141b1c-3e61-9807-9bec-06a9329a7f2e	2021-05-24 12:57:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:57:51.877+03	2021-05-24 12:57:51.884+03	
1c8a6644-2c4c-1c7f-5a5e-17d620ce8f1d	2021-05-24 12:58:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:58:11.877+03	2021-05-24 12:58:11.883+03	
13a2ea31-1196-2e09-657b-b5d2af23329d	2021-05-24 12:58:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:58:31.877+03	2021-05-24 12:58:31.885+03	
3035627c-d60f-70e5-f4e5-e7a4c23d1451	2021-05-24 12:58:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:58:51.877+03	2021-05-24 12:58:51.885+03	
81d6d426-dcbc-6d04-d026-96e2f64e3618	2021-05-24 12:59:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:59:11.877+03	2021-05-24 12:59:11.885+03	
97a93e9f-c7e1-a79a-2d81-2c7242888462	2021-05-24 12:59:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:59:31.877+03	2021-05-24 12:59:31.884+03	
f4e3418e-0f17-6844-bc50-450970696b5f	2021-05-24 12:59:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:59:51.877+03	2021-05-24 12:59:51.883+03	
fc170c6f-d7ce-60b7-c2c0-a1313ae7c64f	2021-05-24 12:39:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:39:51.877+03	2021-05-24 12:39:51.885+03	
700def09-4d85-5ac9-165c-74a726cff85f	2021-05-24 12:40:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:40:01.877+03	2021-05-24 12:40:01.912+03	
5ae31ef0-f872-c12f-8a1d-7cf2fbe9f34a	2021-05-24 12:40:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:40:21.877+03	2021-05-24 12:40:21.883+03	
895a2a79-dc50-cd86-431b-be36f1e99c22	2021-05-24 12:40:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:40:41.877+03	2021-05-24 12:40:41.882+03	
30b28ddc-f636-03cf-7045-f16e938a0ef3	2021-05-24 12:41:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:41:01.877+03	2021-05-24 12:41:01.883+03	
7cd2aacc-e13d-cb3d-b0cb-83465b834c75	2021-05-24 12:41:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:41:21.877+03	2021-05-24 12:41:21.884+03	
5fa59516-6598-cc97-eba3-9a2a14f1a3da	2021-05-24 12:41:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:41:41.877+03	2021-05-24 12:41:41.884+03	
c9c3454c-4e42-91e7-0149-85fe9e032dbc	2021-05-24 12:42:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:42:01.877+03	2021-05-24 12:42:01.883+03	
656f41ca-7952-af15-4d97-ee9571e76604	2021-05-24 12:42:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:42:21.877+03	2021-05-24 12:42:21.884+03	
21be410f-dcd2-4435-152c-63ad39aa2a43	2021-05-24 12:42:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:42:41.877+03	2021-05-24 12:42:41.884+03	
981c4dc1-1afb-fe98-2bad-33ae020a190f	2021-05-24 12:43:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:43:01.877+03	2021-05-24 12:43:01.893+03	
272a3660-3c47-7c65-2fae-1302d679ae5d	2021-05-24 12:43:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:43:21.877+03	2021-05-24 12:43:22.201+03	
d1f3d408-cd60-8a9a-69e1-b12a68f5ccb1	2021-05-24 12:43:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:43:41.877+03	2021-05-24 12:43:41.883+03	
f95bc909-0e50-091c-0e0a-12482f69498a	2021-05-24 12:44:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:44:01.877+03	2021-05-24 12:44:01.914+03	
fa047066-bc9a-5140-cca3-c9ee8a692870	2021-05-24 12:44:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:44:21.877+03	2021-05-24 12:44:21.883+03	
d5573d2a-ca92-c483-8049-d2d226362965	2021-05-24 12:44:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:44:41.877+03	2021-05-24 12:44:41.882+03	
122633c5-ddf5-2d45-996f-cdaf90549edf	2021-05-24 12:45:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:45:11.877+03	2021-05-24 12:45:11.883+03	
3caa1e2c-b001-4768-06b4-c84517312533	2021-05-24 12:45:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:45:31.877+03	2021-05-24 12:45:31.883+03	
d735c577-bafd-08f9-3843-8c5a7ab1f2c9	2021-05-24 12:45:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:45:51.877+03	2021-05-24 12:45:51.883+03	
d7f17a71-d4d0-5410-25e1-13926b8be333	2021-05-24 12:46:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:46:11.877+03	2021-05-24 12:46:12.197+03	
f1a7bb1d-a6af-a251-3da4-60f33f1ea006	2021-05-24 12:46:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:46:31.877+03	2021-05-24 12:46:31.883+03	
b1fc8cc0-96ac-e153-35b4-b9a4d13366a2	2021-05-24 12:46:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:46:51.877+03	2021-05-24 12:46:51.883+03	
28d58e4a-23d8-3551-c697-46cb4d41bbb2	2021-05-24 12:47:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:47:11.877+03	2021-05-24 12:47:11.884+03	
20a746a4-88d0-bc77-69fd-88a8deab49bf	2021-05-24 12:47:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:47:31.877+03	2021-05-24 12:47:31.884+03	
0840434b-0ff2-8308-7acd-ecaf0e8e5a82	2021-05-24 12:47:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:47:51.877+03	2021-05-24 12:47:51.939+03	
69850b95-1979-6dbb-6619-bc697ed43440	2021-05-24 12:48:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:48:11.877+03	2021-05-24 12:48:11.886+03	
14c09e84-54b2-16a6-6be8-04aeac67e43e	2021-05-24 12:48:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:48:31.877+03	2021-05-24 12:48:31.883+03	
e837ab51-596e-9a4c-1aac-3a22c83405d9	2021-05-24 12:48:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:48:51.877+03	2021-05-24 12:48:51.884+03	
d3809abc-69b9-90a7-97f7-c0e55ad19b07	2021-05-24 12:49:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:49:11.877+03	2021-05-24 12:49:11.883+03	
4ad08af3-1238-6d6a-117c-1d06598ad154	2021-05-24 12:49:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:49:31.877+03	2021-05-24 12:49:32.088+03	
242bcf5f-a15c-fd8a-3f63-ab684f318442	2021-05-24 12:49:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:49:51.877+03	2021-05-24 12:49:51.885+03	
52ddffd2-b67b-937d-3871-d49bfda7a12c	2021-05-24 12:50:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:50:01.877+03	2021-05-24 12:50:01.888+03	
92fc6bf5-c44a-fadc-04bf-173320ba4301	2021-05-24 12:50:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:50:21.877+03	2021-05-24 12:50:21.882+03	
b78b6615-add0-0d7f-5d9c-eefc4d08bf17	2021-05-24 12:50:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:50:41.877+03	2021-05-24 12:50:41.883+03	
95f13d3d-30cd-5ade-d337-78de408cab9d	2021-05-24 12:51:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:51:01.877+03	2021-05-24 12:51:01.884+03	
50020540-3393-92cb-65a0-6037fea0bd40	2021-05-24 12:51:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:51:21.877+03	2021-05-24 12:51:21.887+03	
4c94d312-89aa-cb09-d086-8c9e9b8dfd6b	2021-05-24 12:51:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:51:41.877+03	2021-05-24 12:51:41.883+03	
304ba711-0cf8-9361-e45a-839753e20acd	2021-05-24 12:52:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:52:01.877+03	2021-05-24 12:52:01.896+03	
8fbea925-fb7c-0483-87dd-948e9e7e6e4f	2021-05-24 12:52:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:52:21.877+03	2021-05-24 12:52:21.884+03	
674907cb-72da-8b07-739a-44dc4e5d6d78	2021-05-24 12:52:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:52:41.877+03	2021-05-24 12:52:41.885+03	
7d60c9f4-1975-5eae-b6d4-102cae9e2b8f	2021-05-24 12:53:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:53:01.877+03	2021-05-24 12:53:01.883+03	
8893c029-a7db-fe1b-07c2-8697c9e43970	2021-05-24 12:53:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:53:21.877+03	2021-05-24 12:53:22.179+03	
0c7015d3-d98e-18fb-24da-496da2c21c3d	2021-05-24 12:53:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:53:41.877+03	2021-05-24 12:53:41.885+03	
a92acea5-197a-09e2-d1ef-a343ccc3b3be	2021-05-24 12:54:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:54:01.877+03	2021-05-24 12:54:01.884+03	
05804061-bdda-d815-efde-54cb4e8b4fce	2021-05-24 12:54:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:54:21.877+03	2021-05-24 12:54:21.884+03	
9ab378d8-88f4-f9db-407b-e39e77c7309d	2021-05-24 12:54:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:54:41.877+03	2021-05-24 12:54:41.883+03	
69394e49-fee9-8cfd-1239-214c3cc4fa0b	2021-05-24 12:55:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:55:01.877+03	2021-05-24 12:55:01.882+03	
ec33046e-440b-823b-188b-275e44b3e096	2021-05-24 12:55:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:55:21.877+03	2021-05-24 12:55:21.884+03	
983e0a14-fd2f-9513-8d87-5cfa8763c68d	2021-05-24 12:55:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:55:41.877+03	2021-05-24 12:55:41.882+03	
efec3111-31bc-6928-a3b2-d2dfd31d1188	2021-05-24 12:56:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:56:01.877+03	2021-05-24 12:56:01.883+03	
efaa2e7c-7ad5-80a1-8de9-d17e4b8af558	2021-05-24 12:56:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:56:21.877+03	2021-05-24 12:56:21.883+03	
47c04d9e-e092-f81f-fa43-14c40bc783f1	2021-05-24 12:56:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:56:41.877+03	2021-05-24 12:56:41.884+03	
80927509-28ac-bd29-43f4-91d39016d1ff	2021-05-24 12:57:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:57:01.877+03	2021-05-24 12:57:01.882+03	
511382a6-3234-77e4-9317-e2a37a4ab6ad	2021-05-24 12:57:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:57:21.877+03	2021-05-24 12:57:21.882+03	
58dbf67b-da78-f7cd-ce38-8a6272ab1b9f	2021-05-24 12:57:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:57:41.877+03	2021-05-24 12:57:41.883+03	
1a051663-45d3-12b9-1777-80aa8ae3b2a6	2021-05-24 12:58:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:58:01.877+03	2021-05-24 12:58:01.883+03	
6690f4e8-4342-13d9-4cf1-b56237b15bd5	2021-05-24 12:58:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:58:21.877+03	2021-05-24 12:58:21.886+03	
67c876e1-1319-f361-553d-cb4b853bae4c	2021-05-24 12:58:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:58:41.877+03	2021-05-24 12:58:41.884+03	
be3015a3-181e-acb1-1fa3-742ef36dd0a1	2021-05-24 12:59:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:59:01.877+03	2021-05-24 12:59:01.951+03	
905b885f-cc6b-adc3-0a6d-9a8e62980259	2021-05-24 12:59:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:59:21.877+03	2021-05-24 12:59:21.895+03	
6b95ba50-1000-0a05-86a3-61d47f153561	2021-05-24 12:59:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 12:59:41.877+03	2021-05-24 12:59:41.884+03	
8aee4fbf-2ea4-94d4-0528-3c2f54c7fb5e	2021-05-24 13:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 13:00:00.876+03	2021-05-24 13:00:00.882+03	ERROR
ccbe9b6f-e487-d781-437e-5992889bb84f	2021-05-24 13:00:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:00:11.877+03	2021-05-24 13:00:11.897+03	
ff29c918-40d3-c996-f17b-b7f0435162df	2021-05-24 13:00:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:00:01.877+03	2021-05-24 13:00:01.883+03	
c0c0488e-c8f5-7fc7-8a2f-9b01b0fb2942	2021-05-24 23:07:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:07:33.877+03	2021-05-24 23:07:33.884+03	
578a7405-f166-e91a-2fa1-cf5699531177	2021-05-24 13:00:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:00:21.877+03	2021-05-24 13:00:21.883+03	
2fb06bd9-f2d5-d7e7-871d-83d60b648f78	2021-05-24 13:00:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:00:41.877+03	2021-05-24 13:00:41.892+03	
91c96188-faf3-37d0-89a9-d256bf3fafbd	2021-05-24 23:07:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:07:53.877+03	2021-05-24 23:07:53.884+03	
13bb75f5-c249-121f-010c-461c95c3f0d6	2021-05-24 13:01:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:01:01.877+03	2021-05-24 13:01:01.884+03	
657c8403-85d1-4e18-c5b3-addc0e3aa2fc	2021-05-24 13:01:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:01:21.877+03	2021-05-24 13:01:21.885+03	
cb7e2837-1c65-2635-c792-86483318ccfe	2021-05-24 23:08:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:08:13.877+03	2021-05-24 23:08:13.884+03	
74e11f71-46d2-a670-933d-61e2a636f108	2021-05-24 13:01:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:01:41.877+03	2021-05-24 13:01:41.89+03	
45d4ad3e-6f58-14dd-46b1-1249d78eb836	2021-05-24 13:02:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:02:01.877+03	2021-05-24 13:02:01.923+03	
85020441-3541-ac6c-81fb-45e7989f60c7	2021-05-24 23:08:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:08:33.877+03	2021-05-24 23:08:33.883+03	
8d544d43-f701-181f-af92-8a2a91dd735d	2021-05-24 13:02:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:02:21.877+03	2021-05-24 13:02:21.884+03	
09421989-cbef-9ae1-b81c-de614c34762b	2021-05-24 13:02:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:02:42.877+03	2021-05-24 13:02:42.886+03	
514ef116-36db-6de3-799b-fba5ba1db654	2021-05-24 23:08:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:08:53.877+03	2021-05-24 23:08:53.886+03	
6153e9e9-0555-0aeb-fc62-cef887b30201	2021-05-24 13:03:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:03:02.877+03	2021-05-24 13:03:02.883+03	
5865c891-12f6-aaf0-e56f-28bf40a69936	2021-05-24 13:03:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:03:22.877+03	2021-05-24 13:03:22.883+03	
05388d81-f2e8-4e69-53d1-3ad3f5f71009	2021-05-24 23:09:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:09:13.877+03	2021-05-24 23:09:13.885+03	
df8e28b6-a4f2-fec6-0983-0d7e9f750ebc	2021-05-24 13:03:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:03:42.877+03	2021-05-24 13:03:42.885+03	
1f516096-1f20-974f-6e90-10bf46f8ad2f	2021-05-24 13:04:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:04:02.877+03	2021-05-24 13:04:02.884+03	
060be1e5-3ff6-3947-0cf9-e41577e42d11	2021-05-24 23:09:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:09:33.877+03	2021-05-24 23:09:33.883+03	
53ec17a1-6f0c-0ebe-c754-bf215c27f9de	2021-05-24 13:04:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:04:22.877+03	2021-05-24 13:04:22.885+03	
197a3e2f-f0f6-46ad-6462-bedf491b5a44	2021-05-24 13:04:42.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:04:42.878+03	2021-05-24 13:04:43.098+03	
a38bdf10-59ec-5616-b620-923dab6a5d61	2021-05-24 23:09:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:09:53.877+03	2021-05-24 23:09:53.883+03	
26b5c2c8-1350-d2a6-d3f1-1140c13d30b8	2021-05-24 13:05:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:05:03.877+03	2021-05-24 13:05:03.884+03	
36831635-ad61-b6e3-b615-a5e0fa162a5c	2021-05-24 13:05:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:05:24.877+03	2021-05-24 13:05:24.883+03	
01842d18-41d7-43dc-e8b0-a3389ba240b1	2021-05-24 23:10:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:10:03.877+03	2021-05-24 23:10:03.883+03	
fcfaadad-6fd7-5694-04c6-6f8c04e2961e	2021-05-24 13:05:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:05:44.877+03	2021-05-24 13:05:44.89+03	
0b0b790c-a185-6296-6121-c189c7ab6c4d	2021-05-24 13:06:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:06:04.877+03	2021-05-24 13:06:04.883+03	
c6284610-ef13-5d89-2cc8-d12341044e52	2021-05-24 23:10:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:10:23.877+03	2021-05-24 23:10:23.885+03	
e7fc539e-20e7-5b45-0bed-2b33201a95b1	2021-05-24 13:06:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:06:25.877+03	2021-05-24 13:06:25.883+03	
8045647d-3cfe-5e8c-6284-88764635be29	2021-05-24 13:06:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:06:45.877+03	2021-05-24 13:06:45.883+03	
52f23be7-c777-dcbf-ff8e-68e62559966e	2021-05-24 23:10:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:10:43.877+03	2021-05-24 23:10:43.886+03	
54baf0ab-1bed-0bff-dc1a-872fbd00a83b	2021-05-24 13:07:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:07:05.877+03	2021-05-24 13:07:05.883+03	
7864efd3-80d2-2a21-9185-175f8cfe313f	2021-05-24 13:07:25.88	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:07:25.88+03	2021-05-24 13:07:26.11+03	
bfe7afce-6fa1-3939-305d-965f9ff98dfe	2021-05-24 23:11:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:11:03.877+03	2021-05-24 23:11:03.883+03	
ff09750f-3bc7-9c10-3f2d-e9cafe18322f	2021-05-24 13:07:47.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:07:47.877+03	2021-05-24 13:07:47.892+03	
b70ce6ac-c334-ede6-3a76-9f033894215a	2021-05-24 13:08:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:08:07.877+03	2021-05-24 13:08:08.168+03	
dcb5e5a1-3b2d-5c47-3bc6-ffc89bf1d32c	2021-05-24 23:11:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:11:23.877+03	2021-05-24 23:11:23.885+03	
f1e5cbaa-3653-61c9-e7e2-5da5de67e8ee	2021-05-24 13:08:27.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:08:27.877+03	2021-05-24 13:08:27.883+03	
0d92fa88-ac64-5263-9ab8-99cde9476e77	2021-05-24 13:08:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:08:47.877+03	2021-05-24 13:08:47.884+03	
358ac8fd-a878-f8d0-9bcf-50caeb4e9532	2021-05-24 23:11:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:11:43.877+03	2021-05-24 23:11:43.883+03	
822b2034-b02b-347c-6981-7c85b782a36e	2021-05-24 13:09:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:09:07.877+03	2021-05-24 13:09:08.215+03	
63056dce-f985-20ef-56c3-555ca7ca894d	2021-05-24 13:09:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:09:27.877+03	2021-05-24 13:09:27.886+03	
eb8c6640-0e74-0ec4-84e2-c8d1f4f3d65c	2021-05-24 23:12:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:12:03.877+03	2021-05-24 23:12:03.883+03	
36645854-62f4-b8d6-230b-02ef673d1650	2021-05-24 13:09:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:09:57.877+03	2021-05-24 13:09:57.886+03	
31796180-562b-0999-1ee7-b9d7caba7842	2021-05-24 13:10:07.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:10:07.878+03	2021-05-24 13:10:07.885+03	
f656da69-1fe1-2430-d8e2-bdca9b46be53	2021-05-24 23:12:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:12:23.877+03	2021-05-24 23:12:23.884+03	
afcf6fb1-d4ac-f559-c87a-549ffb9234e0	2021-05-24 13:10:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:10:28.877+03	2021-05-24 13:10:28.885+03	
f0abe438-eb26-c931-87d9-46c1460d470f	2021-05-24 13:10:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:10:48.877+03	2021-05-24 13:10:48.884+03	
c727012a-876c-b7f9-5fe5-c54afbd7ab06	2021-05-24 23:12:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:12:43.877+03	2021-05-24 23:12:43.885+03	
f5517695-5874-a54a-4ce9-8ec14cccda1c	2021-05-24 13:11:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:11:08.877+03	2021-05-24 13:11:08.884+03	
76416062-6298-282c-6c34-cde544222eb8	2021-05-24 13:11:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:11:28.877+03	2021-05-24 13:11:28.886+03	
4d86be1e-bc63-397c-800f-c71770241f55	2021-05-24 13:11:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:11:48.877+03	2021-05-24 13:11:48.886+03	
2be95b0a-666f-e3c1-ee86-637026feaef5	2021-05-24 13:12:08.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:12:08.879+03	2021-05-24 13:12:08.885+03	
5af4f4e9-f425-d1eb-2746-8456fdad2c7f	2021-05-24 13:12:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:12:29.877+03	2021-05-24 13:12:29.885+03	
dd494e46-c740-40d4-6379-b314e761c254	2021-05-24 13:12:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:12:49.877+03	2021-05-24 13:12:49.884+03	
ce54d6bd-b744-8831-ca88-e5269a77ee9d	2021-05-24 13:13:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:13:09.877+03	2021-05-24 13:13:09.884+03	
e7d05cf8-9bec-3f82-1e02-a7f852d525ce	2021-05-24 13:13:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:13:29.877+03	2021-05-24 13:13:29.884+03	
5b567937-922a-71e2-7609-bffd32cd9af4	2021-05-24 13:13:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:13:49.877+03	2021-05-24 13:13:49.883+03	
6a0f71f6-98aa-9368-ecbd-ab63ecd34329	2021-05-24 13:14:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:14:09.877+03	2021-05-24 13:14:09.884+03	
26ff6ff7-67e5-88b4-229a-11297c3755d0	2021-05-24 13:14:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:14:29.877+03	2021-05-24 13:14:29.883+03	
5c6f042b-6a41-962f-858f-60466aaa69d7	2021-05-24 13:14:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:14:49.877+03	2021-05-24 13:14:49.883+03	
7874872b-4c6a-e92b-450a-ce47540f6c31	2021-05-24 13:15:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:15:09.877+03	2021-05-24 13:15:09.883+03	
37e73c17-a373-e714-a1f0-cb45a6095e63	2021-05-24 13:15:29.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:15:29.877+03	2021-05-24 13:15:29.886+03	
44ed927c-7b2a-06ed-230a-f3d5d67c3a47	2021-05-24 13:00:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:00:31.877+03	2021-05-24 13:00:31.883+03	
11ad4c29-d31e-f56b-2c08-ca5ae27e4349	2021-05-24 13:00:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:00:51.877+03	2021-05-24 13:00:52.123+03	
98b17bbc-25f1-398f-222e-375db1ba07b3	2021-05-24 13:01:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:01:11.877+03	2021-05-24 13:01:11.883+03	
21b1f523-8d25-b290-23ca-7b6ea10674f2	2021-05-24 13:01:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:01:31.877+03	2021-05-24 13:01:31.883+03	
9562209e-9a76-20c7-4d92-25c13adac615	2021-05-24 13:01:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:01:51.877+03	2021-05-24 13:01:51.883+03	
05c355ad-e488-23f6-49b1-b097339ea454	2021-05-24 13:02:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:02:11.877+03	2021-05-24 13:02:11.885+03	
e5d12e84-92e6-54ca-793c-7555309b2dae	2021-05-24 13:02:31.882	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:02:31.882+03	2021-05-24 13:02:31.889+03	
b2b25aa5-3af4-bbb8-381e-067a03f15e7d	2021-05-24 13:02:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:02:52.877+03	2021-05-24 13:02:52.883+03	
a9f3018c-927d-5976-2a1d-ccd2e120228f	2021-05-24 13:03:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:03:12.877+03	2021-05-24 13:03:13.183+03	
0a4143c2-c69b-2b01-1d8c-8e01af0d9d29	2021-05-24 13:03:32.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:03:32.877+03	2021-05-24 13:03:32.882+03	
49ba1f23-02cc-50a3-a872-ff58e06259d4	2021-05-24 13:03:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:03:52.877+03	2021-05-24 13:03:52.888+03	
7fb8d88f-5f61-8cbf-2f7e-bc2c3bcb535f	2021-05-24 13:04:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:04:12.877+03	2021-05-24 13:04:12.883+03	
1ae6b677-73dd-3922-5aa5-64c08ad54b10	2021-05-24 13:04:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:04:32.877+03	2021-05-24 13:04:32.933+03	
8f619df2-43cb-59f0-f3db-ab007fa66d31	2021-05-24 13:04:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:04:53.877+03	2021-05-24 13:04:53.884+03	
9b9b6f90-4129-e745-1e0e-3c05ffeb0348	2021-05-24 13:05:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:05:14.877+03	2021-05-24 13:05:14.885+03	
4688bf71-5f1d-1f99-f906-fd58f3df0a9b	2021-05-24 13:05:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:05:34.877+03	2021-05-24 13:05:34.978+03	
8d9f13b4-4f67-e465-61eb-3fb22bc2e696	2021-05-24 13:05:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:05:54.877+03	2021-05-24 13:05:55.213+03	
af8709f9-6f99-f73c-adbf-17747fb6a7fb	2021-05-24 13:06:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:06:15.877+03	2021-05-24 13:06:15.883+03	
3f0ef81b-c6b8-5985-f19c-95ac29760de6	2021-05-24 13:06:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:06:35.877+03	2021-05-24 13:06:35.887+03	
0d6cb42e-238b-bea3-a68f-dedecf1f4d87	2021-05-24 13:06:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:06:55.877+03	2021-05-24 13:06:55.885+03	
986ee3de-0a64-9499-2108-10d42d836900	2021-05-24 13:07:15.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:07:15.877+03	2021-05-24 13:07:16.542+03	
7dc25200-f1a3-5461-19fd-7d840c36d5a5	2021-05-24 13:07:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:07:36.878+03	2021-05-24 13:07:36.894+03	
a6073819-6e08-0e22-8602-a99259764e6a	2021-05-24 13:07:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:07:57.877+03	2021-05-24 13:07:57.884+03	
c9c09f8d-36de-fcee-1178-f0ec8eaadaf0	2021-05-24 13:08:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:08:17.877+03	2021-05-24 13:08:17.884+03	
1b547439-8f61-7691-45cf-4248ac4faf75	2021-05-24 13:08:37.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:08:37.877+03	2021-05-24 13:08:37.886+03	
10775c74-d2b6-918b-bfb7-51a338e93bfa	2021-05-24 13:08:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:08:57.877+03	2021-05-24 13:08:57.883+03	
330378cc-121f-6942-2730-a6be4cbe3eb5	2021-05-24 13:09:17.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:09:17.877+03	2021-05-24 13:09:17.885+03	
f9f621d4-d65d-94f3-71e0-4631fa56fda6	2021-05-24 13:09:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:09:37.877+03	2021-05-24 13:09:37.886+03	
45214e05-573f-97bd-a0d5-ed842ac6b4df	2021-05-24 13:09:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:09:47.877+03	2021-05-24 13:09:47.897+03	
f5234eb5-dc5c-4fc2-15d7-f25318dd46f4	2021-05-24 13:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 13:10:00.877+03	2021-05-24 13:10:00.882+03	ERROR
45308298-8d91-5de1-f70a-62b728104801	2021-05-24 13:10:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:10:18.877+03	2021-05-24 13:10:18.883+03	
02ef7aba-d63c-10c0-e2fb-b31680832866	2021-05-24 13:10:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:10:38.877+03	2021-05-24 13:10:38.89+03	
6bd928ac-9225-dc0a-3251-542839e26ba3	2021-05-24 13:10:58.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:10:58.877+03	2021-05-24 13:10:58.884+03	
d3c3c55d-5ce4-49c1-5a2d-5deed10cc41a	2021-05-24 13:11:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:11:18.877+03	2021-05-24 13:11:18.883+03	
848c4a6e-ad01-dc0b-44ce-6dbe389b34fb	2021-05-24 13:11:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:11:38.877+03	2021-05-24 13:11:38.885+03	
cbfe37b7-5e23-a669-778e-19401e1b18e5	2021-05-24 13:11:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:11:58.877+03	2021-05-24 13:11:58.884+03	
2cfa372b-56fc-2bd2-f07e-90065c2dc652	2021-05-24 13:12:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:12:19.877+03	2021-05-24 13:12:19.884+03	
49fedab1-3748-8e2b-6706-b98b76a504cd	2021-05-24 13:12:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:12:39.877+03	2021-05-24 13:12:39.883+03	
fdaf4861-3955-7242-8389-4f880ee530ac	2021-05-24 13:12:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:12:59.877+03	2021-05-24 13:12:59.885+03	
68dd3391-72c4-3eb1-da08-9565da79c3f3	2021-05-24 13:13:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:13:19.877+03	2021-05-24 13:13:19.886+03	
06b1799b-11e0-de4d-7b2e-a24b0d0fb777	2021-05-24 13:13:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:13:39.877+03	2021-05-24 13:13:39.883+03	
5c224f4c-91f2-d1fa-8d7e-8bf1a4d3e395	2021-05-24 13:13:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:13:59.877+03	2021-05-24 13:13:59.883+03	
a7a4823d-a484-93f5-0eaf-363ff7bc6f8e	2021-05-24 13:14:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:14:19.877+03	2021-05-24 13:14:19.882+03	
cc9ddef7-7da2-53fd-10c0-8b792d86e44a	2021-05-24 13:14:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:14:39.877+03	2021-05-24 13:14:39.885+03	
68c9c016-14da-5a65-3c22-8bde1966dd58	2021-05-24 13:14:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:14:59.877+03	2021-05-24 13:14:59.884+03	
f4349b99-90cb-2af0-974e-727f229c589c	2021-05-24 13:15:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:15:19.877+03	2021-05-24 13:15:20.119+03	
332eff47-d0e8-6533-9007-26d31e6535e5	2021-05-24 13:15:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:15:39.877+03	2021-05-24 13:15:39.883+03	
dc06c04d-cff1-27c9-3937-247c7eda9636	2021-05-24 13:15:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:15:49.877+03	2021-05-24 13:15:49.883+03	
387b19c6-e0bd-10ac-6315-8278e190f424	2021-05-24 13:15:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:15:59.877+03	2021-05-24 13:15:59.884+03	
70013f63-24b9-ff5b-a406-89b5d5ec288f	2021-05-24 13:16:09.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:16:09.877+03	2021-05-24 13:16:09.884+03	
556fa6dd-54e8-3c94-200b-8ade1af61a7f	2021-05-24 13:16:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:16:20.877+03	2021-05-24 13:16:20.884+03	
1b43c7ad-3dd1-a742-a85a-bc631b676765	2021-05-24 13:16:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:16:30.877+03	2021-05-24 13:16:30.884+03	
93e86f65-961f-7996-b865-bcb6f91bd003	2021-05-24 13:16:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:16:40.877+03	2021-05-24 13:16:40.883+03	
ccbc32c6-0cae-ab54-73dc-710d0bfe37af	2021-05-24 13:16:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:16:50.877+03	2021-05-24 13:16:50.882+03	
b0c0a47a-dc1f-1404-9b66-af7ee6303f7f	2021-05-24 13:17:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:17:00.877+03	2021-05-24 13:17:00.884+03	
c25ba7d7-c0d6-ca29-fa82-3ecfaedd50bc	2021-05-24 13:17:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:17:10.877+03	2021-05-24 13:17:10.884+03	
46783fd7-1129-5748-5f1c-1f267591b815	2021-05-24 13:17:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:17:20.877+03	2021-05-24 13:17:20.883+03	
10c797ba-97a4-796b-987b-aea6687ad81c	2021-05-24 13:17:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:17:30.877+03	2021-05-24 13:17:30.883+03	
44ab02f4-100e-032d-adce-35e042363f35	2021-05-24 13:17:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:17:40.878+03	2021-05-24 13:17:40.884+03	
b2de7a17-ae7b-fc65-df6f-be904f232185	2021-05-24 13:17:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:17:51.877+03	2021-05-24 13:17:51.884+03	
6f6e324c-9cb9-8f4d-f1cd-7b680958530a	2021-05-24 13:18:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:18:01.877+03	2021-05-24 13:18:01.884+03	
6a21ff9f-054f-918e-b77d-94221366ef8b	2021-05-24 13:18:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:18:11.877+03	2021-05-24 13:18:11.894+03	
076a43cc-0d84-722f-5a89-126dc7aedc27	2021-05-24 13:18:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:18:21.877+03	2021-05-24 13:18:21.882+03	
542eb23e-8cef-df3f-7460-813b11e1762f	2021-05-24 13:18:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:18:31.877+03	2021-05-24 13:18:31.884+03	
e9683b0b-3707-2eb0-d0e2-ff86d0a3d691	2021-05-24 13:18:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:18:51.877+03	2021-05-24 13:18:51.883+03	
9a73a3d1-a50e-6e1d-9f40-cb84d33272fe	2021-05-24 13:19:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:19:11.877+03	2021-05-24 13:19:11.883+03	
512876ac-ca2b-81eb-45fe-b65df420b49e	2021-05-24 13:19:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:19:31.877+03	2021-05-24 13:19:31.882+03	
91232cf2-2857-b941-0df6-5802993bfabe	2021-05-24 13:19:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:19:41.877+03	2021-05-24 13:19:41.884+03	
760c78f4-aec3-14ed-abed-b198170ea2fa	2021-05-24 13:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 13:20:00.877+03	2021-05-24 13:20:00.883+03	ERROR
0ba6c9e7-e0f0-ba41-6b03-328af3b4eab4	2021-05-24 13:20:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:20:11.877+03	2021-05-24 13:20:11.885+03	
436fcb3b-7220-e576-0094-e6a0cf36be2b	2021-05-24 13:20:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:20:31.877+03	2021-05-24 13:20:31.883+03	
be50f179-2aeb-9b47-94bf-64b811e58676	2021-05-24 13:20:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:20:51.877+03	2021-05-24 13:20:51.883+03	
927c4728-4afa-e770-7855-72ee8cf15dd4	2021-05-24 13:21:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:21:11.877+03	2021-05-24 13:21:11.883+03	
a60ea3aa-116f-5065-898a-1c3405f37d51	2021-05-24 13:21:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:21:21.877+03	2021-05-24 13:21:21.883+03	
e9db9fc8-f126-02a7-3dfb-b92bb6cd1dc4	2021-05-24 13:21:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:21:41.877+03	2021-05-24 13:21:41.884+03	
30e04b97-5c70-7f44-6c7c-b90becf62821	2021-05-24 13:22:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:22:01.877+03	2021-05-24 13:22:01.902+03	
c2ae5678-2fe7-8801-050b-f9afbc002ed6	2021-05-24 13:22:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:22:21.877+03	2021-05-24 13:22:21.884+03	
164a597b-aea8-d65b-8b48-55441e1585a2	2021-05-24 13:22:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:22:41.877+03	2021-05-24 13:22:41.883+03	
ed93a490-2010-4a82-76c5-aaf82bfd5309	2021-05-24 13:23:01.883	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:23:01.882+03	2021-05-24 13:23:01.893+03	
d90b690e-e0bb-b70b-ab84-5b39fa6fa836	2021-05-24 13:23:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:23:33.877+03	2021-05-24 13:23:33.884+03	
424420d9-1699-2f2f-ae78-18c9dfb55e41	2021-05-24 13:23:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:23:53.877+03	2021-05-24 13:23:53.884+03	
b0f0f58f-a310-48bf-379c-d3b1f106d441	2021-05-24 13:24:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:24:14.877+03	2021-05-24 13:24:15.202+03	
66707ff5-2805-015b-90be-b24c7d9753dc	2021-05-24 13:24:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:24:34.877+03	2021-05-24 13:24:34.886+03	
21912009-b68c-0b0e-0e50-79cdb2b75365	2021-05-24 13:24:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:24:54.877+03	2021-05-24 13:24:54.884+03	
9aa46690-1d14-6bc7-7b62-4a7e00b3e09a	2021-05-24 13:25:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:25:14.877+03	2021-05-24 13:25:14.882+03	
86f6553b-82fd-efc2-0a7a-950886000c48	2021-05-24 13:25:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:25:34.877+03	2021-05-24 13:25:34.885+03	
fb179675-4f04-59ad-ea92-bcaa7b08e0df	2021-05-24 13:25:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:25:54.877+03	2021-05-24 13:25:54.884+03	
cd6b405a-d87b-b643-8872-aa8536534f1f	2021-05-24 13:26:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:26:14.877+03	2021-05-24 13:26:14.884+03	
90451ba9-8165-b8d1-2815-467d6af01553	2021-05-24 13:26:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:26:34.877+03	2021-05-24 13:26:34.884+03	
e237bcc2-cbe9-1048-8d93-0a49131ea5ac	2021-05-24 13:26:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:26:55.877+03	2021-05-24 13:26:55.883+03	
8a122810-3628-e27c-0895-eb8309339a79	2021-05-24 13:27:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:27:15.877+03	2021-05-24 13:27:15.884+03	
22245531-8ebe-11e8-5713-da9ff9198dd5	2021-05-24 13:27:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:27:25.877+03	2021-05-24 13:27:25.884+03	
9233a168-c0dd-b613-2119-0024f79cf78a	2021-05-24 13:27:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:27:35.877+03	2021-05-24 13:27:35.883+03	
634c2e70-83e9-79bf-946b-3eecb76be41d	2021-05-24 13:27:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:27:55.877+03	2021-05-24 13:27:55.883+03	
8cfc1cd4-2d5c-b8e9-b9f4-762ce4f39559	2021-05-24 13:28:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:28:15.877+03	2021-05-24 13:28:15.883+03	
b409e1e0-96d6-48ea-226a-4bab936d11f9	2021-05-24 13:28:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:28:35.877+03	2021-05-24 13:28:36.171+03	
b883c9cc-1b9c-2cd2-e9ac-95c89f720ed3	2021-05-24 13:28:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:28:55.877+03	2021-05-24 13:28:55.883+03	
51ed9fcc-1f1d-c51f-15d9-6e9b37f26bd3	2021-05-24 13:29:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:29:15.877+03	2021-05-24 13:29:15.883+03	
abe3b701-928c-b85b-50cb-2ee11ad1f7dd	2021-05-24 13:29:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:29:35.877+03	2021-05-24 13:29:35.884+03	
73781d4c-8388-ca6b-3464-826b63897ebf	2021-05-24 13:29:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:29:55.877+03	2021-05-24 13:29:55.883+03	
a05379f0-d346-fb3e-50e3-898ba8f6ba40	2021-05-24 13:30:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:30:05.877+03	2021-05-24 13:30:05.895+03	
305b44c0-06cd-eea7-fa0d-fb366a91aaad	2021-05-24 13:30:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:30:25.877+03	2021-05-24 13:30:25.883+03	
6e0dd6c2-48a5-7d2a-3066-1276a0487a75	2021-05-24 13:30:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:30:45.877+03	2021-05-24 13:30:45.885+03	
7555fa8d-5ddb-d5f6-43fd-f3e12591e9c5	2021-05-24 13:30:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:30:56.877+03	2021-05-24 13:30:56.885+03	
21942048-12bc-d00e-6688-925348bd7aa3	2021-05-24 13:31:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:31:16.877+03	2021-05-24 13:31:16.883+03	
647cdf89-d495-eb8b-1a5b-7261383f3a2e	2021-05-24 13:31:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:31:36.877+03	2021-05-24 13:31:36.884+03	
b8e91f71-1586-660c-2700-e4d46de3381b	2021-05-24 13:31:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:31:56.877+03	2021-05-24 13:31:56.885+03	
7b288199-4dbd-ec4e-22db-bd383a4fca6c	2021-05-24 13:32:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:32:16.877+03	2021-05-24 13:32:16.883+03	
69929f10-d29c-57f1-e337-9523ed4230cc	2021-05-24 13:32:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:32:36.877+03	2021-05-24 13:32:36.885+03	
8d51d3db-435a-03c2-023e-3095702d5e1c	2021-05-24 13:32:46.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:32:46.877+03	2021-05-24 13:32:46.884+03	
a08ac1d5-8f5d-2fe6-2eac-2155031c8411	2021-05-24 13:33:07.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:33:07.878+03	2021-05-24 13:33:07.886+03	
15b48119-3344-ef02-0774-3aea741cd577	2021-05-24 13:33:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:33:28.877+03	2021-05-24 13:33:28.883+03	
10843c20-f807-9151-082f-a36e1414f371	2021-05-24 13:33:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:33:48.877+03	2021-05-24 13:33:48.884+03	
88e39aed-2951-268b-8f31-dfc5ed3371e9	2021-05-24 13:34:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:34:08.877+03	2021-05-24 13:34:08.923+03	
16d1e4fc-ea5b-cc85-bb92-84f87600f1be	2021-05-24 13:34:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:34:38.877+03	2021-05-24 13:34:38.883+03	
a928bff0-90de-aa1e-13b6-bdabf4edbdf0	2021-05-24 13:34:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:34:58.877+03	2021-05-24 13:34:58.884+03	
d092caad-5575-6f70-6a2c-3881d1c0cc87	2021-05-24 13:35:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:35:18.877+03	2021-05-24 13:35:18.885+03	
99bb2c0d-5895-502e-eda3-a2c9457c9151	2021-05-24 13:35:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:35:38.877+03	2021-05-24 13:35:38.883+03	
548dee83-56c3-cbbd-7580-1b9653387f7b	2021-05-24 13:35:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:35:58.877+03	2021-05-24 13:35:58.883+03	
59020942-5840-0696-ade6-af13800e01c2	2021-05-24 13:36:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:36:18.877+03	2021-05-24 13:36:18.882+03	
538cb725-7a26-0692-700a-bc2bb6b36897	2021-05-24 13:36:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:36:38.877+03	2021-05-24 13:36:38.885+03	
ddc9a05b-3c42-c3fa-9972-500cf5e85ccf	2021-05-24 13:36:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:36:58.877+03	2021-05-24 13:36:58.885+03	
2be9ba46-ad51-3a1a-0d90-f5f6b4b56c8b	2021-05-24 13:37:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:37:18.877+03	2021-05-24 13:37:18.886+03	
9f4c3838-0cbc-0c01-df28-a664b6b4651b	2021-05-24 13:37:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:37:38.877+03	2021-05-24 13:37:38.883+03	
40fb6ab0-24f7-e5e3-6afb-9e281f9ca41d	2021-05-24 13:37:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:37:58.877+03	2021-05-24 13:37:58.884+03	
42ac8140-a6a8-7c49-d014-b6a9bee21980	2021-05-24 13:38:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:38:18.877+03	2021-05-24 13:38:18.883+03	
3506b50c-4e30-2171-ef3d-594fe7b12e39	2021-05-24 13:18:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:18:41.877+03	2021-05-24 13:18:41.884+03	
a8bd87d6-06ec-000b-3ff4-b34f04acaf15	2021-05-24 13:19:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:19:01.877+03	2021-05-24 13:19:01.885+03	
ab9b2c5f-c3e8-9fe5-a473-83048d4d872e	2021-05-24 13:19:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:19:21.877+03	2021-05-24 13:19:21.883+03	
ef5171d8-0b0e-9816-e993-2608422f2760	2021-05-24 13:19:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:19:51.877+03	2021-05-24 13:19:51.883+03	
925e0e12-89d5-ff63-6500-95cc1ada98da	2021-05-24 13:20:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:20:01.877+03	2021-05-24 13:20:01.884+03	
21d7c420-bbfa-4b62-ab06-0c28dae48beb	2021-05-24 13:20:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:20:21.877+03	2021-05-24 13:20:21.886+03	
da95ef1e-24a3-f039-893a-f61912a0dc73	2021-05-24 13:20:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:20:41.877+03	2021-05-24 13:20:41.884+03	
f7605f2b-5783-d462-8c8a-86ae7c64f4f8	2021-05-24 13:21:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:21:01.877+03	2021-05-24 13:21:01.884+03	
771e74c2-4d66-65cb-05a7-3908c0eb2f0e	2021-05-24 13:21:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:21:31.877+03	2021-05-24 13:21:31.885+03	
3fc76d40-ed4c-5bc3-b741-aa7b77fb1434	2021-05-24 13:21:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:21:51.877+03	2021-05-24 13:21:51.883+03	
9fb0167d-8461-0752-86c4-ef267ed59d11	2021-05-24 13:22:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:22:11.877+03	2021-05-24 13:22:11.883+03	
ccca60e2-8e30-d695-bdb2-4cbdf3f73ffc	2021-05-24 13:22:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:22:31.877+03	2021-05-24 13:22:31.882+03	
5c1502dc-58e9-4757-70c7-61239d21dedc	2021-05-24 13:22:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:22:51.877+03	2021-05-24 13:22:51.883+03	
2288e050-23f3-2d78-4eb2-d33d12fc1b70	2021-05-24 13:23:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:23:12.877+03	2021-05-24 13:23:12.897+03	
bf08028b-d6c1-a549-105a-b9d5060cce7f	2021-05-24 13:23:22.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:23:22.879+03	2021-05-24 13:23:22.885+03	
7d7332f9-8241-105f-3420-64b116c2fdab	2021-05-24 13:23:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:23:43.877+03	2021-05-24 13:23:43.884+03	
a89c21d0-20f8-7210-b0a9-886865389b89	2021-05-24 13:24:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:24:04.877+03	2021-05-24 13:24:04.883+03	
d0b76ee4-da42-c4bd-57c7-55b0be03bd76	2021-05-24 13:24:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:24:24.877+03	2021-05-24 13:24:24.883+03	
77d46276-a6de-6fc8-f4ed-36e5767ee41a	2021-05-24 13:24:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:24:44.877+03	2021-05-24 13:24:44.884+03	
6fa8a3a9-2709-90e7-7b39-a9b6b6b5f859	2021-05-24 13:25:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:25:04.877+03	2021-05-24 13:25:04.884+03	
9b157b59-15cb-3319-5bf9-6ee99d9ff121	2021-05-24 13:25:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:25:24.877+03	2021-05-24 13:25:24.888+03	
36e5888a-6412-befe-f32e-377115f26846	2021-05-24 13:25:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:25:44.877+03	2021-05-24 13:25:44.883+03	
870c51bd-fdb6-1c70-dc26-1cf8df3c6fbc	2021-05-24 13:26:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:26:04.877+03	2021-05-24 13:26:04.884+03	
86f66e9d-d0c7-9bc5-c142-c6cdea666fce	2021-05-24 13:26:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:26:24.877+03	2021-05-24 13:26:24.883+03	
fbbcc850-34a2-9491-5cf3-bd6e082b94ab	2021-05-24 13:26:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:26:45.877+03	2021-05-24 13:26:45.885+03	
a4638143-d7f3-297b-25e8-0ef50e6dff94	2021-05-24 13:27:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:27:05.877+03	2021-05-24 13:27:05.884+03	
3d5111e3-f65e-cc65-c6d5-6f12b7450db5	2021-05-24 13:27:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:27:45.877+03	2021-05-24 13:27:46.193+03	
f26befa0-4073-cfce-fd60-9b09cfa895e0	2021-05-24 13:28:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:28:05.877+03	2021-05-24 13:28:05.934+03	
af3732f7-c2a4-3ac0-62b2-e59eeb8c3cdd	2021-05-24 13:28:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:28:25.877+03	2021-05-24 13:28:25.886+03	
b2236c31-fa33-9098-8055-142dd10144b4	2021-05-24 13:28:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:28:45.877+03	2021-05-24 13:28:45.884+03	
d5dd5757-6141-3c29-0938-5a3ed3d3e13b	2021-05-24 13:29:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:29:05.877+03	2021-05-24 13:29:05.884+03	
fdf0cded-9656-b302-728f-735b47975a35	2021-05-24 13:29:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:29:25.877+03	2021-05-24 13:29:25.885+03	
3a8f65d4-9165-28a8-cde8-dc104ffa97c3	2021-05-24 13:29:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:29:45.877+03	2021-05-24 13:29:45.882+03	
0fd3538e-d0c5-1ee1-cf7b-ece4f2c27a01	2021-05-24 13:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 13:30:00.877+03	2021-05-24 13:30:00.881+03	ERROR
f3d53e2f-6afe-1ab7-b741-7947826cd00d	2021-05-24 13:30:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:30:15.877+03	2021-05-24 13:30:16.175+03	
32c14a9a-4f2f-41dc-9752-6f2d042d98bf	2021-05-24 13:30:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:30:35.877+03	2021-05-24 13:30:35.884+03	
b2e10cfd-21aa-a238-3b36-cf7be947528b	2021-05-24 13:31:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:31:06.877+03	2021-05-24 13:31:06.883+03	
809628c2-3950-f1a2-9f7a-57bc971cc7a7	2021-05-24 13:31:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:31:26.877+03	2021-05-24 13:31:26.883+03	
f6087ae3-8d0c-4927-5516-61aa6a385b1e	2021-05-24 13:31:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:31:46.877+03	2021-05-24 13:31:46.883+03	
c2078c16-0f39-4360-ac6b-0bd624115635	2021-05-24 13:32:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:32:06.877+03	2021-05-24 13:32:06.883+03	
5ee26d74-ac41-0316-a174-9c00f57f54de	2021-05-24 13:32:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:32:26.877+03	2021-05-24 13:32:26.89+03	
7db99d8b-aadd-7b09-1dbe-6880e9d5a434	2021-05-24 13:32:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:32:56.878+03	2021-05-24 13:32:56.886+03	
f0d0fcaa-bae9-94c8-29dc-6062ae19df28	2021-05-24 13:33:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:33:18.877+03	2021-05-24 13:33:18.885+03	
0a95311e-995d-7fc2-c317-03064aa34ff3	2021-05-24 13:33:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:33:38.877+03	2021-05-24 13:33:38.882+03	
11451b4c-73eb-233a-9a33-0d516ca22d65	2021-05-24 13:33:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:33:58.877+03	2021-05-24 13:33:58.882+03	
f1d3ae81-5089-b82b-a879-6e52f7f1f81b	2021-05-24 13:34:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:34:18.877+03	2021-05-24 13:34:19.059+03	
e653f7a2-1863-5876-eb41-6b8f5fad0950	2021-05-24 13:34:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:34:28.877+03	2021-05-24 13:34:28.883+03	
ee6273e3-5cc6-7d96-6f43-e79973f91ac5	2021-05-24 13:34:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:34:48.877+03	2021-05-24 13:34:48.884+03	
82baaff4-2451-ca3c-88d7-0ad265881af4	2021-05-24 13:35:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:35:08.877+03	2021-05-24 13:35:08.887+03	
90671a25-9dea-8013-75c4-875e5d13d9be	2021-05-24 13:35:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:35:28.877+03	2021-05-24 13:35:28.884+03	
931d5f1e-73d9-780c-f250-e3c016d405b4	2021-05-24 13:35:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:35:48.877+03	2021-05-24 13:35:48.883+03	
701d415f-d6ab-51ac-e0fb-ebe161821738	2021-05-24 13:36:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:36:08.877+03	2021-05-24 13:36:08.883+03	
502c95ec-0479-5dce-26bd-d3926fc88b2c	2021-05-24 13:36:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:36:28.877+03	2021-05-24 13:36:28.883+03	
26b5807d-72c8-f881-b1ae-6c3af74016c5	2021-05-24 13:36:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:36:48.877+03	2021-05-24 13:36:48.883+03	
aa52e3a0-d146-68e5-9b1d-03e01bdcd0b0	2021-05-24 13:37:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:37:08.877+03	2021-05-24 13:37:08.883+03	
b8f9bb2c-a6f5-3272-ae87-67800f1cf8bd	2021-05-24 13:37:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:37:28.877+03	2021-05-24 13:37:28.883+03	
0ebcba86-be0d-612b-7090-efd5702ba248	2021-05-24 13:37:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:37:48.877+03	2021-05-24 13:37:48.883+03	
022abc31-18ba-51dd-d9e4-f695e8205cf6	2021-05-24 13:38:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:38:08.877+03	2021-05-24 13:38:08.883+03	
606fb2f5-b8c6-7620-dfe9-33166aa71648	2021-05-24 13:38:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:38:28.877+03	2021-05-24 13:38:28.884+03	
26e75552-3693-c930-3993-ff409a85430e	2021-05-24 13:38:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:38:48.877+03	2021-05-24 13:38:48.883+03	
389447be-9a57-0dc3-f357-a33652ff5fdb	2021-05-24 13:39:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:39:08.877+03	2021-05-24 13:39:08.885+03	
84c4c5bb-5423-727f-b2d5-11dad92153d4	2021-05-24 13:39:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:39:28.877+03	2021-05-24 13:39:28.882+03	
50b75ddc-c0f5-e661-2ad8-59de117cf708	2021-05-24 13:39:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:39:48.877+03	2021-05-24 13:39:48.883+03	
9a468fd6-1167-4073-1cc9-0d8b635a559a	2021-05-24 13:38:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:38:38.877+03	2021-05-24 13:38:38.885+03	
705d1a13-c127-8969-e86e-a22957085841	2021-05-24 13:38:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:38:58.877+03	2021-05-24 13:38:59.197+03	
a98c6278-ff01-a74d-58e6-247594dc04b8	2021-05-24 13:39:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:39:18.877+03	2021-05-24 13:39:18.883+03	
0d5b97bb-ac02-ebc2-3b0e-71fce2da69dd	2021-05-24 13:39:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:39:38.877+03	2021-05-24 13:39:38.882+03	
d6988f2a-4986-f1ce-7560-1ebbd4adf7a9	2021-05-24 13:39:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:39:58.877+03	2021-05-24 13:39:58.883+03	
d9fcd3cd-0db4-7b29-f98b-f40e8b3b8a74	2021-05-24 13:40:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:40:08.877+03	2021-05-24 13:40:08.885+03	
fb3e4be8-0dc2-89a5-9f5e-dd225a502d91	2021-05-24 13:40:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:40:28.877+03	2021-05-24 13:40:28.886+03	
cc9323ca-9b50-2215-6d0e-f616368b09e2	2021-05-24 13:40:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:40:48.877+03	2021-05-24 13:40:48.883+03	
a008b61f-574e-1fa4-6ce3-b4bee15b4811	2021-05-24 13:41:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:41:09.877+03	2021-05-24 13:41:09.885+03	
3beee2e4-f1c7-b98a-e434-f7a70a970523	2021-05-24 13:41:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:41:29.877+03	2021-05-24 13:41:29.883+03	
c677713c-dfc5-d179-1ef8-3b7a6581893f	2021-05-24 13:41:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:41:49.877+03	2021-05-24 13:41:49.883+03	
7345a3e9-9fca-264b-a468-9627fe783733	2021-05-24 13:42:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:42:10.877+03	2021-05-24 13:42:10.882+03	
e61a6a23-9692-0ee6-a979-3544a0071d42	2021-05-24 13:42:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:42:30.877+03	2021-05-24 13:42:30.886+03	
80bc475c-fe04-18fc-45e5-27aa359f13ac	2021-05-24 13:42:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:42:50.877+03	2021-05-24 13:42:50.883+03	
84a57e0b-60d4-3ed1-a0d0-c21a2061982b	2021-05-24 13:43:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:43:10.877+03	2021-05-24 13:43:10.884+03	
01473a95-be4b-15ec-ce2d-6ae3f58d1767	2021-05-24 13:43:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:43:30.877+03	2021-05-24 13:43:30.885+03	
cde6b3a1-3aae-fc1f-5955-e3b79157d471	2021-05-24 13:43:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:43:50.877+03	2021-05-24 13:43:50.883+03	
6c3ae84b-65c9-64c0-e722-1d7db937d6cf	2021-05-24 13:44:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:44:10.877+03	2021-05-24 13:44:10.883+03	
ccb1c798-ab29-a36d-9a3c-2ee1e85344b5	2021-05-24 13:44:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:44:30.877+03	2021-05-24 13:44:30.883+03	
afbd58b0-9c66-e616-c9a5-92ec1327689d	2021-05-24 13:44:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:44:50.877+03	2021-05-24 13:44:50.884+03	
365d2cc0-ffe7-ddb1-d7be-40a365cb25b7	2021-05-24 13:45:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:45:10.877+03	2021-05-24 13:45:10.883+03	
fefab39f-0d98-93d7-f76d-ebaf06c02c49	2021-05-24 13:45:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:45:30.877+03	2021-05-24 13:45:30.888+03	
0b7deacf-7c04-0768-477d-c958e66e8fe8	2021-05-24 13:45:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:45:50.877+03	2021-05-24 13:45:50.884+03	
e339a323-939d-2c00-2983-c7b9194be0f3	2021-05-24 13:46:10.886	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:46:10.885+03	2021-05-24 13:46:10.891+03	
3d0aa73d-d467-a595-d80c-0cf7aac607d3	2021-05-24 13:46:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:46:31.877+03	2021-05-24 13:46:31.885+03	
481ee476-2bab-bac6-f8eb-ab48b9081f3d	2021-05-24 13:46:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:46:51.877+03	2021-05-24 13:46:51.883+03	
02b9d0f5-cf6a-bd47-7a50-f1fa74e83517	2021-05-24 13:47:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:47:11.877+03	2021-05-24 13:47:11.884+03	
741a93b9-e51c-5207-f6ca-35605a61e68b	2021-05-24 13:47:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:47:31.877+03	2021-05-24 13:47:31.884+03	
7d477609-3016-0ceb-a6fc-ab1de22a768a	2021-05-24 13:47:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:47:51.877+03	2021-05-24 13:47:51.883+03	
4f6f4e46-002e-3d00-ca03-c3a56b87ec9a	2021-05-24 13:48:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:48:11.877+03	2021-05-24 13:48:11.884+03	
ccd29dde-9951-4275-b4a5-bd7eee2e8fa4	2021-05-24 13:48:32.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:48:32.877+03	2021-05-24 13:48:32.883+03	
bfca8e5c-b97f-cc82-752b-039e4c3c7ec5	2021-05-24 13:48:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:48:53.877+03	2021-05-24 13:48:53.882+03	
639680be-eae1-34c3-e078-2b7328ffd957	2021-05-24 13:49:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:49:13.877+03	2021-05-24 13:49:13.885+03	
de4a6f93-0a4d-13fd-1bdf-5ed433eebe74	2021-05-24 13:49:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:49:33.877+03	2021-05-24 13:49:33.883+03	
4ef68572-dfea-cbb8-d469-30688f16e055	2021-05-24 13:49:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:49:53.877+03	2021-05-24 13:49:53.893+03	
b90e0f68-0c09-8242-b9b1-8b430a83527c	2021-05-24 13:50:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:50:03.877+03	2021-05-24 13:50:03.882+03	
fb96856f-42a1-996c-c631-b5d60408be52	2021-05-24 13:50:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:50:23.877+03	2021-05-24 13:50:24.2+03	
360473f5-1440-cd9f-b424-322b12041634	2021-05-24 13:50:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:50:43.877+03	2021-05-24 13:50:43.888+03	
ddd3a8c2-b310-77d7-4e1e-53eda7092a00	2021-05-24 13:51:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:51:03.877+03	2021-05-24 13:51:03.89+03	
5ec910ca-0f24-ef88-59ef-8bb3ae125f2f	2021-05-24 13:51:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:51:23.877+03	2021-05-24 13:51:23.898+03	
ed95d0ff-34be-225e-f134-16f08bf3bdf0	2021-05-24 13:51:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:51:43.877+03	2021-05-24 13:51:43.883+03	
6ffba100-8e63-7a9b-a9da-dac1b339bfd6	2021-05-24 13:52:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:52:03.877+03	2021-05-24 13:52:03.883+03	
98e4539a-1255-ca1a-2fcd-c5abe8a2343e	2021-05-24 13:52:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:52:23.877+03	2021-05-24 13:52:23.884+03	
0da13801-ed96-290d-f5e9-0a14cced8720	2021-05-24 13:52:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:52:43.877+03	2021-05-24 13:52:43.887+03	
d99c9df8-7fa0-4411-5454-ad398abd8a5b	2021-05-24 13:53:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:53:03.877+03	2021-05-24 13:53:03.883+03	
33d3e549-17ec-c7ec-487c-cd348da2e265	2021-05-24 13:53:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:53:23.877+03	2021-05-24 13:53:23.884+03	
af8b2719-c16f-6dd4-348b-725500d29c1e	2021-05-24 13:53:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:53:43.877+03	2021-05-24 13:53:43.882+03	
abafaedd-687a-cb09-5bcc-2629151c96ca	2021-05-24 13:54:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:54:03.877+03	2021-05-24 13:54:03.955+03	
ced82d0a-1a28-6de3-3146-e866afe4c1c4	2021-05-24 13:54:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:54:23.877+03	2021-05-24 13:54:23.887+03	
c03b6bc0-257d-4d87-67d5-ee5de0c0e74e	2021-05-24 13:54:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:54:43.877+03	2021-05-24 13:54:44.153+03	
10ce259b-54eb-5318-2e1c-a12e143090cb	2021-05-24 13:55:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:55:03.877+03	2021-05-24 13:55:03.884+03	
b57e200c-3a38-deb7-a385-761b12c6cbf3	2021-05-24 13:55:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:55:23.877+03	2021-05-24 13:55:23.883+03	
6059ac90-791e-8994-2e0e-7c810a1b2c87	2021-05-24 13:55:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:55:43.877+03	2021-05-24 13:55:43.884+03	
c4fa748e-0b5f-6421-13d0-86a1795c6a9f	2021-05-24 13:56:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:56:03.877+03	2021-05-24 13:56:03.883+03	
9c8b97fe-4de2-fd6e-7e77-97ca79e00d22	2021-05-24 13:56:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:56:23.877+03	2021-05-24 13:56:23.883+03	
bfc269db-95bf-0277-7d71-2437e04984cb	2021-05-24 13:56:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:56:43.877+03	2021-05-24 13:56:43.927+03	
184b5611-e67a-68eb-ad2b-5a4bcdc697f7	2021-05-24 13:57:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:57:03.877+03	2021-05-24 13:57:03.885+03	
366d18bf-bb09-eeaf-216b-c9ae9329cdf5	2021-05-24 13:57:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:57:23.877+03	2021-05-24 13:57:23.884+03	
c7d23558-1237-f0ce-93cd-a62a0a3a75f4	2021-05-24 13:57:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:57:33.877+03	2021-05-24 13:57:33.883+03	
20a09906-23c6-d431-5b67-2d28dce66c04	2021-05-24 13:57:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:57:53.877+03	2021-05-24 13:57:53.883+03	
5364906e-c9ef-4f0a-06c1-ac8c32c20b45	2021-05-24 13:58:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:58:13.877+03	2021-05-24 13:58:13.883+03	
d4e5ce2a-ab0e-1875-f925-b3047ba27e65	2021-05-24 13:58:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:58:33.877+03	2021-05-24 13:58:33.884+03	
e7326dce-70eb-b2ed-01c5-e893e096b90e	2021-05-24 13:58:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:58:53.877+03	2021-05-24 13:58:53.883+03	
76a0d2f3-1018-932d-328e-2363f8c88190	2021-05-24 13:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 13:40:00.877+03	2021-05-24 13:40:00.883+03	ERROR
dbd74723-d3fd-e09a-b36d-1c8869d3a841	2021-05-24 13:40:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:40:18.877+03	2021-05-24 13:40:19.107+03	
bde18274-3168-8d01-7833-ce67d8ca4522	2021-05-24 13:40:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:40:38.877+03	2021-05-24 13:40:38.883+03	
117939a8-9661-eaed-9b15-af120966e8ef	2021-05-24 13:40:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:40:58.877+03	2021-05-24 13:40:59.126+03	
67858a99-d120-2916-a748-861357711664	2021-05-24 13:41:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:41:19.877+03	2021-05-24 13:41:19.885+03	
d4513982-1524-9bb2-5cd4-c8379341c6c2	2021-05-24 13:41:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:41:39.877+03	2021-05-24 13:41:39.882+03	
afda59f5-c187-d573-187f-36a130f6b540	2021-05-24 13:41:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:41:59.877+03	2021-05-24 13:42:00.126+03	
2e0befdd-9259-d695-b7bf-bdb6e7529463	2021-05-24 13:42:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:42:20.877+03	2021-05-24 13:42:20.883+03	
554fd8ce-22b0-5cd7-ddda-a1cf142beb85	2021-05-24 13:42:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:42:40.877+03	2021-05-24 13:42:40.883+03	
895a59e9-eb2f-57c2-6d01-f27efa4750ee	2021-05-24 13:43:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:43:00.877+03	2021-05-24 13:43:00.885+03	
d6ab46dd-a588-274c-d1ad-f37c0fb380a1	2021-05-24 13:43:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:43:20.877+03	2021-05-24 13:43:20.912+03	
387cea34-3f50-d316-f8e7-d9b6a446dd91	2021-05-24 13:43:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:43:40.877+03	2021-05-24 13:43:40.882+03	
a4e2cc37-d883-abd9-c68d-8694fc26724f	2021-05-24 13:44:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:44:00.877+03	2021-05-24 13:44:00.883+03	
8d3da214-afd6-9eff-02ee-80296db212b9	2021-05-24 13:44:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:44:20.877+03	2021-05-24 13:44:20.883+03	
a51ab961-9e82-1c2f-75b8-f3b652951d9b	2021-05-24 13:44:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:44:40.877+03	2021-05-24 13:44:40.884+03	
39adbe18-7ffd-60cc-bb57-86cc97b87d45	2021-05-24 13:45:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:45:00.877+03	2021-05-24 13:45:00.883+03	
1e455fdc-0268-77b1-6404-9c0901ba3092	2021-05-24 13:45:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:45:20.877+03	2021-05-24 13:45:20.884+03	
53e9a93a-c480-8082-89fc-fb85a6b89c99	2021-05-24 13:45:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:45:40.877+03	2021-05-24 13:45:40.882+03	
8eed61f1-9daf-50d3-f426-68fbf68202b8	2021-05-24 13:46:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:46:00.877+03	2021-05-24 13:46:00.885+03	
6f348392-feba-2a7a-8b25-0133b8ba839e	2021-05-24 13:46:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:46:21.877+03	2021-05-24 13:46:21.884+03	
5734be8e-b37f-d1ad-962f-1f6e12027db8	2021-05-24 13:46:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:46:41.877+03	2021-05-24 13:46:41.884+03	
673aee5f-dd38-0b7d-ef6d-2b546e62bc50	2021-05-24 13:47:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:47:01.877+03	2021-05-24 13:47:01.885+03	
ec9e48ba-f1cc-1495-8d2e-55839471e1fa	2021-05-24 13:47:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:47:21.877+03	2021-05-24 13:47:21.883+03	
47ddd050-4fd9-5c25-2f11-f610c0d5c504	2021-05-24 13:47:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:47:41.877+03	2021-05-24 13:47:41.882+03	
00dcc541-ce9e-2b99-067a-d56a9b8e4e23	2021-05-24 13:48:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:48:01.877+03	2021-05-24 13:48:01.885+03	
e3e3219e-e085-6d9f-ad59-6e780fb8515e	2021-05-24 13:48:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:48:22.877+03	2021-05-24 13:48:22.883+03	
b727dedf-d25c-754b-8864-c1d83a837503	2021-05-24 13:48:42.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:48:42.878+03	2021-05-24 13:48:42.884+03	
efbd9b0e-cce5-2810-496e-4bec0a475de4	2021-05-24 13:49:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:49:03.877+03	2021-05-24 13:49:03.883+03	
a056a4bb-e6a6-ce80-da8b-38d60975f6a1	2021-05-24 13:49:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:49:23.877+03	2021-05-24 13:49:24.134+03	
65cfdf2e-caa9-8135-8c5e-a156033e4fdc	2021-05-24 13:49:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:49:43.877+03	2021-05-24 13:49:43.882+03	
ce80ee9a-de86-5fa7-6c5f-068dfe85e3b9	2021-05-24 13:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 13:50:00.877+03	2021-05-24 13:50:00.898+03	ERROR
f70d6978-1c03-292a-ef40-998e0942d3cf	2021-05-24 13:50:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:50:13.877+03	2021-05-24 13:50:14.242+03	
33df8f78-6657-0aad-19b9-2ebe841216ac	2021-05-24 13:50:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:50:33.877+03	2021-05-24 13:50:33.898+03	
fdb116a7-3b32-c01e-edab-3acac31a7dae	2021-05-24 13:50:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:50:53.877+03	2021-05-24 13:50:53.899+03	
2fba6faa-edce-bb21-163d-23894e49e5ba	2021-05-24 13:51:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:51:13.877+03	2021-05-24 13:51:13.9+03	
2054c3b3-3975-5e0c-eef7-eef2837e0979	2021-05-24 13:51:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:51:33.877+03	2021-05-24 13:51:33.883+03	
9ffb54d5-34ca-0082-ebb3-8d1c907867d4	2021-05-24 13:51:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:51:53.877+03	2021-05-24 13:51:53.883+03	
1e93b340-84dd-8ede-0cc2-3acb81ddc58d	2021-05-24 13:52:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:52:13.877+03	2021-05-24 13:52:13.885+03	
49a1b8cf-37ca-cd1d-422d-8d30ca6654e2	2021-05-24 13:52:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:52:33.877+03	2021-05-24 13:52:33.886+03	
db71a482-21f0-8323-449d-1eb33437a4e7	2021-05-24 13:52:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:52:53.877+03	2021-05-24 13:52:53.884+03	
d4f8946b-1832-497a-2982-dfea305faadf	2021-05-24 13:53:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:53:13.877+03	2021-05-24 13:53:13.886+03	
c4a4f6fb-bb2e-aac2-041f-770f534122ae	2021-05-24 13:53:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:53:33.877+03	2021-05-24 13:53:33.883+03	
b205092d-6459-d414-f47c-dad97cc138cd	2021-05-24 13:53:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:53:53.877+03	2021-05-24 13:53:53.883+03	
45171abd-db92-65ba-b76d-67e6cf7f8983	2021-05-24 13:54:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:54:13.877+03	2021-05-24 13:54:13.885+03	
bdf26371-bca9-1316-5582-5851be65eddd	2021-05-24 13:54:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:54:33.877+03	2021-05-24 13:54:33.883+03	
0b6e7b74-2454-c815-a5bd-b1d94f97a50c	2021-05-24 13:54:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:54:53.877+03	2021-05-24 13:54:53.884+03	
3d278a0a-a695-f5db-65a4-8c411878d6ce	2021-05-24 13:55:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:55:13.877+03	2021-05-24 13:55:13.883+03	
0483e353-4eca-f0ae-681a-6fa8e00cd681	2021-05-24 13:55:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:55:33.877+03	2021-05-24 13:55:33.885+03	
a030814d-d930-d79e-9dfb-8467013bebe9	2021-05-24 13:55:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:55:53.877+03	2021-05-24 13:55:53.886+03	
6e13843a-e2a9-c680-d91d-b1a41fb66271	2021-05-24 13:56:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:56:13.877+03	2021-05-24 13:56:13.884+03	
2f8caec6-3496-cddb-0ec2-517585b18733	2021-05-24 13:56:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:56:33.877+03	2021-05-24 13:56:33.884+03	
6819dfef-629b-3965-bee3-b46a70352d88	2021-05-24 13:56:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:56:53.877+03	2021-05-24 13:56:53.89+03	
4b4ad563-5d3f-b255-a9f7-5ecc3a4fb23c	2021-05-24 13:57:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:57:13.877+03	2021-05-24 13:57:13.883+03	
b68b02ce-e2f2-f223-0a53-81e77a32fe51	2021-05-24 13:57:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:57:43.877+03	2021-05-24 13:57:43.883+03	
46674326-0bb3-b94b-14ad-72d01b19d1b7	2021-05-24 13:58:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:58:03.877+03	2021-05-24 13:58:03.883+03	
e952d40f-f5e4-fae1-d897-52ef24fbd0c6	2021-05-24 13:58:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:58:23.877+03	2021-05-24 13:58:23.884+03	
f3aa7850-86b5-1098-2bac-c9d1bf3a6e52	2021-05-24 13:58:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:58:43.877+03	2021-05-24 13:58:43.883+03	
70d99cea-f357-3cc6-7122-75cbad1107fc	2021-05-24 13:59:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:59:03.877+03	2021-05-24 13:59:04.163+03	
7fce33f6-aea1-57f3-2172-bc0f82d40023	2021-05-24 13:59:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:59:24.877+03	2021-05-24 13:59:24.885+03	
a96d19aa-78b4-9889-080a-304e22b047b4	2021-05-24 13:59:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:59:44.877+03	2021-05-24 13:59:44.883+03	
2072e73a-738e-1bd3-8529-ad53346c987d	2021-05-24 14:00:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 14:00:00.877+03	2021-05-24 14:00:00.883+03	ERROR
6e5fb365-eef4-d546-ffbf-28234407c166	2021-05-24 14:00:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:00:14.877+03	2021-05-24 14:00:14.883+03	
92e66368-178f-f2b8-80b9-653cbefb53c4	2021-05-24 14:00:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:00:34.877+03	2021-05-24 14:00:34.883+03	
931cf011-ec9a-401d-d468-9a00fdb94f63	2021-05-24 13:59:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:59:14.877+03	2021-05-24 13:59:14.884+03	
cce4303a-9c3d-3a06-84c3-13d8ee954d3d	2021-05-24 13:59:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:59:34.877+03	2021-05-24 13:59:34.882+03	
0dac35ba-6714-d6f4-325e-c562daa76075	2021-05-24 13:59:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 13:59:54.877+03	2021-05-24 13:59:54.884+03	
312ed8bc-fa74-dc84-c6ad-0d3b8e9c3b7a	2021-05-24 14:00:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:00:04.877+03	2021-05-24 14:00:04.884+03	
972bf2a5-170a-940d-b536-13bebcdd5541	2021-05-24 14:00:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:00:24.877+03	2021-05-24 14:00:24.883+03	
fcba1d03-b205-5c25-76f2-e873b2defbc7	2021-05-24 14:00:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:00:44.877+03	2021-05-24 14:00:44.883+03	
ef3b22ab-7699-aa7c-3e05-6a0c4699c982	2021-05-24 14:01:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:01:04.877+03	2021-05-24 14:01:05.203+03	
6ec2f10c-0cfa-72bf-d8d3-1b48f470d37f	2021-05-24 14:01:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:01:24.877+03	2021-05-24 14:01:24.883+03	
29deab6f-8e47-165c-5864-86797645d4a8	2021-05-24 14:01:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:01:44.877+03	2021-05-24 14:01:44.883+03	
bc9654d2-aa94-e04b-f7b5-11257dae3d27	2021-05-24 14:02:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:02:04.877+03	2021-05-24 14:02:04.883+03	
1d953853-b958-20e0-2068-efec7d64450a	2021-05-24 14:02:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:02:24.877+03	2021-05-24 14:02:25.113+03	
a23ccebd-fd55-7376-4609-c91e3dfc0a8d	2021-05-24 14:02:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:02:44.877+03	2021-05-24 14:02:44.884+03	
e0309e72-6c61-8f68-229f-df2e483929c7	2021-05-24 14:03:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:03:04.877+03	2021-05-24 14:03:04.883+03	
c1ccacd2-22a3-0817-9d2e-258fd2169620	2021-05-24 14:03:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:03:25.876+03	2021-05-24 14:03:25.882+03	
89390145-fa4e-1b8e-cbaa-b3a80d52e85a	2021-05-24 14:03:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:03:45.877+03	2021-05-24 14:03:45.885+03	
1e4e645d-0b49-ce68-35a8-76ba1f714a69	2021-05-24 14:04:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:04:05.877+03	2021-05-24 14:04:06.215+03	
c04178e0-60af-d627-eaba-a6a9a8b5d4ab	2021-05-24 14:04:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:04:25.877+03	2021-05-24 14:04:26.114+03	
d8768d80-ac41-0732-d31b-6e3bb8c6b14d	2021-05-24 14:04:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:04:45.877+03	2021-05-24 14:04:45.885+03	
4f7999c8-157e-a076-19e0-8ad89edea724	2021-05-24 14:05:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:05:05.877+03	2021-05-24 14:05:05.884+03	
0de863c4-b4b8-4b34-ff26-f79f182d3f3d	2021-05-24 14:05:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:05:25.877+03	2021-05-24 14:05:25.883+03	
e5b08d0e-50d1-bd96-8f57-4469fba05b0f	2021-05-24 14:05:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:05:45.877+03	2021-05-24 14:05:45.883+03	
024ff729-0340-8c54-7709-9e0a23deeb34	2021-05-24 14:06:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:06:05.877+03	2021-05-24 14:06:05.883+03	
a27e422d-a34e-4ab4-29cf-81c0e2a66833	2021-05-24 14:06:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:06:25.877+03	2021-05-24 14:06:25.883+03	
dc394127-b32b-c21a-fb5f-53b25b1d3acc	2021-05-24 14:06:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:06:45.877+03	2021-05-24 14:06:45.883+03	
e48fcfdf-3c8b-2111-1504-2bd18a894f34	2021-05-24 14:07:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:07:05.877+03	2021-05-24 14:07:05.884+03	
95941375-2842-7841-d313-ff21bf3d82f0	2021-05-24 14:07:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:07:25.877+03	2021-05-24 14:07:25.883+03	
cc3246f0-da12-128b-db99-e967250759dc	2021-05-24 14:07:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:07:45.877+03	2021-05-24 14:07:45.886+03	
f858118b-06b7-bb3c-d284-8c944a88c6ae	2021-05-24 14:08:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:08:05.877+03	2021-05-24 14:08:05.883+03	
15ca9a73-933a-d44f-876d-16b0fa817d36	2021-05-24 14:08:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:08:35.877+03	2021-05-24 14:08:35.885+03	
a5975a15-0393-8450-1cca-611f72f01eb8	2021-05-24 14:08:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:08:55.877+03	2021-05-24 14:08:55.884+03	
43185ed7-898d-ad00-03dc-914fcd802125	2021-05-24 14:09:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:09:15.877+03	2021-05-24 14:09:16.207+03	
6d166307-2a86-36cc-7e8e-6f51d500d5e0	2021-05-24 14:09:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:09:45.877+03	2021-05-24 14:09:45.886+03	
e242a7c4-5dfb-1fa3-6e44-8f1140714952	2021-05-24 14:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 14:10:00.877+03	2021-05-24 14:10:00.882+03	ERROR
6e74c26d-9f45-7eb0-844d-16fc705fb503	2021-05-24 14:10:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:10:15.877+03	2021-05-24 14:10:15.885+03	
f183c9d3-db15-0c7f-7e52-6e521118f012	2021-05-24 14:10:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:10:35.877+03	2021-05-24 14:10:35.883+03	
ac49498d-25d2-e605-13ff-153345d6ee50	2021-05-24 14:10:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:10:55.877+03	2021-05-24 14:10:55.886+03	
e44eb758-9a9b-53e0-5f08-ff66b833edf8	2021-05-24 14:11:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:11:15.877+03	2021-05-24 14:11:15.884+03	
aa82af07-e4b4-2966-64ef-9f11df686562	2021-05-24 14:11:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:11:36.877+03	2021-05-24 14:11:36.883+03	
84121934-2845-f408-e6d8-67f69493b1dd	2021-05-24 14:11:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:11:56.877+03	2021-05-24 14:11:56.883+03	
4a27f324-e6d5-6f74-e6d7-f5e923f42fb1	2021-05-24 14:12:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:12:16.877+03	2021-05-24 14:12:17.128+03	
a05de3c7-fde0-bf02-4e53-20a385bdf227	2021-05-24 14:12:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:12:36.877+03	2021-05-24 14:12:36.883+03	
fe10541a-ca75-98d0-27c5-a7115fe77fbe	2021-05-24 14:12:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:12:56.877+03	2021-05-24 14:12:56.883+03	
795bb8cc-1ec8-c236-ed39-94b0c5b5780c	2021-05-24 14:13:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:13:16.877+03	2021-05-24 14:13:16.923+03	
7252176d-03b9-e9ee-3f70-80f7a82bbfdb	2021-05-24 14:13:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:13:36.877+03	2021-05-24 14:13:36.883+03	
c249adad-10b9-ff3b-116f-473c2bb937a2	2021-05-24 14:13:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:13:56.877+03	2021-05-24 14:13:56.885+03	
af6bdc88-b9a8-001c-dd41-8c0b107d81f8	2021-05-24 14:14:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:14:16.877+03	2021-05-24 14:14:16.883+03	
e58339f2-e5fd-9621-30ab-33a388bffc81	2021-05-24 14:14:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:14:36.877+03	2021-05-24 14:14:36.884+03	
e4c835ce-19b0-4ddd-1db1-75b6c839034d	2021-05-24 14:14:57.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:14:57.879+03	2021-05-24 14:14:57.888+03	
f165cb37-2daa-fb00-a908-c0699afc4d93	2021-05-24 14:15:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:15:18.877+03	2021-05-24 14:15:18.884+03	
661f9298-dbd3-8678-c883-de304e0c946d	2021-05-24 14:15:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:15:38.877+03	2021-05-24 14:15:38.882+03	
41a96613-3430-303f-628c-cb7785b1dec5	2021-05-24 14:15:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:15:58.877+03	2021-05-24 14:15:58.884+03	
8a747a76-483a-484c-d96a-878e4c259ec0	2021-05-24 14:16:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:16:18.877+03	2021-05-24 14:16:18.882+03	
575ff913-0b88-a84d-e966-97a6bb267304	2021-05-24 14:16:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:16:38.877+03	2021-05-24 14:16:38.886+03	
09570b78-8cf2-3edf-b77b-5e89a8f284d5	2021-05-24 14:16:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:16:58.877+03	2021-05-24 14:16:58.885+03	
ed269d11-fb6d-b5e2-ad1c-4d392534dc60	2021-05-24 14:17:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:17:18.877+03	2021-05-24 14:17:18.883+03	
772a75ca-498c-ae5d-4f7f-b69697a1a7cd	2021-05-24 14:17:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:17:38.877+03	2021-05-24 14:17:38.885+03	
8622df44-f879-59ee-55bd-b5b59640b68b	2021-05-24 14:17:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:17:58.877+03	2021-05-24 14:17:58.883+03	
1890ed5a-ffdc-9b57-be74-991367150d6e	2021-05-24 14:18:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:18:18.877+03	2021-05-24 14:18:18.884+03	
bf5f8faa-db06-919c-649a-831917ed69aa	2021-05-24 14:18:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:18:38.877+03	2021-05-24 14:18:38.884+03	
c342d359-1e13-5ed3-8142-4061db27cc7f	2021-05-24 14:18:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:18:58.878+03	2021-05-24 14:18:58.886+03	
18dd117f-90c1-72c3-fe9d-5a5e9abb317a	2021-05-24 14:19:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:19:19.877+03	2021-05-24 14:19:19.89+03	
b29da0f1-b20f-0ce8-d649-a13f52a22284	2021-05-24 14:19:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:19:39.877+03	2021-05-24 14:19:39.884+03	
90e8b526-374a-7009-135e-ccc890ea9240	2021-05-24 14:20:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:20:00.877+03	2021-05-24 14:20:00.885+03	
9ccf9747-8db7-c1ea-8dcd-7598d5a081fc	2021-05-24 14:00:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:00:54.877+03	2021-05-24 14:00:55.237+03	
8168427a-fe10-197d-b526-28bca3c03df5	2021-05-24 14:01:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:01:14.877+03	2021-05-24 14:01:14.883+03	
efa003ee-e5c9-d2b9-2778-6077335ca5ae	2021-05-24 14:01:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:01:34.877+03	2021-05-24 14:01:34.882+03	
855c35ae-a27e-9609-26cd-30003613d2a3	2021-05-24 14:01:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:01:54.877+03	2021-05-24 14:01:54.884+03	
1559028a-7fc0-79c0-3060-55105adc7516	2021-05-24 14:02:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:02:14.877+03	2021-05-24 14:02:14.883+03	
014a7ccc-06cf-05d8-7f3b-e5028e730441	2021-05-24 14:02:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:02:34.877+03	2021-05-24 14:02:34.892+03	
8f0c56c5-c979-7d59-818d-3de6cf79d9e8	2021-05-24 14:02:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:02:54.877+03	2021-05-24 14:02:54.883+03	
b228e625-66bc-1f73-b21b-6a53f6bddcb8	2021-05-24 14:03:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:03:14.877+03	2021-05-24 14:03:15.513+03	
2c20fad1-b341-c65b-1a35-02da49176ebc	2021-05-24 14:03:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:03:35.877+03	2021-05-24 14:03:35.884+03	
a9f0d01d-b2d5-759b-bdda-f23feba8bfca	2021-05-24 14:03:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:03:55.877+03	2021-05-24 14:03:55.883+03	
3e1c5328-b6df-e96a-bfe0-cfefa2e82156	2021-05-24 14:04:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:04:15.877+03	2021-05-24 14:04:15.883+03	
1098b144-0f92-d648-adcd-edb854e29ce8	2021-05-24 14:04:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:04:35.877+03	2021-05-24 14:04:35.884+03	
8f1319df-5b0d-6aa0-ff08-52abc9b30706	2021-05-24 14:04:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:04:55.877+03	2021-05-24 14:04:55.883+03	
42d1b882-fa87-3e8b-e726-efdf28600196	2021-05-24 14:05:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:05:15.877+03	2021-05-24 14:05:15.883+03	
37498f5d-ec58-8c87-5c52-9af7a74b13de	2021-05-24 14:05:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:05:35.877+03	2021-05-24 14:05:35.883+03	
6f583e75-2583-c336-6130-72951050a04a	2021-05-24 14:05:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:05:55.877+03	2021-05-24 14:05:55.884+03	
a61daae9-6559-a58c-fb1a-72627f1e8bef	2021-05-24 14:06:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:06:15.877+03	2021-05-24 14:06:15.891+03	
de67993b-7949-16b3-55bc-c9502008e5c8	2021-05-24 14:06:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:06:35.877+03	2021-05-24 14:06:35.885+03	
9cf2a4e2-234e-a13a-3aa0-e9818ab01183	2021-05-24 14:06:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:06:55.877+03	2021-05-24 14:06:55.884+03	
7be6d4c4-360d-acba-eeae-cc28e03fd213	2021-05-24 14:07:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:07:15.877+03	2021-05-24 14:07:15.883+03	
18ae3523-5105-24f7-6aa3-90653cef7899	2021-05-24 14:07:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:07:35.877+03	2021-05-24 14:07:35.883+03	
5020e82f-7d71-868f-20b7-9963d0d183f4	2021-05-24 14:07:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:07:55.877+03	2021-05-24 14:07:55.883+03	
1985109f-fe96-93f3-8a91-53ad2cafcdd6	2021-05-24 14:08:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:08:15.877+03	2021-05-24 14:08:15.902+03	
95401ee1-b99c-6722-714a-da0a4babb9bd	2021-05-24 14:08:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:08:25.877+03	2021-05-24 14:08:25.883+03	
ffc798ac-fd4b-7ba8-17b0-875fe45c37cd	2021-05-24 14:08:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:08:45.877+03	2021-05-24 14:08:46.232+03	
1fd15692-8ebd-1970-2cb0-66b7acc493bb	2021-05-24 14:09:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:09:05.877+03	2021-05-24 14:09:05.886+03	
8302d29f-f82f-9c06-f793-d1932e4b3d2f	2021-05-24 14:09:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:09:25.877+03	2021-05-24 14:09:26.186+03	
72fdc7ed-b9e0-2685-117f-90ee016f839c	2021-05-24 14:09:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:09:35.877+03	2021-05-24 14:09:35.883+03	
3a907f3f-287f-011c-e597-21e40840fb33	2021-05-24 14:09:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:09:55.877+03	2021-05-24 14:09:55.884+03	
db417cb6-74e1-dc56-30bb-1b52c4b624ca	2021-05-24 14:10:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:10:05.877+03	2021-05-24 14:10:05.913+03	
5383712e-ccb3-ac6c-be99-c6f1ddea0c14	2021-05-24 14:10:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:10:25.877+03	2021-05-24 14:10:25.885+03	
73fbbf34-8319-2d40-2f51-fa7f1c497585	2021-05-24 14:10:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:10:45.877+03	2021-05-24 14:10:45.885+03	
183a16d7-88ca-595f-6eae-e155bba27baf	2021-05-24 14:11:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:11:05.877+03	2021-05-24 14:11:05.884+03	
fb899e86-bb9f-ad91-ba3f-118230eaa63d	2021-05-24 14:11:25.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:11:25.878+03	2021-05-24 14:11:25.886+03	
686b4852-b33b-bac6-975f-ca859a731ea3	2021-05-24 14:11:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:11:46.877+03	2021-05-24 14:11:46.885+03	
a08d5f6f-549a-cd51-59c1-a0d8a9f29e64	2021-05-24 14:12:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:12:06.877+03	2021-05-24 14:12:06.883+03	
7cbb5304-0b1c-032e-532b-e81442dd2fed	2021-05-24 14:12:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:12:26.877+03	2021-05-24 14:12:26.884+03	
90fcfc48-683a-8f95-c3eb-fbcdd6b1de2a	2021-05-24 14:12:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:12:46.877+03	2021-05-24 14:12:46.883+03	
aab20ac2-6fb4-1b6b-0342-f66574a0e29a	2021-05-24 14:13:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:13:06.877+03	2021-05-24 14:13:06.885+03	
cbcb5a28-3520-0cb4-352b-96fbe7941bed	2021-05-24 14:13:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:13:26.877+03	2021-05-24 14:13:26.884+03	
59aff7ca-5dd7-dd2e-424e-122eab58c3b9	2021-05-24 14:13:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:13:46.877+03	2021-05-24 14:13:46.882+03	
85c1d7e2-d70f-ad1b-855d-d229424bd8ec	2021-05-24 14:14:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:14:06.877+03	2021-05-24 14:14:06.885+03	
b7ad6c2d-35ad-a005-6537-a900294e7158	2021-05-24 14:14:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:14:26.877+03	2021-05-24 14:14:26.884+03	
17d1ebf3-3721-bffd-ed8c-ac26b73a5cf2	2021-05-24 14:14:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:14:47.877+03	2021-05-24 14:14:47.884+03	
2b7c9f14-2c39-20d2-0484-291d7370d7d1	2021-05-24 14:15:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:15:08.877+03	2021-05-24 14:15:08.883+03	
fadb1ba9-95c4-1ee9-e27c-783519ac66bd	2021-05-24 14:15:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:15:28.877+03	2021-05-24 14:15:28.929+03	
90351041-209f-e1cd-b98f-cd7549e449aa	2021-05-24 14:15:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:15:48.877+03	2021-05-24 14:15:48.882+03	
72685e2f-c82a-9ae1-7aa0-097625f93323	2021-05-24 14:16:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:16:08.877+03	2021-05-24 14:16:09.139+03	
f9c32a1d-e36e-6709-8ec5-0617b80ebe4d	2021-05-24 14:16:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:16:28.877+03	2021-05-24 14:16:28.885+03	
3a26bbbd-d183-be50-6fdd-7932d21bf067	2021-05-24 14:16:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:16:48.877+03	2021-05-24 14:16:48.884+03	
02d40ca1-ba4f-c1f8-4970-ef40857471b7	2021-05-24 14:17:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:17:08.877+03	2021-05-24 14:17:08.885+03	
67e1a1be-f9ee-a188-d7d9-93c68ce3bc2e	2021-05-24 14:17:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:17:28.877+03	2021-05-24 14:17:28.882+03	
53115711-108b-2953-416e-3e512f480335	2021-05-24 14:17:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:17:48.877+03	2021-05-24 14:17:48.884+03	
b3351770-0cd2-f293-d26f-7e123d158bcf	2021-05-24 14:18:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:18:08.877+03	2021-05-24 14:18:08.884+03	
3670c563-0ff3-d0b4-9b0b-3e807f275663	2021-05-24 14:18:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:18:28.877+03	2021-05-24 14:18:28.885+03	
0c59c468-1c69-8f41-0efb-de674eb6214e	2021-05-24 14:18:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:18:48.877+03	2021-05-24 14:18:48.883+03	
a37f6f66-ccc6-8b74-4647-48743685f11d	2021-05-24 14:19:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:19:09.877+03	2021-05-24 14:19:09.884+03	
48eb19ff-4a08-20db-19ba-aa110f0fa036	2021-05-24 14:19:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:19:29.877+03	2021-05-24 14:19:29.883+03	
e4fb7e9c-9c10-e25f-b0a9-4da6859d28dd	2021-05-24 14:19:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:19:50.876+03	2021-05-24 14:19:50.884+03	
c4aab8c1-5e5f-202f-4812-05d10ba091e7	2021-05-24 14:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 14:20:00.877+03	2021-05-24 14:20:00.891+03	ERROR
be052926-c0fa-1d5e-30dd-d7c38859aa21	2021-05-24 14:20:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:20:10.877+03	2021-05-24 14:20:10.887+03	
34f1b750-3fb5-4e38-ce7f-d3c5c0b15782	2021-05-24 14:20:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:20:30.877+03	2021-05-24 14:20:30.884+03	
ef1d5b2f-5469-940a-edbf-c034dfa0a14c	2021-05-24 14:20:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:20:50.877+03	2021-05-24 14:20:50.884+03	
8b624875-2240-e937-ee26-bd14c0ab4054	2021-05-24 14:20:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:20:20.877+03	2021-05-24 14:20:20.885+03	
07abd5fd-7807-2ebe-c148-8105164f441b	2021-05-24 14:20:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:20:40.877+03	2021-05-24 14:20:40.885+03	
29e8cbe6-1e25-edba-bc3d-6f2cb02391a9	2021-05-24 14:21:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:21:00.877+03	2021-05-24 14:21:00.885+03	
21acc74a-a18f-52b1-97ba-d6f6135c4595	2021-05-24 14:21:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:21:20.877+03	2021-05-24 14:21:20.885+03	
90b7e923-c6e5-232d-50ed-d34401e97bee	2021-05-24 14:21:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:21:40.877+03	2021-05-24 14:21:40.884+03	
2a65dd68-b767-8c62-92c2-25dd7493389d	2021-05-24 14:22:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:22:00.877+03	2021-05-24 14:22:00.885+03	
3800b463-72ae-07a4-d9a5-837bed92419f	2021-05-24 14:22:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:22:20.877+03	2021-05-24 14:22:20.888+03	
3bea8dae-b40c-982a-6a87-d9655a276fba	2021-05-24 14:22:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:22:40.877+03	2021-05-24 14:22:40.883+03	
c89a9d84-afa0-166a-45d9-878ab39a8f6f	2021-05-24 14:22:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:22:50.877+03	2021-05-24 14:22:50.885+03	
74d9a8d3-5762-8954-fa40-2538163a2afd	2021-05-24 14:23:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:23:10.877+03	2021-05-24 14:23:11.211+03	
01faa25a-3c14-9dcb-849b-132a6a5f27bd	2021-05-24 14:23:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:23:30.877+03	2021-05-24 14:23:30.884+03	
d70e22de-302f-4120-365f-009bfc6d8cf2	2021-05-24 14:23:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:23:50.877+03	2021-05-24 14:23:50.885+03	
a6390093-c169-3bae-bba2-3778444711ea	2021-05-24 14:24:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:24:10.877+03	2021-05-24 14:24:10.885+03	
7e82757c-903f-3391-4a9b-10977973d97b	2021-05-24 14:24:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:24:40.877+03	2021-05-24 14:24:40.885+03	
10205b31-f60a-8490-9251-d11d162ddd7f	2021-05-24 14:25:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:25:01.877+03	2021-05-24 14:25:01.884+03	
392fd34f-cf2a-2112-21ef-28295f181950	2021-05-24 14:25:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:25:21.877+03	2021-05-24 14:25:21.885+03	
b0a6fb89-4331-128f-c907-422563661f1d	2021-05-24 14:25:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:25:41.877+03	2021-05-24 14:25:41.884+03	
5b38c29c-e2c3-9006-8dda-8f05a68e681b	2021-05-24 14:26:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:26:01.877+03	2021-05-24 14:26:01.887+03	
79390f21-ef67-a356-6c7e-517454a6f886	2021-05-24 14:26:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:26:21.877+03	2021-05-24 14:26:21.885+03	
f58f768d-55de-9235-8fbd-1cf5bde7a294	2021-05-24 14:26:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:26:41.877+03	2021-05-24 14:26:41.883+03	
a1ca874b-886d-93e5-a81a-08b483d56001	2021-05-24 14:27:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:27:01.877+03	2021-05-24 14:27:01.883+03	
a3f39402-9825-1fa8-d073-43e740f25e08	2021-05-24 14:27:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:27:21.877+03	2021-05-24 14:27:21.884+03	
5b201e5b-80cf-eff7-3e5f-f2d5aa01252f	2021-05-24 14:27:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:27:41.877+03	2021-05-24 14:27:41.884+03	
1a2a96a3-f301-e46c-3059-66f93ce92d5e	2021-05-24 14:28:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:28:11.877+03	2021-05-24 14:28:11.885+03	
4c1d52ec-2f4d-7ade-d398-2ed299b0d97a	2021-05-24 14:28:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:28:31.877+03	2021-05-24 14:28:31.884+03	
d3cc8283-cbcc-e352-f937-bf4b9bf6d9ba	2021-05-24 14:28:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:28:51.877+03	2021-05-24 14:28:51.885+03	
3199f99f-d59b-a933-e31c-c7717dfb657b	2021-05-24 14:29:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:29:11.877+03	2021-05-24 14:29:11.884+03	
89f28cba-a789-ae50-738a-1c4fa6247170	2021-05-24 14:29:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:29:33.877+03	2021-05-24 14:29:33.884+03	
47c2993c-e611-73e7-f3a1-c14fde5555d4	2021-05-24 14:29:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:29:53.877+03	2021-05-24 14:29:53.937+03	
3767d107-a742-7d29-8dad-e76a7288ab8b	2021-05-24 14:30:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:30:03.877+03	2021-05-24 14:30:03.884+03	
0ec6fd57-8307-5b7b-8bca-7d4d8aaf0e6b	2021-05-24 14:30:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:30:23.877+03	2021-05-24 14:30:23.883+03	
1412fce3-dc88-ccc5-d34b-9f44029c8a82	2021-05-24 14:30:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:30:43.877+03	2021-05-24 14:30:43.883+03	
166829c9-5d42-26b4-7e8b-777629dc4ae1	2021-05-24 14:31:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:31:03.877+03	2021-05-24 14:31:03.89+03	
a76e0ece-54c4-e945-765e-75281ebb6a91	2021-05-24 14:31:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:31:23.877+03	2021-05-24 14:31:23.883+03	
316ef2ba-b969-295f-ca4f-0131eb804f52	2021-05-24 14:31:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:31:43.877+03	2021-05-24 14:31:43.885+03	
3e032dba-2eb0-1301-5a8c-6eae4146662e	2021-05-24 14:32:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:32:03.877+03	2021-05-24 14:32:03.884+03	
ea5fb055-cd2e-1f08-dcad-69ffb33a42da	2021-05-24 14:32:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:32:23.877+03	2021-05-24 14:32:23.887+03	
5c940e16-f421-a80e-c9e2-deab794ef9eb	2021-05-24 14:32:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:32:43.877+03	2021-05-24 14:32:43.884+03	
a8aff664-4bd6-aae8-2c57-cf8efdd0844e	2021-05-24 14:33:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:33:04.877+03	2021-05-24 14:33:04.884+03	
0498d6dc-fe07-a056-925a-fdc33b834e39	2021-05-24 14:33:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:33:24.877+03	2021-05-24 14:33:24.885+03	
908f0bea-880a-e94b-d631-98f1ff01ee9d	2021-05-24 14:33:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:33:44.877+03	2021-05-24 14:33:44.883+03	
d2ad5ad8-be05-f662-a203-87f937752dde	2021-05-24 14:34:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:34:04.877+03	2021-05-24 14:34:04.885+03	
4f1a1ad4-1fbe-47ad-f1a3-c5b8f16b3c69	2021-05-24 14:34:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:34:24.877+03	2021-05-24 14:34:25.186+03	
118722b3-6fc3-ed00-d379-2369af48ad6b	2021-05-24 14:34:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:34:44.877+03	2021-05-24 14:34:44.883+03	
f2957193-32c5-775e-68b1-c1a267495ad9	2021-05-24 14:35:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:35:04.877+03	2021-05-24 14:35:04.888+03	
a9480410-7ba4-d764-3ddb-67274a80ffb0	2021-05-24 14:35:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:35:24.877+03	2021-05-24 14:35:25.236+03	
c582246e-efd4-2fbb-b424-8821c638acd1	2021-05-24 14:35:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:35:44.877+03	2021-05-24 14:35:44.883+03	
95b400d3-e5d3-cf72-815e-857c36da8675	2021-05-24 14:36:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:36:04.877+03	2021-05-24 14:36:04.883+03	
ac875acf-0e09-701d-99f5-3b1ce9393545	2021-05-24 14:36:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:36:24.877+03	2021-05-24 14:36:24.883+03	
8ebf925a-582b-a08f-8f7d-2092e81b9de5	2021-05-24 14:36:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:36:44.877+03	2021-05-24 14:36:44.883+03	
0de63a29-5764-6970-bb28-943ce6ed4bd4	2021-05-24 14:37:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:37:04.877+03	2021-05-24 14:37:04.883+03	
79cf9bf0-d8b0-2e5d-1008-dd2830035b9e	2021-05-24 14:37:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:37:24.877+03	2021-05-24 14:37:24.883+03	
440efafc-39c5-ca36-6004-0b81d88f4e00	2021-05-24 14:37:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:37:44.877+03	2021-05-24 14:37:44.885+03	
af7bcd5a-f80d-a871-86a1-19ef7672ba1b	2021-05-24 14:38:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:38:04.877+03	2021-05-24 14:38:04.883+03	
28c0ba02-6451-bc8c-c417-09cb177a97b1	2021-05-24 14:38:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:38:24.877+03	2021-05-24 14:38:24.883+03	
5d0329a9-090a-b176-2dcc-95e1da0d7e74	2021-05-24 14:38:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:38:44.877+03	2021-05-24 14:38:44.885+03	
c59f503a-b868-ebcd-6655-925e35adfffb	2021-05-24 14:39:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:39:04.877+03	2021-05-24 14:39:04.883+03	
fcb9f57b-1eb0-9865-1be9-9356225e1219	2021-05-24 14:39:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:39:24.877+03	2021-05-24 14:39:24.884+03	
333d2db8-c10f-38d7-b8be-bd9a274af651	2021-05-24 14:39:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:39:44.877+03	2021-05-24 14:39:44.883+03	
5280c4e0-c72b-26b8-8e3e-be424f833a9e	2021-05-24 14:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 14:40:00.877+03	2021-05-24 14:40:00.883+03	ERROR
2b15ba4a-e254-6d1e-99be-c8e6b85d8e1a	2021-05-24 14:40:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:40:14.877+03	2021-05-24 14:40:14.885+03	
78efc487-57d0-85f8-df29-2f7fc8ac5ff7	2021-05-24 14:40:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:40:34.877+03	2021-05-24 14:40:35.218+03	
55b632b2-59ce-a538-92c5-5a218f2a2881	2021-05-24 14:40:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:40:54.877+03	2021-05-24 14:40:54.885+03	
8f457ae3-4a75-095e-f69a-4396e993c862	2021-05-24 14:21:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:21:10.877+03	2021-05-24 14:21:10.883+03	
9b0e708f-ddd5-dc06-6fda-a2abd7f7defd	2021-05-24 14:21:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:21:30.877+03	2021-05-24 14:21:30.885+03	
7b513eb8-762c-f13c-8556-ad6133dde667	2021-05-24 14:21:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:21:50.877+03	2021-05-24 14:21:50.885+03	
9858df6f-5c11-2f24-d091-683acc509a63	2021-05-24 14:22:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:22:10.877+03	2021-05-24 14:22:10.885+03	
4914f7b6-5e9b-986d-da02-2c98503a077e	2021-05-24 14:22:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:22:30.877+03	2021-05-24 14:22:30.884+03	
a367bad2-0771-267b-61db-81e3f3f963c5	2021-05-24 14:23:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:23:00.877+03	2021-05-24 14:23:00.885+03	
20cf1a2a-ca66-67ba-623f-a751f098febc	2021-05-24 14:23:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:23:20.877+03	2021-05-24 14:23:20.888+03	
7aea5297-cb75-e874-5959-a1e97129d3af	2021-05-24 14:23:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:23:40.877+03	2021-05-24 14:23:40.885+03	
99369a07-a9b7-a4e3-331f-7fdad57b526a	2021-05-24 14:24:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:24:00.877+03	2021-05-24 14:24:00.884+03	
e1e7be9b-2b10-e0a3-5ebf-6515eaf4ce13	2021-05-24 14:24:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:24:20.877+03	2021-05-24 14:24:20.883+03	
e380dfec-3e0a-3534-d59f-3b0ee32f68ae	2021-05-24 14:24:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:24:30.877+03	2021-05-24 14:24:30.885+03	
c757dc79-a165-e6b9-1f9a-531dd7cd3dad	2021-05-24 14:24:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:24:51.877+03	2021-05-24 14:24:51.884+03	
ff45bee2-12fc-2fad-4123-9f0602778b5c	2021-05-24 14:25:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:25:11.877+03	2021-05-24 14:25:11.883+03	
71cde47d-eaab-ba59-8273-d3716913ecf1	2021-05-24 14:25:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:25:31.877+03	2021-05-24 14:25:31.884+03	
a7d71f0e-b1e2-8187-9914-471caa878bf9	2021-05-24 14:25:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:25:51.877+03	2021-05-24 14:25:51.882+03	
2c0f8e08-c1e5-be32-2827-7b253abf42a0	2021-05-24 14:26:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:26:11.877+03	2021-05-24 14:26:11.884+03	
b7bb2287-7719-62dd-d359-3f34db8be0e5	2021-05-24 14:26:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:26:31.877+03	2021-05-24 14:26:31.894+03	
09ea6f97-c9e5-1bed-d7cf-004ebeec3256	2021-05-24 14:26:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:26:51.877+03	2021-05-24 14:26:51.883+03	
75beda72-e251-904c-4edc-d7085d9ff7cc	2021-05-24 14:27:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:27:11.877+03	2021-05-24 14:27:11.885+03	
fa449a08-7cfc-e0b3-cc6d-d220c7a36e44	2021-05-24 14:27:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:27:31.877+03	2021-05-24 14:27:31.885+03	
42525a40-7ebb-896d-bba6-8a8ea5919386	2021-05-24 14:27:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:27:51.877+03	2021-05-24 14:27:52.126+03	
8d93b2aa-d1dd-5053-f74d-7bbfd50491e6	2021-05-24 14:28:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:28:01.877+03	2021-05-24 14:28:01.884+03	
fca02de8-ba99-5a6f-da47-66b6299b562b	2021-05-24 14:28:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:28:21.877+03	2021-05-24 14:28:22.176+03	
5a53c143-14df-c92e-76cf-97b7838d465c	2021-05-24 14:28:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:28:41.877+03	2021-05-24 14:28:41.882+03	
dacc3cab-b23f-c21a-dbf5-50d3bbdb4fdf	2021-05-24 14:29:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:29:01.877+03	2021-05-24 14:29:01.883+03	
5fe98292-ccd1-6ba5-5e21-2ab3bc9cfac2	2021-05-24 14:29:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:29:22.877+03	2021-05-24 14:29:22.883+03	
3858ca8a-2e72-949a-6385-edee8f266f7f	2021-05-24 14:29:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:29:43.877+03	2021-05-24 14:29:43.884+03	
76e074db-9dab-eda8-a719-84edca5bbd83	2021-05-24 14:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 14:30:00.877+03	2021-05-24 14:30:00.882+03	ERROR
f941e754-b5a9-1f9b-a4f2-494da44e193c	2021-05-24 14:30:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:30:13.877+03	2021-05-24 14:30:13.884+03	
70db5fff-d410-0aab-d395-03ca9eb8fe96	2021-05-24 14:30:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:30:33.877+03	2021-05-24 14:30:33.882+03	
fdebbb03-8875-a6eb-8a56-159811a913ec	2021-05-24 14:30:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:30:53.877+03	2021-05-24 14:30:53.885+03	
275e05fe-0f3c-67b4-18d5-3456b4b98158	2021-05-24 14:31:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:31:13.877+03	2021-05-24 14:31:13.886+03	
dd76ebc8-3937-3d43-5907-28f8a016f73d	2021-05-24 14:31:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:31:33.877+03	2021-05-24 14:31:33.885+03	
d50680c2-b849-70e2-a076-d05e092fdf89	2021-05-24 14:31:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:31:53.877+03	2021-05-24 14:31:53.884+03	
0d373099-f273-1e03-a02b-ffc4e8ba87ba	2021-05-24 14:32:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:32:13.877+03	2021-05-24 14:32:13.885+03	
a51ddf48-9680-37ab-58c8-52467c36b940	2021-05-24 14:32:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:32:33.877+03	2021-05-24 14:32:33.883+03	
eef062c2-7776-cdf1-bc50-d711c9b895c7	2021-05-24 14:32:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:32:53.877+03	2021-05-24 14:32:53.883+03	
63547be4-644e-a344-2cd3-35743dd95493	2021-05-24 14:33:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:33:14.877+03	2021-05-24 14:33:14.884+03	
b3c0a4c3-37ec-6413-ce26-967adb5a9d12	2021-05-24 14:33:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:33:34.877+03	2021-05-24 14:33:34.883+03	
649e5708-7eac-9aaf-a4bc-e0ee615e3ecb	2021-05-24 14:33:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:33:54.877+03	2021-05-24 14:33:54.882+03	
ddf3df9e-1352-0eee-58e4-5023634975d0	2021-05-24 14:34:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:34:14.877+03	2021-05-24 14:34:14.884+03	
c8c98b69-11b8-98ea-0d30-2770caf030e7	2021-05-24 14:34:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:34:34.877+03	2021-05-24 14:34:34.883+03	
daf9ff8c-ec0b-bd86-cd74-d47f159a7049	2021-05-24 14:34:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:34:54.877+03	2021-05-24 14:34:54.883+03	
17720e3e-0116-6a85-e971-b35f6cea90c0	2021-05-24 14:35:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:35:14.877+03	2021-05-24 14:35:15.194+03	
771b3848-fb79-8e8e-3853-e4ed49ba5831	2021-05-24 14:35:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:35:34.877+03	2021-05-24 14:35:34.882+03	
7f5f3348-ea01-9c05-1e8d-e251c6043292	2021-05-24 14:35:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:35:54.877+03	2021-05-24 14:35:54.883+03	
3ce72bea-f740-2052-6d22-7428c9f48dee	2021-05-24 14:36:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:36:14.877+03	2021-05-24 14:36:14.884+03	
c15b7cdc-9d4b-a2b6-648c-bafbac78dce9	2021-05-24 14:36:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:36:34.877+03	2021-05-24 14:36:34.883+03	
753a3f29-706a-3528-8814-f48bc0af9f9a	2021-05-24 14:36:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:36:54.877+03	2021-05-24 14:36:54.883+03	
49be1fca-04e7-2950-d5db-a1883771d931	2021-05-24 14:37:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:37:14.877+03	2021-05-24 14:37:14.884+03	
79b8d763-982f-e606-b68f-91619001c977	2021-05-24 14:37:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:37:34.877+03	2021-05-24 14:37:34.884+03	
5aeb22dd-0517-50e6-4b5f-12c0ec6c642e	2021-05-24 14:37:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:37:54.877+03	2021-05-24 14:37:54.884+03	
195069f8-f898-95d2-b091-b010c70e2bdd	2021-05-24 14:38:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:38:14.877+03	2021-05-24 14:38:15.126+03	
6b788ccc-6fec-a2e4-3591-d2e2704c4f11	2021-05-24 14:38:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:38:34.877+03	2021-05-24 14:38:34.883+03	
be803787-a84c-2cbf-e0e7-7e015a793c61	2021-05-24 14:38:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:38:54.877+03	2021-05-24 14:38:54.884+03	
615b1e9f-fb3b-705d-046b-f08cbef77518	2021-05-24 14:39:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:39:14.877+03	2021-05-24 14:39:14.885+03	
f8479a01-270f-4f9d-d9ff-9ff9cb458f6d	2021-05-24 14:39:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:39:34.877+03	2021-05-24 14:39:34.884+03	
f003e754-d0dd-bba5-373b-38632177fc94	2021-05-24 14:39:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:39:54.877+03	2021-05-24 14:39:54.883+03	
79cd57ed-c9b6-06fe-e5cd-87f23fde6f83	2021-05-24 14:40:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:40:04.877+03	2021-05-24 14:40:04.885+03	
719e2c81-45ec-a5b2-4fd1-e2f8b1ca9a79	2021-05-24 14:40:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:40:24.877+03	2021-05-24 14:40:24.883+03	
de47984c-f768-fde1-8c29-816a193ea50e	2021-05-24 14:40:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:40:44.877+03	2021-05-24 14:40:44.884+03	
a58b5710-f616-7e41-a6e3-3de1aaf78155	2021-05-24 14:41:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:41:04.877+03	2021-05-24 14:41:04.885+03	
4a96a5b2-6cd7-bf96-9a5d-1bb6ecbdfe47	2021-05-24 14:41:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:41:24.877+03	2021-05-24 14:41:24.883+03	
19612efd-5ddb-9633-db9d-2dafb5152e22	2021-05-24 14:41:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:41:14.877+03	2021-05-24 14:41:14.883+03	
35ca9e63-c1c3-f989-895f-7e0ddbc48acd	2021-05-24 14:41:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:41:35.877+03	2021-05-24 14:41:35.883+03	
daee2957-0f7b-3d4a-1b6b-16bc30a50be0	2021-05-24 14:41:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:41:56.877+03	2021-05-24 14:41:56.886+03	
1d4669fe-a243-2c75-2546-87bb54724d67	2021-05-24 14:42:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:42:16.877+03	2021-05-24 14:42:17.121+03	
9a01df6e-3941-d7ce-3b1a-74ac04499987	2021-05-24 14:42:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:42:36.877+03	2021-05-24 14:42:36.883+03	
d53c5e31-44d5-a82a-0b72-4ca3567ca9d0	2021-05-24 14:42:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:42:56.877+03	2021-05-24 14:42:57.174+03	
f35a9065-731e-fa98-5e2e-da4d6f5d2a75	2021-05-24 14:43:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:43:16.877+03	2021-05-24 14:43:16.883+03	
bbd4c199-457d-fc85-0990-ac86b697eb0f	2021-05-24 14:43:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:43:36.877+03	2021-05-24 14:43:37.12+03	
bc05af17-5b88-4e3d-d1df-75fd2c61b07b	2021-05-24 14:43:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:43:56.877+03	2021-05-24 14:43:56.885+03	
c78f95b5-e31e-0f20-f953-377f3b1d648f	2021-05-24 14:44:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:44:16.877+03	2021-05-24 14:44:17.161+03	
9870ff0d-96ba-60f8-eb75-26661ae7696d	2021-05-24 14:44:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:44:36.877+03	2021-05-24 14:44:36.884+03	
a95d42d8-5f7f-24ee-7482-7c0dd59893a6	2021-05-24 14:44:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:44:56.877+03	2021-05-24 14:44:56.884+03	
8e059010-5977-a611-37c2-442b286745be	2021-05-24 14:45:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:45:16.877+03	2021-05-24 14:45:16.884+03	
4adda796-1903-62ed-bb40-99a2b3e414a6	2021-05-24 14:45:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:45:36.877+03	2021-05-24 14:45:36.883+03	
b1439595-8af5-6b1f-9c58-e681e7c28887	2021-05-24 14:45:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:45:56.877+03	2021-05-24 14:45:56.884+03	
39621763-9630-11e0-b294-b33b13bdb371	2021-05-24 14:46:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:46:16.878+03	2021-05-24 14:46:16.884+03	
226c00c4-0582-3538-c92b-836a84a91e9f	2021-05-24 14:46:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:46:38.877+03	2021-05-24 14:46:38.882+03	
c50027e9-dd1b-e7f9-0b56-c329aa76c6a7	2021-05-24 14:46:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:46:58.877+03	2021-05-24 14:46:58.884+03	
70c95aa1-119c-4ed0-384d-2bf31f3ffed2	2021-05-24 14:47:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:47:18.877+03	2021-05-24 14:47:18.883+03	
533682fb-a94c-080e-28bc-03ab1294b6e1	2021-05-24 14:47:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:47:38.877+03	2021-05-24 14:47:38.884+03	
471b9c8f-d5a9-56a9-fe75-f5cc34f866e5	2021-05-24 14:47:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:47:58.877+03	2021-05-24 14:47:58.883+03	
8fbd397c-0317-6e41-215e-6bade0248659	2021-05-24 14:48:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:48:18.877+03	2021-05-24 14:48:18.883+03	
6d0c72ec-5749-e2c8-8a81-926308d16f1d	2021-05-24 14:48:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:48:38.877+03	2021-05-24 14:48:38.883+03	
fee0a9a3-1d39-f48d-39d3-ede2c586ba09	2021-05-24 14:48:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:48:58.877+03	2021-05-24 14:48:58.887+03	
7f45673f-2580-ede3-5ef2-5917c88daebe	2021-05-24 14:49:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:49:18.877+03	2021-05-24 14:49:18.883+03	
132e1982-69fe-097d-c9b5-5a3dbb8b1903	2021-05-24 14:49:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:49:38.877+03	2021-05-24 14:49:38.885+03	
53a5cb70-dd04-50ae-e13f-c79125c359bc	2021-05-24 14:49:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:49:58.877+03	2021-05-24 14:49:58.886+03	
7ac6b5f7-e12e-c89c-faaf-cdbfc53c1a87	2021-05-24 14:50:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:50:08.877+03	2021-05-24 14:50:08.885+03	
7bb95ba6-174f-6b44-c79a-73c5d08d3c7a	2021-05-24 14:50:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:50:28.877+03	2021-05-24 14:50:28.883+03	
f80d0949-6b47-683c-892b-362e1a6fb1a5	2021-05-24 14:50:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:50:48.877+03	2021-05-24 14:50:48.884+03	
05a8c2e5-83b7-a026-1a2b-6606b5add476	2021-05-24 14:51:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:51:09.877+03	2021-05-24 14:51:09.883+03	
7264bfb3-c5b1-5984-4e33-e8b3d9ec2e32	2021-05-24 14:51:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:51:29.877+03	2021-05-24 14:51:30.609+03	
6abb6acd-6a9d-3d66-ab47-cbca99079c1e	2021-05-24 14:51:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:51:49.877+03	2021-05-24 14:51:49.883+03	
1862383d-44cf-fa85-36cc-f48334d4ed9f	2021-05-24 14:52:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:52:10.877+03	2021-05-24 14:52:10.882+03	
5f5139d8-667d-3d1a-a0da-353dcc85023f	2021-05-24 14:52:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:52:30.877+03	2021-05-24 14:52:30.885+03	
bab35d9b-e372-4d6a-f4b8-511217bdb623	2021-05-24 14:52:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:52:50.877+03	2021-05-24 14:52:50.883+03	
71a224e5-270e-ff5f-4142-220af4bfb958	2021-05-24 14:53:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:53:10.877+03	2021-05-24 14:53:10.884+03	
d0ed025a-6f38-b2c8-9333-cf98f888a1fc	2021-05-24 14:53:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:53:30.877+03	2021-05-24 14:53:30.884+03	
2b2e2cf9-8b7d-1bcb-0a1b-10f09aa887f2	2021-05-24 14:53:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:53:50.877+03	2021-05-24 14:53:50.882+03	
81f5bb11-fba3-8538-cec2-3871a1e6c4f9	2021-05-24 14:54:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:54:20.877+03	2021-05-24 14:54:20.885+03	
725ba89a-2011-d8d0-5c5b-5dd98cf3ecde	2021-05-24 14:54:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:54:40.877+03	2021-05-24 14:54:40.885+03	
bbe2f8a7-b1b2-db18-c39f-eb333d48b0ef	2021-05-24 14:55:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:55:00.877+03	2021-05-24 14:55:00.883+03	
9cb6e30e-94e1-c702-c0ae-1b11a3c097f3	2021-05-24 14:55:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:55:20.877+03	2021-05-24 14:55:20.883+03	
736b4356-4353-a452-bd66-6a964d9d7167	2021-05-24 14:55:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:55:40.877+03	2021-05-24 14:55:40.885+03	
e88ad225-f873-a0bd-f9aa-b9890fbd3e31	2021-05-24 14:56:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:56:00.877+03	2021-05-24 14:56:00.882+03	
31cc06f1-b453-850e-747a-47b199d7703d	2021-05-24 14:56:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:56:20.877+03	2021-05-24 14:56:20.883+03	
47847c1a-9f6c-1cdd-ccf6-8a57e6844763	2021-05-24 14:56:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:56:40.877+03	2021-05-24 14:56:40.883+03	
f333b2a8-d80a-d116-f725-d36243e70a11	2021-05-24 14:57:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:57:00.877+03	2021-05-24 14:57:00.884+03	
aca511b4-c92d-32a0-2dee-898e5b5c570d	2021-05-24 14:57:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:57:20.877+03	2021-05-24 14:57:20.884+03	
3c8250a8-0131-2231-95f2-cbfee5850a30	2021-05-24 14:57:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:57:40.877+03	2021-05-24 14:57:40.884+03	
7c31c02a-706e-0eef-2a92-087f2bcda1e9	2021-05-24 14:58:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:58:00.877+03	2021-05-24 14:58:00.883+03	
4aca9496-5107-25b3-b627-a9f0c56cc75c	2021-05-24 14:58:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:58:20.877+03	2021-05-24 14:58:20.884+03	
4e516488-32e5-30e4-6ae6-be5aa9b47071	2021-05-24 14:58:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:58:40.877+03	2021-05-24 14:58:40.884+03	
3981749d-6045-f1e2-4507-64a1d56b02e9	2021-05-24 14:59:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:59:01.877+03	2021-05-24 14:59:01.885+03	
d6b548b8-3046-d84f-aea3-d66aa83a46f1	2021-05-24 14:59:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:59:21.877+03	2021-05-24 14:59:21.884+03	
913e3b27-a9ab-5fde-df1f-1fc8d34500a6	2021-05-24 14:59:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:59:41.877+03	2021-05-24 14:59:41.886+03	
21677cd5-89a3-8970-14a5-009a2a560dcd	2021-05-24 15:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 15:00:00.877+03	2021-05-24 15:00:01.092+03	ERROR
790f0f27-6016-a6b3-8204-d51a9f86a618	2021-05-24 15:00:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:00:11.877+03	2021-05-24 15:00:11.883+03	
16e8b691-2d9b-3414-aae6-034ca27a29c9	2021-05-24 15:00:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:00:31.877+03	2021-05-24 15:00:31.884+03	
d6f1767b-6882-04ae-6ddf-b8494b80dc2d	2021-05-24 15:00:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:00:51.877+03	2021-05-24 15:00:51.883+03	
49d12b3b-3f07-2abe-19fe-6e950bd7eda9	2021-05-24 15:01:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:01:11.877+03	2021-05-24 15:01:11.882+03	
c81158b5-ce30-98b1-8a68-4134cec7929a	2021-05-24 15:01:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:01:31.877+03	2021-05-24 15:01:31.883+03	
86c3940c-d0d6-66dd-3a1a-85b0ae65329c	2021-05-24 15:01:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:01:51.877+03	2021-05-24 15:01:51.884+03	
f2f524e2-afdf-5c3f-da23-324c4c564690	2021-05-24 14:41:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:41:46.877+03	2021-05-24 14:41:46.882+03	
c19ce3b3-732f-3995-5922-727abb60bf49	2021-05-24 14:42:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:42:06.877+03	2021-05-24 14:42:06.893+03	
f357ff5b-b010-f340-7c8b-9d52ccf4f935	2021-05-24 14:42:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:42:26.877+03	2021-05-24 14:42:26.883+03	
fe7f2331-42c8-ba62-6175-2fae7dc4a16d	2021-05-24 14:42:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:42:46.877+03	2021-05-24 14:42:46.882+03	
9e3a85dd-9168-a8d6-0f2e-35a4b9505ed0	2021-05-24 14:43:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:43:06.877+03	2021-05-24 14:43:06.884+03	
f8a99458-869d-0085-397b-4ceba08f35db	2021-05-24 14:43:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:43:26.877+03	2021-05-24 14:43:26.884+03	
f210d324-b19d-ce62-3a16-a51d141249ac	2021-05-24 14:43:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:43:46.877+03	2021-05-24 14:43:46.882+03	
7c75aa11-02e9-1e58-11f6-84ab9c7c98b4	2021-05-24 14:44:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:44:06.877+03	2021-05-24 14:44:06.884+03	
9e1e088b-3786-2859-f5c8-3730daf17554	2021-05-24 14:44:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:44:26.877+03	2021-05-24 14:44:26.882+03	
66256f88-3787-82f3-f543-550b8526cba6	2021-05-24 14:44:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:44:46.877+03	2021-05-24 14:44:46.884+03	
ad5b6546-5037-ab6d-4266-aac420572bf2	2021-05-24 14:45:06.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:45:06.877+03	2021-05-24 14:45:06.885+03	
ce700e1b-69d9-2a9e-a2f2-bdc016f60a4c	2021-05-24 14:45:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:45:26.877+03	2021-05-24 14:45:26.884+03	
078e8ca2-78a3-d1a5-7147-c5bd78e6e10e	2021-05-24 14:45:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:45:46.877+03	2021-05-24 14:45:46.884+03	
32fd434e-8951-60fc-1b0c-4f1f855ada6c	2021-05-24 14:46:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:46:06.877+03	2021-05-24 14:46:06.885+03	
46a9b169-f65d-5b1b-e4eb-31f2cdd92538	2021-05-24 14:46:27.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:46:27.878+03	2021-05-24 14:46:27.898+03	
84f0d86f-e5ee-75c9-d2e3-e70e4f9c4210	2021-05-24 14:46:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:46:48.877+03	2021-05-24 14:46:48.885+03	
3a3e9875-fcda-5e1e-9570-19fac530c8ed	2021-05-24 14:47:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:47:08.877+03	2021-05-24 14:47:08.884+03	
0e24bff0-5077-e7f0-52cc-6ceb3cc5d95e	2021-05-24 14:47:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:47:28.877+03	2021-05-24 14:47:28.884+03	
a6ddca01-17fc-f627-2a87-544719c94883	2021-05-24 14:47:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:47:48.877+03	2021-05-24 14:47:48.884+03	
7a9f6801-8f33-1395-807c-32a0de2e31a5	2021-05-24 14:48:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:48:08.877+03	2021-05-24 14:48:08.882+03	
1d0e826a-2b7f-3837-ee6e-84ce589d951f	2021-05-24 14:48:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:48:28.877+03	2021-05-24 14:48:28.883+03	
d17c6274-64b8-a8ab-5e17-7c0d4b762494	2021-05-24 14:48:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:48:48.877+03	2021-05-24 14:48:48.885+03	
a24df966-b4cf-d7fd-ff3f-6f598b8b415b	2021-05-24 14:49:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:49:08.877+03	2021-05-24 14:49:08.882+03	
78ecbb45-11ad-ccee-e0de-4138cc1a662f	2021-05-24 14:49:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:49:28.877+03	2021-05-24 14:49:28.884+03	
9b46b7c8-41ac-ac42-4735-e18c69ffa0c4	2021-05-24 14:49:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:49:48.877+03	2021-05-24 14:49:48.883+03	
09d2a5af-4c59-b88e-3103-e90d47342a53	2021-05-24 14:50:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 14:50:00.877+03	2021-05-24 14:50:00.883+03	ERROR
1e493b4d-f598-f615-2e18-b26c72b94073	2021-05-24 14:50:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:50:18.877+03	2021-05-24 14:50:18.884+03	
b0fdc0c5-f36b-efa1-0a92-50c81634488f	2021-05-24 14:50:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:50:38.877+03	2021-05-24 14:50:38.897+03	
5f49d834-c9ac-e7ec-a5a9-48689aeaec60	2021-05-24 14:50:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:50:58.878+03	2021-05-24 14:50:58.884+03	
037b9ee2-be41-36a1-6824-b817f8eeaf14	2021-05-24 14:51:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:51:19.877+03	2021-05-24 14:51:20.178+03	
ee29e46a-5755-1392-f2db-deb914395d72	2021-05-24 14:51:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:51:39.877+03	2021-05-24 14:51:39.883+03	
b78f48b6-2326-ce0d-3d30-9f97d965567f	2021-05-24 14:51:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:51:59.877+03	2021-05-24 14:51:59.883+03	
c0e152cd-e3e9-7c4a-f2d5-87324b9d0c18	2021-05-24 14:52:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:52:20.877+03	2021-05-24 14:52:20.89+03	
2a78a21a-2c67-5a9e-5a12-e66db5b61999	2021-05-24 14:52:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:52:40.877+03	2021-05-24 14:52:40.885+03	
319bb95d-0408-448b-51bc-c275f79df05a	2021-05-24 14:53:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:53:00.877+03	2021-05-24 14:53:00.884+03	
cc90082b-f171-c781-6b98-6f3df032e53d	2021-05-24 14:53:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:53:20.877+03	2021-05-24 14:53:20.882+03	
32079506-7069-712f-60bc-6405a15aa790	2021-05-24 14:53:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:53:40.877+03	2021-05-24 14:53:40.885+03	
2b89b9e7-a607-5b85-40e9-2992847ef9ab	2021-05-24 14:54:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:54:00.877+03	2021-05-24 14:54:01.243+03	
22c6b248-0450-d0a7-f73a-130d3718cdc4	2021-05-24 14:54:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:54:10.877+03	2021-05-24 14:54:10.885+03	
3e1fd1e2-bab7-4e42-1ebd-dfb726774560	2021-05-24 14:54:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:54:30.877+03	2021-05-24 14:54:30.883+03	
0a9bc6e6-a628-9d6b-d903-3c3ef7b0ae29	2021-05-24 14:54:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:54:50.877+03	2021-05-24 14:54:50.883+03	
e1a0973c-ffe1-94e1-a8a1-c89117c6e9f4	2021-05-24 14:55:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:55:10.877+03	2021-05-24 14:55:10.883+03	
568d05a1-1613-a3be-cd76-05932b81622f	2021-05-24 14:55:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:55:30.877+03	2021-05-24 14:55:30.884+03	
b7a610e9-98c7-ece4-5a38-5ab54a176a88	2021-05-24 14:55:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:55:50.877+03	2021-05-24 14:55:50.882+03	
ce9f5c2b-5329-f36a-dee6-74627809f2f6	2021-05-24 14:56:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:56:10.877+03	2021-05-24 14:56:10.884+03	
2cb300d2-b4d8-f80e-5566-7c07355f920b	2021-05-24 14:56:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:56:30.877+03	2021-05-24 14:56:30.884+03	
a09c57db-3953-c6b7-c046-8a8d54e5d9a6	2021-05-24 14:56:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:56:50.877+03	2021-05-24 14:56:50.885+03	
41c0524b-2417-5950-1cfe-4b506db5c3b3	2021-05-24 14:57:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:57:10.877+03	2021-05-24 14:57:10.884+03	
137cf2cc-cd7c-5b25-0dae-b9ad68433238	2021-05-24 14:57:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:57:30.877+03	2021-05-24 14:57:30.883+03	
fb35c6a8-d842-7ee9-0c97-ad8f8890b4e0	2021-05-24 14:57:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:57:50.877+03	2021-05-24 14:57:50.883+03	
45b2ea78-fc2e-fc2d-80c2-ab96ad5d1e06	2021-05-24 14:58:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:58:10.877+03	2021-05-24 14:58:10.883+03	
538fd972-f864-7b7e-c5c4-48cba4184d21	2021-05-24 14:58:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:58:30.877+03	2021-05-24 14:58:30.883+03	
08ca2183-42f9-34a8-4af9-b78574390382	2021-05-24 14:58:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:58:51.877+03	2021-05-24 14:58:51.884+03	
28971a90-6156-3a2c-ad0a-55856d650e5e	2021-05-24 14:59:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:59:11.877+03	2021-05-24 14:59:11.885+03	
560f3847-a677-42a1-6fd7-70f33aee1ba8	2021-05-24 14:59:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:59:31.877+03	2021-05-24 14:59:31.885+03	
437337b9-11e0-3fa1-9be3-f86bd8c63fb1	2021-05-24 14:59:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 14:59:51.877+03	2021-05-24 14:59:51.884+03	
4082d441-851a-158b-03f3-dd807727febf	2021-05-24 15:00:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:00:01.877+03	2021-05-24 15:00:01.885+03	
bdbf7f8d-eb9b-6e23-7e01-233ece2d1b9e	2021-05-24 15:00:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:00:21.877+03	2021-05-24 15:00:21.884+03	
6192ee37-2b90-d8ac-8e1a-b93b327fd2c4	2021-05-24 15:00:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:00:41.877+03	2021-05-24 15:00:41.884+03	
a9271413-b6dc-5384-c22d-de47bc6f2e01	2021-05-24 15:01:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:01:01.877+03	2021-05-24 15:01:01.884+03	
7a00b744-1010-1865-5a00-77ec31c57e46	2021-05-24 15:01:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:01:21.877+03	2021-05-24 15:01:21.987+03	
b6e1ae9f-ac0a-a3d0-e58a-40e5903674a5	2021-05-24 15:01:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:01:41.877+03	2021-05-24 15:01:41.885+03	
b058e083-ca2c-1231-d6aa-eb8d84592d37	2021-05-24 15:02:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:02:01.877+03	2021-05-24 15:02:01.884+03	
8fabeaec-d6e9-5991-ba83-3b4408ecabaa	2021-05-24 15:02:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:02:11.877+03	2021-05-24 15:02:11.882+03	
9d10d1bf-2475-83ca-2ebc-705628fdce6c	2021-05-24 15:02:32.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:02:32.877+03	2021-05-24 15:02:32.885+03	
0724ae26-410f-b804-707f-1cfee07a0af6	2021-05-24 15:02:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:02:52.878+03	2021-05-24 15:02:52.885+03	
5d220731-c808-c2a9-ef42-a5fa8370c7d6	2021-05-24 15:03:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:03:13.877+03	2021-05-24 15:03:13.887+03	
17ddbbd3-d0e7-fd9a-6ab5-039b7cd35bdb	2021-05-24 15:03:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:03:34.877+03	2021-05-24 15:03:34.884+03	
8b37d639-8c4b-f3b0-ae2c-5920e59aa79b	2021-05-24 15:03:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:03:54.877+03	2021-05-24 15:03:54.884+03	
683a58df-5934-5c4c-2146-0cb030031459	2021-05-24 15:04:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:04:14.877+03	2021-05-24 15:04:14.884+03	
c5d2232a-6c29-7d81-8c02-16b6fcdcbc79	2021-05-24 15:04:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:04:34.877+03	2021-05-24 15:04:34.884+03	
273f59ad-dc57-8651-e9c1-afcce9e21e9e	2021-05-24 15:04:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:04:54.877+03	2021-05-24 15:04:54.885+03	
104e1b8e-7832-e458-7952-84240e08d1c9	2021-05-24 15:05:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:05:24.877+03	2021-05-24 15:05:24.886+03	
1a4c66f3-7f5d-f9d0-128c-5b6c711e1e13	2021-05-24 15:05:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:05:44.877+03	2021-05-24 15:05:44.887+03	
f44a0597-da0c-9945-0bfa-f1ded57cfa68	2021-05-24 15:06:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:06:04.877+03	2021-05-24 15:06:05.4+03	
f6e3dd8a-dd7c-f57d-6ccf-1e99b2a79bdd	2021-05-24 15:06:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:06:24.877+03	2021-05-24 15:06:24.883+03	
fece3745-441d-69da-c36d-86148b102758	2021-05-24 15:06:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:06:44.877+03	2021-05-24 15:06:44.884+03	
0fa007de-0525-814b-2f7b-9dec8000e48d	2021-05-24 15:07:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:07:04.877+03	2021-05-24 15:07:04.884+03	
863944c6-37f8-fb61-c529-247623c02962	2021-05-24 15:07:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:07:24.877+03	2021-05-24 15:07:24.885+03	
7239249c-952a-a794-ee31-d189860bda98	2021-05-24 15:07:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:07:44.877+03	2021-05-24 15:07:44.884+03	
14595bc5-d3c1-9be2-38fd-cf88178addc4	2021-05-24 15:08:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:08:04.877+03	2021-05-24 15:08:06.482+03	
2e275dd7-22f0-3eb6-e6ad-3e956e456878	2021-05-24 15:08:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:08:24.877+03	2021-05-24 15:08:24.882+03	
771d8e25-8abd-f4ab-eba9-d9780bc1215a	2021-05-24 15:08:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:08:44.877+03	2021-05-24 15:08:44.884+03	
85718205-3e00-33d3-a7f0-0e0f88a520ba	2021-05-24 15:09:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:09:04.877+03	2021-05-24 15:09:05.393+03	
1b29284c-2ae0-272e-fafa-6061303036bd	2021-05-24 15:09:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:09:24.877+03	2021-05-24 15:09:24.887+03	
8be1abf0-1670-0022-c596-11425c983ee6	2021-05-24 15:09:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:09:44.877+03	2021-05-24 15:09:45.176+03	
1d0daca9-22dd-adbe-e8ee-8c5b4ec0b7c3	2021-05-24 15:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 15:10:00.877+03	2021-05-24 15:10:00.933+03	ERROR
6d58da3d-4272-0006-8a02-be7ba10dd3ed	2021-05-24 15:10:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:10:14.877+03	2021-05-24 15:10:14.883+03	
82d07b0b-880b-0348-4711-36e08ba440c2	2021-05-24 15:10:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:10:35.877+03	2021-05-24 15:10:36.132+03	
c2e791ab-fafb-2325-2915-6abf0b373bd4	2021-05-24 15:10:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:10:55.877+03	2021-05-24 15:10:55.882+03	
40f72479-4682-92d2-a7f2-15b6b268de95	2021-05-24 15:11:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:11:15.877+03	2021-05-24 15:11:15.884+03	
f2d69ee0-bfa2-3b29-8aab-601458346d3a	2021-05-24 15:11:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:11:35.877+03	2021-05-24 15:11:35.884+03	
8dc4074d-8eb8-e1e2-bae2-1e19c302863b	2021-05-24 15:11:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:11:55.877+03	2021-05-24 15:11:55.884+03	
5b055503-3c6e-a10c-191c-9928a323d996	2021-05-24 15:12:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:12:15.877+03	2021-05-24 15:12:15.882+03	
13d9eafa-73fb-da1a-e3b1-19d1a1de1582	2021-05-24 15:12:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:12:35.877+03	2021-05-24 15:12:36.18+03	
f9af8bc8-27f6-4697-64a6-4a1f392a6f64	2021-05-24 15:12:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:12:55.877+03	2021-05-24 15:12:55.883+03	
13ed4556-722b-d097-2be6-c9197a8e10de	2021-05-24 15:13:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:13:15.877+03	2021-05-24 15:13:15.883+03	
74412fa2-fa68-5d62-ac85-1dc28ccaf963	2021-05-24 15:13:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:13:35.877+03	2021-05-24 15:13:35.895+03	
b15923d9-e2b5-0cc7-3a4d-6ba879d2ebbc	2021-05-24 15:13:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:13:55.877+03	2021-05-24 15:13:55.89+03	
37f2f415-a428-4410-a03a-2fd8c8185f2c	2021-05-24 15:14:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:14:15.877+03	2021-05-24 15:14:15.886+03	
ebb497b7-1f8c-7bae-6290-e97fd8a3a622	2021-05-24 15:14:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:14:35.877+03	2021-05-24 15:14:36.132+03	
e9604afc-2f98-1264-ae7c-4fe04a16dcad	2021-05-24 15:14:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:14:56.877+03	2021-05-24 15:14:57.132+03	
6d022397-c430-258e-b96f-5fe170ff1858	2021-05-24 15:15:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:15:16.877+03	2021-05-24 15:15:16.883+03	
6f27f818-3f1c-950c-fe23-e5258f8e31bf	2021-05-24 15:15:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:15:36.877+03	2021-05-24 15:15:36.883+03	
8b6ad463-fbfb-6cdc-0481-9c2762287ac6	2021-05-24 15:15:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:15:56.877+03	2021-05-24 15:15:56.884+03	
4e33491b-3d66-411b-d502-3189bc8ec36f	2021-05-24 15:16:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:16:16.877+03	2021-05-24 15:16:16.883+03	
b44b7ceb-9654-b90b-bab5-95925eee3ef2	2021-05-24 15:16:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:16:36.877+03	2021-05-24 15:16:36.885+03	
6a2d8aa4-84a7-8f79-fbbc-2ac96516d028	2021-05-24 15:16:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:16:56.877+03	2021-05-24 15:16:56.883+03	
eb3f00e9-0f71-588d-9699-2ebd9b49264c	2021-05-24 15:17:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:17:16.877+03	2021-05-24 15:17:16.885+03	
1d5c6d8b-f1bc-67a0-7b13-15c235812e1d	2021-05-24 15:17:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:17:36.877+03	2021-05-24 15:17:36.884+03	
426f091b-36ce-2b7f-367e-91cb0724c23f	2021-05-24 15:17:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:17:56.877+03	2021-05-24 15:17:56.885+03	
e424510b-5149-91ca-a60a-1b659718ef78	2021-05-24 15:18:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:18:16.877+03	2021-05-24 15:18:16.885+03	
0ba5324e-fc48-27e6-bffc-551a2bca3b25	2021-05-24 15:18:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:18:36.877+03	2021-05-24 15:18:36.883+03	
5c15482e-c2be-1c6c-237e-84d077c6daf6	2021-05-24 15:18:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:18:56.877+03	2021-05-24 15:18:56.885+03	
8947b822-7b8a-1fdf-f111-9796c80f32ee	2021-05-24 15:19:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:19:16.877+03	2021-05-24 15:19:16.882+03	
e79f9bc6-8ac8-c1c1-2ae9-46dd8f0be881	2021-05-24 15:19:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:19:36.877+03	2021-05-24 15:19:36.883+03	
be4438b3-e5f9-3ef0-2446-c5db0013ed5e	2021-05-24 15:19:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:19:56.877+03	2021-05-24 15:19:56.895+03	
f0090475-c549-a448-994d-0d93c7971da1	2021-05-24 15:20:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:20:06.877+03	2021-05-24 15:20:06.928+03	
7aca218e-3851-2bd0-f5fb-5b1e4c6f4f5d	2021-05-24 15:20:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:20:26.877+03	2021-05-24 15:20:26.883+03	
c5b3c21d-9005-4da9-3f12-147ae35ab9ed	2021-05-24 15:20:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:20:46.877+03	2021-05-24 15:20:46.883+03	
06f410f7-1f6b-cf82-7171-05c8ca65d766	2021-05-24 15:21:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:21:06.877+03	2021-05-24 15:21:06.904+03	
69078ddc-3d02-8297-48e7-d9a3f222fa4d	2021-05-24 15:21:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:21:26.877+03	2021-05-24 15:21:26.885+03	
ab39893f-f0aa-0996-ec83-28284d420dc4	2021-05-24 15:21:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:21:46.877+03	2021-05-24 15:21:46.883+03	
73045d26-bc0f-4fe8-fd7c-e9d12e886814	2021-05-24 15:22:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:22:06.878+03	2021-05-24 15:22:06.884+03	
5f1ff46d-2ed9-3951-070a-d2d9b563c362	2021-05-24 15:22:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:22:27.877+03	2021-05-24 15:22:27.882+03	
ee315d0a-ecec-98b8-d576-fbe78ae34bb5	2021-05-24 15:22:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:22:48.877+03	2021-05-24 15:22:48.882+03	
1a0ade6f-9037-b62e-9f80-e9687cba555d	2021-05-24 15:02:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:02:21.877+03	2021-05-24 15:02:21.884+03	
487b391d-f7ff-ddab-8ce9-3603a0acb32e	2021-05-24 15:02:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:02:42.877+03	2021-05-24 15:02:42.883+03	
09b14311-13a7-cc38-ee1b-2ca3c6d887b0	2021-05-24 15:03:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:03:03.877+03	2021-05-24 15:03:03.948+03	
5c5fe2f2-fa3c-1452-486d-8bcc7a35a4f6	2021-05-24 15:03:23.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:03:23.878+03	2021-05-24 15:03:23.885+03	
7cff0077-3f62-ac34-ca15-bdfe9491b5bb	2021-05-24 15:03:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:03:44.877+03	2021-05-24 15:03:44.883+03	
1811cfef-cc3f-cd64-193e-e750eb774996	2021-05-24 15:04:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:04:04.877+03	2021-05-24 15:04:04.911+03	
b9a21858-6419-b88e-7d82-f1413e52a7bf	2021-05-24 15:04:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:04:24.877+03	2021-05-24 15:04:25.09+03	
83004fee-4168-89ad-8a14-d0fdba2b0b93	2021-05-24 15:04:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:04:44.877+03	2021-05-24 15:04:45.116+03	
a34db64c-7c6a-0cfb-972a-b4d7ef679c09	2021-05-24 15:05:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:05:04.877+03	2021-05-24 15:05:05.771+03	
9a9baa81-13fa-2f27-e0db-2d999c1cc94b	2021-05-24 15:05:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:05:14.877+03	2021-05-24 15:05:14.885+03	
623ea4fa-5fc8-70ae-9e50-673d5d7969ef	2021-05-24 15:05:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:05:34.877+03	2021-05-24 15:05:34.895+03	
0e24e751-789f-95f5-ad23-67b6b3a0c663	2021-05-24 15:05:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:05:54.877+03	2021-05-24 15:05:54.884+03	
27a6e4ef-5f28-5603-90a0-7c5c4dd97566	2021-05-24 15:06:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:06:14.877+03	2021-05-24 15:06:14.885+03	
436ed4cd-af7c-8203-d7d9-3d9f418947c9	2021-05-24 15:06:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:06:34.877+03	2021-05-24 15:06:34.883+03	
277376a2-5962-de43-8971-4c22c3b1840f	2021-05-24 15:06:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:06:54.877+03	2021-05-24 15:06:54.883+03	
467c5623-b391-3fa1-714b-f772636c0c8b	2021-05-24 15:07:14.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:07:14.877+03	2021-05-24 15:07:14.902+03	
9091895a-9d2d-f57b-b9ae-26a17fe6a8c6	2021-05-24 15:07:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:07:34.877+03	2021-05-24 15:07:34.882+03	
46d22aa9-b35b-96f5-8d05-ff2a4c0a0422	2021-05-24 15:07:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:07:54.877+03	2021-05-24 15:07:54.886+03	
cf4c2f75-cf82-560a-8bef-9a0d75f14138	2021-05-24 15:08:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:08:14.877+03	2021-05-24 15:08:14.884+03	
bfc1e20e-cb38-85da-2bce-8ea7bf92c913	2021-05-24 15:08:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:08:34.877+03	2021-05-24 15:08:34.884+03	
e53b8ef4-fd25-ed51-b8cb-5c9c42bb289f	2021-05-24 15:08:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:08:54.877+03	2021-05-24 15:08:55.253+03	
42d9e09d-f6f4-5311-d0f0-22822341f8a9	2021-05-24 15:09:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:09:14.877+03	2021-05-24 15:09:14.883+03	
c7cfdad2-76c3-4302-48ea-be8c045c5f52	2021-05-24 15:09:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:09:34.877+03	2021-05-24 15:09:35.201+03	
a5e6ab38-b4f1-25d3-f34e-7215f0f609d1	2021-05-24 15:09:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:09:54.877+03	2021-05-24 15:09:54.884+03	
eb2bc483-3598-11f0-1317-4a61ad867afc	2021-05-24 15:10:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:10:04.877+03	2021-05-24 15:10:04.883+03	
7bfb7f9c-45ef-b56d-7018-a104f604bd5a	2021-05-24 15:10:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:10:25.877+03	2021-05-24 15:10:25.883+03	
661df60f-b52a-f31a-aaf4-7862f5eb327f	2021-05-24 15:10:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:10:45.877+03	2021-05-24 15:10:45.884+03	
5d3d015a-73ec-b416-054f-6ac1b447ca84	2021-05-24 15:11:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:11:05.877+03	2021-05-24 15:11:06.008+03	
a87d6123-556e-4141-a6bf-20ddb4e0f21f	2021-05-24 15:11:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:11:25.877+03	2021-05-24 15:11:25.883+03	
217463a7-43d5-b738-873e-e32699d50cb7	2021-05-24 15:11:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:11:45.877+03	2021-05-24 15:11:46.172+03	
8c403d71-c991-963c-42a5-0de51f13b995	2021-05-24 15:12:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:12:05.877+03	2021-05-24 15:12:05.882+03	
cef2c81c-855d-8efc-8478-4051324a4b31	2021-05-24 15:12:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:12:25.877+03	2021-05-24 15:12:25.883+03	
23ac119f-f971-f952-7d5b-c2fc45c1044a	2021-05-24 15:12:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:12:45.877+03	2021-05-24 15:12:45.885+03	
560a5fed-8c37-f232-74c3-fec5f18e402a	2021-05-24 15:13:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:13:05.877+03	2021-05-24 15:13:05.884+03	
4929f835-7f7d-f922-aa33-db80f1d3ad48	2021-05-24 15:13:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:13:25.877+03	2021-05-24 15:13:25.884+03	
05e8b67f-00f4-7da4-bd0c-0267eb72ea04	2021-05-24 15:13:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:13:45.877+03	2021-05-24 15:13:45.894+03	
7fb68a2d-1643-f95d-97f2-a5460a0850c9	2021-05-24 15:14:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:14:05.877+03	2021-05-24 15:14:05.883+03	
0d751a6c-8bd2-2210-8fb2-f7f376f7a5a2	2021-05-24 15:14:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:14:25.877+03	2021-05-24 15:14:26.189+03	
cb8ad49d-f8e4-3c91-ea18-ade903427ef2	2021-05-24 15:14:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:14:45.877+03	2021-05-24 15:14:45.884+03	
b8f2147f-0450-7cac-0d30-e7e83ae9fe95	2021-05-24 15:15:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:15:06.877+03	2021-05-24 15:15:06.886+03	
22e3f7a3-a233-2768-970c-66f24ab22644	2021-05-24 15:15:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:15:26.877+03	2021-05-24 15:15:26.883+03	
8189a22a-167f-4d27-0147-f0087f74fe6d	2021-05-24 15:15:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:15:46.877+03	2021-05-24 15:15:46.883+03	
abf9461c-800f-1353-3d2e-3b08fae04f7f	2021-05-24 15:16:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:16:06.877+03	2021-05-24 15:16:06.886+03	
e173d7c0-41c4-92cf-55ac-fc39c4b703c1	2021-05-24 15:16:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:16:26.877+03	2021-05-24 15:16:26.883+03	
2302c7be-08af-f5c1-65e7-aaef53f0621b	2021-05-24 15:16:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:16:46.877+03	2021-05-24 15:16:46.884+03	
f6938dd4-521f-dc1d-f2c4-4862b9a0dd8f	2021-05-24 15:17:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:17:06.877+03	2021-05-24 15:17:06.885+03	
35e4cffa-e675-d6ea-6ce9-d6dd6cd8f993	2021-05-24 15:17:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:17:26.877+03	2021-05-24 15:17:26.884+03	
87fd6c26-9c28-793a-fc0d-dd2a3af0d968	2021-05-24 15:17:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:17:46.877+03	2021-05-24 15:17:46.884+03	
3570d1d9-327f-8576-62b5-3528821be722	2021-05-24 15:18:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:18:06.877+03	2021-05-24 15:18:06.894+03	
fe082eac-574f-19ce-b17c-789b1cf32479	2021-05-24 15:18:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:18:26.877+03	2021-05-24 15:18:26.884+03	
d999715b-6a77-7396-716a-76b7a8f3fca9	2021-05-24 15:18:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:18:46.877+03	2021-05-24 15:18:46.883+03	
e83c9302-8117-9cfc-a0f0-bdfc45db5c64	2021-05-24 15:19:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:19:06.877+03	2021-05-24 15:19:06.883+03	
2ba38325-a310-bf30-4088-912309bebdd9	2021-05-24 15:19:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:19:26.877+03	2021-05-24 15:19:26.884+03	
cd485877-5fd6-2217-5b4c-a4a10132b17f	2021-05-24 15:19:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:19:46.877+03	2021-05-24 15:19:46.882+03	
a9d6d413-f038-bf2e-f8f2-4a4b2b014bff	2021-05-24 15:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 15:20:00.877+03	2021-05-24 15:20:00.882+03	ERROR
ce67c749-d591-df66-6d08-65b597642337	2021-05-24 15:20:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:20:16.877+03	2021-05-24 15:20:16.883+03	
dc96e3bc-e098-b93c-a0af-8868fe90cf69	2021-05-24 15:20:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:20:36.877+03	2021-05-24 15:20:36.883+03	
1b54fc69-d87d-8377-3a08-2113f48d404e	2021-05-24 15:20:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:20:56.877+03	2021-05-24 15:20:56.884+03	
838bbe03-9386-ab3b-aaa6-cfa08d946787	2021-05-24 15:21:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:21:16.877+03	2021-05-24 15:21:16.883+03	
37ba8bee-4089-2f1d-c411-54fcef7927b5	2021-05-24 15:21:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:21:36.877+03	2021-05-24 15:21:36.882+03	
73d4fc41-34b4-b8d7-c023-f8640c983cef	2021-05-24 15:21:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:21:56.877+03	2021-05-24 15:21:56.883+03	
405b15b4-6e7c-c378-e75a-0d945b50db3c	2021-05-24 15:22:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:22:17.877+03	2021-05-24 15:22:17.882+03	
c630aebd-15b3-7271-c949-b13678f1a03d	2021-05-24 15:22:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:22:38.877+03	2021-05-24 15:22:38.882+03	
fd7c5268-89b9-f120-9c9b-9555574878a3	2021-05-24 15:22:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:22:58.877+03	2021-05-24 15:22:58.882+03	
cd6655b8-0983-c970-2ff1-36b2ca234e48	2021-05-24 15:23:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:23:18.877+03	2021-05-24 15:23:18.883+03	
817e5bc0-1a93-2b8d-b8a9-1b4c93c8af2d	2021-05-24 15:23:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:23:38.877+03	2021-05-24 15:23:38.883+03	
dcc5d133-2b7b-ec37-484b-419798355f4f	2021-05-24 15:23:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:23:58.877+03	2021-05-24 15:23:58.882+03	
cdba58f4-7156-c2b1-ec2e-26785a520a27	2021-05-24 15:24:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:24:18.877+03	2021-05-24 15:24:19.199+03	
347d5f50-9369-cc8d-8a62-e03a029206dd	2021-05-24 15:24:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:24:38.877+03	2021-05-24 15:24:38.883+03	
edcdb80d-22e0-2ae5-7e0d-cf4059aea209	2021-05-24 15:24:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:24:58.877+03	2021-05-24 15:24:59.157+03	
4452914d-81e3-d8c4-27fe-3b53dedd841e	2021-05-24 15:25:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:25:18.877+03	2021-05-24 15:25:18.892+03	
6cf4accf-4cdb-8814-3664-41b013bd320e	2021-05-24 15:25:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:25:38.877+03	2021-05-24 15:25:38.883+03	
9ba85d81-a2e4-3ea0-82b5-103d70a33bcd	2021-05-24 15:25:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:25:58.877+03	2021-05-24 15:25:58.883+03	
a9a8b9b7-69e8-9062-4509-ccab988e01b6	2021-05-24 15:26:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:26:18.877+03	2021-05-24 15:26:18.882+03	
89d31cd8-4660-62a9-6ecc-b23d6d16ca51	2021-05-24 15:26:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:26:38.877+03	2021-05-24 15:26:38.886+03	
d97cfed3-989e-a296-ac5c-cc1613c03c2d	2021-05-24 15:26:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:26:58.877+03	2021-05-24 15:26:58.884+03	
967bdb97-816d-2a2b-ebc3-d4ffaf621f32	2021-05-24 15:27:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:27:18.877+03	2021-05-24 15:27:18.884+03	
177a0cae-3997-9c04-ef4a-587f3863ff03	2021-05-24 15:27:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:27:38.877+03	2021-05-24 15:27:38.886+03	
f53fccd1-9bca-e3ef-b196-c20bd524599d	2021-05-24 15:27:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:27:59.877+03	2021-05-24 15:27:59.884+03	
69349cd2-455d-1b98-73a7-d6e947203078	2021-05-24 15:28:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:28:19.877+03	2021-05-24 15:28:19.882+03	
49437fc3-d9d0-bebd-9e85-b6cb3cf0a67d	2021-05-24 15:28:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:28:39.877+03	2021-05-24 15:28:39.884+03	
f741292f-3ee8-3a12-d761-4b6bba04cec4	2021-05-24 15:28:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:28:59.877+03	2021-05-24 15:28:59.887+03	
379ddf62-0369-7484-017f-42e6c83943da	2021-05-24 15:29:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:29:19.877+03	2021-05-24 15:29:19.883+03	
b2ebc629-74ed-483e-8540-c4a05f5330e5	2021-05-24 15:29:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:29:39.877+03	2021-05-24 15:29:39.895+03	
09a046c4-cd8b-4fd4-37bf-b71dd3941e52	2021-05-24 15:30:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:30:00.877+03	2021-05-24 15:30:00.883+03	
188aaadb-6391-0f47-1336-13a244cc7ca8	2021-05-24 15:30:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:30:21.877+03	2021-05-24 15:30:21.885+03	
fb220049-ed1f-eaeb-f684-6834a817e91f	2021-05-24 15:30:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:30:42.877+03	2021-05-24 15:30:42.884+03	
f644526e-68fd-86be-dc47-42e20e5ea2e4	2021-05-24 15:31:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:31:02.877+03	2021-05-24 15:31:02.925+03	
ee142f24-b73c-e6b4-ba7d-7670bdc53b50	2021-05-24 15:31:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:31:23.877+03	2021-05-24 15:31:23.883+03	
f0870794-9d33-6153-c772-2c2d018f87d3	2021-05-24 15:31:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:31:43.877+03	2021-05-24 15:31:43.883+03	
ce66fcab-d8c1-55bd-3501-144a4f1f3a8c	2021-05-24 15:32:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:32:03.877+03	2021-05-24 15:32:03.886+03	
78e410fa-eaa0-e570-843c-ad4a18e650f3	2021-05-24 15:32:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:32:23.877+03	2021-05-24 15:32:23.885+03	
e8f53688-0818-896f-f416-08ec22ae2a34	2021-05-24 15:32:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:32:43.877+03	2021-05-24 15:32:43.882+03	
29688b9a-e537-b081-7479-46bb0ac4a6cd	2021-05-24 15:33:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:33:03.877+03	2021-05-24 15:33:03.884+03	
97d3ec96-f5c6-b88d-bcf4-852304b1488b	2021-05-24 15:33:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:33:23.877+03	2021-05-24 15:33:23.884+03	
5ea2081f-32aa-ae3f-25c3-a171b185f192	2021-05-24 15:33:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:33:43.877+03	2021-05-24 15:33:43.883+03	
666121dc-889a-1b62-bc19-fc0ac05ebc41	2021-05-24 15:34:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:34:03.877+03	2021-05-24 15:34:03.883+03	
76eda851-7afe-cea9-d169-b17dfe147095	2021-05-24 15:34:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:34:23.877+03	2021-05-24 15:34:23.882+03	
96581bea-e6eb-39dd-031e-1c64fdb28344	2021-05-24 15:34:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:34:43.877+03	2021-05-24 15:34:43.884+03	
82aa6c4c-c4cc-82a5-12ef-94c8e7857af3	2021-05-24 15:35:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:35:03.877+03	2021-05-24 15:35:03.884+03	
7fcae988-c0d8-e89f-db3c-499436874a0f	2021-05-24 15:35:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:35:23.877+03	2021-05-24 15:35:23.884+03	
76e23b17-e60b-be8c-df4d-516000501c2e	2021-05-24 15:35:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:35:43.877+03	2021-05-24 15:35:43.884+03	
76938df4-7830-1935-bfb1-b0cbdcfeda7b	2021-05-24 15:36:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:36:03.877+03	2021-05-24 15:36:03.882+03	
1ebae881-a902-db6c-2056-d719a32eaa76	2021-05-24 15:36:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:36:23.877+03	2021-05-24 15:36:23.883+03	
16926b02-de10-abaf-9d27-28dc5a838fe1	2021-05-24 15:36:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:36:44.877+03	2021-05-24 15:36:44.887+03	
f3c3639f-b5a2-3d84-cc71-2d16d827340a	2021-05-24 15:37:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:37:04.877+03	2021-05-24 15:37:04.883+03	
505ee39a-3896-8613-dfdf-44a96923c663	2021-05-24 15:37:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:37:24.877+03	2021-05-24 15:37:25.201+03	
7697b59b-226b-45c7-3631-1bc748d91e36	2021-05-24 15:37:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:37:44.877+03	2021-05-24 15:37:44.882+03	
a774042e-ef7c-7715-2ba7-1676685b9a1a	2021-05-24 15:38:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:38:04.877+03	2021-05-24 15:38:04.883+03	
91d37df1-c8c8-36ee-6b06-318cfde0249b	2021-05-24 15:38:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:38:24.877+03	2021-05-24 15:38:24.883+03	
a5c577f8-4b92-6163-f95b-f44333ed31eb	2021-05-24 15:38:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:38:45.877+03	2021-05-24 15:38:45.885+03	
94b08216-0346-3949-57bb-4e71be6b3bfb	2021-05-24 15:39:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:39:05.877+03	2021-05-24 15:39:05.885+03	
746520d0-6990-c196-6503-5f7f84314ce8	2021-05-24 15:39:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:39:25.877+03	2021-05-24 15:39:25.882+03	
c335c570-aa9e-2c6c-2860-2aa34a072e28	2021-05-24 15:39:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:39:45.877+03	2021-05-24 15:39:45.885+03	
7551bbfa-2d8b-934b-c36c-af89b4217786	2021-05-24 15:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 15:40:00.877+03	2021-05-24 15:40:00.881+03	ERROR
0a511531-e318-414b-3bfe-1f9d1b08c575	2021-05-24 15:40:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:40:15.877+03	2021-05-24 15:40:15.884+03	
5e89191a-a69d-585b-322f-5ee6112eaae7	2021-05-24 15:40:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:40:35.877+03	2021-05-24 15:40:35.883+03	
e88cf98d-dcf4-6ac4-cacc-fa713f6e0a1d	2021-05-24 15:40:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:40:55.877+03	2021-05-24 15:40:55.885+03	
e247127c-6eef-e8e9-e00f-2c570533e9f5	2021-05-24 15:41:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:41:15.877+03	2021-05-24 15:41:15.885+03	
27f127e9-270e-c95a-a9bf-46c797b93807	2021-05-24 15:41:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:41:36.877+03	2021-05-24 15:41:36.882+03	
eea89f9b-9738-aad3-62b5-e0fa6a5820af	2021-05-24 15:41:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:41:56.877+03	2021-05-24 15:41:56.884+03	
52ffd206-6b77-4179-e45b-b47d2f151fce	2021-05-24 15:42:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:42:16.877+03	2021-05-24 15:42:16.882+03	
5a4b17ee-3df2-aef3-eb89-5a13ae643525	2021-05-24 15:42:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:42:36.877+03	2021-05-24 15:42:36.885+03	
a8283a04-af19-7af5-1074-3159cbc15854	2021-05-24 15:42:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:42:56.877+03	2021-05-24 15:42:56.884+03	
34958ad3-7870-fa43-3a98-87ecdfb21c18	2021-05-24 15:43:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:43:16.877+03	2021-05-24 15:43:16.883+03	
c130b227-103c-a9cd-1fa4-f2e71bd2abcc	2021-05-24 15:43:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:43:36.877+03	2021-05-24 15:43:36.883+03	
f9a2adc9-1d0f-11c7-c577-5a93e9e3ffcb	2021-05-24 15:23:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:23:08.877+03	2021-05-24 15:23:08.884+03	
0667e635-a17d-e447-c8c2-eef91c01c422	2021-05-24 15:23:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:23:28.877+03	2021-05-24 15:23:28.883+03	
5abca5cc-12cc-c01c-9ccd-19035f9fe494	2021-05-24 15:23:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:23:48.877+03	2021-05-24 15:23:48.883+03	
3368cfad-48ba-8741-a2cf-01fddf0b3809	2021-05-24 15:24:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:24:08.877+03	2021-05-24 15:24:08.884+03	
066f269a-f822-37a8-ec93-4e496b989939	2021-05-24 15:24:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:24:28.877+03	2021-05-24 15:24:28.885+03	
1c62ebce-24dd-7ec2-1a9a-df8e4e38e80a	2021-05-24 15:24:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:24:48.877+03	2021-05-24 15:24:48.884+03	
b9cc9ec0-1c54-4274-d8e1-48d5035207cc	2021-05-24 15:25:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:25:08.877+03	2021-05-24 15:25:08.884+03	
8681a6f3-6cb8-108e-efc1-c477c69839dc	2021-05-24 15:25:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:25:28.877+03	2021-05-24 15:25:28.883+03	
bd168730-8f8a-9b85-e05e-3301fda29fae	2021-05-24 15:25:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:25:48.877+03	2021-05-24 15:25:48.882+03	
b8daf761-9fb8-aa85-96a6-c76bb3c151cd	2021-05-24 15:26:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:26:08.877+03	2021-05-24 15:26:08.884+03	
47a64b3c-6de3-6a82-fd44-4070e5cbcfbd	2021-05-24 15:26:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:26:28.877+03	2021-05-24 15:26:28.884+03	
b15c9104-3b46-8f13-328a-91dbf9aeba4e	2021-05-24 15:26:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:26:48.877+03	2021-05-24 15:26:48.882+03	
d90723cf-aac6-2cd5-c5c2-e0a38cb9eb92	2021-05-24 15:27:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:27:08.877+03	2021-05-24 15:27:08.886+03	
5777188e-226d-6393-e622-64c4d58b7e8e	2021-05-24 15:27:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:27:28.877+03	2021-05-24 15:27:28.883+03	
d724d68f-cc15-45b2-6e6e-36c5fdee0a58	2021-05-24 15:27:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:27:49.877+03	2021-05-24 15:27:49.884+03	
311830aa-5e2f-3018-6b70-44b8a9ee9c21	2021-05-24 15:28:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:28:09.877+03	2021-05-24 15:28:09.888+03	
53589b3f-2b1a-eeb9-b212-fc3300d164d6	2021-05-24 15:28:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:28:29.877+03	2021-05-24 15:28:29.883+03	
680bf795-26d6-c154-53b6-dac4ce660bff	2021-05-24 15:28:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:28:49.877+03	2021-05-24 15:28:49.882+03	
85317824-9415-5bf6-b083-5ce8f0032608	2021-05-24 15:29:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:29:09.877+03	2021-05-24 15:29:09.885+03	
cc38a603-5a7f-45c4-12e0-ca64337f3e88	2021-05-24 15:29:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:29:29.877+03	2021-05-24 15:29:29.883+03	
ead5d445-d908-e11c-5668-1ace28aa875f	2021-05-24 15:29:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:29:49.877+03	2021-05-24 15:29:49.882+03	
636ca5b3-9abb-5f68-d758-6e59cc9a16bb	2021-05-24 15:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 15:30:00.877+03	2021-05-24 15:30:01.124+03	ERROR
dc955736-f339-e64e-4bc4-bde8f636d3df	2021-05-24 15:30:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:30:11.877+03	2021-05-24 15:30:11.882+03	
b00c8ed7-34b2-b9c5-ffdb-f7632a63297e	2021-05-24 15:30:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:30:31.877+03	2021-05-24 15:30:31.883+03	
36bd587e-7894-3688-fd7a-29b0f732f9c3	2021-05-24 15:30:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:30:52.877+03	2021-05-24 15:30:52.891+03	
c5388378-e1d1-506c-c804-19cde61c15e8	2021-05-24 15:31:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:31:12.877+03	2021-05-24 15:31:12.883+03	
f823f20c-d382-5dfc-f2a4-8a35a4f8b4a4	2021-05-24 15:31:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:31:33.877+03	2021-05-24 15:31:33.884+03	
bf95e543-7f75-6d65-61e3-eff023528f79	2021-05-24 15:31:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:31:53.877+03	2021-05-24 15:31:54.206+03	
1451c784-4b58-8cec-2d28-b174d952fb46	2021-05-24 15:32:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:32:13.877+03	2021-05-24 15:32:13.882+03	
c87cd987-502b-6eb7-13c5-35f45e77360e	2021-05-24 15:32:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:32:33.877+03	2021-05-24 15:32:33.882+03	
161a01c3-5320-f7c1-47cd-142bf75ceed0	2021-05-24 15:32:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:32:53.877+03	2021-05-24 15:32:53.885+03	
df9a2a5d-eca7-38ce-97fd-bb53a3886d4f	2021-05-24 15:33:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:33:13.877+03	2021-05-24 15:33:13.883+03	
3884ab41-9f96-2975-4731-f3afdd86beb6	2021-05-24 15:33:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:33:33.877+03	2021-05-24 15:33:33.883+03	
09e8da79-de00-4ff9-501c-1b122f332ee0	2021-05-24 15:33:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:33:53.877+03	2021-05-24 15:33:53.884+03	
3a6834f9-04a9-68d4-0cdb-33f183711401	2021-05-24 15:34:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:34:13.877+03	2021-05-24 15:34:13.883+03	
9d936b35-aafe-c9e5-47dd-f92e64fd425f	2021-05-24 15:34:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:34:33.877+03	2021-05-24 15:34:33.883+03	
d45e4e64-1f71-7106-6718-66f8a3e77311	2021-05-24 15:34:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:34:53.877+03	2021-05-24 15:34:53.885+03	
4e655a56-aa1b-99b2-54db-2fd55210ff75	2021-05-24 15:35:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:35:13.877+03	2021-05-24 15:35:13.884+03	
73d40cff-2e6e-0691-a208-987f702c3160	2021-05-24 15:35:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:35:33.877+03	2021-05-24 15:35:33.883+03	
32975c0d-7732-2221-032c-3133668215e5	2021-05-24 15:35:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:35:53.877+03	2021-05-24 15:35:53.884+03	
bd77eb08-63a7-45f5-46ca-101ce6930412	2021-05-24 15:36:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:36:13.877+03	2021-05-24 15:36:13.884+03	
bb870708-6810-03fd-2571-1fe7e53469b0	2021-05-24 15:36:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:36:33.877+03	2021-05-24 15:36:33.882+03	
44b68c24-47fa-edc9-a46c-d0ee48742849	2021-05-24 15:36:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:36:54.877+03	2021-05-24 15:36:54.882+03	
9d89ca12-9680-8814-bf38-30d623c776f5	2021-05-24 15:37:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:37:14.877+03	2021-05-24 15:37:14.882+03	
3c316d92-0ab1-48bd-17df-ca0412ac994f	2021-05-24 15:37:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:37:34.877+03	2021-05-24 15:37:34.882+03	
376f75e1-208c-d717-25aa-b6a434ad7a18	2021-05-24 15:37:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:37:54.877+03	2021-05-24 15:37:54.883+03	
1a7be0bb-72e9-0d0c-137f-0b510d005f9b	2021-05-24 15:38:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:38:14.877+03	2021-05-24 15:38:14.883+03	
bce66783-5ae7-3b37-04cd-c4245706b600	2021-05-24 15:38:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:38:35.877+03	2021-05-24 15:38:35.883+03	
c8423343-3af6-f293-816f-923d54d872d0	2021-05-24 15:38:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:38:55.877+03	2021-05-24 15:38:55.883+03	
76544f15-e80d-5239-fc39-5893f29b99a4	2021-05-24 15:39:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:39:15.877+03	2021-05-24 15:39:15.883+03	
a904fce9-e90b-8931-d987-94f322baf147	2021-05-24 15:39:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:39:35.877+03	2021-05-24 15:39:35.884+03	
7b6feadc-9b2a-c18d-a1a3-2bc28987c699	2021-05-24 15:39:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:39:55.877+03	2021-05-24 15:39:55.882+03	
a7dbeece-83c1-d7c0-ba33-d05b9192df2f	2021-05-24 15:40:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:40:05.877+03	2021-05-24 15:40:05.884+03	
e12ab404-de93-804c-a5fd-74ce757a7240	2021-05-24 15:40:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:40:25.877+03	2021-05-24 15:40:25.883+03	
2ce1eaaa-e323-aaa7-78bc-9a2d1d738789	2021-05-24 15:40:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:40:45.877+03	2021-05-24 15:40:45.883+03	
627c5f48-2af3-a4e7-4f5a-c7249f3d4873	2021-05-24 15:41:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:41:05.877+03	2021-05-24 15:41:05.883+03	
e9361f5a-b2aa-93a0-4afb-09c5d851f0d4	2021-05-24 15:41:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:41:26.877+03	2021-05-24 15:41:26.882+03	
47946c81-ac64-5b2d-0d6e-697cd6fe5559	2021-05-24 15:41:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:41:46.877+03	2021-05-24 15:41:47.181+03	
416c75f5-2f84-8d84-057f-71afc7390d28	2021-05-24 15:42:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:42:06.877+03	2021-05-24 15:42:06.885+03	
ce354477-cb51-55a1-8bc5-4c2ea717c8ec	2021-05-24 15:42:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:42:26.877+03	2021-05-24 15:42:26.883+03	
f69b3fd7-4f1c-447d-b731-5fe6f6ee710e	2021-05-24 15:42:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:42:46.877+03	2021-05-24 15:42:46.882+03	
8e606f37-cc80-e895-2591-3f2b6cc5a436	2021-05-24 15:43:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:43:06.877+03	2021-05-24 15:43:06.885+03	
af43e0f1-6860-433a-060f-30c9e4d8ed09	2021-05-24 15:43:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:43:26.877+03	2021-05-24 15:43:26.883+03	
f11c9840-9b3f-212a-8ae7-a3215dce74d9	2021-05-24 15:43:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:43:46.877+03	2021-05-24 15:43:46.884+03	
3ac1fc05-adf7-781d-d13a-e22b3ea1c005	2021-05-24 15:44:07.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:44:07.878+03	2021-05-24 15:44:07.887+03	
a87e23e8-8a06-3923-a46f-5bdc1e7bc4ff	2021-05-24 15:44:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:44:28.877+03	2021-05-24 15:44:28.885+03	
c6176959-d29c-9134-45ab-a9156c741667	2021-05-24 15:44:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:44:48.877+03	2021-05-24 15:44:48.882+03	
661c5454-d25c-8dae-cf91-5e4d7e7af591	2021-05-24 15:45:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:45:08.877+03	2021-05-24 15:45:08.884+03	
f88781fa-4340-e22b-410f-65953ec46b35	2021-05-24 15:45:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:45:28.877+03	2021-05-24 15:45:29.181+03	
fe256b6a-d6ce-4ac7-87eb-fbad1dba99f6	2021-05-24 15:45:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:45:48.877+03	2021-05-24 15:45:48.883+03	
54137d91-342a-8321-3cb7-9b8634030a59	2021-05-24 15:46:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:46:08.877+03	2021-05-24 15:46:08.885+03	
f97e3fe2-dae9-d092-e8f5-35809b9e7d2b	2021-05-24 15:46:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:46:28.877+03	2021-05-24 15:46:29.19+03	
d83b4aed-c48c-bd25-2af8-9bf25aad292a	2021-05-24 15:46:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:46:48.877+03	2021-05-24 15:46:48.884+03	
5a41349f-117b-4d32-aa7a-56a6a9793147	2021-05-24 15:47:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:47:08.877+03	2021-05-24 15:47:08.884+03	
ceacc447-86f9-984f-33bb-e7b2eb394dda	2021-05-24 15:47:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:47:28.877+03	2021-05-24 15:47:28.883+03	
079aaa47-effc-e84c-558d-fb585f1f5257	2021-05-24 15:47:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:47:48.877+03	2021-05-24 15:47:48.885+03	
cdb82a53-88a2-7c4a-96af-d6c2382dc9b2	2021-05-24 15:48:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:48:08.877+03	2021-05-24 15:48:08.883+03	
ad56142f-73d0-cc15-68bc-7caec24ed1a2	2021-05-24 15:48:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:48:28.877+03	2021-05-24 15:48:28.886+03	
a48eddab-5c65-e1b2-5172-6e68cd809801	2021-05-24 15:48:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:48:48.877+03	2021-05-24 15:48:48.883+03	
e77475b7-6c0f-8950-e7c4-99b76c8b113e	2021-05-24 15:49:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:49:08.877+03	2021-05-24 15:49:08.884+03	
bce43383-5cfb-a1d3-6575-6b0bf7878ec0	2021-05-24 15:49:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:49:28.877+03	2021-05-24 15:49:28.883+03	
91baadcc-db51-ef8d-59a1-b9b0cf649b0b	2021-05-24 15:49:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:49:48.877+03	2021-05-24 15:49:49.18+03	
32313fef-f377-79c5-0ee6-d01227333f97	2021-05-24 15:50:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 15:50:00.877+03	2021-05-24 15:50:00.884+03	ERROR
88abc1ef-1111-4cdc-30c1-3585ef7cc481	2021-05-24 15:50:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:50:18.877+03	2021-05-24 15:50:18.883+03	
78156094-76a2-d6fe-10d8-c276f36d6f0c	2021-05-24 15:50:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:50:38.877+03	2021-05-24 15:50:38.885+03	
26dd1045-caba-ddac-9e78-a642b0bc88db	2021-05-24 15:50:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:50:58.877+03	2021-05-24 15:50:58.882+03	
882a6cae-b689-3b75-2426-825329038235	2021-05-24 15:51:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:51:18.877+03	2021-05-24 15:51:18.883+03	
be61e846-7d67-e6ac-a621-74194ab3e0cf	2021-05-24 15:51:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:51:38.877+03	2021-05-24 15:51:38.884+03	
38f43bd9-150f-bb24-0f9f-5e619b3d8e6d	2021-05-24 15:51:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:51:58.877+03	2021-05-24 15:51:58.883+03	
2094ef1f-b25c-5a45-ce04-b91faaebb084	2021-05-24 15:52:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:52:18.877+03	2021-05-24 15:52:18.883+03	
48cb91b6-dee2-ccad-16ba-cb2449896da6	2021-05-24 15:52:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:52:38.877+03	2021-05-24 15:52:38.882+03	
a1e65a49-c0af-697a-727d-e3d8a43b3965	2021-05-24 15:52:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:52:58.877+03	2021-05-24 15:52:58.882+03	
8e97e644-1f17-171d-613c-4b61100f6c4b	2021-05-24 15:53:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:53:18.877+03	2021-05-24 15:53:18.883+03	
43d10444-a579-95a2-db59-6a02d3549baa	2021-05-24 15:53:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:53:38.877+03	2021-05-24 15:53:38.883+03	
db98acc6-c262-bb7c-8cfa-a838bf77f9af	2021-05-24 15:53:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:53:58.877+03	2021-05-24 15:53:58.883+03	
392e9815-bd0e-44db-53a7-06cae89b822a	2021-05-24 15:54:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:54:18.877+03	2021-05-24 15:54:18.886+03	
d6d8931c-2e09-00db-bf94-b777305a011c	2021-05-24 15:54:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:54:38.877+03	2021-05-24 15:54:38.883+03	
81a6df8f-d2d1-ac1d-0c5f-f8dafb4df715	2021-05-24 15:54:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:54:58.877+03	2021-05-24 15:54:58.884+03	
9c16d150-f6cc-a546-e74a-0427ac00796c	2021-05-24 15:55:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:55:18.877+03	2021-05-24 15:55:18.883+03	
637e1b1e-83c7-bec5-3c9d-c027c928ac08	2021-05-24 15:55:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:55:38.877+03	2021-05-24 15:55:38.882+03	
94f206fd-56b4-fff0-8c6b-6b20b699d08f	2021-05-24 15:55:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:55:58.877+03	2021-05-24 15:55:58.885+03	
d66b45ff-f8d6-cff7-0bb6-c5f229186564	2021-05-24 15:56:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:56:18.877+03	2021-05-24 15:56:18.884+03	
7b891907-df6b-e2bf-290d-356f18a4d720	2021-05-24 15:56:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:56:38.877+03	2021-05-24 15:56:38.882+03	
c01790cd-1507-e90b-0630-87099f3b9aba	2021-05-24 15:56:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:56:58.877+03	2021-05-24 15:56:58.884+03	
23ad1aa4-a05b-da6a-4c2c-2681932c7630	2021-05-24 15:57:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:57:18.877+03	2021-05-24 15:57:18.884+03	
5ca73d86-12e8-c4c5-2adf-f3dd24406a6e	2021-05-24 15:57:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:57:38.877+03	2021-05-24 15:57:38.885+03	
1dfc0bab-2166-d8e9-61a7-b5431da612ea	2021-05-24 15:57:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:57:58.877+03	2021-05-24 15:57:58.884+03	
e7edb0d7-e1fa-9c8a-9904-fef4a59dc6f5	2021-05-24 15:58:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:58:18.877+03	2021-05-24 15:58:18.884+03	
a4e7ac21-3b9c-9289-1586-d64704c73d49	2021-05-24 15:58:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:58:38.877+03	2021-05-24 15:58:38.883+03	
b2b015aa-28d5-9001-f904-327c0195192f	2021-05-24 15:58:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:58:58.877+03	2021-05-24 15:58:58.882+03	
2ebb90a3-4f69-72f7-5e68-fe93d57d6f7b	2021-05-24 15:59:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:59:18.877+03	2021-05-24 15:59:18.886+03	
88632600-2d0f-5077-e7fc-ccbe704d6d20	2021-05-24 15:59:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:59:38.877+03	2021-05-24 15:59:38.884+03	
2ad4f196-8145-6eac-b466-fa11d46b69f5	2021-05-24 15:59:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:59:59.877+03	2021-05-24 15:59:59.884+03	
03117ca1-cb6d-7a65-9b9d-a4977f382443	2021-05-24 16:00:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:00:10.876+03	2021-05-24 16:00:10.882+03	
fbfa9b2f-4fde-9a68-b326-b9b8d5cc9709	2021-05-24 16:00:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:00:31.877+03	2021-05-24 16:00:31.883+03	
fe7c4ab6-36e3-3a80-43fd-1cc8c9beb749	2021-05-24 16:00:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:00:51.877+03	2021-05-24 16:00:51.884+03	
d7e76952-eb0f-751c-3d1f-e703a29496d5	2021-05-24 16:01:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:01:11.877+03	2021-05-24 16:01:11.882+03	
8fd38e8f-31c8-7050-316e-2de13ef464be	2021-05-24 16:01:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:01:31.877+03	2021-05-24 16:01:31.883+03	
10ccaa0e-7421-5173-85ad-e548cecf4199	2021-05-24 16:01:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:01:51.877+03	2021-05-24 16:01:51.883+03	
afc70283-a37f-a448-1126-8c1ae0c7e103	2021-05-24 16:02:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:02:11.877+03	2021-05-24 16:02:11.885+03	
d1110436-988f-e67a-8be8-b58d974d6ba1	2021-05-24 16:02:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:02:31.877+03	2021-05-24 16:02:32.208+03	
3656ddf7-85ff-99a9-cbb1-df3ca6b70932	2021-05-24 16:02:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:02:51.877+03	2021-05-24 16:02:51.884+03	
de99ffc3-feed-3205-197c-4ba750689b4c	2021-05-24 16:03:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:03:11.877+03	2021-05-24 16:03:11.883+03	
e1579dcd-79cc-54e0-6ca6-f49942fd7779	2021-05-24 16:03:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:03:31.877+03	2021-05-24 16:03:31.884+03	
482d9162-f220-fed1-52ce-24158966bd6f	2021-05-24 16:03:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:03:51.877+03	2021-05-24 16:03:51.883+03	
8098270e-6165-a848-e111-2aa496a7d27d	2021-05-24 16:04:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:04:11.877+03	2021-05-24 16:04:11.884+03	
6afedbb6-8036-ad72-45c1-e2d6baafcd07	2021-05-24 15:43:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:43:56.877+03	2021-05-24 15:43:56.883+03	
049dd321-a1a8-19d0-6cd3-c2642f338b84	2021-05-24 15:44:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:44:18.877+03	2021-05-24 15:44:18.882+03	
baf9fb09-4335-ce66-b543-1f5ba7b7ce23	2021-05-24 15:44:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:44:38.877+03	2021-05-24 15:44:38.885+03	
d76f226f-20be-e92f-f044-0ac4c88eb97b	2021-05-24 15:44:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:44:58.877+03	2021-05-24 15:44:58.883+03	
fb772838-cad9-6a7f-ea66-c53dd3bb9f40	2021-05-24 15:45:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:45:18.877+03	2021-05-24 15:45:18.885+03	
65f50ee4-e912-6424-c610-f23ca0655f89	2021-05-24 15:45:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:45:38.877+03	2021-05-24 15:45:38.883+03	
2b7bcaba-4c5e-86df-7739-00d09f9a61a2	2021-05-24 15:45:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:45:58.877+03	2021-05-24 15:45:58.883+03	
a9e01daf-12de-f30e-8260-620b8f64db38	2021-05-24 15:46:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:46:18.877+03	2021-05-24 15:46:18.886+03	
22cb959d-7c07-2b65-dde0-4e6e543b119e	2021-05-24 15:46:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:46:38.877+03	2021-05-24 15:46:38.883+03	
0704d85d-486b-213e-6205-6fb2bb6ecdf2	2021-05-24 15:46:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:46:58.877+03	2021-05-24 15:46:58.884+03	
d5e82672-8f5a-b52b-9d80-1e0c1284a7da	2021-05-24 15:47:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:47:18.877+03	2021-05-24 15:47:18.884+03	
7fdbd4cf-1d15-86e0-8ed6-07b8d4b687bf	2021-05-24 15:47:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:47:38.877+03	2021-05-24 15:47:38.883+03	
767f6f9c-ae87-f851-ae56-d42e5be92301	2021-05-24 15:47:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:47:58.877+03	2021-05-24 15:47:58.883+03	
6ee288a5-02ee-e875-fc52-2b6eccef9d99	2021-05-24 15:48:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:48:18.877+03	2021-05-24 15:48:18.884+03	
200a898d-9f19-076b-8345-f61e4b6b165b	2021-05-24 15:48:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:48:38.877+03	2021-05-24 15:48:38.885+03	
a657f0f0-613e-9760-ddf1-492ab9d057d1	2021-05-24 15:48:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:48:58.877+03	2021-05-24 15:48:58.892+03	
a3c51db5-8834-7c95-75cd-27bf8ad36836	2021-05-24 15:49:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:49:18.877+03	2021-05-24 15:49:18.882+03	
c83285f0-b0fd-d4ec-d50a-23c9787dd595	2021-05-24 15:49:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:49:38.877+03	2021-05-24 15:49:38.883+03	
6187d823-a7d7-ff97-589b-8fcca86ce070	2021-05-24 15:49:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:49:58.877+03	2021-05-24 15:49:58.885+03	
48fa6503-b482-fe78-44cd-13cbc6a6e87b	2021-05-24 15:50:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:50:08.877+03	2021-05-24 15:50:08.896+03	
8b848f36-603d-39e3-d0ab-a4ba9d93095e	2021-05-24 15:50:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:50:28.877+03	2021-05-24 15:50:28.885+03	
8bd831e6-6620-123d-cc17-ef0559ac7fec	2021-05-24 15:50:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:50:48.877+03	2021-05-24 15:50:48.884+03	
5ca900e3-520a-2bb5-db46-aa7b5744697e	2021-05-24 15:51:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:51:08.877+03	2021-05-24 15:51:08.883+03	
e3db9a05-234d-cdfe-d7a6-7c26937fa142	2021-05-24 15:51:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:51:28.877+03	2021-05-24 15:51:28.882+03	
f7d41d2b-f6a2-75f1-cfc8-87bf87214a01	2021-05-24 15:51:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:51:48.877+03	2021-05-24 15:51:48.883+03	
a3d4639e-a6f0-ecb6-4a05-a8542304654e	2021-05-24 15:52:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:52:08.877+03	2021-05-24 15:52:08.882+03	
41161c00-6f5c-6c2b-f547-7c553260809e	2021-05-24 15:52:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:52:28.877+03	2021-05-24 15:52:28.883+03	
55c21fab-925b-f830-a4c3-5da07c8a471d	2021-05-24 15:52:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:52:48.877+03	2021-05-24 15:52:49.213+03	
6a6e4d57-8c97-5760-9f87-42747fedc456	2021-05-24 15:53:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:53:08.877+03	2021-05-24 15:53:08.883+03	
6725bc00-024e-ef09-a9c2-00246a369933	2021-05-24 15:53:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:53:28.877+03	2021-05-24 15:53:28.884+03	
c659a627-4ffb-c96e-447a-4eb860cf61e2	2021-05-24 15:53:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:53:48.877+03	2021-05-24 15:53:48.883+03	
d6da68fc-e826-22c2-9a80-8235dfa96e6d	2021-05-24 15:54:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:54:08.877+03	2021-05-24 15:54:08.885+03	
8f9413e5-d63c-2ea2-c220-9b9e6aeac109	2021-05-24 15:54:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:54:28.877+03	2021-05-24 15:54:28.883+03	
7b9d15d1-58a8-43aa-4c15-1888de46187d	2021-05-24 15:54:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:54:48.877+03	2021-05-24 15:54:48.884+03	
6dc0f695-98f9-98aa-67d6-3af298d88fae	2021-05-24 15:55:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:55:08.877+03	2021-05-24 15:55:08.882+03	
3202e69f-1d96-65e7-9fed-5f3b964046c6	2021-05-24 15:55:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:55:28.877+03	2021-05-24 15:55:28.882+03	
488190c6-20f9-61a1-1fb5-8f67631299c8	2021-05-24 15:55:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:55:48.877+03	2021-05-24 15:55:48.883+03	
ed073d1e-b255-ca58-7c49-e1faabb4e58e	2021-05-24 15:56:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:56:08.877+03	2021-05-24 15:56:08.882+03	
b8a90387-7e56-d0d6-2926-e6e3d0730dec	2021-05-24 15:56:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:56:28.877+03	2021-05-24 15:56:28.884+03	
9a1c57d6-e610-9176-41d1-21548b01b235	2021-05-24 15:56:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:56:48.877+03	2021-05-24 15:56:48.883+03	
c0f64175-6f6b-8928-dfa3-c3e6f2c5b0f7	2021-05-24 15:57:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:57:08.877+03	2021-05-24 15:57:08.883+03	
9fba1494-e16e-777b-b380-74c7aeb85ee4	2021-05-24 15:57:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:57:28.877+03	2021-05-24 15:57:28.884+03	
18b6d947-1dae-569f-df6b-a9c73fcb9d84	2021-05-24 15:57:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:57:48.877+03	2021-05-24 15:57:48.886+03	
c96600a2-4511-248e-24b0-dc766c5c2ea7	2021-05-24 15:58:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:58:08.877+03	2021-05-24 15:58:08.883+03	
4bcbc0bc-bbcb-9cb0-dc3c-4796196246ae	2021-05-24 15:58:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:58:28.877+03	2021-05-24 15:58:28.885+03	
d147e7bf-0f3c-a14c-1528-23392c3e0038	2021-05-24 15:58:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:58:48.877+03	2021-05-24 15:58:48.884+03	
75291ca3-cab6-6d5b-2b2c-9b31346f78de	2021-05-24 15:59:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:59:08.877+03	2021-05-24 15:59:08.885+03	
b4556f56-d00b-56a6-d6a0-5671d0efc995	2021-05-24 15:59:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:59:28.877+03	2021-05-24 15:59:28.884+03	
d83deb49-6ca0-4508-c4d5-8d6a5504dc2c	2021-05-24 15:59:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 15:59:48.877+03	2021-05-24 15:59:48.882+03	
33316263-58b5-a924-2148-8239fc1ce7b4	2021-05-24 16:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 16:00:00.877+03	2021-05-24 16:00:01.074+03	ERROR
f66c0150-98a0-df39-b2be-81f2e2288249	2021-05-24 16:00:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:00:20.877+03	2021-05-24 16:00:20.887+03	
72ac85dc-7913-1054-df46-b77a61493873	2021-05-24 16:00:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:00:41.877+03	2021-05-24 16:00:41.882+03	
be0b5229-ff55-61f1-0ce4-d20452f11b76	2021-05-24 16:01:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:01:01.877+03	2021-05-24 16:01:01.882+03	
d599412f-0bad-9d5d-cba0-7d656a36bd36	2021-05-24 16:01:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:01:21.877+03	2021-05-24 16:01:21.886+03	
768e42cb-68ef-e28a-6181-939c76eca489	2021-05-24 16:01:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:01:41.877+03	2021-05-24 16:01:41.883+03	
154bb746-7a67-3e9e-ac75-c6ff48a35375	2021-05-24 16:02:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:02:01.877+03	2021-05-24 16:02:01.884+03	
278efede-51d5-87f4-a303-0ef78ff5df33	2021-05-24 16:02:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:02:21.877+03	2021-05-24 16:02:21.883+03	
a769bb57-d50f-78c1-4dec-53e3edbf0501	2021-05-24 16:02:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:02:41.877+03	2021-05-24 16:02:41.882+03	
b7c79c0d-cddb-bfe1-7ef8-e718e5fcbc34	2021-05-24 16:03:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:03:01.877+03	2021-05-24 16:03:01.883+03	
bda47ba9-9aa2-23f8-ce01-bcbf1b66584e	2021-05-24 16:03:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:03:21.877+03	2021-05-24 16:03:21.883+03	
867ee471-c2b1-a366-3109-7f1bca88b252	2021-05-24 16:03:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:03:41.877+03	2021-05-24 16:03:41.883+03	
5dd11d52-e4bf-117a-d791-729331dd35de	2021-05-24 16:04:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:04:01.877+03	2021-05-24 16:04:01.888+03	
ac9bfe2b-3e3e-dc41-baa4-445315db093a	2021-05-24 16:04:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:04:21.877+03	2021-05-24 16:04:21.885+03	
f4806dc7-55a2-07c4-d526-5fa9bec0a801	2021-05-24 16:04:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:04:31.877+03	2021-05-24 16:04:31.884+03	
21f18feb-4acd-079e-0af8-18707b3c5602	2021-05-24 16:04:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:04:51.877+03	2021-05-24 16:04:51.895+03	
c118895b-74d2-77af-15f0-641312aaf572	2021-05-24 16:05:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:05:11.877+03	2021-05-24 16:05:11.882+03	
0b3b482c-4a7e-97c7-b6d8-3f7e525dc94b	2021-05-24 16:05:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:05:31.877+03	2021-05-24 16:05:31.883+03	
014b4474-8d06-49d4-3e42-fc93d14dfe3f	2021-05-24 16:05:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:05:51.877+03	2021-05-24 16:05:51.883+03	
8e90c691-68bc-e068-b428-63e6c4d9af13	2021-05-24 16:06:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:06:11.877+03	2021-05-24 16:06:11.885+03	
be697da4-034d-2a30-6bd3-ff8e5a312914	2021-05-24 16:06:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:06:31.877+03	2021-05-24 16:06:31.883+03	
269757a6-e68b-df13-657f-877b19edd7d4	2021-05-24 16:06:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:06:51.877+03	2021-05-24 16:06:51.883+03	
8ae7c13c-ba5e-c6aa-4bee-64714b404aaf	2021-05-24 16:07:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:07:11.877+03	2021-05-24 16:07:11.883+03	
3c2d564b-568e-d9ff-1e52-674b91c55ae7	2021-05-24 16:07:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:07:31.877+03	2021-05-24 16:07:31.884+03	
c60be4dc-7d10-b0d4-e66c-2b63ae7f6b1c	2021-05-24 16:07:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:07:51.877+03	2021-05-24 16:07:51.882+03	
1d799f99-29c8-1a63-14ca-ae6c698fd2cf	2021-05-24 16:08:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:08:11.877+03	2021-05-24 16:08:11.885+03	
ffbd7026-ef5f-2e61-b051-d1fcb5c6c9f5	2021-05-24 16:08:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:08:31.877+03	2021-05-24 16:08:31.882+03	
5163f7eb-563c-af5d-7870-0b8239ce0266	2021-05-24 16:08:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:08:51.877+03	2021-05-24 16:08:51.884+03	
b01d3caf-84be-e4d0-ec6d-67fbac05b151	2021-05-24 16:09:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:09:11.877+03	2021-05-24 16:09:11.882+03	
ad3640b7-e8af-88d3-bc6f-30683a1da114	2021-05-24 16:09:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:09:31.877+03	2021-05-24 16:09:31.883+03	
2bfed57e-572a-a2da-25e8-3c566a165f6a	2021-05-24 16:09:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:09:51.877+03	2021-05-24 16:09:51.882+03	
a5c4dd0d-5c11-3e94-78e6-b68a7512a1f1	2021-05-24 16:10:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:10:01.877+03	2021-05-24 16:10:01.884+03	
fa869661-c665-f3fc-eac1-8e9679cc53ba	2021-05-24 16:10:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:10:21.877+03	2021-05-24 16:10:21.884+03	
52110899-412a-fb28-f10c-6003271480cc	2021-05-24 16:10:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:10:41.877+03	2021-05-24 16:10:41.884+03	
215246b4-1672-3246-b840-b254a8d34a4b	2021-05-24 16:11:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:11:01.877+03	2021-05-24 16:11:01.883+03	
0ef86130-299c-c985-cfae-1cc9c51cd607	2021-05-24 16:11:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:11:21.877+03	2021-05-24 16:11:21.882+03	
486a9829-19d1-fc62-405b-600726a0ad8a	2021-05-24 16:11:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:11:41.877+03	2021-05-24 16:11:41.884+03	
727f0fdc-0496-301c-3578-3541fbafd72b	2021-05-24 16:12:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:12:01.877+03	2021-05-24 16:12:01.884+03	
5031415e-0a07-d26a-3943-3039bb8861ba	2021-05-24 16:12:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:12:21.877+03	2021-05-24 16:12:21.882+03	
f1013c53-fcad-d1ac-709e-d966538c683b	2021-05-24 16:12:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:12:41.877+03	2021-05-24 16:12:41.884+03	
266e85eb-0dfe-79ff-d68c-825d6eb42f03	2021-05-24 16:13:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:13:01.877+03	2021-05-24 16:13:01.883+03	
d4e6a165-f7f8-44be-a499-0506c732c2a2	2021-05-24 16:13:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:13:21.877+03	2021-05-24 16:13:21.882+03	
365167ad-93bf-1283-2da3-0ca01b663868	2021-05-24 16:13:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:13:41.877+03	2021-05-24 16:13:41.883+03	
b2378361-9d92-a0f0-ab68-3aacd733eea1	2021-05-24 16:14:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:14:01.877+03	2021-05-24 16:14:01.886+03	
c203205b-9a2e-cb3f-1406-a94c0ad4277b	2021-05-24 16:14:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:14:21.877+03	2021-05-24 16:14:21.883+03	
3520268f-c6eb-a74d-7821-9dc66c2d5371	2021-05-24 16:14:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:14:41.877+03	2021-05-24 16:14:41.882+03	
f301d3b8-2b4b-9e9d-4efb-46c1167c0900	2021-05-24 16:15:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:15:01.877+03	2021-05-24 16:15:01.883+03	
f11b5e59-f76f-73bf-05eb-b0880d3de07c	2021-05-24 16:15:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:15:21.877+03	2021-05-24 16:15:21.885+03	
2d8fa4a3-fafe-12c4-23a7-ed28b54a33e3	2021-05-24 16:15:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:15:41.877+03	2021-05-24 16:15:41.884+03	
3f51a61e-69e8-00c0-8d98-3f76481ed4b2	2021-05-24 16:16:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:16:01.877+03	2021-05-24 16:16:01.883+03	
b4dfd4ef-ef11-1f9c-5845-1e7522c62138	2021-05-24 16:16:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:16:21.877+03	2021-05-24 16:16:21.883+03	
43f3c22a-3a6f-df33-8755-8e9364a0ac8b	2021-05-24 16:16:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:16:41.877+03	2021-05-24 16:16:41.883+03	
076358aa-36c1-e63a-b404-d07766103b78	2021-05-24 16:17:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:17:01.877+03	2021-05-24 16:17:01.884+03	
96acba4c-15d4-ebe6-5a28-c07ace4e4f5d	2021-05-24 16:17:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:17:21.877+03	2021-05-24 16:17:21.883+03	
86cb310b-78f4-c2cb-9c84-75ee3ffc11e8	2021-05-24 16:17:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:17:41.877+03	2021-05-24 16:17:41.882+03	
32f3ad00-c6cb-5b79-23d6-ee40cf38c6ca	2021-05-24 16:18:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:18:01.877+03	2021-05-24 16:18:01.884+03	
63502f97-9457-871a-ea43-d1997c6f1bd2	2021-05-24 16:18:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:18:21.877+03	2021-05-24 16:18:21.883+03	
f9193d26-62ee-e89c-84db-66b2653dcdc8	2021-05-24 16:18:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:18:41.877+03	2021-05-24 16:18:41.883+03	
2d1a6af7-7f9d-65e2-cfd1-b1e7ee3724de	2021-05-24 16:19:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:19:02.877+03	2021-05-24 16:19:02.883+03	
977f6594-26a1-3d28-215a-abc00b62c2f3	2021-05-24 16:19:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:19:22.877+03	2021-05-24 16:19:22.882+03	
71748fe2-cd77-d0e1-b44f-bbc99f18b220	2021-05-24 16:19:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:19:42.877+03	2021-05-24 16:19:42.883+03	
04f3e98c-a6dc-6034-27ca-dfee527551cf	2021-05-24 16:20:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 16:20:00.877+03	2021-05-24 16:20:00.885+03	ERROR
040ed849-b78e-f5ab-35a8-40fde67a76d2	2021-05-24 16:20:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:20:13.877+03	2021-05-24 16:20:13.883+03	
bc532c28-a438-83f7-5aa3-c76827e343e9	2021-05-24 16:20:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:20:43.877+03	2021-05-24 16:20:43.885+03	
c898d99c-b5a1-5b6a-49f8-d5d5578683cf	2021-05-24 16:21:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:21:03.877+03	2021-05-24 16:21:03.883+03	
c94ec33a-8979-c403-eb82-e7131518ad2c	2021-05-24 16:21:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:21:23.877+03	2021-05-24 16:21:23.883+03	
25a2df9b-40db-2c56-6c74-c4828755c8c2	2021-05-24 16:21:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:21:43.877+03	2021-05-24 16:21:43.883+03	
b265d1ee-0cd4-cf5f-6df6-999ab45eb024	2021-05-24 16:22:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:22:03.877+03	2021-05-24 16:22:03.884+03	
b2a3ff07-0598-8611-ed02-9155e676284a	2021-05-24 16:22:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:22:23.877+03	2021-05-24 16:22:23.883+03	
6cfec1ff-3f9e-6577-d3f9-71971c22c1fb	2021-05-24 16:22:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:22:43.877+03	2021-05-24 16:22:43.883+03	
a1f93898-fc33-94d3-9df4-b4ac13e83d8e	2021-05-24 16:23:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:23:04.877+03	2021-05-24 16:23:04.884+03	
e9f22887-9fc0-f3e9-1dcb-3e55eeed3e66	2021-05-24 16:23:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:23:24.877+03	2021-05-24 16:23:24.884+03	
7afc4dc7-5a72-000c-f795-3bef141ee68f	2021-05-24 16:23:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:23:44.877+03	2021-05-24 16:23:44.882+03	
4a2a1cc8-aee0-24c4-e3a7-e1ecc2a6272b	2021-05-24 16:24:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:24:04.877+03	2021-05-24 16:24:04.883+03	
d4f679db-aa08-8400-d52c-1bf991d3573d	2021-05-24 16:24:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:24:24.877+03	2021-05-24 16:24:24.883+03	
a0c9b801-0ac3-f11c-7525-6e3eec6d1ad6	2021-05-24 16:24:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:24:44.877+03	2021-05-24 16:24:44.883+03	
e3ab5faf-ab55-457b-49d3-84d23679441f	2021-05-24 16:25:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:25:04.877+03	2021-05-24 16:25:05.117+03	
b5065a42-b06e-9d89-c011-1f7655f752b3	2021-05-24 16:04:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:04:41.877+03	2021-05-24 16:04:41.885+03	
eb6d268d-327e-67d3-de3a-57ab1ceb1e00	2021-05-24 16:05:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:05:01.877+03	2021-05-24 16:05:01.884+03	
9b964d26-0a00-0a65-43fa-4e512b7de647	2021-05-24 16:05:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:05:21.877+03	2021-05-24 16:05:21.884+03	
ff5dc89b-8fed-b4f3-63de-0195136b13b6	2021-05-24 16:05:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:05:41.877+03	2021-05-24 16:05:41.884+03	
8c05fd9a-16a3-1f8c-0ca3-536bcc5195aa	2021-05-24 16:06:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:06:01.877+03	2021-05-24 16:06:01.883+03	
2b6a496b-f35c-772e-12c3-89ff4443e0aa	2021-05-24 16:06:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:06:21.877+03	2021-05-24 16:06:21.883+03	
99d8c5ac-88dc-bb62-30d7-48992c79d8ac	2021-05-24 16:06:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:06:41.877+03	2021-05-24 16:06:41.883+03	
fadea502-4271-c3d5-8dda-796b5e8980be	2021-05-24 16:07:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:07:01.877+03	2021-05-24 16:07:01.883+03	
d1ea3f78-e644-375a-cc0b-d2f776413db1	2021-05-24 16:07:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:07:21.877+03	2021-05-24 16:07:21.883+03	
98586b9a-978b-5f35-fc2c-5807b64ab094	2021-05-24 16:07:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:07:41.877+03	2021-05-24 16:07:41.882+03	
aace4746-7e88-8327-3026-2cb803b3c40d	2021-05-24 16:08:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:08:01.877+03	2021-05-24 16:08:01.882+03	
2e498d51-0d38-84f9-32fa-7228bd24e7fc	2021-05-24 16:08:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:08:21.877+03	2021-05-24 16:08:21.883+03	
3cc1e773-9aa6-5055-ea4b-95237cb42f4b	2021-05-24 16:08:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:08:41.877+03	2021-05-24 16:08:41.884+03	
2ffa7862-8aad-575c-35ba-1bae9e150c27	2021-05-24 16:09:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:09:01.877+03	2021-05-24 16:09:02.166+03	
a0ebbdea-3498-603c-7a33-1cc7b04d5151	2021-05-24 16:09:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:09:21.877+03	2021-05-24 16:09:21.883+03	
fe49b9de-4c60-b4ab-e7a5-cd6e8676c111	2021-05-24 16:09:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:09:41.877+03	2021-05-24 16:09:41.885+03	
84658852-759b-96ef-5028-17711e67a787	2021-05-24 16:10:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 16:10:00.877+03	2021-05-24 16:10:00.882+03	ERROR
e5a4c6a8-ac77-5c91-8df5-6e89063da030	2021-05-24 16:10:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:10:11.877+03	2021-05-24 16:10:11.882+03	
6ba9b17d-f540-1e3a-e490-c5959feae8db	2021-05-24 16:10:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:10:31.877+03	2021-05-24 16:10:31.884+03	
36f1c2f1-90b4-fffd-fb09-1784fbbc682f	2021-05-24 16:10:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:10:51.877+03	2021-05-24 16:10:51.895+03	
38a9cd63-72df-7104-8dde-26488e35da33	2021-05-24 16:11:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:11:11.877+03	2021-05-24 16:11:11.882+03	
4e583202-0a70-981e-dd6d-2f0490021de6	2021-05-24 16:11:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:11:31.877+03	2021-05-24 16:11:31.882+03	
f7a4c5ef-f60d-b3e3-12e5-9d3b7de506be	2021-05-24 16:11:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:11:51.877+03	2021-05-24 16:11:51.885+03	
cf7738f9-a2a6-6752-9ed9-3db052902f16	2021-05-24 16:12:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:12:11.877+03	2021-05-24 16:12:11.883+03	
6718e349-e7a0-328b-526f-6348a9b795ee	2021-05-24 16:12:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:12:31.877+03	2021-05-24 16:12:31.884+03	
fdf9ccbd-e099-f89e-2903-0d131fa2628f	2021-05-24 16:12:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:12:51.877+03	2021-05-24 16:12:51.882+03	
41bfb5cd-88c3-d31d-794b-d4e5d33dfb27	2021-05-24 16:13:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:13:11.877+03	2021-05-24 16:13:11.884+03	
112f85ee-84dc-845b-74c4-06a8bd6501c8	2021-05-24 16:13:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:13:31.877+03	2021-05-24 16:13:31.883+03	
73fa75b8-fa67-65a3-d359-ea1f45ce6c18	2021-05-24 16:13:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:13:51.877+03	2021-05-24 16:13:51.884+03	
db6e0270-e372-054d-cf2f-62701e2a1bfc	2021-05-24 16:14:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:14:11.877+03	2021-05-24 16:14:11.893+03	
26949d69-e1b4-ff55-4286-f6f1435333e1	2021-05-24 16:14:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:14:31.877+03	2021-05-24 16:14:31.889+03	
1e8fda65-4bbc-10a6-e4d5-d194a8b7a88d	2021-05-24 16:14:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:14:51.877+03	2021-05-24 16:14:51.882+03	
242f6eb7-7261-ce72-4e99-71c54d82175e	2021-05-24 16:15:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:15:11.877+03	2021-05-24 16:15:11.885+03	
195c7f14-eddb-ffa1-6bc0-6ce8ac7f4941	2021-05-24 16:15:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:15:31.877+03	2021-05-24 16:15:31.882+03	
3ab1c34d-1a9a-3a94-7c2f-aa46030788ec	2021-05-24 16:15:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:15:51.877+03	2021-05-24 16:15:51.882+03	
aa725758-3803-02ad-1c62-d02a9aac8f86	2021-05-24 16:16:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:16:11.877+03	2021-05-24 16:16:11.882+03	
5c61f132-cb06-063a-5cf8-f5df24584d64	2021-05-24 16:16:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:16:31.877+03	2021-05-24 16:16:31.885+03	
eb07ff50-f70a-434f-46f7-c9dda4059124	2021-05-24 16:16:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:16:51.877+03	2021-05-24 16:16:51.882+03	
a67896bd-5300-4d9c-b0fa-8667ee6bb515	2021-05-24 16:17:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:17:11.877+03	2021-05-24 16:17:11.883+03	
253c7b31-18d1-4019-5e62-18cc07b1627d	2021-05-24 16:17:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:17:31.877+03	2021-05-24 16:17:31.895+03	
729b0a28-95e2-1f5e-b265-b1ef913f2cd7	2021-05-24 16:17:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:17:51.877+03	2021-05-24 16:17:51.884+03	
1a056f9e-a639-1d04-664a-93a69c7e5e9e	2021-05-24 16:18:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:18:11.877+03	2021-05-24 16:18:11.886+03	
98d9fdee-8eb8-ed0a-9750-99f135a15795	2021-05-24 16:18:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:18:31.877+03	2021-05-24 16:18:31.882+03	
f5cee1f9-811e-00ee-60ca-63d9dc782f64	2021-05-24 16:18:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:18:52.876+03	2021-05-24 16:18:52.935+03	
555d8164-7d20-3df7-f2d3-feee631663d6	2021-05-24 16:19:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:19:12.877+03	2021-05-24 16:19:12.883+03	
993bad47-d5fb-61c3-45c6-963eb4a4a5f1	2021-05-24 16:19:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:19:32.877+03	2021-05-24 16:19:32.884+03	
0d818751-daca-bb08-c0c0-6c74b0a974e6	2021-05-24 16:19:52.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:19:52.878+03	2021-05-24 16:19:52.888+03	
744450f7-3006-2412-79d5-09e7cad40ef8	2021-05-24 16:20:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:20:03.877+03	2021-05-24 16:20:03.883+03	
213df8c7-fcfd-ddd5-fb7c-4d1defd9c942	2021-05-24 16:20:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:20:23.877+03	2021-05-24 16:20:23.884+03	
653e9529-4205-2e28-d01b-40a9b2b33bff	2021-05-24 16:20:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:20:33.877+03	2021-05-24 16:20:33.882+03	
ec9c8ac1-c04a-f98a-096c-5798c4329e47	2021-05-24 16:20:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:20:53.877+03	2021-05-24 16:20:53.883+03	
e73e623c-d287-8f0c-2130-088f4c8654bb	2021-05-24 16:21:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:21:13.877+03	2021-05-24 16:21:13.882+03	
166becac-dd11-a1fb-10a5-683f5d3a0b6d	2021-05-24 16:21:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:21:33.877+03	2021-05-24 16:21:33.883+03	
116e9dbf-1538-0a63-b42a-9e074bc50c1e	2021-05-24 16:21:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:21:53.877+03	2021-05-24 16:21:53.883+03	
3908a4b2-4bb3-e6bd-649e-5a4ca23ec787	2021-05-24 16:22:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:22:13.877+03	2021-05-24 16:22:13.884+03	
96ca6511-3641-70bc-52b4-1f1ede489e19	2021-05-24 16:22:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:22:33.877+03	2021-05-24 16:22:33.883+03	
aa50574c-330f-a496-2696-5739d7915e26	2021-05-24 16:22:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:22:54.876+03	2021-05-24 16:22:54.884+03	
41aeb4ed-4dad-482d-bdb3-abc354cb2a46	2021-05-24 16:23:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:23:14.877+03	2021-05-24 16:23:14.883+03	
338b906e-bf21-4cba-d699-54bb4e1bebc1	2021-05-24 16:23:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:23:34.877+03	2021-05-24 16:23:34.883+03	
16d756ce-3933-7196-485b-5cef20341acc	2021-05-24 16:23:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:23:54.877+03	2021-05-24 16:23:54.884+03	
1b01e3a8-deb2-c5b8-1922-870d502b0118	2021-05-24 16:24:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:24:14.877+03	2021-05-24 16:24:14.884+03	
a75c363f-9596-b714-55b6-cdaa9be0c4c1	2021-05-24 16:24:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:24:34.877+03	2021-05-24 16:24:34.884+03	
6aff6594-d95f-c78d-cb3b-78562ea12b83	2021-05-24 16:24:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:24:54.877+03	2021-05-24 16:24:54.883+03	
86e5df3f-60ec-318e-a4ab-8da224287a40	2021-05-24 16:25:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:25:14.877+03	2021-05-24 16:25:14.885+03	
001203a1-46e7-2723-acbb-60a7d1788eac	2021-05-24 16:25:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:25:34.877+03	2021-05-24 16:25:34.882+03	
86c8b485-0a9e-ffbe-4c52-cf275dfbfd47	2021-05-24 16:25:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:25:54.877+03	2021-05-24 16:25:54.883+03	
6050e370-2d1b-609d-b1ed-74c110279fa9	2021-05-24 16:26:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:26:14.877+03	2021-05-24 16:26:14.884+03	
3c08c7ad-4db7-f350-ad16-33baf66d9c69	2021-05-24 16:26:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:26:34.877+03	2021-05-24 16:26:34.885+03	
e7a55710-0b77-8e45-e7fb-460300f4a8fa	2021-05-24 16:26:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:26:54.877+03	2021-05-24 16:26:54.882+03	
86c00220-287c-a78e-7ff1-35a02025e986	2021-05-24 16:27:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:27:14.877+03	2021-05-24 16:27:15.138+03	
ea03e3b5-0dd9-c4fd-857f-1cd58b3aa520	2021-05-24 16:27:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:27:34.877+03	2021-05-24 16:27:34.883+03	
dfe7e364-82cb-59b5-907e-3123500ba865	2021-05-24 16:27:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:27:54.877+03	2021-05-24 16:27:54.885+03	
21a60f95-b10f-ca21-5c55-046ac8060eac	2021-05-24 16:28:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:28:14.877+03	2021-05-24 16:28:14.884+03	
e7597cb2-f14c-3c4d-bdcc-04d401213dd1	2021-05-24 16:28:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:28:35.877+03	2021-05-24 16:28:36.117+03	
b627e745-9f5b-b920-b336-e14d750cb07b	2021-05-24 16:28:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:28:55.877+03	2021-05-24 16:28:55.884+03	
0986701b-fcdf-512d-f98f-9a2b11f9e112	2021-05-24 16:29:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:29:15.877+03	2021-05-24 16:29:15.896+03	
e8a2d60c-6694-78a5-bc04-a8cdde9a33e7	2021-05-24 16:29:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:29:35.877+03	2021-05-24 16:29:35.949+03	
982eda7a-dbd7-2917-ad34-8c77e653b19c	2021-05-24 16:29:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:29:55.877+03	2021-05-24 16:29:56.117+03	
f79bd024-7582-4613-23f2-3a39f9ea920f	2021-05-24 16:30:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:30:05.877+03	2021-05-24 16:30:05.885+03	
eeeac68c-4674-1d69-cabe-24fd4b5bf1eb	2021-05-24 16:30:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:30:25.877+03	2021-05-24 16:30:25.884+03	
84d9845c-8455-2efa-9e85-9f766ea1bbae	2021-05-24 16:30:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:30:45.877+03	2021-05-24 16:30:45.884+03	
ccde1494-a7eb-2576-4d08-c34cee7fc280	2021-05-24 16:31:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:31:05.878+03	2021-05-24 16:31:05.885+03	
072891fa-6067-d74c-b3d1-7873a6fed33b	2021-05-24 16:31:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:31:26.877+03	2021-05-24 16:31:26.884+03	
0f9534ff-101f-6b51-c931-f8085f59a02e	2021-05-24 16:31:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:31:46.877+03	2021-05-24 16:31:46.882+03	
575d0f1a-d992-a26c-1d7e-8d4661d34ad7	2021-05-24 16:32:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:32:06.877+03	2021-05-24 16:32:06.883+03	
1df4e610-7935-32d7-b40f-0df0a02c7b1e	2021-05-24 16:32:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:32:26.877+03	2021-05-24 16:32:26.882+03	
f32b0dc5-713a-3c60-e897-df31c300fd8a	2021-05-24 16:32:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:32:46.877+03	2021-05-24 16:32:46.883+03	
022ae950-a32f-e3c8-bc74-2ebef192c09e	2021-05-24 16:33:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:33:06.877+03	2021-05-24 16:33:06.883+03	
eb27d535-e6cb-d8a8-1e45-efbdea6bb092	2021-05-24 16:33:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:33:26.877+03	2021-05-24 16:33:27.128+03	
41e462b3-dfff-7d35-f7b1-57025193abb7	2021-05-24 16:33:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:33:46.877+03	2021-05-24 16:33:47.132+03	
acc70392-7f7e-2bf5-800e-154f3a3d0ca6	2021-05-24 16:34:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:34:06.877+03	2021-05-24 16:34:06.885+03	
0f8e6881-1914-dd8a-e224-4bdd1fd044c8	2021-05-24 16:34:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:34:26.877+03	2021-05-24 16:34:26.884+03	
61b60c57-2820-b967-c436-03f5ec028cfe	2021-05-24 16:34:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:34:46.877+03	2021-05-24 16:34:46.883+03	
18c305cf-43c3-a6b5-4bb7-102b8d571718	2021-05-24 16:35:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:35:06.877+03	2021-05-24 16:35:06.884+03	
00f4b575-2ef5-fd24-5436-7ccb9b1d23e9	2021-05-24 16:35:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:35:26.877+03	2021-05-24 16:35:26.885+03	
b4dc913f-ec3a-5c29-797d-f34e866f48d9	2021-05-24 16:35:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:35:46.877+03	2021-05-24 16:35:46.884+03	
9a0989c8-bf37-b447-45f7-7f61829771df	2021-05-24 16:36:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:36:06.877+03	2021-05-24 16:36:06.886+03	
8599d7b7-7186-c1a1-eaf3-0dff4e39b266	2021-05-24 16:36:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:36:27.877+03	2021-05-24 16:36:27.882+03	
e36c0119-1d92-4cc3-fbfc-424aea3e5b80	2021-05-24 16:36:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:36:47.877+03	2021-05-24 16:36:47.884+03	
eb54bd7e-0c8a-10ba-9f54-eb5418e4231b	2021-05-24 16:37:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:37:07.877+03	2021-05-24 16:37:07.884+03	
2c33befd-6dc7-d544-b2a2-f9a99610f703	2021-05-24 16:37:27.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:37:27.878+03	2021-05-24 16:37:27.884+03	
4775a627-d4bf-9c81-4eaa-6e0987b3f53a	2021-05-24 16:37:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:37:48.877+03	2021-05-24 16:37:48.884+03	
1bd03d80-1f1a-9346-001d-6a373d6f2d15	2021-05-24 16:38:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:38:08.877+03	2021-05-24 16:38:08.884+03	
04a7fda0-a0d8-7d22-a96d-b84b596c5cfe	2021-05-24 16:38:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:38:28.877+03	2021-05-24 16:38:28.883+03	
c0f5e0b8-9168-bd86-9ccc-93d386d24499	2021-05-24 16:38:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:38:48.877+03	2021-05-24 16:38:48.884+03	
3d264a58-5e87-8b82-227c-400872e4ca99	2021-05-24 16:39:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:39:08.877+03	2021-05-24 16:39:08.885+03	
523ae63d-167d-72dd-7211-07273d24425c	2021-05-24 16:39:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:39:28.877+03	2021-05-24 16:39:28.883+03	
5f000ad1-5960-84ba-6b37-17309682e07b	2021-05-24 16:39:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:39:48.877+03	2021-05-24 16:39:48.884+03	
b3bbf8c1-95f5-3921-3eee-1267b128138e	2021-05-24 16:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 16:40:00.877+03	2021-05-24 16:40:00.884+03	ERROR
1b57c117-5050-6c3b-e634-170827aabcda	2021-05-24 16:40:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:40:18.877+03	2021-05-24 16:40:18.884+03	
e6c00a25-c247-8cad-a32c-de1bd0748a35	2021-05-24 16:40:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:40:38.877+03	2021-05-24 16:40:38.884+03	
55362149-4a04-c25d-060c-424f963bb838	2021-05-24 16:40:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:40:58.877+03	2021-05-24 16:40:58.886+03	
7b2aa581-704f-e834-ac19-307470e75ffd	2021-05-24 16:41:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:41:18.877+03	2021-05-24 16:41:18.884+03	
1d3b8ebc-2ee3-c620-65f4-8a0acead19e5	2021-05-24 16:41:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:41:38.877+03	2021-05-24 16:41:38.885+03	
e8aaf520-ca89-d3d1-21cc-191820edb6e0	2021-05-24 16:41:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:41:58.877+03	2021-05-24 16:41:58.885+03	
227ab8c7-2d06-a6f3-1ea6-193809578712	2021-05-24 16:42:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:42:18.877+03	2021-05-24 16:42:18.883+03	
8956f698-5b4c-0294-0d3e-2596f122925d	2021-05-24 16:42:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:42:38.877+03	2021-05-24 16:42:38.884+03	
e9b41f94-ec29-9495-d1d4-de24b4c09491	2021-05-24 16:42:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:42:58.877+03	2021-05-24 16:42:58.884+03	
65e73a7a-ccae-a3ef-eea9-7fda55812627	2021-05-24 16:43:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:43:18.877+03	2021-05-24 16:43:18.883+03	
9acc125b-489c-fd10-73b9-b251cd002a4f	2021-05-24 16:43:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:43:38.877+03	2021-05-24 16:43:38.883+03	
9922212b-f4e7-2763-0757-43736b018109	2021-05-24 16:43:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:43:58.877+03	2021-05-24 16:43:58.884+03	
4fb19ab9-9f67-cba5-3a36-5d193e1139ec	2021-05-24 16:44:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:44:18.877+03	2021-05-24 16:44:18.885+03	
10663157-6fbd-1863-9a37-270dfd22c5ff	2021-05-24 16:44:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:44:38.877+03	2021-05-24 16:44:38.885+03	
6ca1e787-2441-c380-806a-d68114ec762b	2021-05-24 16:44:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:44:58.877+03	2021-05-24 16:44:58.885+03	
62601b18-0a68-f37d-61c1-f2a5716d87b8	2021-05-24 16:45:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:45:18.877+03	2021-05-24 16:45:18.884+03	
b10054a9-967f-fc83-c137-f5f260fdbd8e	2021-05-24 16:45:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:45:38.877+03	2021-05-24 16:45:38.884+03	
9694bbaf-400e-9747-b058-977b5f00223f	2021-05-24 16:25:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:25:24.877+03	2021-05-24 16:25:25.071+03	
76707159-8920-eb37-d67d-c18cd8d17f1d	2021-05-24 16:25:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:25:44.877+03	2021-05-24 16:25:44.883+03	
7ad59ce3-9865-b19d-08b9-bd52a5d4f5af	2021-05-24 16:26:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:26:04.877+03	2021-05-24 16:26:04.883+03	
ee3c1302-907b-7770-0714-7db13598da48	2021-05-24 16:26:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:26:24.877+03	2021-05-24 16:26:24.884+03	
0664e702-b6ec-fcde-d9c3-03ee7df871fb	2021-05-24 16:26:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:26:44.877+03	2021-05-24 16:26:44.883+03	
c94fa7e8-2f9e-941d-ca72-345c48b9be3b	2021-05-24 16:27:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:27:04.877+03	2021-05-24 16:27:04.883+03	
051c1d85-9003-16e2-67ba-212ad73607e1	2021-05-24 16:27:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:27:24.877+03	2021-05-24 16:27:24.89+03	
e2ec8cca-9123-51e7-59ae-1f396197617f	2021-05-24 16:27:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:27:44.877+03	2021-05-24 16:27:44.884+03	
e9733041-8711-33b6-fd6f-05a103cb151e	2021-05-24 16:28:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:28:04.877+03	2021-05-24 16:28:04.884+03	
1cec35d3-12f7-49f9-060f-ccffd1686dcf	2021-05-24 16:28:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:28:25.877+03	2021-05-24 16:28:25.886+03	
74598040-c711-ff17-5e3c-3b24020915b4	2021-05-24 16:28:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:28:45.877+03	2021-05-24 16:28:45.882+03	
d5b347a7-726f-b559-f39b-d6c26aa4851d	2021-05-24 16:29:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:29:05.877+03	2021-05-24 16:29:05.884+03	
0716f980-bab3-1693-352d-a3e84bff4147	2021-05-24 16:29:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:29:25.877+03	2021-05-24 16:29:25.886+03	
8d882d02-a919-0894-3dac-0ad238d9c4de	2021-05-24 16:29:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:29:45.877+03	2021-05-24 16:29:45.885+03	
0030754e-f6e6-871d-7e5e-341e70a1dfd4	2021-05-24 16:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 16:30:00.877+03	2021-05-24 16:30:00.882+03	ERROR
3265a2e5-a1f9-97ea-95dd-1d5039193c17	2021-05-24 16:30:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:30:15.877+03	2021-05-24 16:30:15.882+03	
80bcc558-9db0-ab9b-f90a-2e86866b955c	2021-05-24 16:30:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:30:35.877+03	2021-05-24 16:30:35.885+03	
f9edcd9c-b554-77a0-603f-bb92ad2bd05a	2021-05-24 16:30:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:30:55.877+03	2021-05-24 16:30:55.889+03	
864abe72-95dd-c73f-56d6-cc31d1cd294d	2021-05-24 16:31:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:31:16.877+03	2021-05-24 16:31:17.07+03	
65c640e1-b724-a061-6341-db5a2b24a3ef	2021-05-24 16:31:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:31:36.877+03	2021-05-24 16:31:36.883+03	
3abaa99d-2d80-304b-dfbb-dc76c0f7505d	2021-05-24 16:31:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:31:56.877+03	2021-05-24 16:31:56.882+03	
75d889c5-f60a-365b-0a38-099c53125c83	2021-05-24 16:32:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:32:16.877+03	2021-05-24 16:32:16.883+03	
0842394e-d615-446b-a88b-f716ef490e37	2021-05-24 16:32:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:32:36.877+03	2021-05-24 16:32:36.892+03	
b9672341-c831-34ca-bd91-8d7787fc7d42	2021-05-24 16:32:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:32:56.877+03	2021-05-24 16:32:56.885+03	
06c03233-256c-2175-d7a2-1cf9dce2a4d4	2021-05-24 16:33:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:33:16.877+03	2021-05-24 16:33:16.884+03	
1a42864a-be32-81ce-601d-bd20800c7503	2021-05-24 16:33:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:33:36.877+03	2021-05-24 16:33:36.884+03	
e51b2fbe-a4df-3aff-dfaa-cc70bccac199	2021-05-24 16:33:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:33:56.877+03	2021-05-24 16:33:57.12+03	
3a3c4517-bdbc-bb1e-ff52-4cd2da8b6c42	2021-05-24 16:34:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:34:16.877+03	2021-05-24 16:34:17.129+03	
8ca4b907-7122-dca9-544c-84be54f7bb19	2021-05-24 16:34:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:34:36.877+03	2021-05-24 16:34:36.885+03	
f5d683f6-529b-0619-f035-b93f2724a220	2021-05-24 16:34:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:34:56.877+03	2021-05-24 16:34:56.883+03	
9e75b8a5-8f4d-6de8-3e1b-c95b9727cbe3	2021-05-24 16:35:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:35:16.877+03	2021-05-24 16:35:16.883+03	
3238d417-a2e6-0952-f1a2-be393432535f	2021-05-24 16:35:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:35:36.877+03	2021-05-24 16:35:36.882+03	
77a7fae2-7e07-e682-11f8-e43bb80cc35d	2021-05-24 16:35:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:35:56.877+03	2021-05-24 16:35:56.894+03	
b52dfaf7-2900-3afc-be24-d94cd71a0d97	2021-05-24 16:36:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:36:16.877+03	2021-05-24 16:36:16.883+03	
8853e838-8d3c-f0d3-ca1d-c611ffb93d2b	2021-05-24 16:36:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:36:37.877+03	2021-05-24 16:36:37.882+03	
a99a9c46-15aa-a133-1049-4f3ca7fb5731	2021-05-24 16:36:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:36:57.877+03	2021-05-24 16:36:57.882+03	
3c77fe42-4de4-6409-f4cf-46b51fce1c4f	2021-05-24 16:37:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:37:17.877+03	2021-05-24 16:37:17.884+03	
234fbcad-d328-043c-e663-7272bf257d44	2021-05-24 16:37:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:37:38.877+03	2021-05-24 16:37:38.884+03	
d36b5134-6569-ac7c-49ce-e0d2176ccce8	2021-05-24 16:37:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:37:58.877+03	2021-05-24 16:37:58.884+03	
a2ec3c11-ce22-8225-3f3b-1f42b00cd878	2021-05-24 16:38:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:38:18.877+03	2021-05-24 16:38:18.884+03	
088da953-4ebd-ba1c-d105-c832ea106334	2021-05-24 16:38:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:38:38.877+03	2021-05-24 16:38:38.886+03	
ede3bdfc-b928-8ad6-0a13-b3ceaf25b5e4	2021-05-24 16:38:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:38:58.877+03	2021-05-24 16:38:58.925+03	
7e327a8a-b94f-6d37-a9ca-de3d4c0fff30	2021-05-24 16:39:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:39:18.877+03	2021-05-24 16:39:18.883+03	
ccaa49e2-c14d-7f13-9005-4457f2cf00c9	2021-05-24 16:39:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:39:38.877+03	2021-05-24 16:39:38.882+03	
c69d74a8-1558-3000-3784-57f6936624c4	2021-05-24 16:39:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:39:58.877+03	2021-05-24 16:39:58.885+03	
348f41e8-67f6-ceca-62da-d43c47af04ac	2021-05-24 16:40:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:40:08.877+03	2021-05-24 16:40:08.884+03	
d4d6da63-a061-991f-5167-02eee1935060	2021-05-24 16:40:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:40:28.877+03	2021-05-24 16:40:28.885+03	
f79fd29f-1c5e-164a-5606-8b9cae6c9852	2021-05-24 16:40:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:40:48.877+03	2021-05-24 16:40:48.883+03	
f68a0fd6-af77-bd33-2a59-61ca2e748ee8	2021-05-24 16:41:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:41:08.877+03	2021-05-24 16:41:08.884+03	
007ee6f9-4221-d3f7-3e65-361a3ec74c2f	2021-05-24 16:41:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:41:28.877+03	2021-05-24 16:41:28.885+03	
5f62f6df-9553-dbc6-b2ab-6fa2191377c6	2021-05-24 16:41:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:41:48.877+03	2021-05-24 16:41:48.884+03	
b5f1fe34-87f6-bdb7-cb0c-e37afdf3bbb9	2021-05-24 16:42:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:42:08.877+03	2021-05-24 16:42:08.885+03	
2f032c5d-2d3f-6e5c-6788-17c7b9ce6018	2021-05-24 16:42:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:42:28.877+03	2021-05-24 16:42:28.883+03	
a05cd7ac-2c61-3abb-b902-a335c128b06e	2021-05-24 16:42:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:42:48.877+03	2021-05-24 16:42:48.884+03	
d88cf1f5-cd1e-e265-cea5-fa4dc0a50733	2021-05-24 16:43:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:43:08.877+03	2021-05-24 16:43:08.884+03	
9cf45873-06d5-63b8-e665-1ee3110f5ae4	2021-05-24 16:43:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:43:28.877+03	2021-05-24 16:43:28.893+03	
0b97fe9f-4cbe-cdcb-e140-78fc9666a9e4	2021-05-24 16:43:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:43:48.877+03	2021-05-24 16:43:48.883+03	
8113a0e2-e633-7c3b-9928-393a578099d0	2021-05-24 16:44:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:44:08.877+03	2021-05-24 16:44:08.888+03	
4e194b48-5b19-25a3-c5cd-f3530d6707ea	2021-05-24 16:44:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:44:28.877+03	2021-05-24 16:44:28.882+03	
a6fe1853-fe70-abce-17f8-65f18d402f7f	2021-05-24 16:44:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:44:48.877+03	2021-05-24 16:44:49.222+03	
44e56345-a66c-e802-031b-416a7970a99e	2021-05-24 16:45:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:45:08.877+03	2021-05-24 16:45:08.884+03	
fcb2ade2-bc24-d859-e2e2-73fe232e32af	2021-05-24 16:45:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:45:28.877+03	2021-05-24 16:45:28.883+03	
c73fc424-a4f4-7e4e-4bca-8276d677f046	2021-05-24 16:45:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:45:48.877+03	2021-05-24 16:45:48.883+03	
68b93e60-73e3-05a1-4a5e-6d832e1af151	2021-05-24 16:45:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:45:58.877+03	2021-05-24 16:45:58.886+03	
25edd7e7-1592-2f2f-48c8-05b5698b66a4	2021-05-24 16:46:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:46:18.877+03	2021-05-24 16:46:18.883+03	
a8b4325b-2494-a747-c691-f3d0bcb60af0	2021-05-24 16:46:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:46:38.877+03	2021-05-24 16:46:38.885+03	
7c3ab539-9ad7-031f-126e-090787362908	2021-05-24 16:46:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:46:48.877+03	2021-05-24 16:46:48.894+03	
436efeff-314f-079d-b103-b7f0b57b347b	2021-05-24 16:47:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:47:08.877+03	2021-05-24 16:47:08.884+03	
c1656998-685b-b2a4-accc-e808471821c7	2021-05-24 16:47:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:47:28.877+03	2021-05-24 16:47:28.883+03	
198cc04b-4c90-780a-795a-73e2d0c80bbb	2021-05-24 16:47:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:47:48.877+03	2021-05-24 16:47:48.884+03	
472acfb0-7780-8b72-6386-fdad6a1e342a	2021-05-24 16:48:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:48:08.877+03	2021-05-24 16:48:08.884+03	
0f460c3c-5672-494a-5136-a53c7d807637	2021-05-24 16:48:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:48:28.877+03	2021-05-24 16:48:28.885+03	
82146db8-8e5e-d6c9-cae0-97d66c839d5a	2021-05-24 16:48:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:48:48.877+03	2021-05-24 16:48:48.883+03	
e36aeacc-d9a4-d8e9-cea2-b313c1cf9a31	2021-05-24 16:49:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:49:08.877+03	2021-05-24 16:49:08.885+03	
7bb48a5d-e705-6f35-6a9c-3a4c2fd1e4fe	2021-05-24 16:49:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:49:28.877+03	2021-05-24 16:49:28.886+03	
ab19fd11-a42a-d24f-fcb6-5821b134d8d0	2021-05-24 16:49:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:49:48.877+03	2021-05-24 16:49:48.883+03	
f9237097-1fcd-a32e-0cc7-c393ddf7a515	2021-05-24 16:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 16:50:00.877+03	2021-05-24 16:50:00.881+03	ERROR
7fcbe829-5fb4-9e88-7ab2-c0840adef261	2021-05-24 16:50:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:50:18.877+03	2021-05-24 16:50:18.884+03	
c221c043-72d5-da1c-00ff-b98304a6517c	2021-05-24 16:50:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:50:38.877+03	2021-05-24 16:50:38.882+03	
e92ce359-7da5-1d71-87b5-ef20876690a4	2021-05-24 16:50:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:50:58.877+03	2021-05-24 16:50:58.883+03	
5a6a815d-4100-2179-f13b-e2c3fa3c8e58	2021-05-24 16:51:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:51:08.877+03	2021-05-24 16:51:08.883+03	
e4eb9570-3998-cc8e-36bc-bfed42d1721f	2021-05-24 16:51:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:51:28.877+03	2021-05-24 16:51:29.195+03	
c2ba1c73-5d46-7695-284a-247eb6045e91	2021-05-24 16:51:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:51:48.877+03	2021-05-24 16:51:48.884+03	
4258e8d7-2b15-fc1a-30f2-2ff4e59537fd	2021-05-24 16:52:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:52:09.876+03	2021-05-24 16:52:09.882+03	
ab875944-037a-88fe-006b-6c8c75ba2764	2021-05-24 16:52:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:52:39.877+03	2021-05-24 16:52:39.885+03	
9989f031-da5b-8f01-2d09-0554818e4756	2021-05-24 16:53:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:53:00.877+03	2021-05-24 16:53:00.884+03	
5f5cfdea-c3a0-1f19-856d-c77b976d0d43	2021-05-24 16:53:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:53:20.877+03	2021-05-24 16:53:20.883+03	
ab698737-bafc-3649-5d01-57f183555226	2021-05-24 16:53:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:53:40.877+03	2021-05-24 16:53:40.883+03	
6b51cf57-25c2-4925-39d7-5366e2b1b2ca	2021-05-24 16:54:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:54:00.877+03	2021-05-24 16:54:00.902+03	
92f7f8ed-f219-9ade-49f2-e75fcb84109b	2021-05-24 16:54:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:54:21.877+03	2021-05-24 16:54:21.885+03	
4bd24e07-a8b6-2ec5-d100-70413fcdc81c	2021-05-24 16:54:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:54:41.877+03	2021-05-24 16:54:41.883+03	
637a483f-046c-5fec-464d-4629252d10a7	2021-05-24 16:55:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:55:01.877+03	2021-05-24 16:55:01.883+03	
413ed36c-9f8a-375f-eb5f-346eac5d7a55	2021-05-24 16:55:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:55:21.877+03	2021-05-24 16:55:21.882+03	
e1db0a2a-43fc-4efb-987b-75b271e92e01	2021-05-24 16:55:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:55:41.877+03	2021-05-24 16:55:42.198+03	
e4857cad-7976-1d91-a6d7-73b0e545c959	2021-05-24 16:56:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:56:01.877+03	2021-05-24 16:56:01.884+03	
daa8d0ad-be14-ba63-e083-225cf7672641	2021-05-24 16:56:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:56:23.877+03	2021-05-24 16:56:24.188+03	
36c51b49-ee5f-4409-b5e3-aad85ac20b2a	2021-05-24 16:56:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:56:43.877+03	2021-05-24 16:56:43.883+03	
f559c2cd-951a-d21e-32f0-0461b6bc882b	2021-05-24 16:57:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:57:03.877+03	2021-05-24 16:57:03.884+03	
ff732ca6-e9b9-483a-f857-8c7e197cf3d1	2021-05-24 16:57:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:57:23.877+03	2021-05-24 16:57:23.883+03	
4de00ff8-4c49-9f5d-fcfe-30270ebffad0	2021-05-24 16:57:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:57:33.877+03	2021-05-24 16:57:33.882+03	
9e6da1f4-2501-b36d-9f83-ab5b25169bca	2021-05-24 16:57:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:57:53.877+03	2021-05-24 16:57:53.884+03	
4ae0fa9e-c160-0287-28f9-fe15d5e59073	2021-05-24 16:58:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:58:13.877+03	2021-05-24 16:58:14.119+03	
43bd4534-7198-0cec-cc8f-bc7c2af3e8c9	2021-05-24 16:58:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:58:43.877+03	2021-05-24 16:58:44.127+03	
89f743d0-146b-e153-9a5b-592218993bff	2021-05-24 16:59:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:59:13.877+03	2021-05-24 16:59:13.885+03	
31e01a18-bf77-5dfa-e225-a4aefc037598	2021-05-24 16:59:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:59:33.877+03	2021-05-24 16:59:33.882+03	
1d255e9c-7fa5-4c59-c74a-75ab2ef27e3e	2021-05-24 16:59:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:59:53.877+03	2021-05-24 16:59:53.883+03	
22e32207-0a4f-f7b9-f867-3c768c5014b3	2021-05-24 17:00:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:00:03.877+03	2021-05-24 17:00:04.164+03	
1e598c79-2524-a019-f13d-c020f8db246e	2021-05-24 17:00:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:00:23.877+03	2021-05-24 17:00:23.885+03	
d029952c-7203-d6a0-e497-98dbe615ea49	2021-05-24 17:00:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:00:43.877+03	2021-05-24 17:00:43.885+03	
7c0de5ca-807f-de86-c1e6-11b4807e4c8f	2021-05-24 17:01:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:01:03.877+03	2021-05-24 17:01:03.884+03	
6ab036f1-4f6e-b6c2-cdc3-4a631dc41576	2021-05-24 17:01:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:01:23.877+03	2021-05-24 17:01:23.883+03	
4c80e15e-d362-6c08-67fe-fa84d24f6206	2021-05-24 17:01:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:01:43.877+03	2021-05-24 17:01:43.884+03	
aff51135-9d4c-153b-5821-cefdac10f0b1	2021-05-24 17:02:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:02:03.877+03	2021-05-24 17:02:03.883+03	
366b410f-4b67-2985-9d47-1ee0a5b397e4	2021-05-24 17:02:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:02:23.877+03	2021-05-24 17:02:23.883+03	
9f513e2f-44f1-970d-f0ba-ddc86d8d0084	2021-05-24 17:02:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:02:43.877+03	2021-05-24 17:02:43.883+03	
ab0b65b6-9f83-347a-dcf5-19245848e2eb	2021-05-24 17:03:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:03:03.877+03	2021-05-24 17:03:04.145+03	
bb9ddc60-ba88-f6e7-e821-7a5e6cb99527	2021-05-24 17:03:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:03:23.877+03	2021-05-24 17:03:24.179+03	
065c3d3a-c523-9f0d-c83f-014ef568dc14	2021-05-24 17:03:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:03:44.877+03	2021-05-24 17:03:44.884+03	
72b0f51a-0e72-f8f9-425b-03f4f4f31839	2021-05-24 17:04:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:04:04.877+03	2021-05-24 17:04:04.884+03	
f046706d-5630-e25b-c99e-b0d0e098c2e4	2021-05-24 17:04:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:04:24.877+03	2021-05-24 17:04:24.883+03	
38b1759b-1c40-eaee-7da7-f32a87f14ac0	2021-05-24 17:04:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:04:44.877+03	2021-05-24 17:04:44.884+03	
d89da496-d554-3c33-579d-e6af234a968f	2021-05-24 17:05:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:05:04.877+03	2021-05-24 17:05:04.886+03	
b562b1ca-3e6a-4188-4286-86cb7a2833e3	2021-05-24 17:05:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:05:24.877+03	2021-05-24 17:05:24.882+03	
7dfb5a75-328b-1e50-ccdf-f28133f73fe0	2021-05-24 17:05:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:05:44.877+03	2021-05-24 17:05:44.884+03	
c76d198b-7cd9-8ed2-d4e9-701c20643acb	2021-05-24 17:06:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:06:04.877+03	2021-05-24 17:06:05.202+03	
a5a7309b-0dad-961a-2554-964352cfa7f2	2021-05-24 17:06:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:06:24.877+03	2021-05-24 17:06:24.885+03	
21633fec-1e0e-82aa-4661-f11559aa64f6	2021-05-24 16:46:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:46:08.877+03	2021-05-24 16:46:09.118+03	
d59d6980-f96f-eea7-b2f5-cf0e492c1b73	2021-05-24 16:46:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:46:28.877+03	2021-05-24 16:46:28.885+03	
dd0a8d71-373f-8883-1720-51eaa92e1244	2021-05-24 16:46:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:46:58.877+03	2021-05-24 16:46:59.125+03	
06f79a15-75c0-555d-953a-83ece3754d9f	2021-05-24 16:47:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:47:18.877+03	2021-05-24 16:47:18.883+03	
7f3208d9-1ba7-f3ce-b645-87cfd61611da	2021-05-24 16:47:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:47:38.877+03	2021-05-24 16:47:38.883+03	
3bf48fb8-1f38-dc27-beee-5471b3442728	2021-05-24 16:47:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:47:58.877+03	2021-05-24 16:47:58.884+03	
f5fc4a3c-2ab0-5e0a-aef7-8f34e94a1409	2021-05-24 16:48:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:48:18.877+03	2021-05-24 16:48:18.884+03	
b8607cba-f985-c6d0-4bd1-4bfa25f7e188	2021-05-24 16:48:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:48:38.877+03	2021-05-24 16:48:39.124+03	
b17fcd5f-a830-2edd-6316-e033b8f96f27	2021-05-24 16:48:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:48:58.877+03	2021-05-24 16:48:58.883+03	
9499f1c5-3043-4e19-f852-ea7b5944b311	2021-05-24 16:49:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:49:18.877+03	2021-05-24 16:49:18.885+03	
227bf31c-499d-f44c-4378-c2c8d68b5068	2021-05-24 16:49:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:49:38.877+03	2021-05-24 16:49:38.883+03	
c712d47c-0f01-9f0f-a128-6fdd49d99c88	2021-05-24 16:49:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:49:58.877+03	2021-05-24 16:49:58.882+03	
5ac29ff2-954e-a8b7-6695-90c94e86dadc	2021-05-24 16:50:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:50:08.877+03	2021-05-24 16:50:08.891+03	
c0b18111-2ea3-4a1a-d134-99ef93ab0c9c	2021-05-24 16:50:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:50:28.877+03	2021-05-24 16:50:28.883+03	
27eed1fc-a19a-6dd5-1858-c813fd7ad665	2021-05-24 16:50:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:50:48.877+03	2021-05-24 16:50:48.882+03	
93ebcc4c-c061-a365-5762-697ca54e60e0	2021-05-24 16:51:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:51:18.877+03	2021-05-24 16:51:18.882+03	
2359fa29-3d2b-0b59-1813-dafc9ba4b5be	2021-05-24 16:51:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:51:38.877+03	2021-05-24 16:51:38.883+03	
465876e1-1112-ad34-fc39-f194560c0e0f	2021-05-24 16:51:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:51:58.877+03	2021-05-24 16:51:58.882+03	
48563f80-e9ff-2389-6273-97843bc823f4	2021-05-24 16:52:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:52:19.877+03	2021-05-24 16:52:19.883+03	
251db32a-50b5-d57a-9f8f-3e4d8e7a7d10	2021-05-24 16:52:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:52:29.877+03	2021-05-24 16:52:29.882+03	
b1e05879-0591-7506-9aef-38b521a35a86	2021-05-24 16:52:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:52:49.877+03	2021-05-24 16:52:49.883+03	
41f12184-1717-36f4-b5a6-17659e488e83	2021-05-24 16:53:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:53:10.877+03	2021-05-24 16:53:10.887+03	
e3452201-7bfb-c82a-51e3-8d3bdab3aa78	2021-05-24 16:53:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:53:30.877+03	2021-05-24 16:53:30.884+03	
b7b0df2a-720b-93c4-e16b-9c74022b8cad	2021-05-24 16:53:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:53:50.877+03	2021-05-24 16:53:50.882+03	
b9beb22a-dee5-8d7d-0516-dd4dd7587e82	2021-05-24 16:54:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:54:10.877+03	2021-05-24 16:54:10.883+03	
6dab68d9-6b84-905a-a446-909c80b98558	2021-05-24 16:54:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:54:31.877+03	2021-05-24 16:54:31.884+03	
f3d75ecd-f08c-f9c8-bd7e-cdee67721f07	2021-05-24 16:54:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:54:51.877+03	2021-05-24 16:54:51.884+03	
b17cfa61-94d1-0a4c-7dc5-33402a049009	2021-05-24 16:55:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:55:11.877+03	2021-05-24 16:55:11.883+03	
b390ba24-2816-3bb6-719e-e2e65d561aa4	2021-05-24 16:55:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:55:31.877+03	2021-05-24 16:55:31.884+03	
03fc50e0-9db3-2880-66e7-256074365a0b	2021-05-24 16:55:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:55:51.877+03	2021-05-24 16:55:52.164+03	
f70efd53-9944-c635-d211-650e28e85fcf	2021-05-24 16:56:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:56:12.878+03	2021-05-24 16:56:12.885+03	
d5383562-0932-a4d4-4d1a-4ad018aecb4e	2021-05-24 16:56:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:56:33.877+03	2021-05-24 16:56:33.885+03	
c1582e8b-251c-606d-0c2d-36b5c1b9814d	2021-05-24 16:56:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:56:53.877+03	2021-05-24 16:56:53.884+03	
02f6493b-013a-2a0f-5bad-0a7a9d12bb15	2021-05-24 16:57:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:57:13.877+03	2021-05-24 16:57:13.9+03	
59cefca6-29b8-385f-6cd1-b5c8ed6b0ebf	2021-05-24 16:57:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:57:43.877+03	2021-05-24 16:57:43.883+03	
a1d65e22-5471-34e5-f117-1e961828b10e	2021-05-24 16:58:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:58:03.877+03	2021-05-24 16:58:03.885+03	
22fdf81f-3899-6dd6-9ca9-415bcc1d8fb6	2021-05-24 16:58:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:58:23.877+03	2021-05-24 16:58:23.883+03	
602855d2-e851-eef2-ce15-46d24c45c52f	2021-05-24 16:58:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:58:33.877+03	2021-05-24 16:58:33.884+03	
1a266e13-adf8-d8f3-c7cd-788d94b9648b	2021-05-24 16:58:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:58:53.877+03	2021-05-24 16:58:53.885+03	
19480155-8ea2-a913-0ba4-ab5d093e799d	2021-05-24 16:59:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:59:03.877+03	2021-05-24 16:59:03.886+03	
99bd7652-eb31-6a25-c329-9f0362241a8a	2021-05-24 16:59:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:59:23.877+03	2021-05-24 16:59:23.883+03	
387522b5-1712-849a-9ea6-ae816d878905	2021-05-24 16:59:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 16:59:43.877+03	2021-05-24 16:59:43.883+03	
2faf92db-9381-35a3-f458-648fc4b531b1	2021-05-24 17:00:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 17:00:00.877+03	2021-05-24 17:00:00.882+03	ERROR
ec0314df-7708-0413-e7e5-4ec712521d4d	2021-05-24 17:00:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:00:13.877+03	2021-05-24 17:00:13.884+03	
a2977ace-b061-4bf6-fc7e-9e6e7bdd5b20	2021-05-24 17:00:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:00:33.877+03	2021-05-24 17:00:33.882+03	
dd207124-29da-c9af-3a74-96d6c3b0448a	2021-05-24 17:00:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:00:53.877+03	2021-05-24 17:00:53.935+03	
6cc5fead-cefa-003d-af94-5ad2f7d14be4	2021-05-24 17:01:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:01:13.877+03	2021-05-24 17:01:13.884+03	
ad29cb0c-d35f-6768-30bb-55de1475900a	2021-05-24 17:01:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:01:33.877+03	2021-05-24 17:01:33.889+03	
7b0a3cc5-2ef9-e279-403d-cadb66c5e92c	2021-05-24 17:01:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:01:53.877+03	2021-05-24 17:01:53.882+03	
efb3f587-a959-b9ff-343b-46e9ad6aabe5	2021-05-24 17:02:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:02:13.877+03	2021-05-24 17:02:13.884+03	
34e38228-42a2-e8a4-e1c0-642b00b936e6	2021-05-24 17:02:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:02:33.877+03	2021-05-24 17:02:33.886+03	
3611f1f5-368b-4926-4040-732fdf1479c6	2021-05-24 17:02:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:02:53.877+03	2021-05-24 17:02:53.883+03	
b133c989-ce37-70b1-2103-e84284fc2b09	2021-05-24 17:03:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:03:13.877+03	2021-05-24 17:03:13.884+03	
2b71a0fc-d9de-3151-ea20-f3242c626ed8	2021-05-24 17:03:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:03:33.878+03	2021-05-24 17:03:33.884+03	
bf5abbe8-1a58-6a9a-311c-92d8728bb5a6	2021-05-24 17:03:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:03:54.877+03	2021-05-24 17:03:54.883+03	
29dedad3-9668-b7ab-cbee-d5ccaf0adf74	2021-05-24 17:04:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:04:14.877+03	2021-05-24 17:04:14.884+03	
73bf459e-3c3e-96d9-a47d-23f9a9acdf2f	2021-05-24 17:04:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:04:34.877+03	2021-05-24 17:04:34.882+03	
4851f7f2-b9a8-caee-4202-1d1ec1f73734	2021-05-24 17:04:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:04:54.877+03	2021-05-24 17:04:54.884+03	
38e7b742-7d3a-443b-a6d8-5220599e57be	2021-05-24 17:05:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:05:14.877+03	2021-05-24 17:05:14.895+03	
0c78b9c7-9d26-6306-2ce0-10576d3fa905	2021-05-24 17:05:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:05:34.877+03	2021-05-24 17:05:34.937+03	
f6173b9d-82ab-5c01-c38f-dd392d847693	2021-05-24 17:05:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:05:54.877+03	2021-05-24 17:05:54.883+03	
aea1889a-82e4-9a04-db5b-a162a0d70fbb	2021-05-24 17:06:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:06:14.877+03	2021-05-24 17:06:14.885+03	
d8f73d62-4880-2d92-8192-cebbcb9a5884	2021-05-24 17:06:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:06:34.877+03	2021-05-24 17:06:34.886+03	
1316fd22-d57c-85dd-a55f-669ddf51f156	2021-05-24 17:06:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:06:44.877+03	2021-05-24 17:06:44.884+03	
9d68f394-0d81-6f7e-274d-f3bb36feee6a	2021-05-24 17:07:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:07:04.877+03	2021-05-24 17:07:04.884+03	
20f3d26a-6c66-bd7e-c489-23e9c16c125f	2021-05-24 17:07:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:07:24.877+03	2021-05-24 17:07:24.885+03	
c85dcb06-f4f2-48d8-1d70-50eb863236d4	2021-05-24 17:07:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:07:44.877+03	2021-05-24 17:07:44.886+03	
1ae07b28-606c-ec5c-5b9e-a492e8c16228	2021-05-24 17:08:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:08:04.877+03	2021-05-24 17:08:04.884+03	
2121a95a-af33-5ca6-6c11-dfcf36f3a562	2021-05-24 17:08:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:08:24.877+03	2021-05-24 17:08:24.885+03	
8706066c-3abd-2b56-73e9-51738d6a0dde	2021-05-24 17:08:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:08:44.877+03	2021-05-24 17:08:44.884+03	
a306bce3-bdd6-4748-9ec5-0fbf2b131a5f	2021-05-24 17:09:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:09:04.877+03	2021-05-24 17:09:05.096+03	
e858aa61-4318-fdd3-21ae-6b9bb23f8b8a	2021-05-24 17:09:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:09:24.877+03	2021-05-24 17:09:24.891+03	
147aff1e-7172-81dd-4b0e-e559ca47c0b6	2021-05-24 17:09:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:09:44.877+03	2021-05-24 17:09:44.883+03	
75aba0b3-e199-e894-c649-fcfa9378e5d3	2021-05-24 17:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 17:10:00.877+03	2021-05-24 17:10:00.883+03	ERROR
922130e4-0c18-d1f4-d8e7-61b6c682faa0	2021-05-24 17:10:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:10:14.877+03	2021-05-24 17:10:14.885+03	
1099ac74-06be-c5bf-0f2b-20d933bf7b68	2021-05-24 17:10:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:10:34.877+03	2021-05-24 17:10:34.882+03	
1daad635-54ba-64f9-2a1e-5e1b10ca7a15	2021-05-24 17:10:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:10:54.877+03	2021-05-24 17:10:54.885+03	
177e7eed-858d-f4d1-3f93-e219bb562ee8	2021-05-24 17:11:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:11:14.877+03	2021-05-24 17:11:14.885+03	
8dc20e35-1df7-a489-c330-f86eeb5e92be	2021-05-24 17:11:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:11:34.877+03	2021-05-24 17:11:34.884+03	
fa33c9eb-abb0-005a-854f-413c88c92c7f	2021-05-24 17:11:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:11:54.877+03	2021-05-24 17:11:54.893+03	
978fe229-dc38-d2ba-c6d1-dcbb02777cba	2021-05-24 17:12:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:12:14.877+03	2021-05-24 17:12:14.883+03	
385e2b02-f5ee-c688-5ab8-e15ae3cf49ee	2021-05-24 17:12:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:12:35.877+03	2021-05-24 17:12:35.884+03	
1d7917ae-6bdf-9de0-10c0-99a40c6a4a37	2021-05-24 17:12:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:12:55.877+03	2021-05-24 17:12:55.887+03	
27c758e0-5826-3b76-b7d7-b63889fa2bdf	2021-05-24 17:13:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:13:15.877+03	2021-05-24 17:13:15.884+03	
ee802d8d-490e-4070-1941-f42097523180	2021-05-24 17:13:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:13:35.877+03	2021-05-24 17:13:35.885+03	
ebb14545-929b-b40a-a93b-0fecf095eeb7	2021-05-24 17:13:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:13:55.877+03	2021-05-24 17:13:55.885+03	
bc94478d-b2be-191e-3282-9e2cdd880f98	2021-05-24 17:14:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:14:16.877+03	2021-05-24 17:14:16.882+03	
1514bcef-f54f-db3b-a902-1f5f0905b63d	2021-05-24 17:14:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:14:36.877+03	2021-05-24 17:14:36.885+03	
dca9d3f8-804f-aa68-52f4-a939ab0c0f15	2021-05-24 17:14:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:14:56.877+03	2021-05-24 17:14:56.884+03	
53244c81-748c-8e14-bf06-dbe8d6d9c36a	2021-05-24 17:15:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:15:16.877+03	2021-05-24 17:15:16.896+03	
9787afe7-8b92-65ab-8e24-7e11a3784e00	2021-05-24 17:15:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:15:36.877+03	2021-05-24 17:15:36.883+03	
d3b0d917-b8da-9f68-10ad-2ea65d5dbea7	2021-05-24 17:15:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:15:57.877+03	2021-05-24 17:15:57.885+03	
4337a6d4-5ca6-e7b7-33af-08ff84bc6b49	2021-05-24 17:16:17.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:16:17.878+03	2021-05-24 17:16:17.887+03	
439d05aa-771b-612f-0e48-a6c2eb114ba0	2021-05-24 17:16:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:16:38.877+03	2021-05-24 17:16:38.885+03	
c7d39316-359a-bff7-4a05-1e6437d6389a	2021-05-24 17:16:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:16:58.877+03	2021-05-24 17:16:58.884+03	
276d721a-e7cd-497b-088e-7da1c19eb6fd	2021-05-24 17:17:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:17:18.877+03	2021-05-24 17:17:18.884+03	
9bfa9e0c-0275-e297-b7fd-f2cf04dc21b0	2021-05-24 17:17:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:17:38.877+03	2021-05-24 17:17:38.883+03	
6bd27e36-e1c1-e930-168b-891fbdac31d0	2021-05-24 17:17:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:17:58.877+03	2021-05-24 17:17:58.883+03	
75d67706-d445-dbc1-5745-c2c96aed6454	2021-05-24 17:18:18.891	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:18:18.891+03	2021-05-24 17:18:18.897+03	
f4ac91ed-d9aa-298d-21ac-684df532b09f	2021-05-24 17:18:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:18:39.877+03	2021-05-24 17:18:39.885+03	
2d26494c-033a-f68a-1900-25034a756c7e	2021-05-24 17:18:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:18:59.877+03	2021-05-24 17:18:59.884+03	
03a66adb-87c2-61ca-d60b-d351da278634	2021-05-24 17:19:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:19:19.877+03	2021-05-24 17:19:19.884+03	
bca75e71-4dab-7b23-9894-53e9d5a75d9f	2021-05-24 17:19:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:19:39.877+03	2021-05-24 17:19:39.884+03	
57131662-a1dc-6bfd-ae21-e98db8cd5030	2021-05-24 17:19:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:19:59.877+03	2021-05-24 17:20:00.116+03	
8e3a1c6a-8b2a-d4b8-974b-c1c7dbaeb2e8	2021-05-24 17:20:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:20:09.877+03	2021-05-24 17:20:09.883+03	
d6ba29ab-76df-9312-23e0-d781dc468b11	2021-05-24 17:20:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:20:39.877+03	2021-05-24 17:20:39.882+03	
922ca86a-7dc8-c3ce-b9ca-35bda98a39db	2021-05-24 17:20:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:20:59.877+03	2021-05-24 17:20:59.883+03	
245823fd-fb9c-c802-7ca2-7b07e4ec007f	2021-05-24 17:21:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:21:19.877+03	2021-05-24 17:21:20.195+03	
73546a88-2ccc-4873-171b-18ba3905163a	2021-05-24 17:21:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:21:39.877+03	2021-05-24 17:21:39.883+03	
5637e6a5-82e0-4d40-2999-9c3aebb801a3	2021-05-24 17:21:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:21:59.877+03	2021-05-24 17:21:59.885+03	
d52c100a-0bf3-d14f-84b3-df605e04c157	2021-05-24 17:22:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:22:19.877+03	2021-05-24 17:22:19.883+03	
b588444b-9184-838f-5246-9ffa4380f82a	2021-05-24 17:22:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:22:39.877+03	2021-05-24 17:22:39.883+03	
717c1f34-ade5-c1a2-c4c7-be92211fb9f0	2021-05-24 17:22:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:22:59.877+03	2021-05-24 17:23:00.199+03	
4a543981-9e23-463e-04a5-cbf1070ee6db	2021-05-24 17:23:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:23:19.877+03	2021-05-24 17:23:19.882+03	
0ab515b1-1ff7-eac2-2cc0-efd340940fd5	2021-05-24 17:23:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:23:39.877+03	2021-05-24 17:23:39.884+03	
c2291514-0c2f-cdf6-8260-5eb2cbeff596	2021-05-24 17:23:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:23:59.877+03	2021-05-24 17:23:59.884+03	
86b25cf2-7e59-4025-e2e1-3a21bfddba3f	2021-05-24 17:24:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:24:19.877+03	2021-05-24 17:24:19.884+03	
75de5e49-732d-bff8-c03a-130df4c927d3	2021-05-24 17:24:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:24:39.877+03	2021-05-24 17:24:39.886+03	
04a7109f-9a90-3c22-d7ba-575819497a61	2021-05-24 17:25:00.4	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:25:00.399+03	2021-05-24 17:25:01.697+03	
850e1d77-a3f7-60bc-be83-61d8ae2cda64	2021-05-24 17:25:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:25:10.876+03	2021-05-24 17:25:10.883+03	
64ba077c-85f4-b7b4-aaa5-8991dfc94508	2021-05-24 17:25:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:25:30.877+03	2021-05-24 17:25:30.883+03	
f2bd7f75-9503-4919-0ed5-2fb1db08ee3a	2021-05-24 17:25:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:25:50.877+03	2021-05-24 17:25:51.208+03	
d4596ce7-d07f-7a06-c307-f604a22a1ef5	2021-05-24 17:26:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:26:10.877+03	2021-05-24 17:26:11.269+03	
1e2c1c72-b9b0-5a79-5521-2a9e696eda70	2021-05-24 17:26:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:26:30.877+03	2021-05-24 17:26:30.884+03	
0f265f31-667b-7ebe-677d-3adced1283cf	2021-05-24 17:26:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:26:50.877+03	2021-05-24 17:26:50.883+03	
57d4edf1-4088-4c62-3aa9-764d718277b3	2021-05-24 17:27:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:27:10.877+03	2021-05-24 17:27:10.887+03	
6142f7f2-c346-0685-ef09-98c118256c7f	2021-05-24 17:06:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:06:54.877+03	2021-05-24 17:06:54.885+03	
df865a67-c5f9-5693-c2c6-f1b3fbc6da64	2021-05-24 17:07:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:07:14.877+03	2021-05-24 17:07:14.883+03	
be9cc89f-0e6e-a712-3d51-c1b80135d1cf	2021-05-24 17:07:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:07:34.877+03	2021-05-24 17:07:34.882+03	
3f1249a8-2d7d-9826-ac89-e4660b7dae68	2021-05-24 17:07:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:07:54.877+03	2021-05-24 17:07:54.884+03	
235d469a-855f-94cd-3adc-25a307e56775	2021-05-24 17:08:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:08:14.877+03	2021-05-24 17:08:14.882+03	
cc6e32c6-1c2f-9799-4baf-434c57ccab37	2021-05-24 17:08:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:08:34.877+03	2021-05-24 17:08:35.016+03	
77f457b9-a59f-f6ad-33d4-aeb3056dc282	2021-05-24 17:08:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:08:54.877+03	2021-05-24 17:08:54.886+03	
d32966ef-1c79-2788-3266-06f058102b31	2021-05-24 17:09:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:09:14.877+03	2021-05-24 17:09:14.883+03	
64f58c49-102f-a1a7-0719-9d563c6eae7e	2021-05-24 17:09:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:09:34.877+03	2021-05-24 17:09:34.885+03	
b66d1986-276a-490c-9689-8e662223c05a	2021-05-24 17:09:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:09:54.877+03	2021-05-24 17:09:54.891+03	
6f9fa184-0e3a-6b99-835f-a9e06d19aca4	2021-05-24 17:10:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:10:04.877+03	2021-05-24 17:10:04.883+03	
676ff6e6-431d-2a67-0999-27e54c7600a0	2021-05-24 17:10:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:10:24.877+03	2021-05-24 17:10:24.884+03	
3ab599bb-959c-d1cc-863b-99a7278e0c0e	2021-05-24 17:10:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:10:44.877+03	2021-05-24 17:10:44.882+03	
8eac9ff4-a0d6-47b3-fa3e-4c8ada2f2e53	2021-05-24 17:11:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:11:04.877+03	2021-05-24 17:11:04.883+03	
7f3e7b15-0f48-270d-5ec1-912dd7afe5a1	2021-05-24 17:11:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:11:24.877+03	2021-05-24 17:11:24.884+03	
2a091229-7195-53c4-f5e4-d8a219a09baf	2021-05-24 17:11:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:11:44.877+03	2021-05-24 17:11:44.883+03	
db52364d-3c85-d153-f679-caf3307653b7	2021-05-24 17:12:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:12:04.877+03	2021-05-24 17:12:04.884+03	
1009800b-9b91-fa2d-0bf3-9ff18fcec238	2021-05-24 17:12:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:12:24.877+03	2021-05-24 17:12:24.885+03	
015a9673-2cca-a87d-4e3b-09ba675e09c0	2021-05-24 17:12:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:12:45.877+03	2021-05-24 17:12:46.232+03	
b1e9ddfa-e1eb-2dd0-717a-bfc90077b3a7	2021-05-24 17:13:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:13:05.877+03	2021-05-24 17:13:05.884+03	
cf9d5bdd-2e28-c5fc-463a-413fb7a65246	2021-05-24 17:13:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:13:25.877+03	2021-05-24 17:13:25.884+03	
e542ebdb-b2a5-232c-a0d9-3e6a307b2158	2021-05-24 17:13:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:13:45.877+03	2021-05-24 17:13:45.884+03	
9b4d4243-36fe-fb89-4fad-f26f910c3b89	2021-05-24 17:14:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:14:05.877+03	2021-05-24 17:14:05.884+03	
05e0d086-054f-a922-b0b9-86e65e724d81	2021-05-24 17:14:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:14:26.877+03	2021-05-24 17:14:26.884+03	
7d10caa0-ca0d-ed13-4a86-8b85ddce118f	2021-05-24 17:14:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:14:46.877+03	2021-05-24 17:14:47.204+03	
7cbcf69b-70a6-4a76-219d-b61d58671a01	2021-05-24 17:15:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:15:06.877+03	2021-05-24 17:15:06.883+03	
2a33691c-aea7-a39a-6d79-340d44a3e60d	2021-05-24 17:15:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:15:26.877+03	2021-05-24 17:15:26.885+03	
bf551005-029a-e568-77f5-061edc4c0adc	2021-05-24 17:15:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:15:47.877+03	2021-05-24 17:15:47.884+03	
748e22f7-577c-9d16-d3bd-a4209c09d228	2021-05-24 17:16:07.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:16:07.877+03	2021-05-24 17:16:07.883+03	
0845a249-c68b-fe26-b5c2-55e02bc0a1a7	2021-05-24 17:16:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:16:28.877+03	2021-05-24 17:16:28.883+03	
aa1ef63c-8a9c-1960-d544-f7ce05298bdd	2021-05-24 17:16:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:16:48.877+03	2021-05-24 17:16:48.884+03	
c8852784-c81e-28be-f8f4-fb3401b6f62b	2021-05-24 17:17:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:17:08.877+03	2021-05-24 17:17:08.884+03	
170b8cd9-c731-af45-624f-617ba3e38607	2021-05-24 17:17:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:17:28.877+03	2021-05-24 17:17:28.885+03	
68c2b87b-ccb0-904d-cd88-6688b73c5e94	2021-05-24 17:17:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:17:48.877+03	2021-05-24 17:17:48.884+03	
f814a957-95c2-4627-566e-1a208a67ee52	2021-05-24 17:18:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:18:08.877+03	2021-05-24 17:18:08.883+03	
588c354d-83ac-b038-a7ed-5b7ebd23670d	2021-05-24 17:18:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:18:29.877+03	2021-05-24 17:18:29.884+03	
b227ec2d-4ce5-79fb-0432-b2cd37031db7	2021-05-24 17:18:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:18:49.877+03	2021-05-24 17:18:49.883+03	
7fb26a9a-9e04-2c1a-c300-376a491789b3	2021-05-24 17:19:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:19:09.877+03	2021-05-24 17:19:09.885+03	
388d3e43-403b-20f4-a30e-94e297500060	2021-05-24 17:19:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:19:29.877+03	2021-05-24 17:19:30.196+03	
229dee37-c8cc-8e52-8217-1a58663f5132	2021-05-24 17:19:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:19:49.877+03	2021-05-24 17:19:49.884+03	
97dbe127-7172-e2c5-040d-1ee786af2edf	2021-05-24 17:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 17:20:00.877+03	2021-05-24 17:20:00.881+03	ERROR
f60d64c3-8af8-ef4f-8765-d8ebcc7d5512	2021-05-24 17:20:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:20:19.877+03	2021-05-24 17:20:19.884+03	
990c1874-f1dd-0bac-6208-aba7974b810e	2021-05-24 17:20:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:20:29.877+03	2021-05-24 17:20:29.883+03	
1caff447-ce07-9fc3-ac49-ceafbc7ec8ea	2021-05-24 17:20:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:20:49.877+03	2021-05-24 17:20:49.882+03	
745656c8-e2d4-6dec-36ac-3f6ca4475b32	2021-05-24 17:21:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:21:09.877+03	2021-05-24 17:21:09.883+03	
463605c1-1581-43ea-0b98-c62d875650e5	2021-05-24 17:21:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:21:29.877+03	2021-05-24 17:21:29.883+03	
e11b6c63-2b8c-669a-f6be-ad317cc52b1e	2021-05-24 17:21:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:21:49.877+03	2021-05-24 17:21:50.196+03	
504fb32f-432c-acdf-1e7d-624a95b78465	2021-05-24 17:22:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:22:09.877+03	2021-05-24 17:22:09.885+03	
fe32263c-a0b6-fcd0-7675-6a4dcecaf1b9	2021-05-24 17:22:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:22:29.877+03	2021-05-24 17:22:29.883+03	
748ac349-3c1f-40b5-bc24-63d5316c2016	2021-05-24 17:22:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:22:49.877+03	2021-05-24 17:22:49.882+03	
0457047e-c237-8f96-692d-72b939ce9d88	2021-05-24 17:23:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:23:09.877+03	2021-05-24 17:23:09.885+03	
1bd6dcd0-9574-671a-562b-3ccd5e8b34f2	2021-05-24 17:23:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:23:29.877+03	2021-05-24 17:23:29.883+03	
18004a00-89b8-43c4-3adf-bc6b44e3fb5f	2021-05-24 17:23:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:23:49.877+03	2021-05-24 17:23:49.883+03	
61128993-8bbf-f6ce-98cf-4d275788deb5	2021-05-24 17:24:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:24:09.877+03	2021-05-24 17:24:09.883+03	
67e94c4d-c20d-cd42-955c-210ad3e0985d	2021-05-24 17:24:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:24:29.877+03	2021-05-24 17:24:29.884+03	
2783bd63-4d43-364d-f2f4-e59537e10681	2021-05-24 17:24:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:24:49.877+03	2021-05-24 17:24:49.883+03	
7586d27e-d4c2-d272-08f2-e861f369a578	2021-05-24 17:25:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:25:20.877+03	2021-05-24 17:25:20.885+03	
58dbc071-d053-8743-c3f9-d01788ec0070	2021-05-24 17:25:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:25:40.877+03	2021-05-24 17:25:40.884+03	
794731f3-aaff-cbd0-967f-b91fbac058bf	2021-05-24 17:26:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:26:00.877+03	2021-05-24 17:26:00.884+03	
27f8dabb-56c0-3300-e235-c689d042a5ad	2021-05-24 17:26:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:26:20.877+03	2021-05-24 17:26:21.079+03	
c8ada844-08ac-d34d-5aa8-990886db308f	2021-05-24 17:26:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:26:40.877+03	2021-05-24 17:26:40.884+03	
399e3919-15e7-4972-4b9d-9df32aab5474	2021-05-24 17:27:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:27:00.877+03	2021-05-24 17:27:01.099+03	
1cef53fa-e95b-88aa-0896-e079998c9b4d	2021-05-24 17:27:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:27:20.877+03	2021-05-24 17:27:21.077+03	
7177a960-7b2d-2ec2-1cff-993a01c72d81	2021-05-24 17:27:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:27:30.877+03	2021-05-24 17:27:30.885+03	
4a5f601a-ce62-32e3-4ab0-26087df538e6	2021-05-24 17:27:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:27:50.877+03	2021-05-24 17:27:50.884+03	
3a491a53-71e2-5a43-fbd2-db482c15644c	2021-05-24 17:28:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:28:10.877+03	2021-05-24 17:28:10.882+03	
f1136394-98e5-ff05-4b0c-66ff18dfe865	2021-05-24 17:28:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:28:30.877+03	2021-05-24 17:28:30.883+03	
2d3ddd6e-6262-1fa5-8932-e6e47f08f9e8	2021-05-24 17:28:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:28:50.877+03	2021-05-24 17:28:50.883+03	
ee61105a-fc10-d7bb-b8c5-323743668660	2021-05-24 17:29:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:29:10.877+03	2021-05-24 17:29:10.884+03	
54a2acf3-e05e-74e7-cc4a-b5fc46b0e836	2021-05-24 17:29:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:29:30.877+03	2021-05-24 17:29:30.883+03	
3c1ef7cf-da3a-2c6f-08e0-3690790fc6c2	2021-05-24 17:29:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:29:50.877+03	2021-05-24 17:29:50.884+03	
be35f854-142e-206b-c707-aeb70566044c	2021-05-24 17:30:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:30:10.877+03	2021-05-24 17:30:10.882+03	
205690ee-d61e-531b-6f91-489a18d29d92	2021-05-24 17:30:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:30:30.877+03	2021-05-24 17:30:30.883+03	
0187e8d2-9ba6-4078-314f-16403946f5d7	2021-05-24 17:30:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:30:50.877+03	2021-05-24 17:30:50.883+03	
7924d746-6833-aac0-264f-d6b060fde784	2021-05-24 17:31:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:31:11.877+03	2021-05-24 17:31:11.883+03	
7deba478-f32e-ed4d-090c-017b981bb2c8	2021-05-24 17:31:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:31:31.877+03	2021-05-24 17:31:31.937+03	
68fc56c4-ba24-94da-03ef-89225b1763c2	2021-05-24 17:31:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:31:51.877+03	2021-05-24 17:31:51.883+03	
03e85fd4-0ec1-827d-dd2a-473a27ca9717	2021-05-24 17:32:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:32:12.877+03	2021-05-24 17:32:12.885+03	
f930a121-24d4-d11d-1908-0603628af70d	2021-05-24 17:32:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:32:33.877+03	2021-05-24 17:32:33.885+03	
e40dbbf7-504c-8320-808f-8670a2e34d33	2021-05-24 17:32:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:32:53.877+03	2021-05-24 17:32:53.885+03	
27cffcc4-5bc8-a771-bf92-f0c1ea1f4f51	2021-05-24 17:33:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:33:13.877+03	2021-05-24 17:33:13.883+03	
d9847646-d4f1-3473-725a-c79f461e8c6f	2021-05-24 17:33:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:33:33.877+03	2021-05-24 17:33:33.884+03	
f5862ae9-d675-fe3a-2ae1-e7c06f4144e3	2021-05-24 17:33:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:33:53.877+03	2021-05-24 17:33:53.886+03	
6253ec37-91b9-d13f-9944-81b7f999dcde	2021-05-24 17:34:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:34:13.877+03	2021-05-24 17:34:13.884+03	
15372b48-31d7-5157-3215-324777d06cd2	2021-05-24 17:34:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:34:33.877+03	2021-05-24 17:34:33.884+03	
0f17e7ef-d6bf-009e-1682-2bc7e2618d7e	2021-05-24 17:34:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:34:53.877+03	2021-05-24 17:34:54.213+03	
74914339-cc56-9cae-40f9-7e9e958a076e	2021-05-24 17:35:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:35:13.877+03	2021-05-24 17:35:13.885+03	
e83c48e6-bc6b-951f-f9c8-cacdcd724d27	2021-05-24 17:35:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:35:33.877+03	2021-05-24 17:35:33.883+03	
396c56b8-357a-fabe-df6a-73536533f8c0	2021-05-24 17:35:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:35:53.877+03	2021-05-24 17:35:53.884+03	
03cc0b06-e2d0-b337-38e2-4f758c6c1584	2021-05-24 17:36:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:36:13.877+03	2021-05-24 17:36:13.884+03	
e1a514d1-f382-f1cc-e9e3-ae146937935c	2021-05-24 17:36:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:36:33.877+03	2021-05-24 17:36:33.884+03	
90b88447-e510-7b1a-f41c-5b1c63f06337	2021-05-24 17:36:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:36:53.878+03	2021-05-24 17:36:53.885+03	
82815914-a246-b6b0-6f87-8de10f6b64f3	2021-05-24 17:37:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:37:14.877+03	2021-05-24 17:37:14.883+03	
527fd1a7-39fb-fe6b-d307-d3ec3136fd2d	2021-05-24 17:37:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:37:34.877+03	2021-05-24 17:37:34.885+03	
77e69524-5c59-2a48-3e6f-472ea9b40a81	2021-05-24 17:37:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:37:54.877+03	2021-05-24 17:37:54.884+03	
a96b57c1-36f9-2de2-3038-c1df525a11bb	2021-05-24 17:38:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:38:14.877+03	2021-05-24 17:38:14.886+03	
c51bec8b-8945-04bf-f7a8-ab87c2818c7c	2021-05-24 17:38:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:38:34.877+03	2021-05-24 17:38:34.883+03	
d7b7876d-b022-44ea-0599-0cf06b6f93c9	2021-05-24 17:38:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:38:54.877+03	2021-05-24 17:38:54.884+03	
611c7352-66da-2f1c-5d37-9617160c25ea	2021-05-24 17:39:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:39:14.877+03	2021-05-24 17:39:14.885+03	
f2c5a401-b07d-c75c-60cd-fa57c1b28759	2021-05-24 17:39:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:39:34.877+03	2021-05-24 17:39:34.882+03	
2e9b1c6d-c0f0-3f2e-6df7-59b773d09ff8	2021-05-24 17:39:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:39:54.877+03	2021-05-24 17:39:54.883+03	
ca42531c-0a76-290a-778f-dd9176ef6f8e	2021-05-24 17:40:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:40:04.877+03	2021-05-24 17:40:04.883+03	
fcff6d2a-f4f2-0dfc-5e86-4458ad56573f	2021-05-24 17:40:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:40:24.877+03	2021-05-24 17:40:24.882+03	
96730cdd-cedd-bf97-020d-68a55e448f9c	2021-05-24 17:40:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:40:44.877+03	2021-05-24 17:40:44.883+03	
cc6df28e-ec4e-2a42-776b-1d7d79b2503e	2021-05-24 17:41:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:41:04.877+03	2021-05-24 17:41:04.883+03	
6e6d70b5-7591-f366-2c8f-f554861c28b4	2021-05-24 17:41:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:41:24.877+03	2021-05-24 17:41:24.883+03	
2fd8e2b1-c96f-fbba-7450-d7d169e83006	2021-05-24 17:41:44.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:41:44.877+03	2021-05-24 17:41:44.884+03	
c4600f11-b444-4a1f-4f60-6762f310403b	2021-05-24 17:42:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:42:04.877+03	2021-05-24 17:42:04.884+03	
341f69cd-358c-6662-2d18-75a07400a4f5	2021-05-24 17:42:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:42:24.877+03	2021-05-24 17:42:24.883+03	
82de7af6-cc25-09df-0ab6-09efcba7aa43	2021-05-24 17:42:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:42:44.877+03	2021-05-24 17:42:44.884+03	
c6ae7c29-602c-74bd-8ab5-7866200f1ec4	2021-05-24 17:43:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:43:04.877+03	2021-05-24 17:43:04.884+03	
f3a28fb3-9a66-a69a-72e8-7930afbffecb	2021-05-24 17:43:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:43:24.877+03	2021-05-24 17:43:24.883+03	
a212cdbb-f8a3-b14f-a928-71e6dbcb55c8	2021-05-24 17:43:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:43:44.877+03	2021-05-24 17:43:44.886+03	
7ee4ebdd-5157-1815-57dd-a8c82e5df5e7	2021-05-24 17:44:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:44:04.877+03	2021-05-24 17:44:04.885+03	
578b923c-45dd-dc42-d63f-d6955e319e8c	2021-05-24 17:44:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:44:24.877+03	2021-05-24 17:44:25.165+03	
d90cffd3-714f-c8a6-be01-aa2b206c7531	2021-05-24 17:44:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:44:44.877+03	2021-05-24 17:44:44.885+03	
a791f78a-7818-3beb-3215-f9c993b569e8	2021-05-24 17:45:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:45:04.877+03	2021-05-24 17:45:04.884+03	
4caf7076-92c7-beef-95d7-44749976142f	2021-05-24 17:45:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:45:24.877+03	2021-05-24 17:45:24.886+03	
15e792ef-5a77-2e57-d7fc-eac7bd7bcf8c	2021-05-24 17:45:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:45:44.877+03	2021-05-24 17:45:44.884+03	
1520f796-6c0e-463d-fa75-d6c2252f793a	2021-05-24 17:46:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:46:04.877+03	2021-05-24 17:46:04.883+03	
49131295-afd7-578b-0d05-199c1c3b1ba4	2021-05-24 17:46:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:46:24.877+03	2021-05-24 17:46:24.884+03	
6a9b7c50-049f-6c33-3cc0-79f3861bfd06	2021-05-24 17:46:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:46:44.877+03	2021-05-24 17:46:44.882+03	
746341bf-9590-3115-bd99-c07f0c72f91e	2021-05-24 17:47:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:47:04.877+03	2021-05-24 17:47:04.886+03	
04aeed65-ab0e-3208-0de5-e65cf04c2c69	2021-05-24 17:47:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:47:24.877+03	2021-05-24 17:47:24.885+03	
b54354ba-01a2-ee1a-ac5f-7862ad67edf7	2021-05-24 17:47:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:47:45.877+03	2021-05-24 17:47:45.884+03	
6dfdc539-827f-97db-33fc-93c4f782ee3c	2021-05-24 17:48:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:48:05.877+03	2021-05-24 17:48:05.886+03	
5e22f2db-5d08-663c-d2f7-573efe2841f3	2021-05-24 17:27:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:27:40.877+03	2021-05-24 17:27:40.884+03	
dd671e7b-152d-20d0-08bd-278986288e58	2021-05-24 17:28:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:28:00.877+03	2021-05-24 17:28:00.885+03	
a37d521e-07ee-c056-e192-397381079981	2021-05-24 17:28:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:28:20.877+03	2021-05-24 17:28:20.883+03	
2f5cd737-4263-95da-1d26-296462f24228	2021-05-24 17:28:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:28:40.877+03	2021-05-24 17:28:40.883+03	
522d41cd-450a-92e9-9ac4-8ef60f464264	2021-05-24 17:29:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:29:00.877+03	2021-05-24 17:29:00.883+03	
58f63988-0151-5941-ee5f-1290ea503b34	2021-05-24 17:29:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:29:20.877+03	2021-05-24 17:29:20.882+03	
994a44e8-6cbc-79e6-7cb8-04a161353cd6	2021-05-24 17:29:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:29:40.877+03	2021-05-24 17:29:40.885+03	
c190f529-6ba5-a0d0-9408-41d4103c3188	2021-05-24 17:30:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:30:00.877+03	2021-05-24 17:30:00.884+03	
e3cbb028-2166-bc6e-73d3-5dcdeb69d3f6	2021-05-24 17:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 17:30:00.877+03	2021-05-24 17:30:00.893+03	ERROR
906c5a1f-a148-13c4-5eba-3afa76affa48	2021-05-24 17:30:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:30:20.877+03	2021-05-24 17:30:20.884+03	
f8c54b8f-f7d4-09ea-c6e5-42878d859f07	2021-05-24 17:30:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:30:40.877+03	2021-05-24 17:30:40.884+03	
19483945-5bcb-45c6-a18d-d32391a4c746	2021-05-24 17:31:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:31:00.878+03	2021-05-24 17:31:00.888+03	
83562aa2-31cd-7c2f-87e1-2418515cd036	2021-05-24 17:31:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:31:21.877+03	2021-05-24 17:31:21.883+03	
a7b1f2cf-df5a-9384-8959-631843bb2638	2021-05-24 17:31:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:31:41.877+03	2021-05-24 17:31:41.882+03	
b4491a1e-99b1-9d66-2a41-4cbbb5e6e7b5	2021-05-24 17:32:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:32:01.878+03	2021-05-24 17:32:01.885+03	
453f41e2-4443-dbbc-16f1-ddd6f0751452	2021-05-24 17:32:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:32:22.878+03	2021-05-24 17:32:22.884+03	
d3dfd4c9-b76c-58bb-bf08-cbb731ff75e1	2021-05-24 17:32:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:32:43.877+03	2021-05-24 17:32:43.884+03	
eb142b1b-d375-206f-1c54-faf553ce019a	2021-05-24 17:33:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:33:03.877+03	2021-05-24 17:33:03.883+03	
6770c435-1014-28a1-3bed-f5a13cb1238e	2021-05-24 17:33:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:33:23.877+03	2021-05-24 17:33:23.882+03	
8161ed21-7b89-e6b3-b5eb-e96d02865ef0	2021-05-24 17:33:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:33:43.877+03	2021-05-24 17:33:43.884+03	
eeed506d-e5b3-419c-93b0-4094ff9035d3	2021-05-24 17:34:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:34:03.877+03	2021-05-24 17:34:03.884+03	
dfcb45c8-11c5-3c88-a463-754fef5d155e	2021-05-24 17:34:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:34:23.877+03	2021-05-24 17:34:23.884+03	
22361c32-052e-9440-39db-acae3b726210	2021-05-24 17:34:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:34:43.877+03	2021-05-24 17:34:44.202+03	
85654aee-8b29-78d5-e72d-3641ae1714ba	2021-05-24 17:35:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:35:03.877+03	2021-05-24 17:35:03.883+03	
bb57d97b-4b8f-a189-fd06-7513e43286cd	2021-05-24 17:35:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:35:23.877+03	2021-05-24 17:35:23.884+03	
3363f36e-92fd-6b0e-a43e-a187eedf4e48	2021-05-24 17:35:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:35:43.877+03	2021-05-24 17:35:43.883+03	
d53f7038-5f4c-ed0a-0a96-58c14ebfb2f9	2021-05-24 17:36:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:36:03.877+03	2021-05-24 17:36:03.887+03	
f3a6ee95-0e20-f130-4486-18853f6ae0ce	2021-05-24 17:36:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:36:23.877+03	2021-05-24 17:36:23.884+03	
a81b85e7-077f-9af9-195b-aa58d5b4bd51	2021-05-24 17:36:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:36:43.877+03	2021-05-24 17:36:43.883+03	
2e039830-4d44-c7ce-ee0a-dfaf5adf1b57	2021-05-24 17:37:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:37:04.877+03	2021-05-24 17:37:04.885+03	
fb49ae1f-12f6-46f2-09fb-7d27fe5a6796	2021-05-24 17:37:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:37:24.877+03	2021-05-24 17:37:24.884+03	
0754f2e7-4c0e-8d62-b602-fb65f1fadfca	2021-05-24 17:37:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:37:44.877+03	2021-05-24 17:37:44.883+03	
1ae9dbe0-c4fc-0e16-4af4-4284b309fda5	2021-05-24 17:38:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:38:04.877+03	2021-05-24 17:38:04.885+03	
07ceacee-335e-8d0f-843b-88b44e56942b	2021-05-24 17:38:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:38:24.877+03	2021-05-24 17:38:24.884+03	
93c87fdb-784b-520a-dde9-22468545aa3b	2021-05-24 17:38:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:38:44.877+03	2021-05-24 17:38:44.884+03	
ee70220b-17d8-9da8-6404-a8977dbed867	2021-05-24 17:39:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:39:04.877+03	2021-05-24 17:39:04.883+03	
def32753-e6ed-a010-d891-432f1446502d	2021-05-24 17:39:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:39:24.877+03	2021-05-24 17:39:24.882+03	
9501914e-1f01-94a9-3e13-eb688602502b	2021-05-24 17:39:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:39:44.877+03	2021-05-24 17:39:44.884+03	
bdac90a7-3710-f848-d203-e06dc31adcce	2021-05-24 17:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 17:40:00.877+03	2021-05-24 17:40:00.881+03	ERROR
62c554dc-b09b-0057-c5b8-b9e9d9bef2f6	2021-05-24 17:40:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:40:14.877+03	2021-05-24 17:40:14.883+03	
ef42b703-b090-2d28-2d25-ca1e016d85ae	2021-05-24 17:40:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:40:34.877+03	2021-05-24 17:40:34.883+03	
42a0b2bb-cdc5-bf85-2c54-d025b9c168ac	2021-05-24 17:40:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:40:54.877+03	2021-05-24 17:40:54.885+03	
95f2ebdb-a4b1-cfa9-cd9f-4f7565c69583	2021-05-24 17:41:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:41:14.877+03	2021-05-24 17:41:14.883+03	
2cdfb3ca-7e32-7ad8-bd77-836447cd67a4	2021-05-24 17:41:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:41:34.877+03	2021-05-24 17:41:34.884+03	
419757d9-c268-8e6c-536b-0354ddf734db	2021-05-24 17:41:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:41:54.877+03	2021-05-24 17:41:54.882+03	
3e3729dc-0e95-0bf2-2c80-9365c453701a	2021-05-24 17:42:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:42:14.877+03	2021-05-24 17:42:14.884+03	
ef2c56e4-9980-9c9d-749c-ef7cbf71b37d	2021-05-24 17:42:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:42:34.877+03	2021-05-24 17:42:34.884+03	
e269d069-4885-9b7e-4b1b-0fcea834458b	2021-05-24 17:42:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:42:54.877+03	2021-05-24 17:42:54.883+03	
47fd7a00-c3d8-7953-ef2e-1fae763d76b0	2021-05-24 17:43:14.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:43:14.877+03	2021-05-24 17:43:14.896+03	
a40a382c-a06b-5f52-c946-fc4edbf62e81	2021-05-24 17:43:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:43:34.877+03	2021-05-24 17:43:34.882+03	
c456918f-5bf4-120a-05dd-332bf287a21d	2021-05-24 17:43:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:43:54.877+03	2021-05-24 17:43:54.883+03	
55672853-921c-8c65-4993-0fdc876984a6	2021-05-24 17:44:14.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:44:14.877+03	2021-05-24 17:44:14.883+03	
7f4e3dea-65f7-6408-6247-fad0f27a24d1	2021-05-24 17:44:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:44:34.877+03	2021-05-24 17:44:34.883+03	
e6319e83-58f9-2f99-46ce-5ed05f596956	2021-05-24 17:44:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:44:54.877+03	2021-05-24 17:44:54.883+03	
f7c61e24-6348-3f08-9307-f8a978055c66	2021-05-24 17:45:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:45:14.877+03	2021-05-24 17:45:14.883+03	
987492e3-9630-3f79-a6e7-5085f8bcb61d	2021-05-24 17:45:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:45:34.877+03	2021-05-24 17:45:34.883+03	
17848877-88ed-8f87-89a4-6b67651b772a	2021-05-24 17:45:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:45:54.877+03	2021-05-24 17:45:54.896+03	
86b6b7ab-557d-22c2-6f86-dce54095044a	2021-05-24 17:46:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:46:14.877+03	2021-05-24 17:46:14.884+03	
e3200d2e-6b6c-6fa6-d411-1dd99aa52310	2021-05-24 17:46:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:46:34.877+03	2021-05-24 17:46:34.883+03	
bf5659f9-4f3b-df99-b0ed-0a5ec5d11566	2021-05-24 17:46:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:46:54.877+03	2021-05-24 17:46:54.884+03	
dad853b1-9095-c60b-7f1d-324a353aabea	2021-05-24 17:47:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:47:14.877+03	2021-05-24 17:47:15.129+03	
bd5fd3a2-b633-cb8e-61ab-50077ac74991	2021-05-24 17:47:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:47:34.877+03	2021-05-24 17:47:34.883+03	
f09e15d5-3adc-c530-2654-f83cb37ab1c6	2021-05-24 17:47:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:47:55.877+03	2021-05-24 17:47:55.884+03	
40ba192f-f240-5039-aacd-b75260b6ebb5	2021-05-24 17:48:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:48:15.877+03	2021-05-24 17:48:15.884+03	
0da32985-e050-5507-6062-d062dbb30464	2021-05-24 17:48:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:48:35.877+03	2021-05-24 17:48:35.895+03	
acbd6344-7e84-7665-c964-4b32f9d48da7	2021-05-24 17:48:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:48:55.877+03	2021-05-24 17:48:55.884+03	
c1dfd138-17ba-74ee-02a0-70eb0fd40af0	2021-05-24 17:49:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:49:15.877+03	2021-05-24 17:49:16.127+03	
e55c90d2-021f-7a38-5ca3-7f920b3f7c5e	2021-05-24 17:49:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:49:35.877+03	2021-05-24 17:49:35.883+03	
1b3dc20f-55b9-429c-4c4a-487b1b6947d0	2021-05-24 17:49:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:49:55.877+03	2021-05-24 17:49:55.892+03	
2056ea5e-3096-77e3-3c5a-6e509de129aa	2021-05-24 17:50:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:50:05.877+03	2021-05-24 17:50:05.883+03	
b8e48d83-e315-b634-8ecc-447b783a8f56	2021-05-24 17:50:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:50:25.877+03	2021-05-24 17:50:25.883+03	
c9dda853-98fc-7072-be59-66c74c43cd46	2021-05-24 17:50:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:50:45.877+03	2021-05-24 17:50:45.882+03	
9f1fd50e-0ee1-97da-64b0-f23422a0856f	2021-05-24 17:51:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:51:05.877+03	2021-05-24 17:51:05.884+03	
98d4f7f5-5956-4224-c92d-3719823c4ac3	2021-05-24 17:51:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:51:25.877+03	2021-05-24 17:51:25.885+03	
3f23deb1-abec-2d1a-4d30-4432612a06e3	2021-05-24 17:51:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:51:45.877+03	2021-05-24 17:51:45.885+03	
a956ac0c-f8a7-8376-0300-ab552f39b0b2	2021-05-24 17:52:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:52:05.877+03	2021-05-24 17:52:05.886+03	
0d3b85e9-0331-0f29-a5fe-02eefbce6a79	2021-05-24 17:52:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:52:25.877+03	2021-05-24 17:52:25.884+03	
963599ad-4226-f906-656a-a6969679b478	2021-05-24 17:52:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:52:45.877+03	2021-05-24 17:52:45.883+03	
b34696dc-83a8-03c0-987b-f571d97e8d71	2021-05-24 17:53:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:53:05.877+03	2021-05-24 17:53:05.884+03	
d88fca5d-56fb-190c-13b8-53453477f960	2021-05-24 17:53:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:53:26.877+03	2021-05-24 17:53:26.883+03	
9db17ff3-9d61-35bc-0bc4-d1fddbe934b8	2021-05-24 17:53:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:53:46.877+03	2021-05-24 17:53:46.883+03	
578d0d57-15ea-200e-26cb-7a984e3241bd	2021-05-24 17:54:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:54:06.877+03	2021-05-24 17:54:06.884+03	
82964bb9-b1d2-f86c-728c-afea5816e2ae	2021-05-24 17:54:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:54:26.877+03	2021-05-24 17:54:26.882+03	
f485145e-5a34-e4bc-9a14-34018cf9830e	2021-05-24 17:54:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:54:46.877+03	2021-05-24 17:54:46.884+03	
3fe59715-ecb1-2e5a-368d-78bb36e3394b	2021-05-24 17:55:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:55:06.877+03	2021-05-24 17:55:06.883+03	
7ca847af-23dc-5b91-2580-0acb9a7487d2	2021-05-24 17:55:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:55:26.877+03	2021-05-24 17:55:26.885+03	
b82946c4-75ac-4314-9cf7-71086b33ffe8	2021-05-24 17:55:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:55:46.877+03	2021-05-24 17:55:46.883+03	
fd917d75-2c84-7625-0a57-1100e998746e	2021-05-24 17:56:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:56:06.877+03	2021-05-24 17:56:06.887+03	
b3c6774c-edba-fb6f-d0fd-a47cb3422a31	2021-05-24 17:56:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:56:26.877+03	2021-05-24 17:56:26.884+03	
7992a433-0cd1-8065-7649-31b42135175c	2021-05-24 17:56:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:56:46.877+03	2021-05-24 17:56:46.883+03	
010d3ed8-aa68-23c7-3586-cd34fc2795ab	2021-05-24 17:57:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:57:06.877+03	2021-05-24 17:57:06.884+03	
579a5d2d-1359-b6ef-31ce-9bf589c66cad	2021-05-24 17:57:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:57:26.877+03	2021-05-24 17:57:26.885+03	
f941025a-a8fd-b766-6997-43b1d23d5813	2021-05-24 17:57:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:57:46.877+03	2021-05-24 17:57:46.883+03	
5ab25a2c-434e-f57c-48e9-915a9b457fed	2021-05-24 17:58:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:58:06.877+03	2021-05-24 17:58:06.895+03	
ef6a4985-f1c5-eda1-2a9d-50042daa4118	2021-05-24 17:58:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:58:26.877+03	2021-05-24 17:58:26.883+03	
ece2b4fd-4c11-439b-1d86-ab6959f13c55	2021-05-24 17:58:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:58:46.877+03	2021-05-24 17:58:46.882+03	
db74b4b6-b225-1a43-e63a-9d2148c787bb	2021-05-24 17:59:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:59:06.877+03	2021-05-24 17:59:06.883+03	
71eeb815-79f0-ec44-d665-9f816c852fa4	2021-05-24 17:59:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:59:26.877+03	2021-05-24 17:59:26.884+03	
2289a0ce-1521-4d2d-14ab-b6b3ebfa3a27	2021-05-24 17:59:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:59:46.877+03	2021-05-24 17:59:46.884+03	
f4f1e72a-2f28-bb5b-b428-aea428ca7e59	2021-05-24 18:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 18:00:00.877+03	2021-05-24 18:00:00.881+03	ERROR
2c02d758-57cc-d641-6882-f38953372bff	2021-05-24 18:00:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:00:16.877+03	2021-05-24 18:00:16.883+03	
9a9d0808-47b5-a8eb-90c1-74c2fcfb8dbe	2021-05-24 18:00:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:00:36.877+03	2021-05-24 18:00:36.885+03	
01758f57-f96f-cfc5-a048-3ab26ec68d32	2021-05-24 18:00:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:00:56.877+03	2021-05-24 18:00:56.882+03	
d013e7ce-8fe9-2ee4-008c-fa2460d18e58	2021-05-24 18:01:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:01:16.877+03	2021-05-24 18:01:16.885+03	
63e5b21d-ea52-b31e-3957-8a9718339d0f	2021-05-24 18:01:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:01:36.877+03	2021-05-24 18:01:36.886+03	
bbea8e27-4467-a59a-a005-b9f278e09634	2021-05-24 18:01:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:01:56.877+03	2021-05-24 18:01:56.883+03	
a07e363f-67a5-a2c9-3391-906cfe019721	2021-05-24 18:02:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:02:17.877+03	2021-05-24 18:02:17.885+03	
633c06de-df8e-2ca8-43c4-fdfb20b68326	2021-05-24 18:02:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:02:37.877+03	2021-05-24 18:02:37.884+03	
1b52cf4b-52d1-118c-f95e-5a19e1323e69	2021-05-24 18:02:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:02:58.877+03	2021-05-24 18:02:58.883+03	
85012777-db47-432f-16c3-630aa586ba1e	2021-05-24 18:03:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:03:18.877+03	2021-05-24 18:03:18.884+03	
0115b663-2d90-abba-6a73-60dbe4e6f45b	2021-05-24 18:03:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:03:38.877+03	2021-05-24 18:03:38.885+03	
5e1c354a-703d-327a-3324-e468b5562ad8	2021-05-24 18:03:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:03:58.877+03	2021-05-24 18:03:58.884+03	
cc9fec1a-c862-f61e-5bd2-062072403afb	2021-05-24 18:04:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:04:18.877+03	2021-05-24 18:04:18.886+03	
765680b7-4721-33da-50ce-8c3c2516e42f	2021-05-24 18:04:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:04:39.877+03	2021-05-24 18:04:39.882+03	
503c2058-0302-2b46-70ea-c910e5844d60	2021-05-24 18:05:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:05:00.877+03	2021-05-24 18:05:00.884+03	
68ea2557-417d-b9bb-dafe-b99a1e997a0b	2021-05-24 18:05:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:05:20.877+03	2021-05-24 18:05:20.884+03	
bafacafb-7daa-07da-0ca9-32c49691d188	2021-05-24 18:05:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:05:40.877+03	2021-05-24 18:05:40.884+03	
637badf6-d849-f32b-075c-c016bf952b1d	2021-05-24 18:06:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:06:00.877+03	2021-05-24 18:06:00.884+03	
b871c245-5dc9-8261-8b52-4d0225b6842d	2021-05-24 18:06:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:06:20.877+03	2021-05-24 18:06:20.884+03	
58552edd-06d3-6b06-3cce-76ef17309165	2021-05-24 18:06:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:06:40.877+03	2021-05-24 18:06:40.884+03	
1ac98b2b-e9b0-7623-32bf-745e47701e12	2021-05-24 18:07:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:07:00.877+03	2021-05-24 18:07:00.885+03	
fb7952fe-5d3b-f1ae-27b0-ff77db70ddeb	2021-05-24 18:07:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:07:20.877+03	2021-05-24 18:07:20.883+03	
dd320648-7961-eb7e-884a-2fa9b6e0c9b6	2021-05-24 18:07:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:07:40.877+03	2021-05-24 18:07:40.883+03	
ada3c517-3932-cc2d-b62d-c2563b368f3d	2021-05-24 18:08:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:08:00.877+03	2021-05-24 18:08:00.884+03	
613f3dde-3dcf-5d9b-f693-42cfc7bc0c79	2021-05-24 18:08:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:08:20.877+03	2021-05-24 18:08:20.885+03	
493a4921-3344-aa7a-290f-3e35bb88b870	2021-05-24 18:08:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:08:40.877+03	2021-05-24 18:08:40.883+03	
20791bc7-ec32-d979-d0c8-85da0de67727	2021-05-24 17:48:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:48:25.877+03	2021-05-24 17:48:25.886+03	
36ac359e-a896-aa56-4672-83ce5bc190e5	2021-05-24 17:48:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:48:45.877+03	2021-05-24 17:48:45.883+03	
cee40832-8d90-719e-030c-e2fc61cbcdb7	2021-05-24 17:49:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:49:05.877+03	2021-05-24 17:49:05.883+03	
a13b81b3-c047-fbc2-5f64-b199d23193a6	2021-05-24 17:49:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:49:25.877+03	2021-05-24 17:49:25.884+03	
440d20e0-c701-54fb-0276-c0155ae026f7	2021-05-24 17:49:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:49:45.877+03	2021-05-24 17:49:45.884+03	
a0fdae47-8754-5467-0557-a151ef7c9f9f	2021-05-24 17:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 17:50:00.877+03	2021-05-24 17:50:00.888+03	ERROR
da0ee01d-6773-5c54-e9ec-e121fe4e253a	2021-05-24 17:50:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:50:15.877+03	2021-05-24 17:50:15.887+03	
7355e493-98bf-334d-4e1e-e9d136a5f9a0	2021-05-24 17:50:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:50:35.877+03	2021-05-24 17:50:35.884+03	
234a2341-7110-21ca-288f-e5c518f1d06f	2021-05-24 17:50:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:50:55.877+03	2021-05-24 17:50:55.884+03	
13909854-d0ec-338b-4eff-6136c019cec2	2021-05-24 17:51:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:51:15.877+03	2021-05-24 17:51:15.893+03	
0ba3fb16-e20e-d607-e18e-4558f1e1d139	2021-05-24 17:51:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:51:35.877+03	2021-05-24 17:51:36.229+03	
ab357ab8-84c3-e20c-5a37-afc4bc87f5e5	2021-05-24 17:51:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:51:55.877+03	2021-05-24 17:51:55.883+03	
5fd70caf-2cca-e315-e0fd-fa2d8b8287eb	2021-05-24 17:52:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:52:15.877+03	2021-05-24 17:52:15.884+03	
a42212cc-3be9-e850-3791-3f5b13350a90	2021-05-24 17:52:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:52:35.877+03	2021-05-24 17:52:35.885+03	
3a454250-1e9d-6d98-e607-22be7a236183	2021-05-24 17:52:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:52:55.877+03	2021-05-24 17:52:55.883+03	
ad7016e3-6539-3bf5-9e40-786b1abe0d2b	2021-05-24 17:53:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:53:16.877+03	2021-05-24 17:53:16.936+03	
dc4be5f0-6e28-276a-327a-7aefb0dfdd84	2021-05-24 17:53:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:53:36.877+03	2021-05-24 17:53:36.884+03	
cdc36993-f5ec-5a2e-e0c7-dc3a0a7c2399	2021-05-24 17:53:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:53:56.877+03	2021-05-24 17:53:56.885+03	
33e61c66-b3b6-2a4d-e0d8-f33c579b3bda	2021-05-24 17:54:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:54:16.877+03	2021-05-24 17:54:16.884+03	
c21225a9-a2fc-fc0b-2a8d-4dd81313b9a0	2021-05-24 17:54:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:54:36.877+03	2021-05-24 17:54:36.886+03	
4bc26c61-4923-8027-45f1-73803aa1ef1c	2021-05-24 17:54:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:54:56.877+03	2021-05-24 17:54:56.885+03	
43390bb5-397e-841d-5fbe-6b398d79f248	2021-05-24 17:55:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:55:16.877+03	2021-05-24 17:55:16.89+03	
c1ade7e8-28fa-920f-e63b-9f7bfd94393a	2021-05-24 17:55:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:55:36.877+03	2021-05-24 17:55:36.884+03	
a59763c8-eeda-6a6a-e928-1baeb7fa1149	2021-05-24 17:55:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:55:56.877+03	2021-05-24 17:55:56.886+03	
f5fed09b-fe49-c51b-e874-b3003d9fa9a5	2021-05-24 17:56:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:56:16.877+03	2021-05-24 17:56:16.882+03	
aaa22375-29a9-7b8e-c950-6be975cafefe	2021-05-24 17:56:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:56:36.877+03	2021-05-24 17:56:36.883+03	
932292eb-3dff-fb15-5d2d-77fc29feb9b1	2021-05-24 17:56:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:56:56.877+03	2021-05-24 17:56:56.884+03	
8a9b0d11-9b55-6355-21f2-898731b38d01	2021-05-24 17:57:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:57:16.877+03	2021-05-24 17:57:16.884+03	
6cf8ee82-350c-4e44-5f08-1d3bf719731b	2021-05-24 17:57:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:57:36.877+03	2021-05-24 17:57:36.884+03	
2ecc612c-0095-6b11-2d6c-5d10cb97ceef	2021-05-24 17:57:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:57:56.877+03	2021-05-24 17:57:56.884+03	
a7d0eba1-f2cb-6622-b0a0-bcb9301afdbc	2021-05-24 17:58:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:58:16.877+03	2021-05-24 17:58:17.13+03	
a13bc56a-4b9b-9943-3915-98a207882371	2021-05-24 17:58:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:58:36.877+03	2021-05-24 17:58:36.884+03	
7b98394d-8717-0bbf-6f2c-765b1626a7ea	2021-05-24 17:58:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:58:56.877+03	2021-05-24 17:58:56.884+03	
cdf82abc-2c09-49b2-a54c-eab45e5c8cda	2021-05-24 17:59:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:59:16.877+03	2021-05-24 17:59:16.885+03	
8682e57f-e2bd-1006-e176-bc7dcfb2f3bd	2021-05-24 17:59:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:59:36.877+03	2021-05-24 17:59:36.884+03	
0d206bf1-9d12-34f7-66e4-8efa3ed04001	2021-05-24 17:59:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 17:59:56.877+03	2021-05-24 17:59:56.883+03	
b4939ef4-ac3c-e5fb-b969-704fe57f8a65	2021-05-24 18:00:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:00:06.877+03	2021-05-24 18:00:06.884+03	
076af2a1-b5b4-441f-6c92-f3f7224a15bc	2021-05-24 18:00:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:00:26.877+03	2021-05-24 18:00:26.882+03	
f749e871-5273-c125-f039-a0f85ec3faa9	2021-05-24 18:00:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:00:46.877+03	2021-05-24 18:00:46.884+03	
b95b4521-35be-1025-4d59-58ac8eb6d899	2021-05-24 18:01:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:01:06.877+03	2021-05-24 18:01:06.887+03	
00ed5135-5f79-07cf-e2ba-98e16bf87021	2021-05-24 18:01:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:01:26.877+03	2021-05-24 18:01:26.885+03	
a6afb91b-cb28-3dfa-3b23-76b75c5a0ce7	2021-05-24 18:01:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:01:46.877+03	2021-05-24 18:01:47.073+03	
846b7ce7-f2a3-4408-0d6a-3199a16c7572	2021-05-24 18:02:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:02:06.877+03	2021-05-24 18:02:06.884+03	
55369619-a5de-5acd-fd8c-0618deeedebe	2021-05-24 18:02:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:02:27.877+03	2021-05-24 18:02:27.883+03	
ad3e4476-42e9-19e3-a6ea-34ddc714a179	2021-05-24 18:02:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:02:48.877+03	2021-05-24 18:02:48.885+03	
cb37b704-e8da-6d94-b28f-8cf2b8537836	2021-05-24 18:03:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:03:08.877+03	2021-05-24 18:03:08.884+03	
cc565fde-6a4e-3cde-4520-6f046ffb6edf	2021-05-24 18:03:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:03:28.877+03	2021-05-24 18:03:28.895+03	
651d2979-1e50-4291-2f56-157906608b48	2021-05-24 18:03:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:03:48.877+03	2021-05-24 18:03:48.884+03	
16d66e49-0ee5-2ec4-d6ca-624cf7f55af6	2021-05-24 18:04:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:04:08.877+03	2021-05-24 18:04:08.885+03	
ba9e1300-78df-7153-b033-6f9aaa8fefd4	2021-05-24 18:04:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:04:29.877+03	2021-05-24 18:04:29.885+03	
2d4f4335-038a-e3dc-ccb9-1603ed41222e	2021-05-24 18:04:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:04:50.877+03	2021-05-24 18:04:50.883+03	
33bb91c4-a568-3394-9876-5d25ea86b63c	2021-05-24 18:05:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:05:10.877+03	2021-05-24 18:05:10.886+03	
be7fc995-c5f5-9716-3882-ce48d260333f	2021-05-24 18:05:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:05:30.877+03	2021-05-24 18:05:30.884+03	
bb128b94-1484-3e75-95dd-4330c72c3d06	2021-05-24 18:05:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:05:50.877+03	2021-05-24 18:05:50.884+03	
5b29961e-6d90-8e1f-6ecd-4d4a1d87cc20	2021-05-24 18:06:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:06:10.877+03	2021-05-24 18:06:10.884+03	
12a3e0cf-8c2e-c49e-3e8b-e1d56493fc27	2021-05-24 18:06:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:06:30.877+03	2021-05-24 18:06:30.884+03	
8d955cff-538f-6521-7476-1d05bc7ed05a	2021-05-24 18:06:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:06:50.877+03	2021-05-24 18:06:50.884+03	
9e295c30-28e4-e920-71a0-2bfe675938ec	2021-05-24 18:07:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:07:10.877+03	2021-05-24 18:07:10.884+03	
f754a272-c639-02d9-cab1-0047812f92b5	2021-05-24 18:07:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:07:30.877+03	2021-05-24 18:07:30.883+03	
f32e3388-c3be-1df6-b9bc-5d5670211149	2021-05-24 18:07:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:07:50.877+03	2021-05-24 18:07:50.884+03	
4e0b4b78-69af-4560-c155-d2151eaa4beb	2021-05-24 18:08:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:08:10.877+03	2021-05-24 18:08:10.885+03	
df8ca102-5774-9bf3-2573-9dd9c9927969	2021-05-24 18:08:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:08:30.877+03	2021-05-24 18:08:30.884+03	
268b520f-5ac7-86ae-da7e-d486606eb086	2021-05-24 18:08:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:08:51.877+03	2021-05-24 18:08:51.885+03	
c223d0d2-ecc2-d657-753f-211335679a3a	2021-05-24 18:09:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:09:01.877+03	2021-05-24 18:09:02.195+03	
f41d601d-bfc9-56d7-699b-336a26b65be3	2021-05-24 18:09:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:09:21.877+03	2021-05-24 18:09:21.882+03	
201e9329-c919-821a-289e-f0c68717a1e2	2021-05-24 18:09:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:09:41.877+03	2021-05-24 18:09:41.883+03	
482d19e8-d279-14ed-a7f7-0cf7d41b5d2f	2021-05-24 18:10:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 18:10:00.877+03	2021-05-24 18:10:01.086+03	ERROR
d8f9795e-7d1e-d335-3079-210994cb28b6	2021-05-24 18:10:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:10:11.877+03	2021-05-24 18:10:11.885+03	
6c873188-3e8a-03c0-249b-cb60e2a8b049	2021-05-24 18:10:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:10:31.877+03	2021-05-24 18:10:31.882+03	
594ce392-0717-79d0-83d6-93bd9d2fee8a	2021-05-24 18:10:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:10:51.877+03	2021-05-24 18:10:51.882+03	
56f1424d-b023-226d-dab4-c3e20636d26e	2021-05-24 18:11:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:11:11.877+03	2021-05-24 18:11:11.884+03	
4d3eaaec-e7a6-d9e6-9204-888c22ee139c	2021-05-24 18:11:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:11:31.877+03	2021-05-24 18:11:31.883+03	
0f684395-fb51-20b0-cde5-20845720ebe2	2021-05-24 18:11:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:11:51.877+03	2021-05-24 18:11:52.196+03	
08988960-b4ae-05b3-a1e5-c17c4f1b907e	2021-05-24 18:12:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:12:11.877+03	2021-05-24 18:12:11.885+03	
bdc3c03a-76ee-f80f-b961-5884f88a8ac0	2021-05-24 18:12:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:12:31.877+03	2021-05-24 18:12:31.882+03	
e3a00d4c-0b93-f1d9-f2a4-64ca8c07dffb	2021-05-24 18:12:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:12:52.877+03	2021-05-24 18:12:52.882+03	
e4f12a43-6287-48ef-ea67-92db585d3ac1	2021-05-24 18:13:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:13:13.877+03	2021-05-24 18:13:13.883+03	
aec31481-7b21-a934-a9c9-c9cdb05f8c0a	2021-05-24 18:13:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:13:33.877+03	2021-05-24 18:13:33.934+03	
3008e398-e1e8-5804-b069-549cb0028c06	2021-05-24 18:13:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:13:53.877+03	2021-05-24 18:13:53.887+03	
217dc137-5d90-de7f-9195-c6e7c2426c18	2021-05-24 18:14:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:14:13.877+03	2021-05-24 18:14:13.882+03	
7680f014-a2d7-f94a-74f8-e8394c6b5930	2021-05-24 18:14:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:14:43.877+03	2021-05-24 18:14:43.883+03	
15e482a6-e22d-68fa-5e99-da2cc0f21202	2021-05-24 18:15:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:15:03.877+03	2021-05-24 18:15:03.883+03	
88b64d0e-5631-22c7-ad92-32e83ae1bb8b	2021-05-24 18:15:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:15:23.877+03	2021-05-24 18:15:24.129+03	
1539587b-0189-eda6-f078-6396e565cd70	2021-05-24 18:15:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:15:43.877+03	2021-05-24 18:15:43.885+03	
97bba62c-4613-355c-8416-38934eb498fd	2021-05-24 18:16:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:16:03.877+03	2021-05-24 18:16:03.885+03	
75dd27f6-4c9c-f5b6-bad3-38095673e275	2021-05-24 18:16:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:16:23.877+03	2021-05-24 18:16:24.207+03	
d6f9e823-c408-68bf-2381-6b4fb0d131d4	2021-05-24 18:16:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:16:43.877+03	2021-05-24 18:16:43.882+03	
081afe31-f6b6-3f89-49bf-2dee9021ee70	2021-05-24 18:17:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:17:03.878+03	2021-05-24 18:17:03.885+03	
d231eba2-7de0-3b12-4527-7b5c2faa4e0a	2021-05-24 18:17:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:17:24.877+03	2021-05-24 18:17:24.885+03	
a4253dc8-7e91-31f4-133b-9b1b391b5176	2021-05-24 18:17:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:17:34.877+03	2021-05-24 18:17:34.884+03	
a36230b9-45ca-7653-9811-34a6303e352d	2021-05-24 18:17:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:17:54.877+03	2021-05-24 18:17:55.128+03	
bc22b390-3fa6-7f11-1cd6-36f6d5b320bd	2021-05-24 18:18:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:18:14.877+03	2021-05-24 18:18:15.199+03	
83010514-d68d-6ec5-aad6-6c0814bd05be	2021-05-24 18:18:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:18:34.877+03	2021-05-24 18:18:34.882+03	
677ab8b0-de1c-21d2-1037-3e8292c478f6	2021-05-24 18:18:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:18:54.877+03	2021-05-24 18:18:54.885+03	
18ec9402-9d18-cd14-dc05-54582aeb5687	2021-05-24 18:19:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:19:14.877+03	2021-05-24 18:19:14.885+03	
83ae83c3-165b-9c72-29e7-1008019d4bc7	2021-05-24 18:19:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:19:34.877+03	2021-05-24 18:19:34.884+03	
4cf6f9e2-cc3e-a951-9b70-9dbc31d7652a	2021-05-24 18:19:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:19:54.877+03	2021-05-24 18:19:54.882+03	
7b48800e-04ae-e6f2-f235-8595fd795a06	2021-05-24 18:20:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:20:04.877+03	2021-05-24 18:20:04.884+03	
90aba039-5571-9284-b0b1-eadb7bdf1a87	2021-05-24 18:20:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:20:24.877+03	2021-05-24 18:20:24.883+03	
11578650-0e0e-1464-ddcc-417c23671af9	2021-05-24 18:20:44.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:20:44.877+03	2021-05-24 18:20:44.885+03	
de5b78a4-554c-5a5a-56c8-bbcbd32cafb9	2021-05-24 18:21:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:21:04.877+03	2021-05-24 18:21:04.886+03	
2a1ad438-e64b-81f6-7683-47c4c5460bac	2021-05-24 18:21:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:21:24.877+03	2021-05-24 18:21:24.883+03	
9dc62ae2-21f5-95b9-f849-f8f9a84cadaa	2021-05-24 18:21:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:21:45.877+03	2021-05-24 18:21:45.884+03	
e9df471b-2f3c-c86b-5ccd-db95276be264	2021-05-24 18:22:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:22:15.877+03	2021-05-24 18:22:15.883+03	
95924e7b-9ccf-5752-0198-32f8ac7ef5ca	2021-05-24 18:22:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:22:35.877+03	2021-05-24 18:22:35.883+03	
a777d296-58bf-885a-cac2-6e6fa0bedae0	2021-05-24 18:22:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:22:55.877+03	2021-05-24 18:22:55.884+03	
a332a3e2-d967-a602-7fc0-faefc6ed253d	2021-05-24 18:23:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:23:15.877+03	2021-05-24 18:23:15.884+03	
919dd429-4a10-a99c-63d4-84623e781497	2021-05-24 18:23:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:23:35.877+03	2021-05-24 18:23:35.884+03	
10d88b7d-c39e-759c-7392-b5281a541529	2021-05-24 18:23:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:23:55.877+03	2021-05-24 18:23:55.884+03	
31865faa-7ca2-ab81-203e-a81f9160e148	2021-05-24 18:24:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:24:15.877+03	2021-05-24 18:24:15.883+03	
f150d7ff-660a-45e7-a435-5b020d7c680e	2021-05-24 18:24:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:24:36.877+03	2021-05-24 18:24:36.885+03	
198ce4cc-c98f-bd1f-b7a2-86069730103a	2021-05-24 18:24:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:24:56.877+03	2021-05-24 18:24:56.885+03	
3fa76143-569b-930b-3187-f9a1f393d1eb	2021-05-24 18:25:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:25:16.877+03	2021-05-24 18:25:17.13+03	
3cf4528d-bcf4-b227-c6bd-d5a5a510b00c	2021-05-24 18:25:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:25:36.877+03	2021-05-24 18:25:36.884+03	
66b5e110-ff44-4169-aac8-e60e6aff483b	2021-05-24 18:25:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:25:56.877+03	2021-05-24 18:25:56.882+03	
5e08518a-88be-f11a-b9fb-36fedaf5d51f	2021-05-24 18:26:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:26:16.877+03	2021-05-24 18:26:16.883+03	
bf21e702-a3e5-759b-92f2-084ebcf67a14	2021-05-24 18:26:36.88	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:26:36.88+03	2021-05-24 18:26:36.885+03	
0db203a4-dc93-409d-c50d-858c914d8f03	2021-05-24 18:26:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:26:57.877+03	2021-05-24 18:26:57.884+03	
42385259-0059-6a93-0dec-404818e7b5ad	2021-05-24 18:27:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:27:17.877+03	2021-05-24 18:27:17.884+03	
ba9c7584-28fb-0f6a-2b1c-775ad02302c6	2021-05-24 18:27:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:27:38.877+03	2021-05-24 18:27:38.885+03	
a63cda8f-1722-6f14-4873-f3a5519bb048	2021-05-24 18:27:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:27:58.877+03	2021-05-24 18:27:58.883+03	
bec53094-feb6-67a8-6e00-b11785e12429	2021-05-24 18:28:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:28:18.877+03	2021-05-24 18:28:18.884+03	
46dcefe4-0d4d-83e6-57ee-13113e976843	2021-05-24 18:28:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:28:38.877+03	2021-05-24 18:28:38.883+03	
de4e6a0c-d9ba-c7f1-6448-1ce139f24913	2021-05-24 18:28:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:28:58.877+03	2021-05-24 18:28:58.884+03	
997eb2e1-de02-1e15-5545-edcf1c0b8d64	2021-05-24 18:29:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:29:18.877+03	2021-05-24 18:29:18.884+03	
61b6e9bd-d752-4b5a-7140-97dd0731b471	2021-05-24 18:29:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:29:38.877+03	2021-05-24 18:29:38.887+03	
435d7631-c3f7-869f-fa65-3707490967a7	2021-05-24 18:09:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:09:11.877+03	2021-05-24 18:09:11.884+03	
6291e614-ac35-e757-8d74-0d24c29381c0	2021-05-24 18:09:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:09:31.877+03	2021-05-24 18:09:31.885+03	
e37e6e75-01b3-792a-4ab1-544fa3162564	2021-05-24 18:09:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:09:51.877+03	2021-05-24 18:09:51.884+03	
c25f4ba4-c164-c8b4-af9d-576e62a31d68	2021-05-24 18:10:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:10:01.877+03	2021-05-24 18:10:01.884+03	
0b15a5ec-0ae9-78e0-f42f-c99292e4a920	2021-05-24 18:10:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:10:21.877+03	2021-05-24 18:10:21.884+03	
df9942bc-031a-002c-d253-5aa8638b4038	2021-05-24 18:10:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:10:41.877+03	2021-05-24 18:10:41.884+03	
84c3c00f-65d6-4d7c-9cea-9e7da641ddb3	2021-05-24 18:11:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:11:01.877+03	2021-05-24 18:11:01.882+03	
418e4dab-c24c-7a76-e3f7-568f857f932a	2021-05-24 18:11:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:11:21.877+03	2021-05-24 18:11:21.883+03	
7217760d-63d9-d4dc-8355-c3310ab4100f	2021-05-24 18:11:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:11:41.877+03	2021-05-24 18:11:41.884+03	
4603ebd4-1287-09e8-0cba-11f675c0181d	2021-05-24 18:12:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:12:01.877+03	2021-05-24 18:12:01.891+03	
cfcc5be4-c5b5-a9be-dcaf-556c8265103d	2021-05-24 18:12:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:12:21.877+03	2021-05-24 18:12:21.883+03	
ccce2acf-8cf5-a970-0162-61f0588aa20d	2021-05-24 18:12:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:12:42.877+03	2021-05-24 18:12:42.932+03	
7fa4c7de-27c3-d435-15f0-d721341749e3	2021-05-24 18:13:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:13:02.878+03	2021-05-24 18:13:02.884+03	
6be99f1a-c8f9-24ae-a0d4-5607419e2318	2021-05-24 18:13:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:13:23.877+03	2021-05-24 18:13:23.883+03	
e8ac2e77-20eb-8025-9039-a45c52406ef2	2021-05-24 18:13:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:13:43.877+03	2021-05-24 18:13:44.129+03	
f85e70df-61a9-fd58-8c4f-ef71d62f7281	2021-05-24 18:14:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:14:03.877+03	2021-05-24 18:14:03.884+03	
2ef4efe6-cd13-6bb6-7238-11092e26b128	2021-05-24 18:14:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:14:23.877+03	2021-05-24 18:14:23.884+03	
9dbeb26d-0a77-6a1e-a84f-d5c4b5e760f0	2021-05-24 18:14:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:14:33.877+03	2021-05-24 18:14:33.883+03	
429a693e-cfb4-f23a-0b2d-d55ecf057b04	2021-05-24 18:14:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:14:53.877+03	2021-05-24 18:14:53.894+03	
55780d0f-be28-d050-ace2-7d5661c13cc2	2021-05-24 18:15:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:15:13.877+03	2021-05-24 18:15:13.884+03	
54f2693f-7455-e5bd-0537-1e2edb3b0e62	2021-05-24 18:15:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:15:33.877+03	2021-05-24 18:15:33.886+03	
cb336f90-88a1-14a2-97eb-483f49696e68	2021-05-24 18:15:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:15:53.877+03	2021-05-24 18:15:53.883+03	
be4c3129-9905-dbde-634e-40e64d021bd1	2021-05-24 18:16:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:16:13.877+03	2021-05-24 18:16:13.884+03	
0f90c610-44fc-e47c-be51-3d9efe6df0fa	2021-05-24 18:16:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:16:33.877+03	2021-05-24 18:16:33.885+03	
a8fe0c5d-275e-ab2c-f8fc-352bef8aa950	2021-05-24 18:16:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:16:53.877+03	2021-05-24 18:16:54.2+03	
5382a534-573b-1548-4ada-0731e3ab27f4	2021-05-24 18:17:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:17:14.877+03	2021-05-24 18:17:14.885+03	
fdd36152-1554-383e-c576-528cf75eff1e	2021-05-24 18:17:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:17:44.877+03	2021-05-24 18:17:44.883+03	
016ce4e4-11be-71cf-f593-abed7da31191	2021-05-24 18:18:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:18:04.877+03	2021-05-24 18:18:04.886+03	
6db40352-18af-6e60-d9e3-af334ecd16ff	2021-05-24 18:18:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:18:24.877+03	2021-05-24 18:18:24.884+03	
54c52c79-53cc-7326-5bd1-db67643fccd6	2021-05-24 18:18:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:18:44.877+03	2021-05-24 18:18:44.886+03	
8f9745ee-2791-0845-bc48-bc44eddcce15	2021-05-24 18:19:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:19:04.877+03	2021-05-24 18:19:04.884+03	
61d83642-ecf0-8a54-06a6-5f8e3f4817d4	2021-05-24 18:19:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:19:24.877+03	2021-05-24 18:19:24.882+03	
c0bd6296-0ee7-b045-8c66-f4b40464fdff	2021-05-24 18:19:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:19:44.877+03	2021-05-24 18:19:44.883+03	
35617461-ccde-d221-341a-9cea88191a22	2021-05-24 18:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 18:20:00.877+03	2021-05-24 18:20:00.882+03	ERROR
bdbfe5f6-04ad-ec1b-6537-8728e38114d2	2021-05-24 18:20:14.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:20:14.877+03	2021-05-24 18:20:14.884+03	
2d82b59f-8ddd-d3a7-1660-c34fc9d6efcc	2021-05-24 18:20:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:20:34.877+03	2021-05-24 18:20:34.884+03	
7b10111d-23f3-8112-0058-6e293056897b	2021-05-24 18:20:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:20:54.877+03	2021-05-24 18:20:54.882+03	
03fedebd-5b44-13fb-9180-8372a06bdc7e	2021-05-24 18:21:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:21:14.877+03	2021-05-24 18:21:14.885+03	
082deaa2-2c51-9708-08ef-d476735bd606	2021-05-24 18:21:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:21:35.877+03	2021-05-24 18:21:35.885+03	
210498c7-86dd-cbf7-2727-8eda1d97d67b	2021-05-24 18:21:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:21:55.877+03	2021-05-24 18:21:55.884+03	
781af0f3-cf5e-c957-5fd5-3f75788983f7	2021-05-24 18:22:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:22:05.877+03	2021-05-24 18:22:05.895+03	
5c8034ea-4313-f6c2-695c-0495401a4ae5	2021-05-24 18:22:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:22:25.877+03	2021-05-24 18:22:25.882+03	
151d2a6c-5e03-1af6-40c0-e4a93c16848e	2021-05-24 18:22:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:22:45.877+03	2021-05-24 18:22:45.883+03	
34b42d04-090a-04d5-87e4-c4ef8eef0c64	2021-05-24 18:23:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:23:05.877+03	2021-05-24 18:23:05.883+03	
2d44db87-f4eb-b67a-283d-c04cbef6d7c3	2021-05-24 18:23:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:23:25.877+03	2021-05-24 18:23:25.883+03	
52570cc9-f113-63e3-7eeb-bca1cbd158e0	2021-05-24 18:23:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:23:45.877+03	2021-05-24 18:23:45.883+03	
b105511a-2d1c-0ed3-8aca-20786fcaf2c1	2021-05-24 18:24:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:24:05.877+03	2021-05-24 18:24:05.885+03	
a0c5dc06-3a1b-15cc-2d47-59bb3c676db6	2021-05-24 18:24:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:24:26.877+03	2021-05-24 18:24:27.133+03	
bf10c653-7a39-8851-c206-48bd628603c0	2021-05-24 18:24:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:24:46.877+03	2021-05-24 18:24:46.883+03	
cd989d7b-0830-7b8d-3c70-f1999fc2c4c3	2021-05-24 18:25:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:25:06.877+03	2021-05-24 18:25:06.884+03	
ef074029-5829-8b77-27ce-143577d1735e	2021-05-24 18:25:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:25:26.877+03	2021-05-24 18:25:26.884+03	
2482be9b-b1d1-4ce3-6d97-4b5c2acd2c36	2021-05-24 18:25:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:25:46.877+03	2021-05-24 18:25:46.884+03	
095a550e-8dfe-2187-33ef-2740d7978484	2021-05-24 18:26:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:26:06.877+03	2021-05-24 18:26:06.885+03	
f8974874-8711-1246-b531-ebf827020ddd	2021-05-24 18:26:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:26:26.877+03	2021-05-24 18:26:26.885+03	
97bede2d-988b-9387-e0b9-c8f5334f1aa4	2021-05-24 18:26:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:26:47.877+03	2021-05-24 18:26:47.883+03	
a8a19031-78fc-48eb-3ded-bc362d99c365	2021-05-24 18:27:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:27:07.877+03	2021-05-24 18:27:07.885+03	
fb61e395-4146-4204-7f8a-c5cdc6aa8a86	2021-05-24 18:27:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:27:28.877+03	2021-05-24 18:27:28.885+03	
f374227d-065d-6159-a9cd-59d21894c17a	2021-05-24 18:27:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:27:48.877+03	2021-05-24 18:27:48.884+03	
cbe0bf77-609f-3a91-24fa-a7777db9b40a	2021-05-24 18:28:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:28:08.877+03	2021-05-24 18:28:08.885+03	
3b3b13f1-ec60-0569-581c-178bba152b66	2021-05-24 18:28:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:28:28.877+03	2021-05-24 18:28:28.885+03	
eab59327-cc07-2564-0747-b1ede2765fe8	2021-05-24 18:28:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:28:48.877+03	2021-05-24 18:28:48.884+03	
271a3d99-d84b-27aa-1150-d84992ed5cc1	2021-05-24 18:29:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:29:08.877+03	2021-05-24 18:29:08.885+03	
038b5864-f10d-8370-1402-374777f81a97	2021-05-24 18:29:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:29:28.877+03	2021-05-24 18:29:28.884+03	
c7c7eff3-33b9-4e22-e6eb-40196cd835c5	2021-05-24 18:29:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:29:48.877+03	2021-05-24 18:29:48.885+03	
57615201-757a-f4ff-3197-49d03c82dfd0	2021-05-24 18:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 18:30:00.877+03	2021-05-24 18:30:00.882+03	ERROR
224b99e5-cd1b-c6d9-bfcc-49425bbfc293	2021-05-24 18:30:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:30:18.877+03	2021-05-24 18:30:18.884+03	
9adb6589-41ab-6875-1bc1-fcf341bbdd51	2021-05-24 18:30:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:30:38.877+03	2021-05-24 18:30:38.93+03	
4dd13c04-1627-0732-1298-cf50d13e8582	2021-05-24 18:30:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:30:58.877+03	2021-05-24 18:30:58.884+03	
0aa80cf8-636d-ed9c-999a-492124ee8e3e	2021-05-24 18:31:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:31:18.877+03	2021-05-24 18:31:18.883+03	
0527f85a-d799-f277-e187-90f4c4127092	2021-05-24 18:31:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:31:38.877+03	2021-05-24 18:31:38.884+03	
20ef8fdc-f75c-e8b3-8d08-862f2d55c325	2021-05-24 18:31:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:31:58.877+03	2021-05-24 18:31:59.104+03	
5f94c8b2-1450-f1be-0ab6-19e1ed5ad653	2021-05-24 18:32:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:32:18.877+03	2021-05-24 18:32:18.931+03	
98de0b1d-699e-391f-e21a-fae94e51be42	2021-05-24 18:32:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:32:38.877+03	2021-05-24 18:32:38.884+03	
0606b8aa-b16a-a333-9953-977f15fdab7e	2021-05-24 18:32:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:32:58.877+03	2021-05-24 18:32:58.884+03	
6fbd193d-3196-7d7d-18d0-4d4f1bb36b95	2021-05-24 18:33:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:33:18.877+03	2021-05-24 18:33:18.883+03	
dff326d0-132d-fa88-73d6-cccb089355b2	2021-05-24 18:33:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:33:38.877+03	2021-05-24 18:33:38.885+03	
e261cd57-b6c8-bfc4-6414-ba2bc5b374b0	2021-05-24 18:33:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:33:58.877+03	2021-05-24 18:33:58.885+03	
6b503204-98fc-9b17-4a11-d17926b236ec	2021-05-24 18:34:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:34:18.877+03	2021-05-24 18:34:18.884+03	
2ea89e77-5a3d-9d3b-6a0e-bd17b696cab9	2021-05-24 18:34:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:34:39.877+03	2021-05-24 18:34:39.888+03	
b0630593-a4c6-0000-20d7-c1c6f1b5c92c	2021-05-24 18:34:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:34:59.877+03	2021-05-24 18:34:59.885+03	
dcb5a4e7-6b26-fc3a-6837-6279bdd7aa98	2021-05-24 18:35:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:35:19.877+03	2021-05-24 18:35:19.884+03	
d55e2696-7e61-d118-ddd6-bc78047c9d81	2021-05-24 18:35:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:35:39.877+03	2021-05-24 18:35:39.883+03	
b567ba4e-5462-fc8c-c45b-52af10c3a8ca	2021-05-24 18:35:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:35:59.877+03	2021-05-24 18:35:59.884+03	
2612c3a3-a923-7b3b-da59-a3b6f3ee1074	2021-05-24 18:36:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:36:19.877+03	2021-05-24 18:36:19.883+03	
d306ed17-e114-a728-f405-20c4e3087bb2	2021-05-24 18:36:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:36:39.877+03	2021-05-24 18:36:39.883+03	
f051a82f-cfe4-e75e-ba38-625a64a0f0eb	2021-05-24 18:36:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:36:59.877+03	2021-05-24 18:36:59.884+03	
af60a668-a3dd-5f61-1cc2-e8a689b7f238	2021-05-24 18:37:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:37:19.877+03	2021-05-24 18:37:19.882+03	
2e24a601-cac9-0c32-e506-281a6f1d0bbe	2021-05-24 18:37:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:37:39.877+03	2021-05-24 18:37:39.884+03	
1a8ab5a2-13fb-20e3-bba1-935ace5f4637	2021-05-24 18:38:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:38:09.877+03	2021-05-24 18:38:09.884+03	
186cd4bd-0af9-b2f2-fa8e-8f3300ca6c8f	2021-05-24 18:38:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:38:29.877+03	2021-05-24 18:38:29.884+03	
28ea72cf-a35f-4d9a-4db6-f2cbeb4cba33	2021-05-24 18:38:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:38:49.877+03	2021-05-24 18:38:49.886+03	
1fb939a2-8ad6-29f6-72f8-5100ac4a9ad6	2021-05-24 18:39:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:39:19.877+03	2021-05-24 18:39:19.883+03	
12b42168-f061-e057-114c-6d550e8a1a53	2021-05-24 18:39:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:39:39.877+03	2021-05-24 18:39:39.894+03	
6bef16d8-7e7d-56df-9dd5-0907dff391ec	2021-05-24 18:39:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:39:59.877+03	2021-05-24 18:39:59.885+03	
022ef0fd-bee8-5984-8c5e-364babecedc7	2021-05-24 18:40:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:40:09.877+03	2021-05-24 18:40:09.883+03	
819665a3-2483-f2df-9e38-d9fafb7b6966	2021-05-24 18:40:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:40:29.877+03	2021-05-24 18:40:29.883+03	
9932efa0-ec92-f8b0-fef2-ad7e772e6e77	2021-05-24 18:40:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:40:49.877+03	2021-05-24 18:40:49.883+03	
0318b0f8-3c0c-8024-9bbb-855537914d19	2021-05-24 18:41:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:41:09.877+03	2021-05-24 18:41:09.884+03	
f94f1867-cb8e-a97d-d737-db1aaa1ea218	2021-05-24 18:41:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:41:29.877+03	2021-05-24 18:41:29.884+03	
033a057e-9e21-ebc1-d3f7-015e7d1bde3b	2021-05-24 18:41:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:41:49.877+03	2021-05-24 18:41:49.887+03	
65018a41-2aa4-47e0-8921-fb60f367e9eb	2021-05-24 18:42:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:42:09.877+03	2021-05-24 18:42:09.884+03	
44ba6425-dc24-fccc-4dd3-0562e7f66ee1	2021-05-24 18:42:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:42:29.877+03	2021-05-24 18:42:29.882+03	
45eb40b3-b3f2-ae2c-591c-30dc5fee10cb	2021-05-24 18:42:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:42:49.877+03	2021-05-24 18:42:49.884+03	
a2ccb450-b4e2-31b9-d922-9ac10a169065	2021-05-24 18:43:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:43:09.877+03	2021-05-24 18:43:09.884+03	
c71b06ca-6b72-96bc-55f1-7c50b1b2be76	2021-05-24 18:43:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:43:30.877+03	2021-05-24 18:43:30.886+03	
808ad6be-1f9c-903f-e255-d2ff1dcc748f	2021-05-24 18:43:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:43:50.877+03	2021-05-24 18:43:50.884+03	
abadfd0f-3071-5fce-1b80-0406358d4bae	2021-05-24 18:44:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:44:10.877+03	2021-05-24 18:44:10.883+03	
575f0988-d43a-aeed-cd67-87f8ff3c6bad	2021-05-24 18:44:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:44:30.877+03	2021-05-24 18:44:31.219+03	
c041bc33-6012-f186-69c1-83aa354fe3bf	2021-05-24 18:44:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:44:50.877+03	2021-05-24 18:44:50.884+03	
c823ba1d-212b-a93f-d7d5-8a26765e4ecb	2021-05-24 18:45:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:45:10.877+03	2021-05-24 18:45:10.884+03	
ecb4e86e-333a-3082-6dd6-fe9189e13ddc	2021-05-24 18:45:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:45:30.877+03	2021-05-24 18:45:30.883+03	
d6e8e07d-54e3-b1e4-2f2f-acf97724439e	2021-05-24 18:45:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:45:50.877+03	2021-05-24 18:45:51.12+03	
ad673463-c709-464d-4fba-55adce843af8	2021-05-24 18:46:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:46:10.877+03	2021-05-24 18:46:10.884+03	
50752178-5706-c54f-49b4-5257edc7484e	2021-05-24 18:46:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:46:31.877+03	2021-05-24 18:46:31.883+03	
085efd70-7cd7-1a50-a196-36dd8f11cc23	2021-05-24 18:46:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:46:51.877+03	2021-05-24 18:46:51.882+03	
fd2a6038-48df-18b0-4b78-6bcedbb78497	2021-05-24 18:47:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:47:11.877+03	2021-05-24 18:47:11.886+03	
6417608d-6e21-b514-5c54-39f541ee77bc	2021-05-24 18:47:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:47:31.877+03	2021-05-24 18:47:31.884+03	
fa665240-8f91-a67a-7485-d7a99661b074	2021-05-24 18:47:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:47:51.877+03	2021-05-24 18:47:51.884+03	
18199bb3-15be-13c6-264b-8c543cb6ccf6	2021-05-24 18:48:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:48:11.877+03	2021-05-24 18:48:11.883+03	
acaadeab-506b-dae3-91b2-bcc5634ea933	2021-05-24 18:48:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:48:41.877+03	2021-05-24 18:48:41.885+03	
e0c00817-abb4-3e87-70ae-da68e41f4bc8	2021-05-24 18:49:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:49:01.877+03	2021-05-24 18:49:01.883+03	
73f78010-2730-c567-efd9-3b567f645d0c	2021-05-24 18:49:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:49:21.877+03	2021-05-24 18:49:21.885+03	
11a591e7-0366-05a6-cb35-5162c47d1867	2021-05-24 18:49:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:49:41.877+03	2021-05-24 18:49:41.884+03	
585e5dc3-1b04-b790-9194-7a21e54132e6	2021-05-24 18:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 18:50:00.877+03	2021-05-24 18:50:00.883+03	ERROR
3f33e306-d9a6-6ef9-6468-6c31d4056649	2021-05-24 18:50:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:50:11.877+03	2021-05-24 18:50:11.884+03	
2128321b-1c6d-348f-9933-e369ab29c58c	2021-05-24 18:50:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:50:32.877+03	2021-05-24 18:50:32.885+03	
8aa3d35d-fcd4-bc1e-b9cb-dec00f6112cd	2021-05-24 18:29:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:29:58.877+03	2021-05-24 18:29:58.884+03	
b6e50a83-4108-18f9-a2b4-a3b278ed0de8	2021-05-24 18:30:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:30:08.877+03	2021-05-24 18:30:08.884+03	
d483313d-c0a7-f690-7c12-4f7c38632686	2021-05-24 18:30:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:30:28.877+03	2021-05-24 18:30:28.885+03	
017b0001-19ce-e864-5026-8c45c203fe06	2021-05-24 18:30:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:30:48.877+03	2021-05-24 18:30:48.884+03	
ae6b5def-3cd1-85cf-ca06-670aabd0cf72	2021-05-24 18:31:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:31:08.877+03	2021-05-24 18:31:08.884+03	
487a7380-0cf8-6bf4-154a-536e7bdcc882	2021-05-24 18:31:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:31:28.877+03	2021-05-24 18:31:28.883+03	
1e52b2ae-a0f3-addb-180a-b314523dc5e6	2021-05-24 18:31:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:31:48.877+03	2021-05-24 18:31:48.883+03	
1cbb6e77-b8e1-be77-50ec-af6b80f772ab	2021-05-24 18:32:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:32:08.877+03	2021-05-24 18:32:08.883+03	
68e1973f-a7d7-0118-ce8a-1a1a5e8edf63	2021-05-24 18:32:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:32:28.877+03	2021-05-24 18:32:28.883+03	
efc2baeb-5bdb-e7df-46ed-a39a74949671	2021-05-24 18:32:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:32:48.877+03	2021-05-24 18:32:48.883+03	
7f23c5a1-529a-7389-bce4-9a49ae561adf	2021-05-24 18:33:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:33:08.877+03	2021-05-24 18:33:08.884+03	
17c01214-699e-24d3-8e14-945a1ad26949	2021-05-24 18:33:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:33:28.877+03	2021-05-24 18:33:28.883+03	
c55e0912-7453-12a5-defc-434835ed62bb	2021-05-24 18:33:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:33:48.877+03	2021-05-24 18:33:48.885+03	
8a908913-5d03-d0b6-646d-cb7fa0359534	2021-05-24 18:34:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:34:08.877+03	2021-05-24 18:34:08.884+03	
dd1d0909-ebb5-3670-5a33-d4e9cc981d9c	2021-05-24 18:34:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:34:29.877+03	2021-05-24 18:34:29.884+03	
318cb577-cdb1-7242-0d22-0a0168bd3f97	2021-05-24 18:34:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:34:49.877+03	2021-05-24 18:34:49.884+03	
a25e4bd8-7d89-9ed3-ef04-a70d4979d10c	2021-05-24 18:35:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:35:09.877+03	2021-05-24 18:35:09.883+03	
a7216c01-24b8-f284-2e98-ebaeba95f592	2021-05-24 18:35:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:35:29.877+03	2021-05-24 18:35:29.885+03	
421bbd0e-7e53-bcfa-fbfd-37d3064d418f	2021-05-24 18:35:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:35:49.877+03	2021-05-24 18:35:49.885+03	
f9dd86e2-d777-7b1f-1d83-7d0a4c4df4d8	2021-05-24 18:36:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:36:09.877+03	2021-05-24 18:36:09.886+03	
8ab1bdd0-691b-32c0-1f71-5a42cc2293b6	2021-05-24 18:36:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:36:29.877+03	2021-05-24 18:36:29.885+03	
c99c93d3-9ce2-98cb-a67f-c858dd74517f	2021-05-24 18:36:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:36:49.877+03	2021-05-24 18:36:49.883+03	
8a219b5b-14bd-9d3f-efdf-2ea6c97e7f13	2021-05-24 18:37:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:37:09.877+03	2021-05-24 18:37:09.884+03	
76bd692a-b75b-d71a-26f4-3e34162c7509	2021-05-24 18:37:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:37:29.877+03	2021-05-24 18:37:29.883+03	
327860bc-b334-dc23-5c47-5520b540ed16	2021-05-24 18:37:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:37:49.877+03	2021-05-24 18:37:49.883+03	
afa68f0d-3d62-4781-ad3e-e82ce055e5a2	2021-05-24 18:37:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:37:59.877+03	2021-05-24 18:37:59.883+03	
410c5435-f93b-6af8-4819-59c3180df0f6	2021-05-24 18:38:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:38:19.877+03	2021-05-24 18:38:19.883+03	
fb2a2760-2909-54cd-3421-6d3aca2c65bd	2021-05-24 18:38:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:38:39.877+03	2021-05-24 18:38:39.883+03	
e197ad03-9a23-34d0-f108-5bc8501b17af	2021-05-24 18:38:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:38:59.877+03	2021-05-24 18:38:59.884+03	
b1b5bfe3-5a58-3080-f9cf-231b934577af	2021-05-24 18:39:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:39:09.877+03	2021-05-24 18:39:09.883+03	
08c8accd-668d-600a-0dc1-003883a3d191	2021-05-24 18:39:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:39:29.877+03	2021-05-24 18:39:29.885+03	
9c446047-dedf-31f7-26ce-d60cef36c66a	2021-05-24 18:39:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:39:49.877+03	2021-05-24 18:39:49.884+03	
a09ae93a-59e2-536a-af01-f4e5e6e4041f	2021-05-24 18:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 18:40:00.877+03	2021-05-24 18:40:00.881+03	ERROR
700bf6eb-290b-f498-5885-376c64f26bef	2021-05-24 18:40:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:40:19.877+03	2021-05-24 18:40:19.885+03	
65514200-3faa-a217-4700-7d2f0f987f9a	2021-05-24 18:40:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:40:39.877+03	2021-05-24 18:40:39.886+03	
b45478fd-0131-63a5-eff5-e4cb6110394c	2021-05-24 18:40:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:40:59.877+03	2021-05-24 18:40:59.883+03	
0f26eeac-f47c-18d4-ed33-2f41f5916d44	2021-05-24 18:41:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:41:19.877+03	2021-05-24 18:41:19.882+03	
3b86c5b8-cf0e-b1ef-ddbd-bbe228f40b90	2021-05-24 18:41:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:41:39.877+03	2021-05-24 18:41:39.882+03	
e8bf3d97-5db8-fddf-f821-2a8b3a95a4d5	2021-05-24 18:41:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:41:59.877+03	2021-05-24 18:41:59.885+03	
e2ea9f00-ae27-3662-c45a-fe21b3c10e65	2021-05-24 18:42:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:42:19.877+03	2021-05-24 18:42:19.885+03	
8408c365-6fd9-46f5-4491-c4d05622e31c	2021-05-24 18:42:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:42:39.877+03	2021-05-24 18:42:40.256+03	
71de0385-d784-aeae-263a-70220f2761ec	2021-05-24 18:42:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:42:59.877+03	2021-05-24 18:42:59.9+03	
943b2b75-4bf2-f900-e262-ca5c0b0d10fa	2021-05-24 18:43:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:43:20.877+03	2021-05-24 18:43:20.884+03	
3e7f0c0f-6d5a-553a-15ad-c01d1cef4ef8	2021-05-24 18:43:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:43:40.877+03	2021-05-24 18:43:41.129+03	
64870792-5498-5a4f-5210-d2c9e231b07b	2021-05-24 18:44:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:44:00.877+03	2021-05-24 18:44:00.884+03	
e33bd842-5ae6-0d6f-6933-126e7c93e14d	2021-05-24 18:44:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:44:20.877+03	2021-05-24 18:44:20.884+03	
c7887c08-3405-8fa2-86b8-11ceeb606348	2021-05-24 18:44:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:44:40.877+03	2021-05-24 18:44:40.883+03	
07741dde-90f1-7783-2be6-79f3232ff182	2021-05-24 18:45:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:45:00.877+03	2021-05-24 18:45:01.017+03	
11a1a95b-cc05-eaea-acfa-29513ffe127e	2021-05-24 18:45:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:45:20.877+03	2021-05-24 18:45:20.884+03	
5fd18197-ae03-e4f2-c395-e90e9171a6a1	2021-05-24 18:45:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:45:40.877+03	2021-05-24 18:45:40.882+03	
1e71ed00-821e-5448-d8f5-1ce4304aa249	2021-05-24 18:46:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:46:00.877+03	2021-05-24 18:46:00.884+03	
992b6b4f-b86d-9a0f-8dd8-24b1253759aa	2021-05-24 18:46:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:46:20.878+03	2021-05-24 18:46:20.884+03	
54947b7e-580b-57d8-7ae9-f75ee36dd707	2021-05-24 18:46:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:46:41.877+03	2021-05-24 18:46:41.883+03	
39889640-a638-9e7f-5350-b80c88e8562c	2021-05-24 18:47:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:47:01.877+03	2021-05-24 18:47:01.882+03	
88ad0645-6a85-884a-ce9d-c0d4fa70484a	2021-05-24 18:47:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:47:21.877+03	2021-05-24 18:47:21.885+03	
97b70861-831b-b21a-21c7-fc2c81c806ce	2021-05-24 18:47:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:47:41.877+03	2021-05-24 18:47:41.883+03	
71b74cfa-5a3e-c7d9-5848-c44a2a14907c	2021-05-24 18:48:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:48:01.877+03	2021-05-24 18:48:01.884+03	
cdb92e2e-2ae4-d154-dfa7-ef560ec02254	2021-05-24 18:48:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:48:21.877+03	2021-05-24 18:48:21.883+03	
619f7425-6952-ea12-60b6-1bf0f181233d	2021-05-24 18:48:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:48:31.877+03	2021-05-24 18:48:31.885+03	
c96276ba-2347-b3c5-9859-ec1e957c3260	2021-05-24 18:48:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:48:51.877+03	2021-05-24 18:48:51.884+03	
a0666e97-721e-e8a4-615e-38777fc05623	2021-05-24 18:49:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:49:11.877+03	2021-05-24 18:49:11.885+03	
df2566e2-9c29-5127-11b6-7897cebefb8b	2021-05-24 18:49:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:49:31.877+03	2021-05-24 18:49:31.882+03	
ece458e2-fe74-ab94-5364-8e7a0334acc3	2021-05-24 18:49:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:49:51.877+03	2021-05-24 18:49:51.885+03	
56b74f6c-4c2f-8cf5-2530-da8bc6d2c93d	2021-05-24 18:50:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:50:01.877+03	2021-05-24 18:50:01.885+03	
ce5045b3-f674-168d-0675-91c96c55bf24	2021-05-24 23:13:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:13:03.877+03	2021-05-24 23:13:03.886+03	
7b0c85c9-f563-34a6-4248-74ff48ffe333	2021-05-24 18:50:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:50:21.878+03	2021-05-24 18:50:21.884+03	
ad16d227-9d17-d474-eb2e-390a4ce90ef5	2021-05-24 18:50:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:50:42.877+03	2021-05-24 18:50:42.884+03	
111ca796-aa42-e119-242b-daed5248e289	2021-05-24 23:13:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:13:23.877+03	2021-05-24 23:13:23.884+03	
1ff91c0c-d511-b604-9cf8-d03621d7ae92	2021-05-24 18:51:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:51:02.877+03	2021-05-24 18:51:02.884+03	
4ebe6791-8079-b4ef-d3d1-2cc5992279d5	2021-05-24 18:51:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:51:22.877+03	2021-05-24 18:51:23.68+03	
f296cb4f-ddce-c27c-f185-a7be808571f8	2021-05-24 23:13:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:13:43.877+03	2021-05-24 23:13:43.883+03	
c5851ea3-1785-59f0-6dd0-c4cb211a6dce	2021-05-24 18:51:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:51:32.877+03	2021-05-24 18:51:32.888+03	
f467d8f6-1bb0-1ce3-8425-b12d4323e6d1	2021-05-24 18:51:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:51:42.877+03	2021-05-24 18:51:42.896+03	
0e83bd0d-0ee7-3a8b-25b6-c521f333ccdf	2021-05-24 23:14:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:14:03.877+03	2021-05-24 23:14:03.884+03	
7d39c486-8dc6-3dac-8617-0c1867b0afed	2021-05-24 18:52:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:52:02.877+03	2021-05-24 18:52:02.884+03	
a44f3078-9438-f526-e9de-386af2661e10	2021-05-24 18:52:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:52:22.878+03	2021-05-24 18:52:22.884+03	
8c991d8a-9a5a-9254-dbd0-6a9579cb10ef	2021-05-24 23:14:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:14:23.877+03	2021-05-24 23:14:23.882+03	
81a32c6a-5ab4-be8b-adf5-89f69185b56c	2021-05-24 18:52:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:52:43.877+03	2021-05-24 18:52:43.884+03	
5f8ae754-4de1-4b23-3553-84f16e592626	2021-05-24 18:53:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:53:03.877+03	2021-05-24 18:53:03.883+03	
3a46d81a-7776-74fa-247e-a328287e776c	2021-05-24 23:14:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:14:43.877+03	2021-05-24 23:14:43.884+03	
42ab83c3-a0e6-a9c5-7386-6891e28bc0b5	2021-05-24 18:53:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:53:33.877+03	2021-05-24 18:53:33.884+03	
2c65e604-e51e-7122-9123-2799739047e4	2021-05-24 18:53:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:53:53.877+03	2021-05-24 18:53:53.884+03	
7de29c03-ba2a-c925-211b-1e23d13bc844	2021-05-24 23:15:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:15:03.877+03	2021-05-24 23:15:03.885+03	
0112ca8a-19fd-6a60-07e8-c4c4a8720003	2021-05-24 18:54:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:54:13.877+03	2021-05-24 18:54:13.886+03	
7f1b1bb8-f760-3ad9-b4c9-8fda70307b59	2021-05-24 18:54:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:54:33.877+03	2021-05-24 18:54:33.885+03	
248337d3-253d-49fd-fb26-00958cb7eb71	2021-05-24 23:15:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:15:23.877+03	2021-05-24 23:15:23.883+03	
16da775b-436e-131c-be94-2ba921ae3c3d	2021-05-24 18:54:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:54:53.877+03	2021-05-24 18:54:54.123+03	
da999654-87ba-a4ab-4f8d-ac078159d492	2021-05-24 18:55:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:55:13.877+03	2021-05-24 18:55:14.194+03	
ba18895b-7dfc-9853-049a-a3142918bc62	2021-05-24 23:15:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:15:43.877+03	2021-05-24 23:15:43.939+03	
a5c0671a-c537-e077-e82a-e133ab3e91ae	2021-05-24 18:55:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:55:33.877+03	2021-05-24 18:55:33.885+03	
6ccb8018-76e3-fa2a-d55a-9761dc6c398c	2021-05-24 18:55:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:55:53.877+03	2021-05-24 18:55:53.886+03	
8505d881-012c-3420-06fa-d65be481effe	2021-05-24 23:16:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:16:03.877+03	2021-05-24 23:16:03.883+03	
e4172180-1f12-32e7-4640-dd2c3fcd7721	2021-05-24 18:56:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:56:13.877+03	2021-05-24 18:56:13.883+03	
ad0bb7b9-f1f5-73f8-e824-8ef989a4d70f	2021-05-24 18:56:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:56:33.877+03	2021-05-24 18:56:33.885+03	
b4296320-37ad-5827-5616-b4ba6996959c	2021-05-24 23:16:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:16:23.877+03	2021-05-24 23:16:24.169+03	
e72fabff-e004-6fd7-6369-6a2330aadd51	2021-05-24 18:56:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:56:53.877+03	2021-05-24 18:56:53.936+03	
12e5f507-5b00-fb6a-37ee-cd7f7cdd7324	2021-05-24 18:57:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:57:13.877+03	2021-05-24 18:57:13.942+03	
b61e6fd7-2901-7543-b8d9-fc2588020ae1	2021-05-24 23:16:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:16:43.877+03	2021-05-24 23:16:43.884+03	
94e61fe2-d922-648d-5256-a263941c06b5	2021-05-24 18:57:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:57:33.877+03	2021-05-24 18:57:33.886+03	
20634ba5-818d-18d7-69ff-ca993cb6bd77	2021-05-24 18:57:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:57:53.877+03	2021-05-24 18:57:53.884+03	
7ff16d7f-55b1-8de5-3a2e-73e4739fa56f	2021-05-24 23:17:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:17:03.877+03	2021-05-24 23:17:03.886+03	
9e5710e8-740a-4a70-55e2-9c724e6e70b7	2021-05-24 18:58:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:58:13.877+03	2021-05-24 18:58:13.895+03	
e2ae9559-c39e-3ab1-8691-f4cc54c7e399	2021-05-24 18:58:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:58:33.877+03	2021-05-24 18:58:33.883+03	
61cd4079-6319-d442-b672-ea4fce5cf7dc	2021-05-24 23:17:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:17:23.877+03	2021-05-24 23:17:23.886+03	
217659d7-63b8-494f-7607-07521f556c69	2021-05-24 18:58:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:58:53.877+03	2021-05-24 18:58:53.886+03	
a8e8757d-50d5-6438-754d-48687bd12275	2021-05-24 18:59:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:59:13.877+03	2021-05-24 18:59:13.882+03	
41a6d049-08f8-6e7f-f415-72441a78f857	2021-05-24 23:17:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:17:43.877+03	2021-05-24 23:17:43.884+03	
8f74f11f-63f1-5f43-96e0-efcb93dd0dd9	2021-05-24 18:59:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:59:33.877+03	2021-05-24 18:59:33.883+03	
fd5afd7f-c999-6812-9be5-915c707eacaa	2021-05-24 18:59:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:59:53.877+03	2021-05-24 18:59:53.884+03	
ce58c9cf-875e-ae7b-e1b5-32fbcd4bff49	2021-05-24 23:18:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:18:03.877+03	2021-05-24 23:18:03.885+03	
5a85ccbd-6cbe-adc0-d275-4cded193c491	2021-05-24 19:00:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:00:03.877+03	2021-05-24 19:00:03.883+03	
5d431ba0-b531-241a-0744-5c8ddbeb953b	2021-05-24 19:00:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:00:33.877+03	2021-05-24 19:00:33.883+03	
d0391e1f-f873-0e6c-7a4e-10a9ca1dac76	2021-05-24 23:18:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:18:23.877+03	2021-05-24 23:18:23.884+03	
551bcb03-c34d-ad9f-7c5e-3ed05d2aa30a	2021-05-24 19:00:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:00:53.877+03	2021-05-24 19:00:53.885+03	
7b71bff6-80b1-6276-3e69-7daa9d833f7c	2021-05-24 19:01:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:01:13.877+03	2021-05-24 19:01:13.883+03	
3ac76f6d-b9b0-5bc9-3d42-f70f6728795d	2021-05-24 23:18:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:18:43.877+03	2021-05-24 23:18:43.885+03	
3a97b926-7e03-1627-1445-35d1a1e2d8e9	2021-05-24 19:01:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:01:33.877+03	2021-05-24 19:01:33.883+03	
2aa73ad5-edff-0d57-cedf-dbfc82154add	2021-05-24 19:01:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:01:53.877+03	2021-05-24 19:01:53.884+03	
3dfec595-1f71-b2fc-3993-632263105541	2021-05-24 23:19:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:19:03.877+03	2021-05-24 23:19:03.896+03	
3dddf071-9f1c-180a-74df-4d257de6bf8e	2021-05-24 23:19:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:19:23.877+03	2021-05-24 23:19:23.884+03	
dd4fe00e-3b70-abff-e996-8cdb76a9162e	2021-05-24 23:19:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:19:43.877+03	2021-05-24 23:19:43.884+03	
bf0139ae-816e-5d97-f523-3023f4564554	2021-05-24 23:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 23:20:00.877+03	2021-05-24 23:20:00.882+03	ERROR
72b7654c-e3f4-7342-5477-4c8aa634fd25	2021-05-24 23:20:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:20:13.877+03	2021-05-24 23:20:13.884+03	
7f369bdf-8b26-6e68-080f-5e5f5d02f4db	2021-05-24 23:20:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:20:33.877+03	2021-05-24 23:20:34.121+03	
13f5b0d5-9711-723c-9719-ed55bc0e26b5	2021-05-24 23:20:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:20:53.877+03	2021-05-24 23:20:53.883+03	
26734e12-1d73-1037-1131-15c3b39face0	2021-05-24 23:21:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:21:13.877+03	2021-05-24 23:21:13.884+03	
fadf04d2-5264-0fc9-c379-00c11be1b6d2	2021-05-24 23:21:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:21:33.877+03	2021-05-24 23:21:33.884+03	
2b3ce9fa-b66e-06ae-195a-3b09eea08b53	2021-05-24 18:50:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:50:52.877+03	2021-05-24 18:50:52.884+03	
ad2c5341-ae1c-d395-c9f7-57eead05b233	2021-05-24 18:51:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:51:12.877+03	2021-05-24 18:51:12.883+03	
d790c3f6-4022-45ff-bf37-98a742f69df5	2021-05-24 18:51:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:51:52.877+03	2021-05-24 18:51:52.884+03	
bbc5770b-c83e-e305-6c25-5dea4cf2c095	2021-05-24 18:52:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:52:12.877+03	2021-05-24 18:52:12.886+03	
be0c5f38-e683-c32e-235e-8271e89eb883	2021-05-24 18:52:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:52:33.877+03	2021-05-24 18:52:34.191+03	
f56f3880-36cd-56fb-04af-5a9a79c6da9d	2021-05-24 18:52:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:52:53.877+03	2021-05-24 18:52:53.884+03	
bb0ae065-f9fc-3f96-0940-6a291134eb1b	2021-05-24 18:53:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:53:13.877+03	2021-05-24 18:53:13.89+03	
ecd46a79-a67e-9746-572e-c0ab683b85a9	2021-05-24 18:53:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:53:23.877+03	2021-05-24 18:53:23.883+03	
18236b52-a2aa-b7a5-0ffe-f97b618ff8f1	2021-05-24 18:53:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:53:43.877+03	2021-05-24 18:53:44.142+03	
a6822325-3802-7562-68fe-92ac27675b04	2021-05-24 18:54:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:54:03.877+03	2021-05-24 18:54:03.884+03	
383f9d91-17d3-5ecc-ee71-33b1ce5f1dca	2021-05-24 18:54:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:54:23.877+03	2021-05-24 18:54:24.238+03	
4d345e69-bd19-423e-74e8-463571e0e67a	2021-05-24 18:54:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:54:43.877+03	2021-05-24 18:54:44.179+03	
c5bf679c-6582-d564-ca95-5ffc4c02dcf9	2021-05-24 18:55:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:55:03.877+03	2021-05-24 18:55:03.884+03	
708f3bed-cc7c-e68f-d962-db7ca5f0032f	2021-05-24 18:55:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:55:23.877+03	2021-05-24 18:55:23.898+03	
1b0f9b0d-843b-343a-e07a-13c8b6aa51fa	2021-05-24 18:55:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:55:43.877+03	2021-05-24 18:55:43.885+03	
47818de7-0349-5257-cf03-aa4828012a49	2021-05-24 18:56:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:56:03.877+03	2021-05-24 18:56:03.886+03	
4a063dac-f784-c490-6e98-345bf136840c	2021-05-24 18:56:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:56:23.877+03	2021-05-24 18:56:23.905+03	
06f5ea9e-716b-e84c-ae9d-a2c2fb8f6b54	2021-05-24 18:56:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:56:43.877+03	2021-05-24 18:56:43.886+03	
409a0359-7a01-9287-8182-ce0c4ec6b4a9	2021-05-24 18:57:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:57:03.877+03	2021-05-24 18:57:03.885+03	
29d74992-30ac-2338-a9e4-94605345bb42	2021-05-24 18:57:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:57:23.877+03	2021-05-24 18:57:23.883+03	
edb9a9fb-1ef9-8bc3-244e-80ad05307bf5	2021-05-24 18:57:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:57:43.877+03	2021-05-24 18:57:43.884+03	
1c490707-bf43-377d-1ed9-da5c454aca28	2021-05-24 18:58:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:58:03.877+03	2021-05-24 18:58:03.884+03	
f1e44dd5-beb3-374a-e9d9-83edd9535670	2021-05-24 18:58:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:58:23.877+03	2021-05-24 18:58:23.883+03	
3ae2dd86-0456-3004-2bf5-c5ae3e938d27	2021-05-24 18:58:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:58:43.877+03	2021-05-24 18:58:43.884+03	
c6349fef-6182-14e3-c854-c7f0289218b5	2021-05-24 18:59:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:59:03.877+03	2021-05-24 18:59:03.885+03	
4a9a2b92-cb27-a0ac-3ee2-2be2b389212b	2021-05-24 18:59:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:59:23.877+03	2021-05-24 18:59:24.025+03	
902179ce-4075-af6f-57cd-0c9cb2138a0f	2021-05-24 18:59:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 18:59:43.877+03	2021-05-24 18:59:43.885+03	
73f9d9f2-c48d-c91d-338e-c20f21a66bfd	2021-05-24 19:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 19:00:00.877+03	2021-05-24 19:00:00.881+03	ERROR
cd1d9863-88ad-4880-4223-d2e184f0daa7	2021-05-24 19:00:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:00:13.877+03	2021-05-24 19:00:13.883+03	
3f160754-36e8-e157-6abc-25734d39a6a6	2021-05-24 19:00:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:00:23.877+03	2021-05-24 19:00:23.895+03	
a3c410e5-907d-0857-244b-d74d11888094	2021-05-24 19:00:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:00:43.877+03	2021-05-24 19:00:43.883+03	
a0c01621-1ef1-b0b4-6afd-70a2548655a5	2021-05-24 19:01:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:01:03.877+03	2021-05-24 19:01:03.883+03	
24df586d-7bf3-d2a1-d1c2-a7676955905d	2021-05-24 19:01:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:01:23.877+03	2021-05-24 19:01:24.461+03	
49c1bc2a-9a7e-f85b-29db-d6dd45e17275	2021-05-24 19:01:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:01:43.877+03	2021-05-24 19:01:43.885+03	
a351abd3-6da3-2972-bce6-1868b4e9baac	2021-05-24 19:02:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:02:03.878+03	2021-05-24 19:02:03.889+03	
e3f6b298-9ee0-fb99-bf57-090147cc9325	2021-05-24 19:02:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:02:14.877+03	2021-05-24 19:02:14.892+03	
e531876f-52d9-fb73-ffd5-2da10b69a97e	2021-05-24 19:02:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:02:24.877+03	2021-05-24 19:02:24.886+03	
10bf9e90-aac4-c451-b2c9-c341ee2ac91f	2021-05-24 19:02:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:02:34.877+03	2021-05-24 19:02:34.882+03	
68af815a-9b11-7d40-395f-31e69390f254	2021-05-24 19:02:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:02:44.877+03	2021-05-24 19:02:44.885+03	
9c91f8ef-009c-f388-fd47-3ec4ef05183d	2021-05-24 19:02:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:02:54.877+03	2021-05-24 19:02:54.885+03	
46923222-d4ae-1390-c2cc-1c70e719a050	2021-05-24 19:03:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:03:04.877+03	2021-05-24 19:03:04.885+03	
1f9e1ec8-a90e-9cd1-c12f-74b76b6c63d1	2021-05-24 19:03:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:03:14.877+03	2021-05-24 19:03:14.886+03	
d25e64d5-09d6-198b-b630-d045d48430a2	2021-05-24 19:03:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:03:24.877+03	2021-05-24 19:03:25.144+03	
f5dc374b-00c3-5ad8-f7d5-f4114735af29	2021-05-24 19:03:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:03:34.877+03	2021-05-24 19:03:34.884+03	
e69ae5ad-da08-2af1-6349-38186cb58780	2021-05-24 19:03:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:03:44.877+03	2021-05-24 19:03:45.118+03	
0f6d8ea0-e5aa-9f37-057d-786320c18f3d	2021-05-24 19:03:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:03:54.877+03	2021-05-24 19:03:54.883+03	
fd378421-373f-8e94-c2ab-cf3a0b3e39ff	2021-05-24 19:04:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:04:04.877+03	2021-05-24 19:04:04.883+03	
60e0c72c-3ec3-d8bc-7987-81423a101713	2021-05-24 19:04:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:04:14.877+03	2021-05-24 19:04:14.898+03	
84a12bf7-bc89-a02a-34d2-3140e08159f8	2021-05-24 19:04:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:04:24.877+03	2021-05-24 19:04:24.884+03	
7960cd8d-8243-b1d0-b9d9-f9793addb32d	2021-05-24 19:04:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:04:34.877+03	2021-05-24 19:04:34.884+03	
23e20fdd-c345-ca68-daf9-e6c1a3939b6f	2021-05-24 19:04:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:04:44.877+03	2021-05-24 19:04:44.884+03	
3e7e44c1-74cb-8f35-4355-da5b22435ffe	2021-05-24 19:04:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:04:54.877+03	2021-05-24 19:04:54.884+03	
fda0263b-f315-95ed-4fa8-4440923cbe8d	2021-05-24 19:05:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:05:04.877+03	2021-05-24 19:05:04.885+03	
de9b1e09-e961-dd4d-b5a0-0e2632835654	2021-05-24 19:05:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:05:14.877+03	2021-05-24 19:05:14.883+03	
134903d0-568e-1c06-ab20-e3597b4b2a5d	2021-05-24 19:05:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:05:24.877+03	2021-05-24 19:05:24.884+03	
1e7d0041-2d57-85f4-58d0-54a698698cdc	2021-05-24 19:05:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:05:34.877+03	2021-05-24 19:05:34.884+03	
ff31e860-d885-7f19-6dd0-e2362e9fe1e0	2021-05-24 19:05:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:05:44.877+03	2021-05-24 19:05:44.884+03	
453a2c19-4140-a4c2-f28f-5b8a77fc9e3a	2021-05-24 19:05:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:05:54.877+03	2021-05-24 19:05:54.884+03	
1b56eede-94eb-bff3-63a8-a50efbd94f57	2021-05-24 19:06:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:06:04.877+03	2021-05-24 19:06:04.883+03	
e59827de-0c4a-adde-a455-8ce9c0aad7f8	2021-05-24 19:06:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:06:14.877+03	2021-05-24 19:06:15.156+03	
2b9d1702-61ed-6178-0051-e60e088c0d8c	2021-05-24 19:06:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:06:24.877+03	2021-05-24 19:06:24.896+03	
372c7efd-b93c-dcb1-0572-08200993e476	2021-05-24 19:06:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:06:34.877+03	2021-05-24 19:06:35.116+03	
8558442a-f604-f996-35f1-35324f6b1f98	2021-05-24 19:06:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:06:44.877+03	2021-05-24 19:06:44.884+03	
a711e73a-22f7-7556-572c-520efa6fe7bb	2021-05-24 19:06:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:06:54.877+03	2021-05-24 19:06:54.884+03	
277206a9-b071-a4ba-f6ce-6c52a0c23ee2	2021-05-24 19:07:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:07:15.877+03	2021-05-24 19:07:15.883+03	
112db1c5-d569-6feb-37c9-f343c0d1a726	2021-05-24 19:07:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:07:35.877+03	2021-05-24 19:07:35.882+03	
e09b47b0-3f99-225b-d5c4-15ef5755c703	2021-05-24 19:07:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:07:55.877+03	2021-05-24 19:07:56.126+03	
1b692bcb-2060-f3da-a75e-4902244524e5	2021-05-24 19:08:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:08:15.877+03	2021-05-24 19:08:15.883+03	
8b490929-1da5-2cd9-7ef5-a543fc8e149e	2021-05-24 19:08:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:08:35.877+03	2021-05-24 19:08:35.885+03	
f830ad61-0f2a-4231-e9d6-99e5dab13bfd	2021-05-24 19:08:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:08:55.877+03	2021-05-24 19:08:55.883+03	
c0be089b-4afa-64ea-bfda-b47f0666af43	2021-05-24 19:09:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:09:15.877+03	2021-05-24 19:09:15.882+03	
8862c51d-7d45-415f-d3b4-a0c0874b6c13	2021-05-24 19:09:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:09:35.877+03	2021-05-24 19:09:35.883+03	
cd4ea412-a5d5-3dd5-8632-73f140b790b4	2021-05-24 19:09:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:09:55.877+03	2021-05-24 19:09:55.883+03	
7162c205-5b1e-e4e2-e9b2-88deb9ce9e7e	2021-05-24 19:10:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:10:05.877+03	2021-05-24 19:10:05.885+03	
c67a8d3c-c28d-14f1-a68c-b8f23388c4ad	2021-05-24 19:10:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:10:25.877+03	2021-05-24 19:10:25.883+03	
801b5af8-9096-a63f-ae62-804c88399f6d	2021-05-24 19:10:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:10:45.877+03	2021-05-24 19:10:45.884+03	
381e65b0-3e22-8e74-82f7-0858791f7c98	2021-05-24 19:11:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:11:05.877+03	2021-05-24 19:11:05.885+03	
d067a0e4-4357-98c8-0ac9-d8030b6b06cc	2021-05-24 19:11:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:11:25.877+03	2021-05-24 19:11:25.883+03	
55c0eee3-15d7-8689-3dee-2252b9d3c5a1	2021-05-24 19:11:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:11:45.877+03	2021-05-24 19:11:45.884+03	
0288e7e1-d776-5e1c-9271-6c03776d09b7	2021-05-24 19:12:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:12:05.877+03	2021-05-24 19:12:05.884+03	
80bc8d93-f644-d973-8fa3-70a114a00620	2021-05-24 19:12:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:12:25.877+03	2021-05-24 19:12:25.884+03	
b1cf41e9-0692-33d7-2508-7e93b9182ce5	2021-05-24 19:12:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:12:45.877+03	2021-05-24 19:12:45.885+03	
57e50465-0d44-e70f-092c-4df7b4dc0146	2021-05-24 19:13:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:13:05.877+03	2021-05-24 19:13:05.885+03	
fae3e054-69ef-ce65-ba69-1992dc970e6a	2021-05-24 19:13:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:13:25.877+03	2021-05-24 19:13:25.885+03	
a1067138-0bc7-4d5d-04b4-43a250a84fa6	2021-05-24 19:13:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:13:45.877+03	2021-05-24 19:13:45.885+03	
b4fa010b-d142-8a5e-096e-a14344240200	2021-05-24 19:14:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:14:05.877+03	2021-05-24 19:14:05.884+03	
4fa7fce9-b911-9d23-771d-dda777f54a05	2021-05-24 19:14:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:14:25.877+03	2021-05-24 19:14:25.883+03	
0877e013-78ba-5d6a-dbbf-d575cdbd95fb	2021-05-24 19:14:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:14:45.877+03	2021-05-24 19:14:45.883+03	
1041522f-7ed3-3002-037f-e8fce97ef2bd	2021-05-24 19:15:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:15:05.877+03	2021-05-24 19:15:05.883+03	
dd69a195-c683-6720-f96d-7deb8cb7943d	2021-05-24 19:15:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:15:25.877+03	2021-05-24 19:15:25.883+03	
2005b325-2292-b0e1-332f-f414a522db6a	2021-05-24 19:15:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:15:46.877+03	2021-05-24 19:15:46.882+03	
48477ae4-ac5a-2a4a-d735-7d15ac263987	2021-05-24 19:16:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:16:06.877+03	2021-05-24 19:16:06.882+03	
d83e643e-e503-d046-9450-d2890b909652	2021-05-24 19:16:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:16:26.877+03	2021-05-24 19:16:26.883+03	
0191e43b-680e-0fe2-7b41-04e99fdd0660	2021-05-24 19:16:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:16:46.877+03	2021-05-24 19:16:46.885+03	
89a33603-8fb9-fbea-e510-7d522266a233	2021-05-24 19:17:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:17:06.877+03	2021-05-24 19:17:06.883+03	
3a16ae88-bf8d-474f-abc7-47461b808f82	2021-05-24 19:17:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:17:26.877+03	2021-05-24 19:17:26.882+03	
b63b8bb9-b7da-6994-c9a0-4de76769ab71	2021-05-24 19:17:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:17:46.877+03	2021-05-24 19:17:46.883+03	
78454546-98ef-7178-d821-267bc014d9a7	2021-05-24 19:18:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:18:06.877+03	2021-05-24 19:18:06.885+03	
2f6063e7-2423-31f2-e622-6d68fb6c9cd7	2021-05-24 19:18:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:18:26.877+03	2021-05-24 19:18:26.883+03	
88258c4a-a771-5eb2-d91a-0b7f367167ee	2021-05-24 19:18:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:18:46.877+03	2021-05-24 19:18:46.884+03	
919b54bd-38a6-9ab0-68c1-6afc819b739a	2021-05-24 19:19:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:19:06.877+03	2021-05-24 19:19:06.885+03	
39393347-ecbf-bfe5-c26b-4c7ef5f59a94	2021-05-24 19:19:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:19:26.877+03	2021-05-24 19:19:26.883+03	
2caabc79-067c-bcd3-7dec-a88bc22e9326	2021-05-24 19:19:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:19:46.877+03	2021-05-24 19:19:46.886+03	
3a87bf96-0a89-b126-4e07-440a2897f614	2021-05-24 19:19:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:19:56.877+03	2021-05-24 19:19:56.884+03	
0c17cf6b-8660-7f14-c4f1-b29427b60e71	2021-05-24 19:20:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:20:06.877+03	2021-05-24 19:20:06.884+03	
3e83f599-09b9-4f10-d2a6-4441abf025c1	2021-05-24 19:20:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:20:26.877+03	2021-05-24 19:20:26.883+03	
ac51953f-b02f-ea1d-d19f-2a1b9d903d78	2021-05-24 19:20:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:20:46.877+03	2021-05-24 19:20:46.883+03	
d964707a-ec07-748d-59d1-6d83319ed09a	2021-05-24 19:21:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:21:06.877+03	2021-05-24 19:21:06.882+03	
510da4ea-52a4-025a-3ca2-a3d7cee37487	2021-05-24 19:21:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:21:26.877+03	2021-05-24 19:21:26.882+03	
efddc381-6c45-48ac-f9dd-86468090dd8d	2021-05-24 19:21:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:21:46.877+03	2021-05-24 19:21:46.884+03	
5496ec73-0a88-1b8c-735d-f80fd68b55ca	2021-05-24 19:22:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:22:06.877+03	2021-05-24 19:22:06.885+03	
66e729cb-85d4-8a2e-6315-4cac1ff26a03	2021-05-24 19:22:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:22:26.877+03	2021-05-24 19:22:26.885+03	
a080a474-1895-7de6-10ee-e2e49f749c88	2021-05-24 19:22:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:22:46.877+03	2021-05-24 19:22:46.884+03	
9261a4b0-909c-b0b5-bcb7-5f4a218fe98f	2021-05-24 19:23:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:23:06.877+03	2021-05-24 19:23:06.885+03	
127dd0c2-4487-88f7-bcc5-853b580ab5f8	2021-05-24 19:23:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:23:26.877+03	2021-05-24 19:23:26.884+03	
844d8033-9b51-c9e1-97e5-bc3ef7a28723	2021-05-24 19:23:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:23:46.877+03	2021-05-24 19:23:46.883+03	
0102933a-7e86-814f-a15d-8a1459abb159	2021-05-24 19:24:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:24:06.877+03	2021-05-24 19:24:06.883+03	
566e0a4d-e643-a08f-0fd9-5ad983337f98	2021-05-24 19:24:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:24:26.877+03	2021-05-24 19:24:26.886+03	
7f825243-b086-5695-b230-b811cd506954	2021-05-24 19:24:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:24:46.877+03	2021-05-24 19:24:46.884+03	
3a4d6fcc-8a84-7cb3-a333-068b939bd62c	2021-05-24 19:25:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:25:06.877+03	2021-05-24 19:25:06.885+03	
0ce44de0-24e4-6e02-9c01-a9901d746e27	2021-05-24 19:25:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:25:26.877+03	2021-05-24 19:25:26.884+03	
c9d9dfc9-7273-91d7-3adf-6df33bb16302	2021-05-24 19:25:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:25:46.877+03	2021-05-24 19:25:46.883+03	
dd677d8d-6584-a159-ce77-68e53fe3d4af	2021-05-24 19:26:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:26:07.877+03	2021-05-24 19:26:07.902+03	
46b5e01e-2206-61e6-c894-b1e58e54223c	2021-05-24 19:26:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:26:27.877+03	2021-05-24 19:26:27.883+03	
48cf908c-40f5-1c4c-01c8-d9e1a3ffd97d	2021-05-24 19:26:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:26:47.877+03	2021-05-24 19:26:47.885+03	
5fce852d-c40e-d3c4-c990-6cf0b45b8eb6	2021-05-24 19:27:07.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:27:07.878+03	2021-05-24 19:27:07.885+03	
2dc515b4-f171-c557-aa17-2db6fac7e47b	2021-05-24 19:07:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:07:05.877+03	2021-05-24 19:07:05.886+03	
36e01581-71af-5517-d7cf-884775c7098e	2021-05-24 19:07:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:07:25.877+03	2021-05-24 19:07:25.882+03	
b5c53d54-a7ef-62b2-9904-a8edb5290e80	2021-05-24 19:07:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:07:45.877+03	2021-05-24 19:07:45.884+03	
e690241d-3213-44d8-8db4-5fc90aa90cc0	2021-05-24 19:08:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:08:05.877+03	2021-05-24 19:08:05.885+03	
741ccd10-e1e6-68f8-f2a0-b407209e1a25	2021-05-24 19:08:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:08:25.877+03	2021-05-24 19:08:26.199+03	
ac402273-b90a-16f0-7a81-702c840779ea	2021-05-24 19:08:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:08:45.877+03	2021-05-24 19:08:45.883+03	
009d87c7-44d9-ad19-1972-89cbbe07e978	2021-05-24 19:09:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:09:05.877+03	2021-05-24 19:09:05.886+03	
63a4b68b-7bb1-0c8f-4648-b769453337cd	2021-05-24 19:09:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:09:25.877+03	2021-05-24 19:09:25.883+03	
ee298f91-3b11-80d0-dd15-3382e026fe4c	2021-05-24 19:09:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:09:45.877+03	2021-05-24 19:09:45.884+03	
9df181d3-9c64-8447-00ad-9f15d92cdadc	2021-05-24 19:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 19:10:00.877+03	2021-05-24 19:10:00.882+03	ERROR
e2903c38-d373-09e5-45d9-00684496742e	2021-05-24 19:10:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:10:15.877+03	2021-05-24 19:10:15.885+03	
ebaa9dda-8a19-6d86-2a14-b1c89c9a0b4a	2021-05-24 19:10:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:10:35.877+03	2021-05-24 19:10:35.883+03	
f0651c52-a957-bbb5-0d7e-f79aabf93049	2021-05-24 19:10:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:10:55.877+03	2021-05-24 19:10:55.882+03	
a3b5a735-8ca2-80c6-c63a-a2c9b8c1e9af	2021-05-24 19:11:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:11:15.877+03	2021-05-24 19:11:15.883+03	
ab298c95-f898-4e9f-2ad0-0c2d11a348f2	2021-05-24 19:11:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:11:35.877+03	2021-05-24 19:11:35.884+03	
807040ff-1746-ec9d-0c0b-2bd9a68ac966	2021-05-24 19:11:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:11:55.877+03	2021-05-24 19:11:55.885+03	
e90737ba-9a90-ddef-5647-c9fea05d7a1f	2021-05-24 19:12:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:12:15.877+03	2021-05-24 19:12:15.882+03	
3e35193d-3203-71a0-da24-cb96f98d6cff	2021-05-24 19:12:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:12:35.877+03	2021-05-24 19:12:35.884+03	
aef199c8-b653-b3ef-0ec2-44bea60641a7	2021-05-24 19:12:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:12:55.877+03	2021-05-24 19:12:55.884+03	
6d4aba77-4ec8-72af-947d-868a422fdafa	2021-05-24 19:13:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:13:15.877+03	2021-05-24 19:13:15.886+03	
fc22d945-be4b-5f64-ff56-0b4213f5d6e8	2021-05-24 19:13:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:13:35.877+03	2021-05-24 19:13:35.882+03	
2b1b6f85-beea-467f-f0b1-960d587bf3e0	2021-05-24 19:13:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:13:55.877+03	2021-05-24 19:13:55.883+03	
86f8ad95-e4e8-333f-1b57-442b5c0f5599	2021-05-24 19:14:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:14:15.877+03	2021-05-24 19:14:15.883+03	
39b16dad-7d6e-a513-8052-e12bd79fad8f	2021-05-24 19:14:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:14:35.877+03	2021-05-24 19:14:35.883+03	
5349636b-e5ea-8766-48bf-cfa66fd4e5b5	2021-05-24 19:14:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:14:55.877+03	2021-05-24 19:14:55.883+03	
4aec9a4d-c052-26d9-d674-75dabaf417d6	2021-05-24 19:15:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:15:15.877+03	2021-05-24 19:15:15.885+03	
23228a25-93f5-06c3-e800-ffa57e6e0caa	2021-05-24 19:15:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:15:36.877+03	2021-05-24 19:15:36.883+03	
e8a0ed95-3c12-f936-9b9c-24b8ac6533ae	2021-05-24 19:15:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:15:56.877+03	2021-05-24 19:15:56.885+03	
19cebccf-6b58-2b1a-2f78-3a1c87b0b7cc	2021-05-24 19:16:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:16:16.877+03	2021-05-24 19:16:16.884+03	
db972dc3-8d77-e83c-a793-16ced79dc9f5	2021-05-24 19:16:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:16:36.877+03	2021-05-24 19:16:36.882+03	
2942ca0b-cc72-17b6-f52f-92cd8401fa8a	2021-05-24 19:16:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:16:56.877+03	2021-05-24 19:16:56.883+03	
c3d28fdf-8102-328b-0db9-04994bed380e	2021-05-24 19:17:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:17:16.877+03	2021-05-24 19:17:16.885+03	
2e5b9022-ad35-0fb5-1da6-189fe83d509f	2021-05-24 19:17:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:17:36.877+03	2021-05-24 19:17:36.882+03	
49d71e26-fc5c-4781-5fe6-1af90364b7ee	2021-05-24 19:17:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:17:56.877+03	2021-05-24 19:17:56.885+03	
e617e993-8516-1514-41ee-2f8d9e4d7416	2021-05-24 19:18:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:18:16.877+03	2021-05-24 19:18:16.883+03	
47305080-7b0f-1fcb-fcf4-344e4978421b	2021-05-24 19:18:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:18:36.877+03	2021-05-24 19:18:36.883+03	
d8076b69-a081-8441-a685-aec04fcb4b0c	2021-05-24 19:18:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:18:56.877+03	2021-05-24 19:18:56.883+03	
4ace7d66-397f-1025-1aab-8c162482dff8	2021-05-24 19:19:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:19:16.877+03	2021-05-24 19:19:16.883+03	
c1a88e86-6cc3-e8a4-cd50-2fd49b9d086a	2021-05-24 19:19:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:19:36.877+03	2021-05-24 19:19:36.882+03	
b361dbec-7f02-78cd-fd05-c668c26eaf57	2021-05-24 19:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 19:20:00.877+03	2021-05-24 19:20:00.882+03	ERROR
fe4c154d-c0ed-aeef-6c78-443cfb17136a	2021-05-24 19:20:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:20:16.877+03	2021-05-24 19:20:16.883+03	
6b390387-56cc-ea58-0d04-63b5f93f2326	2021-05-24 19:20:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:20:36.877+03	2021-05-24 19:20:37.14+03	
ded8322d-07f9-2dc5-6b1e-40d2c486cba1	2021-05-24 19:20:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:20:56.877+03	2021-05-24 19:20:56.882+03	
64972e49-0ac3-b2d2-2eb3-cd429c1518ad	2021-05-24 19:21:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:21:16.877+03	2021-05-24 19:21:16.884+03	
c64751a7-4d0b-c20f-2b17-e4bf365effdc	2021-05-24 19:21:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:21:36.877+03	2021-05-24 19:21:36.883+03	
0bcefbac-2757-8822-de4d-8de1f80183b4	2021-05-24 19:21:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:21:56.877+03	2021-05-24 19:21:56.883+03	
4bc73d2f-68c1-0409-2959-d87c20c4f3b5	2021-05-24 19:22:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:22:16.877+03	2021-05-24 19:22:16.883+03	
432a6084-3761-7749-aea0-d002cfad1d7f	2021-05-24 19:22:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:22:36.877+03	2021-05-24 19:22:36.883+03	
4d972593-7a2f-0f25-d0aa-1e7c3ec4186e	2021-05-24 19:22:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:22:56.877+03	2021-05-24 19:22:56.883+03	
1e09eeb4-4f8d-42ee-66e5-be518794d911	2021-05-24 19:23:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:23:16.877+03	2021-05-24 19:23:16.883+03	
e253fcdd-1fe7-fa5a-79d0-c97fbdb2ed9c	2021-05-24 19:23:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:23:36.877+03	2021-05-24 19:23:36.883+03	
50cf0c96-9b39-42f0-6096-ec28a85f1fc5	2021-05-24 19:23:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:23:56.877+03	2021-05-24 19:23:56.886+03	
cf903a2c-438c-d108-2a47-720cac1f7848	2021-05-24 19:24:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:24:16.877+03	2021-05-24 19:24:17.004+03	
0942a7dd-008f-915e-6353-c18b21f3f010	2021-05-24 19:24:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:24:36.877+03	2021-05-24 19:24:36.884+03	
d79c3b83-5945-edc8-e569-5c795f6f9548	2021-05-24 19:24:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:24:56.877+03	2021-05-24 19:24:57.184+03	
6bbc219e-3752-7607-673c-0ef4ca720e9a	2021-05-24 19:25:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:25:16.877+03	2021-05-24 19:25:16.886+03	
ecb5ca71-6d33-a100-bbe4-23c1de242a92	2021-05-24 19:25:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:25:36.877+03	2021-05-24 19:25:36.883+03	
3f6f323e-e093-1e87-d257-e77277131e7f	2021-05-24 19:25:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:25:57.877+03	2021-05-24 19:25:58.24+03	
8d2317df-98bb-d54a-17f5-56e9fe2bf6dd	2021-05-24 19:26:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:26:17.877+03	2021-05-24 19:26:17.882+03	
943d2b74-3da8-653b-f90e-82dacbc148dd	2021-05-24 19:26:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:26:37.877+03	2021-05-24 19:26:37.885+03	
f2b58bd6-0337-066b-0b28-edd8cb46a72a	2021-05-24 19:26:57.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:26:57.877+03	2021-05-24 19:26:57.885+03	
5ec27c45-5b16-d649-b062-c39824602940	2021-05-24 19:27:17.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:27:17.878+03	2021-05-24 19:27:17.884+03	
9ddc3391-bcf2-74ed-9a78-136afaa7c268	2021-05-24 19:27:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:27:38.877+03	2021-05-24 19:27:38.883+03	
2b5690f0-8917-67da-1c86-f6097364b3c6	2021-05-24 19:27:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:27:28.877+03	2021-05-24 19:27:28.882+03	
a83e82aa-e122-d8a3-3584-dd00b206fe9c	2021-05-24 19:27:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:27:48.877+03	2021-05-24 19:27:48.885+03	
f015a6e1-c6eb-3b9c-8cb3-8eec0125b62c	2021-05-24 19:28:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:28:08.877+03	2021-05-24 19:28:08.884+03	
e2e56086-5247-7338-89fc-1c963fb9c562	2021-05-24 19:28:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:28:28.877+03	2021-05-24 19:28:28.884+03	
4f14b25d-ddb7-c0ff-c162-fa14ccc1905c	2021-05-24 19:28:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:28:48.877+03	2021-05-24 19:28:48.883+03	
c594d357-6008-61c0-725c-8f984ba8d384	2021-05-24 19:29:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:29:08.877+03	2021-05-24 19:29:08.885+03	
262130c4-2240-97b2-329a-febbe04d94b0	2021-05-24 19:29:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:29:28.877+03	2021-05-24 19:29:28.885+03	
c0add9a0-b903-97b0-87db-cdc402e4f48a	2021-05-24 19:29:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:29:48.877+03	2021-05-24 19:29:48.883+03	
048705e3-a42d-628f-2a4e-4cb76586cd8d	2021-05-24 19:30:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 19:30:00.877+03	2021-05-24 19:30:00.883+03	ERROR
6a79e78a-32c4-6173-f601-ad79eb0cdfe1	2021-05-24 19:30:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:30:18.877+03	2021-05-24 19:30:18.883+03	
8a8d28c0-be4b-5c3f-57f1-5dfc7902ebcb	2021-05-24 19:30:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:30:38.877+03	2021-05-24 19:30:38.884+03	
cae25018-4e90-39d4-cee5-c956bbbf4d01	2021-05-24 19:30:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:30:58.877+03	2021-05-24 19:30:58.884+03	
2bf75c1e-4748-6c5a-586f-7c9cc21d8c31	2021-05-24 19:31:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:31:18.877+03	2021-05-24 19:31:18.884+03	
39e6daa7-71e8-4149-1d30-d8be35690af9	2021-05-24 19:31:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:31:38.877+03	2021-05-24 19:31:38.883+03	
1db4f6ff-d736-e382-c61f-c5279dfd2fe5	2021-05-24 19:31:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:31:58.877+03	2021-05-24 19:31:58.882+03	
8cbfa230-1a08-04c9-b89c-e2c8755736da	2021-05-24 19:32:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:32:18.877+03	2021-05-24 19:32:18.885+03	
69f25ca9-aeca-f023-744a-bf76a4a76623	2021-05-24 19:32:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:32:38.877+03	2021-05-24 19:32:38.882+03	
56a0fcfc-db7c-7249-df3e-82c44553afbc	2021-05-24 19:32:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:32:58.877+03	2021-05-24 19:32:58.884+03	
ef1d7fab-2fe8-bcba-4a18-a289bc2a7c02	2021-05-24 19:33:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:33:18.877+03	2021-05-24 19:33:18.884+03	
80f4779d-709c-065c-4434-dde208868f01	2021-05-24 19:33:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:33:38.877+03	2021-05-24 19:33:38.882+03	
d6dc5376-fce2-6db5-b16e-e425fc7f1848	2021-05-24 19:33:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:33:58.877+03	2021-05-24 19:33:58.882+03	
3b2f0faa-64c0-53a7-40f9-3cf5e242bc7c	2021-05-24 19:34:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:34:18.877+03	2021-05-24 19:34:18.886+03	
09d321ed-ed83-b574-e703-cf336d2d29ee	2021-05-24 19:34:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:34:39.877+03	2021-05-24 19:34:39.885+03	
b6d2b77b-eac8-cda5-eccc-540ba4faaf4f	2021-05-24 19:34:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:34:59.877+03	2021-05-24 19:34:59.884+03	
6ec5bb50-e313-5f32-c4f4-8a2de94be691	2021-05-24 19:35:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:35:19.877+03	2021-05-24 19:35:19.883+03	
d114bd22-2f88-31da-1f29-45a921533a4b	2021-05-24 19:35:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:35:39.877+03	2021-05-24 19:35:39.885+03	
9f3e7c85-4d10-5344-d5a7-b44699d894ef	2021-05-24 19:35:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:35:59.877+03	2021-05-24 19:35:59.884+03	
9e2bbe5b-17c6-8c4d-9812-0f3f6ba9357c	2021-05-24 19:36:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:36:19.877+03	2021-05-24 19:36:19.885+03	
40b7ae69-1cdb-d535-a825-51e9262dabb2	2021-05-24 19:36:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:36:41.877+03	2021-05-24 19:36:42.206+03	
19275da4-dc94-1f7a-9574-84e1af8788b6	2021-05-24 19:37:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:37:01.877+03	2021-05-24 19:37:02.167+03	
3f01c1c3-40a3-48e3-c792-b6b191698758	2021-05-24 19:37:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:37:21.877+03	2021-05-24 19:37:21.884+03	
ef636213-9cee-9494-06cb-94f26d0db6f1	2021-05-24 19:37:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:37:41.877+03	2021-05-24 19:37:41.884+03	
8ca0d110-becf-ae8d-02af-596ff4fa138c	2021-05-24 19:38:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:38:01.877+03	2021-05-24 19:38:01.884+03	
f254ad28-2faf-1d99-693c-b50dd04dc7b7	2021-05-24 19:38:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:38:21.877+03	2021-05-24 19:38:21.883+03	
53668be9-28c3-8841-1fe6-b61dc6b541a6	2021-05-24 19:38:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:38:41.877+03	2021-05-24 19:38:41.883+03	
df76d9aa-ecf4-da78-92ea-1b6f2bc9f672	2021-05-24 19:39:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:39:01.877+03	2021-05-24 19:39:01.884+03	
28b9012b-6f0b-8423-d2de-6170097962c7	2021-05-24 19:39:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:39:21.877+03	2021-05-24 19:39:21.883+03	
8e8000fa-ca0c-a155-28e7-477c5433c150	2021-05-24 19:39:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:39:41.877+03	2021-05-24 19:39:41.883+03	
4f51bfd4-1f91-b80b-8835-ba513b915ebb	2021-05-24 19:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 19:40:00.877+03	2021-05-24 19:40:00.882+03	ERROR
622d6322-526d-dbbf-160b-14bb92bfd53a	2021-05-24 19:40:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:40:11.877+03	2021-05-24 19:40:11.882+03	
dfaf769f-8fa7-770f-cc54-25664c90ccdd	2021-05-24 19:40:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:40:31.877+03	2021-05-24 19:40:31.882+03	
b7de766a-76e2-24df-cc0c-afa95080d445	2021-05-24 19:40:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:40:51.877+03	2021-05-24 19:40:51.883+03	
107218b5-72d9-0cad-fbef-070dacfec2c1	2021-05-24 19:41:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:41:11.877+03	2021-05-24 19:41:11.883+03	
6199c134-3d1d-ac8c-f5b3-fdb59954c4f2	2021-05-24 19:41:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:41:31.877+03	2021-05-24 19:41:31.882+03	
3592881d-ebc5-28cb-19c7-67c14e971513	2021-05-24 19:41:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:41:51.877+03	2021-05-24 19:41:51.882+03	
0cbe7886-79ba-69c9-6965-55f0e5c84b92	2021-05-24 19:42:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:42:11.877+03	2021-05-24 19:42:11.883+03	
4c6c9813-719c-6619-e3e6-f604c1996553	2021-05-24 19:42:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:42:31.877+03	2021-05-24 19:42:31.884+03	
7aa5d202-f339-f908-e868-3545a5ae6747	2021-05-24 19:42:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:42:51.877+03	2021-05-24 19:42:51.885+03	
5ec6abd2-84ad-d3b7-6e21-1645c7fdb13c	2021-05-24 19:43:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:43:11.877+03	2021-05-24 19:43:11.882+03	
4bbe7794-fa5c-e9dd-735c-175cb360382f	2021-05-24 19:43:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:43:32.877+03	2021-05-24 19:43:32.884+03	
23b3a927-1afb-1066-7a00-cf3c1c5c79ea	2021-05-24 19:43:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:43:52.878+03	2021-05-24 19:43:52.885+03	
46a29e52-b59e-49a7-6359-f3d4756c99d6	2021-05-24 19:44:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:44:13.877+03	2021-05-24 19:44:13.885+03	
096f0ab4-f335-1f10-71a5-d7f9d6e6e21e	2021-05-24 19:44:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:44:33.877+03	2021-05-24 19:44:33.882+03	
7d497c8f-8f53-1c35-e6f7-21b4bc02ab00	2021-05-24 19:44:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:44:53.877+03	2021-05-24 19:44:53.883+03	
7d7eb045-4523-02f2-28e2-7fe11da90cbd	2021-05-24 19:45:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:45:13.877+03	2021-05-24 19:45:14.062+03	
41e5f79f-e0ef-4531-ce80-ee6d5ed8ccd2	2021-05-24 19:45:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:45:33.877+03	2021-05-24 19:45:33.885+03	
a6f8bb09-9e3e-b843-42cb-7475f9c368af	2021-05-24 19:45:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:45:53.877+03	2021-05-24 19:45:53.884+03	
be8f7b34-932f-a00e-662e-2c6063c76598	2021-05-24 19:46:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:46:13.877+03	2021-05-24 19:46:13.884+03	
662a17c3-c035-f9c1-2f55-c0b3a5b262e7	2021-05-24 19:46:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:46:33.877+03	2021-05-24 19:46:33.885+03	
827ffa7f-e6c4-f3fb-4108-ac34bbed31f1	2021-05-24 19:46:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:46:54.876+03	2021-05-24 19:46:54.882+03	
2f641ac1-2d9c-d564-9100-7351a9e3d334	2021-05-24 19:47:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:47:14.877+03	2021-05-24 19:47:14.884+03	
07b0da1b-e91c-7a57-adb4-10f6ba9cd1cb	2021-05-24 19:47:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:47:34.877+03	2021-05-24 19:47:34.884+03	
a22f309a-28ae-7096-5bc5-d2f42c51aaca	2021-05-24 19:47:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:47:54.877+03	2021-05-24 19:47:54.884+03	
ec758bee-3abd-f4d0-23e3-ed0e40cd6064	2021-05-24 19:27:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:27:58.877+03	2021-05-24 19:27:58.885+03	
a4dfed95-5b0b-b1f6-fc4a-6bc2751f3407	2021-05-24 19:28:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:28:18.877+03	2021-05-24 19:28:18.883+03	
dec2661a-40ca-07d1-e1c8-5c93ad9e7174	2021-05-24 19:28:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:28:38.877+03	2021-05-24 19:28:38.883+03	
9903341a-d8a6-5e65-9c72-87090202bb50	2021-05-24 19:28:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:28:58.877+03	2021-05-24 19:28:58.883+03	
f21eb510-3da5-4aa8-64a2-c293d1b9eeb9	2021-05-24 19:29:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:29:18.877+03	2021-05-24 19:29:18.883+03	
57ca34df-0174-f9ac-fb2d-780df4a1bf09	2021-05-24 19:29:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:29:38.877+03	2021-05-24 19:29:38.893+03	
a437ba4d-b5e6-023d-f25d-9832b4b0572b	2021-05-24 19:29:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:29:58.877+03	2021-05-24 19:29:58.882+03	
747f6997-7a4d-fd8c-691b-07f71d0a67f1	2021-05-24 19:30:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:30:08.877+03	2021-05-24 19:30:08.885+03	
51cac438-3fe6-2644-e0cf-cf0b93ea1fd4	2021-05-24 19:30:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:30:28.877+03	2021-05-24 19:30:28.883+03	
84168b79-1667-ee91-76e0-e1e68e1ebc3e	2021-05-24 19:30:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:30:48.877+03	2021-05-24 19:30:48.883+03	
1ecb5ef4-437a-5791-34fe-f20425871807	2021-05-24 19:31:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:31:08.877+03	2021-05-24 19:31:09.198+03	
6bf4cc0f-ac22-aff1-7fb0-188c0650c211	2021-05-24 19:31:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:31:28.877+03	2021-05-24 19:31:28.885+03	
b4b6b344-c878-37f3-58bb-61cd0b75d01a	2021-05-24 19:31:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:31:48.877+03	2021-05-24 19:31:48.885+03	
6b39fcec-356f-fd0d-8416-b2b8b1bf5f7f	2021-05-24 19:32:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:32:08.877+03	2021-05-24 19:32:08.885+03	
26a5268a-9d6d-322d-0e6b-ee15c419b020	2021-05-24 19:32:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:32:28.877+03	2021-05-24 19:32:28.883+03	
0930a4c4-8ff2-d05e-13da-e024f234dd40	2021-05-24 19:32:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:32:48.877+03	2021-05-24 19:32:48.884+03	
7f7ae112-4138-6f0f-e50c-1603b433ef4c	2021-05-24 19:33:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:33:08.877+03	2021-05-24 19:33:08.885+03	
2ae47b00-a9d8-b538-1c90-e2261c8439b8	2021-05-24 19:33:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:33:28.877+03	2021-05-24 19:33:28.884+03	
6eba28af-f041-2611-af31-dfbc32d10ede	2021-05-24 19:33:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:33:48.877+03	2021-05-24 19:33:48.884+03	
876595bf-dfad-4f1f-464a-21843afb1e55	2021-05-24 19:34:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:34:08.877+03	2021-05-24 19:34:08.883+03	
8b4c7126-2118-6451-9895-d39a845570a5	2021-05-24 19:34:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:34:29.877+03	2021-05-24 19:34:29.883+03	
748923eb-b614-f90a-2a22-c09e9e9215bf	2021-05-24 19:34:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:34:49.877+03	2021-05-24 19:34:49.889+03	
028a5a78-cdfb-372b-0dec-0a9de9a8fa48	2021-05-24 19:35:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:35:09.877+03	2021-05-24 19:35:09.891+03	
06f2407f-fc18-b2bc-a81b-9a0325a50a19	2021-05-24 19:35:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:35:29.877+03	2021-05-24 19:35:29.883+03	
0328623f-d058-b578-7b7a-2ac5f226d3ae	2021-05-24 19:35:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:35:49.877+03	2021-05-24 19:35:49.883+03	
54e6a134-c65a-02f3-6e62-194437734c62	2021-05-24 19:36:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:36:09.877+03	2021-05-24 19:36:09.883+03	
5790a0be-c302-66f8-a772-98876010f29f	2021-05-24 19:36:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:36:30.877+03	2021-05-24 19:36:30.883+03	
fe39afbe-50e2-de7c-6e0d-6dced93d8404	2021-05-24 19:36:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:36:51.877+03	2021-05-24 19:36:51.883+03	
bbd50342-ccac-d183-7546-2a653b1f3ee5	2021-05-24 19:37:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:37:11.877+03	2021-05-24 19:37:11.884+03	
0f7e08c3-7568-e920-5c70-4ddd3e59ef2c	2021-05-24 19:37:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:37:31.877+03	2021-05-24 19:37:31.883+03	
04df9f57-d1aa-0f66-83b1-c6a2e3b1b14f	2021-05-24 19:37:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:37:51.877+03	2021-05-24 19:37:51.884+03	
20d6b573-a704-2c17-3816-de082836f9db	2021-05-24 19:38:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:38:11.877+03	2021-05-24 19:38:11.883+03	
d272fe00-f705-28ec-9421-18936314b05b	2021-05-24 19:38:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:38:31.877+03	2021-05-24 19:38:31.885+03	
3a156c95-1b34-a8d1-58b9-a062f645b8e4	2021-05-24 19:38:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:38:51.877+03	2021-05-24 19:38:51.884+03	
420e528d-d3fc-4804-cad3-9988f34224f5	2021-05-24 19:39:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:39:11.877+03	2021-05-24 19:39:11.898+03	
872c8ca3-036a-e202-a575-cadcf069be48	2021-05-24 19:39:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:39:31.877+03	2021-05-24 19:39:31.883+03	
1825bf8d-81cd-563d-82ac-8ef3499fb040	2021-05-24 19:39:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:39:51.877+03	2021-05-24 19:39:51.884+03	
0774b6d5-5162-9d6f-6f83-07e7c79a5c2e	2021-05-24 19:40:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:40:01.877+03	2021-05-24 19:40:01.892+03	
b67ca1b9-8f8e-df0f-3a6b-5a8b9217fa5a	2021-05-24 19:40:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:40:21.877+03	2021-05-24 19:40:21.885+03	
a8abc343-f1b4-67a3-3a3c-767c97ae2a30	2021-05-24 19:40:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:40:41.877+03	2021-05-24 19:40:41.884+03	
82ce6b61-b45a-536f-f49c-6e04478d0bd9	2021-05-24 19:41:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:41:01.877+03	2021-05-24 19:41:01.883+03	
8de42d4d-09c7-af10-372b-5192b08f95d1	2021-05-24 19:41:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:41:21.877+03	2021-05-24 19:41:21.883+03	
2fdde873-4090-a2f6-b332-1285c2df8c54	2021-05-24 19:41:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:41:41.877+03	2021-05-24 19:41:41.885+03	
78350495-9422-0f9d-679a-f28c5a7867ca	2021-05-24 19:42:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:42:01.877+03	2021-05-24 19:42:01.885+03	
41d09b31-9f7e-387b-6632-ab0c6e7110f5	2021-05-24 19:42:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:42:21.877+03	2021-05-24 19:42:21.883+03	
a36be7cc-97f0-7458-4b4b-b945d017d418	2021-05-24 19:42:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:42:41.877+03	2021-05-24 19:42:41.884+03	
7258bdfb-35e6-8263-5961-e7d625ca64e1	2021-05-24 19:43:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:43:01.877+03	2021-05-24 19:43:01.883+03	
137784ff-8526-4653-a30a-a3527785ce94	2021-05-24 19:43:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:43:21.877+03	2021-05-24 19:43:21.883+03	
91fdc9b9-f626-dc3e-0c06-0e44355328dc	2021-05-24 19:43:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:43:42.877+03	2021-05-24 19:43:42.883+03	
d077ef2f-a78e-c21b-f1c4-65ac42e6a1eb	2021-05-24 19:44:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:44:03.877+03	2021-05-24 19:44:03.884+03	
d8956e7a-d65e-9b3a-06a1-2572e765f01f	2021-05-24 19:44:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:44:23.877+03	2021-05-24 19:44:23.883+03	
e7409654-e424-2ec4-0542-2073de470885	2021-05-24 19:44:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:44:43.877+03	2021-05-24 19:44:43.883+03	
afd16944-6f39-3e7e-d6aa-46fdcc164f4d	2021-05-24 19:45:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:45:03.877+03	2021-05-24 19:45:03.882+03	
5994d858-7654-cc01-0107-c4c16a1cacc8	2021-05-24 19:45:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:45:23.877+03	2021-05-24 19:45:24.109+03	
938b5139-b98d-084c-7d59-23b6cddcae8f	2021-05-24 19:45:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:45:43.877+03	2021-05-24 19:45:43.882+03	
b1add710-9433-4e8e-6b39-89778cd44ddc	2021-05-24 19:46:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:46:03.877+03	2021-05-24 19:46:03.882+03	
484ddefc-b12e-f2e6-5f21-8fd51673ad08	2021-05-24 19:46:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:46:23.877+03	2021-05-24 19:46:23.884+03	
76f4817c-f6a4-db2a-5332-b3c415ea8dc3	2021-05-24 19:46:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:46:43.877+03	2021-05-24 19:46:43.883+03	
132896f4-7cc9-2029-6c7f-65fa321ae1dc	2021-05-24 19:47:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:47:04.877+03	2021-05-24 19:47:04.884+03	
8e8177b5-7862-7585-b177-905929018ec2	2021-05-24 19:47:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:47:24.877+03	2021-05-24 19:47:24.885+03	
fe91d457-7c9b-ba3a-f7bb-8dd511d46417	2021-05-24 19:47:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:47:44.877+03	2021-05-24 19:47:44.883+03	
fa5423ce-cb88-ab45-22d8-3270abfb2882	2021-05-24 19:48:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:48:05.877+03	2021-05-24 19:48:05.895+03	
d345a191-9ceb-8c01-f851-677612619fb6	2021-05-24 19:48:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:48:25.877+03	2021-05-24 19:48:25.883+03	
5b8ea7b5-f978-a7f3-6264-22ebc8145b64	2021-05-24 19:48:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:48:15.877+03	2021-05-24 19:48:16.031+03	
c5d9eca4-90a2-10d5-fdb5-7bbfd6365d86	2021-05-24 19:48:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:48:35.877+03	2021-05-24 19:48:35.885+03	
c4734831-28a5-4d48-a187-72d1cd36c3aa	2021-05-24 19:48:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:48:55.877+03	2021-05-24 19:48:55.884+03	
8bf5772f-9bc0-f9f7-c83a-65de24130ea5	2021-05-24 19:49:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:49:16.877+03	2021-05-24 19:49:16.885+03	
40260f07-2ede-75ed-7633-e008a19f6401	2021-05-24 19:49:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:49:36.877+03	2021-05-24 19:49:36.883+03	
97f574cf-bf76-3c33-7ea4-e779730b3ed3	2021-05-24 19:49:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:49:56.877+03	2021-05-24 19:49:56.883+03	
40852450-d995-dd90-3def-bcedb926653b	2021-05-24 19:50:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:50:06.877+03	2021-05-24 19:50:07.122+03	
b6c67c7e-782b-6ea2-fe3b-742c969e85bb	2021-05-24 19:50:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:50:26.877+03	2021-05-24 19:50:26.882+03	
89d0ff4c-e6a6-9a98-e30d-0b38532975f7	2021-05-24 19:50:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:50:46.877+03	2021-05-24 19:50:46.884+03	
a70426ce-9543-21c8-0deb-4e0630d8ebc4	2021-05-24 19:51:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:51:06.877+03	2021-05-24 19:51:06.884+03	
c583c7e5-cc60-faa8-7ef4-3d97320cd70f	2021-05-24 19:51:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:51:26.877+03	2021-05-24 19:51:26.882+03	
b8583332-9993-6903-4dd7-a2c5ff396002	2021-05-24 19:51:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:51:46.877+03	2021-05-24 19:51:46.884+03	
b42cc9b9-1a11-aefc-e181-2dc283e37114	2021-05-24 19:52:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:52:06.877+03	2021-05-24 19:52:06.883+03	
1bb4cb8a-8e04-f762-9380-170ee7dce1ff	2021-05-24 19:52:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:52:26.877+03	2021-05-24 19:52:26.886+03	
317398a7-c5a2-7079-ddd4-563a898660ce	2021-05-24 19:52:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:52:46.877+03	2021-05-24 19:52:46.883+03	
10f076e0-42f2-8c1c-4cee-e364e76df12e	2021-05-24 19:53:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:53:06.877+03	2021-05-24 19:53:06.884+03	
ce4b3917-5f46-6329-860f-6c7deb67103e	2021-05-24 19:53:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:53:26.877+03	2021-05-24 19:53:27.213+03	
af9f8000-5f2c-ae0f-8cd2-598f82b55b8e	2021-05-24 19:53:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:53:46.877+03	2021-05-24 19:53:46.884+03	
13047dce-3901-d08c-33a9-90bccbeea391	2021-05-24 19:54:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:54:06.877+03	2021-05-24 19:54:06.933+03	
4a7a176f-2630-14a1-6f4a-57386ad91671	2021-05-24 19:54:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:54:26.877+03	2021-05-24 19:54:26.884+03	
06f775a6-0934-400e-9d46-4d32b243b5d4	2021-05-24 19:54:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:54:46.877+03	2021-05-24 19:54:46.882+03	
7f062a75-0435-0e16-22f9-c1f3e0fb0201	2021-05-24 19:55:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:55:06.877+03	2021-05-24 19:55:06.884+03	
18120959-3282-a583-3fda-556a2feaf9d7	2021-05-24 19:55:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:55:26.877+03	2021-05-24 19:55:26.883+03	
8a35be82-2ac2-2233-a9d3-ad7a258a83c3	2021-05-24 19:55:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:55:46.877+03	2021-05-24 19:55:46.899+03	
63f8adca-1e07-f16a-f526-d3917c51a33c	2021-05-24 19:56:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:56:06.877+03	2021-05-24 19:56:06.884+03	
01241cb4-3f1e-c0cc-1306-9c5d6b25ae97	2021-05-24 19:56:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:56:26.877+03	2021-05-24 19:56:26.885+03	
8a08d97a-9693-d149-45cc-e300c48eadba	2021-05-24 19:56:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:56:46.877+03	2021-05-24 19:56:46.884+03	
5f958530-b242-d8cb-e124-3e1dda9088d8	2021-05-24 19:57:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:57:06.877+03	2021-05-24 19:57:06.882+03	
4f5e4471-f340-b182-6c18-08be2d6d9b71	2021-05-24 19:57:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:57:26.877+03	2021-05-24 19:57:26.885+03	
eb430404-7e8d-e690-4dad-49192cfaaabe	2021-05-24 19:57:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:57:46.877+03	2021-05-24 19:57:46.884+03	
5449be4e-cf1c-6e18-906d-dc0d64f630d5	2021-05-24 19:58:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:58:08.877+03	2021-05-24 19:58:08.939+03	
a1a7a542-90c9-62c5-c3bf-1dfdde1797a2	2021-05-24 19:58:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:58:28.877+03	2021-05-24 19:58:28.884+03	
9618d3ba-539f-85fe-daf9-928adc8b712a	2021-05-24 19:58:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:58:48.877+03	2021-05-24 19:58:48.886+03	
9db58987-28e0-745a-b4c5-2b17f607e63d	2021-05-24 19:59:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:59:08.877+03	2021-05-24 19:59:08.885+03	
e233e747-ed6c-f22f-a873-d0f98b7b3b4e	2021-05-24 19:59:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:59:28.877+03	2021-05-24 19:59:28.883+03	
8ba955d4-1b4d-9094-69af-fea6efa8efe5	2021-05-24 19:59:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:59:48.877+03	2021-05-24 19:59:48.885+03	
4e53446d-a011-f38d-d44f-1907569ae2d2	2021-05-24 20:00:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 20:00:00.877+03	2021-05-24 20:00:00.884+03	ERROR
7217b663-e849-5f14-38db-b2fd253bebf2	2021-05-24 20:00:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:00:18.877+03	2021-05-24 20:00:18.885+03	
1dd12f92-b1c1-2e8b-c83d-734db834d590	2021-05-24 20:00:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:00:38.877+03	2021-05-24 20:00:38.883+03	
342fe791-20e1-87f5-e92d-10df9f34f6d0	2021-05-24 20:00:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:00:58.877+03	2021-05-24 20:00:58.884+03	
225a4ee8-3247-c142-38e2-832c2606d6f3	2021-05-24 20:01:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:01:18.877+03	2021-05-24 20:01:18.884+03	
2492ba4a-48cf-b0a9-9da6-045ec9d4f254	2021-05-24 20:01:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:01:38.877+03	2021-05-24 20:01:38.885+03	
dce4b06b-6761-3b6c-c4ae-296527819145	2021-05-24 20:01:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:01:58.877+03	2021-05-24 20:01:58.884+03	
453a11b3-1c72-3b37-0594-004be810408f	2021-05-24 20:02:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:02:18.877+03	2021-05-24 20:02:18.883+03	
7d61433f-a7a2-4f7a-83f5-a8d8ebeb0943	2021-05-24 20:02:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:02:38.877+03	2021-05-24 20:02:38.886+03	
af2a0099-f28d-2f7d-1069-b8abffcb22d0	2021-05-24 20:02:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:02:58.877+03	2021-05-24 20:02:59.129+03	
da985a13-1e81-6310-3977-0ad126a6e173	2021-05-24 20:03:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:03:19.877+03	2021-05-24 20:03:19.884+03	
df996d93-2f8a-f9d4-ace2-9f20b550de45	2021-05-24 20:03:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:03:39.877+03	2021-05-24 20:03:39.885+03	
b3272b08-ec6c-e36d-0d5d-e043bdfc8b63	2021-05-24 20:03:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:03:59.877+03	2021-05-24 20:03:59.885+03	
bc1ed269-1006-e5ec-311b-509ed6062e06	2021-05-24 20:04:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:04:19.877+03	2021-05-24 20:04:19.883+03	
d35dab58-bd2e-4e7e-287c-6b4842861040	2021-05-24 20:04:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:04:39.877+03	2021-05-24 20:04:39.884+03	
11fd4cf9-0033-8364-a116-3ea4da7d2806	2021-05-24 20:04:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:04:59.877+03	2021-05-24 20:04:59.884+03	
e64ba061-d809-f87d-ba00-62bd74ef3da4	2021-05-24 20:05:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:05:20.877+03	2021-05-24 20:05:21.197+03	
2110a81c-8a8a-4877-f98e-d8e2101eeef0	2021-05-24 20:05:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:05:40.877+03	2021-05-24 20:05:40.884+03	
9c069bd5-553e-f3fb-613b-584c104d87f2	2021-05-24 20:06:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:06:00.877+03	2021-05-24 20:06:00.882+03	
0cc435f7-146d-9df6-49bd-4b052d02dd0a	2021-05-24 20:06:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:06:20.877+03	2021-05-24 20:06:20.884+03	
9039f507-ecbb-6da2-d1bd-7e32983aa738	2021-05-24 20:06:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:06:40.877+03	2021-05-24 20:06:40.885+03	
9dbb82fc-c136-eee6-f04a-2c97f959cffa	2021-05-24 20:07:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:07:00.877+03	2021-05-24 20:07:00.885+03	
33a44d1b-ff4b-41ea-1520-19005032333e	2021-05-24 20:07:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:07:20.877+03	2021-05-24 20:07:20.884+03	
36b25f18-a309-9f40-4b3c-d99b76c3ead6	2021-05-24 20:07:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:07:40.877+03	2021-05-24 20:07:40.883+03	
dfc6f456-a36d-5320-7ceb-52735e19c72c	2021-05-24 20:08:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:08:01.877+03	2021-05-24 20:08:01.883+03	
ab527b11-4a1f-2646-c4c3-7f3358e0cb3c	2021-05-24 20:08:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:08:21.877+03	2021-05-24 20:08:21.884+03	
f6a27802-dd32-bdaf-dbcd-3b3d8dbf7d0a	2021-05-24 20:08:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:08:41.877+03	2021-05-24 20:08:41.884+03	
0fb4ae03-92e4-ccd2-2b67-b9ca66321349	2021-05-24 19:48:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:48:45.877+03	2021-05-24 19:48:45.883+03	
68f9ebeb-f573-b9ee-bc64-c2e849856b59	2021-05-24 19:49:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:49:05.878+03	2021-05-24 19:49:05.885+03	
848cb413-5367-cf8f-074f-ff05e3a935e6	2021-05-24 19:49:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:49:26.877+03	2021-05-24 19:49:26.884+03	
cc12c2d5-fd63-0462-3017-f553ef9db414	2021-05-24 19:49:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:49:46.877+03	2021-05-24 19:49:46.884+03	
64d250df-7d6e-55b2-99d0-d63c49c9289f	2021-05-24 19:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 19:50:00.877+03	2021-05-24 19:50:00.882+03	ERROR
58949c6b-b699-ba7a-ce9b-0f9a648ab562	2021-05-24 19:50:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:50:16.877+03	2021-05-24 19:50:17.165+03	
a847961e-ed94-c5dc-f89c-752bafcbaa3a	2021-05-24 19:50:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:50:36.877+03	2021-05-24 19:50:36.884+03	
efc49257-f994-ca3d-96c4-ce1fc89e3fde	2021-05-24 19:50:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:50:56.877+03	2021-05-24 19:50:56.882+03	
488257ba-56d0-a5ae-56c3-19baba6d4497	2021-05-24 19:51:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:51:16.877+03	2021-05-24 19:51:16.884+03	
c625280c-54bf-e279-9a9d-3192a581815c	2021-05-24 19:51:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:51:36.877+03	2021-05-24 19:51:36.884+03	
96125669-d13e-3789-b9b6-0eb5c75e8c38	2021-05-24 19:51:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:51:56.877+03	2021-05-24 19:51:56.892+03	
6e953b74-0df1-bfa2-7ddb-442e4616b306	2021-05-24 19:52:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:52:16.877+03	2021-05-24 19:52:16.883+03	
357ec02f-d57e-b616-443a-befb22d16b44	2021-05-24 19:52:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:52:36.877+03	2021-05-24 19:52:36.884+03	
d3225724-8612-a89e-8d5b-2c69f048fe51	2021-05-24 19:52:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:52:56.877+03	2021-05-24 19:52:56.883+03	
f391ff0b-588c-53d0-f9af-cc3563468836	2021-05-24 19:53:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:53:16.877+03	2021-05-24 19:53:16.884+03	
8f33deea-c274-f1b6-772e-26658f397652	2021-05-24 19:53:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:53:36.877+03	2021-05-24 19:53:36.883+03	
3368a1f4-8682-31aa-21a1-96aa2850d4e5	2021-05-24 19:53:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:53:56.877+03	2021-05-24 19:53:56.885+03	
0d62db97-9855-a27e-9563-f25e28d1437e	2021-05-24 19:54:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:54:16.877+03	2021-05-24 19:54:16.884+03	
3fa0fce0-afc8-83f3-50e5-9d2d3a185b56	2021-05-24 19:54:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:54:36.877+03	2021-05-24 19:54:36.885+03	
28fbe34b-4806-c1ef-e7a9-af71ffdb3163	2021-05-24 19:54:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:54:56.877+03	2021-05-24 19:54:56.883+03	
7fc5b2a1-d10c-d5a0-63ff-d582685934a9	2021-05-24 19:55:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:55:16.877+03	2021-05-24 19:55:16.884+03	
7af0ab7a-b3f3-731a-e6d9-d59ad6f1762f	2021-05-24 19:55:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:55:36.877+03	2021-05-24 19:55:36.883+03	
b2418b29-f44f-da87-be1c-237c5ea16c76	2021-05-24 19:55:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:55:56.877+03	2021-05-24 19:55:56.884+03	
12e1438e-c45c-5bea-38b9-b3f0a255ca53	2021-05-24 19:56:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:56:16.877+03	2021-05-24 19:56:16.883+03	
b3c14458-19e6-96a3-8886-53272ebdb19e	2021-05-24 19:56:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:56:36.877+03	2021-05-24 19:56:36.885+03	
608a5caf-7b4f-d205-e89c-df23e5e513f7	2021-05-24 19:56:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:56:56.877+03	2021-05-24 19:56:56.883+03	
0b3e4893-3e98-c9eb-5913-90bab2dd83ca	2021-05-24 19:57:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:57:16.877+03	2021-05-24 19:57:16.884+03	
48d73804-1418-b819-af54-3c493c1848aa	2021-05-24 19:57:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:57:36.877+03	2021-05-24 19:57:36.883+03	
7bf0c513-2781-4142-8208-6149a8f98c46	2021-05-24 19:57:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:57:57.877+03	2021-05-24 19:57:57.884+03	
1c24e6f2-e172-6f70-184f-127bd2eb8886	2021-05-24 19:58:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:58:18.877+03	2021-05-24 19:58:18.884+03	
655b3c17-e3d0-adbb-1d20-063f28743dbf	2021-05-24 19:58:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:58:38.877+03	2021-05-24 19:58:38.884+03	
6bb89dd7-5406-2833-b5e5-c946c61854bd	2021-05-24 19:58:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:58:58.877+03	2021-05-24 19:58:58.884+03	
0568a103-45eb-5076-cdea-243eb8a940bf	2021-05-24 19:59:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:59:18.877+03	2021-05-24 19:59:18.885+03	
fd736d65-de28-30b7-22bc-fae59bcf4c33	2021-05-24 19:59:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:59:38.877+03	2021-05-24 19:59:38.898+03	
b205485b-318e-d75c-9f26-1de923880404	2021-05-24 19:59:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 19:59:58.877+03	2021-05-24 19:59:58.882+03	
d1832560-2071-dd2a-da77-282985271916	2021-05-24 20:00:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:00:08.877+03	2021-05-24 20:00:08.885+03	
6024dce6-2329-ca2d-ab80-0f9957cbae2a	2021-05-24 20:00:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:00:28.877+03	2021-05-24 20:00:28.885+03	
97508dd3-152e-c386-eb6e-228d82cea637	2021-05-24 20:00:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:00:48.877+03	2021-05-24 20:00:48.883+03	
e8d5e3f7-85af-0ad4-31bf-6484162163b4	2021-05-24 20:01:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:01:08.877+03	2021-05-24 20:01:08.917+03	
1787ed00-48b7-bb93-27d7-c35621ba6758	2021-05-24 20:01:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:01:28.877+03	2021-05-24 20:01:28.883+03	
8a1017f8-7ad7-1d8d-8bf1-03c50b0e5804	2021-05-24 20:01:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:01:48.877+03	2021-05-24 20:01:48.884+03	
9d635a58-153d-f42b-f599-dd0cc9deca47	2021-05-24 20:02:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:02:08.877+03	2021-05-24 20:02:08.884+03	
46bb9486-c64d-2677-f257-ba66e6cfadfc	2021-05-24 20:02:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:02:28.877+03	2021-05-24 20:02:28.884+03	
683d1c04-53be-6656-bcf1-5b66372e15fa	2021-05-24 20:02:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:02:48.877+03	2021-05-24 20:02:48.882+03	
137cdf3b-168a-bad9-f46b-a5f58b8b0907	2021-05-24 20:03:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:03:08.878+03	2021-05-24 20:03:08.885+03	
e384e00b-959a-1463-4006-d676fb5b4d2b	2021-05-24 20:03:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:03:29.877+03	2021-05-24 20:03:29.883+03	
913a57e7-a13e-bd67-f1f2-b2be590367c8	2021-05-24 20:03:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:03:49.877+03	2021-05-24 20:03:49.883+03	
ce003428-e63c-5f14-cac9-5edbbe9a0daa	2021-05-24 20:04:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:04:09.877+03	2021-05-24 20:04:09.885+03	
95e49524-c88d-c7e2-c352-d0dadea5393a	2021-05-24 20:04:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:04:29.877+03	2021-05-24 20:04:29.884+03	
bef1c93c-96b7-4e1d-b83e-2eb37eb4f9e6	2021-05-24 20:04:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:04:49.877+03	2021-05-24 20:04:49.884+03	
063c3d21-89d2-d263-8cd5-18d6f9eecf7b	2021-05-24 20:05:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:05:09.877+03	2021-05-24 20:05:09.884+03	
2fe03fd7-6ffa-f448-f02e-0e87d9890b53	2021-05-24 20:05:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:05:30.877+03	2021-05-24 20:05:30.885+03	
8c4c3ffd-21c9-902c-835f-9620891e2a40	2021-05-24 20:05:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:05:50.877+03	2021-05-24 20:05:50.884+03	
e8c29ca9-0442-7aed-f6d0-278e641724c7	2021-05-24 20:06:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:06:10.877+03	2021-05-24 20:06:10.882+03	
8d228624-52c7-e9a7-56ff-50da52d245ba	2021-05-24 20:06:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:06:30.877+03	2021-05-24 20:06:30.885+03	
1754f426-769c-e00a-89b1-a7c855ec9808	2021-05-24 20:06:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:06:50.877+03	2021-05-24 20:06:50.882+03	
23f7c21e-4a22-27fd-2c52-6a79dbe78868	2021-05-24 20:07:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:07:10.877+03	2021-05-24 20:07:10.884+03	
b09bdd1a-66d6-1411-9b8c-3928c49fd00c	2021-05-24 20:07:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:07:30.877+03	2021-05-24 20:07:30.884+03	
eb57dd3c-33fb-6cbb-fd6c-a1863a3372d0	2021-05-24 20:07:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:07:50.877+03	2021-05-24 20:07:50.885+03	
2733b39b-7cfc-430f-a705-8c723471fd39	2021-05-24 20:08:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:08:11.877+03	2021-05-24 20:08:11.885+03	
a1d6ff3b-0c19-438f-493f-f6b2f1669e47	2021-05-24 20:08:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:08:31.877+03	2021-05-24 20:08:31.885+03	
2d0138d3-6f0c-b92e-c026-c6d3df6eba1a	2021-05-24 20:08:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:08:51.877+03	2021-05-24 20:08:51.882+03	
63899ccc-5611-2695-1e69-b91e01151a9a	2021-05-24 20:09:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:09:11.877+03	2021-05-24 20:09:11.883+03	
995c8f22-3b75-b429-ca03-74adf79f7d25	2021-05-24 20:09:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:09:01.877+03	2021-05-24 20:09:01.884+03	
ba037a66-dc97-f2eb-f173-5ad6966e5ef5	2021-05-24 20:09:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:09:21.877+03	2021-05-24 20:09:21.885+03	
76462d2d-2e9f-8186-ad16-063f4399ff05	2021-05-24 20:09:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:09:41.877+03	2021-05-24 20:09:41.883+03	
f8cf5613-1b6d-8946-f9be-4b8ecabd9db2	2021-05-24 20:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 20:10:00.877+03	2021-05-24 20:10:00.882+03	ERROR
8c485c18-7bb8-60ff-cacb-2a3aa85997ca	2021-05-24 20:10:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:10:11.877+03	2021-05-24 20:10:11.884+03	
99f6bdde-adc0-c31e-ed72-bc0230e481ca	2021-05-24 20:10:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:10:31.877+03	2021-05-24 20:10:31.884+03	
fe22e1d9-c29e-3b97-8b94-51463b4a7bed	2021-05-24 20:10:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:10:51.877+03	2021-05-24 20:10:51.885+03	
f343caf5-720f-f8d3-6b9b-5ca62bf9c792	2021-05-24 20:11:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:11:11.877+03	2021-05-24 20:11:11.883+03	
393f1d02-881d-2085-11b5-88109f7cf735	2021-05-24 20:11:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:11:31.877+03	2021-05-24 20:11:31.882+03	
330f4ab7-2d14-0e53-111f-3149e800d795	2021-05-24 20:11:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:11:51.877+03	2021-05-24 20:11:51.885+03	
28485f7a-98bd-b0d1-e815-ac1541a83555	2021-05-24 20:12:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:12:11.877+03	2021-05-24 20:12:11.883+03	
d130c467-925a-94ad-c599-334f7a6ca7fd	2021-05-24 20:12:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:12:31.877+03	2021-05-24 20:12:31.885+03	
58e2b588-4f35-81a3-35d7-db678aff57a1	2021-05-24 20:12:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:12:51.877+03	2021-05-24 20:12:51.885+03	
1e2f63e1-ce5d-4788-4c7f-9e548d19e41b	2021-05-24 20:13:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:13:11.877+03	2021-05-24 20:13:11.884+03	
8ff1079c-8912-b14d-2c38-32863d94df32	2021-05-24 20:13:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:13:31.877+03	2021-05-24 20:13:31.885+03	
8aa4aaed-8eb4-c0f1-f9a8-b78d79f5aea9	2021-05-24 20:13:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:13:51.877+03	2021-05-24 20:13:51.884+03	
1d89e04e-f781-bf39-6f37-7736acd8ebdb	2021-05-24 20:14:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:14:11.877+03	2021-05-24 20:14:11.884+03	
8608b5a8-a0a5-5804-d4f6-fdabe532c23b	2021-05-24 20:14:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:14:31.877+03	2021-05-24 20:14:31.886+03	
d73352d5-5751-fa2a-c086-232dd2e21fc9	2021-05-24 20:14:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:14:51.877+03	2021-05-24 20:14:51.885+03	
c4727b82-758e-165f-836a-c0970eabf798	2021-05-24 20:15:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:15:11.877+03	2021-05-24 20:15:11.886+03	
3d5322e6-bac1-dd61-b5b9-4c58e987b427	2021-05-24 20:15:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:15:31.877+03	2021-05-24 20:15:31.885+03	
c3488a3c-3ba5-0f0e-7a4d-d5ee854072dc	2021-05-24 20:15:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:15:51.877+03	2021-05-24 20:15:51.885+03	
4dac5fc8-13ea-cf98-629f-39bebc5b684c	2021-05-24 20:16:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:16:11.877+03	2021-05-24 20:16:11.883+03	
089aa548-14bf-3798-d988-310747f68737	2021-05-24 20:16:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:16:31.877+03	2021-05-24 20:16:31.882+03	
d7609969-c992-bc70-8b87-c74a3e5bf0c0	2021-05-24 20:16:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:16:51.877+03	2021-05-24 20:16:51.883+03	
e48c8417-c5da-0f50-3142-322f13349a35	2021-05-24 20:17:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:17:11.877+03	2021-05-24 20:17:11.884+03	
3f696b1a-915a-c72a-398c-ccf2f9f4e694	2021-05-24 20:17:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:17:31.877+03	2021-05-24 20:17:31.884+03	
224eaafb-f1c5-11cf-80dd-90a791cb3700	2021-05-24 20:17:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:17:51.877+03	2021-05-24 20:17:51.883+03	
b2e17f7f-ff2e-34c9-95a5-420f5953a59d	2021-05-24 20:18:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:18:11.877+03	2021-05-24 20:18:11.884+03	
22dee1fd-7acc-db00-d18e-0548422b488e	2021-05-24 20:18:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:18:31.877+03	2021-05-24 20:18:31.883+03	
5cb4a6a4-365a-9e00-a2cb-27b4d475ced8	2021-05-24 20:18:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:18:51.877+03	2021-05-24 20:18:51.883+03	
b2f1ae2a-ceca-36cc-1b39-6f2539e1179c	2021-05-24 20:19:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:19:11.877+03	2021-05-24 20:19:11.884+03	
d616b03d-3043-b579-e709-a827376ad229	2021-05-24 20:19:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:19:31.877+03	2021-05-24 20:19:31.882+03	
41e4d835-dfd7-b6dd-3142-5a34b7717d3b	2021-05-24 20:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 20:20:00.877+03	2021-05-24 20:20:00.883+03	ERROR
0e31c1ad-04b5-7f06-448b-9d8589ab338c	2021-05-24 20:20:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:20:11.877+03	2021-05-24 20:20:11.884+03	
5b3e4216-7c77-45f0-efd8-602c1b338be7	2021-05-24 20:20:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:20:31.877+03	2021-05-24 20:20:31.884+03	
8f344654-536d-e476-9c1e-389ef0b4781f	2021-05-24 20:20:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:20:51.877+03	2021-05-24 20:20:51.884+03	
cc7e3f3b-4410-52f7-7400-dbaffea8143f	2021-05-24 20:21:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:21:11.877+03	2021-05-24 20:21:11.883+03	
8fdbcdbd-1307-8201-4055-256ccc0fedeb	2021-05-24 20:21:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:21:31.877+03	2021-05-24 20:21:31.884+03	
3df4e687-1c61-3b2d-90a8-df67faae116f	2021-05-24 20:21:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:21:51.877+03	2021-05-24 20:21:51.884+03	
1b4df4ff-d68c-96bc-cbf1-a9f68ddbb690	2021-05-24 20:22:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:22:11.877+03	2021-05-24 20:22:11.885+03	
01a09e7d-d905-5bab-9a11-e2e976fb96a6	2021-05-24 20:22:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:22:31.877+03	2021-05-24 20:22:31.883+03	
2474a27d-d0b7-0a97-84f4-d0b7296f5fde	2021-05-24 20:22:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:22:51.877+03	2021-05-24 20:22:51.883+03	
addc1b83-b1ae-fdf8-9951-ab41ee65c213	2021-05-24 20:23:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:23:11.877+03	2021-05-24 20:23:12.215+03	
514d10bc-0144-bec5-2baa-3e516834c1d8	2021-05-24 20:23:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:23:31.877+03	2021-05-24 20:23:31.883+03	
0810ffd4-b7ce-84af-c4df-821be0ac51bf	2021-05-24 20:23:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:23:51.877+03	2021-05-24 20:23:52.195+03	
ddf18f61-05d9-7a18-15b9-ba1ede813ba8	2021-05-24 20:24:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:24:11.877+03	2021-05-24 20:24:11.883+03	
5743eaaa-b653-2608-4db2-eadf79ee0138	2021-05-24 20:24:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:24:31.877+03	2021-05-24 20:24:31.883+03	
7251307d-195c-61a9-f3b0-308ae3332c10	2021-05-24 20:24:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:24:51.877+03	2021-05-24 20:24:51.884+03	
2ba105e4-407b-ad6e-f82b-58846f97c9ab	2021-05-24 20:25:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:25:11.877+03	2021-05-24 20:25:11.884+03	
0d1e88af-dd29-d31d-c1e4-f06de85877cb	2021-05-24 20:25:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:25:31.877+03	2021-05-24 20:25:31.883+03	
f29284d5-7c23-d6bd-188f-4177ee9eeb1d	2021-05-24 20:25:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:25:51.877+03	2021-05-24 20:25:51.884+03	
da4f0dd6-3ff3-a02c-dad6-50abfeede091	2021-05-24 20:26:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:26:11.877+03	2021-05-24 20:26:11.884+03	
a4fa48e2-7733-ae54-1ca8-4beb6c3b91ee	2021-05-24 20:26:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:26:31.877+03	2021-05-24 20:26:31.885+03	
2b50b28f-69cf-6fa2-9741-e5a09748edc8	2021-05-24 20:26:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:26:51.877+03	2021-05-24 20:26:51.884+03	
363ca1bb-81c0-c120-d86c-87ced0675657	2021-05-24 20:27:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:27:11.877+03	2021-05-24 20:27:11.883+03	
2ff9e337-a8da-5e62-1d5a-e565fd858f35	2021-05-24 20:27:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:27:31.877+03	2021-05-24 20:27:31.885+03	
34b69990-f778-da1c-435c-2b53ea8f1577	2021-05-24 20:27:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:27:51.877+03	2021-05-24 20:27:51.885+03	
84125ad8-e00f-a6cd-08dd-09f0087be9d0	2021-05-24 20:28:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:28:11.877+03	2021-05-24 20:28:12.217+03	
5a448bb3-27ed-0799-6691-cafb8cd6ec95	2021-05-24 20:28:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:28:31.877+03	2021-05-24 20:28:31.885+03	
7adfd7d5-5910-3b8f-779b-ca48556d26f6	2021-05-24 20:28:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:28:51.877+03	2021-05-24 20:28:51.883+03	
352d6126-d015-a348-df23-b03e621bfabe	2021-05-24 20:29:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:29:11.877+03	2021-05-24 20:29:11.884+03	
5bfcf663-1cd9-b043-b7d7-57ac7f78842e	2021-05-24 20:29:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:29:31.877+03	2021-05-24 20:29:31.883+03	
ca2ce9d0-6cb3-e379-6567-e6de9cd63573	2021-05-24 20:09:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:09:31.877+03	2021-05-24 20:09:31.885+03	
f968e41b-63fb-8772-1208-9675f118eeba	2021-05-24 20:09:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:09:51.877+03	2021-05-24 20:09:51.884+03	
d23044f5-1191-8145-22bf-6be8edf95d0e	2021-05-24 20:10:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:10:01.877+03	2021-05-24 20:10:01.883+03	
8da56c33-7c39-d0e7-8df1-a2ea465c28dd	2021-05-24 20:10:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:10:21.877+03	2021-05-24 20:10:21.883+03	
4ce5686c-7d4e-dd6a-7cee-3792953475cf	2021-05-24 20:10:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:10:41.877+03	2021-05-24 20:10:41.885+03	
8644f388-b642-3c4a-66df-c2dbc2b3e3a7	2021-05-24 20:11:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:11:01.877+03	2021-05-24 20:11:01.888+03	
2853ef63-79b3-0d7f-e409-9fe598b45c3b	2021-05-24 20:11:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:11:21.877+03	2021-05-24 20:11:21.882+03	
e74ad0c9-fcd8-896e-227e-00fdedc95fc8	2021-05-24 20:11:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:11:41.877+03	2021-05-24 20:11:41.883+03	
35a3179f-083b-24ae-3534-e3a8acd28440	2021-05-24 20:12:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:12:01.877+03	2021-05-24 20:12:01.883+03	
fa112e28-6059-31ca-8b8b-c9b87877a75c	2021-05-24 20:12:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:12:21.877+03	2021-05-24 20:12:21.885+03	
5e8b7db3-b8da-ef5d-17ef-8e0fa99819df	2021-05-24 20:12:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:12:41.877+03	2021-05-24 20:12:41.885+03	
07fc13c6-4bfa-1e4b-4e5a-19a92e6ac4ba	2021-05-24 20:13:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:13:01.877+03	2021-05-24 20:13:01.89+03	
dcef53be-8570-a806-d8e3-441ae971de66	2021-05-24 20:13:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:13:21.877+03	2021-05-24 20:13:21.884+03	
40f0e9a1-329a-98c9-e989-a76419b6c444	2021-05-24 20:13:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:13:41.877+03	2021-05-24 20:13:41.883+03	
b7b20f81-9518-e550-a3b2-dc008cd6d7d3	2021-05-24 20:14:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:14:01.877+03	2021-05-24 20:14:01.899+03	
d41932c9-27d0-0588-cec6-d779c01d7cd4	2021-05-24 20:14:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:14:21.877+03	2021-05-24 20:14:21.884+03	
9c1dbd3b-6e7d-e5e4-608c-b309b40d006d	2021-05-24 20:14:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:14:41.877+03	2021-05-24 20:14:41.882+03	
451a476a-20fc-20b2-94ba-b723df073fb4	2021-05-24 20:15:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:15:01.877+03	2021-05-24 20:15:01.883+03	
38b54c00-7f3b-092d-da9f-679520144453	2021-05-24 20:15:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:15:21.877+03	2021-05-24 20:15:21.896+03	
95fe579e-586e-b2b0-d3af-a6c45266993a	2021-05-24 20:15:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:15:41.877+03	2021-05-24 20:15:41.885+03	
420207e9-5207-f435-688e-8a96bb50319b	2021-05-24 20:16:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:16:01.877+03	2021-05-24 20:16:02.222+03	
695404a8-d59a-d2bd-e021-d85323a8bac1	2021-05-24 20:16:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:16:21.877+03	2021-05-24 20:16:21.884+03	
36cbbfb1-e492-89eb-0ae3-d0c7cf68dd51	2021-05-24 20:16:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:16:41.877+03	2021-05-24 20:16:41.883+03	
23aae16d-936e-2c5a-6451-aaf972d430a9	2021-05-24 20:17:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:17:01.877+03	2021-05-24 20:17:01.901+03	
8d780e26-3719-1e92-c2be-c64596be7039	2021-05-24 20:17:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:17:21.877+03	2021-05-24 20:17:22.204+03	
9741bf49-c12c-e46a-fa33-27a692f98f80	2021-05-24 20:17:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:17:41.877+03	2021-05-24 20:17:41.883+03	
9fe3f820-6f4c-d743-27dd-a165fe1eef9e	2021-05-24 20:18:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:18:01.877+03	2021-05-24 20:18:01.882+03	
b330d019-a527-c092-9d76-6838f4f99c5f	2021-05-24 20:18:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:18:21.877+03	2021-05-24 20:18:21.883+03	
6e2e06e8-dec1-f5eb-4afe-2f6764904a52	2021-05-24 20:18:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:18:41.877+03	2021-05-24 20:18:41.886+03	
062b8d6d-f230-903f-b052-fe55e1104304	2021-05-24 20:19:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:19:01.877+03	2021-05-24 20:19:01.896+03	
8e9752dc-5be8-8aa1-b636-8688d25ea59c	2021-05-24 20:19:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:19:21.877+03	2021-05-24 20:19:21.963+03	
abf50844-b280-21e8-a9ec-8d40b0df30f0	2021-05-24 20:19:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:19:41.877+03	2021-05-24 20:19:41.883+03	
0c47d60b-9819-0f54-2b9c-6043fa3583ec	2021-05-24 20:19:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:19:51.877+03	2021-05-24 20:19:51.883+03	
b3236766-8ee8-e03e-1845-83bdc4f9850c	2021-05-24 20:20:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:20:01.877+03	2021-05-24 20:20:01.884+03	
9d81100b-17dc-5aa8-1601-f38b5bc99f84	2021-05-24 20:20:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:20:21.877+03	2021-05-24 20:20:21.883+03	
15e7daf3-9f4c-a644-0a3f-146404ec7ee0	2021-05-24 20:20:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:20:41.877+03	2021-05-24 20:20:41.885+03	
f00a4605-679b-b3ad-3bd2-94343e979cd4	2021-05-24 20:21:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:21:01.877+03	2021-05-24 20:21:01.885+03	
91f1b0d8-142d-5c76-23e3-e351ab12ff41	2021-05-24 20:21:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:21:21.877+03	2021-05-24 20:21:21.883+03	
f67e412d-a7f2-dc0f-c4d5-d6e519887b8a	2021-05-24 20:21:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:21:41.877+03	2021-05-24 20:21:41.884+03	
f26235c6-0c36-08e0-3da0-7a1f93648567	2021-05-24 20:22:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:22:01.877+03	2021-05-24 20:22:01.883+03	
1833fbc8-0f36-e3ff-a95a-b4096b744b02	2021-05-24 20:22:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:22:21.877+03	2021-05-24 20:22:21.884+03	
3d2dafc3-190b-4699-ca90-3cfa6b2a9a90	2021-05-24 20:22:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:22:41.877+03	2021-05-24 20:22:41.883+03	
c0d8b013-9925-ea04-8542-7486f9364440	2021-05-24 20:23:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:23:01.877+03	2021-05-24 20:23:01.883+03	
2e7e8640-bcc7-a97b-3477-4e299069d143	2021-05-24 20:23:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:23:21.877+03	2021-05-24 20:23:21.885+03	
b1d796fd-874b-1a8b-c204-059363fad421	2021-05-24 20:23:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:23:41.877+03	2021-05-24 20:23:41.883+03	
fe6c4339-c78a-4941-54b1-ecbaa222ad58	2021-05-24 20:24:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:24:01.877+03	2021-05-24 20:24:01.885+03	
c010e495-9e34-7bc7-7858-2af44c67c4e1	2021-05-24 20:24:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:24:21.877+03	2021-05-24 20:24:21.986+03	
e364a376-6362-f0db-4502-32d2c99822c8	2021-05-24 20:24:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:24:41.877+03	2021-05-24 20:24:41.885+03	
88307bf7-789c-2bff-37c3-a9fdda423b71	2021-05-24 20:25:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:25:01.877+03	2021-05-24 20:25:01.884+03	
883f316b-ad81-eeb7-6a92-3e7cceec5930	2021-05-24 20:25:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:25:21.877+03	2021-05-24 20:25:21.884+03	
ccdc7e9d-32a9-0b45-b6d6-cb9b4f205135	2021-05-24 20:25:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:25:41.877+03	2021-05-24 20:25:41.883+03	
bb2d73cb-d5f9-ab10-f9e3-2777a2cbc9a1	2021-05-24 20:26:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:26:01.877+03	2021-05-24 20:26:01.884+03	
e2378145-b71b-b107-278c-7d1e5b211375	2021-05-24 20:26:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:26:21.877+03	2021-05-24 20:26:21.884+03	
7ea4a543-3b2d-39d4-9d58-3bfebb47f133	2021-05-24 20:26:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:26:41.877+03	2021-05-24 20:26:41.883+03	
2758ccb1-f30e-370d-ba34-2a31363fa1e4	2021-05-24 20:27:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:27:01.877+03	2021-05-24 20:27:01.884+03	
10c2a992-b389-cfcd-766c-c8832b44045e	2021-05-24 20:27:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:27:21.877+03	2021-05-24 20:27:22.007+03	
de366ac4-368e-2aea-fa91-54f5b2b1859f	2021-05-24 20:27:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:27:41.877+03	2021-05-24 20:27:41.884+03	
f0e48b7f-f5f1-31e4-7c04-083a6f5e63c8	2021-05-24 20:28:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:28:01.877+03	2021-05-24 20:28:01.883+03	
37963794-326d-01bd-31d6-ed8f04d2c290	2021-05-24 20:28:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:28:21.877+03	2021-05-24 20:28:21.882+03	
90a90549-c35e-7edc-fd88-daba664ade76	2021-05-24 20:28:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:28:41.877+03	2021-05-24 20:28:42.178+03	
1dbf8476-2ebe-3340-adc5-cbf148c20808	2021-05-24 20:29:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:29:01.877+03	2021-05-24 20:29:01.882+03	
061f4e7a-67d5-f92a-de6b-36668f388ff4	2021-05-24 20:29:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:29:21.877+03	2021-05-24 20:29:21.883+03	
5e20f053-225a-90fe-d39d-87b581ef61a3	2021-05-24 20:29:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:29:41.877+03	2021-05-24 20:29:41.883+03	
9efca110-0809-4713-a7e5-9b32124b4388	2021-05-24 20:29:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:29:51.877+03	2021-05-24 20:29:51.883+03	
92dbcb4a-858d-ef2c-ded6-5409b08ca938	2021-05-24 20:30:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:30:01.877+03	2021-05-24 20:30:01.892+03	
451d9b55-f66c-8567-6e04-dd5c47394249	2021-05-24 20:30:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:30:21.877+03	2021-05-24 20:30:21.883+03	
dd4a8216-d501-db45-1489-c9d4ebaf2dee	2021-05-24 20:30:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:30:41.877+03	2021-05-24 20:30:41.884+03	
400ee98c-397c-e356-4f21-8886e1279761	2021-05-24 20:31:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:31:01.877+03	2021-05-24 20:31:01.886+03	
1c4f8e9e-a5e7-e179-3a85-bc845641f2dc	2021-05-24 20:31:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:31:21.877+03	2021-05-24 20:31:21.883+03	
4ac532ef-47fc-e691-5145-844ef8e46942	2021-05-24 20:31:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:31:41.877+03	2021-05-24 20:31:42.127+03	
82778328-a7e6-3633-7438-4001efd4fc5b	2021-05-24 20:32:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:32:01.877+03	2021-05-24 20:32:01.908+03	
5d16b782-f78b-8c37-7aef-e5d5ce6fb040	2021-05-24 20:32:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:32:21.877+03	2021-05-24 20:32:21.883+03	
fd59750c-5e1e-5bc8-5863-31a2de8f38cf	2021-05-24 20:32:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:32:41.877+03	2021-05-24 20:32:41.883+03	
a275815a-dc22-f6d1-04dc-c3bceb28b28f	2021-05-24 20:33:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:33:01.877+03	2021-05-24 20:33:01.893+03	
ce337a1c-30aa-a95e-4a0e-9f32647c1e2c	2021-05-24 20:33:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:33:21.877+03	2021-05-24 20:33:21.883+03	
25aba5ab-bd0e-226d-33d0-91ab9e950b3c	2021-05-24 20:33:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:33:41.877+03	2021-05-24 20:33:41.884+03	
c3d18d60-108b-f957-df77-da5dd7acd247	2021-05-24 20:34:02.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:34:02.877+03	2021-05-24 20:34:02.883+03	
32fccf17-ca8d-64ff-81cd-8283de03145f	2021-05-24 20:34:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:34:22.877+03	2021-05-24 20:34:22.882+03	
3f3e3fa7-7b3e-e618-0eca-88a24f15ab91	2021-05-24 20:34:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:34:42.877+03	2021-05-24 20:34:42.883+03	
a2e562d9-5959-379f-6494-f58bb2b20444	2021-05-24 20:35:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:35:02.877+03	2021-05-24 20:35:02.884+03	
ab4eaf15-ac3a-13b8-757d-612063878aa3	2021-05-24 20:35:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:35:22.878+03	2021-05-24 20:35:22.884+03	
a75cdf18-f3c4-5079-a5f0-f01bc07a7008	2021-05-24 20:35:43.886	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:35:43.886+03	2021-05-24 20:35:43.892+03	
c97c9225-8bdf-4271-7500-ad97d2d8d551	2021-05-24 20:36:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:36:04.877+03	2021-05-24 20:36:04.884+03	
4ffe19bc-5adb-b87c-d1cb-1cab3c810da7	2021-05-24 20:36:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:36:24.877+03	2021-05-24 20:36:24.883+03	
9efa87c2-73fa-3686-5701-61c8bf3eb599	2021-05-24 20:36:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:36:44.877+03	2021-05-24 20:36:44.884+03	
30ba464b-d045-26f1-c6eb-43f9bbe92d36	2021-05-24 20:37:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:37:04.877+03	2021-05-24 20:37:05.121+03	
7c066281-30d6-d2df-610c-7bf3e323d535	2021-05-24 20:37:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:37:24.877+03	2021-05-24 20:37:24.885+03	
12d7cc2f-bc98-92f0-84cc-fad2bb1828f8	2021-05-24 20:37:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:37:44.877+03	2021-05-24 20:37:44.883+03	
598926dc-b448-a36c-d179-11d0a5dc9932	2021-05-24 20:38:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:38:04.877+03	2021-05-24 20:38:04.886+03	
86784594-e8ae-4146-5951-efd110e179e6	2021-05-24 20:38:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:38:24.877+03	2021-05-24 20:38:24.885+03	
d63d2d44-1c49-20b3-aca0-5e1511b0862d	2021-05-24 20:38:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:38:34.877+03	2021-05-24 20:38:34.884+03	
5491d3a5-444d-2b81-cabe-e377ad3193f9	2021-05-24 20:38:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:38:54.877+03	2021-05-24 20:38:54.883+03	
3dcc1b1f-d5e7-5d69-d64f-ee2749f62c17	2021-05-24 20:39:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:39:14.877+03	2021-05-24 20:39:14.883+03	
c7554156-56ee-02ae-2fd6-02e549ef969c	2021-05-24 20:39:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:39:34.877+03	2021-05-24 20:39:34.884+03	
a803ab65-b3c2-f1fe-81db-f2fe9dfdb517	2021-05-24 20:39:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:39:55.877+03	2021-05-24 20:39:55.882+03	
491da11f-7d3e-a2c9-da45-15b21b00065d	2021-05-24 20:40:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:40:05.877+03	2021-05-24 20:40:05.884+03	
164f1835-7ca2-3943-fe2f-3cf4c9500a7b	2021-05-24 20:40:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:40:25.877+03	2021-05-24 20:40:25.883+03	
9e12bc54-87d4-839c-1677-4c7cc4e66b05	2021-05-24 20:40:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:40:45.877+03	2021-05-24 20:40:45.883+03	
6662bba7-7e31-de1e-9d0c-f54ca5227a5f	2021-05-24 20:41:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:41:05.877+03	2021-05-24 20:41:05.882+03	
44c122ea-2783-865e-dd22-a8165c585eb9	2021-05-24 20:41:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:41:25.877+03	2021-05-24 20:41:25.884+03	
0e540511-aeb1-ab50-7d68-ec02d60e207c	2021-05-24 20:41:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:41:45.877+03	2021-05-24 20:41:45.883+03	
bde68643-b5b8-b8b1-648d-2e84b07d8293	2021-05-24 20:42:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:42:05.877+03	2021-05-24 20:42:05.883+03	
400bd588-d114-4a27-d035-92fc37827b61	2021-05-24 20:42:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:42:25.877+03	2021-05-24 20:42:25.883+03	
92fcac7e-c6a4-dfdf-3d81-3b7582e5e9b0	2021-05-24 20:42:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:42:45.877+03	2021-05-24 20:42:45.886+03	
4ba06c0d-2d75-1e9c-0134-463c990790da	2021-05-24 20:43:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:43:05.877+03	2021-05-24 20:43:05.892+03	
5885dbeb-2a9e-5532-41ec-aeb9ab111dbd	2021-05-24 20:43:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:43:25.877+03	2021-05-24 20:43:25.885+03	
d936f6af-a7ea-d50c-b696-5926e1f8b389	2021-05-24 20:43:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:43:45.877+03	2021-05-24 20:43:45.884+03	
313f3cf7-2fc0-1389-de36-7e27151fef6d	2021-05-24 20:44:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:44:05.877+03	2021-05-24 20:44:05.883+03	
d059076a-ef84-9922-0f49-8343cc1e94cc	2021-05-24 20:44:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:44:25.877+03	2021-05-24 20:44:25.886+03	
e8b2d938-4f79-92d0-14d2-32beb4bda6a7	2021-05-24 20:44:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:44:46.877+03	2021-05-24 20:44:46.884+03	
3c40fbc6-dac3-6e67-5f83-7da1adc68878	2021-05-24 20:45:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:45:06.878+03	2021-05-24 20:45:06.886+03	
911afe07-22ea-6b51-b335-0a099cc7affe	2021-05-24 20:45:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:45:27.877+03	2021-05-24 20:45:27.883+03	
09f1f670-4704-e6c1-6bb1-1172ab29ef39	2021-05-24 20:45:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:45:48.877+03	2021-05-24 20:45:48.882+03	
814e4386-60c1-93d5-1700-8bd2d8c27137	2021-05-24 20:46:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:46:09.877+03	2021-05-24 20:46:09.882+03	
ff419b9a-851f-d8ce-a626-280b6cd27912	2021-05-24 20:46:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:46:29.877+03	2021-05-24 20:46:29.883+03	
fc56fd1d-0ad6-f239-e224-92e7871d649a	2021-05-24 20:46:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:46:49.877+03	2021-05-24 20:46:49.883+03	
154897ad-bc1a-0e28-b769-bf80bb6961a1	2021-05-24 20:47:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:47:09.877+03	2021-05-24 20:47:10.389+03	
d18ea3aa-57f1-64a9-d711-375dfe99dd86	2021-05-24 20:47:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:47:29.877+03	2021-05-24 20:47:29.885+03	
0a656b41-c986-80bb-fc6b-c4d8fc3a7587	2021-05-24 20:47:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:47:49.877+03	2021-05-24 20:47:49.884+03	
84bfe780-cf13-f680-bdcc-3a5cc20289e7	2021-05-24 20:48:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:48:09.877+03	2021-05-24 20:48:09.884+03	
f7bef628-2348-77ca-8e04-788649741ce0	2021-05-24 20:48:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:48:29.877+03	2021-05-24 20:48:29.885+03	
d59f6fee-a1a7-be8e-646b-a603f7af9986	2021-05-24 20:48:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:48:50.876+03	2021-05-24 20:48:50.882+03	
fc73b25a-e91d-1569-3a4c-73d037332e59	2021-05-24 20:49:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:49:10.877+03	2021-05-24 20:49:10.884+03	
c1e48287-ee5d-83f8-d103-794fbb46ba3c	2021-05-24 20:49:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:49:30.877+03	2021-05-24 20:49:30.883+03	
9d19c81e-afa5-f616-3968-dab393538977	2021-05-24 20:49:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:49:50.877+03	2021-05-24 20:49:50.884+03	
3668afc5-e5f9-b865-9ded-8ae8affa01af	2021-05-24 20:50:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:50:10.877+03	2021-05-24 20:50:10.884+03	
10272c52-1751-3ebd-50a2-fdabb37b1c0b	2021-05-24 20:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 20:30:00.877+03	2021-05-24 20:30:00.882+03	ERROR
86cbfa39-a2e2-7dc0-5b5e-7c88867e46aa	2021-05-24 20:30:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:30:11.877+03	2021-05-24 20:30:12.035+03	
caea541f-1ee3-09ec-6e6a-fe9cc03424ae	2021-05-24 20:30:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:30:31.877+03	2021-05-24 20:30:31.883+03	
4d37ea20-c3dc-b59e-1c9a-d4008c20868f	2021-05-24 20:30:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:30:51.877+03	2021-05-24 20:30:52.127+03	
8fd31e86-15f1-5188-4c0a-a31a52aca7b5	2021-05-24 20:31:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:31:11.877+03	2021-05-24 20:31:11.884+03	
7d09df48-9210-4a7c-6e72-ed1ba99b38eb	2021-05-24 20:31:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:31:31.877+03	2021-05-24 20:31:31.883+03	
9d3766d7-ed3d-eecd-9271-115593cab68d	2021-05-24 20:31:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:31:51.877+03	2021-05-24 20:31:51.882+03	
9e31ce32-8d58-21c6-93b1-0cbe978fa4df	2021-05-24 20:32:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:32:11.877+03	2021-05-24 20:32:11.885+03	
4585ed15-1ea6-4973-7bd1-be77d55a8227	2021-05-24 20:32:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:32:31.877+03	2021-05-24 20:32:31.883+03	
a988d70c-0d99-a7d3-b736-7ace06bb27d6	2021-05-24 20:32:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:32:51.877+03	2021-05-24 20:32:51.883+03	
08a245d6-7ffe-0043-f3c6-bc06bdac6ceb	2021-05-24 20:33:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:33:11.877+03	2021-05-24 20:33:11.884+03	
3705e8bc-3772-3482-a82a-3f2fcdf7e621	2021-05-24 20:33:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:33:31.877+03	2021-05-24 20:33:31.887+03	
13ecb820-5f50-08b2-84e2-42804dc9d219	2021-05-24 20:33:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:33:51.877+03	2021-05-24 20:33:51.882+03	
ed90395b-9773-510d-b19c-88bb383f7b64	2021-05-24 20:34:12.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:34:12.877+03	2021-05-24 20:34:12.884+03	
cc8e4424-1bba-b5b6-1376-9e3ae70aa56c	2021-05-24 20:34:32.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:34:32.877+03	2021-05-24 20:34:32.882+03	
02a6fc7f-fadb-0ce1-5c1b-efa14b3765a1	2021-05-24 20:34:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:34:52.877+03	2021-05-24 20:34:52.884+03	
7ee73bf2-a966-4500-0549-eac27ff87957	2021-05-24 20:35:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:35:12.878+03	2021-05-24 20:35:12.886+03	
46a14d91-0234-c2ce-19c2-e8e3d583d13c	2021-05-24 20:35:32.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:35:32.878+03	2021-05-24 20:35:32.887+03	
c2c61be8-a38c-14ba-5aed-f5a46bde4d4d	2021-05-24 20:35:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:35:54.877+03	2021-05-24 20:35:54.885+03	
a921b0bf-8e6d-a195-d4f3-7d7b245da176	2021-05-24 20:36:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:36:14.877+03	2021-05-24 20:36:14.883+03	
7f0720ea-dd0d-771f-8c9f-bcda40c07301	2021-05-24 20:36:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:36:34.877+03	2021-05-24 20:36:34.885+03	
0406f220-48c9-5655-5d57-df545710a5fb	2021-05-24 20:36:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:36:54.877+03	2021-05-24 20:36:54.884+03	
4f34b217-c5a0-ffd1-7f66-39502c64c82d	2021-05-24 20:37:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:37:14.877+03	2021-05-24 20:37:14.885+03	
92ca1960-b36e-4550-89cb-24e91465645d	2021-05-24 20:37:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:37:34.877+03	2021-05-24 20:37:34.883+03	
8aa151da-d7b0-5b10-b028-713d940abae7	2021-05-24 20:37:54.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:37:54.877+03	2021-05-24 20:37:54.883+03	
53ca7383-1dcc-19dc-c7ef-cb4a02267a34	2021-05-24 20:38:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:38:14.877+03	2021-05-24 20:38:14.883+03	
0c2f457d-dd44-37bd-4261-59d5a62d4210	2021-05-24 20:38:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:38:44.877+03	2021-05-24 20:38:44.885+03	
cf953ff5-b5a4-fb32-f30a-d982c568dec1	2021-05-24 20:39:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:39:04.877+03	2021-05-24 20:39:04.885+03	
2cdd8092-beac-db69-15b5-94cd73ca6ac4	2021-05-24 20:39:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:39:24.877+03	2021-05-24 20:39:24.884+03	
cba10654-532a-9dae-db89-39a2deb76187	2021-05-24 20:39:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:39:45.877+03	2021-05-24 20:39:45.884+03	
f3ef108f-2097-63c6-6f72-1d1dc5661154	2021-05-24 20:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 20:40:00.877+03	2021-05-24 20:40:00.882+03	ERROR
ad00f2d8-00a1-72f1-1224-e005e6fc6e6a	2021-05-24 20:40:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:40:15.877+03	2021-05-24 20:40:15.883+03	
d991f2d2-1d12-73f7-6c85-ffbfbd2f08bf	2021-05-24 20:40:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:40:35.877+03	2021-05-24 20:40:35.884+03	
93dae0ef-b592-7ee6-05e8-de2cfe903c21	2021-05-24 20:40:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:40:55.877+03	2021-05-24 20:40:55.883+03	
082e4d1f-dd67-d961-c3bd-2bf57d4c1966	2021-05-24 20:41:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:41:15.877+03	2021-05-24 20:41:15.884+03	
13ec710c-2e1d-5dc8-fb32-9c1dea6410a4	2021-05-24 20:41:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:41:35.877+03	2021-05-24 20:41:35.884+03	
507c7dac-ddc3-b96e-a1a5-520886f745e2	2021-05-24 20:41:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:41:55.877+03	2021-05-24 20:41:55.883+03	
062e0fe1-4529-a392-0996-6b65f17c89d1	2021-05-24 20:42:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:42:15.877+03	2021-05-24 20:42:15.883+03	
4b8452c1-43af-ad75-86d7-9c0fde9aafbe	2021-05-24 20:42:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:42:35.877+03	2021-05-24 20:42:35.884+03	
9edbe133-b1cb-64cf-01f5-a48694710187	2021-05-24 20:42:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:42:55.877+03	2021-05-24 20:42:55.883+03	
05ce1b62-5603-540d-04b4-b4dbd5f50e3b	2021-05-24 20:43:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:43:15.877+03	2021-05-24 20:43:15.883+03	
b3690f73-c7ef-5327-fba0-2382a345db7e	2021-05-24 20:43:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:43:35.877+03	2021-05-24 20:43:35.884+03	
119d3b4b-9ac0-2d71-f9bf-bd799b082323	2021-05-24 20:43:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:43:55.877+03	2021-05-24 20:43:55.883+03	
bdfe8b57-a5f3-2a8c-502f-ead92e9c7666	2021-05-24 20:44:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:44:15.877+03	2021-05-24 20:44:15.885+03	
7435246f-de16-b8ff-aab1-d860adf925c3	2021-05-24 20:44:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:44:35.877+03	2021-05-24 20:44:35.886+03	
d3570c49-723e-c6fe-52e3-dcefa6ef21ff	2021-05-24 20:44:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:44:56.877+03	2021-05-24 20:44:56.885+03	
86d92a8c-7441-a19b-fb49-bfea6567dc0d	2021-05-24 20:45:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:45:17.877+03	2021-05-24 20:45:17.885+03	
ea4eea4b-7232-7ff6-111a-05a13d76edcd	2021-05-24 20:45:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:45:37.877+03	2021-05-24 20:45:37.914+03	
58f4e84c-a7dd-c791-bbab-df873d2fa773	2021-05-24 20:45:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:45:59.877+03	2021-05-24 20:45:59.884+03	
fed99e64-fa91-4ea7-f811-f6c7782d0831	2021-05-24 20:46:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:46:19.877+03	2021-05-24 20:46:19.883+03	
aa1b73b0-b622-6dee-4afe-0ba77f22c4f2	2021-05-24 20:46:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:46:39.877+03	2021-05-24 20:46:39.885+03	
b0565cd6-031f-afb6-5850-e5e3bcb101b8	2021-05-24 20:46:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:46:59.877+03	2021-05-24 20:46:59.882+03	
3b0ecc03-888f-baf4-02ad-0bdaa7db7c7c	2021-05-24 20:47:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:47:19.877+03	2021-05-24 20:47:19.884+03	
99b9c012-bbee-d2b3-8572-b7f0d2811a98	2021-05-24 20:47:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:47:39.877+03	2021-05-24 20:47:40.115+03	
8eb96f45-af97-7cda-c279-8054cd04bc36	2021-05-24 20:47:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:47:59.877+03	2021-05-24 20:47:59.884+03	
4ec2e303-ea1e-fda2-d59b-a12355d3d7a1	2021-05-24 20:48:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:48:19.877+03	2021-05-24 20:48:19.882+03	
28fd60bc-8dac-9aee-14e1-c0ef287c19b5	2021-05-24 20:48:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:48:39.877+03	2021-05-24 20:48:39.885+03	
5eb3bb97-0681-5177-bbff-58bcad6b5044	2021-05-24 20:49:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:49:00.877+03	2021-05-24 20:49:01.193+03	
778938d8-bc5c-ab23-319d-f294d8e71f03	2021-05-24 20:49:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:49:20.877+03	2021-05-24 20:49:20.884+03	
70bd2697-a676-6ee4-c42e-a568b378f675	2021-05-24 20:49:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:49:40.877+03	2021-05-24 20:49:40.883+03	
22c9bf82-a909-4955-6993-0ee70119e2d7	2021-05-24 20:50:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:50:00.877+03	2021-05-24 20:50:00.885+03	
88ce1c3f-ad79-7af1-a195-a952ffcdee9e	2021-05-24 20:50:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 20:50:00.877+03	2021-05-24 20:50:00.895+03	ERROR
40ed4148-4565-831c-05a8-8c00f0ebe456	2021-05-24 20:50:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:50:20.877+03	2021-05-24 20:50:20.883+03	
fe1b15e2-7b1b-13fc-12ed-a6391175eecd	2021-05-24 20:50:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:50:30.877+03	2021-05-24 20:50:30.883+03	
24bd26ea-24dc-28dd-1f1d-f8ddb2010e04	2021-05-24 20:50:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:50:50.877+03	2021-05-24 20:50:50.884+03	
5e751077-5bdc-7c94-fff9-41bdbca19b4b	2021-05-24 20:51:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:51:10.877+03	2021-05-24 20:51:10.883+03	
f6540134-d3bc-5660-8551-5409ef459cf5	2021-05-24 20:51:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:51:30.877+03	2021-05-24 20:51:31.216+03	
0d07e32b-d2c0-b59d-e15c-1ac1755b9259	2021-05-24 20:51:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:51:50.877+03	2021-05-24 20:51:50.884+03	
d583a644-36a3-0e37-0453-15e1a877b5a1	2021-05-24 20:52:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:52:10.877+03	2021-05-24 20:52:10.883+03	
e186b684-711c-ff25-a80f-074c82d555c1	2021-05-24 20:52:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:52:30.877+03	2021-05-24 20:52:30.894+03	
cafa52a7-e94a-6e83-a7e5-c9cfb9d1c187	2021-05-24 20:52:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:52:50.877+03	2021-05-24 20:52:50.884+03	
3003fbcd-4aeb-7f3f-03de-0eb57617cedf	2021-05-24 20:53:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:53:10.877+03	2021-05-24 20:53:10.884+03	
86c4e8bb-6b23-895a-ee9d-0f6714ddd314	2021-05-24 20:53:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:53:30.877+03	2021-05-24 20:53:30.886+03	
d9eed091-ff17-a085-b090-9a9dd6c99463	2021-05-24 20:53:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:53:50.877+03	2021-05-24 20:53:50.883+03	
7ce987f3-875f-cde0-3cf9-b29eee70c76d	2021-05-24 20:54:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:54:10.877+03	2021-05-24 20:54:10.884+03	
d21b0ca9-84a3-6281-cf9e-1832105da3cd	2021-05-24 20:54:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:54:30.877+03	2021-05-24 20:54:30.883+03	
ccdc527c-369e-82ec-b73b-d87da5951475	2021-05-24 20:54:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:54:50.877+03	2021-05-24 20:54:50.885+03	
7dbd300f-3c68-3c6c-0943-013d3b7359bf	2021-05-24 20:55:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:55:10.877+03	2021-05-24 20:55:10.883+03	
119915ab-6ac4-8156-90d7-eef612753898	2021-05-24 20:55:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:55:30.877+03	2021-05-24 20:55:30.885+03	
f6eaeb1e-5af7-0133-5f48-3ccac50cdb39	2021-05-24 20:55:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:55:50.877+03	2021-05-24 20:55:50.884+03	
da474373-4507-e188-837a-fc9cd48b5c15	2021-05-24 20:56:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:56:10.877+03	2021-05-24 20:56:10.977+03	
1d399ae4-27d0-fdda-83e2-d7585f0015c8	2021-05-24 20:56:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:56:30.877+03	2021-05-24 20:56:30.884+03	
8a21faed-072f-55a7-501e-a1235e5bb867	2021-05-24 20:56:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:56:50.877+03	2021-05-24 20:56:50.883+03	
74bd0cd4-1669-431b-f851-3c103e3f1109	2021-05-24 20:57:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:57:10.877+03	2021-05-24 20:57:10.884+03	
1981f3df-7291-6c2a-bd7c-ab0a8296c3ff	2021-05-24 20:57:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:57:30.877+03	2021-05-24 20:57:30.883+03	
682af1f2-48ab-bb53-df57-511978713c22	2021-05-24 20:57:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:57:50.877+03	2021-05-24 20:57:50.884+03	
31eb9e9f-a151-e38e-5a7a-aee28d9af62d	2021-05-24 20:58:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:58:10.877+03	2021-05-24 20:58:10.885+03	
80041ab8-592b-8402-522f-790f329e43c3	2021-05-24 20:58:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:58:30.877+03	2021-05-24 20:58:30.883+03	
772476b1-e916-f620-96dc-7ce2704c973d	2021-05-24 20:58:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:58:50.877+03	2021-05-24 20:58:50.884+03	
da86cb8c-8deb-57f8-b875-c825b55f9a8a	2021-05-24 20:59:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:59:10.877+03	2021-05-24 20:59:10.883+03	
29046b56-81ef-4b83-f262-ce04f2c38f49	2021-05-24 20:59:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:59:30.877+03	2021-05-24 20:59:30.884+03	
7b0f9be9-e757-2fba-70eb-a147ebee9166	2021-05-24 21:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 21:00:00.877+03	2021-05-24 21:00:01.117+03	ERROR
607e23ac-a621-6ca9-70d1-6d03c9c0ff15	2021-05-24 21:00:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:00:20.877+03	2021-05-24 21:00:20.883+03	
a87ca480-6ed1-efb2-4405-d3ee07d6e87f	2021-05-24 21:00:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:00:40.877+03	2021-05-24 21:00:40.885+03	
3773b448-e841-a254-2bcb-b7f9951104d7	2021-05-24 21:01:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:01:00.877+03	2021-05-24 21:01:01.209+03	
9ed03b2c-5f42-c445-d9ad-e9c5baab70bd	2021-05-24 21:01:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:01:20.877+03	2021-05-24 21:01:21.219+03	
3ff51fd3-8179-5da9-9ca5-55aea62dd755	2021-05-24 21:01:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:01:40.877+03	2021-05-24 21:01:40.883+03	
47e7b6c4-3874-162c-b6e6-7b2209756573	2021-05-24 21:02:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:02:00.877+03	2021-05-24 21:02:00.884+03	
8887e8f5-bac0-0434-8439-ffc7e8ef0a82	2021-05-24 21:02:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:02:20.877+03	2021-05-24 21:02:20.885+03	
c7fd3d35-483c-e774-9065-a4b090436320	2021-05-24 21:02:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:02:40.877+03	2021-05-24 21:02:41.188+03	
a1c9efaf-b933-cbc5-bcb9-160414ad1511	2021-05-24 21:03:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:03:00.877+03	2021-05-24 21:03:00.883+03	
68550c73-4b8f-2f45-3262-d7ee80dac89a	2021-05-24 21:03:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:03:20.877+03	2021-05-24 21:03:20.886+03	
e0faad92-99e6-82f3-89cb-5ff4abb452ac	2021-05-24 21:03:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:03:40.877+03	2021-05-24 21:03:40.882+03	
623972e7-eea9-7df4-1ce9-2b356b4288a0	2021-05-24 21:04:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:04:00.878+03	2021-05-24 21:04:01.179+03	
e8bcecbc-c63a-e5cd-e68f-8c4bd536aa89	2021-05-24 21:04:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:04:21.877+03	2021-05-24 21:04:22.061+03	
68f5b3fa-f8f0-4309-7b95-79cf537e20c9	2021-05-24 21:04:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:04:41.877+03	2021-05-24 21:04:41.883+03	
22c8558e-e11c-5ca2-bc37-aaaffd410212	2021-05-24 21:05:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:05:01.877+03	2021-05-24 21:05:02.19+03	
949f81cf-b804-16a1-327e-e2c0d65d81fe	2021-05-24 21:05:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:05:22.877+03	2021-05-24 21:05:22.887+03	
35e80a21-82c0-7bfd-9f24-155ce406c980	2021-05-24 21:05:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:05:43.877+03	2021-05-24 21:05:43.883+03	
7f4b6c1e-3ae8-138d-edc2-d45934acac26	2021-05-24 21:06:04.233	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:06:04.233+03	2021-05-24 21:06:05.141+03	
afa0fe97-856f-0505-0ec1-1d60d5ebb2a2	2021-05-24 21:06:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:06:14.877+03	2021-05-24 21:06:14.884+03	
e2e05813-f72b-21d4-e228-32b5f43ecc05	2021-05-24 21:06:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:06:34.877+03	2021-05-24 21:06:34.883+03	
a37795bb-1c12-1b65-8d14-366391066684	2021-05-24 21:06:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:06:54.877+03	2021-05-24 21:06:54.884+03	
5e93cb01-7b5e-fab7-e5ec-8f98e918a85f	2021-05-24 21:07:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:07:14.877+03	2021-05-24 21:07:14.883+03	
5714b0ba-5b33-b7f1-dc49-b1d2e48cbe08	2021-05-24 21:07:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:07:34.877+03	2021-05-24 21:07:34.886+03	
a5a58ac0-9d22-8dc5-d3ca-5875dbb231e1	2021-05-24 21:07:54.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:07:54.878+03	2021-05-24 21:07:54.884+03	
828fd9e7-81bb-b732-d8a9-b25d1f9c3a82	2021-05-24 21:08:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:08:15.877+03	2021-05-24 21:08:15.884+03	
222fdf89-767c-eb76-6dbd-baf3ac6bed4e	2021-05-24 21:08:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:08:35.877+03	2021-05-24 21:08:35.883+03	
21ccdbd5-ae80-3ea4-032e-f65331a3351d	2021-05-24 21:08:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:08:55.877+03	2021-05-24 21:08:55.887+03	
973507b4-e394-041a-a415-4aac46b03d77	2021-05-24 21:09:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:09:15.877+03	2021-05-24 21:09:15.891+03	
8ae95e61-bfe7-6a77-c48c-4581a4a9ee85	2021-05-24 21:09:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:09:45.877+03	2021-05-24 21:09:46.233+03	
50bfa524-0593-2fe7-f45a-bb8e9a44824a	2021-05-24 21:09:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:09:55.877+03	2021-05-24 21:09:55.895+03	
9cfd59ca-1cb0-52b8-ca5c-0ed97fdb7b86	2021-05-24 21:10:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:10:05.877+03	2021-05-24 21:10:05.885+03	
f79ab425-4e99-eaf7-3a24-79471e6eb77d	2021-05-24 21:10:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:10:25.877+03	2021-05-24 21:10:25.885+03	
400bbb6e-10ad-76d7-3fde-185d46e73c80	2021-05-24 21:10:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:10:45.877+03	2021-05-24 21:10:45.883+03	
3872c820-3e45-8af6-e1f5-c8d983a3f2a6	2021-05-24 21:11:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:11:05.877+03	2021-05-24 21:11:05.883+03	
9d0b0f32-1df8-b785-f660-44036ab20a89	2021-05-24 20:50:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:50:40.877+03	2021-05-24 20:50:40.886+03	
70169683-7110-2435-799c-02c8d5d2c3c0	2021-05-24 20:51:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:51:00.877+03	2021-05-24 20:51:00.882+03	
d436e464-62e1-aa0a-c025-495be2d17abf	2021-05-24 20:51:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:51:20.877+03	2021-05-24 20:51:20.884+03	
0b01110a-0674-07ce-1407-2be0ffbda780	2021-05-24 20:51:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:51:40.877+03	2021-05-24 20:51:40.884+03	
2c966ee4-ff83-b7e6-5884-adb8f38007d0	2021-05-24 20:52:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:52:00.877+03	2021-05-24 20:52:00.882+03	
01d5c789-ebef-160b-675b-44cc00789b19	2021-05-24 20:52:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:52:20.877+03	2021-05-24 20:52:20.882+03	
07173085-cdac-60b7-ec29-a0357fea1c74	2021-05-24 20:52:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:52:40.877+03	2021-05-24 20:52:40.883+03	
191bc6a1-7bb7-94ff-a2df-5fc6d4cee9aa	2021-05-24 20:53:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:53:00.877+03	2021-05-24 20:53:00.883+03	
c13e823d-d59d-1793-31ee-5eb6a9808609	2021-05-24 20:53:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:53:20.877+03	2021-05-24 20:53:20.885+03	
1f27ca96-87b5-00fe-9fc6-f284f3275323	2021-05-24 20:53:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:53:40.877+03	2021-05-24 20:53:40.883+03	
6eab0a99-885d-0a7f-1648-f3743645ad7e	2021-05-24 20:54:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:54:00.877+03	2021-05-24 20:54:00.883+03	
dece55b9-2a2d-ea10-3ac7-f710f1e6c277	2021-05-24 20:54:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:54:20.877+03	2021-05-24 20:54:20.883+03	
2172370e-e11d-4e06-d1cd-6b5c78a6ae80	2021-05-24 20:54:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:54:40.877+03	2021-05-24 20:54:40.885+03	
2054f71b-df01-95e2-08e4-2d68fd52d733	2021-05-24 20:55:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:55:00.877+03	2021-05-24 20:55:00.883+03	
0b80b222-e98c-20b2-36af-4709737f9ba6	2021-05-24 20:55:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:55:20.877+03	2021-05-24 20:55:20.886+03	
d3117347-2661-e077-2bfd-30d5ba212ee0	2021-05-24 20:55:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:55:40.877+03	2021-05-24 20:55:40.883+03	
aa184bc1-6a8b-4733-407e-ea4c84afcb5d	2021-05-24 20:56:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:56:00.877+03	2021-05-24 20:56:00.883+03	
15d441fe-45d6-2e46-1097-7d7d2580775a	2021-05-24 20:56:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:56:20.877+03	2021-05-24 20:56:20.886+03	
c38c404b-d1ba-f162-9740-f49033dc16e3	2021-05-24 20:56:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:56:40.877+03	2021-05-24 20:56:40.883+03	
3253c818-caaf-e859-c52f-8787ac9fd73f	2021-05-24 20:57:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:57:00.877+03	2021-05-24 20:57:00.885+03	
3e795a18-72ca-a7a8-9d05-90adb8d63ef5	2021-05-24 20:57:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:57:20.877+03	2021-05-24 20:57:20.884+03	
8411e29e-88d7-ce0a-0291-71a0e8beac03	2021-05-24 20:57:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:57:40.877+03	2021-05-24 20:57:40.884+03	
9d8d0855-fb82-4532-c093-1fa0ba550a3a	2021-05-24 20:58:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:58:00.877+03	2021-05-24 20:58:00.882+03	
230529e3-aa97-dc60-26d6-b77e6008c167	2021-05-24 20:58:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:58:20.877+03	2021-05-24 20:58:20.883+03	
5c705151-d180-2379-d914-32f2e3ac4990	2021-05-24 20:58:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:58:40.877+03	2021-05-24 20:58:40.883+03	
0f8e2d71-62d0-1391-02ea-d7ce9d1d3f2b	2021-05-24 20:59:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:59:00.877+03	2021-05-24 20:59:00.882+03	
a32f66cb-cee4-45b9-2396-cce07a39cea5	2021-05-24 20:59:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:59:20.877+03	2021-05-24 20:59:20.884+03	
6f4b1e68-981c-845f-4d16-6517fedad8fb	2021-05-24 20:59:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:59:40.877+03	2021-05-24 20:59:40.884+03	
da135c93-776b-5774-aed6-f18cce5d304f	2021-05-24 20:59:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 20:59:50.877+03	2021-05-24 20:59:50.887+03	
5868d67d-5611-8fcf-0ea8-802e75394915	2021-05-24 21:00:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:00:00.877+03	2021-05-24 21:00:01.126+03	
192a1a60-43cc-f073-0d1e-557667d2ba82	2021-05-24 21:00:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:00:10.877+03	2021-05-24 21:00:11.128+03	
92ececfa-e3c1-ced6-5de9-9d04a251ff70	2021-05-24 21:00:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:00:30.877+03	2021-05-24 21:00:30.884+03	
6b95964e-2377-fc59-338e-49b0dd7002d3	2021-05-24 21:00:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:00:50.877+03	2021-05-24 21:00:51.178+03	
f340990a-42d3-2e8f-0777-eda913674840	2021-05-24 21:01:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:01:10.877+03	2021-05-24 21:01:10.884+03	
593857d5-a142-ad7c-724a-ed6cec55d4b4	2021-05-24 21:01:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:01:30.877+03	2021-05-24 21:01:30.884+03	
32a966b0-72c4-4c26-63ac-dfef9720f987	2021-05-24 21:01:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:01:50.877+03	2021-05-24 21:01:50.885+03	
f012f219-43b6-7d77-2def-334ec4cfab92	2021-05-24 21:02:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:02:10.877+03	2021-05-24 21:02:10.883+03	
69fbb109-98cb-31f9-a90f-f877ad8bdd3e	2021-05-24 21:02:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:02:30.877+03	2021-05-24 21:02:30.883+03	
b8163abc-c905-84ac-468b-b88636fd4863	2021-05-24 21:02:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:02:50.877+03	2021-05-24 21:02:50.882+03	
0359ffa5-1464-a86f-f42b-7c2f0a3ebf61	2021-05-24 21:03:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:03:10.877+03	2021-05-24 21:03:10.884+03	
72822542-abc1-4016-0e64-fbe07181a889	2021-05-24 21:03:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:03:30.877+03	2021-05-24 21:03:30.883+03	
b1102ad7-b7d3-87c8-7c45-aa7945947b70	2021-05-24 21:03:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:03:50.877+03	2021-05-24 21:03:50.885+03	
58b2ef31-60be-6867-eba2-a904d511b4d5	2021-05-24 21:04:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:04:11.877+03	2021-05-24 21:04:11.885+03	
d0818fe6-967e-f727-5bd9-1f314bcf7a7d	2021-05-24 21:04:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:04:31.877+03	2021-05-24 21:04:31.882+03	
4d26fed9-73ae-156f-6f87-e94925295cfc	2021-05-24 21:04:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:04:51.877+03	2021-05-24 21:04:51.884+03	
8b277fe4-b6c9-5650-9b9c-e9bff103c20f	2021-05-24 21:05:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:05:11.877+03	2021-05-24 21:05:11.884+03	
97d701c2-f2a4-d329-c865-16bd14bbce0d	2021-05-24 21:05:33.251	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:05:33.251+03	2021-05-24 21:05:33.258+03	
f127c304-05aa-151a-c64b-6885499c0265	2021-05-24 21:05:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:05:53.877+03	2021-05-24 21:05:53.882+03	
9b6407fb-8181-49db-4b8c-d2295e63c6b5	2021-05-24 21:06:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:06:24.877+03	2021-05-24 21:06:24.884+03	
0074f909-7953-caee-9f34-8a64a8199ebe	2021-05-24 21:06:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:06:44.877+03	2021-05-24 21:06:44.883+03	
eb6b2152-1b54-e2a0-d84e-58e98a10c7a7	2021-05-24 21:07:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:07:04.877+03	2021-05-24 21:07:04.885+03	
29e604b9-9b78-f7b2-7b0b-4025f395d62f	2021-05-24 21:07:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:07:24.877+03	2021-05-24 21:07:25.179+03	
1feed02f-e6e6-2794-da7e-84a765b27169	2021-05-24 21:07:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:07:44.877+03	2021-05-24 21:07:44.885+03	
d3260437-9cc0-6571-9251-e9fbb8d8fe7c	2021-05-24 21:08:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:08:05.877+03	2021-05-24 21:08:05.882+03	
8640cf85-ded7-aea1-3701-4a92a7948b44	2021-05-24 21:08:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:08:25.877+03	2021-05-24 21:08:25.883+03	
20776d21-ec32-2751-ed83-1a6020cd8b89	2021-05-24 21:08:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:08:45.877+03	2021-05-24 21:08:45.893+03	
1cd39e54-fa6a-ae17-6098-a25d50229141	2021-05-24 21:09:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:09:05.877+03	2021-05-24 21:09:05.891+03	
fec5cd26-35d3-99eb-81b4-54b7a9fea17a	2021-05-24 21:09:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:09:25.877+03	2021-05-24 21:09:25.943+03	
6f0932ab-25ec-b6d1-98a8-9c840818c735	2021-05-24 21:09:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:09:35.877+03	2021-05-24 21:09:35.898+03	
ef60ec68-8468-60ad-9f58-9624b9083206	2021-05-24 21:10:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 21:10:00.877+03	2021-05-24 21:10:00.884+03	ERROR
9c51433d-8850-08c9-4675-4ee00b10ba2e	2021-05-24 21:10:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:10:15.877+03	2021-05-24 21:10:15.885+03	
43689a2f-e92a-899d-555b-e5deca7fe581	2021-05-24 21:10:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:10:35.877+03	2021-05-24 21:10:35.885+03	
b35e266c-2181-1de0-e01e-d837a7d90ab0	2021-05-24 21:10:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:10:55.877+03	2021-05-24 21:10:55.884+03	
30a1d37e-c56c-05a0-124e-6fb9cb71a188	2021-05-24 21:11:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:11:15.877+03	2021-05-24 21:11:15.893+03	
e641343a-a60d-d35a-dae8-1c28059bed6e	2021-05-24 21:11:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:11:35.877+03	2021-05-24 21:11:35.885+03	
795fafb8-b7c7-1c50-81ea-282bc23b7daa	2021-05-24 21:11:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:11:55.877+03	2021-05-24 21:11:55.884+03	
b5644aff-ceda-e637-1615-fdc80452c088	2021-05-24 21:12:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:12:15.877+03	2021-05-24 21:12:15.884+03	
3a9a8a73-3af8-e37d-ae9e-e60e7a92d669	2021-05-24 21:12:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:12:35.877+03	2021-05-24 21:12:36.099+03	
ba93da24-e25c-1999-8fc3-92be0096b745	2021-05-24 21:12:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:12:55.877+03	2021-05-24 21:12:55.884+03	
cd86c5c1-1795-5a4f-201b-bf16c9db004c	2021-05-24 21:13:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:13:15.877+03	2021-05-24 21:13:15.883+03	
40140373-c2fb-6777-e202-f9abd1a57efa	2021-05-24 21:13:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:13:35.877+03	2021-05-24 21:13:35.884+03	
1c31a9fe-0a1c-e322-33d6-93691003cfc5	2021-05-24 21:13:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:13:55.877+03	2021-05-24 21:13:55.884+03	
a6ac3fdd-e90a-6abf-baa7-5af0e82b3fbd	2021-05-24 21:14:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:14:15.877+03	2021-05-24 21:14:15.886+03	
8131e339-3ea4-88c2-f58a-da290a7c0e08	2021-05-24 21:14:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:14:35.877+03	2021-05-24 21:14:35.883+03	
0e13ee30-ca41-363a-817e-0b35d8cc05db	2021-05-24 21:14:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:14:55.877+03	2021-05-24 21:14:55.884+03	
7a0625a0-115c-e833-cd30-295ca6d95f82	2021-05-24 21:15:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:15:15.877+03	2021-05-24 21:15:15.884+03	
cf05b7fb-340c-0908-e00b-3966147e6e70	2021-05-24 21:15:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:15:35.877+03	2021-05-24 21:15:35.882+03	
7f4b21a9-9b28-5ad9-561e-fd0ced77246b	2021-05-24 21:15:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:15:55.877+03	2021-05-24 21:15:55.885+03	
e13a1d36-077e-2dc0-7832-409deb8d57c1	2021-05-24 21:16:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:16:15.877+03	2021-05-24 21:16:15.93+03	
bf6c6140-4ed2-dd6a-3a01-4441206036bf	2021-05-24 21:16:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:16:35.877+03	2021-05-24 21:16:35.886+03	
5f967fd8-5b9c-633a-e116-f438dc8e027c	2021-05-24 21:16:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:16:55.877+03	2021-05-24 21:16:55.884+03	
dbf6e1ac-33bf-2960-80da-e5df12ea900c	2021-05-24 21:17:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:17:15.877+03	2021-05-24 21:17:15.884+03	
63d24bac-c8aa-2daf-5f21-07af04d9067c	2021-05-24 21:17:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:17:35.877+03	2021-05-24 21:17:35.885+03	
4178500c-7cc9-fb42-b8bc-48a8999212d0	2021-05-24 21:17:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:17:56.877+03	2021-05-24 21:17:56.886+03	
4fda2e80-facf-9049-76dd-4b778ea462a1	2021-05-24 21:18:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:18:16.877+03	2021-05-24 21:18:16.883+03	
21baf8a8-c86a-6ece-2d7d-a07c31c3b7a5	2021-05-24 21:18:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:18:36.877+03	2021-05-24 21:18:36.884+03	
5c26d5f6-ba2a-e6b1-9bc8-922a1af487b4	2021-05-24 21:18:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:18:56.877+03	2021-05-24 21:18:56.884+03	
8f82c3c9-a346-839e-051e-5dcacdd3f31d	2021-05-24 21:19:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:19:16.877+03	2021-05-24 21:19:16.883+03	
42214620-d483-cf11-e776-98d4b78cdc49	2021-05-24 21:19:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:19:36.877+03	2021-05-24 21:19:36.884+03	
f33d2cca-9acf-8574-5c5f-99ad3141725e	2021-05-24 21:19:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:19:56.877+03	2021-05-24 21:19:56.885+03	
fe09d434-12cc-e523-8d99-a142add3be02	2021-05-24 21:20:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:20:06.877+03	2021-05-24 21:20:06.927+03	
7ec0f56b-6a3d-b1af-fe8e-176fa36f8cda	2021-05-24 21:20:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:20:26.877+03	2021-05-24 21:20:26.885+03	
34727dab-08aa-aa42-eb91-fb2a2eabd5ee	2021-05-24 21:20:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:20:46.877+03	2021-05-24 21:20:46.885+03	
7d40d4ed-7eab-16ae-4506-3cfe4368cb27	2021-05-24 21:21:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:21:06.878+03	2021-05-24 21:21:06.886+03	
304e25a1-bf8a-61ec-2029-16e63942a6ab	2021-05-24 21:21:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:21:27.877+03	2021-05-24 21:21:27.887+03	
70931b60-48b7-8742-4ff8-f87c125c1b00	2021-05-24 21:21:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:21:48.877+03	2021-05-24 21:21:48.884+03	
1730d5c0-573d-2086-1918-07888a676b56	2021-05-24 21:22:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:22:08.877+03	2021-05-24 21:22:08.885+03	
80dfbbf5-443f-e847-a130-d07726f82448	2021-05-24 21:22:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:22:28.877+03	2021-05-24 21:22:28.883+03	
0181b0ff-e7ba-1d1d-9058-8e595fab61cb	2021-05-24 21:22:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:22:48.877+03	2021-05-24 21:22:48.884+03	
e50e5b02-a80f-23c7-f394-149ee2e1ffb6	2021-05-24 21:23:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:23:08.877+03	2021-05-24 21:23:08.884+03	
d3e45bf0-956b-22fa-80b3-9e21188ad6fc	2021-05-24 21:23:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:23:28.877+03	2021-05-24 21:23:28.885+03	
fad420aa-d199-08cc-d95c-e6f15054c9ff	2021-05-24 21:23:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:23:48.877+03	2021-05-24 21:23:48.882+03	
18692586-4541-d64e-bb61-681bde7e9b6c	2021-05-24 21:24:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:24:08.877+03	2021-05-24 21:24:08.885+03	
5674bb61-ec6c-c7e4-543b-8da52866f150	2021-05-24 21:24:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:24:28.877+03	2021-05-24 21:24:28.969+03	
19cddd81-00a6-6d1b-ce38-f2ff56473719	2021-05-24 21:24:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:24:48.877+03	2021-05-24 21:24:49.199+03	
6d2efa3b-7caf-668f-a58d-e0b528840179	2021-05-24 21:25:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:25:08.877+03	2021-05-24 21:25:08.884+03	
35538fdc-6d60-7488-b952-04f70f126589	2021-05-24 21:25:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:25:28.877+03	2021-05-24 21:25:28.984+03	
3fef9db4-3b4f-4b45-7c81-e0c78cd2a401	2021-05-24 21:25:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:25:48.877+03	2021-05-24 21:25:48.884+03	
da988c94-2b89-2c38-4404-05481c449825	2021-05-24 21:26:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:26:08.877+03	2021-05-24 21:26:08.883+03	
45ba70e2-5afb-7103-0b7e-1ddb63af8e62	2021-05-24 21:26:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:26:28.877+03	2021-05-24 21:26:28.884+03	
8b3f31d2-ec8f-6485-5993-00572bb447b4	2021-05-24 21:26:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:26:48.877+03	2021-05-24 21:26:49.14+03	
bff72d0f-20bd-c860-547c-4c91847ed41d	2021-05-24 21:27:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:27:08.877+03	2021-05-24 21:27:08.885+03	
35374b08-48be-99c7-a9ec-3b8e968b7307	2021-05-24 21:27:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:27:28.877+03	2021-05-24 21:27:28.884+03	
95e022dd-2835-71d8-39eb-e8c5803fc7f3	2021-05-24 21:27:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:27:48.877+03	2021-05-24 21:27:48.885+03	
1c03848f-3f0e-aa40-6f94-a1ba1d512efd	2021-05-24 21:28:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:28:08.877+03	2021-05-24 21:28:08.884+03	
0903c929-3561-b44d-529b-e909d8633481	2021-05-24 21:28:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:28:28.877+03	2021-05-24 21:28:28.884+03	
26ee80e2-7e93-b192-7fd7-ef7418335f79	2021-05-24 21:28:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:28:48.877+03	2021-05-24 21:28:48.883+03	
b3c8e71f-8117-d810-a2e1-e3797ea6677d	2021-05-24 21:29:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:29:08.877+03	2021-05-24 21:29:08.884+03	
48517bdb-6d6d-b9a2-200d-ebe2370f77f0	2021-05-24 21:29:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:29:28.877+03	2021-05-24 21:29:28.883+03	
2c283713-4b90-2bb8-9bc1-429d9db36144	2021-05-24 21:29:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:29:48.877+03	2021-05-24 21:29:48.883+03	
4e3beee6-4034-a8de-c81b-a350da34aa7b	2021-05-24 21:30:00.879	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 21:30:00.879+03	2021-05-24 21:30:00.884+03	ERROR
861e60e8-8357-68ea-6441-4a7f32b9549b	2021-05-24 21:30:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:30:18.877+03	2021-05-24 21:30:18.884+03	
bebf1c4b-7625-b3fe-0d61-0658bb37133e	2021-05-24 21:30:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:30:38.877+03	2021-05-24 21:30:38.884+03	
c33ae587-08e2-0ff1-fa93-179dd37010f2	2021-05-24 21:30:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:30:58.877+03	2021-05-24 21:30:58.886+03	
13431260-ec70-7d66-0ddf-f331d6035521	2021-05-24 21:31:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:31:18.877+03	2021-05-24 21:31:18.882+03	
32b589c3-0b5d-6f4e-14f0-103d95485cf4	2021-05-24 21:31:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:31:38.877+03	2021-05-24 21:31:38.882+03	
7f497962-32ca-72df-9c8d-897880062ccb	2021-05-24 21:11:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:11:25.877+03	2021-05-24 21:11:26.2+03	
fd9c23a7-a8f2-55c0-c64a-5587b3109d94	2021-05-24 21:11:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:11:45.877+03	2021-05-24 21:11:45.885+03	
9bfb8e38-c5be-280e-dfc6-f0d244519372	2021-05-24 21:12:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:12:05.877+03	2021-05-24 21:12:05.887+03	
a76695a7-33af-e88d-828e-fa3bdf936eb3	2021-05-24 21:12:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:12:25.877+03	2021-05-24 21:12:25.886+03	
a599d717-70be-c479-9a76-f5e53594ffb6	2021-05-24 21:12:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:12:45.877+03	2021-05-24 21:12:45.884+03	
f0840768-68c0-0ec4-e2a5-c1ae0548e9ad	2021-05-24 21:13:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:13:05.877+03	2021-05-24 21:13:05.882+03	
eec96ef8-fbb5-ad53-3d6b-5b453d74641a	2021-05-24 21:13:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:13:25.877+03	2021-05-24 21:13:25.929+03	
17402d24-47cb-8c43-75cc-61672edeab7c	2021-05-24 21:13:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:13:45.877+03	2021-05-24 21:13:45.884+03	
fa22baf4-e9ef-d04f-62bc-1c814536a4bd	2021-05-24 21:14:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:14:05.877+03	2021-05-24 21:14:05.887+03	
cba99a95-a18c-e530-c0d1-95b7a204f25d	2021-05-24 21:14:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:14:25.877+03	2021-05-24 21:14:25.883+03	
2f1dce40-6a68-c108-3d7d-9372fc9fddf2	2021-05-24 21:14:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:14:45.877+03	2021-05-24 21:14:45.885+03	
e51bebb1-7b40-74a0-966d-e582bab6479d	2021-05-24 21:15:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:15:05.877+03	2021-05-24 21:15:05.885+03	
ecea4781-a3ce-1b17-9971-6a83f1a468d1	2021-05-24 21:15:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:15:25.877+03	2021-05-24 21:15:25.89+03	
1a66785e-5624-212e-6d53-6befd77553b2	2021-05-24 21:15:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:15:45.877+03	2021-05-24 21:15:45.884+03	
be348f93-9e0d-26d5-04a7-0ff7bb4196fa	2021-05-24 21:16:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:16:05.877+03	2021-05-24 21:16:05.885+03	
eb5581d2-2604-d480-3b6f-d3902c5175b4	2021-05-24 21:16:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:16:25.877+03	2021-05-24 21:16:25.883+03	
31320aed-861c-2ec2-4544-b1920b46994a	2021-05-24 21:16:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:16:45.877+03	2021-05-24 21:16:45.885+03	
e82f587b-9581-1d71-1476-d6db2fa50c5f	2021-05-24 21:17:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:17:05.877+03	2021-05-24 21:17:05.885+03	
e7eccbc2-4001-2060-7cea-cabecd9e782f	2021-05-24 21:17:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:17:25.877+03	2021-05-24 21:17:25.884+03	
8bed067c-b38b-3ca3-27a8-b4a59fba1c66	2021-05-24 21:17:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:17:45.878+03	2021-05-24 21:17:45.885+03	
94cb16b7-c8f2-1172-5254-90b90ca559b5	2021-05-24 21:18:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:18:06.877+03	2021-05-24 21:18:06.884+03	
c05fd0fa-39f8-f45c-2de8-20d51a6614d1	2021-05-24 21:18:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:18:26.877+03	2021-05-24 21:18:26.884+03	
51c23c20-5a3a-0ac9-ea73-8223e7e81a71	2021-05-24 21:18:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:18:46.877+03	2021-05-24 21:18:46.883+03	
32aaa24c-8ee6-b02d-ccc7-9f9be884ca4a	2021-05-24 21:19:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:19:06.877+03	2021-05-24 21:19:07.114+03	
936fb8a1-615a-150e-085a-0a7f4f9c9179	2021-05-24 21:19:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:19:26.877+03	2021-05-24 21:19:26.884+03	
f23f7d59-421b-205f-48c6-f5ba152e646b	2021-05-24 21:19:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:19:46.877+03	2021-05-24 21:19:46.883+03	
a35d0837-a586-bc55-ba65-9ae375357c98	2021-05-24 21:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 21:20:00.877+03	2021-05-24 21:20:00.881+03	ERROR
0e37daa7-6a5f-208f-5e0e-61076a1c9d78	2021-05-24 21:20:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:20:16.877+03	2021-05-24 21:20:17.008+03	
b662fcac-9e0c-51ba-f951-b6d0783033b9	2021-05-24 21:20:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:20:36.877+03	2021-05-24 21:20:36.885+03	
a30ba572-efb7-1f35-7a03-fac185e83b73	2021-05-24 21:20:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:20:56.877+03	2021-05-24 21:20:56.884+03	
2f8cb296-3346-8108-4771-fe15cdf3d511	2021-05-24 21:21:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:21:17.877+03	2021-05-24 21:21:17.884+03	
009ccab7-5781-a74f-6245-3d691416265e	2021-05-24 21:21:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:21:38.877+03	2021-05-24 21:21:38.883+03	
37c77a0b-6bbc-301b-1c11-0655217b969c	2021-05-24 21:21:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:21:58.877+03	2021-05-24 21:21:58.885+03	
925406da-aa15-b27e-f695-45ab96ae4ffb	2021-05-24 21:22:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:22:18.877+03	2021-05-24 21:22:18.884+03	
0a20ee6c-acca-9c94-2360-385ee40a6e19	2021-05-24 21:22:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:22:38.877+03	2021-05-24 21:22:38.884+03	
e1623d4e-7b06-ae1f-7f27-7ebb5054856d	2021-05-24 21:22:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:22:58.877+03	2021-05-24 21:22:58.887+03	
869ee6bd-42b1-2b7f-bf51-c619c716e26e	2021-05-24 21:23:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:23:18.877+03	2021-05-24 21:23:18.885+03	
ac592719-6452-64ba-dd53-562e126b2974	2021-05-24 21:23:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:23:38.877+03	2021-05-24 21:23:38.886+03	
55beaec4-61a3-e8ee-1066-534d3a4fc85c	2021-05-24 21:23:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:23:58.877+03	2021-05-24 21:23:58.885+03	
c450c94b-62f0-253d-8f4d-a9402fe65600	2021-05-24 21:24:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:24:18.877+03	2021-05-24 21:24:18.884+03	
5bcc8691-7b4f-30e5-2ca9-15ae66c23ceb	2021-05-24 21:24:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:24:38.877+03	2021-05-24 21:24:38.884+03	
bd07ad5c-afbe-44de-998e-4a830c4058c5	2021-05-24 21:24:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:24:58.877+03	2021-05-24 21:24:58.883+03	
fd340e15-3b24-4e27-7dec-6b43e30be20c	2021-05-24 21:25:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:25:18.877+03	2021-05-24 21:25:18.883+03	
84a76f63-edb0-6fb2-1839-d9e91d3cba07	2021-05-24 21:25:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:25:38.877+03	2021-05-24 21:25:38.883+03	
4ceb5668-ab3c-eea9-a836-7a619ce1fe04	2021-05-24 21:25:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:25:58.877+03	2021-05-24 21:25:58.883+03	
7ef9e3ca-180c-6a1d-9dde-0ab3eee0f8ea	2021-05-24 21:26:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:26:18.877+03	2021-05-24 21:26:18.882+03	
8486eae3-8c09-fa57-e8d3-f15cfde78347	2021-05-24 21:26:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:26:38.877+03	2021-05-24 21:26:38.884+03	
9aacd652-df0c-9988-4023-ac5ccab1d6e1	2021-05-24 21:26:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:26:58.877+03	2021-05-24 21:26:58.883+03	
3d2e6bce-0b22-535f-4ced-6a7643af758a	2021-05-24 21:27:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:27:18.877+03	2021-05-24 21:27:18.889+03	
c6775d49-88a8-10b6-3011-006c61edd673	2021-05-24 21:27:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:27:38.877+03	2021-05-24 21:27:38.885+03	
ecc26ab9-ed07-6ad6-5303-31f40d4fe3e7	2021-05-24 21:27:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:27:58.877+03	2021-05-24 21:27:58.885+03	
283a07ad-6eaf-2f53-3d8e-f793e6af995e	2021-05-24 21:28:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:28:18.877+03	2021-05-24 21:28:18.883+03	
3f98dad5-a63c-7a2b-16e6-034c64964b2a	2021-05-24 21:28:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:28:38.877+03	2021-05-24 21:28:38.885+03	
097a77b6-484e-1534-90f2-3f23a0157d20	2021-05-24 21:28:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:28:58.877+03	2021-05-24 21:28:58.884+03	
ac6cf554-a117-1f39-5dcc-0a81bf310a0c	2021-05-24 21:29:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:29:18.877+03	2021-05-24 21:29:18.885+03	
18b66943-2690-73f8-c427-f4aecad924fd	2021-05-24 21:29:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:29:38.877+03	2021-05-24 21:29:38.885+03	
37218389-7751-c18f-6e5e-a1a284d43746	2021-05-24 21:29:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:29:58.877+03	2021-05-24 21:29:58.939+03	
efa31d12-29f4-8716-99dd-e7e99e13182d	2021-05-24 21:30:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:30:08.877+03	2021-05-24 21:30:08.885+03	
99927259-e334-47cd-5dee-77323e9e7025	2021-05-24 21:30:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:30:28.877+03	2021-05-24 21:30:28.883+03	
64acadcf-d27e-978b-6dd9-1221182991be	2021-05-24 21:30:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:30:48.877+03	2021-05-24 21:30:48.884+03	
0db22d9f-717f-b942-46bf-1e088cd8b2b7	2021-05-24 21:31:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:31:08.877+03	2021-05-24 21:31:08.884+03	
85403f05-b9b4-504c-6465-d80e69cff3d7	2021-05-24 21:31:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:31:28.877+03	2021-05-24 21:31:28.882+03	
eae57256-e6b7-ed58-0df1-2e0783ebae3f	2021-05-24 21:31:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:31:49.876+03	2021-05-24 21:31:50.119+03	
03aa9546-643b-5618-6af0-30444b85bcac	2021-05-24 21:31:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:31:59.877+03	2021-05-24 21:31:59.882+03	
0d57c647-41c1-9a5e-91be-900808807ba8	2021-05-24 21:32:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:32:19.877+03	2021-05-24 21:32:19.882+03	
68bc7a56-c0bd-6d55-8d29-48056f4f9489	2021-05-24 21:32:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:32:40.877+03	2021-05-24 21:32:40.883+03	
4f5c1348-4827-0d8e-9bf2-7d98486035f6	2021-05-24 21:33:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:33:00.877+03	2021-05-24 21:33:00.883+03	
8bbe10a3-7111-1271-bf4f-d5c8bc36f725	2021-05-24 21:33:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:33:20.877+03	2021-05-24 21:33:20.884+03	
51e6dcb4-62f1-f4f5-8429-3cfe771d32b2	2021-05-24 21:33:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:33:40.877+03	2021-05-24 21:33:40.883+03	
b22812ee-e8af-baa0-680c-39603459d2af	2021-05-24 21:34:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:34:00.877+03	2021-05-24 21:34:00.882+03	
9670fc7c-e127-bd32-f621-428d9e94d838	2021-05-24 21:34:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:34:20.877+03	2021-05-24 21:34:20.887+03	
6dd5a63f-b28f-c319-7b44-2084d544da29	2021-05-24 21:34:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:34:40.877+03	2021-05-24 21:34:41.161+03	
59adea53-e606-56fb-dcf1-9a1739ffc2f0	2021-05-24 21:35:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:35:00.877+03	2021-05-24 21:35:00.883+03	
d9659229-ecb1-fb72-e5c1-bc9b184a3b82	2021-05-24 21:35:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:35:20.877+03	2021-05-24 21:35:20.882+03	
fa52384c-5f15-2d54-dee8-1be19a1958e6	2021-05-24 21:35:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:35:30.877+03	2021-05-24 21:35:30.882+03	
68b0a61e-6018-b27b-10e4-12517e309c37	2021-05-24 21:35:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:35:50.877+03	2021-05-24 21:35:50.884+03	
58b7d21c-3ff6-613e-23f2-bc084d81abfa	2021-05-24 21:36:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:36:10.877+03	2021-05-24 21:36:10.882+03	
7fd513e5-9ab7-a5b5-bf1e-e71bd370dc52	2021-05-24 21:36:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:36:30.877+03	2021-05-24 21:36:30.884+03	
b270a3c5-6ec2-2fb9-6660-19ecccff1e31	2021-05-24 21:36:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:36:50.877+03	2021-05-24 21:36:50.883+03	
b5fea5f4-7875-ac01-6637-db883d251a14	2021-05-24 21:37:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:37:10.877+03	2021-05-24 21:37:10.885+03	
6275fd60-682d-c5be-a8f9-39b256b82492	2021-05-24 21:37:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:37:30.877+03	2021-05-24 21:37:31.181+03	
b9cbdcf4-21e2-b701-84ac-0170d937acd4	2021-05-24 21:37:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:37:50.877+03	2021-05-24 21:37:50.885+03	
dcacf968-6148-086e-5311-0e8111875fd9	2021-05-24 21:38:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:38:10.877+03	2021-05-24 21:38:10.886+03	
6771a3b0-068a-b847-1a55-109f0a17e19e	2021-05-24 21:38:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:38:30.877+03	2021-05-24 21:38:31.193+03	
cd5e4b02-78fc-b15b-3532-284a992ffc48	2021-05-24 21:38:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:38:50.877+03	2021-05-24 21:38:50.884+03	
624ffb3b-ede4-7c9b-5966-706831e6df42	2021-05-24 21:39:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:39:10.877+03	2021-05-24 21:39:10.948+03	
2eaa9599-aa7d-af06-7a80-253fdb65e697	2021-05-24 21:39:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:39:30.877+03	2021-05-24 21:39:30.888+03	
297a9764-a85e-6ed6-1f86-f73ca5dec96b	2021-05-24 21:39:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:39:50.877+03	2021-05-24 21:39:51.179+03	
f2c59961-a292-b3b8-785e-40ad49392919	2021-05-24 21:40:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:40:11.877+03	2021-05-24 21:40:11.885+03	
c069a909-ce4b-2e59-7e26-25868b917a88	2021-05-24 21:40:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:40:31.877+03	2021-05-24 21:40:31.882+03	
c16c28c7-f294-9393-b8e7-6f8700ad719b	2021-05-24 21:40:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:40:51.877+03	2021-05-24 21:40:51.884+03	
a6fbb1b2-b876-b2e3-1aa8-8bade868f5f3	2021-05-24 21:41:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:41:11.877+03	2021-05-24 21:41:11.9+03	
9ec88341-4f6c-7bb9-8c2b-80b3cd6da19a	2021-05-24 21:41:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:41:31.877+03	2021-05-24 21:41:31.884+03	
ddaa5085-3d76-c884-fb02-b9b76d21498a	2021-05-24 21:41:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:41:51.877+03	2021-05-24 21:41:51.885+03	
163731c5-6642-b4a3-abbd-6ddfb3d166c5	2021-05-24 21:42:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:42:11.877+03	2021-05-24 21:42:11.883+03	
2b347394-c1d7-5cf5-06ca-0a48379225bf	2021-05-24 21:42:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:42:31.877+03	2021-05-24 21:42:31.883+03	
211f7687-6ef1-e427-3d4d-5cb5cad6220a	2021-05-24 21:42:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:42:51.877+03	2021-05-24 21:42:51.883+03	
fd35714f-1f42-e07a-8dab-0e9efdde491b	2021-05-24 21:43:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:43:11.877+03	2021-05-24 21:43:11.885+03	
326f9513-8328-58df-b2b0-b56676ff0497	2021-05-24 21:43:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:43:31.877+03	2021-05-24 21:43:31.892+03	
454d054c-58af-278a-efb1-41412710eacd	2021-05-24 21:43:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:43:51.877+03	2021-05-24 21:43:51.885+03	
a91e9477-50c7-4329-db22-846d5502daca	2021-05-24 21:44:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:44:11.877+03	2021-05-24 21:44:11.888+03	
f2bbaae2-bfd3-ee18-0cdf-aff591f008f8	2021-05-24 21:44:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:44:31.877+03	2021-05-24 21:44:31.884+03	
9c5356de-7613-2180-35be-1719d1723f22	2021-05-24 21:44:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:44:51.877+03	2021-05-24 21:44:51.887+03	
7aef95aa-1b83-136e-6d9f-d82eb5e3ac96	2021-05-24 21:45:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:45:11.877+03	2021-05-24 21:45:11.883+03	
799b584e-4f9e-155e-5858-d410d9f93d4d	2021-05-24 21:45:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:45:31.877+03	2021-05-24 21:45:31.883+03	
66412cb1-4bdb-4668-a532-34c37e9eb054	2021-05-24 21:45:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:45:51.877+03	2021-05-24 21:45:51.884+03	
5dde74cf-b9ec-aa51-60ce-c34d8c640341	2021-05-24 21:46:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:46:11.877+03	2021-05-24 21:46:11.884+03	
dd9ab2b1-eaef-2de0-c428-62b56f53e467	2021-05-24 21:46:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:46:31.877+03	2021-05-24 21:46:31.883+03	
0f9f24cb-adbe-c7b7-aeac-6d788b724e04	2021-05-24 21:46:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:46:51.877+03	2021-05-24 21:46:51.884+03	
f7671c1d-76d8-c03c-3bf1-00c8acd6ee8f	2021-05-24 21:47:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:47:11.877+03	2021-05-24 21:47:11.883+03	
1f86e66b-1fdc-4c42-6e32-37feb1c4db71	2021-05-24 21:47:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:47:31.877+03	2021-05-24 21:47:31.884+03	
89aaefb3-64e7-ec5d-bcfd-e3dd84a10a8b	2021-05-24 21:47:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:47:51.877+03	2021-05-24 21:47:51.884+03	
043f3074-27c8-f48c-d338-59dfa3ce03cf	2021-05-24 21:48:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:48:11.877+03	2021-05-24 21:48:11.883+03	
ec21f45d-382d-351f-e45d-d1919f5ca29d	2021-05-24 21:48:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:48:31.877+03	2021-05-24 21:48:31.885+03	
f6d595b8-5bf8-31ff-2bc2-e2646b596b16	2021-05-24 21:48:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:48:51.877+03	2021-05-24 21:48:51.883+03	
909ac0ab-b03c-17bc-26c1-2f9400d638fb	2021-05-24 21:49:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:49:11.877+03	2021-05-24 21:49:11.885+03	
f2c9cfe0-52cb-6426-432c-79dfad47fd6f	2021-05-24 21:49:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:49:31.877+03	2021-05-24 21:49:31.883+03	
2f2f6181-2203-6adc-ff81-3cc5d020b576	2021-05-24 21:49:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:49:51.877+03	2021-05-24 21:49:51.883+03	
3078895c-11b6-6d3f-170c-27719a34efb4	2021-05-24 21:50:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:50:01.877+03	2021-05-24 21:50:01.884+03	
9d49fb6f-6860-60a5-3dd2-ad7c2d8ded9e	2021-05-24 21:50:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:50:21.877+03	2021-05-24 21:50:21.883+03	
ec4dd733-4f7e-0f8b-d4f7-64dfe47a4237	2021-05-24 21:50:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:50:41.877+03	2021-05-24 21:50:41.884+03	
3349797d-8903-b3fc-a02a-c1dab21ec9bb	2021-05-24 21:51:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:51:01.877+03	2021-05-24 21:51:01.883+03	
ddf50785-362d-70a6-4253-5e7a256f47a6	2021-05-24 21:51:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:51:21.877+03	2021-05-24 21:51:21.884+03	
ef0d62a6-9e4d-3f1f-174c-72bbc78e184a	2021-05-24 21:51:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:51:41.877+03	2021-05-24 21:51:42.197+03	
ab362c01-276a-bb31-e224-ca0919cfb77a	2021-05-24 21:52:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:52:01.877+03	2021-05-24 21:52:01.884+03	
a64df39f-6556-a645-d2a5-49049c893307	2021-05-24 21:52:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:52:21.877+03	2021-05-24 21:52:22.17+03	
cadf0a15-da2c-a157-edeb-82edb3e94937	2021-05-24 21:32:09.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:32:09.877+03	2021-05-24 21:32:09.885+03	
77298de8-cd9e-ca4c-397e-830e8165fd02	2021-05-24 21:32:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:32:30.877+03	2021-05-24 21:32:30.882+03	
61ad7b5f-50cd-bd63-44a9-ccc340d86148	2021-05-24 21:32:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:32:50.877+03	2021-05-24 21:32:50.884+03	
c630174c-fa3a-36c8-5ab0-daa96671332b	2021-05-24 21:33:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:33:10.877+03	2021-05-24 21:33:10.883+03	
c00affd5-5ce1-3e30-3215-d0bda877297e	2021-05-24 21:33:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:33:30.877+03	2021-05-24 21:33:30.883+03	
71be83b4-6a86-c6b0-1499-5db8b76c5b9e	2021-05-24 21:33:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:33:50.877+03	2021-05-24 21:33:50.882+03	
2358475f-356d-acb4-d2bc-021a9802131b	2021-05-24 21:34:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:34:10.877+03	2021-05-24 21:34:10.883+03	
09a98984-d656-25cb-b015-c4e54d9b4f56	2021-05-24 21:34:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:34:30.877+03	2021-05-24 21:34:31.201+03	
2f818179-07a7-847d-0473-a0a7fd78d118	2021-05-24 21:34:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:34:50.877+03	2021-05-24 21:34:50.884+03	
c9cb3aa9-99de-67b3-ec44-06de30e4b4df	2021-05-24 21:35:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:35:10.877+03	2021-05-24 21:35:10.883+03	
ab843c26-5dc2-feb1-5435-96ed47f40c29	2021-05-24 21:35:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:35:40.877+03	2021-05-24 21:35:40.885+03	
4eede586-cd73-197f-f811-a976f205e09f	2021-05-24 21:36:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:36:00.877+03	2021-05-24 21:36:00.883+03	
062f8612-ca83-59b8-488d-cb9c216a31c2	2021-05-24 21:36:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:36:20.877+03	2021-05-24 21:36:20.883+03	
5a5a9c4c-224e-5de9-b92b-8aa1c1762ae2	2021-05-24 21:36:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:36:40.877+03	2021-05-24 21:36:40.884+03	
7c6e6d0b-4a15-fd3d-6ff8-944554486eb3	2021-05-24 21:37:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:37:00.877+03	2021-05-24 21:37:00.882+03	
b1fac074-9e15-8ace-d822-2f1c45146101	2021-05-24 21:37:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:37:20.877+03	2021-05-24 21:37:20.883+03	
fcc65b87-d782-a50b-8586-4da06e7eb1c2	2021-05-24 21:37:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:37:40.877+03	2021-05-24 21:37:40.886+03	
56a5122a-9375-bb57-063d-a5d044e3195e	2021-05-24 21:38:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:38:00.877+03	2021-05-24 21:38:00.883+03	
2d9b03c7-a8dc-4f2a-dc56-5050fa2411c6	2021-05-24 21:38:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:38:20.877+03	2021-05-24 21:38:20.883+03	
7614e5c7-9575-43b7-e4e1-dd4166998210	2021-05-24 21:38:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:38:40.877+03	2021-05-24 21:38:40.886+03	
e022b693-38c3-1b79-f774-57b2a06baac9	2021-05-24 21:39:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:39:00.877+03	2021-05-24 21:39:00.883+03	
439ce846-5fea-edf9-e2c0-80714a106dd5	2021-05-24 21:39:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:39:20.877+03	2021-05-24 21:39:20.883+03	
a03e72fe-cb3f-8f0b-e7cb-f6543bd29eee	2021-05-24 21:39:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:39:40.877+03	2021-05-24 21:39:40.884+03	
029037b2-a582-a779-a131-b121c2342920	2021-05-24 21:40:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:40:00.877+03	2021-05-24 21:40:01.315+03	
7fa93787-c7fa-bef8-7361-c8d8142fdaa0	2021-05-24 21:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 21:40:00.877+03	2021-05-24 21:40:01.542+03	ERROR
aecb327a-fbc7-9696-f086-d4d4cd7277de	2021-05-24 21:40:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:40:21.877+03	2021-05-24 21:40:21.884+03	
749725a1-dc57-aa3f-81b1-6e687b1ea521	2021-05-24 21:40:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:40:41.877+03	2021-05-24 21:40:41.884+03	
7119c2c0-f98a-6582-c733-0d7939cfb364	2021-05-24 21:41:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:41:01.877+03	2021-05-24 21:41:01.885+03	
7f9349db-db49-d9bd-18cb-11e16df5fc14	2021-05-24 21:41:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:41:21.877+03	2021-05-24 21:41:21.883+03	
e20a00eb-6cfd-4e20-d937-302b9d0287ba	2021-05-24 21:41:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:41:41.877+03	2021-05-24 21:41:41.883+03	
c672ea1e-904e-dd86-138c-0579a9ccd5b2	2021-05-24 21:42:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:42:01.877+03	2021-05-24 21:42:01.883+03	
dd48ed02-38c1-aa7b-08d9-63d1ed44a2a5	2021-05-24 21:42:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:42:21.877+03	2021-05-24 21:42:21.883+03	
6047b93b-2a5c-48d2-1a80-6b169bfee73d	2021-05-24 21:42:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:42:41.877+03	2021-05-24 21:42:41.887+03	
dc6b0ad5-5ab5-0a15-2953-2e5c204e8f53	2021-05-24 21:43:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:43:01.877+03	2021-05-24 21:43:01.883+03	
cfa6d2e0-d9a0-eaa1-64f9-7b1ca74ab7a2	2021-05-24 21:43:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:43:21.877+03	2021-05-24 21:43:21.884+03	
9ca43fee-75e5-9225-2d01-1ce82056350d	2021-05-24 21:43:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:43:41.877+03	2021-05-24 21:43:41.884+03	
587fed94-41fc-e412-3ecc-eff554dc7914	2021-05-24 21:44:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:44:01.877+03	2021-05-24 21:44:01.888+03	
2f818c24-ce4b-1546-b46a-974b7061ff82	2021-05-24 21:44:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:44:21.877+03	2021-05-24 21:44:21.886+03	
74c9f702-1278-825d-5b26-97e9ceabf661	2021-05-24 21:44:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:44:41.877+03	2021-05-24 21:44:41.883+03	
a523dcbd-9b60-8093-0884-b06a36444693	2021-05-24 21:45:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:45:01.877+03	2021-05-24 21:45:01.885+03	
14695db7-d8ac-d0bc-bf67-500c4310a59a	2021-05-24 21:45:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:45:21.877+03	2021-05-24 21:45:21.884+03	
e70fc7c3-28c4-9f9e-ba93-961300062905	2021-05-24 21:45:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:45:41.877+03	2021-05-24 21:45:41.883+03	
7b1bef87-c591-f7f8-9f00-af89cbb21442	2021-05-24 21:46:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:46:01.877+03	2021-05-24 21:46:01.882+03	
f16a4812-44c0-5111-0f3a-499fde9c078f	2021-05-24 21:46:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:46:21.877+03	2021-05-24 21:46:21.883+03	
c87576ec-c293-0287-e411-d227fe68d7e5	2021-05-24 21:46:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:46:41.877+03	2021-05-24 21:46:41.883+03	
73c858c3-40ac-becb-d79e-6bf1eefa7772	2021-05-24 21:47:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:47:01.877+03	2021-05-24 21:47:01.883+03	
851b2a40-6e1f-b69a-86de-814c8dc724fc	2021-05-24 21:47:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:47:21.877+03	2021-05-24 21:47:21.884+03	
3de70162-0bab-5060-0108-600926e8ceae	2021-05-24 21:47:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:47:41.877+03	2021-05-24 21:47:41.883+03	
db48ff2f-8a45-33c2-e28f-7645f744b3e1	2021-05-24 21:48:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:48:01.877+03	2021-05-24 21:48:01.884+03	
87ce64d7-f27a-24bd-7134-6f8070265313	2021-05-24 21:48:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:48:21.877+03	2021-05-24 21:48:21.883+03	
58296354-55e4-71f6-90fc-0782cb94e137	2021-05-24 21:48:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:48:41.877+03	2021-05-24 21:48:41.884+03	
f30ab3e1-6efa-624b-6c0b-31a80c3deeeb	2021-05-24 21:49:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:49:01.877+03	2021-05-24 21:49:01.885+03	
2fcae7b6-9d99-57c4-c089-ef7878246a18	2021-05-24 21:49:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:49:21.877+03	2021-05-24 21:49:21.884+03	
f0be9400-e106-95ff-144c-615d454bf098	2021-05-24 21:49:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:49:41.877+03	2021-05-24 21:49:41.883+03	
fedccc98-b6f0-0d54-35fb-1193f6839e5e	2021-05-24 21:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 21:50:00.877+03	2021-05-24 21:50:01.168+03	ERROR
125bfcf2-9a47-e648-f7ed-a7d0ea2566e2	2021-05-24 21:50:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:50:11.877+03	2021-05-24 21:50:11.886+03	
76179db5-d631-233d-e18f-95b442da1f18	2021-05-24 21:50:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:50:31.877+03	2021-05-24 21:50:31.885+03	
54a20e57-2720-420e-5f49-20afc0f1f81f	2021-05-24 21:50:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:50:51.877+03	2021-05-24 21:50:51.882+03	
7f9b1802-7ffb-2c17-d315-c1f51183c26e	2021-05-24 21:51:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:51:11.877+03	2021-05-24 21:51:11.883+03	
1391e741-c24d-78a4-a869-6ce4f3405557	2021-05-24 21:51:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:51:31.877+03	2021-05-24 21:51:31.884+03	
8c1b1ec8-4ace-ffda-3644-eac001bfc4ac	2021-05-24 21:51:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:51:51.877+03	2021-05-24 21:51:51.884+03	
0fde9c39-edd1-4074-bb5f-674a391796a6	2021-05-24 21:52:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:52:11.877+03	2021-05-24 21:52:11.882+03	
fe258778-051e-725e-788a-2957678a5bc4	2021-05-24 21:52:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:52:31.877+03	2021-05-24 21:52:31.884+03	
b2fede7b-dc6f-abae-361a-20db6789a6c3	2021-05-24 21:52:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:52:41.877+03	2021-05-24 21:52:41.884+03	
5521e18c-a9f2-70a0-59ee-a7e7ed4e1e1d	2021-05-24 21:53:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:53:01.877+03	2021-05-24 21:53:01.886+03	
5d720503-934e-010b-2459-d18fa9cf746b	2021-05-24 21:53:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:53:21.877+03	2021-05-24 21:53:22.168+03	
6a697def-084e-8355-b459-f0cef4e32a7f	2021-05-24 21:53:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:53:41.877+03	2021-05-24 21:53:41.886+03	
b96be238-ce5c-601e-032d-9d1e3560935e	2021-05-24 21:54:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:54:01.877+03	2021-05-24 21:54:01.884+03	
28c4596a-7eff-b0d5-86f5-01b8c5978d91	2021-05-24 21:54:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:54:21.877+03	2021-05-24 21:54:21.883+03	
a88c26ba-e72a-ae39-87dc-eb39de41c109	2021-05-24 21:54:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:54:41.877+03	2021-05-24 21:54:41.883+03	
e5971394-ecb2-b9e1-1051-2b9d3df1a4e8	2021-05-24 21:55:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:55:01.877+03	2021-05-24 21:55:01.888+03	
af24f64e-5b40-c55f-0e05-47bb639957f4	2021-05-24 21:55:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:55:21.877+03	2021-05-24 21:55:21.884+03	
a00a1959-8733-adbd-5a7a-eed43bcb096e	2021-05-24 21:55:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:55:41.877+03	2021-05-24 21:55:41.883+03	
237b2c69-cbd6-7bb7-d078-b02539bcbece	2021-05-24 21:56:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:56:01.877+03	2021-05-24 21:56:01.884+03	
c835cad7-a93f-8918-d213-bde29aba29e2	2021-05-24 21:56:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:56:21.877+03	2021-05-24 21:56:21.884+03	
8df6a783-19e5-c75f-8319-1a5f963e26c1	2021-05-24 21:56:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:56:41.877+03	2021-05-24 21:56:41.883+03	
a1529ea5-fd38-d35a-964c-428cc570534c	2021-05-24 21:57:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:57:01.877+03	2021-05-24 21:57:01.885+03	
cec01722-5323-761a-7d0e-3462fc8e5969	2021-05-24 21:57:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:57:21.877+03	2021-05-24 21:57:21.884+03	
b7c4b68f-cf49-96a7-452c-e1c09bea1282	2021-05-24 21:57:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:57:41.877+03	2021-05-24 21:57:41.884+03	
6bc88273-4387-6f9a-f991-0653316a6e49	2021-05-24 21:58:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:58:01.877+03	2021-05-24 21:58:01.883+03	
05702c03-b2cf-a33d-fa16-778203d4fdba	2021-05-24 21:58:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:58:21.877+03	2021-05-24 21:58:21.883+03	
231a24ea-321f-4d2e-10a7-4527922277dd	2021-05-24 21:58:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:58:41.877+03	2021-05-24 21:58:41.883+03	
63792df2-d8a4-6c38-aa8c-e9d4bec60f27	2021-05-24 21:59:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:59:01.877+03	2021-05-24 21:59:01.935+03	
7d6ccce4-6bee-730d-a07a-e3965e39b756	2021-05-24 21:59:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:59:21.877+03	2021-05-24 21:59:21.885+03	
c44fe747-26cb-44ec-f6d5-5ea50988de91	2021-05-24 21:59:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:59:41.877+03	2021-05-24 21:59:41.883+03	
1a0e9092-286c-9f60-56c7-05e5d36630a4	2021-05-24 22:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 22:00:00.877+03	2021-05-24 22:00:00.885+03	ERROR
14f983a2-00f6-4563-3d39-eee211268be5	2021-05-24 22:00:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:00:11.877+03	2021-05-24 22:00:11.885+03	
99e827ee-f362-7a3b-63f9-b263fa0dd299	2021-05-24 22:00:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:00:31.877+03	2021-05-24 22:00:31.883+03	
6644df16-5bc4-3925-f27a-f91863b1b7a4	2021-05-24 22:00:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:00:51.877+03	2021-05-24 22:00:51.884+03	
25bcba64-2809-9080-5082-a850f7ff13ac	2021-05-24 22:01:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:01:11.877+03	2021-05-24 22:01:11.883+03	
14d087af-25d5-33ed-f6c8-e46b72b32e1a	2021-05-24 22:01:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:01:31.877+03	2021-05-24 22:01:31.883+03	
18c21879-0375-5026-9c46-3a1791893f67	2021-05-24 22:01:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:01:51.877+03	2021-05-24 22:01:51.882+03	
f3705552-8c0f-5f11-d77e-3d2f24c788a7	2021-05-24 22:02:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:02:11.877+03	2021-05-24 22:02:11.884+03	
5cd48e24-83e0-5f44-dd77-9c4e1f690ca7	2021-05-24 22:02:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:02:31.877+03	2021-05-24 22:02:31.884+03	
ae5c1ebc-0788-75b9-ecc7-59a8bf9bac10	2021-05-24 22:02:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:02:51.877+03	2021-05-24 22:02:51.884+03	
c59af91c-7106-4d09-01bb-5aeea5c8aa3f	2021-05-24 22:03:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:03:11.877+03	2021-05-24 22:03:11.882+03	
b2583a6e-7ce5-98c1-9cde-2a6309a5cf8f	2021-05-24 22:03:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:03:31.877+03	2021-05-24 22:03:31.886+03	
72d339b9-aa66-22af-51d1-bcd2d5e7aa19	2021-05-24 22:03:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:03:51.877+03	2021-05-24 22:03:51.884+03	
8a1c4c91-36f2-6d6b-bc1f-e7bcbbb98ba0	2021-05-24 22:04:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:04:11.877+03	2021-05-24 22:04:11.883+03	
d06408f0-7bf8-c9c3-ab33-ffd4a4ff95b8	2021-05-24 22:04:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:04:31.877+03	2021-05-24 22:04:31.905+03	
adcd6c00-c3b0-b18b-8d75-61fa861fd7f5	2021-05-24 22:04:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:04:51.877+03	2021-05-24 22:04:52.182+03	
0adfac74-bd6d-a171-fab4-30cf851e91e4	2021-05-24 22:05:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:05:11.877+03	2021-05-24 22:05:12.454+03	
0670be49-9d33-92ed-ce9f-d1c19b55f98e	2021-05-24 22:05:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:05:31.877+03	2021-05-24 22:05:32.129+03	
66c50582-84c1-014c-fb80-0ddf7378a177	2021-05-24 22:05:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:05:51.877+03	2021-05-24 22:05:51.884+03	
3627970d-c540-c4b4-1653-1d8bce63a72b	2021-05-24 22:06:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:06:11.877+03	2021-05-24 22:06:11.883+03	
1de17649-2bdc-3d57-d917-13cc4e5d1685	2021-05-24 22:06:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:06:31.877+03	2021-05-24 22:06:31.883+03	
6c794e89-ccb1-af15-11f7-719e3060f485	2021-05-24 22:06:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:06:51.877+03	2021-05-24 22:06:51.884+03	
a1fc8842-c8a9-c972-c99a-a9cf0dd25840	2021-05-24 22:07:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:07:11.877+03	2021-05-24 22:07:11.883+03	
a61d9f01-35ee-5c3a-d76e-e81ed446ab19	2021-05-24 22:07:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:07:31.877+03	2021-05-24 22:07:31.997+03	
a6afe834-7209-d691-e5f2-e3217c121bb9	2021-05-24 22:07:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:07:51.877+03	2021-05-24 22:07:51.885+03	
6c9aa073-5ce2-03f6-9aa3-56bc88a22598	2021-05-24 22:08:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:08:11.877+03	2021-05-24 22:08:11.885+03	
8e0cddb1-17ca-f6d0-32ae-897564456e08	2021-05-24 22:08:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:08:31.877+03	2021-05-24 22:08:31.882+03	
51fb9536-d594-d0a3-7356-1745d1148a40	2021-05-24 22:08:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:08:51.877+03	2021-05-24 22:08:51.882+03	
1513d37d-fa78-4c21-49a5-15f4c34ab616	2021-05-24 22:09:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:09:11.877+03	2021-05-24 22:09:11.885+03	
93a34351-d5df-697a-0f79-99cd22da6afc	2021-05-24 22:09:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:09:31.877+03	2021-05-24 22:09:31.884+03	
08794f5f-ddce-e30c-f3e2-cbbd5ea377e0	2021-05-24 22:09:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:09:52.877+03	2021-05-24 22:09:53.132+03	
a89f1d34-c884-9bf5-04cd-66aedaa97d83	2021-05-24 22:10:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:10:02.878+03	2021-05-24 22:10:03.505+03	
96e66a1b-499b-87df-c432-8237391530fc	2021-05-24 22:10:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:10:23.877+03	2021-05-24 22:10:23.886+03	
550b05d6-fddc-5f43-606d-0b8ef335d850	2021-05-24 22:10:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:10:43.877+03	2021-05-24 22:10:44.304+03	
48acb96a-d1e4-d858-061d-b357723511c5	2021-05-24 22:11:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:11:03.877+03	2021-05-24 22:11:03.884+03	
28fed778-cca1-df76-455c-2c38b3e73114	2021-05-24 22:11:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:11:23.877+03	2021-05-24 22:11:23.884+03	
9a45bc1d-542f-ce12-cf74-8a9d79f22ede	2021-05-24 22:11:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:11:43.877+03	2021-05-24 22:11:43.883+03	
8c0fe45b-78f4-e673-aa7b-b5df42603a20	2021-05-24 22:12:03.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:12:03.878+03	2021-05-24 22:12:03.887+03	
beb16a4c-7c9d-4195-646c-a16b14384401	2021-05-24 22:12:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:12:24.877+03	2021-05-24 22:12:24.884+03	
b4e2ec86-c8fb-8fe0-136a-c9793ff2e208	2021-05-24 22:12:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:12:44.877+03	2021-05-24 22:12:44.884+03	
dc7ce696-ef8d-0a4d-3ff1-ccf391fa9f18	2021-05-24 22:13:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:13:04.877+03	2021-05-24 22:13:04.884+03	
4c31ad62-abea-1234-533a-9a585d3f9a12	2021-05-24 21:52:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:52:51.877+03	2021-05-24 21:52:51.885+03	
4f3acd15-52c1-d27c-5e96-d909235423ed	2021-05-24 21:53:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:53:11.877+03	2021-05-24 21:53:11.884+03	
45329191-82b7-5ce2-94ac-80b08399d68c	2021-05-24 21:53:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:53:31.877+03	2021-05-24 21:53:31.883+03	
a2b78be0-2389-c65c-fab0-1bbe07b1e851	2021-05-24 21:53:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:53:51.877+03	2021-05-24 21:53:51.883+03	
33624727-0981-a698-e371-8a9be235a59f	2021-05-24 21:54:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:54:11.877+03	2021-05-24 21:54:11.883+03	
e3ff96b3-fa21-85e4-ccf7-23c90ec9dae6	2021-05-24 21:54:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:54:31.877+03	2021-05-24 21:54:31.884+03	
9b95b6ad-a7ce-3cc8-cf0d-bc152c7b71b8	2021-05-24 21:54:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:54:51.877+03	2021-05-24 21:54:51.884+03	
44a8518e-85d5-bf5a-e943-24e32d8ead9b	2021-05-24 21:55:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:55:11.877+03	2021-05-24 21:55:12.198+03	
e0e3aaf4-76e4-65a5-5a34-bf6e7dfded49	2021-05-24 21:55:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:55:31.877+03	2021-05-24 21:55:31.883+03	
20b94864-5c36-2a42-1828-02fad17b2680	2021-05-24 21:55:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:55:51.877+03	2021-05-24 21:55:51.887+03	
c770dfee-8fef-059a-4f71-7e9cdd427482	2021-05-24 21:56:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:56:11.877+03	2021-05-24 21:56:11.884+03	
c8ed0352-aa38-490e-4a68-a3c9d6655a85	2021-05-24 21:56:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:56:31.877+03	2021-05-24 21:56:31.883+03	
f42a2cfd-0758-2c07-3e4d-8b41a3fb2888	2021-05-24 21:56:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:56:51.877+03	2021-05-24 21:56:51.885+03	
527bff1f-b194-8fd3-cb24-694bcd04a89b	2021-05-24 21:57:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:57:11.877+03	2021-05-24 21:57:11.884+03	
2ef5e6f3-3252-3b56-b562-1758596864ea	2021-05-24 21:57:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:57:31.877+03	2021-05-24 21:57:31.885+03	
a506d259-9bc9-545c-7234-5c7a886a02eb	2021-05-24 21:57:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:57:51.877+03	2021-05-24 21:57:51.883+03	
5500bf0d-e206-7941-dad5-0b6f2dffc919	2021-05-24 21:58:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:58:11.877+03	2021-05-24 21:58:11.882+03	
7aea62fd-89b8-9905-96f3-b2f9ba178e18	2021-05-24 21:58:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:58:31.877+03	2021-05-24 21:58:31.884+03	
5c568e89-ae74-2c26-a443-e74cad81ffff	2021-05-24 21:58:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:58:51.877+03	2021-05-24 21:58:51.884+03	
67de03db-4353-03ae-bc62-72e4d7a80411	2021-05-24 21:59:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:59:11.877+03	2021-05-24 21:59:11.885+03	
51342305-b0c2-97a4-94c2-2270e90d2e25	2021-05-24 21:59:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:59:31.877+03	2021-05-24 21:59:31.882+03	
661a52b4-9f52-3a0d-3e2f-9c4d04779d09	2021-05-24 21:59:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 21:59:51.877+03	2021-05-24 21:59:51.882+03	
aa6f49cc-51d4-89bf-aa66-10eef1449da4	2021-05-24 22:00:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:00:01.877+03	2021-05-24 22:00:01.918+03	
b13900bd-3bf6-97de-3fde-cd2dc13bc4de	2021-05-24 22:00:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:00:21.877+03	2021-05-24 22:00:21.882+03	
68cebf99-52d2-7455-6355-277b64f1a45d	2021-05-24 22:00:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:00:41.877+03	2021-05-24 22:00:41.883+03	
9978398e-46f3-0b38-c9b6-e48cc43047b2	2021-05-24 22:01:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:01:01.877+03	2021-05-24 22:01:02.208+03	
3f8564f8-a194-32e1-e5d3-b6ced134cee7	2021-05-24 22:01:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:01:21.877+03	2021-05-24 22:01:21.882+03	
2480d579-6708-6b96-9a27-2624aa4906d0	2021-05-24 22:01:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:01:41.877+03	2021-05-24 22:01:41.887+03	
c6ed67da-45f2-1b2d-f3a2-418bd6915155	2021-05-24 22:02:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:02:01.877+03	2021-05-24 22:02:01.883+03	
ee13dc33-ef36-93e0-d2a8-c76fb49415da	2021-05-24 22:02:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:02:21.877+03	2021-05-24 22:02:21.885+03	
57bc74ad-f6a0-cd25-a778-96b9bb276cd3	2021-05-24 22:02:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:02:41.877+03	2021-05-24 22:02:41.883+03	
7b11545e-077e-b82c-f14e-27f59da9c433	2021-05-24 22:03:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:03:01.877+03	2021-05-24 22:03:01.885+03	
de4fa40b-0ed6-8147-261a-f0ca538cf15d	2021-05-24 22:03:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:03:21.877+03	2021-05-24 22:03:21.884+03	
064a6f26-80fe-9bcf-90c1-39ff97085ba0	2021-05-24 22:03:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:03:41.877+03	2021-05-24 22:03:41.883+03	
d324fb72-f90b-b75a-77bb-af321b46c40a	2021-05-24 22:04:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:04:01.877+03	2021-05-24 22:04:01.883+03	
0ac3bcb0-cada-0571-cca5-3e4cebe777e0	2021-05-24 22:04:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:04:21.877+03	2021-05-24 22:04:21.884+03	
0de9a903-ba2e-431f-8ca9-aa9159ae8ad8	2021-05-24 22:04:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:04:41.877+03	2021-05-24 22:04:41.884+03	
f1f2cfb3-20c1-f9ec-b504-ea60dea8e7bb	2021-05-24 22:05:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:05:01.877+03	2021-05-24 22:05:01.898+03	
674c4248-b3c0-e947-3b54-3c26178b82fb	2021-05-24 22:05:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:05:21.877+03	2021-05-24 22:05:22.029+03	
b910fe89-bdb8-645e-4767-7cf0bcb5a1e0	2021-05-24 22:05:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:05:41.877+03	2021-05-24 22:05:41.886+03	
2881da14-68ee-afc9-98b7-8548daf879d7	2021-05-24 22:06:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:06:01.877+03	2021-05-24 22:06:01.966+03	
0cbd621a-2a4f-7d18-5263-f3ce0d812e80	2021-05-24 22:06:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:06:21.877+03	2021-05-24 22:06:21.885+03	
d8790c22-a7d0-2782-b9f5-0c78519efc0f	2021-05-24 22:06:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:06:41.877+03	2021-05-24 22:06:41.884+03	
90ce2a40-b089-e0b2-b0e0-2fa110f01c7d	2021-05-24 22:07:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:07:01.877+03	2021-05-24 22:07:01.884+03	
bab2b78c-9ee0-54c0-45dd-a6a439c127d7	2021-05-24 22:07:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:07:21.877+03	2021-05-24 22:07:21.883+03	
ad1ad869-00c5-8950-3c28-f8531b4b1231	2021-05-24 22:07:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:07:41.877+03	2021-05-24 22:07:41.884+03	
a95e60ac-bd8f-d21a-bdfc-b1bc533d1e5f	2021-05-24 22:08:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:08:01.877+03	2021-05-24 22:08:01.883+03	
6aef31a7-b2c1-207e-2e3c-1231a4d49909	2021-05-24 22:08:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:08:21.877+03	2021-05-24 22:08:21.886+03	
be676435-f06d-6652-9e77-9ea73c56e233	2021-05-24 22:08:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:08:41.877+03	2021-05-24 22:08:41.884+03	
82c6afcf-6ff7-b7fb-90ab-2e1f031ee69d	2021-05-24 22:09:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:09:01.877+03	2021-05-24 22:09:01.882+03	
5cf510a5-37d6-265e-e7b8-b976789daf18	2021-05-24 22:09:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:09:21.877+03	2021-05-24 22:09:21.884+03	
eb702ed5-11b9-44b6-6235-85b0667df3b6	2021-05-24 22:09:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:09:42.876+03	2021-05-24 22:09:42.884+03	
908fb62d-7910-8168-0605-e715a1d658a2	2021-05-24 22:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 22:10:00.877+03	2021-05-24 22:10:01.367+03	ERROR
0ae17cee-4795-7274-9f96-7dca3b7b927f	2021-05-24 22:10:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:10:13.877+03	2021-05-24 22:10:13.995+03	
c7d82d9a-9038-d0aa-a0da-69a625291f0c	2021-05-24 22:10:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:10:33.877+03	2021-05-24 22:10:34.126+03	
433482fb-50f8-5610-53a6-b72fcf451e2d	2021-05-24 22:10:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:10:53.877+03	2021-05-24 22:10:54.18+03	
1b34b5a9-3791-b267-b95b-1235027b92d6	2021-05-24 22:11:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:11:13.877+03	2021-05-24 22:11:13.884+03	
31f9c532-f798-d12b-630d-14bd41979069	2021-05-24 22:11:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:11:33.877+03	2021-05-24 22:11:33.885+03	
684b6f92-25f8-0534-0183-2a5d39da1af3	2021-05-24 22:11:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:11:53.877+03	2021-05-24 22:11:53.885+03	
1abfe800-c720-c84a-bccd-968ed3726f0c	2021-05-24 22:12:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:12:14.877+03	2021-05-24 22:12:14.883+03	
8ce176f2-e4b1-eb91-2795-e7c32908bb28	2021-05-24 22:12:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:12:34.877+03	2021-05-24 22:12:34.884+03	
8e64d3b8-6858-d681-245d-4a5391784ee3	2021-05-24 22:12:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:12:54.877+03	2021-05-24 22:12:54.885+03	
11d821d3-145e-16cf-5317-0a8d404b2b99	2021-05-24 22:13:14.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:13:14.877+03	2021-05-24 22:13:14.885+03	
dd3ec93d-3680-c890-48e8-1f21d2e46799	2021-05-24 22:13:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:13:24.877+03	2021-05-24 22:13:24.894+03	
527eaa55-e423-75de-c082-0301189609ad	2021-05-24 22:13:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:13:44.877+03	2021-05-24 22:13:44.882+03	
ce4fb1e5-b619-b9c6-8ad9-cd3286b2c1c2	2021-05-24 22:14:04.892	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:14:04.892+03	2021-05-24 22:14:04.898+03	
20c06684-6c17-ee87-8878-9a1d4e3ddcaa	2021-05-24 22:14:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:14:25.877+03	2021-05-24 22:14:25.884+03	
aa733a88-2521-db99-926d-ddf30c7422a8	2021-05-24 22:14:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:14:45.877+03	2021-05-24 22:14:45.884+03	
4b68c081-402f-63cb-5708-d6506c4ddd32	2021-05-24 22:15:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:15:05.877+03	2021-05-24 22:15:05.886+03	
226988e4-50fe-1ba6-dccd-5822d64963cc	2021-05-24 22:15:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:15:25.877+03	2021-05-24 22:15:25.883+03	
87a5f756-87ff-face-bd03-aad24d9eaa17	2021-05-24 22:15:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:15:45.877+03	2021-05-24 22:15:45.883+03	
7fe39f27-4e00-2732-f9c5-e085212d1721	2021-05-24 22:16:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:16:05.877+03	2021-05-24 22:16:05.885+03	
1089973c-9661-b8b5-e9a1-90ce880fb443	2021-05-24 22:16:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:16:25.877+03	2021-05-24 22:16:25.883+03	
4fd7b902-c76e-4dbb-911a-25dd392e447e	2021-05-24 22:16:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:16:45.877+03	2021-05-24 22:16:45.883+03	
14c7112c-c84d-7899-d824-dcf644039571	2021-05-24 22:17:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:17:05.877+03	2021-05-24 22:17:05.885+03	
5fa31644-02a1-2774-f195-f9fba9781d6a	2021-05-24 22:17:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:17:25.877+03	2021-05-24 22:17:25.886+03	
5cc36d94-2521-0cc9-c6b2-9ef0b9fb8cd9	2021-05-24 22:17:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:17:45.877+03	2021-05-24 22:17:46.035+03	
0986ad94-349e-5150-c5d8-18c58eef0bb7	2021-05-24 22:18:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:18:05.877+03	2021-05-24 22:18:05.883+03	
724a9753-22fd-b143-b337-6a93a28e2507	2021-05-24 22:18:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:18:25.877+03	2021-05-24 22:18:25.884+03	
978c3809-f600-d752-40b2-eaa149f47982	2021-05-24 22:18:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:18:45.877+03	2021-05-24 22:18:45.884+03	
d38b8d8b-793f-d95a-58e2-984f03f35ffd	2021-05-24 22:19:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:19:05.877+03	2021-05-24 22:19:05.885+03	
b97563d2-fd43-0a9e-0e10-901e359b898a	2021-05-24 22:19:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:19:25.877+03	2021-05-24 22:19:25.884+03	
99ad35c5-bdda-99c1-a980-e23daa642df8	2021-05-24 22:19:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:19:45.877+03	2021-05-24 22:19:45.884+03	
4a8f8d6c-1afb-fcb4-3c0e-ff995e13c898	2021-05-24 22:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 22:20:00.877+03	2021-05-24 22:20:00.883+03	ERROR
1080e056-caa7-2487-f685-6a315998c9c6	2021-05-24 22:20:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:20:15.877+03	2021-05-24 22:20:15.884+03	
8c494a94-cc35-3125-f329-ffd47a5c42bc	2021-05-24 22:20:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:20:35.877+03	2021-05-24 22:20:35.884+03	
52384d80-f728-2f88-9477-40cc4d4f26bf	2021-05-24 22:20:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:20:55.877+03	2021-05-24 22:20:55.884+03	
8cf863e9-654b-6404-574e-81abe82784dc	2021-05-24 22:21:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:21:15.877+03	2021-05-24 22:21:15.885+03	
bbc4ce45-e490-73df-4b96-ce1d15a1975b	2021-05-24 22:21:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:21:35.877+03	2021-05-24 22:21:35.885+03	
1337dc29-16af-8431-8802-f194b0ca18dd	2021-05-24 22:21:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:21:55.877+03	2021-05-24 22:21:55.884+03	
46e8b0a2-8854-2efa-89a2-37aaad552b4a	2021-05-24 22:22:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:22:15.877+03	2021-05-24 22:22:15.885+03	
fddbe4e9-8d53-481a-e663-d776ae5dd37e	2021-05-24 22:22:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:22:35.877+03	2021-05-24 22:22:35.883+03	
3e590c3e-383b-46c1-7eec-4ebb8cdf0023	2021-05-24 22:22:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:22:55.877+03	2021-05-24 22:22:55.886+03	
570f2da7-2172-88cd-d5e8-8aabcd18909c	2021-05-24 22:23:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:23:15.877+03	2021-05-24 22:23:15.884+03	
c56c786f-2892-b273-25fe-633e4fd0d1c4	2021-05-24 22:23:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:23:35.877+03	2021-05-24 22:23:35.883+03	
343a251f-05eb-cd92-1b15-e9a2210dcf4c	2021-05-24 22:23:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:23:56.877+03	2021-05-24 22:23:56.885+03	
327fc2e6-d69e-5f23-ed81-05f15e3bd3d9	2021-05-24 22:24:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:24:16.877+03	2021-05-24 22:24:16.883+03	
d23cdadf-7835-2d8e-1781-a5789229815d	2021-05-24 22:24:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:24:36.877+03	2021-05-24 22:24:36.883+03	
51b66ace-5601-7492-3e52-84c74f182cbc	2021-05-24 22:24:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:24:56.877+03	2021-05-24 22:24:56.883+03	
9ac025b0-3d4b-5def-7994-88cac0ef8384	2021-05-24 22:25:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:25:16.877+03	2021-05-24 22:25:16.882+03	
661b63ec-566f-e335-1641-6186b02b50fe	2021-05-24 22:25:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:25:36.877+03	2021-05-24 22:25:36.884+03	
4ad9d0ef-1d95-c635-e8e2-98aa540da8d1	2021-05-24 22:25:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:25:56.877+03	2021-05-24 22:25:56.884+03	
c761f41c-6543-bbd5-90ee-405da749c589	2021-05-24 22:26:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:26:16.877+03	2021-05-24 22:26:16.885+03	
4f387c10-2be7-5a18-6479-6f7a70813f9c	2021-05-24 22:26:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:26:36.877+03	2021-05-24 22:26:36.884+03	
f04d14cc-cad0-1f7c-4372-598ca4b710ff	2021-05-24 22:26:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:26:56.877+03	2021-05-24 22:26:57.219+03	
6e8d007b-0345-a359-229a-88aec57e6088	2021-05-24 22:27:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:27:16.877+03	2021-05-24 22:27:16.883+03	
0ba66ce9-15f4-b182-20ad-15bcdda4b55b	2021-05-24 22:27:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:27:36.877+03	2021-05-24 22:27:36.885+03	
7dd49b35-ca09-1a06-f89d-53353f8c154e	2021-05-24 22:27:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:27:56.877+03	2021-05-24 22:27:56.883+03	
3a8d38c1-17aa-f50a-f724-8d39dc9027b0	2021-05-24 22:28:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:28:16.877+03	2021-05-24 22:28:16.885+03	
d8afe8c1-ca70-aa6b-8409-d4ed958f6338	2021-05-24 22:28:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:28:36.877+03	2021-05-24 22:28:36.885+03	
41c9840a-6bb4-516d-1cb4-bb1d9a2ad840	2021-05-24 22:28:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:28:56.877+03	2021-05-24 22:28:56.882+03	
b70d7b53-377e-b857-4192-439bca2b20c3	2021-05-24 22:29:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:29:16.877+03	2021-05-24 22:29:16.884+03	
0e52bb4d-8b44-735f-6f96-05d224f3b9f4	2021-05-24 22:29:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:29:36.877+03	2021-05-24 22:29:36.885+03	
1524fd8a-60dc-fdaf-3976-95db24e73183	2021-05-24 22:29:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:29:56.877+03	2021-05-24 22:29:56.883+03	
56366118-39a3-a1a3-5349-0cbebc126a28	2021-05-24 22:30:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:30:06.877+03	2021-05-24 22:30:07.123+03	
92a4e229-2cb3-6416-d90d-ae82059a0f12	2021-05-24 22:30:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:30:26.877+03	2021-05-24 22:30:26.883+03	
03501e3e-f758-c38e-2fb6-791da0286d0a	2021-05-24 22:30:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:30:46.877+03	2021-05-24 22:30:46.884+03	
1f2d72d5-a071-dd14-1b6b-82f2f2ce915a	2021-05-24 22:31:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:31:06.877+03	2021-05-24 22:31:06.883+03	
45ea3a72-e6ff-7539-5547-fea7d4ec4314	2021-05-24 22:31:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:31:26.877+03	2021-05-24 22:31:26.883+03	
74adb10f-5e60-0573-c836-24b0744a0184	2021-05-24 22:31:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:31:46.877+03	2021-05-24 22:31:46.885+03	
5682cdb7-c532-6b66-1a94-0819be24f804	2021-05-24 22:32:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:32:06.877+03	2021-05-24 22:32:06.884+03	
3678f826-6e1a-9640-8477-bff629f2509b	2021-05-24 22:32:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:32:26.877+03	2021-05-24 22:32:26.884+03	
db5fce15-7495-03f0-40e0-cf28e1d76ca1	2021-05-24 22:32:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:32:46.877+03	2021-05-24 22:32:47.184+03	
d2208416-ac65-451f-28f9-7cda7cf314ff	2021-05-24 22:33:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:33:06.877+03	2021-05-24 22:33:06.882+03	
29304f3e-2c1d-e93e-9394-15ef2d05a0a0	2021-05-24 22:33:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:33:26.877+03	2021-05-24 22:33:26.883+03	
63950221-7996-ee38-d17c-cba7c19e7de6	2021-05-24 22:33:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:33:46.877+03	2021-05-24 22:33:46.885+03	
c13ddd16-665e-8dbe-7e46-fbec0d2fb905	2021-05-24 22:13:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:13:34.877+03	2021-05-24 22:13:34.883+03	
dafb0931-4ddf-34be-9c90-6b38fc16c2b3	2021-05-24 22:13:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:13:54.877+03	2021-05-24 22:13:54.884+03	
b298067e-451b-801e-3b44-4db1f909df76	2021-05-24 22:14:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:14:15.877+03	2021-05-24 22:14:15.884+03	
983c42c9-49bd-402e-4121-b7962a4f3eee	2021-05-24 22:14:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:14:35.877+03	2021-05-24 22:14:35.884+03	
6be3cf3f-2149-a617-c893-8d155d7714b5	2021-05-24 22:14:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:14:55.877+03	2021-05-24 22:14:55.885+03	
c06bd22d-210e-024a-0041-c8ea2ef61df4	2021-05-24 22:15:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:15:15.877+03	2021-05-24 22:15:15.884+03	
c7338860-4eb8-0cd9-2f3a-cade2a832912	2021-05-24 22:15:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:15:35.877+03	2021-05-24 22:15:35.885+03	
f7ad89f1-fee9-0636-58c3-aa461a8a0b0d	2021-05-24 22:15:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:15:55.877+03	2021-05-24 22:15:55.884+03	
44ae2fd6-f0a6-a1a3-81c9-91db76952941	2021-05-24 22:16:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:16:15.877+03	2021-05-24 22:16:15.885+03	
db6b4f6d-dc29-1e2d-88a5-475cd5db23ce	2021-05-24 22:16:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:16:35.877+03	2021-05-24 22:16:35.884+03	
1452d9d7-00e6-4747-14d8-e97d8aebb911	2021-05-24 22:16:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:16:55.877+03	2021-05-24 22:16:55.885+03	
65ee69eb-073c-ed48-e3e7-0246c1df348f	2021-05-24 22:17:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:17:15.877+03	2021-05-24 22:17:15.883+03	
0dd02796-158f-3418-90d0-16f702dfe5b2	2021-05-24 22:17:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:17:35.877+03	2021-05-24 22:17:35.885+03	
ab405a0a-34bd-4282-7e9e-adc9a2dc14fb	2021-05-24 22:17:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:17:55.877+03	2021-05-24 22:17:55.885+03	
15e49a90-9dce-dde1-751d-51558aeb9bd0	2021-05-24 22:18:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:18:15.877+03	2021-05-24 22:18:15.884+03	
94c7392d-e4d5-fa71-9572-81958c195b03	2021-05-24 22:18:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:18:35.877+03	2021-05-24 22:18:35.885+03	
a4006e4d-94db-2232-8807-0b5acb177652	2021-05-24 22:18:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:18:55.877+03	2021-05-24 22:18:55.883+03	
d77f3215-f64a-c33b-32e7-c5600374873b	2021-05-24 22:19:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:19:15.877+03	2021-05-24 22:19:15.898+03	
ed490798-56ed-883d-d388-8bddd2c99be5	2021-05-24 22:19:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:19:35.877+03	2021-05-24 22:19:35.882+03	
bc73be24-01c2-f643-ed80-942d208dcced	2021-05-24 22:19:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:19:55.877+03	2021-05-24 22:19:55.884+03	
f9649cb8-c8bb-44b7-5b0d-0fcb086fc4ff	2021-05-24 22:20:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:20:05.877+03	2021-05-24 22:20:05.883+03	
8d6064bd-c33c-aab2-f582-d3d0e23872d9	2021-05-24 22:20:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:20:25.877+03	2021-05-24 22:20:26.195+03	
6eabaf58-6a77-013b-cd24-c88e547e8fdd	2021-05-24 22:20:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:20:45.877+03	2021-05-24 22:20:45.884+03	
489a4718-ac17-cdde-721b-348ba8737ab9	2021-05-24 22:21:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:21:05.877+03	2021-05-24 22:21:05.883+03	
5ede788d-4ed7-dc71-6f1d-b150719fd3c0	2021-05-24 22:21:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:21:25.877+03	2021-05-24 22:21:25.883+03	
a1c54256-39a4-8b07-e4d3-53b9f08c9b71	2021-05-24 22:21:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:21:45.877+03	2021-05-24 22:21:45.884+03	
1edba9d6-115f-9ca3-5052-9b8eec29b861	2021-05-24 22:22:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:22:05.877+03	2021-05-24 22:22:06.216+03	
bdc51d17-25ee-ab9a-fcea-bb0862370435	2021-05-24 22:22:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:22:25.877+03	2021-05-24 22:22:26.178+03	
b489bcff-8e59-3889-b3de-21fc9e5d90ff	2021-05-24 22:22:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:22:45.877+03	2021-05-24 22:22:45.886+03	
c446834f-3e3c-c0f3-0999-69ed69dfbbd6	2021-05-24 22:23:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:23:05.877+03	2021-05-24 22:23:05.884+03	
95feb24d-d863-fa4b-3919-c36ddbf39662	2021-05-24 22:23:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:23:25.877+03	2021-05-24 22:23:25.887+03	
f371b2a8-d8fd-3689-35b7-944f1567d92f	2021-05-24 22:23:45.889	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:23:45.888+03	2021-05-24 22:23:45.894+03	
798ec9fa-0d33-a2ab-30b6-0bfbe51ec831	2021-05-24 22:24:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:24:06.877+03	2021-05-24 22:24:06.883+03	
a4efa9db-95f9-9f51-dbc7-ad2d1f0ab4ef	2021-05-24 22:24:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:24:26.877+03	2021-05-24 22:24:26.884+03	
e8c12d6f-8312-0727-077d-c3de7cab46b7	2021-05-24 22:24:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:24:46.877+03	2021-05-24 22:24:46.884+03	
8c57a12d-6b68-f6e9-7ab9-f8a51a0b2686	2021-05-24 22:25:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:25:06.877+03	2021-05-24 22:25:06.885+03	
055c1639-ad2b-ea9a-07d8-445a2d3156fa	2021-05-24 22:25:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:25:26.877+03	2021-05-24 22:25:26.884+03	
bdd8a086-d498-5d93-7d12-4b9e1e333b2e	2021-05-24 22:25:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:25:46.877+03	2021-05-24 22:25:46.883+03	
13cd24e9-5c47-f613-c5e3-094cf07f0d0e	2021-05-24 22:26:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:26:06.877+03	2021-05-24 22:26:06.885+03	
6cf167d4-7158-f51a-5cb2-24b29f8e95cf	2021-05-24 22:26:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:26:26.877+03	2021-05-24 22:26:26.885+03	
39c62992-2d64-75f7-9086-23b8e6744d50	2021-05-24 22:26:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:26:46.877+03	2021-05-24 22:26:46.884+03	
ae304f68-70b0-73bf-12c0-fafc3c375041	2021-05-24 22:27:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:27:06.877+03	2021-05-24 22:27:06.884+03	
2779f25c-5219-abc7-6d82-3e91e5ae4f01	2021-05-24 22:27:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:27:26.877+03	2021-05-24 22:27:26.884+03	
042339ed-df72-563c-3cb1-68a888d2fde8	2021-05-24 22:27:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:27:46.877+03	2021-05-24 22:27:46.883+03	
007c3846-8eb2-124b-0b3b-bd757aa3d1cf	2021-05-24 22:28:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:28:06.877+03	2021-05-24 22:28:06.883+03	
9fc430c3-876e-4d9b-e497-111f1e29ebc7	2021-05-24 22:28:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:28:26.877+03	2021-05-24 22:28:26.884+03	
d3e220d2-5d6b-c57a-b523-296c334b8244	2021-05-24 22:28:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:28:46.877+03	2021-05-24 22:28:46.885+03	
86c49eb3-5cfb-3a24-bd04-4139395bfd10	2021-05-24 22:29:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:29:06.877+03	2021-05-24 22:29:06.884+03	
e32d4d36-82cb-0f01-ad89-6617bdba4bad	2021-05-24 22:29:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:29:26.877+03	2021-05-24 22:29:26.885+03	
d3e5c9d2-831a-8822-7c0a-8d0ff97897dc	2021-05-24 22:29:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:29:46.877+03	2021-05-24 22:29:46.886+03	
3fd2bdab-3e23-579a-b3b0-c5f031053e60	2021-05-24 22:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 22:30:00.877+03	2021-05-24 22:30:00.882+03	ERROR
eef91a2b-0fdd-dded-9f71-ab7012d1920e	2021-05-24 22:30:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:30:16.877+03	2021-05-24 22:30:16.882+03	
545dee8e-b8b5-6c6d-f5a6-fe13ba4b0ad8	2021-05-24 22:30:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:30:36.877+03	2021-05-24 22:30:36.885+03	
eb71ce60-1a7f-e088-52dc-63be9231a381	2021-05-24 22:30:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:30:56.877+03	2021-05-24 22:30:56.885+03	
c671a04e-3121-4667-ec59-26836235c664	2021-05-24 22:31:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:31:16.877+03	2021-05-24 22:31:16.884+03	
4e12b94a-043c-e46c-b395-43766e03bf36	2021-05-24 22:31:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:31:36.877+03	2021-05-24 22:31:36.883+03	
225fd25a-097c-48e1-82d6-95543a173f72	2021-05-24 22:31:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:31:56.877+03	2021-05-24 22:31:56.884+03	
e109cc44-5f4c-c33b-bef6-30781ca49634	2021-05-24 22:32:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:32:16.877+03	2021-05-24 22:32:16.883+03	
052f8ca0-181a-b5b8-fe6a-7cdbe5dfd5d4	2021-05-24 22:32:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:32:36.877+03	2021-05-24 22:32:36.883+03	
98cda260-480f-703b-7b4b-7bac610d9dde	2021-05-24 22:32:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:32:56.877+03	2021-05-24 22:32:56.883+03	
1890e4bd-5a15-340e-0d3d-f3831de09df3	2021-05-24 22:33:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:33:16.877+03	2021-05-24 22:33:16.884+03	
68fd1f40-8514-bb75-cad5-b102363d3568	2021-05-24 22:33:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:33:36.877+03	2021-05-24 22:33:36.884+03	
7ca140f4-9929-2a60-63eb-39445252d472	2021-05-24 22:33:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:33:56.877+03	2021-05-24 22:33:56.885+03	
09b01c6f-4638-76a2-5d0a-c75e803623f0	2021-05-24 22:34:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:34:06.877+03	2021-05-24 22:34:06.885+03	
26225441-e138-86d2-80b3-85d71bf6e04c	2021-05-24 22:34:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:34:26.877+03	2021-05-24 22:34:26.884+03	
7733123b-bb3d-ab72-0c84-ef5bdd0dc520	2021-05-24 22:34:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:34:46.877+03	2021-05-24 22:34:46.886+03	
e2433a40-b91a-1caf-34fd-14521f854efd	2021-05-24 22:35:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:35:06.877+03	2021-05-24 22:35:06.884+03	
6712d9e5-1f5f-2ed4-3d78-67acf8058116	2021-05-24 22:35:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:35:26.877+03	2021-05-24 22:35:26.883+03	
992832e3-cdca-0a9d-b866-f05c625e0b98	2021-05-24 22:35:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:35:46.877+03	2021-05-24 22:35:46.884+03	
117429cc-47b4-872f-038d-5cd283fb5157	2021-05-24 22:36:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:36:06.877+03	2021-05-24 22:36:06.885+03	
714e87c5-004e-31dc-5bb1-e6ee2b6d2266	2021-05-24 22:36:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:36:26.877+03	2021-05-24 22:36:26.883+03	
5cba1f8a-c8b7-a05e-91b4-5a4a184f4080	2021-05-24 22:36:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:36:46.877+03	2021-05-24 22:36:46.885+03	
2e6cd0c5-7efb-b0f4-e9e7-d7951e2415db	2021-05-24 22:37:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:37:06.877+03	2021-05-24 22:37:06.884+03	
e39962b4-cf63-9704-bd5e-9e3c1328ff62	2021-05-24 22:37:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:37:26.877+03	2021-05-24 22:37:26.885+03	
cccc52ba-031a-fc57-330f-dd0c18520f21	2021-05-24 22:37:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:37:46.877+03	2021-05-24 22:37:46.885+03	
a95bb6d8-7302-225b-a7e4-a0351de02e5b	2021-05-24 22:38:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:38:06.877+03	2021-05-24 22:38:06.887+03	
f3113e5e-6006-3660-8df3-ad7660bf78d4	2021-05-24 22:38:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:38:26.877+03	2021-05-24 22:38:26.883+03	
8ad9f9a5-de65-b5e0-c808-499f9b98fd7f	2021-05-24 22:38:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:38:46.877+03	2021-05-24 22:38:46.883+03	
367c3faf-fa46-cdf7-cf9b-43c75b793ca9	2021-05-24 22:39:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:39:06.877+03	2021-05-24 22:39:06.884+03	
b81ce910-434a-297e-2c35-c3756f50e315	2021-05-24 22:39:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:39:26.877+03	2021-05-24 22:39:26.884+03	
47572ed7-2729-8f03-187f-0b25dad38909	2021-05-24 22:39:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:39:46.877+03	2021-05-24 22:39:46.884+03	
fbe2da55-e705-8f5f-4a05-a9e7b6078aeb	2021-05-24 22:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 22:40:00.877+03	2021-05-24 22:40:01.542+03	ERROR
97553eee-7040-661f-23ba-f9e1fcd84a39	2021-05-24 22:40:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:40:06.877+03	2021-05-24 22:40:06.884+03	
6620426a-c878-00c1-979b-f3abe07c163c	2021-05-24 22:40:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:40:26.877+03	2021-05-24 22:40:27.115+03	
d61dfd14-0c29-1d2b-e700-46a2ab5ed163	2021-05-24 22:40:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:40:46.877+03	2021-05-24 22:40:46.887+03	
a126b16e-5594-d0e6-53e9-945fdf2c63f2	2021-05-24 22:41:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:41:06.877+03	2021-05-24 22:41:06.884+03	
cbf6f07f-49a0-346f-4ddc-368c395b6e66	2021-05-24 22:41:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:41:26.877+03	2021-05-24 22:41:26.884+03	
9535931b-920d-ddc1-dd6f-780b3f67392f	2021-05-24 22:41:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:41:46.877+03	2021-05-24 22:41:46.885+03	
6c5f08d3-a7a2-030f-2508-456d89a40865	2021-05-24 22:42:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:42:06.877+03	2021-05-24 22:42:06.882+03	
8ea509d2-5728-8c5d-9ec0-82b8a24c87b9	2021-05-24 22:42:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:42:26.877+03	2021-05-24 22:42:26.884+03	
3ffec108-3df5-97ca-36d4-75903c42afb3	2021-05-24 22:42:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:42:46.877+03	2021-05-24 22:42:46.883+03	
63601921-146f-48dd-3062-e6afeb528899	2021-05-24 22:43:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:43:06.877+03	2021-05-24 22:43:06.883+03	
a80aeeef-dc49-5e91-6c79-f11c8c4307dd	2021-05-24 22:43:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:43:26.877+03	2021-05-24 22:43:26.893+03	
00d3bea4-bb48-7674-520e-df525de032cf	2021-05-24 22:43:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:43:46.877+03	2021-05-24 22:43:46.884+03	
a5b38679-e9f0-b056-ed50-6268a9f80f6e	2021-05-24 22:44:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:44:06.877+03	2021-05-24 22:44:06.883+03	
50973a2e-80ea-3e71-12d5-72ba3280a98b	2021-05-24 22:44:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:44:26.877+03	2021-05-24 22:44:27.197+03	
e1602921-1e46-7e36-d3fb-ee3baa0cbb2f	2021-05-24 22:44:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:44:46.877+03	2021-05-24 22:44:46.884+03	
6804d2bf-2ed7-61e8-530a-f858114252d5	2021-05-24 22:45:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:45:06.877+03	2021-05-24 22:45:06.883+03	
68744b80-00cb-d519-40fd-ff0c6dd0f64c	2021-05-24 22:45:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:45:26.877+03	2021-05-24 22:45:26.884+03	
739ff0f9-d25b-074f-564a-c3223fe9317a	2021-05-24 22:45:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:45:46.877+03	2021-05-24 22:45:46.882+03	
c982addd-c069-af10-d74e-e6057d4645f1	2021-05-24 22:46:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:46:06.877+03	2021-05-24 22:46:06.883+03	
99f86c53-8d1f-5e2b-5dbd-b022013553bc	2021-05-24 22:46:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:46:27.877+03	2021-05-24 22:46:27.884+03	
1cf12971-d54f-7f56-11d0-63a83b29b00b	2021-05-24 22:46:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:46:47.877+03	2021-05-24 22:46:47.884+03	
a1bcf3b9-fbfd-7a93-ce06-1de4f3bb9024	2021-05-24 22:47:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:47:07.877+03	2021-05-24 22:47:07.883+03	
23dd8228-5341-485f-b7f1-3d23d453cb28	2021-05-24 22:47:27.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:47:27.877+03	2021-05-24 22:47:27.884+03	
635983ac-6cb0-6552-a4a0-7ffc9fd49877	2021-05-24 22:47:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:47:47.877+03	2021-05-24 22:47:47.883+03	
4ed0f488-c026-83de-0264-2c3891aaa0f8	2021-05-24 22:48:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:48:08.877+03	2021-05-24 22:48:08.884+03	
a97b44fd-54c2-4e19-d9d9-2c9f2a9e4a10	2021-05-24 22:48:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:48:28.877+03	2021-05-24 22:48:28.884+03	
5922f414-fd98-7fe4-bb55-34247f4d0b40	2021-05-24 22:48:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:48:48.877+03	2021-05-24 22:48:48.883+03	
a9712b02-e502-be07-e8dd-31bd1caf8cc2	2021-05-24 22:49:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:49:08.877+03	2021-05-24 22:49:08.885+03	
ebd300f4-5d84-4cc1-e891-fc95c5badab5	2021-05-24 22:49:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:49:28.877+03	2021-05-24 22:49:28.884+03	
af5d22dc-2568-b83c-551d-ff2020815182	2021-05-24 22:49:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:49:48.877+03	2021-05-24 22:49:48.884+03	
78808c05-302d-9107-faad-8b99b7239606	2021-05-24 22:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 22:50:00.877+03	2021-05-24 22:50:00.883+03	ERROR
438da8e8-1883-86c1-92e4-77989f4b7955	2021-05-24 22:50:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:50:18.877+03	2021-05-24 22:50:18.884+03	
427ac2a4-dbcb-b7b4-1302-bfc064f15384	2021-05-24 22:50:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:50:38.877+03	2021-05-24 22:50:38.882+03	
9e615eff-9c6d-39cc-5791-c33889197fdf	2021-05-24 22:50:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:50:58.877+03	2021-05-24 22:50:58.882+03	
738c969c-ea66-6af8-49d2-17aad47d7ff4	2021-05-24 22:51:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:51:18.877+03	2021-05-24 22:51:18.885+03	
80a37711-80b2-6c39-9e93-7b3aa7debac5	2021-05-24 22:51:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:51:39.877+03	2021-05-24 22:51:39.883+03	
ab6dd7c6-f9fe-b818-ca27-93a3fb816e25	2021-05-24 22:52:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:52:00.877+03	2021-05-24 22:52:00.887+03	
d9988b81-10fe-c1b7-19e0-0328c7b56228	2021-05-24 22:52:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:52:20.877+03	2021-05-24 22:52:20.883+03	
1cc4aa6b-6ef3-3cd6-2136-c2d99260793c	2021-05-24 22:52:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:52:40.877+03	2021-05-24 22:52:40.884+03	
0bb0edce-79ca-2a6c-2bec-5543854b5e0b	2021-05-24 22:53:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:53:00.877+03	2021-05-24 22:53:00.884+03	
81d455b9-63cc-bb81-effc-524684d5a20e	2021-05-24 22:53:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:53:20.877+03	2021-05-24 22:53:20.883+03	
48177fdb-de93-bbd6-c4a7-c1169cb72bde	2021-05-24 22:53:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:53:40.877+03	2021-05-24 22:53:40.885+03	
1c192fc8-dee1-518f-4d8b-43ec9d9266b7	2021-05-24 22:54:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:54:00.877+03	2021-05-24 22:54:00.884+03	
a89cdb58-1d97-94ff-8f6e-d40bee3f3532	2021-05-24 22:54:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:54:20.877+03	2021-05-24 22:54:20.883+03	
9a4858d9-28d8-e360-e6c0-f59ee434dcfd	2021-05-24 22:34:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:34:16.877+03	2021-05-24 22:34:16.885+03	
c5d1f579-a6ed-f316-e05c-35ab185607dc	2021-05-24 22:34:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:34:36.877+03	2021-05-24 22:34:36.883+03	
bb745331-d443-c141-58ca-775a2f12a015	2021-05-24 22:34:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:34:56.877+03	2021-05-24 22:34:56.884+03	
332de2c3-b5f7-c29e-3c98-d8e2ddae0f8c	2021-05-24 22:35:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:35:16.877+03	2021-05-24 22:35:17.136+03	
5bdf8e06-b3a2-8a33-2bce-9f2c07978a65	2021-05-24 22:35:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:35:36.877+03	2021-05-24 22:35:36.886+03	
6a666b30-a3ad-2b34-4f58-244652449350	2021-05-24 22:35:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:35:56.877+03	2021-05-24 22:35:56.886+03	
39fb8a82-be08-f2a3-96eb-fec439e3b2c4	2021-05-24 22:36:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:36:16.877+03	2021-05-24 22:36:16.882+03	
e7005bb3-d400-24c6-5153-624a65d0f297	2021-05-24 22:36:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:36:36.877+03	2021-05-24 22:36:36.882+03	
4d7807f3-43ff-6f34-7334-1508a9937615	2021-05-24 22:36:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:36:56.877+03	2021-05-24 22:36:56.888+03	
7cdc2186-5813-e6b2-bc81-62473bb5a3be	2021-05-24 22:37:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:37:16.877+03	2021-05-24 22:37:16.884+03	
038c809c-b7ad-2fde-0b30-f1d1b12491c1	2021-05-24 22:37:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:37:36.877+03	2021-05-24 22:37:36.884+03	
8bb7b3cd-8c87-880a-7e88-4fc920f9be99	2021-05-24 22:37:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:37:56.877+03	2021-05-24 22:37:56.883+03	
b6e09fcd-662a-7fb2-9a32-906f04faf1a7	2021-05-24 22:38:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:38:16.877+03	2021-05-24 22:38:16.887+03	
a413cf48-4bef-6da3-65ca-4819ec215392	2021-05-24 22:38:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:38:36.877+03	2021-05-24 22:38:36.885+03	
406d531d-3e51-f484-f47d-d0145e2a4a3d	2021-05-24 22:38:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:38:56.877+03	2021-05-24 22:38:56.885+03	
bef84086-542a-976b-a729-bf16b692bd3f	2021-05-24 22:39:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:39:16.877+03	2021-05-24 22:39:16.887+03	
d8214b0a-e539-7006-deff-fd59cb092827	2021-05-24 22:39:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:39:36.877+03	2021-05-24 22:39:36.885+03	
edf47185-e41c-d8e5-ce31-fc7dee609e2a	2021-05-24 22:39:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:39:56.877+03	2021-05-24 22:39:56.884+03	
5dddcf31-b367-cf67-9ad1-df154afb5922	2021-05-24 22:40:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:40:16.877+03	2021-05-24 22:40:16.882+03	
c494b7aa-2e9d-f37a-a797-8b03da63e34d	2021-05-24 22:40:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:40:36.877+03	2021-05-24 22:40:36.886+03	
7e5bc9f4-6479-74c4-307a-8a1fae258f56	2021-05-24 22:40:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:40:56.877+03	2021-05-24 22:40:56.883+03	
27967aec-ef64-ab60-a45e-dea31962018c	2021-05-24 22:41:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:41:16.877+03	2021-05-24 22:41:17.118+03	
07f1ff79-d8ce-8baa-cac1-9bacf7d5ea63	2021-05-24 22:41:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:41:36.877+03	2021-05-24 22:41:36.885+03	
f4038f08-43ec-6874-2d00-dcd8f57bbcf2	2021-05-24 22:41:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:41:56.877+03	2021-05-24 22:41:56.883+03	
aaa99e18-dcdc-6824-0774-e582f82deebe	2021-05-24 22:42:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:42:16.877+03	2021-05-24 22:42:16.884+03	
ad718e46-365a-82b9-884b-7343d2833d5a	2021-05-24 22:42:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:42:36.877+03	2021-05-24 22:42:36.883+03	
df732585-3d3f-3a10-a192-f3cae49593bf	2021-05-24 22:42:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:42:56.877+03	2021-05-24 22:42:56.883+03	
8d14e0cd-cb8d-228a-434d-9643d88c25a8	2021-05-24 22:43:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:43:16.877+03	2021-05-24 22:43:17.198+03	
3aee2f26-a37d-b222-8a21-8dd2b4af37d2	2021-05-24 22:43:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:43:36.877+03	2021-05-24 22:43:36.883+03	
e9345ecc-da76-ff7f-998d-7d8b8d02dade	2021-05-24 22:43:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:43:56.877+03	2021-05-24 22:43:56.883+03	
715e611f-c9e7-df9f-53ae-c88f3c287edc	2021-05-24 22:44:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:44:16.877+03	2021-05-24 22:44:16.886+03	
c2e98e1e-ffc7-a23a-04e3-f5fce451f702	2021-05-24 22:44:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:44:36.877+03	2021-05-24 22:44:36.884+03	
1fb34ca6-993c-2c37-0375-a1e5a7ddde69	2021-05-24 22:44:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:44:56.877+03	2021-05-24 22:44:56.885+03	
58384051-d67b-b14b-bd90-8e55e9f32c46	2021-05-24 22:45:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:45:16.877+03	2021-05-24 22:45:16.883+03	
3b431fb0-62cd-6473-7bd5-fcd498461a20	2021-05-24 22:45:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:45:36.877+03	2021-05-24 22:45:36.883+03	
c9e3b83d-2e7c-99e2-e942-d0913b666a25	2021-05-24 22:45:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:45:56.877+03	2021-05-24 22:45:56.883+03	
26a7e738-c0e0-4116-e704-1a94a88f3b23	2021-05-24 22:46:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:46:16.878+03	2021-05-24 22:46:16.885+03	
11dcd301-1aae-ee0d-ef86-f101b943ccdc	2021-05-24 22:46:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:46:37.877+03	2021-05-24 22:46:37.883+03	
c2a71936-d6ce-0fa9-7487-fb3ff4388e92	2021-05-24 22:46:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:46:57.877+03	2021-05-24 22:46:57.884+03	
988bccb3-b8e1-7e7f-588c-b7b4d1225dcc	2021-05-24 22:47:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:47:17.877+03	2021-05-24 22:47:17.883+03	
aaaf7fed-a3ca-4ad1-6785-94f706b41ef3	2021-05-24 22:47:37.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:47:37.877+03	2021-05-24 22:47:37.885+03	
2b87fb8b-4d80-6487-b1d6-536a9b0bd442	2021-05-24 22:47:57.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:47:57.878+03	2021-05-24 22:47:57.887+03	
cfba07cd-5391-d25f-8410-26c69254f99d	2021-05-24 22:48:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:48:18.877+03	2021-05-24 22:48:18.886+03	
0deecc6e-16d3-f495-f79a-b3632485913c	2021-05-24 22:48:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:48:38.877+03	2021-05-24 22:48:38.882+03	
b8446df9-ace2-cda4-c6e2-7d0538ed7a3e	2021-05-24 22:48:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:48:58.877+03	2021-05-24 22:48:58.882+03	
9c9558ff-6523-96db-f7ff-18873233a8cc	2021-05-24 22:49:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:49:18.877+03	2021-05-24 22:49:18.884+03	
1ef9e2c8-79dc-8574-c902-8c4a4c782a56	2021-05-24 22:49:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:49:38.877+03	2021-05-24 22:49:38.883+03	
e6402c6c-bd8f-a320-96cd-b6210b88eba8	2021-05-24 22:49:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:49:58.877+03	2021-05-24 22:49:58.882+03	
2b5d0cc5-def6-ca44-047f-b00f24b9750f	2021-05-24 22:50:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:50:08.877+03	2021-05-24 22:50:08.884+03	
4a1fe2d5-1d50-2ad5-4f85-f5ff207b8419	2021-05-24 22:50:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:50:28.877+03	2021-05-24 22:50:28.883+03	
042726b0-6daa-cd61-36c1-694e2386353e	2021-05-24 22:50:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:50:48.877+03	2021-05-24 22:50:48.882+03	
f6472127-f2d3-447b-4a52-f787cf0ce64f	2021-05-24 22:51:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:51:08.877+03	2021-05-24 22:51:08.888+03	
eb140589-830c-7931-003d-8ff4909e1f87	2021-05-24 22:51:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:51:29.876+03	2021-05-24 22:51:29.883+03	
697d6d74-f114-ee26-ee0f-0b6e9a6f50eb	2021-05-24 22:51:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:51:50.877+03	2021-05-24 22:51:50.884+03	
5f656548-7cca-0e03-b5c6-97edfb4ccbac	2021-05-24 22:52:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:52:10.877+03	2021-05-24 22:52:10.885+03	
4ea71127-279b-3a1e-03b5-9a24d2a81044	2021-05-24 22:52:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:52:30.877+03	2021-05-24 22:52:30.885+03	
868c7b1f-366a-1a53-84a2-83e4fb794b7c	2021-05-24 22:52:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:52:50.877+03	2021-05-24 22:52:50.883+03	
0fadc318-a232-f15c-46b7-832966e0766c	2021-05-24 22:53:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:53:10.877+03	2021-05-24 22:53:10.884+03	
d2110424-9fb0-57a0-489f-56818b4cd54d	2021-05-24 22:53:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:53:30.877+03	2021-05-24 22:53:30.885+03	
d4b74650-fbc6-7e3c-6ca1-9355eb528140	2021-05-24 22:53:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:53:50.877+03	2021-05-24 22:53:50.89+03	
45411009-a35d-d8c3-d033-79696bcc2d56	2021-05-24 22:54:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:54:10.877+03	2021-05-24 22:54:10.887+03	
9ac4e6fa-3780-ceba-1d95-d12482f5b1ca	2021-05-24 22:54:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:54:30.877+03	2021-05-24 22:54:30.894+03	
3fcc0d68-b83b-2777-f93b-98a5eaa52e8d	2021-05-24 22:54:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:54:50.877+03	2021-05-24 22:54:50.883+03	
f0da6a1d-ea84-9ba8-8a82-c4bd75ce4618	2021-05-27 18:05:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:05:05.951+03	2021-05-27 18:05:05.958+03	
27f0e080-4c33-0c79-5b99-4bc873aa1b35	2021-05-24 22:54:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:54:40.877+03	2021-05-24 22:54:40.884+03	
da4b1e8c-1111-2b9c-08c0-0d9f9e748a6e	2021-05-24 23:18:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:18:53.877+03	2021-05-24 23:18:53.885+03	
b8f18014-3f2c-703c-41e4-007046c76ef2	2021-05-24 22:55:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:55:00.877+03	2021-05-24 22:55:00.883+03	
1689d27b-a0be-df54-946f-7cb19728f6ea	2021-05-24 22:55:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:55:20.877+03	2021-05-24 22:55:20.883+03	
0c4135b6-c601-79be-c3e6-400ab55c1a89	2021-05-24 23:19:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:19:13.877+03	2021-05-24 23:19:13.885+03	
6d0ba785-01e8-0cf9-777a-ffb376bd71f6	2021-05-24 22:55:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:55:40.877+03	2021-05-24 22:55:40.884+03	
a85eb5a7-4737-8dc4-5fe6-e6c4b783a560	2021-05-24 22:56:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:56:00.877+03	2021-05-24 22:56:01.101+03	
d86ca739-2b1f-49f4-328e-9771f48f6330	2021-05-24 23:19:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:19:33.877+03	2021-05-24 23:19:33.883+03	
b562a124-fe5e-92b1-71d1-eeb8e2e90bd5	2021-05-24 22:56:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:56:20.877+03	2021-05-24 22:56:20.884+03	
89527dc4-f2e4-c3c1-5f54-c3134da776b4	2021-05-24 22:56:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:56:40.877+03	2021-05-24 22:56:40.885+03	
e052e706-54df-b31a-ea6d-fa11701ce315	2021-05-24 23:19:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:19:53.877+03	2021-05-24 23:19:53.883+03	
e6164683-95cc-135d-b63c-afbb635d520e	2021-05-24 22:57:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:57:00.877+03	2021-05-24 22:57:01.218+03	
0d3235ac-11c7-629b-d130-3045bfbd3f3b	2021-05-24 22:57:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:57:20.877+03	2021-05-24 22:57:20.883+03	
96442f22-db27-ba91-777e-88b83c962f89	2021-05-24 23:20:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:20:03.877+03	2021-05-24 23:20:03.882+03	
dd356c0a-849a-f49c-8801-f0467c156656	2021-05-24 22:57:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:57:41.877+03	2021-05-24 22:57:41.884+03	
b523aff2-3eb6-209a-3b39-7a9d103213eb	2021-05-24 22:58:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:58:01.877+03	2021-05-24 22:58:01.882+03	
0a6bb568-bf0b-4583-b28f-792a3020c461	2021-05-24 23:20:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:20:23.877+03	2021-05-24 23:20:23.884+03	
0a1e51e8-5de8-77e3-68a1-fa8e7d6cb140	2021-05-24 22:58:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:58:21.877+03	2021-05-24 22:58:22.11+03	
0c90c85b-5e18-514a-91c0-9149a4dd1987	2021-05-24 22:58:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:58:41.877+03	2021-05-24 22:58:41.884+03	
ecb0a4ef-d2f6-365c-b919-8c5f68608ff1	2021-05-24 23:20:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:20:43.877+03	2021-05-24 23:20:44.22+03	
ce1e787f-8055-cc23-ed66-3d9b00dc6eab	2021-05-24 22:59:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:59:01.877+03	2021-05-24 22:59:01.884+03	
ad801dd6-2560-90ef-143f-5b8cecaa2ff4	2021-05-24 22:59:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:59:21.877+03	2021-05-24 22:59:21.884+03	
6808ab50-4ca5-1311-344e-cf6ee741a407	2021-05-24 23:21:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:21:03.877+03	2021-05-24 23:21:03.883+03	
250a7b2f-157a-d4fc-480f-66a012972824	2021-05-24 22:59:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:59:31.877+03	2021-05-24 22:59:31.883+03	
be317c57-5a66-d63d-90ec-8dc6224408df	2021-05-24 22:59:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:59:51.877+03	2021-05-24 22:59:51.884+03	
3d4328dd-cd25-2bcb-b944-a374b84416db	2021-05-24 23:21:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:21:23.877+03	2021-05-24 23:21:23.882+03	
8911a889-725a-df46-146e-a223b9530e3a	2021-05-24 23:00:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:00:01.877+03	2021-05-24 23:00:01.883+03	
9d46dee4-cc3f-ede6-9fc2-aec0d1e5d36b	2021-05-24 23:21:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:21:43.877+03	2021-05-24 23:21:43.882+03	
be4de38a-2a77-9052-5fd9-686186e4a085	2021-05-24 23:22:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:22:03.877+03	2021-05-24 23:22:03.883+03	
8b375c67-5489-6d02-7a4e-4c093a2330f0	2021-05-24 23:22:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:22:23.877+03	2021-05-24 23:22:23.884+03	
bcfc767f-52f3-1491-d942-6d7bfd446c31	2021-05-24 23:22:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:22:43.877+03	2021-05-24 23:22:43.884+03	
a0b87422-5b74-4aaa-6d3e-200e9c7ce85f	2021-05-24 23:23:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:23:03.877+03	2021-05-24 23:23:03.885+03	
6bdb9ff3-5f99-4050-7464-49fb5e14dd7a	2021-05-24 23:23:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:23:23.877+03	2021-05-24 23:23:23.885+03	
c0e45c41-a1ba-9f43-b546-77f1aed1a984	2021-05-24 23:23:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:23:43.877+03	2021-05-24 23:23:43.884+03	
fa4b465b-b1bd-dd19-fd53-e6cb081be955	2021-05-24 23:24:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:24:03.877+03	2021-05-24 23:24:03.883+03	
406dcf92-1682-641f-add2-ea0ae4d64168	2021-05-24 23:24:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:24:23.877+03	2021-05-24 23:24:23.882+03	
ff5500c3-33bf-7fdf-0b97-27ba7c9faf05	2021-05-24 23:24:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:24:43.877+03	2021-05-24 23:24:43.883+03	
a9c3cab4-035c-1a4b-7e6d-4b3a6d0d662d	2021-05-24 23:25:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:25:03.877+03	2021-05-24 23:25:03.883+03	
60f5b662-abca-e668-4547-dc24a0e5ad21	2021-05-24 23:25:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:25:23.877+03	2021-05-24 23:25:23.883+03	
371f4f80-ad43-7e3a-add9-62747e280f9c	2021-05-24 23:25:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:25:43.877+03	2021-05-24 23:25:43.883+03	
014d224b-592f-35b0-8403-4506635e4d7f	2021-05-24 23:26:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:26:03.877+03	2021-05-24 23:26:03.884+03	
a06839fd-e03f-e93a-93bf-3b90dab7aa12	2021-05-24 23:26:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:26:23.877+03	2021-05-24 23:26:23.885+03	
45c63a88-528c-6c92-b4a7-7995a5741271	2021-05-24 23:26:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:26:43.877+03	2021-05-24 23:26:43.883+03	
c560f1e6-f322-0ed7-7a45-55b58f54ad1c	2021-05-24 23:27:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:27:03.877+03	2021-05-24 23:27:03.884+03	
a4d47936-adfe-4c37-4a10-6b662199d048	2021-05-24 23:27:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:27:23.877+03	2021-05-24 23:27:23.882+03	
186f3400-246f-4c78-e1fe-31ab5dcd0285	2021-05-24 23:27:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:27:43.877+03	2021-05-24 23:27:43.884+03	
83850c1b-6cb0-dfeb-b555-7c61d681e0a2	2021-05-24 23:28:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:28:03.877+03	2021-05-24 23:28:03.884+03	
b1bffda6-9a61-73a7-6063-276cc245a14c	2021-05-24 23:28:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:28:23.877+03	2021-05-24 23:28:23.883+03	
b31c1c19-375b-c48c-c137-1c18498d3f82	2021-05-24 23:28:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:28:43.877+03	2021-05-24 23:28:43.885+03	
ce9832b9-4c3c-ded7-7233-a1a869810403	2021-05-24 23:29:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:29:03.877+03	2021-05-24 23:29:03.882+03	
fd200713-84ee-e70d-8213-466989c09e9e	2021-05-24 23:29:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:29:23.877+03	2021-05-24 23:29:23.883+03	
e72626db-29df-2d6b-e61a-b66272349fed	2021-05-24 23:29:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:29:43.877+03	2021-05-24 23:29:43.883+03	
02c3aed4-3089-dd2b-b4a7-6398dc8a0a6a	2021-05-24 23:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 23:30:00.877+03	2021-05-24 23:30:00.882+03	ERROR
1225e2cf-28e4-b9e9-a9fc-b76ac2b04de1	2021-05-24 23:30:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:30:13.877+03	2021-05-24 23:30:13.885+03	
0bdc9af3-d596-3e2e-de09-6bb19f3e1bfb	2021-05-24 23:30:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:30:33.877+03	2021-05-24 23:30:33.886+03	
02236d67-4187-722f-5bc0-0a6f0f8beabe	2021-05-24 23:30:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:30:53.877+03	2021-05-24 23:30:53.883+03	
926635b1-47e7-8469-8bf5-c19d24d4f1c5	2021-05-24 23:31:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:31:13.877+03	2021-05-24 23:31:13.884+03	
e2f963f4-ac65-03f4-a44d-b2485df63e8e	2021-05-24 23:31:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:31:33.877+03	2021-05-24 23:31:33.884+03	
d203981b-7f44-4774-d425-84a9c293f537	2021-05-24 23:31:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:31:53.877+03	2021-05-24 23:31:53.885+03	
75a91c73-8971-65af-a802-83e1073c18e8	2021-05-24 23:32:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:32:13.877+03	2021-05-24 23:32:13.884+03	
c1186409-6ce3-e17b-2394-d658e9a5cd3f	2021-05-24 23:32:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:32:33.877+03	2021-05-24 23:32:33.882+03	
f5be2202-d311-cc41-ab1d-8a5282276020	2021-05-24 23:32:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:32:53.877+03	2021-05-24 23:32:53.884+03	
588fb6cc-5103-4bf8-1a02-bd363db93159	2021-05-24 23:33:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:33:13.877+03	2021-05-24 23:33:13.884+03	
b9c05fa0-b648-2384-3c4c-b951db42ae53	2021-05-26 04:18:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:18:04.79+03	2021-05-26 04:18:04.797+03	
0b3e5673-99bd-1d74-624d-7de7664e955b	2021-05-24 22:55:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:55:10.877+03	2021-05-24 22:55:10.883+03	
ba15f08b-2207-cefa-3020-7e7cbef0ba54	2021-05-24 23:21:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:21:53.877+03	2021-05-24 23:21:53.884+03	
8b7beb4d-1e02-4d98-6a96-5285679be2c8	2021-05-24 22:55:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:55:30.877+03	2021-05-24 22:55:30.883+03	
05b7c2bf-0a70-b077-82d9-d3cf23952fae	2021-05-24 22:55:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:55:50.877+03	2021-05-24 22:55:50.884+03	
1a0750bd-dd51-0561-d758-fb430e87839d	2021-05-24 23:22:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:22:13.877+03	2021-05-24 23:22:13.892+03	
ee44b7c3-b1fa-a5f6-a9c5-162941a401ca	2021-05-24 22:56:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:56:10.877+03	2021-05-24 22:56:10.885+03	
e2f8c4df-6414-fef3-2fd5-43d1eea4d6a6	2021-05-24 22:56:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:56:30.877+03	2021-05-24 22:56:30.885+03	
57fc5403-7ccf-5cea-bbef-d79b986b2f5b	2021-05-24 23:22:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:22:33.877+03	2021-05-24 23:22:33.883+03	
e1f1a363-70f9-b653-e744-f4452d60df51	2021-05-24 22:56:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:56:50.877+03	2021-05-24 22:56:50.883+03	
8f73bfd9-f2df-c67d-0724-c76b92d59ebd	2021-05-24 22:57:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:57:10.877+03	2021-05-24 22:57:10.883+03	
86003ab6-8950-c16e-c536-c78d446e7ae5	2021-05-24 23:22:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:22:53.877+03	2021-05-24 23:22:53.884+03	
e59af549-4857-ed5b-12c6-015c84dcfeef	2021-05-24 22:57:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:57:31.877+03	2021-05-24 22:57:31.883+03	
879a7a97-1fa4-0b0d-e64b-f5355e24183a	2021-05-24 22:57:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:57:51.877+03	2021-05-24 22:57:51.883+03	
f21360d8-c81e-ca3b-31fa-08748e6f7449	2021-05-24 23:23:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:23:13.877+03	2021-05-24 23:23:13.885+03	
d64494f7-d2c1-66dd-96d6-12390319a350	2021-05-24 22:58:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:58:11.877+03	2021-05-24 22:58:11.887+03	
dacc55d6-19e2-f8c6-f850-8e775079b6f0	2021-05-24 22:58:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:58:31.877+03	2021-05-24 22:58:31.896+03	
00351ed8-9521-8615-2e8c-89ad0697f513	2021-05-24 23:23:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:23:33.877+03	2021-05-24 23:23:33.882+03	
ba705749-3d5f-1387-ca15-d0a7432ddbc3	2021-05-24 22:58:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:58:51.877+03	2021-05-24 22:58:51.883+03	
78e1eddb-9f18-5523-1bc7-8512ec6682b6	2021-05-24 22:59:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:59:11.877+03	2021-05-24 22:59:11.884+03	
bba0a303-556a-1725-3081-f0807f79a167	2021-05-24 23:23:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:23:53.877+03	2021-05-24 23:23:53.884+03	
184efc53-5eec-bcd1-73f4-f4546e855560	2021-05-24 22:59:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 22:59:41.877+03	2021-05-24 22:59:41.884+03	
de82ef0f-642c-4851-423f-758d17ffb675	2021-05-24 23:00:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 23:00:00.877+03	2021-05-24 23:00:00.883+03	ERROR
04a88852-d9eb-92c0-489d-b73a148ef944	2021-05-24 23:24:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:24:13.877+03	2021-05-24 23:24:13.898+03	
362aecb4-7c02-d849-d611-6f08b31f3b62	2021-05-24 23:24:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:24:33.877+03	2021-05-24 23:24:33.884+03	
bf85c51e-89fb-6339-00e1-8efa6131b7e8	2021-05-24 23:24:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:24:53.877+03	2021-05-24 23:24:53.883+03	
c0b23128-94a7-7c60-d62d-1020650f4360	2021-05-24 23:25:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:25:13.877+03	2021-05-24 23:25:13.883+03	
46caecad-72e8-7ad1-903a-dd78e4ceca86	2021-05-24 23:25:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:25:33.877+03	2021-05-24 23:25:33.883+03	
245b81b9-a5cc-4565-2d34-2b7a681ed790	2021-05-24 23:25:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:25:53.877+03	2021-05-24 23:25:53.884+03	
80147fa5-7993-45c7-447d-18b60f3bef0b	2021-05-24 23:26:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:26:13.877+03	2021-05-24 23:26:13.885+03	
2e8bd4de-c8f0-bebe-536b-10f62298864b	2021-05-24 23:26:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:26:33.877+03	2021-05-24 23:26:33.884+03	
82fc0828-9086-3c85-f10f-6bd384d4c19f	2021-05-24 23:26:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:26:53.877+03	2021-05-24 23:26:53.882+03	
c56bdc6c-7dc5-c1e6-a566-184362eb38e9	2021-05-24 23:27:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:27:13.877+03	2021-05-24 23:27:13.883+03	
d48863b8-acd7-9a3e-1df5-0ffa232dd181	2021-05-24 23:27:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:27:33.877+03	2021-05-24 23:27:33.884+03	
e19bf411-4294-13bf-d98f-875775071863	2021-05-24 23:27:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:27:53.877+03	2021-05-24 23:27:53.885+03	
b0bd7ef5-1a6f-bfaf-2148-b593a3502720	2021-05-24 23:28:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:28:13.877+03	2021-05-24 23:28:13.885+03	
4269bc1e-08b2-9ffc-446f-b9bc75d14016	2021-05-24 23:28:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:28:33.877+03	2021-05-24 23:28:33.885+03	
f82eebd4-aaee-bd30-6858-36aed645749d	2021-05-24 23:28:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:28:53.877+03	2021-05-24 23:28:53.883+03	
076c2f50-a32f-5488-5e55-ace171fac16d	2021-05-24 23:29:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:29:13.877+03	2021-05-24 23:29:13.884+03	
222f6134-df8a-babe-4823-2f6b562ec3ca	2021-05-24 23:29:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:29:33.877+03	2021-05-24 23:29:34.108+03	
64056a2f-28f8-4876-4ec8-893eddad33da	2021-05-24 23:29:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:29:53.877+03	2021-05-24 23:29:53.884+03	
73871225-31a9-3531-ba92-683402544a31	2021-05-24 23:30:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:30:03.877+03	2021-05-24 23:30:03.888+03	
8b701011-5adb-1329-a4cf-fd245245f936	2021-05-24 23:30:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:30:23.877+03	2021-05-24 23:30:23.885+03	
78dbaba8-2280-64c0-128d-d5364ba2f9e4	2021-05-24 23:30:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:30:43.877+03	2021-05-24 23:30:43.885+03	
ef12b67e-2e4d-dca1-325d-bbeefc44450d	2021-05-24 23:31:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:31:03.877+03	2021-05-24 23:31:03.884+03	
84dea621-5559-7c37-159f-07d2b93be103	2021-05-24 23:31:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:31:23.877+03	2021-05-24 23:31:23.883+03	
c67724d4-5c54-8a8d-8edc-a301946eb2e4	2021-05-24 23:31:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:31:43.877+03	2021-05-24 23:31:43.985+03	
abd621de-d522-7f08-b1ae-ab4f83e0c1fc	2021-05-24 23:32:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:32:03.877+03	2021-05-24 23:32:03.883+03	
3a9341e6-70b9-d0e8-16dd-7a2a3bd6d0dc	2021-05-24 23:32:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:32:23.877+03	2021-05-24 23:32:23.883+03	
b5de6b1d-fbda-8a37-cce1-c3619c5845f5	2021-05-24 23:32:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:32:43.877+03	2021-05-24 23:32:43.884+03	
8603c2c6-3b1b-6210-2149-016a516cc539	2021-05-24 23:33:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:33:03.877+03	2021-05-24 23:33:03.929+03	
d3ccc641-df10-2c2a-1f58-92047aa8134b	2021-05-24 23:33:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:33:23.877+03	2021-05-24 23:33:23.883+03	
287a9e9c-58f7-b611-b1ef-7c5bb294494d	2021-05-24 23:33:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:33:33.877+03	2021-05-24 23:33:33.884+03	
dfa6f18c-2b78-f5be-15d9-27df83b02568	2021-05-24 23:33:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:33:43.877+03	2021-05-24 23:33:43.886+03	
d43e3c9b-d53a-e1d6-9c82-e37e9172f472	2021-05-24 23:33:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:33:53.877+03	2021-05-24 23:33:53.885+03	
47f2603d-7265-6266-77a2-2a2bfbbea855	2021-05-24 23:34:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:34:03.877+03	2021-05-24 23:34:03.883+03	
e838ec46-fcc6-2f2b-cbd3-9fc7efdd49a2	2021-05-24 23:34:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:34:13.877+03	2021-05-24 23:34:13.887+03	
39cb3881-ae0c-f2c6-fa09-0ff522068fe8	2021-05-24 23:34:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:34:23.877+03	2021-05-24 23:34:23.888+03	
0e6f0b17-863a-4304-81ff-724bb41bb25b	2021-05-24 23:34:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:34:33.877+03	2021-05-24 23:34:33.885+03	
e32f0b54-9552-8be7-5b44-36496e8b0777	2021-05-24 23:34:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:34:43.877+03	2021-05-24 23:34:43.903+03	
aeda2725-fee1-c718-0380-db95a448aec9	2021-05-24 23:34:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:34:53.877+03	2021-05-24 23:34:53.884+03	
0c95bad1-6013-aaf7-17a2-871a1577cb8d	2021-05-24 23:35:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:35:03.877+03	2021-05-24 23:35:03.884+03	
895ac3fd-1f32-e84a-36a3-6c8c6db5d15e	2021-05-24 23:35:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:35:13.877+03	2021-05-24 23:35:13.885+03	
9aaeb450-e961-a5d4-450e-db0e48536d97	2021-05-24 23:35:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:35:23.877+03	2021-05-24 23:35:23.885+03	
1d81ece5-6fa1-12b5-f517-951603e73b53	2021-05-24 23:35:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:35:33.877+03	2021-05-24 23:35:33.884+03	
05af61ce-4c59-d773-e7e0-3f3b457801ea	2021-05-24 23:35:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:35:53.877+03	2021-05-24 23:35:53.885+03	
bf6056aa-d734-8828-15da-d76d0ac8ec0b	2021-05-24 23:36:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:36:13.877+03	2021-05-24 23:36:13.882+03	
f8505195-8f27-cb88-09be-5560815350c2	2021-05-24 23:36:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:36:33.877+03	2021-05-24 23:36:33.885+03	
b990fdf6-3f87-fbc2-f42a-d187b71a504d	2021-05-24 23:36:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:36:53.877+03	2021-05-24 23:36:53.89+03	
82058df7-5aa8-7308-aca8-7c81bede0b3e	2021-05-24 23:37:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:37:13.877+03	2021-05-24 23:37:13.882+03	
809b34f9-7297-37bf-0f2f-00f6af52a954	2021-05-24 23:37:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:37:33.877+03	2021-05-24 23:37:33.883+03	
bca2fd79-bf1e-5707-8754-ead8f228215f	2021-05-24 23:37:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:37:53.877+03	2021-05-24 23:37:53.886+03	
e28789db-5c95-6c33-dfaa-d8adcf5ce509	2021-05-24 23:38:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:38:13.877+03	2021-05-24 23:38:13.883+03	
da1eaef7-d1a4-93fc-ad9b-bd1b614e4fa4	2021-05-24 23:38:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:38:33.877+03	2021-05-24 23:38:33.883+03	
16db2d14-2d85-1d05-ae19-0f7089a8d716	2021-05-24 23:38:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:38:53.877+03	2021-05-24 23:38:53.883+03	
472b4ec0-d403-bb05-b118-0e9bcf531976	2021-05-24 23:39:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:39:13.877+03	2021-05-24 23:39:13.885+03	
4ff845a5-293b-b165-90dc-f9122e2c8e08	2021-05-24 23:39:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:39:33.877+03	2021-05-24 23:39:33.883+03	
8146f0fc-485a-265d-9980-5ad5449414d5	2021-05-24 23:39:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:39:53.877+03	2021-05-24 23:39:53.883+03	
e127499f-eb12-5483-dd2e-80b978271c16	2021-05-24 23:40:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:40:03.877+03	2021-05-24 23:40:03.899+03	
0d1c7296-988b-88c4-8be4-fb053dd2fdd8	2021-05-24 23:40:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:40:23.877+03	2021-05-24 23:40:23.884+03	
2371c1a8-d878-4fde-d669-95984763fc5b	2021-05-24 23:40:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:40:43.877+03	2021-05-24 23:40:43.98+03	
c3665ef3-e2b1-6072-79ba-e618f23acae1	2021-05-24 23:41:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:41:03.877+03	2021-05-24 23:41:03.884+03	
6e647e55-a42e-437c-c965-e066d0438b5f	2021-05-24 23:41:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:41:23.877+03	2021-05-24 23:41:23.884+03	
cd4ed9ba-681a-6440-364f-bc7ae663fa6d	2021-05-24 23:41:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:41:43.877+03	2021-05-24 23:41:43.883+03	
8209d76e-6a2e-50d6-dc71-f6d9d186a786	2021-05-24 23:42:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:42:03.877+03	2021-05-24 23:42:03.89+03	
f9951c9c-bfe5-20f1-63fb-369ae3d1880d	2021-05-24 23:42:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:42:23.877+03	2021-05-24 23:42:23.884+03	
eb984dc7-c783-eb0b-744f-b991988a8964	2021-05-24 23:42:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:42:33.877+03	2021-05-24 23:42:33.883+03	
859d7a82-b99d-5eec-fb5a-c45f4078a4dc	2021-05-24 23:42:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:42:53.877+03	2021-05-24 23:42:53.884+03	
0b284724-f0c4-48c6-b6af-bb221ceff34e	2021-05-24 23:43:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:43:13.877+03	2021-05-24 23:43:13.883+03	
97e1ce3a-3035-5cdc-0497-b3f9cf88cf2d	2021-05-24 23:43:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:43:33.877+03	2021-05-24 23:43:33.883+03	
6b0fe531-19a3-810a-5dde-706a480468d9	2021-05-24 23:43:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:43:53.877+03	2021-05-24 23:43:53.885+03	
8779f7e3-c0fd-671f-535b-3bad31c224b0	2021-05-24 23:44:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:44:13.877+03	2021-05-24 23:44:13.889+03	
a13524b6-8f12-92b4-ab36-49a68a63c504	2021-05-24 23:44:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:44:33.877+03	2021-05-24 23:44:33.883+03	
afa0d5b4-45c4-089b-8dbc-5420090072b8	2021-05-24 23:44:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:44:53.877+03	2021-05-24 23:44:53.885+03	
86b37108-7104-1558-1a67-92d35b05dc5b	2021-05-24 23:45:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:45:13.877+03	2021-05-24 23:45:13.883+03	
f449544c-4f29-4a6c-374a-a01e1f27be35	2021-05-24 23:45:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:45:33.877+03	2021-05-24 23:45:33.882+03	
b3a804e2-5b96-1233-fd42-6efbf5c0462a	2021-05-24 23:45:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:45:53.877+03	2021-05-24 23:45:53.884+03	
0ab01477-5672-9351-62e2-360fbff390c4	2021-05-24 23:46:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:46:13.877+03	2021-05-24 23:46:13.884+03	
dd483d89-8de1-83af-ffed-af2580e78781	2021-05-24 23:46:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:46:33.877+03	2021-05-24 23:46:33.886+03	
2e10e5de-4bb6-a219-c875-4550a6121e18	2021-05-24 23:46:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:46:53.877+03	2021-05-24 23:46:53.884+03	
7d31bba2-08f2-6955-8c60-a5fac8739924	2021-05-24 23:47:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:47:13.877+03	2021-05-24 23:47:13.886+03	
097e7a96-ee6b-1cdb-0434-377e59c9454b	2021-05-24 23:47:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:47:33.877+03	2021-05-24 23:47:33.883+03	
50e05419-9eef-665c-db8d-255c152b55dc	2021-05-24 23:47:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:47:53.877+03	2021-05-24 23:47:53.939+03	
1f4e29f0-46de-4432-bc85-549beb4baf48	2021-05-24 23:48:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:48:13.877+03	2021-05-24 23:48:13.885+03	
199897e4-3be0-38c7-39da-61e047ae89d1	2021-05-24 23:48:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:48:33.877+03	2021-05-24 23:48:33.888+03	
6c105981-94d8-436e-547f-02f0c0b9431f	2021-05-24 23:48:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:48:53.877+03	2021-05-24 23:48:53.883+03	
58c8c6d6-25e4-f07e-310c-fe6c493704dc	2021-05-24 23:49:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:49:13.877+03	2021-05-24 23:49:13.885+03	
e5737884-6705-53c0-099d-4b603aadf80a	2021-05-24 23:49:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:49:33.877+03	2021-05-24 23:49:33.884+03	
967b23d8-6bd4-aa40-97ca-898665eb02cb	2021-05-24 23:49:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:49:53.877+03	2021-05-24 23:49:53.883+03	
4a40d448-9148-3ad3-cf88-c690f651aee6	2021-05-24 23:50:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:50:03.877+03	2021-05-24 23:50:03.885+03	
3d75448d-7380-0911-da9d-2f75196b4fb0	2021-05-24 23:50:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:50:23.877+03	2021-05-24 23:50:23.883+03	
b344fc2e-5731-a624-81cc-5d2b4383872a	2021-05-24 23:50:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:50:43.877+03	2021-05-24 23:50:43.899+03	
92112b15-05b6-11d4-ebd1-22c029723f40	2021-05-24 23:51:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:51:03.877+03	2021-05-24 23:51:03.885+03	
f078991b-7e63-0630-8d10-78312d3a5160	2021-05-24 23:51:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:51:23.877+03	2021-05-24 23:51:23.885+03	
ccb186e4-650c-8d73-69d6-bab8bc6c5956	2021-05-24 23:51:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:51:43.877+03	2021-05-24 23:51:43.885+03	
8e89226c-6945-eaa5-6071-084a31734d35	2021-05-24 23:52:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:52:03.877+03	2021-05-24 23:52:03.884+03	
e73403dd-5e3b-395d-70de-18ed6573cccb	2021-05-24 23:52:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:52:23.877+03	2021-05-24 23:52:23.885+03	
62408ff2-d73f-ce44-85df-c4608a379cf2	2021-05-24 23:52:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:52:43.877+03	2021-05-24 23:52:43.883+03	
9bdee489-0cd6-47dd-50d3-2bb55eb6ac95	2021-05-24 23:53:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:53:03.877+03	2021-05-24 23:53:03.883+03	
0b3776c9-80f2-c0e8-a963-d1717b56e891	2021-05-24 23:53:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:53:23.877+03	2021-05-24 23:53:23.884+03	
5a9bf0f0-db4e-037a-6bf0-0ef237468974	2021-05-24 23:53:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:53:43.877+03	2021-05-24 23:53:43.884+03	
08e9eea0-2efc-841c-e05a-5d3f640e6a02	2021-05-24 23:54:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:54:03.877+03	2021-05-24 23:54:03.883+03	
083bfcde-5a8e-f7aa-0a9c-4cbdc5379e1e	2021-05-24 23:54:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:54:23.877+03	2021-05-24 23:54:23.884+03	
06ee3bb5-dc6f-3418-b795-b970d2583054	2021-05-24 23:54:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:54:43.877+03	2021-05-24 23:54:43.884+03	
a4e96f79-49e2-31c6-2fe6-bea1146ed59e	2021-05-24 23:55:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:55:03.877+03	2021-05-24 23:55:03.883+03	
6a991fdd-6bfd-cdd5-9589-00afb2b1c8d8	2021-05-24 23:55:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:55:23.877+03	2021-05-24 23:55:23.939+03	
7e9fba1c-1750-c65b-f43f-d82c79e47f58	2021-05-24 23:55:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:55:43.877+03	2021-05-24 23:55:43.884+03	
cf8ae3ea-47f4-6194-116b-dbeecee76daa	2021-05-24 23:35:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:35:43.877+03	2021-05-24 23:35:43.886+03	
3a74327c-8d0d-0406-f368-ac69f673aa79	2021-05-24 23:36:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:36:03.877+03	2021-05-24 23:36:03.884+03	
f7a3b72d-1285-e70e-b074-112f80a62c5f	2021-05-24 23:36:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:36:23.877+03	2021-05-24 23:36:23.885+03	
b6603f20-5097-8337-8fd3-793eb52a1704	2021-05-24 23:36:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:36:43.877+03	2021-05-24 23:36:43.885+03	
5d25cbe3-d71a-5caa-8111-66b01e63d6d5	2021-05-24 23:37:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:37:03.877+03	2021-05-24 23:37:03.886+03	
e8473e68-84e6-4739-1e83-d507d5159bd0	2021-05-24 23:37:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:37:23.877+03	2021-05-24 23:37:23.885+03	
70a5297e-2033-44d6-e710-cf63e2632bd8	2021-05-24 23:37:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:37:43.877+03	2021-05-24 23:37:43.882+03	
7b3d3a97-6f8c-0a65-374d-c04a645bc37c	2021-05-24 23:38:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:38:03.877+03	2021-05-24 23:38:03.884+03	
3b2d3ff5-31c1-fb81-6019-4dc7cefe9b6c	2021-05-24 23:38:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:38:23.877+03	2021-05-24 23:38:23.883+03	
f06631e1-39a5-51c8-d60b-1e32fd379fed	2021-05-24 23:38:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:38:43.877+03	2021-05-24 23:38:43.883+03	
b0ed231a-1621-8811-26e9-d10011267fb6	2021-05-24 23:39:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:39:03.877+03	2021-05-24 23:39:03.883+03	
9e09b20d-6206-701c-bbda-ecfeefd52416	2021-05-24 23:39:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:39:23.877+03	2021-05-24 23:39:24.436+03	
eb4be3b0-d4ed-ce79-0c73-5f31b6d6feba	2021-05-24 23:39:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:39:43.877+03	2021-05-24 23:39:43.883+03	
71857992-b0b1-1273-a691-939264b3b65d	2021-05-24 23:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 23:40:00.877+03	2021-05-24 23:40:00.883+03	ERROR
cd4c12e4-b120-ddea-31f3-27974e964fe2	2021-05-24 23:40:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:40:13.877+03	2021-05-24 23:40:13.883+03	
32f9f708-880e-5a0f-6d99-1f843565a2cb	2021-05-24 23:40:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:40:33.877+03	2021-05-24 23:40:33.884+03	
e0cc7fbd-d29d-72f0-4d45-b903cc50da1c	2021-05-24 23:40:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:40:53.877+03	2021-05-24 23:40:54.116+03	
ea7cd351-c3af-b530-f367-1bf54e8d016b	2021-05-24 23:41:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:41:13.877+03	2021-05-24 23:41:13.885+03	
49b1b10c-727a-a5b6-2a5a-e0a1ea8b7ea8	2021-05-24 23:41:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:41:33.877+03	2021-05-24 23:41:33.883+03	
5d5b66c3-7a0e-e2f6-5651-588b177e2f66	2021-05-24 23:41:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:41:53.877+03	2021-05-24 23:41:53.883+03	
7354cea3-19e7-a961-fcd1-5af23f7a1c15	2021-05-24 23:42:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:42:13.877+03	2021-05-24 23:42:13.883+03	
64cdb0c4-31dc-851b-4603-7a1616a6452b	2021-05-24 23:42:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:42:43.877+03	2021-05-24 23:42:43.884+03	
78b96398-50a5-5e3b-056a-768ea8cb20c6	2021-05-24 23:43:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:43:03.877+03	2021-05-24 23:43:03.887+03	
f691d31b-9ae7-b5b6-7676-01e2044ff61c	2021-05-24 23:43:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:43:23.877+03	2021-05-24 23:43:23.884+03	
36fba7cb-51ea-c7a3-9ce2-428e2606960f	2021-05-24 23:43:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:43:43.877+03	2021-05-24 23:43:43.882+03	
5b92a6c0-397a-9cd6-731a-c5ff3b271745	2021-05-24 23:44:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:44:03.877+03	2021-05-24 23:44:03.883+03	
7343d101-b5b5-af14-0c84-8c8d06332830	2021-05-24 23:44:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:44:23.877+03	2021-05-24 23:44:23.884+03	
05c0f2ee-c87f-1a4d-e542-47626fbdb394	2021-05-24 23:44:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:44:43.877+03	2021-05-24 23:44:43.883+03	
f0cd124c-f42c-6744-cde7-74b92e424e04	2021-05-24 23:45:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:45:03.877+03	2021-05-24 23:45:03.885+03	
e68fea39-b049-207c-023f-5f6e8e9dea93	2021-05-24 23:45:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:45:23.877+03	2021-05-24 23:45:23.884+03	
17a52223-899b-d258-8f39-1f6f1df1e570	2021-05-24 23:45:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:45:43.877+03	2021-05-24 23:45:43.884+03	
0f5623b0-56f3-41a9-d653-5c7d3b695a3a	2021-05-24 23:46:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:46:03.877+03	2021-05-24 23:46:03.883+03	
9a20081e-daa7-5319-91b6-e92c25e421fc	2021-05-24 23:46:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:46:23.877+03	2021-05-24 23:46:23.885+03	
67bb9925-691f-a001-9236-67272824f530	2021-05-24 23:46:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:46:43.877+03	2021-05-24 23:46:43.884+03	
68cd241a-407b-3d77-af65-370bd5ca4d07	2021-05-24 23:47:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:47:03.877+03	2021-05-24 23:47:03.883+03	
c464ed85-0f2e-ee39-6891-c442588cdfa2	2021-05-24 23:47:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:47:23.877+03	2021-05-24 23:47:23.883+03	
15b0c7c1-24b9-82c2-9524-90f85a538f84	2021-05-24 23:47:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:47:43.877+03	2021-05-24 23:47:43.885+03	
3a801cd2-43d2-0d52-44fb-3292cef24c5c	2021-05-24 23:48:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:48:03.877+03	2021-05-24 23:48:03.884+03	
fa1fac5e-0f9f-c370-dd8d-c734a3bfd581	2021-05-24 23:48:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:48:23.877+03	2021-05-24 23:48:23.886+03	
e83fd4a3-d461-a075-2417-c4ab2fe7c7dd	2021-05-24 23:48:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:48:43.877+03	2021-05-24 23:48:43.883+03	
41d5cb92-f934-e732-8962-daa9e2ef228b	2021-05-24 23:49:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:49:03.877+03	2021-05-24 23:49:03.883+03	
0118ee3d-f951-4515-46a7-7857645273cc	2021-05-24 23:49:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:49:23.877+03	2021-05-24 23:49:23.884+03	
bec2b2d5-24f9-5cf5-8311-78e2d779442a	2021-05-24 23:49:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:49:43.877+03	2021-05-24 23:49:43.883+03	
2329ab97-f18b-6c12-a109-b677dfb933cd	2021-05-24 23:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-24 23:50:00.877+03	2021-05-24 23:50:00.881+03	ERROR
5b12be0b-ecf5-0f2e-0a80-21c74bf54790	2021-05-24 23:50:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:50:13.877+03	2021-05-24 23:50:13.891+03	
32c8f0b4-41ed-ee79-c2d4-ba26cc670a9a	2021-05-24 23:50:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:50:33.877+03	2021-05-24 23:50:33.883+03	
f680d880-064c-d779-da43-5db6421e2355	2021-05-24 23:50:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:50:53.877+03	2021-05-24 23:50:53.883+03	
313603ee-fc88-808d-6aba-2fd4651add41	2021-05-24 23:51:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:51:13.877+03	2021-05-24 23:51:13.884+03	
6d522033-ac53-affa-cf7e-165f922735e7	2021-05-24 23:51:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:51:33.877+03	2021-05-24 23:51:33.883+03	
77f997a3-a540-a2db-caec-ec8d7e7a73f0	2021-05-24 23:51:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:51:53.877+03	2021-05-24 23:51:53.883+03	
1ef7f94a-17ad-b9fe-e449-d1b0db81fc44	2021-05-24 23:52:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:52:13.877+03	2021-05-24 23:52:13.883+03	
66ae68c8-71b7-17dc-758d-7fd622d575f5	2021-05-24 23:52:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:52:33.877+03	2021-05-24 23:52:33.882+03	
3d4fde50-1a33-81df-227d-46949bdf60b4	2021-05-24 23:52:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:52:53.877+03	2021-05-24 23:52:53.885+03	
ab82425e-d3fc-3d99-5209-415ff31a752e	2021-05-24 23:53:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:53:13.877+03	2021-05-24 23:53:13.885+03	
9e8bf3a1-32d4-ebfa-789d-b9d9d1b6b31d	2021-05-24 23:53:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:53:33.877+03	2021-05-24 23:53:33.883+03	
dcceaaac-81c8-2b88-8305-675aa0df7b1c	2021-05-24 23:53:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:53:53.877+03	2021-05-24 23:53:53.885+03	
6139f1d3-31ce-b3c8-8015-5f6dd59ee9da	2021-05-24 23:54:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:54:13.877+03	2021-05-24 23:54:13.886+03	
19fa88dd-638a-5521-5413-a94ab7f5bbfe	2021-05-24 23:54:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:54:33.877+03	2021-05-24 23:54:33.884+03	
49e24dea-4c36-62da-68e2-d62b75bfbbab	2021-05-24 23:54:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:54:53.877+03	2021-05-24 23:54:53.885+03	
38f3dcf3-e2b2-2cd7-03e8-af11c9e2a665	2021-05-24 23:55:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:55:13.877+03	2021-05-24 23:55:13.886+03	
512c6f8b-e88c-99d7-1534-87ade409d411	2021-05-24 23:55:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:55:33.877+03	2021-05-24 23:55:33.884+03	
bcb9e2ea-e9c3-6f5d-08ac-a8ed927264c1	2021-05-24 23:55:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:55:53.877+03	2021-05-24 23:55:53.883+03	
42bb5fe3-cead-a2d4-719e-dde31fc6cd53	2021-05-24 23:56:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:56:13.877+03	2021-05-24 23:56:14.19+03	
928232e1-e54c-7c01-63dc-a887cacc5db5	2021-05-24 23:56:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:56:03.877+03	2021-05-24 23:56:03.886+03	
7b996402-fad1-0e65-e3c2-e73c92666411	2021-05-24 23:56:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:56:23.878+03	2021-05-24 23:56:23.885+03	
95b2c27b-1034-8e2b-c2fd-6c55d2e4fb1a	2021-05-24 23:56:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:56:44.877+03	2021-05-24 23:56:44.884+03	
a42d3b0a-c863-bdd0-4e80-da6b1fe2261f	2021-05-24 23:57:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:57:04.877+03	2021-05-24 23:57:04.883+03	
e1523677-617d-a8e2-def8-a19d033f313d	2021-05-24 23:57:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:57:24.877+03	2021-05-24 23:57:24.884+03	
c97769d9-c972-d681-da56-8342ba6e558e	2021-05-24 23:57:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:57:44.877+03	2021-05-24 23:57:44.882+03	
3f2275c3-43b7-9326-dd70-60dbfd9d542b	2021-05-24 23:58:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:58:04.877+03	2021-05-24 23:58:04.929+03	
6f16f8e5-994d-98b8-3a41-6c33e71da61e	2021-05-24 23:58:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:58:24.877+03	2021-05-24 23:58:24.885+03	
ed399c05-3143-5165-00e5-2ce680da6308	2021-05-24 23:58:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:58:44.877+03	2021-05-24 23:58:44.884+03	
16008246-f1a1-269e-c78e-201b7bde9439	2021-05-24 23:59:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:59:04.877+03	2021-05-24 23:59:04.886+03	
d521461a-b1c6-2589-b111-94a06ab359c1	2021-05-24 23:59:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:59:24.877+03	2021-05-24 23:59:24.883+03	
f16117e3-c95e-b358-b6c7-c1cf287ce081	2021-05-24 23:59:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:59:44.877+03	2021-05-24 23:59:44.885+03	
bf9730bf-6bbc-9b3e-4dda-60606ec5e273	2021-05-25 00:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 00:00:00.877+03	2021-05-25 00:00:00.882+03	ERROR
a4c35741-3137-59bd-894d-410707092f71	2021-05-25 00:00:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:00:14.877+03	2021-05-25 00:00:14.885+03	
a72a0bf4-7e55-3262-edcb-be84a81ff075	2021-05-25 00:00:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:00:34.877+03	2021-05-25 00:00:34.883+03	
70191770-43e1-7375-bc1b-918dd62983b5	2021-05-25 00:00:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:00:54.877+03	2021-05-25 00:00:54.883+03	
ea0bc18d-2cd0-67c2-2068-b727bf8b46e0	2021-05-25 00:01:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:01:14.877+03	2021-05-25 00:01:15.362+03	
7871940f-6a5c-d9df-7848-84edc2984075	2021-05-25 00:01:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:01:34.878+03	2021-05-25 00:01:34.884+03	
9ace40c8-8d89-388d-12fb-77b56b46ac22	2021-05-25 00:01:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:01:55.877+03	2021-05-25 00:01:55.884+03	
93c0389a-94f4-a77b-e043-680d161b7bc4	2021-05-25 00:02:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:02:15.877+03	2021-05-25 00:02:15.883+03	
7791b268-0f0d-5133-9d54-c65d69d1d421	2021-05-25 00:02:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:02:35.877+03	2021-05-25 00:02:35.886+03	
c52e3a8a-7c2e-cd62-26bd-b0b6f65a983d	2021-05-25 00:02:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:02:55.877+03	2021-05-25 00:02:55.884+03	
174c7c53-f697-4d65-d1ea-c14603e15792	2021-05-25 00:03:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:03:15.877+03	2021-05-25 00:03:15.885+03	
4e1654d9-ce91-e279-c136-bb28af968709	2021-05-25 00:03:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:03:35.877+03	2021-05-25 00:03:35.885+03	
f5416c93-7fbd-0e9b-2083-13c1f30c3f30	2021-05-25 00:03:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:03:55.877+03	2021-05-25 00:03:55.884+03	
54caca9f-7d24-d720-8d5d-00a909d5271b	2021-05-25 00:04:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:04:15.877+03	2021-05-25 00:04:15.885+03	
758048f7-ac80-d949-c373-6db4845a5053	2021-05-25 00:04:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:04:35.877+03	2021-05-25 00:04:35.885+03	
d47dcd94-850f-fa7e-f95d-e4ce4dce8abf	2021-05-25 00:04:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:04:55.877+03	2021-05-25 00:04:55.883+03	
c116c7e9-7780-49b5-8820-039295b63ea7	2021-05-25 00:05:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:05:15.877+03	2021-05-25 00:05:15.883+03	
010d4d1f-143e-a650-f2fc-7a8bb8ee3c24	2021-05-25 00:05:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:05:35.877+03	2021-05-25 00:05:36.197+03	
78e2d67b-57ba-3a54-3a07-99107bcb2efb	2021-05-25 00:05:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:05:55.877+03	2021-05-25 00:05:55.883+03	
5e9868a7-a451-fe92-e39d-115d087fea36	2021-05-25 00:06:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:06:15.877+03	2021-05-25 00:06:15.884+03	
d9a67910-bdcb-27f6-34cd-546372a2699f	2021-05-25 00:06:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:06:35.877+03	2021-05-25 00:06:35.883+03	
7466ad9c-6138-005b-f65e-11c307a5485a	2021-05-25 00:07:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:07:06.877+03	2021-05-25 00:07:06.884+03	
d371396d-faac-0685-e721-be932d602758	2021-05-25 00:07:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:07:26.877+03	2021-05-25 00:07:26.885+03	
ea505a0e-602e-efdb-4c85-47cbab70df43	2021-05-25 00:07:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:07:46.877+03	2021-05-25 00:07:46.885+03	
4bcd746e-2730-1e23-2484-a45bec9f6837	2021-05-25 00:08:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:08:06.877+03	2021-05-25 00:08:06.887+03	
c2036a87-418f-4d0b-5852-2a24ac8faf76	2021-05-25 00:08:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:08:26.877+03	2021-05-25 00:08:27.178+03	
b3109648-c886-7e1b-c735-495814eeea68	2021-05-25 00:08:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:08:46.877+03	2021-05-25 00:08:46.885+03	
8f7cb1ed-fb07-5920-2b3f-66e8d035d448	2021-05-25 00:09:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:09:06.877+03	2021-05-25 00:09:06.887+03	
359281ad-4d51-80d9-918e-1ed20239050c	2021-05-25 00:09:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:09:26.877+03	2021-05-25 00:09:26.884+03	
7ff0894d-2e3b-340c-225f-5821b2f4dd15	2021-05-25 00:09:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:09:36.877+03	2021-05-25 00:09:36.886+03	
f7458749-e293-7916-141d-1756dbe4442e	2021-05-25 00:09:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:09:56.877+03	2021-05-25 00:09:56.885+03	
d99bf31b-3644-238d-9676-051879fdd8ae	2021-05-25 00:10:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:10:06.877+03	2021-05-25 00:10:06.887+03	
c835e2ad-3c26-041f-090c-bab03ff7a7b9	2021-05-25 00:10:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:10:26.877+03	2021-05-25 00:10:26.885+03	
c57a6bd2-bfe9-29a9-8ddf-86dd54ed2d38	2021-05-25 00:10:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:10:46.877+03	2021-05-25 00:10:47.217+03	
e2756821-b2ea-47d8-af61-443a0f891d1d	2021-05-25 00:11:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:11:06.877+03	2021-05-25 00:11:06.888+03	
e23d2320-fab0-360a-69cd-e72905cb6303	2021-05-25 00:11:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:11:26.877+03	2021-05-25 00:11:26.885+03	
c5d3718f-98c3-0f1a-77b2-d56b05e474fc	2021-05-25 00:11:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:11:46.877+03	2021-05-25 00:11:46.882+03	
957952b2-b3b4-a74b-f632-3ab318a8d91b	2021-05-25 00:12:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:12:06.877+03	2021-05-25 00:12:06.884+03	
581ebfe2-1e42-0971-688b-4219a62b57cf	2021-05-25 00:12:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:12:26.877+03	2021-05-25 00:12:26.883+03	
8d7714a5-10ef-c2b0-6121-b657de7ed7c9	2021-05-25 00:12:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:12:46.877+03	2021-05-25 00:12:46.885+03	
385f817f-7568-2cca-f28c-98481b9beae0	2021-05-25 00:13:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:13:06.877+03	2021-05-25 00:13:06.883+03	
42c24033-e564-26f9-b896-4c7319d80382	2021-05-25 00:13:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:13:26.877+03	2021-05-25 00:13:26.883+03	
768f1c95-b986-92e4-fed7-d43307c0abab	2021-05-25 00:13:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:13:46.877+03	2021-05-25 00:13:47.138+03	
737db17c-111d-be3c-a9de-56e7825e2880	2021-05-25 00:14:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:14:06.877+03	2021-05-25 00:14:06.883+03	
1e3a0dbd-3471-6d9e-85c5-2859996769fa	2021-05-25 00:14:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:14:26.877+03	2021-05-25 00:14:26.894+03	
ad66be12-5e8b-0ae4-9ca2-c9fb8c9f517e	2021-05-25 00:14:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:14:46.877+03	2021-05-25 00:14:46.885+03	
76805aed-0a4a-dc47-34d1-2522d53d5193	2021-05-25 00:15:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:15:06.877+03	2021-05-25 00:15:06.882+03	
cc596494-c343-fdda-b9b0-b095f1a6bd14	2021-05-25 00:15:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:15:26.877+03	2021-05-25 00:15:27.165+03	
7e17e2d4-29d9-5c0d-211c-d6be82e2907a	2021-05-25 00:15:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:15:46.877+03	2021-05-25 00:15:46.883+03	
86b8670e-fc9f-a659-c07d-c0910bbfdbb8	2021-05-25 00:16:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:16:06.877+03	2021-05-25 00:16:06.882+03	
466979ad-5a57-8fd2-d6b8-ea8eb2758742	2021-05-25 00:16:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:16:26.877+03	2021-05-25 00:16:27.128+03	
8479c8f7-22a6-4eef-557d-2bb4247dd4cf	2021-05-24 23:56:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:56:34.877+03	2021-05-24 23:56:34.884+03	
4544db82-2696-5b70-5c37-cc9cbb79cd97	2021-05-24 23:56:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:56:54.877+03	2021-05-24 23:56:54.883+03	
c6c262e6-5d8d-c1c5-438f-7ce724647f80	2021-05-24 23:57:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:57:14.877+03	2021-05-24 23:57:14.885+03	
7a782db9-eae4-4774-d279-983f2808bad4	2021-05-24 23:57:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:57:34.877+03	2021-05-24 23:57:34.883+03	
28b28224-2d71-0dc9-f053-d188f0faa30e	2021-05-24 23:57:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:57:54.877+03	2021-05-24 23:57:54.883+03	
8b176cdd-b2da-e8fa-ac4e-dac10095f8e8	2021-05-24 23:58:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:58:14.877+03	2021-05-24 23:58:14.884+03	
c468eb54-0bea-1188-4104-e78bca702787	2021-05-24 23:58:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:58:34.877+03	2021-05-24 23:58:34.883+03	
19b5ede6-f658-deed-50e3-7e18aee99ee5	2021-05-24 23:58:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:58:54.877+03	2021-05-24 23:58:54.884+03	
e63f37d2-df9c-3707-022c-8212342fdb12	2021-05-24 23:59:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:59:14.877+03	2021-05-24 23:59:15.095+03	
5949ae39-d7b3-49c4-d3d6-a6c2d8c0eafa	2021-05-24 23:59:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:59:34.877+03	2021-05-24 23:59:34.882+03	
aba5d7d2-334e-0783-0487-b5e03d486956	2021-05-24 23:59:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-24 23:59:54.877+03	2021-05-24 23:59:55.193+03	
cb21a2ae-4898-3733-2bfe-2ad737f3777b	2021-05-25 00:00:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:00:04.877+03	2021-05-25 00:00:04.883+03	
e6622986-2742-bfd3-4af3-f956c00ce59a	2021-05-25 00:00:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:00:24.877+03	2021-05-25 00:00:24.885+03	
fd8d1a97-6f00-36ba-d353-2539792b637e	2021-05-25 00:00:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:00:44.877+03	2021-05-25 00:00:44.885+03	
6849ff9a-d2dd-2b63-2de2-1182e33d044b	2021-05-25 00:01:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:01:04.877+03	2021-05-25 00:01:04.883+03	
066fe048-362b-7b31-b5d9-6569d20c3895	2021-05-25 00:01:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:01:24.877+03	2021-05-25 00:01:24.885+03	
28d28dce-fdc2-e683-adb5-254f1251dfaf	2021-05-25 00:01:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:01:45.877+03	2021-05-25 00:01:45.883+03	
902e2fb3-6c4c-f163-8fa4-2a1870b661d7	2021-05-25 00:02:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:02:05.877+03	2021-05-25 00:02:05.883+03	
30dad416-ead2-39c4-dbb9-538f69d7d4c0	2021-05-25 00:02:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:02:25.877+03	2021-05-25 00:02:25.885+03	
fee966ff-4409-5b39-375c-72723855aea9	2021-05-25 00:02:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:02:45.877+03	2021-05-25 00:02:45.884+03	
7ad1b7c4-c8c5-43a5-89ae-e62b3ea9bd51	2021-05-25 00:03:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:03:05.877+03	2021-05-25 00:03:05.885+03	
5fafee29-3839-77f0-0044-d97d2ed65305	2021-05-25 00:03:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:03:25.877+03	2021-05-25 00:03:25.886+03	
504fdb5c-8861-ec47-230d-054d2a7a7efc	2021-05-25 00:03:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:03:45.877+03	2021-05-25 00:03:46.13+03	
cf42c21a-405d-0948-fb2d-c6e62ec62766	2021-05-25 00:04:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:04:05.877+03	2021-05-25 00:04:05.885+03	
f54db652-4356-2b35-3797-9aef9b9437b5	2021-05-25 00:04:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:04:25.877+03	2021-05-25 00:04:25.886+03	
538da22e-510c-342d-d614-7d637e1d7df5	2021-05-25 00:04:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:04:45.877+03	2021-05-25 00:04:45.883+03	
9a946172-08e7-0b24-4ac6-b80733cd53a4	2021-05-25 00:05:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:05:05.877+03	2021-05-25 00:05:05.885+03	
6d489bd5-2c9a-9282-c572-164462457f9b	2021-05-25 00:05:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:05:25.877+03	2021-05-25 00:05:25.883+03	
c4cdf4a2-1638-f216-7420-030bb6c8d301	2021-05-25 00:05:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:05:45.877+03	2021-05-25 00:05:45.884+03	
c1c01e16-22af-a2c3-27eb-3b0c1dfacb53	2021-05-25 00:06:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:06:05.877+03	2021-05-25 00:06:05.883+03	
a01f5e18-1910-ebad-2afc-d1693bcb87fa	2021-05-25 00:06:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:06:25.877+03	2021-05-25 00:06:25.884+03	
9650da05-3f0b-f839-d95f-7ae27d036f4c	2021-05-25 00:06:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:06:45.877+03	2021-05-25 00:06:45.884+03	
b21a759c-3eee-4777-f680-7b391237972a	2021-05-25 00:06:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:06:55.878+03	2021-05-25 00:06:55.898+03	
e956df3d-5577-da84-2a4e-d73486c72dc6	2021-05-25 00:07:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:07:16.877+03	2021-05-25 00:07:16.883+03	
ef1918ae-4bf7-bdc6-9b71-f69d1afc7c33	2021-05-25 00:07:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:07:36.877+03	2021-05-25 00:07:36.885+03	
89cb6dbf-54a6-8c88-b0f2-e9941dd89651	2021-05-25 00:07:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:07:56.877+03	2021-05-25 00:07:56.889+03	
8d261a98-3d14-b3a2-9d33-2a61b6bbd562	2021-05-25 00:08:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:08:16.877+03	2021-05-25 00:08:16.989+03	
8327e1dd-1220-ad77-703a-632117d8b335	2021-05-25 00:08:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:08:36.877+03	2021-05-25 00:08:36.882+03	
20bb1fd7-62a8-337c-8b4b-a61c4f5b16f7	2021-05-25 00:08:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:08:56.877+03	2021-05-25 00:08:56.885+03	
e74b8703-e46b-9ec1-4f40-819a5d1667e8	2021-05-25 00:09:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:09:16.877+03	2021-05-25 00:09:16.884+03	
160afe1a-e4ff-9670-e520-8a4535379d1f	2021-05-25 00:09:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:09:46.877+03	2021-05-25 00:09:46.888+03	
d472dda2-1fd8-4a72-7a37-fa0bb8002a94	2021-05-25 00:10:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 00:10:00.877+03	2021-05-25 00:10:00.883+03	ERROR
e20fb1f6-311e-4aa9-d9f8-a26bc390d303	2021-05-25 00:10:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:10:16.877+03	2021-05-25 00:10:16.887+03	
2be934c3-4b5b-fc54-521d-a645090a77dd	2021-05-25 00:10:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:10:36.877+03	2021-05-25 00:10:36.886+03	
356d2edd-b87e-d666-627e-a78360366f35	2021-05-25 00:10:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:10:56.877+03	2021-05-25 00:10:56.884+03	
a74d764e-7299-a009-fcbb-cd766f1c4c54	2021-05-25 00:11:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:11:16.877+03	2021-05-25 00:11:16.887+03	
d0f5fcf5-c6e7-87f3-994b-b3be5539d8d0	2021-05-25 00:11:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:11:36.877+03	2021-05-25 00:11:36.884+03	
aa1b56e7-280d-f820-273c-189f28838154	2021-05-25 00:11:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:11:56.877+03	2021-05-25 00:11:56.883+03	
08a9fe2f-cfc6-c1e9-6481-2a5d91ba0d77	2021-05-25 00:12:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:12:16.877+03	2021-05-25 00:12:16.884+03	
269b24f3-8f1a-2327-01cc-824fb75491dd	2021-05-25 00:12:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:12:36.877+03	2021-05-25 00:12:36.885+03	
94aeaccf-7d9d-e05b-51b2-a158b0a75d3a	2021-05-25 00:12:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:12:56.877+03	2021-05-25 00:12:56.889+03	
74c85c7f-2f8c-db3a-c4d9-58e5e8947ea6	2021-05-25 00:13:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:13:16.877+03	2021-05-25 00:13:16.887+03	
f345fdbf-ad0d-ef98-f02d-372d7328cfbd	2021-05-25 00:13:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:13:36.877+03	2021-05-25 00:13:36.884+03	
81373cb9-84f1-212a-04a6-a8571427d7c5	2021-05-25 00:13:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:13:56.877+03	2021-05-25 00:13:56.888+03	
83ee62ca-6e4b-ab9e-022c-1d0fbfaa35b8	2021-05-25 00:14:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:14:16.877+03	2021-05-25 00:14:17.228+03	
f33b14ca-1138-5b28-8151-c9d469443ce2	2021-05-25 00:14:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:14:36.877+03	2021-05-25 00:14:36.886+03	
a656508f-2395-2b43-efd6-354c8db5d176	2021-05-25 00:14:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:14:56.877+03	2021-05-25 00:14:56.888+03	
7a390ee8-a329-7236-ae6c-53c80c385653	2021-05-25 00:15:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:15:16.877+03	2021-05-25 00:15:16.884+03	
650c38ee-b003-c993-3dee-4d3182f60b16	2021-05-25 00:15:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:15:36.877+03	2021-05-25 00:15:36.888+03	
16a46920-fd05-d7c8-cf01-0cc99dc37297	2021-05-25 00:15:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:15:56.877+03	2021-05-25 00:15:56.883+03	
ab0179f9-9d8c-37d1-306f-e650e38d187c	2021-05-25 00:16:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:16:16.877+03	2021-05-25 00:16:16.921+03	
4e7ae6f0-1695-0a4d-d8a5-b8270a0b8045	2021-05-25 00:16:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:16:36.877+03	2021-05-25 00:16:37.181+03	
39852385-347e-c564-80a4-dd3676490ca9	2021-05-25 00:16:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:16:56.877+03	2021-05-25 00:16:56.884+03	
31f7bce7-c3dd-4611-4b46-130ff6b6bdce	2021-05-25 00:16:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:16:46.877+03	2021-05-25 00:16:46.886+03	
ed5bd544-de3f-5748-6db0-3746793bae98	2021-05-25 00:17:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:17:06.877+03	2021-05-25 00:17:06.883+03	
4a372b66-10c3-3c62-9204-99f7332c91bf	2021-05-25 00:17:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:17:26.877+03	2021-05-25 00:17:26.882+03	
a95b7b61-6bcc-ba56-3a9a-67e762cdac42	2021-05-25 00:17:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:17:46.877+03	2021-05-25 00:17:46.882+03	
e8b83a49-bf49-2ed3-2c08-67bf2706bc79	2021-05-25 00:18:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:18:06.877+03	2021-05-25 00:18:06.89+03	
bfc26912-2a9b-32b7-d5bf-00155dd7f8ce	2021-05-25 00:18:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:18:26.877+03	2021-05-25 00:18:26.888+03	
cb2d2c34-c006-c6ca-b733-3d215ab9a861	2021-05-25 00:18:47.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:18:47.878+03	2021-05-25 00:18:47.883+03	
5f0d9475-d658-2a16-339f-3ce77df768ee	2021-05-25 00:19:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:19:08.877+03	2021-05-25 00:19:08.891+03	
27278bbd-c999-e403-3c42-333759910f19	2021-05-25 00:19:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:19:28.877+03	2021-05-25 00:19:28.886+03	
ff399cac-54ad-dd44-c316-59ac11173541	2021-05-25 00:19:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:19:48.877+03	2021-05-25 00:19:48.888+03	
7b954c1a-b0ff-7281-e213-27651004cec6	2021-05-25 00:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 00:20:00.877+03	2021-05-25 00:20:00.881+03	ERROR
44efeb95-e27b-95b3-92f9-5a0f04d00fc7	2021-05-25 00:20:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:20:18.877+03	2021-05-25 00:20:18.883+03	
ad937a60-cf5e-208b-2b50-e9e8fe3d1fa4	2021-05-25 00:20:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:20:38.877+03	2021-05-25 00:20:38.883+03	
4f819c94-e062-8a68-835d-473f22bff2ec	2021-05-25 00:20:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:20:58.877+03	2021-05-25 00:20:58.885+03	
11835e26-936c-0cdd-a5cb-75a174614e4e	2021-05-25 00:21:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:21:18.877+03	2021-05-25 00:21:18.887+03	
d5754c41-1352-f2fd-20b3-625199366fc9	2021-05-25 00:21:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:21:38.877+03	2021-05-25 00:21:38.885+03	
12e47042-5d5f-72fe-3d8f-687d983f71e1	2021-05-25 00:21:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:21:58.877+03	2021-05-25 00:21:58.883+03	
c9c77aa7-d0f5-a3d6-2145-f3313364c95d	2021-05-25 00:22:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:22:18.877+03	2021-05-25 00:22:18.885+03	
34195364-29f0-365d-e27e-7faee687ca7e	2021-05-25 00:22:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:22:38.877+03	2021-05-25 00:22:38.889+03	
dcd8cecd-3374-b54c-06dc-93df28ab9ac2	2021-05-25 00:22:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:22:58.877+03	2021-05-25 00:22:58.885+03	
572b5f20-d030-f0d1-66fd-08103b98cfc5	2021-05-25 00:23:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:23:18.877+03	2021-05-25 00:23:18.885+03	
d595dc7b-bf2c-da09-d0fb-12e9d1e3da35	2021-05-25 00:23:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:23:38.877+03	2021-05-25 00:23:38.885+03	
8d4869de-25f4-25ef-14f0-82f56c611af0	2021-05-25 00:23:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:23:58.877+03	2021-05-25 00:23:58.883+03	
3b22824c-23b5-0499-8a87-b6f006135a7b	2021-05-25 00:24:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:24:18.877+03	2021-05-25 00:24:18.885+03	
d90a77f3-6d1b-2f40-0ecc-2f9a1dff4345	2021-05-25 00:24:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:24:38.877+03	2021-05-25 00:24:38.884+03	
574aaaa1-1bc6-d942-f0ce-936763a8f994	2021-05-25 00:24:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:24:58.877+03	2021-05-25 00:24:58.884+03	
02841eee-830b-4e0e-0659-d2f10fabefa1	2021-05-25 00:25:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:25:18.877+03	2021-05-25 00:25:18.888+03	
09b978a1-3d02-e150-41cf-34df2d8280cc	2021-05-25 00:25:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:25:38.877+03	2021-05-25 00:25:38.889+03	
01b2e8dd-1d1a-b9f3-11c2-36d0626e54f0	2021-05-25 00:25:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:25:58.877+03	2021-05-25 00:25:59.054+03	
f1e53f37-bd8f-1be4-8e75-4e02a07d91a3	2021-05-25 00:26:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:26:18.877+03	2021-05-25 00:26:18.883+03	
9069d7e8-18b8-34bd-ac45-1085a5691f8f	2021-05-25 00:26:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:26:38.877+03	2021-05-25 00:26:38.886+03	
010512fb-f4fa-a300-8fc9-e93c1866fff5	2021-05-25 00:26:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:26:58.877+03	2021-05-25 00:26:58.887+03	
5f126d4b-f6d2-579e-ee4d-2e453dbe2239	2021-05-25 00:27:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:27:18.877+03	2021-05-25 00:27:18.884+03	
ce76cb24-27a5-70bd-53d5-defc5b7416dc	2021-05-25 00:27:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:27:38.877+03	2021-05-25 00:27:38.883+03	
2ba2b3e4-986c-fccf-9ce0-4c4a3b066c13	2021-05-25 00:27:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:27:58.877+03	2021-05-25 00:27:58.887+03	
60ce4cf3-a302-a53d-ca70-5bf6e0f0f3d8	2021-05-25 00:28:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:28:18.877+03	2021-05-25 00:28:18.883+03	
c69b1ee7-f4bb-5310-9f2a-03871e17dd4a	2021-05-25 00:28:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:28:38.877+03	2021-05-25 00:28:38.883+03	
a755ab4a-3fd4-a67d-414d-e4985914f5af	2021-05-25 00:28:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:28:58.877+03	2021-05-25 00:28:58.885+03	
a613c8b5-4218-b4e9-b3ca-0eb9e5c000cd	2021-05-25 00:29:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:29:18.877+03	2021-05-25 00:29:18.885+03	
2d4429cd-8d80-d0a4-9777-18c923d02aff	2021-05-25 00:29:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:29:38.877+03	2021-05-25 00:29:38.885+03	
745c2081-8ea7-2f24-362b-218acfa21260	2021-05-25 00:29:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:29:58.877+03	2021-05-25 00:29:58.89+03	
6d61aadc-8e39-6f2e-3238-0c4b922ed799	2021-05-25 00:30:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:30:08.877+03	2021-05-25 00:30:08.884+03	
4b02a339-0fde-76f9-19b5-ab3eee2eaf56	2021-05-25 00:30:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:30:28.877+03	2021-05-25 00:30:28.884+03	
52587d7e-3fcf-509a-324e-8f185ebb3e99	2021-05-25 00:30:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:30:48.877+03	2021-05-25 00:30:48.883+03	
3b7e0fb8-4d6e-fd97-aff6-2d06ad9f71aa	2021-05-25 00:31:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:31:08.877+03	2021-05-25 00:31:08.885+03	
525a1c8d-af1c-0dc7-3984-5b64e84058fe	2021-05-25 00:31:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:31:28.877+03	2021-05-25 00:31:28.882+03	
a28f8f97-379f-d93d-2ad0-4002217ae887	2021-05-25 00:31:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:31:48.877+03	2021-05-25 00:31:48.884+03	
83d69ce4-f9c9-e25c-574c-310f758ffa32	2021-05-25 00:32:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:32:08.877+03	2021-05-25 00:32:08.884+03	
d191b718-44cb-85c8-c55e-90ce1b7d34ec	2021-05-25 00:32:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:32:28.877+03	2021-05-25 00:32:28.883+03	
f204fc1b-6fbe-825a-7a4a-30bbedffcd17	2021-05-25 00:32:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:32:48.877+03	2021-05-25 00:32:48.885+03	
49827c7f-40cf-9204-6286-e04878a49a4e	2021-05-25 00:33:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:33:08.877+03	2021-05-25 00:33:08.893+03	
98532f8b-163d-0226-2c79-7acb7705cd15	2021-05-25 00:33:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:33:28.877+03	2021-05-25 00:33:28.885+03	
3087f1a6-a040-9edc-5448-c788f37d483c	2021-05-25 00:33:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:33:48.877+03	2021-05-25 00:33:48.888+03	
da80e502-132e-63a6-6198-7e3e158bb559	2021-05-25 00:34:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:34:08.877+03	2021-05-25 00:34:08.885+03	
5bd7f4d9-b0e7-9982-7afc-fcb10b6a04a7	2021-05-25 00:34:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:34:28.877+03	2021-05-25 00:34:28.884+03	
0558ab5e-9c4f-ef17-ef78-3b444098edc7	2021-05-25 00:34:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:34:48.877+03	2021-05-25 00:34:48.883+03	
0c1a3ed7-c54e-8955-06d8-89a6c331369f	2021-05-25 00:35:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:35:08.877+03	2021-05-25 00:35:08.883+03	
5570ce4a-e1e0-fb26-95be-eeb30b70d822	2021-05-25 00:35:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:35:28.877+03	2021-05-25 00:35:28.884+03	
039dfd89-1395-d989-fcca-d8cf04227f21	2021-05-25 00:35:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:35:48.877+03	2021-05-25 00:35:48.884+03	
35f64d80-fa54-014e-b333-0b5bc75ed2bc	2021-05-25 00:36:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:36:08.877+03	2021-05-25 00:36:08.885+03	
4437cb8e-e81d-658b-6702-dcedb4a582df	2021-05-25 00:36:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:36:28.878+03	2021-05-25 00:36:28.885+03	
23434ac2-e9b6-6459-af83-c3d03eff44c2	2021-05-25 00:36:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:36:49.877+03	2021-05-25 00:36:49.884+03	
eae91109-ed79-ee33-3975-fc8578f708d8	2021-05-25 00:37:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:37:09.877+03	2021-05-25 00:37:09.883+03	
591c0f7b-c6fd-b8cc-e730-0cb03a048eda	2021-05-25 00:17:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:17:16.877+03	2021-05-25 00:17:16.883+03	
99c151c1-82de-3317-f518-d99bdd909d3a	2021-05-25 00:17:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:17:36.877+03	2021-05-25 00:17:36.883+03	
704b2e81-8ea9-c6f0-017f-b91f1847bc82	2021-05-25 00:17:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:17:56.877+03	2021-05-25 00:17:56.884+03	
835f3730-ded2-2b39-3e0d-927aee8fe4b0	2021-05-25 00:18:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:18:16.877+03	2021-05-25 00:18:16.885+03	
858cde9e-badf-ba2c-7e64-a59a20193cc4	2021-05-25 00:18:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:18:36.877+03	2021-05-25 00:18:37.454+03	
284b458a-7a46-4624-4fd6-c69e47c89564	2021-05-25 00:18:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:18:58.877+03	2021-05-25 00:18:58.886+03	
4a2b41b6-df7a-b54d-0606-0f6b8a23e9c5	2021-05-25 00:19:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:19:18.877+03	2021-05-25 00:19:18.892+03	
f312c3d9-b58a-fbe8-3a5d-6b02e2757cd2	2021-05-25 00:19:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:19:38.877+03	2021-05-25 00:19:38.883+03	
8951ffda-0026-6627-939e-beb33caf0db5	2021-05-25 00:19:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:19:58.877+03	2021-05-25 00:19:58.884+03	
acde5102-ad4e-39fb-ebc3-57adc44e580c	2021-05-25 00:20:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:20:08.877+03	2021-05-25 00:20:08.883+03	
fbf486eb-e97e-026b-aaf8-ea443d588854	2021-05-25 00:20:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:20:28.877+03	2021-05-25 00:20:28.883+03	
31b59098-b493-1fd7-7422-d042d7058ec5	2021-05-25 00:20:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:20:48.877+03	2021-05-25 00:20:48.886+03	
1414e9a9-03b3-df32-812a-cd7db3a6b901	2021-05-25 00:21:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:21:08.877+03	2021-05-25 00:21:08.886+03	
9bc78db7-60ee-e1e1-bdf4-f08c004e4e16	2021-05-25 00:21:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:21:28.877+03	2021-05-25 00:21:28.888+03	
ffca35f4-2ce2-c42f-bfc5-a833c259f286	2021-05-25 00:21:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:21:48.877+03	2021-05-25 00:21:48.887+03	
2100d96d-d9fc-05dd-9c38-310f7f0d1808	2021-05-25 00:22:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:22:08.877+03	2021-05-25 00:22:08.886+03	
c9abf428-da1e-80ff-f15a-39d5a9b6dbb8	2021-05-25 00:22:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:22:28.877+03	2021-05-25 00:22:28.883+03	
e93f1141-77c9-bd4d-8031-12b26aa06628	2021-05-25 00:22:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:22:48.877+03	2021-05-25 00:22:48.884+03	
58773cee-7c28-7abe-96c3-70fbc4875d95	2021-05-25 00:23:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:23:08.877+03	2021-05-25 00:23:08.882+03	
51ee2bd0-774e-2c13-2ca3-ce0c4dcd3f89	2021-05-25 00:23:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:23:28.877+03	2021-05-25 00:23:28.885+03	
e6193d42-2025-9d90-fbc7-086f3098a41f	2021-05-25 00:23:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:23:48.877+03	2021-05-25 00:23:48.883+03	
e9f7d9a8-fe6d-8f77-c5e8-0982b8a286cb	2021-05-25 00:24:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:24:08.877+03	2021-05-25 00:24:08.892+03	
629eb0c8-5327-e7e3-eacf-e3a1bb388a01	2021-05-25 00:24:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:24:28.877+03	2021-05-25 00:24:28.885+03	
f37bf02b-f2c6-6be6-15c5-8befadb1802b	2021-05-25 00:24:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:24:48.877+03	2021-05-25 00:24:48.883+03	
fdaec019-2048-3a8f-24c4-5af6d2863b6c	2021-05-25 00:25:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:25:08.877+03	2021-05-25 00:25:08.884+03	
597aa0c2-c06d-1ee5-28c7-dba2a474ae19	2021-05-25 00:25:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:25:28.877+03	2021-05-25 00:25:28.883+03	
90ec9d42-8f98-3916-0c94-230e4b450478	2021-05-25 00:25:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:25:48.877+03	2021-05-25 00:25:48.889+03	
8fb48140-483c-667c-c514-7a69b0a3f716	2021-05-25 00:26:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:26:08.877+03	2021-05-25 00:26:08.885+03	
75c91529-b880-4ef9-b01c-0fcc8f3687a1	2021-05-25 00:26:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:26:28.877+03	2021-05-25 00:26:28.885+03	
1c494a74-eaac-e2c3-877b-60ab0178d6cd	2021-05-25 00:26:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:26:48.877+03	2021-05-25 00:26:48.883+03	
93faada6-0eff-1150-378d-14ce7a4c1f04	2021-05-25 00:27:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:27:08.877+03	2021-05-25 00:27:08.889+03	
8457d241-48a9-d593-e851-ba77b3b43597	2021-05-25 00:27:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:27:28.877+03	2021-05-25 00:27:29.017+03	
aa5e5f09-5adb-d41a-4cf6-fe22366f3eb3	2021-05-25 00:27:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:27:48.877+03	2021-05-25 00:27:48.884+03	
df7a0c4d-7b82-822d-cdc6-38a06073333c	2021-05-25 00:28:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:28:08.877+03	2021-05-25 00:28:08.884+03	
0a50010e-87c6-7b48-d480-072403a1be4a	2021-05-25 00:28:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:28:28.877+03	2021-05-25 00:28:28.889+03	
e6debcd9-8448-8a43-3cf9-4ec034848231	2021-05-25 00:28:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:28:48.877+03	2021-05-25 00:28:48.888+03	
cd65b7c2-f079-2665-20ea-3cce3299160a	2021-05-25 00:29:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:29:08.877+03	2021-05-25 00:29:08.886+03	
343d499d-2baf-0b88-ef22-bc3f7b5189e1	2021-05-25 00:29:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:29:28.877+03	2021-05-25 00:29:28.89+03	
3bfbc0e5-3bbe-fce9-74ab-72366b475f18	2021-05-25 00:29:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:29:48.877+03	2021-05-25 00:29:48.883+03	
2f5dc1a8-f9c8-00bb-39ac-61c9bc7542f7	2021-05-25 00:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 00:30:00.877+03	2021-05-25 00:30:00.888+03	ERROR
90a3860e-4de4-8979-a711-15eb455f9662	2021-05-25 00:30:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:30:18.877+03	2021-05-25 00:30:18.883+03	
468155fd-16dd-03bf-030c-21971761ff6a	2021-05-25 00:30:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:30:38.877+03	2021-05-25 00:30:38.882+03	
ea15245c-9a57-457c-b6c0-6aa155266b6c	2021-05-25 00:30:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:30:58.877+03	2021-05-25 00:30:58.883+03	
f4ec3c74-31cc-a4cd-22db-450593e69966	2021-05-25 00:31:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:31:18.877+03	2021-05-25 00:31:18.883+03	
37e62c04-8f84-848f-d24a-21a755c5766f	2021-05-25 00:31:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:31:38.877+03	2021-05-25 00:31:38.884+03	
492ba49d-c8ed-e8d6-27d4-79d7d55039fb	2021-05-25 00:31:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:31:58.877+03	2021-05-25 00:31:58.883+03	
aa4097f9-613e-1703-d1ff-3e23d02ec8db	2021-05-25 00:32:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:32:18.877+03	2021-05-25 00:32:18.885+03	
4a8cb1fe-0d53-2c00-f283-4e47f7dd824a	2021-05-25 00:32:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:32:38.877+03	2021-05-25 00:32:38.883+03	
092e4b2a-d1f1-3e78-dc28-1c4aa3bda58f	2021-05-25 00:32:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:32:58.877+03	2021-05-25 00:32:58.882+03	
0477f9ab-21d9-2ebb-8507-b2e958fc5232	2021-05-25 00:33:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:33:18.877+03	2021-05-25 00:33:18.883+03	
e1db91f2-6c43-7fc7-5f0d-cbb07a83f3a6	2021-05-25 00:33:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:33:38.877+03	2021-05-25 00:33:38.889+03	
6fc2768a-eefc-77c7-28c2-3c3880ca7225	2021-05-25 00:33:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:33:58.877+03	2021-05-25 00:33:58.887+03	
19374be5-336a-490c-c43f-d186f619d892	2021-05-25 00:34:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:34:18.877+03	2021-05-25 00:34:18.884+03	
aba07327-36c4-6853-b3c1-864d603ebfe8	2021-05-25 00:34:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:34:38.877+03	2021-05-25 00:34:38.883+03	
c838eaa2-12ff-99bc-7914-4eabd348fb43	2021-05-25 00:34:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:34:58.877+03	2021-05-25 00:34:59.175+03	
22d08580-a724-e076-ecbc-6ff8b4f126fe	2021-05-25 00:35:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:35:18.877+03	2021-05-25 00:35:18.884+03	
77af10d5-aa17-37a9-96c6-572f13496940	2021-05-25 00:35:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:35:38.877+03	2021-05-25 00:35:38.884+03	
ed0fb0ca-5cc6-507d-f579-9745725489c9	2021-05-25 00:35:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:35:58.877+03	2021-05-25 00:35:58.886+03	
47f3dad0-5f5c-7f84-e68a-8efb4cacd097	2021-05-25 00:36:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:36:18.877+03	2021-05-25 00:36:18.885+03	
c7b99237-8370-45d9-db40-7104accaa87d	2021-05-25 00:36:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:36:39.877+03	2021-05-25 00:36:39.885+03	
b896ac6a-8287-8521-8b3e-9ebb27a05893	2021-05-25 00:36:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:36:59.877+03	2021-05-25 00:36:59.883+03	
0d0aec6e-7e15-fd0f-9884-ce6d21b23f4a	2021-05-25 00:37:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:37:19.877+03	2021-05-25 00:37:19.884+03	
b77e7ec8-eecc-772b-72e3-888e927b24aa	2021-05-25 00:37:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:37:39.877+03	2021-05-25 00:37:39.885+03	
d79a8fd8-cef3-ba6c-684b-a2241fd00f0a	2021-05-25 00:37:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:37:29.877+03	2021-05-25 00:37:29.886+03	
89ede55d-7cde-8b81-3f61-6d7826d39f54	2021-05-25 00:37:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:37:49.877+03	2021-05-25 00:37:49.883+03	
200d067e-1c01-c922-c608-a7f78cb6d8e2	2021-05-25 00:38:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:38:09.877+03	2021-05-25 00:38:09.884+03	
e9bfd3b0-6c18-b1ed-cdf5-306449e30aff	2021-05-25 00:38:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:38:29.877+03	2021-05-25 00:38:29.884+03	
1a081e56-d39b-6d9e-3bd1-af451ad8ed33	2021-05-25 00:38:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:38:50.877+03	2021-05-25 00:38:50.884+03	
6dc2e751-854a-72fd-7659-5fe849a69f6c	2021-05-25 00:39:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:39:10.877+03	2021-05-25 00:39:10.886+03	
dbda0f13-0001-a0bf-7547-9c0b1cb7e70f	2021-05-25 00:39:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:39:30.877+03	2021-05-25 00:39:30.883+03	
94e48386-3340-471c-7c71-06d3bf757e6f	2021-05-25 00:39:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:39:50.877+03	2021-05-25 00:39:51.217+03	
e38c6814-b4a5-55f7-13c8-37ac8693f8f0	2021-05-25 00:40:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:40:10.877+03	2021-05-25 00:40:10.883+03	
40d635c0-5a67-43b8-8473-6637b86949b0	2021-05-25 00:40:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:40:30.877+03	2021-05-25 00:40:30.883+03	
b9d63585-d20e-143b-041c-000d4355ec0e	2021-05-25 00:40:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:40:50.877+03	2021-05-25 00:40:50.884+03	
7c511a02-75cf-f70b-a7b4-09d4b32127db	2021-05-25 00:41:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:41:11.877+03	2021-05-25 00:41:11.884+03	
d8d6df67-3aaf-b791-9bfe-a0e92b43c9a6	2021-05-25 00:41:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:41:31.877+03	2021-05-25 00:41:31.886+03	
2f2742cf-fe82-89d2-7deb-343201b9f42e	2021-05-25 00:41:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:41:51.877+03	2021-05-25 00:41:51.883+03	
434ac641-3e99-bc21-5ec1-27eabea4906f	2021-05-25 00:42:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:42:11.877+03	2021-05-25 00:42:12.12+03	
073a1913-daf0-526c-8415-17a75d07ceab	2021-05-25 00:42:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:42:31.877+03	2021-05-25 00:42:31.884+03	
c4940ccf-27f2-121f-fca1-01f748122bca	2021-05-25 00:42:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:42:51.877+03	2021-05-25 00:42:51.889+03	
a9812d88-af8b-6da9-cb3d-a7e8130ac702	2021-05-25 00:43:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:43:11.877+03	2021-05-25 00:43:11.887+03	
cc1538a8-2a55-7e42-e47d-bbabade7c7e0	2021-05-25 00:43:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:43:31.877+03	2021-05-25 00:43:31.887+03	
79a526f8-20e1-14ba-0e05-a2b68d606fd3	2021-05-25 00:43:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:43:51.877+03	2021-05-25 00:43:51.883+03	
15f5c91a-8546-2012-0834-e5e2b1691f4b	2021-05-25 00:44:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:44:11.877+03	2021-05-25 00:44:11.886+03	
b38befa6-9a75-a0f1-f578-fd5fab69ae27	2021-05-25 00:44:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:44:31.877+03	2021-05-25 00:44:31.884+03	
29b9b22d-4702-6088-1e9b-f370a0ad0b7e	2021-05-25 00:44:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:44:51.877+03	2021-05-25 00:44:51.883+03	
e3849c57-823f-1634-a49e-f1c5508bbc78	2021-05-25 00:45:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:45:11.877+03	2021-05-25 00:45:11.884+03	
d93ace54-1cca-05da-4dfb-fd8592746146	2021-05-25 00:45:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:45:31.877+03	2021-05-25 00:45:31.887+03	
1395409e-cf8b-612b-155c-d3219f4cda4f	2021-05-25 00:45:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:45:51.877+03	2021-05-25 00:45:51.884+03	
9c92fa2f-ec05-7069-1726-aefe16b695f4	2021-05-25 00:46:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:46:11.877+03	2021-05-25 00:46:11.884+03	
5ee02fcd-ae7f-6384-9d52-b7bc5a6baa2e	2021-05-25 00:46:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:46:31.877+03	2021-05-25 00:46:31.884+03	
c6ae7998-b854-fe25-5a5e-e583083bf7ae	2021-05-25 00:46:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:46:51.877+03	2021-05-25 00:46:51.884+03	
cb4b69b8-2029-55ef-8a95-794461b28a27	2021-05-25 00:47:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:47:11.877+03	2021-05-25 00:47:11.884+03	
297c5dce-2c9a-9c73-2add-44e032d01cea	2021-05-25 00:47:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:47:31.877+03	2021-05-25 00:47:31.883+03	
a81ebf5b-a420-cbe9-7960-becccb6d758b	2021-05-25 00:47:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:47:51.877+03	2021-05-25 00:47:51.885+03	
6e6e49c8-4994-e5a1-ab26-cdce1a069149	2021-05-25 00:48:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:48:11.877+03	2021-05-25 00:48:11.888+03	
ad084304-688d-4ce1-cf60-8f3d9d64fc4a	2021-05-25 00:48:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:48:31.877+03	2021-05-25 00:48:31.883+03	
74e39cd0-c308-d94c-b0e9-70e603a260f3	2021-05-25 00:48:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:48:51.877+03	2021-05-25 00:48:51.885+03	
6734255a-1f94-aee4-d2cb-ab27819e0b38	2021-05-25 00:49:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:49:11.877+03	2021-05-25 00:49:11.883+03	
7667fedd-9285-d88b-28a2-7038e838e658	2021-05-25 00:49:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:49:31.877+03	2021-05-25 00:49:31.884+03	
e9295371-d570-c1c5-1e94-f28eacee385c	2021-05-25 00:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 00:50:00.877+03	2021-05-25 00:50:00.882+03	ERROR
8c568f2f-ed21-6511-569b-0172df2b8a5f	2021-05-25 00:50:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:50:11.877+03	2021-05-25 00:50:11.885+03	
fe8f852f-049b-7668-5747-f132df68e7e0	2021-05-25 00:50:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:50:31.877+03	2021-05-25 00:50:31.883+03	
9d55a20f-1e54-d6e1-8630-747ab677b802	2021-05-25 00:50:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:50:51.877+03	2021-05-25 00:50:51.884+03	
07888fac-e7a8-5c77-c020-513354b5907c	2021-05-25 00:51:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:51:11.877+03	2021-05-25 00:51:11.884+03	
c1659422-f517-8f58-6c15-de217cdedda7	2021-05-25 00:51:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:51:31.877+03	2021-05-25 00:51:31.89+03	
ae9c9e2d-9bc7-ba51-c777-e206c95ab9c0	2021-05-25 00:51:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:51:52.877+03	2021-05-25 00:51:52.882+03	
4330d8f1-935f-49d3-91e5-bc71dc96c26d	2021-05-25 00:52:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:52:12.878+03	2021-05-25 00:52:12.889+03	
98469aae-12e7-c2ff-779f-63b70dadaeb4	2021-05-25 00:52:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:52:33.877+03	2021-05-25 00:52:33.883+03	
ed1d4acd-79b6-241c-0183-e3e525818103	2021-05-25 00:52:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:52:53.877+03	2021-05-25 00:52:53.884+03	
afb22a33-f13c-2416-c11c-59f2480f5bbd	2021-05-25 00:53:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:53:13.877+03	2021-05-25 00:53:13.886+03	
db8515d8-715c-c090-a767-6701eb1b9f13	2021-05-25 00:53:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:53:33.877+03	2021-05-25 00:53:33.883+03	
0a510ab7-0acd-5abc-844c-ee29cfbfd7b7	2021-05-25 00:53:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:53:53.877+03	2021-05-25 00:53:53.885+03	
fe3e10c5-1226-361c-1988-5572158f665d	2021-05-25 00:54:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:54:13.877+03	2021-05-25 00:54:14.076+03	
e9029b77-fbde-fe4e-22c7-48eccec77570	2021-05-25 00:54:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:54:33.877+03	2021-05-25 00:54:33.887+03	
4ebd0b29-0fab-f193-13c1-ea979e88816c	2021-05-25 00:54:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:54:53.877+03	2021-05-25 00:54:53.886+03	
45b3c23d-df41-a73a-bebf-62803459f767	2021-05-25 00:55:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:55:13.877+03	2021-05-25 00:55:13.888+03	
c80e6bfb-b75e-8639-9809-945f9dca0236	2021-05-25 00:55:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:55:33.877+03	2021-05-25 00:55:33.887+03	
698e7cb2-d182-75f8-2cb4-d0da213aeea2	2021-05-25 00:55:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:55:53.877+03	2021-05-25 00:55:53.889+03	
8a2a88ee-c5ba-62ea-ce33-100969c07a7b	2021-05-25 00:56:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:56:13.877+03	2021-05-25 00:56:13.895+03	
51fca62a-e2a1-f4e8-6f5c-ccb16bcfbb87	2021-05-25 00:56:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:56:33.877+03	2021-05-25 00:56:33.889+03	
7cc3ce36-6f1c-38ae-92e2-f5df59d3f44b	2021-05-25 00:56:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:56:53.877+03	2021-05-25 00:56:53.885+03	
5863b8a8-2ddb-83e6-a57f-d4a0835f8264	2021-05-25 00:57:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:57:13.877+03	2021-05-25 00:57:13.89+03	
9b44eca4-c107-7023-3a56-8a442f711915	2021-05-25 00:57:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:57:33.877+03	2021-05-25 00:57:33.885+03	
e3fb86b8-6347-624d-8dbd-5b232a467723	2021-05-25 00:57:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:57:53.877+03	2021-05-25 00:57:53.885+03	
b9601a0b-ffcd-e61e-0e89-7f1f9fe907c5	2021-05-25 00:58:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:58:13.877+03	2021-05-25 00:58:13.883+03	
d6e4986e-f708-0e0d-f712-11aafde33eba	2021-05-25 00:37:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:37:59.877+03	2021-05-25 00:37:59.886+03	
26eb22c4-a4af-7a72-0398-2a6198c62873	2021-05-25 00:38:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:38:19.877+03	2021-05-25 00:38:19.883+03	
ffeacbda-6d9c-f77f-f92c-fd6918c5ddae	2021-05-25 00:38:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:38:40.877+03	2021-05-25 00:38:40.883+03	
e8d39f05-8de9-f74a-5322-4add05e83680	2021-05-25 00:39:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:39:00.877+03	2021-05-25 00:39:00.883+03	
ac3a7c72-f411-3926-80c4-9db0a0e3a167	2021-05-25 00:39:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:39:20.877+03	2021-05-25 00:39:20.889+03	
973e57c3-6fb1-72df-2302-b91de7591406	2021-05-25 00:39:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:39:40.877+03	2021-05-25 00:39:40.883+03	
99b495c1-723e-e041-2be2-50925d111db7	2021-05-25 00:40:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:40:00.877+03	2021-05-25 00:40:00.89+03	
f3d7b8d9-f456-4750-25c6-5222bf2819b0	2021-05-25 00:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 00:40:00.877+03	2021-05-25 00:40:00.9+03	ERROR
aa184b46-51b2-0702-7723-36d49df6ea58	2021-05-25 00:40:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:40:20.877+03	2021-05-25 00:40:20.883+03	
2f460f2c-b66f-87d6-e091-f0b269729cd5	2021-05-25 00:40:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:40:40.877+03	2021-05-25 00:40:40.884+03	
e6a98afe-928e-2521-a4c4-7ac6462f3400	2021-05-25 00:41:00.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:41:00.879+03	2021-05-25 00:41:00.891+03	
229cf59d-5f3a-ab41-62d5-42fe2f153454	2021-05-25 00:41:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:41:21.877+03	2021-05-25 00:41:21.886+03	
f64039e4-f0d8-5c88-0879-ca2cad094e4c	2021-05-25 00:41:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:41:41.877+03	2021-05-25 00:41:41.884+03	
c7b0f4a7-0abc-b982-9d88-ba1cfa07201a	2021-05-25 00:42:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:42:01.877+03	2021-05-25 00:42:01.883+03	
f4666eec-97fc-5df1-072b-3b009442b3ec	2021-05-25 00:42:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:42:21.877+03	2021-05-25 00:42:21.883+03	
931d3f3e-ad93-9e39-4cbd-5b323a21591d	2021-05-25 00:42:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:42:41.877+03	2021-05-25 00:42:41.883+03	
2852692b-4ec1-c840-5ba0-513407c00c83	2021-05-25 00:43:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:43:01.877+03	2021-05-25 00:43:01.904+03	
1c0b8a99-3d32-c30a-49ac-c909ef112917	2021-05-25 00:43:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:43:21.877+03	2021-05-25 00:43:21.884+03	
5ba1b745-2e16-ebdc-6706-6b8fadc21443	2021-05-25 00:43:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:43:41.877+03	2021-05-25 00:43:41.885+03	
435ca989-b7ab-acd6-8342-4887be5f1cf5	2021-05-25 00:44:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:44:01.877+03	2021-05-25 00:44:01.888+03	
dacafbe7-dc71-cfe4-9ec6-b042e9134b69	2021-05-25 00:44:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:44:21.877+03	2021-05-25 00:44:21.891+03	
154cacab-42c2-c6d5-1136-de9f5cc3e1e0	2021-05-25 00:44:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:44:41.877+03	2021-05-25 00:44:41.889+03	
8878bd34-b7ad-2152-de40-875a1e7f9e5f	2021-05-25 00:45:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:45:01.877+03	2021-05-25 00:45:01.897+03	
0223f6b7-96d2-b464-5111-b236f77ea8b0	2021-05-25 00:45:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:45:21.877+03	2021-05-25 00:45:21.883+03	
3552b8ad-a04c-9b27-2d22-d6bda05aa9a2	2021-05-25 00:45:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:45:41.877+03	2021-05-25 00:45:41.883+03	
1fa5a5c5-80e8-76c8-4c0b-e3894342f9af	2021-05-25 00:46:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:46:01.877+03	2021-05-25 00:46:01.884+03	
6cf3160d-fd74-ce01-0de9-11a30cdadf9e	2021-05-25 00:46:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:46:21.877+03	2021-05-25 00:46:21.885+03	
8646da49-23e9-732b-a1fc-8e05281869af	2021-05-25 00:46:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:46:41.877+03	2021-05-25 00:46:41.883+03	
048966bd-10da-87a1-4ae3-bb038f8f0468	2021-05-25 00:47:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:47:01.877+03	2021-05-25 00:47:01.883+03	
a3c09356-0a20-bc7f-0d00-15f3b40ba85c	2021-05-25 00:47:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:47:21.877+03	2021-05-25 00:47:21.884+03	
03e862b8-537d-316d-f129-943f7402ff11	2021-05-25 00:47:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:47:41.877+03	2021-05-25 00:47:41.892+03	
3ba55362-832f-4616-598b-2a8823b632a4	2021-05-25 00:48:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:48:01.877+03	2021-05-25 00:48:01.883+03	
41f8e091-a7e8-c9ad-cbe7-63b1af055df6	2021-05-25 00:48:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:48:21.877+03	2021-05-25 00:48:21.884+03	
3d2a5873-7836-eb9b-c643-4c5acc76bb0f	2021-05-25 00:48:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:48:41.877+03	2021-05-25 00:48:41.888+03	
dbcf08d9-1383-d03c-0474-e6e92bbed8ec	2021-05-25 00:49:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:49:01.877+03	2021-05-25 00:49:01.892+03	
640a5ff4-312e-9216-5398-42edc2953b5c	2021-05-25 00:49:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:49:21.877+03	2021-05-25 00:49:21.888+03	
4fa0526c-bf63-b34b-8861-e19f015d6e00	2021-05-25 00:49:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:49:41.877+03	2021-05-25 00:49:41.884+03	
0b4eb339-fe4f-360c-3e55-2272e53192d5	2021-05-25 00:49:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:49:51.877+03	2021-05-25 00:49:51.886+03	
d8f44aa9-6d2b-cd23-61da-2fdbd5a7831c	2021-05-25 00:50:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:50:01.877+03	2021-05-25 00:50:01.888+03	
5cb8ab25-46d6-e74c-82b4-3ad2b5e2b5c0	2021-05-25 00:50:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:50:21.877+03	2021-05-25 00:50:21.883+03	
cd7c67ce-1681-23cd-221b-397e2179ceda	2021-05-25 00:50:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:50:41.877+03	2021-05-25 00:50:41.887+03	
c5ce0068-d1f8-8d04-da97-c876ab51e0b5	2021-05-25 00:51:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:51:01.877+03	2021-05-25 00:51:01.882+03	
0ab981f6-0f44-28d0-bac0-118407ba3dc5	2021-05-25 00:51:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:51:21.877+03	2021-05-25 00:51:21.884+03	
ad17ce9d-01da-0554-7356-dce8e7deec08	2021-05-25 00:51:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:51:41.877+03	2021-05-25 00:51:41.973+03	
22cb82d0-dcb5-3d0b-3d8f-ab026c8834d1	2021-05-25 00:52:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:52:02.878+03	2021-05-25 00:52:02.886+03	
9a212945-baf2-fcf7-7e35-79a56b795a07	2021-05-25 00:52:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:52:22.878+03	2021-05-25 00:52:22.884+03	
f4f24768-bf97-9158-792d-73d6588ae28c	2021-05-25 00:52:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:52:43.877+03	2021-05-25 00:52:43.885+03	
e13a1877-a2e2-0a8c-955b-53092e839c8f	2021-05-25 00:53:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:53:03.877+03	2021-05-25 00:53:03.885+03	
473576d8-a0ce-76e8-811c-00cece16d115	2021-05-25 00:53:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:53:23.877+03	2021-05-25 00:53:23.883+03	
bb9233ee-f146-0b11-5fbf-49f0f8f15960	2021-05-25 00:53:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:53:43.877+03	2021-05-25 00:53:43.885+03	
d3fa302b-59ea-d3de-9f3a-2346f728e9da	2021-05-25 00:54:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:54:03.877+03	2021-05-25 00:54:04.202+03	
052b276e-77c7-a871-0167-8fe3b34ff4c4	2021-05-25 00:54:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:54:23.877+03	2021-05-25 00:54:24.176+03	
50cc6001-577a-53fc-c069-6ff2cd815cde	2021-05-25 00:54:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:54:43.877+03	2021-05-25 00:54:44.184+03	
a79942c1-c720-d008-921d-93d7814bd6d3	2021-05-25 00:55:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:55:03.877+03	2021-05-25 00:55:03.884+03	
386f46fe-a67c-cbd8-6619-1776dc42c9bc	2021-05-25 00:55:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:55:23.877+03	2021-05-25 00:55:23.889+03	
47085ce3-bbb2-60bf-9ecb-3986e08d8e15	2021-05-25 00:55:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:55:43.877+03	2021-05-25 00:55:44.174+03	
726d8cd6-1baf-0f66-589d-7a761d225e44	2021-05-25 00:56:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:56:03.877+03	2021-05-25 00:56:03.889+03	
7c03a855-7d95-fcd3-052e-d32730cc5b34	2021-05-25 00:56:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:56:23.877+03	2021-05-25 00:56:23.883+03	
7087aad5-98b1-89ce-19da-91276413dd73	2021-05-25 00:56:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:56:43.877+03	2021-05-25 00:56:44.006+03	
2dd97233-b0ce-cbb4-d84a-ab989fe53c62	2021-05-25 00:57:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:57:03.877+03	2021-05-25 00:57:03.883+03	
39a92a80-0877-dd27-140c-a1f52d6b9064	2021-05-25 00:57:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:57:23.877+03	2021-05-25 00:57:23.887+03	
21d05158-f815-3f5e-1a79-f6b580ee0c46	2021-05-25 00:57:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:57:43.877+03	2021-05-25 00:57:43.883+03	
fdd7409f-d8b6-3177-b08f-42a3534d3f2b	2021-05-25 00:58:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:58:03.877+03	2021-05-25 00:58:03.884+03	
036242ed-a317-12d2-b5fb-02b0653896af	2021-05-25 00:58:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:58:23.877+03	2021-05-25 00:58:23.883+03	
8c5a977c-c3ab-f9e1-ac0d-b5fd10f908ac	2021-05-26 04:18:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:18:14.79+03	2021-05-26 04:18:14.797+03	
ee5ec731-f8d2-9af2-d436-05c1b20b5900	2021-05-25 00:58:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:58:43.877+03	2021-05-25 00:58:43.884+03	
9bec91dd-069a-676c-4d01-909d23ed8f68	2021-05-25 00:59:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:59:03.877+03	2021-05-25 00:59:03.883+03	
da1c00c7-f36c-5609-bea2-32c09eca37bb	2021-05-26 04:18:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:18:34.79+03	2021-05-26 04:18:34.796+03	
2f7b0d90-19e2-5aec-b485-21bebd0a92c6	2021-05-25 00:59:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:59:23.877+03	2021-05-25 00:59:23.883+03	
4ea111c1-05f3-6349-0cd1-bff1d1512393	2021-05-25 00:59:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:59:43.877+03	2021-05-25 00:59:43.884+03	
36515f4c-ace7-32c1-8c90-87775d5fbd78	2021-05-26 04:18:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:18:54.79+03	2021-05-26 04:18:54.807+03	
0334ada0-b1c4-e1ba-8704-117f3a3efae2	2021-05-25 01:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 01:00:00.877+03	2021-05-25 01:00:00.882+03	ERROR
0397cba9-0d04-b22c-a5c8-30d80f557e35	2021-05-25 01:00:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:00:13.877+03	2021-05-25 01:00:14.015+03	
546072bc-3087-4b0e-b822-9a647d9179ca	2021-05-26 04:19:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:19:14.79+03	2021-05-26 04:19:14.796+03	
b8354b06-9f63-9f3a-91fa-876af57e41ba	2021-05-25 01:00:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:00:33.877+03	2021-05-25 01:00:33.886+03	
9b740b43-3a81-d005-db15-b55fc7d1b97d	2021-05-25 01:00:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:00:53.877+03	2021-05-25 01:00:54.332+03	
518f87f2-bd0b-5eee-b686-71a1046907b0	2021-05-26 04:19:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:19:34.79+03	2021-05-26 04:19:34.796+03	
4e0f44ac-d714-5e77-c200-fc11a073ed0c	2021-05-25 01:01:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:01:13.877+03	2021-05-25 01:01:13.884+03	
e5e8af39-3508-e995-fc29-8abbb85e3fff	2021-05-25 01:01:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:01:33.877+03	2021-05-25 01:01:33.886+03	
0f9a22aa-fc65-c2ec-4cf9-58a1cb09cd67	2021-05-26 04:19:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:19:54.79+03	2021-05-26 04:19:54.798+03	
7a543d86-e395-58c0-9e45-9e01f2f2c5c5	2021-05-25 01:01:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:01:53.877+03	2021-05-25 01:01:53.889+03	
b2795043-c4a1-ffe6-8cb9-4ee09c030bcf	2021-05-25 01:02:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:02:13.877+03	2021-05-25 01:02:13.884+03	
588d7483-b724-b7b0-2d3e-7680222c42ae	2021-05-26 04:20:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:20:04.79+03	2021-05-26 04:20:04.796+03	
4373193e-561c-0d2e-8a59-e061ce2ae994	2021-05-25 01:02:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:02:33.877+03	2021-05-25 01:02:33.884+03	
49295204-32fe-8490-cece-237b53ba7ff9	2021-05-25 01:02:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:02:53.877+03	2021-05-25 01:02:53.887+03	
bde52f29-0b93-a75c-39d5-27e2b04cda2d	2021-05-26 04:20:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:20:24.79+03	2021-05-26 04:20:24.796+03	
4c38fffb-054b-b377-a960-ae4fd1d9a53a	2021-05-25 01:03:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:03:13.877+03	2021-05-25 01:03:13.887+03	
d75f9a18-8f0d-edf1-b8e4-3e04e4d3b65e	2021-05-25 01:03:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:03:33.877+03	2021-05-25 01:03:33.887+03	
40a3a28b-6d78-c2ef-c5ff-d72a1aac55b3	2021-05-26 04:20:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:20:44.79+03	2021-05-26 04:20:44.797+03	
10ba2120-0dfd-502c-b7a1-b0382e2b4693	2021-05-25 01:03:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:03:53.877+03	2021-05-25 01:03:53.884+03	
52b2ee96-bc2e-f982-1eed-ada21423e6e2	2021-05-25 01:04:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:04:13.877+03	2021-05-25 01:04:13.887+03	
15b80194-4e52-66df-834c-7b0c2deb7af0	2021-05-25 01:04:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:04:33.877+03	2021-05-25 01:04:33.889+03	
95ee66b0-673f-e345-4911-399e57d5c19c	2021-05-25 01:04:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:04:53.877+03	2021-05-25 01:04:53.886+03	
28c44717-1d2a-7cf1-da85-606f146f3324	2021-05-25 01:05:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:05:13.877+03	2021-05-25 01:05:13.885+03	
6999662c-d30c-42fa-7786-57b325b1eac5	2021-05-25 01:05:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:05:33.877+03	2021-05-25 01:05:33.884+03	
2978c5d5-7e07-f582-7c7d-3390fcd202c1	2021-05-25 01:05:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:05:53.877+03	2021-05-25 01:05:54.012+03	
c10ff910-76a5-b231-331a-891147bde132	2021-05-25 01:06:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:06:13.877+03	2021-05-25 01:06:13.886+03	
3a7fd9f6-7257-adbb-dfb5-3b881efd47c7	2021-05-25 01:06:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:06:33.877+03	2021-05-25 01:06:33.885+03	
0beee1bc-bbc9-a891-b68f-a238fa8a6d17	2021-05-25 01:06:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:06:53.877+03	2021-05-25 01:06:53.884+03	
8d223c36-1402-311a-494e-87c0c44afacf	2021-05-25 01:07:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:07:14.877+03	2021-05-25 01:07:14.885+03	
9b2fd010-0610-2d11-4738-7fe96e961e08	2021-05-25 01:07:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:07:34.877+03	2021-05-25 01:07:34.884+03	
9fdfd510-6556-5135-a213-795c837b5c9a	2021-05-25 01:07:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:07:54.877+03	2021-05-25 01:07:54.886+03	
060703ca-acee-3187-32df-6c653af6edd9	2021-05-25 01:08:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:08:14.877+03	2021-05-25 01:08:14.884+03	
4b507d9d-e79a-0d35-f861-7c14b808e651	2021-05-25 01:08:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:08:34.877+03	2021-05-25 01:08:34.885+03	
290c91e2-a07e-df16-bfa2-6341c2ec54f9	2021-05-25 01:08:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:08:54.877+03	2021-05-25 01:08:54.882+03	
ce7a03a5-cc9f-b721-903b-a85fe26191ad	2021-05-25 01:09:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:09:15.877+03	2021-05-25 01:09:15.885+03	
a6590759-dd5b-9cb3-1692-12a0e0c504a8	2021-05-25 01:09:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:09:35.877+03	2021-05-25 01:09:35.884+03	
d15e3c7b-b518-7740-5e9e-1b017209b497	2021-05-25 01:09:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:09:56.877+03	2021-05-25 01:09:56.884+03	
42980a4e-6183-76c1-f877-234c62afabd0	2021-05-25 01:10:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:10:06.877+03	2021-05-25 01:10:06.884+03	
8f3a958e-17f4-d802-b2ab-a1174f4c6996	2021-05-25 01:10:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:10:26.877+03	2021-05-25 01:10:26.884+03	
de0c6f65-ad2d-57ef-b4c8-491babe1d00b	2021-05-25 01:10:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:10:46.877+03	2021-05-25 01:10:46.885+03	
f99095ed-57ac-654e-0dc1-8c1d13d411a9	2021-05-25 01:11:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:11:06.877+03	2021-05-25 01:11:07.128+03	
002d6ca2-daf1-93be-00f8-ce3a9d905a48	2021-05-25 01:11:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:11:26.877+03	2021-05-25 01:11:26.892+03	
2fc498f7-7ad8-68a1-8cd9-b20a8c9ce905	2021-05-25 01:11:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:11:46.877+03	2021-05-25 01:11:46.885+03	
f5488044-0b3f-472f-dd7d-35198066f3ed	2021-05-25 01:12:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:12:06.877+03	2021-05-25 01:12:06.882+03	
8b10dc23-1312-5118-84ad-7d1586e1f29c	2021-05-25 01:12:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:12:26.877+03	2021-05-25 01:12:27.119+03	
1fefadcd-3581-bc02-fbce-7021440df389	2021-05-25 01:12:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:12:46.877+03	2021-05-25 01:12:46.884+03	
4dc26096-b884-ad0f-277d-4ce5cda74780	2021-05-25 01:13:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:13:06.877+03	2021-05-25 01:13:06.884+03	
af00398a-9070-f3a4-f9f6-96171263d4db	2021-05-25 01:13:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:13:26.877+03	2021-05-25 01:13:27.167+03	
e2978fbe-f22f-d75f-0868-18cdc4b51538	2021-05-25 01:13:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:13:46.877+03	2021-05-25 01:13:46.884+03	
5b45c334-1592-18ac-e261-b3ec93965f07	2021-05-25 01:14:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:14:06.877+03	2021-05-25 01:14:07.122+03	
f750a056-62f2-4d08-42fd-1dcf9f78d7e2	2021-05-25 01:14:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:14:26.877+03	2021-05-25 01:14:26.93+03	
ce636410-e76b-12cb-34ec-93afe0bddb14	2021-05-25 01:14:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:14:46.877+03	2021-05-25 01:14:46.887+03	
b7424b78-bcab-55d8-5a45-d6589672dc55	2021-05-25 01:15:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:15:06.877+03	2021-05-25 01:15:06.883+03	
bd5f3990-f8a2-2587-bc31-d812d53f4369	2021-05-25 01:15:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:15:26.877+03	2021-05-25 01:15:26.889+03	
6ce6547b-5861-588c-d532-fc5e26ce7790	2021-05-25 01:15:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:15:46.877+03	2021-05-25 01:15:46.882+03	
f666925b-d094-9d91-ee57-e54f722631d2	2021-05-25 00:58:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:58:33.877+03	2021-05-25 00:58:33.885+03	
4aebd83f-5276-b210-d23d-89ce63107e42	2021-05-25 00:58:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:58:53.877+03	2021-05-25 00:58:53.888+03	
428e9a05-5b17-76cf-852c-309e901ead54	2021-05-25 00:59:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:59:13.877+03	2021-05-25 00:59:13.884+03	
f44e91ba-7041-c497-d4d1-d32552ebb31c	2021-05-25 00:59:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:59:33.877+03	2021-05-25 00:59:33.889+03	
7bc559db-1c6f-1f31-67f0-0f1556e9b79b	2021-05-25 00:59:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 00:59:53.877+03	2021-05-25 00:59:53.884+03	
142b7cde-b169-c8fc-a192-b029489571ac	2021-05-25 01:00:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:00:03.877+03	2021-05-25 01:00:03.888+03	
38a16df2-fa33-195b-c8d2-c1ee8aa15a81	2021-05-25 01:00:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:00:23.877+03	2021-05-25 01:00:23.882+03	
dfc53516-341d-e741-060e-92b5d5614f0c	2021-05-25 01:00:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:00:43.877+03	2021-05-25 01:00:43.883+03	
6ccc78f0-d286-c610-cea6-6ebdaaa67a3c	2021-05-25 01:01:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:01:03.877+03	2021-05-25 01:01:03.886+03	
e27f010a-e517-67c2-465f-15e219859fc0	2021-05-25 01:01:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:01:23.877+03	2021-05-25 01:01:23.883+03	
63572de4-18bc-2379-05ef-549e04f146a3	2021-05-25 01:01:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:01:43.877+03	2021-05-25 01:01:43.883+03	
e8cf617b-8fb9-6436-1602-59610129b7a7	2021-05-25 01:02:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:02:03.877+03	2021-05-25 01:02:03.885+03	
83e4ba94-ed37-485a-f067-1e6c0dac4366	2021-05-25 01:02:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:02:23.877+03	2021-05-25 01:02:23.886+03	
6dca3981-8f9a-e28c-629a-ee838808edd0	2021-05-25 01:02:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:02:43.877+03	2021-05-25 01:02:43.883+03	
985e2e0e-6dfa-6f73-9b8d-2fdc7a1a5048	2021-05-25 01:03:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:03:03.877+03	2021-05-25 01:03:03.935+03	
f1f47767-aaf1-aade-c501-a7826bf37f3f	2021-05-25 01:03:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:03:23.877+03	2021-05-25 01:03:23.883+03	
84b0caee-6335-c27f-47d5-ca3847a258c0	2021-05-25 01:03:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:03:43.877+03	2021-05-25 01:03:43.893+03	
b859dad9-f2c0-1d2c-616e-bfaaca6406b7	2021-05-25 01:04:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:04:03.877+03	2021-05-25 01:04:03.89+03	
b1c739a6-eaab-f1f4-75e5-87d53a386cf8	2021-05-25 01:04:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:04:23.877+03	2021-05-25 01:04:23.883+03	
157bb18e-2065-6132-94b9-8353330286a8	2021-05-25 01:04:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:04:43.877+03	2021-05-25 01:04:43.884+03	
a474d6ba-4fd2-2426-9864-1af8d69f0445	2021-05-25 01:05:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:05:03.877+03	2021-05-25 01:05:03.89+03	
640a37e8-09fa-30bd-59d9-304dded97a7a	2021-05-25 01:05:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:05:23.877+03	2021-05-25 01:05:23.889+03	
71e0aaeb-b709-b512-b5fb-0bdb3771fe44	2021-05-25 01:05:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:05:43.877+03	2021-05-25 01:05:43.884+03	
21b393aa-6aef-db90-6f83-deff53ac7d1c	2021-05-25 01:06:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:06:03.877+03	2021-05-25 01:06:03.885+03	
0ca6b655-17fe-c43f-c57b-fc4da0043f4a	2021-05-25 01:06:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:06:23.877+03	2021-05-25 01:06:23.885+03	
19a22763-6bd9-eb3a-72ac-5781ce9814f0	2021-05-25 01:06:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:06:43.877+03	2021-05-25 01:06:43.888+03	
c312ec66-84d8-a4e3-1f8c-b5510e7bc2d3	2021-05-25 01:07:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:07:03.878+03	2021-05-25 01:07:03.89+03	
938562ca-3f49-5e78-326a-d1286024327f	2021-05-25 01:07:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:07:24.877+03	2021-05-25 01:07:24.882+03	
9cab45c6-203e-3f03-af19-4392c56c4b37	2021-05-25 01:07:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:07:44.877+03	2021-05-25 01:07:44.882+03	
cf8dd17b-8070-b41d-56b3-590672d92266	2021-05-25 01:08:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:08:04.877+03	2021-05-25 01:08:04.89+03	
13a18aa5-d763-4597-a6d2-c98e8871ee35	2021-05-25 01:08:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:08:24.877+03	2021-05-25 01:08:24.887+03	
6a950615-bfc3-2c5e-dcd6-a0b69f86c71e	2021-05-25 01:08:44.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:08:44.877+03	2021-05-25 01:08:44.885+03	
88d1a007-906c-4034-dbb6-effe9e448f72	2021-05-25 01:09:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:09:04.877+03	2021-05-25 01:09:04.882+03	
b23fe8e8-865c-fc2f-b30d-f2ae13cdfd0b	2021-05-25 01:09:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:09:25.877+03	2021-05-25 01:09:25.884+03	
64695227-333b-91df-663e-0612b4410432	2021-05-25 01:09:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:09:46.877+03	2021-05-25 01:09:46.884+03	
187a53d1-1e02-bb09-672f-d1a1a2dce319	2021-05-25 01:10:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 01:10:00.877+03	2021-05-25 01:10:00.887+03	ERROR
089787d9-1ebe-99b2-99e7-9dd4875caf59	2021-05-25 01:10:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:10:16.877+03	2021-05-25 01:10:16.884+03	
8b38f61b-d092-c17b-edea-bea57553a15a	2021-05-25 01:10:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:10:36.877+03	2021-05-25 01:10:36.883+03	
fc570b1c-22be-a2c9-4815-d44f3192861c	2021-05-25 01:10:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:10:56.877+03	2021-05-25 01:10:56.884+03	
e86a7f86-cfc4-fb9d-54c0-eddeccce4e53	2021-05-25 01:11:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:11:16.877+03	2021-05-25 01:11:16.883+03	
840be25d-8e39-fa37-a3a4-17e4afd34269	2021-05-25 01:11:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:11:36.877+03	2021-05-25 01:11:36.883+03	
cecc80dc-eaf0-b367-60b5-f71b58ca0ee9	2021-05-25 01:11:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:11:56.877+03	2021-05-25 01:11:56.884+03	
392c8754-28af-1aad-82c9-16014d6e9bde	2021-05-25 01:12:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:12:16.877+03	2021-05-25 01:12:16.882+03	
b70af982-943c-37b2-1c52-1ce5b179e9f1	2021-05-25 01:12:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:12:36.877+03	2021-05-25 01:12:36.883+03	
b79dea05-e942-1d0e-1db7-dee288b6eb47	2021-05-25 01:12:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:12:56.877+03	2021-05-25 01:12:56.886+03	
90c7d154-7984-9ccc-5433-df668d8d9664	2021-05-25 01:13:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:13:16.877+03	2021-05-25 01:13:16.887+03	
01735817-3ede-4fa3-6272-2b6c7aabac15	2021-05-25 01:13:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:13:36.877+03	2021-05-25 01:13:36.884+03	
a13d0915-19a7-0d58-8171-b0858d2f4eb1	2021-05-25 01:13:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:13:56.877+03	2021-05-25 01:13:56.889+03	
e8ad26e4-4816-8e50-5fe3-29f58b6c4244	2021-05-25 01:14:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:14:16.877+03	2021-05-25 01:14:16.884+03	
ecfff0ee-ef41-7b77-954c-aff901c2e541	2021-05-25 01:14:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:14:36.877+03	2021-05-25 01:14:36.898+03	
a5027500-f60a-9955-a996-0c36f1739988	2021-05-25 01:14:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:14:56.877+03	2021-05-25 01:14:56.887+03	
b869cd67-d7de-b18e-b8d7-656308ca14fc	2021-05-25 01:15:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:15:16.877+03	2021-05-25 01:15:17.12+03	
1751de29-08a4-b97f-80ff-44cffb43d2b2	2021-05-25 01:15:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:15:36.877+03	2021-05-25 01:15:36.884+03	
11524bd6-9f03-bfdc-126e-7ab8aa8de75a	2021-05-25 01:15:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:15:56.877+03	2021-05-25 01:15:56.884+03	
02bbcfda-090c-bd96-71fc-15b6144cacfa	2021-05-25 01:16:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:16:06.877+03	2021-05-25 01:16:06.884+03	
54a0966a-8066-9488-dbed-7eb2210d539d	2021-05-25 01:16:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:16:16.877+03	2021-05-25 01:16:16.885+03	
8f875005-21d4-daa9-f0c6-66dddc1e8e69	2021-05-25 01:16:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:16:26.877+03	2021-05-25 01:16:26.884+03	
ee6f1402-07f6-1673-cf7f-c6a115722e92	2021-05-25 01:16:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:16:36.877+03	2021-05-25 01:16:36.883+03	
f89a6726-8ca9-0d3f-848c-2261b3b2cd0a	2021-05-25 01:16:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:16:46.877+03	2021-05-25 01:16:46.882+03	
c50304fe-1d0c-133d-ef6e-48b33810909e	2021-05-25 01:16:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:16:56.877+03	2021-05-25 01:16:56.885+03	
b6bfaca1-7d69-c4a9-63a2-b5e693c68ba6	2021-05-25 01:17:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:17:06.877+03	2021-05-25 01:17:06.883+03	
7f86a040-0857-7367-e45e-ea5d16a53c69	2021-05-25 01:17:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:17:16.877+03	2021-05-25 01:17:16.883+03	
e99aecc9-442a-b7af-5683-59e47a8f05a2	2021-05-25 01:17:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:17:26.877+03	2021-05-25 01:17:26.883+03	
66d55d59-0219-bf5b-bd76-0beea32d0789	2021-05-25 01:17:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:17:36.877+03	2021-05-25 01:17:36.886+03	
453937c3-50e0-ff04-1bb8-a181562ac739	2021-05-25 01:17:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:17:56.877+03	2021-05-25 01:17:56.883+03	
e24de6eb-715f-c0c7-836f-a9b077bc65a7	2021-05-25 01:18:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:18:16.877+03	2021-05-25 01:18:16.887+03	
8712380b-0b63-3d0a-9658-0d35374597fb	2021-05-25 01:18:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:18:36.877+03	2021-05-25 01:18:36.885+03	
60085a5c-b77a-58d1-533e-7a127703ff05	2021-05-25 01:18:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:18:56.877+03	2021-05-25 01:18:56.885+03	
196fbe4a-59cd-cce2-1e2d-5bce35b2aad7	2021-05-25 01:19:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:19:16.877+03	2021-05-25 01:19:16.884+03	
208dad59-ed78-159e-b4be-d1c4bb95435c	2021-05-25 01:19:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:19:36.877+03	2021-05-25 01:19:36.884+03	
e4ccc5ea-8323-3307-43b9-b34eb2a5df2b	2021-05-25 01:19:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:19:56.877+03	2021-05-25 01:19:56.883+03	
e7521fcd-a413-74fc-7d94-f8733e0a1def	2021-05-25 01:20:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:20:06.877+03	2021-05-25 01:20:06.884+03	
4501139d-2505-df87-1396-051bb1705d65	2021-05-25 01:20:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:20:26.877+03	2021-05-25 01:20:26.894+03	
17fcfa3f-8783-0722-f6f3-b5d5e4976ffc	2021-05-25 01:20:47.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:20:47.879+03	2021-05-25 01:20:47.886+03	
61f19d9e-5911-c941-c190-eba876fbdc3a	2021-05-25 01:21:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:21:08.877+03	2021-05-25 01:21:08.884+03	
669472eb-99a6-2681-2471-2a109400b1b3	2021-05-25 01:21:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:21:28.877+03	2021-05-25 01:21:28.886+03	
247ad62f-9c8c-85d3-b723-89dcde2e5249	2021-05-25 01:21:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:21:48.877+03	2021-05-25 01:21:48.884+03	
a082deb4-a640-9a25-bfa1-70668577be49	2021-05-25 01:22:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:22:08.877+03	2021-05-25 01:22:08.886+03	
d323f46c-5e36-2e2e-8979-e4e61937e87a	2021-05-25 01:22:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:22:28.877+03	2021-05-25 01:22:28.883+03	
6f047004-0add-204c-78d0-6f3935ac501d	2021-05-25 01:22:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:22:48.877+03	2021-05-25 01:22:48.883+03	
7488bf76-7a75-1fca-1d1a-bc906c29b4b8	2021-05-25 01:23:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:23:08.877+03	2021-05-25 01:23:08.886+03	
18f4b048-85f5-e7ff-db88-73bb9ad26ed0	2021-05-25 01:23:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:23:28.877+03	2021-05-25 01:23:28.889+03	
fdca3639-123e-4b38-875a-9c03c9282f05	2021-05-25 01:23:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:23:48.877+03	2021-05-25 01:23:48.883+03	
243aadb4-56bb-d7bb-8b41-2b8e74532ba2	2021-05-25 01:24:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:24:08.877+03	2021-05-25 01:24:08.884+03	
ebe950ea-2c0b-9e3b-80e2-b3bb276b4ba6	2021-05-25 01:24:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:24:29.877+03	2021-05-25 01:24:29.885+03	
7cfca3f9-c72c-063f-5315-67d6d48f2a7f	2021-05-25 01:24:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:24:49.877+03	2021-05-25 01:24:49.883+03	
7c2d7639-434a-7d55-2548-9dd4e0fdcc72	2021-05-25 01:25:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:25:09.877+03	2021-05-25 01:25:09.884+03	
35466a1e-0bf3-d752-1731-fc43be3916ec	2021-05-25 01:25:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:25:29.877+03	2021-05-25 01:25:29.883+03	
8d703f18-e9da-43d7-72c0-f8d0c07181ea	2021-05-25 01:25:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:25:49.877+03	2021-05-25 01:25:49.891+03	
a5d7aa30-6ea9-a534-8027-f5050321dff3	2021-05-25 01:26:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:26:09.877+03	2021-05-25 01:26:09.884+03	
e8894fd1-2672-bf61-072d-373d0fa8c11a	2021-05-25 01:26:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:26:30.877+03	2021-05-25 01:26:30.886+03	
71d61f40-1a94-b9ae-96af-986190306676	2021-05-25 01:26:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:26:50.877+03	2021-05-25 01:26:50.884+03	
857d8ef7-4175-b61c-fc08-5a81229a1117	2021-05-25 01:27:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:27:10.877+03	2021-05-25 01:27:10.882+03	
8c445b94-96cf-a5c0-afce-78fa3821259b	2021-05-25 01:27:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:27:30.877+03	2021-05-25 01:27:30.883+03	
d89875a3-a426-60c0-016c-4e2fd61c0875	2021-05-25 01:27:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:27:50.877+03	2021-05-25 01:27:50.883+03	
5902d6fc-a88e-e68a-068f-7e35d60dc1ac	2021-05-25 01:28:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:28:10.877+03	2021-05-25 01:28:10.884+03	
9ba37854-109d-6490-b968-c2af2b5dada4	2021-05-25 01:28:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:28:30.877+03	2021-05-25 01:28:30.885+03	
ed6048b5-84c4-324f-0488-48f981436f9e	2021-05-25 01:28:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:28:50.877+03	2021-05-25 01:28:50.886+03	
a3cd7550-4878-077b-7f43-14a54bf86903	2021-05-25 01:29:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:29:10.877+03	2021-05-25 01:29:10.884+03	
fe0834ed-a333-d363-5f8d-5326e33c7ee0	2021-05-25 01:29:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:29:30.877+03	2021-05-25 01:29:30.885+03	
77d1ef57-72d4-c87d-437b-15974799dab3	2021-05-25 01:29:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:29:50.877+03	2021-05-25 01:29:50.885+03	
2bdd7092-c326-d5b2-2361-bf7da52d423e	2021-05-25 01:30:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:30:10.877+03	2021-05-25 01:30:10.883+03	
b63fc320-b50d-1759-9650-4bc9ec39e09e	2021-05-25 01:30:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:30:30.877+03	2021-05-25 01:30:30.883+03	
39ea578d-6339-fe78-1df7-de7c83922971	2021-05-25 01:30:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:30:50.877+03	2021-05-25 01:30:50.885+03	
d62a44ca-b9c1-f37f-8dca-11a014b100c8	2021-05-25 01:31:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:31:10.877+03	2021-05-25 01:31:10.884+03	
60d4c6a2-6f26-1f6b-aa97-c9ca60500970	2021-05-25 01:31:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:31:30.877+03	2021-05-25 01:31:30.884+03	
0db8a452-e596-a9cd-a76b-ef62c706e0fc	2021-05-25 01:31:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:31:50.877+03	2021-05-25 01:31:50.932+03	
a4ff9dc0-b839-f101-4aa5-b0560903554b	2021-05-25 01:32:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:32:10.877+03	2021-05-25 01:32:10.899+03	
f49368a4-b697-3351-b325-70c36fc2b23d	2021-05-25 01:32:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:32:30.877+03	2021-05-25 01:32:31.112+03	
c469a22a-d9e3-fec2-c050-a675b1771883	2021-05-25 01:32:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:32:50.877+03	2021-05-25 01:32:50.884+03	
18621987-a212-0179-01a4-4eb58bb409d6	2021-05-25 01:33:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:33:10.877+03	2021-05-25 01:33:10.885+03	
d61a5736-e4e9-2f6e-cc65-1973d225ec70	2021-05-25 01:33:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:33:30.877+03	2021-05-25 01:33:30.885+03	
dbe0d43b-2f3a-5888-9b22-dd34b15bceab	2021-05-25 01:33:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:33:50.877+03	2021-05-25 01:33:50.886+03	
33d76213-7140-10a6-1320-c4773aabbae6	2021-05-25 01:34:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:34:10.877+03	2021-05-25 01:34:10.89+03	
cc65dd39-a17d-2a0c-28b1-81d3f373afb8	2021-05-25 01:34:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:34:30.877+03	2021-05-25 01:34:30.885+03	
cbfe6396-0ea7-984b-83d3-8143a387b767	2021-05-25 01:34:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:34:50.877+03	2021-05-25 01:34:50.885+03	
7d79e3b6-bfe0-753a-fe1d-d100de46bcc8	2021-05-25 01:35:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:35:10.877+03	2021-05-25 01:35:10.887+03	
71ccb904-f789-9f5b-b608-853069d3b583	2021-05-25 01:35:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:35:30.877+03	2021-05-25 01:35:30.884+03	
3af0daa2-8d9a-2217-5d1e-bedb8a60aa6b	2021-05-25 01:35:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:35:50.877+03	2021-05-25 01:35:50.887+03	
6ffa34af-2bb9-b07a-3fa4-1b244f86a5e3	2021-05-25 01:36:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:36:10.877+03	2021-05-25 01:36:11.207+03	
c78eb5e3-9270-4fb1-f29e-d3c05664b467	2021-05-25 01:36:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:36:30.877+03	2021-05-25 01:36:30.884+03	
27525b78-9ae4-bcea-b3f6-2f18bc30d2ec	2021-05-25 01:36:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:36:50.877+03	2021-05-25 01:36:50.888+03	
a5774042-ce22-f290-bde4-479dcd99670d	2021-05-25 01:37:10.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:37:10.877+03	2021-05-25 01:37:10.884+03	
e1b5f0ea-d2dd-4d88-30bf-b19e45ca9871	2021-05-25 01:37:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:37:30.877+03	2021-05-25 01:37:30.885+03	
e5aa287d-bab8-f635-5473-a61a1edfa2dd	2021-05-25 01:37:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:37:50.877+03	2021-05-25 01:37:50.885+03	
29b55225-4a7d-ac66-5184-7d2664bfa194	2021-05-25 01:38:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:38:10.877+03	2021-05-25 01:38:10.883+03	
6e6a0a46-7189-4c17-7487-305da49cbc20	2021-05-25 01:17:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:17:46.877+03	2021-05-25 01:17:46.882+03	
769cf15c-6f85-1cf4-a9ed-534e50b78667	2021-05-25 01:18:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:18:06.877+03	2021-05-25 01:18:06.885+03	
e7417b81-e526-d15c-15a3-0c271d2e6d8c	2021-05-25 01:18:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:18:26.877+03	2021-05-25 01:18:26.882+03	
cfa2b4de-e220-3c0f-4233-7bc0c21d8b38	2021-05-25 01:18:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:18:46.877+03	2021-05-25 01:18:46.884+03	
ea271634-a068-9bbd-808d-01ccbbe4d615	2021-05-25 01:19:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:19:06.877+03	2021-05-25 01:19:07.229+03	
34932a7a-0e27-b783-5788-b3cad636f39d	2021-05-25 01:19:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:19:26.877+03	2021-05-25 01:19:27.132+03	
71c76afe-709a-1f72-d0c5-9eb04e33a619	2021-05-25 01:19:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:19:46.877+03	2021-05-25 01:19:46.884+03	
0dec9729-c03b-ed09-c9d7-4dc76dcba929	2021-05-25 01:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 01:20:00.877+03	2021-05-25 01:20:00.883+03	ERROR
19240747-c9d6-9a9a-ca76-225079b7f3b1	2021-05-25 01:20:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:20:16.877+03	2021-05-25 01:20:16.884+03	
98358d07-865e-e21f-6e96-7ce7f95be1c7	2021-05-25 01:20:37.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:20:37.877+03	2021-05-25 01:20:37.883+03	
7e49f4ed-0d0d-51da-c02b-7d0c8d37a3cf	2021-05-25 01:20:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:20:58.877+03	2021-05-25 01:20:58.884+03	
587d8f25-d06e-972e-2b28-3dbedf7d564d	2021-05-25 01:21:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:21:18.877+03	2021-05-25 01:21:18.886+03	
5a0475f1-0349-004a-fb6f-61e9b4927cc8	2021-05-25 01:21:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:21:38.877+03	2021-05-25 01:21:38.89+03	
9c66c8bb-465a-ba04-d4ba-6e06687947cf	2021-05-25 01:21:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:21:58.877+03	2021-05-25 01:21:58.884+03	
40089c0c-8571-343c-05b6-567e8063a013	2021-05-25 01:22:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:22:18.877+03	2021-05-25 01:22:18.883+03	
81dd6cf3-b0e5-1e1b-39da-ae6ddeb4e459	2021-05-25 01:22:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:22:38.877+03	2021-05-25 01:22:38.883+03	
a5720a48-3173-a3cb-7aab-ba0f9ba7e502	2021-05-25 01:22:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:22:58.877+03	2021-05-25 01:22:59.124+03	
cd869eea-9d82-55f6-f082-e50d5a534535	2021-05-25 01:23:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:23:18.877+03	2021-05-25 01:23:18.885+03	
43739015-93da-c733-bf48-3d028052223a	2021-05-25 01:23:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:23:38.877+03	2021-05-25 01:23:38.883+03	
b1d9a21b-6fb1-0e1c-2dd1-7ee49dfb58a9	2021-05-25 01:23:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:23:58.877+03	2021-05-25 01:23:58.882+03	
863279a9-94fd-d0eb-af22-7127e7a6cdad	2021-05-25 01:24:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:24:18.877+03	2021-05-25 01:24:18.885+03	
2d552699-129f-d5cd-b543-9006c4655c1d	2021-05-25 01:24:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:24:39.877+03	2021-05-25 01:24:39.882+03	
a38e8b37-1862-8eb4-493f-5aef1c4eab3c	2021-05-25 01:24:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:24:59.877+03	2021-05-25 01:24:59.884+03	
004becdb-8936-ed4b-c963-850572fe470e	2021-05-25 01:25:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:25:19.877+03	2021-05-25 01:25:19.884+03	
077c94f3-e3ab-afc0-f500-2b88d9fcbd56	2021-05-25 01:25:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:25:39.877+03	2021-05-25 01:25:39.883+03	
dc88f854-1799-f77f-1e46-839d39a7f058	2021-05-25 01:25:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:25:59.877+03	2021-05-25 01:25:59.883+03	
2cb24345-c7a3-6eb9-220b-c5149f5f5d7c	2021-05-25 01:26:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:26:20.877+03	2021-05-25 01:26:20.882+03	
91d3fc4c-66b9-f792-32ae-7c72d56f1118	2021-05-25 01:26:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:26:40.877+03	2021-05-25 01:26:40.883+03	
7499c3fc-75bb-5af1-0a8b-f4f89787fe14	2021-05-25 01:27:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:27:00.877+03	2021-05-25 01:27:00.883+03	
792cffc7-2935-6574-7c85-92af07f742c3	2021-05-25 01:27:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:27:20.877+03	2021-05-25 01:27:20.885+03	
39a3196e-b483-4ec3-bb48-f1868d3ce497	2021-05-25 01:27:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:27:40.877+03	2021-05-25 01:27:40.884+03	
7d32aef5-f650-7834-1575-b403023411a5	2021-05-25 01:28:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:28:00.877+03	2021-05-25 01:28:00.883+03	
5ca6b961-53c8-1c92-7f6e-56952cc543c9	2021-05-25 01:28:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:28:20.877+03	2021-05-25 01:28:20.882+03	
9f83ccc7-3bcb-1c48-5f69-2ad462bd72d3	2021-05-25 01:28:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:28:40.877+03	2021-05-25 01:28:40.883+03	
766a7418-ffa4-8b55-99b6-59da66bdd000	2021-05-25 01:29:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:29:00.877+03	2021-05-25 01:29:00.883+03	
4bb82e44-824f-ef76-4d79-a014fd5cd908	2021-05-25 01:29:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:29:20.877+03	2021-05-25 01:29:20.884+03	
e9a56af4-2622-3692-5121-428c5103039a	2021-05-25 01:29:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:29:40.877+03	2021-05-25 01:29:40.883+03	
13c0caff-4a98-82f4-ef7d-412ce1ca55ca	2021-05-25 01:30:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:30:00.877+03	2021-05-25 01:30:00.884+03	
f5b05ea7-ae13-5c69-8472-c340e19051db	2021-05-25 01:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 01:30:00.877+03	2021-05-25 01:30:00.893+03	ERROR
8261102b-9a5b-d308-ecab-32457452db03	2021-05-25 01:30:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:30:20.877+03	2021-05-25 01:30:20.884+03	
314c0bce-1cb8-3b83-e422-5438f4418b11	2021-05-25 01:30:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:30:40.877+03	2021-05-25 01:30:40.884+03	
69f7f1e9-f770-cd3f-24c2-c5f741f41312	2021-05-25 01:31:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:31:00.877+03	2021-05-25 01:31:00.884+03	
cdfe0c10-e8a8-d653-ce55-6c1d2be5fe5d	2021-05-25 01:31:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:31:20.877+03	2021-05-25 01:31:20.883+03	
816e2c70-e317-e78f-6944-997c4bca99d6	2021-05-25 01:31:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:31:40.877+03	2021-05-25 01:31:40.884+03	
171d2881-645b-85e9-0629-5deab612ca0d	2021-05-25 01:32:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:32:00.877+03	2021-05-25 01:32:00.883+03	
d847a0b1-bad0-328e-a7fb-6e49d5f54c6f	2021-05-25 01:32:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:32:20.877+03	2021-05-25 01:32:20.884+03	
d61ff9bd-09be-acdd-4156-f34d5d7201cc	2021-05-25 01:32:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:32:40.877+03	2021-05-25 01:32:40.884+03	
614f8a2c-9efb-b5b2-a725-6ec244db0ed7	2021-05-25 01:33:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:33:00.877+03	2021-05-25 01:33:00.885+03	
9b398022-2c73-0a8b-3973-5aea7fc1c763	2021-05-25 01:33:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:33:20.877+03	2021-05-25 01:33:20.886+03	
a2397c2d-521a-23ba-4d02-2ab8d1fef865	2021-05-25 01:33:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:33:40.877+03	2021-05-25 01:33:40.883+03	
34137405-aad2-7d76-ff1c-9aafc572a19a	2021-05-25 01:34:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:34:00.877+03	2021-05-25 01:34:00.887+03	
03600970-8b05-5e36-8f64-b5cfbbc4fe08	2021-05-25 01:34:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:34:20.877+03	2021-05-25 01:34:20.887+03	
262f6647-7f1b-2a68-e78d-3053849ac55b	2021-05-25 01:34:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:34:40.877+03	2021-05-25 01:34:40.885+03	
981ed6f9-b9bd-67db-25d8-495522129eaf	2021-05-25 01:35:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:35:00.877+03	2021-05-25 01:35:00.887+03	
7c2aec4e-b09d-4ba8-cb51-b81ea195cddd	2021-05-25 01:35:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:35:20.877+03	2021-05-25 01:35:20.885+03	
f98b93bb-8704-3f85-daf5-fa38e3d78efc	2021-05-25 01:35:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:35:40.877+03	2021-05-25 01:35:40.885+03	
113534ee-93a0-f286-5743-b2c568d7aeb2	2021-05-25 01:36:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:36:00.877+03	2021-05-25 01:36:00.884+03	
b0f90e4a-dc01-d862-0776-5ede1d51efff	2021-05-25 01:36:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:36:20.877+03	2021-05-25 01:36:21.113+03	
5192d559-4c9e-fab1-b519-7dbe7e905f3b	2021-05-25 01:36:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:36:40.877+03	2021-05-25 01:36:40.885+03	
831615eb-abc1-f24c-dc0f-870e586c7dfe	2021-05-25 01:37:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:37:00.877+03	2021-05-25 01:37:00.884+03	
caecb29f-9ffc-cab9-1de8-f44e85f4e1cb	2021-05-25 01:37:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:37:20.877+03	2021-05-25 01:37:20.884+03	
60c2a97c-a935-6249-a346-ffc7bf327b93	2021-05-25 01:37:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:37:40.877+03	2021-05-25 01:37:40.884+03	
3a6bd35b-8d38-0f0b-7eea-1021892302de	2021-05-25 01:38:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:38:00.877+03	2021-05-25 01:38:00.883+03	
dbd62cd8-6cb9-912f-7169-b625542476f8	2021-05-25 01:38:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:38:20.877+03	2021-05-25 01:38:20.883+03	
2f99c082-c29e-4345-db74-a93f6c5c2314	2021-05-25 01:38:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:38:40.877+03	2021-05-25 01:38:40.885+03	
c05d41d9-0686-fe1b-5c39-96ddd4fad3ec	2021-05-25 01:39:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:39:00.877+03	2021-05-25 01:39:00.883+03	
a6c13a1d-9b3d-4dd5-5226-2ecf60cde9b4	2021-05-25 01:39:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:39:20.877+03	2021-05-25 01:39:20.885+03	
e9566b97-9fd2-b4ed-e70e-57512b316fb8	2021-05-25 01:39:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:39:40.877+03	2021-05-25 01:39:40.885+03	
316012b2-b76f-57b9-2152-da7621aae327	2021-05-25 01:40:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:40:00.877+03	2021-05-25 01:40:00.885+03	
80e8825b-2494-fc99-2017-bba2c2682f4a	2021-05-25 01:40:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:40:20.877+03	2021-05-25 01:40:20.884+03	
544b41e5-7685-a1c7-27d4-227c4410d785	2021-05-25 01:40:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:40:40.877+03	2021-05-25 01:40:40.884+03	
f25ee558-d69b-e8a2-70bf-b9dceba12b53	2021-05-25 01:41:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:41:00.877+03	2021-05-25 01:41:00.884+03	
0cc5b0f0-c9ea-2a51-6db3-0f9d8bd1a39c	2021-05-25 01:41:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:41:20.877+03	2021-05-25 01:41:21.13+03	
732e9e05-2586-0299-18bb-73627656dfef	2021-05-25 01:41:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:41:40.877+03	2021-05-25 01:41:40.883+03	
7828aa4b-2f67-9194-8860-8c11cbf096ee	2021-05-25 01:42:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:42:00.877+03	2021-05-25 01:42:00.884+03	
77ba16bf-c1ef-f93e-d93c-f312399ef24b	2021-05-25 01:42:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:42:20.877+03	2021-05-25 01:42:20.885+03	
c1b92b29-4ca7-c653-a873-cc063a47dda2	2021-05-25 01:42:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:42:40.877+03	2021-05-25 01:42:40.885+03	
25998b41-7ea7-d027-a170-fe729b446b4c	2021-05-25 01:43:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:43:00.877+03	2021-05-25 01:43:00.885+03	
930db454-67ba-3632-a8a2-574e1b0f07f6	2021-05-25 01:43:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:43:20.877+03	2021-05-25 01:43:20.885+03	
63601b8f-aeb7-b822-0ad9-b79381ce5502	2021-05-25 01:43:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:43:40.877+03	2021-05-25 01:43:40.884+03	
ce85e0af-0711-9ab3-2219-2713d9e8882f	2021-05-25 01:44:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:44:00.877+03	2021-05-25 01:44:00.884+03	
dff8cb73-05d4-5d71-c01e-ce6ea47ff1f2	2021-05-25 01:44:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:44:20.877+03	2021-05-25 01:44:20.885+03	
1c48cec5-f52e-529e-78f5-6c64dfe97842	2021-05-25 01:44:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:44:40.877+03	2021-05-25 01:44:41.283+03	
366eea83-dcfd-3acd-3172-f9686cd0f03b	2021-05-25 01:45:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:45:01.877+03	2021-05-25 01:45:01.885+03	
bcc0ae50-e59f-30c1-9e94-9016420e42a4	2021-05-25 01:45:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:45:21.877+03	2021-05-25 01:45:21.883+03	
231fee73-5ea5-b25a-24bc-f04c11fbfd19	2021-05-25 01:45:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:45:41.877+03	2021-05-25 01:45:41.885+03	
aed9a6c3-8fa4-998d-07d2-6b1ed4ce6c87	2021-05-25 01:46:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:46:01.877+03	2021-05-25 01:46:01.883+03	
a8cd86ad-7549-6e64-5f46-667793e55c81	2021-05-25 01:46:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:46:21.877+03	2021-05-25 01:46:22.121+03	
55c3f05c-367f-4a57-fcf6-73be04948b39	2021-05-25 01:46:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:46:41.877+03	2021-05-25 01:46:41.883+03	
aa00c33c-234a-b8f4-f1bf-db8f82d5b1f9	2021-05-25 01:47:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:47:01.877+03	2021-05-25 01:47:01.884+03	
a2dc83d2-dbc2-ce82-5b23-ba59618d7c82	2021-05-25 01:47:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:47:21.877+03	2021-05-25 01:47:21.955+03	
c2506a5a-4240-5d73-751e-f31501dcb509	2021-05-25 01:47:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:47:41.877+03	2021-05-25 01:47:41.886+03	
936e1ceb-a031-7b36-4756-80b698ab65e0	2021-05-25 01:48:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:48:01.877+03	2021-05-25 01:48:01.884+03	
f31a936b-1fe7-af66-482d-a59b3b25c8e6	2021-05-25 01:48:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:48:22.877+03	2021-05-25 01:48:22.886+03	
f99e1559-d1a2-cfd6-2657-e70ffa5c01c2	2021-05-25 01:48:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:48:42.877+03	2021-05-25 01:48:42.885+03	
f4b643a4-9f42-2bfc-149e-1b094aaa37c4	2021-05-25 01:49:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:49:02.878+03	2021-05-25 01:49:02.889+03	
37e685d0-c92c-f5d0-af16-7751d75a0e0a	2021-05-25 01:49:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:49:23.877+03	2021-05-25 01:49:23.883+03	
a7dd685c-52bc-0368-7702-0eda0bf70f54	2021-05-25 01:49:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:49:43.877+03	2021-05-25 01:49:43.884+03	
8c8a509e-3458-56fc-bfca-34f5b2390584	2021-05-25 01:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 01:50:00.877+03	2021-05-25 01:50:00.883+03	ERROR
245cb140-2837-77b1-a88b-a997a2f3c562	2021-05-25 01:50:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:50:13.877+03	2021-05-25 01:50:13.884+03	
ad66fa95-f415-0e11-e20b-1a053ccc5c77	2021-05-25 01:50:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:50:33.877+03	2021-05-25 01:50:33.886+03	
4fb6df58-aecf-ba1f-b9d3-50f81da21897	2021-05-25 01:50:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:50:53.877+03	2021-05-25 01:50:53.886+03	
ff80b4d4-a811-629b-6e05-da09705c49fa	2021-05-25 01:51:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:51:13.877+03	2021-05-25 01:51:13.888+03	
bb403ca5-67fe-6c84-6184-2141591551a6	2021-05-25 01:51:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:51:33.877+03	2021-05-25 01:51:33.888+03	
02a69db3-b6a4-2cd8-b3cd-5ad6a0d6e8f4	2021-05-25 01:51:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:51:53.877+03	2021-05-25 01:51:53.888+03	
70e5b4fe-cb50-5113-b4de-01be513ac455	2021-05-25 01:52:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:52:13.877+03	2021-05-25 01:52:13.886+03	
66aef4ee-b0ec-404c-525e-e602d35008bc	2021-05-25 01:52:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:52:33.877+03	2021-05-25 01:52:33.885+03	
e4f767b7-0242-d6bd-0425-de21ff323740	2021-05-25 01:52:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:52:53.877+03	2021-05-25 01:52:53.886+03	
7745a519-ae2c-e507-5376-87961a7b5bb6	2021-05-25 01:53:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:53:13.877+03	2021-05-25 01:53:13.883+03	
ba26ec49-a3f1-2988-3d04-6330da6110cb	2021-05-25 01:53:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:53:33.877+03	2021-05-25 01:53:33.887+03	
c6fd4a22-7de6-78bb-cd33-c9501692e5ed	2021-05-25 01:53:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:53:53.877+03	2021-05-25 01:53:53.888+03	
2259129a-4cb6-37f3-b3aa-5156eb8fce97	2021-05-25 01:54:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:54:13.877+03	2021-05-25 01:54:13.889+03	
b20b2b13-8a19-c165-eca5-1b048ec06964	2021-05-25 01:54:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:54:33.877+03	2021-05-25 01:54:33.884+03	
3eb1babc-1d90-6d62-523a-e56e3297124d	2021-05-25 01:54:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:54:53.877+03	2021-05-25 01:54:53.889+03	
881ae425-bd59-b750-8557-9b10e932f4d4	2021-05-25 01:55:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:55:13.877+03	2021-05-25 01:55:13.889+03	
b00722c8-d4e0-7815-d6de-43d1575d2e94	2021-05-25 01:55:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:55:33.877+03	2021-05-25 01:55:33.883+03	
2d8066c9-c003-8428-baaf-9cb5c0870e5e	2021-05-25 01:55:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:55:53.877+03	2021-05-25 01:55:53.884+03	
f8973f6d-bf99-0fef-385d-b0b378ebfec1	2021-05-25 01:56:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:56:13.877+03	2021-05-25 01:56:13.883+03	
52575b7c-f6a3-3c05-4bc3-1087b6339408	2021-05-25 01:56:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:56:33.877+03	2021-05-25 01:56:33.887+03	
6ad25301-4cb1-b0ae-9a68-e36c4d696d42	2021-05-25 01:56:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:56:54.877+03	2021-05-25 01:56:54.883+03	
ea686fde-41e9-a955-d416-873f5924e569	2021-05-25 01:57:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:57:14.877+03	2021-05-25 01:57:14.886+03	
4f1aad40-8823-b3bd-4319-800d45d0c672	2021-05-25 01:57:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:57:34.877+03	2021-05-25 01:57:34.884+03	
424deccb-6891-34eb-dbe7-396a07327c84	2021-05-25 01:57:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:57:54.877+03	2021-05-25 01:57:54.883+03	
059f195d-3eba-767d-b605-4e2f9f56fb42	2021-05-25 01:58:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:58:14.877+03	2021-05-25 01:58:14.883+03	
2d791cbb-74fd-be8d-48f2-4b0fdca8e5a7	2021-05-25 01:58:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:58:34.877+03	2021-05-25 01:58:34.885+03	
4537a38a-23c5-f951-0bcd-e561ceae7a8e	2021-05-25 01:58:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:58:54.877+03	2021-05-25 01:58:54.882+03	
b00aeee6-148a-0ea5-05cb-0ee721c4043c	2021-05-25 01:38:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:38:30.877+03	2021-05-25 01:38:30.883+03	
fcc4406a-3f0d-8bed-d4f3-0ad4b43f2481	2021-05-25 01:38:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:38:50.877+03	2021-05-25 01:38:50.883+03	
c483d457-ddd2-bdb6-ea2a-90dd2b418fc1	2021-05-25 01:39:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:39:10.877+03	2021-05-25 01:39:10.883+03	
a47a4773-06a4-35d1-0ff7-fb19ad9062a2	2021-05-25 01:39:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:39:30.877+03	2021-05-25 01:39:30.884+03	
bf290070-8cb0-6913-ff7f-cfe602efd1e0	2021-05-25 01:39:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:39:50.877+03	2021-05-25 01:39:50.883+03	
d0e3cf02-f6f0-a164-71a0-78961c01683c	2021-05-25 01:40:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 01:40:00.877+03	2021-05-25 01:40:00.892+03	ERROR
0f10f852-5a7b-2e8b-3ba1-a82dad348c2d	2021-05-25 01:40:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:40:10.877+03	2021-05-25 01:40:10.884+03	
1d6e6d7c-1cb9-3e8f-d50c-8e8303068328	2021-05-25 01:40:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:40:30.877+03	2021-05-25 01:40:30.884+03	
f9e1744f-82dc-a156-05ba-9d06be010d7d	2021-05-25 01:40:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:40:50.877+03	2021-05-25 01:40:50.884+03	
1aa45538-9804-b9ac-d75b-7b3b298d5350	2021-05-25 01:41:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:41:10.877+03	2021-05-25 01:41:10.884+03	
a0ac1bd4-a130-4d51-1f4c-03c7edf3d980	2021-05-25 01:41:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:41:30.877+03	2021-05-25 01:41:30.886+03	
d2313423-23a3-3f4e-aac5-b3a10c50c727	2021-05-25 01:41:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:41:50.877+03	2021-05-25 01:41:50.884+03	
0a81a257-e25d-e29d-e623-9ac8895c4429	2021-05-25 01:42:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:42:10.877+03	2021-05-25 01:42:11.201+03	
463fdd75-0d85-f365-0764-868f3f0f3d26	2021-05-25 01:42:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:42:30.877+03	2021-05-25 01:42:30.883+03	
42998732-abac-bcbb-adef-93780f91ec5c	2021-05-25 01:42:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:42:50.877+03	2021-05-25 01:42:50.884+03	
99641111-7156-e515-564b-6d255983a163	2021-05-25 01:43:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:43:10.877+03	2021-05-25 01:43:10.885+03	
498c8cb6-25b5-8268-3c52-6b5b43e9e7fc	2021-05-25 01:43:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:43:30.877+03	2021-05-25 01:43:30.884+03	
054db572-50b0-2b90-0c2f-5d7b333178f6	2021-05-25 01:43:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:43:50.877+03	2021-05-25 01:43:50.885+03	
b2480de7-1b47-1bde-6510-9f77ec65d2e7	2021-05-25 01:44:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:44:10.877+03	2021-05-25 01:44:10.883+03	
21c3ec15-3644-bdad-76ca-5f493214987b	2021-05-25 01:44:30.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:44:30.877+03	2021-05-25 01:44:30.885+03	
864a4388-73b2-2b74-3585-ef2c9d2c200b	2021-05-25 01:44:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:44:50.877+03	2021-05-25 01:44:51.012+03	
b1d96078-b0ea-d830-45bc-dfaf06fbb703	2021-05-25 01:45:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:45:11.877+03	2021-05-25 01:45:11.886+03	
364c4f94-cb6d-32cf-a84c-f148e8cecf70	2021-05-25 01:45:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:45:31.877+03	2021-05-25 01:45:31.891+03	
5c225269-627c-f11e-5b97-5b91cb3a5de3	2021-05-25 01:45:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:45:51.877+03	2021-05-25 01:45:51.883+03	
8ac28285-6a90-f49b-cd7b-8d3ae2799cd6	2021-05-25 01:46:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:46:11.877+03	2021-05-25 01:46:11.885+03	
a0754b7d-9431-0a7b-c855-a4f4b9dcbfda	2021-05-25 01:46:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:46:31.877+03	2021-05-25 01:46:31.884+03	
8838ce93-a17e-3d2c-8b3d-31e4d6bdf96e	2021-05-25 01:46:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:46:51.877+03	2021-05-25 01:46:51.886+03	
8dfc987f-9db3-4270-e3d8-cc9e3a9de6f9	2021-05-25 01:47:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:47:11.877+03	2021-05-25 01:47:11.94+03	
13f859a6-24e5-8182-1be1-65a131c59292	2021-05-25 01:47:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:47:31.877+03	2021-05-25 01:47:31.883+03	
7defccc5-9100-5869-44ea-4d040c66b437	2021-05-25 01:47:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:47:51.877+03	2021-05-25 01:47:51.884+03	
4e037f40-0efb-f803-33c1-3c99102c7c21	2021-05-25 01:48:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:48:11.878+03	2021-05-25 01:48:11.887+03	
74625098-8f54-a710-c849-e49314e7584e	2021-05-25 01:48:32.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:48:32.877+03	2021-05-25 01:48:32.883+03	
14037972-5a25-1b98-8f48-5d99f6620701	2021-05-25 01:48:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:48:52.877+03	2021-05-25 01:48:52.885+03	
29f81ed3-692e-1a9c-6a69-4fd6448cad75	2021-05-25 01:49:12.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:49:12.878+03	2021-05-25 01:49:12.885+03	
b77db066-93ea-45f7-058a-1deaee005971	2021-05-25 01:49:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:49:33.877+03	2021-05-25 01:49:33.885+03	
99dc7518-3374-f3a0-7b04-db00d3d68542	2021-05-25 01:49:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:49:53.877+03	2021-05-25 01:49:53.887+03	
126299c5-13db-59a6-a02e-971ace391d82	2021-05-25 01:50:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:50:03.877+03	2021-05-25 01:50:03.883+03	
e0651221-47a7-4d26-ec03-9d3e8833d26f	2021-05-25 01:50:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:50:23.877+03	2021-05-25 01:50:23.889+03	
e11c2ada-82d0-1ec1-b93d-5d0f358f839d	2021-05-25 01:50:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:50:43.877+03	2021-05-25 01:50:43.885+03	
d115c31e-20f2-7bc1-8366-3d2215afe8cc	2021-05-25 01:51:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:51:03.877+03	2021-05-25 01:51:03.884+03	
86f9ba38-8008-9b2c-4ff6-9a0ce295dba7	2021-05-25 01:51:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:51:23.877+03	2021-05-25 01:51:23.883+03	
79378cd7-8f3c-19a8-184d-52154699d762	2021-05-25 01:51:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:51:43.877+03	2021-05-25 01:51:43.883+03	
b0664d14-b34a-ffbc-9439-9e51d5d02ff9	2021-05-25 01:52:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:52:03.877+03	2021-05-25 01:52:03.886+03	
147ec32b-e6be-d2b2-ef3c-b8da4b8477fe	2021-05-25 01:52:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:52:23.877+03	2021-05-25 01:52:23.891+03	
c77c45a0-a320-3254-fe5c-6f346700e230	2021-05-25 01:52:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:52:43.877+03	2021-05-25 01:52:43.883+03	
6ffcb1ba-6c79-c4d2-677b-58a29a17c679	2021-05-25 01:53:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:53:03.877+03	2021-05-25 01:53:03.885+03	
d38fdfb4-050b-2117-0ec4-91397c511c9e	2021-05-25 01:53:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:53:23.877+03	2021-05-25 01:53:23.885+03	
e64be1fd-b874-b848-dcb8-24caac7c8f9c	2021-05-25 01:53:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:53:43.877+03	2021-05-25 01:53:43.979+03	
64c05cfe-a950-d1c3-397f-00c858e826ba	2021-05-25 01:54:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:54:03.877+03	2021-05-25 01:54:03.885+03	
48783b8f-0e24-7d6c-ba9f-99afd4e877f8	2021-05-25 01:54:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:54:23.877+03	2021-05-25 01:54:23.889+03	
565592df-3703-71c5-5213-e9c7eba794e0	2021-05-25 01:54:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:54:43.877+03	2021-05-25 01:54:43.886+03	
72314e8e-a6e2-5fcd-731c-a21fc016ccb6	2021-05-25 01:55:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:55:03.877+03	2021-05-25 01:55:03.891+03	
df90b185-6ddc-8d17-0d0f-49b3ec253165	2021-05-25 01:55:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:55:23.877+03	2021-05-25 01:55:23.884+03	
e292e9fc-6d28-54cf-ff70-4f871f30e7c8	2021-05-25 01:55:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:55:43.877+03	2021-05-25 01:55:43.885+03	
8f6bef56-a02a-45b1-4994-b8e9f2012e15	2021-05-25 01:56:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:56:03.877+03	2021-05-25 01:56:03.887+03	
1ce93b1f-a449-92d1-bbdc-bc7caee72515	2021-05-25 01:56:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:56:23.877+03	2021-05-25 01:56:23.884+03	
798cf307-8f61-fe7f-fde8-4d25841131b7	2021-05-25 01:56:43.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:56:43.878+03	2021-05-25 01:56:43.891+03	
20ad5b8d-7458-68d4-d707-3501e8c0e4ed	2021-05-25 01:57:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:57:04.877+03	2021-05-25 01:57:04.884+03	
4332ddaf-2a72-07fe-1208-12b301522332	2021-05-25 01:57:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:57:24.877+03	2021-05-25 01:57:24.883+03	
fe0996eb-6017-f25b-af26-5ea8566f57b9	2021-05-25 01:57:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:57:44.877+03	2021-05-25 01:57:44.885+03	
655f7e6b-f896-4a53-1889-4b7b60dc1984	2021-05-25 01:58:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:58:04.877+03	2021-05-25 01:58:04.889+03	
1a0ac7e0-1555-b300-ae95-f5460b231894	2021-05-25 01:58:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:58:24.877+03	2021-05-25 01:58:24.883+03	
c471e912-9c12-82b9-a46a-87e09fe43a31	2021-05-25 01:58:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:58:44.877+03	2021-05-25 01:58:44.89+03	
4dce2515-560c-74cc-dfe1-9f8f285040e9	2021-05-25 01:59:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:59:04.877+03	2021-05-25 01:59:04.888+03	
1f5d999f-0e29-4c49-7423-547d0bd68bff	2021-05-25 01:59:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:59:25.877+03	2021-05-25 01:59:25.884+03	
5e2346e0-e4cc-ce3c-d454-9ff28ab41708	2021-05-25 01:59:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:59:45.877+03	2021-05-25 01:59:45.883+03	
e147d582-c16a-2306-10af-4888bce96599	2021-05-25 02:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 02:00:00.877+03	2021-05-25 02:00:00.881+03	ERROR
03609935-fd26-8c72-b6aa-72cd4a3a2375	2021-05-25 02:00:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:00:15.877+03	2021-05-25 02:00:15.884+03	
db48b7f7-74d4-8615-3314-7d3acb70ab52	2021-05-25 02:00:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:00:35.877+03	2021-05-25 02:00:35.887+03	
2379fb61-3662-0c1c-34f3-ddb101f785d6	2021-05-25 02:00:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:00:55.877+03	2021-05-25 02:00:55.885+03	
ef109d84-e19f-e492-a4e2-d35dd5643ca0	2021-05-25 02:01:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:01:15.877+03	2021-05-25 02:01:15.884+03	
030e9309-30b1-1296-f3d9-b395c3fb1cdd	2021-05-25 02:01:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:01:35.877+03	2021-05-25 02:01:35.886+03	
a2d16b72-5f1c-daa9-5b7c-a4510018106c	2021-05-25 02:01:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:01:55.877+03	2021-05-25 02:01:55.883+03	
ea94dc0e-c538-6982-1128-3cdb8f43e45e	2021-05-25 02:02:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:02:15.877+03	2021-05-25 02:02:16.186+03	
91c9ac78-930b-9d4d-8dec-ae80bb0c0d6a	2021-05-25 02:02:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:02:35.877+03	2021-05-25 02:02:35.884+03	
e234bca6-ce5a-bd01-a103-2f52c2ad1fd0	2021-05-25 02:02:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:02:55.877+03	2021-05-25 02:02:55.883+03	
6be2d96f-a490-c477-b6ef-7868d2d60a6d	2021-05-25 02:03:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:03:15.877+03	2021-05-25 02:03:15.885+03	
11bf2ecc-9545-8433-40eb-96f2f0472058	2021-05-25 02:03:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:03:35.877+03	2021-05-25 02:03:35.883+03	
05cac77c-8ac8-f05f-776e-2c84277d4b79	2021-05-25 02:03:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:03:55.877+03	2021-05-25 02:03:55.884+03	
75c0e61e-b743-2b27-92b5-f744f2ce9d4f	2021-05-25 02:04:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:04:15.877+03	2021-05-25 02:04:15.885+03	
6a78d030-6b0f-40c6-076e-6fd8b277c3ee	2021-05-25 02:04:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:04:35.877+03	2021-05-25 02:04:36.138+03	
6685052d-ba39-d6e4-47af-b93dafe4ba3c	2021-05-25 02:04:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:04:55.877+03	2021-05-25 02:04:55.883+03	
08707641-64f1-23c6-7336-20d3ccce9beb	2021-05-25 02:05:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:05:15.877+03	2021-05-25 02:05:16.188+03	
8ec7a615-bf65-b0cd-425a-99977cc0aa0b	2021-05-25 02:05:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:05:35.877+03	2021-05-25 02:05:35.884+03	
bcd9c512-3eb5-c077-9bf4-02836e7390f4	2021-05-25 02:05:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:05:55.877+03	2021-05-25 02:05:55.882+03	
1a660167-4f11-8cdd-4869-ccad2857e911	2021-05-25 02:06:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:06:15.877+03	2021-05-25 02:06:15.885+03	
dffb98fb-138e-9129-6f40-34ddbc92f940	2021-05-25 02:06:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:06:45.877+03	2021-05-25 02:06:45.887+03	
64766f1d-e1b0-3da6-a670-d5cdfee4ed91	2021-05-25 02:07:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:07:05.877+03	2021-05-25 02:07:05.885+03	
9720a6e6-2eb4-b67a-d545-79baca60e35e	2021-05-25 02:07:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:07:25.877+03	2021-05-25 02:07:25.885+03	
69eddb2e-7484-7007-35ac-605e911e329a	2021-05-25 02:07:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:07:45.877+03	2021-05-25 02:07:45.882+03	
b2ac00a3-20e9-1708-7dad-f2d392885881	2021-05-25 02:08:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:08:05.877+03	2021-05-25 02:08:05.884+03	
8e822a20-b068-d28c-83ef-3b2606734959	2021-05-25 02:08:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:08:25.877+03	2021-05-25 02:08:25.913+03	
7afec893-2474-3f26-7d59-1fb1bb34b150	2021-05-25 02:08:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:08:45.877+03	2021-05-25 02:08:45.886+03	
19fae9ef-b205-cf15-20e5-9c106af2c181	2021-05-25 02:09:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:09:05.877+03	2021-05-25 02:09:05.884+03	
3cc20374-9fe3-06f1-8df6-fe9649f29f08	2021-05-25 02:09:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:09:25.877+03	2021-05-25 02:09:25.884+03	
6639cc34-7eb8-60c7-0ab4-11873b8066e9	2021-05-25 02:09:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:09:45.877+03	2021-05-25 02:09:45.885+03	
43a311d5-a5ad-2b8f-bed0-93b21174a257	2021-05-25 02:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 02:10:00.877+03	2021-05-25 02:10:00.882+03	ERROR
4fdcba55-2eae-4a3d-dbd7-05cceb917805	2021-05-25 02:10:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:10:15.877+03	2021-05-25 02:10:16.368+03	
8ca256a6-662d-1602-5b94-94a60fa69a92	2021-05-25 02:10:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:10:35.877+03	2021-05-25 02:10:35.884+03	
82129d85-64cb-2ac6-2db7-6e0b774dbc5c	2021-05-25 02:10:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:10:55.877+03	2021-05-25 02:10:56.105+03	
e5f219cc-f085-b872-1e73-fddab156a037	2021-05-25 02:11:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:11:15.877+03	2021-05-25 02:11:16.218+03	
d90c0e35-b756-c800-ad35-0a717899055e	2021-05-25 02:11:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:11:35.877+03	2021-05-25 02:11:35.885+03	
b41fd6e6-f457-e06d-a236-019c8f5609ea	2021-05-25 02:11:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:11:55.877+03	2021-05-25 02:11:55.883+03	
985c4941-4e51-95e7-6b71-4b3f794e2f78	2021-05-25 02:12:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:12:15.877+03	2021-05-25 02:12:15.884+03	
f84e8cdb-ebcf-8278-6d44-16340b225751	2021-05-25 02:12:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:12:35.877+03	2021-05-25 02:12:35.883+03	
2e94a61a-274e-e71b-7206-20e1cd2a147d	2021-05-25 02:12:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:12:55.877+03	2021-05-25 02:12:55.883+03	
cd9aeb16-2d29-ef44-fdf4-82aaabd14c04	2021-05-25 02:13:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:13:15.877+03	2021-05-25 02:13:16.123+03	
05972196-7276-966d-225e-77cdc7e056be	2021-05-25 02:13:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:13:35.877+03	2021-05-25 02:13:35.885+03	
bd475c23-530b-00ce-bfba-584d725f59c9	2021-05-25 02:13:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:13:55.877+03	2021-05-25 02:13:55.882+03	
cbadffad-acd4-a915-f9b1-852528c75e28	2021-05-25 02:14:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:14:15.877+03	2021-05-25 02:14:15.884+03	
9568b64d-7aec-ed62-e869-9797cf5d0cc2	2021-05-25 02:14:35.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:14:35.877+03	2021-05-25 02:14:35.884+03	
746ae328-f3ee-de4d-fc9f-498970535c0c	2021-05-25 02:14:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:14:55.877+03	2021-05-25 02:14:55.884+03	
e9c9822b-7872-baad-bec7-a0ebaa3657b0	2021-05-25 02:15:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:15:15.877+03	2021-05-25 02:15:15.883+03	
fd2dddb4-6a6e-8b20-f913-eea8f5ec2a15	2021-05-25 02:15:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:15:35.877+03	2021-05-25 02:15:35.884+03	
22fba50f-f70b-d443-4608-da2de221ed96	2021-05-25 02:15:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:15:55.877+03	2021-05-25 02:15:55.885+03	
4a634d43-5c3d-c86a-3df5-81cb1bb07a09	2021-05-25 02:16:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:16:15.877+03	2021-05-25 02:16:15.884+03	
22481e50-fa11-6141-7d0b-8104a19a4414	2021-05-25 02:16:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:16:35.877+03	2021-05-25 02:16:35.883+03	
8b01fc4a-201a-6c34-a1c6-7d9301b10c4f	2021-05-25 02:16:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:16:55.877+03	2021-05-25 02:16:55.883+03	
43746de4-2fa1-7096-3af6-0844dd102ecd	2021-05-25 02:17:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:17:15.877+03	2021-05-25 02:17:15.884+03	
b1186223-6028-22bd-2fc8-32a97808bcd9	2021-05-25 02:17:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:17:35.877+03	2021-05-25 02:17:35.883+03	
fa8fc410-64ba-dc9b-c6d5-45fceb8e6623	2021-05-25 02:17:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:17:55.877+03	2021-05-25 02:17:55.887+03	
895a0dfd-f75b-ae80-d773-d63c82bb7d61	2021-05-25 02:18:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:18:15.877+03	2021-05-25 02:18:15.883+03	
c0a149dc-8573-32c9-68d1-99f6e45ae66c	2021-05-25 02:18:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:18:35.877+03	2021-05-25 02:18:35.884+03	
accc4e5e-452f-2574-1975-43ee670095c7	2021-05-25 02:18:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:18:55.877+03	2021-05-25 02:18:55.883+03	
0932f614-14e4-9987-028a-1af06d2b26bc	2021-05-25 02:19:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:19:15.877+03	2021-05-25 02:19:15.884+03	
c6fa70fc-20e2-053f-99d1-bff3881c05eb	2021-05-25 02:19:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:19:35.877+03	2021-05-25 02:19:35.884+03	
1dc742c3-3e8c-88c8-2641-2ce844c588c4	2021-05-25 01:59:14.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:59:14.878+03	2021-05-25 01:59:14.889+03	
1bc05442-43fc-9768-8f25-5dc219d1a8a8	2021-05-25 01:59:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:59:35.877+03	2021-05-25 01:59:35.887+03	
80e65855-24b1-34e0-69df-131076691968	2021-05-25 01:59:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 01:59:55.877+03	2021-05-25 01:59:55.884+03	
cd925fcc-9c85-da86-af63-ce8957eb64dd	2021-05-25 02:00:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:00:05.877+03	2021-05-25 02:00:05.885+03	
62355c55-0969-7f13-ba66-0c9b33cd1d94	2021-05-25 02:00:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:00:25.877+03	2021-05-25 02:00:25.884+03	
b4b4944a-bc01-be39-10c2-b95994091de3	2021-05-25 02:00:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:00:45.877+03	2021-05-25 02:00:45.884+03	
9671ac63-99e0-39c1-74c3-7afc2855aff2	2021-05-25 02:01:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:01:05.877+03	2021-05-25 02:01:05.933+03	
f3a5d065-2d1a-a693-8417-3a67e38b84b7	2021-05-25 02:01:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:01:25.877+03	2021-05-25 02:01:25.884+03	
89cb9d86-ac82-55d1-ab10-0d6b09092883	2021-05-25 02:01:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:01:45.877+03	2021-05-25 02:01:45.883+03	
a1ca946c-2a48-27bc-49ca-719b2b2e5c5c	2021-05-25 02:02:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:02:05.877+03	2021-05-25 02:02:05.883+03	
818f0f92-1642-892e-9bbc-6159754930a0	2021-05-25 02:02:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:02:25.877+03	2021-05-25 02:02:25.884+03	
d4448fb0-6870-1098-e066-a3e56fc091ec	2021-05-25 02:02:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:02:45.877+03	2021-05-25 02:02:45.885+03	
736b7fac-a7db-e065-407c-cdf16baa3bf3	2021-05-25 02:03:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:03:05.877+03	2021-05-25 02:03:05.883+03	
3e4e7a7e-e1d2-5403-d79d-c245676d279a	2021-05-25 02:03:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:03:25.877+03	2021-05-25 02:03:25.883+03	
33b1c754-db71-180c-78b0-c34b62d56503	2021-05-25 02:03:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:03:45.877+03	2021-05-25 02:03:45.885+03	
aceef453-00cf-bb64-2084-d343ff71730c	2021-05-25 02:04:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:04:05.877+03	2021-05-25 02:04:05.897+03	
2c40b3f4-0671-4360-9a61-1027f2938cdd	2021-05-25 02:04:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:04:25.877+03	2021-05-25 02:04:25.884+03	
bdc96b72-c7f9-d619-3c2e-915d32066a5e	2021-05-25 02:04:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:04:45.877+03	2021-05-25 02:04:45.886+03	
6dc5e5ae-9a66-8e5f-4637-f3da40c31ee3	2021-05-25 02:05:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:05:05.877+03	2021-05-25 02:05:05.884+03	
653cad2b-3fa2-5acc-4ce6-f94a9dabab09	2021-05-25 02:05:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:05:25.877+03	2021-05-25 02:05:25.889+03	
a5f61cc6-a288-2ff6-0eb4-c272507badc9	2021-05-25 02:05:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:05:45.877+03	2021-05-25 02:05:45.886+03	
3130c05c-4678-e374-8c29-3df59f952fb5	2021-05-25 02:06:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:06:05.877+03	2021-05-25 02:06:05.89+03	
c2193e1e-7348-1351-d552-fbdd3380c577	2021-05-25 02:06:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:06:25.877+03	2021-05-25 02:06:25.885+03	
8320c433-256b-809d-27cb-c1af959b818a	2021-05-25 02:06:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:06:35.877+03	2021-05-25 02:06:35.882+03	
466bb2dd-d9b8-2f89-e5c5-6d72cbdb3640	2021-05-25 02:06:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:06:55.877+03	2021-05-25 02:06:55.887+03	
71e2a174-d778-faa7-c0a4-d23cb879d006	2021-05-25 02:07:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:07:15.877+03	2021-05-25 02:07:15.886+03	
ca842b5d-d973-5ff5-b147-fd4cbf47305e	2021-05-25 02:07:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:07:35.877+03	2021-05-25 02:07:35.886+03	
a4e5a1bc-2592-97ea-caaa-43eb2f016bbe	2021-05-25 02:07:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:07:55.877+03	2021-05-25 02:07:55.885+03	
4e810f1f-040d-35bf-6141-c1d3b9e9de92	2021-05-25 02:08:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:08:15.877+03	2021-05-25 02:08:15.893+03	
645c23f3-73eb-623a-a52c-8ccb460ce224	2021-05-25 02:08:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:08:35.877+03	2021-05-25 02:08:35.884+03	
50547684-3d65-fa88-0eb4-342ef24939ef	2021-05-25 02:08:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:08:55.877+03	2021-05-25 02:08:55.887+03	
ad28733a-9599-9591-0c66-e9c0157ceba3	2021-05-25 02:09:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:09:15.877+03	2021-05-25 02:09:15.885+03	
f200c51d-c962-1444-9596-bedc91916e92	2021-05-25 02:09:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:09:35.877+03	2021-05-25 02:09:35.883+03	
93aaaf7a-8990-fed9-4af5-2c859b996eb6	2021-05-25 02:09:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:09:55.877+03	2021-05-25 02:09:55.884+03	
7ed376f0-b0e3-1dcd-bd2e-b958028584b8	2021-05-25 02:10:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:10:05.877+03	2021-05-25 02:10:05.883+03	
6d06b113-eac5-b10e-ffcb-8161a6e7a4f3	2021-05-25 02:10:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:10:25.877+03	2021-05-25 02:10:26.156+03	
d9030bc7-ee26-5440-f48f-a445045442ba	2021-05-25 02:10:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:10:45.877+03	2021-05-25 02:10:46.095+03	
f08645c2-ce0d-6e60-f828-ffc3b0ead0a1	2021-05-25 02:11:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:11:05.877+03	2021-05-25 02:11:05.885+03	
5a3689ff-ce6e-998b-957c-3c7a191bb88b	2021-05-25 02:11:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:11:25.877+03	2021-05-25 02:11:25.889+03	
36459eb3-e296-19be-6587-c621b0034b7f	2021-05-25 02:11:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:11:45.877+03	2021-05-25 02:11:46.171+03	
6f381434-32da-8605-e9b3-34b191557ccb	2021-05-25 02:12:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:12:05.877+03	2021-05-25 02:12:05.885+03	
c55f4d6d-023b-884e-4db4-fab416153f80	2021-05-25 02:12:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:12:25.877+03	2021-05-25 02:12:26.087+03	
c79eb481-7e87-e055-aa67-8ab73bcfba15	2021-05-25 02:12:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:12:45.877+03	2021-05-25 02:12:45.883+03	
457cf5cd-1055-da21-60f9-85d8ca57c795	2021-05-25 02:13:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:13:05.877+03	2021-05-25 02:13:05.885+03	
bf6744fe-ed05-d588-75e9-094d0296c5cc	2021-05-25 02:13:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:13:25.877+03	2021-05-25 02:13:25.883+03	
df40a16a-9ad6-8c20-36c4-614081112355	2021-05-25 02:13:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:13:45.877+03	2021-05-25 02:13:45.884+03	
dbde9315-e76e-1506-d8d0-e96e3853b238	2021-05-25 02:14:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:14:05.877+03	2021-05-25 02:14:05.884+03	
1acbcfdf-2480-27e9-0341-20019b22465b	2021-05-25 02:14:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:14:25.877+03	2021-05-25 02:14:26.121+03	
6234d4de-5cad-d15d-4b83-a9bb13898bba	2021-05-25 02:14:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:14:45.877+03	2021-05-25 02:14:45.883+03	
0a213df8-3756-ba4f-c4a1-cb1f3d0385f7	2021-05-25 02:15:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:15:05.877+03	2021-05-25 02:15:05.884+03	
d9b1a458-f337-dde4-e69c-eb91de1adbcf	2021-05-25 02:15:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:15:25.877+03	2021-05-25 02:15:25.884+03	
457912b4-34fd-6717-5d10-746fa7d61ded	2021-05-25 02:15:45.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:15:45.877+03	2021-05-25 02:15:45.885+03	
aeb800f0-9de9-c981-8715-f9c7f71c0c15	2021-05-25 02:16:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:16:05.877+03	2021-05-25 02:16:05.883+03	
ca0cec6d-7fff-3777-e6e5-64af95c78395	2021-05-25 02:16:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:16:25.877+03	2021-05-25 02:16:25.882+03	
04edf006-63a2-7d2c-21d4-ce86d4e621c5	2021-05-25 02:16:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:16:45.877+03	2021-05-25 02:16:45.883+03	
d9e15a5c-9061-38f5-77ea-3456b35dd881	2021-05-25 02:17:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:17:05.877+03	2021-05-25 02:17:05.885+03	
0ca6a4c4-da91-2a03-5963-6e52bcf4def8	2021-05-25 02:17:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:17:25.877+03	2021-05-25 02:17:25.884+03	
dc0100ba-a1be-19fd-3d35-a99ab37ff8cc	2021-05-25 02:17:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:17:45.877+03	2021-05-25 02:17:45.883+03	
1e65f8cb-9449-2909-3083-8609069e6ae2	2021-05-25 02:18:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:18:05.877+03	2021-05-25 02:18:05.884+03	
e084871c-8aca-6ea9-c2df-2e494a83d8e4	2021-05-25 02:18:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:18:25.877+03	2021-05-25 02:18:25.883+03	
262ee5e6-3ff9-cd29-6cf2-aa21a90b1c84	2021-05-25 02:18:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:18:45.877+03	2021-05-25 02:18:45.883+03	
69c10d89-43c3-56da-4704-39add357c177	2021-05-25 02:19:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:19:05.877+03	2021-05-25 02:19:05.887+03	
a4edf8f1-cadf-af11-d3b2-d313f5f39f83	2021-05-25 02:19:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:19:25.877+03	2021-05-25 02:19:25.885+03	
890c7fab-c653-8519-8bb7-aabfe9a61033	2021-05-25 02:19:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:19:45.877+03	2021-05-25 02:19:45.883+03	
a22ca83a-7631-0807-db28-e4a37ca91139	2021-05-25 02:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 02:20:00.877+03	2021-05-25 02:20:00.882+03	ERROR
63151eb2-90a8-1784-98f1-ce2030b68ec5	2021-05-25 02:20:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:20:15.877+03	2021-05-25 02:20:15.884+03	
54905b7d-ac3d-2a0b-674b-f6158b219000	2021-05-25 02:20:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:20:35.877+03	2021-05-25 02:20:35.893+03	
6924c4b6-5552-365f-73f9-ac304b46db24	2021-05-25 02:20:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:20:55.877+03	2021-05-25 02:20:55.882+03	
b803a4e0-56d5-e211-0e3e-359b7acbbf40	2021-05-25 02:21:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:21:15.877+03	2021-05-25 02:21:15.884+03	
d6ecff38-b70f-ada3-96a4-0a347115d542	2021-05-25 02:21:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:21:35.877+03	2021-05-25 02:21:35.884+03	
4368e8f2-16db-cf35-0cba-2ebbebb270c6	2021-05-25 02:21:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:21:55.877+03	2021-05-25 02:21:55.884+03	
0777a703-d150-8f06-9382-d650ced97f36	2021-05-25 02:22:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:22:15.877+03	2021-05-25 02:22:15.884+03	
82ed338e-5aac-da6e-a374-e52bfcc664db	2021-05-25 02:22:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:22:35.877+03	2021-05-25 02:22:35.883+03	
3ffeb9d0-2151-cd47-b490-8dbba4447c7e	2021-05-25 02:22:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:22:55.877+03	2021-05-25 02:22:55.884+03	
39913b78-434f-b610-47af-59221dd6788c	2021-05-25 02:23:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:23:15.877+03	2021-05-25 02:23:15.885+03	
fd19fd7b-533f-2792-393f-ed1c0e79ad0d	2021-05-25 02:23:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:23:35.877+03	2021-05-25 02:23:35.883+03	
74bd797c-d530-cf9c-732b-c5d09c50302f	2021-05-25 02:23:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:23:55.877+03	2021-05-25 02:23:55.883+03	
1a53ce9b-0797-7d8a-a547-5e1387baafa6	2021-05-25 02:24:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:24:15.877+03	2021-05-25 02:24:15.883+03	
40989549-7195-5e2c-93ac-573a21e1fbba	2021-05-25 02:24:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:24:35.877+03	2021-05-25 02:24:35.885+03	
cdd65868-2b45-ee95-92ec-a3dff15478e0	2021-05-25 02:24:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:24:55.877+03	2021-05-25 02:24:55.883+03	
782f89dc-5279-3c53-9b40-1bbdc2b5cbb3	2021-05-25 02:25:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:25:15.877+03	2021-05-25 02:25:15.883+03	
6fad0c57-5313-fcca-4825-cf80c3f195a7	2021-05-25 02:25:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:25:35.877+03	2021-05-25 02:25:35.884+03	
b3612f95-f8dd-6164-8904-b5aece1aa3e2	2021-05-25 02:25:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:25:55.877+03	2021-05-25 02:25:55.887+03	
1ee890c5-6a45-a169-4047-569339e8a6d2	2021-05-25 02:26:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:26:15.877+03	2021-05-25 02:26:15.885+03	
70b6c3ea-4ef4-a6d0-813a-ab14603aedb9	2021-05-25 02:26:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:26:35.877+03	2021-05-25 02:26:35.886+03	
928b0a95-5fe2-7af1-5039-26ffe1ff7fe9	2021-05-25 02:26:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:26:56.877+03	2021-05-25 02:26:56.884+03	
0b35bac3-81cf-e5ee-db8d-f1cd8648b82a	2021-05-25 02:27:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:27:16.877+03	2021-05-25 02:27:16.884+03	
e31067c8-d14e-ec4b-3ffc-d84c4439dffd	2021-05-25 02:27:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:27:36.877+03	2021-05-25 02:27:36.886+03	
5ce420a3-07b8-7855-17be-7effd801b35d	2021-05-25 02:27:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:27:56.877+03	2021-05-25 02:27:56.884+03	
f2a8b3d2-a9cf-acf2-e74c-c4b41da093df	2021-05-25 02:28:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:28:16.877+03	2021-05-25 02:28:16.885+03	
d14dbaa1-8358-bdc7-0b49-5bbe5271b4b3	2021-05-25 02:28:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:28:36.877+03	2021-05-25 02:28:36.884+03	
5ff05a1d-3a50-e5d2-b1ac-c8be4f9bbb09	2021-05-25 02:28:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:28:57.877+03	2021-05-25 02:28:58.198+03	
f82c78f7-03b8-c00c-f509-b4193c48a28f	2021-05-25 02:29:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:29:18.877+03	2021-05-25 02:29:18.885+03	
43fd9cfa-1535-2a5c-ed5b-5ca24209df71	2021-05-25 02:29:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:29:38.877+03	2021-05-25 02:29:38.884+03	
2c94b51b-8c2f-986d-ce6b-245c74daf162	2021-05-25 02:29:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:29:58.877+03	2021-05-25 02:29:58.883+03	
a46b2087-3dd6-5e0d-62a8-2e797df77408	2021-05-25 02:30:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:30:08.877+03	2021-05-25 02:30:08.883+03	
888f0425-4c3f-3512-1b04-57d80963e8be	2021-05-25 02:30:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:30:28.877+03	2021-05-25 02:30:28.885+03	
3c9edc3e-9016-a3f5-3dfb-f84cfb02b236	2021-05-25 02:30:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:30:48.877+03	2021-05-25 02:30:48.883+03	
234ce653-419e-2ed5-c968-5a8164315ad1	2021-05-25 02:31:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:31:08.877+03	2021-05-25 02:31:08.886+03	
448b2b00-5726-7eb8-df9d-7d5bdefcfb24	2021-05-25 02:31:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:31:28.877+03	2021-05-25 02:31:28.885+03	
e1597f3c-a35b-9813-5df9-363b1478a888	2021-05-25 02:31:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:31:48.877+03	2021-05-25 02:31:48.883+03	
5a559413-a1ee-d4ed-e878-69521e72d1c0	2021-05-25 02:32:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:32:09.877+03	2021-05-25 02:32:09.884+03	
9beb08e4-27a1-3320-60b8-747223e51814	2021-05-25 02:32:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:32:29.877+03	2021-05-25 02:32:29.883+03	
ff92b153-c242-c011-a5af-407736d481e1	2021-05-25 02:32:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:32:49.877+03	2021-05-25 02:32:49.896+03	
29426d04-7a51-1806-250d-99a38bbce49e	2021-05-25 02:33:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:33:09.877+03	2021-05-25 02:33:09.883+03	
a08afb8f-7028-3863-ce00-436394cc34ab	2021-05-25 02:33:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:33:29.877+03	2021-05-25 02:33:29.882+03	
10a831a0-22f4-5042-0aaf-923ac27039e4	2021-05-25 02:33:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:33:49.877+03	2021-05-25 02:33:49.883+03	
af82c2fa-9793-7e3d-b5da-021540602c49	2021-05-25 02:34:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:34:09.877+03	2021-05-25 02:34:09.883+03	
4c72623c-7d05-4e8b-8c5d-2adba9740e28	2021-05-25 02:34:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:34:29.877+03	2021-05-25 02:34:29.883+03	
06e6f0ee-d9b4-ff36-7e80-cb971fa717f6	2021-05-25 02:34:49.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:34:49.877+03	2021-05-25 02:34:49.883+03	
93c57f39-d089-12ae-18bb-10b361b1de3e	2021-05-25 02:35:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:35:09.877+03	2021-05-25 02:35:09.884+03	
71c5c690-64ef-5a80-9226-dc93aa739a45	2021-05-25 02:35:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:35:29.877+03	2021-05-25 02:35:29.884+03	
2ebccfa8-020f-812c-35e1-19b37c97304f	2021-05-25 02:35:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:35:49.877+03	2021-05-25 02:35:49.882+03	
e6396024-41c3-2845-3dce-3b9c339bc42c	2021-05-25 02:36:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:36:09.877+03	2021-05-25 02:36:09.884+03	
c90ad31a-8fae-2987-c73b-32e8d2e452c0	2021-05-25 02:36:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:36:29.877+03	2021-05-25 02:36:29.883+03	
b2d15897-2144-a1a9-35c5-124f217fcbb0	2021-05-25 02:36:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:36:49.877+03	2021-05-25 02:36:50.13+03	
be6c4b48-a653-93fd-8dd9-8993d652800f	2021-05-25 02:37:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:37:09.877+03	2021-05-25 02:37:09.924+03	
635206c0-15ef-81e4-7275-260073314168	2021-05-25 02:37:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:37:29.877+03	2021-05-25 02:37:29.883+03	
a4d9b9ef-8c19-c9b3-6af3-5d3755fdd4bd	2021-05-25 02:37:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:37:49.877+03	2021-05-25 02:37:49.887+03	
643f8deb-7a55-aa49-b451-c6757d42f67a	2021-05-25 02:38:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:38:09.877+03	2021-05-25 02:38:09.884+03	
00e5f36a-8757-ae21-d9d7-16147b182d77	2021-05-25 02:38:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:38:29.877+03	2021-05-25 02:38:29.884+03	
406a88c0-a015-641e-8576-598462bc3242	2021-05-25 02:38:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:38:49.877+03	2021-05-25 02:38:49.884+03	
e0c61c85-0ded-5be0-fe2b-cd214dccce62	2021-05-25 02:39:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:39:09.877+03	2021-05-25 02:39:09.882+03	
c2117455-2be6-effa-a95a-f67f3c490609	2021-05-25 02:39:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:39:29.877+03	2021-05-25 02:39:29.884+03	
2cce1d34-d739-3071-9570-111ad82d0a9a	2021-05-25 02:39:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:39:49.877+03	2021-05-25 02:39:49.884+03	
9e9f32a1-d2ee-0b7e-8d62-781bec49c0b6	2021-05-25 02:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 02:40:00.877+03	2021-05-25 02:40:00.882+03	ERROR
b13407a1-3254-5401-0c2d-66b95ae69bc2	2021-05-25 02:19:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:19:55.877+03	2021-05-25 02:19:55.885+03	
4e9556da-66d7-442c-3181-7fcb0a071df3	2021-05-25 02:20:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:20:05.877+03	2021-05-25 02:20:05.883+03	
a9a0644c-6ca0-fc01-e6a8-76633ba096d9	2021-05-25 02:20:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:20:25.877+03	2021-05-25 02:20:25.893+03	
db72509e-9c3b-8d4a-52bc-47affc6e1c61	2021-05-25 02:20:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:20:45.877+03	2021-05-25 02:20:45.883+03	
216874ee-78f1-8ed5-008a-bd3bfcbb20e7	2021-05-25 02:21:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:21:05.877+03	2021-05-25 02:21:05.885+03	
04d6db3d-e778-0314-95ce-e6e6ed22d590	2021-05-25 02:21:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:21:25.877+03	2021-05-25 02:21:26.215+03	
84e46e0f-067d-7bad-92d3-7ea6aba5f61f	2021-05-25 02:21:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:21:45.877+03	2021-05-25 02:21:45.886+03	
34a4f62e-7ba1-b334-a4b7-7dc60babc455	2021-05-25 02:22:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:22:05.877+03	2021-05-25 02:22:05.883+03	
91ee6a4e-2bea-3aab-a167-27fd648eec91	2021-05-25 02:22:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:22:25.877+03	2021-05-25 02:22:25.884+03	
2023a4fe-6132-001b-2d42-3d1b15f9a0e8	2021-05-25 02:22:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:22:45.877+03	2021-05-25 02:22:45.884+03	
23b5fec4-5fc8-caaa-a277-74fb08645322	2021-05-25 02:23:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:23:05.877+03	2021-05-25 02:23:05.884+03	
f867ea9d-af31-df19-f31a-0568f41954f2	2021-05-25 02:23:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:23:25.877+03	2021-05-25 02:23:25.883+03	
7a00e2a8-c424-f15b-403d-9618c38b5678	2021-05-25 02:23:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:23:45.877+03	2021-05-25 02:23:45.931+03	
44b2b063-b5ba-120a-6de4-6fc34bb31547	2021-05-25 02:24:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:24:05.877+03	2021-05-25 02:24:05.884+03	
bc1db510-8a53-0581-6215-dc7f3df86763	2021-05-25 02:24:25.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:24:25.877+03	2021-05-25 02:24:25.886+03	
67621a8d-bad8-65dd-6c5f-8565b49067f1	2021-05-25 02:24:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:24:45.877+03	2021-05-25 02:24:45.884+03	
f74627e2-0c1e-19fe-a080-db13df6e9bb9	2021-05-25 02:25:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:25:05.877+03	2021-05-25 02:25:05.885+03	
f75d6d6e-269f-6303-bc13-2922846ea5fc	2021-05-25 02:25:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:25:25.877+03	2021-05-25 02:25:25.882+03	
f09401dc-03d4-fb21-f3c1-8ae11eebed1a	2021-05-25 02:25:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:25:45.877+03	2021-05-25 02:25:45.885+03	
da8161d2-dc4f-9762-7cf4-e4ecce87c005	2021-05-25 02:26:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:26:05.877+03	2021-05-25 02:26:05.883+03	
e44f70de-55d9-0404-ed59-01669510010d	2021-05-25 02:26:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:26:25.877+03	2021-05-25 02:26:25.885+03	
dd2ff111-d811-dbd9-0fd3-ccef91b9b54c	2021-05-25 02:26:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:26:45.877+03	2021-05-25 02:26:45.884+03	
012fbb8f-a002-441b-42b0-a4a969f01e45	2021-05-25 02:27:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:27:06.877+03	2021-05-25 02:27:06.882+03	
85f953b7-b97d-5d8c-e264-ecd523e9d3c6	2021-05-25 02:27:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:27:26.877+03	2021-05-25 02:27:27.12+03	
8d9f6449-b579-53d4-bc6d-2b5d359cd442	2021-05-25 02:27:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:27:46.877+03	2021-05-25 02:27:46.884+03	
38a689a2-48f3-ced1-d0f0-1872a870d63f	2021-05-25 02:28:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:28:06.877+03	2021-05-25 02:28:06.883+03	
8d55af48-2c9d-53da-6651-1b689536f2c1	2021-05-25 02:28:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:28:26.877+03	2021-05-25 02:28:26.884+03	
a49812e1-97a0-ba0b-8644-ba41565f7a67	2021-05-25 02:28:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:28:46.877+03	2021-05-25 02:28:46.882+03	
f98e6e87-d668-9c83-1884-a061631da2f9	2021-05-25 02:29:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:29:07.877+03	2021-05-25 02:29:07.885+03	
4c62f6f6-99cb-63fb-5849-3a06a40ba5d8	2021-05-25 02:29:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:29:28.877+03	2021-05-25 02:29:28.883+03	
3b935570-2a22-027d-c9f9-c7add1f08caa	2021-05-25 02:29:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:29:48.877+03	2021-05-25 02:29:48.885+03	
7e7d511d-028a-43d9-5ed9-d709480067b9	2021-05-25 02:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 02:30:00.877+03	2021-05-25 02:30:00.882+03	ERROR
00f82c12-73fe-b78a-b180-de5f80d1efba	2021-05-25 02:30:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:30:18.877+03	2021-05-25 02:30:18.884+03	
4e3225b0-5c37-ad17-9248-22b3ed3333b9	2021-05-25 02:30:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:30:38.877+03	2021-05-25 02:30:38.884+03	
11d36da1-b8d7-1410-bb6a-475b6e04518a	2021-05-25 02:30:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:30:58.877+03	2021-05-25 02:30:58.884+03	
912a7081-06f6-36fa-8c5d-6b384d655e47	2021-05-25 02:31:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:31:18.877+03	2021-05-25 02:31:18.884+03	
bb3e1c13-2c6c-4e49-4bf2-62731efbd661	2021-05-25 02:31:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:31:38.877+03	2021-05-25 02:31:38.883+03	
896f0a5b-2067-7298-f6e8-0338cda026af	2021-05-25 02:31:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:31:59.877+03	2021-05-25 02:31:59.884+03	
29fa41e2-b54a-6997-68f5-043ee2d77ffd	2021-05-25 02:32:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:32:19.877+03	2021-05-25 02:32:19.885+03	
bfea2c94-33fc-f10c-6800-255d00a7aea2	2021-05-25 02:32:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:32:39.877+03	2021-05-25 02:32:39.882+03	
51fe6007-2bd5-9462-b2fa-8e3bf9835382	2021-05-25 02:32:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:32:59.877+03	2021-05-25 02:32:59.884+03	
b651d34a-b46e-b25b-c583-c1c8a1b453f5	2021-05-25 02:33:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:33:19.877+03	2021-05-25 02:33:19.886+03	
7e904eae-9bdb-c4a2-3c9c-d0ded7b9bebe	2021-05-25 02:33:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:33:39.877+03	2021-05-25 02:33:39.884+03	
3f14d909-866a-287b-c661-17bef2efbddf	2021-05-25 02:33:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:33:59.877+03	2021-05-25 02:34:00.102+03	
0057af9e-c2d0-b9b8-cdd3-cb723e55650a	2021-05-25 02:34:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:34:19.877+03	2021-05-25 02:34:19.883+03	
4caf77b2-308f-b77d-bf6e-eff6aedd7e77	2021-05-25 02:34:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:34:39.877+03	2021-05-25 02:34:39.883+03	
1b5ba063-7cfd-2a10-9f7a-3066946ee013	2021-05-25 02:34:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:34:59.877+03	2021-05-25 02:34:59.884+03	
e6585214-77e0-e3f5-3692-e694765a3568	2021-05-25 02:35:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:35:19.877+03	2021-05-25 02:35:19.884+03	
df83ffb9-e754-c3e6-e4df-2fb4d5c6abfe	2021-05-25 02:35:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:35:39.877+03	2021-05-25 02:35:39.883+03	
d9c56757-8bf7-eb1b-8c14-033d5ead4a36	2021-05-25 02:35:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:35:59.877+03	2021-05-25 02:35:59.884+03	
868f3467-04be-7a49-b023-e0df2d8b138c	2021-05-25 02:36:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:36:19.877+03	2021-05-25 02:36:19.883+03	
c7fcb3ff-2000-fa63-4793-d2f007d04dad	2021-05-25 02:36:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:36:39.877+03	2021-05-25 02:36:39.884+03	
64160cc2-1a39-1a09-700e-00fe6738e643	2021-05-25 02:36:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:36:59.877+03	2021-05-25 02:36:59.883+03	
fd51ec7b-e836-2bd1-14b6-22d7969d723a	2021-05-25 02:37:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:37:19.877+03	2021-05-25 02:37:19.883+03	
45531f42-2f84-9637-d788-bc3ae1184824	2021-05-25 02:37:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:37:39.877+03	2021-05-25 02:37:39.885+03	
1055651b-7563-d723-245b-72282d6f1274	2021-05-25 02:37:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:37:59.877+03	2021-05-25 02:37:59.885+03	
71a841e5-4ef7-e224-96a0-e37a7087260a	2021-05-25 02:38:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:38:19.877+03	2021-05-25 02:38:19.885+03	
73b4683a-f34b-9fec-3adc-cbd036065e19	2021-05-25 02:38:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:38:39.877+03	2021-05-25 02:38:40.173+03	
88d75117-a298-c955-060a-3ff9fa62038c	2021-05-25 02:38:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:38:59.877+03	2021-05-25 02:38:59.884+03	
6d025546-0424-36e8-7335-434d34c35379	2021-05-25 02:39:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:39:19.877+03	2021-05-25 02:39:19.885+03	
2520830d-aa4f-0a9f-83f4-33f06f41c148	2021-05-25 02:39:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:39:39.877+03	2021-05-25 02:39:39.884+03	
d3a8cff3-8689-9ca4-a518-4cffb58baade	2021-05-25 02:39:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:39:59.877+03	2021-05-25 02:39:59.883+03	
669a5468-37a8-b532-ddc6-53396eea92cf	2021-05-25 02:40:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:40:09.877+03	2021-05-25 02:40:09.884+03	
06e8606a-5bdb-864a-39e5-25ca24c7d537	2021-05-25 02:40:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:40:19.877+03	2021-05-25 02:40:19.883+03	
53898d10-376f-1529-711c-837ddac59519	2021-05-25 02:40:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:40:39.877+03	2021-05-25 02:40:39.885+03	
4389a940-28fa-ff79-4b45-e6eaec9f30c8	2021-05-25 02:40:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:40:59.877+03	2021-05-25 02:40:59.882+03	
aefe7d8e-6e15-c8c6-6156-467f0ee69f0f	2021-05-25 02:41:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:41:19.877+03	2021-05-25 02:41:19.883+03	
9d9cd310-a407-633e-d690-aa8036501d69	2021-05-25 02:41:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:41:39.877+03	2021-05-25 02:41:39.885+03	
87d9ed13-deb8-de24-6080-9dea81f7bcbe	2021-05-25 02:41:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:41:59.877+03	2021-05-25 02:41:59.884+03	
29852a1d-c11b-5d51-61da-0b6c15a3a42f	2021-05-25 02:42:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:42:19.877+03	2021-05-25 02:42:20.042+03	
5996daab-4185-f79d-4ec9-b853e7f3a530	2021-05-25 02:42:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:42:39.877+03	2021-05-25 02:42:39.884+03	
aac3c018-472c-849f-85c6-6f651e7a13a9	2021-05-25 02:42:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:42:59.877+03	2021-05-25 02:42:59.885+03	
783e18a4-d480-2522-997f-eaa285f95c8d	2021-05-25 02:43:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:43:19.877+03	2021-05-25 02:43:19.885+03	
0d549940-1399-405a-b50a-87e235fc03f7	2021-05-25 02:43:39.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:43:39.877+03	2021-05-25 02:43:39.884+03	
d9d74890-1464-3b8f-7c3f-5e73308a5c0f	2021-05-25 02:43:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:43:59.877+03	2021-05-25 02:43:59.884+03	
4d87e617-d353-b34e-dbd7-8da74a8a6d08	2021-05-25 02:44:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:44:19.877+03	2021-05-25 02:44:19.885+03	
8c9aabe9-aa45-d716-6dc6-2fe0db2c81fd	2021-05-25 02:44:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:44:39.877+03	2021-05-25 02:44:39.883+03	
727d1b6d-5d7b-b578-7f7c-a035e03b26cd	2021-05-25 02:44:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:44:59.877+03	2021-05-25 02:44:59.884+03	
b702dbe2-0e8b-5dc9-4ff7-3c9a5630bb6b	2021-05-25 02:45:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:45:19.877+03	2021-05-25 02:45:19.883+03	
a98dc9a3-49eb-f58a-d39e-633b979cbd8c	2021-05-25 02:45:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:45:39.877+03	2021-05-25 02:45:39.887+03	
b97cdcfb-0c1f-523e-6145-d5b40696416e	2021-05-25 02:45:59.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:45:59.877+03	2021-05-25 02:46:00.181+03	
5964181e-ab2c-c320-6292-dcda3679358e	2021-05-25 02:46:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:46:19.877+03	2021-05-25 02:46:19.883+03	
b4ab02c4-f106-91b5-bbcf-17ac261dc686	2021-05-25 02:46:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:46:39.877+03	2021-05-25 02:46:40.213+03	
5e357a32-2277-d73a-4191-30484d005cea	2021-05-25 02:46:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:46:59.877+03	2021-05-25 02:46:59.884+03	
94b94777-1d42-530e-19ad-7580f503b9dc	2021-05-25 02:47:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:47:19.877+03	2021-05-25 02:47:19.884+03	
528438a2-3a82-85ff-443a-da6a1b8bfb8e	2021-05-25 02:47:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:47:39.877+03	2021-05-25 02:47:40.005+03	
b38d12c3-3250-2c08-0225-75653d2b6917	2021-05-25 02:47:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:47:59.877+03	2021-05-25 02:47:59.883+03	
63b9aa1a-cc3d-1dea-6243-b2b847b38952	2021-05-25 02:48:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:48:19.877+03	2021-05-25 02:48:19.884+03	
59da7626-88be-3991-718f-47176eca2927	2021-05-25 02:48:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:48:40.877+03	2021-05-25 02:48:40.882+03	
1d2116e3-eff2-aa33-dd0d-2b6719e52598	2021-05-25 02:49:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:49:00.877+03	2021-05-25 02:49:00.882+03	
017e3e58-7685-b9d2-080e-554e7a86036b	2021-05-25 02:49:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:49:20.877+03	2021-05-25 02:49:21.192+03	
df45fd32-ba0c-aa07-ad8e-bb2466998e67	2021-05-25 02:49:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:49:40.877+03	2021-05-25 02:49:40.884+03	
b8f528e5-fc30-24fc-a32f-e1d41b0b9e89	2021-05-25 02:50:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 02:50:00.877+03	2021-05-25 02:50:00.884+03	ERROR
cb3c94a7-d711-b817-cb6b-c011b6ee2911	2021-05-25 02:50:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:50:20.877+03	2021-05-25 02:50:20.883+03	
c25993d8-bf02-dd45-e5fd-69280d86bda1	2021-05-25 02:50:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:50:40.877+03	2021-05-25 02:50:40.884+03	
6e6f4f82-737d-eff9-7fac-ac3d7721afee	2021-05-25 02:51:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:51:00.877+03	2021-05-25 02:51:00.883+03	
000e10c1-7b47-22a2-bd34-c8d38e90f48e	2021-05-25 02:51:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:51:20.877+03	2021-05-25 02:51:20.885+03	
c3fc7a15-d731-f531-8e20-c2e0b991de86	2021-05-25 02:51:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:51:40.877+03	2021-05-25 02:51:40.884+03	
26e107d3-7bfa-4495-ddba-d3a79556fb76	2021-05-25 02:52:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:52:00.877+03	2021-05-25 02:52:00.884+03	
460f366b-0cc8-4567-329c-8f5cee7afe53	2021-05-25 02:52:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:52:20.877+03	2021-05-25 02:52:20.884+03	
a8e66552-ca4b-078e-ce74-55e5d7e441f3	2021-05-25 02:52:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:52:40.877+03	2021-05-25 02:52:40.883+03	
bf863c4f-eb73-ffe8-b806-10b338b34c5e	2021-05-25 02:53:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:53:00.877+03	2021-05-25 02:53:00.883+03	
ae17336c-1dce-a441-b7c1-bff95267d3a9	2021-05-25 02:53:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:53:20.877+03	2021-05-25 02:53:20.884+03	
11f76389-cdee-9ab4-7c1c-b184a1d463a2	2021-05-25 02:53:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:53:40.877+03	2021-05-25 02:53:40.883+03	
d9a25c26-4e1e-a3f5-32df-bffe062d634b	2021-05-25 02:54:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:54:00.877+03	2021-05-25 02:54:00.884+03	
b51aea31-ea22-8b35-6aff-dc289d556b16	2021-05-25 02:54:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:54:20.877+03	2021-05-25 02:54:20.885+03	
7d4fb495-48eb-be0d-c99c-fdc927db6d69	2021-05-25 02:54:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:54:40.877+03	2021-05-25 02:54:40.885+03	
a05a1ae3-d4a5-1e96-c874-82aa9a7d963f	2021-05-25 02:55:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:55:01.877+03	2021-05-25 02:55:01.885+03	
c3013ef2-d417-d3b1-206e-9c4b93cd33dd	2021-05-25 02:55:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:55:21.877+03	2021-05-25 02:55:21.884+03	
cf3b1c35-9423-5b30-6f6f-1581913f31bd	2021-05-25 02:55:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:55:41.877+03	2021-05-25 02:55:42.169+03	
e7e6b0ce-b8d9-8778-be17-a4ec751abe0e	2021-05-25 02:56:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:56:01.877+03	2021-05-25 02:56:01.9+03	
51e4e92d-6e70-36a9-be61-568d234aedc7	2021-05-25 02:56:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:56:21.877+03	2021-05-25 02:56:21.884+03	
680d9e15-9631-c0dc-37c8-af523d2c270f	2021-05-25 02:56:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:56:41.877+03	2021-05-25 02:56:41.884+03	
c04e65be-76f1-55f9-d745-e93d04ebffbd	2021-05-25 02:57:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:57:01.877+03	2021-05-25 02:57:01.883+03	
d16df62a-87e7-91c5-346f-afe83362ea1c	2021-05-25 02:57:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:57:21.877+03	2021-05-25 02:57:21.884+03	
eada80a4-5588-3edc-f436-f376337fa1d4	2021-05-25 02:57:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:57:41.877+03	2021-05-25 02:57:41.884+03	
ab5c3b62-bcd9-abe4-a1a3-3041abaf2570	2021-05-25 02:58:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:58:01.877+03	2021-05-25 02:58:01.882+03	
e3dd00e4-0d98-91aa-9a62-ce4a3c577303	2021-05-25 02:58:22.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:58:22.877+03	2021-05-25 02:58:22.884+03	
5b94653b-ffa1-f171-2e39-c9202b73771c	2021-05-25 02:58:42.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:58:42.877+03	2021-05-25 02:58:42.883+03	
3dc90e61-503b-d4ab-0c3b-14893859323e	2021-05-25 02:59:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:59:03.877+03	2021-05-25 02:59:03.884+03	
db71e42d-18af-c4fc-b0bd-852fc5c2d876	2021-05-25 02:59:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:59:23.877+03	2021-05-25 02:59:23.886+03	
dbcc5694-0f0f-a80f-e116-4226ba48f449	2021-05-25 02:59:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:59:43.877+03	2021-05-25 02:59:43.884+03	
2c3ea940-ccce-1499-805a-a6d0d569594b	2021-05-25 03:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 03:00:00.877+03	2021-05-25 03:00:00.883+03	ERROR
f5782e92-d4fc-85fa-3919-72b2a6ba1bfe	2021-05-25 03:00:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:00:13.877+03	2021-05-25 03:00:13.883+03	
a047b777-8384-24a8-d7fd-474fce26c8d6	2021-05-25 03:00:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:00:33.877+03	2021-05-25 03:00:33.883+03	
bd20fdde-d634-0c93-d933-cf4f421ba068	2021-05-25 03:00:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:00:53.877+03	2021-05-25 03:00:53.883+03	
2410ca43-509f-ef93-2b15-2a39e04b11e7	2021-05-25 02:40:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:40:29.877+03	2021-05-25 02:40:29.887+03	
90f638f2-1668-8177-5035-b45235c7460c	2021-05-25 02:40:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:40:49.877+03	2021-05-25 02:40:49.883+03	
f36b0660-36c4-3147-9366-1aa3f55e3dc0	2021-05-25 02:41:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:41:09.877+03	2021-05-25 02:41:09.884+03	
1f4daa34-e796-3097-5e51-b922c801955f	2021-05-25 02:41:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:41:29.877+03	2021-05-25 02:41:29.884+03	
384531f1-51ba-618b-e26d-e7855d7151bb	2021-05-25 02:41:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:41:49.877+03	2021-05-25 02:41:50.052+03	
e152fb8e-7f81-3035-6f6d-fecabbbd5119	2021-05-25 02:42:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:42:09.877+03	2021-05-25 02:42:10.416+03	
b966e5f0-e379-f47b-d1de-d37d8ae81c6b	2021-05-25 02:42:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:42:29.877+03	2021-05-25 02:42:29.883+03	
9d5185cf-a777-9f4b-39f9-a8914633504d	2021-05-25 02:42:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:42:49.877+03	2021-05-25 02:42:49.882+03	
5afab0ca-fbe7-178b-0bb4-e6e8aad11b02	2021-05-25 02:43:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:43:09.877+03	2021-05-25 02:43:09.884+03	
b48716ed-2614-137a-979d-58579a92dd39	2021-05-25 02:43:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:43:29.877+03	2021-05-25 02:43:29.951+03	
6219b9f6-3971-ddad-b32a-2a534e5d9eaa	2021-05-25 02:43:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:43:49.877+03	2021-05-25 02:43:49.885+03	
4c14200f-98f9-1be9-8dc5-00e57cf7938c	2021-05-25 02:44:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:44:09.877+03	2021-05-25 02:44:09.882+03	
6d1b77e4-1bd5-4da5-bc7b-6f0caf07ba4c	2021-05-25 02:44:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:44:29.877+03	2021-05-25 02:44:30.194+03	
7c153fd7-1c67-eefc-20d4-8461daf92348	2021-05-25 02:44:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:44:49.877+03	2021-05-25 02:44:49.884+03	
a49f7e7f-0e2a-cc9e-f02a-67eb5bb32f8d	2021-05-25 02:45:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:45:09.877+03	2021-05-25 02:45:09.883+03	
75b12274-6b7b-5c3b-494a-839ea63feee5	2021-05-25 02:45:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:45:29.877+03	2021-05-25 02:45:29.884+03	
cb0e39eb-b225-1e96-3c6c-632f01384ff1	2021-05-25 02:45:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:45:49.877+03	2021-05-25 02:45:50.091+03	
d4464c4f-bcae-cd19-8a43-a60033f3dc3e	2021-05-25 02:46:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:46:09.877+03	2021-05-25 02:46:10.063+03	
e4a1c50b-c952-03f3-3adb-e8388224d5df	2021-05-25 02:46:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:46:29.877+03	2021-05-25 02:46:29.883+03	
8ce31593-eed8-f110-4168-a4ea0449d1e2	2021-05-25 02:46:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:46:49.877+03	2021-05-25 02:46:49.883+03	
09b63414-320f-3fed-f4f4-b40a862ea213	2021-05-25 02:47:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:47:09.877+03	2021-05-25 02:47:09.884+03	
99199ba9-47b7-0abe-65db-05062410e376	2021-05-25 02:47:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:47:29.877+03	2021-05-25 02:47:29.883+03	
6a3b512a-1a34-0218-be22-2a9ef24f7fb2	2021-05-25 02:47:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:47:49.877+03	2021-05-25 02:47:49.883+03	
e0a5a6f1-df99-62ca-3495-ae0d1106a295	2021-05-25 02:48:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:48:09.877+03	2021-05-25 02:48:09.882+03	
675fc535-783b-090c-5f46-99d5e836894c	2021-05-25 02:48:29.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:48:29.877+03	2021-05-25 02:48:29.885+03	
746242de-f198-7e22-78a1-f04f99c5db6a	2021-05-25 02:48:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:48:50.877+03	2021-05-25 02:48:50.883+03	
cd836d1a-b4ae-14d2-789e-97fb8ffe2e41	2021-05-25 02:49:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:49:10.877+03	2021-05-25 02:49:10.883+03	
9888d17f-e35e-1c63-2e04-ee809dcbab4a	2021-05-25 02:49:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:49:30.877+03	2021-05-25 02:49:30.882+03	
5c13956d-d832-a2f2-1285-21509f56f9b7	2021-05-25 02:49:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:49:50.877+03	2021-05-25 02:49:50.882+03	
db4c6685-96b7-57e2-937a-56431bce4640	2021-05-25 02:50:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:50:00.877+03	2021-05-25 02:50:00.896+03	
bfb92c11-9087-1838-cb67-e67a02b33254	2021-05-25 02:50:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:50:10.877+03	2021-05-25 02:50:10.885+03	
54140fe7-ac98-336d-5af1-b2c798618f05	2021-05-25 02:50:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:50:30.877+03	2021-05-25 02:50:30.882+03	
8e3ddd61-1a80-e95a-60df-c44367c81b0e	2021-05-25 02:50:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:50:50.877+03	2021-05-25 02:50:51.172+03	
5e11267c-7977-3ad0-2ea3-b32b68b59e2d	2021-05-25 02:51:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:51:10.877+03	2021-05-25 02:51:10.885+03	
f1024bd7-db3d-f46d-7679-f663cf3dc8f3	2021-05-25 02:51:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:51:30.877+03	2021-05-25 02:51:30.891+03	
dd5ffeba-868b-28e6-bfbd-547eba8d2c47	2021-05-25 02:51:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:51:50.877+03	2021-05-25 02:51:50.885+03	
2a24f292-ccb8-4eb0-f87d-6cfb969d5557	2021-05-25 02:52:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:52:10.877+03	2021-05-25 02:52:10.883+03	
4d134b5c-a64e-36a6-a277-4c135fa0f0ff	2021-05-25 02:52:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:52:30.877+03	2021-05-25 02:52:30.884+03	
507b7a53-ed13-48d3-878c-4b1e6e4a0d60	2021-05-25 02:52:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:52:50.877+03	2021-05-25 02:52:50.883+03	
59c6aaf9-1255-dea1-d445-ab380a10ae7e	2021-05-25 02:53:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:53:10.877+03	2021-05-25 02:53:11.017+03	
adb2917b-4b79-2ade-c0ba-ec8f624b8bbc	2021-05-25 02:53:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:53:30.877+03	2021-05-25 02:53:30.883+03	
19fc377c-7225-5ef1-7a88-59fc077bdfaa	2021-05-25 02:53:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:53:50.877+03	2021-05-25 02:53:50.882+03	
22ca24e8-0700-af3d-75d0-772f336cc6ac	2021-05-25 02:54:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:54:10.877+03	2021-05-25 02:54:10.883+03	
4e214ea4-dc20-ea82-4b07-8fb78228ed48	2021-05-25 02:54:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:54:30.877+03	2021-05-25 02:54:30.899+03	
34ce4567-b533-1767-3999-8fcc8376509e	2021-05-25 02:54:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:54:51.877+03	2021-05-25 02:54:51.884+03	
ba1d688c-bb03-2542-b53e-5dec71951337	2021-05-25 02:55:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:55:11.877+03	2021-05-25 02:55:11.883+03	
e5328e7a-1ff0-9b71-ea0d-16eb77bb1bf9	2021-05-25 02:55:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:55:31.877+03	2021-05-25 02:55:31.883+03	
f9c15a48-b116-fbbe-614f-05bb5a860af8	2021-05-25 02:55:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:55:51.877+03	2021-05-25 02:55:51.885+03	
ef1df387-4130-7a85-f014-c927b4445110	2021-05-25 02:56:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:56:11.877+03	2021-05-25 02:56:11.884+03	
2d16486a-77c1-37d7-138e-5d70bbdee701	2021-05-25 02:56:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:56:31.877+03	2021-05-25 02:56:31.883+03	
8a30f8ab-575f-66d9-51cd-9afadd45621f	2021-05-25 02:56:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:56:51.877+03	2021-05-25 02:56:51.886+03	
8f1987aa-cfc0-95b6-0071-d16899a622dd	2021-05-25 02:57:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:57:11.877+03	2021-05-25 02:57:11.883+03	
e17dd215-3010-3314-040a-61a3ce0fd102	2021-05-25 02:57:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:57:31.877+03	2021-05-25 02:57:31.882+03	
cd4dbd46-9d7e-728e-c436-dd00d27d3671	2021-05-25 02:57:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:57:51.877+03	2021-05-25 02:57:51.885+03	
ec539d22-a924-56bf-d8e3-6bac0fc13333	2021-05-25 02:58:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:58:11.877+03	2021-05-25 02:58:11.883+03	
449a32d9-3a87-1715-b526-9414f7b45160	2021-05-25 02:58:32.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:58:32.877+03	2021-05-25 02:58:32.885+03	
3c97be7a-5e14-7625-43b4-cd5b5c67f057	2021-05-25 02:58:52.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:58:52.878+03	2021-05-25 02:58:52.884+03	
5e56a2c2-5754-33e6-b1d0-8c216eb462eb	2021-05-25 02:59:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:59:13.877+03	2021-05-25 02:59:13.884+03	
5373ad8f-9441-d8f6-48fc-6e37db15f660	2021-05-25 02:59:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:59:33.877+03	2021-05-25 02:59:33.884+03	
329563f0-bc0d-c4e3-3c0a-6f9a6b344966	2021-05-25 02:59:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 02:59:53.877+03	2021-05-25 02:59:53.884+03	
a4dd6790-1d4d-eaf3-66f9-40dc5767d22e	2021-05-25 03:00:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:00:03.877+03	2021-05-25 03:00:03.885+03	
20531738-a7bc-cc7b-cc15-3ec31a320a90	2021-05-25 03:00:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:00:23.877+03	2021-05-25 03:00:23.883+03	
58769568-2db1-96d5-4ee9-ecdbadfe9d7b	2021-05-25 03:00:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:00:43.877+03	2021-05-25 03:00:43.884+03	
5db84a75-11c9-9cd0-d695-a2f857a83199	2021-05-25 03:01:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:01:03.877+03	2021-05-25 03:01:03.885+03	
1f689c38-37ee-4c3e-5fe8-169bc9dd8798	2021-05-25 03:01:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:01:23.877+03	2021-05-25 03:01:23.884+03	
40afb22e-5eea-1a13-979b-fb739980c303	2021-05-25 03:01:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:01:43.877+03	2021-05-25 03:01:43.883+03	
885c79ff-7148-7fd9-bcea-7677080b9356	2021-05-25 03:02:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:02:03.877+03	2021-05-25 03:02:03.884+03	
e66ebadb-6eb4-d746-2489-17b56d7cde4e	2021-05-25 03:02:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:02:23.877+03	2021-05-25 03:02:23.883+03	
a35bfdb9-9725-8052-49bd-5f57399de782	2021-05-25 03:02:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:02:43.877+03	2021-05-25 03:02:43.884+03	
4de6c690-16b9-60ee-8fab-77966e83189f	2021-05-25 03:03:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:03:03.877+03	2021-05-25 03:03:03.883+03	
e7c6d3f6-c7b4-a0af-1510-29a91dedd083	2021-05-25 03:03:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:03:23.877+03	2021-05-25 03:03:23.884+03	
add51e5b-ac3c-5782-eb3c-3590d5c1430f	2021-05-25 03:03:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:03:43.877+03	2021-05-25 03:03:43.883+03	
9a1f5d62-e0c8-f704-5334-11e5226a5ba0	2021-05-25 03:04:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:04:03.877+03	2021-05-25 03:04:03.885+03	
804dc340-bb49-ac9b-ceb3-0dc8ecdb888c	2021-05-25 03:04:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:04:23.877+03	2021-05-25 03:04:23.883+03	
2813fe86-c9db-cef0-abe6-0d0a5d66ced2	2021-05-25 03:04:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:04:43.877+03	2021-05-25 03:04:43.883+03	
24a93e0b-54ee-ee17-fc16-4d2c617d3935	2021-05-25 03:05:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:05:03.877+03	2021-05-25 03:05:03.883+03	
f50a9cac-5a34-a546-a103-2c984773ca95	2021-05-25 03:05:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:05:23.877+03	2021-05-25 03:05:23.884+03	
a86f193b-8938-51f0-30b9-998a09ccb5ec	2021-05-25 03:05:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:05:43.877+03	2021-05-25 03:05:43.883+03	
a179ddf4-5a2d-1b01-cf0f-8d4983135d11	2021-05-25 03:06:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:06:03.877+03	2021-05-25 03:06:03.884+03	
62d3c262-bd5a-38f8-2bb7-3472f3cd13ec	2021-05-25 03:06:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:06:23.877+03	2021-05-25 03:06:24.132+03	
ec8fa6f1-5f7b-8035-e51e-c5967ca77ec4	2021-05-25 03:06:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:06:43.877+03	2021-05-25 03:06:43.883+03	
4707f503-ccc8-0761-6c45-a1dc23c5a1ab	2021-05-25 03:07:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:07:03.877+03	2021-05-25 03:07:03.883+03	
c1b5a8d4-e1ab-e51a-eea3-441100e6eedd	2021-05-25 03:07:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:07:23.877+03	2021-05-25 03:07:23.884+03	
26c72ed8-6433-8176-3e52-7955ee5aad88	2021-05-25 03:07:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:07:43.877+03	2021-05-25 03:07:43.883+03	
4a03ce7c-0565-654a-6b77-0d650c5cbbed	2021-05-25 03:08:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:08:03.877+03	2021-05-25 03:08:03.886+03	
2e154863-5eb3-26c9-3492-ad09710149bc	2021-05-25 03:08:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:08:23.877+03	2021-05-25 03:08:23.883+03	
a3bdefe0-e17b-053f-e5e7-1cb447891f53	2021-05-25 03:08:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:08:43.877+03	2021-05-25 03:08:43.883+03	
6a306b0a-809b-e584-51b8-4539853d5233	2021-05-25 03:09:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:09:03.878+03	2021-05-25 03:09:03.886+03	
000f567c-b9b9-2244-5f08-63749128cb4f	2021-05-25 03:09:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:09:24.877+03	2021-05-25 03:09:24.882+03	
d7576988-fced-e689-df72-aa4d341e9d71	2021-05-25 03:09:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:09:44.877+03	2021-05-25 03:09:44.885+03	
449cfe11-afde-2edf-f685-691d5b738a22	2021-05-25 03:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 03:10:00.877+03	2021-05-25 03:10:00.883+03	ERROR
6e3a6969-6a9c-f693-efa2-5b94c1fa4c5a	2021-05-25 03:10:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:10:14.877+03	2021-05-25 03:10:14.883+03	
daa3422a-10fe-898b-8e23-cca706a57f35	2021-05-25 03:10:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:10:34.877+03	2021-05-25 03:10:35.179+03	
d7c8ea2f-b4e0-6b43-2878-1c7466f74db1	2021-05-25 03:10:54.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:10:54.877+03	2021-05-25 03:10:54.883+03	
eab4f88c-0170-7225-4356-0cdac7887f56	2021-05-25 03:11:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:11:14.877+03	2021-05-25 03:11:14.883+03	
ff82e6d0-0a82-b2d2-2c8d-151ffb96400b	2021-05-25 03:11:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:11:34.877+03	2021-05-25 03:11:34.883+03	
30f93909-e9c0-e12c-0819-b27a34b5e95e	2021-05-25 03:11:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:11:54.877+03	2021-05-25 03:11:54.883+03	
36b1fd82-bb0a-f011-6133-ae51ab28b447	2021-05-25 03:12:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:12:14.877+03	2021-05-25 03:12:14.936+03	
3a79742e-48db-f475-21da-245d5eb9998a	2021-05-25 03:12:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:12:34.877+03	2021-05-25 03:12:34.885+03	
daec1a93-7567-a736-1606-53192be65a32	2021-05-25 03:12:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:12:54.877+03	2021-05-25 03:12:54.885+03	
5914f0b7-4d70-a612-e545-ab659af437d6	2021-05-25 03:13:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:13:14.877+03	2021-05-25 03:13:14.882+03	
8e26a9b9-0227-36c4-fa70-5c4cd2fa79ca	2021-05-25 03:13:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:13:34.877+03	2021-05-25 03:13:34.883+03	
e7a41772-560f-ed82-3af8-655519e6278c	2021-05-25 03:13:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:13:54.877+03	2021-05-25 03:13:54.883+03	
dc34e836-29c6-131a-54ed-af2bc75bee9b	2021-05-25 03:14:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:14:14.877+03	2021-05-25 03:14:14.885+03	
cdb9bc37-60db-01c1-6c10-d7d515e020d7	2021-05-25 03:14:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:14:34.877+03	2021-05-25 03:14:34.884+03	
b73f7a3f-6911-47c9-f413-5b5627eb73ac	2021-05-25 03:14:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:14:54.877+03	2021-05-25 03:14:55.222+03	
ca0dbfb4-2a22-258f-9599-720a249acf6e	2021-05-25 03:15:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:15:14.877+03	2021-05-25 03:15:14.884+03	
bdacc86e-660c-dce8-8491-7267dc573deb	2021-05-25 03:15:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:15:34.877+03	2021-05-25 03:15:34.882+03	
78c66811-9894-2e82-fc5d-9a27dcf65a32	2021-05-25 03:15:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:15:54.877+03	2021-05-25 03:15:54.884+03	
2bcc7f34-44af-1fe9-deaf-3d76eef9260a	2021-05-25 03:16:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:16:14.877+03	2021-05-25 03:16:14.882+03	
1e6ef4fb-6a4c-8aa1-5611-ee3582868a4f	2021-05-25 03:16:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:16:34.877+03	2021-05-25 03:16:34.882+03	
54b8131a-6b7e-3d1c-a9b7-2583ea2e9d57	2021-05-25 03:16:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:16:54.877+03	2021-05-25 03:16:54.883+03	
13d2ee7a-05d5-61a1-0012-fa44075e1af8	2021-05-25 03:17:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:17:14.877+03	2021-05-25 03:17:14.883+03	
35f49c67-7655-0ff6-892a-222449fd9891	2021-05-25 03:17:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:17:34.877+03	2021-05-25 03:17:34.884+03	
d96d3761-9669-7ad6-c5fd-c5e15d3bb7e0	2021-05-25 03:17:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:17:54.877+03	2021-05-25 03:17:54.885+03	
d7d3431e-d62d-15a5-260e-2d102016112c	2021-05-25 03:18:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:18:14.877+03	2021-05-25 03:18:14.883+03	
472abcff-e375-dbd0-ea2f-aaddc245b859	2021-05-25 03:18:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:18:34.877+03	2021-05-25 03:18:34.882+03	
03ee0ab7-ca3b-55e2-56ec-b8085f33d1e7	2021-05-25 03:18:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:18:54.877+03	2021-05-25 03:18:54.882+03	
477fa46b-831b-a3dd-1ced-105052ce1ff4	2021-05-25 03:19:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:19:14.877+03	2021-05-25 03:19:14.884+03	
dd41dfb3-bb0c-7be9-fa01-d5822ff1e122	2021-05-25 03:19:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:19:34.877+03	2021-05-25 03:19:34.882+03	
ca38f796-61a4-0153-756b-d840c6fa8fa0	2021-05-25 03:19:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:19:54.877+03	2021-05-25 03:19:54.883+03	
b817b1c7-8bd0-5843-e517-2c198274a5d0	2021-05-25 03:20:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:20:05.877+03	2021-05-25 03:20:05.884+03	
6d324297-8c06-9e4d-9576-c0456cfad984	2021-05-25 03:20:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:20:25.877+03	2021-05-25 03:20:25.882+03	
de8b1c7b-479e-e4a4-7841-b9662ba04f10	2021-05-25 03:20:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:20:45.877+03	2021-05-25 03:20:45.884+03	
6efbff2b-83f7-15d2-c0e1-7c525b3e50bd	2021-05-25 03:21:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:21:06.877+03	2021-05-25 03:21:06.883+03	
c3b68e2c-bc9f-f866-914c-0584659076fc	2021-05-25 03:21:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:21:26.877+03	2021-05-25 03:21:26.883+03	
8afd4357-8185-ce2b-d5ce-075ab4a65cad	2021-05-25 03:01:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:01:13.877+03	2021-05-25 03:01:13.884+03	
e4983237-7ffd-ea5b-800e-5fb5f9decb38	2021-05-25 03:01:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:01:33.877+03	2021-05-25 03:01:33.883+03	
49a2cf0a-5f92-c148-5982-239a5d8e250a	2021-05-25 03:01:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:01:53.877+03	2021-05-25 03:01:53.884+03	
2f879741-d301-dcce-b586-744ce3fbc58d	2021-05-25 03:02:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:02:13.877+03	2021-05-25 03:02:13.884+03	
e30ac320-d931-fb30-5257-2cc0178307ea	2021-05-25 03:02:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:02:33.877+03	2021-05-25 03:02:33.884+03	
cfe49555-ab60-849b-cbfe-02ce7f055675	2021-05-25 03:02:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:02:53.877+03	2021-05-25 03:02:53.883+03	
3131272d-d772-0884-32a7-f31cada68658	2021-05-25 03:03:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:03:13.877+03	2021-05-25 03:03:13.884+03	
04da327d-fa4b-96b1-bd9f-f8a190b6c323	2021-05-25 03:03:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:03:33.877+03	2021-05-25 03:03:33.884+03	
337f3549-92ec-b770-b6ab-1917442a30fb	2021-05-25 03:03:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:03:53.877+03	2021-05-25 03:03:53.883+03	
070cd6d7-f7eb-11e4-3764-9a1b680b78d5	2021-05-25 03:04:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:04:13.877+03	2021-05-25 03:04:13.9+03	
ded58e22-589c-af39-52a9-147d5de81677	2021-05-25 03:04:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:04:33.877+03	2021-05-25 03:04:33.882+03	
1794a1b0-b089-a7be-3a70-3dfb7b6713b8	2021-05-25 03:04:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:04:53.877+03	2021-05-25 03:04:53.882+03	
07d693fc-62d5-f319-423a-834bbe0ee892	2021-05-25 03:05:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:05:13.877+03	2021-05-25 03:05:13.883+03	
ce4f1779-d68f-7d3c-65f0-7892c00be08a	2021-05-25 03:05:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:05:33.877+03	2021-05-25 03:05:33.883+03	
4b67e450-b100-f4ea-65d7-13968d302d44	2021-05-25 03:05:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:05:53.877+03	2021-05-25 03:05:54.179+03	
fa90525c-9a53-d87c-0666-d2de74717a89	2021-05-25 03:06:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:06:13.877+03	2021-05-25 03:06:13.883+03	
31b4a039-0d12-d3bf-e9a0-fa365cfea552	2021-05-25 03:06:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:06:33.877+03	2021-05-25 03:06:33.883+03	
65622ab7-5716-740a-f2e6-feeaf52827b4	2021-05-25 03:06:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:06:53.877+03	2021-05-25 03:06:53.883+03	
b8010ba1-c6b1-acdd-157f-7303da5592ac	2021-05-25 03:07:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:07:13.877+03	2021-05-25 03:07:13.886+03	
c6c77e0f-b565-22d1-afd0-5c8c0f4bf68b	2021-05-25 03:07:33.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:07:33.877+03	2021-05-25 03:07:33.883+03	
48dfd005-ded8-4653-d9bb-6e885c2a0ea1	2021-05-25 03:07:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:07:53.877+03	2021-05-25 03:07:53.885+03	
acdc992d-c88d-64ec-5989-57a5848f2e87	2021-05-25 03:08:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:08:13.877+03	2021-05-25 03:08:14.121+03	
edc63cd7-9a09-0f2f-7bbe-e12d25c59f5d	2021-05-25 03:08:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:08:33.877+03	2021-05-25 03:08:33.883+03	
578b2833-497a-319d-442a-79fdb9e65fe1	2021-05-25 03:08:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:08:53.877+03	2021-05-25 03:08:53.883+03	
851642e7-404b-c193-fd65-d98984dc179a	2021-05-25 03:09:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:09:14.877+03	2021-05-25 03:09:14.884+03	
51fc3b0a-a706-1de9-5055-aed03b59a2f6	2021-05-25 03:09:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:09:34.877+03	2021-05-25 03:09:34.885+03	
06eb9178-6913-853a-279a-6a82064bfe31	2021-05-25 03:09:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:09:54.877+03	2021-05-25 03:09:54.884+03	
23844892-96f5-975f-eb27-2e005db187a1	2021-05-25 03:10:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:10:04.877+03	2021-05-25 03:10:04.885+03	
d286a711-33ee-0ba9-99ee-91b738b42eac	2021-05-25 03:10:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:10:24.877+03	2021-05-25 03:10:24.882+03	
222aea8a-b09a-98ab-ec02-5ccc958546e8	2021-05-25 03:10:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:10:44.877+03	2021-05-25 03:10:44.883+03	
882dd450-449b-32d2-c0bd-cf2c7e4f5a70	2021-05-25 03:11:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:11:04.877+03	2021-05-25 03:11:04.883+03	
f43b5711-5c51-9438-492e-56304e2858cd	2021-05-25 03:11:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:11:24.877+03	2021-05-25 03:11:24.885+03	
3d2e436c-f2fd-a5fe-ca91-4b30a510798d	2021-05-25 03:11:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:11:44.877+03	2021-05-25 03:11:44.884+03	
da496751-d024-83ee-de8d-adcab94f8944	2021-05-25 03:12:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:12:04.877+03	2021-05-25 03:12:04.885+03	
cc4501d5-3e2c-bdb5-96f7-179315d76776	2021-05-25 03:12:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:12:24.877+03	2021-05-25 03:12:24.882+03	
a332753b-b930-ceaa-a272-795f67836567	2021-05-25 03:12:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:12:44.877+03	2021-05-25 03:12:44.884+03	
19b9da3c-96ce-c97c-7558-e1fca19410c7	2021-05-25 03:13:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:13:04.877+03	2021-05-25 03:13:04.883+03	
3c6ab4f3-b3d3-5cb0-6a80-0538f4cab7b8	2021-05-25 03:13:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:13:24.877+03	2021-05-25 03:13:24.885+03	
0c570388-8d0d-525b-33e2-5e3cbc32085f	2021-05-25 03:13:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:13:44.877+03	2021-05-25 03:13:45.183+03	
2abdee05-644f-639e-26e9-259fd720828b	2021-05-25 03:14:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:14:04.877+03	2021-05-25 03:14:04.884+03	
8171f62d-043f-a039-120f-2b261550b775	2021-05-25 03:14:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:14:24.877+03	2021-05-25 03:14:24.883+03	
b9dc58e4-ea71-bd78-13d9-ce3bbbd1b288	2021-05-25 03:14:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:14:44.877+03	2021-05-25 03:14:44.884+03	
12a2c6d7-c253-64c9-c452-474abacdf764	2021-05-25 03:15:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:15:04.877+03	2021-05-25 03:15:04.884+03	
c3b27c70-0f86-08df-3fda-010ab3e1db01	2021-05-25 03:15:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:15:24.877+03	2021-05-25 03:15:24.885+03	
c71d1a5a-473c-9aeb-4680-7bb6e920167c	2021-05-25 03:15:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:15:44.877+03	2021-05-25 03:15:44.886+03	
42874eee-0de1-efca-8113-7782f3ef2da3	2021-05-25 03:16:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:16:04.877+03	2021-05-25 03:16:04.883+03	
6d038644-6ed4-3097-e8aa-b62309f8f669	2021-05-25 03:16:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:16:24.877+03	2021-05-25 03:16:24.884+03	
bfa1dd49-c326-e2d9-2a7d-f3c3c887f975	2021-05-25 03:16:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:16:44.877+03	2021-05-25 03:16:44.882+03	
d16ccf3f-35ca-b983-340a-3bbc557f9673	2021-05-25 03:17:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:17:04.877+03	2021-05-25 03:17:04.883+03	
cbb1dc4b-d3d0-3d41-aad9-f8b8c439d529	2021-05-25 03:17:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:17:24.877+03	2021-05-25 03:17:24.883+03	
c0987c20-daf7-9c25-cd78-5b32beb8665c	2021-05-25 03:17:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:17:44.877+03	2021-05-25 03:17:44.885+03	
1fd68f5c-99bd-34c3-6b98-bb654e83075e	2021-05-25 03:18:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:18:04.877+03	2021-05-25 03:18:04.882+03	
347acc45-86bd-849c-5dcb-70b1bb00a99a	2021-05-25 03:18:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:18:24.877+03	2021-05-25 03:18:24.882+03	
9990a88d-e3cc-672c-3849-088a450009e2	2021-05-25 03:18:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:18:44.877+03	2021-05-25 03:18:44.883+03	
1c6222f3-2bc0-3ae5-2d4d-c10f7af460db	2021-05-25 03:19:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:19:04.877+03	2021-05-25 03:19:04.883+03	
46a67cc5-91e1-307a-804a-53f62aecfa5a	2021-05-25 03:19:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:19:24.877+03	2021-05-25 03:19:24.884+03	
e5a54b4e-1745-4d54-7e5b-18123be6b7a1	2021-05-25 03:19:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:19:44.877+03	2021-05-25 03:19:44.883+03	
3ce462fa-5036-5c8c-061e-98101d264f4e	2021-05-25 03:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 03:20:00.877+03	2021-05-25 03:20:00.881+03	ERROR
77cb7cde-c882-a335-c4a5-9c6313ada68b	2021-05-25 03:20:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:20:15.877+03	2021-05-25 03:20:15.883+03	
c35fb298-c9dc-2ccb-85e9-12feecd17de3	2021-05-25 03:20:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:20:35.877+03	2021-05-25 03:20:35.884+03	
0db9cae6-d3f8-d492-82d8-d90a247b5674	2021-05-25 03:20:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:20:56.877+03	2021-05-25 03:20:56.885+03	
ca34d786-ba34-3f47-30cb-d043b132444d	2021-05-25 03:21:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:21:16.877+03	2021-05-25 03:21:16.883+03	
ce44f61e-2392-42d0-686c-d695764d9240	2021-05-25 03:21:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:21:36.877+03	2021-05-25 03:21:36.884+03	
1272651a-a9be-2471-db46-eff6872493ba	2021-05-25 03:21:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:21:46.877+03	2021-05-25 03:21:46.883+03	
a4d2853d-5740-bf34-7f35-b70cf3a5d2fa	2021-05-25 03:22:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:22:06.877+03	2021-05-25 03:22:07.09+03	
1a07556d-6f84-d486-5226-9cf26ba2d91e	2021-05-25 03:22:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:22:26.877+03	2021-05-25 03:22:26.882+03	
2e43d2bc-ba8d-d309-2522-46267b786db8	2021-05-25 03:22:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:22:46.877+03	2021-05-25 03:22:46.891+03	
1ac0ffad-72db-dd9e-c09a-e27f0d314074	2021-05-25 03:23:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:23:06.877+03	2021-05-25 03:23:06.883+03	
4fc0ce83-3607-bb09-0fde-afad289f2f8b	2021-05-25 03:23:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:23:26.877+03	2021-05-25 03:23:26.885+03	
d9044eb1-b733-5db2-4f6d-4c5bc8a247b5	2021-05-25 03:23:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:23:46.877+03	2021-05-25 03:23:46.884+03	
beb492fa-6631-2ee8-12af-1ae101aa3200	2021-05-25 03:24:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:24:06.877+03	2021-05-25 03:24:06.888+03	
205612d8-447d-49bb-91d2-773460047331	2021-05-25 03:24:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:24:26.877+03	2021-05-25 03:24:26.885+03	
19a86370-5b37-7722-2d26-03b5593821d4	2021-05-25 03:24:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:24:46.877+03	2021-05-25 03:24:47.051+03	
37103782-b737-aa6b-13d7-6236f8e6029f	2021-05-25 03:25:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:25:06.877+03	2021-05-25 03:25:06.885+03	
ef46a2f1-ebd7-08a9-8bfe-0e5116553119	2021-05-25 03:25:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:25:26.877+03	2021-05-25 03:25:26.883+03	
fd35f920-16dd-63f9-a214-feeac15eb336	2021-05-25 03:25:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:25:46.877+03	2021-05-25 03:25:46.885+03	
e16aa358-85a6-e069-72c3-85d4e00f2a42	2021-05-25 03:26:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:26:06.877+03	2021-05-25 03:26:06.884+03	
1f9ba19c-3e1f-b401-8e9f-97d41646afb9	2021-05-25 03:26:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:26:26.877+03	2021-05-25 03:26:26.884+03	
372ab62b-7652-ba01-adc9-265d3fb58874	2021-05-25 03:26:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:26:46.877+03	2021-05-25 03:26:46.884+03	
860848c0-09b2-2f8b-ea25-8d6bf91f2e0a	2021-05-25 03:27:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:27:06.877+03	2021-05-25 03:27:06.886+03	
0ec2138d-869d-ae4c-0ac0-e9e8ab06a61f	2021-05-25 03:27:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:27:26.877+03	2021-05-25 03:27:26.885+03	
3b0697ee-ab3a-ec95-e859-ccf2337177e9	2021-05-25 03:27:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:27:46.877+03	2021-05-25 03:27:46.884+03	
852aebfa-f331-f85b-27dc-8dd89880a10f	2021-05-25 03:28:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:28:06.877+03	2021-05-25 03:28:06.883+03	
ff397a2d-50f0-a9f3-569d-c19822ba0610	2021-05-25 03:28:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:28:26.877+03	2021-05-25 03:28:26.886+03	
3a106c17-30b0-84d8-db78-27c819e4e06f	2021-05-25 03:28:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:28:46.877+03	2021-05-25 03:28:46.883+03	
3ea3da54-cdb8-29f1-133b-69bc177bd54c	2021-05-25 03:29:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:29:06.877+03	2021-05-25 03:29:06.883+03	
2aff612d-cd92-83c4-7369-8c2aef9d19c6	2021-05-25 03:29:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:29:26.877+03	2021-05-25 03:29:26.884+03	
c0089cc4-1433-4d1c-fe27-89798dd7d0a2	2021-05-25 03:29:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:29:46.877+03	2021-05-25 03:29:46.883+03	
0217ed62-4506-24ff-8ac7-b5476c17e013	2021-05-25 03:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 03:30:00.877+03	2021-05-25 03:30:00.881+03	ERROR
c4077ae4-409c-bb10-4e7b-f8b26a301638	2021-05-25 03:30:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:30:16.877+03	2021-05-25 03:30:17.07+03	
1f5fa2c7-b532-7d72-d5f5-bc83b5e345e3	2021-05-25 03:30:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:30:36.877+03	2021-05-25 03:30:37.123+03	
ba82cbec-bbc6-b22c-5780-7bbe1e04620d	2021-05-25 03:30:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:30:56.877+03	2021-05-25 03:30:56.884+03	
bc44bfc2-4276-09b9-b699-8dc029435de3	2021-05-25 03:31:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:31:16.877+03	2021-05-25 03:31:16.884+03	
11ea6550-69f8-1163-91c0-dcb963bbb1ed	2021-05-25 03:31:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:31:36.877+03	2021-05-25 03:31:36.884+03	
06434704-0b0a-72d2-e69b-0834d6daded1	2021-05-25 03:31:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:31:56.877+03	2021-05-25 03:31:56.883+03	
a7864850-5e69-4f4c-67e1-29b9fbaac7c0	2021-05-25 03:32:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:32:16.877+03	2021-05-25 03:32:16.884+03	
7f584b4c-f1f9-3648-5221-bf38b6c89b5c	2021-05-25 03:32:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:32:36.877+03	2021-05-25 03:32:36.883+03	
9026225e-4577-d634-b4ef-75a53e97b5fe	2021-05-25 03:32:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:32:56.877+03	2021-05-25 03:32:56.883+03	
785fa6c3-3b1d-10c5-5079-2663d5851c92	2021-05-25 03:33:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:33:16.877+03	2021-05-25 03:33:16.884+03	
94dcb778-b858-0728-5323-2a5ce4f1d1fb	2021-05-25 03:33:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:33:36.877+03	2021-05-25 03:33:36.885+03	
af2fc9d7-05f5-2a37-2dfd-47b4bc3512e7	2021-05-25 03:33:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:33:56.877+03	2021-05-25 03:33:57.133+03	
0ec0cbe7-6d47-bde7-e6a8-a7418c1e4805	2021-05-25 03:34:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:34:16.877+03	2021-05-25 03:34:16.885+03	
d56a2976-36c3-ebf5-fed6-ebe054e477f3	2021-05-25 03:34:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:34:36.877+03	2021-05-25 03:34:36.882+03	
a3d81399-a370-e1e7-1ea3-cb1613c693ac	2021-05-25 03:34:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:34:56.877+03	2021-05-25 03:34:56.883+03	
3e29cc98-694f-2cb1-bdb6-73c8b719c65e	2021-05-25 03:35:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:35:16.877+03	2021-05-25 03:35:16.885+03	
2cb57884-da04-ab99-1396-6d322f85e788	2021-05-25 03:35:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:35:36.877+03	2021-05-25 03:35:36.884+03	
3f601db6-a15a-7f45-0ba0-efca1b52f390	2021-05-25 03:35:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:35:56.877+03	2021-05-25 03:35:56.884+03	
c72f3c32-8872-9127-c978-e5088c866992	2021-05-25 03:36:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:36:16.877+03	2021-05-25 03:36:16.884+03	
f952da46-c944-c5f8-41cd-a38f70121a9a	2021-05-25 03:36:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:36:36.877+03	2021-05-25 03:36:36.882+03	
fd0ea605-321b-ced9-a16f-e0d915fd4b2c	2021-05-25 03:36:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:36:56.877+03	2021-05-25 03:36:56.883+03	
5e407677-4cbb-f543-1b55-24e7db923b73	2021-05-25 03:37:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:37:16.877+03	2021-05-25 03:37:17.062+03	
b919cf23-26d2-3feb-75bf-65b2543cd3e2	2021-05-25 03:37:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:37:36.877+03	2021-05-25 03:37:36.885+03	
c75e6dc8-2a52-e58f-ce4f-648b05e95131	2021-05-25 03:37:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:37:56.877+03	2021-05-25 03:37:56.884+03	
162464b5-8722-3ed4-2812-1e317dbb36ef	2021-05-25 03:38:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:38:16.877+03	2021-05-25 03:38:16.885+03	
99073e31-e4ee-a902-35cf-af7817f184ed	2021-05-25 03:38:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:38:36.877+03	2021-05-25 03:38:36.885+03	
252ed6a1-12f1-c893-b619-58d66255488b	2021-05-25 03:38:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:38:56.877+03	2021-05-25 03:38:56.885+03	
9b3bf76c-0cf1-51d5-2a2f-1c5a1674b27b	2021-05-25 03:39:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:39:16.877+03	2021-05-25 03:39:16.883+03	
8e4e2695-3ece-0354-e7b4-a21d8c396f16	2021-05-25 03:39:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:39:36.877+03	2021-05-25 03:39:36.883+03	
78df6e9a-4c9a-662b-2b19-36f1fdea2824	2021-05-25 03:39:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:39:56.877+03	2021-05-25 03:39:56.883+03	
863f055d-ec51-5f1e-0e08-87f43f6742e8	2021-05-25 03:40:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:40:06.877+03	2021-05-25 03:40:06.884+03	
ee782fab-42e4-e91c-620a-f6dee9474fb0	2021-05-25 03:40:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:40:26.877+03	2021-05-25 03:40:27.132+03	
b8645fd7-ad15-e569-4bc5-aa52bece1be1	2021-05-25 03:40:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:40:46.877+03	2021-05-25 03:40:46.89+03	
99a1c1f9-b4b7-adee-5436-89b6ca200224	2021-05-25 03:41:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:41:06.877+03	2021-05-25 03:41:06.883+03	
86451e13-a80c-08a6-ed97-e12bfc1ac783	2021-05-25 03:41:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:41:26.877+03	2021-05-25 03:41:27.121+03	
609c675d-61b8-d7eb-8a49-0988a2889048	2021-05-25 03:41:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:41:46.877+03	2021-05-25 03:41:46.883+03	
f49f0c58-6da8-af48-2b19-7ec4bf1e08da	2021-05-25 03:42:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:42:06.877+03	2021-05-25 03:42:06.884+03	
733a64b9-fb95-67f6-6bfe-1ca95ea7b87f	2021-05-25 03:21:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:21:56.877+03	2021-05-25 03:21:56.884+03	
cdec6005-71f9-7baf-45c8-d437bb88cc42	2021-05-25 03:22:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:22:16.877+03	2021-05-25 03:22:16.883+03	
adf5b939-1c43-7e74-4617-e0209c7fef4e	2021-05-25 03:22:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:22:36.877+03	2021-05-25 03:22:36.884+03	
b3ed716c-f025-9f0e-7121-45817def4dec	2021-05-25 03:22:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:22:56.877+03	2021-05-25 03:22:56.884+03	
0345e8cc-d7e9-56b6-1943-526a7dd2e84a	2021-05-25 03:23:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:23:16.877+03	2021-05-25 03:23:16.882+03	
60b6a85f-eff7-8c24-03f2-c434199398e9	2021-05-25 03:23:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:23:36.877+03	2021-05-25 03:23:36.883+03	
a9968256-7b07-1ec0-568b-ab7231c44842	2021-05-25 03:23:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:23:56.877+03	2021-05-25 03:23:57.224+03	
666cb6ed-92b7-898c-0d1d-b5ba8db468f9	2021-05-25 03:24:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:24:16.877+03	2021-05-25 03:24:16.884+03	
6f3068a4-6074-4f1a-0f71-f37647918e5a	2021-05-25 03:24:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:24:36.877+03	2021-05-25 03:24:36.885+03	
048573ef-9a72-036c-a03f-9e2932d9b512	2021-05-25 03:24:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:24:56.877+03	2021-05-25 03:24:56.884+03	
dd6b848b-d15b-a443-5a6b-93f3e47f6c89	2021-05-25 03:25:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:25:16.877+03	2021-05-25 03:25:16.883+03	
4797bff2-6949-e062-e20d-df703a026dc8	2021-05-25 03:25:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:25:36.877+03	2021-05-25 03:25:36.883+03	
d4931c6d-2230-f7de-d4c0-924482d25ee3	2021-05-25 03:25:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:25:56.877+03	2021-05-25 03:25:57.09+03	
952985a0-9391-8a78-6a39-8e6d2b1ccf4d	2021-05-25 03:26:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:26:16.877+03	2021-05-25 03:26:16.883+03	
7a4f751b-3f94-48d6-9c3e-8efe0d916a45	2021-05-25 03:26:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:26:36.877+03	2021-05-25 03:26:36.885+03	
96b2561b-91cd-1cab-c4dd-8dfe628520da	2021-05-25 03:26:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:26:56.877+03	2021-05-25 03:26:56.884+03	
e3eb0a01-3902-29a1-87da-8af444b085f4	2021-05-25 03:27:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:27:16.877+03	2021-05-25 03:27:16.882+03	
9da6d422-3715-c2ac-a609-ccf83b2fa554	2021-05-25 03:27:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:27:36.877+03	2021-05-25 03:27:36.883+03	
0db5eeb4-1b1a-4f8a-4f60-5842cfd00c64	2021-05-25 03:27:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:27:56.877+03	2021-05-25 03:27:56.884+03	
1dd628ba-0cdc-fbb1-2585-20761f55113b	2021-05-25 03:28:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:28:16.877+03	2021-05-25 03:28:16.884+03	
67c9ca0b-b66a-c905-9e3a-d363b48eeea6	2021-05-25 03:28:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:28:36.877+03	2021-05-25 03:28:36.884+03	
fa3cf8b5-195a-a03d-743b-62c8a885f51f	2021-05-25 03:28:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:28:56.877+03	2021-05-25 03:28:56.883+03	
317863b8-7f90-ceb9-f9f1-781cb8a911ed	2021-05-25 03:29:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:29:16.877+03	2021-05-25 03:29:16.884+03	
1576a06a-47b4-6315-ffa4-f61309c75221	2021-05-25 03:29:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:29:36.877+03	2021-05-25 03:29:36.883+03	
426bf978-8552-c198-a886-6de0ef3642a8	2021-05-25 03:29:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:29:56.877+03	2021-05-25 03:29:56.898+03	
072df9a8-c98b-4b6c-d227-c39b5d218140	2021-05-25 03:30:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:30:06.877+03	2021-05-25 03:30:07.118+03	
0730e542-d5ae-f19f-3245-c0f1d4213926	2021-05-25 03:30:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:30:26.877+03	2021-05-25 03:30:26.988+03	
d507c2cb-6bc1-8289-6254-3a8363e0380d	2021-05-25 03:30:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:30:46.877+03	2021-05-25 03:30:46.884+03	
1fe5b907-693e-c112-1a98-b0d7fd02e7ea	2021-05-25 03:31:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:31:06.877+03	2021-05-25 03:31:06.884+03	
3c74a270-aa43-736e-65c9-6e5cf0033c0d	2021-05-25 03:31:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:31:26.877+03	2021-05-25 03:31:26.883+03	
b9de9ef2-72d7-d98b-a696-6aaa6940b031	2021-05-25 03:31:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:31:46.877+03	2021-05-25 03:31:46.882+03	
ada757fd-0b6e-9aec-209c-b05e675f9b9a	2021-05-25 03:32:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:32:06.877+03	2021-05-25 03:32:06.888+03	
75b09624-a021-9dd1-d536-683ac016eba3	2021-05-25 03:32:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:32:26.877+03	2021-05-25 03:32:27.173+03	
f402a440-a88c-185a-5c39-d9a2ffbec4bc	2021-05-25 03:32:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:32:46.877+03	2021-05-25 03:32:46.883+03	
4283edb9-1f17-b937-0e8f-87d48b8a9973	2021-05-25 03:33:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:33:06.877+03	2021-05-25 03:33:06.884+03	
6a10e6c0-f970-1d52-d99a-ca8a3396076c	2021-05-25 03:33:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:33:26.877+03	2021-05-25 03:33:26.885+03	
f29a8f9e-cdfa-7509-e638-c6ddc1a3c661	2021-05-25 03:33:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:33:46.877+03	2021-05-25 03:33:46.883+03	
75b32a7b-5c37-fedd-7c26-be47f1571bb5	2021-05-25 03:34:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:34:06.877+03	2021-05-25 03:34:06.883+03	
cd1c4aba-e354-fdf0-df2c-3d71aabd4baa	2021-05-25 03:34:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:34:26.877+03	2021-05-25 03:34:26.884+03	
45b9c6f3-cbe6-0e42-34db-b688a145c727	2021-05-25 03:34:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:34:46.877+03	2021-05-25 03:34:46.885+03	
e0d96d4e-c7ad-10f8-09cd-0db55aa76395	2021-05-25 03:35:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:35:06.877+03	2021-05-25 03:35:06.882+03	
97e2f2ae-061a-c24b-abb0-d89dbf864401	2021-05-25 03:35:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:35:26.877+03	2021-05-25 03:35:26.884+03	
85baa406-2c5c-0088-6217-6862bc8e97b3	2021-05-25 03:35:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:35:46.877+03	2021-05-25 03:35:46.882+03	
b9b389bd-4856-81df-01d6-b258ead7f375	2021-05-25 03:36:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:36:06.877+03	2021-05-25 03:36:06.884+03	
8df657c3-0ff9-1107-eb02-890d01e3fef9	2021-05-25 03:36:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:36:26.877+03	2021-05-25 03:36:27.132+03	
9634a9a3-8286-5a76-b0bd-11728353016d	2021-05-25 03:36:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:36:46.877+03	2021-05-25 03:36:46.883+03	
32de8ef1-adee-323c-8341-99f7f314f68b	2021-05-25 03:37:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:37:06.877+03	2021-05-25 03:37:06.884+03	
1e592c8d-4fde-7b45-b843-32111cf625ef	2021-05-25 03:37:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:37:26.877+03	2021-05-25 03:37:27.233+03	
99246d5a-7714-ab56-af6c-903da1ba3e39	2021-05-25 03:37:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:37:46.877+03	2021-05-25 03:37:46.884+03	
06e520ae-2983-8938-0cbc-75d4477ac8bd	2021-05-25 03:38:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:38:06.877+03	2021-05-25 03:38:06.883+03	
8cc3c6cc-d6aa-ec79-2c02-d2e49670188e	2021-05-25 03:38:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:38:26.877+03	2021-05-25 03:38:26.884+03	
f4070cc3-23c7-df04-93c2-1f08ef441a4d	2021-05-25 03:38:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:38:46.877+03	2021-05-25 03:38:46.882+03	
7f4cb6c0-6f47-978a-d791-1f01f186dec7	2021-05-25 03:39:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:39:06.877+03	2021-05-25 03:39:06.882+03	
8978f064-402d-858a-5a30-21bb99ac238d	2021-05-25 03:39:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:39:26.877+03	2021-05-25 03:39:27.172+03	
f91ac5b1-d007-6c40-076d-3cbaee84b40d	2021-05-25 03:39:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:39:46.877+03	2021-05-25 03:39:46.889+03	
74e1d6e3-9d74-2215-b9d5-236b7c86737e	2021-05-25 03:40:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 03:40:00.877+03	2021-05-25 03:40:00.883+03	ERROR
c6306838-61cd-eda2-be3a-3ef20ee4a6cc	2021-05-25 03:40:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:40:16.877+03	2021-05-25 03:40:16.883+03	
f929be0a-efdd-aed1-76c2-797efa942b03	2021-05-25 03:40:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:40:36.877+03	2021-05-25 03:40:36.885+03	
32c8e248-a2fd-ffe9-17a8-876e7b9fc791	2021-05-25 03:40:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:40:56.877+03	2021-05-25 03:40:56.883+03	
a17aaf00-cd11-88d4-8662-97e81e498e8f	2021-05-25 03:41:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:41:16.877+03	2021-05-25 03:41:17.074+03	
536ccc62-580e-67f0-c2b1-afffcc3790b1	2021-05-25 03:41:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:41:36.877+03	2021-05-25 03:41:36.882+03	
449aed3a-489e-51a8-9433-5826afad848f	2021-05-25 03:41:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:41:56.877+03	2021-05-25 03:41:56.883+03	
67ccc79e-5428-fead-53ce-2540e4532891	2021-05-25 03:42:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:42:16.877+03	2021-05-25 03:42:16.883+03	
507c32b1-0014-5cb4-098e-52bb04e5bdf7	2021-05-25 03:42:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:42:26.877+03	2021-05-25 03:42:26.883+03	
dbf14995-d603-8605-f50f-759d1446740c	2021-05-25 03:42:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:42:46.877+03	2021-05-25 03:42:46.882+03	
6322ca42-911f-a368-21b0-11a7aa0f5fe6	2021-05-25 03:43:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:43:06.877+03	2021-05-25 03:43:06.886+03	
32ae6b01-d233-a5ae-b121-adb8ee15b4cd	2021-05-25 03:43:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:43:26.877+03	2021-05-25 03:43:26.884+03	
701d4984-b43e-ea21-93b4-65713493c859	2021-05-25 03:43:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:43:46.877+03	2021-05-25 03:43:46.884+03	
a79893eb-7592-b6dc-9f03-a18a393b9b6d	2021-05-25 03:44:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:44:06.877+03	2021-05-25 03:44:06.884+03	
d4f402fe-d33b-ec67-e38e-e48028c212a6	2021-05-25 03:44:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:44:26.877+03	2021-05-25 03:44:27.114+03	
19a5337b-b589-4eda-ec09-50a904789f43	2021-05-25 03:44:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:44:46.877+03	2021-05-25 03:44:47.212+03	
2b764a11-3344-6578-3839-c0fb9fdfcc05	2021-05-25 03:45:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:45:06.877+03	2021-05-25 03:45:06.884+03	
32298def-745e-8371-adf4-6aa2b141710e	2021-05-25 03:45:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:45:26.877+03	2021-05-25 03:45:27.124+03	
7c8847c7-ab37-d241-76f6-bebb69ce52b5	2021-05-25 03:45:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:45:46.877+03	2021-05-25 03:45:46.883+03	
38fa03e2-7fa2-6a42-7b2b-b16555737851	2021-05-25 03:46:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:46:06.877+03	2021-05-25 03:46:06.902+03	
c1b92aa6-4076-1078-85bb-ecfd63f1614a	2021-05-25 03:46:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:46:26.877+03	2021-05-25 03:46:27.123+03	
d2b2a027-a068-34ec-be18-14591c3dfc4c	2021-05-25 03:46:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:46:46.877+03	2021-05-25 03:46:46.885+03	
0eb5b24a-b896-eef1-8d73-9d21c1910fb0	2021-05-25 03:47:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:47:06.877+03	2021-05-25 03:47:06.885+03	
120c9bea-48c0-cef2-1da6-05fab3068829	2021-05-25 03:47:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:47:26.877+03	2021-05-25 03:47:26.882+03	
6406b24f-60d3-6f6d-05ee-279b6afbdb7d	2021-05-25 03:47:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:47:46.877+03	2021-05-25 03:47:46.884+03	
391c7715-8383-60eb-c140-8390df6da5cd	2021-05-25 03:48:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:48:06.877+03	2021-05-25 03:48:07.133+03	
459f6ae3-e510-cab4-bc3b-31578cf0b016	2021-05-25 03:48:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:48:26.877+03	2021-05-25 03:48:27.114+03	
d94a2f90-5e29-0083-2330-22abc71e38e4	2021-05-25 03:48:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:48:46.877+03	2021-05-25 03:48:46.884+03	
999a550f-8e83-6aec-afd0-4d7edc1d28bf	2021-05-25 03:49:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:49:06.877+03	2021-05-25 03:49:06.883+03	
1f676df7-e946-62b4-ec52-8d9b14d8eccf	2021-05-25 03:49:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:49:26.877+03	2021-05-25 03:49:27.592+03	
5a4e7290-e7be-048a-76ef-82cf40891228	2021-05-25 03:49:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:49:46.877+03	2021-05-25 03:49:46.883+03	
b974fd3f-df38-313a-8484-5db318e17acc	2021-05-25 03:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 03:50:00.877+03	2021-05-25 03:50:00.883+03	ERROR
b1743dfa-cc58-b51b-0244-17c60e6d43b8	2021-05-25 03:50:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:50:16.877+03	2021-05-25 03:50:16.884+03	
44833205-f6ae-f85b-7d4c-257689874990	2021-05-25 03:50:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:50:36.877+03	2021-05-25 03:50:36.886+03	
85fe7c28-a2ff-8a34-adfd-2d86385530ce	2021-05-25 03:50:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:50:56.877+03	2021-05-25 03:50:56.882+03	
798b15f5-3dd0-08a8-1f83-fc4e43e60464	2021-05-25 03:51:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:51:16.877+03	2021-05-25 03:51:16.886+03	
6f96cee0-8093-92e0-0fd6-201ab86653cf	2021-05-25 03:51:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:51:36.877+03	2021-05-25 03:51:36.884+03	
d47766d0-f26f-2bbc-ec20-0343f25dc367	2021-05-25 03:51:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:51:56.877+03	2021-05-25 03:51:57.166+03	
9856eef1-0c92-c685-c766-7d905d696247	2021-05-25 03:52:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:52:16.877+03	2021-05-25 03:52:16.886+03	
f61c1782-dcf9-7dae-efa8-98b7d1093176	2021-05-25 03:52:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:52:36.877+03	2021-05-25 03:52:37.175+03	
e5dfc5e5-f8f8-c246-9534-2378038cbe00	2021-05-25 03:52:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:52:56.877+03	2021-05-25 03:52:57.162+03	
cc3578a7-21e4-1405-1e3a-3f72d502b6a3	2021-05-25 03:53:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:53:16.877+03	2021-05-25 03:53:16.883+03	
ae477d54-6572-f7ab-0812-50daac14f1bc	2021-05-25 03:53:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:53:36.877+03	2021-05-25 03:53:36.884+03	
9aa3d0a4-1d78-d93a-4c95-f60cff3c9e75	2021-05-25 03:53:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:53:56.877+03	2021-05-25 03:53:56.883+03	
71a11ca1-e200-41fa-8369-8dcadae24b17	2021-05-25 03:54:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:54:16.877+03	2021-05-25 03:54:16.885+03	
3089461a-af0b-d111-88df-8314c05d5a28	2021-05-25 03:54:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:54:36.877+03	2021-05-25 03:54:36.885+03	
5d4bdeee-6825-f8bb-8750-c438a8d7f1df	2021-05-25 03:54:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:54:57.877+03	2021-05-25 03:54:57.885+03	
c8558ce9-7df0-fb16-8c43-b73fa483df8d	2021-05-25 03:55:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:55:18.877+03	2021-05-25 03:55:18.882+03	
e0f26efe-8ca6-9d40-752f-eba20ab58cd0	2021-05-25 03:55:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:55:38.877+03	2021-05-25 03:55:38.883+03	
eddd0860-e7c3-6c16-edf8-a7ecfff64ca3	2021-05-25 03:55:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:55:58.877+03	2021-05-25 03:55:58.882+03	
b544035e-b823-fc1c-13ee-09d315916f13	2021-05-25 03:56:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:56:18.877+03	2021-05-25 03:56:18.882+03	
c514d4e7-d6f8-4b39-612f-47b3d6e094cb	2021-05-25 03:56:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:56:38.877+03	2021-05-25 03:56:38.886+03	
1d9f5be8-d323-4730-4b31-ec54d92239ac	2021-05-25 03:56:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:56:58.877+03	2021-05-25 03:56:58.885+03	
02df61e8-b8ed-1f2b-7636-9ea6dc84e3d5	2021-05-25 03:57:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:57:18.877+03	2021-05-25 03:57:18.883+03	
f20f7d8b-991e-11fb-424d-8db3a26f35af	2021-05-25 03:57:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:57:38.877+03	2021-05-25 03:57:38.883+03	
7c5f73bf-c77e-d2a5-a05b-b9e2685e1dfa	2021-05-25 03:57:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:57:58.877+03	2021-05-25 03:57:58.883+03	
69df8f51-be79-c1f8-a43b-ae1f6cb83fcf	2021-05-25 03:58:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:58:18.877+03	2021-05-25 03:58:18.884+03	
30188b3e-0982-99db-2e5a-f7c8b5f08e38	2021-05-25 03:58:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:58:38.877+03	2021-05-25 03:58:38.884+03	
412da1e8-3ed2-5e14-623a-095ab41eadbf	2021-05-25 03:58:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:58:58.877+03	2021-05-25 03:58:58.883+03	
06554552-aec3-796a-a87a-b20c51038c68	2021-05-25 03:59:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:59:18.877+03	2021-05-25 03:59:18.883+03	
4ef7b29a-0c56-3662-07b2-972d68100bf9	2021-05-25 03:59:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:59:38.877+03	2021-05-25 03:59:38.884+03	
2ab410e0-63ea-b00b-3f90-2cb485d3b60e	2021-05-25 03:59:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:59:59.877+03	2021-05-25 03:59:59.883+03	
d86649d5-07fd-a018-996b-c3ea37f07ea6	2021-05-25 04:00:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:00:09.877+03	2021-05-25 04:00:09.888+03	
d260eb2e-e9e2-b050-f3d8-969dde31f1bc	2021-05-25 04:00:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:00:29.877+03	2021-05-25 04:00:29.884+03	
6a873ada-e238-2d0f-cea1-070578029dfa	2021-05-25 04:00:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:00:49.877+03	2021-05-25 04:00:50.341+03	
c26d8e68-728c-02f8-be0e-a7cb19cb7102	2021-05-25 04:01:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:01:09.877+03	2021-05-25 04:01:09.884+03	
f4861842-0a5b-743a-0efd-3040b777fdcc	2021-05-25 04:01:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:01:29.877+03	2021-05-25 04:01:29.885+03	
ee4cecc3-2cd1-0070-c857-ccf383757dba	2021-05-25 04:01:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:01:49.877+03	2021-05-25 04:01:49.885+03	
59ec14a0-97c3-11de-a63b-408dca09ad5d	2021-05-25 04:02:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:02:10.877+03	2021-05-25 04:02:10.884+03	
e99bdbac-dfd1-b74c-5936-9343d93b7dda	2021-05-25 04:02:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:02:30.877+03	2021-05-25 04:02:30.884+03	
1d4d8f2e-6ad1-98a5-fa84-bfe9bcbb9b36	2021-05-25 04:02:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:02:50.877+03	2021-05-25 04:02:50.883+03	
c3ca2dd1-79ef-2174-6640-dbc11c65a072	2021-05-25 03:42:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:42:36.877+03	2021-05-25 03:42:36.883+03	
28f71aa8-2993-59ad-712f-c72e4e22e07b	2021-05-25 03:42:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:42:56.877+03	2021-05-25 03:42:56.899+03	
41c74008-ada3-d0a3-1fe3-d72c217a8a2a	2021-05-25 03:43:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:43:16.877+03	2021-05-25 03:43:16.883+03	
bd918e75-d41a-b156-80d5-024a423fac7a	2021-05-25 03:43:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:43:36.877+03	2021-05-25 03:43:37.134+03	
30a7c5cf-69f2-a350-1f1a-284ad846aa13	2021-05-25 03:43:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:43:56.877+03	2021-05-25 03:43:56.882+03	
e6a289be-8351-db46-720b-93cfe948a267	2021-05-25 03:44:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:44:16.877+03	2021-05-25 03:44:16.884+03	
bffb5033-e3f1-cca0-91d5-39f8cfecc352	2021-05-25 03:44:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:44:36.877+03	2021-05-25 03:44:36.884+03	
a17f244d-26cc-f45c-8f57-6fe34a639e1e	2021-05-25 03:44:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:44:56.877+03	2021-05-25 03:44:56.884+03	
a28ef28d-6b26-5dbe-7e86-e6194f9f03c3	2021-05-25 03:45:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:45:16.877+03	2021-05-25 03:45:16.884+03	
53562cc6-be99-28b8-243b-f32a93751410	2021-05-25 03:45:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:45:36.877+03	2021-05-25 03:45:37.156+03	
c014232c-ae84-466d-1d66-9c7f2196b54d	2021-05-25 03:45:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:45:56.877+03	2021-05-25 03:45:56.884+03	
8699a14a-5197-e386-b338-c5375106b1b2	2021-05-25 03:46:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:46:16.877+03	2021-05-25 03:46:16.884+03	
e5ff4fee-b61c-108e-7fb8-5a5b126f527f	2021-05-25 03:46:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:46:36.877+03	2021-05-25 03:46:36.883+03	
f0da1e57-caeb-0640-ebd3-b0369cc5b1b2	2021-05-25 03:46:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:46:56.877+03	2021-05-25 03:46:56.884+03	
2cccf3cd-84d8-c0b1-b392-32dfbdf2ab09	2021-05-25 03:47:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:47:16.877+03	2021-05-25 03:47:16.885+03	
0f4f92b9-241e-908f-2c69-4781f00bef28	2021-05-25 03:47:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:47:36.877+03	2021-05-25 03:47:36.882+03	
975772fa-8fdd-baac-48c6-033a371df0c7	2021-05-25 03:47:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:47:56.877+03	2021-05-25 03:47:56.884+03	
3a9ab2e0-9858-4c8a-fe87-2d5f21b39b16	2021-05-25 03:48:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:48:16.877+03	2021-05-25 03:48:16.884+03	
72037ebb-c8c0-e4f4-f4f2-3e420f097029	2021-05-25 03:48:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:48:36.877+03	2021-05-25 03:48:37.425+03	
246e183b-c504-8694-422d-4fccb5d763e2	2021-05-25 03:48:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:48:56.877+03	2021-05-25 03:48:56.885+03	
75ad9123-6b5e-66d2-541b-2c72e63a04fa	2021-05-25 03:49:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:49:16.877+03	2021-05-25 03:49:16.883+03	
66d11f0f-f1d6-b2ac-5d7d-29de10bd3966	2021-05-25 03:49:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:49:36.877+03	2021-05-25 03:49:36.884+03	
8511fbf8-0695-7c3e-f0d8-2c5f59018a38	2021-05-25 03:49:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:49:56.877+03	2021-05-25 03:49:56.883+03	
4425d455-1ff7-5e66-79ee-572a0365147e	2021-05-25 03:50:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:50:06.877+03	2021-05-25 03:50:06.883+03	
1bf1b699-69da-9c57-8118-47d3db86e2cb	2021-05-25 03:50:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:50:26.877+03	2021-05-25 03:50:26.882+03	
c5feac74-e995-0e94-56c2-fbf6247bb952	2021-05-25 03:50:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:50:46.877+03	2021-05-25 03:50:46.885+03	
d7c9707d-327f-9b2e-bc1f-9fa28d03b839	2021-05-25 03:51:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:51:06.877+03	2021-05-25 03:51:07.218+03	
74dae96c-126d-f20d-5962-d3e84f6dbd4d	2021-05-25 03:51:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:51:26.877+03	2021-05-25 03:51:26.883+03	
63360c0a-877c-4b9f-87d8-144aafa4cd2b	2021-05-25 03:51:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:51:46.877+03	2021-05-25 03:51:46.885+03	
9b15ce24-d18c-0a72-59fb-1888d7dbbd60	2021-05-25 03:52:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:52:06.877+03	2021-05-25 03:52:06.883+03	
0d1c18f6-f12a-6655-c507-3ae1b0d13fa5	2021-05-25 03:52:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:52:26.877+03	2021-05-25 03:52:26.886+03	
f703880c-3406-94bd-c053-2c22ce8987cf	2021-05-25 03:52:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:52:46.877+03	2021-05-25 03:52:46.886+03	
b3eb6766-e2c2-e1e4-9653-ae5854c488c6	2021-05-25 03:53:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:53:06.877+03	2021-05-25 03:53:06.885+03	
cbb16475-00ec-f910-7d32-b0c8adff5e08	2021-05-25 03:53:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:53:26.877+03	2021-05-25 03:53:26.884+03	
5a6c694c-6d13-fd1d-d41e-5dc2fab3a07e	2021-05-25 03:53:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:53:46.877+03	2021-05-25 03:53:46.884+03	
655126d1-6c70-fb36-2eb5-dae20d7d8beb	2021-05-25 03:54:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:54:06.877+03	2021-05-25 03:54:06.886+03	
0dff20bd-31fb-37f2-fe4a-197a68a083ec	2021-05-25 03:54:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:54:26.877+03	2021-05-25 03:54:27.161+03	
22295e8b-1842-c65f-8502-fde5cd4c9dbc	2021-05-25 03:54:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:54:46.877+03	2021-05-25 03:54:46.886+03	
406290e4-8456-9459-3785-3b88d3d21774	2021-05-25 03:55:07.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:55:07.878+03	2021-05-25 03:55:07.885+03	
4f132e0e-0433-645c-0cca-23aa2128da15	2021-05-25 03:55:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:55:28.877+03	2021-05-25 03:55:29.129+03	
4c81a649-b492-f088-44d7-2204fb799ed4	2021-05-25 03:55:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:55:48.877+03	2021-05-25 03:55:48.884+03	
36f51d64-c8f5-bd2d-5f22-31cc33fd8725	2021-05-25 03:56:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:56:08.877+03	2021-05-25 03:56:08.895+03	
d188ae18-be33-b279-debe-059639c621ba	2021-05-25 03:56:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:56:28.877+03	2021-05-25 03:56:28.888+03	
7deefef8-fd59-3d65-6580-4efe2b5681a5	2021-05-25 03:56:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:56:48.877+03	2021-05-25 03:56:48.884+03	
e96bebc9-9030-a3c3-a13e-d94a60e88549	2021-05-25 03:57:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:57:08.877+03	2021-05-25 03:57:08.884+03	
6e93a68b-6212-39b1-cd6d-f868f8a4c79e	2021-05-25 03:57:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:57:28.877+03	2021-05-25 03:57:28.885+03	
fa727cbe-8e4b-6d9d-415a-7630813027bf	2021-05-25 03:57:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:57:48.877+03	2021-05-25 03:57:48.893+03	
fbac7ea8-6c59-0ad9-a737-604daad0d6d9	2021-05-25 03:58:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:58:08.877+03	2021-05-25 03:58:08.885+03	
1baa9e56-3d52-3d3b-5150-8e413f4f9470	2021-05-25 03:58:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:58:28.877+03	2021-05-25 03:58:28.885+03	
4636903f-3ded-ae2c-a9f4-f1947c56786e	2021-05-25 03:58:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:58:48.877+03	2021-05-25 03:58:48.883+03	
ead1dbe8-46d6-6537-4c5a-92cce8471292	2021-05-25 03:59:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:59:08.877+03	2021-05-25 03:59:09.1+03	
c881cb26-5442-f8ab-97a1-62478529006d	2021-05-25 03:59:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:59:28.877+03	2021-05-25 03:59:28.93+03	
eab2e2c1-84a7-aa5e-3226-588feb98ea9a	2021-05-25 03:59:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 03:59:49.876+03	2021-05-25 03:59:49.883+03	
9b181686-a514-de16-9a3c-b17786b81332	2021-05-25 04:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 04:00:00.877+03	2021-05-25 04:00:00.882+03	ERROR
aefa030a-6143-bf87-8c32-75c398257c69	2021-05-25 04:00:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:00:19.877+03	2021-05-25 04:00:20.12+03	
30e19a2b-b6c6-04fd-b8f2-d5b0e9f49dbd	2021-05-25 04:00:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:00:39.877+03	2021-05-25 04:00:39.886+03	
9486e764-0572-98e1-489d-8ea1a4a04de4	2021-05-25 04:00:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:00:59.877+03	2021-05-25 04:00:59.883+03	
5dadda74-f31e-bed1-3fa1-a9f62c74e334	2021-05-25 04:01:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:01:19.877+03	2021-05-25 04:01:19.884+03	
098f9681-8531-0769-8ba2-9b9f37445f69	2021-05-25 04:01:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:01:39.877+03	2021-05-25 04:01:39.886+03	
de9aac23-d51a-0fdc-5c01-7e824afc9423	2021-05-25 04:01:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:01:59.877+03	2021-05-25 04:01:59.884+03	
e8946e38-3803-3532-b9b3-488a786fdd17	2021-05-25 04:02:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:02:20.877+03	2021-05-25 04:02:20.883+03	
b1281caf-12b0-8147-7b60-0cc0ff6f6dfe	2021-05-25 04:02:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:02:40.877+03	2021-05-25 04:02:40.883+03	
a12220b4-b9f7-c33a-8fc1-38d9f0456ff9	2021-05-25 04:03:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:03:00.877+03	2021-05-25 04:03:00.883+03	
f371c4d6-a4a7-5659-7dbb-21b864ab0d42	2021-05-25 04:03:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:03:10.877+03	2021-05-25 04:03:10.883+03	
f644d18d-b27d-26d6-df3c-7da3d67e7432	2021-05-25 04:03:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:03:30.877+03	2021-05-25 04:03:30.882+03	
9bcfbef4-ff66-1e4d-835c-922cae4ef77f	2021-05-25 04:03:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:03:50.877+03	2021-05-25 04:03:50.884+03	
4845fc60-9cc3-6875-850b-3bb90b47f356	2021-05-25 04:04:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:04:10.877+03	2021-05-25 04:04:10.882+03	
6a9daa97-a911-319b-3814-e6b084bfedfe	2021-05-25 04:04:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:04:30.877+03	2021-05-25 04:04:30.883+03	
57868e3e-360e-d011-2cf0-3ad9d6755fc8	2021-05-25 04:04:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:04:50.877+03	2021-05-25 04:04:50.884+03	
48fd9484-6a16-d200-6c39-3a912f3fdf9f	2021-05-25 04:05:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:05:10.877+03	2021-05-25 04:05:10.884+03	
4feea2c4-9c39-a632-0897-762195fcfc82	2021-05-25 04:05:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:05:30.877+03	2021-05-25 04:05:30.882+03	
276a2d25-d8b7-19ec-4bb8-19de13b834b9	2021-05-25 04:05:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:05:50.877+03	2021-05-25 04:05:50.883+03	
2ee6bef1-2328-a5ad-3750-8750eaf20663	2021-05-25 04:06:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:06:10.877+03	2021-05-25 04:06:10.883+03	
2631e981-bfca-1aba-6203-8a9dda3ac7aa	2021-05-25 04:06:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:06:30.877+03	2021-05-25 04:06:30.882+03	
0f5c085f-d538-5c36-7e32-aa06027b5406	2021-05-25 04:06:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:06:50.877+03	2021-05-25 04:06:50.884+03	
7f92cfde-a453-f7ba-f264-3db9938cf3a0	2021-05-25 04:07:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:07:10.877+03	2021-05-25 04:07:10.885+03	
ea79d68f-bfe7-6f12-2135-a1e08d46c08f	2021-05-25 04:07:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:07:30.877+03	2021-05-25 04:07:30.883+03	
9c775e30-e92e-3fde-88b5-4d2cf92ef1e7	2021-05-25 04:07:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:07:50.877+03	2021-05-25 04:07:50.884+03	
0f7b5ee2-a461-fdc8-2838-765b499eec3f	2021-05-25 04:08:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:08:10.877+03	2021-05-25 04:08:10.942+03	
31d411ae-bbbf-1a4b-c82d-e7da959b9290	2021-05-25 04:08:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:08:30.877+03	2021-05-25 04:08:30.883+03	
20f3d904-3fbc-131c-1501-f9176bf5c7bf	2021-05-25 04:08:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:08:50.877+03	2021-05-25 04:08:50.883+03	
254dfd2a-c561-bc1e-533c-2c628aaa6a47	2021-05-25 04:09:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:09:10.877+03	2021-05-25 04:09:11.121+03	
c5b3f0ba-7d44-d766-d5af-2ce610bbb639	2021-05-25 04:09:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:09:30.877+03	2021-05-25 04:09:30.884+03	
f1589eff-36e0-2bd1-6b30-04e5ed3b1fe3	2021-05-25 04:09:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:09:50.877+03	2021-05-25 04:09:50.885+03	
317aee0a-f4a4-8e23-4288-fa24852602ce	2021-05-25 04:10:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:10:10.877+03	2021-05-25 04:10:10.884+03	
9880a2cf-75ba-16b7-d7af-d7eecfc62f7f	2021-05-25 04:10:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:10:30.877+03	2021-05-25 04:10:30.883+03	
cf936a2d-2104-6b6a-54dc-8e89b2e977b0	2021-05-25 04:10:50.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:10:50.877+03	2021-05-25 04:10:50.887+03	
3d50a18d-576f-4e2a-5104-a9ddbbe89b57	2021-05-25 04:11:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:11:10.877+03	2021-05-25 04:11:10.883+03	
7f94b283-abdd-8e5b-9b4a-0ab0c37e9eff	2021-05-25 04:11:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:11:30.877+03	2021-05-25 04:11:30.884+03	
cb380908-ca09-9632-ffee-79a53c137a41	2021-05-25 04:11:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:11:50.877+03	2021-05-25 04:11:50.882+03	
e63fa442-09da-3b95-09be-400ef29d8172	2021-05-25 04:12:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:12:10.877+03	2021-05-25 04:12:10.882+03	
859ed16d-f493-7d0f-884e-53a3b75df023	2021-05-25 04:12:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:12:30.877+03	2021-05-25 04:12:30.882+03	
54206b34-7dcf-0967-9752-d80f555a8c28	2021-05-25 04:12:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:12:50.877+03	2021-05-25 04:12:50.884+03	
984b6ea4-0442-3471-4f6a-6699bcea3313	2021-05-25 04:13:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:13:11.877+03	2021-05-25 04:13:11.883+03	
2628db04-84c7-a276-085d-d9308271fc70	2021-05-25 04:13:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:13:31.877+03	2021-05-25 04:13:31.884+03	
4c54eb12-fcc4-b7cf-b969-4f6aac819929	2021-05-25 04:13:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:13:51.877+03	2021-05-25 04:13:51.882+03	
4847bb9c-0b6f-26c5-ceba-73ae577536a1	2021-05-25 04:14:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:14:11.877+03	2021-05-25 04:14:11.884+03	
5e666d10-44b0-5d28-7199-2d540cfeac3a	2021-05-25 04:14:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:14:31.877+03	2021-05-25 04:14:31.883+03	
5725d0e7-0449-841c-5d76-b59b5517c3d7	2021-05-25 04:14:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:14:51.877+03	2021-05-25 04:14:51.883+03	
aabb219b-8db2-983f-eab9-e3dfde4824ca	2021-05-25 04:15:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:15:11.877+03	2021-05-25 04:15:11.885+03	
c0867124-e07c-114d-3f6b-cfdc2779ad7e	2021-05-25 04:15:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:15:31.877+03	2021-05-25 04:15:31.883+03	
f196b847-e4b1-d4fb-042d-9e9982bd8ed2	2021-05-25 04:15:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:15:51.877+03	2021-05-25 04:15:51.882+03	
b88957a7-e8ee-e9df-e9bb-e3c552b0433c	2021-05-25 04:16:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:16:11.877+03	2021-05-25 04:16:11.885+03	
2002d631-951c-9cf1-6645-6caef66fc687	2021-05-25 04:16:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:16:31.877+03	2021-05-25 04:16:31.882+03	
db680cf8-9091-4381-6cfd-95a5535fca43	2021-05-25 04:16:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:16:51.877+03	2021-05-25 04:16:51.884+03	
bb799cfc-0546-50c8-a095-dc4601609b4d	2021-05-25 04:17:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:17:11.877+03	2021-05-25 04:17:11.882+03	
5e39374e-894d-1903-ba2c-ed1d75c9320b	2021-05-25 04:17:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:17:31.877+03	2021-05-25 04:17:32.15+03	
521f2e03-7ba8-5444-2f0e-cb8dd2461280	2021-05-25 04:17:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:17:51.877+03	2021-05-25 04:17:51.884+03	
e59d553c-e785-ceee-82a2-8266a7b08ba3	2021-05-25 04:18:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:18:11.877+03	2021-05-25 04:18:11.882+03	
1e4119e7-fe5f-4fb5-d7ca-820398a6b23b	2021-05-25 04:18:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:18:31.877+03	2021-05-25 04:18:31.883+03	
1aca57e6-379b-ca3c-b32f-e7e4d9a3ffac	2021-05-25 04:18:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:18:51.877+03	2021-05-25 04:18:51.882+03	
9e233dc1-74e8-0542-1a5e-e7eef2e194c1	2021-05-25 04:19:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:19:11.877+03	2021-05-25 04:19:11.883+03	
21925193-f4e0-3bbc-c074-3ff7a70966f7	2021-05-25 04:19:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:19:31.877+03	2021-05-25 04:19:31.885+03	
c2475caa-8eeb-5bcc-8252-2edff0f7d264	2021-05-25 04:19:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:19:51.877+03	2021-05-25 04:19:51.883+03	
7be92c1d-57db-4dfa-297b-8a9a5102d884	2021-05-25 04:20:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:20:01.877+03	2021-05-25 04:20:01.883+03	
448b22cb-551f-86d7-dce1-a48e1ab8a32c	2021-05-25 04:20:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:20:21.877+03	2021-05-25 04:20:21.884+03	
033d8faf-93fb-6e32-b794-1960d6573d12	2021-05-25 04:20:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:20:41.877+03	2021-05-25 04:20:41.883+03	
d9101481-8e0a-c885-f8ab-20dcc67e8b02	2021-05-25 04:21:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:21:01.877+03	2021-05-25 04:21:01.883+03	
1117d949-a0f3-f356-10cc-6c15d2563352	2021-05-25 04:21:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:21:21.877+03	2021-05-25 04:21:21.885+03	
24ecea25-00cb-adfd-2588-364c225d1829	2021-05-25 04:21:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:21:41.877+03	2021-05-25 04:21:41.882+03	
a858a4c8-63f4-dce1-1ca0-dacba43adea5	2021-05-25 04:22:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:22:01.877+03	2021-05-25 04:22:01.889+03	
12b5d684-d7a2-cbcb-c339-7d2ceaa07656	2021-05-25 04:22:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:22:21.877+03	2021-05-25 04:22:21.884+03	
2df97583-3a94-7462-bed0-4a5b4bb29efc	2021-05-25 04:22:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:22:41.877+03	2021-05-25 04:22:41.883+03	
88e647f0-7619-cdd5-3eac-5f400aafbd49	2021-05-25 04:23:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:23:01.877+03	2021-05-25 04:23:01.895+03	
5820063e-bed1-3fa3-f3d1-a369a289f443	2021-05-25 04:23:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:23:21.877+03	2021-05-25 04:23:21.883+03	
e2687f1f-61d2-4add-f5df-b5b99e545a43	2021-05-25 04:23:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:23:41.877+03	2021-05-25 04:23:41.885+03	
89755b99-8348-d352-bee4-7883b270544b	2021-05-25 04:03:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:03:20.877+03	2021-05-25 04:03:20.883+03	
3583ac66-918a-b546-e431-4c1ca0421816	2021-05-25 04:03:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:03:40.877+03	2021-05-25 04:03:40.883+03	
7063a627-b6c7-b00c-f79d-e6c8da49ae31	2021-05-25 04:04:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:04:00.877+03	2021-05-25 04:04:00.885+03	
3d3fa6a8-c513-5b4b-a811-b8f207bf992c	2021-05-25 04:04:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:04:20.877+03	2021-05-25 04:04:20.882+03	
ccb92239-1364-9bab-e0d5-77cf74befc9d	2021-05-25 04:04:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:04:40.877+03	2021-05-25 04:04:40.886+03	
eca6fbb5-0eb6-5f6d-bc4b-577c904da335	2021-05-25 04:05:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:05:00.877+03	2021-05-25 04:05:00.889+03	
35f6b513-288d-040a-3987-cfcc720058f1	2021-05-25 04:05:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:05:20.877+03	2021-05-25 04:05:20.885+03	
994ada2e-553b-5c1e-8d9f-cb1547ea25ea	2021-05-25 04:05:40.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:05:40.877+03	2021-05-25 04:05:40.884+03	
9ac921f7-bcc1-95df-1945-914b1ed6685c	2021-05-25 04:06:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:06:00.877+03	2021-05-25 04:06:00.885+03	
24e97c83-872f-a4d7-2b78-6b67baf9bba9	2021-05-25 04:06:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:06:20.877+03	2021-05-25 04:06:20.884+03	
1e65cac8-a35c-3121-2fe1-28daf9fc6243	2021-05-25 04:06:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:06:40.877+03	2021-05-25 04:06:40.884+03	
3a715c69-c85a-9e90-0eff-bbd6804c158f	2021-05-25 04:07:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:07:00.877+03	2021-05-25 04:07:00.884+03	
c3f2fd89-2ad1-718c-f2ec-66aa57307f1b	2021-05-25 04:07:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:07:20.877+03	2021-05-25 04:07:20.886+03	
e4de7eb2-c065-077d-13c6-52dc8d45f173	2021-05-25 04:07:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:07:40.877+03	2021-05-25 04:07:40.886+03	
775de891-88e7-00ee-48e4-4d612f248acb	2021-05-25 04:08:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:08:00.877+03	2021-05-25 04:08:00.883+03	
c135f963-177b-8bd0-c77f-bb8bf54e6981	2021-05-25 04:08:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:08:20.877+03	2021-05-25 04:08:20.883+03	
b548b696-41ad-8b38-d1b0-62ee85ba4142	2021-05-25 04:08:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:08:40.877+03	2021-05-25 04:08:40.882+03	
1ac58e4d-b2c2-78f9-31e8-4b370be818ff	2021-05-25 04:09:00.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:09:00.877+03	2021-05-25 04:09:00.885+03	
c52d2920-fe68-ee19-9b31-c43cd68622d1	2021-05-25 04:09:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:09:20.877+03	2021-05-25 04:09:20.883+03	
bd1065cf-f130-a3cb-31a3-9d432d4e73f0	2021-05-25 04:09:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:09:40.877+03	2021-05-25 04:09:40.884+03	
adddfd7b-704c-fef6-20cb-7b2348af1186	2021-05-25 04:10:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:10:00.877+03	2021-05-25 04:10:00.883+03	
c33b8b86-2eb2-c7b4-8ffb-8c2c93224b77	2021-05-25 04:10:00.878	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 04:10:00.877+03	2021-05-25 04:10:00.893+03	ERROR
7de2dd22-9406-b37e-fc98-b9afd00821d3	2021-05-25 04:10:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:10:20.877+03	2021-05-25 04:10:20.883+03	
ef2d5eea-d11f-2291-10d3-d62ba19b9dfa	2021-05-25 04:10:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:10:40.877+03	2021-05-25 04:10:40.883+03	
06581628-8e95-c8f7-38f0-be83a345d567	2021-05-25 04:11:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:11:00.877+03	2021-05-25 04:11:00.882+03	
086a8c0a-7508-c27d-7f8e-5eb91dbc1fa3	2021-05-25 04:11:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:11:20.877+03	2021-05-25 04:11:20.883+03	
5eda9e8c-9eeb-23ad-0ee6-0ff5b299a7d1	2021-05-25 04:11:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:11:40.877+03	2021-05-25 04:11:41.094+03	
2efe8c5a-791c-5deb-3054-94b2b84d7eac	2021-05-25 04:12:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:12:00.877+03	2021-05-25 04:12:00.883+03	
ff50ed73-ff5e-4d13-2821-c8399b49ba3f	2021-05-25 04:12:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:12:20.877+03	2021-05-25 04:12:20.883+03	
185c13cb-1ee0-bbbc-e913-4b5acbbac589	2021-05-25 04:12:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:12:40.877+03	2021-05-25 04:12:40.885+03	
621bfdf5-cd39-3950-aecc-ec2dd71a6989	2021-05-25 04:13:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:13:01.877+03	2021-05-25 04:13:01.896+03	
a55f80aa-3043-45b5-dc62-5512c90ab9c4	2021-05-25 04:13:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:13:21.877+03	2021-05-25 04:13:21.884+03	
0b0ce241-f667-df89-cdbd-7217ab387210	2021-05-25 04:13:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:13:41.877+03	2021-05-25 04:13:41.883+03	
7f42b9d9-6284-e31c-cf05-84551d587cd8	2021-05-25 04:14:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:14:01.877+03	2021-05-25 04:14:01.893+03	
7410e85d-8109-2d18-2ea4-aff9ee0bf824	2021-05-25 04:14:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:14:21.877+03	2021-05-25 04:14:21.885+03	
8d54939f-878c-a2e8-0e38-5e99255a72cc	2021-05-25 04:14:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:14:41.877+03	2021-05-25 04:14:41.883+03	
9ae57789-9f6c-7a38-2fba-b2ecea44b45a	2021-05-25 04:15:01.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:15:01.877+03	2021-05-25 04:15:01.895+03	
943bb792-dc12-322e-1ca5-35b82a9713e9	2021-05-25 04:15:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:15:21.877+03	2021-05-25 04:15:21.884+03	
dd63d9e8-f4d4-c082-c384-f1662713254a	2021-05-25 04:15:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:15:41.877+03	2021-05-25 04:15:41.883+03	
2ea34468-a6da-2ce2-53c0-56f40a370888	2021-05-25 04:16:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:16:01.877+03	2021-05-25 04:16:01.904+03	
5a4b6682-babf-56be-33b8-58f81f69d3b9	2021-05-25 04:16:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:16:21.877+03	2021-05-25 04:16:21.883+03	
41f84759-bd28-3f05-a986-b3a4a79ca692	2021-05-25 04:16:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:16:41.877+03	2021-05-25 04:16:42.126+03	
4581ec7f-0d1c-56b5-9095-db970f6e33fc	2021-05-25 04:17:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:17:01.877+03	2021-05-25 04:17:01.883+03	
01193370-e6ba-223c-8a4c-762b5c9e129a	2021-05-25 04:17:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:17:21.877+03	2021-05-25 04:17:21.883+03	
2ef01344-9a1f-67d4-dcf0-d94c2bf0d3e2	2021-05-25 04:17:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:17:41.877+03	2021-05-25 04:17:41.882+03	
c3a8fb9e-f698-fb10-abf3-0150199a3bb8	2021-05-25 04:18:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:18:01.877+03	2021-05-25 04:18:01.887+03	
610f6db4-a19e-1a28-192e-91044c0f0d88	2021-05-25 04:18:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:18:21.877+03	2021-05-25 04:18:21.884+03	
4e7ad3a3-af0e-aafe-96e8-9893cea0d3be	2021-05-25 04:18:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:18:41.877+03	2021-05-25 04:18:41.882+03	
9c8d7e7a-9e9d-7cae-f82b-41be0de639e3	2021-05-25 04:19:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:19:01.877+03	2021-05-25 04:19:02.198+03	
702814cf-a870-877c-eee1-79366ea97afc	2021-05-25 04:19:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:19:21.877+03	2021-05-25 04:19:21.885+03	
d5a8b65d-d8d3-295f-dd99-7d800d00a856	2021-05-25 04:19:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:19:41.877+03	2021-05-25 04:19:41.885+03	
72fd220e-5daf-d770-7326-d94999dcdca5	2021-05-25 04:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 04:20:00.877+03	2021-05-25 04:20:00.882+03	ERROR
3b821b37-687e-8fdd-ae3b-a5357685927f	2021-05-25 04:20:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:20:11.877+03	2021-05-25 04:20:11.884+03	
99efdfde-ce2e-6944-902e-f4bfc023279c	2021-05-25 04:20:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:20:31.877+03	2021-05-25 04:20:31.883+03	
6091df5f-530c-64de-fc07-2e33a28806ef	2021-05-25 04:20:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:20:51.877+03	2021-05-25 04:20:51.885+03	
7e8117f1-2443-5d65-49a4-c0d96efe4546	2021-05-25 04:21:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:21:11.877+03	2021-05-25 04:21:11.894+03	
f3ac0735-d9f8-5720-b0fb-830a44c2fc7b	2021-05-25 04:21:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:21:31.877+03	2021-05-25 04:21:31.883+03	
0bed5434-29aa-2bd7-ae86-c190249c5f96	2021-05-25 04:21:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:21:51.877+03	2021-05-25 04:21:51.884+03	
5bb423f2-c963-71ab-b4dc-4011c8eb5e20	2021-05-25 04:22:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:22:11.877+03	2021-05-25 04:22:11.882+03	
8db597d5-a5b1-863f-0b91-9a6f86201aca	2021-05-25 04:22:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:22:31.877+03	2021-05-25 04:22:32.116+03	
1c25654c-2503-fdec-f70b-3cbc2ce9d5b1	2021-05-25 04:22:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:22:51.877+03	2021-05-25 04:22:51.883+03	
5222832c-785f-8c41-5f16-6a2557320d53	2021-05-25 04:23:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:23:11.877+03	2021-05-25 04:23:11.888+03	
80142dde-9a68-69c3-e39d-59216dad89ee	2021-05-25 04:23:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:23:31.877+03	2021-05-25 04:23:31.883+03	
14541d52-9dcc-a64c-0070-654b6e216271	2021-05-25 04:23:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:23:51.877+03	2021-05-25 04:23:51.885+03	
adab5e6b-1612-0ba8-6771-bb46f8414fcc	2021-05-25 04:24:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:24:11.877+03	2021-05-25 04:24:11.882+03	
d51e0466-2fca-8a72-c616-d122b862be39	2021-05-25 04:24:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:24:31.877+03	2021-05-25 04:24:31.883+03	
74f6ae09-8657-b243-be1d-8111723d711e	2021-05-25 04:24:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:24:51.877+03	2021-05-25 04:24:51.883+03	
6ce30848-4fe8-91dd-d7dc-be5619aed17d	2021-05-25 04:25:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:25:11.877+03	2021-05-25 04:25:11.883+03	
7356e217-58ad-cf46-f340-fa66ef798ee1	2021-05-25 04:25:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:25:31.877+03	2021-05-25 04:25:31.882+03	
c073c9e9-d1d7-b332-0bf4-634ee1bfa4a6	2021-05-25 04:25:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:25:51.877+03	2021-05-25 04:25:51.884+03	
aaf36b69-ba7c-55a0-73bb-0039446618b7	2021-05-25 04:26:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:26:11.877+03	2021-05-25 04:26:11.884+03	
5c1a4bdc-95d6-d620-ed1e-cf5858cc5b87	2021-05-25 04:26:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:26:31.877+03	2021-05-25 04:26:31.884+03	
da75f288-04de-dc58-65bc-0adb7bcca2cd	2021-05-25 04:26:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:26:51.877+03	2021-05-25 04:26:51.883+03	
2305ac83-42df-4d88-30bb-9246f10ff3ae	2021-05-25 04:27:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:27:11.877+03	2021-05-25 04:27:11.884+03	
c4db0c40-09ba-3afe-8164-5057bdf1091a	2021-05-25 04:27:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:27:31.877+03	2021-05-25 04:27:31.883+03	
2fe4acbc-b131-2bbe-a921-8dbb1fcd9de4	2021-05-25 04:27:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:27:51.877+03	2021-05-25 04:27:51.884+03	
c5483979-5eb0-f4b0-2ab6-faa300c966ff	2021-05-25 04:28:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:28:11.877+03	2021-05-25 04:28:11.883+03	
26ee4b4c-cb4b-a6d9-8256-733ec84111a2	2021-05-25 04:28:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:28:31.877+03	2021-05-25 04:28:31.882+03	
049dfb4f-533f-a0b0-7683-5b1724021d2d	2021-05-25 04:28:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:28:51.877+03	2021-05-25 04:28:51.883+03	
af0f38d1-1abb-e3b0-a0dd-6cf17f8582a9	2021-05-25 04:29:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:29:11.877+03	2021-05-25 04:29:11.883+03	
b1840d38-0efa-6ee0-d758-0294aab1bfc9	2021-05-25 04:29:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:29:31.877+03	2021-05-25 04:29:31.882+03	
69df259e-7c16-35d6-98cd-ae6e4fd0ec80	2021-05-25 04:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 04:30:00.877+03	2021-05-25 04:30:00.881+03	ERROR
8680e21b-d901-d336-d01d-b0111402fab7	2021-05-25 04:30:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:30:12.878+03	2021-05-25 04:30:12.883+03	
d9580be4-401d-b2ff-8239-e2e42810db6e	2021-05-25 04:30:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:30:33.877+03	2021-05-25 04:30:33.883+03	
ae14de59-fd13-dabc-da2d-e1a4146ffab1	2021-05-25 04:30:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:30:53.877+03	2021-05-25 04:30:54.2+03	
b9e7273c-6787-50b5-4fee-25256e900055	2021-05-25 04:31:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:31:13.877+03	2021-05-25 04:31:13.886+03	
6b64dc96-5a27-3eac-27b1-a22a27936374	2021-05-25 04:31:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:31:33.877+03	2021-05-25 04:31:33.882+03	
be0a9d05-fc23-818a-03d2-4f8678329baa	2021-05-25 04:31:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:31:54.877+03	2021-05-25 04:31:54.882+03	
d42ea5da-64aa-cc5a-6e88-7f08da2b7ccb	2021-05-25 04:32:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:32:14.877+03	2021-05-25 04:32:14.883+03	
240b42cb-b968-ac63-83c3-5ba61890a999	2021-05-25 04:32:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:32:34.877+03	2021-05-25 04:32:34.883+03	
8e3497fb-150b-68ae-8017-d0d27766e79c	2021-05-25 04:32:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:32:54.877+03	2021-05-25 04:32:54.883+03	
b03eb300-0455-653e-8fec-545fa95c5a09	2021-05-25 04:33:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:33:14.877+03	2021-05-25 04:33:14.883+03	
d9bb440f-be5e-b16b-2ab9-edb52ffae5e0	2021-05-25 04:33:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:33:34.877+03	2021-05-25 04:33:34.883+03	
6405e235-b733-fac5-423b-a2729b5d22b4	2021-05-25 04:33:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:33:54.877+03	2021-05-25 04:33:54.883+03	
21baca07-d488-c39f-37fb-be51f2529303	2021-05-25 04:34:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:34:14.877+03	2021-05-25 04:34:14.888+03	
f825996a-73db-0919-475e-c62acccb2978	2021-05-25 04:34:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:34:34.877+03	2021-05-25 04:34:34.882+03	
fa149ced-fe25-c41f-4df2-47c2939e0302	2021-05-25 04:34:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:34:54.877+03	2021-05-25 04:34:54.883+03	
7c5e919d-c154-f70f-f3af-e6bd1fd8017c	2021-05-25 04:35:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:35:14.877+03	2021-05-25 04:35:14.882+03	
4c977af1-7a54-5e73-b336-45bbe90a9e9e	2021-05-25 04:35:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:35:34.877+03	2021-05-25 04:35:34.882+03	
a933ac99-26bd-fa03-5153-fb5a14b98118	2021-05-25 04:35:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:35:54.877+03	2021-05-25 04:35:54.884+03	
4ee17a16-e184-351a-b667-22fd77d579b2	2021-05-25 04:36:14.888	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:36:14.877+03	2021-05-25 04:36:14.894+03	
6a647dd5-1a54-7fa7-881e-d12be28ed7dc	2021-05-25 04:36:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:36:34.877+03	2021-05-25 04:36:34.883+03	
daef25ab-daa3-affc-2bc8-4081be29f945	2021-05-25 04:36:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:36:54.877+03	2021-05-25 04:36:54.882+03	
f800920c-c63f-60ca-074e-9b2dc40ba5dd	2021-05-25 04:37:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:37:14.877+03	2021-05-25 04:37:14.889+03	
b5f05754-e25d-f808-a931-d28f3151c496	2021-05-25 04:37:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:37:34.877+03	2021-05-25 04:37:34.883+03	
9a31ca56-64da-dc16-6ec6-45fb04683c81	2021-05-25 04:37:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:37:54.877+03	2021-05-25 04:37:54.883+03	
2a94d71e-84b3-3e6a-b1c1-91cde162ba45	2021-05-25 04:38:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:38:14.877+03	2021-05-25 04:38:14.883+03	
2ff4ae17-9cf9-bc14-52f2-6fd0af27971e	2021-05-25 04:38:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:38:34.877+03	2021-05-25 04:38:34.882+03	
9e274a73-1676-e7ce-57f9-65b0dd15ccc7	2021-05-25 04:38:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:38:55.877+03	2021-05-25 04:38:55.883+03	
1c373d48-85d2-8ba8-fc1d-c64b4456ef45	2021-05-25 04:39:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:39:15.877+03	2021-05-25 04:39:16.034+03	
2c2967a0-5948-e37e-111a-9706ff0e02a5	2021-05-25 04:39:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:39:35.877+03	2021-05-25 04:39:35.883+03	
717fa509-36fd-0ae4-4b89-8e3a3aca85dc	2021-05-25 04:39:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:39:55.877+03	2021-05-25 04:39:55.883+03	
a36caf19-9bfc-adab-079b-56282eb0fa4f	2021-05-25 04:40:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:40:05.877+03	2021-05-25 04:40:05.885+03	
d72ea42c-e05b-f3d7-8057-8cb58b7bf48d	2021-05-25 04:40:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:40:25.877+03	2021-05-25 04:40:25.882+03	
1303c146-7e46-6ba4-ec72-b58fc71e25a4	2021-05-25 04:40:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:40:45.877+03	2021-05-25 04:40:45.883+03	
05b40fcf-6a28-2363-a509-497c59077583	2021-05-25 04:41:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:41:05.877+03	2021-05-25 04:41:05.884+03	
91b81dc1-fdb8-849b-bdf2-feced224b887	2021-05-25 04:41:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:41:25.877+03	2021-05-25 04:41:26.008+03	
6fd2355a-278f-e6cc-1518-83c2d876a242	2021-05-25 04:41:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:41:45.877+03	2021-05-25 04:41:45.883+03	
98898077-c1ff-c6a7-b005-11b4ce1a9a6d	2021-05-25 04:42:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:42:05.877+03	2021-05-25 04:42:05.883+03	
bf19c902-9aca-faa1-0731-29d18b297250	2021-05-25 04:42:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:42:25.877+03	2021-05-25 04:42:25.883+03	
0ecc9c3c-73bc-d80e-4435-de296624a4e8	2021-05-25 04:42:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:42:45.877+03	2021-05-25 04:42:45.883+03	
c7c46253-da8d-5563-2da7-7f4e05e8caa7	2021-05-25 04:43:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:43:05.877+03	2021-05-25 04:43:05.883+03	
1d21abbe-ee55-9d67-7367-b837a0b88c50	2021-05-25 04:43:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:43:25.877+03	2021-05-25 04:43:25.883+03	
2c6fa9ce-dc92-097d-598b-acc43c2da861	2021-05-25 04:43:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:43:45.877+03	2021-05-25 04:43:45.883+03	
ab1bfbf1-67b7-088f-f952-5734cb235623	2021-05-25 04:44:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:44:06.877+03	2021-05-25 04:44:06.883+03	
0cc3b192-d277-2534-8382-952e5b7949d9	2021-05-25 04:44:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:44:26.877+03	2021-05-25 04:44:26.883+03	
d8559f12-f45f-f3c7-bbd4-94256470d4fd	2021-05-25 04:24:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:24:01.877+03	2021-05-25 04:24:02.038+03	
cda50b39-7548-b988-d803-00738469b14a	2021-05-25 04:24:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:24:21.877+03	2021-05-25 04:24:21.884+03	
56e48c62-99e1-acb3-2451-c4fb5167df4b	2021-05-25 04:24:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:24:41.877+03	2021-05-25 04:24:41.883+03	
6fa04fe6-692b-0682-bbc4-ac796601c3d5	2021-05-25 04:25:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:25:01.877+03	2021-05-25 04:25:01.883+03	
b4d20221-43de-82e2-6573-1c6cf0588ff1	2021-05-25 04:25:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:25:21.877+03	2021-05-25 04:25:21.883+03	
9a17dc9e-e534-896e-5540-8a28b83176cb	2021-05-25 04:25:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:25:41.877+03	2021-05-25 04:25:41.883+03	
0769ce48-09ee-e8a4-49b0-68eba42d9b1f	2021-05-25 04:26:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:26:01.877+03	2021-05-25 04:26:01.882+03	
fb18977d-45ee-856e-f2c1-de6e7c2f2731	2021-05-25 04:26:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:26:21.877+03	2021-05-25 04:26:21.884+03	
da4bea50-a459-f627-4a24-6d8517f7772e	2021-05-25 04:26:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:26:41.877+03	2021-05-25 04:26:41.883+03	
a4ce7c36-7fd3-5bb6-5333-ecaf52ce78e5	2021-05-25 04:27:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:27:01.877+03	2021-05-25 04:27:01.885+03	
34c136b2-9d2c-d57d-ee3a-f27d13a4b91d	2021-05-25 04:27:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:27:21.877+03	2021-05-25 04:27:21.884+03	
b96f976f-7d5a-b16b-dfb0-a8443bc5c6c9	2021-05-25 04:27:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:27:41.877+03	2021-05-25 04:27:41.884+03	
d067a87e-df0c-4bed-2702-d3935ee3f93b	2021-05-25 04:28:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:28:01.877+03	2021-05-25 04:28:01.882+03	
e05c5077-e8c8-0e3f-7be2-1f33cf2b07fe	2021-05-25 04:28:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:28:21.877+03	2021-05-25 04:28:21.883+03	
5dfae7f7-d2eb-4de5-5ebc-e589ec79950c	2021-05-25 04:28:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:28:41.877+03	2021-05-25 04:28:41.882+03	
14d1d49b-8c51-3767-e2bd-6cd84c3cd8d5	2021-05-25 04:29:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:29:01.877+03	2021-05-25 04:29:01.884+03	
ec3c7d6a-354d-2ac1-3046-dc251a3f1b83	2021-05-25 04:29:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:29:21.877+03	2021-05-25 04:29:21.883+03	
b0e5e3f4-5bd5-07f1-a4a9-d848faf1665f	2021-05-25 04:29:42.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:29:42.877+03	2021-05-25 04:29:42.883+03	
09b18e51-af39-a011-b733-1ea65c48064c	2021-05-25 04:29:52.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:29:52.877+03	2021-05-25 04:29:52.883+03	
05a2766f-148d-e001-1e6a-9121b50fc20a	2021-05-25 04:30:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:30:02.877+03	2021-05-25 04:30:02.883+03	
d9c51b89-779e-09ef-e3a8-6e5761588ada	2021-05-25 04:30:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:30:23.877+03	2021-05-25 04:30:23.884+03	
6705508b-7328-8382-73b8-c235eb7ae44d	2021-05-25 04:30:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:30:43.877+03	2021-05-25 04:30:43.883+03	
ac7ff73d-c355-7cfd-98c0-8d62d201b637	2021-05-25 04:31:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:31:03.877+03	2021-05-25 04:31:03.883+03	
2e0fafbc-7b2c-d4c3-404a-1f94cb2041df	2021-05-25 04:31:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:31:23.877+03	2021-05-25 04:31:24.2+03	
28ae2d6c-fd42-e33f-74a4-8597af6f6524	2021-05-25 04:31:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:31:43.877+03	2021-05-25 04:31:43.882+03	
5079d097-3e21-9623-e0e7-bf14ee2ab098	2021-05-25 04:32:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:32:04.877+03	2021-05-25 04:32:04.882+03	
d57032c4-750d-5723-83bd-45b237607b65	2021-05-25 04:32:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:32:24.877+03	2021-05-25 04:32:24.884+03	
f5715095-9255-3071-7250-1b92dfd4aca4	2021-05-25 04:32:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:32:44.877+03	2021-05-25 04:32:44.884+03	
39f796de-1575-4699-ecc6-7fba77c7e3c0	2021-05-25 04:33:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:33:04.877+03	2021-05-25 04:33:04.883+03	
4cc25a97-5dc5-2540-55bf-60f14e3990cd	2021-05-25 04:33:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:33:24.877+03	2021-05-25 04:33:24.883+03	
e41f00b3-a354-6af6-0c2b-4134424ec432	2021-05-25 04:33:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:33:44.877+03	2021-05-25 04:33:44.884+03	
98d4d2eb-f939-1312-d635-99018871685b	2021-05-25 04:34:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:34:04.877+03	2021-05-25 04:34:04.883+03	
dca9f3eb-00e1-9067-d075-9882b5c30e55	2021-05-25 04:34:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:34:24.877+03	2021-05-25 04:34:24.884+03	
71d171d8-f5c1-b845-acab-8b5bbdd0cf56	2021-05-25 04:34:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:34:44.877+03	2021-05-25 04:34:44.883+03	
e74046bb-8649-e87c-4f79-eb0234c45832	2021-05-25 04:35:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:35:04.877+03	2021-05-25 04:35:04.884+03	
36890530-b097-b1a2-fb2e-633a5e6997ae	2021-05-25 04:35:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:35:24.877+03	2021-05-25 04:35:24.883+03	
45eeee7e-df2b-c9db-1980-16e43a3591db	2021-05-25 04:35:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:35:44.877+03	2021-05-25 04:35:44.882+03	
a72b9d38-a727-4270-7857-423e8a42b582	2021-05-25 04:36:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:36:04.877+03	2021-05-25 04:36:04.889+03	
21367a10-cf99-c1e8-d15d-a989a77f69fb	2021-05-25 04:36:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:36:24.877+03	2021-05-25 04:36:24.882+03	
fb1abc10-2af1-d9fd-e744-73f5d99999c0	2021-05-25 04:36:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:36:44.877+03	2021-05-25 04:36:44.882+03	
549d818c-28e9-9c46-07c2-41d1710107b0	2021-05-25 04:37:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:37:04.877+03	2021-05-25 04:37:04.883+03	
9d24e029-c094-b4e3-ecd0-9b24a4b3c396	2021-05-25 04:37:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:37:24.877+03	2021-05-25 04:37:24.884+03	
e43765c5-3486-61db-cb2c-3a8dd7e0b9d2	2021-05-25 04:37:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:37:44.877+03	2021-05-25 04:37:44.885+03	
235843bc-f95b-5e5f-3bfa-36231d3859b8	2021-05-25 04:38:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:38:04.877+03	2021-05-25 04:38:04.883+03	
869d5b5f-1159-2d66-f0b1-a66a0cfb31b8	2021-05-25 04:38:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:38:24.877+03	2021-05-25 04:38:24.883+03	
f0f50904-57f0-2b58-4996-7b11f59dd428	2021-05-25 04:38:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:38:45.877+03	2021-05-25 04:38:45.883+03	
feefd744-4eac-2f2a-67c7-b6ee21e9aaa3	2021-05-25 04:39:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:39:05.877+03	2021-05-25 04:39:05.886+03	
ccc13bc3-375a-657b-7cb0-3e95b76351c6	2021-05-25 04:39:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:39:25.877+03	2021-05-25 04:39:25.884+03	
3a9202c0-c33e-6072-6c45-761f2865e1eb	2021-05-25 04:39:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:39:45.877+03	2021-05-25 04:39:45.883+03	
e4c626df-3819-0879-757f-ecfda703862e	2021-05-25 04:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 04:40:00.877+03	2021-05-25 04:40:00.881+03	ERROR
3969ddad-322a-f2d4-4fa4-6df66796acbd	2021-05-25 04:40:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:40:15.877+03	2021-05-25 04:40:15.884+03	
8cbd67d6-2f97-5624-5931-1fc7917a8fd4	2021-05-25 04:40:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:40:35.877+03	2021-05-25 04:40:35.883+03	
eb10b6e6-1fdf-a01b-e443-091d09dce563	2021-05-25 04:40:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:40:55.877+03	2021-05-25 04:40:55.883+03	
c8a03c94-c591-6399-38da-9575acb266b8	2021-05-25 04:41:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:41:15.877+03	2021-05-25 04:41:15.882+03	
3e02826f-fb6c-f578-e91a-00f108f4fcc6	2021-05-25 04:41:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:41:35.877+03	2021-05-25 04:41:35.883+03	
68bcb9a1-b2e8-b2fa-4bda-752d09af1b47	2021-05-25 04:41:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:41:55.877+03	2021-05-25 04:41:55.883+03	
ba690248-2a2d-cbe6-f62a-065ac6bba710	2021-05-25 04:42:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:42:15.877+03	2021-05-25 04:42:15.883+03	
623b4123-4620-277c-3b0d-3e761e480cce	2021-05-25 04:42:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:42:35.877+03	2021-05-25 04:42:35.882+03	
80e5abd9-7b3f-ea4f-f62f-a4087f2229a3	2021-05-25 04:42:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:42:55.877+03	2021-05-25 04:42:55.883+03	
0af64e0b-9be2-4fc3-771e-1424f0a182ff	2021-05-25 04:43:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:43:15.877+03	2021-05-25 04:43:15.883+03	
4ff8fbb1-d794-a87c-379e-dd03fbd0339c	2021-05-25 04:43:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:43:35.877+03	2021-05-25 04:43:35.884+03	
6cfd1c6e-9a2f-0d0c-590c-248eab4ca3b8	2021-05-25 04:43:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:43:55.877+03	2021-05-25 04:43:55.883+03	
82d1516c-45b8-92d3-dec6-fa28a9f660b1	2021-05-25 04:44:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:44:16.877+03	2021-05-25 04:44:16.884+03	
50a86cbf-13bd-afcf-1b47-39bcdeb94819	2021-05-25 04:44:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:44:36.877+03	2021-05-25 04:44:36.883+03	
0abece30-c536-6cb5-ccb9-b841fb33752d	2021-05-25 04:44:57.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:44:57.877+03	2021-05-25 04:44:57.885+03	
fd43a7a7-bfb0-6e67-7db5-1d6b27f13c6a	2021-05-25 04:45:17.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:45:17.877+03	2021-05-25 04:45:17.883+03	
f7da6c80-356b-f24c-961e-91243cbf2a92	2021-05-25 04:45:37.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:45:37.878+03	2021-05-25 04:45:37.883+03	
45d6aa75-0703-df46-d29e-b824b130b010	2021-05-25 04:45:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:45:58.877+03	2021-05-25 04:45:58.883+03	
2f9f3bfd-a842-b17d-e262-ebd5b74a5cd4	2021-05-25 04:46:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:46:18.877+03	2021-05-25 04:46:18.883+03	
15cd01cb-259b-274f-dc90-5fb890c11929	2021-05-25 04:46:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:46:38.877+03	2021-05-25 04:46:38.885+03	
a8faacf0-3d33-c673-4238-aad720bc143f	2021-05-25 04:46:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:46:58.877+03	2021-05-25 04:46:59.209+03	
ba572a44-9bea-b9ca-fa14-25dc32b56f7e	2021-05-25 04:47:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:47:18.877+03	2021-05-25 04:47:18.885+03	
94e8eca1-2f97-3fcb-dd59-15a4429bad75	2021-05-25 04:47:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:47:38.877+03	2021-05-25 04:47:38.884+03	
d874381d-3163-24be-8560-c43b866fec59	2021-05-25 04:47:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:47:58.877+03	2021-05-25 04:47:58.883+03	
a2a60cab-888e-b2b8-81e2-3bb7f0e0a2f9	2021-05-25 04:48:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:48:18.877+03	2021-05-25 04:48:18.882+03	
efb80f13-e205-8454-a255-14a4f10cdb7a	2021-05-25 04:48:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:48:38.877+03	2021-05-25 04:48:38.883+03	
9dc7fa83-410f-1008-ef6f-c15d8db52fda	2021-05-25 04:48:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:48:58.877+03	2021-05-25 04:48:58.883+03	
e35a1e91-3281-30dc-03fd-79c6fa945ff8	2021-05-25 04:49:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:49:18.877+03	2021-05-25 04:49:18.884+03	
0d3c7b14-b7d2-7051-b4ce-715ef8fe96f2	2021-05-25 04:49:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:49:38.877+03	2021-05-25 04:49:38.885+03	
2b1d98f0-7bae-30ef-070c-dca8cce817d6	2021-05-25 04:49:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:49:58.877+03	2021-05-25 04:49:58.883+03	
be0e2f83-4ea0-5283-24a7-ff56d0d09ad6	2021-05-25 04:50:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:50:08.877+03	2021-05-25 04:50:08.884+03	
caa5780e-4b2b-8ca5-7b2e-fc1e4f6c4989	2021-05-25 04:50:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:50:28.877+03	2021-05-25 04:50:28.884+03	
56438f0a-f4a8-74cc-21e9-f49b027d6fb2	2021-05-25 04:50:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:50:48.877+03	2021-05-25 04:50:48.884+03	
29709be5-4428-98c6-fe4a-96ca1d988219	2021-05-25 04:51:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:51:08.877+03	2021-05-25 04:51:08.883+03	
37a64079-f9fc-6d99-b778-5c78681cea3b	2021-05-25 04:51:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:51:28.877+03	2021-05-25 04:51:28.883+03	
7b7f8a10-030d-4ada-dd19-197ad926d1d2	2021-05-25 04:51:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:51:48.877+03	2021-05-25 04:51:48.885+03	
dff99531-30d8-4a6a-3e5b-0e11bf0eebfe	2021-05-25 04:52:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:52:08.877+03	2021-05-25 04:52:08.885+03	
92d29735-1e4b-4edc-52d8-33e06a30c698	2021-05-25 04:52:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:52:28.877+03	2021-05-25 04:52:28.886+03	
5c0c8eba-3756-dc1e-4c14-29761048cc10	2021-05-25 04:52:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:52:48.877+03	2021-05-25 04:52:49.199+03	
a1e3750b-6d3d-4dcf-a05c-fb664ad0e209	2021-05-25 04:53:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:53:08.878+03	2021-05-25 04:53:08.886+03	
e4def491-6746-7f38-527c-51a2dd151487	2021-05-25 04:53:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:53:29.877+03	2021-05-25 04:53:29.884+03	
dd8a7d68-834a-6d1c-4884-f1f2609fa212	2021-05-25 04:53:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:53:49.877+03	2021-05-25 04:53:49.883+03	
84bb3305-e89c-5f3f-2e0c-bdfe2b22714c	2021-05-25 04:54:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:54:09.877+03	2021-05-25 04:54:09.884+03	
87a29dc5-705f-0725-5d34-b0961185cb19	2021-05-25 04:54:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:54:29.877+03	2021-05-25 04:54:29.883+03	
f5596438-be6f-4d45-002b-7322a6932a79	2021-05-25 04:54:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:54:49.877+03	2021-05-25 04:54:49.883+03	
b6d7b3f2-616b-1c78-00da-f01e9f6669ed	2021-05-25 04:55:09.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:55:09.877+03	2021-05-25 04:55:09.932+03	
c7fc609d-8c20-d48b-acb6-1f1932362cc0	2021-05-25 04:55:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:55:29.877+03	2021-05-25 04:55:29.883+03	
f7767ea5-7ab9-eb52-3e8b-c3b84c30d545	2021-05-25 04:55:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:55:49.877+03	2021-05-25 04:55:49.884+03	
25882e52-edfa-8990-2bc4-52a58306b2b2	2021-05-25 04:56:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:56:09.877+03	2021-05-25 04:56:09.884+03	
45fd55d8-0477-4e62-e970-44a939485ecf	2021-05-25 04:56:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:56:29.877+03	2021-05-25 04:56:29.884+03	
d7fbdc2e-3348-eef0-e2c1-154c19a95bb9	2021-05-25 04:56:49.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:56:49.877+03	2021-05-25 04:56:49.884+03	
712f1b6b-ef2a-5895-b8fd-fcf2e6ac8808	2021-05-25 04:57:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:57:09.877+03	2021-05-25 04:57:09.883+03	
471fede6-b0d7-3505-9eb2-2e021ad1cce6	2021-05-25 04:57:29.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:57:29.877+03	2021-05-25 04:57:29.883+03	
a445090a-1efc-44bc-cc1c-484f8bdf5a45	2021-05-25 04:57:49.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:57:49.877+03	2021-05-25 04:57:49.884+03	
5f456c7d-5cff-bfc8-8d55-1a86e441ede0	2021-05-25 04:58:09.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:58:09.877+03	2021-05-25 04:58:10.192+03	
9dbfac1e-4daf-36a1-6401-cc7cd33f70e7	2021-05-25 04:58:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:58:40.877+03	2021-05-25 04:58:40.883+03	
ec838ef8-8851-9cf1-5bb4-8767d70980ef	2021-05-25 04:59:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:59:00.877+03	2021-05-25 04:59:00.885+03	
ddb18cfa-4e9a-1cad-0c74-8355bd4cc672	2021-05-25 04:59:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:59:20.877+03	2021-05-25 04:59:20.884+03	
0657f6b1-9f4a-229e-df7c-0cb1c71734a4	2021-05-25 04:59:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:59:40.877+03	2021-05-25 04:59:40.884+03	
06a5e5a3-fd46-877e-d109-c0fe0f5b2157	2021-05-25 05:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 05:00:00.877+03	2021-05-25 05:00:00.883+03	ERROR
8e7befec-99c1-ed23-483f-fd940d02cafb	2021-05-25 05:00:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:00:20.877+03	2021-05-25 05:00:20.883+03	
3e39e0a9-23d1-852c-3a88-c1e1ef6b7736	2021-05-25 05:00:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:00:40.877+03	2021-05-25 05:00:40.889+03	
4d4729d5-b4a9-862d-922e-024684241c04	2021-05-25 05:01:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:01:00.877+03	2021-05-25 05:01:00.885+03	
2068326f-ce00-e066-9e83-84091193dd95	2021-05-25 05:01:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:01:20.877+03	2021-05-25 05:01:20.884+03	
8bffdd33-4639-015e-d758-7c5453608e2f	2021-05-25 05:01:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:01:40.877+03	2021-05-25 05:01:40.884+03	
489ffafd-fa22-3ef7-e82d-968fe57ffa36	2021-05-25 05:02:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:02:00.877+03	2021-05-25 05:02:00.883+03	
5e1aceba-ef0c-fa7c-4e1b-1e6379aceb5f	2021-05-25 05:02:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:02:20.877+03	2021-05-25 05:02:20.883+03	
984e6657-a52c-33e4-b2ea-2e213da649b3	2021-05-25 05:02:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:02:40.877+03	2021-05-25 05:02:40.883+03	
977da3b4-afdf-b452-c3f5-1fa6edcd588a	2021-05-25 05:03:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:03:00.877+03	2021-05-25 05:03:00.883+03	
ac79313b-12dc-be4c-d078-2961cad24832	2021-05-25 05:03:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:03:20.877+03	2021-05-25 05:03:20.885+03	
99ac35cb-4921-6338-40a2-10453cee377f	2021-05-25 05:03:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:03:40.877+03	2021-05-25 05:03:40.885+03	
0a31f4dc-0951-f0c0-3e32-6e045528692c	2021-05-25 05:04:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:04:00.877+03	2021-05-25 05:04:00.883+03	
39cafd66-7b2c-4c5b-93ac-ad6ed67ec0b1	2021-05-25 05:04:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:04:20.877+03	2021-05-25 05:04:20.884+03	
4a336532-275d-3442-e03f-cd9c631945bb	2021-05-25 05:04:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:04:40.877+03	2021-05-25 05:04:40.882+03	
c049bd3c-c256-5573-f213-5e21cd95cf32	2021-05-25 05:05:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:05:00.877+03	2021-05-25 05:05:00.884+03	
4694e2a5-d413-17d6-c0db-49d4b9def7b2	2021-05-25 05:05:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:05:20.877+03	2021-05-25 05:05:20.884+03	
8524c916-7cb9-ffcd-da10-07179a82ad93	2021-05-25 04:44:47.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:44:47.877+03	2021-05-25 04:44:47.883+03	
5210bf7e-3031-1d56-f2ff-f4a868859988	2021-05-25 04:45:07.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:45:07.877+03	2021-05-25 04:45:07.883+03	
e0ddef22-2c16-3882-0ceb-ebffbb9bacba	2021-05-25 04:45:27.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:45:27.877+03	2021-05-25 04:45:27.884+03	
44c93a54-2e4a-1434-3e7d-69d5c8589011	2021-05-25 04:45:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:45:48.877+03	2021-05-25 04:45:48.885+03	
6979b89b-08d5-609a-e260-3fc030acc02f	2021-05-25 04:46:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:46:08.877+03	2021-05-25 04:46:08.886+03	
1824c0cb-134a-daf3-0ab1-f86f3c179b04	2021-05-25 04:46:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:46:28.877+03	2021-05-25 04:46:28.883+03	
4795d02f-185f-47e5-35f0-6f9643f665d4	2021-05-25 04:46:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:46:48.877+03	2021-05-25 04:46:48.884+03	
a5d31518-b9c5-fc9b-4742-03e6ba3e5aab	2021-05-25 04:47:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:47:08.877+03	2021-05-25 04:47:08.885+03	
63a41e21-fd8e-e71e-5e6e-4253b1e0d136	2021-05-25 04:47:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:47:28.877+03	2021-05-25 04:47:28.884+03	
3255da87-9aa4-a234-64d2-e2f1c7942912	2021-05-25 04:47:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:47:48.877+03	2021-05-25 04:47:49.127+03	
36398562-fede-9f40-c984-a3bdd7223f7f	2021-05-25 04:48:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:48:08.877+03	2021-05-25 04:48:08.883+03	
9d173256-bf92-8f91-3a64-5de76d7c65a7	2021-05-25 04:48:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:48:28.877+03	2021-05-25 04:48:28.884+03	
747414af-a1f1-e66e-0004-24fe7a41cfcd	2021-05-25 04:48:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:48:48.877+03	2021-05-25 04:48:48.883+03	
021db8c8-4007-161b-9dd8-0f3d806127bb	2021-05-25 04:49:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:49:08.877+03	2021-05-25 04:49:08.886+03	
22639fc0-59fa-7e87-fb23-8bb4aa7275c7	2021-05-25 04:49:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:49:28.877+03	2021-05-25 04:49:28.883+03	
cf95c203-8c40-291a-d3d8-74be585ebf2f	2021-05-25 04:49:48.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:49:48.877+03	2021-05-25 04:49:48.885+03	
8f181ecd-ae3a-f34c-dfe8-924c321ffd2e	2021-05-25 04:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 04:50:00.877+03	2021-05-25 04:50:00.882+03	ERROR
dac1ace9-f83c-4f97-4fa1-e12376562b4c	2021-05-25 04:50:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:50:18.877+03	2021-05-25 04:50:18.884+03	
da9ddd29-17c7-d78a-521f-03cfbda961c2	2021-05-25 04:50:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:50:38.877+03	2021-05-25 04:50:38.884+03	
56fe49d5-5293-b2f7-1395-dfc5d62a51a3	2021-05-25 04:50:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:50:58.877+03	2021-05-25 04:50:58.884+03	
0ea87e8f-4186-cd3f-4502-d693a169bd8d	2021-05-25 04:51:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:51:18.877+03	2021-05-25 04:51:18.884+03	
b74bc2d4-1354-b268-d709-3edab672f008	2021-05-25 04:51:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:51:38.877+03	2021-05-25 04:51:38.883+03	
99181dfe-d1e2-97a4-8729-8ef6f6f435fe	2021-05-25 04:51:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:51:58.877+03	2021-05-25 04:51:58.883+03	
6deb7b83-ff29-cc0d-41ac-86bf74218e84	2021-05-25 04:52:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:52:18.877+03	2021-05-25 04:52:18.884+03	
221dde21-fd54-e0aa-a209-0f6ce114da6d	2021-05-25 04:52:38.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:52:38.877+03	2021-05-25 04:52:38.884+03	
55fbe119-f424-68f6-483f-837d39874619	2021-05-25 04:52:58.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:52:58.877+03	2021-05-25 04:52:58.884+03	
2a27840d-3be7-8c01-699d-f5d0ebd45ead	2021-05-25 04:53:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:53:19.877+03	2021-05-25 04:53:19.885+03	
5e2f8173-7aed-4387-a361-1261ebe2bc13	2021-05-25 04:53:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:53:39.877+03	2021-05-25 04:53:39.882+03	
4945d19a-a64e-347a-0546-3404d6110f92	2021-05-25 04:53:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:53:59.877+03	2021-05-25 04:53:59.883+03	
843690d4-56ca-d31a-aa2d-edf291488c39	2021-05-25 04:54:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:54:19.877+03	2021-05-25 04:54:19.883+03	
907f43ee-9934-5c39-ad27-ef530e7d463a	2021-05-25 04:54:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:54:39.877+03	2021-05-25 04:54:39.885+03	
e0d876cd-1b8d-f988-f133-edb9c5ac3717	2021-05-25 04:54:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:54:59.877+03	2021-05-25 04:54:59.884+03	
2c79e2a8-8e49-854b-8ba2-f12ca6770528	2021-05-25 04:55:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:55:19.877+03	2021-05-25 04:55:19.883+03	
f5064c38-8da8-6f91-799c-8653e6174fe8	2021-05-25 04:55:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:55:39.877+03	2021-05-25 04:55:39.883+03	
cf799585-0375-ac0e-07d2-4de35d280faf	2021-05-25 04:55:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:55:59.877+03	2021-05-25 04:55:59.883+03	
6d7277bf-1d5b-f10c-f084-beb5361d963e	2021-05-25 04:56:19.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:56:19.877+03	2021-05-25 04:56:19.884+03	
e944a3fc-218d-4b99-bdf7-e8893e29b3a1	2021-05-25 04:56:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:56:39.877+03	2021-05-25 04:56:39.883+03	
10464e73-96f2-7bc5-ab5e-e7d3342a2d48	2021-05-25 04:56:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:56:59.877+03	2021-05-25 04:56:59.882+03	
942f7426-da4d-d96b-70e1-155a3b9bedda	2021-05-25 04:57:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:57:19.877+03	2021-05-25 04:57:19.884+03	
f1e347e4-cdd3-5193-01fa-85cc2475a16a	2021-05-25 04:57:39.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:57:39.877+03	2021-05-25 04:57:39.884+03	
592951c1-f7eb-7220-abe4-8350efaf2137	2021-05-25 04:57:59.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:57:59.877+03	2021-05-25 04:58:00.121+03	
d7cea43b-7a4a-7508-e7e4-8527f0d043ae	2021-05-25 04:58:19.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:58:19.878+03	2021-05-25 04:58:19.886+03	
005f537e-6e05-54be-1dfc-20e490068ead	2021-05-25 04:58:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:58:30.877+03	2021-05-25 04:58:30.884+03	
d54f7f16-ccd1-9d83-001d-3255058f0222	2021-05-25 04:58:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:58:50.877+03	2021-05-25 04:58:50.883+03	
d5225db9-4610-f0ad-1504-f5efaa1cd42c	2021-05-25 04:59:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:59:10.877+03	2021-05-25 04:59:10.884+03	
1ee8d2ee-3584-c96c-d4f5-5e247d0b4a1d	2021-05-25 04:59:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:59:30.877+03	2021-05-25 04:59:30.885+03	
b2dbd13b-5014-d670-c648-dcfea737733d	2021-05-25 04:59:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 04:59:50.877+03	2021-05-25 04:59:50.884+03	
e5e44969-8911-3023-669b-a3d22ef2df19	2021-05-25 05:00:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:00:00.877+03	2021-05-25 05:00:00.894+03	
d61f4b9e-2cba-e95c-c209-35f57d63f99e	2021-05-25 05:00:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:00:10.877+03	2021-05-25 05:00:10.884+03	
9d98b8a6-9d12-af47-2ce6-455ca8c340b9	2021-05-25 05:00:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:00:30.877+03	2021-05-25 05:00:30.884+03	
64c83825-e61d-24f9-5a74-1a8e5db31961	2021-05-25 05:00:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:00:50.877+03	2021-05-25 05:00:50.883+03	
48974cd5-dc6c-19ad-ed85-464b8a10d31c	2021-05-25 05:01:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:01:10.877+03	2021-05-25 05:01:10.886+03	
9484beac-d20c-ce47-e2c5-067269caac11	2021-05-25 05:01:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:01:30.877+03	2021-05-25 05:01:30.884+03	
8118e284-433d-e957-ac05-a92c4f7d6cc6	2021-05-25 05:01:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:01:50.877+03	2021-05-25 05:01:50.886+03	
44b16bd3-de4d-5c63-c603-71b91ec89c3d	2021-05-25 05:02:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:02:10.877+03	2021-05-25 05:02:10.884+03	
2f7a9560-cfd2-1858-6102-7477ca1a93ab	2021-05-25 05:02:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:02:30.877+03	2021-05-25 05:02:30.885+03	
264aef2a-2613-bdc5-7472-82c4fa4ccef9	2021-05-25 05:02:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:02:50.877+03	2021-05-25 05:02:50.883+03	
9816844f-cf81-587d-a570-1e350719694d	2021-05-25 05:03:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:03:10.877+03	2021-05-25 05:03:10.884+03	
2e61b5ca-ce54-51a8-d664-3e66058ea11d	2021-05-25 05:03:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:03:30.877+03	2021-05-25 05:03:30.883+03	
12d50003-1f41-a854-d1ec-4639641a7827	2021-05-25 05:03:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:03:50.877+03	2021-05-25 05:03:50.884+03	
675dbb67-0fc8-a814-123f-d7c17eab81cf	2021-05-25 05:04:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:04:10.877+03	2021-05-25 05:04:10.884+03	
54e932a4-d5a0-af7e-ac32-b8e1ad2cfbb0	2021-05-25 05:04:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:04:30.877+03	2021-05-25 05:04:30.883+03	
c2ce0360-295b-c216-d05d-007462615365	2021-05-25 05:04:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:04:50.877+03	2021-05-25 05:04:50.884+03	
06bc0b34-21b7-90be-e9c4-4c1eaf0bbe04	2021-05-25 05:05:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:05:10.877+03	2021-05-25 05:05:10.883+03	
1c66062e-4279-2934-7fd4-c0ce8f46fcbc	2021-05-25 05:05:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:05:30.877+03	2021-05-25 05:05:30.885+03	
ca3d754b-b948-4a67-e75f-58f5578d2f26	2021-05-25 05:05:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:05:50.877+03	2021-05-25 05:05:50.883+03	
be76d1ce-b181-70d2-ec5f-8bffcdd99f9f	2021-05-25 05:06:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:06:10.877+03	2021-05-25 05:06:10.884+03	
7cd8d9bc-c6a4-167a-6c5b-437a521626ae	2021-05-25 05:06:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:06:30.877+03	2021-05-25 05:06:30.883+03	
ae4f27c2-7de1-29cf-3a4d-e8bc00b65863	2021-05-25 05:06:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:06:50.877+03	2021-05-25 05:06:50.886+03	
e6b7901f-347c-5451-7cfb-ba60fe7ae64c	2021-05-25 05:07:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:07:10.877+03	2021-05-25 05:07:10.882+03	
a01b4a51-9996-166f-b340-437a096e37c2	2021-05-25 05:07:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:07:30.877+03	2021-05-25 05:07:30.887+03	
2c35ce64-426b-7a38-bf65-5a85365b3990	2021-05-25 05:07:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:07:50.877+03	2021-05-25 05:07:50.882+03	
86343ed7-18dd-83fe-3b72-7c0564b166ec	2021-05-25 05:08:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:08:10.877+03	2021-05-25 05:08:10.883+03	
9d02899b-631e-042a-89ad-3b56316f3609	2021-05-25 05:08:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:08:30.877+03	2021-05-25 05:08:30.883+03	
0dbcebb9-a2ea-3837-924a-123695a36833	2021-05-25 05:08:50.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:08:50.877+03	2021-05-25 05:08:50.882+03	
76062d8b-5984-ded8-44dc-2c5c198f87ad	2021-05-25 05:09:10.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:09:10.877+03	2021-05-25 05:09:10.884+03	
7b802117-5a90-30b8-756b-2e86636c2399	2021-05-25 05:09:30.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:09:30.877+03	2021-05-25 05:09:30.883+03	
1278cdd5-5006-0158-c19d-4051a2b98ef8	2021-05-25 05:09:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:09:51.877+03	2021-05-25 05:09:51.884+03	
32f5a888-526b-3028-2a6f-3288cd2d17e2	2021-05-25 05:10:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:10:01.877+03	2021-05-25 05:10:01.883+03	
d1122f8a-2f96-f71c-c3c2-6a67b8679566	2021-05-25 05:10:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:10:21.877+03	2021-05-25 05:10:21.884+03	
a9300aec-7c32-4210-b6c1-559dc8c4989f	2021-05-25 05:10:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:10:41.877+03	2021-05-25 05:10:42.116+03	
f9931e34-890f-560b-147f-f95a0078ab18	2021-05-25 05:11:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:11:01.877+03	2021-05-25 05:11:01.882+03	
ca779705-9758-ac36-8a40-75f1caa3163f	2021-05-25 05:11:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:11:21.877+03	2021-05-25 05:11:21.884+03	
6e730ede-5e43-5851-a521-d7d7e650c2dd	2021-05-25 05:11:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:11:41.877+03	2021-05-25 05:11:41.884+03	
20444eb4-0bd6-6a24-6815-66b645ebed6a	2021-05-25 05:12:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:12:01.877+03	2021-05-25 05:12:01.883+03	
b4f6bcd4-d9f8-6658-bca7-cb5fa21ca065	2021-05-25 05:12:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:12:21.877+03	2021-05-25 05:12:21.883+03	
694c843d-83f2-8862-e7d6-6ff3b1c927bf	2021-05-25 05:12:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:12:41.877+03	2021-05-25 05:12:41.883+03	
c76e1eff-9c4b-cccc-14e7-ea74b2c801ed	2021-05-25 05:13:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:13:01.877+03	2021-05-25 05:13:01.883+03	
b2a22d95-431d-ee30-0021-8fbd27c3d73b	2021-05-25 05:13:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:13:21.877+03	2021-05-25 05:13:21.883+03	
894cfa7a-e762-3fe0-ed16-bfd26cb54c6e	2021-05-25 05:13:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:13:41.877+03	2021-05-25 05:13:41.884+03	
36f531ed-b0e5-9b6c-4f09-0bcaa6e1d2be	2021-05-25 05:14:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:14:01.877+03	2021-05-25 05:14:01.891+03	
f29fb951-e52f-be00-f5b7-da65aaf553c0	2021-05-25 05:14:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:14:21.877+03	2021-05-25 05:14:22.171+03	
4faade75-c661-50ec-746c-ef6e42cec163	2021-05-25 05:14:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:14:41.877+03	2021-05-25 05:14:42.565+03	
7d5f0ba5-d151-1482-b59c-efedbac79eae	2021-05-25 05:15:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:15:01.877+03	2021-05-25 05:15:01.884+03	
772afd74-ebfc-4e12-560b-559fd4f6b8ce	2021-05-25 05:15:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:15:21.877+03	2021-05-25 05:15:21.883+03	
29fa0656-8267-65f4-e4fa-e9826f17dc6e	2021-05-25 05:15:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:15:41.877+03	2021-05-25 05:15:41.883+03	
d6b3cd0f-872a-9566-e45c-8544c5cb261b	2021-05-25 05:16:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:16:01.877+03	2021-05-25 05:16:01.884+03	
1538a55c-31de-d921-e45e-c54e6185f5e0	2021-05-25 05:16:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:16:21.877+03	2021-05-25 05:16:21.885+03	
373d9516-9c77-af8c-0b8f-e405c78dc865	2021-05-25 05:16:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:16:41.877+03	2021-05-25 05:16:41.883+03	
7363ac1a-5901-61fb-8676-ddfff37c04bf	2021-05-25 05:17:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:17:01.877+03	2021-05-25 05:17:02.217+03	
e4967556-ed05-8603-f1c0-c8d135dc356b	2021-05-25 05:17:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:17:21.877+03	2021-05-25 05:17:21.883+03	
b428122a-88c6-ecb6-2eb3-7c9b54d091e1	2021-05-25 05:17:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:17:41.877+03	2021-05-25 05:17:41.885+03	
4d2882d4-b656-70ba-f578-5643862d3775	2021-05-25 05:18:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:18:01.877+03	2021-05-25 05:18:01.884+03	
7b3dbfd2-4b92-70af-6444-6bfe66d56e34	2021-05-25 05:18:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:18:21.877+03	2021-05-25 05:18:21.883+03	
be5fd3c5-3f90-3c56-8d1d-6f510d34fac6	2021-05-25 05:18:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:18:41.877+03	2021-05-25 05:18:41.883+03	
b5582ee5-c153-6369-199f-2a64295dba35	2021-05-25 05:19:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:19:01.877+03	2021-05-25 05:19:01.883+03	
697ace90-ad9a-0826-013c-40ed55bc44e8	2021-05-25 05:19:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:19:21.877+03	2021-05-25 05:19:21.884+03	
0136d283-34f0-e3b0-aafe-18b3c4540d5d	2021-05-25 05:19:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:19:41.877+03	2021-05-25 05:19:41.883+03	
ee9131ab-6e44-f0c1-9294-075cc9fec0eb	2021-05-25 05:20:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 05:20:00.877+03	2021-05-25 05:20:00.882+03	ERROR
3124ad17-00ba-492b-745e-904b72b35de2	2021-05-25 05:20:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:20:11.877+03	2021-05-25 05:20:11.883+03	
0477859a-6447-f689-e8ae-487b9c9a0dfa	2021-05-25 05:20:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:20:31.877+03	2021-05-25 05:20:31.885+03	
81fe3eef-a76d-69a0-dd0b-c3b6cab1967b	2021-05-25 05:20:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:20:51.877+03	2021-05-25 05:20:51.883+03	
743aad16-4971-bd48-3bda-42543b3913cc	2021-05-25 05:21:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:21:11.877+03	2021-05-25 05:21:11.885+03	
d9c405c5-794b-daf0-ca0c-77e7bfb93de3	2021-05-25 05:21:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:21:31.877+03	2021-05-25 05:21:31.885+03	
da4433fe-6848-2a28-99c9-f33564a1cf78	2021-05-25 05:21:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:21:51.877+03	2021-05-25 05:21:51.884+03	
dac2fe12-18d7-02d7-da3e-b20fa4cf68ee	2021-05-25 05:22:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:22:11.877+03	2021-05-25 05:22:12.218+03	
bca6cce2-65f4-9000-93bb-d6a5e007c356	2021-05-25 05:22:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:22:31.877+03	2021-05-25 05:22:31.886+03	
ab3c2df5-5a43-01ef-adf3-0698660d70a5	2021-05-25 05:22:51.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:22:51.878+03	2021-05-25 05:22:51.884+03	
a0886c2a-9c48-7a32-a25f-12e715ece950	2021-05-25 05:23:12.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:23:12.877+03	2021-05-25 05:23:12.884+03	
b9b65894-0ca7-7302-b6a7-3a83f89ba1bd	2021-05-25 05:23:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:23:33.877+03	2021-05-25 05:23:33.885+03	
dccac63c-c6f1-dcb1-f50c-c61c65833f9e	2021-05-25 05:23:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:23:53.877+03	2021-05-25 05:23:53.884+03	
bc16c9e4-3d75-a758-a4f4-041c4ff2be09	2021-05-25 05:24:13.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:24:13.877+03	2021-05-25 05:24:13.884+03	
2369bbe8-f69f-f40e-d4b4-9b73e7ee3c08	2021-05-25 05:24:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:24:33.877+03	2021-05-25 05:24:33.885+03	
6adb9102-76a8-d509-f6e8-7492bf428dd0	2021-05-25 05:24:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:24:53.877+03	2021-05-25 05:24:53.918+03	
63d72463-e94b-654f-a415-ae483c3efb14	2021-05-25 05:25:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:25:13.877+03	2021-05-25 05:25:13.882+03	
7f058eff-f299-ce77-9f9e-22f623ec0724	2021-05-25 05:25:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:25:33.877+03	2021-05-25 05:25:33.883+03	
4b069db6-a724-54de-fad8-c761dcd18b0b	2021-05-25 05:05:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:05:40.877+03	2021-05-25 05:05:40.883+03	
880ac90f-d1e2-e848-da48-2b17160867e0	2021-05-25 05:06:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:06:00.877+03	2021-05-25 05:06:00.883+03	
757933a0-d8e5-95a3-eb50-102adcd2eafc	2021-05-25 05:06:20.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:06:20.877+03	2021-05-25 05:06:20.884+03	
433e9b71-e42e-3064-808b-a7d72b95d2ac	2021-05-25 05:06:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:06:40.877+03	2021-05-25 05:06:40.883+03	
cea18144-c57d-108d-b02c-147f7998ca95	2021-05-25 05:07:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:07:00.877+03	2021-05-25 05:07:00.884+03	
9926a7bd-ac69-35f8-f1cd-8e809531d72e	2021-05-25 05:07:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:07:20.877+03	2021-05-25 05:07:20.885+03	
594d9b58-1588-8052-ff7d-845232f4d1a1	2021-05-25 05:07:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:07:40.877+03	2021-05-25 05:07:41.095+03	
922aa0cd-af1a-5fb0-6b0c-c820482984cc	2021-05-25 05:08:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:08:00.877+03	2021-05-25 05:08:00.955+03	
2df9fa7e-a01d-3215-cc63-d1de215d2b6b	2021-05-25 05:08:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:08:20.877+03	2021-05-25 05:08:20.884+03	
fef0e638-ceaa-9fdc-881c-9bc786d10525	2021-05-25 05:08:40.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:08:40.877+03	2021-05-25 05:08:40.885+03	
0b36d188-3c66-398b-f495-0bf91093fcfd	2021-05-25 05:09:00.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:09:00.877+03	2021-05-25 05:09:01.161+03	
8997171e-0638-03a5-ec79-f0bcda130e1b	2021-05-25 05:09:20.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:09:20.877+03	2021-05-25 05:09:20.885+03	
0719d155-31f4-6e6c-1dad-782b975de8b2	2021-05-25 05:09:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:09:41.877+03	2021-05-25 05:09:41.883+03	
3b3aacea-76da-b922-80ac-6c6f06f46d91	2021-05-25 05:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 05:10:00.877+03	2021-05-25 05:10:00.881+03	ERROR
29387937-05b3-e335-7877-789cad57cb53	2021-05-25 05:10:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:10:11.877+03	2021-05-25 05:10:11.882+03	
42837657-5c91-c29a-c92c-679acfa55b22	2021-05-25 05:10:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:10:31.877+03	2021-05-25 05:10:31.895+03	
d0da8ae3-8256-eac2-80f5-b48ae40268b9	2021-05-25 05:10:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:10:51.877+03	2021-05-25 05:10:51.882+03	
d1687c4d-66c5-2571-bda6-c39fb30bd64f	2021-05-25 05:11:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:11:11.877+03	2021-05-25 05:11:11.883+03	
81f842fc-bda3-6065-6eb8-d0feb691b211	2021-05-25 05:11:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:11:31.877+03	2021-05-25 05:11:31.885+03	
76631ad8-9225-d97a-e1a9-27c25c010d57	2021-05-25 05:11:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:11:51.877+03	2021-05-25 05:11:51.884+03	
35cdddc4-b061-6c9c-8c25-6b7afdc6a5d4	2021-05-25 05:12:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:12:11.877+03	2021-05-25 05:12:11.885+03	
982866fa-de99-8329-9149-7fc9bacbd3b4	2021-05-25 05:12:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:12:31.877+03	2021-05-25 05:12:31.882+03	
8d52f206-cdb9-f0f3-d063-9239a2853fa4	2021-05-25 05:12:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:12:51.877+03	2021-05-25 05:12:51.884+03	
dbdc084f-c7d1-cfd2-abfc-f8011b3d3b4f	2021-05-25 05:13:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:13:11.877+03	2021-05-25 05:13:11.882+03	
d9a21426-32f3-c506-32d3-e545ca69b3b1	2021-05-25 05:13:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:13:31.877+03	2021-05-25 05:13:31.883+03	
c62e4d5b-be8c-dc80-db4f-1fab94a5f65c	2021-05-25 05:13:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:13:51.877+03	2021-05-25 05:13:51.884+03	
82f50b7b-678a-e327-1057-4cd392af43ef	2021-05-25 05:14:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:14:11.877+03	2021-05-25 05:14:11.885+03	
26b1b6b8-a1d3-9bef-d6d3-f99dd2f407da	2021-05-25 05:14:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:14:31.877+03	2021-05-25 05:14:31.884+03	
f66ff3ba-0f80-7a4f-e35d-fc6dc2920cbe	2021-05-25 05:14:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:14:51.877+03	2021-05-25 05:14:51.884+03	
bd451765-6b86-71c0-b74b-0e6248d9ee59	2021-05-25 05:15:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:15:11.877+03	2021-05-25 05:15:11.883+03	
65a62ef2-de3f-1ca3-5bcd-6732eb126ad1	2021-05-25 05:15:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:15:31.877+03	2021-05-25 05:15:31.885+03	
b9373380-71f0-e50d-3d09-b8fa591056a9	2021-05-25 05:15:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:15:51.877+03	2021-05-25 05:15:51.891+03	
9e911d4d-f903-aeb9-41cc-d99192e7ccb8	2021-05-25 05:16:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:16:11.877+03	2021-05-25 05:16:11.884+03	
051c546c-9aa9-8c27-4e09-2be68fd45650	2021-05-25 05:16:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:16:31.877+03	2021-05-25 05:16:31.883+03	
04aa921c-72d4-4329-5d69-4954a6172f4f	2021-05-25 05:16:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:16:51.877+03	2021-05-25 05:16:51.884+03	
bfe6466c-a272-fb49-8dcd-5ae289ced85d	2021-05-25 05:17:11.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:17:11.877+03	2021-05-25 05:17:11.884+03	
c3e609c9-0f96-00e0-9562-3b1d8f3663ea	2021-05-25 05:17:31.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:17:31.877+03	2021-05-25 05:17:31.885+03	
b71eceec-c327-e7dd-d30f-12c5d0b8444c	2021-05-25 05:17:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:17:51.877+03	2021-05-25 05:17:51.884+03	
ca82e3a7-186d-496c-d9d5-44410c645436	2021-05-25 05:18:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:18:11.877+03	2021-05-25 05:18:11.89+03	
327c883f-2140-5079-8d83-375c7916960e	2021-05-25 05:18:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:18:31.877+03	2021-05-25 05:18:31.883+03	
818cfec7-d184-7e2f-0eae-eba2e7668590	2021-05-25 05:18:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:18:51.877+03	2021-05-25 05:18:51.883+03	
dd9eb544-6f55-2fc4-d322-9e5439008223	2021-05-25 05:19:11.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:19:11.877+03	2021-05-25 05:19:11.883+03	
e50d5de1-98da-3139-d669-ab9829f5920f	2021-05-25 05:19:31.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:19:31.877+03	2021-05-25 05:19:31.883+03	
e8eaa5e1-d9e8-e9b4-b614-a4536396f9cc	2021-05-25 05:19:51.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:19:51.877+03	2021-05-25 05:19:51.883+03	
0de08ea9-1aa5-55a7-3fa1-89f0d740087d	2021-05-25 05:20:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:20:01.877+03	2021-05-25 05:20:01.938+03	
674384f0-2f09-1b2a-1149-f0ba8c4216e8	2021-05-25 05:20:21.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:20:21.877+03	2021-05-25 05:20:21.886+03	
752f6b97-7fc7-1b42-13cb-9a115551307d	2021-05-25 05:20:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:20:41.877+03	2021-05-25 05:20:41.882+03	
ee2ee342-5dfe-18ca-d1f3-21f5bc1b4fce	2021-05-25 05:21:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:21:01.877+03	2021-05-25 05:21:01.884+03	
2fb157cb-3505-6764-da49-ed340ffbae78	2021-05-25 05:21:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:21:21.877+03	2021-05-25 05:21:22.218+03	
5c607344-69b6-9f8e-1a4d-685e98e1948e	2021-05-25 05:21:41.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:21:41.877+03	2021-05-25 05:21:41.884+03	
186650a0-7b0f-2fc7-e4a0-253b8df95808	2021-05-25 05:22:01.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:22:01.877+03	2021-05-25 05:22:01.884+03	
5529cf99-766a-71af-451b-dd8490b44ff5	2021-05-25 05:22:21.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:22:21.877+03	2021-05-25 05:22:21.884+03	
975cd0e3-119c-5bf7-0dd4-e24a6490b347	2021-05-25 05:22:41.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:22:41.877+03	2021-05-25 05:22:41.885+03	
8b2dc854-dc02-851c-ab44-38294a94f702	2021-05-25 05:23:02.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:23:02.877+03	2021-05-25 05:23:02.885+03	
c46c57aa-c3c6-0b8b-2bb7-13cbf37c0f1b	2021-05-25 05:23:22.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:23:22.878+03	2021-05-25 05:23:22.885+03	
153ab2f8-e562-dd72-599d-d30f88b93a86	2021-05-25 05:23:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:23:43.877+03	2021-05-25 05:23:43.883+03	
014d838a-1f4e-1be5-1bf1-d2dd9eb5ac1b	2021-05-25 05:24:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:24:03.877+03	2021-05-25 05:24:03.884+03	
4f7181db-b1b1-1445-80b9-ec9aa41dbc85	2021-05-25 05:24:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:24:23.877+03	2021-05-25 05:24:23.884+03	
98c3f0cb-8d49-4b50-5656-8306180d87c2	2021-05-25 05:24:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:24:43.877+03	2021-05-25 05:24:43.885+03	
e7f86c24-463b-e16d-c3ab-66bb23df28b9	2021-05-25 05:25:03.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:25:03.877+03	2021-05-25 05:25:04.148+03	
7218e33d-7c6c-0823-b584-3c5e0ced6aab	2021-05-25 05:25:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:25:23.877+03	2021-05-25 05:25:23.885+03	
45d2f8b7-b588-0eb6-6bc0-06fb998a36e5	2021-05-25 05:25:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:25:43.877+03	2021-05-25 05:25:43.882+03	
861c2649-e7c1-5875-1e71-980d52799949	2021-05-25 05:26:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:26:03.877+03	2021-05-25 05:26:03.883+03	
4dbd52b3-14c1-f8be-955c-598932b6c9d3	2021-05-25 05:25:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:25:53.877+03	2021-05-25 05:25:53.887+03	
ab0686d7-fc1b-7eef-ed27-62ec64b36f7e	2021-05-25 05:26:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:26:13.877+03	2021-05-25 05:26:13.883+03	
f12d8c3c-9b34-473f-03b9-92a0a1da4c1e	2021-05-25 05:26:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:26:33.877+03	2021-05-25 05:26:33.883+03	
3a391685-8608-d67f-8002-232accd46639	2021-05-25 05:26:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:26:53.877+03	2021-05-25 05:26:53.883+03	
6ca8bc8f-3482-381a-a614-59826aeb7d07	2021-05-25 05:27:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:27:13.877+03	2021-05-25 05:27:13.883+03	
579bee81-9728-67cb-797b-9d845769760c	2021-05-25 05:27:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:27:33.877+03	2021-05-25 05:27:33.885+03	
bbe4ffcd-cece-9167-a554-7e467c821761	2021-05-25 05:27:53.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:27:53.877+03	2021-05-25 05:27:53.883+03	
773b5caa-df54-f960-6ad9-e283e89550ba	2021-05-25 05:28:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:28:13.877+03	2021-05-25 05:28:13.882+03	
b42e3137-32bc-ad1b-22ee-4972aca512ca	2021-05-25 05:28:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:28:33.877+03	2021-05-25 05:28:33.884+03	
81ec02e5-3464-9585-43a5-e32d80ae79e1	2021-05-25 05:28:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:28:53.877+03	2021-05-25 05:28:53.883+03	
6f31f78f-a7a3-07ff-7bd8-4d361098b9e5	2021-05-25 05:29:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:29:13.877+03	2021-05-25 05:29:13.885+03	
04cc8436-2083-01a0-812f-6a1243050d90	2021-05-25 05:29:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:29:33.877+03	2021-05-25 05:29:33.886+03	
f5fe86a6-1d92-d289-f45e-8b05e6473b43	2021-05-25 05:29:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:29:53.877+03	2021-05-25 05:29:53.883+03	
862bb2e2-3cf8-8ac3-b0a5-31a389596335	2021-05-25 05:30:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:30:03.877+03	2021-05-25 05:30:03.891+03	
7730ab16-a8bb-7731-61b2-1556ba8be1db	2021-05-25 05:30:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:30:23.877+03	2021-05-25 05:30:23.884+03	
c9eee3f3-6c02-70fe-47c4-03e1720b145f	2021-05-25 05:30:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:30:43.877+03	2021-05-25 05:30:43.883+03	
0e0493a1-50e1-022c-64a4-327acde60060	2021-05-25 05:31:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:31:03.877+03	2021-05-25 05:31:04.116+03	
0518ed36-5913-bc51-7c09-313c36016c36	2021-05-25 05:31:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:31:23.877+03	2021-05-25 05:31:24.105+03	
f408423d-b5be-c701-c987-bac2033fdd16	2021-05-25 05:31:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:31:43.877+03	2021-05-25 05:31:43.883+03	
6dd89405-1a22-fd19-e7ae-875941c5f753	2021-05-25 05:32:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:32:03.877+03	2021-05-25 05:32:03.884+03	
70976af8-bc39-6b98-4b93-304f2d8e9442	2021-05-25 05:32:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:32:23.877+03	2021-05-25 05:32:23.885+03	
94821e72-eb34-5f6e-3e4d-f05f7384c170	2021-05-25 05:32:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:32:43.877+03	2021-05-25 05:32:43.883+03	
500b1daa-cfcf-3a49-7a52-f4eb4d94e262	2021-05-25 05:33:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:33:03.877+03	2021-05-25 05:33:03.884+03	
97bcefbc-6f6e-155c-f589-53e1cc3d0bed	2021-05-25 05:33:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:33:23.877+03	2021-05-25 05:33:23.886+03	
1abbe05a-ccd4-75fd-9b8f-88ec8277e3b7	2021-05-25 05:33:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:33:43.877+03	2021-05-25 05:33:43.884+03	
3b92fbc2-bb11-49e9-2da0-7b3bf2ee4624	2021-05-25 05:34:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:34:03.877+03	2021-05-25 05:34:03.884+03	
95673f3d-1468-47e0-8281-23f1f3be6e8e	2021-05-25 05:34:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:34:24.877+03	2021-05-25 05:34:24.883+03	
e0fa5852-dd16-2b23-c266-4188a0634fff	2021-05-25 05:34:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:34:44.877+03	2021-05-25 05:34:44.884+03	
24d5c057-5582-0dfd-ab7c-1a403c8a977a	2021-05-25 05:35:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:35:04.877+03	2021-05-25 05:35:04.882+03	
3b335f02-2c13-469d-1293-e274493dcc8e	2021-05-25 05:35:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:35:24.877+03	2021-05-25 05:35:24.885+03	
2b3cbee2-a0ee-8d14-b443-9807c743ecee	2021-05-25 05:35:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:35:44.877+03	2021-05-25 05:35:44.883+03	
feef8919-21c0-a1d3-69b4-604bb7d40b44	2021-05-25 05:36:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:36:04.877+03	2021-05-25 05:36:04.884+03	
672b825e-d3a6-90fc-0db2-27dd7eec80d0	2021-05-25 05:36:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:36:24.877+03	2021-05-25 05:36:24.884+03	
afcc07ad-b320-90c3-a777-35f69e965b39	2021-05-25 05:36:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:36:44.877+03	2021-05-25 05:36:44.882+03	
50bce245-7c72-4bd9-5c9c-b53c59782048	2021-05-25 05:37:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:37:04.877+03	2021-05-25 05:37:04.883+03	
8d1a4cbc-fc4a-f739-a71c-4e36b7e6550a	2021-05-25 05:37:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:37:24.877+03	2021-05-25 05:37:24.884+03	
3e5a2727-645c-7784-35c0-d6d32a6e317b	2021-05-25 05:37:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:37:44.877+03	2021-05-25 05:37:44.884+03	
2e97be83-c07e-0941-ebf7-d9ac7d13bccc	2021-05-25 05:38:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:38:04.877+03	2021-05-25 05:38:04.885+03	
3f2fd86f-1e13-2ab3-f0a9-eb8b12d0138b	2021-05-25 05:38:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:38:24.877+03	2021-05-25 05:38:24.9+03	
a8fc6ebf-2e01-45c4-b2f7-9b90297f62b9	2021-05-25 05:38:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:38:44.877+03	2021-05-25 05:38:44.885+03	
b9a656ec-fb39-f685-779b-1fd872e1cb14	2021-05-25 05:39:04.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:39:04.877+03	2021-05-25 05:39:04.884+03	
72c3768b-8e69-7a64-e84e-9d98d02a1110	2021-05-25 05:39:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:39:24.877+03	2021-05-25 05:39:24.884+03	
18ccd231-7ce5-a6ad-29c2-d6613812edc4	2021-05-25 05:39:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:39:44.877+03	2021-05-25 05:39:44.883+03	
018f8980-12b4-3e6a-714e-f07f5d80b849	2021-05-25 05:40:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 05:40:00.877+03	2021-05-25 05:40:00.882+03	ERROR
e15f6730-cbef-7eb7-0de2-9b68f9852132	2021-05-25 05:40:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:40:14.877+03	2021-05-25 05:40:14.887+03	
dbca85cb-0131-fc15-fc61-2b13f82a7c61	2021-05-25 05:40:34.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:40:34.877+03	2021-05-25 05:40:34.885+03	
362b1e69-cfc8-9618-78ef-8287d3996780	2021-05-25 05:40:54.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:40:54.877+03	2021-05-25 05:40:54.884+03	
671c9630-d2c4-27a8-0df2-ce7ec9a97f11	2021-05-25 05:41:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:41:14.877+03	2021-05-25 05:41:14.883+03	
a9b9aaec-5389-28be-3cda-94c9de052b06	2021-05-25 05:41:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:41:34.877+03	2021-05-25 05:41:34.883+03	
3a032b7b-2782-4826-8456-14d4e1b2d064	2021-05-25 05:41:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:41:54.877+03	2021-05-25 05:41:54.884+03	
8c597f26-f868-21d2-68d4-33546b99947e	2021-05-25 05:42:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:42:14.877+03	2021-05-25 05:42:15.209+03	
402db6e1-4f97-c755-ffcd-b2474ab4dfaa	2021-05-25 05:42:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:42:34.877+03	2021-05-25 05:42:35.214+03	
4b73a6fc-c70d-0791-1a51-ad384dff430f	2021-05-25 05:42:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:42:54.877+03	2021-05-25 05:42:55.197+03	
e2337c29-5f50-09c4-df50-74dc9a600c1d	2021-05-25 05:43:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:43:14.877+03	2021-05-25 05:43:14.884+03	
d2e70803-201a-3dc7-ef72-7a608e1e2e46	2021-05-25 05:43:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:43:34.877+03	2021-05-25 05:43:34.883+03	
b50fe7f0-0832-f859-e937-18d39693d087	2021-05-25 05:43:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:43:54.877+03	2021-05-25 05:43:54.882+03	
0fc97976-85d0-d7e5-083f-b0b2eaba558f	2021-05-25 05:44:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:44:14.877+03	2021-05-25 05:44:14.884+03	
075ac501-c4a3-d645-5c08-c59df52715c3	2021-05-25 05:44:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:44:34.877+03	2021-05-25 05:44:34.886+03	
20688da3-9302-9446-bf4a-4fe8bb952bdf	2021-05-25 05:44:54.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:44:54.877+03	2021-05-25 05:44:54.883+03	
83513300-5e8d-bc20-e3a8-e8728659e346	2021-05-25 05:45:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:45:14.877+03	2021-05-25 05:45:14.884+03	
633bf36a-6cbb-b949-7f13-57644abd6568	2021-05-25 05:45:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:45:35.877+03	2021-05-25 05:45:35.883+03	
629f6e6b-b11f-f77e-6b8d-6c4ebe465376	2021-05-25 05:45:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:45:55.877+03	2021-05-25 05:45:55.883+03	
ad30eba5-9366-b640-c72e-231b4b5d32d0	2021-05-25 05:46:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:46:15.877+03	2021-05-25 05:46:15.883+03	
8ac1dc3d-4c2a-47f0-39ba-4ed30c791c35	2021-05-25 05:26:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:26:23.877+03	2021-05-25 05:26:23.884+03	
0d1f8d37-07dd-4e71-c89e-da2ca8457f21	2021-05-25 05:26:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:26:43.877+03	2021-05-25 05:26:43.883+03	
68715b80-982b-c326-df58-c2427680fdfa	2021-05-25 05:27:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:27:03.877+03	2021-05-25 05:27:03.882+03	
a18c10ed-974d-19f1-8f96-f8766c4a2f94	2021-05-25 05:27:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:27:23.877+03	2021-05-25 05:27:23.884+03	
efc2d870-a179-eab0-a3f1-4b3b2ee65f0d	2021-05-25 05:27:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:27:43.877+03	2021-05-25 05:27:43.882+03	
aa6a5a8c-4f3e-d695-4e48-7bdeca768f5f	2021-05-25 05:28:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:28:03.877+03	2021-05-25 05:28:03.882+03	
12dd9fd8-c050-dc2f-5bc6-8a430b173e17	2021-05-25 05:28:23.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:28:23.877+03	2021-05-25 05:28:23.883+03	
b5754457-4467-1349-20a1-6c6ffb0dddcc	2021-05-25 05:28:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:28:43.877+03	2021-05-25 05:28:43.883+03	
d27dbe84-4f85-8ee1-588d-9b46f65aac6a	2021-05-25 05:29:03.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:29:03.877+03	2021-05-25 05:29:03.882+03	
27c53d44-ca5c-95c1-e454-aaa5529bdaa4	2021-05-25 05:29:23.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:29:23.877+03	2021-05-25 05:29:23.886+03	
c707f78d-bab5-91c2-6284-691539175fe6	2021-05-25 05:29:43.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:29:43.877+03	2021-05-25 05:29:44.161+03	
7cd86796-5d8c-6897-0537-db1dbcfba6e8	2021-05-25 05:30:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 05:30:00.877+03	2021-05-25 05:30:00.882+03	ERROR
2da9261e-30c7-4873-6be8-d9e93c160f25	2021-05-25 05:30:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:30:13.877+03	2021-05-25 05:30:13.884+03	
4deb08fd-1989-f10e-7570-9bc02c22b7d3	2021-05-25 05:30:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:30:33.877+03	2021-05-25 05:30:33.888+03	
5d027212-344d-00b1-2598-4dd4ce2c8575	2021-05-25 05:30:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:30:53.877+03	2021-05-25 05:30:53.883+03	
5f9db609-e0ad-71a0-b801-2c3a5ac0bace	2021-05-25 05:31:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:31:13.877+03	2021-05-25 05:31:13.885+03	
ec8373a0-2578-b9aa-658b-9bd3f68dbfed	2021-05-25 05:31:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:31:33.877+03	2021-05-25 05:31:33.884+03	
83455814-85fc-bfc5-6c1c-70c25c4e13bc	2021-05-25 05:31:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:31:53.877+03	2021-05-25 05:31:53.886+03	
3ef43bb9-3ed2-0d6e-4a79-a6dbd370cb39	2021-05-25 05:32:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:32:13.877+03	2021-05-25 05:32:13.885+03	
9712df88-01f2-3993-7071-8a9a0f6a31c5	2021-05-25 05:32:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:32:33.877+03	2021-05-25 05:32:33.884+03	
650c6459-fccd-9406-a47e-e053f444da57	2021-05-25 05:32:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:32:53.877+03	2021-05-25 05:32:53.883+03	
f7b8286e-ec7e-c1ba-aa60-19ae64633ad2	2021-05-25 05:33:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:33:13.877+03	2021-05-25 05:33:13.882+03	
4216d482-7910-840d-873a-d58606bdded7	2021-05-25 05:33:33.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:33:33.877+03	2021-05-25 05:33:33.884+03	
3e0ee0ea-0fe9-24ad-425f-b1edcaeaea6e	2021-05-25 05:33:53.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:33:53.877+03	2021-05-25 05:33:53.885+03	
e956947a-85ec-f98d-092b-640fb46905c4	2021-05-25 05:34:13.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:34:13.877+03	2021-05-25 05:34:13.885+03	
100b882f-f1c8-6454-c080-74ae05156467	2021-05-25 05:34:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:34:34.877+03	2021-05-25 05:34:34.883+03	
d63d0aac-4d4a-af4c-ff1b-8d69e46ecdee	2021-05-25 05:34:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:34:54.877+03	2021-05-25 05:34:54.884+03	
19f11cc5-de3b-c096-6176-9521364e3b93	2021-05-25 05:35:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:35:14.877+03	2021-05-25 05:35:14.884+03	
1b79d54d-8bef-9367-1dd4-ffa7dbf982d7	2021-05-25 05:35:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:35:34.877+03	2021-05-25 05:35:34.887+03	
c6118e65-3381-b0b0-76d1-3606007d3551	2021-05-25 05:35:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:35:54.877+03	2021-05-25 05:35:54.882+03	
6ec7ce03-6be0-679f-93b2-2700f5374d0b	2021-05-25 05:36:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:36:14.877+03	2021-05-25 05:36:14.883+03	
6b83011f-f520-e051-aeb1-736670e568ce	2021-05-25 05:36:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:36:34.877+03	2021-05-25 05:36:34.883+03	
86d898e3-8aea-f9b0-c437-209404a13a57	2021-05-25 05:36:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:36:54.877+03	2021-05-25 05:36:54.883+03	
d705fd20-decb-8c9f-8417-c31d1de801e6	2021-05-25 05:37:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:37:14.877+03	2021-05-25 05:37:14.882+03	
dac9bcaf-ed1d-e36e-2def-36a21956d652	2021-05-25 05:37:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:37:34.877+03	2021-05-25 05:37:34.884+03	
a68b61c8-2c1c-23d3-92ef-8e8569d1ffc1	2021-05-25 05:37:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:37:54.877+03	2021-05-25 05:37:54.884+03	
6610cfd1-3318-234a-a4a8-3b1574e3fd6a	2021-05-25 05:38:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:38:14.877+03	2021-05-25 05:38:14.884+03	
b9411277-b28a-a6cd-8053-4bd695d94507	2021-05-25 05:38:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:38:34.877+03	2021-05-25 05:38:34.885+03	
8abb5820-028e-8a88-f888-de640a0a0560	2021-05-25 05:38:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:38:54.877+03	2021-05-25 05:38:54.885+03	
6f317ca0-b21d-39e7-a025-25daa31fc593	2021-05-25 05:39:14.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:39:14.877+03	2021-05-25 05:39:14.884+03	
f1362fbc-53aa-2e1e-8460-33a6870c7013	2021-05-25 05:39:34.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:39:34.877+03	2021-05-25 05:39:34.882+03	
b6867048-78d7-5941-b390-3ddfb44b7049	2021-05-25 05:39:54.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:39:54.877+03	2021-05-25 05:39:54.886+03	
4f5621d3-7cc9-bed3-4259-11c94a30d471	2021-05-25 05:40:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:40:04.877+03	2021-05-25 05:40:04.883+03	
167b4f99-1102-e252-cb20-d26e2c7afe30	2021-05-25 05:40:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:40:24.877+03	2021-05-25 05:40:24.884+03	
0f218a9c-c4f7-24a5-045f-dbbf3944ac28	2021-05-25 05:40:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:40:44.877+03	2021-05-25 05:40:44.883+03	
398755f8-b155-e828-461d-34bdeeaf3980	2021-05-25 05:41:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:41:04.877+03	2021-05-25 05:41:04.883+03	
8adda4d2-77b5-bedd-cbd2-2897bcbc8bf2	2021-05-25 05:41:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:41:24.877+03	2021-05-25 05:41:24.883+03	
3e49f959-ac4f-6883-2ff4-8b6197389d44	2021-05-25 05:41:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:41:44.877+03	2021-05-25 05:41:44.883+03	
36198719-d85f-c9d9-f523-09b3188e6e6b	2021-05-25 05:42:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:42:04.877+03	2021-05-25 05:42:04.883+03	
10ca8713-a484-636c-9623-a35bec9b72ae	2021-05-25 05:42:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:42:24.877+03	2021-05-25 05:42:24.884+03	
3f6177c8-700f-0a94-11e9-f2bc5a61d63f	2021-05-25 05:42:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:42:44.877+03	2021-05-25 05:42:44.883+03	
6a721a83-359b-5b9a-30ef-267170d658a6	2021-05-25 05:43:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:43:04.877+03	2021-05-25 05:43:05.119+03	
017e1877-248b-088a-b7f2-d35bf79b6cd9	2021-05-25 05:43:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:43:24.877+03	2021-05-25 05:43:24.883+03	
6ae321b0-08f1-18cb-b9aa-ea9a61508911	2021-05-25 05:43:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:43:44.877+03	2021-05-25 05:43:44.884+03	
17efcfc4-85dc-15e9-978b-cc40036ec6c4	2021-05-25 05:44:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:44:04.877+03	2021-05-25 05:44:04.884+03	
b34e2357-b3d7-4f9d-d150-e97569d21717	2021-05-25 05:44:24.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:44:24.877+03	2021-05-25 05:44:24.884+03	
4a87f8a3-4234-3483-0e7e-7290690e9b15	2021-05-25 05:44:44.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:44:44.877+03	2021-05-25 05:44:44.884+03	
31f8577a-b299-330d-4952-c87605b794d1	2021-05-25 05:45:04.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:45:04.877+03	2021-05-25 05:45:04.884+03	
d6415e70-5cfe-dc66-0019-f1bc8ba18f20	2021-05-25 05:45:24.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:45:24.878+03	2021-05-25 05:45:24.884+03	
4cf61a48-a406-104d-757b-284c1d18cdb0	2021-05-25 05:45:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:45:45.877+03	2021-05-25 05:45:45.883+03	
18d3b1ef-f9a5-ed8c-c0fc-81125d0b4eba	2021-05-25 05:46:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:46:05.877+03	2021-05-25 05:46:05.89+03	
fab84b67-73df-9eec-3d07-a85c1360263d	2021-05-25 05:46:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:46:25.877+03	2021-05-25 05:46:25.882+03	
97384c82-840b-914f-59f5-1eb162bf5eef	2021-05-25 05:46:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:46:45.877+03	2021-05-25 05:46:45.884+03	
edecd378-6826-8636-f5b7-79231d901bac	2021-05-25 05:46:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:46:35.877+03	2021-05-25 05:46:35.883+03	
f0f08b77-87af-f708-45d1-b135a7362a25	2021-05-25 05:46:55.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:46:55.877+03	2021-05-25 05:46:55.883+03	
77f1ca02-d058-945a-a4d4-3fe6fd53149c	2021-05-25 05:47:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:47:15.877+03	2021-05-25 05:47:15.889+03	
c17c266f-9f13-e698-f3a8-4d03bdf7e948	2021-05-25 05:47:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:47:35.877+03	2021-05-25 05:47:35.884+03	
9ab1c5d7-72f3-c2d1-8f9c-c5e9a11fd060	2021-05-25 05:47:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:47:55.877+03	2021-05-25 05:47:55.883+03	
9a11a059-ab73-1040-8eb3-3d41b9317b0c	2021-05-25 05:48:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:48:15.877+03	2021-05-25 05:48:16.128+03	
cec08213-b9aa-e3c3-777e-311d3cffed45	2021-05-25 05:48:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:48:35.877+03	2021-05-25 05:48:35.883+03	
fee2f1ca-72f1-321b-037c-e97277f1b628	2021-05-25 05:49:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:49:05.877+03	2021-05-25 05:49:05.886+03	
62dbb94c-aa86-1931-76e0-5b96e80a7528	2021-05-25 05:49:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:49:25.877+03	2021-05-25 05:49:25.883+03	
8dcebc82-15ee-9e7d-3658-e1b72e81e4fc	2021-05-25 05:49:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:49:45.877+03	2021-05-25 05:49:45.884+03	
f77e8524-cfdb-3021-592c-632571ea8757	2021-05-25 05:50:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 05:50:00.877+03	2021-05-25 05:50:00.883+03	ERROR
e90083c9-2ba5-b418-10be-316e591b8afc	2021-05-25 05:50:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:50:15.877+03	2021-05-25 05:50:15.884+03	
53a664d3-6dbc-cee1-99f2-e96db1051fd1	2021-05-25 05:50:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:50:35.877+03	2021-05-25 05:50:35.94+03	
78a94340-134e-6c00-1f65-4e4ceb3e96e1	2021-05-25 05:50:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:50:55.877+03	2021-05-25 05:50:55.883+03	
6fbb444d-1fe0-8965-4099-c9cac78d4753	2021-05-25 05:51:15.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:51:15.877+03	2021-05-25 05:51:15.885+03	
92c58121-2f28-749b-5aca-1a6a1ad23656	2021-05-25 05:51:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:51:35.877+03	2021-05-25 05:51:35.884+03	
02987fd1-2815-b1d6-6190-6956713c5f9b	2021-05-25 05:51:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:51:55.877+03	2021-05-25 05:51:55.883+03	
4c23370d-b829-97bb-61af-c144949ecac9	2021-05-25 05:52:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:52:15.877+03	2021-05-25 05:52:15.883+03	
5ab0af5a-05a5-dd40-de4a-0281a0009990	2021-05-25 05:52:35.887	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:52:35.887+03	2021-05-25 05:52:35.894+03	
7a113c8b-7a74-a7ac-5941-d9e5fc2722be	2021-05-25 05:52:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:52:56.877+03	2021-05-25 05:52:56.884+03	
ed1873e1-15bb-d0b2-9875-e4132965b977	2021-05-25 05:53:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:53:16.877+03	2021-05-25 05:53:16.883+03	
41ad41c5-ddbd-871d-57f8-a5314d7253a3	2021-05-25 05:53:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:53:36.877+03	2021-05-25 05:53:36.932+03	
f76d4da9-4ab1-86a8-0f30-a052c129ea05	2021-05-25 05:53:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:53:56.877+03	2021-05-25 05:53:56.882+03	
b4013969-304e-119d-bbf9-91d250b136fb	2021-05-25 05:54:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:54:16.877+03	2021-05-25 05:54:16.885+03	
d3b64f9e-74d8-d2ca-d201-b6d49ebe806f	2021-05-25 05:54:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:54:36.877+03	2021-05-25 05:54:36.885+03	
571ec1e9-9221-fe1f-488e-3d1996594529	2021-05-25 05:54:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:54:56.877+03	2021-05-25 05:54:56.884+03	
122f063b-16a3-3b3e-247c-3946e6adfdcf	2021-05-25 05:55:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:55:16.877+03	2021-05-25 05:55:16.885+03	
d780a7f8-7104-f46a-c6d0-224bb5e8f992	2021-05-25 05:55:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:55:36.877+03	2021-05-25 05:55:36.884+03	
5ff20788-f6ce-7ee0-1b70-613fda45b3c8	2021-05-25 05:55:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:55:56.877+03	2021-05-25 05:55:56.883+03	
06df8d47-7359-55ea-7bb7-81f25569e003	2021-05-25 05:56:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:56:16.877+03	2021-05-25 05:56:16.889+03	
7b5167b6-4f41-9ecd-7039-b04e21f3327f	2021-05-25 05:56:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:56:36.877+03	2021-05-25 05:56:36.883+03	
3a38bfca-cdec-d0d5-c4e5-4c4eddae5ebd	2021-05-25 05:56:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:56:56.877+03	2021-05-25 05:56:56.884+03	
81b39686-3e66-5caa-be45-a73e6ed15a1d	2021-05-25 05:57:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:57:16.877+03	2021-05-25 05:57:17.172+03	
00a521f4-1348-eece-8343-c58d61b40d41	2021-05-25 05:57:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:57:36.877+03	2021-05-25 05:57:36.885+03	
9536eb4a-24b7-be07-de8f-447e3266be6a	2021-05-25 05:57:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:57:56.877+03	2021-05-25 05:57:56.882+03	
48ad822e-dd92-bf0a-4305-3f9434a3b6da	2021-05-25 05:58:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:58:16.877+03	2021-05-25 05:58:16.884+03	
fac30a7e-466e-9a97-2093-57d31dd53e4b	2021-05-25 05:58:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:58:36.877+03	2021-05-25 05:58:36.884+03	
1dfab1e7-0828-2375-04a6-0f5881861995	2021-05-25 05:58:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:58:56.877+03	2021-05-25 05:58:56.884+03	
dd62a9d1-505b-b1ec-c00e-7e19fe546fdb	2021-05-25 05:59:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:59:16.877+03	2021-05-25 05:59:16.887+03	
bb8ec1b0-3eeb-6508-e4df-657e537a66f6	2021-05-25 05:59:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:59:36.877+03	2021-05-25 05:59:36.884+03	
c466795c-caae-afb9-6aab-c00ac42824fc	2021-05-25 05:59:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:59:56.877+03	2021-05-25 05:59:56.886+03	
2fb02721-7f36-14c1-0ccb-c616b64dc2c6	2021-05-25 06:00:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:00:06.877+03	2021-05-25 06:00:06.888+03	
0c21596c-50f3-eee6-51b8-4f6c5298b27d	2021-05-25 06:00:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:00:26.877+03	2021-05-25 06:00:26.884+03	
eca64187-21c0-f926-1a03-2a619945e63f	2021-05-25 06:00:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:00:46.877+03	2021-05-25 06:00:47.087+03	
5f71d8da-095e-1028-d95c-de4c996ceea9	2021-05-25 06:01:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:01:06.877+03	2021-05-25 06:01:06.884+03	
f8bfd7e6-de12-9f7f-5d2f-f3591b32c973	2021-05-25 06:01:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:01:26.877+03	2021-05-25 06:01:26.884+03	
2a4d5697-a4ab-6258-2253-982406b2d378	2021-05-25 06:01:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:01:46.877+03	2021-05-25 06:01:46.883+03	
3fd3c999-865a-123e-e5f7-dc143f311c32	2021-05-25 06:02:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:02:06.877+03	2021-05-25 06:02:06.882+03	
b46eddf5-7d49-4d80-bd2a-43e1f9135316	2021-05-25 06:02:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:02:26.877+03	2021-05-25 06:02:26.883+03	
97319b07-bfa0-21f6-7972-0fefb09d0c83	2021-05-25 06:02:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:02:46.877+03	2021-05-25 06:02:46.883+03	
89c8cd4e-2cad-2fc5-9e27-e41f76b56755	2021-05-25 06:03:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:03:06.877+03	2021-05-25 06:03:07.191+03	
35ba19fa-83b5-477b-51b3-15c780fa89d1	2021-05-25 06:03:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:03:26.877+03	2021-05-25 06:03:26.883+03	
da6cdb64-0b59-0a60-1dfe-a5d520613991	2021-05-25 06:03:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:03:46.877+03	2021-05-25 06:03:46.883+03	
83cb8e42-ead0-6c29-b052-7df04ac87ee9	2021-05-25 06:04:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:04:06.877+03	2021-05-25 06:04:06.883+03	
404a20de-4a6e-da91-eed4-a28f87c5b87e	2021-05-25 06:04:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:04:26.877+03	2021-05-25 06:04:26.886+03	
8e1fad36-eb64-16a1-8c9b-e7378fd4a8c4	2021-05-25 06:04:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:04:46.877+03	2021-05-25 06:04:46.939+03	
daf31be6-2d9f-453a-86f6-9549a7d756b5	2021-05-25 06:05:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:05:06.877+03	2021-05-25 06:05:07.225+03	
48651c89-89ef-d8a9-4df2-9b7cde27c223	2021-05-25 06:05:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:05:26.877+03	2021-05-25 06:05:26.884+03	
ae0a9de6-519e-96b8-761f-fc41ec07482c	2021-05-25 06:05:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:05:46.877+03	2021-05-25 06:05:46.884+03	
097b5a0c-e079-91f2-99a4-2cb1463cd686	2021-05-25 06:06:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:06:06.877+03	2021-05-25 06:06:06.884+03	
09d1dcae-7d3b-31e1-7b5a-1979d9050e22	2021-05-25 06:06:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:06:26.877+03	2021-05-25 06:06:26.883+03	
4192af14-2e0b-a0c6-1136-161c51c10c4a	2021-05-25 06:06:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:06:46.877+03	2021-05-25 06:06:46.883+03	
46e46f89-f03c-1fab-7b5d-131bf5a6a031	2021-05-25 06:07:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:07:06.877+03	2021-05-25 06:07:06.882+03	
7c2468ce-3d1d-dcd0-faac-61132ccc65e3	2021-05-25 05:47:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:47:05.877+03	2021-05-25 05:47:06.127+03	
77dcc57f-f358-69ce-5b6a-46f705ac9a69	2021-05-25 05:47:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:47:25.877+03	2021-05-25 05:47:25.886+03	
74aeaa02-84f8-dfd8-8494-d54afeb7264b	2021-05-25 05:47:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:47:45.877+03	2021-05-25 05:47:45.883+03	
45c59182-af2e-4e8b-f6c6-415bc05daba5	2021-05-25 05:48:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:48:05.877+03	2021-05-25 05:48:05.882+03	
b14230cc-515b-470c-8799-15630698e1ca	2021-05-25 05:48:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:48:25.877+03	2021-05-25 05:48:25.882+03	
6c21a14c-4e57-e563-64c4-935895f0d025	2021-05-25 05:48:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:48:45.877+03	2021-05-25 05:48:46.054+03	
aef2c2d4-14a0-f308-55d6-b40531199813	2021-05-25 05:48:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:48:55.877+03	2021-05-25 05:48:55.883+03	
28c43a34-1828-7a5a-ff50-ba629db9ef3a	2021-05-25 05:49:15.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:49:15.877+03	2021-05-25 05:49:15.884+03	
b06c71d6-39a2-d2c0-bc82-fd5dac6d84c7	2021-05-25 05:49:35.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:49:35.877+03	2021-05-25 05:49:35.885+03	
b2a2ebf7-a83f-14fe-c4a9-7e314e0dbcee	2021-05-25 05:49:55.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:49:55.877+03	2021-05-25 05:49:55.885+03	
04f1d45d-73be-9da9-9354-680dd45fab65	2021-05-25 05:50:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:50:05.877+03	2021-05-25 05:50:05.886+03	
0c011b49-0378-9048-0951-6059d8ca7506	2021-05-25 05:50:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:50:25.877+03	2021-05-25 05:50:25.883+03	
1fcde646-88bf-029e-3c43-58a581786a1a	2021-05-25 05:50:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:50:45.877+03	2021-05-25 05:50:45.884+03	
50db2d91-194e-98c7-fc12-432b78a4cc85	2021-05-25 05:51:05.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:51:05.877+03	2021-05-25 05:51:05.885+03	
bec6c891-0979-a223-3226-aea6370db40a	2021-05-25 05:51:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:51:25.877+03	2021-05-25 05:51:25.883+03	
dd823771-9897-dd2e-c860-2cc1cf76c917	2021-05-25 05:51:45.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:51:45.877+03	2021-05-25 05:51:45.883+03	
7f1654ff-7a39-53d6-e654-742b28e725c5	2021-05-25 05:52:05.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:52:05.877+03	2021-05-25 05:52:05.886+03	
dd16be5a-383e-29df-5142-21da4bb8205c	2021-05-25 05:52:25.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:52:25.877+03	2021-05-25 05:52:25.884+03	
f45f127f-6892-cbac-0920-f5d9a55de7c3	2021-05-25 05:52:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:52:46.877+03	2021-05-25 05:52:46.883+03	
537f3540-a78c-d9fc-47a6-00e2e751412f	2021-05-25 05:53:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:53:06.877+03	2021-05-25 05:53:06.884+03	
11e5269a-f7f6-f130-dbc0-136bb5457314	2021-05-25 05:53:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:53:26.877+03	2021-05-25 05:53:27.091+03	
2d02f275-447b-88b2-6281-c6a035f35b37	2021-05-25 05:53:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:53:46.877+03	2021-05-25 05:53:46.886+03	
f9cf1c4b-7dac-7b1a-77fd-483f81b33c07	2021-05-25 05:54:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:54:06.877+03	2021-05-25 05:54:06.885+03	
3f1afd3b-4581-a598-d506-f418b4e0b2db	2021-05-25 05:54:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:54:26.877+03	2021-05-25 05:54:26.884+03	
728c3b6c-fd71-547c-9764-7711c9eb3f2e	2021-05-25 05:54:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:54:46.877+03	2021-05-25 05:54:46.884+03	
842b21bc-d237-e435-031d-b8eeb112e629	2021-05-25 05:55:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:55:06.877+03	2021-05-25 05:55:07.129+03	
24ce124c-3b1b-166e-e9ca-89a23994c0ba	2021-05-25 05:55:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:55:26.877+03	2021-05-25 05:55:26.883+03	
6ca3f203-c881-585b-8b39-3672cc9cfaa4	2021-05-25 05:55:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:55:46.877+03	2021-05-25 05:55:46.883+03	
7c4461fd-278c-1978-8c23-cbc6f042db7c	2021-05-25 05:56:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:56:06.877+03	2021-05-25 05:56:07.177+03	
5da41376-38bf-b863-69a2-9d04ef8897ae	2021-05-25 05:56:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:56:26.877+03	2021-05-25 05:56:26.884+03	
dda9634e-eb45-1635-f0de-d747dd01decc	2021-05-25 05:56:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:56:46.877+03	2021-05-25 05:56:46.883+03	
48cbf22b-1f71-2e91-c920-2aaad938a222	2021-05-25 05:57:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:57:06.877+03	2021-05-25 05:57:06.885+03	
dc73a5b1-93ad-1216-e78e-2b5cd5190089	2021-05-25 05:57:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:57:26.877+03	2021-05-25 05:57:26.884+03	
05807fff-1b1e-e9cf-f5ed-a175ba682129	2021-05-25 05:57:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:57:46.877+03	2021-05-25 05:57:46.882+03	
e4e06b35-e072-a1b6-05c7-970c717a81e5	2021-05-25 05:58:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:58:06.877+03	2021-05-25 05:58:06.883+03	
45c14c47-14cd-2226-7c0b-e440c4c312b0	2021-05-25 05:58:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:58:26.877+03	2021-05-25 05:58:26.884+03	
9065dc65-e28c-b2fc-4321-d1c2146781e3	2021-05-25 05:58:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:58:46.877+03	2021-05-25 05:58:46.883+03	
29776a52-cdf9-9080-1e5b-16bb769eef49	2021-05-25 05:59:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:59:06.877+03	2021-05-25 05:59:06.885+03	
1cafa82a-943e-8a55-d08b-96101f6c346f	2021-05-25 05:59:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:59:26.877+03	2021-05-25 05:59:26.883+03	
1c9ca3c7-a047-edc3-ace6-710f20ba6831	2021-05-25 05:59:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 05:59:46.877+03	2021-05-25 05:59:46.883+03	
58ffd9b2-a2a5-6a73-2ee9-f7db27d5d3f1	2021-05-25 06:00:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 06:00:00.877+03	2021-05-25 06:00:00.888+03	ERROR
a9f44285-d9d1-20f3-106c-3e4851352948	2021-05-25 06:00:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:00:16.877+03	2021-05-25 06:00:16.886+03	
0dd48212-82bb-fed1-945b-e40770ee3acd	2021-05-25 06:00:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:00:36.877+03	2021-05-25 06:00:36.885+03	
71a1e173-185c-216f-76b7-36a408644be9	2021-05-25 06:00:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:00:56.877+03	2021-05-25 06:00:56.885+03	
122af821-b704-cf1d-0fb5-3435b4be3b4b	2021-05-25 06:01:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:01:16.877+03	2021-05-25 06:01:16.884+03	
5fe8da10-0e8b-a62d-b04c-f94bdc583f95	2021-05-25 06:01:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:01:36.877+03	2021-05-25 06:01:36.883+03	
b25fdcdb-121e-1d95-55a2-2b64f6b9bc3c	2021-05-25 06:01:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:01:56.877+03	2021-05-25 06:01:56.885+03	
c3375f11-bd3b-3da2-3a21-1e3ce4064077	2021-05-25 06:02:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:02:16.877+03	2021-05-25 06:02:16.884+03	
beee6ea1-5992-dc6b-d031-4b5ff0b1d0f7	2021-05-25 06:02:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:02:36.877+03	2021-05-25 06:02:36.882+03	
0867de0b-8016-ad5f-fd6f-699ba3e55a8a	2021-05-25 06:02:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:02:56.877+03	2021-05-25 06:02:56.883+03	
be903479-5c7e-720e-4cf9-a0e4cc6db751	2021-05-25 06:03:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:03:16.877+03	2021-05-25 06:03:16.883+03	
bc916f1d-b8b9-6126-9ca7-a4c28b820e15	2021-05-25 06:03:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:03:36.877+03	2021-05-25 06:03:36.884+03	
994db9c5-7a61-b359-f3bc-0c12c8967d0d	2021-05-25 06:03:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:03:56.877+03	2021-05-25 06:03:56.883+03	
0a638dc2-2958-1a3e-db55-abc8c5e931c2	2021-05-25 06:04:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:04:16.877+03	2021-05-25 06:04:16.885+03	
5b563f4e-67d4-8815-509c-355eb5f68f09	2021-05-25 06:04:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:04:36.877+03	2021-05-25 06:04:36.886+03	
18f3c904-a78d-7f6c-0fbc-de53d1cba86e	2021-05-25 06:04:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:04:56.877+03	2021-05-25 06:04:56.883+03	
893b9012-aab6-85a7-0e03-e5e39fb54343	2021-05-25 06:05:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:05:16.877+03	2021-05-25 06:05:16.883+03	
0d30aae6-b34b-6238-33b5-b366dadf29d7	2021-05-25 06:05:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:05:36.877+03	2021-05-25 06:05:36.885+03	
0d5b7bf2-df7f-14b0-34b1-1205bbea9630	2021-05-25 06:05:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:05:56.877+03	2021-05-25 06:05:56.884+03	
44af0574-85cd-a16f-b30b-e64a0105475a	2021-05-25 06:06:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:06:16.877+03	2021-05-25 06:06:17.185+03	
ba85c779-ec11-b99f-15f2-5149998a2006	2021-05-25 06:06:36.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:06:36.877+03	2021-05-25 06:06:36.886+03	
5aee2d82-756e-8ec8-a518-8a56f4fd410f	2021-05-25 06:06:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:06:56.877+03	2021-05-25 06:06:56.883+03	
4ebc1527-5927-50c7-ad1f-19a135e92553	2021-05-25 06:07:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:07:16.877+03	2021-05-25 06:07:16.886+03	
178bd711-0fe0-adf6-06f9-3db7bf812494	2021-05-25 06:07:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:07:26.877+03	2021-05-25 06:07:26.884+03	
1199ba42-411d-c169-6308-155470effae5	2021-05-25 06:07:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:07:46.877+03	2021-05-25 06:07:46.884+03	
706aebee-2f67-27d2-b0f7-0a5dc6030c6d	2021-05-25 06:08:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:08:06.877+03	2021-05-25 06:08:07.187+03	
a83b0f3a-c0e7-3ce9-48f0-b0844398dce2	2021-05-25 06:08:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:08:26.877+03	2021-05-25 06:08:26.927+03	
9ddb877d-0802-44ea-3e73-7c6a2055abc2	2021-05-25 06:08:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:08:46.877+03	2021-05-25 06:08:46.884+03	
cfccd548-de40-eb20-5f2c-2cee85d9bdec	2021-05-25 06:09:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:09:06.877+03	2021-05-25 06:09:06.886+03	
999d2f0e-c09e-9771-b79a-115cd2f36de8	2021-05-25 06:09:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:09:26.877+03	2021-05-25 06:09:26.883+03	
adf0d98a-70bb-94a7-1792-3c673ead7fb0	2021-05-25 06:09:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:09:46.877+03	2021-05-25 06:09:46.885+03	
d7245c62-c93b-02f8-d87b-44839ab0aa0b	2021-05-25 06:10:00.877	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 06:10:00.877+03	2021-05-25 06:10:00.906+03	ERROR
f8a6bf60-5765-8b44-8a60-bac63bf0ad01	2021-05-25 06:10:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:10:16.877+03	2021-05-25 06:10:16.885+03	
bad70b2f-cba3-5b40-38c3-be8d4ac5ec7c	2021-05-25 06:10:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:10:36.877+03	2021-05-25 06:10:36.885+03	
9fd69c04-58d7-5fa3-1e8f-8520a253d860	2021-05-25 06:10:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:10:56.877+03	2021-05-25 06:10:56.886+03	
15ed6065-eb8b-94fe-44a8-6dbf2104b7c2	2021-05-25 06:11:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:11:16.877+03	2021-05-25 06:11:16.885+03	
93173edc-738b-8ed2-5e4e-9f767394d69e	2021-05-25 06:11:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:11:36.877+03	2021-05-25 06:11:36.884+03	
358cdffd-f394-3a42-1e36-e79e850d92ee	2021-05-25 06:11:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:11:56.877+03	2021-05-25 06:11:56.883+03	
690e8990-c354-807b-ee76-971f5b9e62bf	2021-05-25 06:12:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:12:16.877+03	2021-05-25 06:12:16.885+03	
878a2168-67cf-236e-e352-2b18244e4f92	2021-05-25 06:12:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:12:36.877+03	2021-05-25 06:12:36.885+03	
c236542f-2d9f-f50b-1c6f-9ee38aecfd5f	2021-05-25 06:12:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:12:56.877+03	2021-05-25 06:12:56.884+03	
c36a874c-353e-133b-d430-fe88e48db5da	2021-05-25 06:13:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:13:16.877+03	2021-05-25 06:13:16.884+03	
6541bbd2-ceda-1f46-8d15-83cdd43afd7c	2021-05-25 06:13:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:13:36.877+03	2021-05-25 06:13:36.888+03	
2e8ba8bc-b2e9-a915-5842-38b50ce546a2	2021-05-25 06:13:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:13:56.877+03	2021-05-25 06:13:56.883+03	
5581f3a7-a4f9-dca9-597d-ff50dc77a934	2021-05-25 06:14:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:14:16.877+03	2021-05-25 06:14:16.884+03	
6afbec47-8fea-308d-bae8-a9aa5e0dc164	2021-05-25 06:14:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:14:36.877+03	2021-05-25 06:14:36.885+03	
556bceaf-9bf5-f520-7823-24891279ed94	2021-05-25 06:14:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:14:56.877+03	2021-05-25 06:14:56.882+03	
e558301a-54ae-fead-1595-d79f0084e6e5	2021-05-25 06:15:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:15:16.877+03	2021-05-25 06:15:16.94+03	
64415128-75be-0d75-26fd-7b737766c58f	2021-05-25 06:15:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:15:36.877+03	2021-05-25 06:15:36.897+03	
cad5d770-2a1b-20a2-c506-83af1d219539	2021-05-25 06:15:56.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:15:56.877+03	2021-05-25 06:15:56.922+03	
91766d53-fce3-86bf-f4c3-192416c7b7dc	2021-05-25 06:16:17.879	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:16:17.879+03	2021-05-25 06:16:17.899+03	
1333fda7-b215-dda8-3732-a77ba9acbbed	2021-05-25 06:16:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:16:38.877+03	2021-05-25 06:16:38.901+03	
50986156-467e-955c-1746-f49c6d82f36a	2021-05-25 06:16:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:16:58.877+03	2021-05-25 06:16:59.233+03	
be000743-246d-0081-1c1f-7c2d456e233d	2021-05-25 06:17:18.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:17:18.877+03	2021-05-25 06:17:18.921+03	
90c67b10-6ad6-3bd2-09bb-1f99cdbcc78b	2021-05-25 06:17:38.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:17:38.877+03	2021-05-25 06:17:38.892+03	
e45ed588-f4f8-83fa-029c-01e67fe3c21a	2021-05-25 06:17:58.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:17:58.877+03	2021-05-25 06:17:58.895+03	
c36cd7c4-3968-56b4-47ea-c857d98604ba	2021-05-25 06:18:18.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:18:18.877+03	2021-05-25 06:18:18.906+03	
aea3d608-d4c4-cd18-f84a-b503bd5b760c	2021-05-25 06:18:39.295	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:18:39.294+03	2021-05-25 06:18:42.309+03	
024aee76-9f11-1e4a-1b10-aba77c9d6428	2021-05-25 06:18:59.796	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:18:59.792+03	2021-05-25 06:18:59.827+03	
4de64bdc-428e-05d2-5867-9a1d24dafd18	2021-05-25 06:19:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:19:20.79+03	2021-05-25 06:19:20.803+03	
718af51a-053b-c61a-220e-538e468b2f48	2021-05-25 06:19:40.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:19:40.79+03	2021-05-25 06:19:40.799+03	
0bf759d8-173b-c683-b7de-adad18c1fc48	2021-05-25 06:20:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:20:00.79+03	2021-05-25 06:20:00.8+03	
d11ee628-2134-d21c-a842-1acede6a9c24	2021-05-25 06:20:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:20:20.79+03	2021-05-25 06:20:20.798+03	
44226833-04fd-f1b8-4026-2e782e5b91ed	2021-05-25 06:20:40.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:20:40.79+03	2021-05-25 06:20:40.798+03	
f00333d4-ff1c-31d0-2cf4-d3907ed80fd3	2021-05-25 06:21:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:21:00.79+03	2021-05-25 06:21:00.797+03	
18a43ac9-d743-5e2c-9e5f-6d531d0576ba	2021-05-25 06:21:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:21:20.79+03	2021-05-25 06:21:20.798+03	
08062f63-fb33-ae37-8752-0cddc07f2f38	2021-05-25 06:21:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:21:40.79+03	2021-05-25 06:21:40.798+03	
6ad17af9-c369-2d4c-044f-f5f14fdc1b44	2021-05-25 06:22:00.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:22:00.79+03	2021-05-25 06:22:00.798+03	
0e9e584a-f400-fa36-44d9-1353b23d73ff	2021-05-25 06:22:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:22:20.79+03	2021-05-25 06:22:20.797+03	
f374d42d-463c-5b6e-f12d-625cfe41f6aa	2021-05-25 06:22:40.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:22:40.79+03	2021-05-25 06:22:40.798+03	
882c09ef-85de-3e71-9ffb-09647c6c0157	2021-05-25 06:23:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:23:00.79+03	2021-05-25 06:23:00.8+03	
5bc5dbf2-e5c3-f498-bef6-ddd4190c7c68	2021-05-25 06:23:20.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:23:20.79+03	2021-05-25 06:23:20.797+03	
ee3e8fb9-09bf-9a7a-6812-b85acea33f32	2021-05-25 06:23:40.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:23:40.792+03	2021-05-25 06:23:40.799+03	
bc628057-befb-4794-e218-d5ff66f1e493	2021-05-25 06:24:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:24:01.79+03	2021-05-25 06:24:01.798+03	
7ccc9551-856b-3b64-4460-0472b03c29f6	2021-05-25 06:24:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:24:21.79+03	2021-05-25 06:24:21.797+03	
f31611f6-1535-090e-a13d-72ddf27e0c4a	2021-05-25 06:24:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:24:41.79+03	2021-05-25 06:24:41.797+03	
05b27bae-7068-933c-c7e0-2df64ee91a97	2021-05-25 06:25:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:25:01.79+03	2021-05-25 06:25:01.797+03	
64fb809c-79b3-f8b4-3d21-e15fdab2a7bd	2021-05-25 06:25:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:25:21.79+03	2021-05-25 06:25:21.799+03	
b134c15c-9f57-19ef-1176-2710a24924ce	2021-05-25 06:25:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:25:41.79+03	2021-05-25 06:25:41.796+03	
14f7c93b-5590-755f-d36a-aed2f445040a	2021-05-25 06:26:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:26:01.79+03	2021-05-25 06:26:01.798+03	
30e0b1d6-ba2a-4af5-6c65-35f301fd5903	2021-05-25 06:26:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:26:21.79+03	2021-05-25 06:26:21.797+03	
5c8e8069-e543-935f-e2eb-b8cce94f5b9e	2021-05-25 06:26:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:26:41.79+03	2021-05-25 06:26:41.796+03	
521198a6-fc97-f4a2-c996-6bdca17bec6e	2021-05-25 06:27:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:27:01.79+03	2021-05-25 06:27:01.796+03	
462c1182-b284-ab48-a2b8-a4c5f840516b	2021-05-25 06:27:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:27:21.79+03	2021-05-25 06:27:21.798+03	
144f7bfd-9f5f-d82d-de1e-c314da5085bb	2021-05-25 06:27:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:27:41.79+03	2021-05-25 06:27:41.798+03	
aee40c9a-790f-de86-340d-f87237d42802	2021-05-25 06:28:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:28:01.79+03	2021-05-25 06:28:01.796+03	
039e9df2-2ce3-092f-1351-7dc854bcafe6	2021-05-25 06:07:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:07:36.877+03	2021-05-25 06:07:36.883+03	
7d8cb990-bd50-cedd-194f-d47a7a42e054	2021-05-25 06:07:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:07:56.877+03	2021-05-25 06:07:56.883+03	
3f23eefb-2db6-60e3-6341-a236cf25c138	2021-05-25 06:08:16.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:08:16.877+03	2021-05-25 06:08:17.205+03	
61736656-1883-6685-966e-d74e097c6933	2021-05-25 06:08:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:08:36.877+03	2021-05-25 06:08:36.885+03	
8b2e9a26-19be-1aff-8caf-9814c546bae6	2021-05-25 06:08:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:08:56.877+03	2021-05-25 06:08:56.884+03	
6ad7f067-a480-8277-dd07-d606b1979e7e	2021-05-25 06:09:16.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:09:16.877+03	2021-05-25 06:09:16.884+03	
5a201849-5ca7-fd41-58f2-73f3e6d4b7cc	2021-05-25 06:09:36.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:09:36.877+03	2021-05-25 06:09:36.884+03	
03dc6193-788b-65cd-1ff5-dbb3cc808922	2021-05-25 06:09:56.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:09:56.877+03	2021-05-25 06:09:56.884+03	
75d243dd-d873-d628-30de-e82759f0b85c	2021-05-25 06:10:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:10:06.877+03	2021-05-25 06:10:06.883+03	
3354f9eb-2d6e-cffa-7dfb-c1966c0e4677	2021-05-25 06:10:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:10:26.877+03	2021-05-25 06:10:26.885+03	
1de53547-a103-f2c0-9141-e9b5ce75e811	2021-05-25 06:10:46.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:10:46.877+03	2021-05-25 06:10:46.883+03	
8229df73-eb03-5fef-0eb4-b8ca31ecf017	2021-05-25 06:11:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:11:06.877+03	2021-05-25 06:11:06.884+03	
627487fd-e5de-b580-97f7-e8e1a5dc5c0f	2021-05-25 06:11:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:11:26.877+03	2021-05-25 06:11:26.884+03	
dfb52b48-583d-9de0-6f99-00b17ec31ab9	2021-05-25 06:11:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:11:46.877+03	2021-05-25 06:11:46.883+03	
85e76f1d-a332-061a-9750-f295e4d58ea7	2021-05-25 06:12:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:12:06.877+03	2021-05-25 06:12:06.885+03	
7764367e-0b84-44a3-f000-43c9668ba354	2021-05-25 06:12:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:12:26.877+03	2021-05-25 06:12:27.126+03	
00d5a581-adea-12b7-b54e-c65270303843	2021-05-25 06:12:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:12:46.877+03	2021-05-25 06:12:46.891+03	
6bc2bd61-11b5-2c9a-b8b2-e9d1035b52b7	2021-05-25 06:13:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:13:06.877+03	2021-05-25 06:13:07.02+03	
6ab1bee2-d2ee-7add-c71d-1ed51d9abbaf	2021-05-25 06:13:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:13:26.877+03	2021-05-25 06:13:26.892+03	
55c92401-3262-4482-fd01-1a839a378690	2021-05-25 06:13:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:13:46.877+03	2021-05-25 06:13:46.883+03	
efbfed97-1b98-e410-e39c-024595c784cc	2021-05-25 06:14:06.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:14:06.877+03	2021-05-25 06:14:06.884+03	
7b5f69e2-5ab8-d48e-a3a6-319c282e0879	2021-05-25 06:14:26.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:14:26.877+03	2021-05-25 06:14:26.884+03	
517041c9-bdba-0453-58b2-e21ef8466b54	2021-05-25 06:14:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:14:46.877+03	2021-05-25 06:14:47.128+03	
95b8db05-e215-6a7f-f822-dc3787c3e4ab	2021-05-25 06:15:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:15:06.877+03	2021-05-25 06:15:06.885+03	
2649fa52-433f-7876-415c-dec5b69fc432	2021-05-25 06:15:26.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:15:26.877+03	2021-05-25 06:15:26.888+03	
b2b24a35-5deb-5e67-51de-7a24f885066e	2021-05-25 06:15:46.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:15:46.877+03	2021-05-25 06:15:47.287+03	
6566e633-b9e8-a420-c199-3c9642172bbf	2021-05-25 06:16:06.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:16:06.878+03	2021-05-25 06:16:07.176+03	
272fc7e1-ac37-dcd2-942a-4c8d24f9cfe7	2021-05-25 06:16:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:16:28.877+03	2021-05-25 06:16:28.924+03	
6f55c2ff-2252-57ea-f551-725e035f8a2e	2021-05-25 06:16:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:16:48.877+03	2021-05-25 06:16:48.906+03	
fb987742-1ddb-83bc-4fa5-fc81aa065aac	2021-05-25 06:17:08.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:17:08.877+03	2021-05-25 06:17:08.92+03	
3aa48942-c223-26d4-d3d2-b59395dc3bb1	2021-05-25 06:17:28.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:17:28.877+03	2021-05-25 06:17:28.903+03	
8c049450-cd33-8cae-c645-7f4ec03dbafc	2021-05-25 06:17:48.878	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:17:48.877+03	2021-05-25 06:17:48.886+03	
31b35eab-2347-22f6-a3a8-5ec84ebaca8e	2021-05-25 06:18:08.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:18:08.877+03	2021-05-25 06:18:08.903+03	
9d5d3396-38af-742d-a09d-8955f235583a	2021-05-25 06:18:28.877	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:18:28.877+03	2021-05-25 06:18:28.892+03	
f1ac048e-1005-396a-7ac6-95243c0d5b2a	2021-05-25 06:18:49.796	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:18:49.79+03	2021-05-25 06:18:49.816+03	
ba4503b0-dc6e-931b-ab0d-99290c9146de	2021-05-25 06:19:10.794	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:19:10.79+03	2021-05-25 06:19:10.811+03	
9e6de4a8-1de5-0cc4-f712-eb143952f954	2021-05-25 06:19:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:19:30.79+03	2021-05-25 06:19:30.801+03	
0818e3b5-ecc6-0967-1544-cd40bfb494bd	2021-05-25 06:19:50.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:19:50.79+03	2021-05-25 06:19:50.812+03	
9b900da1-0400-b9a5-404e-a80c963fd5e6	2021-05-25 06:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 06:20:00.79+03	2021-05-25 06:20:00.821+03	ERROR
55f1b9e6-e28c-26f4-1f79-93613078ad20	2021-05-25 06:20:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:20:10.79+03	2021-05-25 06:20:10.797+03	
a57df71b-960d-f547-03f1-628882c58fbe	2021-05-25 06:20:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:20:30.79+03	2021-05-25 06:20:30.8+03	
dd81d7e9-66a0-a420-606d-f7caaa2fac05	2021-05-25 06:20:50.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:20:50.79+03	2021-05-25 06:20:50.799+03	
b42f37fd-8db5-8a9b-d085-2ea3125d7506	2021-05-25 06:21:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:21:10.79+03	2021-05-25 06:21:10.797+03	
c187f668-c5d6-3adf-118e-28d060fc9e1d	2021-05-25 06:21:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:21:30.79+03	2021-05-25 06:21:30.798+03	
02950daf-ce88-70e4-10e9-629b9725b981	2021-05-25 06:21:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:21:50.79+03	2021-05-25 06:21:50.798+03	
bb136bdc-c187-ca65-8637-5109fc5e6476	2021-05-25 06:22:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:22:10.79+03	2021-05-25 06:22:10.797+03	
e6afb24b-4342-4642-db48-1fb1f555e52d	2021-05-25 06:22:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:22:30.79+03	2021-05-25 06:22:30.796+03	
284b3ae2-e5f9-88b6-3125-58a3def89d5d	2021-05-25 06:22:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:22:50.79+03	2021-05-25 06:22:50.798+03	
d5f3c4ec-69a9-0146-9256-ba8184c11253	2021-05-25 06:23:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:23:10.79+03	2021-05-25 06:23:10.8+03	
ed390a52-3087-295f-1f4e-560eb48d5aa9	2021-05-25 06:23:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:23:30.79+03	2021-05-25 06:23:30.8+03	
71822282-f6b0-43e4-0720-0975c059d5be	2021-05-25 06:23:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:23:51.79+03	2021-05-25 06:23:51.796+03	
c306477f-d953-00d2-c4f3-9be98ecfd0d6	2021-05-25 06:24:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:24:11.79+03	2021-05-25 06:24:11.798+03	
07c58793-1403-ffac-86af-c5039c991053	2021-05-25 06:24:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:24:31.79+03	2021-05-25 06:24:32.036+03	
3e3530dd-8a15-cd9d-a90a-6301f542b4ee	2021-05-25 06:24:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:24:51.79+03	2021-05-25 06:24:51.798+03	
17517c57-769c-eb47-b531-c1f15cd2fb6a	2021-05-25 06:25:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:25:11.79+03	2021-05-25 06:25:11.796+03	
6b3e7bc1-4a20-a0e9-f4ea-7b26a06f7230	2021-05-25 06:25:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:25:31.79+03	2021-05-25 06:25:31.797+03	
1bc8e21c-8ca7-a74f-40ec-f51cd84e09fc	2021-05-25 06:25:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:25:51.79+03	2021-05-25 06:25:51.797+03	
3807b863-e442-cded-df1e-ca82423f10be	2021-05-25 06:26:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:26:11.79+03	2021-05-25 06:26:11.798+03	
800c5fde-2fe7-6a96-8fc7-56e1b99b5adb	2021-05-25 06:26:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:26:31.79+03	2021-05-25 06:26:31.796+03	
92d83a5b-cdd7-c5df-aaae-a0fabcb5b6df	2021-05-25 06:26:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:26:51.79+03	2021-05-25 06:26:51.796+03	
390069eb-65e2-50ab-fc79-c5404503dacc	2021-05-25 06:27:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:27:11.79+03	2021-05-25 06:27:11.797+03	
281ea367-b3bb-303f-2964-0726771b8ec3	2021-05-25 06:27:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:27:31.79+03	2021-05-25 06:27:31.798+03	
d460df68-beb1-cfb7-1657-b87afec7f9d9	2021-05-25 06:27:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:27:51.79+03	2021-05-25 06:27:51.796+03	
b6e43ee4-d206-7d82-a48b-1a1a6c309436	2021-05-25 06:28:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:28:11.79+03	2021-05-25 06:28:11.798+03	
66aa4258-4b7a-b650-4d28-c6a86393b505	2021-05-25 06:28:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:28:31.79+03	2021-05-25 06:28:31.811+03	
be08477a-129e-0154-6b74-9ba776e90317	2021-05-25 06:28:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:28:51.79+03	2021-05-25 06:28:51.798+03	
31c6b08d-7d78-4ab5-2a22-65298167d72d	2021-05-25 06:29:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:29:11.79+03	2021-05-25 06:29:11.797+03	
c041088d-6c11-11f1-8bbf-43cdc66c54ac	2021-05-25 06:29:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:29:31.79+03	2021-05-25 06:29:31.797+03	
b3c8082e-8d01-159e-ec7a-d5f2c307e4e9	2021-05-25 06:29:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:29:51.79+03	2021-05-25 06:29:51.799+03	
246cb945-e780-6c8d-e5d5-26837187046e	2021-05-25 06:30:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:30:01.79+03	2021-05-25 06:30:01.797+03	
374f9586-23c8-ec7e-7dba-03136c971b71	2021-05-25 06:30:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:30:21.79+03	2021-05-25 06:30:21.798+03	
acf201b4-39f7-3249-113c-6544a1bed2ef	2021-05-25 06:30:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:30:41.79+03	2021-05-25 06:30:41.796+03	
b9abe2ca-1026-478b-72a5-737de0b27a88	2021-05-25 06:31:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:31:01.79+03	2021-05-25 06:31:01.796+03	
f89162f7-2af0-ded0-0ec9-92f1f5b36f7a	2021-05-25 06:31:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:31:21.79+03	2021-05-25 06:31:21.798+03	
47134a56-0ca4-8f3b-0f15-c205b6f549b1	2021-05-25 06:31:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:31:41.79+03	2021-05-25 06:31:41.809+03	
c228b122-e6d8-3a10-c442-fed91d6bff13	2021-05-25 06:32:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:32:01.79+03	2021-05-25 06:32:01.797+03	
78b09343-f6a0-c9e8-17ac-d184885694c2	2021-05-25 06:32:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:32:21.79+03	2021-05-25 06:32:21.797+03	
9b4e6b6a-0027-4c51-1b50-d261c24a86c9	2021-05-25 06:32:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:32:41.79+03	2021-05-25 06:32:41.797+03	
f65d548a-5499-2cc7-c4a3-10579fefb2ce	2021-05-25 06:33:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:33:01.79+03	2021-05-25 06:33:01.796+03	
d2632f5d-293d-6e5d-df10-725e63f783aa	2021-05-25 06:33:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:33:21.79+03	2021-05-25 06:33:21.796+03	
84942750-2573-3da7-e697-598548072c39	2021-05-25 06:33:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:33:41.79+03	2021-05-25 06:33:41.797+03	
0c6a8e8d-b70a-a4c5-a451-220931b31924	2021-05-25 06:34:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:34:01.79+03	2021-05-25 06:34:01.797+03	
4602a642-9efc-ad03-6234-a7d11c60c943	2021-05-25 06:34:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:34:21.79+03	2021-05-25 06:34:21.798+03	
e948c209-cdcc-3f98-93f3-d66bc4d539bb	2021-05-25 06:34:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:34:41.79+03	2021-05-25 06:34:41.797+03	
a71f811b-d445-2706-a64d-2a8fbc652f57	2021-05-25 06:35:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:35:01.79+03	2021-05-25 06:35:01.796+03	
232c88cc-1872-0049-c8a1-43494956c21e	2021-05-25 06:35:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:35:21.79+03	2021-05-25 06:35:21.796+03	
3cfe892c-2035-c477-f15b-8dad6f401ffb	2021-05-25 06:35:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:35:41.79+03	2021-05-25 06:35:41.796+03	
ba626a5f-afab-d065-4bfc-6556ff9f280b	2021-05-25 06:36:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:36:01.79+03	2021-05-25 06:36:01.797+03	
a5279475-e77f-0299-5f9f-495a95053fa7	2021-05-25 06:36:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:36:21.79+03	2021-05-25 06:36:21.798+03	
3a3c6ff8-8938-65ef-cb1b-5b186b6f7854	2021-05-25 06:36:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:36:41.79+03	2021-05-25 06:36:41.797+03	
bdb6fff9-7a57-9cb3-8985-e3a039e6c9fd	2021-05-25 06:37:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:37:01.79+03	2021-05-25 06:37:01.796+03	
12e6f099-bee2-dcca-9261-6e824ae633d8	2021-05-25 06:37:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:37:21.79+03	2021-05-25 06:37:21.798+03	
312651df-ebe5-ab02-a295-d6b52aed3850	2021-05-25 06:37:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:37:41.79+03	2021-05-25 06:37:41.797+03	
cc1ce9ea-09ee-08f3-0c12-7e4fe262428d	2021-05-25 06:38:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:38:01.79+03	2021-05-25 06:38:01.796+03	
e3366ae1-8c45-d801-53b7-678106d24fc1	2021-05-25 06:38:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:38:21.79+03	2021-05-25 06:38:21.796+03	
fc575922-25b6-65d8-c4be-7dd2fd3576f5	2021-05-25 06:38:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:38:41.79+03	2021-05-25 06:38:41.799+03	
e58091fa-6a99-f1f4-a610-bcc742906ebe	2021-05-25 06:39:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:39:01.79+03	2021-05-25 06:39:01.796+03	
fb5df144-ce8c-a314-88d0-ee43b8777a27	2021-05-25 06:39:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:39:21.79+03	2021-05-25 06:39:21.8+03	
ab013b68-ecff-71e3-b0b0-0835fce4a868	2021-05-25 06:39:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:39:41.79+03	2021-05-25 06:39:41.798+03	
64abb536-2131-ebd5-76ca-b4b77a41fe0f	2021-05-25 06:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 06:40:00.79+03	2021-05-25 06:40:00.796+03	ERROR
209891d2-85d8-c9bd-87b7-a123e06e734e	2021-05-25 06:40:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:40:11.79+03	2021-05-25 06:40:11.796+03	
95c7bef2-f4ba-1caa-70b0-b696a0a03277	2021-05-25 06:40:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:40:31.79+03	2021-05-25 06:40:31.796+03	
c7a0aa9b-457e-68a1-e2ea-c0f7d917769b	2021-05-25 06:40:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:40:51.79+03	2021-05-25 06:40:51.796+03	
7c8c639c-7d8f-d25c-a7f5-d847a6effb65	2021-05-25 06:41:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:41:11.79+03	2021-05-25 06:41:11.797+03	
32e1a066-9c52-11bd-7f22-9e86adacf477	2021-05-25 06:41:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:41:31.79+03	2021-05-25 06:41:31.797+03	
1a105eea-b4bd-4578-f088-84e34a5b49b7	2021-05-25 06:41:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:41:51.79+03	2021-05-25 06:41:51.797+03	
4405098c-2301-eabb-f6d4-72d28217ebdf	2021-05-25 06:42:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:42:11.79+03	2021-05-25 06:42:11.798+03	
0f154117-dc52-8301-0b10-b0d0c7b8b78f	2021-05-25 06:42:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:42:31.79+03	2021-05-25 06:42:31.796+03	
d628406b-3ed7-ad02-84b2-51218b9133cf	2021-05-25 06:42:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:42:51.79+03	2021-05-25 06:42:51.797+03	
f404158c-7c27-2abd-98f1-643a47617b1c	2021-05-25 06:43:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:43:11.79+03	2021-05-25 06:43:11.797+03	
0eadbdc6-d992-df6d-ff19-08247f528e98	2021-05-25 06:43:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:43:31.79+03	2021-05-25 06:43:31.796+03	
519f9045-0535-e38d-470d-5315afe6dc27	2021-05-25 06:43:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:43:51.79+03	2021-05-25 06:43:51.796+03	
20922164-234f-ce4c-adb8-14383cd4dab0	2021-05-25 06:44:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:44:11.79+03	2021-05-25 06:44:11.796+03	
8e8d9577-2751-7533-82da-0110b998f350	2021-05-25 06:44:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:44:31.79+03	2021-05-25 06:44:31.798+03	
bdd8a086-221a-d9d8-4fa4-2197bc1ab043	2021-05-25 06:44:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:44:51.79+03	2021-05-25 06:44:51.799+03	
93f268bc-1e62-c06c-360c-a4d635c730c4	2021-05-25 06:45:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:45:11.79+03	2021-05-25 06:45:11.798+03	
3eae811f-9b7f-9c59-7ae1-6980d111a774	2021-05-25 06:45:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:45:31.79+03	2021-05-25 06:45:31.796+03	
40496c26-2f9a-d9d7-0f7c-0538f5f632f3	2021-05-25 06:45:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:45:51.79+03	2021-05-25 06:45:51.797+03	
c37c7687-cdef-3d89-9cf4-502f3b9bc7ee	2021-05-25 06:46:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:46:11.79+03	2021-05-25 06:46:11.797+03	
fc752e6d-e8f1-3181-2326-91e221c854dd	2021-05-25 06:46:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:46:31.79+03	2021-05-25 06:46:31.797+03	
1d582c61-ff15-1f7f-853f-7b81f0637f80	2021-05-25 06:46:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:46:51.79+03	2021-05-25 06:46:51.797+03	
b4b5d494-e300-67e1-a0c8-01f31952b72a	2021-05-25 06:47:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:47:11.791+03	2021-05-25 06:47:11.797+03	
c3fd585e-29c1-2f14-e985-01486b51da44	2021-05-25 06:47:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:47:32.79+03	2021-05-25 06:47:32.798+03	
98ff0e44-9a5f-aec5-bea7-49576a699ac4	2021-05-25 06:47:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:47:52.79+03	2021-05-25 06:47:52.824+03	
bac9a7ca-2270-adae-37f3-cbf35ecb6f2d	2021-05-25 06:48:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:48:12.79+03	2021-05-25 06:48:12.797+03	
69aaa586-2ec7-d984-e116-bee4ea5b6566	2021-05-25 06:48:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:48:32.79+03	2021-05-25 06:48:32.796+03	
53b68ee1-6d70-d41e-8fa8-f2040c587f12	2021-05-25 06:28:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:28:21.79+03	2021-05-25 06:28:21.796+03	
ff1f8d21-4db7-c0c4-a56d-281cb58b0637	2021-05-25 06:28:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:28:41.79+03	2021-05-25 06:28:41.797+03	
f47456b1-1143-9c1f-c068-eaa00076f78d	2021-05-25 06:29:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:29:01.79+03	2021-05-25 06:29:01.798+03	
1a5d71f1-9d65-b998-4c50-e7c0a3f4c998	2021-05-25 06:29:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:29:21.79+03	2021-05-25 06:29:21.798+03	
58089e59-6af8-ed03-89b0-6b7f423d9cb9	2021-05-25 06:29:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:29:41.79+03	2021-05-25 06:29:41.797+03	
e81a7e33-6a32-c5a1-05ee-d78a5e6708f6	2021-05-25 06:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 06:30:00.79+03	2021-05-25 06:30:00.795+03	ERROR
ffa949b0-b242-e994-0022-bd95627b4123	2021-05-25 06:30:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:30:11.79+03	2021-05-25 06:30:11.796+03	
9d198dba-a2a2-830d-da27-4c4aaa35efc4	2021-05-25 06:30:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:30:31.79+03	2021-05-25 06:30:31.798+03	
e4a8d838-6522-d6af-c70b-58809e33f8d7	2021-05-25 06:30:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:30:51.79+03	2021-05-25 06:30:51.796+03	
c78bffff-74c7-b17c-940c-bc07040e96f7	2021-05-25 06:31:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:31:11.79+03	2021-05-25 06:31:11.797+03	
cb1c6007-b901-c457-b78f-ea2cc1276248	2021-05-25 06:31:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:31:31.79+03	2021-05-25 06:31:31.796+03	
718a35ac-9e62-17f5-4649-8761e6690b5e	2021-05-25 06:31:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:31:51.79+03	2021-05-25 06:31:51.798+03	
4a58dc65-1f23-d23f-dcb0-3069e7fa3e8f	2021-05-25 06:32:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:32:11.79+03	2021-05-25 06:32:11.796+03	
35d9bbe1-47bf-2667-8ef4-081a7469840a	2021-05-25 06:32:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:32:31.79+03	2021-05-25 06:32:31.796+03	
a3d1109e-c5f9-4dac-bd31-9e4412671c1d	2021-05-25 06:32:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:32:51.79+03	2021-05-25 06:32:51.796+03	
97dd2dc7-653a-4da6-9579-a0451f7084b0	2021-05-25 06:33:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:33:11.79+03	2021-05-25 06:33:11.796+03	
c6299f25-3e0d-386f-c354-8a8de31c85c6	2021-05-25 06:33:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:33:31.79+03	2021-05-25 06:33:31.797+03	
e03c2d81-b6a5-5fa6-3e56-112d58b88caf	2021-05-25 06:33:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:33:51.79+03	2021-05-25 06:33:51.797+03	
36684de2-b5f5-c7be-f375-37113ced71b1	2021-05-25 06:34:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:34:11.79+03	2021-05-25 06:34:11.797+03	
44c684b7-2e0f-9014-7f17-282b078adc80	2021-05-25 06:34:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:34:31.79+03	2021-05-25 06:34:31.797+03	
d87bbce3-70f9-b377-d109-bd4e292b296e	2021-05-25 06:34:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:34:51.79+03	2021-05-25 06:34:51.798+03	
e3242488-7580-56a4-c618-cb773ec3371b	2021-05-25 06:35:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:35:11.79+03	2021-05-25 06:35:11.796+03	
0d07d5a6-dc27-d96f-2a0a-4a7762a842f2	2021-05-25 06:35:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:35:31.79+03	2021-05-25 06:35:31.796+03	
79ef3b52-b7c7-aa16-cd21-e1228439c39b	2021-05-25 06:35:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:35:51.79+03	2021-05-25 06:35:51.798+03	
8d076f2e-453e-69c5-2b95-a0c35efd2024	2021-05-25 06:36:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:36:11.79+03	2021-05-25 06:36:11.798+03	
bb997d60-ad98-0867-71f6-a064167569cb	2021-05-25 06:36:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:36:31.79+03	2021-05-25 06:36:31.796+03	
2cdc2fe8-b2b8-16ad-9c6c-5e207f0a9861	2021-05-25 06:36:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:36:51.79+03	2021-05-25 06:36:51.796+03	
2176cc68-ac3a-18fb-aad8-a3724e17da7c	2021-05-25 06:37:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:37:11.79+03	2021-05-25 06:37:11.796+03	
0436f5b9-67a0-5ea0-386d-4bbf438e93f0	2021-05-25 06:37:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:37:31.79+03	2021-05-25 06:37:31.807+03	
8ce9ffa6-5872-2d38-0663-8f8ff6899c48	2021-05-25 06:37:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:37:51.79+03	2021-05-25 06:37:51.797+03	
4a267835-2b50-5a22-9cea-1f37f869096d	2021-05-25 06:38:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:38:11.79+03	2021-05-25 06:38:11.799+03	
2950ec8d-9bf2-bfb9-6ef3-1bb483ef9844	2021-05-25 06:38:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:38:31.79+03	2021-05-25 06:38:31.796+03	
22447327-f29a-40e1-262f-12c562f041f2	2021-05-25 06:38:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:38:51.79+03	2021-05-25 06:38:51.797+03	
25bfdafb-842e-dcd6-6df1-311bb1809d80	2021-05-25 06:39:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:39:11.79+03	2021-05-25 06:39:11.799+03	
05b18aa1-08ca-0bb5-46c0-e149de1f1fea	2021-05-25 06:39:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:39:31.79+03	2021-05-25 06:39:31.799+03	
cb8dd978-c510-b677-0674-8ff18737c502	2021-05-25 06:39:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:39:51.79+03	2021-05-25 06:39:51.796+03	
3d5b9b78-8740-52d5-51d2-2a77120ca095	2021-05-25 06:40:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:40:01.79+03	2021-05-25 06:40:01.796+03	
ab762f68-9d01-15f4-606c-9d17d6614d36	2021-05-25 06:40:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:40:21.79+03	2021-05-25 06:40:21.8+03	
1e0b269e-4e4e-a720-11dc-bb40316b93a7	2021-05-25 06:40:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:40:41.79+03	2021-05-25 06:40:41.797+03	
5c9f8489-ed4f-b695-b161-f6853461b552	2021-05-25 06:41:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:41:01.79+03	2021-05-25 06:41:01.797+03	
b2546bb8-3145-5e1f-3ef4-63834531027e	2021-05-25 06:41:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:41:21.79+03	2021-05-25 06:41:21.796+03	
0968d8a0-3390-b4e0-6c70-593f5707fe0d	2021-05-25 06:41:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:41:41.79+03	2021-05-25 06:41:41.797+03	
26bcea7c-ecba-b28c-1d06-218ff5f5265e	2021-05-25 06:42:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:42:01.79+03	2021-05-25 06:42:01.796+03	
739cd469-8784-667b-4469-1d1d42fe9151	2021-05-25 06:42:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:42:21.79+03	2021-05-25 06:42:21.8+03	
42da9563-f6b3-caae-abcf-a00838dade89	2021-05-25 06:42:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:42:41.79+03	2021-05-25 06:42:41.798+03	
83dacf92-36ed-2c86-1501-9a517646824c	2021-05-25 06:43:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:43:01.79+03	2021-05-25 06:43:01.796+03	
16cbe373-f130-1e63-122c-fa40ab1b6d78	2021-05-25 06:43:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:43:21.79+03	2021-05-25 06:43:21.797+03	
0e99b620-f2eb-4bdd-d8f4-bb575cd58067	2021-05-25 06:43:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:43:41.79+03	2021-05-25 06:43:41.797+03	
754f76c1-dc7f-2992-d72a-ad5ad1d80ecc	2021-05-25 06:44:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:44:01.79+03	2021-05-25 06:44:01.798+03	
7d43ea67-3286-359c-2bb4-092fec91a459	2021-05-25 06:44:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:44:21.79+03	2021-05-25 06:44:21.798+03	
03243bb3-5115-22e3-aacc-18eed078afb2	2021-05-25 06:44:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:44:41.79+03	2021-05-25 06:44:41.798+03	
7c25a4ec-11a7-323a-a1e9-84878e300abe	2021-05-25 06:45:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:45:01.79+03	2021-05-25 06:45:01.798+03	
6d4833a5-8ef5-bf41-3c2a-b6ce3a7e99db	2021-05-25 06:45:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:45:21.79+03	2021-05-25 06:45:21.796+03	
306b8607-bae6-c06b-d88d-c762f791e3e0	2021-05-25 06:45:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:45:41.79+03	2021-05-25 06:45:41.797+03	
2415631f-7224-690e-322d-a6ff4ec70dcc	2021-05-25 06:46:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:46:01.79+03	2021-05-25 06:46:01.796+03	
6a397f53-3b2b-3940-4d77-4792c3d8a31d	2021-05-25 06:46:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:46:21.79+03	2021-05-25 06:46:21.796+03	
e11e39c7-a27c-4e87-05da-97934a444df0	2021-05-25 06:46:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:46:41.79+03	2021-05-25 06:46:41.798+03	
b8daa919-e77b-ffcb-dd2d-dffd72539890	2021-05-25 06:47:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:47:01.79+03	2021-05-25 06:47:01.796+03	
b194fa1b-40ef-e02e-de91-a316c0dbce21	2021-05-25 06:47:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:47:22.79+03	2021-05-25 06:47:22.797+03	
2662b06d-45c4-dbd5-26ba-75ea78557ee8	2021-05-25 06:47:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:47:42.79+03	2021-05-25 06:47:42.796+03	
4a22cbd5-4a9b-fdbe-6197-707bdef5d49c	2021-05-25 06:48:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:48:02.79+03	2021-05-25 06:48:02.797+03	
92ed17e2-85bd-9007-6c60-c3e0ceabc7c5	2021-05-25 06:48:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:48:22.79+03	2021-05-25 06:48:22.797+03	
52287f77-2095-8044-849e-0e90d5d26c1a	2021-05-25 06:48:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:48:42.79+03	2021-05-25 06:48:42.797+03	
b76fe566-f7df-89b2-8a7d-c80c11faef6c	2021-05-25 06:48:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:48:52.79+03	2021-05-25 06:48:52.797+03	
397d68ca-58c8-d1c4-4167-d95d85db25b0	2021-05-25 06:49:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:49:12.79+03	2021-05-25 06:49:12.798+03	
c2fc9140-c392-6bc4-29e0-7c8fc20a7b14	2021-05-25 06:49:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:49:32.79+03	2021-05-25 06:49:32.797+03	
3ca01a3e-a17f-50db-0a2e-0746fa487015	2021-05-25 06:49:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:49:52.79+03	2021-05-25 06:49:52.796+03	
db0fbbda-059e-fc12-8ca8-445f0992d7ef	2021-05-25 06:50:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:50:02.79+03	2021-05-25 06:50:02.798+03	
6b2bb1db-83f2-a282-b7ca-98cfcc618225	2021-05-25 06:50:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:50:22.79+03	2021-05-25 06:50:22.813+03	
eb3917aa-cfca-923c-3886-ff6607d577ee	2021-05-25 06:50:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:50:42.79+03	2021-05-25 06:50:42.797+03	
090f4bfd-d708-a5a6-7821-7f6a48924bae	2021-05-25 06:51:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:51:02.79+03	2021-05-25 06:51:02.798+03	
8240da4c-15ed-dd92-b21d-48812d1d7779	2021-05-25 06:51:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:51:22.79+03	2021-05-25 06:51:22.798+03	
80ca16d1-6f55-7a41-67df-ba8296ece903	2021-05-25 06:51:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:51:42.79+03	2021-05-25 06:51:42.797+03	
e71122b3-61ec-c240-1eea-0a91a6b351c8	2021-05-25 06:52:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:52:02.79+03	2021-05-25 06:52:02.796+03	
973dafc3-84a5-71f7-3bc5-49830fe9f71d	2021-05-25 06:52:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:52:22.79+03	2021-05-25 06:52:22.798+03	
18ca661c-ce3d-c34f-4e57-90caae2956e2	2021-05-25 06:52:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:52:42.79+03	2021-05-25 06:52:42.798+03	
e168a8e8-9ad8-657d-7393-f975170f001e	2021-05-25 06:53:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:53:02.79+03	2021-05-25 06:53:02.8+03	
eb11da46-e68a-07ec-0a4b-7951ab4d9110	2021-05-25 06:53:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:53:22.79+03	2021-05-25 06:53:22.799+03	
0f577ba5-3c1d-a93e-a419-a436735419f3	2021-05-25 06:53:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:53:42.79+03	2021-05-25 06:53:42.799+03	
54321a5d-c1ee-a5c6-60a0-b3c8bfb53672	2021-05-25 06:54:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:54:02.79+03	2021-05-25 06:54:02.798+03	
c8cfd961-f0c2-fbf8-76e6-a2fab7a8c8e0	2021-05-25 06:54:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:54:22.79+03	2021-05-25 06:54:22.801+03	
ea3178b3-6625-f4fb-fcee-6e79342fdc5c	2021-05-25 06:54:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:54:42.79+03	2021-05-25 06:54:42.798+03	
2c8474ab-3c91-1228-61e7-ed23ed4ac25f	2021-05-25 06:55:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:55:02.79+03	2021-05-25 06:55:02.798+03	
6e1fd2a8-dbaa-a6c8-8364-6e42a8c83ef1	2021-05-25 06:55:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:55:22.791+03	2021-05-25 06:55:22.799+03	
0c95a7e7-74b8-25bc-d3a0-a0152628c97e	2021-05-25 06:55:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:55:43.791+03	2021-05-25 06:55:43.801+03	
8269ce91-8912-ac31-dffa-07499557c346	2021-05-25 06:56:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:56:04.79+03	2021-05-25 06:56:04.798+03	
15200105-dbf2-59d1-6de9-7267dcf5e1e9	2021-05-25 06:56:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:56:24.79+03	2021-05-25 06:56:24.797+03	
45b8751d-be24-9b12-5eae-d176d536e2eb	2021-05-25 06:56:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:56:44.79+03	2021-05-25 06:56:44.797+03	
470f7b8a-2a45-4f62-aff9-e3dcbe5fa5f7	2021-05-25 06:57:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:57:04.79+03	2021-05-25 06:57:04.797+03	
59cd4e6a-d532-0798-bb52-788c8936b3db	2021-05-25 06:57:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:57:24.791+03	2021-05-25 06:57:24.799+03	
e0e0fbae-1445-5305-c85b-f8707853dcc9	2021-05-25 06:57:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:57:45.79+03	2021-05-25 06:57:45.81+03	
75a97a96-a71f-853f-397e-cbaf294ea387	2021-05-25 06:58:05.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:58:05.79+03	2021-05-25 06:58:05.796+03	
8f012c91-cf7b-02f6-40c7-4e874d8594fb	2021-05-25 06:58:25.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:58:25.792+03	2021-05-25 06:58:25.799+03	
8bba2d62-cf99-b9ee-ec03-1addfec51fce	2021-05-25 06:58:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:58:46.79+03	2021-05-25 06:58:46.799+03	
f9d9d69d-a375-6298-5d6c-6b4dad8c00f8	2021-05-25 06:59:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:59:06.79+03	2021-05-25 06:59:06.797+03	
52a56468-6e30-48e4-95c7-8d79f0f57cee	2021-05-25 06:59:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:59:26.79+03	2021-05-25 06:59:26.799+03	
2997aacc-618e-0162-c3b0-36a13b4a2da9	2021-05-25 06:59:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:59:46.79+03	2021-05-25 06:59:46.798+03	
921f7d92-3abf-81ee-60ce-82be6a895558	2021-05-25 07:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 07:00:00.79+03	2021-05-25 07:00:00.796+03	ERROR
cc199ce0-b0f2-d8a3-9d40-de7552f8886f	2021-05-25 07:00:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:00:16.79+03	2021-05-25 07:00:16.798+03	
89e8eabe-0826-cbe9-1432-a32ed8ca6f1b	2021-05-25 07:00:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:00:36.79+03	2021-05-25 07:00:36.8+03	
f09c6a0c-8d0b-7973-98b9-0a0eb82ac2d5	2021-05-25 07:00:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:00:56.79+03	2021-05-25 07:00:56.797+03	
81794aff-aa64-e4cf-cc3e-5b3371c20dd9	2021-05-25 07:01:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:01:16.79+03	2021-05-25 07:01:16.798+03	
6264c4b5-6769-68a5-f89f-a0967860171e	2021-05-25 07:01:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:01:36.79+03	2021-05-25 07:01:36.796+03	
a00a40cd-ffa4-0db8-d9cd-5dd7d6dd8ae0	2021-05-25 07:01:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:01:56.79+03	2021-05-25 07:01:56.799+03	
ac0dd941-4847-9d09-e79e-55ac8e3733ca	2021-05-25 07:02:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:02:16.79+03	2021-05-25 07:02:16.796+03	
ea191e01-a65f-9a72-e032-73ef5bda4bd8	2021-05-25 07:02:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:02:36.79+03	2021-05-25 07:02:36.797+03	
fbfa89f9-1dbe-0856-655a-69362cb85e09	2021-05-25 07:02:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:02:56.79+03	2021-05-25 07:02:56.796+03	
d2585462-f2e1-73ec-1494-87d39558194f	2021-05-25 07:03:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:03:16.79+03	2021-05-25 07:03:16.798+03	
205f2302-ae97-33ef-b7e1-3c44921307bc	2021-05-25 07:03:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:03:36.79+03	2021-05-25 07:03:36.796+03	
a1ef97ae-7915-c793-3580-d0ce3fe21c75	2021-05-25 07:03:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:03:56.79+03	2021-05-25 07:03:56.797+03	
52d56374-d4e3-2f03-9d36-988d9b3274af	2021-05-25 07:04:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:04:16.79+03	2021-05-25 07:04:16.797+03	
1711835b-4316-3f01-2222-d15cf0ec7590	2021-05-25 07:04:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:04:36.79+03	2021-05-25 07:04:36.796+03	
30b7626a-4d77-6e3f-77a1-cc41c43fa9bc	2021-05-25 07:04:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:04:56.79+03	2021-05-25 07:04:56.797+03	
436702f3-a43a-bdef-1f88-a6ffd07dd355	2021-05-25 07:05:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:05:16.79+03	2021-05-25 07:05:16.798+03	
055b48d3-6472-2733-fafb-8fcc603b915f	2021-05-25 07:05:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:05:36.79+03	2021-05-25 07:05:36.799+03	
561d319a-ea28-ac52-aaf4-01b3cbcb29d6	2021-05-25 07:05:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:05:56.79+03	2021-05-25 07:05:56.796+03	
e0c4afd8-9db2-0f75-392c-cbb8fab9e283	2021-05-25 07:06:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:06:16.79+03	2021-05-25 07:06:16.798+03	
b715ba35-1dac-814d-43d7-808854eedd53	2021-05-25 07:06:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:06:36.79+03	2021-05-25 07:06:36.797+03	
ae439903-a4d0-b8ea-943a-4b4706b2765f	2021-05-25 07:06:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:06:56.79+03	2021-05-25 07:06:56.796+03	
1d27850b-23a8-00c9-2d69-5403a60f58cc	2021-05-25 07:07:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:07:16.79+03	2021-05-25 07:07:16.797+03	
184f3ce3-5854-f087-2596-52cece529f19	2021-05-25 07:07:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:07:36.79+03	2021-05-25 07:07:36.796+03	
b38142cf-e086-846b-b296-b6bf1bc254b9	2021-05-25 07:07:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:07:56.79+03	2021-05-25 07:07:56.796+03	
629cadc2-5e84-7a33-9eb0-79d0ad7911d2	2021-05-25 07:08:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:08:16.79+03	2021-05-25 07:08:16.799+03	
71c0d772-0528-71c2-6903-f273883af414	2021-05-25 07:08:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:08:36.79+03	2021-05-25 07:08:36.796+03	
56ab6bc6-8ec7-6dbe-85cf-9af2a449fbd1	2021-05-25 07:08:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:08:56.79+03	2021-05-25 07:08:56.798+03	
79a2d097-a8de-2b12-cff1-644e762b25c8	2021-05-25 07:09:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:09:16.79+03	2021-05-25 07:09:16.797+03	
38bbcfe3-c87f-1bd8-7775-f081fe341949	2021-05-25 06:49:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:49:02.79+03	2021-05-25 06:49:02.797+03	
12c7625a-f98a-8d61-6ccd-a2fd1a35db6f	2021-05-25 06:49:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:49:22.79+03	2021-05-25 06:49:22.796+03	
6636d130-8b33-2086-e442-a4cc2c0ce9bb	2021-05-25 06:49:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:49:42.79+03	2021-05-25 06:49:42.796+03	
c56d23b1-af20-9179-2cf5-b7607c14f5c5	2021-05-25 06:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 06:50:00.79+03	2021-05-25 06:50:00.795+03	ERROR
dcc38f0a-e49e-04f9-1ba0-4d84f4a15eb0	2021-05-25 06:50:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:50:12.79+03	2021-05-25 06:50:12.797+03	
4564e759-90ab-609a-68bc-e60eb8566692	2021-05-25 06:50:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:50:32.79+03	2021-05-25 06:50:32.928+03	
2ab631c8-2ffd-5ca9-2f0c-fec95eea03ec	2021-05-25 06:50:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:50:52.79+03	2021-05-25 06:50:52.796+03	
0cf6f12e-e98d-ce59-4406-392819264336	2021-05-25 06:51:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:51:12.79+03	2021-05-25 06:51:12.882+03	
57c2888f-5a61-de5f-6784-d5ec1482e4fa	2021-05-25 06:51:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:51:32.79+03	2021-05-25 06:51:32.797+03	
37692a37-acdb-1dc9-0bb3-a4c62077fa76	2021-05-25 06:51:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:51:52.79+03	2021-05-25 06:51:52.797+03	
231a240f-bf3f-f9c8-3379-fb3f3dd61d8e	2021-05-25 06:52:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:52:12.79+03	2021-05-25 06:52:12.797+03	
35fb343a-0bd0-ad7e-e935-4b7ca24b3e65	2021-05-25 06:52:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:52:32.79+03	2021-05-25 06:52:32.796+03	
6c0cc546-c59e-8406-eb67-5a79e1158923	2021-05-25 06:52:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:52:52.79+03	2021-05-25 06:52:52.797+03	
e9867788-d7c0-27ed-acf2-9cbcb0c780f4	2021-05-25 06:53:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:53:12.79+03	2021-05-25 06:53:12.798+03	
f03877c2-4c59-4846-5445-ed2bf38c2342	2021-05-25 06:53:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:53:32.79+03	2021-05-25 06:53:32.797+03	
b8f4b9d1-406a-0230-6805-e60db725cb3e	2021-05-25 06:53:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:53:52.79+03	2021-05-25 06:53:52.799+03	
005dbbf0-f9b0-a128-6121-17bb5b8b2f03	2021-05-25 06:54:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:54:12.79+03	2021-05-25 06:54:12.798+03	
bd41d89a-ca61-68fe-43ee-fc52ee4f81bc	2021-05-25 06:54:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:54:32.79+03	2021-05-25 06:54:32.801+03	
773c3559-b7ce-7a5e-66c9-021435d9e90d	2021-05-25 06:54:52.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:54:52.79+03	2021-05-25 06:54:52.8+03	
08ed049a-445c-864d-68d3-db64d5d9a619	2021-05-25 06:55:12.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:55:12.791+03	2021-05-25 06:55:12.799+03	
705bfe46-80e2-5e89-191f-2bc6a0d9f994	2021-05-25 06:55:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:55:33.79+03	2021-05-25 06:55:33.798+03	
51de7555-3e76-5a3f-603d-826cd8b1ff8f	2021-05-25 06:55:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:55:54.79+03	2021-05-25 06:55:54.797+03	
ffcfe9a8-b444-4e9f-eafa-791fd71b9e00	2021-05-25 06:56:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:56:14.79+03	2021-05-25 06:56:14.805+03	
39eddb74-6b7f-6460-96ec-7501f0d0f1a0	2021-05-25 06:56:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:56:34.79+03	2021-05-25 06:56:34.8+03	
cb6e5216-cfda-7fa3-5cab-e5cd3281e34c	2021-05-25 06:56:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:56:54.79+03	2021-05-25 06:56:55.122+03	
6884440a-b7bb-5f8c-8ce0-5e81f01161d9	2021-05-25 06:57:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:57:14.791+03	2021-05-25 06:57:14.8+03	
0cea2bba-2163-787a-f78e-7ec04639373e	2021-05-25 06:57:35.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:57:35.79+03	2021-05-25 06:57:35.796+03	
3bc0df29-2ba1-338c-2f02-7c30279f2325	2021-05-25 06:57:55.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:57:55.79+03	2021-05-25 06:57:55.798+03	
d98436a3-06b3-d579-627d-d6c5301214b1	2021-05-25 06:58:15.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:58:15.791+03	2021-05-25 06:58:15.798+03	
069d8471-cd70-33b1-a539-ceeb32cfa3f5	2021-05-25 06:58:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:58:36.79+03	2021-05-25 06:58:36.796+03	
feb7679c-de28-91b8-611f-f183188d7d91	2021-05-25 06:58:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:58:56.79+03	2021-05-25 06:58:56.797+03	
844284a3-faee-b679-f025-e3df744d279e	2021-05-25 06:59:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:59:16.79+03	2021-05-25 06:59:16.797+03	
4391b00a-3d6c-b710-8525-3f866d1e9f76	2021-05-25 06:59:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:59:36.79+03	2021-05-25 06:59:36.796+03	
d6ccccc1-bdd3-6e99-eb40-8917a9ef9b30	2021-05-25 06:59:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 06:59:56.79+03	2021-05-25 06:59:57.08+03	
52677575-1860-3586-4590-023ea783ff30	2021-05-25 07:00:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:00:06.79+03	2021-05-25 07:00:06.8+03	
7de2150f-08d1-7af5-ae73-e66bc9ffa496	2021-05-25 07:00:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:00:26.79+03	2021-05-25 07:00:26.8+03	
d6a786b8-4264-c0b0-e899-47c817849bc1	2021-05-25 07:00:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:00:46.79+03	2021-05-25 07:00:46.798+03	
4d244c95-0046-8036-9e66-1b4387fa797b	2021-05-25 07:01:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:01:06.79+03	2021-05-25 07:01:06.796+03	
4e687c8e-7d07-783e-4866-85a90698f541	2021-05-25 07:01:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:01:26.79+03	2021-05-25 07:01:26.797+03	
e48664cb-7c15-393b-1b60-a78e4a7d6b1c	2021-05-25 07:01:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:01:46.79+03	2021-05-25 07:01:46.796+03	
019821d5-e41f-6c96-1574-ca001793cc19	2021-05-25 07:02:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:02:06.79+03	2021-05-25 07:02:06.796+03	
7f6285fe-370d-3cb2-6c3b-3215d22af78c	2021-05-25 07:02:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:02:26.79+03	2021-05-25 07:02:26.796+03	
3c6b2553-ac86-0a4e-3285-29e07f6dad2a	2021-05-25 07:02:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:02:46.79+03	2021-05-25 07:02:46.799+03	
1ec3b440-6e5d-f20d-22f1-47bc15c69030	2021-05-25 07:03:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:03:06.79+03	2021-05-25 07:03:06.797+03	
34743824-d2e3-65c8-df00-c6572268c2bc	2021-05-25 07:03:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:03:26.79+03	2021-05-25 07:03:26.797+03	
1e8b4758-5518-6835-7ff3-c84e7d9e75c6	2021-05-25 07:03:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:03:46.79+03	2021-05-25 07:03:46.798+03	
6973bb1f-e59c-b950-039c-0258df0d96ce	2021-05-25 07:04:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:04:06.79+03	2021-05-25 07:04:06.796+03	
bfbd1781-5e30-caad-2d6e-87c1bf4db4a3	2021-05-25 07:04:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:04:26.79+03	2021-05-25 07:04:26.813+03	
cdda7e69-b16d-e20f-c3b8-b97b841a252f	2021-05-25 07:04:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:04:46.79+03	2021-05-25 07:04:46.796+03	
8437f3a4-5f3b-f4be-1ea6-2292c0db323a	2021-05-25 07:05:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:05:06.79+03	2021-05-25 07:05:06.796+03	
85c50878-d95a-1567-d943-61c33f533095	2021-05-25 07:05:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:05:26.79+03	2021-05-25 07:05:26.801+03	
7e949344-34c1-f699-cc9e-e0535244394c	2021-05-25 07:05:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:05:46.79+03	2021-05-25 07:05:46.799+03	
34fd15ea-274a-2228-f4f0-a0d35cfcdab8	2021-05-25 07:06:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:06:06.79+03	2021-05-25 07:06:06.797+03	
d92cc238-b7d8-2fa4-33b3-0198ed75a081	2021-05-25 07:06:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:06:26.79+03	2021-05-25 07:06:26.796+03	
360c8f7b-cc62-2221-54d9-46da6634a3e0	2021-05-25 07:06:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:06:46.79+03	2021-05-25 07:06:46.796+03	
351fa206-c5e4-ef23-41cb-529779eaab71	2021-05-25 07:07:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:07:06.79+03	2021-05-25 07:07:06.797+03	
b2b7743f-ee78-073c-71cb-c5393ae8aa7a	2021-05-25 07:07:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:07:26.79+03	2021-05-25 07:07:26.796+03	
78a51a3b-2260-a03c-c43c-aff7cd79c4e6	2021-05-25 07:07:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:07:46.79+03	2021-05-25 07:07:46.797+03	
d9c5eca0-7294-2a50-8925-ddd307e0b9a0	2021-05-25 07:08:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:08:06.79+03	2021-05-25 07:08:06.797+03	
f945fdf0-8f37-7cfd-ef38-3abed38e7fef	2021-05-25 07:08:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:08:26.79+03	2021-05-25 07:08:26.796+03	
4fce6065-1187-a23c-5ceb-1ab0263f0fbb	2021-05-25 07:08:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:08:46.79+03	2021-05-25 07:08:46.797+03	
c60470e7-ed89-24d6-ee37-4ed2da1a8fba	2021-05-25 07:09:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:09:06.79+03	2021-05-25 07:09:06.796+03	
e916cd7a-0662-f8ce-6ec0-884bf6eef1c6	2021-05-25 07:09:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:09:26.79+03	2021-05-25 07:09:26.796+03	
02e94caf-a010-4930-c360-6eb142846b70	2021-05-25 07:09:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:09:36.79+03	2021-05-25 07:09:36.797+03	
56c3fba0-78cb-7f36-5a82-6e8176b4cd9c	2021-05-25 07:09:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:09:56.79+03	2021-05-25 07:09:56.796+03	
f95d7e2c-aef0-bdbf-121d-b5dbafb7457c	2021-05-25 07:10:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:10:06.79+03	2021-05-25 07:10:06.797+03	
28295eea-e16d-5511-e0b0-061e15d1ac2e	2021-05-25 07:10:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:10:26.79+03	2021-05-25 07:10:26.796+03	
cd71a20d-bc5e-c22a-a7df-c94196d43e83	2021-05-25 07:10:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:10:46.79+03	2021-05-25 07:10:46.797+03	
2805bea9-93ca-4aba-bf19-8284643781a5	2021-05-25 07:11:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:11:06.79+03	2021-05-25 07:11:06.798+03	
6ac5bcf2-fcb1-094e-e809-8d81e44d21d5	2021-05-25 07:11:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:11:26.79+03	2021-05-25 07:11:26.799+03	
32752026-ca22-8b1c-15a1-60d1b6b83c8b	2021-05-25 07:11:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:11:46.79+03	2021-05-25 07:11:46.798+03	
1bf93f4b-49fb-b2ab-5a30-96bacf19dd64	2021-05-25 07:12:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:12:06.79+03	2021-05-25 07:12:06.796+03	
42e4ef13-a6e5-eb1e-837a-eadcf711528a	2021-05-25 07:12:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:12:26.79+03	2021-05-25 07:12:26.798+03	
cbbb6048-0659-5132-af09-7ff154b81bb4	2021-05-25 07:12:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:12:46.79+03	2021-05-25 07:12:46.798+03	
27d214b8-785c-2f3c-fb8f-a8ceee63ac15	2021-05-25 07:13:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:13:06.79+03	2021-05-25 07:13:06.796+03	
0b56f112-345d-e6b9-18f8-7b34b1be213b	2021-05-25 07:13:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:13:26.79+03	2021-05-25 07:13:26.796+03	
1b2cf494-bc65-9222-7cb3-07c0453d4f1b	2021-05-25 07:13:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:13:46.79+03	2021-05-25 07:13:46.797+03	
45cad8c7-9329-15f4-50d1-89cb6a9940b7	2021-05-25 07:14:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:14:06.79+03	2021-05-25 07:14:06.796+03	
9a6f9204-6d9e-268b-00b4-d387c8439dbe	2021-05-25 07:14:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:14:26.79+03	2021-05-25 07:14:26.796+03	
dcd246d5-6005-dc27-2795-8c483adda152	2021-05-25 07:14:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:14:46.79+03	2021-05-25 07:14:46.798+03	
7a76d8ac-4714-4976-5eac-441f85678ec5	2021-05-25 07:15:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:15:06.79+03	2021-05-25 07:15:06.797+03	
463c6e71-9fae-3ba9-6c7c-db67bd37db4c	2021-05-25 07:15:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:15:26.79+03	2021-05-25 07:15:26.798+03	
083fdb36-e9a8-1060-b695-5e075230660b	2021-05-25 07:15:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:15:46.79+03	2021-05-25 07:15:46.798+03	
0371bf45-b952-7220-c32f-bc10ad7c684c	2021-05-25 07:16:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:16:06.79+03	2021-05-25 07:16:06.796+03	
47a7e92b-d8a3-e285-7449-fca43e010bff	2021-05-25 07:16:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:16:26.79+03	2021-05-25 07:16:26.798+03	
7aeebcb3-939e-d0bb-8cc9-51b934046c94	2021-05-25 07:16:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:16:46.79+03	2021-05-25 07:16:46.8+03	
1e2260cf-ff35-aa40-3456-11c253063b02	2021-05-25 07:17:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:17:06.79+03	2021-05-25 07:17:06.797+03	
2432ccc9-705a-928f-a1e7-5031e77d0113	2021-05-25 07:17:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:17:26.79+03	2021-05-25 07:17:26.797+03	
25626f7f-6021-b898-986b-7e93ac516b18	2021-05-25 07:17:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:17:46.79+03	2021-05-25 07:17:46.796+03	
be48baf2-9216-11c1-43ca-148f9bbcc6e9	2021-05-25 07:18:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:18:06.79+03	2021-05-25 07:18:06.8+03	
0a4fc034-836e-2456-e1ea-bd8c7cc5b75a	2021-05-25 07:18:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:18:26.79+03	2021-05-25 07:18:26.795+03	
2e04f1ce-6dee-dea0-8d1d-49df402ea8dd	2021-05-25 07:18:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:18:46.79+03	2021-05-25 07:18:46.8+03	
84700b29-eec9-d61a-3eca-a67dfe97a026	2021-05-25 07:19:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:19:06.79+03	2021-05-25 07:19:06.827+03	
e5e15317-41c2-ac8d-3ce3-ed8040d05ca1	2021-05-25 07:19:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:19:26.79+03	2021-05-25 07:19:26.799+03	
49228abe-03f5-14f4-2e66-266d97bfa9e4	2021-05-25 07:19:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:19:46.79+03	2021-05-25 07:19:46.796+03	
39ae76ff-1660-9f91-5388-5d8d8b3ec85e	2021-05-25 07:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 07:20:00.79+03	2021-05-25 07:20:00.806+03	ERROR
6ee6590b-d979-8656-b022-98f6e7ee6b31	2021-05-25 07:20:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:20:16.79+03	2021-05-25 07:20:16.82+03	
dd02a720-1ce0-eaa1-d6c9-c361fed1d0d8	2021-05-25 07:20:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:20:36.79+03	2021-05-25 07:20:36.799+03	
2645a4be-117a-5362-2e64-38c28e29c782	2021-05-25 07:20:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:20:56.79+03	2021-05-25 07:20:56.797+03	
f8cb6706-2ae8-bc06-a876-4ac127d81854	2021-05-25 07:21:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:21:16.79+03	2021-05-25 07:21:16.796+03	
e295b278-f194-749d-5035-6193f8667f9c	2021-05-25 07:21:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:21:36.79+03	2021-05-25 07:21:36.797+03	
0f9ced26-eddd-50a6-6950-5a40bbeffdc7	2021-05-25 07:21:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:21:56.79+03	2021-05-25 07:21:56.798+03	
6c46bbe1-0c70-9b4e-79f3-16267cb69813	2021-05-25 07:22:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:22:16.79+03	2021-05-25 07:22:16.841+03	
bf18aa87-ff10-fc72-a401-1b548cadf9be	2021-05-25 07:22:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:22:36.79+03	2021-05-25 07:22:36.796+03	
0b739d00-b98e-0625-364f-97b9efa7c926	2021-05-25 07:22:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:22:56.79+03	2021-05-25 07:22:56.849+03	
038f3f0a-f9f9-364d-ce4d-cf654504c9ec	2021-05-25 07:23:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:23:16.79+03	2021-05-25 07:23:16.797+03	
d9e3fb81-0cb0-a0b6-0e17-5f551793892b	2021-05-25 07:23:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:23:36.79+03	2021-05-25 07:23:36.828+03	
e602ff83-6df7-5f06-5d7f-e7b12d62c7af	2021-05-25 07:23:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:23:56.79+03	2021-05-25 07:23:56.798+03	
8a2fc375-1ab9-8b8f-e7e7-c6c4a0517057	2021-05-25 07:24:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:24:16.79+03	2021-05-25 07:24:16.796+03	
45cf7428-5701-597e-879e-6eb316216e97	2021-05-25 07:24:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:24:36.79+03	2021-05-25 07:24:36.797+03	
be7d3c8b-2192-c15a-aa6d-651c2d7d85f7	2021-05-25 07:24:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:24:56.79+03	2021-05-25 07:24:56.801+03	
86f8c506-d10f-9e92-e3db-b5bf765dbffb	2021-05-25 07:25:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:25:16.79+03	2021-05-25 07:25:16.798+03	
b3479312-2c53-77e1-529e-a35b07099329	2021-05-25 07:25:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:25:36.79+03	2021-05-25 07:25:36.798+03	
6145d9f9-656b-c753-45cf-5600cc6baee7	2021-05-25 07:25:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:25:56.79+03	2021-05-25 07:25:56.844+03	
8c465104-fe23-ee3e-8d88-9e7df066c44e	2021-05-25 07:26:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:26:16.79+03	2021-05-25 07:26:16.796+03	
1cc34788-d6ae-4f32-d6a8-ae4562a47d7b	2021-05-25 07:26:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:26:36.79+03	2021-05-25 07:26:36.796+03	
066edc3f-9780-c598-1836-4828c80656bd	2021-05-25 07:26:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:26:56.79+03	2021-05-25 07:26:56.797+03	
c4324f67-d17f-76a3-bff0-256f3afbfd35	2021-05-25 07:27:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:27:16.79+03	2021-05-25 07:27:16.974+03	
92c30a92-0dc4-f7e8-b5d3-ca6057bf4072	2021-05-25 07:27:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:27:36.79+03	2021-05-25 07:27:36.796+03	
7510d78a-9dd7-4977-8cb4-5da0c58c3baa	2021-05-25 07:27:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:27:56.79+03	2021-05-25 07:27:56.798+03	
389698ba-150a-2d87-d54e-aaa90877c11b	2021-05-25 07:28:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:28:16.79+03	2021-05-25 07:28:16.798+03	
3336a701-d6b2-f3df-8402-78df1eea05a0	2021-05-25 07:28:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:28:36.79+03	2021-05-25 07:28:36.797+03	
27463f29-4acf-a587-128a-4065b28b5f8c	2021-05-25 07:28:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:28:56.79+03	2021-05-25 07:28:56.798+03	
d56a0cbd-8698-9c67-a6f6-57b420848329	2021-05-25 07:29:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:29:16.79+03	2021-05-25 07:29:16.797+03	
3bd69576-4988-67ba-da25-2e6d5dc42d34	2021-05-25 07:29:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:29:36.79+03	2021-05-25 07:29:36.798+03	
d562e09e-e0ec-688c-c33f-9fe96fd4ac0d	2021-05-25 07:29:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:29:56.79+03	2021-05-25 07:29:56.797+03	
d7952de4-04c5-381d-064b-9d60886ef2a7	2021-05-25 07:09:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:09:46.79+03	2021-05-25 07:09:46.799+03	
f1c53e4c-f95e-310e-4c35-7a6d1e40a1c5	2021-05-25 07:10:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 07:10:00.79+03	2021-05-25 07:10:00.795+03	ERROR
2b41d114-bdf7-f5f6-5460-e5c636c6f25e	2021-05-25 07:10:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:10:16.79+03	2021-05-25 07:10:16.796+03	
1c378eaf-d580-1c25-f0c9-f596847a152e	2021-05-25 07:10:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:10:36.79+03	2021-05-25 07:10:36.797+03	
f9ebcd92-42b6-2b82-0de8-098b778f7d84	2021-05-25 07:10:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:10:56.79+03	2021-05-25 07:10:56.797+03	
d69a0ba0-ed1a-0573-f2be-b27101231f6a	2021-05-25 07:11:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:11:16.79+03	2021-05-25 07:11:16.8+03	
7bdf0018-10b1-5359-e286-1bf8466cdfaa	2021-05-25 07:11:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:11:36.79+03	2021-05-25 07:11:36.811+03	
408205c7-f0f8-49d1-8241-63ca412a5507	2021-05-25 07:11:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:11:56.79+03	2021-05-25 07:11:56.798+03	
619ebd57-eb1b-0aae-9ae2-b298500e8315	2021-05-25 07:12:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:12:16.79+03	2021-05-25 07:12:16.798+03	
40507f68-fd05-4d54-05fa-1059aabd9c27	2021-05-25 07:12:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:12:36.79+03	2021-05-25 07:12:36.797+03	
29b8fb06-f1e0-a4d8-5228-cb408238b25a	2021-05-25 07:12:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:12:56.79+03	2021-05-25 07:12:56.798+03	
2c40f0b9-c419-7f03-d92b-656a1fa8b540	2021-05-25 07:13:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:13:16.79+03	2021-05-25 07:13:16.797+03	
8a456d0f-d104-00ab-e36c-624d98fb686f	2021-05-25 07:13:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:13:36.79+03	2021-05-25 07:13:36.796+03	
f295a88c-b3d8-3c63-ddbc-40e27cea757a	2021-05-25 07:13:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:13:56.79+03	2021-05-25 07:13:56.798+03	
7762c5bc-228a-6add-e486-27249b27c368	2021-05-25 07:14:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:14:16.79+03	2021-05-25 07:14:16.797+03	
dee16fb5-257a-5088-cb97-be57da308197	2021-05-25 07:14:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:14:36.79+03	2021-05-25 07:14:36.797+03	
85941fca-db68-f849-5df9-294e67c427a7	2021-05-25 07:14:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:14:56.79+03	2021-05-25 07:14:56.796+03	
7819aa99-9a3d-643e-fe4d-0bbb9833f9d9	2021-05-25 07:15:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:15:16.79+03	2021-05-25 07:15:16.796+03	
22fe75a7-996b-f957-d228-953249e64039	2021-05-25 07:15:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:15:36.79+03	2021-05-25 07:15:36.796+03	
bda55328-f752-5d2c-a383-32b4482d6548	2021-05-25 07:15:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:15:56.79+03	2021-05-25 07:15:56.796+03	
45aa9055-2ea7-62d6-e6c4-34a720ec4383	2021-05-25 07:16:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:16:16.79+03	2021-05-25 07:16:16.797+03	
1fce7a94-c132-18a6-8847-cfc9755f6822	2021-05-25 07:16:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:16:36.79+03	2021-05-25 07:16:36.796+03	
62e6eab2-7112-fb92-d637-2657816bff17	2021-05-25 07:16:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:16:56.79+03	2021-05-25 07:16:56.796+03	
a9e4f413-00ad-8293-c655-8499ac9ecade	2021-05-25 07:17:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:17:16.79+03	2021-05-25 07:17:16.796+03	
a5eb5ebd-b235-e4ea-6fd7-97782e47c3f3	2021-05-25 07:17:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:17:36.79+03	2021-05-25 07:17:36.796+03	
527628c9-f4ec-5c38-9336-873e18334529	2021-05-25 07:17:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:17:56.79+03	2021-05-25 07:17:56.8+03	
4abb4b29-2079-7cc6-dc46-7303bfb7513a	2021-05-25 07:18:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:18:16.79+03	2021-05-25 07:18:16.8+03	
03c1aa5f-c590-3555-6f85-044f1ba07f17	2021-05-25 07:18:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:18:36.79+03	2021-05-25 07:18:36.796+03	
fa46e0c2-448b-ddfd-41dd-d50f6362f307	2021-05-25 07:18:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:18:56.79+03	2021-05-25 07:18:56.827+03	
9e459c3d-c3b6-1b04-a394-9a61ed75433b	2021-05-25 07:19:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:19:16.79+03	2021-05-25 07:19:16.797+03	
cdd08561-d051-0c5d-021e-1b89a0ef4397	2021-05-25 07:19:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:19:36.79+03	2021-05-25 07:19:36.797+03	
001aae6a-3df2-557c-6580-3314ba7f300c	2021-05-25 07:19:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:19:56.79+03	2021-05-25 07:19:56.796+03	
4b8250ac-37be-dc0a-5c31-507f5d9f3e9b	2021-05-25 07:20:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:20:06.79+03	2021-05-25 07:20:06.824+03	
2c88cf95-edd6-dfab-03a2-bed4a372ccb1	2021-05-25 07:20:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:20:26.79+03	2021-05-25 07:20:26.796+03	
43f3c408-eab7-1c78-2812-4d9acbb24c72	2021-05-25 07:20:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:20:46.79+03	2021-05-25 07:20:46.798+03	
f29aea3f-e0b0-7394-77c5-17ebd11d04a8	2021-05-25 07:21:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:21:06.79+03	2021-05-25 07:21:06.797+03	
24f0940b-83fa-9b20-8e70-36a502cfbd7d	2021-05-25 07:21:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:21:26.79+03	2021-05-25 07:21:26.838+03	
4dfadfe9-e32a-5488-3a36-2e6fc3772486	2021-05-25 07:21:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:21:46.79+03	2021-05-25 07:21:46.797+03	
4a512578-4eae-6439-4fd8-f67984f115f1	2021-05-25 07:22:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:22:06.79+03	2021-05-25 07:22:06.796+03	
11d715c3-7ea6-ae7d-e555-a431856dfa16	2021-05-25 07:22:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:22:26.79+03	2021-05-25 07:22:26.797+03	
678e85d7-f815-3414-0ae9-c38d0e03993e	2021-05-25 07:22:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:22:46.79+03	2021-05-25 07:22:46.798+03	
33b81468-a691-e0e1-3478-7f5f9e11c932	2021-05-25 07:23:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:23:06.79+03	2021-05-25 07:23:06.797+03	
eaf0cfb8-6830-3884-5d82-462baaf48a08	2021-05-25 07:23:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:23:26.79+03	2021-05-25 07:23:26.824+03	
d54e7783-9a70-2df4-f499-6818c9748a2f	2021-05-25 07:23:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:23:46.79+03	2021-05-25 07:23:46.796+03	
5a12695b-7cef-9531-2282-5786d1c1abd4	2021-05-25 07:24:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:24:06.79+03	2021-05-25 07:24:06.796+03	
0ea02f61-23f6-e309-068c-ac7f1b2118cf	2021-05-25 07:24:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:24:26.79+03	2021-05-25 07:24:26.797+03	
179f42ab-a708-a8d2-9713-447a52a4d877	2021-05-25 07:24:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:24:46.79+03	2021-05-25 07:24:46.797+03	
b862e284-a697-3334-4a33-39717eb8a818	2021-05-25 07:25:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:25:06.79+03	2021-05-25 07:25:06.796+03	
38334585-54fb-fd30-949f-bf152287f0f7	2021-05-25 07:25:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:25:26.79+03	2021-05-25 07:25:26.797+03	
06122330-2ba6-1ee4-6e82-e6e28f2ae661	2021-05-25 07:25:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:25:46.79+03	2021-05-25 07:25:46.796+03	
011aa8a7-2f8a-bd32-997a-0735037b33cb	2021-05-25 07:26:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:26:06.79+03	2021-05-25 07:26:06.796+03	
8c464de8-cf04-999b-857d-b4e3e07c638a	2021-05-25 07:26:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:26:26.79+03	2021-05-25 07:26:26.796+03	
3ab8c6b2-c246-5a57-c2f7-f56b528ab36f	2021-05-25 07:26:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:26:46.79+03	2021-05-25 07:26:46.796+03	
d09f78be-eac4-3237-90d7-31f102412f13	2021-05-25 07:27:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:27:06.79+03	2021-05-25 07:27:06.796+03	
55d704a9-8453-582e-7e48-31668136e7bf	2021-05-25 07:27:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:27:26.79+03	2021-05-25 07:27:26.8+03	
79cddb4d-e340-3fad-c38a-ffd72125ea91	2021-05-25 07:27:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:27:46.79+03	2021-05-25 07:27:46.798+03	
9b22da72-0e48-53f3-eab0-40430b4c56eb	2021-05-25 07:28:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:28:06.79+03	2021-05-25 07:28:06.797+03	
72108102-4481-481e-3fdf-e8f1ceeab817	2021-05-25 07:28:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:28:26.79+03	2021-05-25 07:28:26.796+03	
245198fe-4487-64ba-b3b5-086d4d94ae59	2021-05-25 07:28:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:28:46.79+03	2021-05-25 07:28:46.796+03	
211af86e-d843-fff3-33c6-ae558c6ab694	2021-05-25 07:29:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:29:06.79+03	2021-05-25 07:29:06.796+03	
276fb2e6-2c21-3cda-95ae-6f1093909568	2021-05-25 07:29:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:29:26.79+03	2021-05-25 07:29:26.798+03	
419843e4-d57d-a755-31be-5354e314918c	2021-05-25 07:29:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:29:46.79+03	2021-05-25 07:29:46.811+03	
08adad84-a44d-04fb-cb29-afcb6cff1059	2021-05-25 07:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 07:30:00.79+03	2021-05-25 07:30:00.796+03	ERROR
ebcfe2c0-a7b7-19da-4ba2-6a574af20642	2021-05-27 18:05:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:05:15.951+03	2021-05-27 18:05:15.96+03	
ebce85dc-1de2-b4a4-d449-2bcbff3116e6	2021-05-25 07:30:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:30:06.79+03	2021-05-25 07:30:06.798+03	
446b67de-e891-bb0d-c0a6-79b47421d396	2021-05-26 04:18:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:18:24.79+03	2021-05-26 04:18:24.796+03	
34c386bc-b261-3583-c4f9-fd6d92316a91	2021-05-25 07:30:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:30:26.79+03	2021-05-25 07:30:26.796+03	
39e55e12-91ec-e8eb-637b-df8b205a9834	2021-05-25 07:30:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:30:46.79+03	2021-05-25 07:30:46.797+03	
edd0e6be-83cb-109f-29a4-d31919d628f8	2021-05-26 04:18:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:18:44.79+03	2021-05-26 04:18:44.798+03	
12ab0fdd-67bc-c093-23c8-7f46334d35ef	2021-05-25 07:31:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:31:06.79+03	2021-05-25 07:31:06.799+03	
0279c594-0764-980b-c23b-67f8b5a7c983	2021-05-25 07:31:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:31:26.79+03	2021-05-25 07:31:26.797+03	
991e192f-6a5b-c85e-a357-cca77371f811	2021-05-26 04:19:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:19:04.79+03	2021-05-26 04:19:04.796+03	
7a56d7dc-f6d2-eb6b-778f-98c7737ae928	2021-05-25 07:31:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:31:46.79+03	2021-05-25 07:31:46.797+03	
37bc5a33-71ee-4879-abd6-2e9f8d305411	2021-05-25 07:32:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:32:06.79+03	2021-05-25 07:32:06.796+03	
49243854-bbe9-ad73-93e1-bc51b2658b82	2021-05-26 04:19:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:19:24.79+03	2021-05-26 04:19:24.796+03	
23b55a2b-d0bd-690f-6fb6-4f8207a35787	2021-05-25 07:32:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:32:26.79+03	2021-05-25 07:32:26.797+03	
b257926b-22a3-8a55-bfb7-4f7a47bde0c6	2021-05-25 07:32:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:32:46.79+03	2021-05-25 07:32:46.797+03	
b5579139-ec4f-3b77-10f0-94131792760f	2021-05-26 04:19:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:19:44.79+03	2021-05-26 04:19:44.796+03	
a38983d5-cf67-4ac5-1995-479dfb6998f8	2021-05-25 07:33:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:33:06.79+03	2021-05-25 07:33:06.796+03	
4d25b03d-ffa0-5556-47ac-a953dfa01b3c	2021-05-25 07:33:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:33:26.79+03	2021-05-25 07:33:26.799+03	
7bd13dfd-0e32-3fed-2057-247847704667	2021-05-26 04:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 04:20:00.791+03	2021-05-26 04:20:00.796+03	ERROR
08d12454-544f-35c8-516f-3f92ec757d52	2021-05-25 07:33:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:33:46.79+03	2021-05-25 07:33:46.797+03	
839bc8ab-dfb7-e717-b323-7df39868bddd	2021-05-25 07:34:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:34:06.79+03	2021-05-25 07:34:06.798+03	
974e52ae-ff8d-b7e0-f94f-8b89f6bbc2fe	2021-05-26 04:20:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:20:14.79+03	2021-05-26 04:20:14.797+03	
d4ed31d3-801b-54e8-0256-2ea6057a5c44	2021-05-25 07:34:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:34:26.79+03	2021-05-25 07:34:26.798+03	
d1e0c923-6633-314e-d740-26356b08a604	2021-05-25 07:34:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:34:46.79+03	2021-05-25 07:34:46.798+03	
56ebd15a-8fb2-7d4c-2a10-37e4e627a00c	2021-05-26 04:20:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:20:34.79+03	2021-05-26 04:20:34.797+03	
7b021078-ae5d-52fb-c4be-2bf683f65e87	2021-05-25 07:35:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:35:06.79+03	2021-05-25 07:35:06.796+03	
bff33577-fc33-282a-b099-0271c1bb14b1	2021-05-25 07:35:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:35:26.79+03	2021-05-25 07:35:26.798+03	
52f7f794-1d4b-913f-dc0f-00a1e07cd6f8	2021-05-26 04:20:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:20:54.79+03	2021-05-26 04:20:54.796+03	
bf92714a-69db-3317-038a-230eec910ad5	2021-05-25 07:35:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:35:46.79+03	2021-05-25 07:35:46.796+03	
0beeabae-40ec-4e51-eb44-b59983d59533	2021-05-25 07:36:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:36:06.79+03	2021-05-25 07:36:06.796+03	
0b06b6f3-a430-763a-be20-b1a67fb9cc5d	2021-05-26 04:21:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:21:14.79+03	2021-05-26 04:21:14.796+03	
4496bb0a-21e1-5075-ebcb-d9050e54bdf3	2021-05-25 07:36:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:36:26.79+03	2021-05-25 07:36:26.798+03	
27116486-8e20-5ddf-f334-6f6bdaad5dfc	2021-05-25 07:36:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:36:46.79+03	2021-05-25 07:36:46.798+03	
ec7ad4cb-75a9-e0f9-b748-0c0ed89b67f4	2021-05-26 04:21:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:21:34.79+03	2021-05-26 04:21:34.8+03	
edbfc1bc-7dc9-d980-7ac1-80c0470c91b3	2021-05-25 07:37:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:37:06.79+03	2021-05-25 07:37:06.796+03	
3de0d626-5dd6-c7b0-9746-5caa12cf2989	2021-05-26 04:21:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:21:54.79+03	2021-05-26 04:21:54.796+03	
56570473-0339-bda0-cc7d-635a2cbb29e6	2021-05-26 04:22:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:22:14.79+03	2021-05-26 04:22:14.798+03	
676e022f-de79-6159-bffc-680934101ca3	2021-05-26 04:22:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:22:34.79+03	2021-05-26 04:22:34.796+03	
b5de417d-5f40-4b24-fc29-3fb85990dce1	2021-05-26 04:22:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:22:54.79+03	2021-05-26 04:22:54.796+03	
8229b724-abf4-207f-c897-bb11704dd847	2021-05-26 04:23:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:23:14.79+03	2021-05-26 04:23:14.796+03	
8678a595-d622-d595-9e0f-488a631bd293	2021-05-26 04:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:23:34.79+03	2021-05-26 04:23:34.796+03	
ce2abc72-b3c6-7e71-cef0-4053385c4aca	2021-05-26 04:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:23:54.79+03	2021-05-26 04:23:54.797+03	
8618a2d4-731c-03a5-bec3-e8007e128ec6	2021-05-26 04:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:24:14.79+03	2021-05-26 04:24:14.797+03	
b724a185-1282-ab30-1ea9-7a26f180b167	2021-05-26 04:24:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:24:34.79+03	2021-05-26 04:24:34.798+03	
2bb4a52c-0561-2fd9-ed5d-bfb719993f06	2021-05-26 04:24:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:24:54.79+03	2021-05-26 04:24:54.796+03	
d471c135-e1c5-27fe-1a35-b431e5c30c4c	2021-05-26 04:25:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:25:14.79+03	2021-05-26 04:25:14.796+03	
8fe6f15b-2a0a-779c-4920-e368cd401b80	2021-05-26 04:25:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:25:34.79+03	2021-05-26 04:25:34.796+03	
74370592-4074-695f-4b50-861a15950077	2021-05-26 04:25:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:25:54.79+03	2021-05-26 04:25:54.796+03	
3ae54f7c-00eb-d3d6-e489-48e5b5a81434	2021-05-26 04:26:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:26:14.79+03	2021-05-26 04:26:14.796+03	
ad064de1-57eb-326f-4195-cf9f5a54c4b1	2021-05-26 04:26:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:26:34.79+03	2021-05-26 04:26:34.796+03	
4f18a590-6caa-6e4d-bb8c-2eb02e60bb7a	2021-05-26 04:26:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:26:54.79+03	2021-05-26 04:26:54.796+03	
25d9c502-f0ff-f3e1-d62d-7441eb2abd66	2021-05-26 04:27:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:27:14.79+03	2021-05-26 04:27:14.797+03	
00237b11-8af3-2f59-c37f-145c0d724193	2021-05-26 04:27:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:27:34.79+03	2021-05-26 04:27:34.796+03	
0dcc29a5-e53f-38f2-ae3b-a1daaf163d7c	2021-05-26 04:27:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:27:54.79+03	2021-05-26 04:27:54.796+03	
b26835e5-5999-4009-7da7-21a3adc5fa4f	2021-05-26 04:28:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:28:14.79+03	2021-05-26 04:28:14.796+03	
7fe87faa-b802-c360-f6a7-0ac0a7768796	2021-05-26 04:28:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:28:34.79+03	2021-05-26 04:28:34.796+03	
5ad91ab2-f57e-e4c2-9033-5d49700d7046	2021-05-26 04:28:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:28:54.79+03	2021-05-26 04:28:54.796+03	
7a516fba-9e8e-6e79-1f41-2d3acacb6df2	2021-05-26 04:29:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:29:14.79+03	2021-05-26 04:29:14.796+03	
218d2227-b8a8-9944-6b9f-014f644de88d	2021-05-26 04:29:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:29:34.79+03	2021-05-26 04:29:34.796+03	
daec8bb7-044b-2e01-f40c-6b215fc6854a	2021-05-26 04:29:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:29:54.79+03	2021-05-26 04:29:54.796+03	
f4c4aef6-0a5c-9721-48c1-c0995ef28287	2021-05-26 04:30:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:30:04.79+03	2021-05-26 04:30:04.796+03	
575d7e18-ae7d-a1c3-e6a7-e17b8e2cae9c	2021-05-26 04:30:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:30:24.79+03	2021-05-26 04:30:24.796+03	
d32d8d22-0d60-bf42-b560-d6c5248c30eb	2021-05-26 04:30:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:30:44.79+03	2021-05-26 04:30:44.797+03	
c0d94ed8-ef8e-72b8-daa1-088c1a52d776	2021-05-26 04:31:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:31:04.79+03	2021-05-26 04:31:04.797+03	
418c5cb9-7706-4654-938f-e1574fdc26e8	2021-05-26 04:31:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:31:24.79+03	2021-05-26 04:31:24.797+03	
f60e81cd-a3eb-bf85-83ee-083d2e0207c2	2021-05-25 07:30:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:30:16.79+03	2021-05-25 07:30:16.796+03	
5fe6b51e-bc30-912f-6701-f193897ced6d	2021-05-25 07:30:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:30:36.79+03	2021-05-25 07:30:36.797+03	
886bce8a-f991-8d75-8ee9-d9fb1aada2df	2021-05-25 07:30:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:30:56.79+03	2021-05-25 07:30:56.798+03	
b312ca66-c5cf-6a73-c54d-31377f663171	2021-05-25 07:31:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:31:16.79+03	2021-05-25 07:31:16.796+03	
bb96ee2c-b2e1-2911-6c44-2db3cbd9c2ee	2021-05-25 07:31:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:31:36.79+03	2021-05-25 07:31:36.797+03	
88e8be56-ae6e-a7c7-ec7f-b3d95e453357	2021-05-25 07:31:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:31:56.79+03	2021-05-25 07:31:56.797+03	
6e4eab5e-1cd9-0293-9f08-c06b510a75df	2021-05-25 07:32:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:32:16.79+03	2021-05-25 07:32:16.796+03	
68d98d3e-d56e-59eb-d471-6026b533b982	2021-05-25 07:32:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:32:36.79+03	2021-05-25 07:32:36.798+03	
8e1cea3d-4d53-34ab-d7fd-d68585e9d78e	2021-05-25 07:32:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:32:56.79+03	2021-05-25 07:32:56.847+03	
cc46f3f3-445a-3209-3e60-9e9213a537bc	2021-05-25 07:33:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:33:16.79+03	2021-05-25 07:33:16.796+03	
0f507d7d-73be-0e34-8826-9f8e3afe2821	2021-05-25 07:33:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:33:36.79+03	2021-05-25 07:33:36.798+03	
224a8569-8ea3-26f6-d1e4-bff52ce18d42	2021-05-25 07:33:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:33:56.79+03	2021-05-25 07:33:56.797+03	
9252c2b2-9a35-dbfd-882f-340d73342343	2021-05-25 07:34:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:34:16.79+03	2021-05-25 07:34:16.796+03	
1f974d03-ec6f-4c32-5365-fd2e4c33b4b2	2021-05-25 07:34:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:34:36.79+03	2021-05-25 07:34:36.797+03	
7c81e0f3-438f-e371-42cf-452ce851e32b	2021-05-25 07:34:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:34:56.79+03	2021-05-25 07:34:56.797+03	
b5d7a340-98ab-fc64-7ea4-7287715bdf2c	2021-05-25 07:35:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:35:16.79+03	2021-05-25 07:35:16.797+03	
4cdad99a-e147-bfff-2dad-beec5e2e9114	2021-05-25 07:35:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:35:36.79+03	2021-05-25 07:35:36.796+03	
662f643e-f81f-c49f-2fa0-9c266fa7fd24	2021-05-25 07:35:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:35:56.79+03	2021-05-25 07:35:56.798+03	
0c61a3c2-6f94-d4ef-61b2-3ad19ac49d7c	2021-05-25 07:36:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:36:16.79+03	2021-05-25 07:36:16.798+03	
c3672f52-185e-dc53-f090-9604e5edb93e	2021-05-25 07:36:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:36:36.79+03	2021-05-25 07:36:36.797+03	
7ed7e491-e4cd-7949-5ab7-9168df966eb7	2021-05-25 07:36:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:36:56.79+03	2021-05-25 07:36:56.798+03	
bc1178e6-8e64-9c7b-beb9-fc8d48a4a26b	2021-05-25 07:37:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:37:16.79+03	2021-05-25 07:37:16.797+03	
a6a67303-d36c-b463-7ed3-e2dd27bbb6ab	2021-05-25 07:37:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:37:26.79+03	2021-05-25 07:37:26.796+03	
e3526a77-110b-aeb0-6c1c-a4a17b72d250	2021-05-25 07:37:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:37:36.79+03	2021-05-25 07:37:36.796+03	
a51ec826-3373-b6d5-7612-c0488f5e6543	2021-05-25 07:37:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:37:46.79+03	2021-05-25 07:37:46.798+03	
cc806663-49b8-20f7-0335-a27e63273a3e	2021-05-25 07:37:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:37:56.79+03	2021-05-25 07:37:56.798+03	
3ca65fdb-a69e-7e04-5fda-fbdf21517cac	2021-05-25 07:38:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:38:06.79+03	2021-05-25 07:38:06.796+03	
a793040a-4af7-8452-4af2-6bb1bd33423f	2021-05-25 07:38:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:38:16.79+03	2021-05-25 07:38:16.797+03	
deb8d478-9877-afb2-cd53-b85c9c3b7088	2021-05-25 07:38:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:38:26.79+03	2021-05-25 07:38:26.797+03	
1722fbd4-d6e9-4d3b-ab70-8a48c00355f5	2021-05-25 07:38:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:38:36.79+03	2021-05-25 07:38:36.798+03	
62ff8f1d-70ea-9fc8-bbe3-f822d91c7755	2021-05-25 07:38:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:38:46.79+03	2021-05-25 07:38:46.796+03	
671bbf3f-eed3-97f7-910c-f96c74f5d397	2021-05-25 07:38:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:38:56.79+03	2021-05-25 07:38:56.799+03	
4d9695ef-6aa9-f181-8189-3c7a29c8aa6c	2021-05-25 07:39:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:39:06.79+03	2021-05-25 07:39:06.796+03	
03255294-b1f1-b1c8-3505-192058a725a0	2021-05-25 07:39:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:39:16.79+03	2021-05-25 07:39:16.797+03	
f9adcf4d-28d0-1a7c-93a8-f2c9e62be5a3	2021-05-25 07:39:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:39:26.79+03	2021-05-25 07:39:26.797+03	
718f4e44-89fc-c471-766f-cdd25ab33499	2021-05-25 07:39:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:39:36.79+03	2021-05-25 07:39:36.796+03	
031105d8-4a75-f7b5-daa4-03003c5fb1f0	2021-05-25 07:39:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:39:46.79+03	2021-05-25 07:39:46.796+03	
c77edb55-8344-0cb2-36f7-4a76564fb537	2021-05-25 07:39:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:39:56.79+03	2021-05-25 07:39:56.797+03	
ea0bbace-3a45-eb37-4333-777f2dd37be4	2021-05-25 07:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 07:40:00.79+03	2021-05-25 07:40:00.795+03	ERROR
1a3a6096-2ba9-e01a-20d9-88f6017f9472	2021-05-25 07:40:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:40:06.79+03	2021-05-25 07:40:06.797+03	
a96b8c22-d864-2b44-b683-8a7961f53f5a	2021-05-25 07:40:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:40:16.79+03	2021-05-25 07:40:16.798+03	
af022248-fffd-a3ab-c071-877de60a9e8f	2021-05-25 07:40:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:40:26.79+03	2021-05-25 07:40:26.797+03	
20ea9e1e-7e1d-bf10-100e-3755250cf197	2021-05-25 07:40:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:40:36.79+03	2021-05-25 07:40:36.796+03	
d6e03aff-aaf9-b138-03fb-779d2cb59ad4	2021-05-25 07:40:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:40:46.79+03	2021-05-25 07:40:46.801+03	
aad3d58e-0705-1f81-2423-6122bac79223	2021-05-25 07:40:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:40:56.79+03	2021-05-25 07:40:56.847+03	
0cbef05c-c546-811c-2a4c-9f6a4c715070	2021-05-25 07:41:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:41:06.79+03	2021-05-25 07:41:06.796+03	
565b13e9-6faa-bef3-1bdf-107476f36ea6	2021-05-25 07:41:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:41:16.79+03	2021-05-25 07:41:16.796+03	
538bee7b-5ba2-e884-17aa-af86041a4190	2021-05-25 07:41:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:41:26.79+03	2021-05-25 07:41:26.798+03	
2891e1f0-6e2c-4c76-62ca-45f1f8ba3d8a	2021-05-25 07:41:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:41:36.79+03	2021-05-25 07:41:36.797+03	
e5aa2023-ec00-dd81-27bc-8d6885f0de9c	2021-05-25 07:41:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:41:46.79+03	2021-05-25 07:41:46.802+03	
2dd719ed-a557-a01d-c930-98b4c55cd151	2021-05-25 07:41:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:41:56.79+03	2021-05-25 07:41:56.797+03	
b1ca34b2-8560-2c91-48fa-65a4e628fbc7	2021-05-25 07:42:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:42:06.79+03	2021-05-25 07:42:06.797+03	
47bdfcbd-b85d-d058-ab2d-c507e37a27d4	2021-05-25 07:42:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:42:16.79+03	2021-05-25 07:42:16.797+03	
c2710979-d44f-b37c-9273-9565e071bebb	2021-05-25 07:42:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:42:26.79+03	2021-05-25 07:42:26.796+03	
5c71136f-c87c-2bca-9116-7fbaae9c0e15	2021-05-25 07:42:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:42:36.79+03	2021-05-25 07:42:36.795+03	
17a06b4c-f574-17a9-8a5b-88e744d5ef4f	2021-05-25 07:42:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:42:46.79+03	2021-05-25 07:42:46.796+03	
5dae4edf-e7a7-ba9c-8358-9b91d42c504c	2021-05-25 07:42:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:42:56.79+03	2021-05-25 07:42:56.797+03	
b6a97672-1f4b-eddf-ac6e-2300c220bd84	2021-05-25 07:43:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:43:06.79+03	2021-05-25 07:43:06.799+03	
50591c1d-6ba5-e994-4473-26f29460635f	2021-05-25 07:43:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:43:16.79+03	2021-05-25 07:43:16.796+03	
9663d315-7195-2253-d1e8-df6edcf35424	2021-05-25 07:43:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:43:26.79+03	2021-05-25 07:43:26.798+03	
57db3092-4326-9979-5b75-8022b062101d	2021-05-25 07:43:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:43:36.79+03	2021-05-25 07:43:36.797+03	
ce6c3a74-a0ac-fb27-e8d0-c90ec0c8acf5	2021-05-25 07:43:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:43:46.79+03	2021-05-25 07:43:46.796+03	
48c80d98-30d1-f0a0-7c93-2b8712f504f4	2021-05-25 07:43:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:43:56.79+03	2021-05-25 07:43:56.797+03	
73eb41c2-d8f5-2391-bf57-91f92d615600	2021-05-25 07:44:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:44:06.79+03	2021-05-25 07:44:06.798+03	
99c0552f-247a-d0b8-0c1b-3f3762ff16e7	2021-05-25 07:44:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:44:26.79+03	2021-05-25 07:44:26.798+03	
165cc132-75cd-3021-2162-7e2ecb851c1d	2021-05-25 07:44:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:44:46.79+03	2021-05-25 07:44:46.798+03	
b13f081b-615e-71ae-af60-66e2ffd67bfc	2021-05-25 07:45:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:45:06.79+03	2021-05-25 07:45:06.798+03	
1c76ee25-e958-d945-f330-ec0e8155c291	2021-05-25 07:45:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:45:26.79+03	2021-05-25 07:45:26.8+03	
4341785f-1649-3cb6-0e32-21faa8b61e41	2021-05-25 07:45:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:45:46.79+03	2021-05-25 07:45:46.797+03	
dabe5587-0b94-1558-9589-fd820908afd8	2021-05-25 07:46:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:46:06.79+03	2021-05-25 07:46:06.797+03	
7c62207e-3d30-a6ca-9cc8-adbcdb5330cd	2021-05-25 07:46:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:46:26.79+03	2021-05-25 07:46:26.797+03	
a3975163-df88-ca60-b6b6-d3b3c10e1496	2021-05-25 07:46:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:46:46.79+03	2021-05-25 07:46:46.798+03	
e6f57393-6d97-5bc6-febd-b443d88ba8ad	2021-05-25 07:47:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:47:06.79+03	2021-05-25 07:47:06.796+03	
2e8e3243-75e8-1eac-7765-f143c74ba84e	2021-05-25 07:47:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:47:26.79+03	2021-05-25 07:47:26.796+03	
267c6884-6898-cb8c-13f2-7fd6d031e0a1	2021-05-25 07:47:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:47:46.79+03	2021-05-25 07:47:46.796+03	
202dba0b-1830-2ce3-2b42-698daa8ded12	2021-05-25 07:48:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:48:06.79+03	2021-05-25 07:48:06.797+03	
2103a294-9424-270b-f3d6-25edda886b64	2021-05-25 07:48:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:48:26.79+03	2021-05-25 07:48:26.796+03	
2490fc8e-9746-4c5b-bc71-1e9aaeea6a15	2021-05-25 07:48:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:48:46.791+03	2021-05-25 07:48:46.799+03	
8ef21d9d-5aaf-d3c9-cc38-3aae4c6172fc	2021-05-25 07:49:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:49:07.79+03	2021-05-25 07:49:07.797+03	
1a3d93a4-7ffb-7331-9ffa-bfd2e4b7b792	2021-05-25 07:49:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:49:27.79+03	2021-05-25 07:49:27.797+03	
3995bc2d-703d-bc87-8fd1-9544e0c6d9f4	2021-05-25 07:49:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:49:47.79+03	2021-05-25 07:49:47.796+03	
9a6b6c31-1ba5-bb55-dd58-2601100f09fa	2021-05-25 07:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 07:50:00.79+03	2021-05-25 07:50:00.796+03	ERROR
891433a8-f948-e486-c573-0eda0b2d677b	2021-05-25 07:50:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:50:17.79+03	2021-05-25 07:50:17.796+03	
2178c13b-e318-b50c-9efb-3206f65ce9cb	2021-05-25 07:50:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:50:37.79+03	2021-05-25 07:50:37.796+03	
9c975184-5255-6d9e-9aa5-e185238ccb61	2021-05-25 07:50:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:50:57.79+03	2021-05-25 07:50:57.796+03	
d32744ee-e3f9-9879-5788-7a828ba93cdc	2021-05-25 07:51:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:51:17.79+03	2021-05-25 07:51:17.796+03	
ea66039b-bffe-99ff-2d72-00df32732af4	2021-05-25 07:51:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:51:37.79+03	2021-05-25 07:51:37.801+03	
724dbb9a-82bd-3f7b-a52e-07e2a8461729	2021-05-25 07:51:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:51:57.79+03	2021-05-25 07:51:57.797+03	
017ff3e7-3d0a-b2f7-03fa-27118cc694d8	2021-05-25 07:52:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:52:17.79+03	2021-05-25 07:52:17.798+03	
32e13ce7-559e-5b22-fecd-48c24b6d2cf8	2021-05-25 07:52:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:52:37.79+03	2021-05-25 07:52:37.796+03	
36ca63c9-d960-734e-ff85-86be45b6907b	2021-05-25 07:52:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:52:57.79+03	2021-05-25 07:52:57.797+03	
cb2535b4-218c-471f-8ae5-46b535812da2	2021-05-25 07:53:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:53:17.79+03	2021-05-25 07:53:17.796+03	
84ddcd17-6309-bbe8-6a54-fb8362325cde	2021-05-25 07:53:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:53:37.79+03	2021-05-25 07:53:37.795+03	
4d988616-b6bb-f4c4-4f5f-78832e06e274	2021-05-25 07:53:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:53:57.79+03	2021-05-25 07:53:57.796+03	
e0ad8b1f-2c04-3423-7454-a1658e1583ae	2021-05-25 07:54:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:54:17.79+03	2021-05-25 07:54:17.796+03	
e4232f33-780a-c2c1-faed-3c29ddb321bd	2021-05-25 07:54:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:54:37.79+03	2021-05-25 07:54:37.796+03	
b93d0037-c3cb-d7ff-2fc8-cb2c3872098a	2021-05-25 07:54:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:54:57.79+03	2021-05-25 07:54:57.798+03	
73f1a0f6-b670-7ff4-0a44-ccc25c912962	2021-05-25 07:55:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:55:17.79+03	2021-05-25 07:55:17.796+03	
f1edf267-5a04-75c2-0d89-8b38a2eed7f3	2021-05-25 07:55:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:55:37.79+03	2021-05-25 07:55:37.797+03	
7a133200-3966-18a0-1a98-a9e30d43ce50	2021-05-25 07:55:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:55:57.79+03	2021-05-25 07:55:57.797+03	
ff36452f-cf48-9593-3a35-4b905a772e06	2021-05-25 07:56:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:56:17.79+03	2021-05-25 07:56:17.797+03	
a18c9aea-37d6-871b-f1e6-a23628812ba6	2021-05-25 07:56:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:56:37.79+03	2021-05-25 07:56:37.797+03	
6096e525-26b3-2835-fc42-2a42a1c18653	2021-05-25 07:56:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:56:57.79+03	2021-05-25 07:56:57.799+03	
5a686221-0a49-50ee-8a13-9a3c71b95bb0	2021-05-25 07:57:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:57:17.79+03	2021-05-25 07:57:17.797+03	
07cb3884-1171-e63b-0dff-0219aeb6b526	2021-05-25 07:57:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:57:37.79+03	2021-05-25 07:57:37.796+03	
0da198e4-449f-378e-3c01-741afa72efe8	2021-05-25 07:57:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:57:57.79+03	2021-05-25 07:57:57.799+03	
7ec67805-d04c-4750-271d-c51d2559f624	2021-05-25 07:58:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:58:17.79+03	2021-05-25 07:58:17.796+03	
f039986c-6082-1b95-6edc-8991c65434de	2021-05-25 07:58:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:58:37.79+03	2021-05-25 07:58:37.795+03	
459c9ac0-f7c9-8d40-5c1c-d1c6c2328b2f	2021-05-25 07:58:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:58:57.79+03	2021-05-25 07:58:57.798+03	
a480d045-29a6-577a-278a-a23e5e948e4e	2021-05-25 07:59:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:59:17.79+03	2021-05-25 07:59:17.8+03	
3f446420-7511-78cb-0dc4-1c8917a90db4	2021-05-25 07:59:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:59:37.79+03	2021-05-25 07:59:37.797+03	
52056c1a-4316-3501-a39a-314b7345e74a	2021-05-25 07:59:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:59:57.79+03	2021-05-25 07:59:57.797+03	
88c455c7-b743-340a-9fe6-b1b3e6f92f18	2021-05-25 08:00:07.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:00:07.79+03	2021-05-25 08:00:07.821+03	
33004444-1bb1-33d4-ea77-2b82f45a352c	2021-05-25 08:00:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:00:27.79+03	2021-05-25 08:00:27.799+03	
50495e5c-c9b6-978a-cce0-82b00f4c95ff	2021-05-25 08:00:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:00:47.79+03	2021-05-25 08:00:47.797+03	
2d041c12-98b3-3974-6eea-01e30405a2af	2021-05-25 08:01:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:01:07.79+03	2021-05-25 08:01:07.804+03	
706c856e-abaa-25ee-16ef-b541e97585f9	2021-05-25 08:01:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:01:27.79+03	2021-05-25 08:01:27.796+03	
dbcf0970-bb21-ab6c-cf7e-0f6e3e274b3f	2021-05-25 08:01:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:01:47.79+03	2021-05-25 08:01:47.796+03	
efa37113-c80a-bced-a33b-fc7cbce21761	2021-05-25 08:02:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:02:07.79+03	2021-05-25 08:02:07.795+03	
3121e057-fd64-3519-95b3-556bf3b45d9d	2021-05-25 08:02:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:02:27.79+03	2021-05-25 08:02:27.802+03	
47c2e7a0-e9f0-5f57-e6d9-06c4f685dbb2	2021-05-25 08:02:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:02:47.79+03	2021-05-25 08:02:47.797+03	
2645c5b2-0180-a3d0-e2ea-0e2d8c49fc21	2021-05-25 08:03:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:03:07.79+03	2021-05-25 08:03:07.796+03	
5129164b-5c91-67f3-0e0e-20760cb7ed76	2021-05-25 08:03:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:03:27.79+03	2021-05-25 08:03:27.798+03	
405d9256-a990-4686-6246-557d00c49559	2021-05-25 08:03:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:03:47.79+03	2021-05-25 08:03:47.797+03	
19fa5528-82f5-8272-c425-3f7d871427b8	2021-05-25 08:04:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:04:07.79+03	2021-05-25 08:04:07.797+03	
501b5eb4-ecf2-823d-ac4b-b2d3baaf5f76	2021-05-25 08:04:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:04:27.79+03	2021-05-25 08:04:27.797+03	
38ab12f7-40bc-6846-bd0d-d6620efe10b1	2021-05-25 07:44:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:44:16.79+03	2021-05-25 07:44:16.798+03	
de374d44-23be-9734-58fe-cb497d0fa86d	2021-05-25 07:44:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:44:36.79+03	2021-05-25 07:44:36.796+03	
d6954589-bb09-cbf3-222a-4a0bb46dffe1	2021-05-25 07:44:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:44:56.79+03	2021-05-25 07:44:56.797+03	
6c54170e-561a-86b8-aa28-8d5f3bec077d	2021-05-25 07:45:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:45:16.79+03	2021-05-25 07:45:16.797+03	
65ac87ac-bdf8-eb18-5a70-2fa5108fd982	2021-05-25 07:45:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:45:36.79+03	2021-05-25 07:45:36.796+03	
807cacce-a5d8-761f-61ad-cfe43edcbc88	2021-05-25 07:45:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:45:56.79+03	2021-05-25 07:45:56.799+03	
2fd5bd29-1640-72c2-1316-12a250a27dc3	2021-05-25 07:46:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:46:16.79+03	2021-05-25 07:46:16.795+03	
ac179a58-8c97-74de-c78f-2d1ab6b8a94d	2021-05-25 07:46:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:46:36.79+03	2021-05-25 07:46:36.796+03	
c3fc3d15-ae6d-ca13-a25d-98808ee7bd8c	2021-05-25 07:46:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:46:56.79+03	2021-05-25 07:46:56.796+03	
94e524d6-81de-735a-0966-7a3f1a2d87f9	2021-05-25 07:47:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:47:16.79+03	2021-05-25 07:47:16.798+03	
383a562a-568e-56b8-c07a-b2aba5c7f2bd	2021-05-25 07:47:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:47:36.79+03	2021-05-25 07:47:36.796+03	
cb0532d4-005a-2f10-c9e3-5c642b9e0ec2	2021-05-25 07:47:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:47:56.79+03	2021-05-25 07:47:56.797+03	
3e235434-a19e-9bd7-9db4-8d93288a8596	2021-05-25 07:48:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:48:16.79+03	2021-05-25 07:48:16.797+03	
7b2510ae-bf06-2d5a-6d12-1d5f6f88378e	2021-05-25 07:48:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:48:36.79+03	2021-05-25 07:48:36.797+03	
1de18a47-ba3c-a434-50b9-0273c061bff0	2021-05-25 07:48:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:48:57.79+03	2021-05-25 07:48:57.797+03	
288b55b7-b017-1101-86a0-28ee330c00bc	2021-05-25 07:49:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:49:17.79+03	2021-05-25 07:49:17.797+03	
5760f94e-f30a-578c-bec5-c1c9925f9d8b	2021-05-25 07:49:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:49:37.79+03	2021-05-25 07:49:37.796+03	
f9ff77bb-c2a4-3a3f-5dd9-6176990e3cdb	2021-05-25 07:49:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:49:57.79+03	2021-05-25 07:49:57.797+03	
da09c328-eee2-1ed4-11db-6a5cc4e42da7	2021-05-25 07:50:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:50:07.79+03	2021-05-25 07:50:07.802+03	
7212bb90-97a7-7569-1945-3ce81baea1c0	2021-05-25 07:50:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:50:27.79+03	2021-05-25 07:50:27.796+03	
66c523f1-71e9-ee71-b79c-bf37d2eb18bb	2021-05-25 07:50:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:50:47.79+03	2021-05-25 07:50:47.798+03	
f438f6de-ec17-41dd-a91a-c18342ce48ff	2021-05-25 07:51:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:51:07.79+03	2021-05-25 07:51:07.803+03	
3189d716-cf64-c803-9250-c8baf0354a28	2021-05-25 07:51:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:51:27.79+03	2021-05-25 07:51:27.797+03	
deb8d602-99bf-c7d8-1e8f-ddf84494c1bb	2021-05-25 07:51:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:51:47.79+03	2021-05-25 07:51:47.796+03	
69cadd2a-2d41-cf3c-ae57-376e2d44ff11	2021-05-25 07:52:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:52:07.79+03	2021-05-25 07:52:07.796+03	
638e3018-c268-9927-9588-cd670307f109	2021-05-25 07:52:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:52:27.79+03	2021-05-25 07:52:27.797+03	
f3d1c193-2f9e-c30c-0e88-ad03e9dd7d91	2021-05-25 07:52:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:52:47.79+03	2021-05-25 07:52:47.796+03	
7f9eed8c-96ae-ea73-011e-153ff99bc648	2021-05-25 07:53:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:53:07.79+03	2021-05-25 07:53:07.798+03	
fc8b675c-91e5-b063-5bab-788344e28472	2021-05-25 07:53:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:53:27.79+03	2021-05-25 07:53:27.797+03	
e18205e2-92f0-02d1-0683-cd4c45589121	2021-05-25 07:53:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:53:47.79+03	2021-05-25 07:53:47.796+03	
34e11e16-92fc-ef13-235b-b1564e6c7ce4	2021-05-25 07:54:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:54:07.79+03	2021-05-25 07:54:07.797+03	
c46ec9ba-1ba7-6b73-ef72-82ed735ba0be	2021-05-25 07:54:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:54:27.79+03	2021-05-25 07:54:27.797+03	
c53ec8a6-8302-9de4-3299-0e9f3c3213cd	2021-05-25 07:54:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:54:47.79+03	2021-05-25 07:54:47.796+03	
1398f09b-324c-9174-bfd5-ee6ae4da8b40	2021-05-25 07:55:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:55:07.79+03	2021-05-25 07:55:07.796+03	
04413be7-bcb2-7b92-8c00-f5281312d0ee	2021-05-25 07:55:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:55:27.79+03	2021-05-25 07:55:27.798+03	
ad63bd64-dde0-85ed-9e88-369029419a21	2021-05-25 07:55:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:55:47.79+03	2021-05-25 07:55:47.798+03	
d68f4a79-cf2c-69c5-d2e8-ac501053cc01	2021-05-25 07:56:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:56:07.79+03	2021-05-25 07:56:07.797+03	
b5152691-d1cd-714d-59a0-ea14572cf6a2	2021-05-25 07:56:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:56:27.79+03	2021-05-25 07:56:27.797+03	
18aa5d32-34e2-f7b0-9fe3-6062f54c6213	2021-05-25 07:56:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:56:47.79+03	2021-05-25 07:56:47.798+03	
1e50a2a5-bfbd-36b4-a9d9-d165fb8c504a	2021-05-25 07:57:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:57:07.79+03	2021-05-25 07:57:07.796+03	
31c5ff47-dd1d-dfd4-c497-07280716f2dc	2021-05-25 07:57:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:57:27.79+03	2021-05-25 07:57:27.796+03	
aaf8618f-f303-63e5-dc6c-07db9b8d0b36	2021-05-25 07:57:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:57:47.79+03	2021-05-25 07:57:47.797+03	
fa3359b1-b647-cabd-0d62-21d05692de2c	2021-05-25 07:58:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:58:07.79+03	2021-05-25 07:58:07.797+03	
0f41dca4-95ba-aae9-52e4-b6239869dbe3	2021-05-25 07:58:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:58:27.79+03	2021-05-25 07:58:27.796+03	
cd5e88e8-4d58-9de8-d3bc-3c9e75011030	2021-05-25 07:58:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:58:47.79+03	2021-05-25 07:58:47.798+03	
d483c2cf-4ca3-818a-98a5-fc030aa44609	2021-05-25 07:59:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:59:07.79+03	2021-05-25 07:59:07.796+03	
4be4af1c-3c6b-af21-2812-7c22ff051093	2021-05-25 07:59:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:59:27.79+03	2021-05-25 07:59:27.798+03	
5483d682-405f-7f53-1974-4ead9a53295d	2021-05-25 07:59:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 07:59:47.79+03	2021-05-25 07:59:47.796+03	
046cab0c-451a-1e3c-435e-11f0f507c324	2021-05-25 08:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 08:00:00.79+03	2021-05-25 08:00:00.798+03	ERROR
7efe36a1-2b45-4108-b78e-ab416ed5c781	2021-05-25 08:00:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:00:17.79+03	2021-05-25 08:00:17.799+03	
68d8b806-46ae-ae57-ae4d-fa6006c9e193	2021-05-25 08:00:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:00:37.79+03	2021-05-25 08:00:37.799+03	
dc36bf6d-26f9-82b5-fa87-194a27ee6cf0	2021-05-25 08:00:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:00:57.79+03	2021-05-25 08:00:57.798+03	
f19f2ee5-49dc-1e9a-93be-5a40b3a567fc	2021-05-25 08:01:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:01:17.79+03	2021-05-25 08:01:17.796+03	
2350875d-caf3-2ade-4b0d-918995e76192	2021-05-25 08:01:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:01:37.79+03	2021-05-25 08:01:37.796+03	
6ec51187-a588-372b-c253-31e6a074b10b	2021-05-25 08:01:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:01:57.79+03	2021-05-25 08:01:57.797+03	
52800d08-921e-f3b2-2ea5-a1fccb6dc8f5	2021-05-25 08:02:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:02:17.79+03	2021-05-25 08:02:17.796+03	
6954b753-fb4e-63c1-1c4c-02c4177146f6	2021-05-25 08:02:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:02:37.79+03	2021-05-25 08:02:37.795+03	
ce914e13-e553-5d7a-61e7-d01abbe2f410	2021-05-25 08:02:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:02:57.79+03	2021-05-25 08:02:57.798+03	
9c7888f6-a220-75d0-3a23-a4ffc0fbc054	2021-05-25 08:03:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:03:17.79+03	2021-05-25 08:03:17.797+03	
d61e0bbb-7962-bfe9-0c01-c2af82e783d8	2021-05-25 08:03:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:03:37.79+03	2021-05-25 08:03:37.798+03	
6a5bcff4-b01e-0d54-ef89-84d1972b5df4	2021-05-25 08:03:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:03:57.79+03	2021-05-25 08:03:57.798+03	
4f402122-75af-4cc9-6bff-3097c3db36ac	2021-05-25 08:04:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:04:17.79+03	2021-05-25 08:04:17.797+03	
8a205d8b-7f32-a28b-476d-0c1c964d9439	2021-05-25 08:04:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:04:37.79+03	2021-05-25 08:04:37.797+03	
ccf57a7a-f3d4-41e0-0e5d-0bb0fefc9b2e	2021-05-25 08:04:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:04:47.79+03	2021-05-25 08:04:47.797+03	
38a25cb4-a36a-9451-cb63-3555f1d8415c	2021-05-25 08:05:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:05:07.79+03	2021-05-25 08:05:07.797+03	
b2cf860a-abef-a805-baf1-4baaafe780a8	2021-05-25 08:05:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:05:27.79+03	2021-05-25 08:05:27.796+03	
45f37666-b672-343b-f257-1c5327226ff0	2021-05-25 08:05:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:05:47.79+03	2021-05-25 08:05:47.798+03	
1c344291-f51f-7187-a973-ed0aa75409c7	2021-05-25 08:06:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:06:07.79+03	2021-05-25 08:06:07.796+03	
198a9e86-32bb-5623-6915-5a681af0fd4e	2021-05-25 08:06:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:06:27.79+03	2021-05-25 08:06:27.797+03	
1f6a783c-67fb-9e9d-4f02-03e3f8e7a5c9	2021-05-25 08:06:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:06:47.79+03	2021-05-25 08:06:47.796+03	
7330fd6c-8183-3471-8c1e-e2e48ef8a65c	2021-05-25 08:07:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:07:07.79+03	2021-05-25 08:07:07.796+03	
5391fb69-6c52-be88-9ea3-39ceb029fe8c	2021-05-25 08:07:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:07:27.79+03	2021-05-25 08:07:27.798+03	
e352718a-2ec3-1599-0db9-af4cbde4bccd	2021-05-25 08:07:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:07:47.79+03	2021-05-25 08:07:47.797+03	
c05ee135-1b10-fbf4-8def-940a6f29e789	2021-05-25 08:08:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:08:07.79+03	2021-05-25 08:08:07.796+03	
6f459a78-c682-6d8d-3509-4ee64f803bb5	2021-05-25 08:08:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:08:27.79+03	2021-05-25 08:08:27.797+03	
98b8b01f-8fa6-af45-f12e-e80faa3667dc	2021-05-25 08:08:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:08:47.79+03	2021-05-25 08:08:47.797+03	
31b10063-9f34-7ff1-ba56-34552d23f103	2021-05-25 08:09:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:09:07.79+03	2021-05-25 08:09:07.797+03	
b3903f65-c85d-7974-cac0-05cdadf75508	2021-05-25 08:09:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:09:27.79+03	2021-05-25 08:09:27.796+03	
2cbc7a17-d543-e72a-4b2d-4ab6407b5c12	2021-05-25 08:09:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:09:47.79+03	2021-05-25 08:09:47.796+03	
58134a82-103c-2ecd-aedf-828b4a6051ab	2021-05-25 08:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 08:10:00.79+03	2021-05-25 08:10:00.794+03	ERROR
3c32dfaf-8f30-0507-d6d2-60105e90987d	2021-05-25 08:10:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:10:17.79+03	2021-05-25 08:10:17.798+03	
08b2f55a-5b24-c04b-6584-f946a652f7bf	2021-05-25 08:10:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:10:37.79+03	2021-05-25 08:10:37.798+03	
441748b2-1a4b-8faf-6ace-a22a0d35d2e9	2021-05-25 08:10:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:10:57.79+03	2021-05-25 08:10:57.798+03	
b101e42a-564e-c312-68b4-ec2888f9acf2	2021-05-25 08:11:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:11:17.79+03	2021-05-25 08:11:17.798+03	
720b01c9-efb7-b48d-9a79-2bcf4f026de4	2021-05-25 08:11:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:11:37.79+03	2021-05-25 08:11:37.798+03	
dd9dad55-2825-0343-e682-0086d70a9eee	2021-05-25 08:11:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:11:57.79+03	2021-05-25 08:11:57.853+03	
4811e1fa-1068-ad64-8270-35b7682af0c9	2021-05-25 08:12:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:12:17.79+03	2021-05-25 08:12:17.796+03	
a2332b7c-86a6-4aa7-b85b-bbc1dc262289	2021-05-25 08:12:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:12:37.79+03	2021-05-25 08:12:37.797+03	
1efa4274-7b53-eb5b-bd5f-2760214f5384	2021-05-25 08:12:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:12:57.79+03	2021-05-25 08:12:57.798+03	
b66b525d-7b18-1465-6448-f78687204fa9	2021-05-25 08:13:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:13:17.79+03	2021-05-25 08:13:17.796+03	
ff78976e-910e-bef4-f168-0ad4809df924	2021-05-25 08:13:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:13:37.79+03	2021-05-25 08:13:37.797+03	
12a79fe9-7629-9c6d-28f0-841caeffd5d4	2021-05-25 08:13:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:13:57.79+03	2021-05-25 08:13:57.799+03	
aee6b179-75f5-25c3-450a-127d8bc6d687	2021-05-25 08:14:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:14:17.79+03	2021-05-25 08:14:17.796+03	
ae97d654-86b1-e636-7e52-219664a75ea5	2021-05-25 08:14:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:14:37.79+03	2021-05-25 08:14:37.797+03	
c36bafad-c98d-6440-137b-da190c9d94b9	2021-05-25 08:14:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:14:57.79+03	2021-05-25 08:14:57.797+03	
9635dbd6-c2c3-7e56-508b-1107d6495437	2021-05-25 08:15:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:15:17.79+03	2021-05-25 08:15:17.797+03	
d56aa997-99bd-7c1d-67a0-22046b31432d	2021-05-25 08:15:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:15:37.79+03	2021-05-25 08:15:37.797+03	
3ec4f220-5d4c-2536-3404-21abc93a1714	2021-05-25 08:15:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:15:57.79+03	2021-05-25 08:15:57.797+03	
74b3e184-8ace-8859-fefa-59060bf42925	2021-05-25 08:16:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:16:17.79+03	2021-05-25 08:16:17.796+03	
8cc4c407-7a65-5f41-2890-65b9c1685408	2021-05-25 08:16:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:16:37.79+03	2021-05-25 08:16:37.796+03	
0cd56b27-edcf-8c83-cbf4-e35bc8bfff94	2021-05-25 08:16:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:16:57.79+03	2021-05-25 08:16:57.798+03	
c8c6fa1f-7089-b1c5-3404-711cd7e7f18d	2021-05-25 08:17:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:17:17.79+03	2021-05-25 08:17:17.798+03	
181944bd-7ca4-71de-a893-356722991b19	2021-05-25 08:17:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:17:37.79+03	2021-05-25 08:17:37.798+03	
87c41dcb-cda1-4f87-0b3d-bf952d035b71	2021-05-25 08:17:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:17:57.79+03	2021-05-25 08:17:57.797+03	
b7a086b1-0191-9993-ceb2-5442a36969a8	2021-05-25 08:18:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:18:17.79+03	2021-05-25 08:18:17.796+03	
af982514-45ad-5660-ee6e-0e316133f2b6	2021-05-25 08:18:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:18:37.79+03	2021-05-25 08:18:37.797+03	
291998a9-39b3-762b-c640-0da9fff64322	2021-05-25 08:18:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:18:57.79+03	2021-05-25 08:18:57.798+03	
d6482e60-b482-1490-658c-bf125ce11bd0	2021-05-25 08:19:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:19:17.79+03	2021-05-25 08:19:17.796+03	
4712e5c5-f5c6-ceca-d508-402fcd76d919	2021-05-25 08:19:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:19:37.79+03	2021-05-25 08:19:37.798+03	
48bf5315-793b-2116-0f76-dcbe31922a40	2021-05-25 08:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 08:20:00.79+03	2021-05-25 08:20:00.795+03	ERROR
49a7d9e1-edc0-25fb-f172-4c30a1928f64	2021-05-25 08:20:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:20:17.79+03	2021-05-25 08:20:17.799+03	
bc55f0d2-0a8f-a5d2-7906-f76a18f77a78	2021-05-25 08:20:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:20:37.79+03	2021-05-25 08:20:37.797+03	
151c845b-8cdc-f492-a733-c6f58851e839	2021-05-25 08:20:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:20:57.79+03	2021-05-25 08:20:57.797+03	
98c446c0-8511-429d-9001-e26b8e12ca23	2021-05-25 08:21:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:21:17.79+03	2021-05-25 08:21:17.798+03	
3b594509-0431-9f9d-db36-bc7fb7aab5e4	2021-05-25 08:21:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:21:37.79+03	2021-05-25 08:21:37.797+03	
9ecc1e55-70d0-f422-47f9-0ad857d19632	2021-05-25 08:21:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:21:57.79+03	2021-05-25 08:21:57.798+03	
e599191a-2480-54a9-9885-2eccb9d0b0b7	2021-05-25 08:22:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:22:17.79+03	2021-05-25 08:22:17.797+03	
b6b7a385-dd52-86e8-06d5-6d07b177ff69	2021-05-25 08:22:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:22:37.79+03	2021-05-25 08:22:37.799+03	
02f9342f-ee70-efcd-6cfd-3895fcd1f21f	2021-05-25 08:22:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:22:57.79+03	2021-05-25 08:22:57.799+03	
f3b0da83-d8b8-9b9b-c315-414e3b3fed7e	2021-05-25 08:23:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:23:17.79+03	2021-05-25 08:23:17.797+03	
a43c1ccb-1519-4612-3e6a-14043760844b	2021-05-25 08:23:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:23:38.79+03	2021-05-25 08:23:38.798+03	
9e094c5e-4e7d-9602-8c88-faa65efa9208	2021-05-25 08:23:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:23:58.79+03	2021-05-25 08:23:58.798+03	
ee6fc227-5863-de81-0aba-08ed70add26f	2021-05-25 08:24:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:24:18.79+03	2021-05-25 08:24:18.797+03	
01b31485-ea4f-6602-448f-9bfea04f794f	2021-05-25 08:24:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:24:38.79+03	2021-05-25 08:24:38.796+03	
68006fc1-64fe-d964-b05f-f2c16dc76995	2021-05-25 08:24:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:24:58.79+03	2021-05-25 08:24:58.797+03	
2307785d-7337-c705-1de3-a1075c09e12c	2021-05-25 08:25:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:25:18.79+03	2021-05-25 08:25:18.797+03	
f3f7e961-2ac0-3c0e-16e0-9ee23551f958	2021-05-25 08:04:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:04:57.79+03	2021-05-25 08:04:57.798+03	
84076c0c-bb67-82fa-9c29-e72438c97a9d	2021-05-25 08:05:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:05:17.79+03	2021-05-25 08:05:17.796+03	
8a03359d-533c-eb4e-0583-5b01c52129bb	2021-05-25 08:05:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:05:37.79+03	2021-05-25 08:05:37.797+03	
63cf3591-13cd-2210-c16c-9d17a9eb9947	2021-05-25 08:05:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:05:57.79+03	2021-05-25 08:05:57.799+03	
1573b395-20fd-7f38-2cf6-13ae75f25f18	2021-05-25 08:06:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:06:17.79+03	2021-05-25 08:06:17.797+03	
37ff7148-05fe-48a6-eb94-95dc34de2518	2021-05-25 08:06:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:06:37.79+03	2021-05-25 08:06:37.797+03	
cddc03ea-af4f-5513-27a2-732adf6755b4	2021-05-25 08:06:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:06:57.79+03	2021-05-25 08:06:57.847+03	
42b9011d-d59c-d4bd-975b-96f42ca831e1	2021-05-25 08:07:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:07:17.79+03	2021-05-25 08:07:17.797+03	
ebe89f19-6b43-f434-eb5a-b0b8136bfdf3	2021-05-25 08:07:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:07:37.79+03	2021-05-25 08:07:37.797+03	
aac8b268-ae33-6565-3669-5aa32d735687	2021-05-25 08:07:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:07:57.79+03	2021-05-25 08:07:57.798+03	
63db6e7e-07b3-6f1b-bb0d-31130dbf8d4e	2021-05-25 08:08:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:08:17.79+03	2021-05-25 08:08:17.796+03	
a66f7744-a93b-fabb-a828-52b393ff4308	2021-05-25 08:08:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:08:37.79+03	2021-05-25 08:08:37.796+03	
3fed970c-8795-0760-3d08-a1aafad57870	2021-05-25 08:08:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:08:57.79+03	2021-05-25 08:08:57.842+03	
d43e0eac-e785-92fb-2bb3-d59e1cb396d8	2021-05-25 08:09:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:09:17.79+03	2021-05-25 08:09:17.796+03	
97e370a5-93e0-2f12-b46d-0f65d9824203	2021-05-25 08:09:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:09:37.79+03	2021-05-25 08:09:37.797+03	
d7d0bd8f-5d43-1a61-f49c-a701539ed0a1	2021-05-25 08:09:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:09:57.79+03	2021-05-25 08:09:57.797+03	
a0bc1c88-0183-83e8-9f17-32a8d727e44c	2021-05-25 08:10:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:10:07.79+03	2021-05-25 08:10:07.796+03	
cb779663-306b-df93-505d-0c44b98971ad	2021-05-25 08:10:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:10:27.79+03	2021-05-25 08:10:27.796+03	
3c0668d6-c2f5-5e5e-84e2-71ecfce435ea	2021-05-25 08:10:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:10:47.79+03	2021-05-25 08:10:47.8+03	
ce0dafda-c150-36b1-0c89-7b6664b211c0	2021-05-25 08:11:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:11:07.79+03	2021-05-25 08:11:07.796+03	
15459f2d-c6cc-dc69-a92e-9a3edbbe31dc	2021-05-25 08:11:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:11:27.79+03	2021-05-25 08:11:27.797+03	
2383974b-9016-00d6-8a8a-b74d964c8ebb	2021-05-25 08:11:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:11:47.79+03	2021-05-25 08:11:47.799+03	
c3940446-4d55-d1a5-4821-255872bcd733	2021-05-25 08:12:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:12:07.79+03	2021-05-25 08:12:07.797+03	
7d49c397-f495-3731-78f0-92830e6480c7	2021-05-25 08:12:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:12:27.79+03	2021-05-25 08:12:27.797+03	
bf29b4b9-278a-1f02-230b-0aa720ba189d	2021-05-25 08:12:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:12:47.79+03	2021-05-25 08:12:47.798+03	
04e41b38-34d6-0a87-8d5c-fc6c4d3f08b0	2021-05-25 08:13:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:13:07.79+03	2021-05-25 08:13:07.798+03	
415d4326-213d-8e32-77cb-94b4fa959aae	2021-05-25 08:13:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:13:27.79+03	2021-05-25 08:13:27.796+03	
eba32258-9634-b486-6755-6d7fb7a412c5	2021-05-25 08:13:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:13:47.79+03	2021-05-25 08:13:47.798+03	
268dcfb6-daa7-f23b-72b9-6003456d372c	2021-05-25 08:14:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:14:07.79+03	2021-05-25 08:14:07.796+03	
935960e3-18d4-e8c1-3ac6-b005e9ae4a56	2021-05-25 08:14:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:14:27.79+03	2021-05-25 08:14:27.797+03	
01fafd82-61f6-ee75-5fbe-f13a308ebaf8	2021-05-25 08:14:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:14:47.79+03	2021-05-25 08:14:47.798+03	
66730c58-53e2-b6da-b13c-d73729a535f3	2021-05-25 08:15:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:15:07.79+03	2021-05-25 08:15:07.797+03	
f2043b15-c2af-accb-677e-d6cf17dc2440	2021-05-25 08:15:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:15:27.79+03	2021-05-25 08:15:27.796+03	
8bb06701-b58b-4bec-9178-882e9b4809e9	2021-05-25 08:15:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:15:47.79+03	2021-05-25 08:15:47.798+03	
114be692-4e0e-ebbe-83e6-4341198a4070	2021-05-25 08:16:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:16:07.79+03	2021-05-25 08:16:07.796+03	
86652843-502e-bfcc-7a86-23495d732bbf	2021-05-25 08:16:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:16:27.79+03	2021-05-25 08:16:27.796+03	
378b0c9f-b88a-8bdb-46d8-c58bc29b70a6	2021-05-25 08:16:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:16:47.79+03	2021-05-25 08:16:47.8+03	
e4e1df11-0829-903b-b61b-24fec37e4b53	2021-05-25 08:17:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:17:07.79+03	2021-05-25 08:17:07.796+03	
51d7b32e-93f6-73ea-d8a7-e874c9d27770	2021-05-25 08:17:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:17:27.79+03	2021-05-25 08:17:27.797+03	
92e1ab25-c585-96f9-147e-25836ad72020	2021-05-25 08:17:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:17:47.79+03	2021-05-25 08:17:47.805+03	
d9231e49-fea8-e11e-7ad4-9d74811f7cb5	2021-05-25 08:18:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:18:07.79+03	2021-05-25 08:18:07.796+03	
05b43ecc-7c1f-83f5-60bd-2315bb694f46	2021-05-25 08:18:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:18:27.79+03	2021-05-25 08:18:27.797+03	
808c7233-8acd-2a6d-e9df-e263b227d6c1	2021-05-25 08:18:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:18:47.79+03	2021-05-25 08:18:47.796+03	
2c550e12-08a0-da30-7fde-fadc2b93da3f	2021-05-25 08:19:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:19:07.79+03	2021-05-25 08:19:07.796+03	
007755cf-0bc2-4e11-0ad7-bc9e4fe78a8c	2021-05-25 08:19:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:19:27.79+03	2021-05-25 08:19:27.797+03	
686741f7-e169-c09c-c76b-564b6b2355e1	2021-05-25 08:19:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:19:47.79+03	2021-05-25 08:19:47.796+03	
7cbbbcf1-6554-b614-0984-5a34a58e7e82	2021-05-25 08:19:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:19:57.79+03	2021-05-25 08:19:57.8+03	
5e1b7997-e3e4-d69c-ea76-c0562cdbf1c2	2021-05-25 08:20:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:20:07.79+03	2021-05-25 08:20:07.796+03	
4675eba8-df2f-4f1a-556a-5a9a83eea14e	2021-05-25 08:20:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:20:27.79+03	2021-05-25 08:20:27.798+03	
d02400d2-3be1-feaa-c7f8-5ca12de6486a	2021-05-25 08:20:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:20:47.79+03	2021-05-25 08:20:47.797+03	
6b0ea506-cfc7-6fbd-5788-05aa3cec1dd7	2021-05-25 08:21:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:21:07.79+03	2021-05-25 08:21:07.797+03	
405b8043-2c46-81ff-fe7c-4bac3c906e00	2021-05-25 08:21:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:21:27.79+03	2021-05-25 08:21:27.796+03	
dc9b78ad-7c5a-608f-e781-0ff284d55fde	2021-05-25 08:21:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:21:47.79+03	2021-05-25 08:21:47.797+03	
afc75f3f-68cd-57e5-3ea4-f298c46e0290	2021-05-25 08:22:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:22:07.79+03	2021-05-25 08:22:07.797+03	
2da53047-7959-9025-253c-9bdb2bdf2e68	2021-05-25 08:22:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:22:27.79+03	2021-05-25 08:22:27.796+03	
b05f4260-845f-1b34-dca9-1d5da8e38942	2021-05-25 08:22:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:22:47.79+03	2021-05-25 08:22:47.797+03	
8f0ab669-8366-703e-d20d-90bf8189a7f2	2021-05-25 08:23:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:23:07.79+03	2021-05-25 08:23:07.796+03	
0370b1c6-b7ad-5ed8-e8dd-a58fc01d751e	2021-05-25 08:23:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:23:27.791+03	2021-05-25 08:23:27.798+03	
a970a36e-c649-326d-277e-865c051c3abc	2021-05-25 08:23:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:23:48.79+03	2021-05-25 08:23:48.798+03	
73ac34c2-14d9-bbb7-dc66-a9c024e7bb56	2021-05-25 08:24:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:24:08.79+03	2021-05-25 08:24:08.797+03	
f7c38667-aacf-ff39-22f7-ac781eba87a7	2021-05-25 08:24:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:24:28.79+03	2021-05-25 08:24:28.798+03	
81b38a15-d1fa-32b0-10dd-b0bac363f608	2021-05-25 08:24:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:24:48.79+03	2021-05-25 08:24:48.8+03	
9352839c-75c6-6738-5c75-4daa92a8da87	2021-05-25 08:25:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:25:08.79+03	2021-05-25 08:25:08.799+03	
56499823-92c0-859e-2334-f121ce2402e4	2021-05-25 08:25:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:25:28.79+03	2021-05-25 08:25:28.798+03	
6f6f0daf-96d5-460f-5bf9-1a0d178a0d41	2021-05-25 08:25:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:25:48.79+03	2021-05-25 08:25:48.798+03	
b6b3297e-64c4-f58a-32db-7719524eb43e	2021-05-25 08:26:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:26:08.79+03	2021-05-25 08:26:08.797+03	
1d3eb794-36ef-b7ec-9f74-a2d16fbe7e1b	2021-05-25 08:26:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:26:28.79+03	2021-05-25 08:26:28.798+03	
af9e09af-bf8f-236f-e5f1-3de653f26d0a	2021-05-25 08:26:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:26:48.79+03	2021-05-25 08:26:48.799+03	
bd442456-7c67-4949-c748-8ddf959000f4	2021-05-25 08:27:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:27:08.79+03	2021-05-25 08:27:08.799+03	
9667f34f-5219-c4f7-077e-23c0ac817fee	2021-05-25 08:27:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:27:28.79+03	2021-05-25 08:27:28.799+03	
449d9a0f-e5ec-674b-1591-ec1a4bcf6bea	2021-05-25 08:27:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:27:48.79+03	2021-05-25 08:27:48.799+03	
8341ba5e-d201-1ba1-5150-bf89cd563126	2021-05-25 08:28:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:28:08.79+03	2021-05-25 08:28:08.796+03	
40559486-1370-d77d-2d49-de2d41d36c66	2021-05-25 08:28:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:28:28.79+03	2021-05-25 08:28:28.798+03	
f886f6a2-0e04-63e2-95b5-78ab54627bca	2021-05-25 08:28:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:28:48.79+03	2021-05-25 08:28:48.797+03	
3baf0b4f-6bc1-a280-9d37-b21cb6da2441	2021-05-25 08:29:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:29:08.79+03	2021-05-25 08:29:08.802+03	
c33baa74-5564-c4fc-8f90-49a36a0c0bfa	2021-05-25 08:29:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:29:28.79+03	2021-05-25 08:29:28.798+03	
d0a7f1a0-7390-5b60-afc3-86f50ac3ebb0	2021-05-25 08:29:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:29:48.79+03	2021-05-25 08:29:48.796+03	
a8f169fb-a1fc-f09f-beb1-53be15c0f1a1	2021-05-25 08:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 08:30:00.79+03	2021-05-25 08:30:00.795+03	ERROR
ac606975-d4bf-acc9-1458-d7efe505c184	2021-05-25 08:30:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:30:18.79+03	2021-05-25 08:30:18.796+03	
f5dff8e6-11e7-81f9-a2a4-399d0d386e07	2021-05-25 08:30:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:30:38.79+03	2021-05-25 08:30:38.796+03	
24b7f269-9f00-0e30-85ec-e9a62fbb5c49	2021-05-25 08:30:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:30:58.79+03	2021-05-25 08:30:58.827+03	
aaba53c3-c4c5-44dc-44e3-9bf1b2779ca2	2021-05-25 08:31:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:31:18.79+03	2021-05-25 08:31:18.796+03	
a7694fd0-22dc-b25a-e901-c0ca0f314e0e	2021-05-25 08:31:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:31:38.79+03	2021-05-25 08:31:38.796+03	
bfd96293-2252-1959-0a9c-b16679679598	2021-05-25 08:31:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:31:58.79+03	2021-05-25 08:31:58.799+03	
a8284247-4780-6b22-6a77-95e7b20f58d1	2021-05-25 08:32:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:32:18.79+03	2021-05-25 08:32:18.797+03	
c5a84a57-910d-5b36-c6dc-5416cd65ada7	2021-05-25 08:32:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:32:38.79+03	2021-05-25 08:32:38.796+03	
93a2e499-d93a-c692-bb2c-ff0b69b4cba6	2021-05-25 08:32:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:32:58.79+03	2021-05-25 08:32:58.843+03	
d40febda-2796-7da4-df3c-64556d0783b4	2021-05-25 08:33:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:33:18.79+03	2021-05-25 08:33:18.796+03	
7d70a4cc-120f-3a21-3d88-a358a0846cb4	2021-05-25 08:33:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:33:38.79+03	2021-05-25 08:33:38.796+03	
5793fb4e-bb0a-b48b-5368-320cd704b8ad	2021-05-25 08:33:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:33:58.79+03	2021-05-25 08:33:58.842+03	
d860b3ce-2861-e988-d355-3e8fd18f041f	2021-05-25 08:34:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:34:18.79+03	2021-05-25 08:34:18.796+03	
baaf40a2-0cae-7eae-7681-6e02044f5db6	2021-05-25 08:34:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:34:38.79+03	2021-05-25 08:34:38.797+03	
bbac7f0e-dd7c-24e8-c966-728f40769608	2021-05-25 08:34:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:34:58.79+03	2021-05-25 08:34:58.799+03	
ea85a9fe-9f17-108f-39c8-606f90bd1591	2021-05-25 08:35:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:35:18.79+03	2021-05-25 08:35:18.797+03	
c95ed686-c7e9-7243-1d93-fe1da7b01b98	2021-05-25 08:35:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:35:38.79+03	2021-05-25 08:35:38.796+03	
1b5219d4-7f32-4c69-57f8-bd0c1b0cd33a	2021-05-25 08:35:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:35:58.79+03	2021-05-25 08:35:58.799+03	
7ca561b7-cfdb-e680-7656-ad2c44cb68d5	2021-05-25 08:36:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:36:18.79+03	2021-05-25 08:36:18.796+03	
10cc7301-ffc4-fc00-4a32-a8d52eb04b9d	2021-05-25 08:36:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:36:38.79+03	2021-05-25 08:36:38.797+03	
8f1381aa-35fe-becf-f362-4751daaf0c92	2021-05-25 08:36:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:36:58.79+03	2021-05-25 08:36:58.797+03	
973d4579-43f2-e67b-8ddd-03495b57da77	2021-05-25 08:37:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:37:18.79+03	2021-05-25 08:37:18.796+03	
a41666d3-08a3-373e-47ea-40db92216d0e	2021-05-25 08:37:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:37:38.79+03	2021-05-25 08:37:38.796+03	
c1e1aa7f-88ff-549c-f386-4c8a750c976d	2021-05-25 08:37:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:37:58.79+03	2021-05-25 08:37:58.796+03	
19a68d46-e32b-b11e-67c4-dd02cfe38efb	2021-05-25 08:38:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:38:18.79+03	2021-05-25 08:38:18.796+03	
ab117035-be19-eb6c-d483-12e52071eec4	2021-05-25 08:38:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:38:38.79+03	2021-05-25 08:38:38.796+03	
d1ac6f2a-d52b-f1e9-afd9-107f1ec4acf9	2021-05-25 08:38:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:38:58.79+03	2021-05-25 08:38:58.798+03	
69ba78e7-ebb5-be94-23ee-bcf90f6bb12b	2021-05-25 08:39:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:39:18.79+03	2021-05-25 08:39:18.797+03	
93cd03ce-ab31-3995-f216-7667a718aa0c	2021-05-25 08:39:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:39:38.79+03	2021-05-25 08:39:38.796+03	
97872e20-925b-2d5a-ddb1-fb7e738f45ec	2021-05-25 08:39:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:39:58.79+03	2021-05-25 08:39:58.798+03	
bcca40de-6885-264b-75b5-f2c43d77c221	2021-05-25 08:40:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:40:08.79+03	2021-05-25 08:40:08.797+03	
549fac31-4169-a81c-c397-c0153aa72632	2021-05-25 08:40:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:40:28.79+03	2021-05-25 08:40:28.798+03	
1763ad4e-61a2-cc5b-786d-8607bb01d79c	2021-05-25 08:40:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:40:48.79+03	2021-05-25 08:40:48.797+03	
da480037-24b8-18d8-ccab-885f91d9bc4c	2021-05-25 08:41:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:41:08.79+03	2021-05-25 08:41:08.797+03	
62bdd7a1-e5d3-ec3b-2b82-a96313073241	2021-05-25 08:41:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:41:28.79+03	2021-05-25 08:41:28.797+03	
01f6d202-4654-3cf3-6a07-0ce8d6633334	2021-05-25 08:41:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:41:48.79+03	2021-05-25 08:41:48.801+03	
ed353764-b31f-b0ea-4ad2-4b89cb164469	2021-05-25 08:42:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:42:08.79+03	2021-05-25 08:42:08.796+03	
e84bb990-f573-d883-0bf9-63689b9e3fca	2021-05-25 08:42:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:42:28.79+03	2021-05-25 08:42:28.798+03	
2a896f79-45e9-c885-c633-4c8abe3f338c	2021-05-25 08:42:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:42:48.79+03	2021-05-25 08:42:48.797+03	
cfaf57c1-676f-5c39-085d-3db13b1375ab	2021-05-25 08:43:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:43:08.79+03	2021-05-25 08:43:08.802+03	
08a78bc9-6509-2d9d-0e19-841834862369	2021-05-25 08:43:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:43:28.79+03	2021-05-25 08:43:28.798+03	
9349b4c4-1782-e19f-31d6-bf376d52c337	2021-05-25 08:43:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:43:48.79+03	2021-05-25 08:43:48.797+03	
fe819068-7dd6-5e98-be0c-e85b477aba5c	2021-05-25 08:44:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:44:08.79+03	2021-05-25 08:44:08.798+03	
1d6d16eb-617b-1579-df4d-f3a380b72dfc	2021-05-25 08:44:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:44:28.79+03	2021-05-25 08:44:28.799+03	
ed48402d-ed9f-1059-aa49-6838b12866dd	2021-05-25 08:44:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:44:48.79+03	2021-05-25 08:44:48.799+03	
b05d6c08-1196-bb8a-6cdb-94f5b79e792e	2021-05-25 08:45:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:45:08.79+03	2021-05-25 08:45:08.797+03	
f0d9b56d-534d-9109-878a-8fa530959eba	2021-05-25 08:45:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:45:28.79+03	2021-05-25 08:45:28.806+03	
5d2a1075-1efb-b943-b6d6-83dc217b4a1b	2021-05-25 08:45:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:45:48.79+03	2021-05-25 08:45:48.796+03	
1e595362-c59d-b687-7ac1-6ff75079a24e	2021-05-25 08:25:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:25:38.79+03	2021-05-25 08:25:38.796+03	
8831bfd0-c29c-abaa-faf6-f523657b8c49	2021-05-25 08:25:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:25:58.79+03	2021-05-25 08:25:58.797+03	
9882ae9a-c672-4cb0-2d79-72fa473c0fcf	2021-05-25 08:26:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:26:18.79+03	2021-05-25 08:26:18.798+03	
67195c35-80c9-bfea-ea22-73a30a63a196	2021-05-25 08:26:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:26:38.79+03	2021-05-25 08:26:38.798+03	
d2c86e00-e955-525b-d544-f79844a8418c	2021-05-25 08:26:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:26:58.79+03	2021-05-25 08:26:58.797+03	
c2bf5e83-64c6-bf8e-96db-d81ff5e03910	2021-05-25 08:27:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:27:18.79+03	2021-05-25 08:27:18.797+03	
279f3f6a-4e37-9056-7967-ede2ad58b6b3	2021-05-25 08:27:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:27:38.79+03	2021-05-25 08:27:38.798+03	
dbc96f23-23aa-b2d9-9c8a-df4e4fe9541e	2021-05-25 08:27:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:27:58.79+03	2021-05-25 08:27:58.804+03	
f626a0a4-45d4-410a-781c-1e4a37fbe4c9	2021-05-25 08:28:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:28:18.79+03	2021-05-25 08:28:18.796+03	
dad167eb-9b27-01d6-6cac-69030907a73a	2021-05-25 08:28:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:28:38.79+03	2021-05-25 08:28:38.797+03	
ee516225-7e68-d3b4-c9d7-0fee39dd58b1	2021-05-25 08:28:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:28:58.79+03	2021-05-25 08:28:58.797+03	
2da6dbcf-0901-f22e-181d-1219bca4f00c	2021-05-25 08:29:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:29:18.79+03	2021-05-25 08:29:18.797+03	
0f732060-4683-e668-09dd-790d309e6018	2021-05-25 08:29:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:29:38.79+03	2021-05-25 08:29:38.798+03	
5fdd5b58-9fe7-5db8-c475-90ef73c80e82	2021-05-25 08:29:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:29:58.79+03	2021-05-25 08:29:58.796+03	
1c2c1a2d-e661-8c73-0538-a4ff2db32c46	2021-05-25 08:30:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:30:08.79+03	2021-05-25 08:30:08.797+03	
2f22978a-0219-2f76-1c1e-63a0e492719d	2021-05-25 08:30:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:30:28.79+03	2021-05-25 08:30:28.798+03	
959f813d-5e2b-9b87-85c7-6ea63a483474	2021-05-25 08:30:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:30:48.79+03	2021-05-25 08:30:48.799+03	
8ae9d7a9-ff0a-4306-fc82-b45c8e50a034	2021-05-25 08:31:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:31:08.79+03	2021-05-25 08:31:08.796+03	
284c9245-c71b-dd8c-9fcd-faee6283b6c6	2021-05-25 08:31:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:31:28.79+03	2021-05-25 08:31:28.797+03	
c689d78b-4472-9bbc-b917-9df0ed227718	2021-05-25 08:31:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:31:48.79+03	2021-05-25 08:31:48.797+03	
55a87f01-be79-179a-9fa3-f278e5dfac56	2021-05-25 08:32:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:32:08.79+03	2021-05-25 08:32:08.796+03	
52d74b91-c678-46dc-dfd0-d26e6f1c4792	2021-05-25 08:32:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:32:28.79+03	2021-05-25 08:32:28.798+03	
92f135c6-1f27-deae-0e26-4d486b4fc9d1	2021-05-25 08:32:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:32:48.79+03	2021-05-25 08:32:48.796+03	
2bbe136b-292b-94ca-c48d-332539b0aa6d	2021-05-25 08:33:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:33:08.79+03	2021-05-25 08:33:08.796+03	
00426f0c-8fef-e69e-fb03-72dfc3466082	2021-05-25 08:33:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:33:28.79+03	2021-05-25 08:33:28.798+03	
09c2766b-3c23-f41a-759c-9e6ad01d681e	2021-05-25 08:33:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:33:48.79+03	2021-05-25 08:33:48.797+03	
3cb7293c-77b0-5114-6805-a57a4efddae6	2021-05-25 08:34:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:34:08.79+03	2021-05-25 08:34:08.797+03	
6bf5eb6e-29bc-ddaa-bfdf-a48c86f9b436	2021-05-25 08:34:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:34:28.79+03	2021-05-25 08:34:28.796+03	
edb3634e-557f-b0be-0db4-c6a0622aa550	2021-05-25 08:34:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:34:48.79+03	2021-05-25 08:34:48.797+03	
39bc397f-0121-11c3-e630-f9406b75d67c	2021-05-25 08:35:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:35:08.79+03	2021-05-25 08:35:08.797+03	
bd75e727-cafc-95cb-692c-02403b379aa8	2021-05-25 08:35:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:35:28.79+03	2021-05-25 08:35:28.798+03	
a29d07c7-4703-d002-599b-35f5168a16ec	2021-05-25 08:35:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:35:48.79+03	2021-05-25 08:35:48.798+03	
7fb4035f-75cb-c0c3-22d7-15e09b43bbfb	2021-05-25 08:36:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:36:08.79+03	2021-05-25 08:36:08.81+03	
91024d19-7f4e-90f4-10ef-a808493b71a4	2021-05-25 08:36:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:36:28.79+03	2021-05-25 08:36:28.798+03	
1a6f7748-fe0c-2ec2-b33a-c1b1b886e274	2021-05-25 08:36:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:36:48.79+03	2021-05-25 08:36:48.797+03	
425661c3-7261-64b9-f3ba-25bdb535a14e	2021-05-25 08:37:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:37:08.79+03	2021-05-25 08:37:08.796+03	
0937a48c-c547-0493-064a-ed6d22ab01f3	2021-05-25 08:37:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:37:28.79+03	2021-05-25 08:37:28.8+03	
1c1f607f-1d89-11dd-1cf0-a8c63be964cf	2021-05-25 08:37:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:37:48.79+03	2021-05-25 08:37:48.798+03	
48b6d5c0-7e24-041d-9fb8-4cbfdfa043fc	2021-05-25 08:38:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:38:08.79+03	2021-05-25 08:38:08.797+03	
7751dc67-3a23-7fb4-41af-0b72aefe72d0	2021-05-25 08:38:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:38:28.79+03	2021-05-25 08:38:28.797+03	
e93a5563-a597-df24-819c-98e44f5d7f5f	2021-05-25 08:38:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:38:48.79+03	2021-05-25 08:38:48.796+03	
73e66012-8330-0b77-6f3f-ac1bbb21dba1	2021-05-25 08:39:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:39:08.79+03	2021-05-25 08:39:08.803+03	
7478c6c7-51bd-6ca6-96ac-8ea61262db86	2021-05-25 08:39:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:39:28.79+03	2021-05-25 08:39:28.799+03	
48c636f6-4a09-4886-ed6a-3dad538c49b2	2021-05-25 08:39:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:39:48.79+03	2021-05-25 08:39:48.796+03	
05f9d3b8-5d2e-5407-8142-955ec5c896d0	2021-05-25 08:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 08:40:00.79+03	2021-05-25 08:40:00.795+03	ERROR
fb7a7351-0e48-e643-2201-89a3b954da73	2021-05-25 08:40:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:40:18.79+03	2021-05-25 08:40:18.796+03	
7c1b62be-0157-30aa-9501-afc5e1643075	2021-05-25 08:40:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:40:38.79+03	2021-05-25 08:40:38.797+03	
4bb2c245-9f63-62d2-c0fd-9042d912d0eb	2021-05-25 08:40:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:40:58.79+03	2021-05-25 08:40:58.799+03	
5e2879e0-d3de-0ecd-153b-b622878a1cfe	2021-05-25 08:41:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:41:18.79+03	2021-05-25 08:41:18.798+03	
2bf1acd4-952b-16e1-2294-a80013553cf6	2021-05-25 08:41:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:41:38.79+03	2021-05-25 08:41:38.796+03	
5a8f620e-0f88-74b6-e6d9-46e9e0c0c7d2	2021-05-25 08:41:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:41:58.79+03	2021-05-25 08:41:58.799+03	
b4809529-53ee-d510-972d-26e042ff2d89	2021-05-25 08:42:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:42:18.79+03	2021-05-25 08:42:18.798+03	
cd04994e-3110-5ec5-7e04-6e8bcf5606ff	2021-05-25 08:42:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:42:38.79+03	2021-05-25 08:42:38.799+03	
6970a7eb-b0ff-168a-8d8d-a170eda2a7bc	2021-05-25 08:42:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:42:58.79+03	2021-05-25 08:42:58.799+03	
011d7c8a-72d6-231a-cce0-13388e5dccba	2021-05-25 08:43:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:43:18.79+03	2021-05-25 08:43:18.797+03	
ce999b6f-840e-57cd-55d0-c501a7675442	2021-05-25 08:43:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:43:38.79+03	2021-05-25 08:43:38.796+03	
1876f4c7-1f20-c96e-2130-e8763a942f4d	2021-05-25 08:43:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:43:58.79+03	2021-05-25 08:43:58.796+03	
00ab50e6-2b89-bf4a-1ba8-d30c17da466f	2021-05-25 08:44:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:44:18.79+03	2021-05-25 08:44:18.797+03	
37f2508f-cf28-2492-3b22-b7457182bf2a	2021-05-25 08:44:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:44:38.79+03	2021-05-25 08:44:38.797+03	
9dd036d5-f3c0-f31f-c6a4-f2bc4e54ed83	2021-05-25 08:44:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:44:58.79+03	2021-05-25 08:44:58.798+03	
db66e697-75a2-f312-6914-d14f8045d0bc	2021-05-25 08:45:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:45:18.79+03	2021-05-25 08:45:18.797+03	
7775bbf8-edbb-39bf-4ad1-aa50ab203b72	2021-05-25 08:45:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:45:38.79+03	2021-05-25 08:45:38.796+03	
cbbc2196-86f0-ba2f-b0c5-99e634ae08fc	2021-05-25 08:45:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:45:58.79+03	2021-05-25 08:45:58.799+03	
4dd5d3b2-b5da-0b89-4db6-c69edbaf611e	2021-05-25 08:46:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:46:08.79+03	2021-05-25 08:46:08.796+03	
788f85cb-7b10-97e4-9908-faea82070b25	2021-05-25 08:46:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:46:28.79+03	2021-05-25 08:46:28.797+03	
ca053b76-1c80-b4c9-7273-ce80d9645b6c	2021-05-25 08:46:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:46:48.79+03	2021-05-25 08:46:48.796+03	
e936b005-3d4b-e9c2-af83-b33079f1bdcc	2021-05-25 08:47:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:47:08.79+03	2021-05-25 08:47:08.798+03	
03fedd1e-cb6c-1dea-1899-a968ecd878e7	2021-05-25 08:47:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:47:28.79+03	2021-05-25 08:47:28.797+03	
40f00098-9550-a1a6-3fef-b1b924761ce5	2021-05-25 08:47:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:47:48.79+03	2021-05-25 08:47:48.798+03	
8024f33d-f44f-2e89-8bef-fd5dc18dc74f	2021-05-25 08:48:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:48:08.79+03	2021-05-25 08:48:08.798+03	
e223f448-45ab-cd78-7032-a712e15a32a7	2021-05-25 08:48:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:48:28.79+03	2021-05-25 08:48:28.813+03	
6fce53c5-9aac-8200-9b85-634097d7503d	2021-05-25 08:48:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:48:48.79+03	2021-05-25 08:48:48.797+03	
cca04c85-d51d-3754-ffb0-b5039b8d3ccc	2021-05-25 08:49:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:49:08.79+03	2021-05-25 08:49:08.798+03	
76ebb87e-541c-1818-43b9-2461716ea61c	2021-05-25 08:49:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:49:28.79+03	2021-05-25 08:49:28.798+03	
acd44bfb-beb1-dd1a-c6c7-e76ce560fcf6	2021-05-25 08:49:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:49:48.79+03	2021-05-25 08:49:48.799+03	
df26b5bd-f174-f7e3-5f38-b1ddf094d0a2	2021-05-25 08:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 08:50:00.79+03	2021-05-25 08:50:00.795+03	ERROR
e9ebb7f2-9e4a-3c18-df1f-fb36db470cb5	2021-05-25 08:50:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:50:18.79+03	2021-05-25 08:50:18.798+03	
6df71203-72b3-93e4-7216-00df0529229e	2021-05-25 08:50:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:50:38.79+03	2021-05-25 08:50:38.797+03	
44ca825c-ad08-f217-a453-0112e9aa3f2e	2021-05-25 08:50:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:50:58.79+03	2021-05-25 08:50:58.8+03	
28959029-2e40-47d0-1963-31411e55d7b4	2021-05-25 08:51:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:51:18.79+03	2021-05-25 08:51:18.797+03	
fe141c02-cb0b-ccb0-3a28-14e2dcf6d9fe	2021-05-25 08:51:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:51:38.79+03	2021-05-25 08:51:38.796+03	
dac587a0-72cc-9cf6-ee7c-c4f8cd11f3d2	2021-05-25 08:51:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:51:58.79+03	2021-05-25 08:51:58.798+03	
ce3c5856-9ee4-d919-ec50-12b6f8fb24b3	2021-05-25 08:52:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:52:18.79+03	2021-05-25 08:52:18.796+03	
7f88314f-11f4-64dc-ae86-b409275214e6	2021-05-25 08:52:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:52:38.79+03	2021-05-25 08:52:38.797+03	
7bc38eac-72bf-ca81-1b25-0cd6de701639	2021-05-25 08:52:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:52:58.79+03	2021-05-25 08:52:58.853+03	
36357772-ab73-a368-798f-9c8620a7472d	2021-05-25 08:53:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:53:18.79+03	2021-05-25 08:53:18.796+03	
1fbcaa74-1528-2307-a59c-b67db624acf8	2021-05-25 08:53:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:53:38.79+03	2021-05-25 08:53:38.798+03	
422bc961-7d90-0585-1fd2-be4e3b5c6b21	2021-05-25 08:53:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:53:58.79+03	2021-05-25 08:53:58.797+03	
3ef2dba4-e2fe-2a0f-f8a7-8f20252f342a	2021-05-25 08:54:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:54:18.79+03	2021-05-25 08:54:18.796+03	
0c735bcb-c12e-5d2d-1f6b-f7b1a42e6464	2021-05-25 08:54:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:54:38.79+03	2021-05-25 08:54:38.797+03	
0e4de97c-81e0-6a2e-85cc-03991b617d16	2021-05-25 08:54:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:54:58.79+03	2021-05-25 08:54:58.802+03	
343d38a2-a1cb-71cb-9b80-d0b2c140c31a	2021-05-25 08:55:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:55:18.79+03	2021-05-25 08:55:18.797+03	
fcf863ba-6491-5997-35e7-966774ac1458	2021-05-25 08:55:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:55:38.79+03	2021-05-25 08:55:38.796+03	
8151cc32-de3f-955a-27e8-09cf4d43f0a1	2021-05-25 08:55:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:55:58.79+03	2021-05-25 08:55:58.799+03	
9608e9d5-ecbe-07de-e1a0-8957a23d09df	2021-05-25 08:56:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:56:18.79+03	2021-05-25 08:56:18.796+03	
a2d65e7d-7731-5c1f-1ae8-38d0170e769d	2021-05-25 08:56:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:56:38.79+03	2021-05-25 08:56:38.796+03	
b5d13056-1dbc-5dbf-0e93-61c1738420e7	2021-05-25 08:56:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:56:58.79+03	2021-05-25 08:56:58.799+03	
de3515ab-0fb7-fa6f-6bbd-789a133ab02b	2021-05-25 08:57:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:57:18.79+03	2021-05-25 08:57:18.809+03	
6a40e4be-c84f-18ab-dee3-83a438f0fbfe	2021-05-25 08:57:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:57:38.79+03	2021-05-25 08:57:38.798+03	
38e27e08-9622-76a3-c207-33068836db7b	2021-05-25 08:57:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:57:58.79+03	2021-05-25 08:57:58.797+03	
80567de8-4c9d-ad70-199c-04d9104ea41b	2021-05-25 08:58:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:58:18.79+03	2021-05-25 08:58:18.797+03	
d1ef4aaa-c675-a8a1-70db-b7078523e98f	2021-05-25 08:58:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:58:38.79+03	2021-05-25 08:58:38.796+03	
2cf69af8-3588-56a8-d76e-0e018084920c	2021-05-25 08:58:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:58:58.79+03	2021-05-25 08:58:58.811+03	
872cbb5c-dba4-43b2-19d2-7fc3aeed0d6a	2021-05-25 08:59:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:59:18.79+03	2021-05-25 08:59:18.797+03	
efa5090f-0929-4443-d792-b74985c46db2	2021-05-25 08:59:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:59:38.79+03	2021-05-25 08:59:38.797+03	
1454b676-abce-b481-a5a5-caafeac17ed8	2021-05-25 08:59:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:59:58.79+03	2021-05-25 08:59:58.799+03	
76baef52-9986-dc57-2118-a0b6af64f8a8	2021-05-25 09:00:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:00:08.79+03	2021-05-25 09:00:08.802+03	
944762a4-7588-724d-ec92-05f4880eb155	2021-05-25 09:00:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:00:28.79+03	2021-05-25 09:00:28.802+03	
e7716251-ee78-73f3-138e-1b00c995eb7d	2021-05-25 09:00:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:00:48.79+03	2021-05-25 09:00:48.798+03	
4f723d64-9a7c-935b-f766-b336dc6df3d6	2021-05-25 09:01:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:01:08.79+03	2021-05-25 09:01:08.797+03	
df5e61ae-48b7-4c08-9fe3-3aa4072cd5b8	2021-05-25 09:01:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:01:28.79+03	2021-05-25 09:01:28.798+03	
29370e0f-4f6e-b0c1-12af-32456c23c829	2021-05-25 09:01:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:01:48.79+03	2021-05-25 09:01:48.805+03	
4576528c-db11-ff06-e59b-41189d5a5e00	2021-05-25 09:02:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:02:08.79+03	2021-05-25 09:02:08.796+03	
0a926b86-5aea-ed6d-439b-47ad839ce602	2021-05-25 09:02:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:02:28.79+03	2021-05-25 09:02:28.797+03	
1ee94347-8605-603d-e367-d43a4e6029f8	2021-05-25 09:02:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:02:48.791+03	2021-05-25 09:02:48.8+03	
6501fb9d-dceb-f960-8e4e-3eba89a104e8	2021-05-25 09:03:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:03:09.79+03	2021-05-25 09:03:09.797+03	
13b2f0c9-ddd3-da85-112d-75df536fabfb	2021-05-25 09:03:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:03:29.79+03	2021-05-25 09:03:29.797+03	
edc750db-141e-24bf-b346-e6c45dd82503	2021-05-25 09:03:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:03:49.79+03	2021-05-25 09:03:49.797+03	
6281508e-ec7e-e63c-99fc-d09e57f062b5	2021-05-25 09:04:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:04:09.79+03	2021-05-25 09:04:09.797+03	
5409e866-bfd2-dc9a-bf17-b391ce537b75	2021-05-25 09:04:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:04:29.79+03	2021-05-25 09:04:29.797+03	
0c154757-2271-2801-5fe4-039826e4f7bd	2021-05-25 09:04:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:04:49.79+03	2021-05-25 09:04:49.797+03	
be104c94-f737-4095-538c-bb0b2612ba85	2021-05-25 09:05:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:05:09.79+03	2021-05-25 09:05:09.799+03	
9fd2ccdf-2a5f-0d19-eb9a-5f59b4d172a8	2021-05-25 09:05:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:05:29.79+03	2021-05-25 09:05:29.796+03	
b5f4803a-49dd-d2b8-dd19-581215072af9	2021-05-25 09:05:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:05:49.79+03	2021-05-25 09:05:49.797+03	
4fa3ed5d-9563-e01c-1445-d040e50f70d0	2021-05-25 09:06:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:06:09.79+03	2021-05-25 09:06:09.799+03	
5610e61b-2d50-266c-fcf2-f9826dddeddf	2021-05-25 09:06:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:06:29.79+03	2021-05-25 09:06:29.796+03	
a126b412-b81b-fcb4-8149-19d0e2a73f92	2021-05-25 08:46:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:46:18.79+03	2021-05-25 08:46:18.797+03	
2d922ca6-0b21-9ec8-ddcd-1649ed250781	2021-05-25 08:46:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:46:38.79+03	2021-05-25 08:46:38.796+03	
2d18a160-b63e-f4ad-313a-acf801e5ba80	2021-05-25 08:46:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:46:58.79+03	2021-05-25 08:46:58.798+03	
cedb9a54-2dc2-5717-f146-7d48e6fa0b41	2021-05-25 08:47:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:47:18.79+03	2021-05-25 08:47:18.796+03	
395b27b8-1477-b5c8-42f4-2e58a4955477	2021-05-25 08:47:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:47:38.79+03	2021-05-25 08:47:38.796+03	
848b7c76-48bf-c072-453d-64381daa2097	2021-05-25 08:47:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:47:58.79+03	2021-05-25 08:47:58.846+03	
e0133834-e378-8654-2c79-0bab05da0ba1	2021-05-25 08:48:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:48:18.79+03	2021-05-25 08:48:18.797+03	
f05d5301-8230-579b-336e-0e9f033752de	2021-05-25 08:48:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:48:38.79+03	2021-05-25 08:48:38.797+03	
95d1992d-cc7e-2f0e-02e1-602f4ed2c1f6	2021-05-25 08:48:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:48:58.79+03	2021-05-25 08:48:58.8+03	
74c2efb2-9791-6839-b4e9-702ad56469ba	2021-05-25 08:49:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:49:18.79+03	2021-05-25 08:49:18.798+03	
bcefb1b4-af68-f7a4-bf83-d82cf61c8bf9	2021-05-25 08:49:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:49:38.79+03	2021-05-25 08:49:38.797+03	
a812d6c0-463f-6f08-3538-d85fc52c30ad	2021-05-25 08:49:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:49:58.79+03	2021-05-25 08:49:58.843+03	
5e57dacb-50ae-66e7-5dc6-2791bb82e810	2021-05-25 08:50:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:50:08.79+03	2021-05-25 08:50:08.797+03	
52d99cd3-54e8-5722-d927-49fb6977048c	2021-05-25 08:50:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:50:28.79+03	2021-05-25 08:50:28.797+03	
41ccc608-347e-2b4c-5949-78616539c2fc	2021-05-25 08:50:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:50:48.79+03	2021-05-25 08:50:48.798+03	
aadbf952-6bad-666b-2deb-6bb1be1521d2	2021-05-25 08:51:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:51:08.79+03	2021-05-25 08:51:08.798+03	
36234103-65ad-064b-8b1e-97e5e7eb8c74	2021-05-25 08:51:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:51:28.79+03	2021-05-25 08:51:28.796+03	
68d18a6d-e30d-a830-4cd8-d31752764721	2021-05-25 08:51:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:51:48.79+03	2021-05-25 08:51:48.797+03	
792814d0-2366-6d1a-ab46-fb16888aecf9	2021-05-25 08:52:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:52:08.79+03	2021-05-25 08:52:08.799+03	
e883b1d5-86a3-71fe-d21e-8cc1c631d254	2021-05-25 08:52:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:52:28.79+03	2021-05-25 08:52:28.799+03	
b657adc3-8094-f25a-bdf7-8b4a5c8e2723	2021-05-25 08:52:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:52:48.79+03	2021-05-25 08:52:48.799+03	
ae47c179-4345-14f5-d365-49cbb2809a70	2021-05-25 08:53:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:53:08.79+03	2021-05-25 08:53:08.797+03	
e6ad36a2-9e85-28db-4beb-745be99eef42	2021-05-25 08:53:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:53:28.79+03	2021-05-25 08:53:28.798+03	
b7d34d4b-27d6-902d-df83-240469608daf	2021-05-25 08:53:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:53:48.79+03	2021-05-25 08:53:48.797+03	
599bd2cc-8a7e-fa06-778e-a0b79b39d81d	2021-05-25 08:54:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:54:08.79+03	2021-05-25 08:54:08.797+03	
c2939fc1-6590-1038-a4c1-8707922635e9	2021-05-25 08:54:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:54:28.79+03	2021-05-25 08:54:28.799+03	
31046c75-0921-7bd1-ba8d-2c118f456db5	2021-05-25 08:54:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:54:48.79+03	2021-05-25 08:54:48.797+03	
25bb4898-955b-9882-aff7-45d4c49036fc	2021-05-25 08:55:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:55:08.79+03	2021-05-25 08:55:08.796+03	
cefa932d-8146-9587-23a0-c3e15cb8b62e	2021-05-25 08:55:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:55:28.79+03	2021-05-25 08:55:28.797+03	
96e37fb5-2247-bfb2-6571-c11cdb16fa5a	2021-05-25 08:55:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:55:48.79+03	2021-05-25 08:55:48.798+03	
76994e7c-5f25-d929-fb2e-c6486de3bc27	2021-05-25 08:56:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:56:08.79+03	2021-05-25 08:56:08.797+03	
951259cb-7b4c-7290-4de0-f70865b776b0	2021-05-25 08:56:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:56:28.79+03	2021-05-25 08:56:28.797+03	
229b50fa-3727-b93f-01fd-bc1e7e9b01af	2021-05-25 08:56:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:56:48.79+03	2021-05-25 08:56:48.797+03	
87694112-028e-0982-3c53-d6d9b246a6be	2021-05-25 08:57:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:57:08.79+03	2021-05-25 08:57:08.8+03	
93479107-326e-3a6e-b758-6c9b932fe973	2021-05-25 08:57:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:57:28.79+03	2021-05-25 08:57:28.798+03	
cfe7662e-151b-bf4b-6d13-3b35fa6811ae	2021-05-25 08:57:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:57:48.79+03	2021-05-25 08:57:48.797+03	
e5393559-62e4-8f67-d99e-a0862a1c03e8	2021-05-25 08:58:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:58:08.79+03	2021-05-25 08:58:08.796+03	
577f1098-c36e-d618-0b05-87a643735f23	2021-05-25 08:58:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:58:28.79+03	2021-05-25 08:58:28.797+03	
7c61f70b-810f-876c-cba4-caf829bdde9d	2021-05-25 08:58:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:58:48.79+03	2021-05-25 08:58:48.799+03	
9e4c5e0f-85fc-9456-588c-9b0592d06021	2021-05-25 08:59:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:59:08.79+03	2021-05-25 08:59:08.8+03	
4aa9554c-9c1d-1858-1f8d-9684ebe4584b	2021-05-25 08:59:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:59:28.79+03	2021-05-25 08:59:28.8+03	
c4a7d90d-a33f-6162-2c9c-c3a91926eaed	2021-05-25 08:59:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 08:59:48.79+03	2021-05-25 08:59:48.797+03	
45316bff-11f6-499a-1d28-e7c6944d84fd	2021-05-25 09:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 09:00:00.79+03	2021-05-25 09:00:00.796+03	ERROR
aae59ac1-df10-de2f-96ec-12285f10a919	2021-05-25 09:00:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:00:18.79+03	2021-05-25 09:00:18.798+03	
59144075-95c5-cd8f-fe1c-aa9a1fb30fae	2021-05-25 09:00:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:00:38.79+03	2021-05-25 09:00:38.801+03	
5cc2d8cb-30cd-e353-bc8f-c113dd538120	2021-05-25 09:00:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:00:58.79+03	2021-05-25 09:00:58.797+03	
ffe47fbd-2fa9-3988-f098-720e4935adf2	2021-05-25 09:01:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:01:18.79+03	2021-05-25 09:01:18.796+03	
0aac0771-ac86-973b-3169-a81b5aef7ba8	2021-05-25 09:01:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:01:38.79+03	2021-05-25 09:01:38.8+03	
78840a0a-0a7b-3767-8762-6cf9b2bd3b5f	2021-05-25 09:01:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:01:58.79+03	2021-05-25 09:01:58.798+03	
74dd0813-03ef-0ec1-25f9-e374024cef2e	2021-05-25 09:02:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:02:18.79+03	2021-05-25 09:02:18.798+03	
f0df973b-7f94-1681-fc40-e7d75a3226ec	2021-05-25 09:02:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:02:38.79+03	2021-05-25 09:02:38.804+03	
016aaa74-f610-c5cc-b425-f9dce0432e97	2021-05-25 09:02:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:02:59.79+03	2021-05-25 09:02:59.797+03	
fa3dd1f9-fbc6-e55f-48a4-90781b5f290e	2021-05-25 09:03:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:03:19.79+03	2021-05-25 09:03:19.797+03	
f5bb4d4f-1d8a-bf92-7d44-05a9992c1edd	2021-05-25 09:03:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:03:39.79+03	2021-05-25 09:03:39.797+03	
8efc9b2f-32dc-4744-3e0a-a7411b75c091	2021-05-25 09:03:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:03:59.79+03	2021-05-25 09:03:59.799+03	
64c69ceb-00e8-97ec-ae3d-469abdb6a76d	2021-05-25 09:04:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:04:19.79+03	2021-05-25 09:04:19.797+03	
f8fb3446-4e8c-6c7f-1ca5-1e6a1b6fb31a	2021-05-25 09:04:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:04:39.79+03	2021-05-25 09:04:39.796+03	
8a4bc3ed-b672-9ee7-ae65-30e62f0f535d	2021-05-25 09:04:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:04:59.79+03	2021-05-25 09:04:59.798+03	
cc6f2226-d061-27ef-99ad-511bd9701630	2021-05-25 09:05:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:05:19.79+03	2021-05-25 09:05:19.798+03	
62acc941-31b0-83b2-c543-eb7d717040dc	2021-05-25 09:05:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:05:39.79+03	2021-05-25 09:05:39.797+03	
a588e2c3-8d98-cec9-8a01-5d023365e894	2021-05-25 09:05:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:05:59.79+03	2021-05-25 09:05:59.796+03	
2b2e0082-807f-e6ca-c7a1-10628f1bb117	2021-05-25 09:06:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:06:19.79+03	2021-05-25 09:06:19.798+03	
35b7cad7-d149-490c-1b06-e37368d47613	2021-05-25 09:06:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:06:39.79+03	2021-05-25 09:06:39.797+03	
eb68fa95-821b-7578-f732-ac596ba690ce	2021-05-25 09:06:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:06:49.79+03	2021-05-25 09:06:49.799+03	
b1845b1a-3fdd-283e-93eb-fa5ecb2c89f6	2021-05-25 09:07:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:07:09.79+03	2021-05-25 09:07:09.799+03	
469bc2a1-5bb3-35b3-7737-fe6fce506b33	2021-05-25 09:07:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:07:29.79+03	2021-05-25 09:07:29.797+03	
9c53c18f-2c49-4ee4-b482-72f34f9a0d11	2021-05-25 09:07:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:07:49.79+03	2021-05-25 09:07:49.797+03	
ce72524c-2d4a-c471-2626-0d870b675843	2021-05-25 09:08:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:08:09.79+03	2021-05-25 09:08:09.805+03	
cbf8c74b-a1f6-cb89-e286-241f296e06e1	2021-05-25 09:08:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:08:29.79+03	2021-05-25 09:08:29.797+03	
f9451fda-e051-9097-e656-9752fd070337	2021-05-25 09:08:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:08:49.79+03	2021-05-25 09:08:49.797+03	
19c0c09e-ae3f-6281-5416-fadc978023fc	2021-05-25 09:09:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:09:09.79+03	2021-05-25 09:09:09.798+03	
f86cd96b-bcbe-1891-9aa7-585f644f3c1e	2021-05-25 09:09:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:09:29.79+03	2021-05-25 09:09:29.796+03	
189f3eb3-07eb-2f87-aa31-b0ead2c4a8f1	2021-05-25 09:09:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:09:49.79+03	2021-05-25 09:09:49.799+03	
7b5e9f8c-b277-323b-4243-89198f38a0e0	2021-05-25 09:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 09:10:00.79+03	2021-05-25 09:10:00.794+03	ERROR
b46d6b39-502b-e4f1-01c9-4ccc89dc909a	2021-05-25 09:10:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:10:19.79+03	2021-05-25 09:10:19.796+03	
1462f482-2a0d-85c5-ab10-568c636e9023	2021-05-25 09:10:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:10:39.79+03	2021-05-25 09:10:39.797+03	
ca0a312b-edec-5e82-5263-848179709680	2021-05-25 09:10:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:10:59.79+03	2021-05-25 09:10:59.799+03	
e1cbbb0f-09f8-b98e-5f1e-ffd2893b338d	2021-05-25 09:11:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:11:19.79+03	2021-05-25 09:11:19.796+03	
29601953-fffb-0770-9a9b-3cfda5edc9c2	2021-05-25 09:11:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:11:39.79+03	2021-05-25 09:11:39.797+03	
e5230baf-2359-1456-21ac-afa9f6c1d6c7	2021-05-25 09:11:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:11:59.791+03	2021-05-25 09:11:59.846+03	
5eb6defb-77cc-42e4-3e19-aceb950a158a	2021-05-25 09:12:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:12:20.79+03	2021-05-25 09:12:20.799+03	
758eb4b8-8dd8-be8b-adc6-0d4db2e22a75	2021-05-25 09:12:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:12:40.79+03	2021-05-25 09:12:40.797+03	
5451ae2f-bdd4-bb66-097e-32e440c1271c	2021-05-25 09:13:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:13:01.79+03	2021-05-25 09:13:01.797+03	
ec63c00e-4792-c860-8912-0cb24e9a5aee	2021-05-25 09:13:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:13:21.79+03	2021-05-25 09:13:21.796+03	
0a1658bf-c5e9-81a0-175f-929a28829797	2021-05-25 09:13:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:13:41.79+03	2021-05-25 09:13:41.798+03	
e374626e-cca4-cd03-069d-9f14446232f9	2021-05-25 09:14:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:14:01.79+03	2021-05-25 09:14:01.796+03	
484e7f15-5b1b-e054-24e7-65d2a70674fe	2021-05-25 09:14:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:14:21.79+03	2021-05-25 09:14:21.797+03	
abf20173-0211-cbff-2ef5-bd4e09b93ccf	2021-05-25 09:14:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:14:41.79+03	2021-05-25 09:14:41.797+03	
99965657-5886-fbbf-5514-a9b598faccb2	2021-05-25 09:15:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:15:01.79+03	2021-05-25 09:15:01.796+03	
7ee6e54a-1989-bcf9-247a-769c6969644c	2021-05-25 09:15:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:15:21.79+03	2021-05-25 09:15:21.795+03	
6c35fb10-4339-7640-14ac-9e37c974a18f	2021-05-25 09:15:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:15:41.79+03	2021-05-25 09:15:41.797+03	
cf966d67-56fc-0609-cabf-7bfa9255f69c	2021-05-25 09:16:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:16:01.79+03	2021-05-25 09:16:01.797+03	
15db5d1d-5ff0-87d0-90ca-4fcced217fb5	2021-05-25 09:16:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:16:21.79+03	2021-05-25 09:16:21.797+03	
7f606353-5a34-4558-2038-ef5100963df6	2021-05-25 09:16:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:16:41.79+03	2021-05-25 09:16:41.797+03	
e84f039f-25fa-6280-cadd-d1af2cbb6784	2021-05-25 09:17:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:17:01.79+03	2021-05-25 09:17:01.798+03	
b45fc1f7-5b3b-b430-678c-b002d994a63b	2021-05-25 09:17:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:17:21.79+03	2021-05-25 09:17:21.798+03	
20b6c3e4-b517-bc04-6b0b-6fddfa221852	2021-05-25 09:17:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:17:41.79+03	2021-05-25 09:17:41.796+03	
5ed88b4c-30b4-7412-b985-ae4fa5a7089b	2021-05-25 09:18:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:18:01.79+03	2021-05-25 09:18:01.797+03	
73dce242-ea55-ccd0-132d-13d688da8af6	2021-05-25 09:18:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:18:21.79+03	2021-05-25 09:18:21.798+03	
f7dfd84c-2c62-11c2-1bab-ff48ef76f7c9	2021-05-25 09:18:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:18:41.79+03	2021-05-25 09:18:41.795+03	
870bcd53-c6f2-6abf-1b5e-959fa300c3d6	2021-05-25 09:19:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:19:01.79+03	2021-05-25 09:19:01.797+03	
7b86117d-dd57-45e8-798a-882f251a429a	2021-05-25 09:19:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:19:21.79+03	2021-05-25 09:19:21.797+03	
771ab4b9-64aa-2603-9d2f-6af1cd22159a	2021-05-25 09:19:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:19:41.79+03	2021-05-25 09:19:41.796+03	
7c8e5b8e-355a-d51b-87bd-a29a817b7a7f	2021-05-25 09:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 09:20:00.79+03	2021-05-25 09:20:00.795+03	ERROR
eb75c759-21b0-de30-3ddd-689a2ebb2d35	2021-05-25 09:20:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:20:11.79+03	2021-05-25 09:20:11.798+03	
b36104a5-659e-6de5-2cd2-03ea967839c5	2021-05-25 09:20:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:20:31.79+03	2021-05-25 09:20:31.798+03	
450f2b22-3cc9-c71c-043a-d06d45719779	2021-05-25 09:20:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:20:51.79+03	2021-05-25 09:20:51.798+03	
f14dbd30-20d9-6622-562c-86b1324cb795	2021-05-25 09:21:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:21:11.79+03	2021-05-25 09:21:11.798+03	
0b63b31d-cd3f-4f35-0fd4-8a5279d8cbb3	2021-05-25 09:21:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:21:31.79+03	2021-05-25 09:21:31.797+03	
58278e45-96bc-1032-8f85-e81346eb822a	2021-05-25 09:21:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:21:51.79+03	2021-05-25 09:21:51.797+03	
c7020e4a-8fe0-1c70-1c11-b1ccfbb7bf44	2021-05-25 09:22:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:22:11.79+03	2021-05-25 09:22:11.799+03	
a8e42634-ace5-89bf-1b77-6db2e2b2a9dd	2021-05-25 09:22:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:22:31.79+03	2021-05-25 09:22:31.796+03	
42670abd-6880-f233-4aeb-471c1e38f245	2021-05-25 09:22:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:22:51.79+03	2021-05-25 09:22:51.798+03	
e8cc392b-c8de-3981-a4ff-97a2a42e3d03	2021-05-25 09:23:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:23:11.79+03	2021-05-25 09:23:11.796+03	
da1d885b-2bc4-534f-72ab-ce3c21e2ea2d	2021-05-25 09:23:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:23:31.79+03	2021-05-25 09:23:31.796+03	
e0720847-d44a-94ec-16d6-7834f314bc5e	2021-05-25 09:23:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:23:51.79+03	2021-05-25 09:23:51.808+03	
5c6c76ea-f7e6-ea9f-46d6-2ca91ad50eed	2021-05-25 09:24:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:24:11.79+03	2021-05-25 09:24:11.796+03	
70fc3069-48c4-7fe6-8fd3-f246a966d7c2	2021-05-25 09:24:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:24:31.79+03	2021-05-25 09:24:31.798+03	
28365d56-c15e-3b12-7a17-b35951905f3a	2021-05-25 09:24:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:24:51.79+03	2021-05-25 09:24:51.799+03	
32c43630-ff1e-42e0-7ce3-a9d8b68b18fe	2021-05-25 09:25:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:25:11.79+03	2021-05-25 09:25:11.799+03	
e8ae1ed6-bdac-a80a-a9a5-5d4507f63ceb	2021-05-25 09:25:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:25:31.79+03	2021-05-25 09:25:31.798+03	
8f30ee5d-9104-9372-f9af-d40867f2b74f	2021-05-25 09:25:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:25:51.79+03	2021-05-25 09:25:51.797+03	
ccd4ee30-2917-b224-6002-6924f4885160	2021-05-25 09:26:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:26:11.79+03	2021-05-25 09:26:11.796+03	
7b954f59-9be8-c06d-7d28-f9acfae197c7	2021-05-25 09:26:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:26:31.79+03	2021-05-25 09:26:31.796+03	
bd15698d-5160-9015-b30c-88a033e79cb7	2021-05-25 09:26:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:26:51.79+03	2021-05-25 09:26:51.796+03	
ea2f9867-98c7-aa0c-db46-1d896c966c43	2021-05-25 09:27:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:27:11.79+03	2021-05-25 09:27:11.797+03	
58dac7de-5204-105f-ddbd-db75a2244a0a	2021-05-25 09:06:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:06:59.79+03	2021-05-25 09:06:59.798+03	
b0b6a8cf-baf5-5749-0a2a-a67b84cd196e	2021-05-25 09:07:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:07:19.79+03	2021-05-25 09:07:19.797+03	
901b3333-f809-e7ac-00d9-74e4bf9ffca3	2021-05-25 09:07:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:07:39.79+03	2021-05-25 09:07:39.796+03	
351fdd59-6bf1-38f4-d754-d03420d9afcb	2021-05-25 09:07:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:07:59.79+03	2021-05-25 09:07:59.798+03	
7d4dc82b-f4f7-cd96-9ad4-8fb32f309683	2021-05-25 09:08:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:08:19.79+03	2021-05-25 09:08:19.796+03	
95d798cc-2c9c-e8e7-be75-cc934b9be2b3	2021-05-25 09:08:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:08:39.79+03	2021-05-25 09:08:39.796+03	
dbafb74a-f7b2-5081-312b-81dda842474c	2021-05-25 09:08:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:08:59.79+03	2021-05-25 09:08:59.798+03	
41667ddd-fb0f-1418-2108-94ee3ce9ca13	2021-05-25 09:09:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:09:19.79+03	2021-05-25 09:09:19.797+03	
11c463e5-23e1-a8f0-65b6-50e34851e2fb	2021-05-25 09:09:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:09:39.79+03	2021-05-25 09:09:39.797+03	
3c3d7dd5-2813-d0dd-a7de-5d6db993ae65	2021-05-25 09:09:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:09:59.79+03	2021-05-25 09:09:59.798+03	
d51eb7e9-17da-cd50-38b2-c6b9ea947adf	2021-05-25 09:10:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:10:09.79+03	2021-05-25 09:10:09.797+03	
0727023e-5db8-412f-c3f0-f1d7ad8a5dbb	2021-05-25 09:10:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:10:29.79+03	2021-05-25 09:10:29.797+03	
5a4e6806-7baa-eec4-88dd-17cc22cff25a	2021-05-25 09:10:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:10:49.79+03	2021-05-25 09:10:49.797+03	
4bba21de-766c-97be-3c00-0b5f8796729d	2021-05-25 09:11:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:11:09.79+03	2021-05-25 09:11:09.798+03	
8a7b32a6-d2ba-be0a-4c3a-3e4f7e672c91	2021-05-25 09:11:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:11:29.79+03	2021-05-25 09:11:29.798+03	
f92afcd6-f12b-6c92-78d7-d5020a15c5fc	2021-05-25 09:11:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:11:49.79+03	2021-05-25 09:11:49.797+03	
575b339d-7b18-8695-b3c3-a06932416583	2021-05-25 09:12:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:12:10.79+03	2021-05-25 09:12:10.796+03	
8aee7d6e-6acd-b555-fc39-34b68aeeacc8	2021-05-25 09:12:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:12:30.79+03	2021-05-25 09:12:30.798+03	
f5efff9b-c16c-85e8-8f1b-293a36b527df	2021-05-25 09:12:50.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:12:50.791+03	2021-05-25 09:12:50.798+03	
ba99e53e-bf32-d8c3-cfbb-efc7454aef53	2021-05-25 09:13:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:13:11.79+03	2021-05-25 09:13:11.798+03	
2138fc2d-6d44-40bd-edfb-7d41e12b6b34	2021-05-25 09:13:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:13:31.79+03	2021-05-25 09:13:31.798+03	
2c309583-2cea-1f0e-4d07-77c0da4fec4a	2021-05-25 09:13:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:13:51.79+03	2021-05-25 09:13:51.798+03	
a5b8fc80-010f-c54b-e86b-8883800df59a	2021-05-25 09:14:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:14:11.79+03	2021-05-25 09:14:11.797+03	
1a74f53a-f59f-b4d3-5630-7961ac963819	2021-05-25 09:14:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:14:31.79+03	2021-05-25 09:14:31.804+03	
87f7ebe2-5723-e34b-897a-7ccad91c3e16	2021-05-25 09:14:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:14:51.79+03	2021-05-25 09:14:51.796+03	
79966cc1-3aff-0062-4afd-4f84b9b0e8d6	2021-05-25 09:15:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:15:11.79+03	2021-05-25 09:15:11.798+03	
4c2b18df-29d7-433e-43ad-e8b3ddd95da2	2021-05-25 09:15:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:15:31.79+03	2021-05-25 09:15:31.796+03	
90fb76d3-0509-0429-cf91-9261fc361909	2021-05-25 09:15:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:15:51.79+03	2021-05-25 09:15:51.8+03	
b90653e5-9f5c-7ff5-f6ed-5d0753d34533	2021-05-25 09:16:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:16:11.79+03	2021-05-25 09:16:11.796+03	
0636fd9d-5527-dc78-93fa-79aade440f1c	2021-05-25 09:16:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:16:31.79+03	2021-05-25 09:16:31.796+03	
8ed6c7e3-253e-61e8-f736-8721415072ee	2021-05-25 09:16:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:16:51.79+03	2021-05-25 09:16:51.798+03	
cfcb5b31-80d2-e738-baf0-c027ca923b94	2021-05-25 09:17:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:17:11.79+03	2021-05-25 09:17:11.796+03	
cc34009b-432a-90f6-2854-253bd83216f8	2021-05-25 09:17:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:17:31.79+03	2021-05-25 09:17:31.798+03	
26fd423c-217c-a7eb-a7f8-3b138b98d17b	2021-05-25 09:17:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:17:51.79+03	2021-05-25 09:17:51.796+03	
bf97c45c-8f39-13d4-7e5e-d3e1dfb5421f	2021-05-25 09:18:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:18:11.79+03	2021-05-25 09:18:11.796+03	
b2772fc6-e2f0-e1d4-2f4c-3b26b4f701c4	2021-05-25 09:18:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:18:31.79+03	2021-05-25 09:18:31.797+03	
2b481dd8-5de0-4327-ac11-b8532aeed464	2021-05-25 09:18:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:18:51.79+03	2021-05-25 09:18:51.797+03	
4accc508-c3d1-e409-0b80-ca545cee4d94	2021-05-25 09:19:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:19:11.79+03	2021-05-25 09:19:11.798+03	
1da17f21-202f-c484-3f33-7cbd2c503047	2021-05-25 09:19:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:19:31.79+03	2021-05-25 09:19:31.804+03	
90d69f07-096b-6e48-3330-3e3784d0eb6e	2021-05-25 09:19:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:19:51.79+03	2021-05-25 09:19:51.799+03	
3f4988ea-9712-094c-b883-9dfe83b25c77	2021-05-25 09:20:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:20:01.79+03	2021-05-25 09:20:01.798+03	
11c625d1-a2a5-c806-7d6b-2cbdb7a26b5e	2021-05-25 09:20:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:20:21.79+03	2021-05-25 09:20:21.797+03	
5313b8b6-c2e9-0598-acde-0e19bd5a0741	2021-05-25 09:20:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:20:41.79+03	2021-05-25 09:20:41.796+03	
c426b90d-28b8-0059-20e9-78aa2f1874a5	2021-05-25 09:21:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:21:01.79+03	2021-05-25 09:21:01.798+03	
efe28000-eaa9-da1b-2937-319dc1e53442	2021-05-25 09:21:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:21:21.79+03	2021-05-25 09:21:21.796+03	
68e002cd-5f6d-3be7-70ee-7a67484b600d	2021-05-25 09:21:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:21:41.79+03	2021-05-25 09:21:41.797+03	
c907dea4-d55f-9d18-cdf6-926bb20f3d69	2021-05-25 09:22:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:22:01.79+03	2021-05-25 09:22:01.796+03	
5e42478d-8d63-bc5f-e6b5-bcd35305a93e	2021-05-25 09:22:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:22:21.79+03	2021-05-25 09:22:21.797+03	
f02448cf-5ab3-fb6d-4372-805d65ff96b6	2021-05-25 09:22:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:22:41.79+03	2021-05-25 09:22:41.797+03	
6510e5bb-a416-8f92-8b06-cbf36ae023a3	2021-05-25 09:23:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:23:01.79+03	2021-05-25 09:23:01.797+03	
60c8de70-2573-3ef5-55a8-0efebd0ed29f	2021-05-25 09:23:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:23:21.79+03	2021-05-25 09:23:21.796+03	
d1e89947-4055-3138-2861-8ae0f9f5f824	2021-05-25 09:23:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:23:41.79+03	2021-05-25 09:23:41.796+03	
3ce3adb8-efd9-7951-d48a-f00ed040ad6c	2021-05-25 09:24:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:24:01.79+03	2021-05-25 09:24:01.797+03	
774c2ff0-ad91-b0da-fd42-bcaf65f32eb4	2021-05-25 09:24:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:24:21.79+03	2021-05-25 09:24:21.798+03	
7aa7bf95-b9ca-9021-d04c-dedf1a2050fb	2021-05-25 09:24:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:24:41.79+03	2021-05-25 09:24:41.796+03	
66904a90-1322-c26b-4d8f-c53f84550a67	2021-05-25 09:25:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:25:01.79+03	2021-05-25 09:25:01.796+03	
3b71c84c-55ed-e566-fa9a-a4d6368e14cd	2021-05-25 09:25:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:25:21.79+03	2021-05-25 09:25:21.798+03	
e3b1ee24-0e8f-66dd-18e6-856fa9d24967	2021-05-25 09:25:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:25:41.79+03	2021-05-25 09:25:41.799+03	
bb23e539-346d-2224-4346-f9d2835cfc2f	2021-05-25 09:26:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:26:01.79+03	2021-05-25 09:26:01.797+03	
c1ba8fcf-9ae5-409e-fa5f-c11fa323f699	2021-05-25 09:26:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:26:21.79+03	2021-05-25 09:26:21.797+03	
4438cc61-f450-d1c7-7083-f8c36400b9d0	2021-05-25 09:26:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:26:41.79+03	2021-05-25 09:26:41.798+03	
287141c9-38aa-bcff-c54b-c1e75f510822	2021-05-25 09:27:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:27:01.79+03	2021-05-25 09:27:01.796+03	
332bc138-89f8-e366-69ec-edbb704d0cdd	2021-05-25 09:27:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:27:21.79+03	2021-05-25 09:27:21.807+03	
1eb7b23d-17e0-d05e-6286-ea2ce4ca0e2b	2021-05-25 09:27:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:27:31.79+03	2021-05-25 09:27:31.797+03	
8cf05019-5509-5042-76a2-a6ea6d241b66	2021-05-25 09:27:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:27:51.79+03	2021-05-25 09:27:51.802+03	
e44869b7-3f35-40d7-a4e7-73041a51d37b	2021-05-25 09:28:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:28:11.79+03	2021-05-25 09:28:11.797+03	
e4c405c2-aac8-4a07-20eb-6bfdf1e69a3f	2021-05-25 09:28:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:28:31.79+03	2021-05-25 09:28:31.798+03	
651252a0-fb20-9b01-4748-b288e9f9fdee	2021-05-25 09:28:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:28:51.79+03	2021-05-25 09:28:51.799+03	
47062ea8-942d-0e2b-4e2d-108374a59e78	2021-05-25 09:29:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:29:11.79+03	2021-05-25 09:29:11.796+03	
3608e25b-9d84-2cfb-6cf4-21310d618668	2021-05-25 09:29:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:29:31.79+03	2021-05-25 09:29:31.797+03	
c674bfe8-73fa-4b01-b160-7b5b13714917	2021-05-25 09:29:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:29:51.79+03	2021-05-25 09:29:51.799+03	
986777be-79d6-dfe5-067e-87d2b941f403	2021-05-25 09:30:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:30:01.79+03	2021-05-25 09:30:01.796+03	
e10dd6f7-3123-4aac-51cc-51d468de1ee6	2021-05-25 09:30:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:30:21.79+03	2021-05-25 09:30:21.799+03	
7a3b4cc7-bc77-952e-5209-4fd559a83e39	2021-05-25 09:30:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:30:41.79+03	2021-05-25 09:30:41.797+03	
9bba115a-aee6-83e0-4591-3b0f99ba4665	2021-05-25 09:31:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:31:01.79+03	2021-05-25 09:31:01.796+03	
f55bf3bf-fa37-cceb-4db7-18ea63720791	2021-05-25 09:31:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:31:21.79+03	2021-05-25 09:31:21.797+03	
f92282b8-673e-fe46-8dab-6714419b7867	2021-05-25 09:31:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:31:41.79+03	2021-05-25 09:31:41.796+03	
36f17001-b2a9-b6ac-3b9e-6cd50dea684f	2021-05-25 09:32:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:32:01.79+03	2021-05-25 09:32:01.796+03	
1a90680f-aac3-ecb2-ed44-47a9db62b26d	2021-05-25 09:32:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:32:21.79+03	2021-05-25 09:32:21.797+03	
b74532b8-7687-07bb-106b-0a1c256cd097	2021-05-25 09:32:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:32:41.79+03	2021-05-25 09:32:41.798+03	
1fe2f0ae-47f3-b874-105c-7aaac1e1cb84	2021-05-25 09:33:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:33:01.79+03	2021-05-25 09:33:01.798+03	
47f621aa-f473-fbaf-7281-8abd7738667f	2021-05-25 09:33:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:33:21.79+03	2021-05-25 09:33:21.797+03	
b0ca65a3-f00a-20eb-a5a6-106ec4b7ff1b	2021-05-25 09:33:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:33:41.79+03	2021-05-25 09:33:41.798+03	
652e2595-4177-c013-1d89-a541e345c49c	2021-05-25 09:34:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:34:01.79+03	2021-05-25 09:34:01.796+03	
5df7d2c3-442e-0e59-ee43-5556eac05cf1	2021-05-25 09:34:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:34:21.79+03	2021-05-25 09:34:21.798+03	
aed9c8a9-66a0-47a4-4e76-f6d96ae3976d	2021-05-25 09:34:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:34:41.79+03	2021-05-25 09:34:41.795+03	
66c7687f-7513-5488-a1f9-a130bb751c2e	2021-05-25 09:35:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:35:01.79+03	2021-05-25 09:35:01.796+03	
e0725998-a04c-21a7-e458-4d783ee7076d	2021-05-25 09:35:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:35:21.79+03	2021-05-25 09:35:21.796+03	
cdee894e-9fb6-6c33-2ea6-288c604302f6	2021-05-25 09:35:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:35:41.79+03	2021-05-25 09:35:41.797+03	
19fc7999-4f9f-b753-b2c5-1eb24021a7ca	2021-05-25 09:36:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:36:01.79+03	2021-05-25 09:36:01.796+03	
2be57649-2412-4f0b-70a5-94c5bdcfbd3c	2021-05-25 09:36:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:36:21.79+03	2021-05-25 09:36:21.8+03	
dc50d177-8a90-5179-d8bb-dcaf3593e937	2021-05-25 09:36:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:36:41.79+03	2021-05-25 09:36:41.807+03	
e9b114bb-427e-7276-37cf-67a363821c1d	2021-05-25 09:37:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:37:01.79+03	2021-05-25 09:37:01.796+03	
f398962a-fef6-784f-d167-89ef08054c55	2021-05-25 09:37:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:37:21.79+03	2021-05-25 09:37:21.799+03	
08fc8aea-5f67-ed84-e397-f37f101404d7	2021-05-25 09:37:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:37:41.79+03	2021-05-25 09:37:41.798+03	
61e3ccd4-0283-fc75-0995-9f9d339d5ba4	2021-05-25 09:38:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:38:01.79+03	2021-05-25 09:38:01.796+03	
d5852fb0-7cd5-1f04-7a0b-8d9cd3787cba	2021-05-25 09:38:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:38:21.79+03	2021-05-25 09:38:21.808+03	
796735de-0dac-b425-51cd-acb54ea7c02e	2021-05-25 09:38:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:38:41.79+03	2021-05-25 09:38:41.798+03	
16dd54da-e122-ffea-9562-344a9cc018e2	2021-05-25 09:39:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:39:01.79+03	2021-05-25 09:39:01.798+03	
ccef131b-00c7-076d-adff-ac525e1e79d7	2021-05-25 09:39:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:39:21.79+03	2021-05-25 09:39:21.798+03	
4207ba41-01be-9c80-88eb-c78791eb7618	2021-05-25 09:39:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:39:41.79+03	2021-05-25 09:39:41.796+03	
a1361a4b-7254-1ec7-198a-28c94a4537e9	2021-05-25 09:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 09:40:00.79+03	2021-05-25 09:40:00.794+03	ERROR
1726aa48-b5c5-185c-023b-f007f75184d9	2021-05-25 09:40:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:40:11.79+03	2021-05-25 09:40:11.797+03	
5c2bf520-c390-abd1-f20e-1270dce8a339	2021-05-25 09:40:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:40:31.79+03	2021-05-25 09:40:31.797+03	
86e54cb2-e098-6fe5-5b64-aaaf39125555	2021-05-25 09:40:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:40:51.79+03	2021-05-25 09:40:51.797+03	
1bb2215c-4a44-9922-8eba-5320f11f5c16	2021-05-25 09:41:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:41:11.79+03	2021-05-25 09:41:11.798+03	
02ec9657-31a6-ec34-1953-ad37a36effbf	2021-05-25 09:41:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:41:31.79+03	2021-05-25 09:41:31.796+03	
c07d9081-1820-93ea-d26b-d1418805ac3b	2021-05-25 09:41:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:41:51.79+03	2021-05-25 09:41:51.798+03	
f66927e2-5bc3-c9bb-8e25-34108a35391f	2021-05-25 09:42:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:42:11.79+03	2021-05-25 09:42:11.796+03	
785e981a-de4e-31b1-111a-5a95b4c3989c	2021-05-25 09:42:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:42:31.79+03	2021-05-25 09:42:31.799+03	
b3308efe-8356-7ac2-31a4-ec74f3887bce	2021-05-25 09:42:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:42:51.79+03	2021-05-25 09:42:51.796+03	
a45bc3c1-5f7e-e512-1724-6572a737d6bc	2021-05-25 09:43:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:43:11.79+03	2021-05-25 09:43:11.796+03	
cf2c8204-a242-890d-6708-444eb898d140	2021-05-25 09:43:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:43:31.79+03	2021-05-25 09:43:31.796+03	
b4553413-e17f-0b3c-8f9a-679de156cb42	2021-05-25 09:43:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:43:51.79+03	2021-05-25 09:43:51.796+03	
b78c2605-8c99-8e58-2e1b-f169f290f70e	2021-05-25 09:44:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:44:11.79+03	2021-05-25 09:44:11.798+03	
bd127c45-c8f6-afb4-4667-eff4c7fafd64	2021-05-25 09:44:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:44:31.79+03	2021-05-25 09:44:31.798+03	
73d053f6-d99d-57e9-8f36-2d087fa26bb7	2021-05-25 09:44:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:44:51.79+03	2021-05-25 09:44:51.797+03	
8beb5bff-f617-b17f-f7ca-3a25463b30a2	2021-05-25 09:45:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:45:11.79+03	2021-05-25 09:45:11.797+03	
a560b620-7f09-d3af-07d8-bb71c0c59f5d	2021-05-25 09:45:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:45:31.79+03	2021-05-25 09:45:31.796+03	
0b6d50c7-249f-0f2d-9a16-0dd12284514e	2021-05-25 09:45:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:45:51.79+03	2021-05-25 09:45:51.799+03	
6113d592-c13a-84d3-272a-ec4fab558feb	2021-05-25 09:46:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:46:11.79+03	2021-05-25 09:46:11.798+03	
3b29edb7-34fd-705d-10f1-7e87e09fced0	2021-05-25 09:46:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:46:31.79+03	2021-05-25 09:46:31.808+03	
7b4bd1d6-166d-9b30-d15f-629571b7bbde	2021-05-25 09:46:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:46:51.79+03	2021-05-25 09:46:51.796+03	
69ebfc10-cccb-00f9-51dd-d472f80465ef	2021-05-25 09:47:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:47:11.79+03	2021-05-25 09:47:11.807+03	
b227ede3-c687-6761-22d6-bc143b57f3ea	2021-05-25 09:47:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:47:31.79+03	2021-05-25 09:47:31.796+03	
14e66612-8fe6-63f2-9ead-dba9f1e59cfe	2021-05-25 09:47:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:47:51.79+03	2021-05-25 09:47:51.797+03	
b60a4feb-f1d5-2cf2-03df-1096dbec524d	2021-05-25 09:27:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:27:41.79+03	2021-05-25 09:27:41.796+03	
ad03bbff-478a-4b7d-b91e-55c8e1ce687a	2021-05-25 09:28:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:28:01.79+03	2021-05-25 09:28:01.796+03	
7cd2bcfe-5ce0-1ff6-221b-25e3e2b3afc1	2021-05-25 09:28:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:28:21.79+03	2021-05-25 09:28:21.796+03	
7ba96d1c-62ec-f4e0-84d7-fde5e52cd3fb	2021-05-25 09:28:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:28:41.79+03	2021-05-25 09:28:41.798+03	
acfee1cc-11a9-a047-3020-9714b06fe84b	2021-05-25 09:29:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:29:01.79+03	2021-05-25 09:29:01.797+03	
fa10c7c1-c7c5-4c77-2cb0-15285023c7b9	2021-05-25 09:29:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:29:21.79+03	2021-05-25 09:29:21.797+03	
ac088775-de54-a60a-4d24-30ebf1d16900	2021-05-25 09:29:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:29:41.79+03	2021-05-25 09:29:41.796+03	
900ae51a-4cc5-e337-1850-fb32ec78cb99	2021-05-25 09:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 09:30:00.79+03	2021-05-25 09:30:00.796+03	ERROR
79badb29-383a-d1d1-3b51-b02062fe00c3	2021-05-25 09:30:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:30:11.79+03	2021-05-25 09:30:11.798+03	
f40a8a4b-7b69-8183-b9d8-02f2da7cbeeb	2021-05-25 09:30:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:30:31.79+03	2021-05-25 09:30:31.797+03	
a895c65f-ab0d-3b5c-bca3-7990cb3a9226	2021-05-25 09:30:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:30:51.79+03	2021-05-25 09:30:51.799+03	
e83c8af8-0516-4e3c-224c-48342abc631a	2021-05-25 09:31:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:31:11.79+03	2021-05-25 09:31:11.809+03	
52454bfb-ebe8-4527-5538-236f982461c4	2021-05-25 09:31:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:31:31.79+03	2021-05-25 09:31:31.798+03	
b4e50eea-3b3e-09a0-d2c9-3d262fc40d53	2021-05-25 09:31:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:31:51.79+03	2021-05-25 09:31:51.797+03	
26b16b6e-8f98-b90f-182a-029fa7069531	2021-05-25 09:32:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:32:11.79+03	2021-05-25 09:32:11.798+03	
aa000d0d-8ea9-134d-8b1b-8dcf0a9495f7	2021-05-25 09:32:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:32:31.79+03	2021-05-25 09:32:31.797+03	
dd68c02f-a919-ecbd-b7df-263486af2dcf	2021-05-25 09:32:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:32:51.79+03	2021-05-25 09:32:51.8+03	
b24f61e4-bb43-5476-c521-853cbc58abd1	2021-05-25 09:33:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:33:11.79+03	2021-05-25 09:33:11.796+03	
f5d13e2d-5af6-f97a-52eb-d4e11136d5aa	2021-05-25 09:33:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:33:31.79+03	2021-05-25 09:33:31.797+03	
5ced0724-9811-81c5-78d8-c5cb9c1370d6	2021-05-25 09:33:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:33:51.79+03	2021-05-25 09:33:51.798+03	
340ae57e-4dd5-6a3a-e02f-6970e74a7b3c	2021-05-25 09:34:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:34:11.79+03	2021-05-25 09:34:11.797+03	
61f28575-d926-1a57-b03d-b0cf676e7287	2021-05-25 09:34:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:34:31.79+03	2021-05-25 09:34:31.796+03	
217477a6-66ac-7b1a-b3a7-a882b65745c8	2021-05-25 09:34:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:34:51.79+03	2021-05-25 09:34:51.797+03	
7ef1c36a-2a7b-b6d4-e9a6-1fc5df47b727	2021-05-25 09:35:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:35:11.79+03	2021-05-25 09:35:11.797+03	
cd9fb2f1-32a7-7fb0-f3b8-a622c651abe7	2021-05-25 09:35:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:35:31.79+03	2021-05-25 09:35:31.799+03	
b6edd716-1945-25cd-d046-531b0702e2fd	2021-05-25 09:35:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:35:51.79+03	2021-05-25 09:35:51.796+03	
17770477-01ac-70c9-0167-293290d109bb	2021-05-25 09:36:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:36:11.79+03	2021-05-25 09:36:11.796+03	
a18f7597-8139-2e9b-02b6-e908b78445c0	2021-05-25 09:36:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:36:31.79+03	2021-05-25 09:36:31.797+03	
6d658f69-8329-ee99-07dc-bf73f41da6c8	2021-05-25 09:36:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:36:51.79+03	2021-05-25 09:36:51.796+03	
6a6eaec4-1c0f-02a5-5439-b18cba83d9cd	2021-05-25 09:37:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:37:11.79+03	2021-05-25 09:37:11.797+03	
03d845b7-d047-7fe2-8856-c28c3d7d95e9	2021-05-25 09:37:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:37:31.79+03	2021-05-25 09:37:31.796+03	
e7e3b349-d94a-7e46-0226-3b2443f9e75d	2021-05-25 09:37:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:37:51.79+03	2021-05-25 09:37:51.796+03	
bf38b66c-5183-4b84-277a-542303ca914c	2021-05-25 09:38:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:38:11.79+03	2021-05-25 09:38:11.802+03	
b107f51d-06fe-742b-1ae3-3732ab2cb1bc	2021-05-25 09:38:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:38:31.79+03	2021-05-25 09:38:31.796+03	
accde94c-130a-7b4d-5887-07120912ab5b	2021-05-25 09:38:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:38:51.79+03	2021-05-25 09:38:51.797+03	
92adb8c1-16d9-99f1-e79e-708a21f38e86	2021-05-25 09:39:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:39:11.79+03	2021-05-25 09:39:11.805+03	
ac32e828-bdf1-773f-3389-df30a3fcafbc	2021-05-25 09:39:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:39:31.79+03	2021-05-25 09:39:31.801+03	
4774eb63-2b00-c5e8-7564-55041860ec60	2021-05-25 09:39:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:39:51.79+03	2021-05-25 09:39:51.797+03	
7c162528-dc0c-0147-ce4e-97b0381d447f	2021-05-25 09:40:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:40:01.79+03	2021-05-25 09:40:01.797+03	
a8c79f2f-697a-f04b-22a0-e2755a958fe2	2021-05-25 09:40:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:40:21.79+03	2021-05-25 09:40:21.797+03	
f01077da-ead8-7110-3473-5416b83e2037	2021-05-25 09:40:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:40:41.79+03	2021-05-25 09:40:41.795+03	
26eba20b-48d1-e606-d312-f8a40f5bb989	2021-05-25 09:41:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:41:01.79+03	2021-05-25 09:41:01.797+03	
a973743f-3a33-1c50-6e33-48ed25d20db5	2021-05-25 09:41:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:41:21.79+03	2021-05-25 09:41:21.797+03	
8df6647a-df22-6cbf-e875-d4e8a0aae4d4	2021-05-25 09:41:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:41:41.79+03	2021-05-25 09:41:41.797+03	
040a8fcc-0f21-46b0-3837-dc0a8b573faa	2021-05-25 09:42:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:42:01.79+03	2021-05-25 09:42:01.796+03	
07a20b9e-b476-d69c-9e53-5710f7e5f3ff	2021-05-25 09:42:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:42:21.79+03	2021-05-25 09:42:21.796+03	
bc9b6322-8d06-2df0-374f-f0a6ecf69a35	2021-05-25 09:42:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:42:41.79+03	2021-05-25 09:42:41.798+03	
6418fbef-e680-eb53-82ad-5bb1e068b62c	2021-05-25 09:43:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:43:01.79+03	2021-05-25 09:43:01.799+03	
ca53fce9-e258-f95b-f268-8ab259471650	2021-05-25 09:43:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:43:21.79+03	2021-05-25 09:43:21.797+03	
10c4c1ce-a219-b92a-acbf-fc7963ff2b7b	2021-05-25 09:43:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:43:41.79+03	2021-05-25 09:43:41.796+03	
5826e354-137c-10c5-cd56-186d8779a9ec	2021-05-25 09:44:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:44:01.79+03	2021-05-25 09:44:01.796+03	
d6c9fdf6-fe04-1dd9-e3eb-15b0852ee3aa	2021-05-25 09:44:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:44:21.79+03	2021-05-25 09:44:21.796+03	
bd9b5921-56b5-32c3-d5f5-59dfa7e945e0	2021-05-25 09:44:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:44:41.79+03	2021-05-25 09:44:41.799+03	
338c60c1-95fb-7240-bb1f-dfe8981e64f1	2021-05-25 09:45:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:45:01.79+03	2021-05-25 09:45:01.798+03	
65264f75-3e90-06d1-35e1-0df11697bcb6	2021-05-25 09:45:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:45:21.79+03	2021-05-25 09:45:21.797+03	
0cfc5857-2ce8-daf9-5e23-4f04427ef9ed	2021-05-25 09:45:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:45:41.79+03	2021-05-25 09:45:41.797+03	
585aa293-a0a6-6e42-4fa4-62631de97433	2021-05-25 09:46:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:46:01.79+03	2021-05-25 09:46:01.799+03	
25a6e700-6c72-071c-8667-318c7edeee2f	2021-05-25 09:46:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:46:21.79+03	2021-05-25 09:46:21.798+03	
b14290b9-e7e6-e987-5320-04544176cc45	2021-05-25 09:46:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:46:41.79+03	2021-05-25 09:46:41.796+03	
c1d41502-4ec9-502c-3e85-8c48a6d0ac81	2021-05-25 09:47:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:47:01.79+03	2021-05-25 09:47:01.797+03	
a76e6de2-2490-4468-6c09-dd46d5fc6050	2021-05-25 09:47:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:47:21.79+03	2021-05-25 09:47:21.797+03	
25b798fd-b5d7-9b4b-acc4-25f85cf855da	2021-05-25 09:47:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:47:41.79+03	2021-05-25 09:47:41.797+03	
e9accafc-9bb2-a427-d1d7-328672f25890	2021-05-25 09:48:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:48:01.79+03	2021-05-25 09:48:01.799+03	
210ea92d-6afd-e004-c598-7c501e15aa0a	2021-05-25 09:48:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:48:11.79+03	2021-05-25 09:48:11.797+03	
15827b7c-014a-e868-d9b0-1fb45faa2b77	2021-05-25 09:48:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:48:31.79+03	2021-05-25 09:48:31.796+03	
9aeebf1b-5a40-e11a-7054-8984311cc8a1	2021-05-25 09:48:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:48:51.79+03	2021-05-25 09:48:51.797+03	
a946fbb9-041f-6a47-e431-6ff87653da45	2021-05-25 09:49:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:49:11.79+03	2021-05-25 09:49:11.797+03	
3222d877-a43e-9812-e09d-f360d0041baa	2021-05-25 09:49:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:49:31.79+03	2021-05-25 09:49:31.798+03	
ff25f62e-c895-9dd4-b126-ce32ff4fe3fc	2021-05-25 09:49:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:49:51.79+03	2021-05-25 09:49:51.796+03	
620fbcfa-4135-e51b-0c6d-55d3eb1eef67	2021-05-25 09:50:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:50:01.79+03	2021-05-25 09:50:01.796+03	
b836df43-47df-4fb3-72a9-266842a35e4d	2021-05-25 09:50:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:50:21.79+03	2021-05-25 09:50:21.798+03	
ed391d74-a379-137c-4b62-4329f942931b	2021-05-25 09:50:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:50:41.79+03	2021-05-25 09:50:41.797+03	
def981ef-a22d-2075-12dd-145ec4e43ed2	2021-05-25 09:51:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:51:01.79+03	2021-05-25 09:51:01.797+03	
25733197-a9f0-9050-a65d-cf7743387e14	2021-05-25 09:51:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:51:21.79+03	2021-05-25 09:51:21.798+03	
5c6de553-4990-a30a-b0a3-985e4edc1584	2021-05-25 09:51:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:51:41.79+03	2021-05-25 09:51:41.798+03	
f1fb2b2a-99ab-6260-e89a-ee1616f7c8f1	2021-05-25 09:52:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:52:01.79+03	2021-05-25 09:52:01.796+03	
b9bdf27f-ce9f-76b5-2e40-2dff7a335766	2021-05-25 09:52:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:52:21.79+03	2021-05-25 09:52:21.801+03	
8e6bef82-b592-643d-7fc8-40cc1b4fe32e	2021-05-25 09:52:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:52:41.79+03	2021-05-25 09:52:41.798+03	
697d4f41-a760-cb4e-a19a-0681a04b219c	2021-05-25 09:53:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:53:01.79+03	2021-05-25 09:53:01.797+03	
ca4faa86-9425-9323-e7d5-f513dd72eec9	2021-05-25 09:53:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:53:21.79+03	2021-05-25 09:53:21.795+03	
f6625ab1-4caa-48b7-1982-a8e84669c20a	2021-05-25 09:53:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:53:41.79+03	2021-05-25 09:53:41.797+03	
02d02642-553e-8689-015a-1944a8ae49c7	2021-05-25 09:54:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:54:01.791+03	2021-05-25 09:54:01.797+03	
3156cb4d-71a8-b85a-4e32-044240457ae5	2021-05-25 09:54:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:54:22.79+03	2021-05-25 09:54:22.798+03	
1bbc4266-6b82-2489-6153-68b2d0cdd8b4	2021-05-25 09:54:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:54:42.79+03	2021-05-25 09:54:42.798+03	
732d0633-42de-6388-c33d-66d24207d72f	2021-05-25 09:55:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:55:02.79+03	2021-05-25 09:55:02.796+03	
0c72385f-035c-d7d0-48c4-41c4c6076d8e	2021-05-25 09:55:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:55:22.79+03	2021-05-25 09:55:22.799+03	
5fe66560-5ffc-bb0b-33e0-dd0a8189d03d	2021-05-25 09:55:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:55:42.79+03	2021-05-25 09:55:42.797+03	
51ef8edf-adfb-84be-ac5a-a0a898781f30	2021-05-25 09:56:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:56:02.79+03	2021-05-25 09:56:02.797+03	
bba3b404-ab66-c97d-bad8-d5334ea0c41f	2021-05-25 09:56:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:56:22.79+03	2021-05-25 09:56:22.798+03	
2dcaaeb2-8cf9-e3f2-3389-787b38de3da7	2021-05-25 09:56:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:56:42.79+03	2021-05-25 09:56:42.795+03	
9717240f-dd41-c838-1257-36718155c415	2021-05-25 09:57:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:57:02.79+03	2021-05-25 09:57:02.799+03	
f7d41e15-e989-6f12-b569-2ece9decc44c	2021-05-25 09:57:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:57:22.79+03	2021-05-25 09:57:22.799+03	
af8c870c-6fed-6f18-bf6f-aa5118bf0fc6	2021-05-25 09:57:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:57:42.79+03	2021-05-25 09:57:42.798+03	
ddf10b16-9984-72b2-da97-c0c3aacb708e	2021-05-25 09:58:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:58:02.79+03	2021-05-25 09:58:02.803+03	
c9d70489-1cc3-d6bd-a81b-00e09522dfa9	2021-05-25 09:58:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:58:22.79+03	2021-05-25 09:58:22.798+03	
10771089-4229-d828-62b7-999bad531b38	2021-05-25 09:58:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:58:42.79+03	2021-05-25 09:58:42.797+03	
432b246b-73fa-96e5-714b-8d02f3b4bc84	2021-05-25 09:59:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:59:02.79+03	2021-05-25 09:59:02.797+03	
a0f85602-70c9-d0ee-5576-0d07ffad4301	2021-05-25 09:59:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:59:22.79+03	2021-05-25 09:59:22.812+03	
0d942e71-877e-bd84-cf82-5712566285da	2021-05-25 09:59:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:59:42.79+03	2021-05-25 09:59:42.797+03	
ed55dbef-4edc-83dc-1450-11294d035c0b	2021-05-25 10:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 10:00:00.79+03	2021-05-25 10:00:00.813+03	ERROR
8d90cc07-b465-7cc9-5d93-351e0177f563	2021-05-25 10:00:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:00:12.79+03	2021-05-25 10:00:12.801+03	
83ae0dbc-a6ff-b002-a085-110ce7ca896b	2021-05-25 10:00:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:00:33.79+03	2021-05-25 10:00:33.799+03	
fcd0b6a3-7ce7-b7c0-225c-ea852ce83b94	2021-05-25 10:00:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:00:53.79+03	2021-05-25 10:00:53.798+03	
bc105423-196a-f3fb-5102-282a6ee5655d	2021-05-25 10:01:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:01:13.79+03	2021-05-25 10:01:13.798+03	
d5ddb744-bfc4-84ff-0ae9-d3f687e7da51	2021-05-25 10:01:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:01:33.79+03	2021-05-25 10:01:33.796+03	
b5e1c0ee-965a-3b7c-e932-06df2ef732a1	2021-05-25 10:01:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:01:53.79+03	2021-05-25 10:01:53.798+03	
2cb18e95-a130-813f-b0a4-65bc81242a65	2021-05-25 10:02:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:02:13.79+03	2021-05-25 10:02:13.798+03	
47bee57e-bfaf-7d7e-6446-daf7717d7bcd	2021-05-25 10:02:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:02:33.79+03	2021-05-25 10:02:33.798+03	
76a31f6e-ddac-c789-fa7e-424d531b5451	2021-05-25 10:02:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:02:53.79+03	2021-05-25 10:02:53.796+03	
3cc74841-37bb-be69-e376-1cf08a5701a1	2021-05-25 10:03:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:03:13.79+03	2021-05-25 10:03:13.799+03	
b228c000-403d-5d2f-1f33-7e6b7f1ed692	2021-05-25 10:03:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:03:33.79+03	2021-05-25 10:03:33.796+03	
aa30798b-14bc-2e94-128e-718ca4bf9be2	2021-05-25 10:03:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:03:53.79+03	2021-05-25 10:03:53.798+03	
99e61a5e-f9b7-c614-4e85-c34951bc4bde	2021-05-25 10:04:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:04:13.79+03	2021-05-25 10:04:13.797+03	
19d86cb7-05a6-31bc-2b32-ebdd70532eef	2021-05-25 10:04:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:04:33.79+03	2021-05-25 10:04:33.798+03	
479e6d8f-08a0-d79b-64d0-c3ec3e758e9d	2021-05-25 10:04:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:04:53.79+03	2021-05-25 10:04:53.797+03	
67492333-3d57-8c25-d21d-dacf8e7f0c3d	2021-05-25 10:05:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:05:13.79+03	2021-05-25 10:05:13.798+03	
6bf38543-9041-195d-f6cf-cf7fc95051fe	2021-05-25 10:05:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:05:33.79+03	2021-05-25 10:05:33.797+03	
7f9576d0-4cd0-5438-3468-17fe7ed6c5c7	2021-05-25 10:05:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:05:53.79+03	2021-05-25 10:05:53.797+03	
c268950e-7020-b885-8615-db2a67f1ffd7	2021-05-25 10:06:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:06:13.79+03	2021-05-25 10:06:13.797+03	
5c01541f-c70a-f427-e951-63c1a4a26417	2021-05-25 10:06:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:06:33.79+03	2021-05-25 10:06:33.797+03	
9e1c43a6-6b83-35e3-db7b-67726d3f4272	2021-05-25 10:06:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:06:53.79+03	2021-05-25 10:06:53.797+03	
bd4a955c-c434-cc7e-d734-4ca3e03a6fe5	2021-05-25 10:07:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:07:13.79+03	2021-05-25 10:07:13.798+03	
f7448338-1a06-778b-5a4e-51f221b67bba	2021-05-25 10:07:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:07:33.79+03	2021-05-25 10:07:33.797+03	
48954721-24d7-a7ce-d83b-6a5133a1953d	2021-05-25 10:07:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:07:53.79+03	2021-05-25 10:07:53.797+03	
26f393de-593a-84dd-d35f-a1ff10483957	2021-05-25 10:08:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:08:13.79+03	2021-05-25 10:08:13.797+03	
4c48c027-b829-aa68-615f-27fed7b7f9ee	2021-05-25 10:08:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:08:33.79+03	2021-05-25 10:08:33.796+03	
6b043293-ad87-10f7-5728-6cad0b8dd5cd	2021-05-25 09:48:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:48:21.79+03	2021-05-25 09:48:21.798+03	
7bf870dc-a4b7-d658-3c79-903e95e811f8	2021-05-25 09:48:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:48:41.79+03	2021-05-25 09:48:41.797+03	
e2722dd0-c5ab-40de-555f-977060e2a28c	2021-05-25 09:49:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:49:01.79+03	2021-05-25 09:49:01.801+03	
c6d5a966-c3a8-56bf-2cc8-b11632dd770d	2021-05-25 09:49:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:49:21.79+03	2021-05-25 09:49:21.797+03	
b0a9eca7-dcc1-86d3-fab7-f154b0921d1e	2021-05-25 09:49:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:49:41.79+03	2021-05-25 09:49:41.797+03	
d4ebc8d9-e6fa-e022-31d5-0027dfd376d9	2021-05-25 09:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 09:50:00.79+03	2021-05-25 09:50:00.795+03	ERROR
a126c8ba-f221-8809-352b-31854c409c0a	2021-05-25 09:50:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:50:11.79+03	2021-05-25 09:50:11.796+03	
1ae9d979-fcfa-61bf-09de-5075e10e95e5	2021-05-25 09:50:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:50:31.79+03	2021-05-25 09:50:31.799+03	
2316f322-6855-e6ad-91ce-faaa5805d074	2021-05-25 09:50:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:50:51.79+03	2021-05-25 09:50:51.797+03	
54bee272-4938-4b13-fcd3-e3d3969afdc7	2021-05-25 09:51:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:51:11.79+03	2021-05-25 09:51:11.798+03	
e6c1f8e7-44c2-b05a-10d8-415da5c61258	2021-05-25 09:51:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:51:31.79+03	2021-05-25 09:51:31.797+03	
8115fd80-2689-6bfa-22f3-a4a2ab73aa77	2021-05-25 09:51:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:51:51.79+03	2021-05-25 09:51:51.797+03	
d0a7a5fa-84ec-eb98-154c-c9f1bc72add5	2021-05-25 09:52:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:52:11.79+03	2021-05-25 09:52:11.798+03	
f4e11d34-8cd2-3dad-88fc-27b34e89e639	2021-05-25 09:52:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:52:31.79+03	2021-05-25 09:52:31.798+03	
f13df712-6424-ab86-6296-f951fb1f4b7e	2021-05-25 09:52:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:52:51.79+03	2021-05-25 09:52:51.798+03	
8e32fcb0-6fc4-79b4-4862-bb0faa568439	2021-05-25 09:53:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:53:11.79+03	2021-05-25 09:53:11.797+03	
51652880-1109-e068-709f-3c1610dba88a	2021-05-25 09:53:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:53:31.79+03	2021-05-25 09:53:31.797+03	
319a6a88-9081-c2d8-c6fa-02577adc2872	2021-05-25 09:53:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:53:51.79+03	2021-05-25 09:53:51.797+03	
e68cf22c-fe51-2c3c-65fd-81ecc6b114ec	2021-05-25 09:54:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:54:12.79+03	2021-05-25 09:54:12.798+03	
70a18ba1-64eb-a3c5-db33-64e24ef9c3cc	2021-05-25 09:54:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:54:32.79+03	2021-05-25 09:54:32.798+03	
fbb73588-b202-4a7c-c680-8fdae19ad129	2021-05-25 09:54:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:54:52.79+03	2021-05-25 09:54:52.798+03	
f8fa41e8-3b9b-edac-9f51-ebcdc0f9447d	2021-05-25 09:55:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:55:12.79+03	2021-05-25 09:55:12.807+03	
dd9f6c53-1ef1-0cf6-958e-960ae47415f2	2021-05-25 09:55:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:55:32.79+03	2021-05-25 09:55:32.796+03	
5c04bca2-7608-d234-1b26-db97b292a90b	2021-05-25 09:55:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:55:52.79+03	2021-05-25 09:55:52.796+03	
9f3c2087-02c5-aa1c-0877-1883702ea10c	2021-05-25 09:56:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:56:12.79+03	2021-05-25 09:56:12.797+03	
e0d06a94-b765-b795-6d23-77637328b0cd	2021-05-25 09:56:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:56:32.79+03	2021-05-25 09:56:32.796+03	
1665cae5-d9db-0395-9670-f9ed252ca933	2021-05-25 09:56:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:56:52.79+03	2021-05-25 09:56:52.798+03	
b41ff35e-079d-8ffc-8f22-a4f6c90c2b1c	2021-05-25 09:57:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:57:12.79+03	2021-05-25 09:57:12.797+03	
4ca601d2-8f91-1207-cd84-396614a3e69b	2021-05-25 09:57:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:57:32.79+03	2021-05-25 09:57:32.797+03	
72ff42d4-cf85-baa9-760c-9d74c210922f	2021-05-25 09:57:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:57:52.79+03	2021-05-25 09:57:52.797+03	
71a7fc09-e247-845d-23ee-3240e564849e	2021-05-25 09:58:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:58:12.79+03	2021-05-25 09:58:12.796+03	
3ff1b781-e0ef-a8c9-453d-7764a530dffc	2021-05-25 09:58:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:58:32.79+03	2021-05-25 09:58:32.796+03	
0fe63e3c-c799-0cd8-e085-43c6f478f2b1	2021-05-25 09:58:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:58:52.79+03	2021-05-25 09:58:52.799+03	
549870c5-1831-f00a-fe6a-4e76818eefe6	2021-05-25 09:59:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:59:12.79+03	2021-05-25 09:59:12.797+03	
f095ba03-099d-04f7-2de9-b34908c81b9d	2021-05-25 09:59:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:59:32.79+03	2021-05-25 09:59:32.799+03	
2c18eb58-a9f2-f7f7-b22d-35ea242f63cd	2021-05-25 09:59:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 09:59:52.79+03	2021-05-25 09:59:52.798+03	
eef6d425-33d0-0030-e4f8-661a4b573a8c	2021-05-25 10:00:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:00:02.79+03	2021-05-25 10:00:02.807+03	
557f39d1-c092-6004-2907-95fe801cd103	2021-05-25 10:00:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:00:22.791+03	2021-05-25 10:00:22.812+03	
99e1ee72-10eb-9623-1148-31804aefb7fa	2021-05-25 10:00:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:00:43.79+03	2021-05-25 10:00:43.797+03	
f90d5808-1fd2-0ebf-6fe8-025b9789a2b9	2021-05-25 10:01:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:01:03.79+03	2021-05-25 10:01:03.797+03	
7fc48a10-fd0f-408c-d8cc-2e7e0ab11370	2021-05-25 10:01:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:01:23.79+03	2021-05-25 10:01:23.801+03	
48ee44ae-e3d7-5a48-1490-56bbee2d54b9	2021-05-25 10:01:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:01:43.79+03	2021-05-25 10:01:43.797+03	
7923838d-8137-e425-4206-c94c7474dca3	2021-05-25 10:02:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:02:03.79+03	2021-05-25 10:02:03.796+03	
ef0fb90c-0cb7-9156-b4d2-5d7922eebb40	2021-05-25 10:02:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:02:23.79+03	2021-05-25 10:02:23.796+03	
c677ef1f-8d71-1a4c-5376-48979250f8ac	2021-05-25 10:02:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:02:43.79+03	2021-05-25 10:02:43.797+03	
0b054e95-a825-1ffa-86d6-7b44fd8f9410	2021-05-25 10:03:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:03:03.79+03	2021-05-25 10:03:03.797+03	
7e459012-03b4-fd37-a693-efa231852258	2021-05-25 10:03:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:03:23.79+03	2021-05-25 10:03:23.8+03	
5b263636-b21f-3829-d52d-9dfc55241271	2021-05-25 10:03:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:03:43.79+03	2021-05-25 10:03:43.798+03	
019b5067-aaf5-4e55-eced-aaee041483e3	2021-05-25 10:04:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:04:03.79+03	2021-05-25 10:04:03.798+03	
1eb9cecf-daef-cf60-98b3-02e3f12b1fdc	2021-05-25 10:04:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:04:23.79+03	2021-05-25 10:04:23.798+03	
f1555542-a3a5-a5c4-c2a6-a2016e1f83e7	2021-05-25 10:04:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:04:43.79+03	2021-05-25 10:04:43.798+03	
3a152dbd-c7c4-2e73-9639-f915c6c313c1	2021-05-25 10:05:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:05:03.79+03	2021-05-25 10:05:03.797+03	
cd4cb5cc-7bb8-b712-8426-edfa9bb6c5a5	2021-05-25 10:05:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:05:23.79+03	2021-05-25 10:05:23.796+03	
ba032860-def8-e24d-7e1d-3b6b75b09a4f	2021-05-25 10:05:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:05:43.79+03	2021-05-25 10:05:43.797+03	
2253fecd-9f0e-5e36-380d-50fa66dd925d	2021-05-25 10:06:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:06:03.79+03	2021-05-25 10:06:03.796+03	
378fa81c-d69d-1616-e79f-c8ea86289717	2021-05-25 10:06:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:06:23.79+03	2021-05-25 10:06:23.798+03	
21529453-c6a7-916d-8e6f-34e164046fd9	2021-05-25 10:06:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:06:43.79+03	2021-05-25 10:06:43.799+03	
d43f243b-46f8-d627-9742-bd939f88a3de	2021-05-25 10:07:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:07:03.79+03	2021-05-25 10:07:03.796+03	
8579b98e-81e9-8cf8-e39b-85d63af6f689	2021-05-25 10:07:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:07:23.79+03	2021-05-25 10:07:23.796+03	
d63ecf6b-6486-53f0-1dd8-008a7b7b2c7c	2021-05-25 10:07:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:07:43.79+03	2021-05-25 10:07:43.798+03	
998bc321-6597-a2a2-9354-3279f1a02b4b	2021-05-25 10:08:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:08:03.79+03	2021-05-25 10:08:03.796+03	
17284b2a-09bb-8c95-acf6-2cbc23e873be	2021-05-25 10:08:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:08:23.79+03	2021-05-25 10:08:23.798+03	
8667daf0-082d-5dfb-1d6e-b1e11c072ebd	2021-05-25 10:08:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:08:43.79+03	2021-05-25 10:08:43.798+03	
e6b4cfef-9d98-4e2f-8f5b-3acde924d808	2021-05-25 10:08:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:08:53.79+03	2021-05-25 10:08:53.798+03	
d3f2b586-ffdf-d883-5095-467810a505eb	2021-05-25 10:09:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:09:13.79+03	2021-05-25 10:09:13.802+03	
7a575295-0ecc-93ec-f84e-789693356152	2021-05-25 10:09:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:09:33.79+03	2021-05-25 10:09:33.798+03	
52cedabd-d9bd-1959-fd80-8d3f6c0b2bc5	2021-05-25 10:09:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:09:53.79+03	2021-05-25 10:09:53.797+03	
776a6a76-ced6-4093-6cdb-de22f4bc36c6	2021-05-25 10:10:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:10:03.79+03	2021-05-25 10:10:03.803+03	
42bb9948-8097-a3d5-5718-98ab8c4f9dde	2021-05-25 10:10:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:10:23.79+03	2021-05-25 10:10:23.795+03	
93a634ff-e95e-1571-46f9-c782a58d6239	2021-05-25 10:10:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:10:43.791+03	2021-05-25 10:10:43.8+03	
ab300f8c-a26c-0108-11ce-31c97abc7ccf	2021-05-25 10:11:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:11:04.79+03	2021-05-25 10:11:04.798+03	
db8ed8b7-a7f9-6b7e-c569-97bf08b6b818	2021-05-25 10:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:11:24.79+03	2021-05-25 10:11:24.805+03	
5087b611-0fae-4de7-b8fe-8d9e16f9f180	2021-05-25 10:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:11:44.79+03	2021-05-25 10:11:44.797+03	
93b1e485-7283-8d19-c87a-46ae774f9fd0	2021-05-25 10:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:12:04.79+03	2021-05-25 10:12:04.799+03	
42f8ae7a-1e27-5532-f8fa-628d8e108d7f	2021-05-25 10:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:12:24.79+03	2021-05-25 10:12:24.799+03	
fd818513-01a0-b3f9-db8f-94b617939f69	2021-05-25 10:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:12:44.79+03	2021-05-25 10:12:44.796+03	
c95958ef-593b-b63a-b1a0-29c67f9898e3	2021-05-25 10:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:13:04.79+03	2021-05-25 10:13:04.796+03	
080f2eb9-b65b-d626-1eb1-fca7822ec138	2021-05-25 10:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:13:24.79+03	2021-05-25 10:13:24.798+03	
e0b493ec-dbc3-fff6-b566-1df088d0f7d0	2021-05-25 10:13:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:13:44.791+03	2021-05-25 10:13:44.798+03	
3f146f5d-38bb-5325-55bf-888306e211b6	2021-05-25 10:14:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:14:06.79+03	2021-05-25 10:14:06.797+03	
7c3cd669-5b1f-bb01-6b5b-2b6b680720cb	2021-05-25 10:14:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:14:26.79+03	2021-05-25 10:14:26.797+03	
f1d78d9a-5ed6-cf93-d35b-e0fc346fe568	2021-05-25 10:14:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:14:46.79+03	2021-05-25 10:14:46.797+03	
486558e2-8d74-55e7-10cc-bfe4e8bc6b19	2021-05-25 10:15:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:15:06.79+03	2021-05-25 10:15:06.797+03	
67fe402f-f652-bfa0-9ec8-ba4018756fe8	2021-05-25 10:15:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:15:26.79+03	2021-05-25 10:15:26.795+03	
04fc1919-3f24-7524-c610-b40dd9b58676	2021-05-25 10:15:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:15:46.79+03	2021-05-25 10:15:46.796+03	
085b6ace-296c-8f3f-120a-3c9282fe547b	2021-05-25 10:16:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:16:06.79+03	2021-05-25 10:16:06.805+03	
1b627ebd-ec6b-4b4d-901d-10db0901623c	2021-05-25 10:16:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:16:26.79+03	2021-05-25 10:16:26.797+03	
474d34c6-7f47-5506-f50c-e603afdadb22	2021-05-25 10:16:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:16:46.79+03	2021-05-25 10:16:46.798+03	
91c70edd-4444-d3fd-92a8-552132ffb853	2021-05-25 10:17:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:17:06.79+03	2021-05-25 10:17:06.796+03	
9f069099-0cd0-cf8a-47f3-f8522884d599	2021-05-25 10:17:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:17:26.79+03	2021-05-25 10:17:26.798+03	
58b11490-8505-3cde-fc65-d0cf7eba2194	2021-05-25 10:17:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:17:46.79+03	2021-05-25 10:17:46.796+03	
81b59001-209f-a1fd-66c3-9854b9d42c20	2021-05-25 10:18:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:18:06.79+03	2021-05-25 10:18:06.798+03	
0f1a0257-5033-12f7-9d46-6039a3c939e3	2021-05-25 10:18:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:18:26.79+03	2021-05-25 10:18:26.797+03	
7df20fbd-c3c8-fcbd-500d-1198ed457672	2021-05-25 10:18:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:18:46.79+03	2021-05-25 10:18:46.797+03	
d3e16e6d-46dc-f6e8-4169-2a960a01ca2a	2021-05-25 10:19:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:19:06.79+03	2021-05-25 10:19:06.797+03	
b1cbc1e3-799d-be3b-0161-90887d07cef7	2021-05-25 10:19:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:19:26.79+03	2021-05-25 10:19:26.796+03	
c3674cc9-473b-3569-7ac0-803b9dfae491	2021-05-25 10:19:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:19:46.79+03	2021-05-25 10:19:46.796+03	
9ad30054-c0b6-9a81-e0a5-a86fdde420cb	2021-05-25 10:19:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:19:56.79+03	2021-05-25 10:19:56.797+03	
4fd32dcb-d959-3f9c-57ae-769d490c2773	2021-05-25 10:20:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:20:06.79+03	2021-05-25 10:20:06.798+03	
bef39b3c-5816-0f9b-dd59-53192382f1eb	2021-05-25 10:20:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:20:26.79+03	2021-05-25 10:20:26.797+03	
a9ead464-1c3b-f198-cb90-8cb06d0acb14	2021-05-25 10:20:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:20:46.79+03	2021-05-25 10:20:46.797+03	
70e92005-469b-19bc-b0a0-75513a8e58b9	2021-05-25 10:21:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:21:06.79+03	2021-05-25 10:21:06.798+03	
274bb2b0-1fe9-6427-d3d2-0c35b18f893d	2021-05-25 10:21:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:21:26.79+03	2021-05-25 10:21:26.796+03	
88c03cb6-4a4d-8056-8c21-93c062ebc2f3	2021-05-25 10:21:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:21:46.79+03	2021-05-25 10:21:46.797+03	
18aa49f7-10b9-be66-c3c3-7026437466c9	2021-05-25 10:22:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:22:06.79+03	2021-05-25 10:22:06.797+03	
87a4b7d5-f270-db87-417e-164a9b7c24b9	2021-05-25 10:22:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:22:26.79+03	2021-05-25 10:22:26.797+03	
a285d45a-caf8-5a96-15b2-5f73f011274d	2021-05-25 10:22:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:22:46.79+03	2021-05-25 10:22:46.796+03	
55e06b93-5888-e208-778d-0712e2495b8d	2021-05-25 10:23:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:23:06.79+03	2021-05-25 10:23:06.797+03	
0136aa6b-8674-2024-a795-dd540b90b51b	2021-05-25 10:23:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:23:26.79+03	2021-05-25 10:23:26.797+03	
42330444-7323-c30c-b649-5c8be579ddef	2021-05-25 10:23:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:23:46.79+03	2021-05-25 10:23:46.796+03	
46019a0c-4b16-cba4-5133-a6bd3cbd6ec8	2021-05-25 10:24:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:24:06.79+03	2021-05-25 10:24:06.796+03	
6a53371d-dbd6-d34b-9778-3e798a7e3437	2021-05-25 10:24:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:24:26.79+03	2021-05-25 10:24:26.798+03	
90fa4eb4-a945-1ead-1191-9115e3900649	2021-05-25 10:24:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:24:46.79+03	2021-05-25 10:24:46.797+03	
43628a06-0a99-9d39-effa-4d3d6fe9701d	2021-05-25 10:25:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:25:06.79+03	2021-05-25 10:25:06.797+03	
67080898-e1ed-507f-7da5-349ff6916200	2021-05-25 10:25:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:25:26.79+03	2021-05-25 10:25:26.797+03	
c557e3f6-fb43-6ce1-11f3-a967c1315ca4	2021-05-25 10:25:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:25:46.79+03	2021-05-25 10:25:46.798+03	
f4be801b-6470-f28c-42f1-861074a2943a	2021-05-25 10:26:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:26:06.79+03	2021-05-25 10:26:06.797+03	
4182a934-b0eb-dec8-2aeb-05ba6aa982ee	2021-05-25 10:26:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:26:26.79+03	2021-05-25 10:26:26.796+03	
e172f5a3-4b1d-5870-c02c-db170f5b71c2	2021-05-25 10:26:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:26:46.79+03	2021-05-25 10:26:46.796+03	
9e1d30cc-bf34-d88b-ec5e-a65ec9cfb4a7	2021-05-25 10:27:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:27:06.79+03	2021-05-25 10:27:06.797+03	
fcdad35a-917b-2904-d088-2e13e575940d	2021-05-25 10:27:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:27:26.79+03	2021-05-25 10:27:26.8+03	
be261991-8757-0e76-8acd-88aed254443b	2021-05-25 10:27:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:27:46.79+03	2021-05-25 10:27:46.798+03	
e571a5d1-6a1c-b266-bb6c-6c78f4026848	2021-05-25 10:28:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:28:06.79+03	2021-05-25 10:28:06.797+03	
8c2ac903-55da-63bb-cfcc-ac801b621a21	2021-05-25 10:28:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:28:26.79+03	2021-05-25 10:28:26.799+03	
4e347334-cba5-c9f6-851e-c1f6b3dc9e2a	2021-05-25 10:28:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:28:46.79+03	2021-05-25 10:28:46.797+03	
bf41db91-1a96-5a5f-fa20-d6ef8e18b3ab	2021-05-25 10:29:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:29:06.79+03	2021-05-25 10:29:06.797+03	
0f973b48-7969-89fd-e771-eb0a0999f0d3	2021-05-25 10:09:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:09:03.79+03	2021-05-25 10:09:03.798+03	
64df55c5-2fd4-7bd0-4d82-22eec834d398	2021-05-25 10:09:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:09:23.79+03	2021-05-25 10:09:23.799+03	
18f88a13-2070-1101-d646-0ba8f83ebb77	2021-05-25 10:09:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:09:43.79+03	2021-05-25 10:09:43.798+03	
f03cddce-d428-d06e-7402-6d698684dce8	2021-05-25 10:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 10:10:00.79+03	2021-05-25 10:10:00.795+03	ERROR
ccc75678-9ad9-0d1f-3c5e-bbbc4aed6f1a	2021-05-25 10:10:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:10:13.79+03	2021-05-25 10:10:13.797+03	
0e6d00ef-d899-8838-96ea-724cc8a651e1	2021-05-25 10:10:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:10:33.79+03	2021-05-25 10:10:33.796+03	
8c4c07b7-80b9-bbb4-a0be-a4459b729080	2021-05-25 10:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:10:54.79+03	2021-05-25 10:10:54.797+03	
7d220132-49c4-a6c4-9519-43cc20c5c412	2021-05-25 10:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:11:14.79+03	2021-05-25 10:11:14.796+03	
fb4a326d-9289-7735-9527-5d5a96e51b8b	2021-05-25 10:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:11:34.79+03	2021-05-25 10:11:34.798+03	
d5f13274-e5d6-2a80-416e-157dec38ccac	2021-05-25 10:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:11:54.79+03	2021-05-25 10:11:54.798+03	
a3cafc90-c446-b27e-7ed6-392ccea5cdcf	2021-05-25 10:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:12:14.79+03	2021-05-25 10:12:14.797+03	
0c954787-4eeb-4bb6-3586-1b2c8ab7f1ae	2021-05-25 10:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:12:34.79+03	2021-05-25 10:12:34.796+03	
87660ba0-8711-757f-7df2-0c91df21e429	2021-05-25 10:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:12:54.79+03	2021-05-25 10:12:54.796+03	
28972449-f8d1-29c4-ed2b-83e3d65cb76e	2021-05-25 10:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:13:14.79+03	2021-05-25 10:13:14.796+03	
20e383c1-a59c-8bc8-f4b5-3a3f1c09f19d	2021-05-25 10:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:13:34.79+03	2021-05-25 10:13:34.798+03	
b8e70d87-0355-c499-d33c-24faa9d4fa82	2021-05-25 10:13:55.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:13:55.792+03	2021-05-25 10:13:55.799+03	
4403fbbc-6497-2f6d-5c00-a49a2fc0c96a	2021-05-25 10:14:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:14:16.79+03	2021-05-25 10:14:16.797+03	
73c03b60-c05c-71c3-275c-73bfd26ad556	2021-05-25 10:14:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:14:36.79+03	2021-05-25 10:14:36.798+03	
1adef44a-0bb5-43e9-b7de-31652f48f60f	2021-05-25 10:14:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:14:56.79+03	2021-05-25 10:14:56.796+03	
f880e9fd-bce3-1e72-541e-cc5b520c992b	2021-05-25 10:15:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:15:16.79+03	2021-05-25 10:15:16.796+03	
d8da5958-9c95-0959-e3ec-d78ecf426fc9	2021-05-25 10:15:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:15:36.79+03	2021-05-25 10:15:36.796+03	
7d591df1-4bc0-8125-e025-c496faf97879	2021-05-25 10:15:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:15:56.79+03	2021-05-25 10:15:56.797+03	
5335412a-0ebc-8b9b-dfa2-558f2ce23fc9	2021-05-25 10:16:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:16:16.79+03	2021-05-25 10:16:16.796+03	
7a60d834-9c46-9c4e-57de-cc25e280121d	2021-05-25 10:16:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:16:36.79+03	2021-05-25 10:16:36.797+03	
9e83d3b7-5452-59dd-d4a9-6983b8e6782f	2021-05-25 10:16:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:16:56.79+03	2021-05-25 10:16:56.797+03	
e8ecfb10-91a1-d9d3-3c4c-70eedec1b6e7	2021-05-25 10:17:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:17:16.79+03	2021-05-25 10:17:16.797+03	
392f9fe5-b5df-ea7e-9729-3bb2e93495e2	2021-05-25 10:17:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:17:36.79+03	2021-05-25 10:17:36.796+03	
f867db02-ab71-3797-253f-4d6031764270	2021-05-25 10:17:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:17:56.79+03	2021-05-25 10:17:56.798+03	
7534209e-61dd-b1e2-d160-0fba6719fcf6	2021-05-25 10:18:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:18:16.79+03	2021-05-25 10:18:16.797+03	
2d4423ca-9d68-823e-26cd-e8ccd3cf537c	2021-05-25 10:18:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:18:36.79+03	2021-05-25 10:18:36.8+03	
48bbdd7f-1c2a-683e-81e1-2c5ea6b280d5	2021-05-25 10:18:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:18:56.79+03	2021-05-25 10:18:56.796+03	
614eaaa2-5066-7c09-d484-b209282d6a30	2021-05-25 10:19:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:19:16.79+03	2021-05-25 10:19:17.032+03	
c45475a7-ef5c-7c88-e4b6-aaa6f8cca838	2021-05-25 10:19:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:19:36.79+03	2021-05-25 10:19:36.796+03	
e16c1b5e-d24e-14ea-e548-483c70b2cf25	2021-05-25 10:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 10:20:00.79+03	2021-05-25 10:20:00.842+03	ERROR
eb8e4e60-e233-7f0b-13b6-f68ffccdf33a	2021-05-25 10:20:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:20:16.79+03	2021-05-25 10:20:16.798+03	
dfe585d3-c3bd-f17a-8c5c-e81efa51ca27	2021-05-25 10:20:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:20:36.79+03	2021-05-25 10:20:36.796+03	
3b322e8d-a846-df81-af65-bdd2f097dd33	2021-05-25 10:20:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:20:56.79+03	2021-05-25 10:20:56.797+03	
a3856ff5-e74a-bff5-8689-231d74034cc7	2021-05-25 10:21:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:21:16.79+03	2021-05-25 10:21:16.804+03	
3807de41-7a98-38fb-22fc-f2d7fb9fe5f0	2021-05-25 10:21:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:21:36.79+03	2021-05-25 10:21:36.797+03	
8d91d7a2-86ca-5a69-1b4e-b1999167bf25	2021-05-25 10:21:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:21:56.79+03	2021-05-25 10:21:56.796+03	
796a14e2-58ce-097d-ae56-32dea9d3f446	2021-05-25 10:22:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:22:16.79+03	2021-05-25 10:22:16.804+03	
d26fe82e-4a5a-6eb3-fab0-160ac815963d	2021-05-25 10:22:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:22:36.79+03	2021-05-25 10:22:36.797+03	
8167ec06-1085-78b3-841f-937300b4ee05	2021-05-25 10:22:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:22:56.79+03	2021-05-25 10:22:56.796+03	
8372bdd7-7870-45c9-3c91-24c1d5bf83c3	2021-05-25 10:23:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:23:16.79+03	2021-05-25 10:23:16.796+03	
033d87b3-8f3b-a535-c0bd-00e4fc48ec29	2021-05-25 10:23:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:23:36.79+03	2021-05-25 10:23:36.798+03	
d1bd1fd6-b781-c49d-8be5-5aab2238b809	2021-05-25 10:23:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:23:56.79+03	2021-05-25 10:23:56.796+03	
6dd11100-bba8-f2a6-0392-d37ab5221139	2021-05-25 10:24:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:24:16.79+03	2021-05-25 10:24:16.798+03	
60c4a8a0-4d50-fff7-3aff-5f47553634a5	2021-05-25 10:24:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:24:36.79+03	2021-05-25 10:24:36.797+03	
fa79c839-d270-55fd-9ee6-36e41f669c73	2021-05-25 10:24:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:24:56.79+03	2021-05-25 10:24:56.798+03	
012814b6-3849-f91c-23ab-ecc91b946e7f	2021-05-25 10:25:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:25:16.79+03	2021-05-25 10:25:16.797+03	
9ffb8836-c53a-a8b1-56d9-4e8ec75f8567	2021-05-25 10:25:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:25:36.79+03	2021-05-25 10:25:36.797+03	
bc4fda3f-de76-ed6f-cead-ec831401ee30	2021-05-25 10:25:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:25:56.79+03	2021-05-25 10:25:56.797+03	
3edfb608-80c6-0a05-2a83-ea032e08f585	2021-05-25 10:26:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:26:16.79+03	2021-05-25 10:26:16.796+03	
eb9cfed4-4f4b-99a9-156e-429c7a01547d	2021-05-25 10:26:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:26:36.79+03	2021-05-25 10:26:36.8+03	
9071a6d6-adad-f967-d3f5-7a63b50f704e	2021-05-25 10:26:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:26:56.79+03	2021-05-25 10:26:56.796+03	
c70900ab-5774-6680-4f9b-7023cdd83e06	2021-05-25 10:27:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:27:16.79+03	2021-05-25 10:27:16.798+03	
669ae740-412d-bbf4-d8b6-dda350d66252	2021-05-25 10:27:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:27:36.79+03	2021-05-25 10:27:36.799+03	
bfda23e0-9a9e-6274-ab52-0e168ca3cf84	2021-05-25 10:27:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:27:56.79+03	2021-05-25 10:27:56.797+03	
314edcf7-b6a8-6055-aaba-b21b2ababe4c	2021-05-25 10:28:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:28:16.79+03	2021-05-25 10:28:17.036+03	
d3af888a-7638-7a26-c957-be3a73069003	2021-05-25 10:28:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:28:36.79+03	2021-05-25 10:28:36.798+03	
e9fb2bba-aef8-4104-81b0-5dd228b50ac0	2021-05-25 10:28:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:28:56.79+03	2021-05-25 10:28:56.797+03	
5aeb3a0b-c8be-3c55-bae9-628585b5db10	2021-05-25 10:29:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:29:16.79+03	2021-05-25 10:29:16.797+03	
196f379e-f147-457b-4a2c-b75e2fe8b300	2021-05-25 10:29:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:29:36.79+03	2021-05-25 10:29:36.8+03	
6917e645-db2b-2d9b-5562-d4d099373cab	2021-05-25 10:29:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:29:26.79+03	2021-05-25 10:29:26.799+03	
23548b32-6962-1d7e-8025-40abd8993c95	2021-05-25 10:29:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:29:46.79+03	2021-05-25 10:29:46.797+03	
bec34617-a288-48a7-9bc3-8ca617020879	2021-05-25 10:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 10:30:00.79+03	2021-05-25 10:30:00.794+03	ERROR
266b1c76-691b-ee08-77ad-af45dd9218ce	2021-05-25 10:30:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:30:16.79+03	2021-05-25 10:30:16.8+03	
4a011572-5388-2a2d-9d5e-e2dd811b659a	2021-05-25 10:30:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:30:36.79+03	2021-05-25 10:30:36.797+03	
0a8031ed-7942-e658-729f-45a5fc182b5c	2021-05-25 10:30:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:30:56.79+03	2021-05-25 10:30:56.797+03	
ecf87c4e-061b-6394-2bd0-19ef4bb92cf7	2021-05-25 10:31:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:31:16.79+03	2021-05-25 10:31:16.797+03	
172fa4e4-a9f0-30f1-e1d7-c8b1d643c30d	2021-05-25 10:31:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:31:36.79+03	2021-05-25 10:31:36.796+03	
3dfdfeef-e9ae-a223-6f4e-c287f5ec0172	2021-05-25 10:31:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:31:56.79+03	2021-05-25 10:31:56.798+03	
e81eb218-a5a1-0f8a-fdd1-59688f5e08f1	2021-05-25 10:32:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:32:16.79+03	2021-05-25 10:32:16.802+03	
717670f3-6caf-29f8-e38f-f80fb8a97458	2021-05-25 10:32:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:32:36.79+03	2021-05-25 10:32:36.798+03	
eeede456-22e5-4606-4327-80b3367f32ce	2021-05-25 10:32:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:32:56.79+03	2021-05-25 10:32:56.797+03	
e7c47ccb-bd74-617b-e733-f5867cdddd74	2021-05-25 10:33:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:33:16.79+03	2021-05-25 10:33:16.796+03	
d073e19a-fb9c-8e35-2cfa-1808cbf46b55	2021-05-25 10:33:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:33:36.79+03	2021-05-25 10:33:36.798+03	
17d6a35a-8c37-4041-3036-d6ca09778b9c	2021-05-25 10:33:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:33:56.79+03	2021-05-25 10:33:56.796+03	
88c1923e-b706-fa46-4f9b-a6ec660405df	2021-05-25 10:34:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:34:16.79+03	2021-05-25 10:34:16.796+03	
652bd130-11dd-c885-99ea-5a6273d3b511	2021-05-25 10:34:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:34:36.79+03	2021-05-25 10:34:36.798+03	
30d4a183-2145-9e10-6a07-950a5caf47f8	2021-05-25 10:34:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:34:56.79+03	2021-05-25 10:34:56.797+03	
e043904f-dc88-cb07-9f00-4f5f99563cd3	2021-05-25 10:35:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:35:16.79+03	2021-05-25 10:35:16.798+03	
28bb8fd2-ecfe-b98f-63af-c71f07fb4d11	2021-05-25 10:35:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:35:36.79+03	2021-05-25 10:35:36.797+03	
9f3efc72-6625-79e2-3423-1a17416868c2	2021-05-25 10:35:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:35:56.79+03	2021-05-25 10:35:56.812+03	
3d40f560-d286-f5af-fac7-dcc323f8d8b4	2021-05-25 10:36:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:36:16.79+03	2021-05-25 10:36:16.796+03	
eda77138-b304-be3c-68d0-28c6c53d4ea0	2021-05-25 10:36:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:36:36.79+03	2021-05-25 10:36:36.803+03	
c8b3db3b-1772-5782-395d-71bc26e69489	2021-05-25 10:36:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:36:56.79+03	2021-05-25 10:36:56.797+03	
9fb96f15-9f02-0dcd-af9d-f2006b42267a	2021-05-25 10:37:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:37:16.79+03	2021-05-25 10:37:16.799+03	
258ffc6f-6589-39c9-78a4-dfcd3c11c0ce	2021-05-25 10:37:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:37:36.79+03	2021-05-25 10:37:36.797+03	
818cdb08-d874-d5d0-5f20-c0f7524a86e6	2021-05-25 10:37:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:37:56.79+03	2021-05-25 10:37:56.803+03	
22e4fe52-ffa4-36b2-0c00-e48504a5e39b	2021-05-25 10:38:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:38:16.79+03	2021-05-25 10:38:16.799+03	
ce3502b5-487d-63d6-df59-f3880d63d410	2021-05-25 10:38:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:38:36.79+03	2021-05-25 10:38:36.797+03	
be07179a-c195-1a07-8c99-5c1813392bad	2021-05-25 10:38:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:38:56.79+03	2021-05-25 10:38:56.798+03	
0d7c2803-f7e8-b058-e53f-81ca001af17e	2021-05-25 10:39:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:39:16.79+03	2021-05-25 10:39:16.8+03	
1f194501-d4b7-4498-2259-f00b517f90f5	2021-05-25 10:39:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:39:36.79+03	2021-05-25 10:39:36.797+03	
cfac8863-b314-a66a-cec6-14e0d70274c7	2021-05-25 10:39:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:39:56.79+03	2021-05-25 10:39:56.798+03	
5b7f7602-db75-6e97-962c-e6c49fd347aa	2021-05-25 10:40:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:40:06.79+03	2021-05-25 10:40:06.796+03	
125d76a4-f0e4-3afc-99db-7561510e0caa	2021-05-25 10:40:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:40:26.79+03	2021-05-25 10:40:26.798+03	
800716b2-62ec-4c16-f65f-c17c7822fa98	2021-05-25 10:40:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:40:46.79+03	2021-05-25 10:40:46.799+03	
f7c0ab8a-63d6-4803-c951-c0d81e4b1ea0	2021-05-25 10:41:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:41:06.79+03	2021-05-25 10:41:06.798+03	
cbd45fc9-b105-4b96-c989-bf8c922bbab2	2021-05-25 10:41:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:41:26.79+03	2021-05-25 10:41:26.799+03	
4a3b4f1a-5831-d9f0-10b9-cb0a2a00a71c	2021-05-25 10:41:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:41:46.79+03	2021-05-25 10:41:46.796+03	
eeee497b-d2d0-6aea-ee5b-021600fdc3a4	2021-05-25 10:42:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:42:06.79+03	2021-05-25 10:42:06.796+03	
d4a17bd5-2863-3728-1c2a-e07652907f6e	2021-05-25 10:42:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:42:26.79+03	2021-05-25 10:42:26.804+03	
0e4cb5b8-bf8a-505f-cf23-ebb68c122db8	2021-05-25 10:42:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:42:46.79+03	2021-05-25 10:42:46.801+03	
4041990e-f6d3-6a68-8d81-f6c286d228a1	2021-05-25 10:43:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:43:06.79+03	2021-05-25 10:43:06.805+03	
6b1058a6-0e84-a7ee-5e5d-42dd555b7463	2021-05-25 10:43:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:43:26.79+03	2021-05-25 10:43:26.796+03	
4649a599-0ccf-06cf-9cfb-d1831f6a6995	2021-05-25 10:43:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:43:46.79+03	2021-05-25 10:43:46.797+03	
dc7bf0de-81f8-743e-3b55-32a9591a118a	2021-05-25 10:44:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:44:06.79+03	2021-05-25 10:44:06.796+03	
efe141a7-2802-cb59-7d5b-ef7ac3695136	2021-05-25 10:44:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:44:26.79+03	2021-05-25 10:44:26.798+03	
0cd0e12b-67a1-4156-f935-3b8ba515bd38	2021-05-25 10:44:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:44:46.79+03	2021-05-25 10:44:46.797+03	
f83826c5-e37e-cc64-b0a6-008936147b76	2021-05-25 10:45:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:45:06.79+03	2021-05-25 10:45:06.798+03	
f34a74e8-8855-d4d9-dbf4-43560af7b5e8	2021-05-25 10:45:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:45:26.79+03	2021-05-25 10:45:26.796+03	
e66f8196-cccc-e4be-5ad9-a84f68d34b4a	2021-05-25 10:45:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:45:46.79+03	2021-05-25 10:45:46.796+03	
a44ca114-a339-ab58-fe5b-1699c9ef2b01	2021-05-25 10:46:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:46:06.79+03	2021-05-25 10:46:06.796+03	
0c0f8e51-070d-e4b9-90eb-697ce4ce4b4a	2021-05-25 10:46:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:46:26.79+03	2021-05-25 10:46:26.798+03	
47d6a46f-ec8a-cf84-d868-dc8b308fe7c5	2021-05-25 10:46:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:46:46.79+03	2021-05-25 10:46:46.797+03	
fff2db29-7406-3c07-6182-1c0e7a0536c0	2021-05-25 10:47:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:47:06.79+03	2021-05-25 10:47:06.797+03	
bec22672-c474-7144-f0be-3b3952f84dab	2021-05-25 10:47:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:47:26.79+03	2021-05-25 10:47:26.797+03	
791166b2-f4b3-b320-dda6-4528f09931e8	2021-05-25 10:47:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:47:46.79+03	2021-05-25 10:47:46.796+03	
dad38f47-7d57-cb81-b658-1b808ef63c73	2021-05-25 10:48:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:48:06.79+03	2021-05-25 10:48:06.796+03	
7bca3e39-ddd0-d300-1779-ccb7ed11702e	2021-05-25 10:48:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:48:26.79+03	2021-05-25 10:48:26.798+03	
f3ec8754-94a7-b338-c6b2-f7d7ef5e16db	2021-05-25 10:48:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:48:46.79+03	2021-05-25 10:48:46.796+03	
3a7c1e5b-a763-4ab8-668b-7c45de98f9ef	2021-05-25 10:49:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:49:06.79+03	2021-05-25 10:49:06.798+03	
7e6ed727-cc7d-c537-b3d9-e5ef10ec63b0	2021-05-25 10:49:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:49:26.79+03	2021-05-25 10:49:26.796+03	
68f1adfa-4729-c107-d3be-e3027e048d33	2021-05-25 10:49:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:49:46.79+03	2021-05-25 10:49:46.798+03	
26809f5b-d246-89e5-1dee-65d4eca45ab6	2021-05-25 10:29:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:29:56.79+03	2021-05-25 10:29:56.799+03	
651667f7-ad32-6f25-af36-d1ecad87965d	2021-05-25 10:30:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:30:06.79+03	2021-05-25 10:30:06.799+03	
159b971d-c6ab-81ba-0f4e-6dd406d65a82	2021-05-25 10:30:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:30:26.79+03	2021-05-25 10:30:26.798+03	
0ed0ec09-8653-b6db-f578-340d5ea71bde	2021-05-25 10:30:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:30:46.79+03	2021-05-25 10:30:46.797+03	
b09c8d05-aad1-4a7a-6f11-930dc4413177	2021-05-25 10:31:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:31:06.79+03	2021-05-25 10:31:06.801+03	
7d77a5cf-3724-400b-099b-d5b0bc868b21	2021-05-25 10:31:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:31:26.79+03	2021-05-25 10:31:26.796+03	
1438b5ab-444f-b487-3b80-2634da218957	2021-05-25 10:31:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:31:46.79+03	2021-05-25 10:31:46.797+03	
2caa66cf-896f-cb7b-36b2-53cfeb8c86cd	2021-05-25 10:32:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:32:06.79+03	2021-05-25 10:32:06.796+03	
4400efef-5185-36a2-00fe-321d9901ede7	2021-05-25 10:32:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:32:26.79+03	2021-05-25 10:32:26.802+03	
aa9ee4f4-67cd-a861-b4e6-02743a741e7e	2021-05-25 10:32:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:32:46.79+03	2021-05-25 10:32:46.797+03	
ebbe4b89-17c4-32ec-f5a6-80d079cc99e8	2021-05-25 10:33:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:33:06.79+03	2021-05-25 10:33:06.798+03	
17339b76-af23-4ef2-b776-347fd3e142e5	2021-05-25 10:33:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:33:26.79+03	2021-05-25 10:33:26.796+03	
04fe10a5-972e-6ed6-b28c-299f7c7d06ed	2021-05-25 10:33:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:33:46.79+03	2021-05-25 10:33:46.799+03	
c2105d95-331c-46e1-83f5-2f0f426a7b3b	2021-05-25 10:34:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:34:06.79+03	2021-05-25 10:34:06.797+03	
dcfe61bb-9e75-362b-2571-17e339827bf1	2021-05-25 10:34:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:34:26.79+03	2021-05-25 10:34:26.797+03	
323c5eaf-a651-030d-fd64-cfa170a3a243	2021-05-25 10:34:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:34:46.79+03	2021-05-25 10:34:46.798+03	
c6dfa496-d492-38ad-b295-baf4a08b408c	2021-05-25 10:35:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:35:06.79+03	2021-05-25 10:35:06.798+03	
258fbdf1-668a-0ecd-226b-239f3ea9b8d3	2021-05-25 10:35:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:35:26.79+03	2021-05-25 10:35:26.801+03	
1a32ec46-8830-0b6e-3852-32bda456899f	2021-05-25 10:35:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:35:46.79+03	2021-05-25 10:35:46.796+03	
078b7fb9-5d36-e2e4-4ab5-dd5393079efa	2021-05-25 10:36:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:36:06.79+03	2021-05-25 10:36:06.796+03	
5c7805be-2157-cd5b-daa0-5036d5087cd1	2021-05-25 10:36:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:36:26.79+03	2021-05-25 10:36:26.797+03	
86f91efa-0c84-af20-fd6c-bfc5bb110f96	2021-05-25 10:36:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:36:46.79+03	2021-05-25 10:36:46.797+03	
bf25eaae-2117-66d6-b9fc-d1c1a4711261	2021-05-25 10:37:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:37:06.79+03	2021-05-25 10:37:06.797+03	
7ed8c7aa-b6f7-edeb-fa07-8f269faa851c	2021-05-25 10:37:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:37:26.79+03	2021-05-25 10:37:26.798+03	
5aa3eacd-a904-c00c-e552-cf0ccd5f62d5	2021-05-25 10:37:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:37:46.79+03	2021-05-25 10:37:46.797+03	
2cdfc316-8f53-e7e5-076b-b7005534d6a1	2021-05-25 10:38:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:38:06.79+03	2021-05-25 10:38:06.796+03	
ea60764f-5176-2d0e-3caa-b24c5ff4966d	2021-05-25 10:38:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:38:26.79+03	2021-05-25 10:38:26.797+03	
8328e83b-e784-abf0-1691-8b163771bc8d	2021-05-25 10:38:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:38:46.79+03	2021-05-25 10:38:46.797+03	
8b9d4495-8795-a6c5-9dc7-6880bea70e73	2021-05-25 10:39:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:39:06.79+03	2021-05-25 10:39:06.796+03	
19d21d06-4ea8-6519-6a1b-3a5cd30a0904	2021-05-25 10:39:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:39:26.79+03	2021-05-25 10:39:26.797+03	
e49f93f0-6ac1-039c-cd9f-91de9729e893	2021-05-25 10:39:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:39:46.79+03	2021-05-25 10:39:46.796+03	
09cb7e9c-dbbf-175d-9f29-0858a44319c3	2021-05-25 10:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 10:40:00.79+03	2021-05-25 10:40:00.795+03	ERROR
0c93fbb8-959b-d515-d67b-339fa2f72a78	2021-05-25 10:40:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:40:16.79+03	2021-05-25 10:40:16.797+03	
686c9ddd-a2b0-b5e1-00d3-eec524ffbf44	2021-05-25 10:40:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:40:36.79+03	2021-05-25 10:40:36.799+03	
568a4e50-da1f-ab20-8b11-212a350b8aef	2021-05-25 10:40:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:40:56.79+03	2021-05-25 10:40:56.798+03	
1e8ce092-a169-44f9-4dc3-3aa991f0f5d9	2021-05-25 10:41:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:41:16.79+03	2021-05-25 10:41:16.799+03	
6f7e253b-2033-3c23-1cd5-7b5e040e0dc5	2021-05-25 10:41:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:41:36.79+03	2021-05-25 10:41:36.797+03	
dcdbc1b9-bbd0-a78d-7302-5d71c0953237	2021-05-25 10:41:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:41:56.79+03	2021-05-25 10:41:56.797+03	
685afc26-3623-da5f-55e5-898c7444c163	2021-05-25 10:42:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:42:16.79+03	2021-05-25 10:42:16.803+03	
639dc3b3-d6c7-5daa-cbb3-d6cc6047fbaa	2021-05-25 10:42:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:42:36.79+03	2021-05-25 10:42:36.796+03	
95fa826b-2788-2e7c-9023-cb225857d681	2021-05-25 10:42:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:42:56.79+03	2021-05-25 10:42:56.798+03	
d315cbfa-0c9f-d50e-5831-6e0f0c097007	2021-05-25 10:43:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:43:16.79+03	2021-05-25 10:43:16.796+03	
404488ec-edbe-2111-a915-484b1b2ab5e0	2021-05-25 10:43:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:43:36.79+03	2021-05-25 10:43:36.797+03	
7947ab45-9cd0-2a63-112e-5e6964d671f5	2021-05-25 10:43:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:43:56.79+03	2021-05-25 10:43:56.796+03	
5699aa80-de4f-2192-7c2d-12e4cbda5276	2021-05-25 10:44:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:44:16.79+03	2021-05-25 10:44:16.796+03	
aa2b3b5a-e3c5-4633-7d42-c06ae25bfe11	2021-05-25 10:44:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:44:36.79+03	2021-05-25 10:44:36.796+03	
20ccc297-87f8-c0a9-a999-dcb77ccbf55a	2021-05-25 10:44:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:44:56.79+03	2021-05-25 10:44:56.797+03	
ad5e66d1-58b4-2342-b48d-a02ca1a5b9e1	2021-05-25 10:45:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:45:16.79+03	2021-05-25 10:45:16.798+03	
f50076a9-c652-657a-9e9c-6c5662be54bc	2021-05-25 10:45:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:45:36.79+03	2021-05-25 10:45:36.796+03	
2ca7aa16-1a48-0c9f-29a0-1c5deeb9cb4c	2021-05-25 10:45:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:45:56.79+03	2021-05-25 10:45:56.797+03	
9b275702-392f-8fa9-9012-7bf1267d45f2	2021-05-25 10:46:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:46:16.79+03	2021-05-25 10:46:16.849+03	
c8e74461-fb4f-c0cb-a354-04b1f5f92ed4	2021-05-25 10:46:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:46:36.79+03	2021-05-25 10:46:36.797+03	
894f74f8-9830-1f78-c831-c04f95817a74	2021-05-25 10:46:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:46:56.79+03	2021-05-25 10:46:56.797+03	
1bbd3407-1763-3ae1-8f3e-f937c595a4ac	2021-05-25 10:47:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:47:16.79+03	2021-05-25 10:47:16.797+03	
f993b6b3-be43-621d-da2f-43c060b9def0	2021-05-25 10:47:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:47:36.79+03	2021-05-25 10:47:36.796+03	
9c78ea68-dad7-97ba-a16a-9a19e6d91e1e	2021-05-25 10:47:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:47:56.79+03	2021-05-25 10:47:56.797+03	
9aa28db3-f28a-cfbe-6e4e-51d5b3e7ee57	2021-05-25 10:48:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:48:16.79+03	2021-05-25 10:48:16.798+03	
26d4a839-0238-cca9-f534-19c4961b9839	2021-05-25 10:48:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:48:36.79+03	2021-05-25 10:48:36.796+03	
b23f640e-66bc-08b9-3948-f054f68e25e4	2021-05-25 10:48:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:48:56.79+03	2021-05-25 10:48:56.797+03	
04daf255-5940-4b9b-85af-5afbacd3bdb4	2021-05-25 10:49:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:49:16.79+03	2021-05-25 10:49:16.798+03	
81ef26d9-d7ed-b2fd-1ec2-b5dc8d42b9ce	2021-05-25 10:49:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:49:36.79+03	2021-05-25 10:49:36.799+03	
c8c79cd4-288a-8366-4368-44bba5a7b2f5	2021-05-25 10:49:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:49:56.79+03	2021-05-25 10:49:56.796+03	
7abadc84-0efc-bd0f-7d48-d8ca4045a869	2021-05-25 10:50:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:50:06.79+03	2021-05-25 10:50:06.796+03	
270c3bba-3624-5c56-eeee-3c0eb570e2ee	2021-05-25 10:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 10:50:00.79+03	2021-05-25 10:50:00.795+03	ERROR
f3fe0860-76fd-9fab-2ec4-d95bf8d652b0	2021-05-25 10:50:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:50:16.79+03	2021-05-25 10:50:16.801+03	
457037ef-0a02-6582-7314-d8725ccd9eec	2021-05-25 10:50:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:50:36.79+03	2021-05-25 10:50:36.796+03	
5a41db67-c305-cad4-0d5d-732b6c2ffa5d	2021-05-25 10:50:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:50:56.79+03	2021-05-25 10:50:56.796+03	
d58af899-3573-f9b1-ca0a-d8ff7c13aa25	2021-05-25 10:51:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:51:16.79+03	2021-05-25 10:51:16.798+03	
5df340b4-c43f-927e-5d47-38e4fbb2ce6f	2021-05-25 10:51:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:51:36.79+03	2021-05-25 10:51:36.799+03	
66b479b8-9466-5b42-8eda-921ba238c8a5	2021-05-25 10:51:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:51:56.79+03	2021-05-25 10:51:56.796+03	
e9edbcca-0ca4-6c9d-207c-e399ceedabde	2021-05-25 10:52:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:52:16.79+03	2021-05-25 10:52:16.798+03	
2a069231-0f0c-c3b5-bc15-17dd32ea63ad	2021-05-25 10:52:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:52:37.79+03	2021-05-25 10:52:37.796+03	
be99eec8-07da-bfd8-4e1c-6d4595ed53fe	2021-05-25 10:52:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:52:58.79+03	2021-05-25 10:52:58.799+03	
b28c4b5e-36cc-6b2a-7336-aab7a69139ec	2021-05-25 10:53:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:53:18.79+03	2021-05-25 10:53:18.799+03	
d93aff15-7d59-a145-a108-17aa7656ac77	2021-05-25 10:53:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:53:38.79+03	2021-05-25 10:53:38.797+03	
9eaf0b44-769a-6641-3ddd-efeea26a8497	2021-05-25 10:53:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:53:58.79+03	2021-05-25 10:53:58.798+03	
2fbae7df-4a69-8b35-9240-8f981e433d01	2021-05-25 10:54:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:54:18.79+03	2021-05-25 10:54:18.796+03	
a8037f25-634c-3b24-38fa-fa4ebaeb445e	2021-05-25 10:54:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:54:38.79+03	2021-05-25 10:54:38.798+03	
885b57a5-371c-f9bf-91e8-cca9ba547d3c	2021-05-25 10:54:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:54:58.79+03	2021-05-25 10:54:58.796+03	
15335a91-6150-ff56-83df-566b19acd31f	2021-05-25 10:55:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:55:18.79+03	2021-05-25 10:55:18.797+03	
e83da365-a79e-3151-9da1-4a20745e2eb0	2021-05-25 10:55:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:55:38.79+03	2021-05-25 10:55:38.797+03	
0125718c-318d-9fe2-1354-6f81c27e4f5f	2021-05-25 10:55:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:55:58.79+03	2021-05-25 10:55:58.798+03	
1b3cb6fd-efcd-8685-5b82-0e7c2b1a746d	2021-05-25 10:56:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:56:18.79+03	2021-05-25 10:56:18.796+03	
1f44df88-f784-0d54-a8d2-36ab5b20e8c2	2021-05-25 10:56:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:56:38.79+03	2021-05-25 10:56:38.797+03	
db5936de-a22a-93be-9c04-f79936c82117	2021-05-25 10:56:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:56:58.79+03	2021-05-25 10:56:58.798+03	
518e6991-2578-61f5-980b-601d1fba9d1b	2021-05-25 10:57:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:57:18.79+03	2021-05-25 10:57:18.797+03	
c64337a2-ac1a-cd7e-a00f-ad465ae197f1	2021-05-25 10:57:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:57:39.79+03	2021-05-25 10:57:39.797+03	
b80b79dd-5bca-8a66-ff5d-5f8aa7e960e0	2021-05-25 10:57:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:57:59.79+03	2021-05-25 10:57:59.796+03	
24cbef0e-a9ff-bb78-d652-34181cce74be	2021-05-25 10:58:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:58:19.79+03	2021-05-25 10:58:19.797+03	
d8096bfe-508a-4b02-880c-4745e7fc3fd7	2021-05-25 10:58:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:58:39.79+03	2021-05-25 10:58:39.798+03	
2e9f268b-50cc-4a6e-1bc9-4679e0f1faa0	2021-05-25 10:58:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:58:59.79+03	2021-05-25 10:59:00.083+03	
c013a5e8-0c53-e13d-0d49-ade5e44ee3c7	2021-05-25 10:59:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:59:19.79+03	2021-05-25 10:59:19.797+03	
75a63b90-d6ce-f6e8-11e0-c95c25958b63	2021-05-25 10:59:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:59:39.79+03	2021-05-25 10:59:39.796+03	
7ae46908-d0a3-3d1f-0acc-031ba0eb0943	2021-05-25 10:59:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:59:59.79+03	2021-05-25 10:59:59.797+03	
bf9677cc-f411-4d84-9116-5ec528db9ff4	2021-05-25 11:00:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:00:09.791+03	2021-05-25 11:00:09.799+03	
4a93bbe0-5377-ab42-b3b1-cdb42d7faa7a	2021-05-25 11:00:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:00:30.79+03	2021-05-25 11:00:30.799+03	
1f91c36e-391b-5ae3-da46-1a20b33d6f62	2021-05-25 11:00:50.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:00:50.792+03	2021-05-25 11:00:50.8+03	
f95ee914-0072-31e0-c356-97b1c698a2e4	2021-05-25 11:01:11.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:01:11.791+03	2021-05-25 11:01:11.8+03	
5c44ad46-c9d5-0359-5474-14b955cf6de5	2021-05-25 11:01:32.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:01:32.791+03	2021-05-25 11:01:32.8+03	
54279a6f-545e-4ffa-4321-c13731b736bf	2021-05-25 11:01:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:01:53.79+03	2021-05-25 11:01:53.797+03	
62f23a78-4a43-236a-0704-637dac868503	2021-05-25 11:02:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:02:13.79+03	2021-05-25 11:02:13.799+03	
799fa15e-18be-3121-79c0-72e41f1ca434	2021-05-25 11:02:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:02:33.79+03	2021-05-25 11:02:33.798+03	
bca22f96-40da-8df3-64d5-4ec4cafab25f	2021-05-25 11:02:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:02:53.79+03	2021-05-25 11:02:53.8+03	
87dc86ed-9982-c4c5-417c-17ede5f34c92	2021-05-25 11:03:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:03:13.79+03	2021-05-25 11:03:13.798+03	
b5022f37-c9f3-793c-6476-bef61680f104	2021-05-25 11:03:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:03:33.79+03	2021-05-25 11:03:33.799+03	
c7dc0cce-4b6a-bf0d-5da5-c017dbb0bde3	2021-05-25 11:03:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:03:53.79+03	2021-05-25 11:03:53.797+03	
0dc32df7-5c34-24a7-0ec6-e43d4f353853	2021-05-25 11:04:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:04:13.79+03	2021-05-25 11:04:13.799+03	
a2edadab-b151-aea2-4cfa-feab16da3737	2021-05-25 11:04:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:04:33.79+03	2021-05-25 11:04:33.799+03	
b9b56cd8-4ca8-d116-9060-f80bfdbd5c80	2021-05-25 11:04:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:04:53.79+03	2021-05-25 11:04:53.807+03	
c3dafb7c-56db-1cbd-b371-d90dbf198c95	2021-05-25 11:05:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:05:13.79+03	2021-05-25 11:05:13.8+03	
fa53ea20-76ef-e8ae-a8dc-510e271ce21f	2021-05-25 11:05:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:05:33.791+03	2021-05-25 11:05:33.8+03	
123aa5d9-37dc-a919-bfdb-01c2f461b99a	2021-05-25 11:05:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:05:54.791+03	2021-05-25 11:05:54.799+03	
40500361-b17d-8402-74d8-bfde990d4cef	2021-05-25 11:06:15.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:06:15.79+03	2021-05-25 11:06:15.798+03	
f32b76fd-07d9-84d6-85e7-e3b93b6657bc	2021-05-25 11:06:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:06:36.79+03	2021-05-25 11:06:36.798+03	
c19fb265-ab28-bca2-cfd3-4ec594660546	2021-05-25 11:06:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:06:56.79+03	2021-05-25 11:06:56.8+03	
c2afea87-fd6b-d688-2941-fedb1afe65ac	2021-05-25 11:07:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:07:17.79+03	2021-05-25 11:07:17.798+03	
76bf2f83-1c19-1ae4-75eb-4da3fd138eb2	2021-05-25 11:07:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:07:37.79+03	2021-05-25 11:07:37.797+03	
24b0700d-85b3-e8f4-83be-992495ff139b	2021-05-25 11:07:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:07:57.79+03	2021-05-25 11:07:57.798+03	
0e8eb686-36f1-7815-4d2e-af5be55c2582	2021-05-25 11:08:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:08:17.79+03	2021-05-25 11:08:17.798+03	
0c37871e-9be2-7685-d2ac-d80a26089a00	2021-05-25 11:08:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:08:37.79+03	2021-05-25 11:08:37.799+03	
57e9695b-c7be-8650-4019-45f96e757c16	2021-05-25 11:08:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:08:57.79+03	2021-05-25 11:08:57.798+03	
e0978267-6e4d-d6a2-8932-0e3bc9b343b3	2021-05-25 11:09:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:09:17.79+03	2021-05-25 11:09:17.797+03	
3d54520a-1c9b-22f1-9276-f09245a3a7f5	2021-05-25 11:09:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:09:37.79+03	2021-05-25 11:09:37.797+03	
a2042bbc-546f-6695-fe78-325898683845	2021-05-25 11:09:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:09:57.791+03	2021-05-25 11:09:57.798+03	
094d2257-817f-f34a-e598-349d691e6910	2021-05-25 11:10:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:10:07.791+03	2021-05-25 11:10:07.799+03	
6b597300-d646-2616-07b3-8786ccef9142	2021-05-25 11:10:27.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:10:27.791+03	2021-05-25 11:10:27.8+03	
56f0e28b-ed0f-7fb6-b35d-5e20e3a3cefe	2021-05-25 10:50:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:50:26.79+03	2021-05-25 10:50:26.796+03	
96bd1336-fc31-9788-d80f-96a0d5931536	2021-05-25 10:50:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:50:46.79+03	2021-05-25 10:50:46.806+03	
67ff5c8f-26e5-f1fe-5289-ad15c0703ddf	2021-05-25 10:51:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:51:06.79+03	2021-05-25 10:51:06.795+03	
a2b118ba-a3e9-ea39-0354-c4d97e8d2a64	2021-05-25 10:51:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:51:26.79+03	2021-05-25 10:51:26.796+03	
a37debce-a8d2-b341-7223-6899a61599d6	2021-05-25 10:51:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:51:46.79+03	2021-05-25 10:51:46.798+03	
96df7d3b-52af-1301-a667-3529363ac3b8	2021-05-25 10:52:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:52:06.79+03	2021-05-25 10:52:06.797+03	
4ad35c04-3d8b-19d1-21b6-ae4d1f8892cd	2021-05-25 10:52:26.805	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:52:26.805+03	2021-05-25 10:52:26.813+03	
9427a440-950e-1e08-9c91-52b7f2ef3af1	2021-05-25 10:52:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:52:47.791+03	2021-05-25 10:52:47.801+03	
3c509538-a4fa-cab4-cf31-3448be2f6dc9	2021-05-25 10:53:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:53:08.79+03	2021-05-25 10:53:08.802+03	
4954dde6-2cbb-fdeb-5f22-b3225f463c0c	2021-05-25 10:53:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:53:28.79+03	2021-05-25 10:53:28.796+03	
2e37e633-0fd4-2020-84c4-5e83cf557ca9	2021-05-25 10:53:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:53:48.79+03	2021-05-25 10:53:48.796+03	
d4a48fb2-d2cf-120d-e4f5-367b979c1ffc	2021-05-25 10:54:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:54:08.79+03	2021-05-25 10:54:08.797+03	
91dce612-2663-abc5-75b9-80d62bdafc58	2021-05-25 10:54:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:54:28.79+03	2021-05-25 10:54:28.798+03	
00a55277-8eea-4d21-9b3b-844a4b0d0816	2021-05-25 10:54:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:54:48.79+03	2021-05-25 10:54:48.797+03	
c03a83ee-0a40-b449-9287-2837b71b5b73	2021-05-25 10:55:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:55:08.79+03	2021-05-25 10:55:08.796+03	
888e5df3-7bce-bdae-1bd3-d37807e6d7ac	2021-05-25 10:55:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:55:28.79+03	2021-05-25 10:55:28.797+03	
b60aba37-9a9c-73b0-dd0e-04008ca3956d	2021-05-25 10:55:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:55:48.79+03	2021-05-25 10:55:48.797+03	
e85d3172-3888-88ff-7754-63a0f298e670	2021-05-25 10:56:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:56:08.79+03	2021-05-25 10:56:08.798+03	
6efc22b2-040f-73b7-f592-c4a8684b8619	2021-05-25 10:56:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:56:28.79+03	2021-05-25 10:56:28.803+03	
88f29bd9-3d39-07e3-9564-9a9d7e868fde	2021-05-25 10:56:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:56:48.79+03	2021-05-25 10:56:48.797+03	
18d62f3b-8909-729e-6408-da7305739e31	2021-05-25 10:57:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:57:08.79+03	2021-05-25 10:57:08.798+03	
95d85ecb-9465-1c1e-a2f0-063a1ff45ff0	2021-05-25 10:57:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:57:28.791+03	2021-05-25 10:57:28.801+03	
4e35077a-6e76-eb64-289c-80ab0475fe8a	2021-05-25 10:57:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:57:49.79+03	2021-05-25 10:57:49.797+03	
2513c5a0-25a3-87c7-ae07-a25507e8c077	2021-05-25 10:58:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:58:09.79+03	2021-05-25 10:58:09.797+03	
2020a817-4675-805d-959a-46541d267311	2021-05-25 10:58:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:58:29.79+03	2021-05-25 10:58:29.799+03	
c3877c48-7105-a5b5-482d-c195ce9365d8	2021-05-25 10:58:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:58:49.79+03	2021-05-25 10:58:49.797+03	
981fca9d-0816-41bc-dfa0-b97a55ba2dd4	2021-05-25 10:59:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:59:09.79+03	2021-05-25 10:59:09.797+03	
194c0112-8cbf-0992-c3ec-00dc6ee0f552	2021-05-25 10:59:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:59:29.79+03	2021-05-25 10:59:29.847+03	
e8246069-0f2f-5357-8d51-7543620dfce9	2021-05-25 10:59:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 10:59:49.79+03	2021-05-25 10:59:49.798+03	
570b9c33-c87b-49e1-9371-aff9a6ea4433	2021-05-25 11:00:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 11:00:00.791+03	2021-05-25 11:00:00.796+03	ERROR
f84af989-35a2-cac8-93fe-54621d8a0bfc	2021-05-25 11:00:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:00:20.79+03	2021-05-25 11:00:20.798+03	
17df231b-3462-fcf7-ea2b-8219e649a678	2021-05-25 11:00:40.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:00:40.791+03	2021-05-25 11:00:40.798+03	
b363487b-d12e-f334-30e9-7ef9ba419656	2021-05-25 11:01:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:01:01.791+03	2021-05-25 11:01:01.799+03	
c3672951-2b5d-7989-18ff-75e4bd7f7cae	2021-05-25 11:01:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:01:22.79+03	2021-05-25 11:01:22.799+03	
2fde0277-4dd2-f5a7-00fa-421df01dbaba	2021-05-25 11:01:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:01:43.79+03	2021-05-25 11:01:43.798+03	
ba896695-4c27-0884-ddfd-76043b38e511	2021-05-25 11:02:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:02:03.79+03	2021-05-25 11:02:03.798+03	
847a9c75-6eb6-3f2d-22a7-df8cdf6172e9	2021-05-25 11:02:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:02:23.79+03	2021-05-25 11:02:23.798+03	
7fe117be-42c3-7eb2-9814-94f2f987d203	2021-05-25 11:02:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:02:43.79+03	2021-05-25 11:02:43.799+03	
626882dd-eae2-87fb-2409-eba60b3fcbf9	2021-05-25 11:03:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:03:03.79+03	2021-05-25 11:03:03.797+03	
bdff6aee-3fb5-103b-68ca-ea3c91d38484	2021-05-25 11:03:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:03:23.79+03	2021-05-25 11:03:23.798+03	
fd75d9a5-100a-d7c4-94bd-55d2c1f519e5	2021-05-25 11:03:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:03:43.79+03	2021-05-25 11:03:43.798+03	
355d266b-42b5-012f-3283-9b05a2332a44	2021-05-25 11:04:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:04:03.79+03	2021-05-25 11:04:03.797+03	
797f3f06-589a-d5ad-5ce8-1da8aeafb96b	2021-05-25 11:04:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:04:23.79+03	2021-05-25 11:04:23.802+03	
c17b0028-523b-613d-26a5-4dc2e6648029	2021-05-25 11:04:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:04:43.79+03	2021-05-25 11:04:43.798+03	
21227c9d-421b-0ca8-c7c8-4efb78951787	2021-05-25 11:05:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:05:03.79+03	2021-05-25 11:05:03.798+03	
f1ef9b52-63c5-072b-1481-3e7f81db1fe1	2021-05-25 11:05:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:05:23.79+03	2021-05-25 11:05:23.798+03	
a913ee0a-6912-b769-32e4-ad0cbc54eb0e	2021-05-25 11:05:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:05:44.79+03	2021-05-25 11:05:44.799+03	
db73ea15-6549-dfc3-cba2-4a015c2b9c34	2021-05-25 11:06:05.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:06:05.79+03	2021-05-25 11:06:05.797+03	
88726aff-61e6-7c8a-5147-edae2a8e113c	2021-05-25 11:06:25.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:06:25.792+03	2021-05-25 11:06:25.799+03	
1ba22bdc-5178-9fcb-5c29-2d4d3cdcf6f5	2021-05-25 11:06:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:06:46.79+03	2021-05-25 11:06:46.799+03	
a2b29372-25f7-69e1-ea1c-15cec2691d19	2021-05-25 11:07:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:07:06.791+03	2021-05-25 11:07:06.799+03	
9a935d1f-cbdc-fba7-53a9-0067da3b3bd6	2021-05-25 11:07:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:07:27.79+03	2021-05-25 11:07:27.801+03	
98251e1c-9cd9-753c-b475-108f1192d681	2021-05-25 11:07:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:07:47.79+03	2021-05-25 11:07:47.798+03	
8d5f92da-cf3e-b1b0-e921-7c0f4ecbdfb8	2021-05-25 11:08:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:08:07.79+03	2021-05-25 11:08:07.798+03	
66d60a24-1d4d-dd95-86f9-a30d55723282	2021-05-25 11:08:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:08:27.79+03	2021-05-25 11:08:27.798+03	
f11e2d93-ea0b-0184-e381-242c60196b2b	2021-05-25 11:08:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:08:47.79+03	2021-05-25 11:08:47.798+03	
80c3bc80-eabe-c083-33da-d02c1d5bdf18	2021-05-25 11:09:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:09:07.79+03	2021-05-25 11:09:07.798+03	
8c1570fd-4ca0-cf11-1f8e-a1e1cd0d8c4e	2021-05-25 11:09:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:09:27.79+03	2021-05-25 11:09:27.798+03	
03b0aa80-df16-7046-0fab-753a2ba8f0c1	2021-05-25 11:09:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:09:47.79+03	2021-05-25 11:09:47.798+03	
6687fa87-ee08-b3ee-d3dc-105ccfd7df5e	2021-05-25 11:10:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 11:10:00.79+03	2021-05-25 11:10:00.797+03	ERROR
30915050-a9a6-f039-6977-82d66b2764c6	2021-05-25 11:10:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:10:17.791+03	2021-05-25 11:10:17.802+03	
cde5a0e0-c0de-d6b9-ac40-ae4e5450dc1f	2021-05-25 11:10:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:10:38.79+03	2021-05-25 11:10:38.798+03	
245d7d63-830c-fd36-85ac-615072c61f70	2021-05-25 11:10:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:10:58.791+03	2021-05-25 11:10:58.799+03	
486db1d5-981e-da89-ec84-c79b7c3bcdce	2021-05-25 11:10:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:10:48.791+03	2021-05-25 11:10:48.799+03	
074b41af-df4c-a11b-7edd-726480bae0b4	2021-05-25 11:11:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:11:09.79+03	2021-05-25 11:11:09.798+03	
ec321bd2-edf1-dd97-f8ef-99b570ad38f2	2021-05-25 11:11:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:11:29.79+03	2021-05-25 11:11:29.798+03	
13a0f6e2-2183-7647-bc00-82a0ad8d9adb	2021-05-25 11:11:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:11:49.79+03	2021-05-25 11:11:49.799+03	
67dd94ee-7eac-f779-30d7-e8ecdf72cfd9	2021-05-25 11:12:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:12:09.79+03	2021-05-25 11:12:09.798+03	
b4903395-da8a-be36-2db5-455c61d90a98	2021-05-25 11:12:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:12:29.79+03	2021-05-25 11:12:29.798+03	
357ac701-b89d-02cb-b8b5-8c7cfeac3ace	2021-05-25 11:12:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:12:49.79+03	2021-05-25 11:12:49.798+03	
9835c2f8-768e-2d45-180f-f5bfdd78a179	2021-05-25 11:13:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:13:09.79+03	2021-05-25 11:13:09.799+03	
9bc3424f-ac7d-a3c4-0955-65647dd15461	2021-05-25 11:13:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:13:29.79+03	2021-05-25 11:13:29.8+03	
219ee76f-7a1e-a908-48e8-77a50cb353f9	2021-05-25 11:13:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:13:49.79+03	2021-05-25 11:13:49.798+03	
53d33a92-d4eb-5d40-97ea-0a5298902ceb	2021-05-25 11:14:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:14:09.79+03	2021-05-25 11:14:09.798+03	
5ca52c53-e08f-563f-ae07-b8b246eb7c63	2021-05-25 11:14:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:14:29.79+03	2021-05-25 11:14:29.799+03	
daf6d831-b1ef-f954-42bb-6bd951707b59	2021-05-25 11:14:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:14:49.79+03	2021-05-25 11:14:49.799+03	
9f798fb6-3a79-26cb-2d0e-7fcc80d777e2	2021-05-25 11:15:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:15:09.79+03	2021-05-25 11:15:09.805+03	
d9ce0066-775a-ab0b-f7a6-4b44ffb2f3e4	2021-05-25 11:15:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:15:29.79+03	2021-05-25 11:15:29.798+03	
92d88100-7c79-99b6-83c1-c82203c7a96c	2021-05-25 11:15:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:15:49.79+03	2021-05-25 11:15:49.798+03	
2f217cc6-c2da-0dce-6739-7c0b152b5187	2021-05-25 11:16:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:16:09.79+03	2021-05-25 11:16:09.798+03	
5d88f460-59e1-3705-6df1-d10a9545d07e	2021-05-25 11:16:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:16:30.79+03	2021-05-25 11:16:30.798+03	
ee75efdd-306d-f925-131c-c55e480ad88a	2021-05-25 11:16:50.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:16:50.792+03	2021-05-25 11:16:50.799+03	
316ad950-9ebc-b8d0-8163-9d4fd43b0256	2021-05-25 11:17:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:17:11.79+03	2021-05-25 11:17:11.798+03	
33eaf1d8-a195-4d51-1607-490c85b0e830	2021-05-25 11:17:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:17:31.79+03	2021-05-25 11:17:31.798+03	
9693525f-3072-b860-3277-57b9a3cecc82	2021-05-25 11:17:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:17:51.79+03	2021-05-25 11:17:51.799+03	
8e3d45f9-761e-9a09-f617-58de016b784a	2021-05-25 11:18:11.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:18:11.79+03	2021-05-25 11:18:11.8+03	
def2eb85-b444-8343-d0e8-70884a6149d7	2021-05-25 11:18:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:18:31.79+03	2021-05-25 11:18:31.798+03	
a46fc801-e5e5-c7af-b120-a17bedab55a1	2021-05-25 11:18:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:18:51.79+03	2021-05-25 11:18:51.798+03	
369a0749-eea8-84e0-323b-e6a1298a962d	2021-05-25 11:19:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:19:11.79+03	2021-05-25 11:19:11.798+03	
d005d6e7-fe5b-e7ef-23a5-9fa2455af7fd	2021-05-25 11:19:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:19:31.79+03	2021-05-25 11:19:31.799+03	
0e6e071c-c269-5c33-ab05-fbd0f3c87048	2021-05-25 11:19:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:19:51.79+03	2021-05-25 11:19:51.798+03	
766925eb-416a-ad8c-46dd-417fcfa12307	2021-05-25 11:20:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:20:01.79+03	2021-05-25 11:20:01.798+03	
b4890222-93fc-b453-1f24-9451fc56ca17	2021-05-25 11:20:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:20:21.79+03	2021-05-25 11:20:21.797+03	
33792f26-5979-b7ad-88b9-06224ac4ab31	2021-05-25 11:20:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:20:41.79+03	2021-05-25 11:20:41.798+03	
5df6629c-d5ea-428f-e385-b2c065aa1e21	2021-05-25 11:21:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:21:01.791+03	2021-05-25 11:21:01.798+03	
ef57532f-acf8-89c7-5664-bbe21a483ec1	2021-05-25 11:21:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:21:22.79+03	2021-05-25 11:21:22.798+03	
2e9aeaa5-de0c-c345-14a3-2ff19b144cc9	2021-05-25 11:21:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:21:43.79+03	2021-05-25 11:21:43.798+03	
91bb643f-2cde-1673-0f5c-302ea5f897ab	2021-05-25 11:22:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:22:03.79+03	2021-05-25 11:22:03.798+03	
a44ef67c-8180-8d79-33a6-8b0dfba9c4d5	2021-05-25 11:22:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:22:23.79+03	2021-05-25 11:22:23.798+03	
b27688ca-dee0-a918-088e-c85e557e8752	2021-05-25 11:22:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:22:43.79+03	2021-05-25 11:22:43.798+03	
3cbdf29c-7910-4627-c697-8137be2e4345	2021-05-25 11:23:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:23:04.79+03	2021-05-25 11:23:04.798+03	
b7dd57f7-7053-17d9-17ef-5011abc80713	2021-05-25 11:23:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:23:24.79+03	2021-05-25 11:23:24.798+03	
f12c4658-b3f5-35df-7858-90db2e99eaf1	2021-05-25 11:23:45.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:23:45.792+03	2021-05-25 11:23:45.801+03	
cd251303-111c-d811-3be8-269570d3eb0a	2021-05-25 11:24:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:24:06.791+03	2021-05-25 11:24:06.806+03	
dab57355-b927-6a56-690a-1375c86fe9c2	2021-05-25 11:24:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:24:27.79+03	2021-05-25 11:24:27.8+03	
a1b8e64e-2beb-077d-49a4-b4c2c3eb9dc6	2021-05-25 11:24:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:24:47.791+03	2021-05-25 11:24:47.8+03	
b04037f5-d8ea-a122-64d7-eb30d8dc3952	2021-05-25 11:25:08.853	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:25:08.794+03	2021-05-25 11:25:08.867+03	
b3d3fe06-64be-951f-285f-4a1ff83ea538	2021-05-25 11:25:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:25:29.79+03	2021-05-25 11:25:29.807+03	
8d9cfa8c-296d-0a23-c316-9d2fdcf6d184	2021-05-25 11:25:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:25:49.79+03	2021-05-25 11:25:49.809+03	
46a9e15a-5de3-e06e-09bc-bae8192af577	2021-05-25 11:26:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:26:09.791+03	2021-05-25 11:26:09.803+03	
4f878bf0-fa69-44f7-4682-b5257d08bc2a	2021-05-25 11:26:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:26:30.79+03	2021-05-25 11:26:30.797+03	
195e093b-b15c-3258-d1ad-8444d9258be8	2021-05-25 11:26:50.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:26:50.791+03	2021-05-25 11:26:50.802+03	
7f68569e-46c8-2a64-838c-43d8176b70dd	2021-05-25 11:27:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:27:11.79+03	2021-05-25 11:27:11.799+03	
f95f0dfe-42bb-b979-06bb-314bfb2b73a7	2021-05-25 11:27:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:27:31.79+03	2021-05-25 11:27:31.798+03	
a8e9dc45-6228-6eb0-872a-41297649127c	2021-05-25 11:27:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:27:51.79+03	2021-05-25 11:27:51.797+03	
6455edcd-71cd-e328-8988-018adaa02f34	2021-05-25 11:28:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:28:11.79+03	2021-05-25 11:28:11.798+03	
152e291e-6d84-b899-49a6-c2703ad87f15	2021-05-25 11:28:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:28:31.79+03	2021-05-25 11:28:31.798+03	
bbb99dec-da0f-4811-88e4-3f82cdc79fdb	2021-05-25 11:28:51.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:28:51.791+03	2021-05-25 11:28:51.813+03	
8c0f2906-d276-6bcd-409f-f57e6323bb1f	2021-05-25 11:29:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:29:12.79+03	2021-05-25 11:29:12.806+03	
1dbb69bf-c976-2985-ca9c-ab79056c7787	2021-05-25 11:29:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:29:32.79+03	2021-05-25 11:29:32.798+03	
4cd39fa3-320d-dfb5-eced-518ce1e8ec36	2021-05-25 11:29:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:29:52.79+03	2021-05-25 11:29:52.805+03	
5fdfae59-fe85-78bf-2053-919687c07c32	2021-05-25 11:30:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:30:02.79+03	2021-05-25 11:30:02.812+03	
1d59ded7-006e-8c8e-7d18-0507980785aa	2021-05-25 11:30:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:30:22.79+03	2021-05-25 11:30:22.799+03	
3b232adf-83d0-8157-fb36-6494c447c7f8	2021-05-25 11:30:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:30:42.79+03	2021-05-25 11:30:42.799+03	
e224f1ba-4a0e-1441-a2a8-f0f2f113b767	2021-05-25 11:31:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:31:02.79+03	2021-05-25 11:31:02.797+03	
1571cb92-7a3e-082e-6c2f-71757c17ae1b	2021-05-25 11:31:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:31:22.79+03	2021-05-25 11:31:22.803+03	
d00db470-9488-ef27-0e4f-19d19876afdf	2021-05-25 11:11:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:11:19.79+03	2021-05-25 11:11:19.798+03	
ccf6bc1d-a493-2283-721f-c921ffd08a44	2021-05-25 11:11:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:11:39.79+03	2021-05-25 11:11:39.798+03	
15c418b6-9bea-9a5d-9b04-01f38f696a93	2021-05-25 11:11:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:11:59.79+03	2021-05-25 11:11:59.798+03	
48245dc5-ac16-1566-7221-c27587b72493	2021-05-25 11:12:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:12:19.79+03	2021-05-25 11:12:19.808+03	
58a64a0d-4dba-bf89-014e-9cfa34cf75ef	2021-05-25 11:12:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:12:39.79+03	2021-05-25 11:12:39.798+03	
8dae6850-086b-08da-36a2-325c10a9abbc	2021-05-25 11:12:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:12:59.79+03	2021-05-25 11:12:59.797+03	
0f72dc81-0081-47a9-2c47-3aca64b750be	2021-05-25 11:13:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:13:19.79+03	2021-05-25 11:13:19.798+03	
b5b7dee4-50b7-0e27-3a99-839c3fec3ceb	2021-05-25 11:13:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:13:39.79+03	2021-05-25 11:13:39.798+03	
75bd114c-87b1-cae7-2fb2-5bdfef4587d6	2021-05-25 11:13:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:13:59.79+03	2021-05-25 11:13:59.798+03	
47630956-4dfc-6021-7e29-30e5e45cd1bf	2021-05-25 11:14:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:14:19.79+03	2021-05-25 11:14:19.798+03	
a99bca31-47f7-a4b2-59da-e0673065c204	2021-05-25 11:14:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:14:39.79+03	2021-05-25 11:14:39.797+03	
9d4ab87a-5d4a-8895-9ca7-68f667496c45	2021-05-25 11:14:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:14:59.79+03	2021-05-25 11:14:59.799+03	
6f51ce8c-29f9-d034-db68-600a8c77cec4	2021-05-25 11:15:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:15:19.79+03	2021-05-25 11:15:19.798+03	
45e0246a-e211-dbbd-ea3f-ea298f33e12c	2021-05-25 11:15:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:15:39.79+03	2021-05-25 11:15:39.798+03	
429f74e2-fd99-c553-f0cc-92e48b5be7b3	2021-05-25 11:15:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:15:59.79+03	2021-05-25 11:15:59.798+03	
79d8a353-e41a-1bbc-da1d-0bee0e9539fb	2021-05-25 11:16:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:16:19.791+03	2021-05-25 11:16:19.799+03	
64d833fe-3324-e4d3-84ba-0699225ee603	2021-05-25 11:16:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:16:40.79+03	2021-05-25 11:16:40.798+03	
240e6dc4-f597-701d-c942-86de4ff0da31	2021-05-25 11:17:00.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:17:00.792+03	2021-05-25 11:17:00.799+03	
1a4f311f-67f7-46b4-1fff-c7ebc86c146f	2021-05-25 11:17:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:17:21.79+03	2021-05-25 11:17:21.798+03	
392a5279-04f3-f018-0030-2cc365763bea	2021-05-25 11:17:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:17:41.79+03	2021-05-25 11:17:41.798+03	
32303d4c-86b6-924f-6db2-41aa00a4caa6	2021-05-25 11:18:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:18:01.79+03	2021-05-25 11:18:01.797+03	
835d9cf0-2bd6-896a-82bd-91f8ecdfc507	2021-05-25 11:18:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:18:21.79+03	2021-05-25 11:18:21.805+03	
d49662e0-9bd2-d17b-7c5f-605cedb49260	2021-05-25 11:18:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:18:41.79+03	2021-05-25 11:18:41.799+03	
0902a380-2a00-c762-feae-a4947c9ebc64	2021-05-25 11:19:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:19:01.79+03	2021-05-25 11:19:01.797+03	
a0ecb01e-1e37-ccde-517f-1053fb5b56c2	2021-05-25 11:19:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:19:21.79+03	2021-05-25 11:19:21.801+03	
b0389150-596f-b2af-ddca-43e3310149da	2021-05-25 11:19:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:19:41.79+03	2021-05-25 11:19:41.799+03	
42eb683a-66d9-0968-3101-dfa35b2251e2	2021-05-25 11:20:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 11:20:00.791+03	2021-05-25 11:20:00.797+03	ERROR
9c651ae3-1d62-78ef-1808-997bbcf2ce6c	2021-05-25 11:20:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:20:11.79+03	2021-05-25 11:20:11.798+03	
15cf0f72-bdc0-8d53-c967-ede0fe7b078c	2021-05-25 11:20:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:20:31.79+03	2021-05-25 11:20:31.798+03	
7751e956-2c88-f5cf-434f-ed7f9c2f3988	2021-05-25 11:20:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:20:51.79+03	2021-05-25 11:20:51.798+03	
786f83e7-83c4-a960-8574-52bb15bd8971	2021-05-25 11:21:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:21:12.79+03	2021-05-25 11:21:12.799+03	
c0ac7a37-beef-777e-b45e-7147fe4b4363	2021-05-25 11:21:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:21:32.791+03	2021-05-25 11:21:32.803+03	
ad249735-689c-629b-ab4a-85b0a65c0fe5	2021-05-25 11:21:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:21:53.79+03	2021-05-25 11:21:53.798+03	
2242666c-59be-a8d6-19dc-601d585dafe8	2021-05-25 11:22:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:22:13.79+03	2021-05-25 11:22:13.798+03	
4fbe954e-ac32-f4cb-998b-eaf071c8d38a	2021-05-25 11:22:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:22:33.79+03	2021-05-25 11:22:33.797+03	
5b77ffeb-02a3-2d5e-ae98-c53def097793	2021-05-25 11:22:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:22:53.791+03	2021-05-25 11:22:53.804+03	
a35b9e6e-8248-bc4f-df00-90775ec5beb4	2021-05-25 11:23:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:23:14.79+03	2021-05-25 11:23:14.798+03	
c8a25153-4f6f-bae9-84b8-02f0d3f57824	2021-05-25 11:23:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:23:34.791+03	2021-05-25 11:23:34.801+03	
25c93718-a3bd-c3c8-5199-7a6d94fc22e9	2021-05-25 11:23:55.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:23:55.792+03	2021-05-25 11:23:55.805+03	
700e831f-98bd-38dd-42c3-1b826f7f1b04	2021-05-25 11:24:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:24:17.79+03	2021-05-25 11:24:17.799+03	
41cded3a-dc0c-01c1-707f-09e58d375049	2021-05-25 11:24:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:24:37.79+03	2021-05-25 11:24:37.8+03	
8bb52406-fcd3-c1b1-a830-23add3b61251	2021-05-25 11:24:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:24:57.791+03	2021-05-25 11:24:57.8+03	
e2b6fb01-71ba-10c0-7feb-83987e8eea12	2021-05-25 11:25:18.9	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:25:18.794+03	2021-05-25 11:25:18.919+03	
d0f2f454-a13b-6925-b57e-79420e20f4c5	2021-05-25 11:25:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:25:39.79+03	2021-05-25 11:25:39.821+03	
1edb8b10-52c6-9cc2-00d3-707794647b61	2021-05-25 11:25:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:25:59.79+03	2021-05-25 11:25:59.805+03	
1461d8d5-b20e-12a6-de81-40ba5976b20d	2021-05-25 11:26:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:26:20.79+03	2021-05-25 11:26:20.809+03	
4d208af1-7810-056c-dbf6-1a67ac3f517f	2021-05-25 11:26:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:26:40.79+03	2021-05-25 11:26:40.798+03	
17a32668-3cae-6c58-78b0-80f66af5a527	2021-05-25 11:27:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:27:01.79+03	2021-05-25 11:27:01.798+03	
45a7a872-eaf3-1336-69cd-fc38c13743a1	2021-05-25 11:27:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:27:21.79+03	2021-05-25 11:27:21.798+03	
d6a09513-03fd-994c-09ee-e7343218eb51	2021-05-25 11:27:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:27:41.79+03	2021-05-25 11:27:41.801+03	
5256c646-95d5-da43-c6a7-e14f9f74083f	2021-05-25 11:28:01.849	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:28:01.79+03	2021-05-25 11:28:01.863+03	
b24b0de2-d39c-4b76-97c9-0def3fac2fbf	2021-05-25 11:28:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:28:21.79+03	2021-05-25 11:28:21.799+03	
5439bb81-4bbb-7c7e-ee0e-5f746da11a07	2021-05-25 11:28:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:28:41.79+03	2021-05-25 11:28:41.813+03	
66f717db-b410-20cf-d070-aa646af32613	2021-05-25 11:29:01.85	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:29:01.85+03	2021-05-25 11:29:01.87+03	
36229b44-23c1-fb0f-1fad-18e98ce0fc0f	2021-05-25 11:29:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:29:22.79+03	2021-05-25 11:29:22.802+03	
d4831afd-6538-5640-409b-77275f4b829c	2021-05-25 11:29:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:29:42.79+03	2021-05-25 11:29:42.801+03	
4ec30b94-1a36-98cf-d261-70f7c42e0f71	2021-05-25 11:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 11:30:00.79+03	2021-05-25 11:30:00.799+03	ERROR
bedf8015-2175-9719-171a-c58667fb5a1c	2021-05-25 11:30:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:30:12.79+03	2021-05-25 11:30:12.798+03	
b0287bec-d179-dc32-00cc-261aae68fa3f	2021-05-25 11:30:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:30:32.79+03	2021-05-25 11:30:32.797+03	
5569676a-95e4-46d5-72cc-a736c832d8a1	2021-05-25 11:30:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:30:52.79+03	2021-05-25 11:30:52.798+03	
41cb4a12-65ac-89fd-e0e3-cadd84a4714e	2021-05-25 11:31:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:31:12.79+03	2021-05-25 11:31:12.797+03	
9e0b7449-3862-f1ad-fd82-aa739f712f98	2021-05-25 11:31:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:31:32.79+03	2021-05-25 11:31:32.832+03	
044c16b9-dea6-56ac-4953-2f37d9842c3a	2021-05-25 11:31:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:31:52.79+03	2021-05-25 11:31:52.802+03	
a34466c9-aabb-4f24-c5ad-2753d807ddd0	2021-05-25 11:31:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:31:42.79+03	2021-05-25 11:31:42.798+03	
79922fd7-9958-704c-393a-0ec9d88f7cd0	2021-05-25 11:32:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:32:02.79+03	2021-05-25 11:32:02.797+03	
4d659587-1c70-376d-92ce-1767e3becebc	2021-05-25 11:32:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:32:22.79+03	2021-05-25 11:32:22.797+03	
1c851ca4-70fd-9eee-1007-5273e704dfe8	2021-05-25 11:32:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:32:42.79+03	2021-05-25 11:32:42.797+03	
2e1f385b-3500-0ad8-5d10-cb7fab18c268	2021-05-25 11:33:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:33:02.79+03	2021-05-25 11:33:02.801+03	
ebee755d-e84b-2492-c646-4cdb854268c0	2021-05-25 11:33:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:33:22.79+03	2021-05-25 11:33:22.807+03	
e916b6e3-c334-9dd7-d9ac-7ca73d39bef3	2021-05-25 11:33:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:33:42.79+03	2021-05-25 11:33:42.798+03	
8f8673ba-42d9-242d-f961-70e4da4a7d5e	2021-05-25 11:34:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:34:02.79+03	2021-05-25 11:34:02.798+03	
85876bd9-272c-2db8-f3e9-47d45028fbdc	2021-05-25 11:34:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:34:22.79+03	2021-05-25 11:34:22.796+03	
82e6b4c5-ffe0-22d3-bfec-c5a4785bfc06	2021-05-25 11:34:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:34:42.79+03	2021-05-25 11:34:42.797+03	
1265800f-6a4e-fbb6-9110-e2ddc3491122	2021-05-25 11:35:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:35:02.79+03	2021-05-25 11:35:02.796+03	
3e5255ba-2b2e-2471-cdb5-f19636690082	2021-05-25 11:35:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:35:22.79+03	2021-05-25 11:35:22.797+03	
2a253fde-ca24-574f-75a9-156fd4df4c4d	2021-05-25 11:35:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:35:42.79+03	2021-05-25 11:35:42.796+03	
26eb9609-d9d1-d715-c53b-896100a96312	2021-05-25 11:36:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:36:02.79+03	2021-05-25 11:36:02.797+03	
f4214727-79ca-e716-d393-4a0a6f54ccbb	2021-05-25 11:36:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:36:22.79+03	2021-05-25 11:36:22.797+03	
ccb002b7-5e7d-1dad-f7d1-e581e8798552	2021-05-25 11:36:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:36:42.79+03	2021-05-25 11:36:42.796+03	
a510489e-f3d1-30c6-0769-f936b1115acd	2021-05-25 11:37:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:37:02.79+03	2021-05-25 11:37:02.796+03	
e8b1b9d4-317f-152e-ee3e-8804db6f9129	2021-05-25 11:37:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:37:22.79+03	2021-05-25 11:37:22.796+03	
45784cd5-1984-d0a3-58ce-b3a0d11c9677	2021-05-25 11:37:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:37:42.79+03	2021-05-25 11:37:42.797+03	
38ed9fe2-be30-ebcc-3a01-ec17e7b2e3ee	2021-05-25 11:38:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:38:02.79+03	2021-05-25 11:38:02.8+03	
68d627e6-59b5-2624-72c2-5bbdf49a98ba	2021-05-25 11:38:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:38:22.79+03	2021-05-25 11:38:22.798+03	
692b89ee-498c-222c-626b-0994c7bb0cc7	2021-05-25 11:38:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:38:42.79+03	2021-05-25 11:38:42.802+03	
eb61bc43-575f-62af-4232-e95d61f93a78	2021-05-25 11:39:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:39:12.79+03	2021-05-25 11:39:12.805+03	
6d1f1754-1f2e-237c-9527-fddc24a8ce87	2021-05-25 11:39:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:39:32.79+03	2021-05-25 11:39:32.798+03	
416f1dd4-495e-4f6d-6efd-436e4609d254	2021-05-25 11:39:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:39:52.79+03	2021-05-25 11:39:52.808+03	
506b747e-de7a-cc73-2194-d94ae1444c1e	2021-05-25 11:40:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:40:02.79+03	2021-05-25 11:40:02.797+03	
b935d6e0-1369-6968-0f37-843d79989341	2021-05-25 11:40:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:40:22.79+03	2021-05-25 11:40:22.812+03	
871ad4ce-074a-fdb2-e397-e23c5792a022	2021-05-25 11:40:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:40:42.79+03	2021-05-25 11:40:42.806+03	
ea1cb5ab-a980-6ba6-4fd8-d9b59a38b451	2021-05-25 11:41:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:41:02.79+03	2021-05-25 11:41:02.799+03	
3964f94d-f8a0-f3d8-735e-588f4bfe44c0	2021-05-25 11:41:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:41:22.79+03	2021-05-25 11:41:22.799+03	
0c26e35a-47c6-09f2-2a8d-c4147f1dcf74	2021-05-25 11:41:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:41:42.79+03	2021-05-25 11:41:42.81+03	
0ce489bd-34a9-968f-532d-bf271b5335f5	2021-05-25 11:42:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:42:02.79+03	2021-05-25 11:42:02.797+03	
c04b86e9-18f2-d55e-33bd-3eb8e9fef6c8	2021-05-25 11:42:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:42:22.79+03	2021-05-25 11:42:22.812+03	
b2fba32e-9d06-eb1a-4fde-2cb182ef5fd6	2021-05-25 11:42:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:42:43.79+03	2021-05-25 11:42:43.797+03	
3c3e243f-23c4-a489-9df2-4e4d502afd62	2021-05-25 11:43:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:43:03.79+03	2021-05-25 11:43:03.8+03	
4c99708b-1d0c-d1ca-b496-111f385e1728	2021-05-25 11:43:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:43:23.79+03	2021-05-25 11:43:23.8+03	
b2281e56-33ae-c37d-7fa9-6f433b098977	2021-05-25 11:43:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:43:43.79+03	2021-05-25 11:43:43.798+03	
85d058cc-e838-ace8-6dc7-c8fb9f304402	2021-05-25 11:44:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:44:13.79+03	2021-05-25 11:44:13.797+03	
c29f8b0e-45f2-8626-1e0c-7d58444453a2	2021-05-25 11:44:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:44:33.79+03	2021-05-25 11:44:33.8+03	
f8fcd3e2-9b2e-5491-f35d-f5cffea416a7	2021-05-25 11:44:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:44:53.79+03	2021-05-25 11:44:53.798+03	
babdd615-3629-04b8-7544-d646d84b1f91	2021-05-25 11:45:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:45:13.79+03	2021-05-25 11:45:13.796+03	
fca0cc50-d913-cd1f-985a-287439c3b974	2021-05-25 11:45:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:45:33.79+03	2021-05-25 11:45:33.798+03	
8ad7bccc-6765-c96e-7072-bdd4b70e4bc5	2021-05-25 11:45:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:45:53.79+03	2021-05-25 11:45:53.797+03	
1648f725-15cf-d8fb-3e3b-0ba44b1e3775	2021-05-25 11:46:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:46:13.79+03	2021-05-25 11:46:13.805+03	
2b8b3388-f2df-0420-b4d5-df66fc6dcc22	2021-05-25 11:46:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:46:33.79+03	2021-05-25 11:46:33.812+03	
3c4157bf-1d8f-2680-3519-01c5fdb324b5	2021-05-25 11:46:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:46:53.79+03	2021-05-25 11:46:53.798+03	
3f1a5424-f8d3-6dd9-3930-83ad409fa8b6	2021-05-25 11:47:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:47:13.79+03	2021-05-25 11:47:13.8+03	
a967e1e5-7776-0bba-b22e-a13abbe09c7d	2021-05-25 11:47:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:47:23.79+03	2021-05-25 11:47:23.798+03	
97d5d619-386d-3132-05b6-c4d4857508cb	2021-05-25 11:47:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:47:43.79+03	2021-05-25 11:47:43.803+03	
29a8cbeb-cab7-65e9-a736-fac62ba2977d	2021-05-25 11:48:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:48:03.79+03	2021-05-25 11:48:03.796+03	
898a300b-5c12-2493-97c5-b71ba39504f6	2021-05-25 11:48:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:48:23.79+03	2021-05-25 11:48:23.799+03	
6f125581-6175-6171-ac9f-2ddde029299a	2021-05-25 11:48:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:48:43.79+03	2021-05-25 11:48:43.799+03	
6f1f5ba6-477a-1844-62b0-36b7d41fe1a2	2021-05-25 11:49:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:49:03.79+03	2021-05-25 11:49:03.797+03	
31962118-99f8-facf-c2c3-18f74f11059a	2021-05-25 11:49:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:49:23.79+03	2021-05-25 11:49:23.798+03	
0a7becae-a4ea-09b9-d670-67e3fd683d58	2021-05-25 11:49:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:49:43.79+03	2021-05-25 11:49:43.798+03	
050c5600-0d35-5ac9-40e1-6d84451844ad	2021-05-25 11:50:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 11:50:00.791+03	2021-05-25 11:50:00.796+03	ERROR
f113647a-6869-6799-948c-0c73e6aaccc7	2021-05-25 11:50:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:50:13.79+03	2021-05-25 11:50:13.797+03	
a0157e4a-69a0-448c-d593-5295d9a92e7b	2021-05-25 11:50:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:50:33.79+03	2021-05-25 11:50:33.802+03	
6bc6d24e-4d4e-2f98-27d3-acd08900e4f5	2021-05-25 11:50:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:50:53.79+03	2021-05-25 11:50:53.798+03	
4bc2a597-a0e3-cc72-4fbf-5595b273b3b8	2021-05-25 11:51:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:51:13.79+03	2021-05-25 11:51:13.797+03	
d5e9f174-c43d-ee5b-63de-5c0e42566f13	2021-05-25 11:51:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:51:33.79+03	2021-05-25 11:51:33.797+03	
83822d1e-2728-9d38-555a-7a2e4215c69f	2021-05-25 11:51:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:51:53.79+03	2021-05-25 11:51:53.812+03	
1c6faa12-3f25-4c76-b42d-b4b62131b894	2021-05-25 11:52:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:52:13.79+03	2021-05-25 11:52:13.797+03	
fd57674e-5cab-08c6-0347-3d7ff3da90b0	2021-05-25 11:32:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:32:12.79+03	2021-05-25 11:32:12.797+03	
15f85dea-90ec-2ebe-d9e6-ced692af3858	2021-05-25 11:32:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:32:32.79+03	2021-05-25 11:32:32.799+03	
57e2e277-7371-2f54-1cf8-7deabef5fd9c	2021-05-25 11:32:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:32:52.79+03	2021-05-25 11:32:52.797+03	
55ef01ab-7eff-1466-9086-2750c210284c	2021-05-25 11:33:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:33:12.79+03	2021-05-25 11:33:12.799+03	
cc5355d0-7848-d96c-638c-d7b466b642d9	2021-05-25 11:33:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:33:32.79+03	2021-05-25 11:33:32.797+03	
133dd3f6-a8fc-5625-11e5-b5080327284f	2021-05-25 11:33:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:33:52.79+03	2021-05-25 11:33:52.801+03	
41d57a27-ce8f-1ab2-b350-df38bc4dae4e	2021-05-25 11:34:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:34:12.79+03	2021-05-25 11:34:12.801+03	
bc1729f8-d9d8-18ad-12f7-b7b5e61768d3	2021-05-25 11:34:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:34:32.79+03	2021-05-25 11:34:32.808+03	
c91ee118-f503-0a26-3097-88a72ef447ae	2021-05-25 11:34:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:34:52.79+03	2021-05-25 11:34:52.808+03	
41d66300-eb95-2f72-ab15-d60b12304a3d	2021-05-25 11:35:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:35:12.79+03	2021-05-25 11:35:12.796+03	
0ced759c-4f68-f1c0-c7d7-fe8f6a45e8f1	2021-05-25 11:35:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:35:32.79+03	2021-05-25 11:35:32.796+03	
8e5cedcd-f981-283e-bb8f-a61783c81c08	2021-05-25 11:35:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:35:52.79+03	2021-05-25 11:35:52.81+03	
42f08c08-805d-593c-4c85-d91705f4460b	2021-05-25 11:36:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:36:12.79+03	2021-05-25 11:36:12.796+03	
95d3ac53-e5dd-3a71-bcac-e5f4e788c44a	2021-05-25 11:36:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:36:32.79+03	2021-05-25 11:36:32.798+03	
39e05a3a-41db-28aa-7787-546ff2c23ec8	2021-05-25 11:36:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:36:52.79+03	2021-05-25 11:36:52.797+03	
c63b79dd-1581-bf50-c031-473d3a59ba5c	2021-05-25 11:37:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:37:12.79+03	2021-05-25 11:37:12.797+03	
74fc775c-fede-3524-726c-fa25c8564444	2021-05-25 11:37:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:37:32.79+03	2021-05-25 11:37:32.796+03	
345976ee-67a9-5660-1513-bb3b112c3379	2021-05-25 11:37:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:37:52.79+03	2021-05-25 11:37:52.799+03	
fcc4f49c-fd6d-298b-1941-87d2d01a21f2	2021-05-25 11:38:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:38:12.79+03	2021-05-25 11:38:12.798+03	
64810f70-652b-8acc-64eb-f9efbf70355a	2021-05-25 11:38:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:38:32.79+03	2021-05-25 11:38:32.809+03	
ce00f4a8-da6e-983b-043d-c6f942f00aae	2021-05-25 11:38:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:38:52.79+03	2021-05-25 11:38:52.799+03	
2719f443-c8f7-66cf-fa2c-832b6f8bba2c	2021-05-25 11:39:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:39:02.79+03	2021-05-25 11:39:02.804+03	
35fe8cd0-280d-919a-8311-eb54d5a14ed1	2021-05-25 11:39:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:39:22.79+03	2021-05-25 11:39:22.799+03	
dc8ddf34-c562-9bb4-ea54-a218d9c26ab9	2021-05-25 11:39:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:39:42.79+03	2021-05-25 11:39:42.797+03	
50df8da1-ae1d-cd7a-1a6e-2d3a524ace84	2021-05-25 11:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 11:40:00.79+03	2021-05-25 11:40:00.796+03	ERROR
76bcf62f-e91d-af58-a0b4-8d1ac19775c0	2021-05-25 11:40:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:40:12.79+03	2021-05-25 11:40:12.812+03	
a21d205b-11cd-de15-bb36-3a894a2bd042	2021-05-25 11:40:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:40:32.79+03	2021-05-25 11:40:32.798+03	
ae01484a-acca-d6c4-7c2e-f6e4ce3e3d16	2021-05-25 11:40:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:40:52.79+03	2021-05-25 11:40:52.796+03	
71cc09b7-1b3f-23ac-8dcf-1138e4f05bb8	2021-05-25 11:41:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:41:12.79+03	2021-05-25 11:41:12.806+03	
8678b5f2-078d-729f-b1a1-b910469b5721	2021-05-25 11:41:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:41:32.79+03	2021-05-25 11:41:32.799+03	
0e02972d-dbf7-d5ef-2231-7cd4c2728de3	2021-05-25 11:41:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:41:52.79+03	2021-05-25 11:41:52.797+03	
01a82b39-e455-1f5f-76b6-64ec37d4e51e	2021-05-25 11:42:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:42:12.79+03	2021-05-25 11:42:12.798+03	
a30cbb25-da4f-427f-6290-938d80a981ae	2021-05-25 11:42:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:42:32.791+03	2021-05-25 11:42:32.798+03	
a0f4e37b-e7ac-87d8-2c01-11edfbc90975	2021-05-25 11:42:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:42:53.79+03	2021-05-25 11:42:53.799+03	
9986ae2a-e770-6de1-8ab6-0469c591259d	2021-05-25 11:43:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:43:13.79+03	2021-05-25 11:43:13.797+03	
28b50509-04d8-b6b0-eea4-14523f4dc1f3	2021-05-25 11:43:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:43:33.79+03	2021-05-25 11:43:33.814+03	
97b45b44-b0ab-e9fc-4af6-38cef7355add	2021-05-25 11:43:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:43:53.79+03	2021-05-25 11:43:53.819+03	
832b7d67-ab46-f40a-391c-af31eabbc7b2	2021-05-25 11:44:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:44:03.79+03	2021-05-25 11:44:03.799+03	
2ff0d3ee-eef4-7d7f-500d-e8d7c40a1864	2021-05-25 11:44:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:44:23.79+03	2021-05-25 11:44:23.799+03	
02853598-5429-f758-93d6-d4b2b403fb70	2021-05-25 11:44:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:44:43.79+03	2021-05-25 11:44:43.797+03	
1967a6a2-88d6-d062-9726-1853b864d0f0	2021-05-25 11:45:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:45:03.79+03	2021-05-25 11:45:03.798+03	
541297bd-a170-0594-10f9-1ab681cf37cf	2021-05-25 11:45:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:45:23.79+03	2021-05-25 11:45:23.798+03	
d10db2a1-a2b2-e24a-27ca-f64b98b43fb3	2021-05-25 11:45:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:45:43.79+03	2021-05-25 11:45:43.799+03	
6dab7a29-dbe8-bfe8-d97f-4ec2f40682ea	2021-05-25 11:46:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:46:03.79+03	2021-05-25 11:46:03.798+03	
a3514271-b058-e61f-150c-b43782707be6	2021-05-25 11:46:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:46:23.79+03	2021-05-25 11:46:23.798+03	
e4094418-b2ed-95d8-d339-cf979e2df392	2021-05-25 11:46:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:46:43.79+03	2021-05-25 11:46:43.797+03	
81e92424-685b-cf13-23b2-f05da7f1155d	2021-05-25 11:47:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:47:03.79+03	2021-05-25 11:47:03.8+03	
089db36a-23b1-b00e-57c4-a7d22a533e8e	2021-05-25 11:47:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:47:33.79+03	2021-05-25 11:47:33.797+03	
9853efc5-54af-07d2-c737-c117750f06b8	2021-05-25 11:47:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:47:53.79+03	2021-05-25 11:47:53.798+03	
d0cdb9eb-0124-b03c-e364-e416a04ea2cb	2021-05-25 11:48:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:48:13.79+03	2021-05-25 11:48:13.796+03	
a05ca222-6d8c-e85b-ec27-7d38ca9865ff	2021-05-25 11:48:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:48:33.79+03	2021-05-25 11:48:33.811+03	
ee78026d-0038-a86d-4d4b-7ece3a2ba315	2021-05-25 11:48:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:48:53.79+03	2021-05-25 11:48:53.797+03	
dcc6bd3b-55ef-9487-9c80-aabcda88247f	2021-05-25 11:49:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:49:13.79+03	2021-05-25 11:49:13.797+03	
d8561ea2-dc86-e913-68f8-6dcc1e5e585d	2021-05-25 11:49:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:49:33.79+03	2021-05-25 11:49:33.797+03	
68fab261-c211-aeed-a6e5-15b4f32abc48	2021-05-25 11:49:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:49:53.79+03	2021-05-25 11:49:53.797+03	
20818a17-7723-7147-af5a-bcc436a3e3e5	2021-05-25 11:50:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:50:03.79+03	2021-05-25 11:50:03.797+03	
b8b582fa-e399-c524-d7b2-ad950433df59	2021-05-25 11:50:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:50:23.79+03	2021-05-25 11:50:23.8+03	
41da7cd4-e942-5768-b860-184062ccd01d	2021-05-25 11:50:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:50:43.79+03	2021-05-25 11:50:43.797+03	
53145a71-42fa-c127-9d7f-819b0330d0a5	2021-05-25 11:51:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:51:03.79+03	2021-05-25 11:51:03.797+03	
dd86f608-be03-d0ad-3260-a09368b14a54	2021-05-25 11:51:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:51:23.79+03	2021-05-25 11:51:23.816+03	
8dff78b7-cbd5-f7c6-b899-3d93e00cbfa9	2021-05-25 11:51:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:51:43.79+03	2021-05-25 11:51:43.797+03	
3504d089-cbd5-1dd0-0b23-1c377327878c	2021-05-25 11:52:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:52:03.79+03	2021-05-25 11:52:03.796+03	
6a740839-1652-69f2-c294-56337ec4ee4d	2021-05-25 11:52:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:52:23.79+03	2021-05-25 11:52:23.798+03	
dca49ea6-2404-ff58-8675-6729bf6a0229	2021-05-25 11:52:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:52:33.79+03	2021-05-25 11:52:33.796+03	
9707929c-55c1-5996-518b-d61f99af1bd8	2021-05-25 11:52:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:52:53.79+03	2021-05-25 11:52:53.797+03	
8e0a47fe-b4af-a8cf-17fc-3ddeeefafdd1	2021-05-25 11:53:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:53:13.79+03	2021-05-25 11:53:13.796+03	
76a54f27-1a44-9fb0-8418-1afba2142f59	2021-05-25 11:53:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:53:33.79+03	2021-05-25 11:53:33.798+03	
daf06820-4022-d983-a5cf-1aef0f5b322e	2021-05-25 11:53:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:53:53.79+03	2021-05-25 11:53:53.797+03	
fb8b94d1-a07f-ad3f-b832-0d775f74d966	2021-05-25 11:54:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:54:13.79+03	2021-05-25 11:54:13.797+03	
bfbfcacb-5dc9-ce7f-86ff-1983d2e953f3	2021-05-25 11:54:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:54:33.79+03	2021-05-25 11:54:33.813+03	
b556ad7b-4178-314d-ca2c-2552e7b58f0b	2021-05-25 11:54:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:54:53.79+03	2021-05-25 11:54:53.809+03	
8dbe9017-c3f0-7b8f-0cfb-db3d7d0104b1	2021-05-25 11:55:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:55:13.79+03	2021-05-25 11:55:13.811+03	
c79774a3-1a6d-93e5-b002-c9151b65dede	2021-05-25 11:55:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:55:43.79+03	2021-05-25 11:55:43.797+03	
de951bfc-9eff-d837-0493-57c02d5027b7	2021-05-25 11:56:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:56:03.79+03	2021-05-25 11:56:03.797+03	
8cf59035-e8f2-2275-28d4-f68106ffe621	2021-05-25 11:56:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:56:23.79+03	2021-05-25 11:56:23.798+03	
6392c4cb-37a0-ee2e-9f4e-11f750b7cd75	2021-05-25 11:56:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:56:43.79+03	2021-05-25 11:56:43.796+03	
cb22c2ca-5176-9423-2448-fb89fa6bb26e	2021-05-25 11:57:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:57:03.79+03	2021-05-25 11:57:03.796+03	
02601323-549c-9640-de59-4e5dccf00f70	2021-05-25 11:57:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:57:23.79+03	2021-05-25 11:57:23.796+03	
9adea029-1772-75f0-b901-60ee4e8aef5f	2021-05-25 11:57:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:57:43.79+03	2021-05-25 11:57:43.796+03	
e7b62506-b864-243b-e031-cc007e57350b	2021-05-25 11:58:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:58:03.79+03	2021-05-25 11:58:03.806+03	
bdd2e0f8-dbab-19fd-66a5-fa618bfb4229	2021-05-25 11:58:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:58:23.79+03	2021-05-25 11:58:23.798+03	
64288e60-b2b6-26e4-e1b9-b0ab417a31a5	2021-05-25 11:58:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:58:43.79+03	2021-05-25 11:58:43.796+03	
a47ed224-67ce-b784-1cae-baa07b506252	2021-05-25 11:59:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:59:03.79+03	2021-05-25 11:59:03.796+03	
ef26abb2-a9c9-f127-cf1d-76827e61aa3f	2021-05-25 11:59:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:59:23.79+03	2021-05-25 11:59:23.797+03	
4f0f7f36-a33b-52fc-f5ac-c5ae31a7d1a6	2021-05-25 11:59:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:59:43.79+03	2021-05-25 11:59:43.798+03	
49edbcc6-79a5-288f-7cfc-fffcda768b61	2021-05-25 12:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 12:00:00.79+03	2021-05-25 12:00:00.796+03	ERROR
326fe0c6-4c42-4d37-aaec-f58d173981e1	2021-05-25 12:00:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:00:13.79+03	2021-05-25 12:00:13.797+03	
4075cf8b-37d6-a772-92b1-4bc08de0a6cf	2021-05-25 12:00:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:00:33.79+03	2021-05-25 12:00:33.796+03	
6e6eea79-7256-c8d8-8716-2539d13db500	2021-05-25 12:00:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:00:53.79+03	2021-05-25 12:00:53.797+03	
bee60734-ce17-c913-90a2-b145668a248f	2021-05-25 12:01:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:01:13.79+03	2021-05-25 12:01:13.8+03	
6b05ba9a-d372-240a-f403-770b68744221	2021-05-25 12:01:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:01:33.79+03	2021-05-25 12:01:33.796+03	
18f9319c-01a0-02c0-709d-241cbe808b09	2021-05-25 12:01:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:01:53.79+03	2021-05-25 12:01:53.8+03	
d19cb528-7c44-83f9-f2d9-a71a35c14eee	2021-05-25 12:02:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:02:13.79+03	2021-05-25 12:02:13.799+03	
78aecbf4-0ed2-f592-d3d4-37f48373f9e6	2021-05-25 12:02:33.794	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:02:33.793+03	2021-05-25 12:02:33.802+03	
d9af22c8-d700-9d68-1fe8-5d27f8367ea1	2021-05-25 12:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:02:54.79+03	2021-05-25 12:02:54.797+03	
969467e3-bae5-7a55-3d85-45d7f370a15e	2021-05-25 12:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:03:14.79+03	2021-05-25 12:03:14.797+03	
6d8af643-9062-fa62-c4d3-8c43d69c727d	2021-05-25 12:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:03:34.79+03	2021-05-25 12:03:34.797+03	
5b5b6708-4cfc-e7aa-9238-453fe68607fc	2021-05-25 12:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:03:54.79+03	2021-05-25 12:03:54.814+03	
fd4a0d55-2b56-5716-61dc-bf220492f95b	2021-05-25 12:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:04:14.79+03	2021-05-25 12:04:14.797+03	
9de83601-3445-7876-fcf0-9479b9f31ffa	2021-05-25 12:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:04:34.79+03	2021-05-25 12:04:34.797+03	
5c775d04-d5b0-4c98-8b0a-9daedd0cdd49	2021-05-25 12:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:04:54.79+03	2021-05-25 12:04:54.797+03	
d4d221a5-6644-e05f-6a8b-b68bd852dd22	2021-05-25 12:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:05:14.79+03	2021-05-25 12:05:14.797+03	
6f8c8648-8835-602d-0cc8-c86a35eaab5e	2021-05-25 12:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:05:34.79+03	2021-05-25 12:05:34.796+03	
eb6ca308-27a9-9818-91d8-312f3e08eedb	2021-05-25 12:05:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:05:54.79+03	2021-05-25 12:05:54.797+03	
77e04026-28f9-260e-c4d4-9bd9f5ab13da	2021-05-25 12:06:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:06:14.79+03	2021-05-25 12:06:14.799+03	
bd91bb68-66b8-b4f6-8f08-ee47c812aac3	2021-05-25 12:06:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:06:34.79+03	2021-05-25 12:06:34.797+03	
ba96c905-de0b-8a66-2b1c-3cc5e84c96bd	2021-05-25 12:06:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:06:54.79+03	2021-05-25 12:06:54.799+03	
bdacc6b3-6678-2cc3-3196-785f738ad8fa	2021-05-25 12:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:07:24.79+03	2021-05-25 12:07:24.799+03	
55e48210-a684-c762-665f-532a9abd074c	2021-05-25 12:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:07:44.79+03	2021-05-25 12:07:44.811+03	
3ce4d21d-ec89-9291-5ee3-f4f65e57ca09	2021-05-25 12:08:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:08:04.79+03	2021-05-25 12:08:04.799+03	
6b53092c-05a6-d9b5-b2f6-ded066fe3d96	2021-05-25 12:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:08:24.79+03	2021-05-25 12:08:24.806+03	
0580caa1-22c0-55e7-7d6f-d3f09ee288ce	2021-05-25 12:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:08:44.79+03	2021-05-25 12:08:44.797+03	
61c743f6-e6c2-9dda-41a6-7b28863ebb7c	2021-05-25 12:09:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:09:04.79+03	2021-05-25 12:09:04.797+03	
4ca6fbe0-bebf-e588-1107-243512ce4734	2021-05-25 12:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:09:24.79+03	2021-05-25 12:09:24.799+03	
61eefb3a-5118-28f0-8b0c-ef5762c2d097	2021-05-25 12:09:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:09:44.79+03	2021-05-25 12:09:44.797+03	
074ebe5c-0f72-fe4c-cee3-d66e90310a30	2021-05-25 12:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 12:10:00.79+03	2021-05-25 12:10:00.794+03	ERROR
65d92c9b-34c5-c9ee-dd3a-55aae53eaea5	2021-05-25 12:10:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:10:14.79+03	2021-05-25 12:10:14.8+03	
7777ffc4-d2b0-42ad-3dad-df493c2c8f78	2021-05-25 12:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:10:34.79+03	2021-05-25 12:10:34.808+03	
521cf96f-3e07-6402-5941-657390d1c8e1	2021-05-25 12:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:10:54.79+03	2021-05-25 12:10:54.799+03	
2246767e-a196-4373-9a21-2b25410f423a	2021-05-25 12:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:11:14.79+03	2021-05-25 12:11:14.796+03	
a3fd8000-3886-e4b1-6dda-e6a01bfd6814	2021-05-25 12:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:11:34.79+03	2021-05-25 12:11:34.797+03	
0f41a52c-8f60-a923-7b95-7606d624b8bd	2021-05-25 12:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:11:54.79+03	2021-05-25 12:11:54.797+03	
febb4f4f-7665-4b48-3251-38000282c2b0	2021-05-25 12:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:12:14.79+03	2021-05-25 12:12:14.796+03	
1f6d0ed4-7d16-5cd8-3801-d062a2e621ce	2021-05-25 12:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:12:34.79+03	2021-05-25 12:12:34.797+03	
aa2930c7-ac83-4e93-a605-bd796599eac9	2021-05-25 12:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:12:54.79+03	2021-05-25 12:12:54.799+03	
a2eaf6a4-dc27-2bc0-f1cd-42c77569f5fa	2021-05-25 12:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:13:14.79+03	2021-05-25 12:13:14.797+03	
06807284-7d42-13a0-d758-72b801dcf6fc	2021-05-25 11:52:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:52:43.79+03	2021-05-25 11:52:43.797+03	
84f742a9-3723-af1a-35c1-3ad41ada1ad2	2021-05-25 11:53:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:53:03.79+03	2021-05-25 11:53:03.797+03	
8517536a-3a54-c41d-f348-1216d47dd270	2021-05-25 11:53:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:53:23.79+03	2021-05-25 11:53:23.798+03	
062ed150-968d-593e-724f-a386a33c09fb	2021-05-25 11:53:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:53:43.79+03	2021-05-25 11:53:43.797+03	
e7ae743e-18a2-334e-2046-529934062cda	2021-05-25 11:54:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:54:03.79+03	2021-05-25 11:54:03.797+03	
9dff8733-f9da-53a1-2adc-c11a5938efd2	2021-05-25 11:54:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:54:23.79+03	2021-05-25 11:54:23.799+03	
db9d236b-df44-f3e8-7875-e7e6180d5c92	2021-05-25 11:54:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:54:43.79+03	2021-05-25 11:54:43.799+03	
9562cb1d-1f90-139b-2bed-fa1bb69edace	2021-05-25 11:55:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:55:03.79+03	2021-05-25 11:55:03.796+03	
3156a290-e8e8-7cdc-eb8d-d2336af8f4a6	2021-05-25 11:55:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:55:23.79+03	2021-05-25 11:55:23.798+03	
85add4ce-5e13-384c-56fd-081d2c235a89	2021-05-25 11:55:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:55:33.79+03	2021-05-25 11:55:33.798+03	
cd5ae89d-f3ad-8eda-1d3c-649de6f890ad	2021-05-25 11:55:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:55:53.79+03	2021-05-25 11:55:53.811+03	
a6820ec5-d0c7-9746-b7d6-8f6b89e2f01b	2021-05-25 11:56:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:56:13.79+03	2021-05-25 11:56:13.813+03	
79a1818c-f289-a5b0-0f0e-625bdf5142ff	2021-05-25 11:56:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:56:33.79+03	2021-05-25 11:56:33.798+03	
2e3e0fa6-da53-2240-8b80-4be1e19f7d31	2021-05-25 11:56:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:56:53.79+03	2021-05-25 11:56:53.796+03	
787b427b-0905-6621-3069-f56911446056	2021-05-25 11:57:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:57:13.79+03	2021-05-25 11:57:13.799+03	
2a905343-c98c-383c-f7b5-2209060a95e8	2021-05-25 11:57:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:57:33.79+03	2021-05-25 11:57:33.797+03	
8eaea7ce-446f-e2a5-6817-89d70a5e9690	2021-05-25 11:57:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:57:53.79+03	2021-05-25 11:57:53.799+03	
751d1149-fa78-0523-ddc7-d8a87cebca73	2021-05-25 11:58:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:58:13.79+03	2021-05-25 11:58:13.799+03	
3dcc2e9f-2e9c-d41f-c1ca-ea5fb76c30ae	2021-05-25 11:58:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:58:33.79+03	2021-05-25 11:58:33.796+03	
be150c56-f276-b5da-62cd-072a121a2a1e	2021-05-25 11:58:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:58:53.79+03	2021-05-25 11:58:53.808+03	
e4b26aec-1494-9a62-0d5e-4f6f1de201c9	2021-05-25 11:59:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:59:13.79+03	2021-05-25 11:59:13.797+03	
a2372739-c62b-f4ca-2b2b-77bdab7980e5	2021-05-25 11:59:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:59:33.79+03	2021-05-25 11:59:33.797+03	
0117baec-ec3f-76fe-cc8f-be0b8d238a1c	2021-05-25 11:59:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 11:59:53.79+03	2021-05-25 11:59:53.797+03	
b22fae88-a18e-9b60-8592-00f95683956f	2021-05-25 12:00:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:00:03.79+03	2021-05-25 12:00:03.797+03	
ac8529e2-b318-c880-5d48-637f8ae224bb	2021-05-25 12:00:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:00:23.79+03	2021-05-25 12:00:23.798+03	
75b10806-6f6e-8f27-95ae-d1d7a9b5ef16	2021-05-25 12:00:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:00:43.79+03	2021-05-25 12:00:43.798+03	
57589787-5f4b-1d76-4c44-b1eafeb2e9a3	2021-05-25 12:01:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:01:03.79+03	2021-05-25 12:01:03.797+03	
8f75f8e4-0698-5512-8563-147ca33435d5	2021-05-25 12:01:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:01:23.79+03	2021-05-25 12:01:23.797+03	
86422cf9-f4b6-64bf-df7a-08e1233712e1	2021-05-25 12:01:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:01:43.79+03	2021-05-25 12:01:43.799+03	
8d9e048c-0628-e6bb-edc5-1cb7fa92a4da	2021-05-25 12:02:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:02:03.79+03	2021-05-25 12:02:03.799+03	
ea60db28-5c3a-9d3b-455a-7a1e3a12e54a	2021-05-25 12:02:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:02:23.79+03	2021-05-25 12:02:23.797+03	
97cade5e-e200-c12a-2687-30d713c48027	2021-05-25 12:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:02:44.79+03	2021-05-25 12:02:44.803+03	
718e96ed-532a-731d-84ae-8a52c9721159	2021-05-25 12:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:03:04.79+03	2021-05-25 12:03:04.83+03	
5522c490-d664-6b93-6f15-10bbe7b9e38b	2021-05-25 12:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:03:24.79+03	2021-05-25 12:03:24.801+03	
d4a696e1-b59c-c76a-509c-17721cf63983	2021-05-25 12:03:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:03:44.79+03	2021-05-25 12:03:44.797+03	
98cba408-24e2-563d-850f-0fbf5b552468	2021-05-25 12:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:04:04.79+03	2021-05-25 12:04:04.797+03	
dcad00db-0efd-1000-23e4-91aaabe01e84	2021-05-25 12:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:04:24.79+03	2021-05-25 12:04:24.797+03	
502030ee-de5e-a67e-adbf-2cff1d2d2e81	2021-05-25 12:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:04:44.79+03	2021-05-25 12:04:44.796+03	
477b27ee-3236-18bd-24b3-63077863d6d5	2021-05-25 12:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:05:04.79+03	2021-05-25 12:05:04.801+03	
4e693c28-e100-9fd6-3b29-d7ee90aa3854	2021-05-25 12:05:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:05:24.79+03	2021-05-25 12:05:24.797+03	
b2b53ee0-d03f-e0ea-29e1-b2eebd0ab0a7	2021-05-25 12:05:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:05:44.79+03	2021-05-25 12:05:44.81+03	
f81039c6-e656-f6ce-3014-1b31a166a857	2021-05-25 12:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:06:04.79+03	2021-05-25 12:06:04.797+03	
872b03f0-f550-fd07-ee62-082f2f208065	2021-05-25 12:06:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:06:24.79+03	2021-05-25 12:06:24.801+03	
76b1893a-e080-cd44-56ac-5ee988ca20b5	2021-05-25 12:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:06:44.79+03	2021-05-25 12:06:44.797+03	
3dabe5bb-8263-1542-65b9-b07096533aef	2021-05-25 12:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:07:04.79+03	2021-05-25 12:07:04.8+03	
96d678d8-5b35-80ec-70d0-08ed7b3a00af	2021-05-25 12:07:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:07:14.79+03	2021-05-25 12:07:14.811+03	
7e05d510-a2bc-bd26-3de0-429f633accfc	2021-05-25 12:07:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:07:34.79+03	2021-05-25 12:07:34.798+03	
7f0a87da-3837-16ef-efd8-6d4a5be9d9fb	2021-05-25 12:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:07:54.79+03	2021-05-25 12:07:54.798+03	
14636d9c-2c54-3dc1-7163-e3ffb4fc5f5d	2021-05-25 12:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:08:14.79+03	2021-05-25 12:08:14.797+03	
529ab746-69e1-cc75-230c-91f4f2d036c3	2021-05-25 12:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:08:34.79+03	2021-05-25 12:08:34.798+03	
eb013844-7486-6e51-b878-8e640f483028	2021-05-25 12:08:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:08:54.79+03	2021-05-25 12:08:54.797+03	
628e8b49-0aa1-41e8-7f3c-6df2daff08ce	2021-05-25 12:09:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:09:14.79+03	2021-05-25 12:09:14.799+03	
50bd4da0-dc10-a889-4ef6-3adb8aea77e8	2021-05-25 12:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:09:34.79+03	2021-05-25 12:09:34.798+03	
c9feeb7e-4965-6f73-659b-a3e640916d8f	2021-05-25 12:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:09:54.79+03	2021-05-25 12:09:54.803+03	
0aace04d-1872-e6f4-c5a1-7cc188558068	2021-05-25 12:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:10:04.79+03	2021-05-25 12:10:04.798+03	
2e5712cb-91d5-1541-c098-7f304ac87baf	2021-05-25 12:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:10:24.79+03	2021-05-25 12:10:24.796+03	
fab4b9e0-705a-c0dc-72a5-ddc3b5131bc0	2021-05-25 12:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:10:44.79+03	2021-05-25 12:10:44.796+03	
2e132952-be8d-908d-f989-9a8d5b9b6f0b	2021-05-25 12:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:11:04.79+03	2021-05-25 12:11:04.798+03	
2dcec351-e5d4-e7d4-2f2f-2950864a0b3e	2021-05-25 12:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:11:24.79+03	2021-05-25 12:11:24.796+03	
c77cbd74-a4f7-2717-41b9-e8f72cb5b3a5	2021-05-25 12:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:11:44.79+03	2021-05-25 12:11:44.797+03	
db15676b-4158-dcb2-2c74-419de3a8f9c9	2021-05-25 12:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:12:04.79+03	2021-05-25 12:12:04.797+03	
3443326e-21eb-c29a-5e29-e0c322413953	2021-05-25 12:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:12:24.79+03	2021-05-25 12:12:24.796+03	
41aa34d7-a45b-452c-3b77-bad92d9d447c	2021-05-25 12:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:12:44.79+03	2021-05-25 12:12:44.797+03	
fc0aba4a-3d7e-12ac-5393-7abec4829ecd	2021-05-25 12:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:13:04.79+03	2021-05-25 12:13:04.798+03	
66b7acef-3da2-111e-7947-a1d95c26bfda	2021-05-25 12:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:13:24.79+03	2021-05-25 12:13:24.796+03	
d78d837b-a4ba-0f59-c2ee-ece9df026890	2021-05-25 12:13:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:13:44.79+03	2021-05-25 12:13:44.81+03	
9c10cc69-1008-9ae6-4308-2b8067af9613	2021-05-25 12:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:14:04.79+03	2021-05-25 12:14:04.798+03	
61676335-a9e3-b0a4-a162-02f6751e696f	2021-05-25 12:14:25.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:14:25.791+03	2021-05-25 12:14:25.8+03	
383cb6d4-160c-5a9c-6e4a-33100ad72ba7	2021-05-25 12:14:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:14:46.79+03	2021-05-25 12:14:46.8+03	
df48ca24-121a-0b72-f8cf-623d329423ea	2021-05-25 12:15:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:15:06.79+03	2021-05-25 12:15:06.798+03	
5561694c-9030-ba49-5495-c43c2e0ad94b	2021-05-25 12:15:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:15:26.79+03	2021-05-25 12:15:26.797+03	
8437f2df-cd10-c632-f0b9-bed17e4ffe03	2021-05-25 12:15:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:15:46.79+03	2021-05-25 12:15:46.797+03	
ebd29d9d-c68f-bdb2-7386-8efbaf29a7d8	2021-05-25 12:16:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:16:06.79+03	2021-05-25 12:16:06.797+03	
5353c0b7-7b41-3055-cd9c-ff0a2a2de39e	2021-05-25 12:16:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:16:26.79+03	2021-05-25 12:16:26.798+03	
c3001563-f3e2-44c5-52e0-ccf2720fab28	2021-05-25 12:16:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:16:46.79+03	2021-05-25 12:16:46.797+03	
09bd97d3-f28e-80aa-7d0e-18ba37eec350	2021-05-25 12:17:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:17:06.79+03	2021-05-25 12:17:06.797+03	
79b5a1dc-22d1-46a8-b867-a3f8dcbc56f8	2021-05-25 12:17:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:17:26.79+03	2021-05-25 12:17:26.797+03	
e91f008f-0060-8ca8-8e85-092e4335d16e	2021-05-25 12:17:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:17:46.79+03	2021-05-25 12:17:46.797+03	
9eb61858-0470-034d-1434-49d3917f5fd4	2021-05-25 12:18:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:18:06.79+03	2021-05-25 12:18:06.8+03	
d9871747-9cd4-1def-4b62-89c3b9ada9be	2021-05-25 12:18:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:18:26.79+03	2021-05-25 12:18:26.797+03	
4bac64a0-7641-b0b3-db2f-2268efab3383	2021-05-25 12:18:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:18:46.79+03	2021-05-25 12:18:46.802+03	
0616d74d-b010-8342-3aa1-f2e09c7dddaf	2021-05-25 12:19:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:19:06.79+03	2021-05-25 12:19:06.797+03	
3b642864-f1e4-aa35-156b-15fd7a58d36c	2021-05-25 12:19:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:19:26.79+03	2021-05-25 12:19:26.799+03	
9dd08ac5-bd93-22a4-6c2e-e2a3a2d867f7	2021-05-25 12:19:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:19:36.79+03	2021-05-25 12:19:36.797+03	
836059dc-6c69-4fa4-7746-c6949a2d5939	2021-05-25 12:19:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:19:56.79+03	2021-05-25 12:19:56.797+03	
0cd1f70e-6d4d-5901-fd5c-f9121a809c4a	2021-05-25 12:20:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:20:06.79+03	2021-05-25 12:20:06.796+03	
d7773931-54a0-6425-3c69-2b759a31a830	2021-05-25 12:20:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:20:26.79+03	2021-05-25 12:20:26.796+03	
1ab80368-33e9-562e-9ad7-05d0e8a97baf	2021-05-25 12:20:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:20:46.79+03	2021-05-25 12:20:46.799+03	
4ea9239c-868f-3ca8-2e54-68a88554d2d7	2021-05-25 12:21:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:21:06.79+03	2021-05-25 12:21:06.796+03	
632c48c3-385f-a2ba-4982-59df41e9f85f	2021-05-25 12:21:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:21:26.79+03	2021-05-25 12:21:26.797+03	
64aeef46-1f97-de68-edbe-fa980ec4f247	2021-05-25 12:21:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:21:46.79+03	2021-05-25 12:21:46.798+03	
171fd390-ecf2-d933-b279-75b4722a5983	2021-05-25 12:22:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:22:06.79+03	2021-05-25 12:22:06.8+03	
b9423392-2037-2d62-e915-a16ff6323567	2021-05-25 12:22:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:22:26.79+03	2021-05-25 12:22:26.799+03	
f7de8d01-0147-68ab-f14b-bddaaa761ece	2021-05-25 12:22:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:22:46.79+03	2021-05-25 12:22:46.796+03	
be5aae19-7a30-903c-0ddb-fd536826e7b2	2021-05-25 12:23:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:23:06.79+03	2021-05-25 12:23:06.797+03	
83b32c4c-3502-ae40-3920-dab9f28e0fe8	2021-05-25 12:23:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:23:26.79+03	2021-05-25 12:23:26.81+03	
aa43ef7a-11a4-bd50-76e7-a318a499d2a6	2021-05-25 12:23:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:23:46.79+03	2021-05-25 12:23:46.797+03	
9c9be6dd-7acd-e0e6-a80a-8dde91f27f41	2021-05-25 12:24:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:24:06.79+03	2021-05-25 12:24:06.796+03	
bd9884ac-3cbd-b61d-0a6f-791efc28d804	2021-05-25 12:24:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:24:26.79+03	2021-05-25 12:24:26.812+03	
03913332-c551-e3a4-0fb8-edd20e38a869	2021-05-25 12:24:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:24:46.79+03	2021-05-25 12:24:46.799+03	
827c9686-87bf-2e91-bfb8-f84e4e47b060	2021-05-25 12:25:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:25:06.79+03	2021-05-25 12:25:06.809+03	
afe977f7-3dd7-8925-33d4-8b1a481ca3ae	2021-05-25 12:25:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:25:26.79+03	2021-05-25 12:25:26.796+03	
a8aca974-ba0f-9e71-a8ee-3a288b18cb5e	2021-05-25 12:25:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:25:46.79+03	2021-05-25 12:25:46.798+03	
9a155537-2cc7-cc75-df0b-df037af25725	2021-05-25 12:26:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:26:06.79+03	2021-05-25 12:26:06.796+03	
158249e6-797a-a16b-172c-fd207f4f7cc8	2021-05-25 12:26:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:26:26.79+03	2021-05-25 12:26:26.801+03	
83e49f4c-822a-6ff1-3118-b2bc303d8ea7	2021-05-25 12:26:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:26:46.79+03	2021-05-25 12:26:46.797+03	
270b1b52-1cc5-ffb8-243f-49fd0871009e	2021-05-25 12:27:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:27:06.79+03	2021-05-25 12:27:06.797+03	
5885f49b-29e0-1033-59a7-b32e45b18f58	2021-05-25 12:27:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:27:26.79+03	2021-05-25 12:27:26.796+03	
5cc6d1a5-96ab-c258-e9ec-d414ef7f974d	2021-05-25 12:27:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:27:46.79+03	2021-05-25 12:27:46.802+03	
a4d3cfca-da90-d123-194e-deec4c8e09c9	2021-05-25 12:28:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:28:06.79+03	2021-05-25 12:28:06.797+03	
c865b0c5-649b-503d-0c1d-4abf271b10eb	2021-05-25 12:28:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:28:26.79+03	2021-05-25 12:28:26.799+03	
adcf7b9f-96df-a0df-0c8b-7e36fc0357f9	2021-05-25 12:28:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:28:46.79+03	2021-05-25 12:28:46.798+03	
d6260a5b-256e-caca-8159-e672667ed2c9	2021-05-25 12:29:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:29:06.79+03	2021-05-25 12:29:06.797+03	
f7e46879-d0ab-69b7-081b-2129567bc3fc	2021-05-25 12:29:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:29:26.79+03	2021-05-25 12:29:26.797+03	
77f76077-1a35-475f-b116-96d3a49938f8	2021-05-25 12:29:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:29:46.79+03	2021-05-25 12:29:46.798+03	
ce773160-1b12-3006-d11f-846319b0c7c0	2021-05-25 12:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 12:30:00.79+03	2021-05-25 12:30:00.795+03	ERROR
79b8a2f7-7bf2-873e-57e2-84b5f4e01b8f	2021-05-25 12:30:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:30:16.79+03	2021-05-25 12:30:16.799+03	
48779170-ce9c-57f2-3be9-f1aa88b626a8	2021-05-25 12:30:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:30:36.79+03	2021-05-25 12:30:36.796+03	
5b31fdbc-e4bc-77ce-7dd3-729989e801ad	2021-05-25 12:30:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:30:56.79+03	2021-05-25 12:30:56.797+03	
bd3c5a26-2a03-8218-24d8-e42bb400f11f	2021-05-25 12:31:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:31:16.79+03	2021-05-25 12:31:16.796+03	
b398096e-5438-e09f-03ca-8db8e10040ed	2021-05-25 12:31:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:31:36.79+03	2021-05-25 12:31:36.8+03	
71e9a363-e5ca-93cf-aea1-14ea349b3fe6	2021-05-25 12:31:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:31:56.79+03	2021-05-25 12:31:56.796+03	
0d49bf65-356f-0f64-8fb7-1c19fd22ac36	2021-05-25 12:32:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:32:16.79+03	2021-05-25 12:32:16.797+03	
c42d36a7-19f8-da3c-6e4c-2368a75adb04	2021-05-25 12:32:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:32:36.79+03	2021-05-25 12:32:36.796+03	
3135a36e-c0d3-22d6-5ef0-df2231294541	2021-05-25 12:32:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:32:56.79+03	2021-05-25 12:32:56.797+03	
4314c3bc-7ada-e596-d9b0-766356862e86	2021-05-25 12:33:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:33:16.79+03	2021-05-25 12:33:16.797+03	
c47a0b68-4ed5-82a6-087a-c542029b9569	2021-05-25 12:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:13:34.79+03	2021-05-25 12:13:34.798+03	
4cc902ad-8ced-fbd8-3e1f-3ca1425c2901	2021-05-25 12:13:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:13:54.79+03	2021-05-25 12:13:54.798+03	
6194ddc0-6b7d-4a79-f9ab-1f8b72adf5a6	2021-05-25 12:14:14.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:14:14.792+03	2021-05-25 12:14:14.807+03	
05c683d4-c537-f85a-334e-287f65d5f4af	2021-05-25 12:14:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:14:36.79+03	2021-05-25 12:14:36.797+03	
8ea65c01-06b6-fcab-1d62-16c2e5542fe2	2021-05-25 12:14:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:14:56.79+03	2021-05-25 12:14:56.798+03	
b53976fb-eb36-44c1-6ce8-7d4cbc61eec9	2021-05-25 12:15:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:15:16.79+03	2021-05-25 12:15:16.797+03	
1e0c452d-39cd-2cfe-4e8f-275d5577fcf4	2021-05-25 12:15:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:15:36.79+03	2021-05-25 12:15:36.799+03	
a598c604-d601-5bc3-c027-b33cb4abfb10	2021-05-25 12:15:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:15:56.79+03	2021-05-25 12:15:56.798+03	
6081405b-fa06-ddc1-d74b-17511c4b20ee	2021-05-25 12:16:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:16:16.79+03	2021-05-25 12:16:16.801+03	
60b2b129-266f-6856-b4b8-7b26c04db137	2021-05-25 12:16:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:16:36.79+03	2021-05-25 12:16:36.809+03	
a77fa25a-e4d9-0c24-09fd-ed3b18674e97	2021-05-25 12:16:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:16:56.79+03	2021-05-25 12:16:56.8+03	
a8606b11-4646-0383-88a1-1bc51c006fad	2021-05-25 12:17:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:17:16.79+03	2021-05-25 12:17:16.797+03	
170821df-6622-097d-f4f3-cabc3ab90598	2021-05-25 12:17:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:17:36.79+03	2021-05-25 12:17:36.797+03	
a84f4148-8e3d-d8bd-dea9-3709e76207a8	2021-05-25 12:17:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:17:56.79+03	2021-05-25 12:17:56.798+03	
655ac48e-2c35-8dd6-5557-9e59776b1de8	2021-05-25 12:18:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:18:16.79+03	2021-05-25 12:18:16.798+03	
aaeda4a4-48b3-b085-7ef8-49239757c627	2021-05-25 12:18:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:18:36.79+03	2021-05-25 12:18:36.796+03	
fc108019-dd7b-71a4-9e51-cacd91cb175f	2021-05-25 12:18:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:18:56.79+03	2021-05-25 12:18:56.798+03	
1b2ff54a-31eb-af5d-cb2a-cc0261912b0d	2021-05-25 12:19:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:19:16.79+03	2021-05-25 12:19:16.797+03	
f2741d59-1d1a-1564-89f4-8175d622b4f7	2021-05-25 12:19:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:19:46.79+03	2021-05-25 12:19:46.798+03	
0461b033-9f91-93f7-deb1-5a382e62565d	2021-05-25 12:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 12:20:00.79+03	2021-05-25 12:20:00.795+03	ERROR
89b0648b-06ce-5b96-70e5-6584bcc0a161	2021-05-25 12:20:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:20:16.79+03	2021-05-25 12:20:16.796+03	
3d0fe6bb-d7ad-906a-e785-dc6a90a68920	2021-05-25 12:20:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:20:36.79+03	2021-05-25 12:20:36.797+03	
130f9c00-bcfb-46a1-6c1e-1c0695cc0c89	2021-05-25 12:20:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:20:56.79+03	2021-05-25 12:20:56.796+03	
9b42a16f-a916-87ad-077e-d1a3bf5fae53	2021-05-25 12:21:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:21:16.79+03	2021-05-25 12:21:16.797+03	
e180de8b-d31a-533d-2447-12e5ec7ce6f9	2021-05-25 12:21:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:21:36.79+03	2021-05-25 12:21:36.796+03	
e0255a1c-19e2-341e-0c76-ce3c5487a78d	2021-05-25 12:21:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:21:56.79+03	2021-05-25 12:21:56.801+03	
5259e260-88fe-9ecf-6155-abb4f08ccd2e	2021-05-25 12:22:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:22:16.79+03	2021-05-25 12:22:16.841+03	
b12feb10-6d74-7f12-2078-2420f092dcae	2021-05-25 12:22:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:22:36.79+03	2021-05-25 12:22:36.797+03	
d84caae1-3b17-8cb2-286e-817f9d3e3540	2021-05-25 12:22:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:22:56.79+03	2021-05-25 12:22:56.798+03	
13a81026-f3a9-af2a-ccb4-e223825c1c53	2021-05-25 12:23:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:23:16.79+03	2021-05-25 12:23:16.81+03	
06dcf11b-61d6-a423-0608-65669249c2db	2021-05-25 12:23:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:23:36.79+03	2021-05-25 12:23:36.8+03	
e9a739a3-16e7-4154-cd15-5329c39af2d9	2021-05-25 12:23:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:23:56.79+03	2021-05-25 12:23:56.813+03	
7ba13db6-bf46-ce38-71e0-de26293ca91b	2021-05-25 12:24:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:24:16.79+03	2021-05-25 12:24:16.796+03	
96248603-6d99-b8d4-d362-0c67870315e8	2021-05-25 12:24:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:24:36.79+03	2021-05-25 12:24:36.797+03	
7e29a7d5-9586-25d1-3c21-35250ba4ff25	2021-05-25 12:24:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:24:56.79+03	2021-05-25 12:24:56.806+03	
dcbc9c28-454e-566e-45f4-6ef455a820ba	2021-05-25 12:25:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:25:16.79+03	2021-05-25 12:25:16.797+03	
b5c317da-c39a-fa8a-17cf-4f71dd259bdb	2021-05-25 12:25:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:25:36.79+03	2021-05-25 12:25:36.799+03	
338bc8d2-4e26-b39a-0682-67fdc4607354	2021-05-25 12:25:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:25:56.79+03	2021-05-25 12:25:56.797+03	
ec9810b8-fea7-c50a-003a-d7b46366aa05	2021-05-25 12:26:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:26:16.79+03	2021-05-25 12:26:16.796+03	
9100fdfe-b71a-ffa1-8321-e6bd5d31ce3d	2021-05-25 12:26:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:26:36.79+03	2021-05-25 12:26:36.796+03	
772c1f72-5b93-ef95-2ee8-6334348f997c	2021-05-25 12:26:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:26:56.79+03	2021-05-25 12:26:56.797+03	
b9c4aa56-3039-9863-e5a2-721729ad18d7	2021-05-25 12:27:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:27:16.79+03	2021-05-25 12:27:16.797+03	
becfa545-c2c1-5bfe-1888-e704fc9a0a40	2021-05-25 12:27:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:27:36.79+03	2021-05-25 12:27:36.796+03	
520d6a94-9618-bc6f-653e-b42bb7e73a88	2021-05-25 12:27:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:27:56.79+03	2021-05-25 12:27:56.797+03	
74a600e9-140e-bb24-9fef-bd7ef4facce0	2021-05-25 12:28:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:28:16.79+03	2021-05-25 12:28:16.798+03	
3903af4c-4143-757f-7075-3b783f7c94ad	2021-05-25 12:28:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:28:36.79+03	2021-05-25 12:28:36.798+03	
4bf72251-72d7-27cf-497f-aac91ae774aa	2021-05-25 12:28:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:28:56.79+03	2021-05-25 12:28:56.797+03	
40435adf-2a39-738a-fb47-9977b4bcf923	2021-05-25 12:29:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:29:16.79+03	2021-05-25 12:29:16.797+03	
dc35be5d-2b27-838e-0806-318fd2c904a8	2021-05-25 12:29:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:29:36.79+03	2021-05-25 12:29:36.799+03	
8e81754d-b42f-00b9-06e5-80a29fdbf70a	2021-05-25 12:29:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:29:56.79+03	2021-05-25 12:29:56.797+03	
f2c829c3-cfb8-83fc-1725-ea430aa57b89	2021-05-25 12:30:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:30:06.79+03	2021-05-25 12:30:06.796+03	
5fd6c272-786a-339d-9c58-61d465adfb7b	2021-05-25 12:30:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:30:26.79+03	2021-05-25 12:30:26.798+03	
8772b376-a6f6-d504-e229-770cb67f77b5	2021-05-25 12:30:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:30:46.79+03	2021-05-25 12:30:46.809+03	
a0595b54-225d-9210-8668-4624c04395ac	2021-05-25 12:31:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:31:06.79+03	2021-05-25 12:31:06.797+03	
69a50114-5e08-7eb2-03e4-d77805508302	2021-05-25 12:31:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:31:26.79+03	2021-05-25 12:31:26.796+03	
b202f233-f372-bae9-04cc-6bc8be685d21	2021-05-25 12:31:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:31:46.79+03	2021-05-25 12:31:46.797+03	
e1e44245-a2c6-1842-1ad8-26a4c6d0cec3	2021-05-25 12:32:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:32:06.79+03	2021-05-25 12:32:06.813+03	
345b1422-23cb-a95b-ca08-441961489cee	2021-05-25 12:32:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:32:26.79+03	2021-05-25 12:32:26.801+03	
4a54bacb-919c-9a68-bfd2-f297ac7a1166	2021-05-25 12:32:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:32:46.79+03	2021-05-25 12:32:46.796+03	
43ddfd55-2c14-474e-e2b3-2a6325623425	2021-05-25 12:33:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:33:06.79+03	2021-05-25 12:33:06.796+03	
904c5df9-5a03-da82-9ea0-d6a6d69364df	2021-05-25 12:33:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:33:26.79+03	2021-05-25 12:33:26.797+03	
6bce1106-7adf-a13e-4bb8-5fb54d13a951	2021-05-25 12:33:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:33:46.79+03	2021-05-25 12:33:46.799+03	
9276251c-5846-aa6b-30a1-c2a1851017d2	2021-05-25 12:34:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:34:06.79+03	2021-05-25 12:34:06.796+03	
52dca874-95c7-fe3c-3b7d-850b55f83128	2021-05-25 12:33:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:33:36.79+03	2021-05-25 12:33:36.796+03	
dee749a1-4b5c-d85f-73b6-24d4fe972d65	2021-05-25 12:33:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:33:56.79+03	2021-05-25 12:33:56.797+03	
1d203ec4-9725-fe9b-8193-b2ea46495426	2021-05-25 12:34:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:34:16.79+03	2021-05-25 12:34:16.798+03	
7992d688-bdcf-ac26-f78e-ebd9e32962fb	2021-05-25 12:34:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:34:36.79+03	2021-05-25 12:34:36.796+03	
a489c79b-3588-ebb7-7075-86d79b1c17ab	2021-05-25 12:34:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:34:56.79+03	2021-05-25 12:34:56.801+03	
5cfe1051-9347-768c-c728-36b3ea6d3e56	2021-05-25 12:35:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:35:16.79+03	2021-05-25 12:35:16.798+03	
1fdcb21c-d2ae-2363-ad38-451e055e1e33	2021-05-25 12:35:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:35:36.79+03	2021-05-25 12:35:36.796+03	
fc92eddc-aac1-88a1-0de9-b15f4adb6a30	2021-05-25 12:35:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:35:57.79+03	2021-05-25 12:35:57.8+03	
0d3f1241-bab1-1001-ef7f-346c4ad9c3f4	2021-05-25 12:36:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:36:17.79+03	2021-05-25 12:36:17.797+03	
8dd29fcc-cc9f-c8dc-8430-a3298b42c7ad	2021-05-25 12:36:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:36:37.79+03	2021-05-25 12:36:37.797+03	
8b62c604-643b-ed5b-0ead-9d45683b0686	2021-05-25 12:36:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:36:57.79+03	2021-05-25 12:36:57.796+03	
b35a1dbc-ddb4-4c25-4933-2089280b3857	2021-05-25 12:37:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:37:17.79+03	2021-05-25 12:37:17.798+03	
a1cf85ab-fd4b-ca9a-f604-38d128b05027	2021-05-25 12:37:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:37:37.79+03	2021-05-25 12:37:37.808+03	
4d8ee18b-aec7-7fa1-d054-d4d971e581c6	2021-05-25 12:37:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:37:57.79+03	2021-05-25 12:37:57.798+03	
af5dbc9d-e698-77bc-23a1-ceed5a5eddcf	2021-05-25 12:38:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:38:17.79+03	2021-05-25 12:38:17.796+03	
eaf01689-fb80-68ad-419a-0e420e06a946	2021-05-25 12:38:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:38:37.79+03	2021-05-25 12:38:37.8+03	
ce90b96a-821a-e5f2-50b1-d05948470109	2021-05-25 12:38:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:38:57.79+03	2021-05-25 12:38:57.796+03	
ad215714-ab30-3326-88b0-9739a1c8712c	2021-05-25 12:39:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:39:17.79+03	2021-05-25 12:39:17.796+03	
bf454bcb-9763-a101-59d6-d9d33b8579e6	2021-05-25 12:39:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:39:37.79+03	2021-05-25 12:39:37.796+03	
ce4a3e0f-376e-c64c-c4b3-202d96d7e1f4	2021-05-25 12:39:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:39:57.79+03	2021-05-25 12:39:57.8+03	
dfe81d8a-1481-1c17-ccbf-0c98afa94e84	2021-05-25 12:40:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:40:07.79+03	2021-05-25 12:40:07.807+03	
05d624b3-de27-ec34-16f4-c8c09e967e16	2021-05-25 12:40:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:40:27.79+03	2021-05-25 12:40:27.81+03	
3e6ecab1-5c6f-1aff-5003-d065f2f2957a	2021-05-25 12:40:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:40:47.79+03	2021-05-25 12:40:47.796+03	
a3a98231-f389-4e52-3294-6a567c1b5a8c	2021-05-25 12:41:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:41:07.79+03	2021-05-25 12:41:07.796+03	
b7ed2daa-cffd-60b7-927f-3a5680569ef1	2021-05-25 12:41:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:41:27.79+03	2021-05-25 12:41:27.796+03	
60610fad-f666-4700-a547-1ba3046f89f6	2021-05-25 12:41:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:41:47.79+03	2021-05-25 12:41:47.797+03	
b1add89d-5dc2-3e72-4f76-46c79c3bcc91	2021-05-25 12:42:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:42:07.79+03	2021-05-25 12:42:07.797+03	
9f2b2ceb-6923-59d0-78eb-f7ab425979e4	2021-05-25 12:42:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:42:27.79+03	2021-05-25 12:42:27.796+03	
7be547d1-9e2c-810e-9c2f-84f07712147c	2021-05-25 12:42:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:42:47.79+03	2021-05-25 12:42:47.797+03	
3471351c-2131-4800-eebb-6b3c2f6bdf51	2021-05-25 12:43:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:43:07.79+03	2021-05-25 12:43:07.799+03	
5649fec5-88cc-bcb9-6183-4b8f7860d8a1	2021-05-25 12:43:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:43:27.79+03	2021-05-25 12:43:27.798+03	
5b11a347-0f56-6908-9f89-c6a4bf304cf3	2021-05-25 12:43:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:43:47.79+03	2021-05-25 12:43:47.796+03	
fda47b63-5795-36e0-92ab-737e3b8a8fcf	2021-05-25 12:44:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:44:07.79+03	2021-05-25 12:44:07.799+03	
759ffb09-40e9-aabc-569a-a1efe5e85944	2021-05-25 12:44:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:44:27.79+03	2021-05-25 12:44:27.797+03	
4330a351-7bab-e4ca-7a5d-9d1a6e6d568b	2021-05-25 12:44:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:44:47.79+03	2021-05-25 12:44:47.797+03	
be1b5c0b-4e1c-4aff-a663-c7505c25fc7d	2021-05-25 12:45:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:45:07.79+03	2021-05-25 12:45:07.797+03	
8c89c21d-fba1-2eee-8c42-699b6343bdd9	2021-05-25 12:45:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:45:27.79+03	2021-05-25 12:45:27.81+03	
6a6eedfa-6b2b-987a-34a8-e7d1a69ec9d7	2021-05-25 12:45:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:45:47.79+03	2021-05-25 12:45:47.8+03	
33222e86-1662-8f5e-65a0-353847d38366	2021-05-25 12:46:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:46:07.79+03	2021-05-25 12:46:07.804+03	
1652cae4-28fb-8916-3a0a-3b20eb886047	2021-05-25 12:46:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:46:27.791+03	2021-05-25 12:46:27.803+03	
02a56ec4-4a57-ade3-d133-f0db72e6ad61	2021-05-25 12:46:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:46:48.79+03	2021-05-25 12:46:48.803+03	
c9637d23-baec-671d-b4ed-bf9e84f4da6a	2021-05-25 12:47:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:47:08.79+03	2021-05-25 12:47:08.799+03	
a5a91038-0a72-19bf-dee2-822fb9181008	2021-05-25 12:47:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:47:28.79+03	2021-05-25 12:47:28.796+03	
46938d9b-ebf6-c86c-50ec-d1cb6c1e945a	2021-05-25 12:47:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:47:48.79+03	2021-05-25 12:47:48.798+03	
b958845c-a6be-6fcd-1de5-02d7165f3890	2021-05-25 12:48:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:48:08.79+03	2021-05-25 12:48:08.812+03	
03ec3faf-9068-d2d3-791f-2fea296240b0	2021-05-25 12:48:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:48:18.79+03	2021-05-25 12:48:18.798+03	
2573c75c-c689-df31-3b11-02d4f3794a55	2021-05-25 12:48:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:48:38.79+03	2021-05-25 12:48:38.798+03	
e6bb970a-8a59-8dfa-eaaf-209e67f84d6d	2021-05-25 12:48:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:48:58.79+03	2021-05-25 12:48:58.81+03	
31a7f58f-c685-12d0-0284-a7090ebecdf2	2021-05-25 12:49:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:49:18.79+03	2021-05-25 12:49:18.801+03	
082a2cc9-7816-3475-2d1c-8844bb82ad5b	2021-05-25 12:49:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:49:38.79+03	2021-05-25 12:49:38.798+03	
28bc884b-3669-acc5-7fb4-8c42ef5b52de	2021-05-25 12:49:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:49:58.79+03	2021-05-25 12:49:58.8+03	
c27193c5-fcb3-b465-38de-d56ee02588c7	2021-05-25 12:50:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:50:08.79+03	2021-05-25 12:50:08.8+03	
a07f33ae-429b-5146-1ef8-2f35b96c37cb	2021-05-25 12:50:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:50:28.79+03	2021-05-25 12:50:28.797+03	
768119fd-8474-473c-99fd-6243cc58f066	2021-05-25 12:50:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:50:48.79+03	2021-05-25 12:50:48.797+03	
d747c8c7-251c-17c5-42cd-53840da14bb0	2021-05-25 12:50:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:50:58.79+03	2021-05-25 12:50:58.798+03	
d6ed6ee5-f69d-e787-4cdd-1997523ebfc3	2021-05-25 12:51:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:51:18.79+03	2021-05-25 12:51:18.798+03	
c33e7f58-fbe3-d28d-ec25-96b52590f634	2021-05-25 12:51:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:51:38.79+03	2021-05-25 12:51:38.812+03	
4f283663-711b-c3b8-e445-16a9cdf08512	2021-05-25 12:52:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:52:08.79+03	2021-05-25 12:52:08.807+03	
058abbd4-ed2c-2b7e-9f0f-c374aeb4f630	2021-05-25 12:52:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:52:28.79+03	2021-05-25 12:52:28.796+03	
da96e157-cd71-892b-dfba-87d30f621d37	2021-05-25 12:52:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:52:48.79+03	2021-05-25 12:52:48.797+03	
42d624b1-9699-b4da-bde9-8122dcf12ed1	2021-05-25 12:53:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:53:08.79+03	2021-05-25 12:53:08.797+03	
dc310daf-3db2-1646-39c0-fe254b6f7e8b	2021-05-25 12:53:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:53:28.79+03	2021-05-25 12:53:28.797+03	
7313bd0c-055a-71f6-991d-426d6715e068	2021-05-25 12:53:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:53:48.79+03	2021-05-25 12:53:48.797+03	
691b2741-3d6d-b5c7-e208-ad04e8ef89f2	2021-05-25 12:34:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:34:26.79+03	2021-05-25 12:34:26.797+03	
0d6e4a0e-a3ae-e813-1a02-6ce4cdedfd12	2021-05-25 12:34:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:34:46.79+03	2021-05-25 12:34:46.796+03	
1f3aaa6a-8589-34ca-f3c9-0e12f1bad662	2021-05-25 12:35:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:35:06.79+03	2021-05-25 12:35:06.797+03	
03354c14-d884-6b93-d40c-4426d7d5f059	2021-05-25 12:35:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:35:26.79+03	2021-05-25 12:35:26.797+03	
239b2f96-7887-5722-26c5-28bdda0587d1	2021-05-25 12:35:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:35:46.791+03	2021-05-25 12:35:46.816+03	
3f65a450-8e28-dacf-e319-5a7eef452b0b	2021-05-25 12:36:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:36:07.79+03	2021-05-25 12:36:07.797+03	
2df58787-b86e-a18e-0e59-b4018dd292ab	2021-05-25 12:36:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:36:27.79+03	2021-05-25 12:36:27.811+03	
9bf4cf53-c4e3-eedb-c554-78af2f829739	2021-05-25 12:36:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:36:47.79+03	2021-05-25 12:36:47.799+03	
b55e1de9-a9dc-b1ea-5e1a-c01e9c853b39	2021-05-25 12:37:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:37:07.79+03	2021-05-25 12:37:07.796+03	
beacc416-a842-3f10-985e-09babe2e464f	2021-05-25 12:37:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:37:27.79+03	2021-05-25 12:37:27.797+03	
036abd9c-0a58-87a8-aaf9-412a62704124	2021-05-25 12:37:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:37:47.79+03	2021-05-25 12:37:47.797+03	
f7b2f965-b326-3de8-2277-984bccc60818	2021-05-25 12:38:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:38:07.79+03	2021-05-25 12:38:07.797+03	
f68eabb6-2dc0-c373-c475-730552216cca	2021-05-25 12:38:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:38:27.79+03	2021-05-25 12:38:27.796+03	
1c025108-6bd9-027f-4f48-d2954f821f53	2021-05-25 12:38:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:38:47.79+03	2021-05-25 12:38:47.796+03	
bc599e85-3cbf-f638-26a7-624b19cf783b	2021-05-25 12:39:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:39:07.79+03	2021-05-25 12:39:07.799+03	
1e249e44-e5b0-2afb-1fe4-326df430087c	2021-05-25 12:39:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:39:27.79+03	2021-05-25 12:39:27.798+03	
92e24021-1776-8017-3d29-daa34ea5baa6	2021-05-25 12:39:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:39:47.79+03	2021-05-25 12:39:47.799+03	
f396852e-bc4e-81d7-1a35-88bd527c81ca	2021-05-25 12:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 12:40:00.79+03	2021-05-25 12:40:00.812+03	ERROR
cc48fc88-764e-8393-aedc-652582abae42	2021-05-25 12:40:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:40:17.79+03	2021-05-25 12:40:17.797+03	
b54972e9-afc0-8da7-b580-52f0fbdf5e86	2021-05-25 12:40:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:40:37.79+03	2021-05-25 12:40:37.806+03	
ef9864d0-dec8-9e30-5acc-8fdb44b3428c	2021-05-25 12:40:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:40:57.79+03	2021-05-25 12:40:57.797+03	
cf1ba991-45fc-04c2-385d-d96ebef72759	2021-05-25 12:41:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:41:17.79+03	2021-05-25 12:41:17.806+03	
dcbe234e-7d96-40da-28a1-153575c9efce	2021-05-25 12:41:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:41:37.79+03	2021-05-25 12:41:37.796+03	
8f0d413d-8ccf-54df-5510-07e34662d6ec	2021-05-25 12:41:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:41:57.79+03	2021-05-25 12:41:57.796+03	
52da9c44-176f-b097-3cf0-3020384a3856	2021-05-25 12:42:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:42:17.79+03	2021-05-25 12:42:17.796+03	
232360a2-c788-940b-4d36-dae22d4b0b6d	2021-05-25 12:42:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:42:37.79+03	2021-05-25 12:42:37.802+03	
e7a2a022-2172-d87b-665d-98f8ae44c7d9	2021-05-25 12:42:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:42:57.79+03	2021-05-25 12:42:57.801+03	
d531d9ed-d5d9-f0b3-7fa0-53181ed49dd2	2021-05-25 12:43:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:43:17.79+03	2021-05-25 12:43:17.797+03	
0b4dae31-fbf3-ca9c-1f2f-0f50dd1bb93b	2021-05-25 12:43:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:43:37.79+03	2021-05-25 12:43:37.796+03	
e91bcfe3-a7d4-5248-81b1-0e8fa4e3b976	2021-05-25 12:43:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:43:57.79+03	2021-05-25 12:43:57.796+03	
e56605d8-8064-5a4a-b782-b51eaed444bd	2021-05-25 12:44:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:44:17.79+03	2021-05-25 12:44:17.796+03	
ce457a9a-4133-1049-2020-e37830bed444	2021-05-25 12:44:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:44:37.79+03	2021-05-25 12:44:37.798+03	
2566bcfd-6b95-8541-2f5e-6fd61a49e1c0	2021-05-25 12:44:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:44:57.79+03	2021-05-25 12:44:57.797+03	
04b357fc-b21b-2e87-af71-b81bb7dbdfd4	2021-05-25 12:45:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:45:17.79+03	2021-05-25 12:45:17.799+03	
3211314e-612d-f05f-4f79-3b06ab7153ac	2021-05-25 12:45:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:45:37.79+03	2021-05-25 12:45:37.798+03	
592c2c65-55bb-a30a-b151-2fe94344a2a0	2021-05-25 12:45:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:45:57.79+03	2021-05-25 12:45:57.804+03	
4b35d1c3-b2c1-b165-e7c6-2ef46a67508d	2021-05-25 12:46:17.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:46:17.791+03	2021-05-25 12:46:17.805+03	
2e7d0771-e3db-26e9-85a8-7010a2a6da95	2021-05-25 12:46:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:46:38.79+03	2021-05-25 12:46:38.798+03	
8f253250-c545-b200-449d-4de78ea9d3af	2021-05-25 12:46:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:46:58.79+03	2021-05-25 12:46:58.799+03	
01ebc5df-6751-27e0-5f83-a2b15b3e72aa	2021-05-25 12:47:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:47:18.79+03	2021-05-25 12:47:18.805+03	
be00087e-3368-69a5-2037-d25fb49acebc	2021-05-25 12:47:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:47:38.79+03	2021-05-25 12:47:38.797+03	
341693c3-4272-7415-b111-754cb0d295e6	2021-05-25 12:47:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:47:58.79+03	2021-05-25 12:47:58.801+03	
a828da88-b7f1-ab76-6275-af4e03caca75	2021-05-25 12:48:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:48:28.79+03	2021-05-25 12:48:28.798+03	
ac4f3473-92eb-698c-6488-7ebb758dd722	2021-05-25 12:48:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:48:48.79+03	2021-05-25 12:48:48.798+03	
812f3e02-52ac-cfd2-a2f9-353ab5fb5ba1	2021-05-25 12:49:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:49:08.79+03	2021-05-25 12:49:08.803+03	
643bf701-d44a-2ab4-f5d0-207051305234	2021-05-25 12:49:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:49:28.79+03	2021-05-25 12:49:28.798+03	
ec68f967-5085-a54a-1390-a0b53b107411	2021-05-25 12:49:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:49:48.79+03	2021-05-25 12:49:48.8+03	
02eceb4e-062e-1705-bb70-b42b363542ad	2021-05-25 12:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 12:50:00.79+03	2021-05-25 12:50:00.794+03	ERROR
ac96076d-8728-ef88-850a-77a9dba40f5d	2021-05-25 12:50:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:50:18.79+03	2021-05-25 12:50:18.803+03	
4f9a5ac2-a4dd-8973-0d2a-9fdde1bbd5df	2021-05-25 12:50:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:50:38.79+03	2021-05-25 12:50:38.796+03	
4fee20b6-4fe3-6100-cd85-1bcd83cffb88	2021-05-25 12:51:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:51:08.79+03	2021-05-25 12:51:08.799+03	
aa8df621-ccb9-3be1-dfdc-c1ba8ca8acf4	2021-05-25 12:51:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:51:28.79+03	2021-05-25 12:51:28.796+03	
c99de9aa-b305-4af3-a482-e2532e920841	2021-05-25 12:51:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:51:48.79+03	2021-05-25 12:51:48.796+03	
3b37a2e9-cc3d-8d24-758d-dbd3e2730f82	2021-05-25 12:51:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:51:58.79+03	2021-05-25 12:51:58.797+03	
91bddda4-6e4f-4f33-cac8-b41a35642a61	2021-05-25 12:52:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:52:18.79+03	2021-05-25 12:52:18.796+03	
70cc4bd5-95bd-3fde-8138-25ea0393865d	2021-05-25 12:52:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:52:38.79+03	2021-05-25 12:52:38.796+03	
4b6fa4be-25a5-03f2-0ddc-d491cd3f5555	2021-05-25 12:52:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:52:58.79+03	2021-05-25 12:52:58.797+03	
32e2a49c-2d1e-7832-a0f2-21fcdfb05a2a	2021-05-25 12:53:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:53:18.79+03	2021-05-25 12:53:18.814+03	
a2a0249d-00ac-947d-6bb0-aa8fe26938a2	2021-05-25 12:53:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:53:38.79+03	2021-05-25 12:53:38.805+03	
332fc518-8560-2cd8-367f-ca21d2126123	2021-05-25 12:53:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:53:58.79+03	2021-05-25 12:53:58.797+03	
a82ebcf8-ace6-c672-de1f-9b8f271fdd82	2021-05-25 12:54:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:54:18.79+03	2021-05-25 12:54:18.799+03	
c5d9ae7c-939a-2f2c-dda4-96a1ff548b93	2021-05-25 12:54:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:54:38.79+03	2021-05-25 12:54:38.817+03	
bc5c249a-6356-c96f-9df6-32f69b7bedcb	2021-05-25 12:54:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:54:58.79+03	2021-05-25 12:54:58.797+03	
8b435246-7d40-b845-e16a-244158583386	2021-05-25 12:54:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:54:08.79+03	2021-05-25 12:54:08.798+03	
0cfce914-d996-26ba-5a3e-04295913bcec	2021-05-25 12:54:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:54:28.79+03	2021-05-25 12:54:28.796+03	
9150d9e9-2168-4d7a-ce01-71832a344572	2021-05-25 12:54:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:54:48.79+03	2021-05-25 12:54:48.796+03	
099924f3-feec-0502-8278-93ac87174016	2021-05-25 12:55:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:55:08.79+03	2021-05-25 12:55:08.808+03	
ae0d1ee3-e3f1-9b31-6561-a13adc460461	2021-05-25 12:55:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:55:28.79+03	2021-05-25 12:55:28.808+03	
d4607d14-41af-db54-0e21-123a5a31a967	2021-05-25 12:55:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:55:48.79+03	2021-05-25 12:55:48.796+03	
626d9338-5d97-5f48-aea2-deb75fcf2465	2021-05-25 12:56:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:56:08.79+03	2021-05-25 12:56:08.797+03	
b2408a3a-037f-c6a0-6821-7e3064b9f684	2021-05-25 12:56:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:56:28.79+03	2021-05-25 12:56:28.797+03	
9e0c99fa-96de-ff84-806f-440a2ac00ebf	2021-05-25 12:56:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:56:48.79+03	2021-05-25 12:56:48.796+03	
83f89489-6560-4b0b-f217-531ca0405a06	2021-05-25 12:57:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:57:08.79+03	2021-05-25 12:57:08.796+03	
8984e93a-b1a2-3d3b-ee3d-64f672df47da	2021-05-25 12:57:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:57:28.79+03	2021-05-25 12:57:28.796+03	
5898f359-5f50-21a6-4ec7-1720d1a35d39	2021-05-25 12:57:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:57:48.79+03	2021-05-25 12:57:48.796+03	
105125bb-b0b9-c1fb-7530-2a6fe4447a15	2021-05-25 12:58:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:58:08.79+03	2021-05-25 12:58:08.797+03	
3b7522c4-a040-d9ee-426b-028c80666490	2021-05-25 12:58:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:58:28.79+03	2021-05-25 12:58:28.809+03	
562a7e71-84c2-3a76-3d80-bbfeb753f6ef	2021-05-25 12:58:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:58:48.79+03	2021-05-25 12:58:48.797+03	
c34d138f-c6e1-3b50-d4ae-cd39397ec436	2021-05-25 12:59:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:59:08.79+03	2021-05-25 12:59:08.798+03	
8cc15262-a82a-3aa1-d7ae-70665f5d4238	2021-05-25 12:59:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:59:28.79+03	2021-05-25 12:59:28.802+03	
4eef4711-2772-650f-b767-b4037faf0b4f	2021-05-25 12:59:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:59:48.79+03	2021-05-25 12:59:48.796+03	
25074d29-5a44-2f64-6354-aa6f660d4434	2021-05-25 13:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 13:00:00.79+03	2021-05-25 13:00:00.795+03	ERROR
b46d03e6-7923-f6e9-fe18-72cddb881b35	2021-05-25 13:00:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:00:18.79+03	2021-05-25 13:00:18.796+03	
8c3c465b-4692-8a28-96c0-17086c9e782b	2021-05-25 13:00:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:00:38.79+03	2021-05-25 13:00:38.8+03	
ecac550a-a968-8b93-e387-24acb8e06b6c	2021-05-25 13:00:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:00:58.79+03	2021-05-25 13:00:58.797+03	
7de03146-0d5a-63a1-7832-97bc7f8058b0	2021-05-25 13:01:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:01:18.79+03	2021-05-25 13:01:18.798+03	
b5227797-7714-fa0e-3acb-8ff684e92248	2021-05-25 13:01:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:01:38.79+03	2021-05-25 13:01:38.797+03	
e1189941-5923-0c2c-fb9a-b1899fe69ec0	2021-05-25 13:01:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:01:58.79+03	2021-05-25 13:01:58.8+03	
19313487-4d6b-2c8e-4ea0-63d2829cc92b	2021-05-25 13:02:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:02:18.79+03	2021-05-25 13:02:18.797+03	
655f7ff3-d38a-a7d7-28c2-9e36b4096af9	2021-05-25 13:02:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:02:38.79+03	2021-05-25 13:02:38.797+03	
d4baf9c3-8e07-0730-a9f2-52487b51c4b2	2021-05-25 13:02:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:02:58.79+03	2021-05-25 13:02:58.796+03	
7b4c63a8-829e-b33c-b568-9e0296316ada	2021-05-25 13:03:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:03:18.79+03	2021-05-25 13:03:18.796+03	
b4236898-7f63-8a16-af71-a70df7efa448	2021-05-25 13:03:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:03:38.79+03	2021-05-25 13:03:38.796+03	
0b91480d-be21-73a6-7409-e45e2a72ecc1	2021-05-25 13:03:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:03:58.79+03	2021-05-25 13:03:58.797+03	
a7090c8b-9ed3-d8bd-3a79-debff8333d7f	2021-05-25 13:04:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:04:18.79+03	2021-05-25 13:04:18.796+03	
cc391de5-4313-0e63-aae0-df837659caff	2021-05-25 13:04:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:04:38.79+03	2021-05-25 13:04:38.823+03	
e3c5ae15-8253-9984-c06e-a50b296ef274	2021-05-25 13:04:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:04:58.79+03	2021-05-25 13:04:58.797+03	
acc01ebc-77ae-f68f-ba10-631e1cf4ab78	2021-05-25 13:05:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:05:18.79+03	2021-05-25 13:05:18.813+03	
2f37f473-125a-7615-c0c4-0e96ecca1c96	2021-05-25 13:05:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:05:38.79+03	2021-05-25 13:05:38.796+03	
b1ec88c0-50b1-8774-1f3f-abba1f542922	2021-05-25 13:05:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:05:58.79+03	2021-05-25 13:05:58.797+03	
34fb0104-e1e8-c0f2-0b86-3acbcb743376	2021-05-25 13:06:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:06:18.79+03	2021-05-25 13:06:18.797+03	
f12cec65-c4a6-7806-bb7c-9d44855045b5	2021-05-25 13:06:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:06:38.79+03	2021-05-25 13:06:38.811+03	
e1ffc271-92ff-38da-a422-15b3da703e5c	2021-05-25 13:06:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:06:58.79+03	2021-05-25 13:06:58.8+03	
1f4a50a0-7134-ead0-8287-88f9650638ba	2021-05-25 13:07:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:07:18.79+03	2021-05-25 13:07:18.797+03	
b9c4c16a-44c2-c437-fae2-0c5787f3ddf4	2021-05-25 13:07:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:07:38.79+03	2021-05-25 13:07:38.796+03	
5fb218d8-ab1c-ed22-09d2-3eda74c83237	2021-05-25 13:07:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:07:58.79+03	2021-05-25 13:07:58.797+03	
f6693cee-f47f-423b-c689-5034fb98a3b9	2021-05-25 13:08:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:08:18.79+03	2021-05-25 13:08:18.798+03	
b1425d93-6476-8155-aa0f-f38ec87a3fe3	2021-05-25 13:08:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:08:38.79+03	2021-05-25 13:08:38.796+03	
862c936d-6ce4-96ac-1620-b219d6d403d3	2021-05-25 13:08:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:08:58.79+03	2021-05-25 13:08:58.796+03	
67344b36-0017-d141-e79a-6a491e029c99	2021-05-25 13:09:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:09:18.79+03	2021-05-25 13:09:18.797+03	
ca243869-bc9d-467f-1e69-db45c7dd1a90	2021-05-25 13:09:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:09:38.79+03	2021-05-25 13:09:38.807+03	
54a1a2b3-e2e5-04e5-df83-cda9b874a7cd	2021-05-25 13:09:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:09:58.79+03	2021-05-25 13:09:58.813+03	
471f26e9-ef62-b038-c345-34a2c3b87e83	2021-05-25 13:10:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:10:08.79+03	2021-05-25 13:10:08.796+03	
9cc5c5ae-3d3e-43dc-dda3-6b16db59b64c	2021-05-25 13:10:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:10:29.79+03	2021-05-25 13:10:29.797+03	
42ea49df-0545-a78f-ec16-bac66f917d7d	2021-05-25 13:10:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:10:49.79+03	2021-05-25 13:10:49.797+03	
25da3057-2be5-86e2-3c49-7982e8d99c8f	2021-05-25 13:11:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:11:09.79+03	2021-05-25 13:11:09.797+03	
78182b05-cb2b-92e8-b8b0-014afc04e8cd	2021-05-25 13:11:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:11:29.79+03	2021-05-25 13:11:29.797+03	
cb0decf3-b932-bc27-67c4-caca2bdba60e	2021-05-25 13:11:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:11:49.79+03	2021-05-25 13:11:49.797+03	
caef6608-06a1-7409-df21-7e759ad43f8e	2021-05-25 13:12:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:12:09.79+03	2021-05-25 13:12:09.797+03	
89869d42-7702-3afa-dc3d-21dd4ad284f1	2021-05-25 13:12:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:12:29.79+03	2021-05-25 13:12:29.798+03	
6007f801-9f5e-f0b4-2400-cd75b6df4751	2021-05-25 13:12:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:12:49.79+03	2021-05-25 13:12:49.797+03	
0592d81c-fdbe-eae1-13d1-f4c53f7cdfed	2021-05-25 13:13:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:13:09.79+03	2021-05-25 13:13:09.797+03	
4123bb9e-6f87-d20c-cdc7-ee713b963b94	2021-05-25 13:13:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:13:29.79+03	2021-05-25 13:13:29.798+03	
b5bcbf92-7330-9ccb-bec2-a794b2a38b62	2021-05-25 13:13:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:13:49.79+03	2021-05-25 13:13:49.798+03	
aadd8ed4-edc2-8df4-0aa7-f522f54e2164	2021-05-25 13:14:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:14:09.79+03	2021-05-25 13:14:09.798+03	
58aba8b5-2faa-9868-d09a-baeef3c8406e	2021-05-25 13:14:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:14:29.79+03	2021-05-25 13:14:29.797+03	
d0ccdcc8-0923-0874-a411-d1042939bffd	2021-05-25 12:55:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:55:18.79+03	2021-05-25 12:55:18.797+03	
24e7a010-3623-9b8d-a40c-7ce0140d3403	2021-05-25 12:55:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:55:38.79+03	2021-05-25 12:55:38.81+03	
1f6842a6-db32-2c5e-f2da-d77c99251812	2021-05-25 12:55:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:55:58.79+03	2021-05-25 12:55:58.797+03	
55ce121d-a0f3-1878-c245-f663b74b9e76	2021-05-25 12:56:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:56:18.79+03	2021-05-25 12:56:18.796+03	
38068376-ef42-1e1d-c2ce-b7a985fe6b4b	2021-05-25 12:56:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:56:38.79+03	2021-05-25 12:56:38.797+03	
9146c089-b883-8bca-f3a2-3e898310c844	2021-05-25 12:56:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:56:58.79+03	2021-05-25 12:56:58.798+03	
9b71203d-cb6c-63b5-e932-281709704c3d	2021-05-25 12:57:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:57:18.79+03	2021-05-25 12:57:18.796+03	
f92b4b0a-1512-c086-97aa-aa93bfc9142a	2021-05-25 12:57:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:57:38.79+03	2021-05-25 12:57:38.796+03	
db044642-fa2f-ca6c-222b-24f71a9a1951	2021-05-25 12:57:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:57:58.79+03	2021-05-25 12:57:58.797+03	
c0c0ac73-8f1a-2e3e-bcc8-2a20dfde7c0d	2021-05-25 12:58:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:58:18.79+03	2021-05-25 12:58:18.799+03	
79c76cdf-bcea-c0e7-792a-99c19d04429f	2021-05-25 12:58:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:58:38.79+03	2021-05-25 12:58:38.796+03	
b6e8e094-0952-4a39-6292-3c0bdae7398e	2021-05-25 12:58:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:58:58.79+03	2021-05-25 12:58:58.797+03	
543bde3d-b76f-1601-6d2f-adeaf44d0042	2021-05-25 12:59:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:59:18.79+03	2021-05-25 12:59:18.797+03	
71e3a378-f199-24a3-8216-5a9fdd5e993e	2021-05-25 12:59:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:59:38.79+03	2021-05-25 12:59:38.809+03	
f5fe6098-ea5e-259e-7eed-7ccd5e69b868	2021-05-25 12:59:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 12:59:58.79+03	2021-05-25 12:59:58.797+03	
7eec7cb5-1c8a-7555-7c24-24c799cd9166	2021-05-25 13:00:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:00:08.79+03	2021-05-25 13:00:08.796+03	
95217784-f7a1-408a-5d9e-6935620e3f6f	2021-05-25 13:00:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:00:28.79+03	2021-05-25 13:00:28.796+03	
9e47bec3-a67c-0d28-a2a5-3970bf3867bd	2021-05-25 13:00:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:00:48.79+03	2021-05-25 13:00:48.798+03	
40209526-e82e-2fd2-2a3f-e7f4a002e370	2021-05-25 13:01:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:01:08.79+03	2021-05-25 13:01:08.798+03	
941b2e99-78c6-196e-bf5b-f37866c996cf	2021-05-25 13:01:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:01:28.79+03	2021-05-25 13:01:28.799+03	
2ea9716d-c8f8-23c1-db29-915ab61fb89c	2021-05-25 13:01:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:01:48.79+03	2021-05-25 13:01:48.808+03	
cb1a8060-ac93-9045-c7b3-529a507b3466	2021-05-25 13:02:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:02:08.79+03	2021-05-25 13:02:08.802+03	
f7ff4bbc-45ec-39c8-d1aa-e0f80b937c08	2021-05-25 13:02:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:02:28.79+03	2021-05-25 13:02:28.803+03	
3524c3cb-8cee-f5aa-210d-43ca5c381672	2021-05-25 13:02:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:02:48.79+03	2021-05-25 13:02:48.796+03	
96cfeb08-60e1-7386-bdc9-8db4f7d916c5	2021-05-25 13:03:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:03:08.79+03	2021-05-25 13:03:08.796+03	
40be4041-e2d3-c6c6-81d8-164fc776d8e6	2021-05-25 13:03:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:03:28.79+03	2021-05-25 13:03:28.796+03	
d9de248d-8fa1-7577-324d-1e82f3fc3364	2021-05-25 13:03:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:03:48.79+03	2021-05-25 13:03:48.796+03	
a26bdffe-8021-120c-31ae-cd2ad9771ec1	2021-05-25 13:04:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:04:08.79+03	2021-05-25 13:04:08.796+03	
59f33472-b426-ab14-756b-e888febf2da3	2021-05-25 13:04:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:04:28.79+03	2021-05-25 13:04:28.798+03	
5e35d9fb-5811-9c42-f788-99cc3d07e235	2021-05-25 13:04:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:04:48.79+03	2021-05-25 13:04:48.796+03	
1b602800-19dc-d450-5eb7-939cf7167ee9	2021-05-25 13:05:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:05:08.79+03	2021-05-25 13:05:08.797+03	
af0270b1-8bef-7c68-d070-711559f71232	2021-05-25 13:05:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:05:28.79+03	2021-05-25 13:05:28.797+03	
8f717298-704f-6889-543a-fa341b0bbe07	2021-05-25 13:05:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:05:48.79+03	2021-05-25 13:05:48.798+03	
c077fb86-5a41-a224-90a2-3de7cbde959a	2021-05-25 13:06:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:06:08.79+03	2021-05-25 13:06:08.799+03	
408c521e-44b5-dbc4-b2c2-14c88b6473fc	2021-05-25 13:06:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:06:28.79+03	2021-05-25 13:06:28.8+03	
b9f5881c-e390-e80b-4053-e9f0689d67f3	2021-05-25 13:06:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:06:48.79+03	2021-05-25 13:06:48.801+03	
39e49f81-ee63-eb3d-d665-dc6a64eac6ff	2021-05-25 13:07:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:07:08.79+03	2021-05-25 13:07:08.797+03	
076aea62-0cca-0b4d-7187-196b7610b57b	2021-05-25 13:07:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:07:28.79+03	2021-05-25 13:07:28.81+03	
23e2a9c2-8537-f700-7079-2384d13876eb	2021-05-25 13:07:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:07:48.79+03	2021-05-25 13:07:48.796+03	
d09527eb-7b00-2968-2703-39971cd5a854	2021-05-25 13:08:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:08:08.79+03	2021-05-25 13:08:08.799+03	
e0b65527-ed6f-73b4-3f31-25fc975b2b7d	2021-05-25 13:08:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:08:28.79+03	2021-05-25 13:08:28.797+03	
e7e6a661-b915-37fb-6e2a-b04b7d69f7b7	2021-05-25 13:08:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:08:48.79+03	2021-05-25 13:08:48.797+03	
6f2ca985-6fd0-3618-27ab-2eb8080aae83	2021-05-25 13:09:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:09:08.79+03	2021-05-25 13:09:08.798+03	
c516fa36-3070-574c-fbe4-4d0901be2339	2021-05-25 13:09:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:09:28.79+03	2021-05-25 13:09:28.797+03	
74d42858-205e-f78b-a635-69aa744a9669	2021-05-25 13:09:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:09:48.79+03	2021-05-25 13:09:48.801+03	
94ab19e2-fa39-bc0f-fb97-881e59f0d6b0	2021-05-25 13:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 13:10:00.79+03	2021-05-25 13:10:00.794+03	ERROR
d0fe9910-bf9f-16af-4217-d5894a20cd03	2021-05-25 13:10:18.807	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:10:18.806+03	2021-05-25 13:10:18.814+03	
e0a268d5-555d-491c-b750-33fdb159054c	2021-05-25 13:10:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:10:39.79+03	2021-05-25 13:10:39.798+03	
21b4cb18-1b86-06b2-2661-c5cd1f50287a	2021-05-25 13:10:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:10:59.79+03	2021-05-25 13:10:59.797+03	
f0d0b6cb-8dd5-de8e-db20-735331c89625	2021-05-25 13:11:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:11:19.79+03	2021-05-25 13:11:19.806+03	
ad808ff2-d12d-4104-6b2e-6b66d0196092	2021-05-25 13:11:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:11:39.79+03	2021-05-25 13:11:39.797+03	
50aa2a2b-8bd7-9641-e1c1-1c9026cd36b6	2021-05-25 13:11:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:11:59.79+03	2021-05-25 13:11:59.799+03	
ce7f3f44-5f29-87f7-a2d7-0623c039a415	2021-05-25 13:12:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:12:19.79+03	2021-05-25 13:12:19.797+03	
80546ac0-68bc-49e6-ff1f-1b4449fe46fa	2021-05-25 13:12:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:12:39.79+03	2021-05-25 13:12:39.796+03	
68f0ade5-d20b-f8ab-5f2a-4aaec0d0ba64	2021-05-25 13:12:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:12:59.79+03	2021-05-25 13:12:59.796+03	
a677ec3a-b354-c587-c24c-a3d2f6f15a61	2021-05-25 13:13:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:13:19.79+03	2021-05-25 13:13:19.819+03	
ddbe0dc5-9c48-1a09-fe68-868fe1c33da2	2021-05-25 13:13:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:13:39.79+03	2021-05-25 13:13:39.797+03	
9625fa15-d0da-3e7a-4fa5-ce94828c62bc	2021-05-25 13:13:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:13:59.79+03	2021-05-25 13:13:59.797+03	
be76f5bc-83a9-28ab-654a-758c1c43cad9	2021-05-25 13:14:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:14:19.79+03	2021-05-25 13:14:19.797+03	
29420659-202b-ef22-1493-594c605f74b8	2021-05-25 13:14:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:14:39.79+03	2021-05-25 13:14:39.797+03	
e93aefc7-5883-a464-3780-db82c89bb10c	2021-05-25 13:14:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:14:59.79+03	2021-05-25 13:14:59.802+03	
1432c336-9d0a-f061-7a5c-2b8feb7e9bb9	2021-05-25 13:15:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:15:19.79+03	2021-05-25 13:15:19.808+03	
15d598b6-404d-9319-b308-2d8a2ebf2ed4	2021-05-25 13:15:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:15:39.79+03	2021-05-25 13:15:39.796+03	
f61c60a8-2cb6-4876-aa07-d90ac5ba4ccd	2021-05-25 13:14:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:14:49.79+03	2021-05-25 13:14:49.798+03	
eecb916c-b693-8e70-5c7b-3097da5a5f16	2021-05-25 13:15:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:15:09.79+03	2021-05-25 13:15:09.797+03	
b8193e8c-0f7f-af23-15e2-1e8f8cb1fc2e	2021-05-25 13:15:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:15:29.79+03	2021-05-25 13:15:29.802+03	
e5e2435e-892d-7458-1886-7fe13a8e1bf1	2021-05-25 13:15:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:15:49.79+03	2021-05-25 13:15:49.797+03	
1d172902-fe3c-155c-02dd-daf74b1bb292	2021-05-25 13:16:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:16:09.79+03	2021-05-25 13:16:09.797+03	
058f4d86-7c8c-fb50-7dd1-5a778d02673d	2021-05-25 13:16:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:16:29.79+03	2021-05-25 13:16:29.804+03	
c82d57ff-647a-a926-88db-5077db358b03	2021-05-25 13:16:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:16:59.79+03	2021-05-25 13:16:59.797+03	
7eaedf4b-da92-3985-4457-4ecd224ef17d	2021-05-25 13:17:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:17:19.79+03	2021-05-25 13:17:19.797+03	
c286601a-3b4b-c5ea-8743-5ce5a0b16fa2	2021-05-25 13:17:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:17:39.79+03	2021-05-25 13:17:39.796+03	
cb51e0e7-14f5-af51-72fc-8066c32c5708	2021-05-25 13:17:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:17:59.79+03	2021-05-25 13:17:59.797+03	
0a4b869c-5345-3de1-d607-852eab83c5dd	2021-05-25 13:18:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:18:19.79+03	2021-05-25 13:18:19.796+03	
87e9fec9-d28f-faaf-f4b4-fbf89392d3d6	2021-05-25 13:18:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:18:39.79+03	2021-05-25 13:18:39.797+03	
59a82f37-4b54-dc47-8ee6-ca8d1bc778fa	2021-05-25 13:18:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:18:59.79+03	2021-05-25 13:18:59.797+03	
d6424fac-6e01-5e33-9e35-f1685e40904c	2021-05-25 13:19:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:19:19.79+03	2021-05-25 13:19:19.797+03	
e3e10fc9-3f77-1cf2-6c75-c4e47ba84641	2021-05-25 13:19:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:19:49.79+03	2021-05-25 13:19:49.796+03	
c5fe0ccd-ae39-124a-cd84-d1fab3985fa8	2021-05-25 13:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 13:20:00.791+03	2021-05-25 13:20:00.796+03	ERROR
a9cc0f27-5775-a2df-4932-9192e31245db	2021-05-25 13:20:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:20:19.79+03	2021-05-25 13:20:19.796+03	
78045eff-92aa-d42f-ee5d-64cf96a886fb	2021-05-25 13:20:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:20:40.79+03	2021-05-25 13:20:40.797+03	
f6f122ec-859e-e04e-15b4-1a8bed61286f	2021-05-25 13:21:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:21:00.79+03	2021-05-25 13:21:00.8+03	
549c4784-8288-0a37-81c3-7786106ddbd3	2021-05-25 13:21:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:21:21.79+03	2021-05-25 13:21:21.797+03	
a0107666-f304-3d8a-15a4-aa814c0a9354	2021-05-25 13:21:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:21:41.79+03	2021-05-25 13:21:41.796+03	
87e78380-871f-dfa0-814f-4def51953e76	2021-05-25 13:22:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:22:01.79+03	2021-05-25 13:22:01.798+03	
e0ed8a0a-d078-f18e-4381-5040ac3e56f8	2021-05-25 13:22:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:22:21.79+03	2021-05-25 13:22:21.797+03	
0d970b49-8ffa-c464-422a-72c41e583d61	2021-05-25 13:22:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:22:52.79+03	2021-05-25 13:22:52.8+03	
0b196aa8-d2c0-4182-f54f-3c5c8db08575	2021-05-25 13:23:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:23:13.79+03	2021-05-25 13:23:13.814+03	
f1ae37a9-fb9a-832b-6dd9-eb63deda6df5	2021-05-25 13:23:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:23:43.79+03	2021-05-25 13:23:43.798+03	
043c4473-cf88-0fdd-9c02-c4b0e1fea28d	2021-05-25 13:24:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:24:03.79+03	2021-05-25 13:24:03.801+03	
c4eedaa1-72e0-38e3-cb8d-4d17b4ea93f4	2021-05-25 13:24:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:24:23.79+03	2021-05-25 13:24:23.797+03	
9f0451f3-fd03-4e2f-ff09-59e5d9f4a3f0	2021-05-25 13:24:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:24:43.79+03	2021-05-25 13:24:43.797+03	
a15f515a-9cc0-66e9-9b17-bb0c9bf136e4	2021-05-25 13:25:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:25:03.79+03	2021-05-25 13:25:03.797+03	
5eec1752-0bff-e19f-b316-577f16800ea4	2021-05-25 13:25:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:25:23.79+03	2021-05-25 13:25:23.796+03	
c2a37bc6-5a90-6ce2-6bdc-e23ab2086d80	2021-05-25 13:25:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:25:43.79+03	2021-05-25 13:25:43.797+03	
2a3b9af8-9490-e444-0a3d-7536b5abf5a2	2021-05-25 13:26:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:26:03.79+03	2021-05-25 13:26:03.803+03	
c66777b4-e2e9-1a62-1b5b-bcdb319beeb8	2021-05-25 13:26:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:26:23.79+03	2021-05-25 13:26:23.798+03	
a6098ad1-685a-7a0d-50db-ba5517f18d09	2021-05-25 13:26:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:26:43.79+03	2021-05-25 13:26:43.797+03	
7df7e338-fd92-e365-d18e-f676f5581e3d	2021-05-25 13:27:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:27:03.79+03	2021-05-25 13:27:03.797+03	
a3cf94c9-5288-c3c7-45a9-800fce5f9b54	2021-05-25 13:27:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:27:23.79+03	2021-05-25 13:27:23.796+03	
1875bab7-08de-ea64-828e-6189a0a5aa26	2021-05-25 13:27:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:27:43.79+03	2021-05-25 13:27:43.796+03	
a7534062-3ce3-db1e-23fa-476df99fcbc9	2021-05-25 13:28:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:28:03.79+03	2021-05-25 13:28:03.807+03	
7aaa4812-dfc1-2585-fc48-f0673957c683	2021-05-25 13:28:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:28:23.79+03	2021-05-25 13:28:23.807+03	
24c5cf4b-5a6d-63ea-7000-f4ec1125f02a	2021-05-25 13:28:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:28:43.79+03	2021-05-25 13:28:43.797+03	
2185e4c2-334b-9c92-2a84-8e426578aedf	2021-05-25 13:29:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:29:03.79+03	2021-05-25 13:29:03.797+03	
07e4b460-909b-eadc-8a71-229b4d8eb4d8	2021-05-25 13:29:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:29:23.79+03	2021-05-25 13:29:23.797+03	
0050a4f4-97dc-9004-f6e8-c0284860eae9	2021-05-25 13:29:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:29:43.79+03	2021-05-25 13:29:43.797+03	
2398ffe0-4908-58da-919e-8af07244187f	2021-05-25 13:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 13:30:00.79+03	2021-05-25 13:30:00.808+03	ERROR
a8d88665-170e-bead-b98d-3f9d4a97f00a	2021-05-25 13:30:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:30:13.79+03	2021-05-25 13:30:13.81+03	
e280ceaa-11ab-c2c0-0129-8cb640b1a738	2021-05-25 13:30:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:30:33.79+03	2021-05-25 13:30:33.797+03	
99b1c17f-f918-a136-fb26-380fae3faa61	2021-05-25 13:30:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:30:53.79+03	2021-05-25 13:30:53.797+03	
76df5a29-f21a-3de9-65b5-0bce5363ea4a	2021-05-25 13:31:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:31:13.79+03	2021-05-25 13:31:13.799+03	
d70b173b-bc09-17e5-51a4-182b2af284b1	2021-05-25 13:31:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:31:43.79+03	2021-05-25 13:31:43.817+03	
ea404506-3513-c5bf-4077-f7fc4436f3c0	2021-05-25 13:32:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:32:03.791+03	2021-05-25 13:32:03.799+03	
0510bf02-2019-ba1d-225a-a208d44b9474	2021-05-25 13:32:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:32:24.79+03	2021-05-25 13:32:24.797+03	
5cac2be7-4f0c-7638-d835-6d00ef2ca48a	2021-05-25 13:32:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:32:44.79+03	2021-05-25 13:32:44.8+03	
1106725a-09ad-4345-1a41-fb17839a4301	2021-05-25 13:33:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:33:04.79+03	2021-05-25 13:33:04.797+03	
a4315a27-c8a3-888a-2ea1-191b9bb496bb	2021-05-25 13:33:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:33:24.79+03	2021-05-25 13:33:24.796+03	
37dcfe0b-2db0-25ec-8ef0-e4dde54ffd19	2021-05-25 13:33:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:33:44.79+03	2021-05-25 13:33:44.797+03	
9a6bc514-d110-1d06-b2c0-5d9c940a74a2	2021-05-25 13:34:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:34:04.79+03	2021-05-25 13:34:04.796+03	
5caa304c-32ab-d6c8-b3c5-996ac85ebce4	2021-05-25 13:34:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:34:24.79+03	2021-05-25 13:34:24.797+03	
3d270dd8-c10d-3d2b-4b71-64365e0d7e54	2021-05-25 13:34:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:34:44.79+03	2021-05-25 13:34:44.796+03	
eacc8639-66eb-f198-091a-5102e49bf9a0	2021-05-25 13:35:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:35:04.79+03	2021-05-25 13:35:04.797+03	
826ef24d-af9a-8ac6-d668-652687a549b2	2021-05-25 13:35:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:35:24.79+03	2021-05-25 13:35:24.796+03	
d43f7a07-d82c-7f64-eb68-a806deee4c1f	2021-05-25 13:35:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:35:34.79+03	2021-05-25 13:35:34.797+03	
efbb01e5-cf76-d490-0d06-20a73b30b46e	2021-05-25 13:35:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:35:54.79+03	2021-05-25 13:35:54.797+03	
628c09b7-c985-e601-015b-bf8e4a548e91	2021-05-25 13:15:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:15:59.79+03	2021-05-25 13:15:59.798+03	
e522e94c-1540-b760-7e3c-9c78d2f62077	2021-05-25 13:16:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:16:19.79+03	2021-05-25 13:16:19.796+03	
c5800375-3c1e-e187-4bcd-dce1deb873a0	2021-05-25 13:16:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:16:39.79+03	2021-05-25 13:16:39.796+03	
a33197d7-b538-f692-0eae-d2fba3c398a0	2021-05-25 13:16:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:16:49.79+03	2021-05-25 13:16:49.796+03	
b7f643a1-bfe7-2525-109f-f4c7c0459f77	2021-05-25 13:17:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:17:09.79+03	2021-05-25 13:17:09.796+03	
5d305df7-e6e2-9fa3-8288-81a4dbcb0cc4	2021-05-25 13:17:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:17:29.79+03	2021-05-25 13:17:29.797+03	
0eb14d15-7ca8-c774-48d0-32e644338927	2021-05-25 13:17:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:17:49.79+03	2021-05-25 13:17:49.802+03	
3daf1bcd-408a-76d1-262b-fcf0f93e7036	2021-05-25 13:18:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:18:09.79+03	2021-05-25 13:18:09.796+03	
9150ee27-f9bb-f545-ab93-31a6252a1a7a	2021-05-25 13:18:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:18:29.79+03	2021-05-25 13:18:29.798+03	
ada06968-7362-210f-a7be-b5a5e2538d1a	2021-05-25 13:18:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:18:49.79+03	2021-05-25 13:18:49.797+03	
ab07780c-73de-b60f-1653-3f599aee7ce2	2021-05-25 13:19:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:19:09.79+03	2021-05-25 13:19:09.796+03	
3a1d62b8-0d3c-8b09-89cc-8a019939b464	2021-05-25 13:19:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:19:29.79+03	2021-05-25 13:19:29.8+03	
97eaddac-a985-115a-0d79-dc69680113be	2021-05-25 13:19:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:19:39.79+03	2021-05-25 13:19:39.809+03	
11f8f273-ce65-963a-8d7d-435e49ae1204	2021-05-25 13:19:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:19:59.79+03	2021-05-25 13:19:59.798+03	
a0d866d5-c358-ab97-4482-7f7821eab25a	2021-05-25 13:20:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:20:09.79+03	2021-05-25 13:20:09.8+03	
aba4cf3c-67e7-ddc9-e922-af8819c3d4b8	2021-05-25 13:20:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:20:29.791+03	2021-05-25 13:20:29.797+03	
cd56ce69-f7d7-f332-50db-a1bd9c65e8dc	2021-05-25 13:20:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:20:50.79+03	2021-05-25 13:20:50.796+03	
51b4bc06-3551-1082-2741-80901b2959a3	2021-05-25 13:21:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:21:10.791+03	2021-05-25 13:21:10.809+03	
ca892e4d-ad4f-91f1-a001-4f313b1849ee	2021-05-25 13:21:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:21:31.79+03	2021-05-25 13:21:31.81+03	
bdb1ef68-82a3-9d73-40b7-60e2964ab5b6	2021-05-25 13:21:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:21:51.79+03	2021-05-25 13:21:51.806+03	
0edaf8e4-71db-b479-0d0e-878e21234e3b	2021-05-25 13:22:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:22:11.79+03	2021-05-25 13:22:11.811+03	
6b4d1b6d-598b-3e7e-8e4a-2e9562c62142	2021-05-25 13:22:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:22:31.79+03	2021-05-25 13:22:31.799+03	
2024dc70-6f61-2fa2-ba5d-c8025f04676f	2021-05-25 13:22:41.808	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:22:41.808+03	2021-05-25 13:22:41.831+03	
12dd249c-2340-3a47-8ad4-c835999a92e1	2021-05-25 13:23:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:23:02.791+03	2021-05-25 13:23:02.8+03	
cb556a02-8209-815a-0554-0c51541e7226	2021-05-25 13:23:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:23:23.79+03	2021-05-25 13:23:23.799+03	
ba856c4c-a648-1a48-44e6-726cd7b3a198	2021-05-25 13:23:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:23:33.79+03	2021-05-25 13:23:33.812+03	
c55b9220-6066-2165-71df-bd7a46725ed9	2021-05-25 13:23:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:23:53.79+03	2021-05-25 13:23:53.797+03	
8114fa60-7d46-1e3b-8367-f9611601dfd8	2021-05-25 13:24:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:24:13.79+03	2021-05-25 13:24:13.797+03	
f29f6000-cf3e-2297-316c-db806f6db693	2021-05-25 13:24:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:24:33.79+03	2021-05-25 13:24:33.797+03	
e52696e2-5e8c-e5f7-12c8-6235989e19f8	2021-05-25 13:24:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:24:53.79+03	2021-05-25 13:24:53.797+03	
3b6d50b0-0088-a332-79dc-20def53630c2	2021-05-25 13:25:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:25:13.79+03	2021-05-25 13:25:13.798+03	
2544f3bc-9224-4616-66e0-d1368074e926	2021-05-25 13:25:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:25:33.79+03	2021-05-25 13:25:33.796+03	
3f5c400c-aaf4-8fef-70a8-1771e6b8ed74	2021-05-25 13:25:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:25:53.79+03	2021-05-25 13:25:53.797+03	
2bb7ed8f-8121-3bc5-7859-9e43f94d201d	2021-05-25 13:26:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:26:13.79+03	2021-05-25 13:26:13.798+03	
5554e034-7607-555a-fd96-24dbbdb30721	2021-05-25 13:26:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:26:33.79+03	2021-05-25 13:26:33.797+03	
29c218a4-a6ce-2a12-8802-205e0cbadb13	2021-05-25 13:26:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:26:53.79+03	2021-05-25 13:26:53.797+03	
127f9cf5-0251-7e39-44f9-b194e09e6981	2021-05-25 13:27:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:27:13.79+03	2021-05-25 13:27:13.8+03	
6a0e379e-bb16-e6a9-82cb-f8ed90236524	2021-05-25 13:27:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:27:33.79+03	2021-05-25 13:27:33.796+03	
bcb2fb26-0f9b-cc44-7f1f-8b41d75fb249	2021-05-25 13:27:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:27:53.79+03	2021-05-25 13:27:53.803+03	
d69a0ea2-801d-2d6f-1bfe-d2512e3274f3	2021-05-25 13:28:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:28:13.79+03	2021-05-25 13:28:13.797+03	
395e0b8e-7e6d-7b1d-7d42-d92e0622ad6b	2021-05-25 13:28:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:28:33.79+03	2021-05-25 13:28:33.797+03	
1a6298ac-ba77-0ba0-ac7a-a42fac3e7ed3	2021-05-25 13:28:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:28:53.79+03	2021-05-25 13:28:53.8+03	
5d2ef594-6aa5-65f2-0fb8-a212d76353ae	2021-05-25 13:29:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:29:13.79+03	2021-05-25 13:29:13.797+03	
fa82ac4a-db88-f0c8-32eb-d984b10eedf8	2021-05-25 13:29:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:29:33.79+03	2021-05-25 13:29:33.797+03	
d4c7b0db-70af-228d-c5b3-efb58d702502	2021-05-25 13:29:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:29:53.79+03	2021-05-25 13:29:53.796+03	
74851a94-7bf4-61c3-ff21-255b6536b7d7	2021-05-25 13:30:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:30:03.79+03	2021-05-25 13:30:03.799+03	
9fc04356-10c7-d11b-c11e-b7d99811f1fb	2021-05-25 13:30:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:30:23.79+03	2021-05-25 13:30:23.797+03	
28418a21-d145-777e-b6d1-f34509428a9f	2021-05-25 13:30:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:30:43.79+03	2021-05-25 13:30:43.799+03	
0f74778d-2b4e-f3b3-3d72-b43ee00c3196	2021-05-25 13:31:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:31:03.79+03	2021-05-25 13:31:03.797+03	
23f9987b-928c-d1a8-3d1f-62c537395859	2021-05-25 13:31:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:31:23.79+03	2021-05-25 13:31:23.804+03	
dca49ee0-30f6-6812-29cc-939422aef91a	2021-05-25 13:31:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:31:33.79+03	2021-05-25 13:31:33.797+03	
6d23144d-0ece-1346-ac91-a41d29abbfbc	2021-05-25 13:31:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:31:53.79+03	2021-05-25 13:31:53.797+03	
07668edf-256f-82ec-73bd-bbecfadfc73c	2021-05-25 13:32:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:32:14.79+03	2021-05-25 13:32:14.798+03	
ae9b2000-a39e-6345-39dc-ec4cb32129ce	2021-05-25 13:32:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:32:34.79+03	2021-05-25 13:32:34.797+03	
455c55c7-42ae-6244-a02e-0c66e7ac7b0d	2021-05-25 13:32:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:32:54.79+03	2021-05-25 13:32:54.798+03	
9a800be9-be70-4026-2f5e-d2a3fa6f4b18	2021-05-25 13:33:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:33:14.79+03	2021-05-25 13:33:14.797+03	
bb4f22fe-a0e7-6816-1789-fbe7f8de88f5	2021-05-25 13:33:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:33:34.79+03	2021-05-25 13:33:34.796+03	
97d28b2d-9325-e65f-1574-251ddf548540	2021-05-25 13:33:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:33:54.79+03	2021-05-25 13:33:54.797+03	
fcfb3f27-bc86-2305-0226-bb7f4f9e3a90	2021-05-25 13:34:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:34:14.79+03	2021-05-25 13:34:14.797+03	
359f5ce0-9772-d577-1c9c-e107dda9dd43	2021-05-25 13:34:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:34:34.79+03	2021-05-25 13:34:34.806+03	
cc512fd7-14c8-e9fb-2d92-b033f79691b2	2021-05-25 13:34:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:34:54.79+03	2021-05-25 13:34:54.797+03	
6aa0db7c-e303-5337-b23c-80fc4748d98d	2021-05-25 13:35:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:35:14.79+03	2021-05-25 13:35:14.797+03	
399edea3-5746-69c6-443a-2a4868438ca1	2021-05-25 13:35:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:35:44.79+03	2021-05-25 13:35:44.796+03	
c51df4e9-5f92-8369-5139-99d5308443a9	2021-05-25 13:36:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:36:04.79+03	2021-05-25 13:36:04.811+03	
b0077085-475a-9350-69a9-8d4b9cb00684	2021-05-25 13:36:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:36:24.79+03	2021-05-25 13:36:24.799+03	
ae3817d9-7878-11fe-23e1-e318c5760780	2021-05-25 13:36:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:36:44.79+03	2021-05-25 13:36:44.797+03	
d0e13552-a3e7-2dba-cd61-2a3f897056b0	2021-05-25 13:37:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:37:04.79+03	2021-05-25 13:37:04.797+03	
d3749b6f-572e-9046-b273-8dbd934e8e91	2021-05-25 13:37:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:37:24.79+03	2021-05-25 13:37:24.797+03	
639a0dc3-fbcb-4709-4e3f-979756773db4	2021-05-25 13:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:37:44.79+03	2021-05-25 13:37:44.797+03	
5c83841f-479c-ab2a-7a34-b9f4578ff8dc	2021-05-25 13:38:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:38:04.79+03	2021-05-25 13:38:04.797+03	
7bfd2416-b88f-1259-567d-389db23bd5fc	2021-05-25 13:38:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:38:24.79+03	2021-05-25 13:38:24.797+03	
c94178be-4c00-ba8d-a5cf-7dd9181f7d8f	2021-05-25 13:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:38:44.79+03	2021-05-25 13:38:44.798+03	
d4901cb6-92c5-5f46-1f5d-ce719383f593	2021-05-25 13:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:39:04.79+03	2021-05-25 13:39:04.797+03	
d076d7fa-f3e4-e349-0499-1cfc7a00ed0f	2021-05-25 13:39:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:39:24.79+03	2021-05-25 13:39:24.799+03	
62aad359-cf74-e686-cc35-d42b0fca2cbe	2021-05-25 13:39:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:39:44.79+03	2021-05-25 13:39:44.797+03	
a0c81c8c-250e-73eb-e7b1-316cb5d6447e	2021-05-25 13:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 13:40:00.79+03	2021-05-25 13:40:00.794+03	ERROR
833f90b9-4ca7-c55a-62dd-c4daafee9245	2021-05-25 13:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:40:14.79+03	2021-05-25 13:40:14.797+03	
8472d53f-012b-9db6-d0ca-1b2c5db90400	2021-05-25 13:40:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:40:34.79+03	2021-05-25 13:40:34.797+03	
bb988842-05bc-3896-7f67-76da3f2489cf	2021-05-25 13:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:41:04.79+03	2021-05-25 13:41:04.797+03	
d51ffede-b4e2-b335-75ec-4567f10136de	2021-05-25 13:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:41:24.79+03	2021-05-25 13:41:24.797+03	
eb287eee-e475-a666-2b86-c4fd8264768a	2021-05-25 13:41:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:41:44.79+03	2021-05-25 13:41:44.798+03	
326a2e75-2421-a202-8119-b0e825359d17	2021-05-25 13:42:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:42:04.79+03	2021-05-25 13:42:04.798+03	
557a54ff-3679-cf01-6c36-6271174fe76a	2021-05-25 13:42:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:42:24.79+03	2021-05-25 13:42:24.797+03	
9641eb22-a887-7212-03a0-b37b3855ce3a	2021-05-25 13:42:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:42:44.79+03	2021-05-25 13:42:44.797+03	
ab470865-e330-978a-aa53-a145d043f869	2021-05-25 13:43:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:43:04.79+03	2021-05-25 13:43:04.797+03	
766a19a7-8aad-a202-ee9e-1cec69498217	2021-05-25 13:43:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:43:24.79+03	2021-05-25 13:43:24.796+03	
db755611-7a28-7842-2a24-3977c09b52d4	2021-05-25 13:43:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:43:44.79+03	2021-05-25 13:43:44.81+03	
bf3498fa-cb1a-5050-b5a8-1e5919fd618a	2021-05-25 13:44:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:44:04.79+03	2021-05-25 13:44:04.797+03	
7ba80241-d03e-409e-1eee-a9a29bd3c85e	2021-05-25 13:44:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:44:24.79+03	2021-05-25 13:44:24.799+03	
e93fc7a7-0194-bec3-0675-a82453b881e7	2021-05-25 13:44:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:44:44.79+03	2021-05-25 13:44:44.802+03	
8d5a12e7-cf20-7902-8e7e-f91e95d0aae4	2021-05-25 13:45:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:45:04.79+03	2021-05-25 13:45:04.797+03	
203adea7-4487-dac6-9019-1e1596f45b07	2021-05-25 13:45:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:45:24.79+03	2021-05-25 13:45:24.801+03	
0fb93d43-f2ba-bf51-b77e-3d2b2e810956	2021-05-25 13:45:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:45:44.79+03	2021-05-25 13:45:44.797+03	
6b7c610b-d1d2-4d15-7403-10d43b49889b	2021-05-25 13:46:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:46:04.79+03	2021-05-25 13:46:04.797+03	
7632c391-e944-a82c-93d5-ecbb0bec227f	2021-05-25 13:46:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:46:24.79+03	2021-05-25 13:46:24.796+03	
136b550a-b813-a121-dff1-f03aa0bd0f6b	2021-05-25 13:46:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:46:44.79+03	2021-05-25 13:46:44.805+03	
8489d562-049d-7af9-4ed4-898b515fedbb	2021-05-25 13:46:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:46:54.79+03	2021-05-25 13:46:54.798+03	
c71c57c9-4e82-01b7-d77e-8f9f58a4761b	2021-05-25 13:47:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:47:14.79+03	2021-05-25 13:47:14.797+03	
b3e5ce7e-0996-2a81-8fb7-74565e66400a	2021-05-25 13:47:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:47:34.79+03	2021-05-25 13:47:34.796+03	
c980bbd5-9e98-4f85-5e2f-d52de77df320	2021-05-25 13:47:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:47:54.79+03	2021-05-25 13:47:54.798+03	
216483a1-a0d9-ee9c-0fa5-b1d9a605a3a1	2021-05-25 13:48:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:48:14.79+03	2021-05-25 13:48:14.797+03	
df78cbbb-df0e-391b-8c75-9a89d443446d	2021-05-25 13:48:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:48:34.79+03	2021-05-25 13:48:34.8+03	
501cbfd2-2eba-0499-0c65-21c0530935bc	2021-05-25 13:48:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:48:54.79+03	2021-05-25 13:48:54.814+03	
5d311e9e-726b-f485-1176-838dbcb70ada	2021-05-25 13:49:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:49:14.79+03	2021-05-25 13:49:14.797+03	
636b6b60-c650-8269-cbd7-d151a897c6c5	2021-05-25 13:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:49:34.79+03	2021-05-25 13:49:34.797+03	
ff306bed-99e9-e326-77fa-3014d502d97c	2021-05-25 13:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:49:54.79+03	2021-05-25 13:49:54.797+03	
b100ef3f-be8b-4618-31dd-82b25d992be4	2021-05-25 13:50:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:50:04.79+03	2021-05-25 13:50:04.797+03	
24373016-6b93-547e-131c-44e2a66a21e1	2021-05-25 13:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:50:24.79+03	2021-05-25 13:50:24.809+03	
32ffa5f8-dbef-92f1-6a65-ddf2aeeec91b	2021-05-25 13:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:50:44.79+03	2021-05-25 13:50:44.805+03	
49c5e4d2-9808-d031-701d-3c973ea9cde7	2021-05-25 13:51:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:51:04.79+03	2021-05-25 13:51:04.8+03	
c57af62d-f5a8-e438-1991-2b65b97c0239	2021-05-25 13:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:51:24.79+03	2021-05-25 13:51:24.796+03	
8d1d04eb-b19b-1920-5e7a-2b4eececfaa1	2021-05-25 13:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:51:44.79+03	2021-05-25 13:51:44.797+03	
6f8979b3-a581-b34e-323c-51721c9f94ca	2021-05-25 13:52:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:52:04.791+03	2021-05-25 13:52:04.798+03	
2572bd52-9cea-a932-2228-425ec633f8af	2021-05-25 13:52:25.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:52:25.79+03	2021-05-25 13:52:25.802+03	
4ec3e341-e885-6c6b-b6a6-5f57ae6b10d0	2021-05-25 13:52:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:52:45.79+03	2021-05-25 13:52:45.797+03	
48d51393-6f00-5131-200b-4d71ea100a55	2021-05-25 13:53:05.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:53:05.791+03	2021-05-25 13:53:05.797+03	
13614130-c31d-8727-44e5-9f3bbdabf65e	2021-05-25 13:53:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:53:26.79+03	2021-05-25 13:53:26.804+03	
48b85f67-48ca-4415-beed-8e70384550a3	2021-05-25 13:53:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:53:46.79+03	2021-05-25 13:53:46.81+03	
4479eea0-8645-5d67-c0c9-d2787fe45ba3	2021-05-25 13:54:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:54:06.79+03	2021-05-25 13:54:06.796+03	
fa7da142-7569-536c-9d72-6bb6b5385bb5	2021-05-25 13:54:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:54:26.79+03	2021-05-25 13:54:26.811+03	
e29f2bde-9699-9885-ea4a-65233d069471	2021-05-25 13:54:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:54:46.79+03	2021-05-25 13:54:46.796+03	
6ad2e296-b907-5f7d-163b-4a1bb4d48e8d	2021-05-25 13:55:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:55:06.79+03	2021-05-25 13:55:06.796+03	
d84f774f-49c7-e050-3878-9e442d0e11d0	2021-05-25 13:55:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:55:26.79+03	2021-05-25 13:55:26.797+03	
db1c98b0-658c-6075-f2c4-034f90ee2c96	2021-05-25 13:55:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:55:46.79+03	2021-05-25 13:55:46.798+03	
f2531f99-74cf-d720-ec87-e8b13cfb289a	2021-05-25 13:56:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:56:06.79+03	2021-05-25 13:56:06.797+03	
bdc15fe9-266b-7ee5-38a8-525b1941c23f	2021-05-25 13:56:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:56:26.79+03	2021-05-25 13:56:26.801+03	
40507360-893d-9932-e39f-e9f937048cba	2021-05-25 13:36:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:36:14.79+03	2021-05-25 13:36:14.798+03	
c6a78b7d-3f86-46e3-9725-0ca00141fc4c	2021-05-25 13:36:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:36:34.79+03	2021-05-25 13:36:34.803+03	
a1c4a96a-dc39-e2f7-5657-f8430ac324b8	2021-05-25 13:36:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:36:54.79+03	2021-05-25 13:36:54.796+03	
8323ee8e-3b7a-cbc0-a64d-b9cde8d998ba	2021-05-25 13:37:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:37:14.79+03	2021-05-25 13:37:14.797+03	
316d4ef7-7b62-0ae1-b245-5c92a495b56e	2021-05-25 13:37:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:37:34.79+03	2021-05-25 13:37:34.796+03	
f479d969-b982-e885-7820-787810ee3bb2	2021-05-25 13:37:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:37:54.79+03	2021-05-25 13:37:54.8+03	
813cace8-dacd-a80d-fb3f-7f6161dd366c	2021-05-25 13:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:38:14.79+03	2021-05-25 13:38:14.797+03	
d2f7365e-95d4-0d14-d703-f2ed726007cb	2021-05-25 13:38:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:38:34.79+03	2021-05-25 13:38:34.813+03	
227e28f7-c3f4-b5e0-3b46-7beb70539d2b	2021-05-25 13:38:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:38:54.79+03	2021-05-25 13:38:54.803+03	
c03f0a34-313b-133e-8f8f-7ae7036c5d58	2021-05-25 13:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:39:14.79+03	2021-05-25 13:39:14.798+03	
b33b1435-4cc7-fffe-5702-fbee5cb084c8	2021-05-25 13:39:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:39:34.79+03	2021-05-25 13:39:34.809+03	
9ad0a179-33f9-d447-cc69-7a7bb92fd60d	2021-05-25 13:39:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:39:54.79+03	2021-05-25 13:39:54.797+03	
0122f2cd-2086-c6d1-6425-78f5df8ed481	2021-05-25 13:40:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:40:04.79+03	2021-05-25 13:40:04.798+03	
8b24bdd4-f2ed-4114-e1f8-d8384278a9d3	2021-05-25 13:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:40:24.79+03	2021-05-25 13:40:24.797+03	
721d1c52-cd0c-542b-cb76-bdb255a73ebb	2021-05-25 13:40:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:40:44.79+03	2021-05-25 13:40:44.797+03	
ed939dd3-8ced-ef99-54f8-e054c00a1f87	2021-05-25 13:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:40:54.79+03	2021-05-25 13:40:54.797+03	
563296c5-291f-6fbc-1d4a-0f7375de51b8	2021-05-25 13:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:41:14.79+03	2021-05-25 13:41:14.797+03	
0f114459-0f19-4219-61fb-8b31dfe114ba	2021-05-25 13:41:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:41:34.79+03	2021-05-25 13:41:34.799+03	
a87a3821-0305-e647-57ea-ce357751f859	2021-05-25 13:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:41:54.79+03	2021-05-25 13:41:54.797+03	
4f0b72bc-9c6c-2b2e-3d67-37c020c35767	2021-05-25 13:42:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:42:14.79+03	2021-05-25 13:42:14.797+03	
cc3f58d2-c23b-9328-001c-b913f8e09703	2021-05-25 13:42:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:42:34.79+03	2021-05-25 13:42:34.798+03	
90c845cc-ecb7-0350-02b8-858231a31aab	2021-05-25 13:42:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:42:54.79+03	2021-05-25 13:42:54.796+03	
23728546-c40d-8ab7-3043-957aed1bad0b	2021-05-25 13:43:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:43:14.79+03	2021-05-25 13:43:14.796+03	
ace1ac77-2d9c-4c04-4f80-b8293cdc46df	2021-05-25 13:43:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:43:34.79+03	2021-05-25 13:43:34.797+03	
bcf6a741-a543-6691-6474-f851c2599087	2021-05-25 13:43:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:43:54.79+03	2021-05-25 13:43:54.798+03	
8e79d87e-3ad6-ea92-2d40-2bc70063298a	2021-05-25 13:44:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:44:14.79+03	2021-05-25 13:44:14.797+03	
0d8bd0d9-44f0-b8f0-7225-16d8e4709107	2021-05-25 13:44:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:44:34.79+03	2021-05-25 13:44:34.803+03	
b4e0cda6-e5eb-7e06-b98b-fa0d01271f2e	2021-05-25 13:44:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:44:54.79+03	2021-05-25 13:44:54.797+03	
e56a77fe-049a-6827-4c86-3aca8524e079	2021-05-25 13:45:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:45:14.79+03	2021-05-25 13:45:14.797+03	
a46ec2ca-0677-43f7-7991-508b02b6ed9d	2021-05-25 13:45:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:45:34.79+03	2021-05-25 13:45:34.81+03	
60279611-19a0-e3f8-1d59-5e79e179a381	2021-05-25 13:45:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:45:54.79+03	2021-05-25 13:45:54.797+03	
1ccce81f-1e50-48cc-a804-1b3f9cef939e	2021-05-25 13:46:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:46:14.79+03	2021-05-25 13:46:14.8+03	
db122a8c-115e-d8a5-f5f5-5d2881571534	2021-05-25 13:46:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:46:34.79+03	2021-05-25 13:46:34.797+03	
cba481de-6881-55e2-b139-a11cdce62b5d	2021-05-25 13:47:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:47:04.79+03	2021-05-25 13:47:04.799+03	
b64574d9-7562-10ba-fe53-b068dd94b3db	2021-05-25 13:47:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:47:24.79+03	2021-05-25 13:47:24.797+03	
53ac4275-072f-1ee4-fc21-2e4a55654cb8	2021-05-25 13:47:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:47:44.79+03	2021-05-25 13:47:44.798+03	
37e9c4db-7496-16f0-e0a0-55ee15d7f18d	2021-05-25 13:48:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:48:04.79+03	2021-05-25 13:48:04.799+03	
70330e19-159a-1156-910e-905f06c5b850	2021-05-25 13:48:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:48:24.79+03	2021-05-25 13:48:24.797+03	
28492f60-4126-a62e-d00b-579acbfea789	2021-05-25 13:48:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:48:44.79+03	2021-05-25 13:48:44.797+03	
0a091f6d-c9b8-b311-03d4-2c7c493f9bea	2021-05-25 13:49:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:49:04.79+03	2021-05-25 13:49:04.796+03	
fd5f9880-11ab-1d9f-c2c5-11f4d2d68175	2021-05-25 13:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:49:24.79+03	2021-05-25 13:49:24.797+03	
ad629735-c947-f5c7-4f23-546e9068b5c0	2021-05-25 13:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:49:44.79+03	2021-05-25 13:49:44.796+03	
5a9de97a-9990-7b77-686d-ccffec0c1561	2021-05-25 13:50:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 13:50:00.791+03	2021-05-25 13:50:00.799+03	ERROR
2769a1f8-5df2-585b-edca-1c7935846471	2021-05-25 13:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:50:14.79+03	2021-05-25 13:50:14.797+03	
a815a142-5575-fc62-a13b-73506fc80810	2021-05-25 13:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:50:34.79+03	2021-05-25 13:50:34.796+03	
aa355422-8dbb-65dc-2489-141500b25ff2	2021-05-25 13:50:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:50:54.79+03	2021-05-25 13:50:54.799+03	
b669f2c6-42c7-9ac8-af41-728744a87161	2021-05-25 13:51:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:51:14.79+03	2021-05-25 13:51:14.798+03	
c18c6bf9-de7f-1af0-da82-80a19b785d45	2021-05-25 13:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:51:34.79+03	2021-05-25 13:51:34.797+03	
999e5159-4c31-6001-adad-81ba81c70380	2021-05-25 13:51:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:51:54.79+03	2021-05-25 13:51:54.802+03	
29ef2d0f-1024-e950-72a5-9443b8fd6e1a	2021-05-25 13:52:15.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:52:15.79+03	2021-05-25 13:52:15.797+03	
97492b42-2e17-1db7-89ba-dfa1c3646446	2021-05-25 13:52:35.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:52:35.79+03	2021-05-25 13:52:35.807+03	
c6387fc2-d267-3312-0ac8-117f19ddcf0a	2021-05-25 13:52:55.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:52:55.79+03	2021-05-25 13:52:55.811+03	
1f15240a-2cba-e879-7440-8c51e798ebfa	2021-05-25 13:53:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:53:16.79+03	2021-05-25 13:53:16.796+03	
20d5921c-3fc1-0b86-69dc-d4dbb481b1e5	2021-05-25 13:53:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:53:36.79+03	2021-05-25 13:53:36.797+03	
8b63ee23-a3b6-5f90-7dfc-df29a12bc419	2021-05-25 13:53:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:53:56.79+03	2021-05-25 13:53:56.799+03	
f84809a4-2126-d2b3-9d25-eabd27f214e2	2021-05-25 13:54:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:54:16.79+03	2021-05-25 13:54:16.797+03	
62e2782b-2866-52e2-8e72-69c872c9497f	2021-05-25 13:54:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:54:36.79+03	2021-05-25 13:54:36.798+03	
f909734b-14f5-76b0-6c15-2ede8f629253	2021-05-25 13:54:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:54:56.79+03	2021-05-25 13:54:56.799+03	
57a4f8fb-f552-e8d3-5380-a7e2e739c760	2021-05-25 13:55:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:55:16.79+03	2021-05-25 13:55:16.796+03	
230f9a3a-3f9d-fe40-2358-0974a782eb14	2021-05-25 13:55:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:55:36.79+03	2021-05-25 13:55:36.796+03	
4d5e36fd-0202-32e9-4390-e39f9dbc43bf	2021-05-25 13:55:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:55:56.79+03	2021-05-25 13:55:56.797+03	
57c1b858-a7c9-5373-ba43-1f2f4bde0408	2021-05-25 13:56:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:56:16.79+03	2021-05-25 13:56:16.797+03	
dbaac06b-ddbf-073e-1133-5b700137d091	2021-05-25 13:56:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:56:36.79+03	2021-05-25 13:56:36.796+03	
dfa50081-04de-7853-b68e-c16f08b2fe5d	2021-05-25 13:56:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:56:46.79+03	2021-05-25 13:56:46.797+03	
1c80aa95-1197-3beb-3316-067ce2cf905d	2021-05-26 04:21:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:21:04.79+03	2021-05-26 04:21:04.797+03	
4d406688-bbc8-6c36-e31f-e4da30b5c45f	2021-05-25 13:57:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:57:06.79+03	2021-05-25 13:57:06.796+03	
23f9cafd-9a36-7333-50ef-944a24f01977	2021-05-25 13:57:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:57:26.79+03	2021-05-25 13:57:26.797+03	
3a4a5f76-9fb0-a356-e8e7-ef4def981341	2021-05-26 04:21:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:21:24.79+03	2021-05-26 04:21:24.796+03	
32f08025-7029-3609-7f9e-eff27c900943	2021-05-25 13:57:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:57:46.79+03	2021-05-25 13:57:46.797+03	
39daea26-10ff-81fa-8a5f-eb8eea36acaa	2021-05-25 13:58:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:58:06.79+03	2021-05-25 13:58:06.799+03	
808c036e-abcd-fd64-8d69-00c6dc828dc3	2021-05-25 13:58:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:58:26.79+03	2021-05-25 13:58:26.796+03	
184b1b4f-78d5-177e-b22a-02d18fa00bf4	2021-05-25 13:58:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:58:46.79+03	2021-05-25 13:58:46.797+03	
51fb472a-996e-a324-958f-61f4e7ede95b	2021-05-25 13:59:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:59:06.79+03	2021-05-25 13:59:06.797+03	
6e9792ae-6f7f-05d7-60c5-7ab3ebc91242	2021-05-25 13:59:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:59:26.79+03	2021-05-25 13:59:26.797+03	
b4fc0490-7809-1c79-614f-eccf78a93d6e	2021-05-25 13:59:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:59:46.79+03	2021-05-25 13:59:46.797+03	
9f49bb2e-ad21-654b-076e-d6a4b780aa9a	2021-05-25 14:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 14:00:00.79+03	2021-05-25 14:00:00.795+03	ERROR
ae262e74-a36a-881c-0c45-d0c83d0b121b	2021-05-25 14:00:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:00:16.79+03	2021-05-25 14:00:16.797+03	
20b85f21-420c-c932-c6b9-078beaf09513	2021-05-25 14:00:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:00:36.79+03	2021-05-25 14:00:36.797+03	
7ed3d074-1e40-138e-8dfa-5beabf73bd74	2021-05-25 14:00:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:00:56.79+03	2021-05-25 14:00:56.797+03	
d406e53f-03ad-f034-dc18-7f8e41128332	2021-05-25 14:01:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:01:16.79+03	2021-05-25 14:01:16.798+03	
1140a439-70dd-6631-c20b-f047e7be85fd	2021-05-25 14:01:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:01:36.79+03	2021-05-25 14:01:36.796+03	
66b6d965-3483-23da-9802-107886217232	2021-05-25 14:01:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:01:56.79+03	2021-05-25 14:01:56.797+03	
5d2713fe-8495-1887-20de-5e7ed613444a	2021-05-25 14:02:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:02:16.79+03	2021-05-25 14:02:16.798+03	
612ed5f2-e5fe-b8df-f330-0aa9e4b19835	2021-05-25 14:02:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:02:36.79+03	2021-05-25 14:02:36.798+03	
b5fa5ec6-7cd6-99b9-464d-3d5afafef6a5	2021-05-25 14:02:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:02:56.79+03	2021-05-25 14:02:56.797+03	
3fa28845-3569-dea5-e1c3-977c44d41346	2021-05-25 14:03:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:03:16.79+03	2021-05-25 14:03:16.797+03	
afe5b169-7086-526b-ed31-663335679674	2021-05-25 14:03:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:03:36.79+03	2021-05-25 14:03:36.798+03	
50fc3aae-8f45-33a4-0254-8437f8288979	2021-05-25 14:03:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:03:56.79+03	2021-05-25 14:03:56.797+03	
ffb17f65-7dc3-9b59-4b0f-97b25324d651	2021-05-25 14:04:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:04:16.79+03	2021-05-25 14:04:16.797+03	
4be1a818-5043-5eab-690c-d76b525003e9	2021-05-25 14:04:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:04:36.79+03	2021-05-25 14:04:36.797+03	
ffbc853f-7caa-156a-108a-7ad3fa151a62	2021-05-25 14:04:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:04:46.79+03	2021-05-25 14:04:46.797+03	
55d3d103-00f6-f5da-131c-a95390087663	2021-05-25 14:05:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:05:06.79+03	2021-05-25 14:05:06.797+03	
94880cdd-c300-c820-a363-abcd29d52aeb	2021-05-25 14:05:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:05:26.79+03	2021-05-25 14:05:26.796+03	
db0e78dc-993b-0ec2-c6e9-35fca0172441	2021-05-25 14:05:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:05:46.79+03	2021-05-25 14:05:46.796+03	
ae8182de-f693-bea9-e269-236e63d3fe09	2021-05-25 14:06:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:06:06.79+03	2021-05-25 14:06:06.796+03	
c156118f-3fb9-dcd0-2eb9-6539ea34646a	2021-05-25 14:06:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:06:26.79+03	2021-05-25 14:06:26.797+03	
83cba9a6-b4d1-804b-d82a-9ad6dee00075	2021-05-25 14:06:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:06:46.79+03	2021-05-25 14:06:46.796+03	
bf693b36-c4d5-d112-0436-586737fa7f8a	2021-05-25 14:07:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:07:06.79+03	2021-05-25 14:07:06.797+03	
b8a35d79-76bb-5597-4bde-6454aa778382	2021-05-25 14:07:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:07:26.79+03	2021-05-25 14:07:26.796+03	
fad754d4-b1e1-b0e6-a0c8-4e2fd954b13b	2021-05-25 14:07:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:07:46.79+03	2021-05-25 14:07:46.826+03	
b972fec5-27a2-2696-41eb-693ff721c166	2021-05-25 14:08:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:08:06.79+03	2021-05-25 14:08:06.81+03	
d6f90864-4475-2f74-f083-bdb782b291cd	2021-05-25 14:08:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:08:26.79+03	2021-05-25 14:08:26.796+03	
0593b173-0eeb-41d6-e696-5a2ae581112b	2021-05-25 14:08:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:08:46.79+03	2021-05-25 14:08:46.798+03	
8e0bf7ca-190b-0154-d995-d8cd8b0a6ece	2021-05-25 14:09:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:09:06.79+03	2021-05-25 14:09:06.807+03	
f55c895f-60b3-71d4-b4c4-4ded2fe30dc5	2021-05-25 14:09:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:09:26.79+03	2021-05-25 14:09:26.8+03	
67a2d44b-80b6-3ef8-e554-f27a87ca797d	2021-05-25 14:09:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:09:46.791+03	2021-05-25 14:09:46.797+03	
1c639d59-d633-2d27-e289-8c9c6d0ab63e	2021-05-25 14:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 14:10:00.79+03	2021-05-25 14:10:00.795+03	ERROR
7ef86a1e-d0c2-6b05-fc79-29e4bb8f0148	2021-05-25 14:10:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:10:17.79+03	2021-05-25 14:10:17.797+03	
50f73d78-4c9c-ae46-8b97-82063c95d42b	2021-05-25 14:10:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:10:37.79+03	2021-05-25 14:10:37.797+03	
db26bc77-10c6-acd9-b649-4c3db924cf69	2021-05-25 14:10:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:10:57.79+03	2021-05-25 14:10:57.817+03	
bfb3956c-e54f-2358-a5fd-b9185a783e23	2021-05-25 14:11:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:11:17.79+03	2021-05-25 14:11:17.798+03	
b9ea86bf-5ea4-2bb2-48fa-3549e7b6c2d4	2021-05-25 14:11:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:11:37.79+03	2021-05-25 14:11:37.798+03	
97e0dd54-df8a-8a39-7ffb-ac70fcddcc68	2021-05-25 14:11:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:11:57.79+03	2021-05-25 14:11:57.796+03	
b8f24dde-8416-20a4-674e-def5bd11ddec	2021-05-25 14:12:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:12:17.79+03	2021-05-25 14:12:17.797+03	
2c3dc673-fa99-01e9-0d51-29bcf6d9216e	2021-05-25 14:12:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:12:37.79+03	2021-05-25 14:12:37.797+03	
22c37d1b-0b46-e681-83a6-1ba5c56193fa	2021-05-25 14:13:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:13:08.79+03	2021-05-25 14:13:08.798+03	
47752dbe-9a28-26d9-d1c8-12ac506cd95d	2021-05-25 14:13:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:13:28.79+03	2021-05-25 14:13:28.797+03	
b275bdbd-6aba-08d9-de4e-05c88021534e	2021-05-25 14:13:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:13:58.79+03	2021-05-25 14:13:58.797+03	
d329f5f3-caa6-3926-7787-0877a25393c5	2021-05-25 14:14:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:14:28.79+03	2021-05-25 14:14:28.811+03	
7d50238b-e251-a893-dae2-5d957ec093b8	2021-05-25 14:14:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:14:48.79+03	2021-05-25 14:14:48.798+03	
62a731ed-6755-0ac9-6c47-a73b0430c2d4	2021-05-25 14:15:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:15:08.79+03	2021-05-25 14:15:08.797+03	
5d1cf946-3f67-8517-8d7e-41583f26e32e	2021-05-25 14:15:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:15:28.79+03	2021-05-25 14:15:28.813+03	
8ceb85d5-cda8-3801-18c8-6820de31e211	2021-05-25 14:15:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:15:48.79+03	2021-05-25 14:15:48.797+03	
d20ac1fe-9dbb-eb2f-be6a-d19ed2d4f8f7	2021-05-25 14:16:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:16:08.79+03	2021-05-25 14:16:08.803+03	
a87ffa4d-c349-20c9-1c0b-63afd743b3c8	2021-05-25 14:16:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:16:48.79+03	2021-05-25 14:16:48.8+03	
95ece996-1137-0614-0dde-2ed8fd1d184b	2021-05-25 14:17:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:17:08.79+03	2021-05-25 14:17:08.798+03	
140dc421-a1d2-1034-084e-245aa5b8d09b	2021-05-25 13:56:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:56:56.79+03	2021-05-25 13:56:56.8+03	
d81c71de-bb40-f3dd-0585-a389113151fa	2021-05-25 13:57:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:57:16.79+03	2021-05-25 13:57:16.796+03	
957a59bc-2ec5-3782-14d7-a1e2ae8326c9	2021-05-25 13:57:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:57:36.79+03	2021-05-25 13:57:36.798+03	
8d8eb8c5-09ad-63a6-739a-e22b8180ecf3	2021-05-25 13:57:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:57:56.79+03	2021-05-25 13:57:56.797+03	
3515867f-2d11-8bdb-24e6-11163f8840fd	2021-05-25 13:58:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:58:16.79+03	2021-05-25 13:58:16.797+03	
74f86853-d8c6-fec5-fcfa-9cb739fd3461	2021-05-25 13:58:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:58:36.79+03	2021-05-25 13:58:36.797+03	
b852b1b3-0ff6-83e7-c3d8-50f28c071abb	2021-05-25 13:58:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:58:56.79+03	2021-05-25 13:58:56.801+03	
0389ec2d-a40e-2e4c-41ed-6f093cd2b41d	2021-05-25 13:59:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:59:16.79+03	2021-05-25 13:59:16.802+03	
79311b51-58b8-06be-fefe-937c125560e6	2021-05-25 13:59:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:59:36.79+03	2021-05-25 13:59:36.797+03	
fb6cbf38-3b8d-ea5c-88b5-ddc0d809e7f3	2021-05-25 13:59:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 13:59:56.79+03	2021-05-25 13:59:56.797+03	
ebb5c655-b114-fd92-6b16-395f410266ff	2021-05-25 14:00:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:00:06.79+03	2021-05-25 14:00:06.801+03	
197e77e3-b180-d75c-ce34-d373480dec36	2021-05-25 14:00:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:00:26.79+03	2021-05-25 14:00:26.796+03	
a2a1f2fe-3357-53e4-f451-27321221eb03	2021-05-25 14:00:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:00:46.79+03	2021-05-25 14:00:46.804+03	
9093270a-1ea5-e50d-ed59-f7cb70259d03	2021-05-25 14:01:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:01:06.79+03	2021-05-25 14:01:06.797+03	
e851a055-78b0-e164-8312-f7aae7b75046	2021-05-25 14:01:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:01:26.79+03	2021-05-25 14:01:26.797+03	
3d992b07-3067-b70f-3308-e9c73af34387	2021-05-25 14:01:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:01:46.79+03	2021-05-25 14:01:46.81+03	
65c9fb2d-cce2-eabd-b1d4-8ee5b66ace27	2021-05-25 14:02:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:02:06.79+03	2021-05-25 14:02:06.806+03	
1ce256a9-e736-6468-318b-c9f3c2f8774d	2021-05-25 14:02:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:02:26.79+03	2021-05-25 14:02:26.799+03	
1538ea9d-4a41-95cb-3e01-bf79e38ca8d7	2021-05-25 14:02:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:02:46.79+03	2021-05-25 14:02:46.798+03	
939bf2ef-e259-15f0-566d-b532c0dfc14c	2021-05-25 14:03:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:03:06.79+03	2021-05-25 14:03:06.797+03	
4f7cd4fe-b620-7639-aa31-eb104b798b85	2021-05-25 14:03:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:03:26.79+03	2021-05-25 14:03:26.801+03	
d4a97762-d922-9aa6-5a21-47008dc59745	2021-05-25 14:03:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:03:46.79+03	2021-05-25 14:03:46.798+03	
da5f3b5a-051e-2620-27ab-70ae00d6728c	2021-05-25 14:04:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:04:06.79+03	2021-05-25 14:04:06.798+03	
908841fe-272c-566a-099e-1f9c96ee3e0b	2021-05-25 14:04:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:04:26.79+03	2021-05-25 14:04:26.8+03	
30c9ae4f-8acb-eed6-59e7-8804731902c2	2021-05-25 14:04:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:04:56.79+03	2021-05-25 14:04:56.802+03	
411a2caa-4ca3-2dda-5640-366e6891e0a3	2021-05-25 14:05:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:05:16.79+03	2021-05-25 14:05:16.796+03	
62b4a22a-902c-4e16-420b-64f5d7e8140a	2021-05-25 14:05:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:05:36.79+03	2021-05-25 14:05:36.801+03	
a06882ac-55bd-54ad-0e20-691a65eacf00	2021-05-25 14:05:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:05:56.79+03	2021-05-25 14:05:56.796+03	
ae368e3e-6c7b-8d16-80f4-ade3b98d713a	2021-05-25 14:06:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:06:16.79+03	2021-05-25 14:06:16.797+03	
6762774b-75af-3992-56c9-ef37d0fd1b8f	2021-05-25 14:06:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:06:36.79+03	2021-05-25 14:06:36.796+03	
df549d26-c6ab-2e92-3bb7-33670c5bb008	2021-05-25 14:06:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:06:56.79+03	2021-05-25 14:06:56.807+03	
c36c060f-2b11-f778-a3ac-cc83e7fece99	2021-05-25 14:07:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:07:16.79+03	2021-05-25 14:07:16.797+03	
cac6fd8a-9d9b-3b8f-8fe1-7b0082b13f59	2021-05-25 14:07:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:07:36.79+03	2021-05-25 14:07:36.798+03	
5362abc7-bf09-1a85-84f4-f7bff4ae4762	2021-05-25 14:07:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:07:56.79+03	2021-05-25 14:07:56.797+03	
fd2d948d-a505-8dc3-2cac-8bd5a0752c54	2021-05-25 14:08:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:08:16.79+03	2021-05-25 14:08:16.796+03	
78be684c-afdd-aa66-8b92-1418f17a2348	2021-05-25 14:08:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:08:36.79+03	2021-05-25 14:08:36.797+03	
5646fc87-ce4f-97c6-f8cc-a25b32aec2dc	2021-05-25 14:08:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:08:56.79+03	2021-05-25 14:08:56.798+03	
5b082a60-04c5-adc9-cead-c403cbc5e112	2021-05-25 14:09:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:09:16.79+03	2021-05-25 14:09:16.808+03	
ed05f8c8-f023-35bf-2fd6-ccc069bf040a	2021-05-25 14:09:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:09:36.79+03	2021-05-25 14:09:36.796+03	
f9ca3199-0509-7b11-b75b-7cea7bda5532	2021-05-25 14:09:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:09:57.79+03	2021-05-25 14:09:57.803+03	
cef9f30c-1fdc-5121-e8f2-1c678ad76bca	2021-05-25 14:10:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:10:07.79+03	2021-05-25 14:10:07.799+03	
21dc4a31-8829-d425-e747-e7f79bda0dd4	2021-05-25 14:10:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:10:27.79+03	2021-05-25 14:10:27.798+03	
8be2dfc6-f83c-f8f1-a61c-00784c4b335c	2021-05-25 14:10:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:10:47.79+03	2021-05-25 14:10:47.797+03	
f6b3e89f-68b7-774f-5f55-a84c0793d9f7	2021-05-25 14:11:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:11:07.79+03	2021-05-25 14:11:07.797+03	
ded30690-2986-f474-0d4c-56a536a91642	2021-05-25 14:11:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:11:27.79+03	2021-05-25 14:11:27.81+03	
0d153835-f54f-1e1f-8c0e-7b8d8f5dd365	2021-05-25 14:11:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:11:47.79+03	2021-05-25 14:11:47.798+03	
86f8a00e-5418-e49e-b6ff-0cf516229aad	2021-05-25 14:12:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:12:07.79+03	2021-05-25 14:12:07.797+03	
541723cd-335b-bbce-f0af-e6fedb240636	2021-05-25 14:12:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:12:27.79+03	2021-05-25 14:12:27.797+03	
2de1c985-8a6d-bcab-81a2-72db043a4f1d	2021-05-25 14:12:47.795	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:12:47.795+03	2021-05-25 14:12:47.816+03	
817e0f90-df2b-021b-5069-6c9c7b83912b	2021-05-25 14:12:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:12:58.79+03	2021-05-25 14:12:58.798+03	
0e5b7a28-6205-5405-b571-a5f0e2171b2c	2021-05-25 14:13:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:13:18.79+03	2021-05-25 14:13:18.812+03	
12a14600-97c5-2ac2-b5d8-78d9fc9e5dc8	2021-05-25 14:13:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:13:38.79+03	2021-05-25 14:13:38.797+03	
59a2f91f-0740-6570-40e9-bd453fccbde0	2021-05-25 14:13:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:13:48.79+03	2021-05-25 14:13:48.797+03	
c8d3c924-4607-7d4c-09b8-77c1218f3d35	2021-05-25 14:14:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:14:08.79+03	2021-05-25 14:14:08.797+03	
d8371d4b-fb22-dde0-67c7-f8e5b108358c	2021-05-25 14:14:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:14:18.79+03	2021-05-25 14:14:18.797+03	
1895932a-5b88-f2b6-46cf-834a3c6df0ca	2021-05-25 14:14:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:14:38.79+03	2021-05-25 14:14:38.796+03	
c1de6642-7e43-74da-5a8c-21f068e7e4e4	2021-05-25 14:14:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:14:58.79+03	2021-05-25 14:14:58.796+03	
1af62d77-7ab0-2622-3e94-953e82685fbb	2021-05-25 14:15:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:15:18.79+03	2021-05-25 14:15:18.81+03	
371457e9-c2b9-da70-78c5-265b91aaa56f	2021-05-25 14:15:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:15:38.79+03	2021-05-25 14:15:38.798+03	
c4d78801-4051-cb18-90ee-581b1dc49229	2021-05-25 14:15:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:15:58.79+03	2021-05-25 14:15:58.797+03	
2f180808-6aa0-f0be-abb3-54c6262fb18e	2021-05-25 14:16:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:16:18.79+03	2021-05-25 14:16:18.798+03	
d125d47c-d5e3-0378-a072-c65be03b6b9e	2021-05-25 14:16:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:16:28.79+03	2021-05-25 14:16:28.82+03	
49bbcba2-c4bd-6993-dbcb-8ca26116de76	2021-05-25 14:16:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:16:38.79+03	2021-05-25 14:16:38.797+03	
b421c4c6-602f-3fbb-76ba-b3851a304480	2021-05-25 14:16:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:16:58.79+03	2021-05-25 14:16:58.798+03	
fe1da7d1-0d8a-8b5e-e72d-2f42a05b142b	2021-05-25 14:17:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:17:18.79+03	2021-05-25 14:17:18.801+03	
482a7405-a6bf-f34a-3701-e9c4e1ebd2de	2021-05-25 14:17:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:17:28.79+03	2021-05-25 14:17:28.808+03	
67db69a7-79c5-3479-145e-8e73301e53c1	2021-05-25 14:17:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:17:38.79+03	2021-05-25 14:17:38.808+03	
64e9d2fc-aabc-924b-5580-d5380c846b5c	2021-05-25 14:17:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:17:48.79+03	2021-05-25 14:17:48.799+03	
05046a4a-777f-aef7-ef72-429d2233319a	2021-05-25 14:17:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:17:58.79+03	2021-05-25 14:17:58.797+03	
6b6ee13b-f2a4-59eb-d4ee-86bbecb451f9	2021-05-25 14:18:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:18:08.79+03	2021-05-25 14:18:08.798+03	
90726912-b858-649c-a7c5-e37a08037d32	2021-05-25 14:18:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:18:18.79+03	2021-05-25 14:18:18.798+03	
ad107ebc-9fad-6b5e-8489-0042aacc8c35	2021-05-25 14:18:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:18:28.79+03	2021-05-25 14:18:28.797+03	
781009aa-3bc5-32a5-e479-d8f636450d9a	2021-05-25 14:18:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:18:38.79+03	2021-05-25 14:18:38.796+03	
15d8cf5e-67b4-a8ee-fb6e-c4b469ec68e0	2021-05-25 14:18:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:18:48.79+03	2021-05-25 14:18:48.797+03	
ab61b18f-b617-512d-b2bc-c6e047b00255	2021-05-25 14:18:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:18:58.79+03	2021-05-25 14:18:58.797+03	
a2522b0b-875e-afdd-ad41-45f65f47150c	2021-05-25 14:19:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:19:08.79+03	2021-05-25 14:19:08.798+03	
14953190-6c27-32d2-a171-4a6b29039a19	2021-05-25 14:19:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:19:18.79+03	2021-05-25 14:19:18.798+03	
2211d4ce-ae1d-d4c1-e3c6-6b4964e6be6f	2021-05-25 14:19:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:19:28.79+03	2021-05-25 14:19:28.799+03	
235962b9-94bf-a237-b04c-fc55cf000184	2021-05-25 14:19:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:19:38.79+03	2021-05-25 14:19:38.798+03	
f38e8e90-e75d-03b4-fe96-8698863437b5	2021-05-25 14:19:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:19:48.79+03	2021-05-25 14:19:48.797+03	
f7d83dea-e8df-1dc1-0623-88e674fb843b	2021-05-25 14:19:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:19:58.79+03	2021-05-25 14:19:58.798+03	
078633a8-a4d3-6eda-027d-2e7250183358	2021-05-25 14:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 14:20:00.79+03	2021-05-25 14:20:00.795+03	ERROR
1166bbe2-1d7d-6c7f-ee10-a263feced3e6	2021-05-25 14:20:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:20:08.79+03	2021-05-25 14:20:08.801+03	
c72a43c2-54b4-1bb9-18b4-c2b0d56e98a2	2021-05-25 14:20:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:20:18.79+03	2021-05-25 14:20:18.797+03	
7b51f0f8-d1b3-e9f9-35fe-18e41902641a	2021-05-25 14:20:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:20:28.79+03	2021-05-25 14:20:28.797+03	
1f7d7427-e2ef-0789-4ce3-b60456e8c54f	2021-05-25 14:20:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:20:38.79+03	2021-05-25 14:20:38.802+03	
d885b8c3-f567-c0ea-24c8-659d98fc34a1	2021-05-25 14:20:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:20:48.79+03	2021-05-25 14:20:48.796+03	
1dc54aef-2324-d72b-74fe-389afc59a686	2021-05-25 14:20:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:20:58.79+03	2021-05-25 14:20:58.798+03	
00ace999-6158-d870-7678-0e85b717e3cd	2021-05-25 14:21:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:21:08.79+03	2021-05-25 14:21:08.801+03	
a58f0435-810e-8640-ff46-78a1c7f9c14b	2021-05-25 14:21:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:21:18.79+03	2021-05-25 14:21:18.798+03	
38cd4aeb-92f6-c7cb-0647-2cbfeeb0a9df	2021-05-25 14:21:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:21:28.79+03	2021-05-25 14:21:28.798+03	
320bae3b-b540-50d3-14d3-3b22a5ba60eb	2021-05-25 14:21:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:21:38.79+03	2021-05-25 14:21:38.796+03	
a0f1dc5b-f037-d561-49c8-42bfbd070852	2021-05-25 14:21:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:21:48.79+03	2021-05-25 14:21:48.797+03	
747c3159-dc12-893c-fecb-20615f464476	2021-05-25 14:21:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:21:58.79+03	2021-05-25 14:21:58.798+03	
af0b2302-c1a2-9194-33ca-b5a7169e598a	2021-05-25 14:22:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:22:08.79+03	2021-05-25 14:22:08.802+03	
91f53919-5b9d-c6e7-180e-5339a10b13f6	2021-05-25 14:22:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:22:18.79+03	2021-05-25 14:22:18.797+03	
8ad38038-2d3e-60b2-7e00-3ce164cf78a0	2021-05-25 14:22:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:22:28.79+03	2021-05-25 14:22:28.797+03	
79023a41-bac2-5049-ebaa-3b5cf5859b8d	2021-05-25 14:22:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:22:38.79+03	2021-05-25 14:22:38.802+03	
f8e94a9e-ea25-6651-59b8-97ac30dbeb91	2021-05-25 14:22:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:22:48.79+03	2021-05-25 14:22:48.797+03	
db9ca09b-0784-6d43-b0f8-1ee8020fa1f9	2021-05-25 14:22:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:22:58.79+03	2021-05-25 14:22:58.798+03	
94b559ff-a60f-70ae-baae-768370790aca	2021-05-25 14:23:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:23:08.79+03	2021-05-25 14:23:08.798+03	
172ea270-5d0c-699b-e615-e9b84f0c2af0	2021-05-25 14:23:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:23:18.79+03	2021-05-25 14:23:18.797+03	
111c8a64-0699-43e5-4fc0-3a1934210793	2021-05-25 14:23:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:23:28.79+03	2021-05-25 14:23:28.806+03	
23fc6362-48ec-1a46-48fc-e8450a13e4fe	2021-05-25 14:23:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:23:38.79+03	2021-05-25 14:23:38.798+03	
8423b843-64bb-3287-41cc-776b3b49116e	2021-05-25 14:23:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:23:48.79+03	2021-05-25 14:23:48.811+03	
f262a8f8-6d2e-7111-de42-bc72d513803b	2021-05-25 14:23:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:23:58.79+03	2021-05-25 14:23:58.796+03	
8becd34a-7f7e-5cb3-dbc8-11615831121d	2021-05-25 14:24:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:24:08.79+03	2021-05-25 14:24:08.798+03	
b6aa0266-155f-51fc-4dbf-be48f7693fd6	2021-05-25 14:24:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:24:18.79+03	2021-05-25 14:24:18.798+03	
1974fcc4-6087-7d95-1bc4-d1166bf52407	2021-05-25 14:24:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:24:28.79+03	2021-05-25 14:24:28.8+03	
460c8cfc-915d-b0b0-0446-0d51b81ac099	2021-05-25 14:24:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:24:38.79+03	2021-05-25 14:24:38.799+03	
44c0a228-1893-772f-e597-0422c073fbad	2021-05-25 14:24:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:24:48.79+03	2021-05-25 14:24:48.796+03	
512c373a-5aa4-9eaa-3e35-b44224454821	2021-05-25 14:24:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:24:58.79+03	2021-05-25 14:24:58.799+03	
356d71e3-09d8-c5ac-eb64-8694e939c8fc	2021-05-25 14:25:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:25:08.79+03	2021-05-25 14:25:08.797+03	
f2ae69f6-4d35-7b8d-5ffe-d7d29587aec4	2021-05-25 14:25:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:25:18.79+03	2021-05-25 14:25:18.797+03	
0e360afa-ce34-1dd7-068d-3f3116d33e2d	2021-05-25 14:25:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:25:28.79+03	2021-05-25 14:25:28.796+03	
a2711701-035c-d8b8-6dda-79310683dcd7	2021-05-25 14:25:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:25:38.79+03	2021-05-25 14:25:38.796+03	
07063f80-e819-3ad4-0662-77d532739d80	2021-05-25 14:25:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:25:48.79+03	2021-05-25 14:25:48.801+03	
d2732092-8de1-d23a-2100-9571ec4f43bb	2021-05-25 14:25:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:25:58.79+03	2021-05-25 14:25:58.796+03	
1b92946d-3630-d80b-9169-a2abec12bef8	2021-05-25 14:26:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:26:08.79+03	2021-05-25 14:26:08.797+03	
d29f3097-79b7-98d4-075e-187e83d8e33d	2021-05-25 14:26:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:26:18.79+03	2021-05-25 14:26:18.796+03	
a59a2fa7-1cbc-8daa-c482-75b6cd5f9163	2021-05-25 14:26:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:26:28.79+03	2021-05-25 14:26:28.797+03	
8b29c250-de97-f218-5c6d-f33daeff706e	2021-05-25 14:26:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:26:38.79+03	2021-05-25 14:26:38.797+03	
1075c29b-f608-3faa-73eb-777de745f156	2021-05-25 14:26:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:26:48.79+03	2021-05-25 14:26:48.797+03	
84cec346-c869-bf0d-a593-13a4f0fdc0a9	2021-05-25 14:26:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:26:58.79+03	2021-05-25 14:26:58.798+03	
a3ae6c3a-6232-a5c2-14c2-53cadfe7422d	2021-05-25 14:27:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:27:08.79+03	2021-05-25 14:27:08.797+03	
d33224da-502a-a0df-05ce-f8da51fc0a96	2021-05-25 14:27:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:27:18.79+03	2021-05-25 14:27:18.797+03	
1553df19-411c-2b57-6504-a9f296898b1b	2021-05-25 14:27:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:27:28.79+03	2021-05-25 14:27:28.797+03	
1338cb24-4f74-87f8-534b-30ea1ce021d9	2021-05-25 14:27:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:27:48.79+03	2021-05-25 14:27:48.798+03	
c13d9f57-6ac6-5a91-217b-bf8d813a2c40	2021-05-25 14:28:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:28:08.79+03	2021-05-25 14:28:08.797+03	
c7ae7c12-230a-476e-0e09-1791b99514be	2021-05-25 14:28:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:28:28.79+03	2021-05-25 14:28:28.797+03	
f7079181-7669-43e1-ec72-6e638fb19818	2021-05-25 14:28:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:28:48.79+03	2021-05-25 14:28:48.798+03	
819c2b26-35f0-aaba-209e-ccb456c306dc	2021-05-25 14:29:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:29:08.79+03	2021-05-25 14:29:08.797+03	
3a915374-7556-1427-d70f-65136e9a3219	2021-05-25 14:29:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:29:28.79+03	2021-05-25 14:29:28.796+03	
52fbb3b8-e0f3-92b9-bc70-477ac4e30944	2021-05-25 14:29:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:29:48.79+03	2021-05-25 14:29:48.796+03	
a0b0738f-8699-1c79-bd24-510a78403eae	2021-05-25 14:30:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 14:30:00.791+03	2021-05-25 14:30:00.797+03	ERROR
adc0eade-0512-7211-5a16-e48c663b3357	2021-05-25 14:30:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:30:18.79+03	2021-05-25 14:30:18.797+03	
3485194a-8bac-f3f7-79e5-9de2b9bf884c	2021-05-25 14:30:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:30:38.79+03	2021-05-25 14:30:38.796+03	
4c4428d1-12d3-0a5d-e077-612c58753085	2021-05-25 14:30:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:30:58.79+03	2021-05-25 14:30:58.796+03	
e309a3af-3238-27c6-b8de-986d2cf93e45	2021-05-25 14:31:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:31:18.79+03	2021-05-25 14:31:18.799+03	
2fe94c44-c5eb-a1c7-ae28-c445489b1d98	2021-05-25 14:31:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:31:38.79+03	2021-05-25 14:31:38.796+03	
5ed5a65f-66c7-bfe7-00c9-7d09b0f8b185	2021-05-25 14:31:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:31:58.79+03	2021-05-25 14:31:58.796+03	
c89b8e1a-0d3a-0cac-2bb3-195421afe5aa	2021-05-25 14:32:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:32:18.79+03	2021-05-25 14:32:18.8+03	
7f976e27-8255-faad-bad0-ad82a5890ee1	2021-05-25 14:32:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:32:38.79+03	2021-05-25 14:32:38.796+03	
1ce8f8df-f1b5-ab12-0440-d2796a6d5462	2021-05-25 14:32:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:32:58.79+03	2021-05-25 14:32:58.798+03	
09bd3158-f43d-5840-6d4c-9fe219934e60	2021-05-25 14:33:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:33:18.79+03	2021-05-25 14:33:18.797+03	
7f52d595-0408-7ff9-ccee-4285cf2e412e	2021-05-25 14:33:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:33:38.79+03	2021-05-25 14:33:38.799+03	
74364bde-2a07-8be8-b308-87d9e88108fa	2021-05-25 14:33:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:33:58.79+03	2021-05-25 14:33:58.798+03	
c0421ad9-ccd9-fce9-974d-34b769c8f70b	2021-05-25 14:34:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:34:18.79+03	2021-05-25 14:34:18.799+03	
d7f59f29-2614-2457-4fa4-c4d5631dfc7e	2021-05-25 14:34:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:34:38.79+03	2021-05-25 14:34:38.797+03	
667f463b-3263-ac34-3fef-52d4b62cc43b	2021-05-25 14:34:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:34:58.79+03	2021-05-25 14:34:58.799+03	
5c6ea507-b4cc-2a54-e165-abca049ba987	2021-05-25 14:35:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:35:18.79+03	2021-05-25 14:35:18.797+03	
2a9c0a28-ea52-3585-9626-50c9ab5bd161	2021-05-25 14:35:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:35:38.79+03	2021-05-25 14:35:38.798+03	
934937c1-3065-5bff-8a3c-d678394b8852	2021-05-25 14:35:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:35:59.79+03	2021-05-25 14:35:59.796+03	
daa29d1d-6456-20dd-a10d-0bc1782390b4	2021-05-25 14:36:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:36:19.79+03	2021-05-25 14:36:19.796+03	
b46f3a5a-3edb-276e-82a2-862ed3c161ab	2021-05-25 14:36:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:36:49.79+03	2021-05-25 14:36:49.797+03	
92bdb1fe-c080-d2ed-0665-058eaf3d211a	2021-05-25 14:37:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:37:09.79+03	2021-05-25 14:37:09.799+03	
2ce2b49f-4efe-9c26-4602-055e3bb4aa94	2021-05-25 14:37:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:37:39.79+03	2021-05-25 14:37:39.798+03	
4f711c40-0e40-d006-3b5f-64c0068afdb5	2021-05-25 14:37:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:37:59.79+03	2021-05-25 14:37:59.836+03	
a7070f1e-b054-7a7d-2a79-f5a435c799ee	2021-05-25 14:38:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:38:19.79+03	2021-05-25 14:38:19.799+03	
87692249-51fb-8093-f7f2-6eb80f90585b	2021-05-25 14:38:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:38:39.79+03	2021-05-25 14:38:39.801+03	
e9bbf1a2-b0c5-f2cf-e322-faa06782a06a	2021-05-25 14:38:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:38:59.79+03	2021-05-25 14:38:59.798+03	
727cf497-71c1-cf57-48b8-d1bd17c7d6ac	2021-05-25 14:39:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:39:19.79+03	2021-05-25 14:39:19.796+03	
c9be30e2-bde7-b872-a051-dbaea182989c	2021-05-25 14:39:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:39:39.79+03	2021-05-25 14:39:39.799+03	
8923879c-83e8-220a-a9cc-67e150ecf658	2021-05-25 14:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 14:40:00.79+03	2021-05-25 14:40:00.796+03	ERROR
27bcda8e-4487-8e31-7842-8fed5e3be64e	2021-05-25 14:40:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:40:19.79+03	2021-05-25 14:40:19.808+03	
d9bc407b-ab86-eca2-1aef-5e68276cae98	2021-05-25 14:40:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:40:39.79+03	2021-05-25 14:40:39.8+03	
aaf46854-496f-368c-a81d-e9466202a4d2	2021-05-25 14:40:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:40:59.79+03	2021-05-25 14:40:59.798+03	
5cfdcf2b-b69c-8073-b335-5128baa2c4f4	2021-05-25 14:41:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:41:19.79+03	2021-05-25 14:41:19.797+03	
16d20f27-8371-38ae-4fb4-b75c03c7f435	2021-05-25 14:41:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:41:39.79+03	2021-05-25 14:41:39.796+03	
7a911a9f-f2ef-bdbb-27c6-e575c20da97c	2021-05-25 14:41:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:41:59.79+03	2021-05-25 14:41:59.798+03	
1f12de8d-11b5-74c9-5ebf-9d0242fd2ab8	2021-05-25 14:42:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:42:19.79+03	2021-05-25 14:42:19.796+03	
36d68e25-ec35-8b04-7707-b69c9f516dfb	2021-05-25 14:42:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:42:39.79+03	2021-05-25 14:42:39.797+03	
cd5ebdad-03df-ac81-5060-b1d0bbcbedba	2021-05-25 14:42:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:42:59.79+03	2021-05-25 14:42:59.797+03	
ebc9c614-d19c-d805-4fae-bba92ece51bf	2021-05-25 14:43:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:43:09.79+03	2021-05-25 14:43:09.8+03	
937c0e8a-7e6e-d408-aa4c-22f0c5b77820	2021-05-25 14:43:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:43:29.79+03	2021-05-25 14:43:29.798+03	
80be9df5-1c7d-e948-b56f-30e9b56e0c4d	2021-05-25 14:43:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:43:49.79+03	2021-05-25 14:43:49.798+03	
2c77d09d-302c-2d59-46a1-2ac98e6ea485	2021-05-25 14:44:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:44:09.79+03	2021-05-25 14:44:09.797+03	
e5e77550-7007-3d92-d39c-7abea13ca0f1	2021-05-25 14:44:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:44:29.79+03	2021-05-25 14:44:29.797+03	
20b1ebfb-a24d-23d0-1cf0-00aaf2c5c893	2021-05-25 14:44:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:44:49.79+03	2021-05-25 14:44:49.806+03	
e998315a-a371-f5b6-858e-6a098eb66dbc	2021-05-25 14:45:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:45:09.79+03	2021-05-25 14:45:09.797+03	
1091ff00-23b3-43b3-61af-d955b9c61e01	2021-05-25 14:45:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:45:29.79+03	2021-05-25 14:45:29.797+03	
5ededd11-541e-2223-1284-181101e53e43	2021-05-25 14:45:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:45:49.79+03	2021-05-25 14:45:49.796+03	
0886a4e2-d8ef-cc91-d466-60b7d3ab77ce	2021-05-25 14:46:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:46:09.79+03	2021-05-25 14:46:09.797+03	
53f07b57-a468-a21f-7d28-1c8bd0841c7b	2021-05-25 14:46:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:46:29.79+03	2021-05-25 14:46:29.797+03	
ce8e9ae5-db04-d803-8275-c09d111c6067	2021-05-25 14:46:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:46:49.79+03	2021-05-25 14:46:49.803+03	
df84cc65-0e0b-8d44-c587-aefe3b2e6ef6	2021-05-25 14:47:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:47:09.79+03	2021-05-25 14:47:09.801+03	
8d25956f-67fb-68ff-f850-098e000449b9	2021-05-25 14:47:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:47:29.79+03	2021-05-25 14:47:29.797+03	
5f4afd83-1d38-88b0-cbcc-8a752463d3bd	2021-05-25 14:47:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:47:49.79+03	2021-05-25 14:47:49.797+03	
66551dac-860f-9dcf-4f04-a07731ee6677	2021-05-25 14:48:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:48:09.79+03	2021-05-25 14:48:09.798+03	
cfb08a43-63aa-31e2-4447-b8e1937e4ae5	2021-05-25 14:27:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:27:38.79+03	2021-05-25 14:27:38.797+03	
840d4576-6d21-1db9-c6de-56d4590dcac3	2021-05-25 14:27:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:27:58.79+03	2021-05-25 14:27:58.796+03	
1aca9ebc-55b5-c4ff-5423-06fbdad38323	2021-05-25 14:28:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:28:18.79+03	2021-05-25 14:28:18.797+03	
f33403e4-740f-8731-57d1-86978c92b668	2021-05-25 14:28:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:28:38.79+03	2021-05-25 14:28:38.797+03	
4b2fe855-1c00-07f1-64f3-cd465dc086db	2021-05-25 14:28:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:28:58.79+03	2021-05-25 14:28:58.798+03	
a03ec302-b98b-b123-ed88-d21f3e8f4e9c	2021-05-25 14:29:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:29:18.79+03	2021-05-25 14:29:18.809+03	
33c6338a-9457-3611-aee7-65f8dccc1e94	2021-05-25 14:29:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:29:38.79+03	2021-05-25 14:29:38.796+03	
c202e10f-a7fd-d601-ed8b-5d99edfb440b	2021-05-25 14:29:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:29:58.79+03	2021-05-25 14:29:58.797+03	
1997ab5f-9e78-76db-ec2c-285089cb71c3	2021-05-25 14:30:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:30:08.79+03	2021-05-25 14:30:08.799+03	
17c6c460-0220-18ca-4dc3-4de650fca5c9	2021-05-25 14:30:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:30:28.79+03	2021-05-25 14:30:28.796+03	
2b967f88-e01d-6b7d-449e-d696fd6c38ff	2021-05-25 14:30:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:30:48.79+03	2021-05-25 14:30:48.796+03	
901a42f4-23c6-d413-2ef4-25b5982819e2	2021-05-25 14:31:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:31:08.79+03	2021-05-25 14:31:08.797+03	
58d5a494-143f-b7c4-e20d-dea08fab5e53	2021-05-25 14:31:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:31:28.79+03	2021-05-25 14:31:28.797+03	
3578b822-3f9a-c072-6492-85dd510f2027	2021-05-25 14:31:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:31:48.79+03	2021-05-25 14:31:48.796+03	
5164146a-d1f0-c8d7-ab51-d880fd4b97e4	2021-05-25 14:32:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:32:08.79+03	2021-05-25 14:32:08.796+03	
acf2fbf1-5231-6ef3-bfb1-46e99983d1e2	2021-05-25 14:32:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:32:28.79+03	2021-05-25 14:32:28.796+03	
5b9617d8-62f5-7ff3-cf38-1e8bbfa09e2d	2021-05-25 14:32:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:32:48.79+03	2021-05-25 14:32:48.797+03	
129de893-9f03-96c2-b822-fe6c61b72839	2021-05-25 14:33:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:33:08.79+03	2021-05-25 14:33:08.796+03	
c15ba4d6-1425-66d6-54da-26474e1d49e8	2021-05-25 14:33:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:33:28.79+03	2021-05-25 14:33:28.796+03	
8d7048a3-0d0f-90d0-efb3-934625b4d99e	2021-05-25 14:33:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:33:48.79+03	2021-05-25 14:33:48.798+03	
f00034c4-96be-82b9-b2c0-069e056c414a	2021-05-25 14:34:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:34:08.79+03	2021-05-25 14:34:08.796+03	
92dd86e8-b561-1c75-6eb2-84dbc36b80d6	2021-05-25 14:34:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:34:28.79+03	2021-05-25 14:34:28.797+03	
d0955491-5829-6411-06ee-923861e6fb25	2021-05-25 14:34:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:34:48.79+03	2021-05-25 14:34:48.796+03	
f3b9dfb7-e6fc-a96b-55d0-2d9483b08a8a	2021-05-25 14:35:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:35:08.79+03	2021-05-25 14:35:08.796+03	
7212b6d8-cd5c-d78d-7a94-287f638a7c8c	2021-05-25 14:35:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:35:28.79+03	2021-05-25 14:35:28.796+03	
4991a7c0-2083-dc0f-cd25-ba87108e30be	2021-05-25 14:35:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:35:49.79+03	2021-05-25 14:35:49.796+03	
89ce096e-d1f8-db8c-3ba8-201c82f069e2	2021-05-25 14:36:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:36:09.79+03	2021-05-25 14:36:09.797+03	
2b066256-a14b-61e7-d348-da39b713e7f5	2021-05-25 14:36:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:36:29.79+03	2021-05-25 14:36:29.796+03	
53d238bb-4460-f942-6ac9-585481d05c95	2021-05-25 14:36:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:36:39.79+03	2021-05-25 14:36:39.802+03	
896cd7d9-8417-a59f-1bab-2e7410bc8fea	2021-05-25 14:36:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:36:59.79+03	2021-05-25 14:36:59.797+03	
53c416c0-4b84-5651-30cb-588377abdc5f	2021-05-25 14:37:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:37:19.79+03	2021-05-25 14:37:19.797+03	
132838bd-7b60-e0dd-defa-d65c2bd0eb80	2021-05-25 14:37:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:37:29.79+03	2021-05-25 14:37:29.797+03	
08a8ff9d-3747-4a0a-064e-410316048658	2021-05-25 14:37:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:37:49.79+03	2021-05-25 14:37:49.796+03	
7a1a01e9-984a-9d89-0f82-fa2f338d54cd	2021-05-25 14:38:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:38:09.79+03	2021-05-25 14:38:09.8+03	
76092508-96f2-57a0-56b2-007bf828fa3c	2021-05-25 14:38:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:38:29.79+03	2021-05-25 14:38:29.797+03	
6377c776-62ef-350c-6967-de2c20d81bd4	2021-05-25 14:38:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:38:49.79+03	2021-05-25 14:38:49.797+03	
55dc2511-8ca0-ee79-cebc-e91fd6dfc3e4	2021-05-25 14:39:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:39:09.79+03	2021-05-25 14:39:09.798+03	
be5b3854-d0d2-ea5d-14ac-1aa2b3d63724	2021-05-25 14:39:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:39:29.79+03	2021-05-25 14:39:29.81+03	
35066e13-9c2d-5b39-c7fe-4194f09d6c25	2021-05-25 14:39:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:39:49.79+03	2021-05-25 14:39:49.798+03	
0b1dd6fa-549c-6512-af74-c8bedd17b10f	2021-05-25 14:39:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:39:59.79+03	2021-05-25 14:39:59.796+03	
71e32c36-23ce-e994-1dbd-0619e9910661	2021-05-25 14:40:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:40:09.79+03	2021-05-25 14:40:09.8+03	
d797afd6-4fc9-e879-14a1-8d14eb57649e	2021-05-25 14:40:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:40:29.79+03	2021-05-25 14:40:29.798+03	
ce6618df-07f8-dc0a-9112-a63deda62b50	2021-05-25 14:40:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:40:49.79+03	2021-05-25 14:40:49.797+03	
ff70173e-f0db-1c2c-96fb-5e0815642830	2021-05-25 14:41:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:41:09.79+03	2021-05-25 14:41:09.798+03	
69f41a95-50a3-3439-7194-87212c72675b	2021-05-25 14:41:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:41:29.79+03	2021-05-25 14:41:29.796+03	
46e5e521-1b1f-b4ea-7310-c8bafd259f82	2021-05-25 14:41:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:41:49.79+03	2021-05-25 14:41:49.797+03	
d0e02fc2-d128-5938-5f01-f19a1f823fc8	2021-05-25 14:42:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:42:09.79+03	2021-05-25 14:42:09.798+03	
fc663192-2dbd-5ce3-6c57-40869eec9770	2021-05-25 14:42:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:42:29.79+03	2021-05-25 14:42:29.799+03	
c1cb14d7-71cc-9f0f-2758-c113bb933505	2021-05-25 14:42:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:42:49.79+03	2021-05-25 14:42:49.796+03	
d697aac3-ace3-9099-70d2-c8009068acfa	2021-05-25 14:43:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:43:19.79+03	2021-05-25 14:43:19.798+03	
7a34c745-ec5c-c3cf-5657-f08b02ba4847	2021-05-25 14:43:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:43:39.79+03	2021-05-25 14:43:39.799+03	
cfffc853-9e8f-f894-3f2f-00b9c082faba	2021-05-25 14:43:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:43:59.79+03	2021-05-25 14:43:59.797+03	
6d587980-e363-29be-8270-c09c155e0886	2021-05-25 14:44:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:44:19.79+03	2021-05-25 14:44:19.798+03	
3f1fccfb-55c4-1f7c-4a84-0092f66227ef	2021-05-25 14:44:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:44:39.79+03	2021-05-25 14:44:39.808+03	
a4722a89-14a5-21e8-6370-f3b14eeb985b	2021-05-25 14:44:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:44:59.79+03	2021-05-25 14:44:59.797+03	
9cbc7aa5-3c62-480c-5d82-4e60679b7c20	2021-05-25 14:45:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:45:19.79+03	2021-05-25 14:45:19.805+03	
6dd9dcba-5ba7-620c-1563-702c75af16ae	2021-05-25 14:45:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:45:39.79+03	2021-05-25 14:45:39.798+03	
638d24d5-f803-8d55-5f4f-4418dfbfd482	2021-05-25 14:45:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:45:59.79+03	2021-05-25 14:45:59.797+03	
66e9edb1-53d6-8cdb-ec40-7f13cf353b63	2021-05-25 14:46:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:46:19.79+03	2021-05-25 14:46:19.8+03	
aca57c88-f742-7aad-1738-8c415f42396b	2021-05-25 14:46:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:46:39.79+03	2021-05-25 14:46:39.797+03	
8d7efe4c-e250-3d17-11fd-8efbc1d4f256	2021-05-25 14:46:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:46:59.79+03	2021-05-25 14:46:59.798+03	
7221a7e6-6b3f-033c-c07e-207b45ddf6dd	2021-05-25 14:47:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:47:19.79+03	2021-05-25 14:47:19.797+03	
07a5869a-f412-100b-ebc0-26a57128b3e7	2021-05-25 14:47:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:47:39.79+03	2021-05-25 14:47:39.797+03	
e9a1ccbf-7fd2-ad56-4a69-eaa9c9bd9711	2021-05-25 14:47:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:47:59.79+03	2021-05-25 14:47:59.797+03	
7d731e62-a26f-4e2b-4da5-b3898755bf82	2021-05-25 14:48:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:48:19.79+03	2021-05-25 14:48:19.799+03	
69219118-c60a-372d-4ab5-eba2948eaad1	2021-05-25 14:48:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:48:29.79+03	2021-05-25 14:48:29.812+03	
af75af16-d682-d2f1-b274-9e8afb608929	2021-05-25 14:48:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:48:49.79+03	2021-05-25 14:48:49.798+03	
f79dc4da-e86b-7d82-88a6-770ab9738d76	2021-05-25 14:48:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:48:59.79+03	2021-05-25 14:48:59.801+03	
25cf5e59-8616-0783-7236-668cb4684363	2021-05-25 14:49:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:49:19.79+03	2021-05-25 14:49:19.804+03	
288ccb84-f6b0-b4fe-b9a6-394a38e331b7	2021-05-25 14:49:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:49:39.79+03	2021-05-25 14:49:39.799+03	
5711ea2d-36b5-2fe9-bf59-83bf78a7c3cb	2021-05-25 14:49:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:49:59.79+03	2021-05-25 14:49:59.798+03	
91422948-c2c1-eee1-25ed-f3b261f8ba84	2021-05-25 14:50:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:50:09.79+03	2021-05-25 14:50:09.816+03	
ba3603d5-10c7-98fd-3a05-d67c093c9002	2021-05-25 14:50:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:50:29.79+03	2021-05-25 14:50:29.815+03	
54a1dfa9-737e-d88a-3a02-73c6d222c617	2021-05-25 14:50:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:50:49.79+03	2021-05-25 14:50:49.803+03	
37086196-536f-e091-5683-a8fd4266a16b	2021-05-25 14:51:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:51:19.79+03	2021-05-25 14:51:19.797+03	
8be0b283-c7bf-e64f-97e0-c8e21357d292	2021-05-25 14:51:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:51:39.79+03	2021-05-25 14:51:39.814+03	
a0f361ae-f4f7-330a-ba4c-08dbc435d161	2021-05-25 14:51:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:51:49.79+03	2021-05-25 14:51:49.797+03	
d946935b-448b-abc4-c160-8200b6fbd192	2021-05-25 14:52:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:52:09.79+03	2021-05-25 14:52:09.798+03	
4f6c7c50-110c-04fe-979d-e334fbf566df	2021-05-25 14:52:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:52:29.79+03	2021-05-25 14:52:29.799+03	
f74b252e-3c62-3fef-dcef-677f37bcbd71	2021-05-25 14:52:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:52:49.79+03	2021-05-25 14:52:49.798+03	
5cc6322f-b781-f877-dd0e-03b3e3ac8110	2021-05-25 14:53:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:53:19.79+03	2021-05-25 14:53:19.798+03	
9ff0f8b9-b746-b0c0-3944-915e2408f6c8	2021-05-25 14:53:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:53:50.79+03	2021-05-25 14:53:50.797+03	
a98598c9-cf67-97e7-6afd-0faa8cca1d94	2021-05-25 14:54:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:54:10.79+03	2021-05-25 14:54:10.801+03	
05651ac9-2e8b-51b4-a74b-c51b7470004b	2021-05-25 14:54:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:54:30.79+03	2021-05-25 14:54:30.797+03	
620d6b95-01d5-be54-30d9-4897e6569ba8	2021-05-25 14:55:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:55:00.79+03	2021-05-25 14:55:00.797+03	
4925304f-6ca8-fadc-7692-a6b13bf3f6f9	2021-05-25 14:55:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:55:40.79+03	2021-05-25 14:55:40.796+03	
14c90a30-de74-9f2f-7346-bfd4decc4311	2021-05-25 14:56:00.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:56:00.792+03	2021-05-25 14:56:00.8+03	
3f80ee82-e542-10cd-d715-fcb2ec78322d	2021-05-25 14:56:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:56:21.79+03	2021-05-25 14:56:21.797+03	
3edc82e1-6b93-8b27-5ec2-c41c45ca907b	2021-05-25 14:56:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:56:31.79+03	2021-05-25 14:56:31.797+03	
a436230a-4ce4-dadb-e7aa-830f966bc9c9	2021-05-25 14:56:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:56:52.79+03	2021-05-25 14:56:52.801+03	
6252be21-8ac5-c7e6-7899-19f681ddcd0a	2021-05-25 14:57:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:57:12.79+03	2021-05-25 14:57:12.811+03	
ce5698e1-e228-3807-29d5-855d9e413d14	2021-05-25 14:57:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:57:32.79+03	2021-05-25 14:57:32.801+03	
21f3def9-2547-f3f5-ba14-cc1fb2441689	2021-05-25 14:57:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:57:52.79+03	2021-05-25 14:57:52.804+03	
cbd0823e-1461-2983-806e-da52edd0d7e6	2021-05-25 14:58:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:58:22.79+03	2021-05-25 14:58:22.797+03	
7969a76e-6162-976a-9bd4-bd020378b146	2021-05-25 14:58:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:58:42.79+03	2021-05-25 14:58:42.809+03	
638da096-8a83-2e8e-fcf1-b83554423b09	2021-05-25 14:59:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:59:02.79+03	2021-05-25 14:59:02.799+03	
4722c71f-471d-d14c-7f02-3295548ffc03	2021-05-25 14:59:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:59:12.79+03	2021-05-25 14:59:12.797+03	
5ddcb255-4cda-5a3a-54f6-d77f47aebfec	2021-05-25 14:59:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:59:32.79+03	2021-05-25 14:59:32.799+03	
4fdec2b8-5d7c-d90d-00c9-bbf9108e3a9f	2021-05-25 14:59:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:59:42.79+03	2021-05-25 14:59:42.798+03	
87293fa2-4064-9dca-8ed9-bd14b042c16d	2021-05-25 14:59:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:59:52.79+03	2021-05-25 14:59:52.797+03	
b8ab57aa-e9bf-1118-d12e-748bfe03641f	2021-05-25 15:00:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:00:02.79+03	2021-05-25 15:00:02.809+03	
86416bf6-ee68-e777-8671-310306e5ded2	2021-05-25 15:00:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:00:22.79+03	2021-05-25 15:00:22.797+03	
2dbe37e4-b4a7-1cca-7fed-364b23fb5358	2021-05-25 15:00:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:00:42.79+03	2021-05-25 15:00:42.797+03	
c2bfff6e-6eec-e330-7526-50f84bd21b07	2021-05-25 15:00:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:00:52.79+03	2021-05-25 15:00:52.801+03	
fd572c85-d4da-3c58-0c2e-70589a61ab09	2021-05-25 15:01:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:01:22.79+03	2021-05-25 15:01:22.809+03	
278100da-04a9-27bd-adce-14ec92a1f135	2021-05-25 15:01:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:01:42.79+03	2021-05-25 15:01:42.8+03	
443fc83d-c756-0ca3-4105-c3f648751e5e	2021-05-25 15:02:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:02:02.79+03	2021-05-25 15:02:02.799+03	
a0e6c5cd-0ba0-5c8e-59c5-b236b29f17ec	2021-05-25 15:02:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:02:22.79+03	2021-05-25 15:02:22.796+03	
ceca80e2-a396-5ff0-dcac-35b20ce24716	2021-05-25 15:02:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:02:42.791+03	2021-05-25 15:02:42.802+03	
17538ea4-a898-0091-fe3c-20ddf1facb81	2021-05-25 15:03:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:03:13.79+03	2021-05-25 15:03:13.799+03	
936bb541-eafc-b0a6-42a0-c62cdcf53435	2021-05-25 15:03:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:03:33.79+03	2021-05-25 15:03:33.798+03	
6e8e827b-b2c6-4890-aada-5e6a342585f1	2021-05-25 15:03:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:03:53.79+03	2021-05-25 15:03:53.797+03	
82a0b574-f006-834b-8cc3-1825ebf13c38	2021-05-25 15:04:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:04:13.79+03	2021-05-25 15:04:13.798+03	
0353a752-33c1-941e-0af2-76c078a32530	2021-05-25 15:04:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:04:23.79+03	2021-05-25 15:04:23.797+03	
e159ddd3-cc13-f191-eda2-2514e20ec510	2021-05-25 15:04:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:04:53.79+03	2021-05-25 15:04:53.796+03	
75472f2a-e676-8a18-fd1f-e48720da884e	2021-05-25 15:05:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:05:23.79+03	2021-05-25 15:05:23.796+03	
6c727434-1cd7-546e-9e0f-8c491df71b66	2021-05-25 15:05:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:05:43.79+03	2021-05-25 15:05:43.797+03	
794bc1fa-88d4-c1a0-fe9e-01b3cb9de6b0	2021-05-25 15:06:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:06:03.79+03	2021-05-25 15:06:03.797+03	
60937ffa-40a1-95da-65ff-5ca9e8dda161	2021-05-25 15:06:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:06:13.79+03	2021-05-25 15:06:13.797+03	
95f11ff7-c348-83d7-fe57-1648ffc7882d	2021-05-25 15:06:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:06:33.79+03	2021-05-25 15:06:33.796+03	
339c1bb1-ef30-fbd1-d1d7-e0dd990217d3	2021-05-25 15:06:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:06:53.79+03	2021-05-25 15:06:53.798+03	
42a4c683-846d-7b86-9486-18a0a702c7bd	2021-05-25 15:07:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:07:03.79+03	2021-05-25 15:07:03.796+03	
5c6b9a2a-6fd6-70eb-b201-c3fba613d34a	2021-05-25 15:07:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:07:13.79+03	2021-05-25 15:07:13.797+03	
815c6a42-bd2f-1d28-0421-b47700c3c20e	2021-05-25 15:07:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:07:33.79+03	2021-05-25 15:07:33.796+03	
05ef775a-f2b5-af84-bf07-25f824937537	2021-05-25 15:07:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:07:53.79+03	2021-05-25 15:07:53.796+03	
a302074e-c960-19ab-f186-d2a7053ebdee	2021-05-25 15:08:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:08:13.79+03	2021-05-25 15:08:13.796+03	
f1587dbd-654a-c0d4-87e8-ed524468e4ba	2021-05-25 14:48:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:48:39.79+03	2021-05-25 14:48:39.798+03	
ad6ab024-9973-920e-1632-34073b67c69f	2021-05-25 14:49:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:49:09.79+03	2021-05-25 14:49:09.806+03	
f0447769-d65e-ec69-e501-3b29b7e564ae	2021-05-25 14:49:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:49:29.79+03	2021-05-25 14:49:29.841+03	
33e18eb6-f2ff-f3aa-26d9-c15a881161fa	2021-05-25 14:49:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:49:49.79+03	2021-05-25 14:49:49.796+03	
fb05b36a-3d42-1741-d1d4-f59a004ea43f	2021-05-25 14:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 14:50:00.79+03	2021-05-25 14:50:00.801+03	ERROR
87763321-d3da-bab9-a95b-16e072cb12ce	2021-05-25 14:50:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:50:19.79+03	2021-05-25 14:50:19.798+03	
87ee3b03-2872-6312-2b93-eacb1232c446	2021-05-25 14:50:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:50:39.79+03	2021-05-25 14:50:39.805+03	
b72f687b-249c-865a-20d1-4bff0539d743	2021-05-25 14:50:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:50:59.79+03	2021-05-25 14:50:59.8+03	
f82eea4a-fd17-0ad0-ed9e-abd4b2815fe9	2021-05-25 14:51:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:51:09.79+03	2021-05-25 14:51:09.82+03	
596023b6-a0a8-efe3-721d-e4fec948d01f	2021-05-25 14:51:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:51:29.79+03	2021-05-25 14:51:29.801+03	
f05204c0-a0ee-c1ca-1aa7-22a6c259e260	2021-05-25 14:51:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:51:59.79+03	2021-05-25 14:51:59.8+03	
1bf6b193-d267-194f-2124-cd09455cea70	2021-05-25 14:52:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:52:19.79+03	2021-05-25 14:52:19.798+03	
e3bdca8a-8d40-8f10-a969-165865438013	2021-05-25 14:52:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:52:39.79+03	2021-05-25 14:52:39.797+03	
1f3d2505-f163-ea42-a921-81cb20b6cde5	2021-05-25 14:52:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:52:59.79+03	2021-05-25 14:52:59.798+03	
2c7cf0e1-7e12-7ae9-0efd-d9416a556365	2021-05-25 14:53:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:53:09.79+03	2021-05-25 14:53:09.797+03	
fa9598d5-f86e-17a1-c741-be833e4fe0e6	2021-05-25 14:53:29.796	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:53:29.796+03	2021-05-25 14:53:29.829+03	
a2fbf26d-27cc-e0f6-d1dc-7752fb558e3e	2021-05-25 14:53:40.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:53:40.79+03	2021-05-25 14:53:40.819+03	
2c80d4e9-fb31-dccf-179b-e0b33f7baee0	2021-05-25 14:54:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:54:00.79+03	2021-05-25 14:54:00.797+03	
fb0a5842-e53f-0c8e-b084-62e59eef4cad	2021-05-25 14:54:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:54:20.79+03	2021-05-25 14:54:20.799+03	
e9839e38-393d-f4d9-fe40-ff3c962efa6f	2021-05-25 14:54:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:54:40.79+03	2021-05-25 14:54:40.798+03	
609eadd0-aaef-d640-a983-f42938d25cdb	2021-05-25 14:54:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:54:50.79+03	2021-05-25 14:54:50.797+03	
1d28f25a-7126-8768-cddf-75e835abfabb	2021-05-25 14:55:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:55:10.79+03	2021-05-25 14:55:10.797+03	
421e7d81-e3a6-36fd-ef9a-dcce3fc78677	2021-05-25 14:55:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:55:20.79+03	2021-05-25 14:55:20.797+03	
1d63fd12-b6e5-54ec-7a44-a358ef1bd504	2021-05-25 14:55:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:55:30.79+03	2021-05-25 14:55:30.798+03	
c11b96a8-799f-7d40-0018-6c24d77c09ca	2021-05-25 14:55:50.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:55:50.79+03	2021-05-25 14:55:50.797+03	
44c2e779-88eb-186b-a06e-131c0d0ee240	2021-05-25 14:56:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:56:11.79+03	2021-05-25 14:56:11.798+03	
b1ed3b0f-4c6a-ed99-ee84-27e6b3463a5c	2021-05-25 14:56:41.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:56:41.791+03	2021-05-25 14:56:41.799+03	
6fe4f9f1-6c8f-a648-9011-a29b9e085c80	2021-05-25 14:57:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:57:02.79+03	2021-05-25 14:57:02.798+03	
eb0ab1b5-3a26-615f-ccbe-ad972f7f4252	2021-05-25 14:57:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:57:22.79+03	2021-05-25 14:57:22.797+03	
4fb6e4df-1b2d-70d0-6052-505843bed40a	2021-05-25 14:57:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:57:42.79+03	2021-05-25 14:57:42.798+03	
eee7d9e2-0a68-6c77-35f2-0f8dd3141b6f	2021-05-25 14:58:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:58:02.79+03	2021-05-25 14:58:02.8+03	
cee8e5fd-faac-c3f7-b13f-b121cab48dbe	2021-05-25 14:58:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:58:12.79+03	2021-05-25 14:58:12.798+03	
9d7e868e-b383-9b4d-e33a-cc5c8c1afa38	2021-05-25 14:58:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:58:32.79+03	2021-05-25 14:58:32.798+03	
cc713908-7353-db12-5c93-e2e707daf07d	2021-05-25 14:58:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:58:52.79+03	2021-05-25 14:58:52.8+03	
a2f6ca4c-db39-96a6-de83-a824202f2679	2021-05-25 14:59:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 14:59:22.79+03	2021-05-25 14:59:22.815+03	
d4cefd51-c8aa-1325-912f-bfedfdad3d75	2021-05-25 15:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 15:00:00.79+03	2021-05-25 15:00:00.795+03	ERROR
2e854f39-c2c0-c104-a54f-a04907741022	2021-05-25 15:00:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:00:12.79+03	2021-05-25 15:00:12.803+03	
56a9563a-256b-040a-3989-35ee9edf5aa4	2021-05-25 15:00:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:00:32.79+03	2021-05-25 15:00:32.8+03	
8cf9933e-2d38-8972-3739-699af1828577	2021-05-25 15:01:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:01:02.79+03	2021-05-25 15:01:02.8+03	
11694cf0-c526-dfd4-b889-ef79feb121f8	2021-05-25 15:01:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:01:12.79+03	2021-05-25 15:01:12.826+03	
8a3b14c0-4b71-34d4-5207-6d34cd1d46f7	2021-05-25 15:01:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:01:32.79+03	2021-05-25 15:01:32.805+03	
7a794db4-4cc3-101b-a80a-5c5e7482984f	2021-05-25 15:01:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:01:52.79+03	2021-05-25 15:01:52.799+03	
9672e7eb-bb85-b46a-9f43-639f908e283b	2021-05-25 15:02:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:02:12.79+03	2021-05-25 15:02:12.811+03	
45234d7a-5247-6068-ceec-828ef3e40535	2021-05-25 15:02:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:02:32.79+03	2021-05-25 15:02:32.797+03	
de91e6d8-dbfd-bbc0-b7dc-dcf7cef10dcb	2021-05-25 15:02:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:02:53.79+03	2021-05-25 15:02:53.797+03	
f45166f1-fb65-5c2e-bace-1090d3cc7903	2021-05-25 15:03:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:03:03.79+03	2021-05-25 15:03:03.797+03	
0badc461-c9ba-4515-0aeb-8fdfb219024a	2021-05-25 15:03:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:03:23.79+03	2021-05-25 15:03:23.831+03	
c169c274-ebaa-13ef-1de1-ae582450b5ba	2021-05-25 15:03:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:03:43.79+03	2021-05-25 15:03:43.8+03	
0790eeb0-e277-9a11-4ad6-9d361152ec41	2021-05-25 15:04:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:04:03.79+03	2021-05-25 15:04:03.797+03	
d58e0df3-a937-b54f-889a-2f068b8e683a	2021-05-25 15:04:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:04:33.79+03	2021-05-25 15:04:33.798+03	
76f8355f-c29e-2c31-d8f9-67db19379a0b	2021-05-25 15:04:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:04:43.79+03	2021-05-25 15:04:43.796+03	
c70b490f-6e7d-7e44-28e8-9aab7310e1b2	2021-05-25 15:05:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:05:03.79+03	2021-05-25 15:05:03.8+03	
4422662e-622b-757f-ca73-56fc11a920c8	2021-05-25 15:05:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:05:13.79+03	2021-05-25 15:05:13.835+03	
7899e4e0-c522-786c-5789-a1816138302e	2021-05-25 15:05:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:05:33.79+03	2021-05-25 15:05:33.798+03	
3be2f967-2c0d-7dfc-6e2b-3d26430a5f40	2021-05-25 15:05:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:05:53.79+03	2021-05-25 15:05:53.797+03	
d5311da5-ef32-a195-2829-687feaef57ab	2021-05-25 15:06:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:06:23.79+03	2021-05-25 15:06:23.798+03	
54a2c5e9-2270-074e-24ca-8d91f77cc1e8	2021-05-25 15:06:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:06:43.79+03	2021-05-25 15:06:43.798+03	
522270fb-9855-91e9-af63-0d0a2fb5a6de	2021-05-25 15:07:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:07:23.79+03	2021-05-25 15:07:23.796+03	
07d70f60-9675-cece-126d-02e6aeb62a11	2021-05-25 15:07:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:07:43.79+03	2021-05-25 15:07:43.797+03	
a41f6a2d-576d-a619-01b5-dfc86eb920b3	2021-05-25 15:08:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:08:03.79+03	2021-05-25 15:08:03.797+03	
18fdc4f7-18eb-eb47-927d-d0a265db30df	2021-05-25 15:08:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:08:23.79+03	2021-05-25 15:08:23.798+03	
22903211-65fc-fcc8-fe1a-baaa799d8e01	2021-05-25 15:08:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:08:43.79+03	2021-05-25 15:08:43.797+03	
fe2fe5d2-ddbe-f28e-9c3a-2b00b33f25e9	2021-05-25 15:09:34.798	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:09:34.798+03	2021-05-25 15:09:34.807+03	
36093649-c3b1-55e3-512d-0ef6ea7e6f3d	2021-05-25 15:08:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:08:33.79+03	2021-05-25 15:08:33.796+03	
64570d0d-f222-8290-f839-e27c79543bd0	2021-05-26 04:21:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:21:44.79+03	2021-05-26 04:21:44.796+03	
eac02c49-5dfe-cfd7-3f38-1cd07ffeca50	2021-05-25 15:08:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:08:53.79+03	2021-05-25 15:08:53.796+03	
5cade81e-4aa0-2c15-a68a-3825aaaadda3	2021-05-25 15:09:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:09:03.79+03	2021-05-25 15:09:03.797+03	
8c72e3e1-5e91-6d0c-1e76-080c6b5cfaf9	2021-05-26 04:22:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:22:04.79+03	2021-05-26 04:22:04.796+03	
697aab4f-67ee-dfdb-b6ac-9aea0ccff2bd	2021-05-25 15:09:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:09:13.79+03	2021-05-25 15:09:13.796+03	
5872f04d-010e-904c-0bac-a8bcb6ad6304	2021-05-25 15:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:09:24.79+03	2021-05-25 15:09:24.796+03	
09458e86-bf9f-0a8d-b47a-0f3a0da21769	2021-05-26 04:22:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:22:24.79+03	2021-05-26 04:22:24.809+03	
486d55ca-29e7-879f-c523-36e61a8bf62a	2021-05-25 15:09:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:09:45.79+03	2021-05-25 15:09:45.819+03	
045731c6-8df0-1b2d-225e-262fc20fe2ec	2021-05-25 15:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 15:10:00.79+03	2021-05-25 15:10:00.796+03	ERROR
7d7b2b7e-6990-85d3-be2e-6c5f068fd502	2021-05-26 04:22:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:22:44.79+03	2021-05-26 04:22:44.797+03	
439e0644-e787-20b3-6d85-f41755f1aa04	2021-05-25 15:10:15.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:10:15.79+03	2021-05-25 15:10:15.796+03	
21d66c98-cd57-6530-c5ca-f426ddc8caa6	2021-05-25 15:10:25.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:10:25.79+03	2021-05-25 15:10:25.796+03	
72ce3727-abd3-d008-97ff-64d0a2dbd93f	2021-05-26 04:23:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:23:04.79+03	2021-05-26 04:23:04.797+03	
7ee8b672-5745-a0e3-fa75-77e8cc072ddf	2021-05-25 15:10:35.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:10:35.79+03	2021-05-25 15:10:35.796+03	
89f2fa47-1526-9769-2af2-ec528f8a1e82	2021-05-25 15:11:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:11:06.79+03	2021-05-25 15:11:06.796+03	
22336b97-e165-b0ab-688d-7e3f6f75e6df	2021-05-26 04:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:23:24.79+03	2021-05-26 04:23:24.796+03	
08de4925-b9cf-74e1-fef3-7240e1dfb910	2021-05-25 15:11:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:11:16.79+03	2021-05-25 15:11:16.797+03	
cb1f4355-8ad8-2802-371d-b70bfde4e67f	2021-05-25 15:11:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:11:26.79+03	2021-05-25 15:11:26.796+03	
34e7e00f-91d6-fa53-2b4c-e6c6d7b63eb0	2021-05-26 04:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:23:44.79+03	2021-05-26 04:23:44.796+03	
1a20989f-5230-3252-dc17-b2ee65862514	2021-05-25 15:11:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:11:46.79+03	2021-05-25 15:11:46.796+03	
98ab2b4a-1e54-6db7-61f0-98912920d6de	2021-05-25 15:12:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:12:17.79+03	2021-05-25 15:12:17.803+03	
0c0542e6-1581-e344-3082-d1f50f7b80cf	2021-05-26 04:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:24:04.79+03	2021-05-26 04:24:04.797+03	
9e49fc63-e096-c0e3-6527-f2ea1723136d	2021-05-25 15:12:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:12:27.79+03	2021-05-25 15:12:27.797+03	
b1c038c1-2d6c-451b-6fb9-5f8fb2fa0371	2021-05-25 15:12:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:12:47.79+03	2021-05-25 15:12:47.796+03	
e1e6040b-a120-3496-4c37-ff65b76bbb50	2021-05-26 04:24:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:24:24.79+03	2021-05-26 04:24:24.796+03	
fe103274-ae6b-3f9f-a270-7ad967027447	2021-05-25 15:13:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:13:07.79+03	2021-05-25 15:13:07.797+03	
c1416227-dbf8-2197-065d-078704e339be	2021-05-25 15:13:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:13:27.79+03	2021-05-25 15:13:27.796+03	
38297b3e-46be-52a2-2ca7-a7f65147d543	2021-05-26 04:24:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:24:44.79+03	2021-05-26 04:24:44.798+03	
5d7b8039-8111-e328-6ccd-fc22ef60dfb6	2021-05-25 15:13:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:13:47.79+03	2021-05-25 15:13:47.796+03	
82e1f9fe-1a37-0599-ba0b-e992c4f9883c	2021-05-25 15:13:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:13:57.79+03	2021-05-25 15:13:57.797+03	
f7f7c128-8c2b-5cf3-ad1a-6ff41a3bbbfe	2021-05-26 04:25:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:25:04.79+03	2021-05-26 04:25:04.798+03	
82ea0f1b-2e5b-7bf9-250f-5a623fc210a6	2021-05-25 15:14:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:14:37.79+03	2021-05-25 15:14:37.806+03	
6cb12a33-ca37-98bc-2c06-95cf1461c4a9	2021-05-25 15:14:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:14:57.79+03	2021-05-25 15:14:57.797+03	
cf431fdd-1a73-07c5-f47d-237907015398	2021-05-26 04:25:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:25:24.79+03	2021-05-26 04:25:24.797+03	
cdb07a58-165d-f0a3-27a3-299396823a02	2021-05-25 15:15:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:15:17.79+03	2021-05-25 15:15:17.796+03	
19bcaec4-d6e2-5d1c-da57-8d1847690840	2021-05-25 15:15:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:15:27.79+03	2021-05-25 15:15:27.796+03	
bd2921f5-b272-9e53-9352-fa54748c65b6	2021-05-25 15:15:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:15:57.79+03	2021-05-25 15:15:57.797+03	
69ac9f61-56eb-736f-e906-f11b23c50e36	2021-05-25 15:16:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:16:17.79+03	2021-05-25 15:16:17.807+03	
53749b11-7596-9273-ec37-d7e0f520eb8f	2021-05-25 15:16:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:16:57.79+03	2021-05-25 15:16:57.797+03	
c81aaa63-8780-666d-ac8c-53449d11a092	2021-05-25 15:17:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:17:07.79+03	2021-05-25 15:17:07.796+03	
c6431601-6e47-4b2c-5533-1b19915c7544	2021-05-25 15:17:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:17:17.79+03	2021-05-25 15:17:17.82+03	
d45925c5-0b9d-3f99-bd6f-fdbb5d439cb6	2021-05-25 15:17:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:17:37.79+03	2021-05-25 15:17:37.798+03	
9efbc3fd-dfd4-0f8e-a7fa-1cafb5dd4430	2021-05-25 15:17:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:17:47.79+03	2021-05-25 15:17:47.799+03	
c2bd2dea-a1a5-cd4e-894a-5b68c09040b5	2021-05-25 15:17:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:17:57.79+03	2021-05-25 15:17:57.797+03	
4ebca278-7883-d9b5-064e-5616d2e3bbfa	2021-05-25 15:18:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:18:27.79+03	2021-05-25 15:18:27.796+03	
4faf0226-51bf-5773-8838-617a16ce8c82	2021-05-25 15:18:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:18:58.79+03	2021-05-25 15:18:58.799+03	
b344d0ff-37a9-f201-ba35-2d4b271db0e2	2021-05-25 15:19:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:19:08.79+03	2021-05-25 15:19:08.796+03	
4ccc710d-5c05-0037-cdf7-9b0332d950d4	2021-05-25 15:19:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:19:38.79+03	2021-05-25 15:19:38.796+03	
f8636f06-2646-0348-3c3e-40fe700f3889	2021-05-25 15:19:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:19:58.79+03	2021-05-25 15:19:58.797+03	
88b89b3e-f7d2-df02-e018-8f54e45709be	2021-05-25 15:20:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:20:08.79+03	2021-05-25 15:20:08.802+03	
deb75720-7f26-d528-e971-0b487d4cb8d9	2021-05-25 15:20:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:20:28.79+03	2021-05-25 15:20:28.796+03	
611e1740-c439-d64d-b7f1-427f823240b3	2021-05-25 15:20:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:20:38.79+03	2021-05-25 15:20:38.798+03	
b3c8d817-4db3-3c80-6969-130dd599aab1	2021-05-25 15:21:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:21:38.79+03	2021-05-25 15:21:38.798+03	
4099b1c9-68ee-46e0-32bf-b9d9ff2cf656	2021-05-25 15:21:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:21:48.79+03	2021-05-25 15:21:48.796+03	
29d2422e-b0ff-b37c-1154-2ff01917de1f	2021-05-25 15:22:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:22:08.79+03	2021-05-25 15:22:08.797+03	
2647e53b-6e02-eada-26a2-5686b4a7eb19	2021-05-25 15:22:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:22:38.79+03	2021-05-25 15:22:38.797+03	
8af5e09c-4352-cec1-d6fb-3e8f19266bb4	2021-05-25 15:22:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:22:58.79+03	2021-05-25 15:22:58.797+03	
727882b2-a150-f160-6981-2f32302b1a4e	2021-05-25 15:23:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:23:08.79+03	2021-05-25 15:23:08.797+03	
e89cc5b7-931e-d4c9-024a-997bd6a45211	2021-05-25 15:23:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:23:18.79+03	2021-05-25 15:23:18.796+03	
c21e8e3a-52c2-105f-a999-4c95bc818b2f	2021-05-25 15:23:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:23:38.79+03	2021-05-25 15:23:38.809+03	
0adab87a-5223-5de1-077e-2865396cb778	2021-05-25 15:23:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:23:48.79+03	2021-05-25 15:23:48.812+03	
c95927f9-538d-e209-89d0-eb29cd647fca	2021-05-25 15:23:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:23:58.79+03	2021-05-25 15:23:58.797+03	
e0906dc5-bbab-7385-0fe2-40eb7cd16d65	2021-05-25 15:09:55.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:09:55.79+03	2021-05-25 15:09:55.796+03	
dc81b17e-06a1-d60f-7656-10980e688b7d	2021-05-25 15:10:05.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:10:05.79+03	2021-05-25 15:10:05.796+03	
b83c0529-3dec-ed93-7a3d-ff6d6854d5de	2021-05-25 15:10:45.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:10:45.791+03	2021-05-25 15:10:45.797+03	
470560c9-fe65-540f-d7ce-bfb4e2510169	2021-05-25 15:10:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:10:56.79+03	2021-05-25 15:10:56.796+03	
eb0f683a-8805-4e7d-3381-80ce8a917cb1	2021-05-25 15:11:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:11:36.79+03	2021-05-25 15:11:36.802+03	
42c25e91-4f38-f38e-c057-0b7508e43553	2021-05-25 15:11:56.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:11:56.791+03	2021-05-25 15:11:56.81+03	
3797ddfd-66f2-f349-672a-141a225252b1	2021-05-25 15:12:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:12:07.79+03	2021-05-25 15:12:07.816+03	
d8d38513-8267-7be0-912b-5361c9e5090f	2021-05-25 15:12:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:12:37.79+03	2021-05-25 15:12:37.797+03	
83ac1de7-7f51-5e86-e291-25690d7ac609	2021-05-25 15:12:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:12:57.79+03	2021-05-25 15:12:57.799+03	
85232e52-15e2-b201-c88b-84c4c4cfc29b	2021-05-25 15:13:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:13:17.79+03	2021-05-25 15:13:17.797+03	
069428e7-45d6-c584-325c-f718461edf66	2021-05-25 15:13:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:13:37.79+03	2021-05-25 15:13:37.798+03	
af76fc2e-ad5f-7255-b3f6-05407c1bca96	2021-05-25 15:14:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:14:07.79+03	2021-05-25 15:14:07.797+03	
fc73c3b4-1825-83de-9046-6292cecc7638	2021-05-25 15:14:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:14:17.79+03	2021-05-25 15:14:17.813+03	
00669d6c-c3d3-bfbd-bb55-564410eed586	2021-05-25 15:14:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:14:27.79+03	2021-05-25 15:14:27.797+03	
df0e9721-0ce4-bf9d-5d8c-866ea421acd9	2021-05-25 15:14:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:14:47.79+03	2021-05-25 15:14:47.797+03	
280efb40-27df-b4e9-4f27-b899d45346e4	2021-05-25 15:15:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:15:07.79+03	2021-05-25 15:15:07.797+03	
f8b0bd42-af99-1477-f2b2-ac619ee5ccc5	2021-05-25 15:15:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:15:37.79+03	2021-05-25 15:15:37.811+03	
4f11a208-2b85-c51c-d2aa-dedff3093196	2021-05-25 15:15:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:15:47.79+03	2021-05-25 15:15:47.796+03	
be7dd08d-84e3-e0fd-9ce9-b696e8f197a1	2021-05-25 15:16:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:16:07.79+03	2021-05-25 15:16:07.796+03	
8de70b7e-5109-ad00-8d98-1613a754073f	2021-05-25 15:16:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:16:27.79+03	2021-05-25 15:16:27.797+03	
50dd0a3e-f69a-e623-990c-4b08b21e8dc7	2021-05-25 15:16:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:16:37.79+03	2021-05-25 15:16:37.807+03	
441b4dcb-9c0f-0a55-69bf-d8adf9b98f6d	2021-05-25 15:16:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:16:47.79+03	2021-05-25 15:16:47.796+03	
a79b1a67-0302-97cf-2622-4ecb40453e9b	2021-05-25 15:17:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:17:27.79+03	2021-05-25 15:17:27.796+03	
ac00acda-be14-c82b-dee3-c218a546b0a2	2021-05-25 15:18:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:18:07.79+03	2021-05-25 15:18:07.797+03	
56e2dc1a-379d-4bc2-4866-026843c97928	2021-05-25 15:18:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:18:17.79+03	2021-05-25 15:18:17.797+03	
8f040ac2-c7ad-f170-7459-82db1384fd53	2021-05-25 15:18:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:18:37.79+03	2021-05-25 15:18:37.797+03	
e18e43a4-935e-cf82-4844-6881bcb053e8	2021-05-25 15:18:47.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:18:47.793+03	2021-05-25 15:18:47.811+03	
15c62deb-6d4c-5f08-9cf0-b0a3faf68ce2	2021-05-25 15:19:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:19:18.79+03	2021-05-25 15:19:18.796+03	
ee0db600-a728-9cbd-310c-efd9f46aed13	2021-05-25 15:19:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:19:28.79+03	2021-05-25 15:19:28.797+03	
b349ea7f-43a5-8fc3-4984-6a32a5736a05	2021-05-25 15:19:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:19:48.79+03	2021-05-25 15:19:48.796+03	
76d9a838-ff5b-6d30-74ce-f0ec626b07e1	2021-05-25 15:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 15:20:00.791+03	2021-05-25 15:20:00.796+03	ERROR
64b23879-c60a-a202-7d3a-25fd38688baf	2021-05-25 15:20:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:20:18.79+03	2021-05-25 15:20:18.797+03	
a1986557-7b10-d991-e1e8-860ab7525202	2021-05-25 15:20:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:20:48.79+03	2021-05-25 15:20:48.797+03	
5630953b-ee33-c5d3-2847-2fff38a1e1e8	2021-05-25 15:20:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:20:58.79+03	2021-05-25 15:20:58.797+03	
9cf7f12d-be6c-8969-0709-c613c56c49d3	2021-05-25 15:21:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:21:08.79+03	2021-05-25 15:21:08.82+03	
56f8b855-53f7-87da-5cb3-0dc22b95eb1c	2021-05-25 15:21:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:21:18.79+03	2021-05-25 15:21:18.796+03	
a7c98104-fb73-5107-f600-223541d92fbb	2021-05-25 15:21:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:21:28.79+03	2021-05-25 15:21:28.796+03	
cf04b5e6-acc5-88f6-de2a-04d071e5fd3e	2021-05-25 15:21:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:21:58.79+03	2021-05-25 15:21:58.797+03	
0bdcc26c-3eb8-2e07-ea7d-d3ccf0b2ba48	2021-05-25 15:22:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:22:18.79+03	2021-05-25 15:22:18.797+03	
affbd514-f2fc-3c78-254d-254236d1a34d	2021-05-25 15:22:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:22:28.79+03	2021-05-25 15:22:28.798+03	
c5584b36-57f1-2a84-74dc-90664b8afb2c	2021-05-25 15:22:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:22:48.79+03	2021-05-25 15:22:48.807+03	
2d5b8644-ad81-2c9f-eb09-695e878431d1	2021-05-25 15:23:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:23:28.79+03	2021-05-25 15:23:28.801+03	
f8e77abc-f3c1-41c7-3505-ca1a8f52840a	2021-05-25 15:24:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:24:08.79+03	2021-05-25 15:24:08.802+03	
449336e1-6641-cfe1-2928-0c0cce7728c9	2021-05-25 15:24:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:24:18.79+03	2021-05-25 15:24:18.82+03	
7e419962-3cba-88eb-0b98-918d0f4cf2c1	2021-05-25 15:24:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:24:28.79+03	2021-05-25 15:24:28.801+03	
a12cbe49-5666-2850-f871-60466d4fd700	2021-05-25 15:24:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:24:38.79+03	2021-05-25 15:24:38.799+03	
6e77aa17-73ab-3e49-ea9c-80f1d03e5f7b	2021-05-25 15:24:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:24:48.79+03	2021-05-25 15:24:48.813+03	
14eae2c1-d398-a07d-8f3d-77bcdfbaccf1	2021-05-25 15:24:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:24:58.79+03	2021-05-25 15:24:58.814+03	
ca5b2b94-3d01-8cbf-3630-f36a59713a05	2021-05-25 15:25:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:25:08.79+03	2021-05-25 15:25:08.798+03	
3b71cce6-776f-749b-5c06-727fdb359cec	2021-05-25 15:25:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:25:18.79+03	2021-05-25 15:25:18.796+03	
9a802f65-647f-0b9b-9111-6e99ef364010	2021-05-25 15:25:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:25:28.79+03	2021-05-25 15:25:28.8+03	
1918e1cc-4074-c389-6288-83725944610b	2021-05-25 15:25:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:25:38.79+03	2021-05-25 15:25:38.799+03	
a407c049-ed8a-dfbe-c555-ed4d84833031	2021-05-25 15:25:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:25:48.79+03	2021-05-25 15:25:48.811+03	
d56f3676-7f11-52a9-7eb4-1b528c096ff6	2021-05-25 15:25:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:25:58.79+03	2021-05-25 15:25:58.808+03	
f8191945-df63-0794-8c63-d5ce9909e750	2021-05-25 15:26:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:26:08.79+03	2021-05-25 15:26:08.812+03	
06767a54-fbcb-1f09-52c2-3a26c93fe723	2021-05-25 15:26:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:26:18.79+03	2021-05-25 15:26:18.811+03	
eaaa454a-a6a8-cb9f-029a-98d82ff93cd1	2021-05-25 15:26:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:26:28.79+03	2021-05-25 15:26:28.796+03	
d66cff05-e51f-d35a-62bb-cd970a80ecea	2021-05-25 15:26:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:26:38.79+03	2021-05-25 15:26:38.796+03	
2fca869a-eec3-344d-127a-0bdf0c3d5a4d	2021-05-25 15:26:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:26:48.79+03	2021-05-25 15:26:48.798+03	
bdd4688c-7de0-ba85-4270-e2d1f27238c7	2021-05-25 15:26:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:26:58.79+03	2021-05-25 15:26:58.797+03	
172bb7bf-e3fe-a436-bcf0-b5ad0981b4b0	2021-05-25 15:27:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:27:08.79+03	2021-05-25 15:27:08.797+03	
df881da0-d98a-28f5-68b5-e362ca30f4ee	2021-05-25 15:27:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:27:18.79+03	2021-05-25 15:27:18.796+03	
b1968cd8-838b-a805-2e35-efa9a2247743	2021-05-25 15:27:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:27:28.79+03	2021-05-25 15:27:28.796+03	
6b505ca9-c743-c723-576d-4a402d1dda55	2021-05-27 18:05:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:05:25.951+03	2021-05-27 18:05:25.959+03	
e2b0ee92-23db-a023-c1db-b92739f0fb97	2021-05-25 15:27:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:27:38.79+03	2021-05-25 15:27:38.797+03	
a6b80cab-f10b-5876-f00b-80a72e6008ad	2021-05-26 04:25:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:25:44.79+03	2021-05-26 04:25:44.796+03	
d379cf8a-4cb8-434d-0fae-c4bb8b412445	2021-05-25 15:27:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:27:48.79+03	2021-05-25 15:27:48.796+03	
57fa6200-6330-1cf4-4a79-b1f7e2eae690	2021-05-25 15:27:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:27:58.79+03	2021-05-25 15:27:58.809+03	
48ec3e7d-1a3e-d250-8dce-2551d51aa269	2021-05-26 04:26:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:26:04.79+03	2021-05-26 04:26:04.796+03	
b855536b-0a5e-9615-7cba-247905bbe7b2	2021-05-25 15:28:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:28:18.79+03	2021-05-25 15:28:18.797+03	
b22cb20a-28fe-54f0-14a5-50867e52dbd7	2021-05-25 15:28:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:28:28.79+03	2021-05-25 15:28:28.808+03	
71767a3a-bc85-aa99-f0ac-d5c32a8c7405	2021-05-26 04:26:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:26:24.79+03	2021-05-26 04:26:24.797+03	
c9e62498-6fd2-9732-0b90-857cf8c24a41	2021-05-25 15:28:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:28:58.79+03	2021-05-25 15:28:58.798+03	
f7c25e35-3f94-f9fb-b1cc-6019f1e81811	2021-05-25 15:29:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:29:18.79+03	2021-05-25 15:29:18.799+03	
dfbf3c99-79c2-19c4-7239-1628027cb931	2021-05-26 04:26:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:26:44.79+03	2021-05-26 04:26:44.796+03	
068af5df-1029-6033-83dc-68922d7222af	2021-05-25 15:29:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:29:28.79+03	2021-05-25 15:29:28.798+03	
478bac28-2ded-42c1-bdf5-6800b7caa67b	2021-05-26 04:27:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:27:04.79+03	2021-05-26 04:27:04.797+03	
d3fbc64f-a7b6-c4e8-ef21-ec18251f70a1	2021-05-26 04:27:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:27:24.79+03	2021-05-26 04:27:24.796+03	
6fa2c1a0-eba4-23f0-c70f-a9db02a42f95	2021-05-26 04:27:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:27:44.79+03	2021-05-26 04:27:44.796+03	
4887d958-6921-8c9c-731d-9e5c3838c450	2021-05-26 04:28:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:28:04.79+03	2021-05-26 04:28:04.8+03	
f0895d17-d3e0-0f13-5f85-21818f3ffdec	2021-05-26 04:28:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:28:24.79+03	2021-05-26 04:28:24.796+03	
661fef63-f815-e4e7-12b5-34be68607642	2021-05-26 04:28:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:28:44.79+03	2021-05-26 04:28:44.797+03	
c6e14ef0-1e9f-b548-7dda-2b31f79f804b	2021-05-26 04:29:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:29:04.79+03	2021-05-26 04:29:04.796+03	
f5c6ea28-b3a2-5d43-d757-5af69eb2f565	2021-05-26 04:29:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:29:24.79+03	2021-05-26 04:29:24.797+03	
dbf47cfd-6351-75cf-51e6-e124fffd2311	2021-05-26 04:29:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:29:44.79+03	2021-05-26 04:29:44.796+03	
d0f070e7-5bd6-5557-eca0-759181a85f66	2021-05-26 04:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 04:30:00.79+03	2021-05-26 04:30:00.795+03	ERROR
90a43d4a-a0f1-3e89-b104-a86e459e87bf	2021-05-26 04:30:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:30:14.79+03	2021-05-26 04:30:14.796+03	
52d8c1c4-20db-f9b8-6da2-ffbeab679de0	2021-05-26 04:30:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:30:34.79+03	2021-05-26 04:30:34.805+03	
9ed63ace-2f38-4d7a-f48a-ffa8f15f5bba	2021-05-26 04:30:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:30:54.79+03	2021-05-26 04:30:54.796+03	
3ec88101-68ab-9653-4a0f-75042a812ac2	2021-05-26 04:31:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:31:14.79+03	2021-05-26 04:31:14.797+03	
1c35eaae-5857-2ba7-5119-edc27805cbb1	2021-05-26 04:31:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:31:34.79+03	2021-05-26 04:31:34.798+03	
bedb0edf-41b0-d9a9-862d-dbc00c9a41f1	2021-05-26 04:31:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:31:54.79+03	2021-05-26 04:31:54.797+03	
f90c4003-6328-0177-865e-ad4acd1037fc	2021-05-26 04:32:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:32:14.79+03	2021-05-26 04:32:14.796+03	
a3ff92fd-fd17-ca5f-fac9-4af668eff890	2021-05-26 04:32:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:32:34.79+03	2021-05-26 04:32:34.796+03	
bfa60750-c488-085c-1bdc-4db5da97369b	2021-05-26 04:32:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:32:54.79+03	2021-05-26 04:32:54.796+03	
db36b3c4-0bca-625a-abf6-b0f53db4e2bb	2021-05-26 04:33:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:33:14.79+03	2021-05-26 04:33:14.797+03	
b861205b-59e9-778d-3be9-f1a79edf5559	2021-05-26 04:33:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:33:34.79+03	2021-05-26 04:33:34.796+03	
562315a7-c521-85f9-e365-64b320812f21	2021-05-26 04:33:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:33:54.79+03	2021-05-26 04:33:54.797+03	
1419ad22-e358-3999-ecc5-6108a2a5f465	2021-05-26 04:34:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:34:14.79+03	2021-05-26 04:34:14.796+03	
3f50a3cd-4a5e-2775-a4f0-129e5e5e909f	2021-05-26 04:34:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:34:34.79+03	2021-05-26 04:34:34.806+03	
4cebdaf2-9547-bf7d-ffeb-a782e0b07352	2021-05-26 04:34:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:34:54.79+03	2021-05-26 04:34:54.796+03	
2d9d8867-1a88-97d9-35e5-2c0c692614bd	2021-05-26 04:35:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:35:14.79+03	2021-05-26 04:35:14.796+03	
a0c6fe2c-8041-208b-c3a4-e3a41ecdb2aa	2021-05-26 04:35:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:35:34.79+03	2021-05-26 04:35:34.796+03	
21b148f3-0df5-6dc0-5564-c9d8a96146c2	2021-05-26 04:35:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:35:54.79+03	2021-05-26 04:35:54.796+03	
3c97246d-b1c8-1759-12b9-e30e3dc8360a	2021-05-26 04:36:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:36:14.79+03	2021-05-26 04:36:14.797+03	
9a399a5d-2714-39cc-bfe8-da4b4eb5c731	2021-05-26 04:36:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:36:34.79+03	2021-05-26 04:36:34.796+03	
3f806e56-089a-1705-ee2e-479b25aa4ef0	2021-05-26 04:36:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:36:54.79+03	2021-05-26 04:36:54.798+03	
aae6eeb7-92ea-8b42-aab6-4b6d58863f81	2021-05-26 04:37:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:37:14.79+03	2021-05-26 04:37:14.796+03	
2407d0da-f8d2-1c03-a10a-b4965b9a9ad4	2021-05-26 04:37:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:37:34.79+03	2021-05-26 04:37:34.796+03	
ae0c044d-8735-a479-c48e-a18b97575d44	2021-05-26 04:37:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:37:54.79+03	2021-05-26 04:37:54.796+03	
4dccca62-eab9-0491-9dfa-8e0978c6ed49	2021-05-26 04:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:38:14.79+03	2021-05-26 04:38:14.796+03	
7cc155a2-f97f-0838-8ba7-41bade0e18d9	2021-05-26 04:38:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:38:34.79+03	2021-05-26 04:38:34.796+03	
c73d9968-3d55-3c1d-5fa0-09f5e930a4a1	2021-05-26 04:38:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:38:54.79+03	2021-05-26 04:38:54.797+03	
72083c55-bf9b-f90a-a375-0230f5ea5047	2021-05-26 04:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:39:14.79+03	2021-05-26 04:39:14.796+03	
136ecb62-ad38-89e9-406a-273fc52dd1af	2021-05-26 04:39:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:39:34.79+03	2021-05-26 04:39:34.797+03	
1cabdb5f-49a8-6894-e1d3-832cf83b3dc1	2021-05-26 04:39:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:39:54.79+03	2021-05-26 04:39:54.796+03	
31a431fb-641d-471e-9a18-9893780da156	2021-05-26 04:40:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:40:04.79+03	2021-05-26 04:40:04.797+03	
0c1f780d-2291-7f2a-63f6-f228f1b47fcf	2021-05-26 04:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:40:24.79+03	2021-05-26 04:40:24.797+03	
c35aab58-296a-93f6-01c8-3938f2b79136	2021-05-26 04:40:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:40:44.79+03	2021-05-26 04:40:44.797+03	
9ebd68bb-038c-7ca3-b53f-829316cd2e9e	2021-05-26 04:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:41:04.79+03	2021-05-26 04:41:04.796+03	
25e618c6-e510-8ebc-1397-01e2d4ab5b0f	2021-05-26 04:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:41:24.79+03	2021-05-26 04:41:24.797+03	
d3a2695f-d420-1899-38ba-1b84aff94c9f	2021-05-26 04:41:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:41:44.79+03	2021-05-26 04:41:44.796+03	
a87d5624-9f88-1274-6a49-54ceb15aa144	2021-05-26 04:42:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:42:04.79+03	2021-05-26 04:42:04.796+03	
f33f84b2-854b-54c6-8a16-66c9a2d7aec8	2021-05-26 04:42:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:42:24.79+03	2021-05-26 04:42:24.803+03	
7ea69d8b-d1d7-8f82-ca4c-24b06a462703	2021-05-26 04:42:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:42:44.79+03	2021-05-26 04:42:44.802+03	
0512a033-ce93-5fc2-ee0e-b69d40b29cb5	2021-05-26 04:43:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:43:04.79+03	2021-05-26 04:43:04.798+03	
58d879b0-41b7-7f71-fdcc-e9d1a3d61b7a	2021-05-26 04:43:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:43:24.79+03	2021-05-26 04:43:24.801+03	
0d9fd568-632b-791e-100c-429be4e310b9	2021-05-25 15:28:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:28:08.79+03	2021-05-25 15:28:08.798+03	
a192499a-7ed3-d0de-4a17-b9f4054104e4	2021-05-25 15:28:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:28:38.79+03	2021-05-25 15:28:38.808+03	
345dbdfc-b79c-5d4a-4047-930ad978c227	2021-05-25 15:28:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:28:48.79+03	2021-05-25 15:28:48.797+03	
5a39be68-e4e6-aeea-8e0d-dfd904a7cf2b	2021-05-25 15:29:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:29:08.79+03	2021-05-25 15:29:08.796+03	
642dcd28-1fdb-8e5a-88b3-e515937628d7	2021-05-25 15:29:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:29:38.79+03	2021-05-25 15:29:38.807+03	
83ce4512-00fc-8190-1726-2e4716adfedb	2021-05-25 15:29:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:29:48.79+03	2021-05-25 15:29:48.818+03	
4f8eb86e-254c-a0f8-ce87-ae60bb43944f	2021-05-25 15:29:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:29:58.79+03	2021-05-25 15:29:58.798+03	
64f84058-fa9e-2780-fb62-c293a735467f	2021-05-25 15:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 15:30:00.79+03	2021-05-25 15:30:00.796+03	ERROR
d3987c6c-b7d8-904d-2a42-87b154d66a36	2021-05-25 15:30:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:30:08.79+03	2021-05-25 15:30:08.796+03	
675eafeb-7da7-7efe-26ff-e1ee387f6e70	2021-05-25 15:30:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:30:18.79+03	2021-05-25 15:30:18.798+03	
6950c3fa-f072-c9d2-c355-c84b19fc1b79	2021-05-25 15:30:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:30:28.79+03	2021-05-25 15:30:28.797+03	
b3abd599-ccd0-a9c4-e1ca-9b90e4ab3e16	2021-05-25 15:30:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:30:38.79+03	2021-05-25 15:30:38.809+03	
92bf4785-b05f-9bea-9deb-db8ef5a35b16	2021-05-25 15:30:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:30:48.79+03	2021-05-25 15:30:48.802+03	
0803b85e-ac34-18ef-1a36-a5f8c6ef94b0	2021-05-25 15:30:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:30:58.79+03	2021-05-25 15:30:58.803+03	
3100bb1b-1824-3771-e20c-9528e2a72f7c	2021-05-25 15:31:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:31:08.79+03	2021-05-25 15:31:08.809+03	
87f38e3c-ebd5-9c0e-c448-76d5c19c52be	2021-05-25 15:31:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:31:18.79+03	2021-05-25 15:31:18.798+03	
c095e6b8-0f2f-fa22-03a7-efa3e755316a	2021-05-25 15:31:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:31:28.79+03	2021-05-25 15:31:28.814+03	
34f9af2c-3853-0017-f34a-f36e429f4b9d	2021-05-25 15:31:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:31:38.79+03	2021-05-25 15:31:38.82+03	
fae7215f-2745-6669-fde5-17a358bf097c	2021-05-25 15:31:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:31:48.79+03	2021-05-25 15:31:48.797+03	
a864274e-e302-3c08-45d0-fad03df8c4fb	2021-05-25 15:31:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:31:58.79+03	2021-05-25 15:31:58.797+03	
1058766b-6720-d1dd-6999-1cd85da5ab09	2021-05-25 15:32:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:32:08.79+03	2021-05-25 15:32:08.796+03	
9ed6716e-358f-94c1-b6d2-5541eca98964	2021-05-25 15:32:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:32:18.79+03	2021-05-25 15:32:18.806+03	
d066be8b-767e-91d7-126f-c3be0ecb4c1c	2021-05-25 15:32:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:32:28.79+03	2021-05-25 15:32:28.797+03	
2b714488-2ef1-1c9a-e38e-b6e684229e5b	2021-05-25 15:32:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:32:38.79+03	2021-05-25 15:32:38.809+03	
65c74feb-c9af-4416-c4ff-4b65ca31067a	2021-05-25 15:32:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:32:48.79+03	2021-05-25 15:32:48.812+03	
f905aea6-2943-6cb1-7393-2f9f08bdb32b	2021-05-25 15:32:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:32:58.79+03	2021-05-25 15:32:58.797+03	
4c00123a-7071-32f6-98ce-e5fe0f413cb9	2021-05-25 15:33:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:33:08.79+03	2021-05-25 15:33:08.797+03	
a276f239-fdcc-18d9-a09a-2123d7a042d3	2021-05-25 15:33:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:33:18.79+03	2021-05-25 15:33:18.802+03	
ffd4a912-0a58-f514-940c-501bd6db267a	2021-05-25 15:33:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:33:28.79+03	2021-05-25 15:33:28.8+03	
be2e8832-5351-cb5e-15cf-fa88cbaf91e9	2021-05-25 15:33:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:33:38.79+03	2021-05-25 15:33:38.797+03	
5dadd871-3188-122f-9371-7c398d559a6b	2021-05-25 15:33:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:33:48.79+03	2021-05-25 15:33:48.796+03	
2661bb0d-ffcc-7372-ddc1-e11e233aa397	2021-05-25 15:33:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:33:58.79+03	2021-05-25 15:33:58.8+03	
5a736e2a-3118-f48b-fc19-8f6482350bae	2021-05-25 15:34:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:34:08.79+03	2021-05-25 15:34:08.796+03	
52cf16d8-d0d2-3e28-ff8e-9d18ac107873	2021-05-25 15:34:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:34:18.79+03	2021-05-25 15:34:18.813+03	
cfdd753c-f87d-96e8-69c4-cb16a22fc8b5	2021-05-25 15:34:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:34:28.79+03	2021-05-25 15:34:28.796+03	
c27531ad-72db-dd16-e90f-aec066a471ab	2021-05-25 15:34:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:34:38.79+03	2021-05-25 15:34:38.798+03	
36e70b94-1e1b-cc13-a6ae-15b95444fc3d	2021-05-25 15:34:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:34:48.79+03	2021-05-25 15:34:48.807+03	
4aa373c3-217f-604c-c7c3-db63f95d4b2c	2021-05-25 15:34:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:34:58.79+03	2021-05-25 15:34:58.798+03	
e44b6915-282a-19c5-271c-7e86638c3930	2021-05-25 15:35:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:35:08.79+03	2021-05-25 15:35:08.796+03	
d5c7f06e-aade-a626-1b1c-b7489e56084d	2021-05-25 15:35:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:35:19.79+03	2021-05-25 15:35:19.796+03	
0f0b4a02-e421-a069-bc98-e5af976c33e7	2021-05-25 15:35:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:35:29.79+03	2021-05-25 15:35:29.797+03	
9437121d-1160-d562-03df-4a4169e3a6fe	2021-05-25 15:35:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:35:39.79+03	2021-05-25 15:35:39.81+03	
8d86d364-432e-1e19-32ff-5f2f59be0500	2021-05-25 15:35:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:35:49.79+03	2021-05-25 15:35:49.797+03	
c1c2c7fd-ca1a-cbcf-270d-90f2768ca6c9	2021-05-25 15:35:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:35:59.79+03	2021-05-25 15:35:59.812+03	
0b150e5c-d16e-d319-f40f-e9bd47d7ea9e	2021-05-25 15:36:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:36:09.79+03	2021-05-25 15:36:09.808+03	
c840a6e2-1564-bf8d-e317-1effe8fd436e	2021-05-25 15:36:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:36:19.79+03	2021-05-25 15:36:19.802+03	
7b941544-9ff4-1a0b-6043-4106958d3bff	2021-05-25 15:36:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:36:29.79+03	2021-05-25 15:36:29.797+03	
46b7bd9e-0a50-a9ef-edec-4aa2f810b322	2021-05-25 15:36:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:36:39.79+03	2021-05-25 15:36:39.818+03	
2b0eb177-6718-6eea-6a0b-df9398452ab7	2021-05-25 15:36:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:36:49.79+03	2021-05-25 15:36:49.797+03	
3a38ac12-e156-672c-46f0-007058ec4bbd	2021-05-25 15:36:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:36:59.79+03	2021-05-25 15:36:59.797+03	
15152b27-4312-1b71-35ce-7c8a447c7901	2021-05-25 15:37:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:37:09.79+03	2021-05-25 15:37:09.797+03	
c282fa81-408f-2b0d-a876-d05a4f5a6154	2021-05-25 15:37:19.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:37:19.792+03	2021-05-25 15:37:19.806+03	
0dae9362-b89d-67a2-4be3-680fbd84ebe3	2021-05-25 15:37:30.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:37:30.792+03	2021-05-25 15:37:30.843+03	
db450010-c286-280e-64a4-303ba1a18316	2021-05-25 15:37:41.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:37:41.791+03	2021-05-25 15:37:41.811+03	
6348c97a-5adc-9e06-70ca-e858986e4c10	2021-05-25 15:37:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:37:52.79+03	2021-05-25 15:37:52.811+03	
9a8595ae-acb9-4b01-a754-6e97c6fcc66c	2021-05-25 15:38:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:38:02.79+03	2021-05-25 15:38:02.798+03	
e14cee3e-2200-827a-989d-a70b420ce1aa	2021-05-25 15:38:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:38:12.79+03	2021-05-25 15:38:12.797+03	
b928e4a7-1b47-aa5d-4001-bdcec552875d	2021-05-25 15:38:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:38:22.79+03	2021-05-25 15:38:22.798+03	
d509e4a1-92b4-fbfc-9788-9aaea5dc0f16	2021-05-25 15:38:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:38:32.79+03	2021-05-25 15:38:32.798+03	
5428032b-4eaa-897b-8a30-221638f4970b	2021-05-25 15:38:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:38:42.79+03	2021-05-25 15:38:42.797+03	
58f8fe1d-c149-16b4-7f45-d32815152201	2021-05-25 15:38:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:38:52.79+03	2021-05-25 15:38:52.798+03	
9e61ff23-d4ba-01ef-e8fb-153b0bbcd56d	2021-05-25 15:39:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:39:02.79+03	2021-05-25 15:39:02.796+03	
709402bb-4681-ff99-f8ff-d3918780f3bd	2021-05-25 15:39:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:39:12.79+03	2021-05-25 15:39:12.798+03	
3f1063c1-d08c-065d-622d-5e169a2c17e6	2021-05-25 15:39:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:39:22.79+03	2021-05-25 15:39:22.8+03	
eaa4cb1a-5671-be8d-f303-f00a0e3fd24f	2021-05-26 04:31:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:31:44.79+03	2021-05-26 04:31:44.797+03	
0e216e06-3386-ce79-198a-b434339ef1cf	2021-05-25 15:40:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:40:03.79+03	2021-05-25 15:40:03.797+03	
baceef99-cb29-f532-19ce-38ba3b723918	2021-05-25 15:40:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:40:33.79+03	2021-05-25 15:40:33.796+03	
88860ff8-a2b5-5ccf-80cb-dc7acd62eae4	2021-05-26 04:32:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:32:04.79+03	2021-05-26 04:32:04.796+03	
bf0cda23-12e7-2cfa-8fcb-d7dc989c4f7b	2021-05-25 15:40:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:40:53.79+03	2021-05-25 15:40:53.797+03	
6bf422a3-db0e-3167-95f3-6be54133d59a	2021-05-25 15:41:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:41:13.79+03	2021-05-25 15:41:13.797+03	
ca7f1b48-51d0-877f-4b94-277f371c80c2	2021-05-26 04:32:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:32:24.79+03	2021-05-26 04:32:24.799+03	
c4002126-4760-9227-4bfd-4368c876bfce	2021-05-25 15:41:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:41:33.79+03	2021-05-25 15:41:33.814+03	
3a2517e7-4cf9-ffbf-6bd8-2188389dec73	2021-05-26 04:32:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:32:44.79+03	2021-05-26 04:32:44.797+03	
ef25962e-40a5-75be-b14e-97b3341d7ec1	2021-05-26 04:33:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:33:04.79+03	2021-05-26 04:33:04.797+03	
a934401d-958c-b1b8-0be2-4a96f69959b1	2021-05-26 04:33:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:33:24.79+03	2021-05-26 04:33:24.796+03	
6e1ca087-2908-e43d-8963-62148d5e744e	2021-05-26 04:33:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:33:44.79+03	2021-05-26 04:33:44.796+03	
6ee66db2-cc1a-fc94-862f-8ec075921f6f	2021-05-26 04:34:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:34:04.79+03	2021-05-26 04:34:04.796+03	
08dee93c-cd7f-e6c2-3663-74220530d887	2021-05-26 04:34:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:34:24.79+03	2021-05-26 04:34:24.796+03	
65977a2e-0194-98f7-1f5a-527c4d3800d0	2021-05-26 04:34:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:34:44.79+03	2021-05-26 04:34:44.796+03	
ff5b37c1-110d-37b2-10dc-8b8da94e4615	2021-05-26 04:35:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:35:04.79+03	2021-05-26 04:35:04.796+03	
f49dee74-6358-192e-a170-453a97ae7574	2021-05-26 04:35:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:35:24.79+03	2021-05-26 04:35:24.797+03	
a6902106-c910-5273-0da3-4cff9683e266	2021-05-26 04:35:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:35:44.79+03	2021-05-26 04:35:44.796+03	
9e14b26a-dd80-cd0d-5f1d-1671a95957b5	2021-05-26 04:36:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:36:04.79+03	2021-05-26 04:36:04.796+03	
942c598f-e9f6-231f-4e6b-fc621f4a92fc	2021-05-26 04:36:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:36:24.79+03	2021-05-26 04:36:24.804+03	
6ab123f4-d7b2-b173-77b6-0fb02267a11d	2021-05-26 04:36:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:36:44.79+03	2021-05-26 04:36:44.797+03	
0981b48b-af5c-727f-8ea0-547a364278a4	2021-05-26 04:37:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:37:04.79+03	2021-05-26 04:37:04.796+03	
8c7332d0-8683-7a6f-fe47-ac49aa1beee5	2021-05-26 04:37:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:37:24.79+03	2021-05-26 04:37:24.796+03	
e3f70848-c00d-75d9-295d-811a6f30eff7	2021-05-26 04:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:37:44.79+03	2021-05-26 04:37:44.797+03	
c9c62d69-5b9a-1d7f-0dae-dea8a0e8d0db	2021-05-26 04:38:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:38:04.79+03	2021-05-26 04:38:04.796+03	
0c3ab681-ffea-a674-22f9-34ea710d80c6	2021-05-26 04:38:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:38:24.79+03	2021-05-26 04:38:24.796+03	
88eeef6d-6b6f-1133-8ecb-d8a258f63546	2021-05-26 04:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:38:44.79+03	2021-05-26 04:38:44.796+03	
7c57bc5b-ebc1-a8fc-4cba-631a60e3cccb	2021-05-26 04:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:39:04.79+03	2021-05-26 04:39:04.796+03	
06351250-61ea-2995-6a07-124bbe380679	2021-05-26 04:39:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:39:24.79+03	2021-05-26 04:39:24.796+03	
f5ccf4d8-512a-6113-085d-a53b88fc72ea	2021-05-26 04:39:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:39:44.79+03	2021-05-26 04:39:44.797+03	
304acfbc-c0bc-0c29-5342-76cfeda317b7	2021-05-26 04:40:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 04:40:00.79+03	2021-05-26 04:40:00.794+03	ERROR
50369328-7f0f-334c-0a00-edca44ed70c8	2021-05-26 04:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:40:14.79+03	2021-05-26 04:40:14.796+03	
e8849bde-886d-d633-a85d-20ace2542bf6	2021-05-26 04:40:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:40:34.79+03	2021-05-26 04:40:34.798+03	
68db0c34-2b8b-dd5f-5a06-9ffec979848b	2021-05-26 04:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:40:54.79+03	2021-05-26 04:40:54.796+03	
0fad701c-d9f7-ec2b-55e6-669698b354f7	2021-05-26 04:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:41:14.79+03	2021-05-26 04:41:14.796+03	
2271fd2b-c6f6-27da-051b-b8877ba7593f	2021-05-26 04:41:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:41:34.79+03	2021-05-26 04:41:34.796+03	
2414c51b-6b1a-3b6d-5ee5-feb0d164edbf	2021-05-26 04:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:41:54.79+03	2021-05-26 04:41:54.797+03	
be28507f-2561-ac2e-56c4-c69eea4c774d	2021-05-26 04:42:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:42:14.79+03	2021-05-26 04:42:14.797+03	
e9b2c842-595a-570d-cdb3-ce84c4a5a753	2021-05-26 04:42:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:42:34.79+03	2021-05-26 04:42:34.797+03	
195af579-57b7-15a0-a49a-7cde45be918a	2021-05-26 04:42:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:42:54.79+03	2021-05-26 04:42:54.797+03	
9b0288e1-27b7-6ba3-537b-7e5ec52c954d	2021-05-26 04:43:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:43:14.79+03	2021-05-26 04:43:14.81+03	
2c61531e-8f74-fe90-1232-64adb570a30f	2021-05-26 04:43:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:43:34.79+03	2021-05-26 04:43:34.796+03	
d7561c01-1baa-8033-339a-f3e6b2a0d2cb	2021-05-26 04:43:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:43:54.79+03	2021-05-26 04:43:54.799+03	
0a88c54d-1f5f-09c5-85e9-c70c673e6066	2021-05-26 04:44:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:44:14.79+03	2021-05-26 04:44:14.796+03	
9f5fea1f-50f3-805e-4302-aaf4f2d36da9	2021-05-26 04:44:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:44:34.79+03	2021-05-26 04:44:34.796+03	
ff3bb496-e352-ef44-61e6-7dc1c7b765a6	2021-05-26 04:44:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:44:54.79+03	2021-05-26 04:44:54.796+03	
646c030d-73ff-2557-68f9-9acbb9a0e249	2021-05-26 04:45:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:45:14.79+03	2021-05-26 04:45:14.796+03	
680b8139-8e18-329e-cec1-6ddf767cb869	2021-05-26 04:45:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:45:34.79+03	2021-05-26 04:45:34.796+03	
1726f9a5-ae86-dd3f-2a7d-f726b1ff745c	2021-05-26 04:45:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:45:54.79+03	2021-05-26 04:45:54.796+03	
ebfc7a0f-9a6e-d3eb-e4c2-929c806d82cb	2021-05-26 04:46:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:46:14.79+03	2021-05-26 04:46:14.796+03	
de1fd765-f8f1-ad18-93e4-ae3418fbdfff	2021-05-26 04:46:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:46:34.79+03	2021-05-26 04:46:34.797+03	
d97f0a66-0548-4c77-2d60-7111972f7acd	2021-05-26 04:46:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:46:54.79+03	2021-05-26 04:46:54.796+03	
5911b835-50bf-ed70-7096-b5815d1f495e	2021-05-26 04:47:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:47:14.79+03	2021-05-26 04:47:14.796+03	
a9f8505e-3be3-5295-552f-7ab18b6289a4	2021-05-26 04:47:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:47:34.79+03	2021-05-26 04:47:34.811+03	
a43bac52-336b-5ecd-c62e-bd69daf0ddc0	2021-05-26 04:47:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:47:54.79+03	2021-05-26 04:47:54.796+03	
ef74d930-ed3a-eac1-10e9-63f929f32845	2021-05-26 04:48:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:48:14.79+03	2021-05-26 04:48:14.796+03	
f438b209-0c28-955c-8aee-c7b668a8d196	2021-05-26 04:48:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:48:34.79+03	2021-05-26 04:48:34.797+03	
1a16874a-08bb-f632-8c0e-b9756f041225	2021-05-26 04:48:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:48:54.79+03	2021-05-26 04:48:54.796+03	
bb217425-f046-03ba-2583-473774debbc5	2021-05-26 04:49:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:49:14.79+03	2021-05-26 04:49:14.796+03	
1e6d9b2f-7c96-d847-da82-e470a4f94d48	2021-05-26 04:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:49:34.79+03	2021-05-26 04:49:34.796+03	
d8be0493-ff75-3334-ab85-6b12c9fd8aaa	2021-05-26 04:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:49:54.79+03	2021-05-26 04:49:54.804+03	
3bd869f2-6a3a-7547-15ab-c5986ad36dd2	2021-05-26 04:50:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:50:04.79+03	2021-05-26 04:50:04.796+03	
4d80c37b-bc1c-ba1b-f2f1-9a2ae447d6cd	2021-05-25 15:39:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:39:32.79+03	2021-05-25 15:39:32.797+03	
a4cdbc2d-ddf7-73d8-5ef8-dd2cc83f5fda	2021-05-25 15:39:42.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:39:42.793+03	2021-05-25 15:39:42.848+03	
67f3732b-7e91-1334-f431-47b6c7298336	2021-05-25 15:39:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:39:53.79+03	2021-05-25 15:39:53.8+03	
39337792-76ec-bec7-9176-1ae5f47ab43d	2021-05-25 15:40:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 15:40:00.791+03	2021-05-25 15:40:00.796+03	ERROR
dff8d033-255b-0530-eb8d-87246ceb1827	2021-05-25 15:40:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:40:13.79+03	2021-05-25 15:40:13.796+03	
564b145d-df04-45a7-3760-383174b5394c	2021-05-25 15:40:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:40:23.79+03	2021-05-25 15:40:23.797+03	
002f7852-0f15-8cca-60d2-227599097c4f	2021-05-25 15:40:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:40:43.79+03	2021-05-25 15:40:43.796+03	
febec57d-5441-1923-baba-f4b9e1355ca0	2021-05-25 15:41:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:41:03.79+03	2021-05-25 15:41:03.801+03	
b1029343-87f7-c13d-5355-71368bf584bc	2021-05-25 15:41:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:41:23.79+03	2021-05-25 15:41:23.796+03	
abb07160-b445-ea42-b380-9393eb79a46c	2021-05-25 15:41:43.797	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:41:43.796+03	2021-05-25 15:41:43.869+03	
6edbeb22-cf5d-fdf4-0f72-aaf07f37283e	2021-05-25 15:41:54.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:41:54.791+03	2021-05-25 15:41:54.841+03	
d63be922-6103-9059-37fc-544bdeb90f27	2021-05-25 15:42:05.796	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:42:05.796+03	2021-05-25 15:42:05.817+03	
af9f8b50-488e-459e-5cac-2bc3fd3838ee	2021-05-25 15:42:16.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:42:16.793+03	2021-05-25 15:42:16.811+03	
f30c85f6-56ee-29ab-c9ea-7e1caa2f24e4	2021-05-25 15:42:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:42:27.79+03	2021-05-25 15:42:27.836+03	
96ebeb68-c9a8-3eac-78b6-7ae56d4ce488	2021-05-25 15:42:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:42:37.79+03	2021-05-25 15:42:37.798+03	
8b9609f7-c38e-0a4f-ef86-fa47d4668f03	2021-05-25 15:42:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:42:47.79+03	2021-05-25 15:42:47.798+03	
31c6cca6-bd21-1bf6-1853-37a1cebcd1fb	2021-05-25 15:42:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:42:57.79+03	2021-05-25 15:42:57.798+03	
7e539ce7-2e0b-54f2-65c8-87440e9cdd74	2021-05-25 15:43:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:43:07.79+03	2021-05-25 15:43:07.799+03	
2d26ad1a-ed85-f442-242c-1cf66c3ac9b4	2021-05-25 15:43:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:43:17.79+03	2021-05-25 15:43:17.803+03	
14de5846-7f92-4cec-115b-51d2cbf6f3a7	2021-05-25 15:43:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:43:27.79+03	2021-05-25 15:43:27.797+03	
9d65ca1b-578f-7693-7e8a-5fe05bdf8188	2021-05-25 15:43:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:43:37.79+03	2021-05-25 15:43:37.799+03	
3f155be2-9729-60ed-8cfe-327b3411ca04	2021-05-25 15:43:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:43:47.79+03	2021-05-25 15:43:47.797+03	
5c654c0f-a815-60f1-8086-693c3c1380d2	2021-05-25 15:43:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:43:57.79+03	2021-05-25 15:43:57.8+03	
3faae634-5742-6a7e-c969-4886a9361f12	2021-05-25 15:44:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:44:07.79+03	2021-05-25 15:44:07.798+03	
1789fd1b-20ea-51b4-dc6d-f795e7a2f182	2021-05-25 15:44:17.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:44:17.793+03	2021-05-25 15:44:17.846+03	
286b6a70-0995-ac8c-e986-b1421654f812	2021-05-25 15:44:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:44:28.79+03	2021-05-25 15:44:28.812+03	
c3b9a1c1-a9a5-7e5a-ccc8-8195189dc3b4	2021-05-25 15:44:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:44:38.79+03	2021-05-25 15:44:38.805+03	
7bacc17b-76d8-c4ba-2ce8-914420912aa6	2021-05-25 15:44:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:44:48.79+03	2021-05-25 15:44:48.797+03	
33311985-6535-52a1-9565-d9a6b07df213	2021-05-25 15:44:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:44:58.79+03	2021-05-25 15:44:58.798+03	
b24e0241-f797-070b-1622-c0ce3b368576	2021-05-25 15:45:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:45:08.79+03	2021-05-25 15:45:08.797+03	
da08cbe6-a3b6-8896-5f81-fe453a770ae5	2021-05-25 15:45:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:45:18.79+03	2021-05-25 15:45:18.81+03	
a1ab8057-dadb-2ec6-db7f-1ea46da4a487	2021-05-25 15:45:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:45:28.79+03	2021-05-25 15:45:28.799+03	
65b99887-33e6-33ff-4f8c-130c317e3401	2021-05-25 15:45:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:45:38.79+03	2021-05-25 15:45:38.799+03	
69f7307c-a320-4eb0-6818-5672429481fc	2021-05-25 15:45:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:45:48.79+03	2021-05-25 15:45:48.797+03	
29236450-565b-84e9-4b0e-2bfb94c77e74	2021-05-25 15:45:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:45:58.79+03	2021-05-25 15:45:58.814+03	
f5a14667-4073-5c35-fc9c-55fe87f8c0a4	2021-05-25 15:46:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:46:08.79+03	2021-05-25 15:46:08.797+03	
5d2f275e-be37-954e-6a26-266bad827ade	2021-05-25 15:46:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:46:18.79+03	2021-05-25 15:46:18.797+03	
48c0f2bb-b2f5-68b6-221c-8a0594cc6b8a	2021-05-25 15:46:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:46:28.79+03	2021-05-25 15:46:28.797+03	
19c22f8c-010f-e8b0-42fc-d89fbfb7519d	2021-05-25 15:46:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:46:38.79+03	2021-05-25 15:46:38.798+03	
924f11af-9a62-0f73-1300-505eb3f5d68d	2021-05-25 15:46:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:46:48.79+03	2021-05-25 15:46:48.796+03	
18fb5fac-c4d5-85bb-8d69-3d1423efbe5a	2021-05-25 15:46:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:46:58.79+03	2021-05-25 15:46:58.808+03	
cffb3451-f2ce-332c-56cd-6f37f60bebed	2021-05-25 15:47:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:47:08.79+03	2021-05-25 15:47:08.797+03	
0ef73a65-53e8-1ad6-bc50-db742c3b246f	2021-05-25 15:47:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:47:18.79+03	2021-05-25 15:47:18.797+03	
e9169511-e438-bef7-231c-76f0b4822955	2021-05-25 15:47:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:47:28.79+03	2021-05-25 15:47:28.796+03	
1c758143-653c-0dfa-9893-32a1729231ec	2021-05-25 15:47:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:47:38.79+03	2021-05-25 15:47:38.797+03	
cd1a5d4c-4cd7-d1b5-af41-e066e1fcaec1	2021-05-25 15:47:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:47:48.79+03	2021-05-25 15:47:48.811+03	
9c2c4dd1-6538-1ac0-983f-986d863fc050	2021-05-25 15:47:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:47:58.79+03	2021-05-25 15:47:58.797+03	
3ee68db6-2cb3-4865-5b71-079b974381ab	2021-05-25 15:48:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:48:08.79+03	2021-05-25 15:48:08.797+03	
31b55dbe-c120-9322-b48f-5f41ecefe24e	2021-05-25 15:48:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:48:18.79+03	2021-05-25 15:48:18.797+03	
47f8c7d1-d327-9f17-5edd-f61b4cf4d5f1	2021-05-25 15:48:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:48:28.79+03	2021-05-25 15:48:28.797+03	
0faccf61-0b39-a23a-a49e-76b4bb722add	2021-05-25 15:48:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:48:38.79+03	2021-05-25 15:48:38.797+03	
ebb088ec-ba02-3abb-e5c4-e25c741ed460	2021-05-25 15:48:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:48:48.79+03	2021-05-25 15:48:48.798+03	
f5548c2c-4889-8861-f967-9b630637410d	2021-05-25 15:48:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:48:58.79+03	2021-05-25 15:48:58.804+03	
7ca5959b-7e22-cbda-fa9b-ff42193b2c03	2021-05-25 15:49:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:49:08.79+03	2021-05-25 15:49:08.796+03	
2a66405d-18c2-bc59-910b-1e68ec0ea1d0	2021-05-25 15:49:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:49:18.79+03	2021-05-25 15:49:18.797+03	
54465275-fc30-4e93-1aa8-2842902fbda2	2021-05-25 15:49:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:49:28.79+03	2021-05-25 15:49:28.797+03	
31b1a374-f85e-6056-271b-41bf8287dad6	2021-05-25 15:49:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:49:38.79+03	2021-05-25 15:49:38.797+03	
ba293603-3541-43b2-88ad-243b1e566cf1	2021-05-25 15:49:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:49:48.79+03	2021-05-25 15:49:48.796+03	
9069a2bf-2682-a617-ebbb-ff00bb0f0776	2021-05-25 15:49:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:49:58.79+03	2021-05-25 15:49:58.797+03	
4f258c03-9acc-d240-d801-cfe7d6e0bef6	2021-05-25 15:50:00.793	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 15:50:00.792+03	2021-05-25 15:50:00.816+03	ERROR
40340b4b-f9f6-9f80-3c64-07cf2ff929bf	2021-05-25 15:50:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:50:08.79+03	2021-05-25 15:50:08.799+03	
e89a5e1b-0b78-ba02-4876-33e0b10e9a5e	2021-05-25 15:50:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:50:18.79+03	2021-05-25 15:50:18.797+03	
d652a10c-99c5-9dbd-1cba-234b493edaa7	2021-05-25 15:50:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:50:28.79+03	2021-05-25 15:50:28.798+03	
3b78b062-9734-155c-2143-47dd0306f243	2021-05-25 15:50:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:50:38.79+03	2021-05-25 15:50:38.798+03	
f5dfb3af-264a-cf04-a589-43c6b8fd0050	2021-05-25 15:50:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:50:58.79+03	2021-05-25 15:50:58.797+03	
8a9523ca-f1c2-956a-a7e4-0fe6fb634373	2021-05-25 15:51:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:51:18.79+03	2021-05-25 15:51:18.799+03	
e7b0ff19-9ff7-18ca-e877-a5e03918773b	2021-05-25 15:51:28.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:51:28.79+03	2021-05-25 15:51:28.799+03	
3cb98251-e1be-bad0-00d4-402ccb8a033a	2021-05-25 15:51:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:51:38.79+03	2021-05-25 15:51:38.797+03	
f8a757b7-e002-b507-cd2c-5c22e5610b73	2021-05-25 15:51:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:51:48.79+03	2021-05-25 15:51:48.797+03	
a26c229a-e5af-eac9-fd07-61df141f1737	2021-05-25 15:52:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:52:08.79+03	2021-05-25 15:52:08.801+03	
ead0872c-7e08-11f5-b976-13bf4079da8e	2021-05-25 15:52:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:52:28.79+03	2021-05-25 15:52:28.797+03	
380b435d-8769-e553-09e6-72f8abf87f78	2021-05-25 15:52:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:52:38.79+03	2021-05-25 15:52:38.798+03	
b53160ab-8a7c-abe4-f233-f9ddca45b19c	2021-05-25 15:53:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:53:49.791+03	2021-05-25 15:53:49.809+03	
60a83743-6c9e-3d76-cbcb-1d761a7a29a8	2021-05-25 15:54:10.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:54:10.791+03	2021-05-25 15:54:10.798+03	
21aa945c-1d97-34d7-0e8c-e6baa818bdeb	2021-05-25 15:54:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:54:31.79+03	2021-05-25 15:54:31.809+03	
af0be2a5-5dfb-15f3-9af8-735c83d71bfa	2021-05-25 15:54:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:54:41.79+03	2021-05-25 15:54:41.798+03	
58913638-090c-d596-404a-6c06c29642bd	2021-05-25 15:54:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:54:51.79+03	2021-05-25 15:54:51.797+03	
a3d0959a-da33-9994-dd85-6f3996e65d3f	2021-05-25 15:55:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:55:11.79+03	2021-05-25 15:55:11.798+03	
a5372275-b04d-042f-2bde-e33e3d27fd59	2021-05-25 15:55:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:55:31.79+03	2021-05-25 15:55:31.797+03	
5879ac8b-41e7-d629-f259-b916fa999aa2	2021-05-25 15:55:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:55:51.79+03	2021-05-25 15:55:51.797+03	
eef4ef1b-9616-e3ec-58e9-eb860aa01f06	2021-05-25 15:56:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:56:11.79+03	2021-05-25 15:56:11.797+03	
6c6088ee-d1f4-2dc9-bfd3-cced46ec0f12	2021-05-25 15:56:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:56:41.79+03	2021-05-25 15:56:41.796+03	
b7bf4744-353e-d9f9-74df-730b28c1bc1c	2021-05-25 15:56:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:56:51.79+03	2021-05-25 15:56:51.797+03	
75e386b9-7c5e-e54f-ecb6-01ba8ddf45b8	2021-05-25 15:57:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:57:42.79+03	2021-05-25 15:57:42.806+03	
32c408ce-fcb9-a056-5cf8-0930ed404d96	2021-05-25 15:57:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:57:52.79+03	2021-05-25 15:57:52.798+03	
92133233-9d2b-69a1-7559-c2d019122d42	2021-05-25 15:58:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:58:12.79+03	2021-05-25 15:58:12.797+03	
23736b1f-3af8-89b0-bc5d-6226acb88d9c	2021-05-25 15:58:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:58:32.79+03	2021-05-25 15:58:32.797+03	
7cec7bcf-b43c-57b4-b16a-c047c154a0c1	2021-05-25 15:58:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:58:52.79+03	2021-05-25 15:58:52.797+03	
bd20d447-2f83-c1f6-d14b-b981f2c44ae3	2021-05-25 15:59:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:59:23.79+03	2021-05-25 15:59:23.81+03	
85eb1eb0-9ff5-0da4-38ae-fe8886be0782	2021-05-25 15:59:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:59:33.79+03	2021-05-25 15:59:33.796+03	
feff316e-fcd1-fc2a-2b87-9dc6bfdf4fe4	2021-05-25 15:59:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:59:43.79+03	2021-05-25 15:59:43.798+03	
898ac4d8-59bb-7749-bbc0-ccbeb9d1c716	2021-05-25 15:59:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:59:53.79+03	2021-05-25 15:59:53.797+03	
78fbb808-1d26-88f6-31f7-0043e06d41c8	2021-05-25 16:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 16:00:00.79+03	2021-05-25 16:00:00.795+03	ERROR
3068217f-9ade-3f53-15bd-78ce9af178b7	2021-05-25 16:00:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:00:13.79+03	2021-05-25 16:00:13.796+03	
0d953b6c-86f3-8d27-29ac-74fda6e71af2	2021-05-25 16:00:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:00:33.79+03	2021-05-25 16:00:33.797+03	
e5a16c38-5706-6c54-b988-3df49760a791	2021-05-25 16:00:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:00:43.79+03	2021-05-25 16:00:43.796+03	
0bf25117-410a-21a1-d810-76be2e6b54e3	2021-05-25 16:01:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:01:03.79+03	2021-05-25 16:01:03.796+03	
e72f4ed0-4955-4985-25f2-973d8efdc3a7	2021-05-25 16:01:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:01:23.79+03	2021-05-25 16:01:23.796+03	
05afadc2-5d6d-9068-34ef-588eb3f2e1a4	2021-05-25 16:01:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:01:43.79+03	2021-05-25 16:01:43.798+03	
b03e0aa0-0820-8faf-ec29-de237de92ef3	2021-05-25 16:02:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:02:13.79+03	2021-05-25 16:02:13.797+03	
3458f436-7aef-c5a1-766d-17f37f257969	2021-05-25 16:02:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:02:33.79+03	2021-05-25 16:02:33.799+03	
42e3b4fb-906a-4032-db50-7dddb5c508b0	2021-05-25 16:02:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:02:43.79+03	2021-05-25 16:02:43.796+03	
b0d316f9-9d25-21b8-7b67-64a1701f3c35	2021-05-25 16:02:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:02:53.79+03	2021-05-25 16:02:53.797+03	
d71f043c-b0ef-9260-7596-3fe4b3235001	2021-05-25 16:03:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:03:23.79+03	2021-05-25 16:03:23.797+03	
7135c014-c1cd-8ee2-bf0a-ded0158840e5	2021-05-25 16:03:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:03:43.79+03	2021-05-25 16:03:43.798+03	
80cefe7c-ecdb-f1ab-732c-b54b508effec	2021-05-25 16:04:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:04:03.79+03	2021-05-25 16:04:03.797+03	
9400c13b-6c0b-124e-d338-0b82bd1a523d	2021-05-25 16:04:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:04:23.79+03	2021-05-25 16:04:23.797+03	
789fcb77-3c60-c005-3956-1404fd2606a3	2021-05-25 16:04:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:04:33.79+03	2021-05-25 16:04:33.797+03	
0160637d-88f2-efbe-0863-40933c9e378d	2021-05-25 16:04:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:04:43.79+03	2021-05-25 16:04:43.797+03	
e921e501-5535-de8b-24ad-52a97e1379fe	2021-05-25 16:05:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:05:03.79+03	2021-05-25 16:05:03.797+03	
44d4a756-d66d-8418-5040-81675a63bb67	2021-05-25 16:05:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:05:23.79+03	2021-05-25 16:05:23.807+03	
24687aca-91c5-0806-5972-7d924ab217d4	2021-05-25 16:05:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:05:43.79+03	2021-05-25 16:05:43.797+03	
8c746ba5-3dad-f048-ccdc-ef53f8720893	2021-05-25 16:06:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:06:03.79+03	2021-05-25 16:06:03.797+03	
04bed127-1265-4aa3-1a03-ad9a44ae4291	2021-05-25 16:06:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:06:33.79+03	2021-05-25 16:06:33.796+03	
cad7f497-d8bc-3538-4674-88e5523cddd7	2021-05-25 16:06:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:06:53.79+03	2021-05-25 16:06:53.797+03	
f4c8c673-c7a9-2e1f-5e03-ae52253f27e0	2021-05-25 16:07:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:07:13.79+03	2021-05-25 16:07:13.798+03	
28b8167f-4bb3-ecef-9bb4-a3b20b6d2340	2021-05-25 16:07:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:07:43.79+03	2021-05-25 16:07:43.797+03	
38a45d91-7815-4562-c7ce-5688ee38cb69	2021-05-25 16:08:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:08:03.79+03	2021-05-25 16:08:03.797+03	
a6598987-c428-93cc-e5fd-259702bb84cf	2021-05-25 16:08:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:08:23.79+03	2021-05-25 16:08:23.803+03	
5c2b844b-a448-5bc4-8e8f-bdd028715c00	2021-05-25 16:08:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:08:33.79+03	2021-05-25 16:08:33.798+03	
20ca7afa-1ebc-e285-0811-0198ee4cfc34	2021-05-25 16:08:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:08:43.79+03	2021-05-25 16:08:43.797+03	
a87991c6-e4fe-7830-7d39-c20339cbadde	2021-05-25 16:09:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:09:23.79+03	2021-05-25 16:09:23.797+03	
32cd3ae1-2e2a-4404-3f44-188bcbd6058d	2021-05-25 16:09:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:09:53.79+03	2021-05-25 16:09:53.8+03	
e62e316c-8c9d-0ea1-351c-5705c6fbb817	2021-05-25 16:10:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:10:03.79+03	2021-05-25 16:10:03.802+03	
fb21ef92-9f42-a534-d934-5957fafeaf85	2021-05-25 16:10:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:10:23.79+03	2021-05-25 16:10:23.8+03	
1faf96c5-03a2-dc08-f716-5f7d708bd9f8	2021-05-25 16:10:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:10:43.79+03	2021-05-25 16:10:43.81+03	
f3c90e1f-d90e-2d51-b479-aedd44b7962c	2021-05-25 15:50:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:50:48.79+03	2021-05-25 15:50:48.798+03	
a9f4b6a4-52e5-9d5c-c706-a63623745402	2021-05-25 15:51:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:51:08.79+03	2021-05-25 15:51:08.799+03	
7efc5511-8d12-a2d1-bfdb-e270f4fc9cc3	2021-05-25 15:51:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:51:58.79+03	2021-05-25 15:51:58.8+03	
a5570144-3df2-94d3-82f2-7865c734cdba	2021-05-25 15:52:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:52:18.79+03	2021-05-25 15:52:18.799+03	
015a66d6-3956-c2b0-19b3-e67a58ab78df	2021-05-25 15:52:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:52:48.791+03	2021-05-25 15:52:48.798+03	
ac1951f4-444d-3de9-f414-1d7c4fec5e36	2021-05-25 15:52:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:52:58.791+03	2021-05-25 15:52:58.828+03	
4fc73bb8-b2ae-9339-a3f3-bbde2bce6b25	2021-05-25 15:53:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:53:09.79+03	2021-05-25 15:53:09.821+03	
f310571d-cfa1-fb7a-49d3-a47ebe00adf6	2021-05-25 15:53:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:53:19.79+03	2021-05-25 15:53:19.818+03	
8486d097-e0fa-c9d2-cd38-a0c51ba6ecf2	2021-05-25 15:53:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:53:29.79+03	2021-05-25 15:53:29.802+03	
62621c08-6a07-5df5-6e12-688ed8678b91	2021-05-25 15:53:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:53:39.79+03	2021-05-25 15:53:39.807+03	
e16ad10c-bd19-2eef-b8ff-4d39014d78e4	2021-05-25 15:53:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:53:59.791+03	2021-05-25 15:53:59.814+03	
e05a6987-9bec-6f29-e65d-ec7ff595d6a0	2021-05-25 15:54:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:54:21.79+03	2021-05-25 15:54:21.797+03	
e15806bb-2cd8-6352-595a-dc5a73500a79	2021-05-25 15:55:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:55:01.79+03	2021-05-25 15:55:01.797+03	
159e43e7-b85c-d1f0-2214-5606b3d9f008	2021-05-25 15:55:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:55:21.79+03	2021-05-25 15:55:21.798+03	
e72bcc89-2eb9-535e-3076-5a303246b0e9	2021-05-25 15:55:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:55:41.79+03	2021-05-25 15:55:41.797+03	
5528af16-0cac-91b8-19e9-ac7dbea1f3c6	2021-05-25 15:56:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:56:01.79+03	2021-05-25 15:56:01.797+03	
e12daba7-c633-eff9-0023-42b6ce990237	2021-05-25 15:56:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:56:21.79+03	2021-05-25 15:56:21.802+03	
0687c408-bd0a-12cb-c34b-6e9dc2006c7f	2021-05-25 15:56:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:56:31.79+03	2021-05-25 15:56:31.797+03	
a3405017-5e0f-ba3e-44f0-ea7dc50f7d03	2021-05-25 15:57:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:57:01.79+03	2021-05-25 15:57:01.797+03	
dee3d01f-f12f-d291-312e-824a7a44cee7	2021-05-25 15:57:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:57:11.791+03	2021-05-25 15:57:11.827+03	
d58c4526-f278-db4b-9132-6d66b0a149c3	2021-05-25 15:57:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:57:22.79+03	2021-05-25 15:57:22.824+03	
d740e03e-0aba-f007-9543-3226fcada8f4	2021-05-25 15:57:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:57:32.79+03	2021-05-25 15:57:32.798+03	
1f1f3328-3632-2b06-3be5-029be062d88c	2021-05-25 15:58:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:58:02.79+03	2021-05-25 15:58:02.797+03	
a4a49c15-848e-20a9-ce46-1c3808eb24e8	2021-05-25 15:58:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:58:22.79+03	2021-05-25 15:58:22.797+03	
2a3a61ad-58e6-d8ff-e716-8ef0c311624d	2021-05-25 15:58:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:58:42.79+03	2021-05-25 15:58:42.798+03	
d60e9da5-c9b2-cb03-1abc-d0d604fa405a	2021-05-25 15:59:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:59:02.79+03	2021-05-25 15:59:02.8+03	
2b3b8231-63ea-7b68-3a59-a30a0f41f7cb	2021-05-25 15:59:12.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 15:59:12.792+03	2021-05-25 15:59:12.813+03	
53f41e8a-d20d-767d-6aa5-b5c786f0d46b	2021-05-25 16:00:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:00:03.79+03	2021-05-25 16:00:03.798+03	
c7944809-a7db-4707-ce15-7ed4cdfff0ef	2021-05-25 16:00:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:00:23.79+03	2021-05-25 16:00:23.812+03	
1a082016-d99e-f200-13bc-9977024daf37	2021-05-25 16:00:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:00:53.79+03	2021-05-25 16:00:53.797+03	
760747b3-d6a6-72b5-4926-d7d8150b0243	2021-05-25 16:01:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:01:13.79+03	2021-05-25 16:01:13.804+03	
30389a12-923f-5d0e-552d-78565a9cc6a1	2021-05-25 16:01:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:01:33.79+03	2021-05-25 16:01:33.796+03	
f77dc7c5-a023-427d-ef14-d09972306051	2021-05-25 16:01:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:01:53.79+03	2021-05-25 16:01:53.804+03	
04563921-3dec-4454-dc3e-05818bd524c8	2021-05-25 16:02:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:02:03.79+03	2021-05-25 16:02:03.798+03	
8e532e7d-993e-f61b-61f9-c99dab44e896	2021-05-25 16:02:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:02:23.79+03	2021-05-25 16:02:23.804+03	
6ef6a92b-ffe3-9c2e-0ae1-acc9791d0f8a	2021-05-25 16:03:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:03:03.79+03	2021-05-25 16:03:03.811+03	
e42b99a9-6b4b-45e8-ddc4-674839e9157c	2021-05-25 16:03:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:03:13.79+03	2021-05-25 16:03:13.797+03	
ab27a50c-3b2f-ea59-59bf-22ddffe5d033	2021-05-25 16:03:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:03:33.79+03	2021-05-25 16:03:33.796+03	
7738b03e-d22b-3602-e3d7-6a04a3b40c5f	2021-05-25 16:03:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:03:53.79+03	2021-05-25 16:03:53.8+03	
c7f873df-c26f-0bff-8881-436c7998d421	2021-05-25 16:04:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:04:13.79+03	2021-05-25 16:04:13.797+03	
d6aced74-1f67-b86f-dbf2-1c604e465795	2021-05-25 16:04:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:04:53.79+03	2021-05-25 16:04:53.803+03	
db5870b2-417d-a932-b1fb-f6aa22cfed90	2021-05-25 16:05:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:05:13.79+03	2021-05-25 16:05:13.797+03	
f27308bd-6df1-dd9d-3f6c-2180e81d3b10	2021-05-25 16:05:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:05:33.79+03	2021-05-25 16:05:33.797+03	
3846a505-a9ff-f76a-4ccb-1fb1bc0e5ec5	2021-05-25 16:05:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:05:53.79+03	2021-05-25 16:05:53.797+03	
bc539fb2-4309-8e42-65c6-f9b841854fcf	2021-05-25 16:06:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:06:13.79+03	2021-05-25 16:06:13.797+03	
5e7093fa-5881-e20e-02c7-f5c2f5949ce3	2021-05-25 16:06:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:06:23.79+03	2021-05-25 16:06:23.805+03	
3325edc1-c75e-41aa-f2f8-92eb1d6a9f1c	2021-05-25 16:06:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:06:43.79+03	2021-05-25 16:06:43.797+03	
e3c14617-e362-007d-b181-1d90fb9afa9e	2021-05-25 16:07:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:07:03.79+03	2021-05-25 16:07:03.797+03	
78ba4b48-630c-14a4-e8b8-356e66dbc860	2021-05-25 16:07:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:07:23.79+03	2021-05-25 16:07:23.806+03	
0f894069-9d5e-2672-33d4-b177e64e2ae2	2021-05-25 16:07:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:07:33.79+03	2021-05-25 16:07:33.797+03	
55732a71-689e-e2b2-a45d-85e6fd5dc9aa	2021-05-25 16:07:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:07:53.79+03	2021-05-25 16:07:53.799+03	
3bc6cca6-5c53-f566-7774-80f0e2ed0592	2021-05-25 16:08:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:08:13.79+03	2021-05-25 16:08:13.796+03	
f6d3c64f-d973-f3e0-80e9-aed542ee629b	2021-05-25 16:08:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:08:53.79+03	2021-05-25 16:08:53.799+03	
38ef2ae8-acaf-9b43-0ddc-13edb8947890	2021-05-25 16:09:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:09:03.79+03	2021-05-25 16:09:03.813+03	
a5b6efad-d9d4-965e-b6b2-c895db33b2c9	2021-05-25 16:09:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:09:13.79+03	2021-05-25 16:09:13.797+03	
434fc692-a4e0-e0d5-99d2-e6b63a02a7dd	2021-05-25 16:09:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:09:33.79+03	2021-05-25 16:09:33.797+03	
77897a47-84ca-01de-5abc-482392b3ff8d	2021-05-25 16:09:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:09:43.79+03	2021-05-25 16:09:43.813+03	
961e82af-5b4a-3dfe-ee59-eea23c7825d0	2021-05-25 16:10:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 16:10:00.79+03	2021-05-25 16:10:00.801+03	ERROR
ac2faee8-9d21-822c-2835-f2337754893d	2021-05-25 16:10:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:10:13.79+03	2021-05-25 16:10:13.802+03	
6d39c329-6e46-0f6c-1743-23f85f4d97eb	2021-05-25 16:10:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:10:33.79+03	2021-05-25 16:10:33.807+03	
ae8f974c-a1f4-2eef-3afe-acdfd19e091d	2021-05-25 16:10:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:10:53.79+03	2021-05-25 16:10:53.806+03	
770bb3ff-c4cf-5086-f449-4ac94c23e15a	2021-05-25 16:11:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:11:23.79+03	2021-05-25 16:11:23.798+03	
44fa2e2c-156b-fd8c-1a0f-bc9cf50d5d20	2021-05-25 16:11:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:11:33.79+03	2021-05-25 16:11:33.817+03	
4aa1afef-b459-87b6-3012-a9ef955586b4	2021-05-25 16:11:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:11:03.79+03	2021-05-25 16:11:03.808+03	
4ec50ba8-e42e-eebe-39c4-866a2063c104	2021-05-25 16:11:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:11:13.79+03	2021-05-25 16:11:13.8+03	
e4fddafc-7425-55ad-e686-5b65d36375e6	2021-05-25 16:11:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:11:43.79+03	2021-05-25 16:11:43.799+03	
0df699f4-ab86-e44f-e7cb-187e906aff28	2021-05-25 16:12:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:12:03.791+03	2021-05-25 16:12:03.798+03	
6dc375ba-6ce8-6c82-1abf-a03123f4d58a	2021-05-25 16:12:35.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:12:35.79+03	2021-05-25 16:12:35.797+03	
ec7868f8-b531-760a-fef8-af3e7beeee3d	2021-05-25 16:12:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:12:45.79+03	2021-05-25 16:12:45.812+03	
b9c23598-d001-b63e-0b03-b5534c0b86dd	2021-05-25 16:13:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:13:06.79+03	2021-05-25 16:13:06.797+03	
ad886094-e97b-7be2-34b6-7285fcd35fda	2021-05-25 16:13:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:13:26.79+03	2021-05-25 16:13:26.798+03	
16897386-1717-77cd-2fcf-5a1df4504f01	2021-05-25 16:13:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:13:56.79+03	2021-05-25 16:13:56.798+03	
792ddfee-07d3-3237-c00f-6bd2d68c85a4	2021-05-25 16:14:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:14:16.79+03	2021-05-25 16:14:16.798+03	
e0614e47-385e-1cd4-a411-470155ae1617	2021-05-25 16:14:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:14:26.79+03	2021-05-25 16:14:26.798+03	
4d1f6531-0a5c-48d5-cfeb-54e1c651ed8b	2021-05-25 16:14:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:14:56.79+03	2021-05-25 16:14:56.797+03	
7c46e1b4-af9c-a8de-36b5-9fd985aab07a	2021-05-25 16:15:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:15:16.79+03	2021-05-25 16:15:16.815+03	
8906d227-bd5c-c029-f9eb-7b7e6a6a8e62	2021-05-25 16:15:36.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:15:36.79+03	2021-05-25 16:15:36.798+03	
ef830410-3234-2557-c411-4b45c3ebf40d	2021-05-25 16:15:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:15:56.79+03	2021-05-25 16:15:56.8+03	
fbfff6a5-29ee-a8b2-0bcd-e08011752287	2021-05-25 16:16:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:16:16.79+03	2021-05-25 16:16:16.798+03	
ded205d6-30d8-ff6b-771c-b54bc0503bf1	2021-05-25 16:16:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:16:46.79+03	2021-05-25 16:16:46.797+03	
eabed16d-2553-18e0-1a58-d6ab9c6b832a	2021-05-25 16:17:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:17:06.79+03	2021-05-25 16:17:06.797+03	
0130adac-b3e9-9c27-9398-2d29c17c5910	2021-05-25 16:17:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:17:26.79+03	2021-05-25 16:17:26.797+03	
ef07c3c1-7b42-a2b3-b914-d962182ec7fb	2021-05-25 16:17:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:17:56.79+03	2021-05-25 16:17:56.798+03	
74cee8cd-5e44-6f9a-9192-b1b981b86eb6	2021-05-25 16:18:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:18:16.79+03	2021-05-25 16:18:16.797+03	
5d90d22f-950d-6f5b-45fa-1fba762ad719	2021-05-25 16:18:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:18:36.79+03	2021-05-25 16:18:36.796+03	
114d38d2-309a-890f-697d-8fa8bb301dfc	2021-05-25 16:18:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:18:56.79+03	2021-05-25 16:18:56.797+03	
8368a2c2-c551-1c17-db53-9a34bb7dc551	2021-05-25 16:19:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:19:16.79+03	2021-05-25 16:19:16.798+03	
8e44f890-5f9c-8c4b-f319-a812f864d6bd	2021-05-25 16:19:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:19:37.79+03	2021-05-25 16:19:37.81+03	
85a4753d-dea6-67e7-dbe7-83331d79c47d	2021-05-25 16:19:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:19:47.79+03	2021-05-25 16:19:47.801+03	
188fc645-afe3-6a4f-247c-ca25e93c020c	2021-05-25 16:20:00.801	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 16:20:00.8+03	2021-05-25 16:20:00.807+03	ERROR
ee8baab5-f7ab-665e-11b9-154e815799d9	2021-05-25 16:20:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:20:17.79+03	2021-05-25 16:20:17.797+03	
7db04fff-e6c4-b04a-7d11-5d7de911516a	2021-05-25 16:20:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:20:37.79+03	2021-05-25 16:20:37.797+03	
c9302ea6-c640-d7a0-b542-ffe4ba9a5f7e	2021-05-25 16:20:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:20:47.79+03	2021-05-25 16:20:47.795+03	
b8f4777f-1a02-84fb-37b9-c3100f9612bf	2021-05-25 16:21:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:21:07.79+03	2021-05-25 16:21:07.797+03	
e04f25e0-c1c2-a62f-9b91-b549e8e452c2	2021-05-25 16:21:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:21:27.79+03	2021-05-25 16:21:27.799+03	
d5398ce6-1d46-060c-5107-52b198d82fe5	2021-05-25 16:21:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:21:47.79+03	2021-05-25 16:21:47.798+03	
8532740c-20db-0a1e-5335-f93034124fbf	2021-05-25 16:22:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:22:07.79+03	2021-05-25 16:22:07.797+03	
ad5e62d5-b094-dff1-37e0-2fba754fed5e	2021-05-25 16:22:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:22:27.79+03	2021-05-25 16:22:27.797+03	
7f259492-65ff-dfb6-c718-89114720d083	2021-05-25 16:22:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:22:47.79+03	2021-05-25 16:22:47.798+03	
9af2ff3a-b484-0d32-386d-25e47b1e3c62	2021-05-25 16:23:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:23:07.79+03	2021-05-25 16:23:07.799+03	
7e3926d8-03db-ee68-6447-63ebd945724a	2021-05-25 16:23:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:23:27.79+03	2021-05-25 16:23:27.799+03	
7cf84c01-4e22-8187-abf6-9cae76cc7746	2021-05-25 16:23:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:23:47.79+03	2021-05-25 16:23:47.797+03	
b294c0e6-ab89-bdba-8afc-7ea00d32ed83	2021-05-25 16:24:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:24:07.79+03	2021-05-25 16:24:07.797+03	
8c10ed57-3032-e03d-aa9d-1d8e1ded702c	2021-05-25 16:24:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:24:27.79+03	2021-05-25 16:24:27.809+03	
dc661a50-f91c-479a-6209-04a5c163d88b	2021-05-25 16:24:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:24:37.79+03	2021-05-25 16:24:37.801+03	
f9d8d486-d630-1652-4ecc-8a2e832e0a79	2021-05-25 16:24:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:24:57.79+03	2021-05-25 16:24:57.797+03	
6d27c370-eb3f-0456-8c87-4eead1cdc058	2021-05-25 16:25:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:25:17.79+03	2021-05-25 16:25:17.796+03	
dbce4c70-fdc5-1355-711e-30d21137e63c	2021-05-25 16:25:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:25:37.79+03	2021-05-25 16:25:37.796+03	
42565024-6719-8331-5349-e557d5bd0285	2021-05-25 16:25:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:25:57.79+03	2021-05-25 16:25:57.847+03	
4cae06b1-7890-3b8c-fc7b-c183f33e22cb	2021-05-25 16:26:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:26:17.79+03	2021-05-25 16:26:17.796+03	
de9db992-f7fe-cf64-6372-4082c6dbe990	2021-05-25 16:26:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:26:37.79+03	2021-05-25 16:26:37.8+03	
db5c93a2-2fbe-723a-0a07-ca3e6574067d	2021-05-25 16:26:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:26:57.79+03	2021-05-25 16:26:57.796+03	
691f85e3-5bfb-7349-01df-fc0cd7b5415a	2021-05-25 16:27:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:27:17.79+03	2021-05-25 16:27:17.797+03	
a6f1dc81-2d44-828a-cd20-1a6372a5619f	2021-05-25 16:27:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:27:37.79+03	2021-05-25 16:27:37.797+03	
33500ae9-8467-3a6e-2b8b-d9a03147f6af	2021-05-25 16:27:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:27:57.79+03	2021-05-25 16:27:57.808+03	
a90b3c4a-f2ed-3dd6-ec23-be70828b7e4c	2021-05-25 16:28:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:28:18.79+03	2021-05-25 16:28:18.797+03	
04448bb2-c7d6-ad8d-313a-b599206cfc58	2021-05-25 16:28:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:28:38.79+03	2021-05-25 16:28:38.797+03	
89e37f80-10c6-762d-3f06-3d9f6bde2c77	2021-05-25 16:28:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:28:58.79+03	2021-05-25 16:28:58.797+03	
55964e4d-cd3d-090b-e777-206ae40a8bcd	2021-05-25 16:29:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:29:18.79+03	2021-05-25 16:29:18.797+03	
932043cf-2ceb-f7ec-3bc3-25da7041f585	2021-05-25 16:29:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:29:38.79+03	2021-05-25 16:29:38.796+03	
3be94003-6fbc-bfc7-6352-84108621723e	2021-05-25 16:29:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:29:58.79+03	2021-05-25 16:29:58.796+03	
d57d2805-13a3-e034-c0ba-f78e3dbf925c	2021-05-25 16:30:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:30:08.79+03	2021-05-25 16:30:08.802+03	
55a6e760-c5d4-2060-1fe6-0fcc88b9c289	2021-05-25 16:30:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:30:28.79+03	2021-05-25 16:30:28.796+03	
08944ee4-7ef7-8aa5-1cbf-e64c2f9ffca4	2021-05-25 16:30:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:30:48.79+03	2021-05-25 16:30:48.797+03	
d0a4b814-609b-c91b-cfca-e41ba884088a	2021-05-25 16:31:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:31:08.79+03	2021-05-25 16:31:08.796+03	
1e2e3cea-98bc-da50-4f3f-597bd2c78b78	2021-05-25 16:31:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:31:28.79+03	2021-05-25 16:31:28.797+03	
ba1a7872-3a06-5f34-2aed-2329db75f0a0	2021-05-25 16:11:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:11:53.79+03	2021-05-25 16:11:53.799+03	
544d52ad-4738-c3ed-9674-73529125ede3	2021-05-25 16:12:14.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:12:14.791+03	2021-05-25 16:12:14.8+03	
0036b4ef-8ece-33c6-338e-969067f052cb	2021-05-25 16:12:25.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:12:25.79+03	2021-05-25 16:12:25.801+03	
b7e698b9-2ada-5f61-d56a-cf88a1f290e0	2021-05-25 16:12:55.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:12:55.792+03	2021-05-25 16:12:55.812+03	
0a40b6c8-48a7-79d6-c48a-cad561adab06	2021-05-25 16:13:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:13:16.79+03	2021-05-25 16:13:16.796+03	
56599bcb-958e-ac7a-4507-788a7764220c	2021-05-25 16:13:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:13:36.79+03	2021-05-25 16:13:36.798+03	
22ff89b6-cde8-6da2-c074-ec260334adcc	2021-05-25 16:13:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:13:46.79+03	2021-05-25 16:13:46.798+03	
41ffdda2-7e24-1eb9-e6ea-b9bbd56c073f	2021-05-25 16:14:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:14:06.79+03	2021-05-25 16:14:06.799+03	
503f1595-7f5e-14e8-9297-b5d7ba313b30	2021-05-25 16:14:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:14:36.79+03	2021-05-25 16:14:36.811+03	
2dcfec36-a8c6-dab8-7d2b-ecac406e76b6	2021-05-25 16:14:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:14:46.79+03	2021-05-25 16:14:46.8+03	
8f7d625f-87ca-eb79-46f8-6133dc8ac378	2021-05-25 16:15:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:15:06.79+03	2021-05-25 16:15:06.804+03	
cc4a4dec-82c7-22a0-6f3d-e42cac8823c8	2021-05-25 16:15:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:15:26.79+03	2021-05-25 16:15:26.798+03	
9c8edd2f-8c4a-b95e-2d27-3307b69b8dd9	2021-05-25 16:15:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:15:46.79+03	2021-05-25 16:15:46.8+03	
b8cfbe42-d33e-71e9-d0d1-2549184d5cb9	2021-05-25 16:16:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:16:06.79+03	2021-05-25 16:16:06.799+03	
88cf9c55-02e8-fdb8-46ac-3a1329f701e8	2021-05-25 16:16:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:16:26.79+03	2021-05-25 16:16:26.802+03	
08730fde-f352-0cd9-cc36-0e4c792652bb	2021-05-25 16:16:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:16:36.79+03	2021-05-25 16:16:36.806+03	
88e91de5-2281-a5ea-2ceb-49337beece24	2021-05-25 16:16:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:16:56.79+03	2021-05-25 16:16:56.796+03	
b8fa5134-299e-79c1-b4c5-791054ee4d02	2021-05-25 16:17:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:17:16.79+03	2021-05-25 16:17:16.801+03	
69908c56-1e91-a5d1-cf7f-204383871a29	2021-05-25 16:17:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:17:36.79+03	2021-05-25 16:17:36.814+03	
ba709f34-a637-b512-5d44-44176e82eea3	2021-05-25 16:17:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:17:46.79+03	2021-05-25 16:17:46.796+03	
96ed5a18-cde6-7750-1074-f23d2db8dced	2021-05-25 16:18:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:18:06.79+03	2021-05-25 16:18:06.798+03	
cd84b6fd-7d2e-1cf8-6fa8-a4c9454a7441	2021-05-25 16:18:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:18:26.79+03	2021-05-25 16:18:26.797+03	
c8985caf-ec92-a952-ed7b-21440fec1cff	2021-05-25 16:18:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:18:46.79+03	2021-05-25 16:18:46.81+03	
4b84e3d8-f250-9748-abf6-762f9fa92c90	2021-05-25 16:19:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:19:06.79+03	2021-05-25 16:19:06.801+03	
872bd5df-f469-4723-194f-c3fa3c1b8f42	2021-05-25 16:19:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:19:26.791+03	2021-05-25 16:19:26.809+03	
aee03262-4fba-dee8-1f89-92ae96d0ee0f	2021-05-25 16:19:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:19:57.79+03	2021-05-25 16:19:57.8+03	
31203e53-b392-74dc-ab43-1f2cba44bae9	2021-05-25 16:20:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:20:07.79+03	2021-05-25 16:20:07.796+03	
45a20cb7-4758-e4a0-11c5-7d53197aef98	2021-05-25 16:20:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:20:27.79+03	2021-05-25 16:20:27.797+03	
0d6ea3e1-2b03-b3ec-13b7-ab299fc2e3ad	2021-05-25 16:20:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:20:57.79+03	2021-05-25 16:20:57.796+03	
5e5396f0-2ecf-d0ab-ec3b-02ed58294e3c	2021-05-25 16:21:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:21:17.79+03	2021-05-25 16:21:17.797+03	
2a79f07a-aea0-0d9c-81a9-3f2e6a5edb93	2021-05-25 16:21:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:21:37.79+03	2021-05-25 16:21:37.796+03	
775a8011-9a02-5be5-af0a-5abbf97afefd	2021-05-25 16:21:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:21:57.79+03	2021-05-25 16:21:57.797+03	
ecec28e0-aacc-f567-5f88-af61db930589	2021-05-25 16:22:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:22:17.79+03	2021-05-25 16:22:17.799+03	
b6f6c713-d17a-3e86-91ea-3c37c7790d7e	2021-05-25 16:22:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:22:37.79+03	2021-05-25 16:22:37.796+03	
7553e850-d00b-fa65-890a-ab46897eac7f	2021-05-25 16:22:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:22:57.79+03	2021-05-25 16:22:57.796+03	
cbc1787b-1b56-a8fb-20b6-3ae393256067	2021-05-25 16:23:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:23:17.79+03	2021-05-25 16:23:17.797+03	
cd3fc655-dd18-c606-91c4-2ea48c15b36c	2021-05-25 16:23:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:23:37.79+03	2021-05-25 16:23:37.812+03	
12b2414f-b58c-2580-0630-a690f685fb72	2021-05-25 16:23:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:23:57.79+03	2021-05-25 16:23:57.799+03	
6311f82d-4a12-1cf3-95d4-c5963ad6902c	2021-05-25 16:24:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:24:17.79+03	2021-05-25 16:24:17.798+03	
a26064a0-a2a8-cabc-c786-5bfdb0514d4b	2021-05-25 16:24:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:24:47.79+03	2021-05-25 16:24:47.803+03	
5eb3bbe7-f677-eb9b-dff1-ac94c42a233e	2021-05-25 16:25:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:25:07.79+03	2021-05-25 16:25:07.796+03	
308c5a6c-0c3f-59db-927f-555f18f05dd9	2021-05-25 16:25:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:25:27.79+03	2021-05-25 16:25:27.797+03	
04612dbb-5ea2-b9e3-8bf2-8f3ff02d51fc	2021-05-25 16:25:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:25:47.79+03	2021-05-25 16:25:47.805+03	
404795ad-cde3-419b-7e36-49d4dcc99e05	2021-05-25 16:26:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:26:07.79+03	2021-05-25 16:26:07.806+03	
8c9df40a-71ea-3155-11b6-536e5e9a4323	2021-05-25 16:26:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:26:27.79+03	2021-05-25 16:26:27.798+03	
c7a9a099-95f5-07d0-724e-8828dbbb6e90	2021-05-25 16:26:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:26:47.79+03	2021-05-25 16:26:47.796+03	
4f0c8ef5-8173-a548-3089-8a0bca6bc46f	2021-05-25 16:27:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:27:07.79+03	2021-05-25 16:27:07.796+03	
517584a6-2607-7438-bf6a-8061f2a19e51	2021-05-25 16:27:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:27:27.79+03	2021-05-25 16:27:27.797+03	
695dca9c-fffe-d0f7-a6a1-4a03e1ada8e5	2021-05-25 16:27:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:27:47.79+03	2021-05-25 16:27:47.796+03	
bc2dd2b5-3170-7f8d-57aa-55dd6e7760f6	2021-05-25 16:28:07.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:28:07.792+03	2021-05-25 16:28:07.798+03	
7070ec37-9d91-e4ce-10d1-7d87483b24a8	2021-05-25 16:28:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:28:28.79+03	2021-05-25 16:28:28.8+03	
3e89cf8a-43ea-9bd2-994f-fadccf74a412	2021-05-25 16:28:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:28:48.79+03	2021-05-25 16:28:48.796+03	
8213d128-5c9b-a455-7012-dc8db74485e3	2021-05-25 16:29:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:29:08.79+03	2021-05-25 16:29:08.797+03	
1d37b2a8-fc16-c375-f490-954286f242e2	2021-05-25 16:29:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:29:28.79+03	2021-05-25 16:29:28.797+03	
4ebda2c5-e2de-719a-1dda-a60058e01d7f	2021-05-25 16:29:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:29:48.79+03	2021-05-25 16:29:48.796+03	
618d8433-7d30-d172-5d64-bd98da26b962	2021-05-25 16:30:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 16:30:00.792+03	2021-05-25 16:30:00.797+03	ERROR
43cc769c-def7-1e6a-d508-454adeb37e81	2021-05-25 16:30:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:30:18.79+03	2021-05-25 16:30:18.797+03	
a9b7a91b-c777-373e-9bce-b95ddc572db4	2021-05-25 16:30:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:30:38.79+03	2021-05-25 16:30:38.797+03	
3b8c533d-884b-3164-d323-ada549cce203	2021-05-25 16:30:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:30:58.79+03	2021-05-25 16:30:58.799+03	
423d6cd9-f76d-aeaf-20d5-105add219194	2021-05-25 16:31:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:31:18.79+03	2021-05-25 16:31:18.798+03	
a094d48e-8ce5-acf3-27e2-65f2cd9bb94f	2021-05-25 16:31:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:31:38.79+03	2021-05-25 16:31:38.807+03	
c2885535-a17f-94b4-b662-b36dd2303899	2021-05-25 16:31:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:31:58.79+03	2021-05-25 16:31:58.798+03	
a5e4159d-3b24-2a7b-301d-e4a24ffea47f	2021-05-25 16:32:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:32:18.79+03	2021-05-25 16:32:18.798+03	
292db507-6faa-8d7a-2c08-b5124f393553	2021-05-25 16:31:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:31:48.79+03	2021-05-25 16:31:48.798+03	
e0d8e62f-ca24-c710-2d71-e91649b8a031	2021-05-25 16:32:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:32:08.79+03	2021-05-25 16:32:08.797+03	
d5907000-d1e0-34e1-a0db-b68ba2706fe9	2021-05-25 16:32:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:32:28.79+03	2021-05-25 16:32:28.796+03	
7fd3e470-e8d8-5cbd-54c4-b1fd280f2520	2021-05-25 16:32:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:32:48.79+03	2021-05-25 16:32:48.8+03	
0e3ae031-f421-6040-af77-17ba1fc69557	2021-05-25 16:33:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:33:08.79+03	2021-05-25 16:33:08.799+03	
953d1d74-e300-a939-1634-de85efaaa6b6	2021-05-25 16:33:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:33:28.79+03	2021-05-25 16:33:28.797+03	
06221697-85c2-2f84-5386-b94bc710434e	2021-05-25 16:33:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:33:48.79+03	2021-05-25 16:33:48.797+03	
15249d49-6cb9-c35e-0502-da763d92600f	2021-05-25 16:34:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:34:08.79+03	2021-05-25 16:34:08.797+03	
2baa3639-8538-ad0e-f1eb-e60a72410f9f	2021-05-25 16:34:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:34:28.79+03	2021-05-25 16:34:28.796+03	
131c1d7b-fcc3-54b9-deed-5cad8b278e63	2021-05-25 16:34:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:34:48.79+03	2021-05-25 16:34:48.8+03	
1991b993-ff9d-3590-ceb0-53a9b7b9caf0	2021-05-25 16:35:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:35:08.79+03	2021-05-25 16:35:08.798+03	
002dcce4-4a1d-d73e-2731-36ebb5003f8a	2021-05-25 16:35:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:35:28.79+03	2021-05-25 16:35:28.797+03	
5b9e8753-6601-8a4c-8e86-926d3b5ff792	2021-05-25 16:35:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:35:48.79+03	2021-05-25 16:35:48.796+03	
04aaa0c2-ee66-3e4e-2da0-80c03f4c6cb2	2021-05-25 16:36:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:36:08.79+03	2021-05-25 16:36:08.804+03	
75b1b7be-fd27-3a10-f8b5-85fb915bfd52	2021-05-25 16:36:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:36:28.79+03	2021-05-25 16:36:28.796+03	
8ef27f2b-df12-1c39-7e79-99f51e436970	2021-05-25 16:36:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:36:48.79+03	2021-05-25 16:36:48.815+03	
8be9b492-1147-c4b2-4d5a-cb7ba7038548	2021-05-25 16:37:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:37:08.79+03	2021-05-25 16:37:08.798+03	
71bdddd8-9eb5-1134-e84b-96fa7b8f9d32	2021-05-25 16:37:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:37:29.791+03	2021-05-25 16:37:29.8+03	
c3047f78-4d72-a30a-c461-67135eb39a2e	2021-05-25 16:37:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:37:50.79+03	2021-05-25 16:37:50.797+03	
5f64f065-de56-845a-e36b-447c0ec59a39	2021-05-25 16:38:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:38:11.79+03	2021-05-25 16:38:11.799+03	
c75802e0-af10-d45b-2c98-658529e583cc	2021-05-25 16:38:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:38:31.79+03	2021-05-25 16:38:31.797+03	
8f9b29d0-3efa-8253-1aee-2802a50e42ee	2021-05-25 16:38:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:38:51.79+03	2021-05-25 16:38:51.797+03	
00ca07b4-03cc-e3c9-f27a-4ec69205ba80	2021-05-25 16:39:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:39:11.79+03	2021-05-25 16:39:11.8+03	
bb41a13b-35fb-d3d9-0cf3-4816611ef0ef	2021-05-25 16:39:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:39:32.79+03	2021-05-25 16:39:32.797+03	
dd7ca606-4104-6b3c-f2dd-594448f69852	2021-05-25 16:39:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:39:52.79+03	2021-05-25 16:39:52.797+03	
badeaddf-7f4c-7313-14ee-6b7d710b86db	2021-05-25 16:40:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:40:02.79+03	2021-05-25 16:40:02.798+03	
8e6d49dd-624b-e26e-b7fe-ae537a5a80e0	2021-05-25 16:40:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:40:22.79+03	2021-05-25 16:40:22.797+03	
22f621db-a4ec-8645-0565-2103d9dd3d11	2021-05-25 16:40:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:40:42.79+03	2021-05-25 16:40:42.798+03	
6a08e29e-f5cc-7855-87ea-557b792f2b0c	2021-05-25 16:41:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:41:03.79+03	2021-05-25 16:41:03.797+03	
345c4ec1-106f-e464-e42a-3e425efbf395	2021-05-25 16:41:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:41:23.79+03	2021-05-25 16:41:23.803+03	
c4216711-2bf8-ef69-a38a-e06ecbfff7e7	2021-05-25 16:41:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:41:43.79+03	2021-05-25 16:41:43.815+03	
6a2b6569-46e0-51b3-b243-74c8f67fde9e	2021-05-25 16:42:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:42:03.79+03	2021-05-25 16:42:03.798+03	
049ac19e-9c0f-1462-4a97-a4bb5c959df1	2021-05-25 16:42:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:42:23.79+03	2021-05-25 16:42:23.8+03	
b0afdc3e-6e20-4ef6-a8e7-b413ff9529df	2021-05-25 16:42:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:42:43.79+03	2021-05-25 16:42:43.797+03	
c6094887-8948-0ab1-1824-b63f50011620	2021-05-25 16:43:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:43:13.79+03	2021-05-25 16:43:13.796+03	
eb0f4c7e-eb95-fcec-c01a-c6ce6472673a	2021-05-25 16:43:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:43:33.79+03	2021-05-25 16:43:33.798+03	
92e8a06e-3508-6d06-9656-a797e712b3f7	2021-05-25 16:43:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:43:53.79+03	2021-05-25 16:43:53.797+03	
daab21dc-0472-89d1-3e38-dc6303013e23	2021-05-25 16:44:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:44:13.79+03	2021-05-25 16:44:13.798+03	
ca4831f6-2a03-78af-77b9-0298470b642a	2021-05-25 16:44:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:44:33.79+03	2021-05-25 16:44:33.813+03	
c729b4af-0adf-0224-333d-a1af2a4689b4	2021-05-25 16:44:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:44:53.79+03	2021-05-25 16:44:53.796+03	
2c38359e-f89d-c779-88b2-81954543f390	2021-05-25 16:45:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:45:13.79+03	2021-05-25 16:45:13.814+03	
360e0dc6-a025-e42e-16dc-80a8a8e9777c	2021-05-25 16:45:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:45:33.79+03	2021-05-25 16:45:33.797+03	
ac2d1eb5-408f-e7b0-7607-45644dc6fa22	2021-05-25 16:45:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:45:53.79+03	2021-05-25 16:45:53.796+03	
a0e31b16-b2eb-6fe9-12ec-4ac236814737	2021-05-25 16:46:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:46:13.79+03	2021-05-25 16:46:13.798+03	
c1fbc5f9-2ae3-d134-1eac-5ea59790c9ed	2021-05-25 16:46:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:46:33.79+03	2021-05-25 16:46:33.797+03	
2a45e62d-63fe-d63a-5d97-fd5c4f277409	2021-05-25 16:46:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:46:53.79+03	2021-05-25 16:46:53.797+03	
5499e798-4899-fbea-e51f-aecd71544e93	2021-05-25 16:47:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:47:13.79+03	2021-05-25 16:47:13.799+03	
811f9741-b3df-ff13-150e-9d1cbb352948	2021-05-25 16:47:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:47:33.79+03	2021-05-25 16:47:33.816+03	
75120d36-0517-5e6e-8689-b8fbb0c19471	2021-05-25 16:47:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:47:53.79+03	2021-05-25 16:47:53.8+03	
e2a60f39-225f-beea-ca2c-bf6dc1245c40	2021-05-25 16:48:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:48:13.79+03	2021-05-25 16:48:13.801+03	
ffbd1a1f-0684-5279-d8d0-7bc752ac13da	2021-05-25 16:48:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:48:33.79+03	2021-05-25 16:48:33.8+03	
04cc4e03-76b1-4571-d312-05246a0172df	2021-05-25 16:48:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:48:53.79+03	2021-05-25 16:48:53.796+03	
d6bfa1bd-e880-3fef-853c-36c291b87b97	2021-05-25 16:49:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:49:13.79+03	2021-05-25 16:49:13.799+03	
b3c48830-bcae-af0b-d1da-7f236de87fb9	2021-05-25 16:49:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:49:33.79+03	2021-05-25 16:49:33.797+03	
995adba2-67f5-2ade-0c38-1e535bfcec00	2021-05-25 16:49:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:49:53.79+03	2021-05-25 16:49:53.796+03	
eac1efd4-0cf6-1c25-ac11-81585e5a1b4f	2021-05-25 16:50:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:50:03.79+03	2021-05-25 16:50:03.796+03	
aeb694cb-8010-0228-79e0-f88aa914dc2e	2021-05-25 16:50:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:50:23.79+03	2021-05-25 16:50:23.796+03	
9624dcef-7b0f-7a7e-b5f9-c072f15d064f	2021-05-25 16:50:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:50:43.79+03	2021-05-25 16:50:43.8+03	
9a0216b3-bc74-b1e0-c981-a3aa57b99da5	2021-05-25 16:51:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:51:03.79+03	2021-05-25 16:51:03.8+03	
2827f321-fad6-6a36-e934-600ac1646377	2021-05-25 16:51:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:51:23.79+03	2021-05-25 16:51:23.796+03	
8fd937a5-9eac-2ed4-b681-828f2c637266	2021-05-25 16:51:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:51:43.79+03	2021-05-25 16:51:43.797+03	
aa209f58-705e-6531-24f0-4d6f1ac51092	2021-05-25 16:52:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:52:03.79+03	2021-05-25 16:52:03.811+03	
e26b2b3d-9b6a-947c-f8b9-af2996b6c59a	2021-05-25 16:52:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:52:23.79+03	2021-05-25 16:52:23.796+03	
6cdc7cf9-16e3-828c-95e5-334a8dc27467	2021-05-25 16:32:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:32:38.79+03	2021-05-25 16:32:38.797+03	
1d883d31-9ae1-6930-3e75-c63acc30281f	2021-05-25 16:32:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:32:58.79+03	2021-05-25 16:32:58.796+03	
e763bfaa-731a-29d4-2171-e1e71109e665	2021-05-25 16:33:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:33:18.79+03	2021-05-25 16:33:18.797+03	
ff19c1b1-823c-9d3f-6187-76b28a0794ec	2021-05-25 16:33:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:33:38.79+03	2021-05-25 16:33:38.797+03	
a7f1c1bd-848e-5d43-dda4-3ea7926d6e86	2021-05-25 16:33:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:33:58.79+03	2021-05-25 16:33:58.798+03	
6a2200c8-280b-5d1f-b709-c7b7a362da7e	2021-05-25 16:34:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:34:18.79+03	2021-05-25 16:34:18.796+03	
266e9412-ea75-dfa7-f83a-107cf6d63f65	2021-05-25 16:34:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:34:38.79+03	2021-05-25 16:34:38.797+03	
4a360499-3d28-6731-3fc1-ae6f411763de	2021-05-25 16:34:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:34:58.79+03	2021-05-25 16:34:58.796+03	
04eec543-2ed6-95a6-1c61-93ef9366ea12	2021-05-25 16:35:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:35:18.79+03	2021-05-25 16:35:18.797+03	
31c9ba47-3761-b4e6-3edb-d80453ffc760	2021-05-25 16:35:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:35:38.79+03	2021-05-25 16:35:38.796+03	
e0633c04-c15c-3ba4-a93e-224da542a39c	2021-05-25 16:35:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:35:58.79+03	2021-05-25 16:35:58.796+03	
1ebe26ba-bd0e-3d49-211a-6d13484ea945	2021-05-25 16:36:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:36:18.79+03	2021-05-25 16:36:18.798+03	
616cad95-d07b-c940-98c8-1f47334eaca1	2021-05-25 16:36:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:36:38.79+03	2021-05-25 16:36:38.797+03	
30ea4853-3b9d-4068-9119-6d21b6e127e7	2021-05-25 16:36:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:36:58.79+03	2021-05-25 16:36:58.797+03	
aeb98bfc-d538-fb34-474d-86ff1b6fdf9b	2021-05-25 16:37:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:37:18.791+03	2021-05-25 16:37:18.797+03	
f3b35999-53bc-1422-7304-9896167c0a93	2021-05-25 16:37:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:37:39.791+03	2021-05-25 16:37:39.81+03	
29deba7c-719f-ebbf-c5e7-5822e8a13bce	2021-05-25 16:38:00.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:38:00.791+03	2021-05-25 16:38:00.798+03	
a5c5cbe0-446e-905a-705c-bf1e7579ca48	2021-05-25 16:38:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:38:21.79+03	2021-05-25 16:38:21.799+03	
20df0ed3-47c7-2d4b-8c3c-559a7052c7b9	2021-05-25 16:38:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:38:41.79+03	2021-05-25 16:38:41.802+03	
0ee608b5-9975-9abe-9db5-fd2fac1b52a7	2021-05-25 16:39:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:39:01.79+03	2021-05-25 16:39:01.8+03	
b95bd7b9-16be-a4b6-26d3-18d0edb69f02	2021-05-25 16:39:21.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:39:21.792+03	2021-05-25 16:39:21.822+03	
055d44cb-6093-ac0f-f6e6-955d4db9cba0	2021-05-25 16:39:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:39:42.79+03	2021-05-25 16:39:42.796+03	
59d7ab90-690e-433a-8420-39abb9b317cb	2021-05-25 16:40:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 16:40:00.791+03	2021-05-25 16:40:00.799+03	ERROR
caf03b4b-670b-8447-abd3-5d1d193a7410	2021-05-25 16:40:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:40:12.79+03	2021-05-25 16:40:12.796+03	
25a722ee-c0d6-711c-de13-bf34a55cca85	2021-05-25 16:40:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:40:32.79+03	2021-05-25 16:40:32.798+03	
44c01b06-7fec-a66c-6687-145098bea10c	2021-05-25 16:40:52.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:40:52.791+03	2021-05-25 16:40:52.801+03	
92a476bb-a656-e5ed-6be9-afe938c5bb65	2021-05-25 16:41:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:41:13.79+03	2021-05-25 16:41:13.796+03	
d4ff5e08-9f62-11d0-6436-8ea95c3e5194	2021-05-25 16:41:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:41:33.79+03	2021-05-25 16:41:33.799+03	
fb4f1919-ba0e-0860-d81f-36d66aae4ecf	2021-05-25 16:41:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:41:53.79+03	2021-05-25 16:41:53.796+03	
4fd460ad-662a-a27b-d5ce-c76d194bdcef	2021-05-25 16:42:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:42:13.79+03	2021-05-25 16:42:13.797+03	
403a2275-35e5-a17d-56c7-432e9cccac76	2021-05-25 16:42:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:42:33.79+03	2021-05-25 16:42:33.796+03	
40ec9cea-a436-05c2-b24e-dce894e36d34	2021-05-25 16:42:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:42:53.79+03	2021-05-25 16:42:53.821+03	
53633092-21be-5ed7-cf9f-e66d28acef40	2021-05-25 16:43:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:43:03.79+03	2021-05-25 16:43:03.797+03	
a3feeebc-957c-15e9-dc7c-70ddd185ac55	2021-05-25 16:43:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:43:23.79+03	2021-05-25 16:43:23.799+03	
6d4c2ece-cf0c-abfe-4fda-577c453d5e22	2021-05-25 16:43:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:43:43.79+03	2021-05-25 16:43:43.8+03	
80e51897-ea5e-7613-06c1-b5abf0cdcf16	2021-05-25 16:44:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:44:03.79+03	2021-05-25 16:44:03.798+03	
3c55adb0-b9ec-a0a8-aa23-6a690f43ee15	2021-05-25 16:44:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:44:23.79+03	2021-05-25 16:44:23.796+03	
deccb532-de39-6edf-ab58-5c733a634a68	2021-05-25 16:44:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:44:43.79+03	2021-05-25 16:44:43.796+03	
f375c564-de20-3843-35e0-c0e01f7d7f8c	2021-05-25 16:45:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:45:03.79+03	2021-05-25 16:45:03.796+03	
9d8207f9-1240-76f0-cdd5-59f8c85946f6	2021-05-25 16:45:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:45:23.79+03	2021-05-25 16:45:23.796+03	
9818f739-58ac-a367-9943-1b2611686c9f	2021-05-25 16:45:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:45:43.79+03	2021-05-25 16:45:43.796+03	
c943dc0c-4a93-69f0-b658-d0dedee39266	2021-05-25 16:46:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:46:03.79+03	2021-05-25 16:46:03.809+03	
82f9f324-b5f2-fc66-29da-fc53cff522ca	2021-05-25 16:46:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:46:23.79+03	2021-05-25 16:46:23.796+03	
6470acfa-c167-e983-0c5e-a69b7ada3757	2021-05-25 16:46:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:46:43.79+03	2021-05-25 16:46:43.797+03	
286dac7a-8db5-5a88-1f9c-c6e838be603c	2021-05-25 16:47:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:47:03.79+03	2021-05-25 16:47:03.796+03	
76949a4a-3f8e-e2b4-ea9f-4c9f1fbb7d7d	2021-05-25 16:47:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:47:23.79+03	2021-05-25 16:47:23.796+03	
8f22d9a6-a817-fc11-566a-6dcabd8e4d7c	2021-05-25 16:47:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:47:43.79+03	2021-05-25 16:47:43.812+03	
bfdb2e97-2ab0-ad74-a146-45ddad5a2703	2021-05-25 16:48:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:48:03.79+03	2021-05-25 16:48:03.797+03	
d8ce5b07-016f-257d-043c-2d8dcec6b78a	2021-05-25 16:48:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:48:23.79+03	2021-05-25 16:48:23.795+03	
61811868-eb79-373e-ed2b-2beef33f2507	2021-05-25 16:48:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:48:43.79+03	2021-05-25 16:48:43.796+03	
1143e9ff-33ad-a247-fcbc-a1daa34c14d4	2021-05-25 16:49:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:49:03.79+03	2021-05-25 16:49:03.796+03	
c2877949-4484-b8e8-92db-ad99f1affeb2	2021-05-25 16:49:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:49:23.79+03	2021-05-25 16:49:23.797+03	
90f43062-df7a-387c-649c-11f3cccc5fa8	2021-05-25 16:49:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:49:43.79+03	2021-05-25 16:49:43.796+03	
b3b6ca71-33eb-fb3a-b5dd-d9729c9d35d1	2021-05-25 16:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 16:50:00.79+03	2021-05-25 16:50:00.808+03	ERROR
eca650d4-6e75-9332-d5c2-d336eb004eee	2021-05-25 16:50:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:50:13.79+03	2021-05-25 16:50:13.797+03	
132610ba-9055-8686-3240-7676c9e49446	2021-05-25 16:50:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:50:33.79+03	2021-05-25 16:50:33.814+03	
63389b01-f970-38d0-ec89-f0924418f598	2021-05-25 16:50:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:50:53.79+03	2021-05-25 16:50:53.796+03	
f40df03b-f8b6-da42-96c9-cf28a7d86f7f	2021-05-25 16:51:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:51:13.79+03	2021-05-25 16:51:13.798+03	
565d2e23-e2f2-3cb9-f3f0-a68752d9e0a5	2021-05-25 16:51:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:51:33.79+03	2021-05-25 16:51:33.797+03	
f012b3fe-71ed-f6bb-c6ed-400ff7d7fe10	2021-05-25 16:51:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:51:53.79+03	2021-05-25 16:51:53.804+03	
9b884921-30a7-c996-28b0-0df2181cf47f	2021-05-25 16:52:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:52:13.79+03	2021-05-25 16:52:13.802+03	
9f02b18e-edaa-c60b-23ae-36b970614cf6	2021-05-25 16:52:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:52:33.79+03	2021-05-25 16:52:33.797+03	
d6296b62-839b-b195-be57-783a90e1a89e	2021-05-25 16:52:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:52:53.79+03	2021-05-25 16:52:53.813+03	
d3f34106-6520-b8b4-b080-3d9e1c722b2b	2021-05-25 16:52:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:52:43.79+03	2021-05-25 16:52:43.796+03	
135dc82a-7194-0097-c09e-fb13cf8cc770	2021-05-25 16:53:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:53:03.79+03	2021-05-25 16:53:03.796+03	
5ab4576c-347d-3b96-f290-c1443e54ceca	2021-05-25 16:53:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:53:23.79+03	2021-05-25 16:53:23.8+03	
42d78cd4-4ec9-9d48-1a17-5a06b8aa1796	2021-05-25 16:53:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:53:43.79+03	2021-05-25 16:53:43.797+03	
fe046f96-6ba1-d0bd-d269-b85341202cdd	2021-05-25 16:54:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:54:03.79+03	2021-05-25 16:54:03.796+03	
8828d291-191c-70bb-c96c-9c7b4e476df2	2021-05-25 16:54:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:54:23.79+03	2021-05-25 16:54:23.802+03	
d663af52-6628-0724-94b0-47db2a2f9d93	2021-05-25 16:54:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:54:43.79+03	2021-05-25 16:54:43.796+03	
66418f39-8c06-ce10-2b9e-ef902cda0e47	2021-05-25 16:55:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:55:03.79+03	2021-05-25 16:55:03.797+03	
cb78888e-9a80-9e55-3e00-6ba6f07c55c0	2021-05-25 16:55:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:55:23.79+03	2021-05-25 16:55:23.796+03	
5b0fbf5e-df87-e75a-88cc-ba62713c4b25	2021-05-25 16:55:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:55:43.79+03	2021-05-25 16:55:43.796+03	
429b5010-ab86-3765-9c63-dec7d791ffa5	2021-05-25 16:56:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:56:03.79+03	2021-05-25 16:56:03.799+03	
90a49847-fcb4-cd9d-67b1-0cec962bcb8f	2021-05-25 16:56:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:56:23.79+03	2021-05-25 16:56:23.797+03	
a4707df3-2ae8-808d-274e-6ee22fa4fd35	2021-05-25 16:56:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:56:43.79+03	2021-05-25 16:56:43.796+03	
56d26e08-d7e4-0bb4-35bf-9f120930a71b	2021-05-25 16:57:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:57:03.79+03	2021-05-25 16:57:03.808+03	
c725b3b1-1d50-c6c9-e107-1662edda8f18	2021-05-25 16:57:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:57:23.79+03	2021-05-25 16:57:23.802+03	
c0d34b27-55b3-f1ba-60f5-ffe9ea7d9b79	2021-05-25 16:57:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:57:43.79+03	2021-05-25 16:57:43.796+03	
0e3788e7-1c96-81c0-4347-13dbd58e0ad0	2021-05-25 16:58:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:58:03.79+03	2021-05-25 16:58:03.797+03	
6666472d-3bc2-c044-6e19-17a8e51b288e	2021-05-25 16:58:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:58:23.79+03	2021-05-25 16:58:23.796+03	
12fcead7-6fa3-05e3-183b-e726f064a517	2021-05-25 16:58:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:58:43.79+03	2021-05-25 16:58:43.797+03	
bc841c7c-60b7-acb1-e0bc-ca776ba2bca9	2021-05-25 16:59:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:59:03.79+03	2021-05-25 16:59:03.798+03	
fa5ff70c-a1e6-ccf5-006d-8d537954331d	2021-05-25 16:59:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:59:23.79+03	2021-05-25 16:59:23.802+03	
e3be6cf7-e401-b952-25c4-4f64408f9e60	2021-05-25 16:59:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:59:43.79+03	2021-05-25 16:59:43.8+03	
14e5934e-72fb-f6d0-ff45-c90fd924c790	2021-05-25 16:59:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:59:53.79+03	2021-05-25 16:59:53.797+03	
bc7726b1-e907-5dd8-bf96-4d287fca9908	2021-05-25 17:00:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:00:03.79+03	2021-05-25 17:00:03.798+03	
d231093e-f30d-9261-627e-0a7f005ba6aa	2021-05-25 17:00:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:00:23.791+03	2021-05-25 17:00:23.815+03	
570315fa-0164-9838-0415-c9a7171bf657	2021-05-25 17:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:00:44.79+03	2021-05-25 17:00:44.796+03	
cb8b823d-5a57-2423-1de1-5e6c5219db42	2021-05-25 17:01:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:01:04.79+03	2021-05-25 17:01:04.796+03	
d38eaddc-5b9e-8dd3-2eb3-080c14ad0d19	2021-05-25 17:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:01:24.79+03	2021-05-25 17:01:24.797+03	
c7f5a0fa-9fdc-f7cb-085c-857a409c98ba	2021-05-25 17:01:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:01:44.79+03	2021-05-25 17:01:44.797+03	
f88fbb6b-b71b-7484-7443-a80f6451b236	2021-05-25 17:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:02:04.79+03	2021-05-25 17:02:04.797+03	
3e0fdeb4-2725-c252-fc16-7228ecd4fbd1	2021-05-25 17:02:25.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:02:25.79+03	2021-05-25 17:02:25.8+03	
e7447b70-f027-1925-8e6c-f792f873b6ba	2021-05-25 17:02:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:02:45.79+03	2021-05-25 17:02:45.797+03	
c217f3a2-c94f-21c0-7aee-bd2e97507559	2021-05-25 17:03:05.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:03:05.791+03	2021-05-25 17:03:05.851+03	
4eaa7166-5498-2261-9785-9558d9bd0c0b	2021-05-25 17:03:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:03:26.79+03	2021-05-25 17:03:26.796+03	
cc2c0425-3911-47d3-64a4-5513ec44e81a	2021-05-25 17:03:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:03:46.79+03	2021-05-25 17:03:46.796+03	
cf7aefd8-0d12-c7cb-f996-1567a401f309	2021-05-25 17:04:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:04:06.79+03	2021-05-25 17:04:06.796+03	
6936a563-6985-ed9a-d9c5-d36c16921cf3	2021-05-25 17:04:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:04:26.79+03	2021-05-25 17:04:26.798+03	
d5c16c54-b22e-5eb5-9ae8-7085c22a8a89	2021-05-25 17:04:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:04:46.79+03	2021-05-25 17:04:46.797+03	
1686a0c4-b33c-e5cb-e5ab-262342400497	2021-05-25 17:05:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:05:07.79+03	2021-05-25 17:05:07.796+03	
d1cbf38c-bf29-536e-6076-df7f1eb73b70	2021-05-25 17:05:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:05:27.79+03	2021-05-25 17:05:27.802+03	
0d31f86b-25ba-55a3-0cc4-37199f1d73d8	2021-05-25 17:05:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:05:47.79+03	2021-05-25 17:05:47.796+03	
d789f4e2-f577-333c-3663-d9799115455f	2021-05-25 17:06:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:06:07.79+03	2021-05-25 17:06:07.796+03	
cc605b17-2cba-874f-95f0-b9fd0a2a9108	2021-05-25 17:06:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:06:27.79+03	2021-05-25 17:06:27.796+03	
fe5a4b90-6a5c-9abe-fc7b-55189646d743	2021-05-25 17:06:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:06:47.79+03	2021-05-25 17:06:47.796+03	
d4d08e73-bec9-a183-90b1-3012c886fda9	2021-05-25 17:07:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:07:07.79+03	2021-05-25 17:07:07.796+03	
52f8bfa9-01c1-f8c7-21d5-4badd42ddedc	2021-05-25 17:07:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:07:27.79+03	2021-05-25 17:07:27.796+03	
dc8c644e-c2aa-eea6-ad8f-446820dee1c1	2021-05-25 17:07:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:07:47.79+03	2021-05-25 17:07:47.797+03	
0f79e9ab-0265-1c7b-b5b1-1aeed9546bda	2021-05-25 17:08:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:08:07.79+03	2021-05-25 17:08:07.816+03	
32484b8f-398d-7f8b-e109-0febf256ac6e	2021-05-25 17:08:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:08:27.79+03	2021-05-25 17:08:27.796+03	
e0951517-4f4d-72c2-8386-391b6555e457	2021-05-25 17:08:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:08:47.79+03	2021-05-25 17:08:47.797+03	
d21d5408-5111-6ceb-0fc1-a0dd76b169b3	2021-05-25 17:09:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:09:07.79+03	2021-05-25 17:09:07.796+03	
8e16cda1-3419-1d54-d603-d2093eda9525	2021-05-25 17:09:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:09:27.79+03	2021-05-25 17:09:27.796+03	
deea79d6-6557-6f5d-c86e-2abd8fee4083	2021-05-25 17:09:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:09:47.79+03	2021-05-25 17:09:47.797+03	
af801531-e6da-d659-d196-1170b5d83feb	2021-05-25 17:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 17:10:00.79+03	2021-05-25 17:10:00.795+03	ERROR
6d7d983a-68c6-0f25-173e-3fab4cc4a7d4	2021-05-25 17:10:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:10:17.79+03	2021-05-25 17:10:17.799+03	
bc05c438-1a24-9e2d-5903-3494a526992f	2021-05-25 17:10:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:10:37.79+03	2021-05-25 17:10:37.796+03	
544920db-b1c4-364f-52ed-8506bf128da2	2021-05-25 17:10:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:10:57.79+03	2021-05-25 17:10:57.81+03	
1eaf5a0e-c389-7807-44b1-dc5cabf186e0	2021-05-25 17:11:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:11:17.79+03	2021-05-25 17:11:17.796+03	
7870f404-bd2d-2073-2cbe-c1beb997ac8e	2021-05-25 17:11:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:11:37.79+03	2021-05-25 17:11:37.796+03	
90ce4f06-3a5c-8457-b0ad-fe7668c6e7b1	2021-05-25 17:11:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:11:57.79+03	2021-05-25 17:11:57.796+03	
9a30fd68-014b-efdf-0267-c13e7de1a640	2021-05-25 17:12:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:12:17.79+03	2021-05-25 17:12:17.8+03	
b58d9bb8-c4c2-e2a0-2a89-eda64f50eec9	2021-05-25 17:12:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:12:37.79+03	2021-05-25 17:12:37.796+03	
18d5fb8b-41ad-bf3b-ab1e-fa3fc04eaed7	2021-05-25 17:12:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:12:57.79+03	2021-05-25 17:12:57.806+03	
821bbb25-8e95-1573-1913-b7ecde65bf77	2021-05-25 16:53:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:53:13.79+03	2021-05-25 16:53:13.853+03	
6a9598cf-2e7d-9a3a-d209-cb8edbb35862	2021-05-25 16:53:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:53:33.79+03	2021-05-25 16:53:33.797+03	
87d50369-6228-10d4-679d-a0758654341f	2021-05-25 16:53:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:53:53.79+03	2021-05-25 16:53:53.8+03	
2f496f64-ff03-43e2-cf20-178f27c05b5d	2021-05-25 16:54:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:54:13.79+03	2021-05-25 16:54:13.798+03	
83d5d0d2-2397-6985-e069-aa7b14c0e048	2021-05-25 16:54:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:54:33.79+03	2021-05-25 16:54:33.796+03	
07924f05-8e87-33ea-78d2-d277dfa7841a	2021-05-25 16:54:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:54:53.79+03	2021-05-25 16:54:53.796+03	
43e356ce-15c5-523d-34fd-d8e883991906	2021-05-25 16:55:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:55:13.79+03	2021-05-25 16:55:13.798+03	
65964070-ba93-cc59-0f6e-90842068bce0	2021-05-25 16:55:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:55:33.79+03	2021-05-25 16:55:33.851+03	
5b3897f2-c27f-60c1-d252-954395304d85	2021-05-25 16:55:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:55:53.79+03	2021-05-25 16:55:53.804+03	
d7735fa0-f498-536f-4a1b-f7f6ce422b49	2021-05-25 16:56:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:56:13.79+03	2021-05-25 16:56:13.798+03	
f75ce76c-d4cf-f314-281e-9b9abb125286	2021-05-25 16:56:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:56:33.79+03	2021-05-25 16:56:33.797+03	
540500dd-aa7b-9a96-b6df-4b3a0f6d98a2	2021-05-25 16:56:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:56:53.79+03	2021-05-25 16:56:53.796+03	
c10e28be-c593-9870-756b-cb043aa58ee6	2021-05-25 16:57:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:57:13.79+03	2021-05-25 16:57:13.796+03	
d21d1dae-da8c-56d4-5e9f-b3a64244aa14	2021-05-25 16:57:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:57:33.79+03	2021-05-25 16:57:33.796+03	
dfff7f54-fd65-694a-3d07-b85fe4b4ad62	2021-05-25 16:57:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:57:53.79+03	2021-05-25 16:57:53.796+03	
9596a07a-a798-78db-3f8e-72d1a6c91dd8	2021-05-25 16:58:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:58:13.79+03	2021-05-25 16:58:13.796+03	
e317943b-d46c-1e38-8c6c-cf5b9cee697f	2021-05-25 16:58:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:58:33.79+03	2021-05-25 16:58:33.796+03	
37428c78-01f2-bda3-3ab6-31a984bc76dd	2021-05-25 16:58:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:58:53.79+03	2021-05-25 16:58:53.796+03	
87d4bcf4-77ef-cef7-a1f0-43d3242eea56	2021-05-25 16:59:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:59:13.79+03	2021-05-25 16:59:13.797+03	
c3b80d16-0418-7bb7-075d-a7326eb6f944	2021-05-25 16:59:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 16:59:33.79+03	2021-05-25 16:59:33.797+03	
2d73a80e-0e3e-07aa-5f5c-149b428e3ba9	2021-05-25 17:00:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 17:00:00.79+03	2021-05-25 17:00:00.796+03	ERROR
668eb01c-1767-e172-5563-070b62f6197f	2021-05-25 17:00:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:00:13.79+03	2021-05-25 17:00:13.796+03	
f4a3b81b-0438-7563-f0e9-eaeca946d87a	2021-05-25 17:00:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:00:34.79+03	2021-05-25 17:00:34.796+03	
ff9b909a-e0d9-32ed-41ed-506c86d0a9dc	2021-05-25 17:00:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:00:54.79+03	2021-05-25 17:00:54.796+03	
db100472-94b5-97de-7d04-ee3954ea298b	2021-05-25 17:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:01:14.79+03	2021-05-25 17:01:14.796+03	
efa447df-d327-c742-476e-bb95178a49b8	2021-05-25 17:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:01:34.79+03	2021-05-25 17:01:34.798+03	
f6e1f78e-b65f-190f-48ca-f35e298e325a	2021-05-25 17:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:01:54.79+03	2021-05-25 17:01:54.796+03	
44ed7a85-470a-5f6d-39eb-90af84a82220	2021-05-25 17:02:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:02:14.791+03	2021-05-25 17:02:14.815+03	
45484053-35d2-5505-83f9-b1338ac7d921	2021-05-25 17:02:35.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:02:35.79+03	2021-05-25 17:02:35.796+03	
cdf9cb0c-fb9a-9491-7cba-be3cca74b21b	2021-05-25 17:02:55.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:02:55.79+03	2021-05-25 17:02:55.796+03	
eb775a40-5f08-3686-a5da-a83beba7b6fe	2021-05-25 17:03:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:03:16.79+03	2021-05-25 17:03:16.795+03	
17737d08-425b-41dd-d014-36d7ebda5dbb	2021-05-25 17:03:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:03:36.79+03	2021-05-25 17:03:36.796+03	
e82c7b15-fb0f-33c0-4653-c2a7598207dd	2021-05-25 17:03:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:03:56.79+03	2021-05-25 17:03:56.797+03	
7aab0c13-ae78-f773-b3a1-ba22a69394db	2021-05-25 17:04:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:04:16.79+03	2021-05-25 17:04:16.8+03	
18e67b22-ceb8-befe-251c-95f6dc8ac82b	2021-05-25 17:04:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:04:36.79+03	2021-05-25 17:04:36.817+03	
5b8c0caa-e2e6-566f-b4b8-8a2277be2640	2021-05-25 17:04:56.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:04:56.791+03	2021-05-25 17:04:56.829+03	
2185d31e-81f4-27b8-585d-95c12a832b5c	2021-05-25 17:05:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:05:17.79+03	2021-05-25 17:05:17.809+03	
7302ad0c-b455-8157-4090-9380a26dc085	2021-05-25 17:05:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:05:37.79+03	2021-05-25 17:05:37.796+03	
6170310c-051d-8944-6d60-1fb21730c794	2021-05-25 17:05:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:05:57.79+03	2021-05-25 17:05:57.797+03	
062cea74-c9d5-1dda-7aaa-f07793ebe181	2021-05-25 17:06:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:06:17.79+03	2021-05-25 17:06:17.797+03	
a9cd1433-fdc7-9a0e-6a2d-4f103c397833	2021-05-25 17:06:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:06:37.79+03	2021-05-25 17:06:37.797+03	
4043dc1d-fb82-c1a3-3a0e-dbe256946fcf	2021-05-25 17:06:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:06:57.79+03	2021-05-25 17:06:57.796+03	
c9e10945-88c3-4a9c-2aec-fd8201a6f060	2021-05-25 17:07:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:07:17.79+03	2021-05-25 17:07:17.796+03	
005c5b3e-7974-3102-b56d-b206b4dbd417	2021-05-25 17:07:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:07:37.79+03	2021-05-25 17:07:37.796+03	
0cb9c224-0247-fa28-d154-6e3f29865767	2021-05-25 17:07:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:07:57.79+03	2021-05-25 17:07:57.798+03	
b18d6ae8-5705-c26d-bbee-195b78552ce2	2021-05-25 17:08:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:08:17.79+03	2021-05-25 17:08:17.796+03	
dd3fef1c-2cbf-2011-264b-d346ef6abc12	2021-05-25 17:08:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:08:37.79+03	2021-05-25 17:08:37.796+03	
8c185848-cc22-c230-1114-045980e8c43b	2021-05-25 17:08:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:08:57.79+03	2021-05-25 17:08:57.806+03	
3c959d4c-6d1f-74a7-ff57-e79bb81de41f	2021-05-25 17:09:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:09:17.79+03	2021-05-25 17:09:17.796+03	
776cca2c-8b8f-d6d6-2505-ef62b673843f	2021-05-25 17:09:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:09:37.79+03	2021-05-25 17:09:37.796+03	
e0a3b205-5cd0-bd8b-8072-0607bde57341	2021-05-25 17:09:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:09:57.79+03	2021-05-25 17:09:57.806+03	
955ef067-7d0b-d0ab-f2be-5580a6be5af5	2021-05-25 17:10:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:10:07.79+03	2021-05-25 17:10:07.796+03	
1d44e613-0b2c-6f14-d0e1-9ca012e515d1	2021-05-25 17:10:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:10:27.79+03	2021-05-25 17:10:27.798+03	
3a36a5da-ca9c-d224-8d67-f4be8d834199	2021-05-25 17:10:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:10:47.79+03	2021-05-25 17:10:47.796+03	
a60c1938-ab0e-15ec-e715-d1a4d29c06b0	2021-05-25 17:11:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:11:07.79+03	2021-05-25 17:11:07.796+03	
fae33849-731d-bd89-3d1e-80f57bb52ea8	2021-05-25 17:11:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:11:27.79+03	2021-05-25 17:11:27.796+03	
7c5999a4-5c96-569a-a5e2-e9a6f29a250f	2021-05-25 17:11:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:11:47.79+03	2021-05-25 17:11:47.796+03	
d9dced50-2c31-cf1a-0b3c-41e73ea74e2b	2021-05-25 17:12:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:12:07.79+03	2021-05-25 17:12:07.796+03	
6214300f-b862-bb1e-11bd-bde1f26a2a3b	2021-05-25 17:12:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:12:27.79+03	2021-05-25 17:12:27.796+03	
a3d06119-a18a-6dcf-4f86-2d0be1027e89	2021-05-25 17:12:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:12:47.79+03	2021-05-25 17:12:47.798+03	
413a096b-d389-f25a-e5a4-013f456d7933	2021-05-25 17:13:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:13:07.79+03	2021-05-25 17:13:07.798+03	
d0cb0296-7b43-69bc-d221-339f9cfe6946	2021-05-25 17:13:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:13:27.79+03	2021-05-25 17:13:27.797+03	
6793cb1d-1590-5f6a-559e-23ebc63582c9	2021-05-25 17:13:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:13:47.79+03	2021-05-25 17:13:47.796+03	
ed7360d4-de0a-13fb-3996-3fa1f9a5f689	2021-05-25 17:13:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:13:17.79+03	2021-05-25 17:13:17.796+03	
a4c353b2-9064-d3c5-9476-8c88c408795a	2021-05-25 17:13:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:13:37.79+03	2021-05-25 17:13:37.806+03	
ecc21f00-afe7-387a-3f4f-90bd5083210c	2021-05-25 17:13:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:13:57.79+03	2021-05-25 17:13:57.806+03	
559072d9-ec9e-98c6-5d7c-6223ac314946	2021-05-25 17:14:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:14:17.79+03	2021-05-25 17:14:17.802+03	
a258150f-1ef6-1b03-58d4-c576b909d28f	2021-05-25 17:14:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:14:37.79+03	2021-05-25 17:14:37.8+03	
ace7689d-bf4e-4e80-6c6b-2f29c870fa54	2021-05-25 17:14:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:14:57.79+03	2021-05-25 17:14:57.796+03	
a024e3b7-aedb-85ba-131a-a9c7f47d76ba	2021-05-25 17:15:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:15:17.79+03	2021-05-25 17:15:17.798+03	
856795e2-4a18-9084-8284-95c1ecfc1dff	2021-05-25 17:15:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:15:37.79+03	2021-05-25 17:15:37.796+03	
dd1226e2-edf5-b7b5-0077-7a4d8cadc502	2021-05-25 17:15:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:15:57.79+03	2021-05-25 17:15:57.81+03	
cc7c662c-98ba-7f90-d721-fd40f4f10a72	2021-05-25 17:16:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:16:17.79+03	2021-05-25 17:16:17.796+03	
2085987f-87ab-118f-1065-305558d7a1ca	2021-05-25 17:16:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:16:37.791+03	2021-05-25 17:16:37.796+03	
0c220086-9ab5-ae61-9984-0c58f115596a	2021-05-25 17:16:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:16:58.79+03	2021-05-25 17:16:58.796+03	
fc2cee25-9cf4-d33b-6589-b10e73cd0339	2021-05-25 17:17:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:17:18.79+03	2021-05-25 17:17:18.8+03	
61c7d1a4-a3e1-5fdc-7022-c466b1a26ef0	2021-05-25 17:17:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:17:38.79+03	2021-05-25 17:17:38.797+03	
e5577cc0-8273-5a14-2659-4cd5cb025753	2021-05-25 17:17:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:17:58.79+03	2021-05-25 17:17:58.8+03	
0aad78a1-3ccb-ff0c-0f13-ebff31bffcd7	2021-05-25 17:18:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:18:18.79+03	2021-05-25 17:18:18.797+03	
2d5a6c46-3c5d-3e09-5751-436527dbe000	2021-05-25 17:18:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:18:28.79+03	2021-05-25 17:18:28.81+03	
f85e31ac-ac1e-65b6-e280-903d8dae0a87	2021-05-25 17:18:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:18:48.79+03	2021-05-25 17:18:48.8+03	
994a6a03-2032-6255-2269-53e987656a6e	2021-05-25 17:19:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:19:18.79+03	2021-05-25 17:19:18.812+03	
7131f7a3-6eec-8166-c8a3-57951cdb2f22	2021-05-25 17:19:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:19:38.79+03	2021-05-25 17:19:38.796+03	
3f928f0b-0b69-6145-e9b2-6de641440e1d	2021-05-25 17:19:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:19:58.79+03	2021-05-25 17:19:58.797+03	
d71a8a7e-56cb-12d3-aa0a-cae5907f9ebc	2021-05-25 17:20:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:20:08.79+03	2021-05-25 17:20:08.796+03	
293e99af-aba4-da0e-7a3a-50d66718b013	2021-05-25 17:20:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:20:28.79+03	2021-05-25 17:20:28.798+03	
46ed4ab9-05f1-4ab1-5d8d-4692aaf5bf36	2021-05-25 17:20:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:20:48.79+03	2021-05-25 17:20:48.798+03	
5ee0359d-0988-8265-9f5a-8c102590d509	2021-05-25 17:21:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:21:08.79+03	2021-05-25 17:21:08.796+03	
27b1ede6-ce95-db74-6279-aebca3ec92ba	2021-05-25 17:21:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:21:28.79+03	2021-05-25 17:21:28.802+03	
af18802e-87c7-fe75-86da-c0aa23b80741	2021-05-25 17:21:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:21:48.79+03	2021-05-25 17:21:48.796+03	
59e3c28c-e076-e836-db5b-3e962d758fd8	2021-05-25 17:22:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:22:08.79+03	2021-05-25 17:22:08.796+03	
7b42f2a1-cca4-7b85-b41e-2cfe742e8755	2021-05-25 17:22:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:22:28.79+03	2021-05-25 17:22:28.798+03	
2fb0b488-4ad6-f6c8-271c-9e9f73ddaade	2021-05-25 17:22:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:22:48.79+03	2021-05-25 17:22:48.796+03	
0b2566bf-a05f-9ad4-280d-1bf445338968	2021-05-25 17:23:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:23:08.79+03	2021-05-25 17:23:08.801+03	
45fe0a22-c77b-4c8d-3338-2ed02bb04e6c	2021-05-25 17:23:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:23:28.79+03	2021-05-25 17:23:28.797+03	
455f7a62-8690-79c0-4ee1-483b0eb242fe	2021-05-25 17:23:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:23:48.79+03	2021-05-25 17:23:48.796+03	
41623aa2-1207-09a1-106c-cd2711e7bfc0	2021-05-25 17:24:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:24:08.79+03	2021-05-25 17:24:08.797+03	
8c28283a-6393-9021-5108-aa223906474b	2021-05-25 17:24:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:24:28.79+03	2021-05-25 17:24:28.796+03	
b52f6f37-b241-8810-c0ba-77c939759364	2021-05-25 17:24:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:24:48.79+03	2021-05-25 17:24:48.796+03	
ab15249c-00bd-e730-f9c2-852e376b0c45	2021-05-25 17:25:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:25:08.79+03	2021-05-25 17:25:08.797+03	
406bc2ba-bdfc-2b70-7554-2fb4f7acdc1e	2021-05-25 17:25:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:25:28.79+03	2021-05-25 17:25:28.801+03	
f1a61ba7-036d-5679-f380-870ef164f714	2021-05-25 17:25:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:25:48.79+03	2021-05-25 17:25:48.796+03	
0823580e-c51f-6e9e-c9da-ec8efc25adb5	2021-05-25 17:26:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:26:08.79+03	2021-05-25 17:26:08.801+03	
413daebd-f83e-ece4-a7b8-0731f399fd43	2021-05-25 17:26:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:26:28.79+03	2021-05-25 17:26:28.805+03	
914eec1b-8202-b73a-8112-626089fc493c	2021-05-25 17:26:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:26:48.79+03	2021-05-25 17:26:48.796+03	
adb27492-b716-bcb9-4810-37e1c7aa73be	2021-05-25 17:27:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:27:08.79+03	2021-05-25 17:27:08.798+03	
e6f779b1-5bb9-5a5a-7b2c-8101f76b3827	2021-05-25 17:27:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:27:28.79+03	2021-05-25 17:27:28.8+03	
9872b213-b154-5091-e742-b36f3a2e7d62	2021-05-25 17:27:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:27:48.79+03	2021-05-25 17:27:48.798+03	
a08d5c72-63c5-0250-f14e-67e6b97056a6	2021-05-25 17:28:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:28:08.79+03	2021-05-25 17:28:08.798+03	
4c7f9a56-bda3-48c0-0b65-13999c399446	2021-05-25 17:28:38.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:28:38.791+03	2021-05-25 17:28:38.81+03	
fca779cb-7db4-6c7a-8d16-fd2f0588be0e	2021-05-25 17:28:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:28:59.79+03	2021-05-25 17:28:59.802+03	
b25059f7-14fe-c04e-39c7-00f706f3c77f	2021-05-25 17:29:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:29:19.79+03	2021-05-25 17:29:19.82+03	
59c924c7-7d3e-0560-1189-d1366faa133a	2021-05-25 17:29:40.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:29:40.792+03	2021-05-25 17:29:40.814+03	
6382d869-7d2e-93ed-6235-0d1ccfce147e	2021-05-25 17:30:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 17:30:00.79+03	2021-05-25 17:30:00.817+03	ERROR
08abe43b-5cb8-e7bd-d85d-6b2ed40023a7	2021-05-25 17:30:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:30:12.79+03	2021-05-25 17:30:12.814+03	
aa107e9c-9147-a1b0-df35-3ddd48c9fc9b	2021-05-25 17:30:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:30:32.79+03	2021-05-25 17:30:32.796+03	
3139358c-11dc-e998-0a34-8f5802b97ad5	2021-05-25 17:30:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:30:52.79+03	2021-05-25 17:30:52.796+03	
5ff7aeab-c3d2-237c-db9a-600401b34fd3	2021-05-25 17:31:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:31:12.79+03	2021-05-25 17:31:12.799+03	
26194cb2-495f-af85-209a-db4df8a058f2	2021-05-25 17:31:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:31:32.79+03	2021-05-25 17:31:32.8+03	
713b73b0-968c-977b-f9df-4d64eb8ed55c	2021-05-25 17:31:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:31:52.79+03	2021-05-25 17:31:52.798+03	
e653c31d-c712-566c-30bf-97e14eec0112	2021-05-25 17:32:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:32:12.79+03	2021-05-25 17:32:12.796+03	
635d2e10-5602-de85-eda6-8858b65c364c	2021-05-25 17:32:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:32:32.79+03	2021-05-25 17:32:32.796+03	
2956136e-be3d-ef60-ab82-9db6f5e02114	2021-05-25 17:32:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:32:52.79+03	2021-05-25 17:32:52.797+03	
c5381df5-3eed-f8c5-4401-db52c28535f7	2021-05-25 17:33:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:33:12.791+03	2021-05-25 17:33:12.814+03	
6bb1c0ca-e527-accc-c25f-b225dae0dd4e	2021-05-25 17:33:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:33:33.79+03	2021-05-25 17:33:33.796+03	
68bf733e-2c69-c86f-3f06-5da278fce052	2021-05-25 17:33:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:33:53.79+03	2021-05-25 17:33:53.796+03	
ea56dc5b-043c-d32f-9943-1f3d068fcc4a	2021-05-25 17:14:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:14:07.79+03	2021-05-25 17:14:07.798+03	
46cbc143-4941-9d11-abd5-fc5464914561	2021-05-25 17:14:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:14:27.79+03	2021-05-25 17:14:27.797+03	
868e2cfa-854f-cc6e-b661-bb508cb017ad	2021-05-25 17:14:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:14:47.79+03	2021-05-25 17:14:47.796+03	
b04f645f-b6b8-44ad-9ecb-9426e0ea212e	2021-05-25 17:15:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:15:07.79+03	2021-05-25 17:15:07.795+03	
09419659-f179-72db-9d0f-d9e23afbcffe	2021-05-25 17:15:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:15:27.79+03	2021-05-25 17:15:27.799+03	
b0eb2cab-9c6f-25ac-3852-e1dd8994b6a8	2021-05-25 17:15:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:15:47.79+03	2021-05-25 17:15:47.815+03	
944a487f-8e42-c8a2-19dd-69b182b56987	2021-05-25 17:16:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:16:07.79+03	2021-05-25 17:16:07.802+03	
1e66bdf4-b700-d7c5-cabf-46a7a52e9e20	2021-05-25 17:16:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:16:27.79+03	2021-05-25 17:16:27.796+03	
e303913e-1b32-520e-b38e-3b53cc580eb8	2021-05-25 17:16:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:16:48.79+03	2021-05-25 17:16:48.796+03	
8a35e26b-4ec2-b086-d153-3ccef7b80ca2	2021-05-25 17:17:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:17:08.79+03	2021-05-25 17:17:08.798+03	
82b13f35-525e-cea7-8ced-82f6ab967640	2021-05-25 17:17:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:17:28.79+03	2021-05-25 17:17:28.797+03	
6d44e4d4-50c7-cb41-3cb5-c2307b47f0ef	2021-05-25 17:17:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:17:48.79+03	2021-05-25 17:17:48.796+03	
bf1a83b6-ba67-a270-c7b3-6c2924f6323f	2021-05-25 17:18:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:18:08.79+03	2021-05-25 17:18:08.796+03	
ef8bb27c-078d-ca35-015f-fce33172e1e9	2021-05-25 17:18:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:18:38.79+03	2021-05-25 17:18:38.797+03	
9b934574-767b-72f3-4d72-2a809c62f092	2021-05-25 17:18:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:18:58.79+03	2021-05-25 17:18:58.808+03	
18deea56-f178-a487-4d80-dc71d5765a08	2021-05-25 17:19:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:19:08.79+03	2021-05-25 17:19:08.803+03	
92730865-85af-2fdd-1a8c-4d95adc69386	2021-05-25 17:19:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:19:28.79+03	2021-05-25 17:19:28.797+03	
810bd3c1-ca3c-90fa-99af-04b95c1b415e	2021-05-25 17:19:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:19:48.79+03	2021-05-25 17:19:48.796+03	
c2835bc4-593f-8114-1096-38083d20432c	2021-05-25 17:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 17:20:00.791+03	2021-05-25 17:20:00.795+03	ERROR
373faef3-438b-0a5e-75e1-d0ed35660f59	2021-05-25 17:20:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:20:18.79+03	2021-05-25 17:20:18.797+03	
a15f14b0-b2d5-6730-bdb8-7aa93c43280c	2021-05-25 17:20:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:20:38.79+03	2021-05-25 17:20:38.817+03	
5a11aacb-3b67-5a58-a4a4-f70d644dd06c	2021-05-25 17:20:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:20:58.79+03	2021-05-25 17:20:58.796+03	
1c5e07f9-d20f-3992-3082-9bc2b9d14743	2021-05-25 17:21:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:21:18.79+03	2021-05-25 17:21:18.796+03	
a753bb33-2953-e10f-9bd8-bd2199e1ea1b	2021-05-25 17:21:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:21:38.79+03	2021-05-25 17:21:38.796+03	
9541948c-a735-c668-40e5-4fa7c991b743	2021-05-25 17:21:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:21:58.79+03	2021-05-25 17:21:58.796+03	
8cb582f7-884e-1fb6-3902-ae56805284d7	2021-05-25 17:22:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:22:18.79+03	2021-05-25 17:22:18.8+03	
d6058a82-7fc6-1403-f729-570ea2f9d8bb	2021-05-25 17:22:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:22:38.79+03	2021-05-25 17:22:38.796+03	
b72bcf01-d436-2d00-d304-da6330f12167	2021-05-25 17:22:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:22:58.79+03	2021-05-25 17:22:58.799+03	
f826fde1-eeea-fa4f-0963-12631e84c0c2	2021-05-25 17:23:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:23:18.79+03	2021-05-25 17:23:18.796+03	
f655b051-5e35-00fc-4ecd-215bdf6aabfb	2021-05-25 17:23:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:23:38.79+03	2021-05-25 17:23:38.797+03	
8baf1013-8a8b-de60-df13-1522e69865ee	2021-05-25 17:23:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:23:58.79+03	2021-05-25 17:23:58.796+03	
6cdeac08-f982-3b63-b258-b7852f2eb4e0	2021-05-25 17:24:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:24:18.79+03	2021-05-25 17:24:18.819+03	
2e5c908f-0e05-71c6-a506-385f891a956e	2021-05-25 17:24:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:24:38.79+03	2021-05-25 17:24:38.796+03	
cb590695-7054-2a21-5ef3-acf334e7efeb	2021-05-25 17:24:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:24:58.79+03	2021-05-25 17:24:58.796+03	
034244be-2424-aeea-fa16-2ac5ff354269	2021-05-25 17:25:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:25:18.79+03	2021-05-25 17:25:18.796+03	
02a8e381-6a8c-4959-51e0-d35363c092fa	2021-05-25 17:25:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:25:38.79+03	2021-05-25 17:25:38.799+03	
4a376d76-cc18-42bd-3f29-88697e619068	2021-05-25 17:25:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:25:58.79+03	2021-05-25 17:25:58.797+03	
cfb9f979-f02b-c623-ab64-89690c25a9d3	2021-05-25 17:26:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:26:18.79+03	2021-05-25 17:26:18.802+03	
a6380144-bf31-727c-8497-184becd7a314	2021-05-25 17:26:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:26:38.79+03	2021-05-25 17:26:38.796+03	
d83024c9-f2b4-e6d4-b767-b8318add5195	2021-05-25 17:26:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:26:58.79+03	2021-05-25 17:26:58.796+03	
712b6a6c-33f9-7e30-5e2e-99a89242ce11	2021-05-25 17:27:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:27:18.79+03	2021-05-25 17:27:18.8+03	
d9fdbbb4-e14c-c54e-509f-785b1dc083cb	2021-05-25 17:27:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:27:38.79+03	2021-05-25 17:27:38.799+03	
b847687f-34a3-aec3-3340-8f39e849f26f	2021-05-25 17:27:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:27:58.79+03	2021-05-25 17:27:58.796+03	
38cd6f87-7d2b-317d-4dc0-4e3e9b2baf95	2021-05-25 17:28:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:28:18.79+03	2021-05-25 17:28:18.798+03	
13e88d7c-88bb-da68-d27f-9913314b90c8	2021-05-25 17:28:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:28:28.79+03	2021-05-25 17:28:28.8+03	
4a302dc3-6b34-80db-1990-38c9274dab86	2021-05-25 17:28:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:28:49.79+03	2021-05-25 17:28:49.797+03	
b9002959-9124-2a31-0fbf-df36079286e5	2021-05-25 17:29:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:29:09.79+03	2021-05-25 17:29:09.798+03	
ac671272-adc8-0f80-c123-5e6767df685b	2021-05-25 17:29:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:29:29.791+03	2021-05-25 17:29:29.817+03	
adc31d01-6add-7737-eedb-327f75fb6445	2021-05-25 17:29:51.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:29:51.792+03	2021-05-25 17:29:51.8+03	
657b4e14-0480-ebf0-d6bf-0b4f4bee236c	2021-05-25 17:30:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:30:02.79+03	2021-05-25 17:30:02.798+03	
ea0e22cb-0383-7265-d8ce-ce3c63a55053	2021-05-25 17:30:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:30:22.79+03	2021-05-25 17:30:22.814+03	
bc283bb6-9e40-5a5d-29ab-dd414f546b82	2021-05-25 17:30:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:30:42.79+03	2021-05-25 17:30:42.8+03	
2556a6e5-4d30-105d-4aa9-703c66e04ac7	2021-05-25 17:31:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:31:02.79+03	2021-05-25 17:31:02.797+03	
285d7a37-6699-b8a4-11bd-720e7146e3fe	2021-05-25 17:31:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:31:22.79+03	2021-05-25 17:31:22.796+03	
7b3501c6-f3c7-4b5f-4e99-326c9e02db34	2021-05-25 17:31:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:31:42.79+03	2021-05-25 17:31:42.796+03	
7b2397e4-4218-d7fa-07aa-d4ba777cc769	2021-05-25 17:32:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:32:02.79+03	2021-05-25 17:32:02.797+03	
452e17ec-fe76-2afe-7b8f-fa42191e9d48	2021-05-25 17:32:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:32:22.79+03	2021-05-25 17:32:22.796+03	
7e3b6539-86b0-ef82-f438-252fa489c2d1	2021-05-25 17:32:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:32:42.79+03	2021-05-25 17:32:42.796+03	
0d63f16a-4543-a383-194e-184987568076	2021-05-25 17:33:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:33:02.79+03	2021-05-25 17:33:02.797+03	
ebc8ccbd-88be-435b-a0d4-40a9ca51b239	2021-05-25 17:33:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:33:23.79+03	2021-05-25 17:33:23.808+03	
980c0dd9-9473-cce0-51be-e2a6227b44b5	2021-05-25 17:33:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:33:43.79+03	2021-05-25 17:33:43.797+03	
082abe11-cfff-f369-8338-a8b4d1e4db56	2021-05-25 17:34:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:34:03.79+03	2021-05-25 17:34:03.796+03	
f4d2a6ea-33c3-8bef-8135-c50a094e9903	2021-05-25 17:34:23.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:34:23.792+03	2021-05-25 17:34:23.816+03	
6b1c4685-aff8-bd5c-7bd8-9807c1467232	2021-05-25 17:34:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:34:13.79+03	2021-05-25 17:34:13.796+03	
f033aab0-afec-d539-dc3e-fabafcf09ba7	2021-05-25 17:34:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:34:34.79+03	2021-05-25 17:34:34.796+03	
ba15e54a-d400-d330-b546-c0fc4fcb819b	2021-05-25 17:34:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:34:54.79+03	2021-05-25 17:34:54.797+03	
321c6b0e-03f8-e4bc-98d0-b2ab7d384c4e	2021-05-25 17:35:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:35:14.79+03	2021-05-25 17:35:14.818+03	
6cedb2c1-1f63-92e9-4a7f-9317a50eea38	2021-05-25 17:35:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:35:34.79+03	2021-05-25 17:35:34.798+03	
2d5fa2c6-06ef-6b73-2e01-f3219b1d3fa7	2021-05-25 17:35:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:35:54.79+03	2021-05-25 17:35:54.809+03	
7a2f9e59-002a-9937-0c53-5583fa91cf0b	2021-05-25 17:36:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:36:24.79+03	2021-05-25 17:36:24.798+03	
62d3db84-163b-aefa-3e8e-bc07e84a007a	2021-05-25 17:36:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:36:44.79+03	2021-05-25 17:36:44.796+03	
997e246a-fb1e-ea32-194d-272cc1fe0b6c	2021-05-25 17:37:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:37:04.79+03	2021-05-25 17:37:04.797+03	
01e558de-370e-79bd-f7c5-873ee5ad08c2	2021-05-25 17:37:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:37:24.79+03	2021-05-25 17:37:24.808+03	
22b7f0d6-7cd5-1e59-1373-c79e2b2c82d2	2021-05-25 17:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:37:44.79+03	2021-05-25 17:37:44.796+03	
efb2da7d-e0fd-2b1d-4961-0b908572212d	2021-05-25 17:38:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:38:04.79+03	2021-05-25 17:38:04.797+03	
2cc2995f-ee23-f4bc-bd7f-c5c962fad337	2021-05-25 17:38:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:38:24.79+03	2021-05-25 17:38:24.814+03	
51af9e0b-2f6d-97fb-064a-da525b8fd954	2021-05-25 17:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:38:44.79+03	2021-05-25 17:38:44.796+03	
8ca3db11-ca97-5642-e84d-5a5560a1bfc4	2021-05-25 17:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:39:04.79+03	2021-05-25 17:39:04.8+03	
1fd45f75-9aa5-e5da-99a8-d10dd880acc4	2021-05-25 17:39:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:39:24.79+03	2021-05-25 17:39:24.797+03	
e68b8d8a-bb11-0590-bf9e-fa8b7e998aa5	2021-05-25 17:39:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:39:44.79+03	2021-05-25 17:39:44.809+03	
ba387204-0c03-487b-b369-8431ca7ba6a1	2021-05-25 17:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 17:40:00.79+03	2021-05-25 17:40:00.795+03	ERROR
89afa4aa-8163-1291-818d-542160e29c43	2021-05-25 17:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:40:14.79+03	2021-05-25 17:40:14.796+03	
9dd1f7c8-0a92-ca05-192e-01be19693a08	2021-05-25 17:40:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:40:34.79+03	2021-05-25 17:40:34.796+03	
af7cbb9f-5761-08d3-4ab8-a93e289f0435	2021-05-25 17:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:41:14.79+03	2021-05-25 17:41:14.797+03	
c48c6b71-359a-a8cf-2b9f-893d48f5a820	2021-05-25 17:41:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:41:34.79+03	2021-05-25 17:41:34.796+03	
f70e4721-2d87-584d-164a-ceca1ca528de	2021-05-25 17:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:41:54.79+03	2021-05-25 17:41:54.796+03	
02765fa8-edbb-3b71-0a9f-3393310710d0	2021-05-25 17:42:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:42:14.79+03	2021-05-25 17:42:14.796+03	
477e3950-33ab-25dc-bab7-cc4be60a6100	2021-05-25 17:42:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:42:34.79+03	2021-05-25 17:42:34.804+03	
032ab960-39d4-7428-4356-c70d7c758621	2021-05-25 17:42:55.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:42:55.79+03	2021-05-25 17:42:55.796+03	
54ab68d2-9534-d3ff-18ca-44d114884b47	2021-05-25 17:43:15.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:43:15.79+03	2021-05-25 17:43:15.797+03	
01fb8a5e-9ab8-4848-411e-223796639c15	2021-05-25 17:43:35.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:43:35.79+03	2021-05-25 17:43:35.796+03	
f71a22fa-f720-11de-1479-7096fddf93fd	2021-05-25 17:43:55.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:43:55.791+03	2021-05-25 17:43:55.797+03	
3e7856b9-67bb-cbd4-e22c-916ad3068d5b	2021-05-25 17:44:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:44:16.79+03	2021-05-25 17:44:16.796+03	
6ae9592d-559f-7cdb-fbb0-f928fd9bb0ca	2021-05-25 17:44:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:44:36.79+03	2021-05-25 17:44:36.796+03	
3755e1d4-81e6-24a7-ea3d-cb6f3234d8ac	2021-05-25 17:44:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:44:56.79+03	2021-05-25 17:44:56.796+03	
e22234c1-40bb-9a55-381e-c7e4bbba2326	2021-05-25 17:45:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:45:16.79+03	2021-05-25 17:45:16.798+03	
a71ad0c2-1b90-18db-8fcb-3092d39e4f82	2021-05-25 17:45:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:45:36.79+03	2021-05-25 17:45:36.8+03	
4068613e-78e0-fdce-175d-3fd159132161	2021-05-25 17:45:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:45:56.791+03	2021-05-25 17:45:56.809+03	
922b24b2-d7ad-81c6-8f04-3dc43096980c	2021-05-25 17:46:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:46:17.79+03	2021-05-25 17:46:17.796+03	
f5e8783e-d60c-295a-0a40-2a20eb6f6a08	2021-05-25 17:46:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:46:37.79+03	2021-05-25 17:46:37.81+03	
fe1d942c-82e3-353e-3386-5f7cd999c0f9	2021-05-25 17:46:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:46:57.79+03	2021-05-25 17:46:57.824+03	
a82ce571-c0f1-135c-8678-9bcbdd491795	2021-05-25 17:47:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:47:17.79+03	2021-05-25 17:47:17.796+03	
72337b4d-e5ff-b5ec-c04e-2f1f834e66f4	2021-05-25 17:47:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:47:37.79+03	2021-05-25 17:47:37.797+03	
04c72fb0-22b9-03bd-b36d-fa304785f7f2	2021-05-25 17:47:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:47:57.79+03	2021-05-25 17:47:57.796+03	
a987b0a0-c322-b6bf-0b7b-10aa6a2d55f6	2021-05-25 17:48:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:48:17.79+03	2021-05-25 17:48:17.81+03	
28bff993-a847-acea-447a-5f595453f444	2021-05-25 17:48:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:48:37.79+03	2021-05-25 17:48:37.818+03	
090e16af-faab-91cd-e071-f4949867e94c	2021-05-25 17:48:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:48:57.79+03	2021-05-25 17:48:57.801+03	
9355f3f2-e697-84a3-c64d-ade9b520247b	2021-05-25 17:49:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:49:17.79+03	2021-05-25 17:49:17.796+03	
2997ddeb-fa65-1341-a230-cacbb3bea182	2021-05-25 17:49:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:49:37.79+03	2021-05-25 17:49:37.8+03	
50ef56ce-6650-8f1e-80b2-13ddc96af403	2021-05-25 17:49:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:49:57.79+03	2021-05-25 17:49:57.796+03	
6868f3cc-cb74-89da-9248-fed5ad0ca3b1	2021-05-25 17:50:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:50:07.79+03	2021-05-25 17:50:07.796+03	
14091159-7fcb-498f-ec18-c465c6ce161f	2021-05-25 17:50:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:50:27.79+03	2021-05-25 17:50:27.796+03	
c2b96bd6-4a1b-66b1-02f0-1f4d30e02ace	2021-05-25 17:50:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:50:47.79+03	2021-05-25 17:50:47.797+03	
de979703-fa5e-2fe9-8a12-79bb084268d1	2021-05-25 17:51:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:51:07.79+03	2021-05-25 17:51:07.804+03	
09fbd26f-bded-8d45-4f2c-218ca82cd27a	2021-05-25 17:51:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:51:27.79+03	2021-05-25 17:51:27.796+03	
0cc9dc77-dfdf-b48c-0379-6266073e7744	2021-05-25 17:51:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:51:47.79+03	2021-05-25 17:51:47.796+03	
cd41dbcf-f130-f542-2d2f-03ad618b6ff9	2021-05-25 17:52:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:52:07.79+03	2021-05-25 17:52:07.796+03	
95aacedb-34a6-7071-aff2-0f752ab040ec	2021-05-25 17:52:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:52:28.79+03	2021-05-25 17:52:28.814+03	
e72adb04-eb6b-35dc-6bbd-cbecd2412c67	2021-05-25 17:52:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:52:48.79+03	2021-05-25 17:52:48.796+03	
00650a3c-3473-5c41-0463-0e37e54f4b3f	2021-05-25 17:53:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:53:08.79+03	2021-05-25 17:53:08.806+03	
3b185902-1947-1f90-7ea3-7d285b374bc9	2021-05-25 17:53:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:53:28.79+03	2021-05-25 17:53:28.797+03	
a939158c-83cf-05ea-3b39-6b3691bb1e49	2021-05-25 17:53:48.808	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:53:48.808+03	2021-05-25 17:53:48.835+03	
191bd975-9c4f-9c0c-a9cf-eb0be1bf3717	2021-05-25 17:54:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:54:09.79+03	2021-05-25 17:54:09.796+03	
215e2bdf-76e6-1eff-0ee0-c6a49e6e6831	2021-05-25 17:54:29.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:54:29.791+03	2021-05-25 17:54:29.8+03	
e8c8e9f4-5ff8-3eae-d2e4-f24122eedbba	2021-05-25 17:54:40.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:54:40.792+03	2021-05-25 17:54:40.812+03	
50cfc71a-33e3-5b81-473d-a352823ad7d2	2021-05-25 17:55:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:55:01.79+03	2021-05-25 17:55:01.797+03	
b8205c11-aed0-d93f-d392-965d161e2ee8	2021-05-25 17:34:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:34:44.79+03	2021-05-25 17:34:44.81+03	
48dd4c7d-e9cd-4dcc-8b61-11fdf15e8e42	2021-05-25 17:35:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:35:04.79+03	2021-05-25 17:35:04.796+03	
90de8178-416e-4594-9f72-e8eff814ebca	2021-05-25 17:35:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:35:24.79+03	2021-05-25 17:35:24.796+03	
141bf38e-b845-307f-944f-0651e9db6991	2021-05-25 17:35:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:35:44.79+03	2021-05-25 17:35:44.796+03	
e85d3dc0-e343-6bdc-fa9e-b2d8b453f502	2021-05-25 17:36:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:36:04.79+03	2021-05-25 17:36:04.796+03	
90841f13-09e3-ad0f-f06c-9f7fdc271f0c	2021-05-25 17:36:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:36:14.79+03	2021-05-25 17:36:14.813+03	
4d744e61-d822-90bf-3851-a6169494f5c9	2021-05-25 17:36:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:36:34.79+03	2021-05-25 17:36:34.796+03	
f655e0ab-ca48-7dcb-139d-dbb26dea2b87	2021-05-25 17:36:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:36:54.79+03	2021-05-25 17:36:54.796+03	
add4aefc-70ad-905d-cf2b-d2881e40d2da	2021-05-25 17:37:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:37:14.79+03	2021-05-25 17:37:14.796+03	
964af363-e575-5057-66c1-c55be8022678	2021-05-25 17:37:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:37:34.79+03	2021-05-25 17:37:34.816+03	
ef67b06e-a441-6d05-414f-bca6e9146c9d	2021-05-25 17:37:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:37:54.79+03	2021-05-25 17:37:54.796+03	
21bcd8f8-f0e3-0a6b-9976-f246da7dda59	2021-05-25 17:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:38:14.79+03	2021-05-25 17:38:14.797+03	
e942ec7d-ede7-e65b-29ae-69d04e516bd6	2021-05-25 17:38:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:38:34.79+03	2021-05-25 17:38:34.811+03	
f112137d-1023-4987-5eba-c76aee1dfa43	2021-05-25 17:38:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:38:54.79+03	2021-05-25 17:38:54.795+03	
019a2aa5-84ae-46e3-d9ff-721fe8781765	2021-05-25 17:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:39:14.79+03	2021-05-25 17:39:14.806+03	
9ba2b6e2-455b-3994-bb34-7eb884f1593c	2021-05-25 17:39:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:39:34.79+03	2021-05-25 17:39:34.796+03	
d5377f18-1b14-50a8-f522-b76cb0b4f1df	2021-05-25 17:39:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:39:54.79+03	2021-05-25 17:39:54.796+03	
565b136a-4d1a-20c2-853c-965bac5dfdf7	2021-05-25 17:40:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:40:04.79+03	2021-05-25 17:40:04.8+03	
fa5e5333-a5c4-06d5-9d57-239ce0031c98	2021-05-25 17:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:40:24.79+03	2021-05-25 17:40:24.814+03	
e8ff8882-f9e5-7725-f0ed-625db346fe76	2021-05-25 17:40:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:40:44.79+03	2021-05-25 17:40:44.796+03	
8793c306-9b0b-e113-b575-54f67f4d11f2	2021-05-25 17:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:40:54.79+03	2021-05-25 17:40:54.804+03	
37f4ac7c-071a-8f79-dd98-b576d408690c	2021-05-25 17:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:41:04.79+03	2021-05-25 17:41:04.796+03	
26de678b-e578-b162-651f-80f4410740df	2021-05-25 17:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:41:24.79+03	2021-05-25 17:41:24.796+03	
2e901bc2-6be8-661d-e942-36c62b6d0ea1	2021-05-25 17:41:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:41:44.79+03	2021-05-25 17:41:44.797+03	
f4e35fa7-5611-b9b0-1b8d-0b632e2d86f0	2021-05-25 17:42:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:42:04.79+03	2021-05-25 17:42:04.796+03	
354cc30e-8c20-1cc8-df5d-201ac58d91ee	2021-05-25 17:42:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:42:24.79+03	2021-05-25 17:42:24.796+03	
23f1f8b7-6cfb-c32a-b8b8-edcccc814872	2021-05-25 17:42:44.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:42:44.791+03	2021-05-25 17:42:44.812+03	
aecb04aa-aaef-ebd6-dc08-e4845f1c9f54	2021-05-25 17:43:05.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:43:05.79+03	2021-05-25 17:43:05.796+03	
e1418026-9d3d-5cc3-e251-0ccff82961dd	2021-05-25 17:43:25.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:43:25.79+03	2021-05-25 17:43:25.796+03	
4908f001-11bd-7114-61c1-92545c77ac6c	2021-05-25 17:43:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:43:45.79+03	2021-05-25 17:43:45.796+03	
19e1a7e0-22f9-754e-0af4-9125fea8a21c	2021-05-25 17:44:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:44:06.79+03	2021-05-25 17:44:06.796+03	
8aed071e-af9a-64b8-50c4-2c3f5a254c53	2021-05-25 17:44:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:44:26.79+03	2021-05-25 17:44:26.797+03	
5bcd8e48-079d-8f5f-c993-ba9b3d8891a0	2021-05-25 17:44:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:44:46.79+03	2021-05-25 17:44:46.798+03	
2d2dc029-bdfc-4bd7-64e8-2082ed303977	2021-05-25 17:45:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:45:06.79+03	2021-05-25 17:45:06.796+03	
4aec428e-2876-65c2-c0c6-6d1fc3efc2c9	2021-05-25 17:45:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:45:26.79+03	2021-05-25 17:45:26.801+03	
94be6258-d957-347c-f4a7-12421e17b07c	2021-05-25 17:45:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:45:46.79+03	2021-05-25 17:45:46.796+03	
12b47f13-699e-fb53-becc-9026145044c3	2021-05-25 17:46:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:46:07.79+03	2021-05-25 17:46:07.797+03	
26b61397-154d-f75c-ff2a-7e3f506c51ed	2021-05-25 17:46:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:46:27.79+03	2021-05-25 17:46:27.796+03	
a3371772-acc8-439d-c054-12f2a636420e	2021-05-25 17:46:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:46:47.79+03	2021-05-25 17:46:47.796+03	
a471bec2-a96e-906a-c9c1-995ee0ecc299	2021-05-25 17:47:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:47:07.79+03	2021-05-25 17:47:07.81+03	
60474fb4-f8f3-124a-325d-5c66518a301f	2021-05-25 17:47:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:47:27.79+03	2021-05-25 17:47:27.796+03	
e31de701-15f7-6713-f1a5-41cb3d2dcdf7	2021-05-25 17:47:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:47:47.79+03	2021-05-25 17:47:47.796+03	
f023c4bd-298a-7819-4c18-50cd45f4018d	2021-05-25 17:48:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:48:07.79+03	2021-05-25 17:48:07.812+03	
f73b10dc-c7d9-b1b8-ff24-f21528d9d2c1	2021-05-25 17:48:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:48:27.79+03	2021-05-25 17:48:27.796+03	
d5b96605-f3f8-5381-8f1e-59e2e9f3a4e3	2021-05-25 17:48:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:48:47.79+03	2021-05-25 17:48:47.803+03	
fef742d1-1eb7-c1ef-499f-88b558cb721c	2021-05-25 17:49:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:49:07.79+03	2021-05-25 17:49:07.797+03	
08cc1808-40ea-754b-5489-43d4bc49980b	2021-05-25 17:49:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:49:27.79+03	2021-05-25 17:49:27.797+03	
bba10bb7-f4e7-fd5e-a295-9c3f891049c5	2021-05-25 17:49:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:49:47.79+03	2021-05-25 17:49:47.805+03	
c9611c1f-c143-3be8-f326-8e851c52a050	2021-05-25 17:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 17:50:00.79+03	2021-05-25 17:50:00.795+03	ERROR
88cf482b-ac14-2376-37d4-6b3b0d00952a	2021-05-25 17:50:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:50:17.79+03	2021-05-25 17:50:17.802+03	
3329b03d-892e-66a2-2bcb-3e5b25d9b0c8	2021-05-25 17:50:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:50:37.79+03	2021-05-25 17:50:37.811+03	
e582762a-021c-e8d2-df4a-447f27a216ed	2021-05-25 17:50:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:50:57.79+03	2021-05-25 17:50:57.798+03	
189341ac-64eb-26af-4fdd-7aa0878f268c	2021-05-25 17:51:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:51:17.79+03	2021-05-25 17:51:17.796+03	
393f6d60-b105-5f75-c076-9aebfb843cf9	2021-05-25 17:51:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:51:37.79+03	2021-05-25 17:51:37.813+03	
30651218-48fe-4bb9-55ac-c88dd9c8ff7b	2021-05-25 17:51:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:51:57.79+03	2021-05-25 17:51:57.796+03	
2c14a1a7-0843-c5ed-a691-640309d7980d	2021-05-25 17:52:17.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:52:17.791+03	2021-05-25 17:52:17.812+03	
e9f278b6-8f0d-247d-c5b9-f446bd3e6313	2021-05-25 17:52:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:52:38.79+03	2021-05-25 17:52:38.802+03	
71d300c1-ee9b-171a-0d32-fe7b1733a85c	2021-05-25 17:52:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:52:58.79+03	2021-05-25 17:52:58.797+03	
f5a1964d-f3b7-62f3-5f22-52b26b1a4f5d	2021-05-25 17:53:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:53:18.79+03	2021-05-25 17:53:18.797+03	
d2ace882-0033-e607-5067-3bd127b4345d	2021-05-25 17:53:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:53:38.79+03	2021-05-25 17:53:38.798+03	
5e90f270-12d3-abca-4382-1b2c3fc2111b	2021-05-25 17:53:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:53:59.79+03	2021-05-25 17:53:59.796+03	
cad793ff-5f5a-ecf9-4e55-531e8b384ab8	2021-05-25 17:54:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:54:19.79+03	2021-05-25 17:54:19.813+03	
da363954-f973-5f60-494a-e50f15922d5b	2021-05-25 17:54:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:54:51.79+03	2021-05-25 17:54:51.8+03	
17164f60-3f49-4ece-be40-dd1d0952a2d6	2021-05-25 17:55:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:55:11.79+03	2021-05-25 17:55:11.796+03	
1dc85ee9-6466-44d4-c6b0-5ac313aa92fc	2021-05-25 17:55:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:55:31.79+03	2021-05-25 17:55:31.796+03	
6ea8ed9c-5bd2-bc27-c6a8-db3485600400	2021-05-25 17:55:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:55:51.79+03	2021-05-25 17:55:51.796+03	
9e742f81-868b-cb15-a9b7-e2b5fe5fce16	2021-05-25 17:56:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:56:11.79+03	2021-05-25 17:56:11.796+03	
618f317f-afe2-99e1-5fe9-d3619d98499f	2021-05-25 17:56:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:56:31.79+03	2021-05-25 17:56:31.797+03	
2202cb01-77f7-62f8-06e3-aa2bfe04eb3f	2021-05-25 17:56:51.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:56:51.791+03	2021-05-25 17:56:51.801+03	
e90c500d-a691-c8ba-d129-2532cbac67bf	2021-05-25 17:57:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:57:12.79+03	2021-05-25 17:57:12.797+03	
5f9072f2-5489-8fc5-058a-2f1bc12d45cf	2021-05-25 17:57:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:57:32.79+03	2021-05-25 17:57:32.807+03	
db3776b4-cd5f-97b2-5232-bf96a8c8588c	2021-05-25 17:57:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:57:52.79+03	2021-05-25 17:57:52.796+03	
89b1c5bb-8cdd-30e2-964e-ebac367a8855	2021-05-25 17:58:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:58:12.79+03	2021-05-25 17:58:12.796+03	
542be1fc-2525-33e7-faf0-ad3925789bbc	2021-05-25 17:58:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:58:32.79+03	2021-05-25 17:58:32.797+03	
e086ddfa-3581-12a5-1545-a6489394bcb9	2021-05-25 17:58:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:58:52.79+03	2021-05-25 17:58:52.808+03	
3101800d-3191-0267-9a58-cbfdd4bc862c	2021-05-25 17:59:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:59:12.79+03	2021-05-25 17:59:12.796+03	
111be8cf-a724-91ba-069f-25650fbecab3	2021-05-25 17:59:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:59:32.79+03	2021-05-25 17:59:32.796+03	
37c25fca-bfc2-5d34-5084-b483f2e4278f	2021-05-25 17:59:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:59:52.79+03	2021-05-25 17:59:52.798+03	
93a57dab-ea07-2150-694f-bc6f5b95afce	2021-05-25 18:00:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:00:02.79+03	2021-05-25 18:00:02.799+03	
a1f6cff9-ceb7-e1c0-1870-d9953e1cb415	2021-05-25 18:00:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:00:22.79+03	2021-05-25 18:00:22.796+03	
c7a1ba7e-9f7e-adde-5927-98fcc3a09f4f	2021-05-25 18:00:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:00:42.79+03	2021-05-25 18:00:42.971+03	
d5c4633d-276c-6183-df8a-a1e9e026b7ff	2021-05-25 18:01:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:01:02.79+03	2021-05-25 18:01:02.796+03	
eb4b610e-465f-ebeb-1aae-204e65dcd360	2021-05-25 18:01:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:01:22.79+03	2021-05-25 18:01:22.796+03	
67bcd68a-4c54-15d4-1405-15239d9e9657	2021-05-25 18:01:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:01:42.79+03	2021-05-25 18:01:42.796+03	
b29ec8a4-4bf9-2f31-25ac-2a74b7eea982	2021-05-25 18:02:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:02:02.79+03	2021-05-25 18:02:02.796+03	
15459666-0111-f731-c17d-a65ccf68038c	2021-05-25 18:02:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:02:22.79+03	2021-05-25 18:02:22.796+03	
68a79d90-f713-bbed-4c2b-1c0830b53711	2021-05-25 18:02:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:02:42.79+03	2021-05-25 18:02:42.796+03	
a897eec0-2873-e8ad-56cb-9037fff759eb	2021-05-25 18:03:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:03:02.79+03	2021-05-25 18:03:02.796+03	
2859928d-a940-c0b9-742c-f5fd51710930	2021-05-25 18:03:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:03:22.79+03	2021-05-25 18:03:22.798+03	
f104fb2c-a594-7267-27f7-eface5a122cc	2021-05-25 18:03:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:03:42.79+03	2021-05-25 18:03:42.796+03	
8a0c75bf-a219-0dda-d6f3-987304a59350	2021-05-25 18:04:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:04:02.79+03	2021-05-25 18:04:02.796+03	
b5fe850e-a87a-2ca7-77b5-b35bf8ef18c8	2021-05-25 18:04:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:04:22.79+03	2021-05-25 18:04:22.804+03	
9576a7e7-c717-730d-0b4c-83eaa2b66c30	2021-05-25 18:04:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:04:42.79+03	2021-05-25 18:04:42.796+03	
f32255e1-94d6-cec2-68cb-164878c11999	2021-05-25 18:05:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:05:02.79+03	2021-05-25 18:05:02.797+03	
2a385918-85e0-d03f-ac92-967503eaadb9	2021-05-25 18:05:22.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:05:22.791+03	2021-05-25 18:05:22.802+03	
e3875e67-6357-a08c-28d6-40f5adb649f9	2021-05-25 18:05:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:05:43.79+03	2021-05-25 18:05:43.796+03	
4ab30ccd-07d8-7706-4847-0d7b117fa5a6	2021-05-25 18:06:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:06:03.79+03	2021-05-25 18:06:03.798+03	
52ddef41-6883-ec8e-c008-d588f540f909	2021-05-25 18:06:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:06:23.79+03	2021-05-25 18:06:23.796+03	
d16dddc6-a687-7d76-fcaa-b3191f6b6a60	2021-05-25 18:06:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:06:43.79+03	2021-05-25 18:06:43.797+03	
02caa7ee-604d-4dde-2365-3cfe5e855fe0	2021-05-25 18:07:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:07:03.79+03	2021-05-25 18:07:03.798+03	
26fdc662-5e1f-5552-1b40-055f313a0e2f	2021-05-25 18:07:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:07:23.79+03	2021-05-25 18:07:23.796+03	
02479557-2da4-7275-d0a8-db3cb30997bf	2021-05-25 18:07:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:07:43.79+03	2021-05-25 18:07:43.796+03	
074b0ce2-5210-9d9a-920a-2ae148658345	2021-05-25 18:08:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:08:03.79+03	2021-05-25 18:08:03.8+03	
761eb959-e680-6c2c-8200-8a5b51cf0eb6	2021-05-25 18:08:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:08:23.79+03	2021-05-25 18:08:23.797+03	
ad09740a-a002-abaf-1f5d-518e8b2b6494	2021-05-25 18:08:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:08:43.79+03	2021-05-25 18:08:43.796+03	
a84ac812-0cb8-5dd0-2fe6-711141818c98	2021-05-25 18:09:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:09:03.79+03	2021-05-25 18:09:03.803+03	
d8363717-56d9-78a9-97ab-1989b0b0b5dc	2021-05-25 18:09:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:09:23.79+03	2021-05-25 18:09:23.796+03	
5a1ab048-896a-1606-1bfa-46b99a9352f4	2021-05-25 18:09:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:09:43.79+03	2021-05-25 18:09:43.797+03	
e18bc0f5-5e10-3ac1-18b4-5dee0a5326a0	2021-05-25 18:10:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 18:10:00.79+03	2021-05-25 18:10:00.794+03	ERROR
436b9a79-3016-938e-3085-519d8ace064c	2021-05-25 18:10:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:10:13.791+03	2021-05-25 18:10:13.798+03	
8a28fc27-b023-e992-e69b-fd03efcba50b	2021-05-25 18:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:10:34.79+03	2021-05-25 18:10:34.816+03	
269490bf-9959-bdf1-1448-dbd6dac90046	2021-05-25 18:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:10:54.79+03	2021-05-25 18:10:54.816+03	
d4a923ac-d169-a2ab-392b-8a2f71f37127	2021-05-25 18:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:11:14.79+03	2021-05-25 18:11:14.796+03	
ebf14683-34ea-ea4b-038e-6d38f693c104	2021-05-25 18:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:11:34.79+03	2021-05-25 18:11:34.796+03	
b49215b1-ab6e-ab05-5455-432447863a6a	2021-05-25 18:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:11:54.79+03	2021-05-25 18:11:54.796+03	
3150af15-2042-892d-47b7-85b5e7f73fce	2021-05-25 18:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:12:14.79+03	2021-05-25 18:12:14.8+03	
8e8e5ddd-4978-91ae-17d5-20d31be605bc	2021-05-25 18:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:12:34.79+03	2021-05-25 18:12:34.806+03	
ec192b0a-92b0-4d76-aa5d-ef4fe968f4ce	2021-05-25 18:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:12:54.79+03	2021-05-25 18:12:54.803+03	
245f4ba4-9e7a-9bf3-d9d5-4e51a9793e87	2021-05-25 18:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:13:14.79+03	2021-05-25 18:13:14.81+03	
dd1110c0-61db-cb1c-1dc1-7ffe0d99d211	2021-05-25 18:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:13:34.79+03	2021-05-25 18:13:34.797+03	
3b72151c-91ee-c845-c69a-2568fd5f75d7	2021-05-25 18:13:55.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:13:55.791+03	2021-05-25 18:13:55.803+03	
84257fbe-1889-9091-aff7-e180afb7f5a7	2021-05-25 18:14:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:14:16.79+03	2021-05-25 18:14:16.806+03	
615c2b96-b58c-cae5-d1d2-e4836e0295c8	2021-05-25 18:14:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:14:36.79+03	2021-05-25 18:14:36.811+03	
f1ca6a9e-1f3d-2779-0048-e488e8dd1dfc	2021-05-25 18:14:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:14:56.79+03	2021-05-25 18:14:56.796+03	
71c0f32f-d933-20b0-117d-35f070e7f2f8	2021-05-25 18:15:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:15:16.79+03	2021-05-25 18:15:16.798+03	
b57eb4b1-14ce-5db4-9e23-d60ac59d6460	2021-05-25 18:15:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:15:36.79+03	2021-05-25 18:15:36.812+03	
ad489842-1183-54a1-8e85-daf6bdce1574	2021-05-25 17:55:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:55:21.79+03	2021-05-25 17:55:21.796+03	
52c48e33-ef7d-17a6-bb24-cc2a9b059168	2021-05-25 17:55:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:55:41.79+03	2021-05-25 17:55:41.808+03	
4a348db2-994d-a41c-02e2-93695137cac3	2021-05-25 17:56:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:56:01.79+03	2021-05-25 17:56:01.81+03	
7025e673-b2a6-d74e-df9c-673eb97dfa25	2021-05-25 17:56:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:56:21.79+03	2021-05-25 17:56:21.8+03	
a87a37f1-500c-f7c6-f2fd-82567f8a74c1	2021-05-25 17:56:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:56:41.79+03	2021-05-25 17:56:41.796+03	
dcf0f650-9b23-4859-062d-bd8d125d3392	2021-05-25 17:57:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:57:02.79+03	2021-05-25 17:57:02.797+03	
3800c1a5-9b64-25ea-1b4f-c0b36ee21fcb	2021-05-25 17:57:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:57:22.79+03	2021-05-25 17:57:22.797+03	
79daddf5-9be4-260d-3d55-c6b67a149e07	2021-05-25 17:57:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:57:42.79+03	2021-05-25 17:57:42.796+03	
b027a8ce-0f5f-a83d-a6e3-abdfdce91244	2021-05-25 17:58:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:58:02.79+03	2021-05-25 17:58:02.808+03	
90e5f8d7-5da5-a17f-2123-92a4c79e672c	2021-05-25 17:58:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:58:22.79+03	2021-05-25 17:58:22.796+03	
1c2504a1-3aab-e5da-1cd7-f42d8a092a6d	2021-05-25 17:58:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:58:42.79+03	2021-05-25 17:58:42.796+03	
8b939366-b78e-d14e-b138-dfe3dd2001fa	2021-05-25 17:59:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:59:02.79+03	2021-05-25 17:59:02.797+03	
80d70abf-54b1-2d60-b1c3-ae57aec9023c	2021-05-25 17:59:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:59:22.79+03	2021-05-25 17:59:22.796+03	
c19ace72-f4b8-d97c-796c-92f79fc50501	2021-05-25 17:59:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 17:59:42.79+03	2021-05-25 17:59:42.817+03	
9764fc05-efb7-2dd3-0607-e9e7a8bbb1a4	2021-05-25 18:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 18:00:00.79+03	2021-05-25 18:00:00.804+03	ERROR
6142e39e-c3a9-7021-dd8d-8becce9e7476	2021-05-25 18:00:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:00:12.79+03	2021-05-25 18:00:12.806+03	
d8151e74-a2fc-5d51-ec16-91c6a324ab11	2021-05-25 18:00:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:00:32.79+03	2021-05-25 18:00:32.796+03	
dd5d3c16-c5a9-e187-1285-44df491d46b3	2021-05-25 18:00:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:00:52.79+03	2021-05-25 18:00:52.811+03	
090932e2-a4cd-c724-fe88-377f59f7b405	2021-05-25 18:01:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:01:12.79+03	2021-05-25 18:01:12.797+03	
05b238ea-1415-2045-b0dc-9b9eeee6be99	2021-05-25 18:01:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:01:32.79+03	2021-05-25 18:01:32.796+03	
121d3d47-2b29-222e-5d90-32d83d9eed14	2021-05-25 18:01:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:01:52.79+03	2021-05-25 18:01:52.796+03	
1adefa07-63dc-517d-ab04-e684d537fe98	2021-05-25 18:02:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:02:12.79+03	2021-05-25 18:02:12.798+03	
5329c7c0-dfa0-aec4-45f1-66a75425b9f1	2021-05-25 18:02:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:02:32.79+03	2021-05-25 18:02:32.81+03	
767a81e4-21ad-1369-f4e2-1faef8982747	2021-05-25 18:02:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:02:52.79+03	2021-05-25 18:02:52.796+03	
9ef277b1-c8b0-f747-4bb0-c0af47da5477	2021-05-25 18:03:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:03:12.79+03	2021-05-25 18:03:12.797+03	
d9bd0720-88f7-5d57-5f50-0018411f70af	2021-05-25 18:03:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:03:32.79+03	2021-05-25 18:03:32.81+03	
e8f2df6a-407d-197b-aa0f-c19e468a81a9	2021-05-25 18:03:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:03:52.79+03	2021-05-25 18:03:52.796+03	
bc383843-e7bf-b34a-2772-e85173b436d8	2021-05-25 18:04:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:04:12.79+03	2021-05-25 18:04:12.796+03	
e04d8eec-06dd-ca33-251f-a9ebc3b2fc61	2021-05-25 18:04:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:04:32.79+03	2021-05-25 18:04:32.808+03	
0cc61a93-7d26-352c-2cde-1657d16c436a	2021-05-25 18:04:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:04:52.79+03	2021-05-25 18:04:52.796+03	
ba2d725b-7ddc-1450-8b32-aa45c5e2df45	2021-05-25 18:05:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:05:12.79+03	2021-05-25 18:05:12.812+03	
ab940ee3-adf1-8468-2b6f-0c0ee39155f8	2021-05-25 18:05:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:05:33.79+03	2021-05-25 18:05:33.812+03	
05e50b3a-9c5b-0fa3-7d5e-e8b9ffa9d62e	2021-05-25 18:05:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:05:53.79+03	2021-05-25 18:05:53.797+03	
ec824730-814f-f288-7a1c-a0e10afbff65	2021-05-25 18:06:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:06:13.79+03	2021-05-25 18:06:13.796+03	
2e07ca80-a4f1-ed1b-2708-d374028749af	2021-05-25 18:06:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:06:33.79+03	2021-05-25 18:06:33.796+03	
82bc871f-8d1e-9761-4616-2f9688c42fc3	2021-05-25 18:06:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:06:53.79+03	2021-05-25 18:06:53.796+03	
82901607-2744-e256-157f-7ea6e9270cd9	2021-05-25 18:07:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:07:13.79+03	2021-05-25 18:07:13.796+03	
ea97add7-eb15-9ac6-2c58-cf08888824be	2021-05-25 18:07:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:07:33.79+03	2021-05-25 18:07:33.842+03	
b6d7cfeb-b374-a4c2-7dea-f2ddd9f11135	2021-05-25 18:07:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:07:53.79+03	2021-05-25 18:07:53.796+03	
e2080cfb-5e34-0a75-53e1-f28d0cc4206b	2021-05-25 18:08:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:08:13.79+03	2021-05-25 18:08:13.796+03	
a7679542-d784-f62d-5ec3-be6728beffa5	2021-05-25 18:08:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:08:33.79+03	2021-05-25 18:08:33.796+03	
09e90396-c4cb-0d41-3d4b-e51c9526c817	2021-05-25 18:08:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:08:53.79+03	2021-05-25 18:08:53.797+03	
c9c65e2f-5a8e-84e5-ec18-15df6d2d7365	2021-05-25 18:09:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:09:13.79+03	2021-05-25 18:09:13.796+03	
35952b6e-e705-4e58-6faa-ebad7ec0b538	2021-05-25 18:09:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:09:33.79+03	2021-05-25 18:09:33.796+03	
fa9bc0f1-9b07-1a28-1c88-5029ecf4e118	2021-05-25 18:09:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:09:53.79+03	2021-05-25 18:09:53.796+03	
bb51c4c1-8ce1-f633-65ed-7e6d3a06bf24	2021-05-25 18:10:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:10:03.79+03	2021-05-25 18:10:03.8+03	
75d87b49-4180-1dca-b137-0028e8f1c193	2021-05-25 18:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:10:24.79+03	2021-05-25 18:10:24.796+03	
23db2b58-fb28-0e34-1af0-ced64f0dd6f0	2021-05-25 18:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:10:44.79+03	2021-05-25 18:10:44.797+03	
c703ff5f-0cd2-6627-3059-eeb2dccd77db	2021-05-25 18:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:11:04.79+03	2021-05-25 18:11:04.797+03	
11d05932-d8e6-79e9-6a02-be4c44790eef	2021-05-25 18:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:11:24.79+03	2021-05-25 18:11:24.796+03	
21821483-07c0-1f57-8ad4-b452c99fbfd1	2021-05-25 18:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:11:44.79+03	2021-05-25 18:11:44.797+03	
456433e9-3d09-8b55-7036-aa7d09f74e7c	2021-05-25 18:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:12:04.79+03	2021-05-25 18:12:04.797+03	
edf44c23-16dd-98ff-77a6-43c95c7ce816	2021-05-25 18:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:12:24.79+03	2021-05-25 18:12:24.796+03	
76930239-f2b1-0cec-1d77-66efa8f582bd	2021-05-25 18:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:12:44.79+03	2021-05-25 18:12:44.797+03	
04a9f32c-cdd7-9774-d0f0-13d35309d3ac	2021-05-25 18:13:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:13:04.79+03	2021-05-25 18:13:04.81+03	
6b7c8e08-1a43-9c1e-a545-410fdc542cc1	2021-05-25 18:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:13:24.79+03	2021-05-25 18:13:24.799+03	
3832fb01-27cf-8cdd-1422-0da7038d1683	2021-05-25 18:13:44.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:13:44.792+03	2021-05-25 18:13:44.807+03	
13eff99b-c2b2-291f-584a-60d787a04b89	2021-05-25 18:14:05.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:14:05.792+03	2021-05-25 18:14:05.803+03	
b914ad46-3556-a0c7-1ebd-65d3967ce9a2	2021-05-25 18:14:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:14:26.79+03	2021-05-25 18:14:26.798+03	
49d6d961-657a-c5e6-470a-d4e98677a0d4	2021-05-25 18:14:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:14:46.79+03	2021-05-25 18:14:46.797+03	
663c4975-0d93-4271-86d2-4b1471216a14	2021-05-25 18:15:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:15:06.79+03	2021-05-25 18:15:06.811+03	
183f8b2f-8c9b-bfb0-0b39-ca3ad5550edf	2021-05-25 18:15:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:15:26.79+03	2021-05-25 18:15:26.797+03	
f88c5602-f76a-96c1-c0b0-b7a0f76afc67	2021-05-25 18:15:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:15:46.79+03	2021-05-25 18:15:46.799+03	
7573cc4e-c086-b214-b9df-f92c18e34581	2021-05-25 18:15:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:15:56.79+03	2021-05-25 18:15:56.796+03	
e1a8e769-58b1-ce36-02f1-ce4afc196d50	2021-05-25 18:16:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:16:16.79+03	2021-05-25 18:16:16.797+03	
d3e659be-6515-4f22-50de-68520982635a	2021-05-25 18:16:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:16:36.79+03	2021-05-25 18:16:36.797+03	
4bb5d2dd-c460-c67d-84f4-3bd15b87f344	2021-05-25 18:16:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:16:56.79+03	2021-05-25 18:16:56.797+03	
955da24b-7eb7-ce35-4d93-5721e32db3e6	2021-05-25 18:17:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:17:16.79+03	2021-05-25 18:17:16.823+03	
2b83a0b4-6870-d766-6ed3-b2b7a77a1cdb	2021-05-25 18:17:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:17:36.79+03	2021-05-25 18:17:36.796+03	
93f9de16-ec88-f0f8-701e-831ef7636813	2021-05-25 18:17:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:17:56.79+03	2021-05-25 18:17:56.797+03	
3a8f1a74-5404-18df-32e2-9e1d4cc91ed3	2021-05-25 18:18:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:18:16.79+03	2021-05-25 18:18:16.806+03	
70cf7a66-8982-3684-f28a-f342520a1b72	2021-05-25 18:18:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:18:36.79+03	2021-05-25 18:18:36.796+03	
fb54b388-7ebf-403a-fcd1-a2a8c539664b	2021-05-25 18:18:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:18:57.79+03	2021-05-25 18:18:57.796+03	
6d8e4d3c-6eb5-894c-3580-969e48d60404	2021-05-25 18:19:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:19:17.79+03	2021-05-25 18:19:17.796+03	
d5401e10-1867-957e-bcf6-0cb4404268a0	2021-05-25 18:19:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:19:37.79+03	2021-05-25 18:19:37.796+03	
5b1fca8e-8cee-846a-4184-624ec08b4a3c	2021-05-25 18:19:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:19:57.79+03	2021-05-25 18:19:57.8+03	
309e6e1d-93d3-9883-b3b3-1372d925473e	2021-05-25 18:20:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:20:07.79+03	2021-05-25 18:20:07.799+03	
c39670bf-c072-e26c-528c-b07bf6ef7705	2021-05-25 18:20:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:20:27.79+03	2021-05-25 18:20:27.801+03	
54b641a7-57c3-189a-0a34-af4c60c511d9	2021-05-25 18:20:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:20:47.79+03	2021-05-25 18:20:47.797+03	
43552004-5075-f889-60f4-a8d0eb8bfbb0	2021-05-25 18:21:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:21:07.79+03	2021-05-25 18:21:07.801+03	
46a6a12b-65c2-d909-f5ca-fa9e62cdc106	2021-05-25 18:21:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:21:27.79+03	2021-05-25 18:21:27.796+03	
b54e4f4b-519a-9f83-4301-c990d024c69d	2021-05-25 18:21:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:21:47.79+03	2021-05-25 18:21:47.796+03	
5850ef16-7193-69c0-5e49-828657ddd690	2021-05-25 18:22:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:22:07.79+03	2021-05-25 18:22:07.796+03	
9ac1d67b-cc9f-83be-0ed8-56313e5f57b7	2021-05-25 18:22:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:22:27.79+03	2021-05-25 18:22:27.796+03	
18b2aa16-be0c-1598-d70b-48f8153f4cc4	2021-05-25 18:22:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:22:47.79+03	2021-05-25 18:22:47.796+03	
31618ff7-1515-14e7-c6ff-61c9befd07fe	2021-05-25 18:23:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:23:07.79+03	2021-05-25 18:23:07.797+03	
820cdfb8-872b-b8c9-0781-4056a971293a	2021-05-25 18:23:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:23:27.79+03	2021-05-25 18:23:27.796+03	
08e3ba95-e35a-a109-6920-e08e3d382998	2021-05-25 18:23:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:23:47.79+03	2021-05-25 18:23:47.8+03	
3f90880c-494e-0a2f-6eba-7439242df720	2021-05-25 18:24:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:24:07.79+03	2021-05-25 18:24:07.796+03	
e0cb8ebe-171f-27b5-3c04-a8755046386d	2021-05-25 18:24:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:24:27.79+03	2021-05-25 18:24:27.796+03	
ea5eac60-fb54-cf53-1435-31a4c14a276e	2021-05-25 18:24:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:24:47.79+03	2021-05-25 18:24:47.796+03	
7af660af-5c09-db65-e58f-d3dc621b2dd0	2021-05-25 18:25:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:25:07.79+03	2021-05-25 18:25:07.801+03	
eff335d1-9bb1-c1ed-07b4-f5a395738416	2021-05-25 18:25:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:25:27.79+03	2021-05-25 18:25:27.797+03	
a7cad6ea-2798-e3de-e517-6a2d77048984	2021-05-25 18:25:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:25:47.79+03	2021-05-25 18:25:47.796+03	
4a18d98f-a06d-c8de-bbcc-f85695fedb1a	2021-05-25 18:26:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:26:07.79+03	2021-05-25 18:26:07.796+03	
8ba92d4e-754f-07ce-1fef-cf4bd6f0801a	2021-05-25 18:26:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:26:27.79+03	2021-05-25 18:26:27.796+03	
1467d753-fa88-6d1d-d5d2-68d00a075631	2021-05-25 18:26:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:26:47.79+03	2021-05-25 18:26:47.814+03	
69f65ba2-4dfa-f9eb-a700-283216944f42	2021-05-25 18:27:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:27:07.79+03	2021-05-25 18:27:07.797+03	
ade2573d-a56b-a880-61e1-4588567cc949	2021-05-25 18:27:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:27:27.791+03	2021-05-25 18:27:27.798+03	
1c87bc6a-3861-a2fa-d95e-5f7e25f7c0da	2021-05-25 18:27:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:27:48.79+03	2021-05-25 18:27:48.796+03	
035b47a2-9582-3518-93bd-c097e469e89e	2021-05-25 18:28:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:28:08.79+03	2021-05-25 18:28:08.797+03	
79b9c200-d4b5-7a37-c4a0-e31f307064ab	2021-05-25 18:28:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:28:28.79+03	2021-05-25 18:28:28.796+03	
10647077-a413-3f78-36fb-387853cec6f8	2021-05-25 18:28:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:28:48.79+03	2021-05-25 18:28:48.796+03	
66a9bca2-7a59-a973-d405-9d481b569b13	2021-05-25 18:29:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:29:08.79+03	2021-05-25 18:29:08.797+03	
1b289648-96ed-699b-1092-39291994b88e	2021-05-25 18:29:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:29:28.79+03	2021-05-25 18:29:28.81+03	
d5e1a705-3178-6984-36b6-00d45347dea9	2021-05-25 18:29:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:29:48.79+03	2021-05-25 18:29:48.796+03	
5db05c83-e90d-1a4f-4a9e-65ebe8a596f3	2021-05-25 18:30:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 18:30:00.79+03	2021-05-25 18:30:00.801+03	ERROR
cb75d82e-c2bb-b44d-ccd7-5035e4aeda92	2021-05-25 18:30:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:30:18.79+03	2021-05-25 18:30:18.796+03	
af571c81-0121-eb0e-e8dc-a39fa38783c3	2021-05-25 18:30:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:30:38.79+03	2021-05-25 18:30:38.796+03	
e0e2433f-ded0-9b9d-82da-e79820d8084f	2021-05-25 18:30:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:30:58.79+03	2021-05-25 18:30:58.797+03	
c3ffc2c0-33ab-661f-8a5b-1ab664c6bf82	2021-05-25 18:31:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:31:18.79+03	2021-05-25 18:31:18.796+03	
742a1b9f-74b3-2135-676b-896c3a06a700	2021-05-25 18:31:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:31:38.79+03	2021-05-25 18:31:38.796+03	
0606dd92-7d3e-462c-e6bc-f01b7d7ade2d	2021-05-25 18:31:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:31:58.79+03	2021-05-25 18:31:58.796+03	
65a1b4ce-08c7-d8f2-64c6-48adc21fc7da	2021-05-25 18:32:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:32:18.79+03	2021-05-25 18:32:18.815+03	
7c3e8139-5ddc-8699-725d-a84647ae4f6f	2021-05-25 18:32:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:32:38.79+03	2021-05-25 18:32:38.796+03	
42462ed5-ba54-af65-a58c-e35f4720fee1	2021-05-25 18:32:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:32:58.79+03	2021-05-25 18:32:58.797+03	
9bfd2f0c-4f42-2340-ec1f-84800a5cc2ab	2021-05-25 18:33:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:33:18.79+03	2021-05-25 18:33:18.797+03	
fef8083a-7c4a-9195-5dfa-e207da6057da	2021-05-25 18:33:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:33:38.79+03	2021-05-25 18:33:38.813+03	
b8a834de-44d9-5022-c3df-5e58d525f55f	2021-05-25 18:33:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:33:58.79+03	2021-05-25 18:33:58.797+03	
36e102f9-d0e2-e8e3-a745-53046b9561f1	2021-05-25 18:34:18.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:34:18.791+03	2021-05-25 18:34:18.81+03	
d54be1ea-12ca-08ab-cb35-310020615980	2021-05-25 18:34:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:34:39.79+03	2021-05-25 18:34:39.796+03	
96fb9726-e2ce-dbe2-c482-5fd3c6fbbd86	2021-05-25 18:34:59.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:34:59.792+03	2021-05-25 18:34:59.8+03	
c9dc24f5-7541-af78-bb8e-b7dc91130feb	2021-05-25 18:35:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:35:20.79+03	2021-05-25 18:35:20.797+03	
e2e1cfe3-01c8-3597-151a-83745f8c8114	2021-05-25 18:35:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:35:40.79+03	2021-05-25 18:35:40.797+03	
00935474-8a9d-d483-ebcd-7182631eeb6f	2021-05-25 18:36:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:36:00.79+03	2021-05-25 18:36:00.797+03	
f65b6a0d-37e3-2ca3-2248-b0c95cfb86f1	2021-05-25 18:36:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:36:20.79+03	2021-05-25 18:36:20.797+03	
cf9d2e70-11fb-3e64-f9f9-c40adbed4d10	2021-05-25 18:16:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:16:06.79+03	2021-05-25 18:16:06.802+03	
41dec20a-cdcd-1742-96a8-45a3eafbc53a	2021-05-25 18:16:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:16:26.79+03	2021-05-25 18:16:26.798+03	
017392ba-f70e-f79e-1a77-3eec3e24a4bc	2021-05-25 18:16:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:16:46.79+03	2021-05-25 18:16:46.797+03	
c2dca24a-d969-1125-83e7-56cf1a33d3b9	2021-05-25 18:17:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:17:06.79+03	2021-05-25 18:17:06.796+03	
4523e10c-161e-9adb-d92e-1d06be1b9eae	2021-05-25 18:17:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:17:26.79+03	2021-05-25 18:17:26.799+03	
da10fadd-4410-bc55-45e1-285049469080	2021-05-25 18:17:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:17:46.79+03	2021-05-25 18:17:46.798+03	
f36f9920-2171-fea5-4558-54706280dc76	2021-05-25 18:18:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:18:06.79+03	2021-05-25 18:18:06.796+03	
f6761ff6-0747-2871-7a9c-01426ff0b74c	2021-05-25 18:18:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:18:26.79+03	2021-05-25 18:18:26.797+03	
7d8c92c4-18e7-51bf-45d0-b6f511450759	2021-05-25 18:18:46.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:18:46.792+03	2021-05-25 18:18:46.806+03	
f7bfde68-a593-b4bb-ca36-82fa08034d6f	2021-05-25 18:19:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:19:07.79+03	2021-05-25 18:19:07.796+03	
c1e9f2d5-588c-14c1-f519-2e365dd84051	2021-05-25 18:19:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:19:27.79+03	2021-05-25 18:19:27.796+03	
bc052b8f-7c57-60f4-11f9-7e128a74c5d6	2021-05-25 18:19:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:19:47.79+03	2021-05-25 18:19:47.811+03	
e0ef4004-ea02-ac5f-013f-1f77d5e35cab	2021-05-25 18:20:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 18:20:00.791+03	2021-05-25 18:20:00.819+03	ERROR
7958887a-c6f5-1fff-198f-58ad8dd0f189	2021-05-25 18:20:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:20:17.79+03	2021-05-25 18:20:17.81+03	
036c6515-b5f4-b296-d7c3-269144bea5c5	2021-05-25 18:20:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:20:37.79+03	2021-05-25 18:20:37.81+03	
006f7524-136e-9823-fb0a-dd373abda0bc	2021-05-25 18:20:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:20:57.79+03	2021-05-25 18:20:57.798+03	
b90fe097-005d-b760-8cce-8813fc8baa60	2021-05-25 18:21:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:21:17.79+03	2021-05-25 18:21:17.8+03	
2007b12a-6515-5325-a60c-797607a80dbe	2021-05-25 18:21:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:21:37.79+03	2021-05-25 18:21:37.798+03	
df50353e-beaa-f707-7f44-4ef292243faa	2021-05-25 18:21:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:21:57.79+03	2021-05-25 18:21:57.796+03	
553193e1-c2c2-3f82-ff55-61e0f97cc5f3	2021-05-25 18:22:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:22:17.79+03	2021-05-25 18:22:17.796+03	
c3db63c5-bcc1-4476-5d8a-88d64ed6e9cf	2021-05-25 18:22:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:22:37.79+03	2021-05-25 18:22:37.803+03	
0f0cd1a4-35dc-7718-fdaf-d4da84cdb338	2021-05-25 18:22:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:22:57.79+03	2021-05-25 18:22:57.797+03	
7bbbc94c-6bdc-3617-1fa0-67d9ad82848a	2021-05-25 18:23:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:23:17.79+03	2021-05-25 18:23:17.802+03	
3a033910-7577-bb3a-694b-1bc5d14703d3	2021-05-25 18:23:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:23:37.79+03	2021-05-25 18:23:37.796+03	
bad5ad89-1700-89b8-bc36-ed51f1f39751	2021-05-25 18:23:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:23:57.79+03	2021-05-25 18:23:57.796+03	
566d59ee-9cac-0d23-51a6-6f75debf2d9a	2021-05-25 18:24:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:24:17.79+03	2021-05-25 18:24:17.799+03	
8bb77752-e850-44ef-821f-f9bc2225713d	2021-05-25 18:24:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:24:37.79+03	2021-05-25 18:24:37.799+03	
89a5cf9d-bef3-7850-0ad8-dec51269da75	2021-05-25 18:24:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:24:57.79+03	2021-05-25 18:24:57.798+03	
fe46e269-b734-1ae9-cfbe-26f028774dba	2021-05-25 18:25:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:25:17.79+03	2021-05-25 18:25:17.811+03	
4ed3a07d-d156-6e94-4c1c-92db66a1cf7c	2021-05-25 18:25:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:25:37.79+03	2021-05-25 18:25:37.796+03	
c27d7310-3388-1190-08c9-ced5fb1c8fa7	2021-05-25 18:25:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:25:57.79+03	2021-05-25 18:25:57.796+03	
ff906029-b66c-dacb-e01d-3864a24ead2f	2021-05-25 18:26:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:26:17.79+03	2021-05-25 18:26:17.815+03	
1b82d9a8-fb62-e905-46c7-29eb4649de81	2021-05-25 18:26:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:26:37.79+03	2021-05-25 18:26:37.796+03	
0a48f7ee-aed0-84bf-4b54-c8fb768bce52	2021-05-25 18:26:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:26:57.79+03	2021-05-25 18:26:57.807+03	
46122bed-e19b-4154-96bb-f70b957cbf73	2021-05-25 18:27:17.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:27:17.791+03	2021-05-25 18:27:17.82+03	
060924bd-3579-260e-7b3e-7250cc6e27dc	2021-05-25 18:27:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:27:38.79+03	2021-05-25 18:27:38.796+03	
985248ca-ab1d-4b6a-c615-ab3fd5f81747	2021-05-25 18:27:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:27:58.79+03	2021-05-25 18:27:58.796+03	
178ebd6a-9ebc-9207-1c89-3444f27cf452	2021-05-25 18:28:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:28:18.79+03	2021-05-25 18:28:18.811+03	
3df07bb0-1ac9-661d-2c7f-52ab4bf4c4db	2021-05-25 18:28:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:28:38.79+03	2021-05-25 18:28:38.796+03	
8e076cc4-0d91-0558-2646-9f4f2bddb161	2021-05-25 18:28:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:28:58.79+03	2021-05-25 18:28:58.796+03	
9e295239-dfdd-989d-6c85-4dfc1af7dd32	2021-05-25 18:29:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:29:18.79+03	2021-05-25 18:29:18.796+03	
9f713556-b470-fbde-7fbd-b14061d8c7f0	2021-05-25 18:29:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:29:38.79+03	2021-05-25 18:29:38.796+03	
51dc6754-90ad-bff7-ba08-4821e3a75b85	2021-05-25 18:29:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:29:58.79+03	2021-05-25 18:29:58.796+03	
b3a46ce7-d67e-d005-be44-c8361f4fa4f0	2021-05-25 18:30:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:30:08.79+03	2021-05-25 18:30:08.797+03	
c9bf6a73-a81b-2c74-0e9a-c3c549ac382a	2021-05-25 18:30:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:30:28.79+03	2021-05-25 18:30:28.796+03	
8095ddb3-a30a-bbad-4ee4-99c1e744dcde	2021-05-25 18:30:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:30:48.79+03	2021-05-25 18:30:48.796+03	
85269a81-1e26-3161-d65c-e741984933cc	2021-05-25 18:31:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:31:08.79+03	2021-05-25 18:31:08.8+03	
7f32b8ad-bef0-9883-c778-649cbc1d08e5	2021-05-25 18:31:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:31:28.79+03	2021-05-25 18:31:28.807+03	
072f45b0-b94d-dbe1-a103-528bd30089c1	2021-05-25 18:31:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:31:48.79+03	2021-05-25 18:31:48.796+03	
8bf5afc3-e833-d371-6422-fe241a4fa495	2021-05-25 18:32:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:32:08.79+03	2021-05-25 18:32:08.796+03	
3a153716-7539-75d2-8b59-a81bb9de71cc	2021-05-25 18:32:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:32:28.79+03	2021-05-25 18:32:28.809+03	
2fab59e3-60b3-e87c-ef80-41241152b33d	2021-05-25 18:32:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:32:48.79+03	2021-05-25 18:32:48.803+03	
30e176d0-e148-ceca-3f86-ca140cdaeac0	2021-05-25 18:33:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:33:08.79+03	2021-05-25 18:33:08.805+03	
f040915d-4922-abb8-0722-5fdcfe8b2dba	2021-05-25 18:33:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:33:28.79+03	2021-05-25 18:33:28.812+03	
57ab8794-ea0b-def8-fac4-6a12472ca2a4	2021-05-25 18:33:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:33:48.79+03	2021-05-25 18:33:48.796+03	
4aaac22d-362d-5bca-0866-5845476d96a5	2021-05-25 18:34:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:34:08.79+03	2021-05-25 18:34:08.796+03	
e93f78dc-e611-5c77-135d-c56c357d56bf	2021-05-25 18:34:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:34:29.79+03	2021-05-25 18:34:29.811+03	
5cc72446-2b6c-b3c7-2f65-6f4f649e4bcf	2021-05-25 18:34:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:34:49.79+03	2021-05-25 18:34:49.804+03	
8c8b9594-83e3-5a9e-4c4b-7a5e7bbd59cc	2021-05-25 18:35:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:35:10.79+03	2021-05-25 18:35:10.797+03	
7a7a42cd-09ca-2522-71ab-fb3e9df6e5d6	2021-05-25 18:35:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:35:30.79+03	2021-05-25 18:35:30.796+03	
a71d206a-076f-5322-8cbb-3138dc9bfd85	2021-05-25 18:35:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:35:50.79+03	2021-05-25 18:35:50.797+03	
0fe3aef9-f18a-1a4a-8c45-c982197e389e	2021-05-25 18:36:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:36:10.79+03	2021-05-25 18:36:10.798+03	
03b941d3-ee35-f80f-fca6-d0522b3614b0	2021-05-25 18:36:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:36:30.79+03	2021-05-25 18:36:30.799+03	
693bbbbe-e8b3-30d3-3f1a-00a1dc228f0f	2021-05-25 18:36:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:36:40.79+03	2021-05-25 18:36:40.796+03	
652dd3a2-7b4f-22cf-a3b4-0abe93f65bd6	2021-05-25 18:37:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:37:01.79+03	2021-05-25 18:37:01.802+03	
5459dce3-ca6d-5363-ea23-9ac011b65fd3	2021-05-25 18:37:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:37:21.79+03	2021-05-25 18:37:21.801+03	
cc3dfd2b-0ed8-807b-fbfa-7cdc1b9e04c4	2021-05-25 18:37:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:37:41.79+03	2021-05-25 18:37:41.797+03	
4cd12447-2d14-d735-80af-15d86f02f24f	2021-05-25 18:38:01.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:38:01.792+03	2021-05-25 18:38:01.804+03	
318d0195-8770-9060-61cc-6af4b3ce6e7d	2021-05-25 18:38:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:38:22.79+03	2021-05-25 18:38:22.796+03	
d0a004f0-8eed-4740-886a-74b3e6fbd61d	2021-05-25 18:38:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:38:42.79+03	2021-05-25 18:38:42.798+03	
6285c1bf-6be3-6e38-6584-7dd298ae29b5	2021-05-25 18:39:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:39:02.79+03	2021-05-25 18:39:02.796+03	
e2022312-3050-fbe4-d5fa-7e736b6e91ef	2021-05-25 18:39:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:39:22.79+03	2021-05-25 18:39:22.796+03	
46a86e26-e1c4-d54e-b721-55ee481208d7	2021-05-25 18:39:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:39:42.79+03	2021-05-25 18:39:42.796+03	
27bc3828-3f9e-6633-4110-eb2d84af3c90	2021-05-25 18:40:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 18:40:00.79+03	2021-05-25 18:40:00.794+03	ERROR
666d6646-7d65-de9f-fa46-8e04cf60a83d	2021-05-25 18:40:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:40:12.79+03	2021-05-25 18:40:12.796+03	
64b45f27-b65d-dcd1-672c-492038bbd88e	2021-05-25 18:40:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:40:32.79+03	2021-05-25 18:40:32.796+03	
c3e6d3af-fd73-0dd7-2a8a-7c37f83c720c	2021-05-25 18:40:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:40:52.79+03	2021-05-25 18:40:52.796+03	
9c0f4acd-f663-0dc4-12ef-03dcf78c997c	2021-05-25 18:41:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:41:12.79+03	2021-05-25 18:41:12.796+03	
1b4ed2f0-97b6-5142-3aa3-aa3307ecbfcf	2021-05-25 18:41:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:41:32.79+03	2021-05-25 18:41:32.814+03	Processed 1 emails
680f3f4f-50d5-0749-510f-cc782a3ebc7a	2021-05-25 18:41:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:41:52.79+03	2021-05-25 18:41:52.801+03	Processed 1 emails
c813cd93-5a56-7d96-6288-f60ee587e035	2021-05-25 18:42:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:42:12.79+03	2021-05-25 18:42:12.822+03	Processed 1 emails
31b6a765-7658-de8f-41e5-1c3552ce30e8	2021-05-25 18:42:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:42:22.79+03	2021-05-25 18:42:22.822+03	Processed 1 emails
c131840a-18c4-abf6-da13-a4ad4f2b8991	2021-05-25 18:42:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:42:42.79+03	2021-05-25 18:42:42.804+03	Processed 1 emails
cf73a5dc-b9e8-dc57-e3d7-df6924eb10c3	2021-05-25 18:43:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:43:02.79+03	2021-05-25 18:43:02.798+03	
fb9fcbff-020d-0ab1-efc4-bebf2192f915	2021-05-25 18:43:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:43:22.79+03	2021-05-25 18:43:22.801+03	
1968e554-354f-eb26-84c8-c43b1bd77b86	2021-05-25 18:43:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:43:42.79+03	2021-05-25 18:43:42.796+03	
36baadaf-b669-36ee-4264-0fc64c627d7e	2021-05-25 18:44:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:44:02.79+03	2021-05-25 18:44:02.797+03	
128a6f53-bdf1-3fe8-69e3-908a269a6c7e	2021-05-25 18:44:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:44:22.79+03	2021-05-25 18:44:22.806+03	
c946b0a4-0af3-69a1-f737-5173b8590ad0	2021-05-25 18:44:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:44:42.79+03	2021-05-25 18:44:42.796+03	
572c432a-87c9-1e62-f277-1cf0c29b3747	2021-05-25 18:45:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:45:02.79+03	2021-05-25 18:45:02.796+03	
aa20c666-3ef3-349f-679d-e65c4176fdd6	2021-05-25 18:45:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:45:22.79+03	2021-05-25 18:45:22.801+03	
346268b0-58bf-7896-5d25-2de38ad5f04d	2021-05-25 18:45:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:45:42.79+03	2021-05-25 18:45:42.797+03	
7d0ef5e7-9159-9ac0-03c1-3982233bd35d	2021-05-25 18:46:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:46:02.79+03	2021-05-25 18:46:02.798+03	
43e6ac1e-87d2-69ab-85e1-b50f2b4b2c00	2021-05-25 18:46:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:46:22.79+03	2021-05-25 18:46:22.796+03	
3cd57ef4-19e8-1a6c-032b-c93853f1fe8e	2021-05-25 18:46:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:46:42.79+03	2021-05-25 18:46:42.796+03	
02ba6797-7dac-a84e-9de3-4a31dc8c4c78	2021-05-25 18:47:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:47:02.79+03	2021-05-25 18:47:02.797+03	
463061bb-85cf-6176-febb-91bcba8690ce	2021-05-25 18:47:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:47:22.79+03	2021-05-25 18:47:22.796+03	
f164f621-851d-4455-e5e5-46b0d25a01d7	2021-05-25 18:47:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:47:42.79+03	2021-05-25 18:47:42.796+03	
45449dc9-d211-17de-d788-f1a4c92730ee	2021-05-25 18:48:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:48:02.79+03	2021-05-25 18:48:02.8+03	
9b805b2e-98b0-d599-03cc-19ae4c67b3e8	2021-05-25 18:48:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:48:23.79+03	2021-05-25 18:48:23.799+03	
bcebfb77-cde1-a6f1-3eae-d54b524d69ca	2021-05-25 18:48:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:48:43.79+03	2021-05-25 18:48:43.812+03	
1c3b90b2-1750-2cd0-9d95-90dde4e7afc8	2021-05-25 18:49:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:49:03.79+03	2021-05-25 18:49:03.796+03	
a95956df-321c-98de-5134-9649079c7604	2021-05-25 18:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:49:24.79+03	2021-05-25 18:49:24.797+03	
48e62a25-8e86-26dc-0559-bff5e3860116	2021-05-25 18:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:49:44.79+03	2021-05-25 18:49:44.796+03	
ad58df7c-92b3-c8fb-47e3-25690ca31477	2021-05-25 18:50:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 18:50:00.79+03	2021-05-25 18:50:00.815+03	ERROR
53ce32b5-53a9-ab5e-9cba-0ec7763fb846	2021-05-25 18:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:50:14.79+03	2021-05-25 18:50:14.796+03	
bd3143e3-341c-af58-0219-e8cf217d6709	2021-05-25 18:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:50:34.79+03	2021-05-25 18:50:34.809+03	
23033a35-c654-7d9f-2ac3-42429eb5704c	2021-05-25 18:50:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:50:54.79+03	2021-05-25 18:50:54.804+03	
b3ee611a-9f96-edcb-f52d-8901c932cfa9	2021-05-25 18:51:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:51:14.79+03	2021-05-25 18:51:14.812+03	
9394e5b4-b75e-902f-b3ef-5bcf3d162cf6	2021-05-25 18:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:51:34.79+03	2021-05-25 18:51:34.796+03	
4c5c4731-e9f2-6517-b627-e1c334e06b8d	2021-05-25 18:51:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:51:54.79+03	2021-05-25 18:51:54.797+03	
81e0955b-0527-50f9-c50f-c86d70a8be02	2021-05-25 18:52:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:52:14.79+03	2021-05-25 18:52:14.797+03	
2b642bd5-811c-0bbe-2438-5b29e78cc927	2021-05-25 18:52:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:52:34.79+03	2021-05-25 18:52:34.798+03	
05016b13-fe6e-df21-b8c2-9d09367988b5	2021-05-25 18:52:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:52:54.79+03	2021-05-25 18:52:54.811+03	
461de7a4-fff3-d278-2c5f-7f2546e8c779	2021-05-25 18:53:14.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:53:14.791+03	2021-05-25 18:53:14.807+03	
df804704-93e9-0caf-da04-2510c5e3e060	2021-05-25 18:53:35.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:53:35.79+03	2021-05-25 18:53:35.801+03	
c56bf15b-4988-cd75-73f2-c6fe9be65098	2021-05-25 18:53:55.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:53:55.79+03	2021-05-25 18:53:55.796+03	
e16bf486-ef64-e1af-b0dc-0cdb4306bf5a	2021-05-25 18:54:15.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:54:15.791+03	2021-05-25 18:54:15.797+03	
7924a9d5-6f93-617e-2e6f-1463728d9aaf	2021-05-25 18:54:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:54:36.79+03	2021-05-25 18:54:36.796+03	
ffb7799e-214f-3d6b-5f8f-71fe102392f4	2021-05-25 18:54:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:54:56.79+03	2021-05-25 18:54:56.8+03	
a62c9739-1640-e636-f76c-5268a2c7e1d0	2021-05-25 18:55:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:55:16.79+03	2021-05-25 18:55:16.8+03	
7428974c-e48c-2a34-bc36-105386b86b41	2021-05-25 18:55:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:55:36.79+03	2021-05-25 18:55:36.8+03	
c24126a1-2d64-f53d-2389-97924d979d41	2021-05-25 18:55:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:55:56.791+03	2021-05-25 18:55:56.808+03	
497c44a5-15d4-ffcc-1d3b-2e850f637607	2021-05-25 18:56:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:56:17.79+03	2021-05-25 18:56:17.798+03	
a706bd9c-2a70-3f36-75bf-17105833c913	2021-05-25 18:56:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:56:37.79+03	2021-05-25 18:56:37.797+03	
124cd3d7-aa9a-bb0c-ab76-52e72a9b1db8	2021-05-26 04:43:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:43:44.79+03	2021-05-26 04:43:44.797+03	
794730c5-14cb-2a1e-fafc-3a2b6823b2d6	2021-05-25 18:36:50.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:36:50.792+03	2021-05-25 18:36:50.806+03	
653dd592-4c61-6a8b-4068-1d371cfc333a	2021-05-25 18:37:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:37:11.79+03	2021-05-25 18:37:11.798+03	
290f60e8-d993-bce8-4c86-4dc75ef1cc96	2021-05-25 18:37:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:37:31.79+03	2021-05-25 18:37:31.801+03	
799fb274-d0d8-93dc-da08-7e9df592b872	2021-05-25 18:37:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:37:51.79+03	2021-05-25 18:37:51.796+03	
943bd1bb-f41f-47b9-c747-716959624bda	2021-05-25 18:38:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:38:12.79+03	2021-05-25 18:38:12.796+03	
5b4c292f-a32b-4a1e-2106-cf7c872095cb	2021-05-25 18:38:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:38:32.79+03	2021-05-25 18:38:32.815+03	
626de328-ebe5-616f-b1d9-fa717070a885	2021-05-25 18:38:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:38:52.79+03	2021-05-25 18:38:52.796+03	
a322f1ac-a2a1-c7af-31f6-e299bd1a9465	2021-05-25 18:39:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:39:12.79+03	2021-05-25 18:39:12.796+03	
67ec26c8-ac78-eb0a-7624-1a5442a92aab	2021-05-25 18:39:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:39:32.79+03	2021-05-25 18:39:32.808+03	
0be42da8-0289-5432-466e-9dd72e637783	2021-05-25 18:39:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:39:52.79+03	2021-05-25 18:39:52.796+03	
993e21d8-89d4-ea67-9abd-8dd78991ede8	2021-05-25 18:40:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:40:02.79+03	2021-05-25 18:40:02.796+03	
4c4e753b-c247-7dca-cba1-1ae316e0b5c5	2021-05-25 18:40:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:40:22.79+03	2021-05-25 18:40:22.797+03	
0f102e69-5a56-3e2a-1a25-60b274116b8e	2021-05-25 18:40:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:40:42.79+03	2021-05-25 18:40:42.796+03	
ad58ed4a-101f-c6c5-6548-f2d419a2f11f	2021-05-25 18:41:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:41:02.79+03	2021-05-25 18:41:02.796+03	
3408b930-3789-8eb6-b2a9-c877d17f38bd	2021-05-25 18:41:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:41:22.79+03	2021-05-25 18:41:22.811+03	Processed 1 emails
b8859446-5a64-e6b1-1797-b904e519f75d	2021-05-25 18:41:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:41:42.79+03	2021-05-25 18:41:42.799+03	Processed 1 emails
240de445-ab64-6d50-77eb-e0a33969dd42	2021-05-25 18:42:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:42:02.79+03	2021-05-25 18:42:02.798+03	Processed 1 emails
91f11599-9bac-807d-5071-ad3dcb693f04	2021-05-25 18:42:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:42:32.79+03	2021-05-25 18:42:32.804+03	Processed 1 emails
192dd0ab-b75f-ab60-8ae5-c381984eed80	2021-05-25 18:42:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:42:52.79+03	2021-05-25 18:42:52.824+03	Processed 1 emails
b981eb56-9aa6-5041-2f3e-13c873773019	2021-05-25 18:43:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:43:12.79+03	2021-05-25 18:43:12.797+03	
58de5609-ff27-e3ee-6ce0-84d54a84a3a4	2021-05-25 18:43:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:43:32.79+03	2021-05-25 18:43:32.796+03	
134c55c5-878d-9a52-0aaf-de1828f1c451	2021-05-25 18:43:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:43:52.79+03	2021-05-25 18:43:52.797+03	
65d453a4-489f-a80d-0394-d89457b919fe	2021-05-25 18:44:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:44:12.79+03	2021-05-25 18:44:12.797+03	
c99a6d2b-2b06-9de0-5faf-50bd7e74ade8	2021-05-25 18:44:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:44:32.79+03	2021-05-25 18:44:32.797+03	
cc8ac05e-7c6b-35b9-09c9-0e77f5fc5b72	2021-05-25 18:44:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:44:52.79+03	2021-05-25 18:44:52.82+03	
45e95b70-c385-ade4-8208-13a5eb581338	2021-05-25 18:45:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:45:12.79+03	2021-05-25 18:45:12.809+03	
cf074033-abe7-5982-d56d-b586a05e6474	2021-05-25 18:45:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:45:32.79+03	2021-05-25 18:45:32.796+03	
99de06b8-5307-66a1-280a-774213c4d0c1	2021-05-25 18:45:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:45:52.79+03	2021-05-25 18:45:52.815+03	
58ea866a-f45c-2c48-30d2-8a821a09fa97	2021-05-25 18:46:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:46:12.79+03	2021-05-25 18:46:12.796+03	
2ffd3fc7-9967-b0d8-5ae1-6ceea72b6618	2021-05-25 18:46:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:46:32.79+03	2021-05-25 18:46:32.796+03	
1c619b22-12ba-f4f1-56b8-76e780a6292d	2021-05-25 18:46:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:46:52.79+03	2021-05-25 18:46:52.796+03	
f8159b84-e650-2bb8-956e-7cc809a7e88e	2021-05-25 18:47:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:47:12.79+03	2021-05-25 18:47:12.811+03	
2f1ab4ed-a9b0-dd23-5f3f-d85c3a3699c0	2021-05-25 18:47:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:47:32.79+03	2021-05-25 18:47:32.797+03	
cfe6d322-1a2f-813a-d4dd-4a4f4a2ee1f4	2021-05-25 18:47:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:47:52.79+03	2021-05-25 18:47:52.797+03	
19600757-ecb8-77f9-555f-6d662893ace1	2021-05-25 18:48:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:48:12.791+03	2021-05-25 18:48:12.801+03	
d774b1ad-f861-9197-17b7-9bc269c6c6ec	2021-05-25 18:48:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:48:33.79+03	2021-05-25 18:48:33.796+03	
11d8e32c-29f9-4a95-debc-2b1cda2499d6	2021-05-25 18:48:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:48:53.79+03	2021-05-25 18:48:53.797+03	
48af85e0-19ab-caee-1479-dc640d633822	2021-05-25 18:49:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:49:13.791+03	2021-05-25 18:49:13.816+03	
37a7bac0-df67-5702-7c67-bbf46a631d99	2021-05-25 18:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:49:34.79+03	2021-05-25 18:49:34.796+03	
97c8339e-5706-38a6-5766-0c44e83a6a12	2021-05-25 18:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:49:54.79+03	2021-05-25 18:49:54.796+03	
e2e5b09e-7da9-2727-8af8-c8bfe9070be0	2021-05-25 18:50:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:50:04.79+03	2021-05-25 18:50:04.868+03	
de14e2c0-7e56-1422-484d-211328bdfe79	2021-05-25 18:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:50:24.79+03	2021-05-25 18:50:24.808+03	
96cfe8f6-5788-64ba-39aa-48b88465a3f4	2021-05-25 18:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:50:44.79+03	2021-05-25 18:50:44.796+03	
42c0cc0e-15f0-7664-102f-f14e8dc7e48e	2021-05-25 18:51:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:51:04.79+03	2021-05-25 18:51:04.806+03	
88e77567-b303-152a-2eda-06c36edf6ddf	2021-05-25 18:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:51:24.79+03	2021-05-25 18:51:24.796+03	
e6d5f5e3-8b65-2ea9-6fb9-7c2944f59058	2021-05-25 18:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:51:44.79+03	2021-05-25 18:51:44.806+03	
9e967568-486e-ebae-19f1-be0598949813	2021-05-25 18:52:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:52:04.79+03	2021-05-25 18:52:04.812+03	
04307110-a1df-28a3-f73d-c1512f9be109	2021-05-25 18:52:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:52:24.79+03	2021-05-25 18:52:24.797+03	
7cea05f5-5bc2-7f2c-f991-9ba0bf3163ac	2021-05-25 18:52:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:52:44.79+03	2021-05-25 18:52:44.797+03	
eaa5c87a-97a1-cb51-2452-b9c183d1387a	2021-05-25 18:53:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:53:04.79+03	2021-05-25 18:53:04.797+03	
e48b3b0c-add8-e617-0b48-81e89dbdf328	2021-05-25 18:53:25.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:53:25.79+03	2021-05-25 18:53:25.796+03	
b3f60ecc-b957-2d91-bc5b-8783a98b1cce	2021-05-25 18:53:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:53:45.79+03	2021-05-25 18:53:45.797+03	
9f87d139-4a05-35c2-f9a6-c94a0c267ddc	2021-05-25 18:54:05.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:54:05.791+03	2021-05-25 18:54:05.797+03	
775eee7b-3710-5a9a-a6f1-e1ac4e9ddcf3	2021-05-25 18:54:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:54:26.79+03	2021-05-25 18:54:26.797+03	
024a0ef7-ef66-d683-39fc-a1c2e5edffba	2021-05-25 18:54:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:54:46.79+03	2021-05-25 18:54:46.8+03	
8b225292-c967-ee18-d8aa-bfb83d5ae735	2021-05-25 18:55:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:55:06.79+03	2021-05-25 18:55:06.801+03	
859dce29-6594-9c42-cdd9-66cc6fb465ed	2021-05-25 18:55:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:55:26.79+03	2021-05-25 18:55:26.796+03	
a9b77231-ec54-0060-d080-bccdd165d041	2021-05-25 18:55:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:55:46.79+03	2021-05-25 18:55:46.796+03	
24bd8725-6e7a-30e9-db02-6d9bc6d04f48	2021-05-25 18:56:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:56:07.79+03	2021-05-25 18:56:07.797+03	
f0257d6e-a286-8e89-f51d-42f97d713683	2021-05-25 18:56:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:56:27.79+03	2021-05-25 18:56:27.814+03	
27c13470-fa42-f46a-9602-8742349b7239	2021-05-25 18:56:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:56:47.79+03	2021-05-25 18:56:47.797+03	
5539ac93-f019-ef67-bc56-65cde25155d1	2021-05-25 18:57:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:57:07.79+03	2021-05-25 18:57:07.807+03	
98e9b9e9-f6ae-20f8-b73a-4c86416fc893	2021-05-25 18:56:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:56:57.79+03	2021-05-25 18:56:57.798+03	
9d1fff88-a5e0-d9e1-5586-1f10d7ada1ce	2021-05-25 18:57:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:57:17.79+03	2021-05-25 18:57:17.798+03	
a964e0b4-e473-f274-f0fa-6deed4c102b9	2021-05-25 18:57:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:57:37.79+03	2021-05-25 18:57:37.797+03	
34d172ff-b0b3-4c00-b329-dd3a8e1a530a	2021-05-25 18:57:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:57:57.79+03	2021-05-25 18:57:57.796+03	
054025e5-e671-1c56-1079-b02accd11a39	2021-05-25 18:58:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:58:17.79+03	2021-05-25 18:58:17.796+03	
b60d07ac-6c54-1010-77a2-6feb44727fc1	2021-05-25 18:58:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:58:37.79+03	2021-05-25 18:58:37.813+03	
bee8d14a-4809-bdbb-0c7d-c2e49b3faf15	2021-05-25 18:58:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:58:57.79+03	2021-05-25 18:58:57.797+03	
02d2419f-3a26-9a0a-c38f-1e9932af54d2	2021-05-25 18:59:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:59:17.79+03	2021-05-25 18:59:17.796+03	
a4eec652-fb98-43d9-3208-23d1c16f9fad	2021-05-25 18:59:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:59:37.79+03	2021-05-25 18:59:37.796+03	
fa967cf8-4cb5-5511-98aa-f938727400d0	2021-05-25 18:59:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:59:57.79+03	2021-05-25 18:59:57.8+03	
3172d92a-7ae3-3e6b-9faf-ae572a80e281	2021-05-25 19:00:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:00:07.79+03	2021-05-25 19:00:07.796+03	
840065cd-9576-10f7-c551-9dd83c21521f	2021-05-25 19:00:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:00:27.79+03	2021-05-25 19:00:27.796+03	
e65b4e2a-9981-be98-4c4d-ce97d360e3a5	2021-05-25 19:00:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:00:47.79+03	2021-05-25 19:00:47.798+03	
ac0d9e5e-50f9-9f27-d472-a6ece8692cff	2021-05-25 19:01:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:01:07.79+03	2021-05-25 19:01:07.796+03	
ad67d757-e8c5-187c-290b-98f96abd3d75	2021-05-25 19:01:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:01:27.79+03	2021-05-25 19:01:27.806+03	
67c0245f-8b99-5a67-84f3-f119d4409e2a	2021-05-25 19:01:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:01:47.79+03	2021-05-25 19:01:47.796+03	
f6857d8d-200e-adab-cf6c-54d92fba0257	2021-05-25 19:02:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:02:07.79+03	2021-05-25 19:02:07.811+03	
bba394c0-8d21-cd8f-29fd-a98d3771b480	2021-05-25 19:02:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:02:27.79+03	2021-05-25 19:02:27.796+03	
c7f2738b-209c-62cc-3f23-11b47d3c4839	2021-05-25 19:02:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:02:47.79+03	2021-05-25 19:02:47.796+03	
9402a624-29f3-84c6-68dc-030fe7f29560	2021-05-25 19:03:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:03:07.79+03	2021-05-25 19:03:07.797+03	
95c91fd3-cf86-57e0-0fef-85854b434812	2021-05-25 19:03:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:03:27.79+03	2021-05-25 19:03:27.796+03	
b76fb911-da3d-a1f3-833d-8aa7b185a272	2021-05-25 19:03:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:03:47.79+03	2021-05-25 19:03:47.796+03	
98fc6ab4-4215-c261-95a1-19b2edc9d2fe	2021-05-25 19:04:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:04:07.79+03	2021-05-25 19:04:07.796+03	
75690f43-348d-ce88-af84-a80f442f6f27	2021-05-25 19:04:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:04:27.79+03	2021-05-25 19:04:27.796+03	
89195a46-c3ce-66ee-494d-b8ab997c9819	2021-05-25 19:04:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:04:47.79+03	2021-05-25 19:04:47.796+03	
e9ef8081-7801-06b2-bfa5-d015368dae09	2021-05-25 19:05:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:05:07.79+03	2021-05-25 19:05:07.81+03	
511beeb1-2352-e24e-d6b5-f55e09029a47	2021-05-25 19:05:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:05:27.79+03	2021-05-25 19:05:27.796+03	
09f12f87-5937-a008-f3af-761f3dd75d76	2021-05-25 19:05:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:05:47.79+03	2021-05-25 19:05:47.796+03	
cf27023c-6fcd-6e9c-e98a-4049803f4651	2021-05-25 19:06:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:06:07.79+03	2021-05-25 19:06:07.804+03	
da0701c5-c36d-a7a7-8ef3-9c48f37b4d83	2021-05-25 19:06:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:06:27.79+03	2021-05-25 19:06:27.814+03	
8ce0a6ff-3909-60db-26c0-f617d6bd1c3a	2021-05-25 19:06:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:06:47.79+03	2021-05-25 19:06:47.797+03	
ae708827-9c04-b219-0e90-dacfd836afc8	2021-05-25 19:07:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:07:07.79+03	2021-05-25 19:07:07.796+03	
cfe87a6d-6349-baaf-9028-63369eac1c73	2021-05-25 19:07:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:07:27.79+03	2021-05-25 19:07:27.796+03	
befa4c19-921b-d2a5-9399-70f7837a23ba	2021-05-25 19:07:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:07:47.79+03	2021-05-25 19:07:47.797+03	
5faf06a5-9e57-85ba-e7e0-07e64b7286bf	2021-05-25 19:08:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:08:07.79+03	2021-05-25 19:08:07.797+03	
b1b86929-0ff9-531b-ceb6-6ff23f4a5320	2021-05-25 19:08:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:08:27.79+03	2021-05-25 19:08:27.813+03	
16ab30af-dc8d-ec1f-7d5e-11a3df54992a	2021-05-25 19:08:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:08:47.79+03	2021-05-25 19:08:47.796+03	
36662935-de9a-6444-f413-5d9861071873	2021-05-25 19:09:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:09:07.79+03	2021-05-25 19:09:07.796+03	
f61ff0b5-a91e-110f-90e9-0beefad2cb76	2021-05-25 19:09:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:09:27.79+03	2021-05-25 19:09:27.811+03	
36f7d996-43e5-6176-0b57-3d657a288a51	2021-05-25 19:09:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:09:47.79+03	2021-05-25 19:09:47.799+03	
ad99de10-0a65-8bf7-b267-968af1a6ba2e	2021-05-25 19:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 19:10:00.79+03	2021-05-25 19:10:00.794+03	ERROR
9323344e-852a-7ca3-24fd-61d6192150c8	2021-05-25 19:10:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:10:17.79+03	2021-05-25 19:10:17.796+03	
e27e6067-09e9-22bf-c58c-a8a4f1eb68d7	2021-05-25 19:10:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:10:37.79+03	2021-05-25 19:10:37.799+03	
3ea635af-889f-6da9-5fec-3e6d0717657b	2021-05-25 19:10:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:10:57.79+03	2021-05-25 19:10:57.797+03	
2fbed3f5-03b1-9f26-fa35-ee09cb5af4fb	2021-05-25 19:11:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:11:17.79+03	2021-05-25 19:11:17.796+03	
f66743d0-bc58-3600-6a5a-bfa464f9e66c	2021-05-25 19:11:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:11:37.79+03	2021-05-25 19:11:37.796+03	
2e6a3725-e959-ff1c-4994-a2d80b4dc563	2021-05-25 19:11:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:11:57.79+03	2021-05-25 19:11:57.807+03	
b2f2cf97-2fc1-b00d-7647-b67a7bd0dd71	2021-05-25 19:12:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:12:17.79+03	2021-05-25 19:12:17.796+03	
098bf90e-9c4b-22ca-dae1-91bc14036685	2021-05-25 19:12:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:12:37.79+03	2021-05-25 19:12:37.809+03	
73060b6b-8d40-08dd-ca98-219a4f33efb8	2021-05-25 19:12:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:12:57.79+03	2021-05-25 19:12:57.798+03	
4c72a737-657d-73f0-955a-cc671e87bc46	2021-05-25 19:13:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:13:17.79+03	2021-05-25 19:13:17.796+03	
e1e59360-0ae0-6b6e-69d2-51c6ff9a1843	2021-05-25 19:13:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:13:37.79+03	2021-05-25 19:13:37.796+03	
baf3771d-c86c-c91d-fc3a-f0892179f3ba	2021-05-25 19:13:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:13:57.79+03	2021-05-25 19:13:57.796+03	
2c27c47e-7875-90f0-d0c7-7f50496609b2	2021-05-25 19:14:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:14:17.79+03	2021-05-25 19:14:17.796+03	
295c9a2a-6c42-446d-f17b-813b02e9e276	2021-05-25 19:14:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:14:37.79+03	2021-05-25 19:14:37.796+03	
2d2a246e-0f4b-9a4a-b280-21980725c536	2021-05-25 19:14:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:14:57.79+03	2021-05-25 19:14:57.796+03	
11ba93f6-26b0-7f6e-d64d-ef77470b5749	2021-05-25 19:15:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:15:17.79+03	2021-05-25 19:15:17.802+03	
98a8badd-b8e2-6cef-0d70-eea09b08e4f7	2021-05-25 19:15:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:15:37.79+03	2021-05-25 19:15:37.798+03	
b5d011e7-d314-43f4-bc8a-f0606e535539	2021-05-25 19:15:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:15:57.79+03	2021-05-25 19:15:57.796+03	
59f0f977-eb0a-c72e-5a02-12f2bdcac88d	2021-05-25 19:16:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:16:17.79+03	2021-05-25 19:16:17.797+03	
816d52f2-9bd5-631f-876d-ec2bddd51ee4	2021-05-25 19:16:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:16:37.79+03	2021-05-25 19:16:37.797+03	
b77d0165-40a4-7b8f-8510-fd3075310f51	2021-05-25 19:16:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:16:57.79+03	2021-05-25 19:16:57.797+03	
30920b5c-433a-cd3f-2eb5-5af090b6e0d1	2021-05-25 19:17:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:17:17.79+03	2021-05-25 19:17:17.796+03	
d7763764-051b-39d9-61ef-5a4fa5f9b92c	2021-05-25 18:57:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:57:27.79+03	2021-05-25 18:57:27.798+03	
eadde3c0-e626-d71f-53f1-869157e26de9	2021-05-25 18:57:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:57:47.79+03	2021-05-25 18:57:47.796+03	
329d1977-0e75-2a08-0c7e-76360bbf32a5	2021-05-25 18:58:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:58:07.79+03	2021-05-25 18:58:07.797+03	
0f540e9f-c58a-6357-c471-6abbf5b1f4a2	2021-05-25 18:58:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:58:27.79+03	2021-05-25 18:58:27.824+03	
d5c13d82-89ff-d58f-5780-03e1d78e2d8f	2021-05-25 18:58:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:58:47.79+03	2021-05-25 18:58:47.796+03	
ac9cdbd5-c702-cee2-7f74-5a5411771e64	2021-05-25 18:59:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:59:07.79+03	2021-05-25 18:59:07.808+03	
7f405e31-aa08-30f2-3672-2c718a86eb2b	2021-05-25 18:59:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:59:27.79+03	2021-05-25 18:59:27.796+03	
67fc76f6-a62f-93cc-0dcc-fedd8abca10f	2021-05-25 18:59:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 18:59:47.79+03	2021-05-25 18:59:47.796+03	
f2d3b422-b688-ad27-b4d8-4825abe089ec	2021-05-25 19:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 19:00:00.79+03	2021-05-25 19:00:00.796+03	ERROR
aa0cd510-44b4-0bf0-e2fc-3779c394bada	2021-05-25 19:00:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:00:17.79+03	2021-05-25 19:00:17.796+03	
163820d1-f4e9-c126-ad17-91252979463a	2021-05-25 19:00:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:00:37.79+03	2021-05-25 19:00:37.799+03	
b5d9c59b-f0c7-2260-8245-e26354317351	2021-05-25 19:00:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:00:57.79+03	2021-05-25 19:00:57.796+03	
47ce5a10-7be0-7368-2252-fffafc436335	2021-05-25 19:01:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:01:17.79+03	2021-05-25 19:01:17.796+03	
2cf68d76-186d-6a51-9937-5182500281c7	2021-05-25 19:01:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:01:37.79+03	2021-05-25 19:01:37.796+03	
342e8d37-97f4-9527-f900-731e8d7cc6f8	2021-05-25 19:01:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:01:57.79+03	2021-05-25 19:01:57.797+03	
e81dc347-473e-c5dc-7cca-feb0cc81d826	2021-05-25 19:02:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:02:17.79+03	2021-05-25 19:02:17.797+03	
0e2c71da-1a4e-8295-6196-5e1066dc1691	2021-05-25 19:02:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:02:37.79+03	2021-05-25 19:02:37.796+03	
4c52a7b2-f165-0e0b-2a06-1e72b14526b9	2021-05-25 19:02:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:02:57.79+03	2021-05-25 19:02:57.821+03	
a92b4253-1ed0-cf6b-e3b9-cf7e274d2340	2021-05-25 19:03:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:03:17.79+03	2021-05-25 19:03:17.821+03	
e2ce6f4b-6252-c4d5-aacb-1aa8ed01c3d1	2021-05-25 19:03:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:03:37.79+03	2021-05-25 19:03:37.796+03	
44b5b967-6376-bb77-149b-1c08fc876d64	2021-05-25 19:03:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:03:57.79+03	2021-05-25 19:03:57.796+03	
df859aa6-5009-a8d9-ae72-def397232078	2021-05-25 19:04:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:04:17.79+03	2021-05-25 19:04:17.796+03	
5c5ffe9b-25cc-b18d-7b94-13b853593613	2021-05-25 19:04:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:04:37.79+03	2021-05-25 19:04:37.799+03	
35f6caec-2cbd-1850-562e-654a999fe73a	2021-05-25 19:04:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:04:57.79+03	2021-05-25 19:04:57.796+03	
f593276a-6a9e-ce5a-1b58-fdb9e830a3e4	2021-05-25 19:05:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:05:17.79+03	2021-05-25 19:05:17.81+03	
d51d7498-9527-d74e-d9d1-6b83016df958	2021-05-25 19:05:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:05:37.79+03	2021-05-25 19:05:37.797+03	
11acf853-7492-2e9d-9c55-a1427e2fa4e5	2021-05-25 19:05:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:05:57.79+03	2021-05-25 19:05:57.797+03	
9bd185ac-9c3a-5194-7d99-0dc65ad44e07	2021-05-25 19:06:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:06:17.79+03	2021-05-25 19:06:17.796+03	
4032fbf1-2b5a-48f4-2e40-327ffc9563ab	2021-05-25 19:06:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:06:37.79+03	2021-05-25 19:06:37.798+03	
54135520-9194-b6fd-6577-364d8c6a6d1e	2021-05-25 19:06:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:06:57.79+03	2021-05-25 19:06:57.796+03	
bce8c058-1b58-8635-500b-2a4ff70a6bab	2021-05-25 19:07:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:07:17.79+03	2021-05-25 19:07:17.801+03	
01aaa707-b54f-ecaa-3aa4-f29ad97047db	2021-05-25 19:07:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:07:37.79+03	2021-05-25 19:07:37.797+03	
c71b00c8-7757-11b4-fc28-bc608a7671f2	2021-05-25 19:07:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:07:57.79+03	2021-05-25 19:07:57.797+03	
232db4db-8849-75c4-ebe5-a11e61081779	2021-05-25 19:08:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:08:17.79+03	2021-05-25 19:08:17.805+03	
0af2b384-91e7-0fdf-ea1b-a03910178056	2021-05-25 19:08:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:08:37.79+03	2021-05-25 19:08:37.796+03	
7391a3b0-4c98-c62a-14a2-4ce750c56f07	2021-05-25 19:08:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:08:57.79+03	2021-05-25 19:08:57.799+03	
5ab9a19b-d6c3-b504-3643-65c436c732d3	2021-05-25 19:09:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:09:17.79+03	2021-05-25 19:09:17.797+03	
8daf8203-1007-1dde-9161-31b99441500b	2021-05-25 19:09:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:09:37.79+03	2021-05-25 19:09:37.796+03	
aa257ef3-af35-8c21-353c-438bc3f63d8a	2021-05-25 19:09:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:09:57.79+03	2021-05-25 19:09:57.797+03	
3e529f78-40a3-11e0-0028-48213a54ed5c	2021-05-25 19:10:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:10:07.79+03	2021-05-25 19:10:07.796+03	
1ce98376-767d-6e51-3947-21c666f4dba5	2021-05-25 19:10:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:10:27.79+03	2021-05-25 19:10:27.796+03	
633b01fc-e673-c691-59db-752a450da380	2021-05-25 19:10:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:10:47.79+03	2021-05-25 19:10:47.8+03	
3281153f-83e5-92b2-f98d-d07afee262a1	2021-05-25 19:11:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:11:07.79+03	2021-05-25 19:11:07.809+03	
b1cf65e8-e97c-26bc-0998-3be3a88fe5ae	2021-05-25 19:11:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:11:27.79+03	2021-05-25 19:11:27.797+03	
95a5b01f-8b41-a80f-6a4f-4aa2c37930da	2021-05-25 19:11:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:11:47.79+03	2021-05-25 19:11:47.797+03	
1e178ea2-a9e1-74ee-b537-d4b48cb2216a	2021-05-25 19:12:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:12:07.79+03	2021-05-25 19:12:07.797+03	
49cefee8-813a-cf31-c736-2fd929a7bedb	2021-05-25 19:12:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:12:27.79+03	2021-05-25 19:12:27.798+03	
09b7bd46-87de-a7e0-cea3-edd5985dd4b8	2021-05-25 19:12:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:12:47.79+03	2021-05-25 19:12:47.796+03	
331677f2-ee74-aba0-fecb-a41801b42347	2021-05-25 19:13:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:13:07.79+03	2021-05-25 19:13:07.797+03	
9621ec18-ed03-7f3e-06a3-74c5ef266b75	2021-05-25 19:13:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:13:27.79+03	2021-05-25 19:13:27.811+03	
d17c2aa4-bd75-d1e7-ec6e-0309bcc92fde	2021-05-25 19:13:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:13:47.79+03	2021-05-25 19:13:47.796+03	
de37a301-5dc4-7b77-833a-28a646e01989	2021-05-25 19:14:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:14:07.79+03	2021-05-25 19:14:07.796+03	
b8150281-ce15-103a-a0eb-c12d831899fe	2021-05-25 19:14:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:14:27.79+03	2021-05-25 19:14:27.801+03	
5cf925ed-40e0-3d91-2076-4939ed46d61a	2021-05-25 19:14:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:14:47.79+03	2021-05-25 19:14:47.796+03	
70f6108f-5136-6581-8730-6f7b494e9e9c	2021-05-25 19:15:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:15:07.79+03	2021-05-25 19:15:07.8+03	
4f0edfef-1eb9-c521-7bb5-3d1be3a56bd2	2021-05-25 19:15:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:15:27.79+03	2021-05-25 19:15:27.8+03	
1ec5f19b-60be-eb5f-d3e0-1174799fc73a	2021-05-25 19:15:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:15:47.79+03	2021-05-25 19:15:47.796+03	
e10a33fa-317b-bdbc-f2cb-fde188b99d3a	2021-05-25 19:16:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:16:07.79+03	2021-05-25 19:16:07.802+03	
1416a08b-a780-c76c-1953-720fb7be82e9	2021-05-25 19:16:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:16:27.79+03	2021-05-25 19:16:27.797+03	
7ebc9a30-76cd-f49d-e628-098e094b8052	2021-05-25 19:16:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:16:47.79+03	2021-05-25 19:16:47.796+03	
a9251284-f885-79ca-dd1a-7ad5c79f4483	2021-05-25 19:17:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:17:07.79+03	2021-05-25 19:17:07.797+03	
cc7f6626-f502-1cc4-3235-b0ff825520a7	2021-05-25 19:17:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:17:27.79+03	2021-05-25 19:17:27.807+03	
1588879c-a870-24b5-fbde-1d0e6b5fe341	2021-05-25 19:17:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:17:47.79+03	2021-05-25 19:17:47.796+03	
44c4984e-91e0-4561-b010-d47aa2561c69	2021-05-25 19:17:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:17:37.79+03	2021-05-25 19:17:37.796+03	
403b2efc-f0f5-7ec7-289b-2e23f1440576	2021-05-25 19:17:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:17:57.79+03	2021-05-25 19:17:57.796+03	
e9455291-e0ca-a328-ef7d-c1b50c909779	2021-05-25 19:18:17.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:18:17.792+03	2021-05-25 19:18:17.811+03	
c7d57635-3efa-7ae5-1c69-bce99a8bbc14	2021-05-25 19:18:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:18:38.79+03	2021-05-25 19:18:38.797+03	
1124899e-04d0-893f-22e7-3deab5ef6c21	2021-05-25 19:18:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:18:58.79+03	2021-05-25 19:18:58.796+03	
9152fb28-c91f-a076-2e6d-6233772d32af	2021-05-25 19:19:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:19:18.79+03	2021-05-25 19:19:18.798+03	
22532717-db55-76ec-9f61-8e97b66a3a3f	2021-05-25 19:19:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:19:38.79+03	2021-05-25 19:19:38.797+03	
d3a23017-a512-a872-864e-e2b4ef57e67e	2021-05-25 19:19:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:19:58.79+03	2021-05-25 19:19:58.799+03	
37a8a048-f3cf-4f94-7316-c4afdc9b305c	2021-05-25 19:20:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:20:08.79+03	2021-05-25 19:20:08.812+03	
5c0b8e5b-264b-43e0-1178-1947166bbf55	2021-05-25 19:20:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:20:28.79+03	2021-05-25 19:20:28.809+03	
5d2848c4-26df-a08a-200d-bd07390d48a6	2021-05-25 19:20:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:20:48.79+03	2021-05-25 19:20:48.805+03	
a1809ab7-d54a-b432-ac2d-fec228e45118	2021-05-25 19:21:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:21:08.79+03	2021-05-25 19:21:08.799+03	
b40e4292-821a-8cb1-2e3a-266a3f4f2c47	2021-05-25 19:21:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:21:28.79+03	2021-05-25 19:21:28.796+03	
f5d45089-85c3-1ee6-2415-9b0f62ef71cc	2021-05-25 19:21:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:21:48.79+03	2021-05-25 19:21:48.802+03	
388931a1-2289-3bde-0b28-385b5b30c41e	2021-05-25 19:22:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:22:08.79+03	2021-05-25 19:22:08.796+03	
48da0283-3665-5a35-10a4-2cae4f05dbda	2021-05-25 19:22:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:22:28.79+03	2021-05-25 19:22:28.796+03	
f270dc6d-9315-2645-4900-08d2b8270b48	2021-05-25 19:22:48.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:22:48.791+03	2021-05-25 19:22:48.817+03	
b0291df5-f960-bec2-df78-01abb8805b89	2021-05-25 19:23:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:23:09.79+03	2021-05-25 19:23:09.805+03	
3075eb58-dadc-7f86-f928-43ab682c3449	2021-05-25 19:23:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:23:29.79+03	2021-05-25 19:23:29.797+03	
a1c829cf-0740-6abe-677a-3fab9667ad65	2021-05-25 19:23:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:23:49.79+03	2021-05-25 19:23:49.811+03	
a910f23d-fb3f-246c-a8d4-2eaa9a126731	2021-05-25 19:24:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:24:09.79+03	2021-05-25 19:24:09.8+03	
80cc0262-5c1f-904a-7386-56656df5d605	2021-05-25 19:24:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:24:29.79+03	2021-05-25 19:24:29.809+03	
eb024768-5d02-0560-ba31-b712cbe72816	2021-05-25 19:24:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:24:49.79+03	2021-05-25 19:24:49.801+03	
6167c57b-30e6-738f-dd40-8da3d2496e12	2021-05-25 19:25:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:25:09.79+03	2021-05-25 19:25:09.797+03	
57c2c32a-1869-6234-de7a-d515f59fcb53	2021-05-25 19:25:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:25:29.79+03	2021-05-25 19:25:29.797+03	
0e5c62bc-9145-1ecd-dd96-a5118f288b7a	2021-05-25 19:25:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:25:49.79+03	2021-05-25 19:25:49.796+03	
3210955f-3d32-a6ab-d622-7725db3c9be9	2021-05-25 19:26:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:26:09.79+03	2021-05-25 19:26:09.797+03	
5c84f20e-52d5-3898-d31f-4335fdb9fd9d	2021-05-25 19:26:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:26:29.79+03	2021-05-25 19:26:29.797+03	
0023bdbe-9c32-1232-c5f7-9531eea4a832	2021-05-25 19:26:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:26:49.79+03	2021-05-25 19:26:49.796+03	
414af3ac-f0ea-15c4-f094-e89501e719ae	2021-05-25 19:27:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:27:09.79+03	2021-05-25 19:27:09.796+03	
8b679c9a-0b37-29a2-ac08-67164bba092e	2021-05-25 19:27:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:27:29.79+03	2021-05-25 19:27:29.798+03	
7993d475-c9ac-a097-3bf9-300bb38b2f65	2021-05-25 19:27:49.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:27:49.792+03	2021-05-25 19:27:49.825+03	
44cffe88-284b-1ef7-779a-394891c32651	2021-05-25 19:28:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:28:10.791+03	2021-05-25 19:28:10.81+03	
da7ca753-89d3-b89a-fe62-fce6b516a745	2021-05-25 19:28:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:28:31.79+03	2021-05-25 19:28:31.796+03	
07aaf608-73d5-a24c-159c-2e1dfdcba612	2021-05-25 19:28:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:28:51.79+03	2021-05-25 19:28:51.796+03	
7caaacd5-e2c1-7981-4d16-423884e07470	2021-05-25 19:29:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:29:11.79+03	2021-05-25 19:29:11.797+03	
c5de9af5-8ebd-db1f-4792-61e63b6930a1	2021-05-25 19:29:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:29:31.79+03	2021-05-25 19:29:31.798+03	
7010009b-b8d0-d37d-e702-9c6d83e19349	2021-05-25 19:29:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:29:51.79+03	2021-05-25 19:29:51.796+03	
9af06529-8f8a-fdd6-b12a-c6c2790ac1f4	2021-05-25 19:30:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:30:01.79+03	2021-05-25 19:30:01.807+03	
0dd1140c-da0d-22ff-bcdc-be7f90de1cd8	2021-05-25 19:30:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:30:21.79+03	2021-05-25 19:30:21.797+03	
ac35b873-2f37-d9d8-e06f-f5a39a6e87c8	2021-05-25 19:30:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:30:41.79+03	2021-05-25 19:30:41.8+03	
6d5ce6ac-7092-0311-bf62-b64cbadb17e7	2021-05-25 19:31:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:31:01.79+03	2021-05-25 19:31:01.802+03	
41ec7db8-20f5-774a-8133-e8c9b272741c	2021-05-25 19:31:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:31:21.79+03	2021-05-25 19:31:21.796+03	
fec8a29d-909a-48e6-59a7-06ade23b4ddb	2021-05-25 19:31:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:31:41.79+03	2021-05-25 19:31:41.796+03	
68a37b2d-4dc0-479a-17af-109bfe7d9238	2021-05-25 19:32:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:32:01.79+03	2021-05-25 19:32:01.796+03	
5464d07d-526f-b403-4d1c-fb5812742c96	2021-05-25 19:32:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:32:21.79+03	2021-05-25 19:32:21.796+03	
f8db45db-626c-4429-4597-102efd4b471a	2021-05-25 19:32:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:32:41.79+03	2021-05-25 19:32:41.795+03	
2d5f4d59-9dae-11e4-a3ff-c45a7adac25a	2021-05-25 19:33:01.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:33:01.791+03	2021-05-25 19:33:01.817+03	
12f7012c-9c0e-b03b-6afc-f1388d3c3434	2021-05-25 19:33:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:33:22.79+03	2021-05-25 19:33:22.796+03	
ebf6fc3b-d7b2-1a92-e1cf-50654e9ff210	2021-05-25 19:33:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:33:42.79+03	2021-05-25 19:33:42.797+03	
64f04f59-cb6e-d54a-3fb7-2556bf53a2ef	2021-05-25 19:34:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:34:02.79+03	2021-05-25 19:34:02.796+03	
b4eceb43-f5ff-af5b-fded-51f3059a388b	2021-05-25 19:34:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:34:22.79+03	2021-05-25 19:34:22.796+03	
dac15a12-a22c-3565-15f4-dea2a25cbd1c	2021-05-25 19:34:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:34:42.79+03	2021-05-25 19:34:42.797+03	
4419d11b-240a-a943-4908-d2253db57eb0	2021-05-25 19:35:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:35:02.79+03	2021-05-25 19:35:02.798+03	
add3efff-6cff-ab96-580b-c6d7484675aa	2021-05-25 19:35:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:35:22.791+03	2021-05-25 19:35:22.797+03	
6fcbf144-b78a-641c-1c85-81e717d0e467	2021-05-25 19:35:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:35:43.79+03	2021-05-25 19:35:43.796+03	
0797453f-f2ea-1d75-5e9c-eb0020d6d048	2021-05-25 19:36:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:36:03.79+03	2021-05-25 19:36:03.796+03	
25d9b388-e386-be82-fda4-d46fdfc21234	2021-05-25 19:36:23.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:36:23.79+03	2021-05-25 19:36:23.801+03	
301ecdad-cab4-fe11-8155-9222f2e6553e	2021-05-25 19:36:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:36:43.79+03	2021-05-25 19:36:43.797+03	
8a8a0822-4431-6256-33a7-9ed0cb9c64e5	2021-05-25 19:37:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:37:03.79+03	2021-05-25 19:37:03.824+03	
c6ba34d7-7fe6-1bb4-e4e1-9b4035def898	2021-05-25 19:37:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:37:23.79+03	2021-05-25 19:37:23.801+03	
a2d07de5-1a8e-68a9-f91b-826e1263da77	2021-05-25 19:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:37:44.79+03	2021-05-25 19:37:44.796+03	
0781bf8a-d8b2-8ad1-81ba-d68f053b446f	2021-05-25 19:38:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:38:04.79+03	2021-05-25 19:38:04.8+03	
c952d924-35af-11f1-3b54-efc6c6a0b2a7	2021-05-25 19:18:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:18:07.79+03	2021-05-25 19:18:07.798+03	
edbadbdc-7da8-d2ff-67f9-ad559aae37af	2021-05-25 19:18:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:18:28.79+03	2021-05-25 19:18:28.808+03	
da1cae57-d790-0af7-427f-3c22dce00dc6	2021-05-25 19:18:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:18:48.79+03	2021-05-25 19:18:48.796+03	
eb885a92-2d6b-b105-0c8a-48b88a7a4f7f	2021-05-25 19:19:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:19:08.79+03	2021-05-25 19:19:08.796+03	
87e7c819-2433-dc1b-23b5-3c134147a88b	2021-05-25 19:19:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:19:28.79+03	2021-05-25 19:19:28.796+03	
81604554-c9cf-d9a5-9114-3d6145f4f3fc	2021-05-25 19:19:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:19:48.79+03	2021-05-25 19:19:48.796+03	
56e96f67-3054-1b7f-39e0-54ab35dd2d37	2021-05-25 19:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 19:20:00.79+03	2021-05-25 19:20:00.794+03	ERROR
daf54434-a566-1baa-e33a-27438d78ab7e	2021-05-25 19:20:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:20:18.79+03	2021-05-25 19:20:18.796+03	
b220bbe2-9fbe-5b6a-2b43-5daa073a2042	2021-05-25 19:20:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:20:38.79+03	2021-05-25 19:20:38.802+03	
6b00b6c7-8e62-5ded-ba99-fe84dd74fff2	2021-05-25 19:20:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:20:58.79+03	2021-05-25 19:20:58.798+03	
03bbb690-3ee6-176a-f347-73086a846649	2021-05-25 19:21:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:21:18.79+03	2021-05-25 19:21:18.805+03	
c4fff5ca-fa0c-d013-8548-69d9555a5ed0	2021-05-25 19:21:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:21:38.79+03	2021-05-25 19:21:38.796+03	
68952943-eda7-1513-740e-a533170a2c86	2021-05-25 19:21:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:21:58.79+03	2021-05-25 19:21:58.796+03	
86e1ac44-9196-fb5f-68d8-1d23ceafa540	2021-05-25 19:22:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:22:18.79+03	2021-05-25 19:22:18.802+03	
0ae234db-c2cc-bef8-9611-6559eb7b4ead	2021-05-25 19:22:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:22:38.79+03	2021-05-25 19:22:38.796+03	
4ddae623-ddd8-0cdd-279e-1dfbb375bc15	2021-05-25 19:22:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:22:59.79+03	2021-05-25 19:22:59.796+03	
b071aab2-e41d-ec97-6721-ed05f579523f	2021-05-25 19:23:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:23:19.79+03	2021-05-25 19:23:19.797+03	
9f6a7457-15e4-d9fc-1e2d-3d7cfad3b5a6	2021-05-25 19:23:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:23:39.79+03	2021-05-25 19:23:39.797+03	
7ad0b888-0db5-04df-5397-bda9d01bdf87	2021-05-25 19:23:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:23:59.79+03	2021-05-25 19:23:59.796+03	
6ac784a6-3ab8-5191-19f5-b26afba4cc42	2021-05-25 19:24:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:24:19.79+03	2021-05-25 19:24:19.796+03	
6f58cc6d-7a1c-b0d5-091d-8b7af7345ac2	2021-05-25 19:24:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:24:39.79+03	2021-05-25 19:24:39.8+03	
0fc25dc3-41f4-df93-1f0c-21e9ed6f67bd	2021-05-25 19:24:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:24:59.79+03	2021-05-25 19:24:59.796+03	
05599607-fe44-3313-8f6d-41425b840469	2021-05-25 19:25:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:25:19.79+03	2021-05-25 19:25:19.797+03	
b842238b-5ea1-48cf-c393-021136e0cf9e	2021-05-25 19:25:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:25:39.79+03	2021-05-25 19:25:39.798+03	
9418b0bf-df15-9e89-2b7c-a5f8aef65cd0	2021-05-25 19:25:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:25:59.79+03	2021-05-25 19:25:59.797+03	
9c98731f-a171-e41d-59cd-a3145023e70e	2021-05-25 19:26:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:26:19.79+03	2021-05-25 19:26:19.797+03	
554de022-7373-5beb-05f2-c6afc746f453	2021-05-25 19:26:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:26:39.79+03	2021-05-25 19:26:39.797+03	
3d73dd89-8880-d33a-ae81-ea7d2e9fb4b8	2021-05-25 19:26:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:26:59.79+03	2021-05-25 19:26:59.796+03	
efaf1b00-12ef-6045-f7ae-605e46ec8572	2021-05-25 19:27:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:27:19.79+03	2021-05-25 19:27:19.798+03	
002382ce-02e4-2476-72ea-9ae48c85591f	2021-05-25 19:27:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:27:39.79+03	2021-05-25 19:27:39.795+03	
bb87a364-dde1-a80b-4858-3f6f99a68635	2021-05-25 19:28:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:28:00.79+03	2021-05-25 19:28:00.8+03	
abc3e946-bf21-03f9-ec64-f84457f3036d	2021-05-25 19:28:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:28:21.79+03	2021-05-25 19:28:21.799+03	
73b209dc-e89d-7a7d-00e1-b65c9b47d675	2021-05-25 19:28:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:28:41.79+03	2021-05-25 19:28:41.796+03	
8ed09bf6-3d02-1150-0e4f-f85def7fc3b1	2021-05-25 19:29:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:29:01.79+03	2021-05-25 19:29:01.802+03	
d4e34349-bf08-31b7-cdb1-c52c7a1d6e1a	2021-05-25 19:29:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:29:21.79+03	2021-05-25 19:29:21.796+03	
5fba6dea-06b4-dafe-b00f-1e98d56d5123	2021-05-25 19:29:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:29:41.79+03	2021-05-25 19:29:41.797+03	
52ab6bcb-93ab-e29e-8ff5-86a416267635	2021-05-25 19:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 19:30:00.79+03	2021-05-25 19:30:00.795+03	ERROR
0cc09d9b-ecb2-665c-b11e-a315eed4e1cc	2021-05-25 19:30:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:30:11.79+03	2021-05-25 19:30:11.799+03	
89b3b0fe-db20-ba2f-01e8-8f2c1e6f2540	2021-05-25 19:30:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:30:31.79+03	2021-05-25 19:30:31.805+03	
847d714d-5332-5d00-59ca-510a0a537693	2021-05-25 19:30:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:30:51.79+03	2021-05-25 19:30:51.796+03	
6150f069-80dd-1c4f-b968-b7dd51d68a0e	2021-05-25 19:31:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:31:11.79+03	2021-05-25 19:31:11.797+03	
c4ab28da-b376-c926-6e72-452acd80d1c1	2021-05-25 19:31:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:31:31.79+03	2021-05-25 19:31:31.81+03	
8911a4ab-735e-c85a-d9c9-9c01195da652	2021-05-25 19:31:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:31:51.79+03	2021-05-25 19:31:51.796+03	
5730f84e-d6d1-a94a-5632-eea8e6894d93	2021-05-25 19:32:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:32:11.79+03	2021-05-25 19:32:11.796+03	
759d3175-fd37-6aae-7f20-b8acaced1126	2021-05-25 19:32:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:32:31.79+03	2021-05-25 19:32:31.796+03	
291c45eb-11a1-9c33-3cf8-91e515738d35	2021-05-25 19:32:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:32:51.791+03	2021-05-25 19:32:51.801+03	
c748fe85-ed69-f5ff-8f1b-215f5c593f69	2021-05-25 19:33:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:33:12.79+03	2021-05-25 19:33:12.797+03	
dc98fce8-7781-212d-1f0c-10e8d2c1e59a	2021-05-25 19:33:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:33:32.79+03	2021-05-25 19:33:32.796+03	
87f12ace-16d5-b87f-ed39-1d129cff427b	2021-05-25 19:33:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:33:52.79+03	2021-05-25 19:33:52.825+03	
cbf62377-fb1c-387c-4137-1424f967e53d	2021-05-25 19:34:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:34:12.79+03	2021-05-25 19:34:12.799+03	
ded58419-e8e9-ab40-f3b2-20163d40b45f	2021-05-25 19:34:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:34:32.79+03	2021-05-25 19:34:32.82+03	
f853c6f7-ac02-b277-1a5e-2e2976349f14	2021-05-25 19:34:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:34:52.79+03	2021-05-25 19:34:52.796+03	
39690019-dbe9-e4db-5bfd-e36a8714b303	2021-05-25 19:35:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:35:12.79+03	2021-05-25 19:35:12.797+03	
e87a50bd-ad58-6bc8-c908-eaae50ce351c	2021-05-25 19:35:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:35:33.79+03	2021-05-25 19:35:33.796+03	
564856ae-e230-b3d5-df34-64f685087bf8	2021-05-25 19:35:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:35:53.79+03	2021-05-25 19:35:53.797+03	
deee11e2-7da2-7c38-a34b-385747146a77	2021-05-25 19:36:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:36:13.79+03	2021-05-25 19:36:13.811+03	
ace41f02-f2ba-5424-a61d-2594aedf896d	2021-05-25 19:36:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:36:33.79+03	2021-05-25 19:36:33.796+03	
ea37d9f0-213d-864b-dae2-5e0c67893975	2021-05-25 19:36:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:36:53.79+03	2021-05-25 19:36:53.796+03	
e602a77c-a864-1bb2-0913-156d6c0ba8f6	2021-05-25 19:37:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:37:13.79+03	2021-05-25 19:37:13.796+03	
198b85ec-900f-241c-1a4b-f66f49c81f77	2021-05-25 19:37:33.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:37:33.791+03	2021-05-25 19:37:33.803+03	
dad02c3b-8bbe-6f06-6da1-19e0da471ddb	2021-05-25 19:37:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:37:54.79+03	2021-05-25 19:37:54.796+03	
fc26f257-0810-5fbc-dda8-84988e7d1aaf	2021-05-25 19:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:38:14.79+03	2021-05-25 19:38:14.797+03	
ef93b606-f04c-e26e-c9c6-4b8cc280e3e8	2021-05-25 19:38:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:38:34.79+03	2021-05-25 19:38:34.8+03	
25cb8418-2a17-f9c9-6ac9-9352b46137ca	2021-05-25 19:38:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:38:24.79+03	2021-05-25 19:38:24.796+03	
f92d1fcd-3732-5948-2424-65b17ac7a988	2021-05-25 19:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:38:44.79+03	2021-05-25 19:38:44.798+03	
aa645642-e32b-acad-1e0e-ff7e3c993fe4	2021-05-25 19:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:39:04.79+03	2021-05-25 19:39:04.798+03	
7c3c2e11-fa12-c1bf-45ee-2cff9ed043c6	2021-05-25 19:39:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:39:24.79+03	2021-05-25 19:39:24.796+03	
55aa5481-926a-75a0-1701-ef3c1d701730	2021-05-25 19:39:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:39:44.79+03	2021-05-25 19:39:44.796+03	
62c23b68-7585-f8b9-ba32-991f8f9655b0	2021-05-25 19:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 19:40:00.79+03	2021-05-25 19:40:00.799+03	ERROR
a4c9726b-7d5c-2a55-7133-268eb86d490d	2021-05-25 19:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:40:14.79+03	2021-05-25 19:40:14.798+03	
aefc990d-3c85-d489-ed39-407efc8f67dc	2021-05-25 19:40:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:40:34.79+03	2021-05-25 19:40:34.796+03	
35b9b8fa-89c0-130f-2480-6cff70aba051	2021-05-25 19:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:40:54.79+03	2021-05-25 19:40:54.797+03	
78d28777-41f0-4300-4c51-9553cd966a18	2021-05-25 19:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:41:14.79+03	2021-05-25 19:41:14.796+03	
541b0667-5095-85be-e035-2fd83781f3a1	2021-05-25 19:41:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:41:34.79+03	2021-05-25 19:41:34.796+03	
fc7865f4-a80c-0389-cc3b-4fdaca1257dc	2021-05-25 19:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:41:54.79+03	2021-05-25 19:41:54.81+03	
f93732ae-44d0-7ac3-011b-8faa7ed06ef0	2021-05-25 19:42:15.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:42:15.79+03	2021-05-25 19:42:15.8+03	
d3e7b43d-0114-d606-01ca-9e91ae6c67e9	2021-05-25 19:42:35.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:42:35.79+03	2021-05-25 19:42:35.797+03	
e9af1858-5a5a-af44-0af2-135bdf1bed25	2021-05-25 19:42:55.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:42:55.791+03	2021-05-25 19:42:55.796+03	
add1733a-18bc-241d-6841-39e8c935932d	2021-05-25 19:43:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:43:16.79+03	2021-05-25 19:43:16.798+03	
17a33cc2-c477-8e37-ce88-d57a10120fbf	2021-05-25 19:43:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:43:36.79+03	2021-05-25 19:43:36.796+03	
60246c00-3073-38e9-1b4a-4f5d2f4a504b	2021-05-25 19:43:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:43:56.79+03	2021-05-25 19:43:56.796+03	
7213323f-2d2a-221e-72ef-4d499a275077	2021-05-25 19:44:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:44:16.79+03	2021-05-25 19:44:16.796+03	
82116983-7871-74c9-0a82-12015eab9ffe	2021-05-25 19:44:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:44:36.79+03	2021-05-25 19:44:36.796+03	
74c8aedb-8e19-ab53-a3d4-f85ee86bd827	2021-05-25 19:44:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:44:56.79+03	2021-05-25 19:44:56.806+03	
3d097c42-f536-9025-474f-58213a5d8558	2021-05-25 19:45:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:45:16.79+03	2021-05-25 19:45:16.796+03	
d3ea1aed-c672-7d87-e4b4-8f5323606f76	2021-05-25 19:45:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:45:36.79+03	2021-05-25 19:45:36.796+03	
f1096e3f-5c38-0af8-4c9f-55acabbd7458	2021-05-25 19:45:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:45:56.79+03	2021-05-25 19:45:56.797+03	
1bd00215-0423-a915-8f5f-19c371c80e81	2021-05-25 19:46:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:46:16.79+03	2021-05-25 19:46:16.796+03	
aef5797a-063b-b420-3ecf-a2dbbb825b72	2021-05-25 19:46:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:46:46.79+03	2021-05-25 19:46:46.796+03	
99af5f9a-d81d-55fc-de7b-5f5961743529	2021-05-25 19:47:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:47:06.79+03	2021-05-25 19:47:06.809+03	
4cc717a5-0f35-9e21-ab95-baa65774747b	2021-05-25 19:47:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:47:26.79+03	2021-05-25 19:47:26.797+03	
2e3b0778-3ea7-99cf-8ebf-e824c23d2b2b	2021-05-25 19:47:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:47:46.79+03	2021-05-25 19:47:46.811+03	
867c5058-8229-6633-916a-3a4d6ac712ea	2021-05-25 19:48:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:48:06.79+03	2021-05-25 19:48:06.816+03	
eff88b02-5f93-bbea-c761-1c8702671c0f	2021-05-25 19:48:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:48:26.79+03	2021-05-25 19:48:26.796+03	
6fdf7ce2-aba7-96e9-a952-2c4b82ec4ce8	2021-05-25 19:48:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:48:46.79+03	2021-05-25 19:48:46.797+03	
6e8bd63e-0bff-6f3a-270f-662e87c94b54	2021-05-25 19:49:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:49:06.79+03	2021-05-25 19:49:06.796+03	
e5d6c67d-564c-1dd0-333b-2b0801aa23b5	2021-05-25 19:49:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:49:26.79+03	2021-05-25 19:49:26.797+03	
e6e30ee2-fdf1-26f6-d2d3-564a6881472e	2021-05-25 19:49:46.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:49:46.791+03	2021-05-25 19:49:46.801+03	
9b721971-9148-2df7-5069-d9ece12748c8	2021-05-25 19:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 19:50:00.79+03	2021-05-25 19:50:00.795+03	ERROR
20c077f2-7dd3-0a29-c54d-5b31a935cec7	2021-05-25 19:50:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:50:17.79+03	2021-05-25 19:50:17.796+03	
84e9fcdb-9dd8-e999-e7da-7e7bc69955f5	2021-05-25 19:50:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:50:47.79+03	2021-05-25 19:50:47.796+03	
663001bc-efb9-fa91-fa52-6c7a842ec53d	2021-05-25 19:51:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:51:07.79+03	2021-05-25 19:51:07.797+03	
2bc1cbf5-ab29-1235-759f-3800e353f842	2021-05-25 19:51:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:51:27.791+03	2021-05-25 19:51:27.811+03	
8e0409a2-c3e0-96ba-d0b5-49adfa3df39c	2021-05-25 19:51:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:51:48.79+03	2021-05-25 19:51:48.797+03	
932625c2-83ab-8fac-db1c-20e02b3e3caa	2021-05-25 19:52:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:52:08.79+03	2021-05-25 19:52:08.797+03	
20cb15b3-f21f-48e5-277d-580984caf45f	2021-05-25 19:52:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:52:28.79+03	2021-05-25 19:52:28.796+03	
13284f55-17e2-bb26-e320-5caf2eecb9cf	2021-05-25 19:52:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:52:48.79+03	2021-05-25 19:52:48.808+03	
034c158d-5997-f2a6-ddad-a2be72e4f502	2021-05-25 19:53:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:53:08.79+03	2021-05-25 19:53:08.797+03	
59deef3d-9263-04a0-1e51-c40bbc7164d3	2021-05-25 19:53:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:53:28.79+03	2021-05-25 19:53:28.796+03	
9f6cd7bf-9173-20a1-d6f0-388a9b145343	2021-05-25 19:53:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:53:48.79+03	2021-05-25 19:53:48.797+03	
d59c66d3-e6fb-65d0-81ce-4fda02cfba64	2021-05-25 19:54:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:54:08.79+03	2021-05-25 19:54:08.796+03	
a7ab6662-e187-e11f-9613-401f8a1d3adb	2021-05-25 19:54:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:54:28.79+03	2021-05-25 19:54:28.812+03	
f4f021b8-77f1-c386-81d5-40817eb474ec	2021-05-25 19:54:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:54:48.79+03	2021-05-25 19:54:48.796+03	
1778e6b7-bdf7-228f-2366-7b6b5d05813a	2021-05-25 19:55:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:55:08.79+03	2021-05-25 19:55:08.823+03	
0f1be069-3e57-a3cd-df19-e1169ad6bbaf	2021-05-25 19:55:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:55:28.79+03	2021-05-25 19:55:28.796+03	
2a27855b-11c7-49ee-4c39-f27f44c090bb	2021-05-25 19:55:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:55:48.79+03	2021-05-25 19:55:48.801+03	
9df749dc-4f22-828f-2d35-106ff5e15b65	2021-05-25 19:56:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:56:09.79+03	2021-05-25 19:56:09.797+03	
9f0c4f30-b975-0faf-94d2-bb775defedc1	2021-05-25 19:56:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:56:29.79+03	2021-05-25 19:56:29.796+03	
8bda0271-24f2-08af-8840-0fb6db058670	2021-05-25 19:56:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:56:49.79+03	2021-05-25 19:56:49.81+03	
a865634c-7225-b7a9-e84e-716843a8f4d8	2021-05-25 19:57:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:57:09.79+03	2021-05-25 19:57:09.797+03	
1f054331-87bc-a031-13ce-290413249744	2021-05-25 19:57:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:57:29.79+03	2021-05-25 19:57:29.803+03	
5f4b7ef8-c587-4bb7-1216-8d10fff72b96	2021-05-25 19:57:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:57:49.79+03	2021-05-25 19:57:49.8+03	
d55b5a6e-7299-ff86-28d0-17b2da907d4f	2021-05-25 19:58:09.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:58:09.791+03	2021-05-25 19:58:09.811+03	
471ffd6b-ec1a-892c-18e2-d4547bbb9a9e	2021-05-25 19:58:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:58:30.79+03	2021-05-25 19:58:30.795+03	
894a4c93-f9da-2e17-12d3-de1907d86f88	2021-05-25 19:58:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:58:50.79+03	2021-05-25 19:58:50.799+03	
f853d456-9bde-fdc8-c0df-b5240862d92e	2021-05-25 19:59:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:59:10.79+03	2021-05-25 19:59:10.797+03	
80db4a4a-7cbd-326a-85a3-4ad0b7078acc	2021-05-25 19:38:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:38:54.79+03	2021-05-25 19:38:54.797+03	
7bb61824-8877-4e70-0a9a-4f102c98c63f	2021-05-25 19:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:39:14.79+03	2021-05-25 19:39:14.81+03	
a504e52f-3f3c-3c96-5717-c3853aa3659b	2021-05-25 19:39:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:39:34.79+03	2021-05-25 19:39:34.812+03	
aeafd9ef-12d3-dc43-3080-bdc7599dd6cf	2021-05-25 19:39:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:39:54.79+03	2021-05-25 19:39:54.798+03	
8e58b158-f6c9-516a-f1f0-2327fd155a4d	2021-05-25 19:40:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:40:04.79+03	2021-05-25 19:40:04.8+03	
e5bc8598-4667-3a8e-a725-4bbf50c17816	2021-05-25 19:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:40:24.79+03	2021-05-25 19:40:24.795+03	
f84535d6-f35a-5ef8-f7e9-d38e579f82c3	2021-05-25 19:40:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:40:44.79+03	2021-05-25 19:40:44.797+03	
cc35f347-23fe-fc40-c4c6-d24625343fdc	2021-05-25 19:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:41:04.79+03	2021-05-25 19:41:04.796+03	
b76a547e-80cf-4b9a-a647-eca419f3517d	2021-05-25 19:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:41:24.79+03	2021-05-25 19:41:24.796+03	
3ec02bd7-9d6b-d883-3d81-f201cfc53ec1	2021-05-25 19:41:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:41:44.79+03	2021-05-25 19:41:44.848+03	
8ae98121-29c8-aa01-4948-ebde4c861b6f	2021-05-25 19:42:04.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:42:04.791+03	2021-05-25 19:42:04.81+03	
6dcbe3bf-b5d0-2439-8719-4297519863a4	2021-05-25 19:42:25.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:42:25.79+03	2021-05-25 19:42:25.797+03	
d82fd20b-2e90-4aa5-10df-bb3d0c31eee3	2021-05-25 19:42:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:42:45.79+03	2021-05-25 19:42:45.797+03	
7993fb62-6d57-0bfc-c68d-4ec8318526e7	2021-05-25 19:43:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:43:06.79+03	2021-05-25 19:43:06.8+03	
86d6304a-5334-5558-1d85-c44862304961	2021-05-25 19:43:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:43:26.79+03	2021-05-25 19:43:26.796+03	
7c4c7440-7bb7-4344-060d-79c650a81869	2021-05-25 19:43:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:43:46.79+03	2021-05-25 19:43:46.815+03	
719a2887-81c8-82fc-5adc-3f13acba19e0	2021-05-25 19:44:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:44:06.79+03	2021-05-25 19:44:06.797+03	
5b3ef946-4c2b-9b6a-029f-5847a9167d97	2021-05-25 19:44:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:44:26.79+03	2021-05-25 19:44:26.801+03	
1490d55f-4038-ee96-739e-30401d3757e5	2021-05-25 19:44:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:44:46.79+03	2021-05-25 19:44:46.796+03	
45500311-7f2a-05b0-1f90-030895988b7f	2021-05-25 19:45:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:45:06.79+03	2021-05-25 19:45:06.799+03	
c4e5abfe-f0ca-a982-3f2c-ac0ab1a38561	2021-05-25 19:45:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:45:26.79+03	2021-05-25 19:45:26.796+03	
52ab79c0-0f60-bb96-545d-0534199c4357	2021-05-25 19:45:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:45:46.79+03	2021-05-25 19:45:46.798+03	
a4ce0bf0-42f5-3779-704b-fef8cff94015	2021-05-25 19:46:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:46:06.79+03	2021-05-25 19:46:06.801+03	
a2ee97e9-b334-6be9-00d1-c1ed62ce6f06	2021-05-25 19:46:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:46:26.79+03	2021-05-25 19:46:26.795+03	
f2d9ef5e-c0e7-36e1-b4fa-8b67255a8d0f	2021-05-25 19:46:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:46:36.79+03	2021-05-25 19:46:36.81+03	
16c1c39a-6f6e-c5ce-9697-7f44bc24e8ec	2021-05-25 19:46:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:46:56.79+03	2021-05-25 19:46:56.8+03	
945e5325-fd95-08dc-feb8-29a675bed713	2021-05-25 19:47:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:47:16.79+03	2021-05-25 19:47:16.796+03	
883c4519-88e6-6dc6-2ef6-aeed2e1c0b49	2021-05-25 19:47:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:47:36.79+03	2021-05-25 19:47:36.797+03	
b6ac0e7a-5ceb-fbdf-0cbb-09c00e42e5bb	2021-05-25 19:47:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:47:56.79+03	2021-05-25 19:47:56.797+03	
d3f5f418-d305-c951-91de-c329d180f0f6	2021-05-25 19:48:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:48:16.79+03	2021-05-25 19:48:16.797+03	
1301cf3d-39a1-d64f-468e-04b06d36a5e3	2021-05-25 19:48:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:48:36.79+03	2021-05-25 19:48:36.797+03	
4c4f7146-8c7a-c177-67de-ce4f94aa3823	2021-05-25 19:48:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:48:56.79+03	2021-05-25 19:48:56.796+03	
4dabcf92-14e0-5241-64b0-0828ec086673	2021-05-25 19:49:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:49:16.79+03	2021-05-25 19:49:16.8+03	
a3add11f-2bd7-3f12-cbd2-a065ae8358e7	2021-05-25 19:49:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:49:36.79+03	2021-05-25 19:49:36.796+03	
f2c3669b-1ce3-3882-8f86-7e6676f6c62a	2021-05-25 19:49:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:49:57.79+03	2021-05-25 19:49:57.797+03	
ed334b5e-7761-61e4-708b-6514c474c2a4	2021-05-25 19:50:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:50:07.79+03	2021-05-25 19:50:07.797+03	
fd778e45-c8d3-44fd-68b6-c9509490f289	2021-05-25 19:50:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:50:27.79+03	2021-05-25 19:50:27.796+03	
dcb41c56-4d4d-2a33-be65-266f8acc556e	2021-05-25 19:50:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:50:37.79+03	2021-05-25 19:50:37.797+03	
7a871fe5-436b-d6db-532f-e53389042601	2021-05-25 19:50:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:50:57.79+03	2021-05-25 19:50:57.798+03	
61dce631-a2ab-0246-18c3-9305c3405151	2021-05-25 19:51:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:51:17.79+03	2021-05-25 19:51:17.796+03	
454d79dc-6d6c-651a-31b9-bfbf789981ce	2021-05-25 19:51:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:51:38.79+03	2021-05-25 19:51:38.797+03	
d72a09d4-12dd-4fc6-b84a-35b920a6ec69	2021-05-25 19:51:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:51:58.79+03	2021-05-25 19:51:58.8+03	
fec6bdc7-f096-1f38-155f-bca51c7d4580	2021-05-25 19:52:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:52:18.79+03	2021-05-25 19:52:18.796+03	
cafa93e2-5dc8-f74a-ca39-80934178174c	2021-05-25 19:52:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:52:38.79+03	2021-05-25 19:52:38.796+03	
a3054e9d-779d-3974-28cd-31464e5ff5ac	2021-05-25 19:52:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:52:58.79+03	2021-05-25 19:52:58.818+03	
41011888-ff42-6fb7-d988-44d7d1f7a081	2021-05-25 19:53:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:53:18.79+03	2021-05-25 19:53:18.796+03	
a818dabb-bd38-5a74-abd9-04716adda931	2021-05-25 19:53:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:53:38.79+03	2021-05-25 19:53:38.797+03	
d4ef528d-106f-0ab1-d743-77c23d2ced9a	2021-05-25 19:53:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:53:58.79+03	2021-05-25 19:53:58.799+03	
8d8e4bde-1c89-bf6c-5519-e3edd4bd1abb	2021-05-25 19:54:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:54:18.79+03	2021-05-25 19:54:18.796+03	
caa5a111-4a4e-d23d-31ec-d4b36b4a5d73	2021-05-25 19:54:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:54:38.79+03	2021-05-25 19:54:38.801+03	
9377a96b-0c6a-6478-0cd6-ac95d7dcb71c	2021-05-25 19:54:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:54:58.79+03	2021-05-25 19:54:58.798+03	
dcf8a29a-7d7f-dfea-d327-466cd3f63b59	2021-05-25 19:55:18.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:55:18.79+03	2021-05-25 19:55:18.805+03	
552c7d0a-1d63-5e7c-cc39-0917004dd178	2021-05-25 19:55:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:55:38.79+03	2021-05-25 19:55:38.797+03	
75a10885-46ce-7dd5-d535-7ec26bd914a3	2021-05-25 19:55:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:55:58.791+03	2021-05-25 19:55:58.812+03	
a8c396e8-efbe-3fa2-b79d-23e0c3b8dc0c	2021-05-25 19:56:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:56:19.79+03	2021-05-25 19:56:19.798+03	
5e468b1b-6bea-76f5-8093-00bfe29199ab	2021-05-25 19:56:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:56:39.79+03	2021-05-25 19:56:39.812+03	
24802ce9-1db1-d9bf-5227-8eb29db139a8	2021-05-25 19:56:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:56:59.79+03	2021-05-25 19:56:59.796+03	
770bfbcb-3b20-396c-90fc-4d1ff27bb572	2021-05-25 19:57:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:57:19.79+03	2021-05-25 19:57:19.796+03	
c9a61360-422d-79d6-5b17-e9c788313484	2021-05-25 19:57:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:57:39.79+03	2021-05-25 19:57:39.807+03	
8f7ce212-7f6d-f475-52ce-804e517fd760	2021-05-25 19:57:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:57:59.79+03	2021-05-25 19:57:59.796+03	
fbefdb5f-5109-be4b-4be1-f4ec9c71b201	2021-05-25 19:58:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:58:20.79+03	2021-05-25 19:58:20.797+03	
e9d3183c-2e31-772d-2c47-fcbc53d48a79	2021-05-25 19:58:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:58:40.79+03	2021-05-25 19:58:40.797+03	
a32414c7-2b8a-8868-511e-f65a57038d45	2021-05-25 19:59:00.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:59:00.79+03	2021-05-25 19:59:00.797+03	
5bd55a76-aa75-ab3f-c035-8e5378f5c0ea	2021-05-25 19:59:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:59:20.791+03	2021-05-25 19:59:20.798+03	
56c0f67b-8743-14dc-44fd-2655c68a1abd	2021-05-25 19:59:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:59:41.79+03	2021-05-25 19:59:41.796+03	
26070ed1-fc7c-d1b7-8ebc-9d5b8a5534f6	2021-05-25 20:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 20:00:00.79+03	2021-05-25 20:00:00.795+03	ERROR
8f71f615-a4e3-32ae-6a29-51b743c98baf	2021-05-25 20:00:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:00:11.79+03	2021-05-25 20:00:11.797+03	
3aba4d36-8351-43e7-286c-a35bee77bc81	2021-05-25 20:00:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:00:31.79+03	2021-05-25 20:00:31.812+03	
9f659580-cfdb-0fe6-fd90-e65d3370b16c	2021-05-25 20:00:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:00:51.79+03	2021-05-25 20:00:51.797+03	
81816b70-c606-d422-330d-6dc6629bee06	2021-05-25 20:01:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:01:12.79+03	2021-05-25 20:01:12.796+03	
7eb9d111-980b-e219-462b-67c8c173a2a9	2021-05-25 20:01:32.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:01:32.792+03	2021-05-25 20:01:32.812+03	
c845a093-506c-9b13-2b40-8153f231b6b8	2021-05-25 20:01:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:01:53.79+03	2021-05-25 20:01:53.801+03	
851c0400-3078-ae4d-0e74-657bc268db48	2021-05-25 20:02:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:02:13.79+03	2021-05-25 20:02:13.796+03	
ff08d11f-f38b-9c6c-5129-f0e6b238192d	2021-05-25 20:02:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:02:33.79+03	2021-05-25 20:02:33.796+03	
9db04a2c-6930-3913-4a9d-fa300d5df9c6	2021-05-25 20:02:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:02:53.79+03	2021-05-25 20:02:53.796+03	
c4f777f1-c233-d919-7179-d67805a220d0	2021-05-25 20:03:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:03:13.79+03	2021-05-25 20:03:13.796+03	
ed4cf846-1e76-4203-9e1c-811378ffa47a	2021-05-25 20:03:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:03:33.79+03	2021-05-25 20:03:33.798+03	
b8eff83a-96f2-1688-5816-f8567c125e3d	2021-05-25 20:03:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:03:53.79+03	2021-05-25 20:03:53.797+03	
7411fa20-1983-7975-0ee4-0572e43236c0	2021-05-25 20:04:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:04:13.79+03	2021-05-25 20:04:13.798+03	
382e1669-cc5d-3e27-cefb-f0d84eabe927	2021-05-25 20:04:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:04:43.79+03	2021-05-25 20:04:43.801+03	
489eee79-9b29-ac50-b2ce-ba142340eb79	2021-05-25 20:05:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:05:03.79+03	2021-05-25 20:05:03.797+03	
a1d5a3be-4592-b542-e4fd-53408887ba5c	2021-05-25 20:05:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:05:23.79+03	2021-05-25 20:05:23.797+03	
a6da6335-7cd1-252c-6b17-38788de76cb6	2021-05-25 20:05:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:05:43.79+03	2021-05-25 20:05:43.796+03	
c9b5c411-ed2b-5ace-6c53-2537fdb2b107	2021-05-25 20:06:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:06:03.79+03	2021-05-25 20:06:03.796+03	
6f9e4127-c94b-736d-13b5-dd176b25e699	2021-05-25 20:06:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:06:23.79+03	2021-05-25 20:06:23.796+03	
9d567d3b-48f2-001d-8ded-7ca3905d0476	2021-05-25 20:06:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:06:43.79+03	2021-05-25 20:06:43.796+03	
05d253ec-6e74-bf3d-bbae-016644dac530	2021-05-25 20:07:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:07:03.79+03	2021-05-25 20:07:03.797+03	
5d5cbd00-cd5c-8d24-b6fb-1b09f92cfaab	2021-05-25 20:07:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:07:23.79+03	2021-05-25 20:07:23.799+03	
e192fa08-e217-134c-a985-1742caf22b8f	2021-05-25 20:07:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:07:43.79+03	2021-05-25 20:07:43.796+03	
8b367133-b23b-4352-e669-5287b6561df2	2021-05-25 20:08:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:08:03.79+03	2021-05-25 20:08:03.809+03	
1dc3209c-b4f1-ebe1-35d3-609a2c7b1957	2021-05-25 20:08:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:08:23.79+03	2021-05-25 20:08:23.801+03	
44cc2ca3-9a39-0b7d-533e-38bbd56f89e7	2021-05-25 20:08:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:08:43.79+03	2021-05-25 20:08:43.797+03	
f655fe14-7eaa-05d8-a018-b4e6ed4ca834	2021-05-25 20:09:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:09:03.79+03	2021-05-25 20:09:03.796+03	
a2be78a6-8cab-bda3-298b-3a382b3c3fbe	2021-05-25 20:09:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:09:23.79+03	2021-05-25 20:09:23.796+03	
31f61920-5b04-2476-d0c8-e1aa86431295	2021-05-25 20:09:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:09:43.79+03	2021-05-25 20:09:43.797+03	
a17b5d8a-59be-247c-9346-03242c55f1ef	2021-05-25 20:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 20:10:00.79+03	2021-05-25 20:10:00.817+03	ERROR
b443a928-1687-94da-7c77-1c15fe5d5eca	2021-05-25 20:10:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:10:13.79+03	2021-05-25 20:10:13.796+03	
baed1d20-a9d0-cec8-3b46-8df352a790af	2021-05-25 20:10:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:10:43.79+03	2021-05-25 20:10:43.796+03	
d9497acf-cfc3-49c1-4e57-3eea1078b7a6	2021-05-25 20:11:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:11:03.79+03	2021-05-25 20:11:03.797+03	
dcb6e1c6-edd4-4e5e-3019-eb2b33bc1da2	2021-05-25 20:11:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:11:23.79+03	2021-05-25 20:11:23.796+03	
a957418c-416b-e3cd-d672-3fd9825387b6	2021-05-25 20:11:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:11:43.79+03	2021-05-25 20:11:43.796+03	
428c59c3-9ee7-d5b1-b002-3752f081787c	2021-05-25 20:12:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:12:03.79+03	2021-05-25 20:12:03.795+03	
b5c8c04a-60ad-b4f8-1fd4-56f00b096ebe	2021-05-25 20:12:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:12:23.79+03	2021-05-25 20:12:23.809+03	
20e1af46-4aad-61ef-c151-2206174585e1	2021-05-25 20:12:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:12:33.79+03	2021-05-25 20:12:33.81+03	
caa6a904-ab1f-fdcd-1e83-5a0fda865e80	2021-05-25 20:12:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:12:53.79+03	2021-05-25 20:12:53.796+03	
832655b2-6a85-c519-481e-2bbfd46ffde1	2021-05-25 20:13:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:13:13.79+03	2021-05-25 20:13:13.807+03	
3a42e89a-b62f-9b24-332e-5ff440b064dd	2021-05-25 20:13:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:13:33.79+03	2021-05-25 20:13:33.796+03	
29f25934-70d3-a611-d8e4-696eb01dc2fa	2021-05-25 20:13:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:13:53.79+03	2021-05-25 20:13:53.799+03	
912a4bbb-5d65-96e6-e595-c1aa278f6137	2021-05-25 20:14:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:14:13.79+03	2021-05-25 20:14:13.796+03	
339d16f3-6bc7-9041-57a1-4853a122b10a	2021-05-25 20:14:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:14:33.79+03	2021-05-25 20:14:33.797+03	
badad7be-8735-9042-ca6b-18ea7eae6930	2021-05-25 20:14:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:14:53.79+03	2021-05-25 20:14:53.795+03	
96a3522b-9453-4c33-b9dc-c286c99b3f3e	2021-05-25 20:15:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:15:13.79+03	2021-05-25 20:15:13.796+03	
adbafe8b-87ef-2694-7f85-783b1909bb84	2021-05-25 20:15:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:15:43.79+03	2021-05-25 20:15:43.796+03	
66b67a0b-2ee4-7764-718b-d2cb4fa3185b	2021-05-25 20:16:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:16:03.79+03	2021-05-25 20:16:03.797+03	
91ac86cd-4b0c-ee22-29fc-8fbfc29d8924	2021-05-25 20:16:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:16:23.79+03	2021-05-25 20:16:23.796+03	
9253e079-1338-1d89-9658-ac49777e0e9a	2021-05-25 20:16:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:16:43.79+03	2021-05-25 20:16:43.796+03	
35aa63b2-bf81-52d5-a0d8-b24ab4a1d911	2021-05-25 20:17:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:17:03.79+03	2021-05-25 20:17:03.796+03	
f53e2b53-b887-56e9-c1ec-d6c4a6764ece	2021-05-25 20:17:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:17:23.79+03	2021-05-25 20:17:23.801+03	
2570ff38-4dae-a801-fc6e-80575b49ef57	2021-05-25 20:17:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:17:43.79+03	2021-05-25 20:17:43.813+03	
d1626b82-dabf-4cfc-4337-4589919e8a2e	2021-05-25 20:18:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:18:03.79+03	2021-05-25 20:18:03.797+03	
5755c196-f734-77b0-6812-5b90b60271ac	2021-05-25 20:18:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:18:23.79+03	2021-05-25 20:18:23.803+03	
f65da7d7-21ec-d2e4-2050-401e364984c7	2021-05-25 20:18:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:18:33.79+03	2021-05-25 20:18:33.795+03	
f1550e99-b50e-439e-52f0-1740d54e5a78	2021-05-25 20:18:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:18:53.79+03	2021-05-25 20:18:53.797+03	
846bf5ea-cd64-0078-b87f-913927b39df4	2021-05-25 20:19:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:19:13.79+03	2021-05-25 20:19:13.8+03	
dc303636-1747-d027-7c71-045e95dddade	2021-05-25 20:19:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:19:43.79+03	2021-05-25 20:19:43.796+03	
a7c78942-c7aa-1f9a-70ea-b67bfaf9f25a	2021-05-25 20:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 20:20:00.79+03	2021-05-25 20:20:00.794+03	ERROR
9d9190b0-7df9-c81e-869f-e792b7aebb31	2021-05-25 19:59:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:59:31.79+03	2021-05-25 19:59:31.796+03	
b3c03b7e-75f0-fd11-e64e-d55437afecff	2021-05-25 19:59:51.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 19:59:51.79+03	2021-05-25 19:59:51.8+03	
0a3ed2f1-d78e-b845-540a-2b4fcbaf3ee9	2021-05-25 20:00:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:00:01.79+03	2021-05-25 20:00:01.796+03	
f0a60d14-9ddc-a63b-f3dd-3ff9b06b6e6b	2021-05-25 20:00:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:00:21.79+03	2021-05-25 20:00:21.801+03	
0989756e-9c3a-336a-8dbe-223178a6ddb8	2021-05-25 20:00:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:00:41.79+03	2021-05-25 20:00:41.797+03	
df3bac80-51e9-cbc8-5b13-75934d9a1da4	2021-05-25 20:01:01.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:01:01.791+03	2021-05-25 20:01:01.801+03	
3b5d3f95-7eb1-9534-cc82-293275cd67aa	2021-05-25 20:01:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:01:22.79+03	2021-05-25 20:01:22.796+03	
2dc321a1-5f8a-83af-ea59-1cf57ac029b6	2021-05-25 20:01:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:01:43.79+03	2021-05-25 20:01:43.797+03	
a7837a98-3fda-0d73-af58-cbbf57c08f05	2021-05-25 20:02:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:02:03.79+03	2021-05-25 20:02:03.797+03	
76b8fc1a-7f10-824b-2aef-9a93bb23104d	2021-05-25 20:02:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:02:23.79+03	2021-05-25 20:02:23.799+03	
a28c9a6e-3d57-f5bf-d579-2d41b78c1b4a	2021-05-25 20:02:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:02:43.79+03	2021-05-25 20:02:43.796+03	
ed692469-fa94-85ad-9fa3-03aac7acde5f	2021-05-25 20:03:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:03:03.79+03	2021-05-25 20:03:03.796+03	
769a8bae-753b-09b3-012e-e640dfdee5c0	2021-05-25 20:03:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:03:23.79+03	2021-05-25 20:03:23.796+03	
b05c1793-14a9-67b1-425a-927f7f1c55fa	2021-05-25 20:03:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:03:43.79+03	2021-05-25 20:03:43.797+03	
21b45512-4563-1570-a5f7-74fc23b054c4	2021-05-25 20:04:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:04:03.79+03	2021-05-25 20:04:03.796+03	
b2d6b466-63f1-f5ec-0fb1-0ed92e875032	2021-05-25 20:04:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:04:23.79+03	2021-05-25 20:04:23.796+03	
c8b1babf-8222-1942-f6d7-b7b819e9cb31	2021-05-25 20:04:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:04:33.79+03	2021-05-25 20:04:33.797+03	
845c76e1-5a14-41a0-e35f-994e2843446d	2021-05-25 20:04:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:04:53.79+03	2021-05-25 20:04:53.796+03	
ce1d2476-72fa-4f10-ae86-a165881fc660	2021-05-25 20:05:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:05:13.79+03	2021-05-25 20:05:13.802+03	
7d82d664-4a60-8a1e-d039-df06171e09a4	2021-05-25 20:05:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:05:33.79+03	2021-05-25 20:05:33.796+03	
897ec5c2-e0da-f899-e843-0733173af75e	2021-05-25 20:05:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:05:53.79+03	2021-05-25 20:05:53.801+03	
639d645a-8c46-ac56-f925-146ee439c399	2021-05-25 20:06:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:06:13.79+03	2021-05-25 20:06:13.803+03	
0fb4f766-1cec-69c4-f665-61e5add8d2da	2021-05-25 20:06:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:06:33.79+03	2021-05-25 20:06:33.799+03	
887703f4-4414-7e24-0a84-0ae98883abb4	2021-05-25 20:06:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:06:53.79+03	2021-05-25 20:06:53.797+03	
3db708fa-250c-4564-7ed2-e8b1e7da9afb	2021-05-25 20:07:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:07:13.79+03	2021-05-25 20:07:13.806+03	
22c0dced-b1ac-b414-29e3-5d338a526123	2021-05-25 20:07:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:07:33.79+03	2021-05-25 20:07:33.796+03	
bd837f93-e58b-4f06-2cea-17d6d51f7c9a	2021-05-25 20:07:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:07:53.79+03	2021-05-25 20:07:53.797+03	
01aa19b3-2942-d994-102b-5cb0cdacd6b9	2021-05-25 20:08:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:08:13.79+03	2021-05-25 20:08:13.796+03	
d594c980-e3d8-7756-617c-61c77c979760	2021-05-25 20:08:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:08:33.79+03	2021-05-25 20:08:33.797+03	
360e2a94-0c38-5376-52d2-542a1282de33	2021-05-25 20:08:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:08:53.79+03	2021-05-25 20:08:53.796+03	
8547f956-afae-34f3-c25c-4471e2da972b	2021-05-25 20:09:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:09:13.79+03	2021-05-25 20:09:13.796+03	
109f6cb9-fc72-af55-878d-3ee734e04699	2021-05-25 20:09:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:09:33.79+03	2021-05-25 20:09:33.801+03	
1d88dd06-a779-e8a6-4695-148e42ebfc96	2021-05-25 20:09:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:09:53.79+03	2021-05-25 20:09:53.796+03	
55643e90-8577-de7b-e663-87e476e30383	2021-05-25 20:10:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:10:03.79+03	2021-05-25 20:10:03.797+03	
1ac5d283-5fef-d5fa-f656-da27a4718dd1	2021-05-25 20:10:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:10:23.79+03	2021-05-25 20:10:23.799+03	
5c0e0105-62a8-99bf-d580-8459047b2358	2021-05-25 20:10:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:10:33.79+03	2021-05-25 20:10:33.796+03	
5a322971-7d09-2160-592b-530037f8432d	2021-05-25 20:10:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:10:53.79+03	2021-05-25 20:10:53.812+03	
f3130719-7949-8fe0-f1d8-1eb24f9129d5	2021-05-25 20:11:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:11:13.79+03	2021-05-25 20:11:13.809+03	
bc99401d-381e-6b29-494e-ee48fd5aa076	2021-05-25 20:11:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:11:33.79+03	2021-05-25 20:11:33.796+03	
d17c8ff9-72c7-6235-e4e9-e0947cac036e	2021-05-25 20:11:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:11:53.79+03	2021-05-25 20:11:53.824+03	
f274042a-4477-bc02-1a0d-acb232e79d03	2021-05-25 20:12:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:12:13.79+03	2021-05-25 20:12:13.799+03	
898a10c6-4fb2-cce3-d80f-8c412bc142cc	2021-05-25 20:12:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:12:43.79+03	2021-05-25 20:12:43.804+03	
95c8d1d7-2a5d-0bcf-d00d-15d6e77cd57f	2021-05-25 20:13:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:13:03.79+03	2021-05-25 20:13:03.796+03	
943d48a6-67bd-ff52-caa3-5a6a6afb69e6	2021-05-25 20:13:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:13:23.79+03	2021-05-25 20:13:23.796+03	
66aed239-220a-c940-a737-17b08c155d07	2021-05-25 20:13:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:13:43.79+03	2021-05-25 20:13:43.796+03	
9f21f461-dd98-7f5a-7e78-24044719d42d	2021-05-25 20:14:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:14:03.79+03	2021-05-25 20:14:03.797+03	
4b631ccc-b961-e3eb-dfd2-4eeb80ee6f50	2021-05-25 20:14:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:14:23.79+03	2021-05-25 20:14:23.796+03	
10f0fbdc-d542-5803-3aa5-d4b051ec9cf3	2021-05-25 20:14:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:14:43.79+03	2021-05-25 20:14:43.809+03	
a7702ea0-f38e-0c7d-ec53-d3be71f70646	2021-05-25 20:15:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:15:03.79+03	2021-05-25 20:15:03.797+03	
885f0e36-bfd2-08d0-7d65-151cf443a445	2021-05-25 20:15:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:15:23.79+03	2021-05-25 20:15:23.807+03	
e898db74-6bad-7608-b912-5119d4bba134	2021-05-25 20:15:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:15:33.79+03	2021-05-25 20:15:33.797+03	
39d45910-ccff-12d5-e648-52353a600421	2021-05-25 20:15:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:15:53.79+03	2021-05-25 20:15:53.797+03	
0f4d31e8-3826-c067-3789-fa6ff2fb76c0	2021-05-25 20:16:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:16:13.79+03	2021-05-25 20:16:13.797+03	
9c4e8d3d-b4a0-8512-80f9-6a760d034e87	2021-05-25 20:16:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:16:33.79+03	2021-05-25 20:16:33.797+03	
252eadfe-6bc6-ce1b-5101-29b9c2ee238a	2021-05-25 20:16:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:16:53.79+03	2021-05-25 20:16:53.822+03	
59d3ff9a-5bda-33d0-507b-969f5e3e928c	2021-05-25 20:17:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:17:13.79+03	2021-05-25 20:17:13.796+03	
c77dfe26-ff63-d87f-dafb-cfe1e518b264	2021-05-25 20:17:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:17:33.79+03	2021-05-25 20:17:33.796+03	
98f7b48a-e2bf-a1ad-9bfe-8b7ba5831f73	2021-05-25 20:17:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:17:53.79+03	2021-05-25 20:17:53.796+03	
c0c2fef4-64dd-a502-713c-e823623fa5f6	2021-05-25 20:18:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:18:13.79+03	2021-05-25 20:18:13.796+03	
15748933-82d1-c264-329b-a0a66de7b6c2	2021-05-25 20:18:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:18:43.79+03	2021-05-25 20:18:43.796+03	
1e7f167e-86d4-5ba9-20d0-fe1884d62cee	2021-05-25 20:19:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:19:03.79+03	2021-05-25 20:19:03.796+03	
9a514991-cb7c-7342-66a1-45b2459e24be	2021-05-25 20:19:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:19:23.79+03	2021-05-25 20:19:23.81+03	
7c19f3f4-eefc-6718-c1d4-ffb64a6bc313	2021-05-25 20:19:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:19:33.79+03	2021-05-25 20:19:33.796+03	
1c87512c-6367-c77a-3eb5-a13ed298c848	2021-05-25 20:19:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:19:53.79+03	2021-05-25 20:19:53.796+03	
4ff72952-4925-1f9d-203b-5e8faed91470	2021-05-25 20:20:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:20:03.79+03	2021-05-25 20:20:03.796+03	
a990e615-be9a-0e18-336a-b587613e984d	2021-05-25 20:20:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:20:23.79+03	2021-05-25 20:20:23.796+03	
daddbb8c-e8b1-f153-3c27-d2747a318888	2021-05-25 20:20:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:20:33.79+03	2021-05-25 20:20:33.796+03	
b4a75d50-af94-e6b8-12bb-f20d052a8147	2021-05-25 20:20:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:20:53.79+03	2021-05-25 20:20:53.796+03	
566e3da8-82f9-4b40-b3b7-a8a62200fcc7	2021-05-25 20:21:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:21:13.79+03	2021-05-25 20:21:13.798+03	
fd18b47f-844e-4a90-58ef-dff69df7c65a	2021-05-25 20:21:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:21:33.79+03	2021-05-25 20:21:33.816+03	
a8278a0d-8414-0237-c13a-9ae5587f930b	2021-05-25 20:21:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:21:53.79+03	2021-05-25 20:21:53.808+03	
a281280d-a489-2f83-d343-9050a11f254d	2021-05-25 20:22:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:22:13.79+03	2021-05-25 20:22:13.796+03	
4e1bb12a-3c74-265a-ece6-dda5337a5ec8	2021-05-25 20:22:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:22:43.79+03	2021-05-25 20:22:43.796+03	
720154b7-61c6-1c97-2aa3-824808621cf9	2021-05-25 20:23:03.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:23:03.791+03	2021-05-25 20:23:03.803+03	
8fa8d5ba-7e2e-6297-019b-c92fd1cee943	2021-05-25 20:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:23:24.79+03	2021-05-25 20:23:24.797+03	
d8f41bda-e399-a9ea-7792-0d98ee7f01bd	2021-05-25 20:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:23:34.79+03	2021-05-25 20:23:34.797+03	
70881b3b-6454-8ef4-82c7-aada14d31564	2021-05-25 20:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:23:54.79+03	2021-05-25 20:23:54.796+03	
b4979d13-c15f-f70e-0067-09c6858d8fd6	2021-05-25 20:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:24:14.79+03	2021-05-25 20:24:14.796+03	
5c653d88-7efa-82f3-5d65-0ffa31dc3865	2021-05-25 20:24:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:24:44.79+03	2021-05-25 20:24:44.799+03	
0d5f2249-fcd9-4114-df2b-2791bc3c1469	2021-05-25 20:25:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:25:04.79+03	2021-05-25 20:25:04.806+03	
06a69c56-216f-7d71-c990-4036f5a98873	2021-05-25 20:25:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:25:24.79+03	2021-05-25 20:25:24.796+03	
a0812d54-91c2-b989-26d8-212be315c2bc	2021-05-25 20:25:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:25:34.79+03	2021-05-25 20:25:34.8+03	
fb988525-5e7d-f0d5-b389-c949131b4d84	2021-05-25 20:25:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:25:54.79+03	2021-05-25 20:25:54.796+03	
ad18dc78-e994-9b78-2dbf-61324ad979b5	2021-05-25 20:26:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:26:14.79+03	2021-05-25 20:26:14.797+03	
15556fb2-eda5-947b-bcd5-d48091ed0c7f	2021-05-25 20:26:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:26:44.79+03	2021-05-25 20:26:44.796+03	
82e86d77-0c67-3ffc-2356-c7892798f150	2021-05-25 20:27:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:27:04.79+03	2021-05-25 20:27:04.796+03	
4ea17ae5-b872-71f0-b9f4-2be5f1ec37c6	2021-05-25 20:27:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:27:24.79+03	2021-05-25 20:27:24.796+03	
de5baba5-66e3-db50-d024-6962afd2c529	2021-05-25 20:27:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:27:44.79+03	2021-05-25 20:27:44.796+03	
033d48b9-d6ca-13fa-9d15-bc624e6b6757	2021-05-25 20:28:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:28:04.79+03	2021-05-25 20:28:04.797+03	
a2a31268-a33b-4c51-9cce-3f9c6c6ab7a3	2021-05-25 20:28:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:28:24.79+03	2021-05-25 20:28:24.796+03	
599eaa44-66a2-36f3-dfa3-6d1ffe7ef690	2021-05-25 20:28:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:28:34.79+03	2021-05-25 20:28:34.796+03	
3d2b5814-1866-81cc-cf9a-d9d4a860c20e	2021-05-25 20:28:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:28:54.79+03	2021-05-25 20:28:54.796+03	
ede3f78a-d2da-a7dd-6529-992fbe3e5400	2021-05-25 20:29:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:29:14.79+03	2021-05-25 20:29:14.796+03	
da61b325-075d-710b-6d81-799603f9b796	2021-05-25 20:29:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:29:44.79+03	2021-05-25 20:29:44.797+03	
cbb0a3a7-d088-1d5e-0415-76d158c40934	2021-05-25 20:30:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 20:30:00.791+03	2021-05-25 20:30:00.796+03	ERROR
3991d005-b708-eafa-9323-0c77361b92c7	2021-05-25 20:30:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:30:14.79+03	2021-05-25 20:30:14.816+03	
ba0f3bd0-e5f2-37f0-e1bf-61b4d3cb2f80	2021-05-25 20:30:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:30:44.79+03	2021-05-25 20:30:44.796+03	
653388fd-dbdf-eb15-f25f-5b6523ff417d	2021-05-25 20:31:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:31:04.79+03	2021-05-25 20:31:04.796+03	
3ddc3d68-d7ed-39d6-b1ff-14e756b65e18	2021-05-25 20:31:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:31:24.79+03	2021-05-25 20:31:24.796+03	
e1ac3bea-3412-d1ad-09a0-7f4ce916d88f	2021-05-25 20:31:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:31:44.79+03	2021-05-25 20:31:44.797+03	
683e2c17-beaf-f641-c619-4e99f869d718	2021-05-25 20:32:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:32:04.79+03	2021-05-25 20:32:04.796+03	
0c7a52cd-a846-e28f-3eea-2a68b30e12b4	2021-05-25 20:32:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:32:24.79+03	2021-05-25 20:32:24.801+03	
5a6f3016-7142-edc5-bc23-684a84699f99	2021-05-25 20:32:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:32:34.79+03	2021-05-25 20:32:34.796+03	
bf1c33f9-c80f-1bbc-bcd8-f43fc07a3005	2021-05-25 20:32:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:32:54.79+03	2021-05-25 20:32:54.796+03	
9cc90867-ef6d-6bae-20c9-d7b3b1d408ac	2021-05-25 20:33:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:33:14.79+03	2021-05-25 20:33:14.797+03	
b033aa69-8b0b-ae14-22a7-692ac313f0d4	2021-05-25 20:33:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:33:34.79+03	2021-05-25 20:33:34.796+03	
83bc2c92-a14a-ef07-fc23-7008551c4ca5	2021-05-25 20:33:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:33:54.79+03	2021-05-25 20:33:54.797+03	
ff5ec1e2-2880-89d1-4697-7c4f1e6539b7	2021-05-25 20:34:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:34:14.79+03	2021-05-25 20:34:14.799+03	
1884a74f-c046-8445-91bd-8f33799c1e7e	2021-05-25 20:34:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:34:44.79+03	2021-05-25 20:34:44.798+03	
812c60da-d36e-8b03-ab50-6e516aba5707	2021-05-25 20:35:05.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:35:05.791+03	2021-05-25 20:35:05.798+03	
a653c0fc-8392-9ca0-6744-d3a981f5f4c0	2021-05-25 20:35:25.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:35:25.791+03	2021-05-25 20:35:25.797+03	
8415a645-862d-478e-fe31-0fe891ef8529	2021-05-25 20:35:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:35:36.79+03	2021-05-25 20:35:36.798+03	
4ec13e72-c563-5090-1efd-79754ae532a0	2021-05-25 20:35:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:35:56.79+03	2021-05-25 20:35:56.799+03	
06945f85-95da-1633-704f-2e7ffa4de18d	2021-05-25 20:36:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:36:16.79+03	2021-05-25 20:36:16.796+03	
ea2a4dd3-065e-75ab-ed43-6197a05639d7	2021-05-25 20:36:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:36:46.79+03	2021-05-25 20:36:46.798+03	
519e3ad7-3436-891b-a1e0-166224a00952	2021-05-25 20:37:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:37:06.79+03	2021-05-25 20:37:06.796+03	
2f544935-e5ff-a0ae-5e78-bfb36c934f84	2021-05-25 20:37:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:37:26.79+03	2021-05-25 20:37:26.797+03	
59f12325-edd0-b36e-4616-e9dd2d166de3	2021-05-25 20:37:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:37:36.79+03	2021-05-25 20:37:36.808+03	
0d55070d-98ae-1f13-2d98-50ccfcf251ac	2021-05-25 20:37:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:37:56.79+03	2021-05-25 20:37:56.797+03	
65395796-9ebb-1911-0309-a527ea8b7a4c	2021-05-25 20:38:16.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:38:16.79+03	2021-05-25 20:38:16.799+03	
60e9d643-9ef1-083a-57d3-4e3794d92190	2021-05-25 20:38:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:38:47.79+03	2021-05-25 20:38:47.808+03	
3a82866d-95f4-9d2e-b050-dc52fd166c9b	2021-05-25 20:39:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:39:07.79+03	2021-05-25 20:39:07.797+03	
8548f4b9-b7d6-1334-0944-093e273cca38	2021-05-25 20:39:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:39:27.79+03	2021-05-25 20:39:27.798+03	
9b9ceb61-1f27-d991-abea-283c1a3a44d1	2021-05-25 20:39:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:39:47.79+03	2021-05-25 20:39:47.807+03	
d330649f-5278-0274-dc70-68349141ddf6	2021-05-25 20:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 20:40:00.79+03	2021-05-25 20:40:00.798+03	ERROR
25766919-7592-4236-6062-127032d55f1b	2021-05-25 20:40:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:40:17.79+03	2021-05-25 20:40:17.797+03	
51919840-1fe1-34e7-abe6-31894be7cb63	2021-05-25 20:20:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:20:13.79+03	2021-05-25 20:20:13.796+03	
bc048c48-8ede-3330-d97f-fe9672e7b022	2021-05-25 20:20:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:20:43.79+03	2021-05-25 20:20:43.796+03	
e69dafef-9e42-e796-31fe-c0d74b867d91	2021-05-25 20:21:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:21:03.79+03	2021-05-25 20:21:03.797+03	
d64a5ed2-fa25-731e-54d7-8776ab0b2d08	2021-05-25 20:21:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:21:23.79+03	2021-05-25 20:21:23.796+03	
420465ce-6df9-ed73-fca5-9a385e069f19	2021-05-25 20:21:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:21:43.79+03	2021-05-25 20:21:43.796+03	
58278b4c-ba00-27a8-527e-1ee494fcf9a3	2021-05-25 20:22:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:22:03.79+03	2021-05-25 20:22:03.796+03	
cd8aaa70-0566-0d1b-41d8-fda33f05e5b5	2021-05-25 20:22:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:22:23.79+03	2021-05-25 20:22:23.796+03	
29a6cff8-f03c-b8a5-1502-704d21afd901	2021-05-25 20:22:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:22:33.79+03	2021-05-25 20:22:33.796+03	
3ceb24bc-9d5d-b07e-a451-e23c41f0e98b	2021-05-25 20:22:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:22:53.79+03	2021-05-25 20:22:53.797+03	
e5d676e1-9a77-a0c6-ec02-e9a669262e64	2021-05-25 20:23:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:23:14.79+03	2021-05-25 20:23:14.797+03	
ace9dfae-e24d-10dc-3354-ce93a1c321a7	2021-05-25 20:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:23:44.79+03	2021-05-25 20:23:44.796+03	
426a9957-f8ad-312f-36b4-cead54e310a0	2021-05-25 20:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:24:04.79+03	2021-05-25 20:24:04.796+03	
fc3af900-4d04-7b74-74eb-5a1bb4234d1c	2021-05-25 20:24:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:24:24.79+03	2021-05-25 20:24:24.797+03	
2595577b-1e4a-9bb4-79fb-f9017d0883f2	2021-05-25 20:24:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:24:34.79+03	2021-05-25 20:24:34.82+03	
97dea9ee-19ae-43bd-2ee2-11472b552443	2021-05-25 20:24:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:24:54.79+03	2021-05-25 20:24:54.796+03	
1ba230f7-f2e3-4594-c4e6-59f650a319d4	2021-05-25 20:25:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:25:14.79+03	2021-05-25 20:25:14.798+03	
a5373a83-0234-9ecb-ff23-7ed7dfdd1d16	2021-05-25 20:25:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:25:44.79+03	2021-05-25 20:25:44.796+03	
867fae11-788b-ff34-8931-124796718189	2021-05-25 20:26:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:26:04.79+03	2021-05-25 20:26:04.796+03	
8f2ea0c0-4d69-5f06-e2ef-b1ad0eb4e7b4	2021-05-25 20:26:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:26:24.79+03	2021-05-25 20:26:24.804+03	
ac0bd302-46d4-6c54-382f-b6845a59edf6	2021-05-25 20:26:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:26:34.79+03	2021-05-25 20:26:34.797+03	
a2c08781-0914-a5e0-b2fe-f23727503c25	2021-05-25 20:26:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:26:54.79+03	2021-05-25 20:26:54.796+03	
32932d96-bc8e-ce11-e31b-c44bacdfebcc	2021-05-25 20:27:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:27:14.79+03	2021-05-25 20:27:14.812+03	
9704a102-5589-7cd8-3e4d-8140574f665b	2021-05-25 20:27:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:27:34.79+03	2021-05-25 20:27:34.796+03	
180a5e0b-5daf-93c1-82ab-c4d807c74f82	2021-05-25 20:27:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:27:54.79+03	2021-05-25 20:27:54.797+03	
eee7b824-34a5-2edb-70c7-1f2e9bdeb777	2021-05-25 20:28:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:28:14.79+03	2021-05-25 20:28:14.797+03	
b384ee56-0060-5931-8124-e39a68f3b258	2021-05-25 20:28:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:28:44.79+03	2021-05-25 20:28:44.815+03	
e1e09767-6e77-55ff-3f5c-9c8ea7bc40da	2021-05-25 20:29:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:29:04.79+03	2021-05-25 20:29:04.796+03	
7f225527-b732-db54-7ce4-9c26b322880b	2021-05-25 20:29:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:29:24.79+03	2021-05-25 20:29:24.801+03	
caf364cf-4818-9aa8-7323-76ead7bacf51	2021-05-25 20:29:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:29:34.79+03	2021-05-25 20:29:34.796+03	
acb1cb2b-f41b-e9ff-967d-61e18ef643c8	2021-05-25 20:29:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:29:54.79+03	2021-05-25 20:29:54.796+03	
d5b67525-8678-2271-a1b5-2e3d7f3b190c	2021-05-25 20:30:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:30:04.79+03	2021-05-25 20:30:04.796+03	
ded7519d-0b6a-3980-fdb3-36436bf09491	2021-05-25 20:30:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:30:24.79+03	2021-05-25 20:30:24.799+03	
e4a273e9-a2cd-c776-e473-d79b747a994f	2021-05-25 20:30:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:30:34.79+03	2021-05-25 20:30:34.797+03	
76e4b108-c894-948d-aa83-289893dab863	2021-05-25 20:30:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:30:54.79+03	2021-05-25 20:30:54.797+03	
738d2b23-fdb0-4787-e03d-0fe6de826f95	2021-05-25 20:31:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:31:14.79+03	2021-05-25 20:31:14.797+03	
a6d8ad88-fcff-8252-80c5-8a61f15a679f	2021-05-25 20:31:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:31:34.79+03	2021-05-25 20:31:34.798+03	
5b478e1e-33ed-2b63-a876-780662a1ac1a	2021-05-25 20:31:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:31:54.79+03	2021-05-25 20:31:54.796+03	
ddc42d27-b373-4f65-02ba-cd809f897e79	2021-05-25 20:32:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:32:14.79+03	2021-05-25 20:32:14.796+03	
6e87bb15-d527-ff05-1a9c-b4364f604db8	2021-05-25 20:32:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:32:44.79+03	2021-05-25 20:32:44.797+03	
057782b1-db09-f7de-3a27-c13ae6c98f8c	2021-05-25 20:33:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:33:04.79+03	2021-05-25 20:33:04.801+03	
1d8c3fd7-0898-f77b-5039-df29f4755b2c	2021-05-25 20:33:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:33:24.79+03	2021-05-25 20:33:24.816+03	
1078f9cc-f0f2-d303-f323-1ceecd14886a	2021-05-25 20:33:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:33:44.79+03	2021-05-25 20:33:44.797+03	
f078777f-c8fc-4d9f-2312-6935df4a723b	2021-05-25 20:34:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:34:04.79+03	2021-05-25 20:34:04.796+03	
16bf64ae-8540-61dd-2451-04ccd4a96d88	2021-05-25 20:34:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:34:24.79+03	2021-05-25 20:34:24.797+03	
485e388d-af5d-6bb1-256f-ff81bba29a31	2021-05-25 20:34:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:34:34.79+03	2021-05-25 20:34:34.797+03	
c79d2e51-5f43-3b75-dd1d-b7a7136e5518	2021-05-25 20:34:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:34:54.791+03	2021-05-25 20:34:54.8+03	
f723e058-b6c2-29b0-62d4-9b9a372be590	2021-05-25 20:35:15.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:35:15.791+03	2021-05-25 20:35:15.798+03	
7fa7df65-7538-58ae-6407-73869b79f595	2021-05-25 20:35:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:35:46.79+03	2021-05-25 20:35:46.798+03	
4abfbcb7-5c20-531e-40cc-f47c64ab63af	2021-05-25 20:36:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:36:06.79+03	2021-05-25 20:36:06.797+03	
dca17cac-2434-0cf8-c028-cdfbe64d04b8	2021-05-25 20:36:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:36:26.79+03	2021-05-25 20:36:26.83+03	
8256ec74-1f63-f110-6535-602bf33208da	2021-05-25 20:36:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:36:36.79+03	2021-05-25 20:36:36.813+03	
70584080-412f-6f98-b47a-2b9f1a4d63b5	2021-05-25 20:36:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:36:56.79+03	2021-05-25 20:36:56.797+03	
532c3e44-e47f-783c-3a87-a5322e01bfa4	2021-05-25 20:37:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:37:16.79+03	2021-05-25 20:37:16.816+03	
55701519-555d-185d-7027-1a73e336d6cf	2021-05-25 20:37:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:37:46.79+03	2021-05-25 20:37:46.796+03	
47780eb2-6abf-92a8-b28a-2df55f0b72a6	2021-05-25 20:38:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:38:06.79+03	2021-05-25 20:38:06.797+03	
d8e0d046-b912-313e-1322-f728d2a1d443	2021-05-25 20:38:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:38:26.79+03	2021-05-25 20:38:26.797+03	
c638665b-5aaf-e3ea-3e78-0dc5dcb6e95e	2021-05-25 20:38:36.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:38:36.792+03	2021-05-25 20:38:36.812+03	
1e2fe3c4-a718-dc3e-85d7-59ee7e7b78fa	2021-05-25 20:38:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:38:57.79+03	2021-05-25 20:38:57.796+03	
8395077c-cdd8-4aa2-8c4a-458eb57b0fb7	2021-05-25 20:39:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:39:17.79+03	2021-05-25 20:39:17.796+03	
f0ae0149-b0fb-b17f-8d4f-e3db43744757	2021-05-25 20:39:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:39:37.79+03	2021-05-25 20:39:37.851+03	
7014f3b3-79be-25c4-eb0a-244c44e0344a	2021-05-25 20:39:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:39:57.79+03	2021-05-25 20:39:57.797+03	
89ea3bc5-88ea-d4e9-fa8a-81baf8e881fd	2021-05-25 20:40:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:40:07.79+03	2021-05-25 20:40:07.797+03	
40400d99-079d-54a0-25d6-b91ec62cfc9f	2021-05-25 20:40:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:40:27.79+03	2021-05-25 20:40:27.796+03	
0e9a9a29-1a3f-018d-f162-93598b8d4652	2021-05-25 20:40:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:40:37.79+03	2021-05-25 20:40:37.797+03	
53621733-0450-718d-ddc4-701d2b1c164b	2021-05-25 20:40:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:40:57.79+03	2021-05-25 20:40:57.805+03	
ed364f7d-d451-70db-a4df-ffeb838d8102	2021-05-25 20:41:17.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:41:17.792+03	2021-05-25 20:41:17.804+03	
3c1e8d47-84cd-2868-405e-e6cc59a239a1	2021-05-25 20:41:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:41:48.79+03	2021-05-25 20:41:48.797+03	
2050104e-4d1f-fa7a-36b4-9a1cea7ba185	2021-05-25 20:42:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:42:08.79+03	2021-05-25 20:42:08.796+03	
498f0a60-f1bb-564b-a625-3728bafa6bfd	2021-05-25 20:42:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:42:28.79+03	2021-05-25 20:42:28.797+03	
def73a0a-a49a-0b5e-5406-e1c64f360708	2021-05-25 20:42:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:42:38.79+03	2021-05-25 20:42:38.796+03	
076de60f-8190-ffe2-e365-56706f3a344e	2021-05-25 20:42:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:42:58.79+03	2021-05-25 20:42:58.796+03	
3e08f874-1227-f4d6-182a-0888176a544a	2021-05-25 20:43:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:43:18.79+03	2021-05-25 20:43:18.797+03	
d269d81d-f499-c8ec-d6ca-5ba135f8a707	2021-05-25 20:43:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:43:48.79+03	2021-05-25 20:43:48.809+03	
df01d0a3-5236-a5de-2b98-73d661edbbbf	2021-05-25 20:44:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:44:08.79+03	2021-05-25 20:44:08.796+03	
645287c5-28a6-2383-c160-e517e0dbc79b	2021-05-25 20:44:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:44:28.79+03	2021-05-25 20:44:28.797+03	
b0a6e684-8c13-4fbe-e2d5-d2b9a0136520	2021-05-25 20:44:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:44:48.79+03	2021-05-25 20:44:48.814+03	
e1fa547f-e7f9-d186-af6b-66fcab73437f	2021-05-25 20:45:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:45:08.79+03	2021-05-25 20:45:08.797+03	
3e7d0c84-1c57-6b3d-263f-316deb5b2e07	2021-05-25 20:45:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:45:28.79+03	2021-05-25 20:45:28.811+03	
b17ef4ce-a4f4-6661-c6b2-af4b849087c6	2021-05-25 20:45:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:45:38.79+03	2021-05-25 20:45:38.796+03	
b09b4b7a-b2bb-9aef-76c5-09f121f08464	2021-05-25 20:45:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:45:58.79+03	2021-05-25 20:45:58.798+03	
0fd81fac-9bf5-8821-4a67-237cac25334a	2021-05-25 20:46:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:46:18.79+03	2021-05-25 20:46:18.799+03	
afcd96bf-1047-4287-4770-7be008d7f237	2021-05-25 20:46:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:46:38.79+03	2021-05-25 20:46:38.797+03	
b29f63fa-ae7a-8a4b-b6c6-3d7a01bbc867	2021-05-25 20:46:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:46:58.79+03	2021-05-25 20:46:58.795+03	
44ade7f9-341b-cbda-96bc-9db860f88864	2021-05-25 20:47:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:47:18.79+03	2021-05-25 20:47:18.796+03	
95a014eb-fd07-e781-63fd-c246cc01434b	2021-05-25 20:47:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:47:38.79+03	2021-05-25 20:47:38.795+03	
561756e3-4862-d975-6529-51bb2e613e2a	2021-05-25 20:47:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:47:58.79+03	2021-05-25 20:47:58.802+03	
1eb8670c-2054-d20a-0fa1-deda3c73078e	2021-05-25 20:48:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:48:18.79+03	2021-05-25 20:48:18.797+03	
f7691bfc-5f54-26d2-334e-91baa9fa7761	2021-05-25 20:48:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:48:38.79+03	2021-05-25 20:48:38.797+03	
0acb1b82-9f51-e00c-cee9-dac57cb4edc6	2021-05-25 20:48:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:48:58.79+03	2021-05-25 20:48:58.8+03	
aaf8d1a9-ab29-b7c6-74c2-e3ffe15f5664	2021-05-25 20:49:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:49:18.79+03	2021-05-25 20:49:18.796+03	
b53ec87b-6dd2-f401-54ee-d936b6295a9d	2021-05-25 20:49:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:49:48.79+03	2021-05-25 20:49:48.796+03	
dc558602-f8e6-008e-281b-cbd8c24c1805	2021-05-25 20:50:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 20:50:00.791+03	2021-05-25 20:50:00.795+03	ERROR
813501f9-5a51-af8d-5351-d0f73c3c4677	2021-05-25 20:50:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:50:18.79+03	2021-05-25 20:50:18.796+03	
7136d740-c004-2e23-0010-30890278c64b	2021-05-25 20:50:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:50:38.79+03	2021-05-25 20:50:38.796+03	
66d5dd15-edb6-8a5c-7573-13c86f6b0003	2021-05-25 20:50:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:50:58.79+03	2021-05-25 20:50:58.796+03	
4ee16fd8-bed5-3c60-acee-70d613277f45	2021-05-25 20:51:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:51:18.79+03	2021-05-25 20:51:18.796+03	
9bf82ace-cc30-e609-f34b-e82dba376194	2021-05-25 20:51:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:51:49.79+03	2021-05-25 20:51:49.796+03	
7eae12aa-6e67-e215-3ffd-c76b76c46613	2021-05-25 20:52:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:52:09.79+03	2021-05-25 20:52:09.796+03	
09de2b36-54af-8fc4-3984-979f6b9b052f	2021-05-25 20:52:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:52:29.79+03	2021-05-25 20:52:29.796+03	
b48e4ed4-d41e-ef4f-7db3-e8ed4239a792	2021-05-25 20:52:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:52:49.79+03	2021-05-25 20:52:49.796+03	
f275773b-5521-f969-8838-78f3db828d8f	2021-05-25 20:53:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:53:09.79+03	2021-05-25 20:53:09.811+03	
358838d5-89d8-636e-c837-92b2589228b7	2021-05-25 20:53:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:53:29.79+03	2021-05-25 20:53:29.808+03	
9f2f6bfa-58e1-8316-e4cc-a7f88c005da1	2021-05-25 20:53:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:53:39.79+03	2021-05-25 20:53:39.809+03	
c36833f0-309c-e0a3-1f2b-e486f33c562f	2021-05-25 20:53:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:53:59.79+03	2021-05-25 20:53:59.82+03	
07a37b01-c696-4794-39fb-b81019203014	2021-05-25 20:54:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:54:19.79+03	2021-05-25 20:54:19.797+03	
f0bb3415-007b-485e-6344-3539c1eec3d0	2021-05-25 20:54:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:54:39.79+03	2021-05-25 20:54:39.797+03	
0b1aa587-8bae-c270-b6e8-0e8e3c052f7e	2021-05-25 20:54:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:54:59.79+03	2021-05-25 20:54:59.796+03	
83b8d08c-ff6e-4b6b-e057-c9aa8e144674	2021-05-25 20:55:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:55:19.79+03	2021-05-25 20:55:19.796+03	
fd2ddc31-b863-8a69-80a4-49deb7408dea	2021-05-25 20:55:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:55:39.79+03	2021-05-25 20:55:39.807+03	
90077324-f0d7-ef9b-a9b4-b0b95e8b7a35	2021-05-25 20:55:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:55:59.79+03	2021-05-25 20:55:59.796+03	
782e2619-5d12-7198-9f15-e628168406d8	2021-05-25 20:56:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:56:19.79+03	2021-05-25 20:56:19.814+03	
aeacd33d-301d-c3b7-2b4b-62cf00e674aa	2021-05-25 20:56:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:56:39.79+03	2021-05-25 20:56:39.796+03	
554a8d48-b5d1-ba6f-26c9-31b4a9ac5351	2021-05-25 20:56:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:56:59.79+03	2021-05-25 20:56:59.801+03	
00c425cf-3f35-d828-d900-dfd84d5e2de4	2021-05-25 20:57:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:57:19.79+03	2021-05-25 20:57:19.801+03	
1266b0a8-a047-2bbd-d174-d5f64bc88af8	2021-05-25 20:57:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:57:39.79+03	2021-05-25 20:57:39.797+03	
e61cf2f3-d7af-20ec-7fe2-5e2f8b4359ba	2021-05-25 20:57:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:57:59.79+03	2021-05-25 20:57:59.796+03	
2e99032f-9f93-dcfa-a4b2-eb8075b941fa	2021-05-25 20:58:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:58:19.79+03	2021-05-25 20:58:19.797+03	
b56f3687-d8aa-a784-98c0-f48eb28ebfde	2021-05-25 20:58:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:58:49.79+03	2021-05-25 20:58:49.797+03	
3e66d331-bac7-58f3-ac4e-5f7fa8f52c2b	2021-05-25 20:59:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:59:09.79+03	2021-05-25 20:59:09.796+03	
0e42b23a-2d95-b55c-b4e9-a12c30715d0e	2021-05-25 20:59:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:59:29.79+03	2021-05-25 20:59:29.797+03	
d4c27c04-da31-fdd5-d631-a49c123a2afc	2021-05-25 20:59:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:59:39.79+03	2021-05-25 20:59:39.798+03	
9aa89263-7046-e9fc-e80c-c5e446abc489	2021-05-25 20:59:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:59:59.79+03	2021-05-25 20:59:59.796+03	
e055c2c1-9954-8ff0-01a2-489fb43025a6	2021-05-25 21:00:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:00:09.79+03	2021-05-25 21:00:09.796+03	
c47b67fe-aa58-c0a8-82cd-963e20db55bb	2021-05-25 21:00:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:00:29.79+03	2021-05-25 21:00:29.796+03	
826a00f9-9eb1-94cb-dd18-d9acf20c0f39	2021-05-25 21:00:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:00:39.79+03	2021-05-25 21:00:39.796+03	
63e3dddd-f4f1-3f03-bcd0-b37049cdf783	2021-05-25 21:00:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:00:59.79+03	2021-05-25 21:00:59.796+03	
6ab69b4d-26d5-0f87-89e4-4d0e8f91fe94	2021-05-25 20:40:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:40:47.79+03	2021-05-25 20:40:47.797+03	
590948a6-6d15-b489-57e6-100c6c6194fd	2021-05-25 20:41:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:41:07.79+03	2021-05-25 20:41:07.818+03	
08225bff-4641-740f-acb0-ce1ee835ea9c	2021-05-25 20:41:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:41:28.79+03	2021-05-25 20:41:28.797+03	
b2662796-e4a6-9fbe-7158-2693df4c4f17	2021-05-25 20:41:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:41:38.79+03	2021-05-25 20:41:38.796+03	
7726b035-ce68-5620-bf52-b1b24ab807fa	2021-05-25 20:41:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:41:58.79+03	2021-05-25 20:41:58.803+03	
95290cd1-8482-05e7-03f3-0137a0b315ea	2021-05-25 20:42:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:42:18.79+03	2021-05-25 20:42:18.796+03	
08a23c5f-74f9-2ca0-80e2-7503eaecc7ec	2021-05-25 20:42:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:42:48.79+03	2021-05-25 20:42:48.796+03	
71d8780e-03e8-8bad-2e41-0bad7d9204b5	2021-05-25 20:43:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:43:08.79+03	2021-05-25 20:43:08.796+03	
1983f42f-70b8-22f4-73b5-3f5d8c72ae87	2021-05-25 20:43:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:43:28.79+03	2021-05-25 20:43:28.811+03	
583ca909-6f4c-4ef1-7cb2-20a5c66f4017	2021-05-25 20:43:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:43:38.79+03	2021-05-25 20:43:38.795+03	
6f2d31a1-bf1d-f49b-06de-f8b242213b3f	2021-05-25 20:43:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:43:58.79+03	2021-05-25 20:43:58.796+03	
67f29088-bc2a-cb06-9e09-d101a9a050a4	2021-05-25 20:44:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:44:18.79+03	2021-05-25 20:44:18.797+03	
557747dd-e2d0-7c1b-99f6-5f693bfdd88c	2021-05-25 20:44:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:44:38.79+03	2021-05-25 20:44:38.816+03	
92815b15-9d07-7b6d-92c0-c25e4b6a89f1	2021-05-25 20:44:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:44:58.79+03	2021-05-25 20:44:58.796+03	
8a3593ef-4a2b-7242-abc5-7d2f45ce22f3	2021-05-25 20:45:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:45:18.79+03	2021-05-25 20:45:18.797+03	
eb735151-6734-4105-336c-60de7568d29a	2021-05-25 20:45:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:45:48.79+03	2021-05-25 20:45:48.796+03	
f02e3dd1-ddd3-9639-1777-70fe0dc1f994	2021-05-25 20:46:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:46:08.79+03	2021-05-25 20:46:08.796+03	
81179440-efc9-25d9-0868-4bc10394253f	2021-05-25 20:46:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:46:28.79+03	2021-05-25 20:46:28.799+03	
df818452-3ce7-5a04-ae63-23f0a408ff47	2021-05-25 20:46:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:46:48.79+03	2021-05-25 20:46:48.796+03	
a95212d1-d2df-0671-4878-e0eb355ce787	2021-05-25 20:47:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:47:08.79+03	2021-05-25 20:47:08.796+03	
6d376a8a-b448-442f-3820-9800551e37e9	2021-05-25 20:47:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:47:28.79+03	2021-05-25 20:47:28.819+03	
5cecb113-8d1d-2073-2f6a-83152ce0a328	2021-05-25 20:47:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:47:48.79+03	2021-05-25 20:47:48.797+03	
c708f813-4e71-28a3-ad8d-477c92dd4f28	2021-05-25 20:48:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:48:08.79+03	2021-05-25 20:48:08.796+03	
fb2c4e62-8c71-eb17-37e2-44c6e81f9f30	2021-05-25 20:48:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:48:28.79+03	2021-05-25 20:48:28.796+03	
67723b9d-5b63-9243-b039-7cba7f347710	2021-05-25 20:48:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:48:48.79+03	2021-05-25 20:48:48.796+03	
41674102-ddc5-ad04-143a-b1dbeeb48322	2021-05-25 20:49:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:49:08.79+03	2021-05-25 20:49:08.799+03	
fd0e7827-63b7-638f-8e9f-d96b73528df2	2021-05-25 20:49:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:49:28.79+03	2021-05-25 20:49:28.796+03	
23cbb69c-6b5a-f666-560e-396cb6e45033	2021-05-25 20:49:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:49:38.79+03	2021-05-25 20:49:38.815+03	
d1ab565f-d470-dca2-4444-c67acd386095	2021-05-25 20:49:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:49:58.79+03	2021-05-25 20:49:58.796+03	
0f9376e8-ecea-8f5c-0268-613bd14ea7a7	2021-05-25 20:50:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:50:08.79+03	2021-05-25 20:50:08.797+03	
d5d3e72a-c0d1-d59d-bfb0-46cb23172193	2021-05-25 20:50:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:50:28.79+03	2021-05-25 20:50:28.807+03	
74d525e7-f12c-2f03-94a2-3148827da817	2021-05-25 20:50:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:50:48.79+03	2021-05-25 20:50:48.799+03	
86f8d6ba-8a08-9cab-cced-beba814f741d	2021-05-25 20:51:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:51:08.79+03	2021-05-25 20:51:08.802+03	
fb3288b9-84f2-f011-9db0-d5961cd9bd0e	2021-05-25 20:51:28.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:51:28.791+03	2021-05-25 20:51:28.81+03	
e88a2282-8617-d352-c3c5-8d6eadd983a3	2021-05-25 20:51:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:51:39.79+03	2021-05-25 20:51:39.801+03	
cf54b1ab-c86a-38ff-82a0-d1502631612a	2021-05-25 20:51:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:51:59.79+03	2021-05-25 20:51:59.813+03	
08c662e8-c50d-a798-9be7-3b1ea7e6ff82	2021-05-25 20:52:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:52:19.79+03	2021-05-25 20:52:19.797+03	
3d090f55-48cf-17c5-da5c-6ce92151be5e	2021-05-25 20:52:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:52:39.79+03	2021-05-25 20:52:39.796+03	
7fb36232-7d8e-3325-b120-9bcd9d813b1e	2021-05-25 20:52:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:52:59.79+03	2021-05-25 20:52:59.799+03	
78d4a41d-e07b-eab9-7501-d68d1cfef7d5	2021-05-25 20:53:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:53:19.79+03	2021-05-25 20:53:19.796+03	
aa7d694b-eb29-f146-7208-27a5c7d6c9ba	2021-05-25 20:53:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:53:49.79+03	2021-05-25 20:53:49.796+03	
a9f1a09f-d511-f3fd-361e-9a9104c457bd	2021-05-25 20:54:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:54:09.79+03	2021-05-25 20:54:09.796+03	
ea14bbe3-49bc-6091-8e0b-a3052516d9bc	2021-05-25 20:54:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:54:29.79+03	2021-05-25 20:54:29.801+03	
fdea7b1e-a565-73ef-9338-799be2ac71ee	2021-05-25 20:54:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:54:49.79+03	2021-05-25 20:54:49.796+03	
6cc3bbe1-f524-4632-3bff-8af08425cad4	2021-05-25 20:55:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:55:09.79+03	2021-05-25 20:55:09.796+03	
cea350e9-dff3-5f42-92ba-fa43816ac929	2021-05-25 20:55:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:55:29.79+03	2021-05-25 20:55:29.796+03	
befe7c3f-2ab0-fe8b-8139-7d68a3745d92	2021-05-25 20:55:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:55:49.79+03	2021-05-25 20:55:49.796+03	
dee1c6d0-e755-356c-4157-fd2a2905d5d5	2021-05-25 20:56:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:56:09.79+03	2021-05-25 20:56:09.796+03	
05b0615d-f0a7-c497-af4d-b1ace434d1a2	2021-05-25 20:56:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:56:29.79+03	2021-05-25 20:56:29.814+03	
c3589636-efa7-0494-b2c1-a86ea700157d	2021-05-25 20:56:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:56:49.79+03	2021-05-25 20:56:49.796+03	
9a90fec6-1273-4365-b47e-b3db51ef8894	2021-05-25 20:57:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:57:09.79+03	2021-05-25 20:57:09.796+03	
d1bd37e6-b3ae-351a-ce8c-e6080a54b6f3	2021-05-25 20:57:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:57:29.79+03	2021-05-25 20:57:29.796+03	
c0ed5745-dd31-3799-96ef-e29a34f5ffac	2021-05-25 20:57:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:57:49.79+03	2021-05-25 20:57:49.796+03	
299a6ef1-d257-1a53-91d2-c62061befb30	2021-05-25 20:58:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:58:09.79+03	2021-05-25 20:58:09.802+03	
1f86ef89-90c3-c903-8533-b4bc6d8d7b77	2021-05-25 20:58:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:58:29.79+03	2021-05-25 20:58:29.817+03	
75eb5f5a-7ab2-d0f0-0203-4755c7f74114	2021-05-25 20:58:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:58:39.79+03	2021-05-25 20:58:39.797+03	
7cd6389c-68f9-0082-110d-606c9d5870a5	2021-05-25 20:58:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:58:59.79+03	2021-05-25 20:58:59.796+03	
4b695ef7-2ed2-7519-a678-4738a17a6eb1	2021-05-25 20:59:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:59:19.79+03	2021-05-25 20:59:19.797+03	
59b39f75-76c8-e2b4-70fc-9d4eb198c802	2021-05-25 20:59:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 20:59:49.79+03	2021-05-25 20:59:49.796+03	
6a6a3af5-9111-7638-949a-66f16b04d43b	2021-05-25 21:00:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 21:00:00.79+03	2021-05-25 21:00:00.794+03	ERROR
82a76c32-ccd1-94b4-bb14-2ef75fc12505	2021-05-25 21:00:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:00:19.79+03	2021-05-25 21:00:19.796+03	
310c30ea-b4f3-435c-3584-b8f46b97fe91	2021-05-25 21:00:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:00:49.79+03	2021-05-25 21:00:49.796+03	
02f84e92-5d7f-4c8b-858e-c9d7279372ae	2021-05-25 21:01:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:01:09.79+03	2021-05-25 21:01:09.814+03	
907eb2f6-825e-f43b-faff-aed984d725ce	2021-05-27 18:05:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:05:35.951+03	2021-05-27 18:05:35.959+03	
2785f4d1-0354-8db8-015e-f2ec8bf259aa	2021-05-25 21:01:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:01:19.79+03	2021-05-25 21:01:19.796+03	
52db354a-e00f-4136-7a60-ea8dd2e4c257	2021-05-26 04:44:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:44:04.79+03	2021-05-26 04:44:04.797+03	
fb5bb98f-66c5-680e-8894-cb85832e749e	2021-05-25 21:01:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:01:39.79+03	2021-05-25 21:01:39.799+03	
8b59406b-3529-5c15-6748-f0c29428899c	2021-05-25 21:01:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:01:59.79+03	2021-05-25 21:01:59.797+03	
9c50bdd8-a4e5-e73a-b73d-cfc8fba35d02	2021-05-26 04:44:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:44:24.79+03	2021-05-26 04:44:24.796+03	
a65284d1-6bb1-3142-6267-db00ebf5a331	2021-05-25 21:02:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:02:19.79+03	2021-05-25 21:02:19.796+03	
c3f048dc-1f18-0a22-2c65-3598c1149920	2021-05-25 21:02:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:02:39.79+03	2021-05-25 21:02:39.816+03	
1409fb5e-57f6-6cda-1659-b3cdca9ad546	2021-05-26 04:44:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:44:44.79+03	2021-05-26 04:44:44.797+03	
485d2873-499a-8be2-b21a-095e8fdf4050	2021-05-25 21:02:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:02:59.79+03	2021-05-25 21:02:59.81+03	
112525a4-7c95-1052-3387-1b407bc82e8e	2021-05-25 21:03:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:03:19.79+03	2021-05-25 21:03:19.805+03	
c3994c3f-ddda-f484-1caf-138a198c352b	2021-05-26 04:45:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:45:04.79+03	2021-05-26 04:45:04.799+03	
c244e464-0243-f9cd-b47a-ebbedca00d65	2021-05-25 21:03:39.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:03:39.79+03	2021-05-25 21:03:39.798+03	
2eb32337-68b7-5767-e204-366c8591818d	2021-05-25 21:03:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:03:59.79+03	2021-05-25 21:03:59.797+03	
05c54ce9-662d-ef34-1107-659615c5acc6	2021-05-26 04:45:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:45:24.79+03	2021-05-26 04:45:24.797+03	
371ecbf1-893a-b548-ad71-3ec15bd4a39c	2021-05-25 21:04:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:04:19.79+03	2021-05-25 21:04:19.796+03	
a5b24264-1e1f-0864-9fd8-92064a0959f0	2021-05-25 21:04:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:04:39.79+03	2021-05-25 21:04:39.816+03	
6ee89de6-c160-6578-25cf-f1d33bd3d07c	2021-05-26 04:45:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:45:44.79+03	2021-05-26 04:45:44.796+03	
8013612d-98e0-363b-9354-83720180b906	2021-05-25 21:04:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:04:59.79+03	2021-05-25 21:04:59.796+03	
24ec7854-862d-2603-a851-7692b6511aaa	2021-05-25 21:05:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:05:19.79+03	2021-05-25 21:05:19.796+03	
12ac4a97-78a7-7805-9703-e956f1ecf672	2021-05-26 04:46:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:46:04.79+03	2021-05-26 04:46:04.796+03	
c7d37277-2bd4-7505-bab2-62bef3a7aef8	2021-05-25 21:05:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:05:49.79+03	2021-05-25 21:05:49.796+03	
288c14fe-8820-bc51-1d18-fb8d2528d11e	2021-05-25 21:06:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:06:09.79+03	2021-05-25 21:06:09.797+03	
5aabc89e-8c59-3d3d-acd9-4082d00eb05b	2021-05-26 04:46:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:46:24.79+03	2021-05-26 04:46:24.796+03	
398f3d03-605c-32cf-0cf4-65227281af30	2021-05-25 21:06:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:06:29.79+03	2021-05-25 21:06:29.799+03	
1afcc6f9-cfa2-071f-d633-57767c0646c1	2021-05-25 21:06:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:06:49.79+03	2021-05-25 21:06:49.8+03	
a06f3c8e-eba3-ac27-a4c4-8aa8da30838d	2021-05-26 04:46:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:46:44.79+03	2021-05-26 04:46:44.796+03	
9cf8cc0b-4880-33af-9c19-147d07e7e022	2021-05-25 21:07:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:07:09.79+03	2021-05-25 21:07:09.796+03	
a08de740-3112-7370-9808-1e8291d3b404	2021-05-25 21:07:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:07:29.79+03	2021-05-25 21:07:29.796+03	
70e9176f-272f-2768-a5c2-57cf5ec44b53	2021-05-26 04:47:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:47:04.79+03	2021-05-26 04:47:04.796+03	
60a3462f-d954-9768-7bd5-1f1054d7ac2b	2021-05-25 21:07:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:07:49.791+03	2021-05-25 21:07:49.812+03	
90631a00-8023-e0bc-aa42-b5f4bec7652e	2021-05-25 21:08:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:08:10.791+03	2021-05-25 21:08:10.797+03	
c489f274-a4e5-3258-afa4-8aff5d9f5d06	2021-05-26 04:47:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:47:24.79+03	2021-05-26 04:47:24.796+03	
b1cef2ae-8250-013e-a812-5c65288b0473	2021-05-25 21:08:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:08:31.79+03	2021-05-25 21:08:31.796+03	
d72bef77-d5b5-b650-7b91-a18f03720866	2021-05-25 21:08:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:08:51.79+03	2021-05-25 21:08:51.81+03	
d5cf8319-1b6e-3e5e-6f73-6f59846bc483	2021-05-26 04:47:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:47:44.79+03	2021-05-26 04:47:44.796+03	
a77418fa-160a-d7a1-b1ec-1c882f396099	2021-05-25 21:09:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:09:11.79+03	2021-05-25 21:09:11.796+03	
9077fec0-d214-7b61-4468-35471d3c4426	2021-05-25 21:09:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:09:41.79+03	2021-05-25 21:09:41.801+03	
2c216ee9-747e-f91d-e4c0-385339ec7ea0	2021-05-26 04:48:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:48:04.79+03	2021-05-26 04:48:04.796+03	
38565901-9cfe-bbd2-8f83-f90e67b350e8	2021-05-25 21:10:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 21:10:00.79+03	2021-05-25 21:10:00.799+03	ERROR
82cb74b7-806d-b679-bc4e-d43f7ab8dd46	2021-05-25 21:10:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:10:11.79+03	2021-05-25 21:10:11.797+03	
167d12d3-15ab-c3d3-8dcc-8905a4b9641e	2021-05-25 21:10:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:10:31.79+03	2021-05-25 21:10:31.796+03	
b64a5adf-6698-e53f-29c7-121823f7b0ca	2021-05-25 21:10:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:10:51.79+03	2021-05-25 21:10:51.796+03	
f4201305-4df2-e116-25af-90ea89a184fb	2021-05-25 21:11:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:11:11.79+03	2021-05-25 21:11:11.796+03	
e2567369-06e9-7468-aaec-6686092a41cd	2021-05-25 21:11:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:11:41.79+03	2021-05-25 21:11:41.796+03	
cf6298ec-04e8-42d9-da7b-5dc0bf0cf180	2021-05-25 21:12:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:12:01.79+03	2021-05-25 21:12:01.796+03	
7d57d942-67c2-ad7a-6e1a-4a95cfe7f77c	2021-05-25 21:12:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:12:21.79+03	2021-05-25 21:12:21.806+03	
14ed8f44-dca4-c023-8d2a-336c28f5d62f	2021-05-25 21:12:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:12:41.79+03	2021-05-25 21:12:41.796+03	
223060f9-cb88-fc1e-3adc-3f741821f29a	2021-05-25 21:13:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:13:01.79+03	2021-05-25 21:13:01.796+03	
80f94471-9135-cb91-3520-40ba26fca7ca	2021-05-25 21:13:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:13:21.79+03	2021-05-25 21:13:21.801+03	
f0c5f01d-875c-17b0-dfdc-ecc9be670533	2021-05-25 21:13:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:13:41.79+03	2021-05-25 21:13:41.796+03	
415ca175-332f-f7f5-2179-1e1aea522259	2021-05-25 21:14:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:14:01.79+03	2021-05-25 21:14:01.797+03	
a184328b-d85d-f007-c5f9-10c8d132a83f	2021-05-25 21:14:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:14:21.79+03	2021-05-25 21:14:21.796+03	
7dafddfc-8e89-d0ff-b37b-3ebd1e710cef	2021-05-25 21:14:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:14:41.79+03	2021-05-25 21:14:41.801+03	
9858237a-70e8-1c45-7660-59fcc2c29f6e	2021-05-25 21:15:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:15:01.79+03	2021-05-25 21:15:01.796+03	
64692965-19ec-d77d-eaa3-def914a7181d	2021-05-25 21:15:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:15:21.79+03	2021-05-25 21:15:21.8+03	
a4d82bd4-a186-ea48-ccad-4186c385eb41	2021-05-25 21:15:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:15:41.79+03	2021-05-25 21:15:41.797+03	
85df9f7d-5f91-8c9b-5858-2dbe69f9ddb3	2021-05-25 21:16:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:16:01.79+03	2021-05-25 21:16:01.811+03	
42b81552-24ef-5b7f-f5b9-a8a6ecabd539	2021-05-25 21:16:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:16:21.79+03	2021-05-25 21:16:21.797+03	
dd786081-ae41-25ad-2aa6-2dc763909d4d	2021-05-25 21:16:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:16:41.79+03	2021-05-25 21:16:41.797+03	
a3906287-e0ec-6598-6468-2e5ff533f840	2021-05-25 21:17:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:17:01.79+03	2021-05-25 21:17:01.8+03	
25082dd5-48aa-2c8c-5499-160afa2b2952	2021-05-25 21:17:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:17:21.79+03	2021-05-25 21:17:21.797+03	
5457078c-eeb0-9724-bbf2-90aac82c0518	2021-05-25 21:17:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:17:41.79+03	2021-05-25 21:17:41.801+03	
10b085c2-9d8d-ad91-43a7-d85e15975709	2021-05-25 21:18:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:18:01.79+03	2021-05-25 21:18:01.803+03	
00571567-e392-d1a1-89a3-2daa71b8ce67	2021-05-25 21:01:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:01:29.79+03	2021-05-25 21:01:29.797+03	
15fd2378-c9eb-b787-3e7b-7e6ff079ded8	2021-05-25 21:01:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:01:49.79+03	2021-05-25 21:01:49.796+03	
d4597d99-d962-fb9e-6c86-0ff8a41add02	2021-05-25 21:02:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:02:09.79+03	2021-05-25 21:02:09.797+03	
93f69645-9cbc-88bb-618e-58886c16dd39	2021-05-25 21:02:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:02:29.79+03	2021-05-25 21:02:29.796+03	
3d3b318f-031b-8e1b-6438-8dd7955f03fa	2021-05-25 21:02:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:02:49.79+03	2021-05-25 21:02:49.8+03	
4f8247e6-d9ff-0d19-4f35-1870ab42319e	2021-05-25 21:03:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:03:09.79+03	2021-05-25 21:03:09.796+03	
092658ee-7987-8e10-d0a8-4f17780c37ff	2021-05-25 21:03:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:03:29.79+03	2021-05-25 21:03:29.796+03	
7c4628ec-cadf-5507-b909-e3acc10e44ae	2021-05-25 21:03:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:03:49.79+03	2021-05-25 21:03:49.796+03	
3b8decfd-cae2-21eb-7bbf-215de5b1a20b	2021-05-25 21:04:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:04:09.79+03	2021-05-25 21:04:09.797+03	
801dc88b-21f6-9b86-8118-0b7b85bcab76	2021-05-25 21:04:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:04:29.79+03	2021-05-25 21:04:29.796+03	
c0b97f29-ac47-237b-2ca6-567e8fc65b37	2021-05-25 21:04:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:04:49.79+03	2021-05-25 21:04:49.798+03	
3580f7e2-0ef6-dc3d-7201-9423b7df3bce	2021-05-25 21:05:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:05:09.79+03	2021-05-25 21:05:09.798+03	
48e1a83d-78ec-8a19-929b-d7dd4aac7965	2021-05-25 21:05:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:05:29.79+03	2021-05-25 21:05:29.796+03	
bfeabc57-bd30-45b8-6152-d91cbb2667e1	2021-05-25 21:05:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:05:39.79+03	2021-05-25 21:05:39.796+03	
2c47529a-3ced-747c-57bb-26b474175207	2021-05-25 21:05:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:05:59.79+03	2021-05-25 21:05:59.797+03	
f7fa782d-aacd-5c0a-0046-f929da01da36	2021-05-25 21:06:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:06:19.79+03	2021-05-25 21:06:19.798+03	
3a6ca06b-d714-cb7b-a2bc-a6a45e5270c1	2021-05-25 21:06:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:06:39.79+03	2021-05-25 21:06:39.796+03	
395cf3ff-725f-1b5e-8906-bc217ecfbac8	2021-05-25 21:06:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:06:59.79+03	2021-05-25 21:06:59.814+03	
dd0d8bb5-bfc8-a52b-bdf2-9d9b85c3dbf5	2021-05-25 21:07:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:07:19.79+03	2021-05-25 21:07:19.796+03	
aedb1cfe-4e92-c02e-66b3-b37253705dfc	2021-05-25 21:07:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:07:39.79+03	2021-05-25 21:07:39.817+03	
2d4c81e5-ee51-e35f-72f3-f57cd5910031	2021-05-25 21:08:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:08:00.79+03	2021-05-25 21:08:00.8+03	
bffca24c-e28e-b51f-a50b-40a5e6c616c7	2021-05-25 21:08:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:08:21.79+03	2021-05-25 21:08:21.796+03	
897b9279-263c-9ceb-c6a9-3cefacabfe3d	2021-05-25 21:08:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:08:41.79+03	2021-05-25 21:08:41.797+03	
21a4315a-be42-9dba-066c-dde203f2a56a	2021-05-25 21:09:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:09:01.79+03	2021-05-25 21:09:01.796+03	
173ade01-9967-2361-7d01-8fb50fb489e9	2021-05-25 21:09:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:09:21.79+03	2021-05-25 21:09:21.796+03	
465f2871-b8f7-4b93-5cad-a9039751031b	2021-05-25 21:09:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:09:31.79+03	2021-05-25 21:09:31.797+03	
670e9385-c8be-9d88-b2c5-6f11ad27a904	2021-05-25 21:09:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:09:51.79+03	2021-05-25 21:09:51.796+03	
45cda759-e411-83cc-6529-5574577adb82	2021-05-25 21:10:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:10:01.79+03	2021-05-25 21:10:01.797+03	
ef01240f-f895-b4d9-c23a-29b0383d0bea	2021-05-25 21:10:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:10:21.79+03	2021-05-25 21:10:21.796+03	
26c9576c-f099-3ceb-ebbe-080092582a44	2021-05-25 21:10:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:10:41.79+03	2021-05-25 21:10:41.796+03	
e7757ea4-b07f-616b-6b9a-7cc08bde0e34	2021-05-25 21:11:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:11:01.79+03	2021-05-25 21:11:01.805+03	
ae638698-5f3f-3215-4624-47e45eec8db2	2021-05-25 21:11:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:11:21.79+03	2021-05-25 21:11:21.8+03	
91e2655a-a73c-0068-45a7-a6b4ca4db95e	2021-05-25 21:11:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:11:31.79+03	2021-05-25 21:11:31.796+03	
a817ccea-70a9-b83a-48e6-670a5e242df3	2021-05-25 21:11:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:11:51.79+03	2021-05-25 21:11:51.796+03	
247d35a3-7ac2-2e02-2862-d5ce8fb6fef4	2021-05-25 21:12:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:12:11.79+03	2021-05-25 21:12:11.796+03	
8c1c2e87-a1c7-fb6d-26f9-5783cbf8c54b	2021-05-25 21:12:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:12:31.79+03	2021-05-25 21:12:31.796+03	
9940cb1f-8964-8546-060c-4a384c84674d	2021-05-25 21:12:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:12:51.79+03	2021-05-25 21:12:51.797+03	
ce2c9549-d8c3-e4d7-8137-6fd424b48af2	2021-05-25 21:13:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:13:11.79+03	2021-05-25 21:13:11.796+03	
f95feca2-17dc-c473-98ae-890e399ca15e	2021-05-25 21:13:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:13:31.79+03	2021-05-25 21:13:31.796+03	
368cb893-644b-5982-b0d9-2bd3955cde1a	2021-05-25 21:13:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:13:51.79+03	2021-05-25 21:13:51.808+03	
a6654f0c-1f28-9362-9162-a433b1f5836b	2021-05-25 21:14:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:14:11.79+03	2021-05-25 21:14:11.797+03	
91cbcc61-1f31-e563-bc00-384ca6101cc5	2021-05-25 21:14:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:14:31.79+03	2021-05-25 21:14:31.797+03	
bab58296-d3a7-393b-e34f-c3bde5eb1bac	2021-05-25 21:14:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:14:51.79+03	2021-05-25 21:14:51.806+03	
02f92196-bdb6-0f72-1670-0e096f186e96	2021-05-25 21:15:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:15:11.79+03	2021-05-25 21:15:11.796+03	
c3e7a769-a320-9f8a-6c53-72119704b1c3	2021-05-25 21:15:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:15:31.79+03	2021-05-25 21:15:31.796+03	
ce2d7165-9493-dfc7-d946-c3a1e1d45554	2021-05-25 21:15:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:15:51.79+03	2021-05-25 21:15:51.796+03	
89ad0cd8-9020-22c6-14af-b738d82deab0	2021-05-25 21:16:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:16:11.79+03	2021-05-25 21:16:11.8+03	
a8a87bd1-027f-20ac-4cae-5bf59d2ddd34	2021-05-25 21:16:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:16:31.79+03	2021-05-25 21:16:31.796+03	
64ce43d2-7f78-88e4-0aee-d6ff31d58dd9	2021-05-25 21:16:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:16:51.79+03	2021-05-25 21:16:51.796+03	
3aa0ac18-e4b4-0249-ffcd-673f0af7d18f	2021-05-25 21:17:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:17:11.79+03	2021-05-25 21:17:11.797+03	
b1b0cd22-73fc-a864-6f00-bb4f61cca8ef	2021-05-25 21:17:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:17:31.79+03	2021-05-25 21:17:31.796+03	
c5942089-7457-f1ef-05a5-014aac1d080d	2021-05-25 21:17:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:17:51.79+03	2021-05-25 21:17:51.797+03	
de9b723c-b414-4b13-0366-25370f9b1cbe	2021-05-25 21:18:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:18:11.79+03	2021-05-25 21:18:11.796+03	
5d7c6a49-36f1-c4a8-3db7-32d025692dad	2021-05-25 21:18:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:18:21.79+03	2021-05-25 21:18:21.796+03	
d469eaaf-0f0e-4f6c-1cb2-da97149152eb	2021-05-25 21:18:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:18:31.79+03	2021-05-25 21:18:31.796+03	
a689852c-1180-6ba1-a155-486bf6d9733a	2021-05-25 21:18:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:18:41.79+03	2021-05-25 21:18:41.797+03	
c14608ce-517d-0867-cb91-e69fd0ce1604	2021-05-25 21:18:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:18:51.79+03	2021-05-25 21:18:51.796+03	
4357ebcd-5a0b-7419-998b-3b92df1c0873	2021-05-25 21:19:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:19:01.79+03	2021-05-25 21:19:01.798+03	
914155ae-7d56-c4ac-b70b-6c88c2107f48	2021-05-25 21:19:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:19:11.79+03	2021-05-25 21:19:11.811+03	
542f5150-6494-414a-d044-f14016d0f7c7	2021-05-25 21:19:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:19:21.79+03	2021-05-25 21:19:21.797+03	
b137a907-760e-1957-ab75-2293973c26f7	2021-05-25 21:19:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:19:31.79+03	2021-05-25 21:19:31.796+03	
74d74eac-9640-8136-154e-325ed9d5d5dc	2021-05-25 21:19:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:19:41.79+03	2021-05-25 21:19:41.814+03	
4ca499c4-6a00-c14d-2179-3539f10e5023	2021-05-25 21:19:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:19:51.79+03	2021-05-25 21:19:51.796+03	
2b7c7eba-a2f2-3e9d-3900-b56a6f382c15	2021-05-25 21:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 21:20:00.79+03	2021-05-25 21:20:00.797+03	ERROR
39de90e1-08d2-b407-ac58-1c42cb85fe52	2021-05-25 21:20:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:20:11.79+03	2021-05-25 21:20:11.796+03	
d2ca0e66-be6c-c3a4-57a2-3350bcee67a6	2021-05-25 21:20:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:20:31.79+03	2021-05-25 21:20:31.796+03	
96de0e6c-ae99-5f9e-8d7b-f95954c7fee3	2021-05-25 21:20:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:20:51.79+03	2021-05-25 21:20:51.796+03	
c58c918a-5af5-3b8b-6c38-415ed83392c3	2021-05-25 21:21:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:21:11.79+03	2021-05-25 21:21:11.796+03	
36abf87f-41a6-6e8b-412d-4eb35b9b500b	2021-05-25 21:21:31.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:21:31.791+03	2021-05-25 21:21:31.81+03	
58114d0e-a476-de2b-1bed-456f8b95075a	2021-05-25 21:21:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:21:52.79+03	2021-05-25 21:21:52.798+03	
3e395562-c91a-1d9e-8c13-f0b943437aab	2021-05-25 21:22:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:22:12.79+03	2021-05-25 21:22:12.796+03	
77bedc4b-8351-9c03-9ec6-0ea7fd459d2a	2021-05-25 21:22:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:22:32.79+03	2021-05-25 21:22:32.796+03	
55ce3313-d02a-a6cb-7baf-2b14714f9e99	2021-05-25 21:22:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:22:52.79+03	2021-05-25 21:22:52.797+03	
82d03588-8426-21c8-7c67-2ab687fc2b5b	2021-05-25 21:23:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:23:12.79+03	2021-05-25 21:23:12.796+03	
796906bc-8feb-5bec-e38b-f695fc592283	2021-05-25 21:23:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:23:32.79+03	2021-05-25 21:23:32.796+03	
a1eb402e-e59f-7650-6d7a-4ca213184a0b	2021-05-25 21:23:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:23:52.79+03	2021-05-25 21:23:52.797+03	
362b0e48-d3c4-1cdf-221d-7f2c257b833a	2021-05-25 21:24:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:24:12.79+03	2021-05-25 21:24:12.796+03	
433ac516-9c8e-1d6c-b29c-d5c8fad81feb	2021-05-25 21:24:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:24:32.79+03	2021-05-25 21:24:32.797+03	
cfa7e539-f732-2557-f8db-ae6d278bd2ed	2021-05-25 21:24:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:24:52.79+03	2021-05-25 21:24:52.797+03	
87fcbeaa-6949-1407-1b4b-f75fef2161a3	2021-05-25 21:25:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:25:12.79+03	2021-05-25 21:25:12.796+03	
9556f82d-7ffb-cd94-aa95-158bbfaa6114	2021-05-25 21:25:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:25:42.79+03	2021-05-25 21:25:42.796+03	
956132c1-434d-9228-c077-964461bae606	2021-05-25 21:26:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:26:02.79+03	2021-05-25 21:26:02.797+03	
306e59ec-8b16-db34-ea33-2b52eabf0f8c	2021-05-25 21:26:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:26:22.791+03	2021-05-25 21:26:22.802+03	
1f5f08bd-0b0b-88f7-71c5-c15592522982	2021-05-25 21:26:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:26:43.79+03	2021-05-25 21:26:43.796+03	
bb5b4c12-e083-3f74-1586-4e48183e6d15	2021-05-25 21:27:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:27:03.79+03	2021-05-25 21:27:03.797+03	
ddd253b8-a3b5-2520-dc3e-72d26b9c51c3	2021-05-25 21:27:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:27:24.79+03	2021-05-25 21:27:24.808+03	
38d39202-2bf5-02d1-3d83-957fcbe8001f	2021-05-25 21:27:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:27:34.79+03	2021-05-25 21:27:34.796+03	
7dc0c625-9cf7-20b3-1bfe-ede3405bf9fa	2021-05-25 21:27:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:27:54.79+03	2021-05-25 21:27:54.8+03	
1754d148-f863-db41-1ded-51afdfe00e4e	2021-05-25 21:28:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:28:14.79+03	2021-05-25 21:28:14.796+03	
56acb51d-3535-c6e9-47c0-1b8dacc2d33c	2021-05-25 21:28:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:28:34.79+03	2021-05-25 21:28:34.796+03	
f724e939-6e2f-477c-b094-b348363e1908	2021-05-25 21:28:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:28:54.79+03	2021-05-25 21:28:54.806+03	
2b1b9ce1-a300-bb9a-0f00-3e6dbecf8ef3	2021-05-25 21:29:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:29:14.79+03	2021-05-25 21:29:14.796+03	
2ac089ab-b052-7132-3d8f-bc1f104a6fff	2021-05-25 21:29:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:29:34.79+03	2021-05-25 21:29:34.796+03	
7175893d-aad2-e0ce-0482-4179f554f4ca	2021-05-25 21:29:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:29:54.79+03	2021-05-25 21:29:54.796+03	
049e9402-d7b5-54d7-9424-ff8f2ef7c60e	2021-05-25 21:30:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:30:04.79+03	2021-05-25 21:30:04.807+03	
3cdfbb58-f16b-e99b-98c6-18ed31d704f7	2021-05-25 21:30:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:30:24.79+03	2021-05-25 21:30:24.818+03	
ca68eed4-139d-a23b-b227-2958974d55e0	2021-05-25 21:30:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:30:44.79+03	2021-05-25 21:30:44.796+03	
8a2aac3f-820a-2ca2-6807-033098a29ef7	2021-05-25 21:31:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:31:04.79+03	2021-05-25 21:31:04.796+03	
f8fb39b3-5e46-3653-efa1-b154f0d7561c	2021-05-25 21:31:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:31:24.791+03	2021-05-25 21:31:24.816+03	
07c9500b-cf64-de0e-2910-8721dc84c750	2021-05-25 21:31:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:31:46.79+03	2021-05-25 21:31:46.796+03	
924619f6-68c1-48b1-a2f5-48ac44dd9d49	2021-05-25 21:32:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:32:06.79+03	2021-05-25 21:32:06.796+03	
ca196565-43fc-af6f-25e8-eb5e43d74298	2021-05-25 21:32:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:32:26.79+03	2021-05-25 21:32:26.797+03	
86ac58f2-de84-db53-28fa-56abb151d5cf	2021-05-25 21:32:46.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:32:46.79+03	2021-05-25 21:32:46.806+03	
15114ea6-473c-2812-d289-59065dfeb459	2021-05-25 21:33:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:33:06.79+03	2021-05-25 21:33:06.8+03	
08b9d011-8b3e-882e-58d1-17824f6bf2e5	2021-05-25 21:33:26.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:33:26.791+03	2021-05-25 21:33:26.804+03	
db8c7720-fddf-e2bd-e24a-676cccc1cef6	2021-05-25 21:33:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:33:47.79+03	2021-05-25 21:33:47.796+03	
998037ab-c5ee-8874-c1d0-3345d285ad97	2021-05-25 21:34:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:34:07.79+03	2021-05-25 21:34:07.796+03	
9c3fc25e-efa7-9663-a30b-e653d9b9a201	2021-05-25 21:34:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:34:27.79+03	2021-05-25 21:34:27.797+03	
7237e967-80b3-3a62-c3b7-5a726a7a71e1	2021-05-25 21:34:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:34:37.79+03	2021-05-25 21:34:37.796+03	
3f7cd7a2-438f-006a-92be-1b3cdaa5face	2021-05-25 21:34:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:34:57.79+03	2021-05-25 21:34:57.796+03	
21e88200-13e6-03a9-7af3-2f22de656a92	2021-05-25 21:35:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:35:17.79+03	2021-05-25 21:35:17.796+03	
f21d767b-45cb-e29e-7f73-5822c082c840	2021-05-25 21:35:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:35:37.79+03	2021-05-25 21:35:37.809+03	
ffed6e64-e503-7bae-97ca-ccf54c848139	2021-05-25 21:35:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:35:57.79+03	2021-05-25 21:35:57.796+03	
d1b533f7-7512-0ca6-fcce-c4913b732925	2021-05-25 21:36:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:36:17.79+03	2021-05-25 21:36:17.797+03	
c1e351ab-2a24-270f-777a-8afa347406b3	2021-05-25 21:36:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:36:37.79+03	2021-05-25 21:36:37.796+03	
7c2fd82c-73d0-3aa6-5cfe-e19991f91563	2021-05-25 21:36:57.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:36:57.791+03	2021-05-25 21:36:57.813+03	
2d72fb7d-75d1-71c9-4e4c-5359f9b029cc	2021-05-25 21:37:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:37:19.79+03	2021-05-25 21:37:19.796+03	
b163be47-04e6-ad65-5d14-725b5cfe74a5	2021-05-25 21:37:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:37:39.79+03	2021-05-25 21:37:39.796+03	
87113cc5-2dc9-70ce-6191-889d1582bd92	2021-05-25 21:38:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:38:00.79+03	2021-05-25 21:38:00.795+03	
2de722da-bc5e-e0d9-ef9b-5cbf1ed7e3aa	2021-05-25 21:38:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:38:20.791+03	2021-05-25 21:38:20.799+03	
12e9013a-cd9d-7140-0c16-4e2f1b37704a	2021-05-25 21:38:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:38:41.79+03	2021-05-25 21:38:41.797+03	
5269db61-086b-2735-c813-55b03d87c461	2021-05-25 21:39:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:39:01.79+03	2021-05-25 21:39:01.809+03	
b68c05e1-3912-739a-4119-6b5ccaf8ac89	2021-05-25 21:39:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:39:21.79+03	2021-05-25 21:39:21.798+03	
d458f9e2-b866-06a2-d56a-32df296b334e	2021-05-25 21:39:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:39:41.79+03	2021-05-25 21:39:41.798+03	
d7b2924a-9d3e-75e4-ef24-61bdf5ba92c0	2021-05-25 21:40:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 21:40:00.79+03	2021-05-25 21:40:00.795+03	ERROR
33b5a146-5ab7-a26d-6fab-14cc6faa3b6d	2021-05-25 21:40:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:40:11.79+03	2021-05-25 21:40:11.797+03	
0233d56d-1973-9cb9-6fc1-7eac5e23b1bc	2021-05-25 21:20:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:20:01.79+03	2021-05-25 21:20:01.798+03	
0f7d902e-aa2a-3491-5548-a0fb5cbe1cce	2021-05-25 21:20:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:20:21.79+03	2021-05-25 21:20:21.804+03	
de0de63e-f122-33ef-9259-d7afa7c2b018	2021-05-25 21:20:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:20:41.79+03	2021-05-25 21:20:41.808+03	
f57300c2-1fcb-8b8a-2686-dd82a5f2a401	2021-05-25 21:21:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:21:01.79+03	2021-05-25 21:21:01.796+03	
f2101718-3577-6191-16d5-cc23839fed31	2021-05-25 21:21:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:21:21.79+03	2021-05-25 21:21:21.798+03	
7a57da13-4fbb-d69c-1e62-570ef821d877	2021-05-25 21:21:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:21:42.79+03	2021-05-25 21:21:42.798+03	
eab98f43-10c3-1f77-99ba-73b9a1053c8b	2021-05-25 21:22:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:22:02.79+03	2021-05-25 21:22:02.802+03	
4e73306f-f0f6-908b-be05-139b71d75e3a	2021-05-25 21:22:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:22:22.79+03	2021-05-25 21:22:22.8+03	
07e46d35-38b8-b867-9f95-5a135d2ee8de	2021-05-25 21:22:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:22:42.79+03	2021-05-25 21:22:42.796+03	
a7c99ed8-4dac-163a-6171-021413ad6e86	2021-05-25 21:23:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:23:02.79+03	2021-05-25 21:23:02.796+03	
890e9687-250f-7d68-e74d-3d3ca339ee7c	2021-05-25 21:23:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:23:22.79+03	2021-05-25 21:23:22.796+03	
b99e6db2-4879-5ddb-0aae-b383336db14c	2021-05-25 21:23:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:23:42.79+03	2021-05-25 21:23:42.808+03	
12f39275-6cd8-7a2a-fa5a-040626474ee3	2021-05-25 21:24:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:24:02.79+03	2021-05-25 21:24:02.796+03	
9cf2cf64-aa0e-5ec9-862b-c34291d56c0b	2021-05-25 21:24:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:24:22.79+03	2021-05-25 21:24:22.796+03	
c5f89b77-4296-d1e9-3fab-4b4a8738e759	2021-05-25 21:24:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:24:42.79+03	2021-05-25 21:24:42.797+03	
aba88e24-6365-f8b7-87d1-7286214836b2	2021-05-25 21:25:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:25:02.79+03	2021-05-25 21:25:02.796+03	
631ea92c-a6fc-5efd-634a-29c4ec329453	2021-05-25 21:25:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:25:22.79+03	2021-05-25 21:25:22.796+03	
5245f7f7-c54b-2ab5-7854-8bf8086b9aae	2021-05-25 21:25:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:25:32.79+03	2021-05-25 21:25:32.796+03	
31bfc233-df3e-d8fd-314e-7adaf442e744	2021-05-25 21:25:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:25:52.79+03	2021-05-25 21:25:52.797+03	
3165052c-547f-0f40-4d28-ac7dfef92f70	2021-05-25 21:26:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:26:12.79+03	2021-05-25 21:26:12.797+03	
e4ff84b0-f965-d7d3-029f-45a51ca9a988	2021-05-25 21:26:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:26:33.79+03	2021-05-25 21:26:33.813+03	
b05b9d7a-31dd-f1fd-78f0-1bab041021ff	2021-05-25 21:26:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:26:53.79+03	2021-05-25 21:26:53.796+03	
e134c25d-953e-126b-ada8-55022b87581e	2021-05-25 21:27:13.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:27:13.791+03	2021-05-25 21:27:13.802+03	
c7beb5d2-a17a-7f5f-204a-826237b6c1b6	2021-05-25 21:27:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:27:44.79+03	2021-05-25 21:27:44.796+03	
dcf62a83-e3bf-cf1d-c1a2-d9fd2da9e72b	2021-05-25 21:28:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:28:04.79+03	2021-05-25 21:28:04.796+03	
2fcc1689-4774-61ef-1569-2f27580717f3	2021-05-25 21:28:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:28:24.79+03	2021-05-25 21:28:24.796+03	
4224b43a-7629-b60f-714a-3c8218001be1	2021-05-25 21:28:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:28:44.79+03	2021-05-25 21:28:44.796+03	
60b72f47-c061-3a61-7b1f-c17f97774bca	2021-05-25 21:29:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:29:04.79+03	2021-05-25 21:29:04.796+03	
d7b968b0-6506-5041-351f-72142ae103cf	2021-05-25 21:29:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:29:24.79+03	2021-05-25 21:29:24.796+03	
c11f53c3-fe66-986d-ada3-b6e8842637bf	2021-05-25 21:29:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:29:44.79+03	2021-05-25 21:29:44.796+03	
29c53f66-337a-75c5-aa02-25879d683f08	2021-05-25 21:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 21:30:00.79+03	2021-05-25 21:30:00.808+03	ERROR
e24a3593-2e19-6b7f-cf1e-9c76105503ba	2021-05-25 21:30:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:30:14.79+03	2021-05-25 21:30:14.796+03	
e06fcdaf-5e85-4b95-0a8a-2af336d75d96	2021-05-25 21:30:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:30:34.79+03	2021-05-25 21:30:34.808+03	
a799cd4a-9d30-96b8-0e5c-36460f83b388	2021-05-25 21:30:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:30:54.79+03	2021-05-25 21:30:54.8+03	
081c6191-2ce6-e3de-f085-5460a89536f1	2021-05-25 21:31:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:31:14.79+03	2021-05-25 21:31:14.799+03	
6557f106-6bac-082d-2722-522a7ad619bd	2021-05-25 21:31:35.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:31:35.791+03	2021-05-25 21:31:35.798+03	
d2fca347-5b5f-370d-dc34-f1946b421d88	2021-05-25 21:31:56.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:31:56.79+03	2021-05-25 21:31:56.809+03	
c881e0a5-baf9-9313-b643-c74a0c0d65f1	2021-05-25 21:32:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:32:16.79+03	2021-05-25 21:32:16.797+03	
2f74c546-357a-6f97-b380-85416eb7501f	2021-05-25 21:32:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:32:36.79+03	2021-05-25 21:32:36.797+03	
7c20eab3-5687-56cc-465a-86e1e6c9b34e	2021-05-25 21:32:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:32:56.79+03	2021-05-25 21:32:56.797+03	
f169c077-50b5-be5c-0056-e612227fb7bf	2021-05-25 21:33:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:33:16.79+03	2021-05-25 21:33:16.81+03	
d5d7f725-77a4-9206-776d-b6ad978b7075	2021-05-25 21:33:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:33:37.79+03	2021-05-25 21:33:37.796+03	
624f5105-a6e6-2d0e-026d-0cb5cb706e14	2021-05-25 21:33:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:33:57.79+03	2021-05-25 21:33:57.796+03	
4f0f12f5-da7d-d6c6-cc81-f0b64f0a97bc	2021-05-25 21:34:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:34:17.79+03	2021-05-25 21:34:17.797+03	
948a4815-3a30-94c6-8bc3-def061d94d8d	2021-05-25 21:34:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:34:47.79+03	2021-05-25 21:34:47.796+03	
d9f000a1-e07f-780c-7609-ba3b28f22ab6	2021-05-25 21:35:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:35:07.79+03	2021-05-25 21:35:07.796+03	
694a3fa3-0076-10d5-84d0-1a5ff5914e28	2021-05-25 21:35:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:35:27.79+03	2021-05-25 21:35:27.799+03	
77770139-9d94-6f85-4e25-2d617d63b98f	2021-05-25 21:35:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:35:47.79+03	2021-05-25 21:35:47.799+03	
64da842b-617b-6b1a-9a38-369ee0800b6e	2021-05-25 21:36:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:36:07.79+03	2021-05-25 21:36:07.796+03	
4b027e27-ff9d-0750-a721-bac2eb09f2e4	2021-05-25 21:36:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:36:27.79+03	2021-05-25 21:36:27.796+03	
f37d333b-7c4f-15cc-d753-f28d0ed781db	2021-05-25 21:36:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:36:47.79+03	2021-05-25 21:36:47.808+03	
b400e168-fa2f-d6c5-2cca-e21611bce8ec	2021-05-25 21:37:08.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:37:08.792+03	2021-05-25 21:37:08.814+03	
56bd9666-9803-1926-2c3c-05eaaaa02f22	2021-05-25 21:37:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:37:29.79+03	2021-05-25 21:37:29.797+03	
6fe13a76-c80a-597a-e696-11276c658746	2021-05-25 21:37:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:37:49.791+03	2021-05-25 21:37:49.815+03	
b5ff6941-57e6-c039-fbbb-4cb3843ef7d1	2021-05-25 21:38:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:38:10.79+03	2021-05-25 21:38:10.797+03	
2dd9ec01-3a68-d101-fc1c-06aca8a4ebf1	2021-05-25 21:38:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:38:31.79+03	2021-05-25 21:38:31.796+03	
e7404b19-a755-65f1-088d-8b10274f438c	2021-05-25 21:38:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:38:51.79+03	2021-05-25 21:38:51.796+03	
f119017c-c8e7-a275-0487-0054dd03e581	2021-05-25 21:39:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:39:11.79+03	2021-05-25 21:39:11.797+03	
65641165-a848-f4d3-1014-87fed2c9644b	2021-05-25 21:39:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:39:31.79+03	2021-05-25 21:39:31.796+03	
0b15f8a5-9c5b-3de5-7f72-994515e4a94c	2021-05-25 21:39:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:39:51.79+03	2021-05-25 21:39:51.799+03	
c528d9ec-7d59-9763-af81-4fbc57a22428	2021-05-25 21:40:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:40:01.79+03	2021-05-25 21:40:01.797+03	
fb497695-0e2f-6b08-b947-a2f4b95d1b93	2021-05-25 21:40:21.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:40:21.791+03	2021-05-25 21:40:21.801+03	
8ffd89b6-3ac4-c7d6-835f-8f8f82b2c000	2021-05-25 21:40:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:40:42.79+03	2021-05-25 21:40:42.796+03	
2a5920ca-0c45-233f-57d3-43bbeb7741db	2021-05-25 21:40:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:40:32.79+03	2021-05-25 21:40:32.798+03	
32b30ae7-137f-cb4f-33a0-1074ce08d883	2021-05-25 21:40:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:40:52.79+03	2021-05-25 21:40:52.797+03	
1aee2e0f-6550-1053-3b44-bc6778605d96	2021-05-25 21:41:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:41:12.79+03	2021-05-25 21:41:12.796+03	
a4ca56d3-cfd7-3af0-8b88-2b53869b444c	2021-05-25 21:41:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:41:32.79+03	2021-05-25 21:41:32.799+03	
82521532-243a-0028-0d18-6b4879ade2a2	2021-05-25 21:41:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:41:52.79+03	2021-05-25 21:41:52.81+03	
f6679191-d132-3fe8-6939-11b30739168f	2021-05-25 21:42:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:42:12.79+03	2021-05-25 21:42:12.796+03	
980ac077-516e-6367-010a-4d911351454c	2021-05-25 21:42:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:42:32.79+03	2021-05-25 21:42:32.796+03	
4dddef58-2011-8c48-6ff1-7a4d5129310c	2021-05-25 21:42:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:42:52.79+03	2021-05-25 21:42:52.8+03	
8d3a51ed-38c2-4af6-3342-fed07e5c1c88	2021-05-25 21:43:12.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:43:12.792+03	2021-05-25 21:43:12.801+03	
1e7c522e-593e-8116-d375-fea933067c37	2021-05-25 21:43:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:43:33.79+03	2021-05-25 21:43:33.796+03	
8ac26532-ce53-687a-c630-ec69d7a1c7a1	2021-05-25 21:43:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:43:53.79+03	2021-05-25 21:43:53.809+03	
d8404141-cd35-5abf-6236-a32a0977b2d0	2021-05-25 21:44:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:44:13.79+03	2021-05-25 21:44:13.796+03	
dfc28d8c-e0d8-ab53-2e4f-8e548da0ac08	2021-05-25 21:44:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:44:33.79+03	2021-05-25 21:44:33.801+03	
ab2ef588-f2cc-f109-ff7b-41cd9930ee2e	2021-05-25 21:44:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:44:53.79+03	2021-05-25 21:44:53.797+03	
d61e4a5e-e17f-116a-828a-1e80d29f4592	2021-05-25 21:45:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:45:14.79+03	2021-05-25 21:45:14.819+03	
6a92ef42-9e99-8f98-9f77-f0ae5dd95c86	2021-05-25 21:45:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:45:34.79+03	2021-05-25 21:45:34.797+03	
3ce832ab-372c-b122-745e-46eba11240c0	2021-05-25 21:45:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:45:54.791+03	2021-05-25 21:45:54.811+03	
e746bae4-01bb-9020-396a-7bbc3cdeb601	2021-05-25 21:46:15.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:46:15.791+03	2021-05-25 21:46:15.798+03	
6b42aafd-671e-a09a-0445-341528f84c35	2021-05-25 21:46:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:46:36.79+03	2021-05-25 21:46:36.796+03	
47a53219-4ae9-b887-bf74-7724ca70b0cd	2021-05-25 21:46:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:46:56.79+03	2021-05-25 21:46:56.797+03	
e0d8ec8e-dc54-0b9f-80a6-ad00a37c4beb	2021-05-25 21:47:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:47:16.79+03	2021-05-25 21:47:16.796+03	
dcbea122-c322-decb-c69e-b9ad031a33f2	2021-05-25 21:47:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:47:36.79+03	2021-05-25 21:47:36.796+03	
73b46375-2990-3b65-bdbd-c8f8d6a1a660	2021-05-25 21:47:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:47:56.79+03	2021-05-25 21:47:56.796+03	
fe489b2f-4825-8e05-7ffc-dc00717a9b1f	2021-05-25 21:48:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:48:16.79+03	2021-05-25 21:48:16.797+03	
3e3d7571-1191-35fb-8650-55e341add5b6	2021-05-25 21:48:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:48:37.79+03	2021-05-25 21:48:37.81+03	
07b43bc8-0969-1c55-a116-b2063af8e35c	2021-05-25 21:48:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:48:57.79+03	2021-05-25 21:48:57.796+03	
41141010-629d-2212-2893-d34d9ee6cb2e	2021-05-25 21:49:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:49:17.79+03	2021-05-25 21:49:17.797+03	
461617c2-b341-6b06-3931-c54e0cc54aab	2021-05-25 21:49:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:49:37.79+03	2021-05-25 21:49:37.801+03	
3e2cb64c-cc4e-643c-8990-9d67a4e08656	2021-05-25 21:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 21:50:00.79+03	2021-05-25 21:50:00.797+03	ERROR
4923630c-3f72-43d0-bc33-0994d7cf2dda	2021-05-25 21:50:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:50:17.79+03	2021-05-25 21:50:17.797+03	
db76c3f3-1441-fb94-fc76-ffdcc02131ad	2021-05-25 21:50:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:50:37.79+03	2021-05-25 21:50:37.796+03	
598faf85-e17b-d60e-9e05-7793790d0fd1	2021-05-25 21:50:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:50:57.79+03	2021-05-25 21:50:57.796+03	
f49acd54-cb49-5d2e-2927-93cd27582b95	2021-05-25 21:51:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:51:17.79+03	2021-05-25 21:51:17.8+03	
265a19c6-e9ed-0ac9-6b27-d05ebd18c434	2021-05-25 21:51:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:51:37.79+03	2021-05-25 21:51:37.796+03	
3065b162-f740-6c46-ab4d-a36650e479e1	2021-05-25 21:51:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:51:57.79+03	2021-05-25 21:51:57.808+03	
28b1d584-8ef1-fa1c-c473-016fc2f9e444	2021-05-25 21:52:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:52:17.79+03	2021-05-25 21:52:17.797+03	
fa2bbbcc-f4f0-30da-f42e-c51a127fa7b8	2021-05-25 21:52:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:52:47.79+03	2021-05-25 21:52:47.796+03	
c1df5b15-15bb-1dc9-14eb-d3c3039017b9	2021-05-25 21:53:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:53:07.79+03	2021-05-25 21:53:07.796+03	
cef04661-0d12-d29e-e81a-a4bbe08a4dd4	2021-05-25 21:53:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:53:27.79+03	2021-05-25 21:53:27.795+03	
1bb10beb-e1c0-1930-107b-5c85370fa960	2021-05-25 21:53:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:53:47.79+03	2021-05-25 21:53:47.796+03	
38895a0d-6f6c-f74b-2913-fc9d2ce3c192	2021-05-25 21:54:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:54:07.79+03	2021-05-25 21:54:07.796+03	
1f32a8d5-261f-debf-5b04-2ceafbaaaba5	2021-05-25 21:54:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:54:27.79+03	2021-05-25 21:54:27.797+03	
3b9cbd16-c7a4-e0d6-dd5d-0de4125fcb2f	2021-05-25 21:54:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:54:47.79+03	2021-05-25 21:54:47.796+03	
4068abfc-3af7-f86a-0461-966cb8a0a553	2021-05-25 21:55:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:55:07.79+03	2021-05-25 21:55:07.81+03	
5027462e-09a8-4ce5-221b-c57d7f06050f	2021-05-25 21:55:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:55:27.79+03	2021-05-25 21:55:27.799+03	
80ab4afc-4164-c261-3721-07870ae380b6	2021-05-25 21:55:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:55:47.79+03	2021-05-25 21:55:47.81+03	
0e2da58a-77c8-bc9d-b00c-b785220203fa	2021-05-25 21:56:08.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:56:08.791+03	2021-05-25 21:56:08.805+03	
5f7ed42d-891c-73ce-9332-1a6130959ba3	2021-05-25 21:56:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:56:29.79+03	2021-05-25 21:56:29.797+03	
4e11ff02-2313-068c-082b-66e4d7d8be69	2021-05-25 21:56:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:56:49.79+03	2021-05-25 21:56:49.796+03	
fc2c9554-31dc-693f-6a95-1499dbc8096e	2021-05-25 21:57:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:57:09.79+03	2021-05-25 21:57:09.796+03	
64012861-be9e-55a1-2266-73155fc4acc9	2021-05-25 21:57:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:57:29.79+03	2021-05-25 21:57:29.796+03	
8fb0fe55-b157-f92f-b9d4-3d1e961ef7df	2021-05-25 21:57:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:57:49.79+03	2021-05-25 21:57:49.796+03	
65d522e1-6c94-21d2-8046-a3337d55ee57	2021-05-25 21:58:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:58:09.79+03	2021-05-25 21:58:09.796+03	
fd073d18-e31b-a620-dad4-aaac1475d011	2021-05-25 21:58:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:58:29.79+03	2021-05-25 21:58:29.797+03	
a61ca5d0-682a-d209-695d-083f642716bb	2021-05-25 21:58:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:58:49.79+03	2021-05-25 21:58:49.796+03	
8cf172ae-3a87-abf8-793f-0d98828d7e14	2021-05-25 21:59:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:59:09.79+03	2021-05-25 21:59:09.796+03	
c3e6af60-9a81-d7bd-ac42-f6bc2aaa39f6	2021-05-25 21:59:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:59:29.79+03	2021-05-25 21:59:29.796+03	
29e89cba-8745-4100-00c0-4b0b099135aa	2021-05-25 21:59:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:59:49.79+03	2021-05-25 21:59:49.796+03	
a4639172-48b1-1051-8adf-59d187e7a37f	2021-05-25 22:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 22:00:00.79+03	2021-05-25 22:00:00.798+03	ERROR
2c44a69d-80dd-7ff1-3e55-0b635a794840	2021-05-25 22:00:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:00:19.79+03	2021-05-25 22:00:19.796+03	
c6569cc9-2ab6-d24c-559e-28a0122fdf80	2021-05-25 22:00:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:00:39.79+03	2021-05-25 22:00:39.796+03	
e8636763-c940-7ec5-8736-1b7df225c330	2021-05-25 22:00:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:00:59.79+03	2021-05-25 22:00:59.796+03	
57ad9ae0-4319-acc9-6f0d-a76da7810357	2021-05-25 22:01:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:01:19.79+03	2021-05-25 22:01:19.796+03	
35579466-5dad-27db-6936-3f05cf3c6c92	2021-05-25 21:41:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:41:02.79+03	2021-05-25 21:41:02.797+03	
33c3e488-6c9b-56c0-b2b3-cac37c882f3d	2021-05-25 21:41:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:41:22.79+03	2021-05-25 21:41:22.795+03	
2de4f193-4cc5-f6b6-3168-66410d88b069	2021-05-25 21:41:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:41:42.79+03	2021-05-25 21:41:42.796+03	
e03523ac-4d3f-db5e-ead9-43626c032786	2021-05-25 21:42:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:42:02.79+03	2021-05-25 21:42:02.796+03	
ba66111a-c8ad-c762-db10-2f636feaa435	2021-05-25 21:42:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:42:22.79+03	2021-05-25 21:42:22.795+03	
69799b49-236f-6a13-dc43-0f6944be57a6	2021-05-25 21:42:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:42:42.79+03	2021-05-25 21:42:42.799+03	
d23005c3-7138-9a2d-0348-f8b8c4c0e210	2021-05-25 21:43:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:43:02.79+03	2021-05-25 21:43:02.812+03	
4be9d26a-8494-7828-c9b3-a03d2697b158	2021-05-25 21:43:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:43:23.79+03	2021-05-25 21:43:23.797+03	
eaf5bec3-cda7-a2a8-cc82-ba78d1371f88	2021-05-25 21:43:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:43:43.79+03	2021-05-25 21:43:43.797+03	
bcf5eff8-505d-b132-f808-c8944823d79a	2021-05-25 21:44:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:44:03.79+03	2021-05-25 21:44:03.797+03	
bdcb5834-a55b-82d0-16cf-62d90ceb6a01	2021-05-25 21:44:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:44:23.79+03	2021-05-25 21:44:23.802+03	
2b5aa9fe-f61f-beb0-8bde-e63b96216e3e	2021-05-25 21:44:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:44:43.79+03	2021-05-25 21:44:43.797+03	
7c1db503-eb63-4378-f89c-8758f21f8268	2021-05-25 21:45:03.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:45:03.793+03	2021-05-25 21:45:03.811+03	
c34836f6-b7e6-ca2c-2794-e2ec2f8f8797	2021-05-25 21:45:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:45:24.79+03	2021-05-25 21:45:24.8+03	
d35d68c6-5626-9909-760c-4936de3a4895	2021-05-25 21:45:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:45:44.79+03	2021-05-25 21:45:44.796+03	
f90c42bb-8e79-bd5a-3dd7-9df49817adc0	2021-05-25 21:46:05.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:46:05.791+03	2021-05-25 21:46:05.797+03	
b8fa64c8-e436-0768-f212-5192fb5d8d73	2021-05-25 21:46:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:46:26.79+03	2021-05-25 21:46:26.796+03	
976a1105-d80a-08b9-ec78-61931b8e558c	2021-05-25 21:46:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:46:46.79+03	2021-05-25 21:46:46.796+03	
199a9f6c-f781-cd8c-5449-0f371b2223f7	2021-05-25 21:47:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:47:06.79+03	2021-05-25 21:47:06.796+03	
4debea17-e34a-00ee-df61-08920e240ed2	2021-05-25 21:47:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:47:26.79+03	2021-05-25 21:47:26.796+03	
886dd676-797f-40cd-54c1-dbaba3cfc048	2021-05-25 21:47:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:47:46.79+03	2021-05-25 21:47:46.796+03	
381319ff-7ba8-335b-d231-6634d78139e0	2021-05-25 21:48:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:48:06.79+03	2021-05-25 21:48:06.796+03	
e6bdb929-2687-a671-cd25-39c511b936c0	2021-05-25 21:48:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:48:26.791+03	2021-05-25 21:48:26.814+03	
767a5f50-7908-8bc4-c6e9-8a7f01e0474f	2021-05-25 21:48:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:48:47.79+03	2021-05-25 21:48:47.796+03	
5400ee05-6b80-4725-c7cb-e41a0c74345e	2021-05-25 21:49:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:49:07.79+03	2021-05-25 21:49:07.803+03	
2fdbb1d3-fa7f-1674-17df-05a8cca9eaba	2021-05-25 21:49:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:49:27.79+03	2021-05-25 21:49:27.796+03	
9e4676cb-97ba-889e-f96b-10d76603ae22	2021-05-25 21:49:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:49:47.79+03	2021-05-25 21:49:47.795+03	
144126ed-e9c1-89e3-50dc-efbf4e25c413	2021-05-25 21:49:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:49:57.79+03	2021-05-25 21:49:57.796+03	
290fa1fa-9423-e4b6-c4c6-0d80f5ce7141	2021-05-25 21:50:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:50:07.79+03	2021-05-25 21:50:07.812+03	
6a1f43e7-657e-a6e5-3659-53cc9e543343	2021-05-25 21:50:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:50:27.79+03	2021-05-25 21:50:27.796+03	
4c5b0f67-f24e-ac5f-1aee-b4b9a394289e	2021-05-25 21:50:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:50:47.79+03	2021-05-25 21:50:47.796+03	
84e43b81-6378-883f-86ba-9d0cea9dddc5	2021-05-25 21:51:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:51:07.79+03	2021-05-25 21:51:07.796+03	
bbea58be-e772-e894-5036-d58e1ed71b43	2021-05-25 21:51:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:51:27.79+03	2021-05-25 21:51:27.797+03	
c6f3f144-af29-5018-39d6-026626d7bca4	2021-05-25 21:51:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:51:47.79+03	2021-05-25 21:51:47.811+03	
60babfb8-0c84-0cb0-811a-8ca011b43997	2021-05-25 21:52:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:52:07.79+03	2021-05-25 21:52:07.796+03	
2c6e4ba5-5813-6b64-7abd-6f169906eee4	2021-05-25 21:52:27.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:52:27.79+03	2021-05-25 21:52:27.813+03	
2bbbd0d4-4bc7-078e-48aa-e58b6d4009c9	2021-05-25 21:52:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:52:37.79+03	2021-05-25 21:52:37.796+03	
5c4d7628-23ed-d7b4-49a5-c6918b5e4388	2021-05-25 21:52:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:52:57.79+03	2021-05-25 21:52:57.796+03	
a35ef49d-48b9-bb33-e481-f9dd6b049126	2021-05-25 21:53:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:53:17.79+03	2021-05-25 21:53:17.798+03	
84be4977-8266-fe30-7959-3ac2acc30325	2021-05-25 21:53:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:53:37.79+03	2021-05-25 21:53:37.796+03	
79cef875-7244-52a8-e6a0-bf6b55797dfd	2021-05-25 21:53:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:53:57.79+03	2021-05-25 21:53:57.796+03	
8390ac58-a2fa-0a5c-eb73-92fba10442c9	2021-05-25 21:54:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:54:17.79+03	2021-05-25 21:54:17.797+03	
720b4691-0a7c-aa3d-79c0-66d33b6624d6	2021-05-25 21:54:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:54:37.79+03	2021-05-25 21:54:37.796+03	
b0b8553f-89b7-e462-3d49-58169a407015	2021-05-25 21:54:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:54:57.79+03	2021-05-25 21:54:57.796+03	
a5db7bdd-ee94-80c9-5ecd-0be992ef762e	2021-05-25 21:55:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:55:17.79+03	2021-05-25 21:55:17.797+03	
35eb7f57-6999-ffd5-6fe6-e93c9153bd93	2021-05-25 21:55:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:55:37.79+03	2021-05-25 21:55:37.796+03	
699ce8df-08f0-873c-8234-ae1628816dba	2021-05-25 21:55:57.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:55:57.791+03	2021-05-25 21:55:57.816+03	
32f730dc-5112-37de-74c1-05d2657842d8	2021-05-25 21:56:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:56:19.79+03	2021-05-25 21:56:19.796+03	
3c8a044a-b5fb-f578-0474-a386edb6ac64	2021-05-25 21:56:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:56:39.79+03	2021-05-25 21:56:39.796+03	
28b1d226-cadf-a499-a6b0-f38c3937124f	2021-05-25 21:56:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:56:59.79+03	2021-05-25 21:56:59.797+03	
efc60c6e-5c10-c260-1d70-6f6fc62f48c4	2021-05-25 21:57:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:57:19.79+03	2021-05-25 21:57:19.796+03	
1f9f7670-1f9b-4996-041f-0c2f7693a660	2021-05-25 21:57:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:57:39.79+03	2021-05-25 21:57:39.796+03	
3c7f40c4-3a81-521f-835f-d6a401aa578d	2021-05-25 21:57:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:57:59.79+03	2021-05-25 21:57:59.796+03	
fccb00e8-cd66-2a8a-c129-1b6c8f8b1645	2021-05-25 21:58:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:58:19.79+03	2021-05-25 21:58:19.808+03	
da8e2919-5829-4a7a-18b7-67f43e75ad15	2021-05-25 21:58:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:58:39.79+03	2021-05-25 21:58:39.796+03	
ae6f142c-edde-3276-796b-83c0381f1bc3	2021-05-25 21:58:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:58:59.79+03	2021-05-25 21:58:59.796+03	
f6a9d57a-e0b1-8dd0-4e52-a652216dd7c4	2021-05-25 21:59:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:59:19.79+03	2021-05-25 21:59:19.813+03	
0366d592-46e1-7be7-8f83-2f0a60098f9d	2021-05-25 21:59:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:59:39.79+03	2021-05-25 21:59:39.796+03	
bb2aebdb-c277-d5c8-aa01-668fba86d895	2021-05-25 21:59:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 21:59:59.79+03	2021-05-25 21:59:59.796+03	
786febd6-d4de-ebf6-e58a-4889a7a97387	2021-05-25 22:00:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:00:09.79+03	2021-05-25 22:00:09.796+03	
2bf76316-d49f-ba1a-f44e-d1c490ad6fa4	2021-05-25 22:00:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:00:29.79+03	2021-05-25 22:00:29.797+03	
6942a980-926f-9d16-ebed-a509b09473fc	2021-05-25 22:00:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:00:49.79+03	2021-05-25 22:00:49.796+03	
46f62770-82a5-b0d9-4838-56919d4a4f5d	2021-05-25 22:01:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:01:09.79+03	2021-05-25 22:01:09.801+03	
d4ebe44b-bddb-9071-6199-aa5c090c4452	2021-05-25 22:01:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:01:29.79+03	2021-05-25 22:01:29.796+03	
296cd104-5761-a28e-dd5a-4e849455a9cb	2021-05-25 22:01:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:01:49.79+03	2021-05-25 22:01:49.796+03	
caec747b-ce2f-b21a-7809-acaf8d7de883	2021-05-25 22:02:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:02:09.79+03	2021-05-25 22:02:09.808+03	
88b495dd-20b9-a5eb-040f-92ecd7ae344a	2021-05-25 22:02:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:02:29.79+03	2021-05-25 22:02:29.797+03	
904d24ab-6add-903b-2a49-af0762f37eb4	2021-05-25 22:02:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:02:49.79+03	2021-05-25 22:02:49.796+03	
deed04f9-b891-588d-b441-204d25c210a6	2021-05-25 22:03:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:03:09.79+03	2021-05-25 22:03:09.796+03	
e529d72c-4d00-385a-c38a-cbe0ae9855e9	2021-05-25 22:03:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:03:29.79+03	2021-05-25 22:03:29.796+03	
f1453de4-9141-1b9c-c048-93bc294bb870	2021-05-25 22:03:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:03:49.79+03	2021-05-25 22:03:49.796+03	
226d2d55-c4c5-5276-77a0-e95da48ce170	2021-05-25 22:04:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:04:09.79+03	2021-05-25 22:04:09.796+03	
36631ef8-5128-fbbd-c407-14eb4b19a82b	2021-05-25 22:04:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:04:29.79+03	2021-05-25 22:04:29.813+03	
89fc9e03-9d65-58f4-6c06-f2bdb2bc5b6b	2021-05-25 22:04:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:04:49.79+03	2021-05-25 22:04:49.796+03	
a96f90ce-a72b-c7e1-2c6e-2bb8e902a46e	2021-05-25 22:05:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:05:09.79+03	2021-05-25 22:05:09.796+03	
9473321b-fa46-956f-4bc4-e6f3c42bbf4d	2021-05-25 22:05:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:05:29.79+03	2021-05-25 22:05:29.796+03	
1e28368e-5ba7-a386-7ff9-2db2441e34e0	2021-05-25 22:05:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:05:49.79+03	2021-05-25 22:05:49.796+03	
1e3ef97a-826c-890f-1718-aa780c87049c	2021-05-25 22:06:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:06:09.79+03	2021-05-25 22:06:09.796+03	
81f69b7d-8182-e0b8-2d4d-8949c9da2e9a	2021-05-25 22:06:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:06:29.791+03	2021-05-25 22:06:29.823+03	
2f60dc74-84c6-7f78-2dab-d08f363de75f	2021-05-25 22:06:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:06:50.79+03	2021-05-25 22:06:50.796+03	
4dcb67ab-4b71-a6b8-9f98-ee4cb9decc3e	2021-05-25 22:07:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:07:10.79+03	2021-05-25 22:07:10.815+03	
dc6fc49c-6349-9643-4c38-ecdae8228baf	2021-05-25 22:07:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:07:30.79+03	2021-05-25 22:07:30.796+03	
ab468e58-5b09-c46c-3c9f-b9095ba9acf2	2021-05-25 22:07:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:07:50.79+03	2021-05-25 22:07:50.797+03	
cda81f76-ce03-a94c-c486-78ed583771e8	2021-05-25 22:08:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:08:10.79+03	2021-05-25 22:08:10.798+03	
4dd43b0c-1159-f565-7fa0-60da8d1292f3	2021-05-25 22:08:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:08:30.79+03	2021-05-25 22:08:30.796+03	
7f500028-ce6c-a25e-0aad-32366bc2f488	2021-05-25 22:08:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:08:50.79+03	2021-05-25 22:08:50.815+03	
9f63c5af-3378-2d8d-0601-11f76186cff1	2021-05-25 22:09:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:09:10.79+03	2021-05-25 22:09:10.797+03	
e4eec10c-b879-6b43-137f-365bb9ff2a2f	2021-05-25 22:09:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:09:31.79+03	2021-05-25 22:09:31.796+03	
61390b25-407b-1f21-7f69-ab86e5ae876a	2021-05-25 22:09:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:09:51.79+03	2021-05-25 22:09:51.798+03	
ee21605f-29e3-a127-ad11-3cf4c239fd5a	2021-05-25 22:10:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:10:01.79+03	2021-05-25 22:10:01.8+03	
58e07d5b-ea29-2f3a-e481-72c82ea59b21	2021-05-25 22:10:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:10:21.79+03	2021-05-25 22:10:21.796+03	
3b554634-9be7-51e1-1b37-0d366c5f5155	2021-05-25 22:10:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:10:41.79+03	2021-05-25 22:10:41.814+03	
2e100f3a-3119-5437-e01a-9857295fbee4	2021-05-25 22:11:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:11:01.79+03	2021-05-25 22:11:01.796+03	
071d3239-5a90-b1a0-0233-a92f73fce4d4	2021-05-25 22:11:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:11:21.79+03	2021-05-25 22:11:21.796+03	
17a4671b-8a25-bdfe-bd0d-b1861e6a7521	2021-05-25 22:11:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:11:41.79+03	2021-05-25 22:11:41.796+03	
6b7aea74-1728-7709-ac85-81cc2351acf5	2021-05-25 22:12:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:12:01.79+03	2021-05-25 22:12:01.797+03	
01f16e7a-4b0f-b441-fc23-edaba6a0dc1b	2021-05-25 22:12:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:12:22.79+03	2021-05-25 22:12:22.796+03	
52d2be03-44d1-19ca-9ab6-13faec92ffc9	2021-05-25 22:12:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:12:42.79+03	2021-05-25 22:12:42.798+03	
b6fb01ce-fc44-b898-8fc4-ed204c735417	2021-05-25 22:13:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:13:02.79+03	2021-05-25 22:13:02.796+03	
38cd4643-c84c-2372-81ad-2c857d1c56c3	2021-05-25 22:13:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:13:22.79+03	2021-05-25 22:13:22.799+03	
6ac4f753-bcb5-223d-03de-6e9324d29277	2021-05-25 22:13:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:13:42.79+03	2021-05-25 22:13:42.796+03	
dcddf218-92b7-b604-e106-9227da112cfe	2021-05-25 22:14:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:14:02.79+03	2021-05-25 22:14:02.797+03	
24153c76-e561-3544-002e-620ad1d23727	2021-05-25 22:14:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:14:22.79+03	2021-05-25 22:14:22.797+03	
b8508411-bfd2-55e5-9a95-952e92227922	2021-05-25 22:14:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:14:42.79+03	2021-05-25 22:14:42.796+03	
51db5c08-80aa-c515-d577-4b895d2d0bff	2021-05-25 22:15:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:15:02.79+03	2021-05-25 22:15:02.796+03	
014dba6f-2dcc-4e6e-0ae0-454c552c03a1	2021-05-25 22:15:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:15:22.79+03	2021-05-25 22:15:22.797+03	
2f8b82c9-1e6d-cbb3-ec64-47e90994c958	2021-05-25 22:15:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:15:42.79+03	2021-05-25 22:15:42.796+03	
beed9cd4-6e22-46a0-5b8a-c96a259f0c12	2021-05-25 22:16:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:16:02.79+03	2021-05-25 22:16:02.796+03	
dc7048b1-b8f8-a1ef-184b-175abd8a4310	2021-05-25 22:16:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:16:22.79+03	2021-05-25 22:16:22.796+03	
4fa6af92-1d68-d9e7-1998-a46657a5fc63	2021-05-25 22:16:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:16:42.79+03	2021-05-25 22:16:42.8+03	
6a2177c2-9106-aa0f-425d-8255a9c7a668	2021-05-25 22:17:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:17:02.79+03	2021-05-25 22:17:02.796+03	
a2e1bd18-ed4f-eef7-10e5-f5ac7a13d39e	2021-05-25 22:17:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:17:22.79+03	2021-05-25 22:17:22.796+03	
b8e524c9-92cb-bb73-f88f-3600d4387878	2021-05-25 22:17:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:17:42.79+03	2021-05-25 22:17:42.796+03	
56404940-1952-781e-0a2d-93bc005ccc63	2021-05-25 22:18:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:18:02.79+03	2021-05-25 22:18:02.796+03	
c904a7ea-2f98-4b5d-82e5-16896a789fa9	2021-05-25 22:18:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:18:22.79+03	2021-05-25 22:18:22.796+03	
6cb15519-a47c-21c6-3ae5-ee8b17b5c5eb	2021-05-25 22:18:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:18:42.79+03	2021-05-25 22:18:42.796+03	
510b55e8-27a4-c20a-6cac-6f30ed0826f6	2021-05-25 22:19:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:19:02.79+03	2021-05-25 22:19:02.798+03	
78e8d85b-d270-62d6-2665-ef4cc3d0d29b	2021-05-25 22:19:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:19:22.79+03	2021-05-25 22:19:22.797+03	
6c68982a-7976-474f-4ba4-b720ad8f1c66	2021-05-25 22:19:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:19:42.79+03	2021-05-25 22:19:42.797+03	
1865308d-d615-0f23-85c9-b82dd15bf2c0	2021-05-25 22:20:00.793	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 22:20:00.792+03	2021-05-25 22:20:00.803+03	ERROR
0d0b8d8f-5537-32d2-e6ed-61bab220e8af	2021-05-25 22:20:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:20:12.79+03	2021-05-25 22:20:12.798+03	
ad4df915-4d5b-270d-dffd-c469046fa7c9	2021-05-25 22:20:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:20:32.79+03	2021-05-25 22:20:32.796+03	
4ee37319-09b4-519f-5e81-c5506a3a0722	2021-05-25 22:20:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:20:52.79+03	2021-05-25 22:20:52.8+03	
8f72bd3d-f3b2-6710-7408-b922e5d24fa6	2021-05-25 22:21:12.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:21:12.792+03	2021-05-25 22:21:12.815+03	
47d038de-776d-5959-f287-944adbdcf11c	2021-05-25 22:21:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:21:33.79+03	2021-05-25 22:21:33.81+03	
fa72267d-4e15-1d2c-ed83-1774283715d7	2021-05-25 22:21:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:21:53.79+03	2021-05-25 22:21:53.811+03	
8b81e82b-d197-9355-2228-ed854d48076e	2021-05-25 22:01:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:01:39.79+03	2021-05-25 22:01:39.797+03	
ddbd12e6-02c3-614f-e8be-75dc9f86203b	2021-05-25 22:01:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:01:59.79+03	2021-05-25 22:01:59.797+03	
5dcb998d-5af3-94c1-40a8-6aa4c3fdad93	2021-05-25 22:02:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:02:19.79+03	2021-05-25 22:02:19.796+03	
5640d952-9ca3-03b7-17d6-0ef5153bf410	2021-05-25 22:02:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:02:39.79+03	2021-05-25 22:02:39.798+03	
952e2263-47a7-96c5-45db-2bf71502569f	2021-05-25 22:02:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:02:59.79+03	2021-05-25 22:02:59.796+03	
12999371-c6cd-8f77-221d-a10ca5b28c18	2021-05-25 22:03:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:03:19.79+03	2021-05-25 22:03:19.797+03	
a9fd5bf9-64bc-7e82-06d5-1c6d9392cfc3	2021-05-25 22:03:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:03:39.79+03	2021-05-25 22:03:39.796+03	
21b8ed14-7ae8-8dfb-c689-4f6109e9014b	2021-05-25 22:03:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:03:59.79+03	2021-05-25 22:03:59.796+03	
076e34f7-57b4-18d3-4861-96946c92d674	2021-05-25 22:04:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:04:19.79+03	2021-05-25 22:04:19.796+03	
af6f105c-5569-a034-1a86-97d4c78e4698	2021-05-25 22:04:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:04:39.79+03	2021-05-25 22:04:39.811+03	
edf91e5d-13ba-39e3-0e8d-9de55b518469	2021-05-25 22:04:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:04:59.79+03	2021-05-25 22:04:59.797+03	
b8491776-2307-a8ea-c838-4f5dab30ee2b	2021-05-25 22:05:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:05:19.79+03	2021-05-25 22:05:19.797+03	
b232d3c6-14f3-890f-5458-a2dec3cc1b5c	2021-05-25 22:05:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:05:39.79+03	2021-05-25 22:05:39.797+03	
67be06bf-d882-9568-a928-918984eaacef	2021-05-25 22:05:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:05:59.79+03	2021-05-25 22:05:59.799+03	
9c71b7c6-d660-d93f-bfa5-358ab4642dc5	2021-05-25 22:06:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:06:19.79+03	2021-05-25 22:06:19.796+03	
5b58fff7-6239-dbdd-d10c-fd0f61efac80	2021-05-25 22:06:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:06:40.79+03	2021-05-25 22:06:40.797+03	
2864fd8c-6dfe-225a-a805-c4bbdd18980d	2021-05-25 22:07:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:07:00.79+03	2021-05-25 22:07:00.796+03	
e7ae8cfc-975c-e088-50d5-a8fca723b612	2021-05-25 22:07:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:07:20.79+03	2021-05-25 22:07:20.796+03	
3bb0eb7e-4f5d-5c7a-ca84-cb89710688cb	2021-05-25 22:07:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:07:40.79+03	2021-05-25 22:07:40.796+03	
829487b1-c162-ecb3-c233-8a782ff35c6d	2021-05-25 22:08:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:08:00.79+03	2021-05-25 22:08:00.797+03	
f4e2c20a-8f78-f586-09be-172a8f253f12	2021-05-25 22:08:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:08:20.79+03	2021-05-25 22:08:20.796+03	
5326228b-3897-4d92-e1b3-68e55485960b	2021-05-25 22:08:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:08:40.79+03	2021-05-25 22:08:40.797+03	
9f133c40-7f17-e195-5442-be45c2d1d281	2021-05-25 22:09:00.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:09:00.79+03	2021-05-25 22:09:00.799+03	
fc818602-ea34-bbea-7b5b-5aa6927310e2	2021-05-25 22:09:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:09:20.791+03	2021-05-25 22:09:20.797+03	
bc36755a-3396-7595-c81b-8e64980a4db8	2021-05-25 22:09:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:09:41.79+03	2021-05-25 22:09:41.797+03	
87bb1d53-51ef-760d-bd5f-bcbdf0112422	2021-05-25 22:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 22:10:00.79+03	2021-05-25 22:10:00.796+03	ERROR
aa07042c-145d-108c-0bf5-82f56e81ff40	2021-05-25 22:10:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:10:11.79+03	2021-05-25 22:10:11.796+03	
6d753372-4540-4801-c579-2dc51ddd0852	2021-05-25 22:10:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:10:31.79+03	2021-05-25 22:10:31.797+03	
c0bb977b-d2df-f919-2662-7997ed1c27d4	2021-05-25 22:10:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:10:51.79+03	2021-05-25 22:10:51.796+03	
dae516aa-f180-1d9b-3899-40876d182d4c	2021-05-25 22:11:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:11:11.79+03	2021-05-25 22:11:11.798+03	
299d32a0-c6a6-f877-8058-d84d03ff6d44	2021-05-25 22:11:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:11:31.79+03	2021-05-25 22:11:31.809+03	
3fb9caad-afe4-89a5-09c7-500046bf4731	2021-05-25 22:11:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:11:51.79+03	2021-05-25 22:11:51.796+03	
6b57847c-2418-2dc7-027b-9faf5df951fe	2021-05-25 22:12:11.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:12:11.791+03	2021-05-25 22:12:11.803+03	
04165898-4b71-ce28-169f-b6a1aea92523	2021-05-25 22:12:32.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:12:32.79+03	2021-05-25 22:12:32.799+03	
bb430d68-9215-92c8-fd9b-945ed5b62708	2021-05-25 22:12:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:12:52.79+03	2021-05-25 22:12:52.796+03	
3c09747e-b09e-8735-9743-a2ae11c1e7e2	2021-05-25 22:13:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:13:12.79+03	2021-05-25 22:13:12.796+03	
ace4923b-8ea1-9291-396c-e8a160a1bae9	2021-05-25 22:13:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:13:32.79+03	2021-05-25 22:13:32.796+03	
30bf523e-cb04-c466-58cd-16d49071dd27	2021-05-25 22:13:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:13:52.79+03	2021-05-25 22:13:52.796+03	
ca940cd3-bf86-e909-04ac-efc900da24d5	2021-05-25 22:14:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:14:12.79+03	2021-05-25 22:14:12.797+03	
452b1497-0d41-9f2c-9d4e-1b5c47f26ce0	2021-05-25 22:14:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:14:32.79+03	2021-05-25 22:14:32.796+03	
925d72ae-aefd-5298-87f2-d839942a34ca	2021-05-25 22:14:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:14:52.79+03	2021-05-25 22:14:52.797+03	
208a37d3-c961-3a0a-e1b4-c521a7a75e10	2021-05-25 22:15:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:15:12.79+03	2021-05-25 22:15:12.796+03	
6f9868eb-5a6b-ec0f-700b-45ef33e9761d	2021-05-25 22:15:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:15:32.79+03	2021-05-25 22:15:32.796+03	
54b96cfd-d1a9-39c6-6251-247271b7f150	2021-05-25 22:15:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:15:52.79+03	2021-05-25 22:15:52.802+03	
5d28a665-edb4-cc38-1210-51c25bf007ed	2021-05-25 22:16:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:16:12.79+03	2021-05-25 22:16:12.8+03	
27a312fa-38ec-9e21-6760-f595d8cda6c4	2021-05-25 22:16:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:16:32.79+03	2021-05-25 22:16:32.799+03	
a14103eb-9651-45f1-0c1c-2f9d1ac00ec4	2021-05-25 22:16:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:16:52.79+03	2021-05-25 22:16:52.809+03	
01acd63d-a22b-d918-2ce3-8f6af1d680a2	2021-05-25 22:17:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:17:12.79+03	2021-05-25 22:17:12.796+03	
1ec8f818-0d3d-3a2d-4fc9-d850da951dcb	2021-05-25 22:17:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:17:32.79+03	2021-05-25 22:17:32.796+03	
4ff65689-ce0b-b056-a64e-97fcac4155e3	2021-05-25 22:17:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:17:52.79+03	2021-05-25 22:17:52.796+03	
ad0ec096-1498-d911-1efc-ac23cf20f259	2021-05-25 22:18:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:18:12.79+03	2021-05-25 22:18:12.796+03	
6fa90da2-a4a9-b554-9ca7-9e87dab72387	2021-05-25 22:18:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:18:32.79+03	2021-05-25 22:18:32.797+03	
dac15b06-4ed3-f01a-d887-e6527e36c963	2021-05-25 22:18:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:18:52.79+03	2021-05-25 22:18:52.797+03	
ab3cf2e8-ab09-ff83-99e2-1bc40ad1ee16	2021-05-25 22:19:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:19:12.79+03	2021-05-25 22:19:12.796+03	
1ad5e16a-4e4c-47a2-5c78-67a69b117a91	2021-05-25 22:19:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:19:32.79+03	2021-05-25 22:19:32.815+03	
302bbbfa-85ab-7090-1317-da11fb2037ca	2021-05-25 22:19:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:19:52.79+03	2021-05-25 22:19:52.813+03	
e37dd732-9ae2-9817-7b50-410804f47583	2021-05-25 22:20:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:20:02.79+03	2021-05-25 22:20:02.8+03	
7b7399ac-a01b-75da-199d-c46ecdbbfd47	2021-05-25 22:20:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:20:22.79+03	2021-05-25 22:20:22.799+03	
da0393fe-effe-9939-c2d7-1efa07e3991d	2021-05-25 22:20:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:20:42.79+03	2021-05-25 22:20:42.796+03	
7de6de6c-632f-89d8-acbd-fb8d08708910	2021-05-25 22:21:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:21:02.79+03	2021-05-25 22:21:02.8+03	
ef373fee-3a87-5fda-6e47-0e3fab3d0620	2021-05-25 22:21:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:21:23.79+03	2021-05-25 22:21:23.796+03	
e1611584-6b00-b58d-8b12-76608bcb9c89	2021-05-25 22:21:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:21:43.79+03	2021-05-25 22:21:43.797+03	
707e3d24-9fc3-d4d5-7323-1a7a2dfb809d	2021-05-25 22:22:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:22:03.79+03	2021-05-25 22:22:03.796+03	
b1cbf254-6643-5bd0-0957-71cb2cfdce0a	2021-05-25 22:22:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:22:13.79+03	2021-05-25 22:22:13.796+03	
c4121bcb-7695-4401-1686-cc2453bff28d	2021-05-25 22:22:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:22:33.79+03	2021-05-25 22:22:33.807+03	
6d587c11-8c9a-43ae-9bba-be65aa413749	2021-05-25 22:22:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:22:53.79+03	2021-05-25 22:22:53.797+03	
c90b9f87-0fa7-0fab-ec75-f80ca7cf5dda	2021-05-25 22:23:13.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:23:13.792+03	2021-05-25 22:23:13.816+03	
f265b4f0-e268-12dc-e249-b94a5fe900c4	2021-05-25 22:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:23:34.79+03	2021-05-25 22:23:34.797+03	
e021f21c-8d17-b201-2d49-928eed038232	2021-05-25 22:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:23:54.79+03	2021-05-25 22:23:54.796+03	
6943258b-390e-2bf8-8065-a56a43669de5	2021-05-25 22:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:24:14.79+03	2021-05-25 22:24:14.797+03	
fd15845b-70bf-70b3-099a-b06aec6c37cb	2021-05-25 22:24:35.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:24:35.791+03	2021-05-25 22:24:35.799+03	
52220722-eb3b-4467-8876-de345d60368b	2021-05-25 22:24:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:24:56.79+03	2021-05-25 22:24:56.813+03	
142056ec-dc68-c6d2-9e86-bdd81b5ec1d7	2021-05-25 22:25:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:25:16.79+03	2021-05-25 22:25:16.796+03	
efa8c89e-11de-a2c1-d1a9-efcbfec48d1c	2021-05-25 22:25:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:25:36.79+03	2021-05-25 22:25:36.796+03	
87eef08a-736b-57a9-9572-48ffb5d9e2bc	2021-05-25 22:25:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:25:56.79+03	2021-05-25 22:25:56.796+03	
3eadbb3a-4ad2-8e1d-c3c8-97391eb999d1	2021-05-25 22:26:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:26:16.79+03	2021-05-25 22:26:16.797+03	
2e58041c-01b1-793e-45e8-28b2f77b7eda	2021-05-25 22:26:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:26:36.79+03	2021-05-25 22:26:36.813+03	
71e30182-c9ca-ff3a-39f5-ce90513c5917	2021-05-25 22:26:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:26:56.79+03	2021-05-25 22:26:56.796+03	
cf7c4aac-b7d7-41bd-e5de-f24c7b891e76	2021-05-25 22:27:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:27:16.79+03	2021-05-25 22:27:16.798+03	
2cf3c09d-a259-1270-93a4-4dace60590b1	2021-05-25 22:27:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:27:36.79+03	2021-05-25 22:27:36.797+03	
0d4b4456-a38f-0fb9-ef08-365648009741	2021-05-25 22:27:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:27:56.79+03	2021-05-25 22:27:56.796+03	
13eb45b7-3eb4-d70d-d48b-1cbdcef06f45	2021-05-25 22:28:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:28:16.79+03	2021-05-25 22:28:16.797+03	
b2522f5f-db4c-f204-13d3-558644f1828e	2021-05-25 22:28:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:28:36.79+03	2021-05-25 22:28:36.797+03	
25876b55-4678-4bd3-3691-ce05c6c64878	2021-05-25 22:28:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:28:57.79+03	2021-05-25 22:28:57.796+03	
e3e7b2b5-ff6f-b19b-2587-c9eb0f46ebd7	2021-05-25 22:29:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:29:17.79+03	2021-05-25 22:29:17.796+03	
c4daafa7-d555-d0c7-fc66-145360b05abf	2021-05-25 22:29:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:29:37.79+03	2021-05-25 22:29:37.797+03	
9e392c8e-b268-b4d7-161c-b40c5a526a89	2021-05-25 22:29:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:29:57.79+03	2021-05-25 22:29:57.796+03	
e095b3e1-3ab3-4423-0b60-c914dcd09807	2021-05-25 22:30:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:30:07.79+03	2021-05-25 22:30:07.798+03	
f6ebbf0d-5604-8a45-d6c2-21b7814a7589	2021-05-25 22:30:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:30:27.79+03	2021-05-25 22:30:27.797+03	
cc4b161e-103b-f8ec-b3c8-6e7a98308b0c	2021-05-25 22:30:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:30:47.79+03	2021-05-25 22:30:47.798+03	
a7884c80-9c61-5b1b-b0d2-f23c72711a20	2021-05-25 22:31:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:31:07.79+03	2021-05-25 22:31:07.797+03	
0d1fcbdb-4537-9ec0-6e06-cc80bd05e9be	2021-05-25 22:31:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:31:27.79+03	2021-05-25 22:31:27.801+03	
38838b0c-9636-1367-dd4b-51d323e47a1f	2021-05-25 22:31:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:31:47.79+03	2021-05-25 22:31:47.796+03	
b5c16568-69c1-d670-8e2f-b326b10cacbd	2021-05-25 22:32:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:32:07.79+03	2021-05-25 22:32:07.796+03	
869b2eea-a59f-5a89-b0fd-6ab280405da5	2021-05-25 22:32:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:32:27.79+03	2021-05-25 22:32:27.817+03	
9c7529ce-9533-1f71-e958-60fb4a3ffb56	2021-05-25 22:32:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:32:47.79+03	2021-05-25 22:32:47.797+03	
827dea9b-030f-00f0-cf5e-01ee89adaf63	2021-05-25 22:33:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:33:07.79+03	2021-05-25 22:33:07.796+03	
ad763c9d-70dd-754a-2efe-e75020265847	2021-05-25 22:33:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:33:27.79+03	2021-05-25 22:33:27.796+03	
de268c50-f055-fd75-4f80-6e738b6424fa	2021-05-25 22:33:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:33:47.79+03	2021-05-25 22:33:47.797+03	
33ada146-6c2c-1f2c-c55c-25e45f56e5bb	2021-05-25 22:34:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:34:07.79+03	2021-05-25 22:34:07.796+03	
cdaeff19-db14-5448-a7dd-9738b12793ae	2021-05-25 22:34:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:34:27.79+03	2021-05-25 22:34:27.804+03	
cfbd56dd-ce34-7ee6-765f-9c8237ba4db6	2021-05-25 22:34:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:34:47.79+03	2021-05-25 22:34:47.796+03	
7951bef3-d351-7928-78bf-f0e51efbc745	2021-05-25 22:35:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:35:07.79+03	2021-05-25 22:35:07.796+03	
222684fa-7062-05f7-7817-6bb7864c70ee	2021-05-25 22:35:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:35:27.79+03	2021-05-25 22:35:27.796+03	
619a1865-c6c3-968d-8163-85b523ab30e3	2021-05-25 22:35:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:35:47.79+03	2021-05-25 22:35:47.797+03	
e4747262-f64a-9a93-350c-d1cab69f0aa7	2021-05-25 22:36:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:36:07.79+03	2021-05-25 22:36:07.797+03	
d9d64867-38a2-73d9-9373-d82be1a7a6dc	2021-05-25 22:36:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:36:27.79+03	2021-05-25 22:36:27.796+03	
0ddb8fcc-013b-3b2e-2b9f-cc7794bd834d	2021-05-25 22:36:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:36:47.79+03	2021-05-25 22:36:47.796+03	
9be7f8fe-5536-fb07-43af-5d174fd05661	2021-05-25 22:37:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:37:07.79+03	2021-05-25 22:37:07.796+03	
9839345b-6d1e-e7a2-260f-08c2bf1348c1	2021-05-25 22:37:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:37:27.79+03	2021-05-25 22:37:27.798+03	
0c34d1f0-9712-850b-f50f-9b8ded8cbf65	2021-05-25 22:37:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:37:47.79+03	2021-05-25 22:37:47.8+03	
5ca1b7d0-a4f7-f3c0-f1bf-6ec4c1368f56	2021-05-25 22:38:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:38:07.79+03	2021-05-25 22:38:07.797+03	
8ede92d7-a679-3895-dc5c-93c21a53a6ff	2021-05-25 22:38:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:38:27.79+03	2021-05-25 22:38:27.796+03	
e714d3a3-e1fb-e255-7d11-9d61a19a2f28	2021-05-25 22:38:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:38:47.79+03	2021-05-25 22:38:47.797+03	
f53fdb6e-7137-1c45-d079-4b7445b24b84	2021-05-25 22:39:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:39:07.79+03	2021-05-25 22:39:07.796+03	
fc03b94b-2fbc-6115-1571-3d7e216e84c7	2021-05-25 22:39:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:39:27.79+03	2021-05-25 22:39:27.796+03	
0138debe-7018-e61c-01c1-e61c276539fd	2021-05-25 22:39:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:39:47.791+03	2021-05-25 22:39:47.815+03	
a1f411a3-d271-7166-8959-b623db7f18d4	2021-05-25 22:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 22:40:00.79+03	2021-05-25 22:40:00.816+03	ERROR
ac8362bc-0c96-b8fb-a799-dacefe41035e	2021-05-25 22:40:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:40:18.79+03	2021-05-25 22:40:18.797+03	
4e27c68d-e741-a995-c365-a66a7203b3b8	2021-05-25 22:40:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:40:38.79+03	2021-05-25 22:40:38.796+03	
cbe59059-dc6f-c0e0-b04b-61d53bf0a86b	2021-05-25 22:40:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:40:58.79+03	2021-05-25 22:40:58.802+03	
69040032-a2bf-61e8-e4a5-addaaaf3ed37	2021-05-25 22:41:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:41:18.79+03	2021-05-25 22:41:18.802+03	
3abed34d-a0c3-7eee-b19c-11743cc80a52	2021-05-25 22:41:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:41:38.79+03	2021-05-25 22:41:38.796+03	
405c7c8d-c605-2b07-4ea5-668933f2976a	2021-05-25 22:41:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:41:58.79+03	2021-05-25 22:41:58.796+03	
97b08404-abba-64b2-f0a9-ad7b533b7f9a	2021-05-25 22:42:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:42:19.79+03	2021-05-25 22:42:19.796+03	
11c433dd-4781-f025-a111-e87813bc8f2e	2021-05-25 22:42:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:42:39.79+03	2021-05-25 22:42:39.796+03	
573d02d2-9f4c-b132-ecfb-eb9af2368095	2021-05-25 22:22:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:22:23.79+03	2021-05-25 22:22:23.798+03	
d7a23890-75fc-f9ee-145b-28d801e50bb2	2021-05-25 22:22:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:22:43.79+03	2021-05-25 22:22:43.797+03	
b98be1dc-7a2d-e9bc-a0e9-4dd59ce3a91a	2021-05-25 22:23:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:23:03.79+03	2021-05-25 22:23:03.798+03	
e7f37217-0f77-fe08-8b9f-fceb935a20a4	2021-05-25 22:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:23:24.79+03	2021-05-25 22:23:24.804+03	
95763121-6a0b-3b2e-b47c-d68b2a65606f	2021-05-25 22:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:23:44.79+03	2021-05-25 22:23:44.796+03	
80b9b691-e10f-fb5e-836c-66d1eb3ab407	2021-05-25 22:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:24:04.79+03	2021-05-25 22:24:04.797+03	
c4c2f1ed-f526-6439-d949-317d4ec6b5c3	2021-05-25 22:24:24.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:24:24.792+03	2021-05-25 22:24:24.8+03	
f0e64db0-0462-639a-07e9-a27d4bae8df5	2021-05-25 22:24:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:24:46.79+03	2021-05-25 22:24:46.796+03	
98aef3c0-c7c0-13ec-5968-cff2d6cfd4f7	2021-05-25 22:25:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:25:06.79+03	2021-05-25 22:25:06.809+03	
f27ad97d-6a52-d8d8-41c0-51cd89c41ee1	2021-05-25 22:25:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:25:26.79+03	2021-05-25 22:25:26.796+03	
524778d0-896b-5931-3315-5fec59d10e85	2021-05-25 22:25:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:25:46.79+03	2021-05-25 22:25:46.798+03	
d701bdbd-994e-bcd7-dd12-55f0bff7a464	2021-05-25 22:26:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:26:06.79+03	2021-05-25 22:26:06.796+03	
9f87e211-0adf-d864-9df8-eaf8ba4ed4f5	2021-05-25 22:26:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:26:26.79+03	2021-05-25 22:26:26.81+03	
4e9fc1fb-5071-e673-ba58-c92b0f72ee3c	2021-05-25 22:26:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:26:46.79+03	2021-05-25 22:26:46.796+03	
6a1b53d7-1be1-d3cd-c52c-36c59dd31b56	2021-05-25 22:27:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:27:06.79+03	2021-05-25 22:27:06.796+03	
a19ddf6c-31a9-9f8b-27a5-30066a22f811	2021-05-25 22:27:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:27:26.79+03	2021-05-25 22:27:26.796+03	
2c5a6322-4d04-1381-66d6-424efb12c192	2021-05-25 22:27:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:27:46.79+03	2021-05-25 22:27:46.797+03	
b065a8b4-bd5d-6220-b996-19c4946a200b	2021-05-25 22:28:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:28:06.79+03	2021-05-25 22:28:06.796+03	
a86fe49d-b9ff-05ee-2f07-b38e569ad654	2021-05-25 22:28:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:28:26.79+03	2021-05-25 22:28:26.809+03	
ae567822-32c9-93a3-4eba-09e7776b14d8	2021-05-25 22:28:46.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:28:46.792+03	2021-05-25 22:28:46.799+03	
941662b3-fba3-c971-4bc8-bfa57ae3983d	2021-05-25 22:29:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:29:07.79+03	2021-05-25 22:29:07.796+03	
8fb2d170-f84f-704c-4db0-56a5e0fe8db5	2021-05-25 22:29:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:29:27.79+03	2021-05-25 22:29:27.796+03	
fcfc8bac-603a-70fa-8bbc-939271fa6562	2021-05-25 22:29:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:29:47.79+03	2021-05-25 22:29:47.805+03	
93b7775f-3a2c-8040-6a1f-49944a802e76	2021-05-25 22:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 22:30:00.79+03	2021-05-25 22:30:00.8+03	ERROR
22a33952-4dd0-7519-c198-2f17136e699a	2021-05-25 22:30:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:30:17.79+03	2021-05-25 22:30:17.796+03	
52d2bb6e-6990-e552-1b13-fb3b2e1f1dc1	2021-05-25 22:30:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:30:37.79+03	2021-05-25 22:30:37.808+03	
0aa06dc7-4809-795b-339d-e092b10498bf	2021-05-25 22:30:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:30:57.79+03	2021-05-25 22:30:57.796+03	
2c279f48-5c7b-7fe5-59c6-6e49b5556db1	2021-05-25 22:31:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:31:17.79+03	2021-05-25 22:31:17.797+03	
8c11f1e3-dd39-d19c-f1cc-c76fbc3988b7	2021-05-25 22:31:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:31:37.79+03	2021-05-25 22:31:37.797+03	
3f59d8ce-980f-5062-820b-54bd46763012	2021-05-25 22:31:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:31:57.79+03	2021-05-25 22:31:57.796+03	
63ee3b28-361c-4cd9-a215-dafafd973fef	2021-05-25 22:32:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:32:17.79+03	2021-05-25 22:32:17.796+03	
b0b44f83-17f3-7233-1e1b-f0965300234e	2021-05-25 22:32:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:32:37.79+03	2021-05-25 22:32:37.818+03	
beac2790-5f32-c79f-1ab4-bb44b8be06a9	2021-05-25 22:32:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:32:57.79+03	2021-05-25 22:32:57.797+03	
b620518b-2756-1f8e-daac-53db8428795c	2021-05-25 22:33:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:33:17.79+03	2021-05-25 22:33:17.796+03	
bf415a17-27b4-e903-9e96-c2fdf8783d96	2021-05-25 22:33:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:33:37.79+03	2021-05-25 22:33:37.796+03	
4caf4666-db4d-8e10-5f9a-6524ec179f1a	2021-05-25 22:33:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:33:57.79+03	2021-05-25 22:33:57.807+03	
905df576-ff0d-6954-e711-4bd94cadb402	2021-05-25 22:34:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:34:17.79+03	2021-05-25 22:34:17.8+03	
9e8dbae1-9ab9-3c19-85c7-59a10ab54c3f	2021-05-25 22:34:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:34:37.79+03	2021-05-25 22:34:37.796+03	
0a5dd3c4-7856-6460-3151-80b343363db1	2021-05-25 22:34:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:34:57.79+03	2021-05-25 22:34:57.796+03	
293f6df9-973b-45bc-6535-95bd797ca9b1	2021-05-25 22:35:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:35:17.79+03	2021-05-25 22:35:17.796+03	
980c068a-7004-401c-e27a-de0ef5e9563e	2021-05-25 22:35:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:35:37.79+03	2021-05-25 22:35:37.796+03	
b33c8630-5f4f-15bf-8f9f-bec80e5d66ac	2021-05-25 22:35:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:35:57.79+03	2021-05-25 22:35:57.797+03	
b9ca187a-f67c-2d5b-e9f9-fcd68735f50a	2021-05-25 22:36:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:36:17.79+03	2021-05-25 22:36:17.796+03	
15c222d0-ed41-1f70-54f8-358af8a62729	2021-05-25 22:36:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:36:37.79+03	2021-05-25 22:36:37.796+03	
5365277e-f3a2-20dc-f67f-c6133ee887ad	2021-05-25 22:36:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:36:57.79+03	2021-05-25 22:36:57.796+03	
8e81d9e2-d5d7-b33b-7903-aa3019988d54	2021-05-25 22:37:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:37:17.79+03	2021-05-25 22:37:17.796+03	
ea35893e-e0b9-304f-4e66-86a9fd3e3246	2021-05-25 22:37:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:37:37.79+03	2021-05-25 22:37:37.797+03	
3b858e4a-466b-f823-4f13-7f793efbb1db	2021-05-25 22:37:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:37:57.79+03	2021-05-25 22:37:57.803+03	
1e0a6f93-7a51-666d-af00-1d95b8257ba5	2021-05-25 22:38:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:38:17.79+03	2021-05-25 22:38:17.796+03	
cd7ebb07-7f60-829c-0992-0c9c85789cec	2021-05-25 22:38:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:38:37.79+03	2021-05-25 22:38:37.796+03	
ce73af42-8366-318d-2baa-cace4c5c2558	2021-05-25 22:38:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:38:57.79+03	2021-05-25 22:38:57.797+03	
d0e23832-9a9b-a8ad-c5b2-c5d8d6362b3b	2021-05-25 22:39:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:39:17.79+03	2021-05-25 22:39:17.796+03	
246daceb-f030-68fe-11f1-670efde67598	2021-05-25 22:39:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:39:37.79+03	2021-05-25 22:39:37.796+03	
dde60c4f-a724-e254-0100-14671a008695	2021-05-25 22:39:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:39:58.79+03	2021-05-25 22:39:58.801+03	
c51aca6c-c591-942d-c7e4-53a418f3550b	2021-05-25 22:40:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:40:08.79+03	2021-05-25 22:40:08.807+03	
4d627892-8299-ee19-6326-2620d820c2a2	2021-05-25 22:40:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:40:28.79+03	2021-05-25 22:40:28.796+03	
e942e08e-3392-de3e-04d3-2b066a385c0f	2021-05-25 22:40:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:40:48.79+03	2021-05-25 22:40:48.796+03	
62584a96-a432-1dad-70c7-30dc7f10836a	2021-05-25 22:41:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:41:08.79+03	2021-05-25 22:41:08.796+03	
784f53b3-9cd5-22e4-4b0a-0ade78a5d1f7	2021-05-25 22:41:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:41:28.79+03	2021-05-25 22:41:28.796+03	
d4443c0b-359e-3a8c-651e-c4e3dcc5c931	2021-05-25 22:41:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:41:48.79+03	2021-05-25 22:41:48.796+03	
f0d917a9-26d8-45d8-8898-0a794952bcf1	2021-05-25 22:42:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:42:08.791+03	2021-05-25 22:42:08.809+03	
ce903a90-7404-4c22-9260-43cb8a18a876	2021-05-25 22:42:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:42:29.79+03	2021-05-25 22:42:29.797+03	
7dc3beef-aa0b-733a-ad97-ced74acfd40c	2021-05-25 22:42:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:42:49.79+03	2021-05-25 22:42:49.809+03	
f5f4876d-2abc-3601-0d03-d36e237b301b	2021-05-25 22:42:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:42:59.79+03	2021-05-25 22:42:59.795+03	
a467f481-fcc0-a98f-d4e0-e110e1a27826	2021-05-25 22:43:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:43:19.79+03	2021-05-25 22:43:19.796+03	
15cab67f-f035-54e0-e61d-1950d780a9fa	2021-05-25 22:43:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:43:39.79+03	2021-05-25 22:43:39.796+03	
1814a443-c9a1-18f9-49ff-efe66d360aff	2021-05-25 22:43:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:43:59.79+03	2021-05-25 22:43:59.8+03	
379e45f8-e762-b637-386a-8ca87446a000	2021-05-25 22:44:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:44:20.79+03	2021-05-25 22:44:20.798+03	
8dfb9d87-a4d7-47f8-d06e-85d3927c795b	2021-05-25 22:44:40.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:44:40.79+03	2021-05-25 22:44:40.796+03	
ee239891-b89f-a065-653d-aadaac4d4ee8	2021-05-25 22:45:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:45:00.79+03	2021-05-25 22:45:00.797+03	
dbced2a2-93c5-dc49-ab1b-3efa20eec35e	2021-05-25 22:45:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:45:20.79+03	2021-05-25 22:45:20.8+03	
8391a946-df0d-0b57-65ba-578e9cc6a8f7	2021-05-25 22:45:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:45:51.79+03	2021-05-25 22:45:51.796+03	
ffa762e1-04c8-fcdb-af37-b9944b3565b8	2021-05-25 22:46:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:46:11.79+03	2021-05-25 22:46:11.8+03	
5d999834-0d42-00a9-59b3-108315efa1be	2021-05-25 22:46:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:46:31.79+03	2021-05-25 22:46:31.796+03	
c61568ec-684e-6523-ff42-4d0b85735a64	2021-05-25 22:46:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:46:51.79+03	2021-05-25 22:46:51.796+03	
6dc035b1-9edd-2966-1d07-31e504bdc909	2021-05-25 22:47:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:47:11.79+03	2021-05-25 22:47:11.796+03	
0f9e8cd2-e999-1825-c324-14a5c4b4f518	2021-05-25 22:47:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:47:31.79+03	2021-05-25 22:47:31.797+03	
e485961d-7d60-dc9c-5994-8194602f1f1e	2021-05-25 22:47:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:47:51.79+03	2021-05-25 22:47:51.8+03	
6e103a46-4e84-a150-79bf-9070131eb437	2021-05-25 22:48:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:48:11.791+03	2021-05-25 22:48:11.799+03	
f72916d9-fc70-0e5b-cdd7-a19cccacbce0	2021-05-25 22:48:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:48:32.79+03	2021-05-25 22:48:32.796+03	
91e0d045-f034-ce0e-abe1-3cc4b6745232	2021-05-25 22:48:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:48:52.79+03	2021-05-25 22:48:52.796+03	
730fc461-6ea0-12b6-d9b5-b55ecdd8907f	2021-05-25 22:49:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:49:12.79+03	2021-05-25 22:49:12.796+03	
cfd461cd-f191-24b4-8705-83ce52905a15	2021-05-25 22:49:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:49:32.79+03	2021-05-25 22:49:32.8+03	
bf912eed-f4ec-ae86-1351-a631cb8b58f9	2021-05-25 22:49:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:49:52.79+03	2021-05-25 22:49:52.796+03	
9885689b-2a95-0bdb-a501-938a1e029574	2021-05-25 22:50:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:50:02.79+03	2021-05-25 22:50:02.796+03	
df318fb0-83f3-c0b8-83ba-6ddb91b4ab82	2021-05-25 22:50:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:50:22.79+03	2021-05-25 22:50:22.801+03	
e9cdbb43-26ff-1501-1bd1-ef3a4ec26ec8	2021-05-25 22:50:42.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:50:42.79+03	2021-05-25 22:50:42.803+03	
2a74bff2-f51f-6ad9-48ac-9d77dfaf41a0	2021-05-25 22:51:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:51:02.79+03	2021-05-25 22:51:02.796+03	
fa981744-b36a-2f30-1c8a-290de543cece	2021-05-25 22:51:22.794	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:51:22.793+03	2021-05-25 22:51:22.813+03	
e821ba62-2a05-6b5a-56df-a2b728ac4b1e	2021-05-25 22:51:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:51:43.79+03	2021-05-25 22:51:43.796+03	
fc72035e-63b4-7085-f23c-161d75c19abe	2021-05-25 22:52:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:52:03.79+03	2021-05-25 22:52:03.795+03	
89b514d2-e489-ddff-e23e-e042a0f272ad	2021-05-25 22:52:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:52:23.79+03	2021-05-25 22:52:23.796+03	
3851904f-f3c4-7878-3839-4d9fe26eaccd	2021-05-25 22:52:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:52:43.79+03	2021-05-25 22:52:43.809+03	
e8bb8c8e-4029-f59e-eb4c-7c00c7b3c25a	2021-05-25 22:53:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:53:03.79+03	2021-05-25 22:53:03.799+03	
bb51ff9b-01b0-5ff0-9d14-ac119ec7f684	2021-05-25 22:53:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:53:23.79+03	2021-05-25 22:53:23.796+03	
d50edc4f-6eea-9fd3-5e2a-9b632823e8f2	2021-05-25 22:53:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:53:43.79+03	2021-05-25 22:53:43.798+03	
218cc738-274f-cac0-ae98-6a3ff81a3ce1	2021-05-25 22:54:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:54:03.79+03	2021-05-25 22:54:03.796+03	
8519ba9d-1140-a9ed-393f-051bfd4ff5d9	2021-05-25 22:54:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:54:23.79+03	2021-05-25 22:54:23.796+03	
a29930d6-ee38-3de6-91aa-bdc8a91e726b	2021-05-25 22:54:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:54:43.79+03	2021-05-25 22:54:43.816+03	
0e09db86-3e77-9074-1652-a59180b40908	2021-05-25 22:55:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:55:03.79+03	2021-05-25 22:55:03.796+03	
343d028c-4517-3f49-21b6-f23191497407	2021-05-25 22:55:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:55:23.79+03	2021-05-25 22:55:23.795+03	
e556829f-fd8c-8254-5bd7-b0ca9d52b467	2021-05-25 22:55:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:55:43.79+03	2021-05-25 22:55:43.795+03	
2afa04c0-9bbe-a6c1-5949-cb0a758205af	2021-05-25 22:56:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:56:03.79+03	2021-05-25 22:56:03.796+03	
23d9ee12-efad-1d59-7a67-b030fbddcf7f	2021-05-25 22:56:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:56:23.79+03	2021-05-25 22:56:23.795+03	
29a7b469-2e2a-b160-1875-7cf16b4c8fa0	2021-05-25 22:56:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:56:43.79+03	2021-05-25 22:56:43.801+03	
c6e18f07-3997-c663-9c9b-5d45e8549672	2021-05-25 22:57:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:57:03.79+03	2021-05-25 22:57:03.81+03	
54325a78-8095-2f66-9b32-2c867ef7cb7c	2021-05-25 22:57:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:57:23.79+03	2021-05-25 22:57:23.799+03	
0545335d-6ac9-aa7e-ed2c-6d98c3a0d4be	2021-05-25 22:57:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:57:43.79+03	2021-05-25 22:57:43.8+03	
b4aaa64d-11ce-1800-9e7a-6d53924fb562	2021-05-25 22:58:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:58:03.79+03	2021-05-25 22:58:03.796+03	
791d0e55-bdc3-27e6-e4a1-ed7de8e7007f	2021-05-25 22:58:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:58:23.79+03	2021-05-25 22:58:23.796+03	
da5fa386-bacf-2e52-5853-c1c8bde6a406	2021-05-25 22:58:43.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:58:43.791+03	2021-05-25 22:58:43.802+03	
5ecec038-fb95-311c-553f-bfa06d61cfae	2021-05-25 22:59:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:59:04.79+03	2021-05-25 22:59:04.796+03	
29cab528-42b7-2180-3e86-011855f69b48	2021-05-25 22:59:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:59:24.79+03	2021-05-25 22:59:24.798+03	
5a6e3053-bb8a-5514-ec33-13f20b655e0c	2021-05-25 22:59:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:59:44.79+03	2021-05-25 22:59:44.796+03	
4a8d656c-f42f-185c-0925-7fd72733ab57	2021-05-25 23:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 23:00:00.79+03	2021-05-25 23:00:00.795+03	ERROR
a5ac0ffe-f364-792e-a37d-e2d5151d3b51	2021-05-25 23:00:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:00:14.79+03	2021-05-25 23:00:14.797+03	
c4f6bdd9-3bf7-7ca3-fd9b-76c439bdb4d7	2021-05-25 23:00:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:00:34.79+03	2021-05-25 23:00:34.796+03	
8662f64b-6fde-f339-fab3-ee037beb343b	2021-05-25 23:00:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:00:54.79+03	2021-05-25 23:00:54.797+03	
e7a312ae-d656-fe5c-848f-a2e95904a261	2021-05-25 23:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:01:14.79+03	2021-05-25 23:01:14.797+03	
c4cf6da8-c9f2-39aa-65cc-61aec44e14c1	2021-05-25 23:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:01:34.79+03	2021-05-25 23:01:34.796+03	
ac306df0-d205-2bf9-905a-f80df27be7de	2021-05-25 23:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:01:54.79+03	2021-05-25 23:01:54.796+03	
cc62658b-2fcc-0af2-8f7e-c6f030c1adfc	2021-05-25 23:02:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:02:14.79+03	2021-05-25 23:02:14.797+03	
d5498651-af79-4b63-4e79-5b8877fef83a	2021-05-25 23:02:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:02:34.79+03	2021-05-25 23:02:34.796+03	
be9701c7-c04e-e4f2-8681-7cd618779aa8	2021-05-25 23:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:02:54.79+03	2021-05-25 23:02:54.796+03	
6f86b2a0-413b-a74e-65c0-36c615e5eb0a	2021-05-25 23:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:03:14.79+03	2021-05-25 23:03:14.797+03	
78ad5d35-1f70-744d-848c-86e1cf28d29e	2021-05-25 23:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:03:34.79+03	2021-05-25 23:03:34.795+03	
4fed363f-1dd0-ca41-9385-7fc8474bf667	2021-05-25 22:43:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:43:09.79+03	2021-05-25 22:43:09.796+03	
430567cb-898f-5b51-74d7-b1636ba0fda8	2021-05-25 22:43:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:43:29.79+03	2021-05-25 22:43:29.796+03	
9182520f-b772-fee7-c2c9-eab9e10a3398	2021-05-25 22:43:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:43:49.79+03	2021-05-25 22:43:49.797+03	
6f1cfdfe-65fd-8b5c-aea1-d209013cd883	2021-05-25 22:44:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:44:09.791+03	2021-05-25 22:44:09.81+03	
c2c49653-3d8c-7ade-6699-9b3398f30fb6	2021-05-25 22:44:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:44:30.79+03	2021-05-25 22:44:30.796+03	
d327ae92-254c-5153-39b4-788de622f6c6	2021-05-25 22:44:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:44:50.79+03	2021-05-25 22:44:50.797+03	
d97650a7-78b1-c683-c029-75eb1cf520b0	2021-05-25 22:45:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:45:10.79+03	2021-05-25 22:45:10.796+03	
77b0e2d8-a1ec-14d6-8878-b9766fe06c22	2021-05-25 22:45:30.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:45:30.792+03	2021-05-25 22:45:30.811+03	
e05aa2b2-98b8-b89d-b798-028a09531b7c	2021-05-25 22:45:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:45:41.79+03	2021-05-25 22:45:41.801+03	
2b8d6867-1b96-7a40-2141-a54245063184	2021-05-25 22:46:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:46:01.79+03	2021-05-25 22:46:01.796+03	
27814fcb-c865-f830-c9a7-b99629c3144d	2021-05-25 22:46:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:46:21.79+03	2021-05-25 22:46:21.796+03	
2129ab53-8e85-f279-1a78-98e4402ad276	2021-05-25 22:46:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:46:41.79+03	2021-05-25 22:46:41.815+03	
5f4058d0-2622-8958-0ff1-5a4261bc6625	2021-05-25 22:47:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:47:01.79+03	2021-05-25 22:47:01.796+03	
212db0a1-4ceb-0175-a2dd-043da6604bc2	2021-05-25 22:47:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:47:21.79+03	2021-05-25 22:47:21.795+03	
1277d12b-70ab-f677-4071-bb390226e49d	2021-05-25 22:47:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:47:41.79+03	2021-05-25 22:47:41.801+03	
fbd84efc-c3a4-6450-3bdc-88a7a4dfb952	2021-05-25 22:48:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:48:01.79+03	2021-05-25 22:48:01.796+03	
e89cba22-3dfd-609f-1a76-2045d992de18	2021-05-25 22:48:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:48:22.79+03	2021-05-25 22:48:22.797+03	
cb502f5b-d2bc-994b-0623-708359fedf28	2021-05-25 22:48:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:48:42.79+03	2021-05-25 22:48:42.808+03	
84a60339-9b42-3861-554f-a23199cbe578	2021-05-25 22:49:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:49:02.79+03	2021-05-25 22:49:02.797+03	
d8af9a63-202c-af4d-9b70-479a64ace3d2	2021-05-25 22:49:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:49:22.79+03	2021-05-25 22:49:22.796+03	
e21fe829-699c-372f-9246-2652d3c067d0	2021-05-25 22:49:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:49:42.79+03	2021-05-25 22:49:42.797+03	
8bfc2263-7de5-f028-ab4e-e907f0d6c8bb	2021-05-25 22:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 22:50:00.79+03	2021-05-25 22:50:00.795+03	ERROR
9e464243-bc4d-ab0b-c790-f46d73a666b3	2021-05-25 22:50:12.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:50:12.79+03	2021-05-25 22:50:12.805+03	
6d602c1e-4b0b-eb18-8cbd-f9ea739d1eeb	2021-05-25 22:50:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:50:32.79+03	2021-05-25 22:50:32.809+03	
bac145ac-1213-7fa3-212a-e147d5a279c5	2021-05-25 22:50:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:50:52.79+03	2021-05-25 22:50:52.8+03	
e6595357-35dd-1f5e-be2f-358ba2e54080	2021-05-25 22:51:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:51:12.79+03	2021-05-25 22:51:12.797+03	
535f28a1-4ef7-c69a-6920-8cb60251fdca	2021-05-25 22:51:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:51:33.79+03	2021-05-25 22:51:33.795+03	
18957269-e41f-ea7b-cdeb-ee252ddc867b	2021-05-25 22:51:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:51:53.79+03	2021-05-25 22:51:53.806+03	
3ab90e10-74fe-28a9-be4e-d842fe8ff048	2021-05-25 22:52:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:52:13.79+03	2021-05-25 22:52:13.796+03	
c52b601d-b8c6-1861-edcb-b5259554a144	2021-05-25 22:52:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:52:33.79+03	2021-05-25 22:52:33.796+03	
9acfcdc1-fa5e-8540-605a-d6aea354b4d1	2021-05-25 22:52:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:52:53.79+03	2021-05-25 22:52:53.796+03	
21dd438d-326b-0a8d-30c3-fef8ceb00678	2021-05-25 22:53:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:53:13.79+03	2021-05-25 22:53:13.796+03	
e667cbd3-6414-a82c-fbc4-00a349f91b44	2021-05-25 22:53:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:53:33.79+03	2021-05-25 22:53:33.809+03	
93f23b01-e8ea-037f-b771-4fd1cfc1e093	2021-05-25 22:53:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:53:53.79+03	2021-05-25 22:53:53.795+03	
7014804b-69ea-adac-4221-2ced6b070b76	2021-05-25 22:54:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:54:13.79+03	2021-05-25 22:54:13.81+03	
96f3c628-1e4e-e0ac-cf8b-30c210b321a2	2021-05-25 22:54:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:54:33.79+03	2021-05-25 22:54:33.796+03	
2812e5cc-dacf-f19b-8f77-bbb6dc09efa5	2021-05-25 22:54:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:54:53.79+03	2021-05-25 22:54:53.796+03	
b275d7a4-690e-a312-0acb-3158660f9bd0	2021-05-25 22:55:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:55:13.79+03	2021-05-25 22:55:13.798+03	
a426c279-aac9-4ccd-5bdc-b2acdc5b3cba	2021-05-25 22:55:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:55:33.79+03	2021-05-25 22:55:33.796+03	
76162bf8-9ab3-a64c-dc43-15c31db47045	2021-05-25 22:55:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:55:53.79+03	2021-05-25 22:55:53.796+03	
dbbfa62a-0659-c8e9-e133-2269679e4d1a	2021-05-25 22:56:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:56:13.79+03	2021-05-25 22:56:13.818+03	
46fdf4e1-3d2c-d85d-cfda-ca50fbced17b	2021-05-25 22:56:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:56:33.79+03	2021-05-25 22:56:33.8+03	
48e009b3-f27c-681e-4413-941d97f58b9d	2021-05-25 22:56:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:56:53.79+03	2021-05-25 22:56:53.796+03	
d1b73cea-4df4-5be9-714d-fc9d6dd26b51	2021-05-25 22:57:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:57:13.79+03	2021-05-25 22:57:13.796+03	
5d138f79-0260-4ddf-afc0-8aab347a7c69	2021-05-25 22:57:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:57:33.79+03	2021-05-25 22:57:33.795+03	
d80235ce-f780-a8af-f1ff-857667a3ad98	2021-05-25 22:57:53.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:57:53.79+03	2021-05-25 22:57:53.801+03	
7576aa74-a902-4307-1ecd-0b49eb82f832	2021-05-25 22:58:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:58:13.79+03	2021-05-25 22:58:13.797+03	
078289da-329b-45a9-1571-711d1a026bda	2021-05-25 22:58:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:58:33.79+03	2021-05-25 22:58:33.796+03	
c8f5e610-d014-1d44-e9fb-dd7cd78817dd	2021-05-25 22:58:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:58:54.79+03	2021-05-25 22:58:54.797+03	
19914ab8-b854-9fad-3949-67381bb301a7	2021-05-25 22:59:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:59:14.79+03	2021-05-25 22:59:14.797+03	
3c9a7dd7-db07-e1c3-86ff-a1d0a2d24f09	2021-05-25 22:59:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:59:34.79+03	2021-05-25 22:59:34.798+03	
57c49de8-938d-3038-a129-20d93a84fd89	2021-05-25 22:59:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 22:59:54.79+03	2021-05-25 22:59:54.797+03	
074d90a7-286c-4410-c79d-1e761379cfda	2021-05-25 23:00:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:00:04.79+03	2021-05-25 23:00:04.797+03	
9167f698-3c69-6c70-9090-16130f0813f5	2021-05-25 23:00:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:00:24.79+03	2021-05-25 23:00:24.796+03	
f8507174-975d-bfab-176c-867a2b45b942	2021-05-25 23:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:00:44.79+03	2021-05-25 23:00:44.797+03	
2bf3d8d4-33df-8b92-ed8b-96648f0c3220	2021-05-25 23:01:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:01:04.79+03	2021-05-25 23:01:04.797+03	
89f97b65-cc6e-e831-ada5-9f633b55fa4b	2021-05-25 23:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:01:24.79+03	2021-05-25 23:01:24.798+03	
af31c52e-6ec4-7e3a-c5af-e4a730cc8ea0	2021-05-25 23:01:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:01:44.79+03	2021-05-25 23:01:44.796+03	
da198de0-ceb1-60cc-41a8-5639d7044a11	2021-05-25 23:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:02:04.79+03	2021-05-25 23:02:04.797+03	
9bacca14-34ac-ec64-79dc-65691268890c	2021-05-25 23:02:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:02:24.79+03	2021-05-25 23:02:24.796+03	
a7c70b31-553c-5c7d-5487-6f560cbf5564	2021-05-25 23:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:02:44.79+03	2021-05-25 23:02:44.796+03	
a048cef3-6b9c-5a31-68e3-f3cce608b62c	2021-05-25 23:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:03:04.79+03	2021-05-25 23:03:04.796+03	
87dc472c-32ae-8068-7e47-5a0c17e131a9	2021-05-25 23:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:03:24.79+03	2021-05-25 23:03:24.796+03	
b1c0ee16-788f-d9c8-0837-a69cfce13d87	2021-05-25 23:03:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:03:44.79+03	2021-05-25 23:03:44.797+03	
258c2715-4168-a96e-d04e-78aef59c2d10	2021-05-25 23:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:04:04.79+03	2021-05-25 23:04:04.796+03	
8f1c4cc8-7c38-3520-3321-3f8fefdda42f	2021-05-25 23:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:04:24.79+03	2021-05-25 23:04:24.796+03	
1738eb8a-99c4-8622-24f4-9d507aa8c3da	2021-05-25 23:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:04:44.79+03	2021-05-25 23:04:44.809+03	
8dac4121-d699-e656-2090-e53f545c09e9	2021-05-25 23:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:05:04.79+03	2021-05-25 23:05:04.797+03	
3b262442-7ebc-1c15-5f30-659c1db357e0	2021-05-25 23:05:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:05:24.79+03	2021-05-25 23:05:24.796+03	
ef640f43-938b-d8dc-084b-08dbb3423113	2021-05-25 23:05:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:05:44.79+03	2021-05-25 23:05:44.796+03	
6f07d276-6617-edb9-f27f-356d5bb7f510	2021-05-25 23:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:06:04.79+03	2021-05-25 23:06:04.796+03	
6cdd5e74-40e1-e16e-b072-464b432307d3	2021-05-25 23:06:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:06:24.79+03	2021-05-25 23:06:24.797+03	
5ef99e7b-4089-16cf-c000-274de9ec1bc7	2021-05-25 23:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:06:44.79+03	2021-05-25 23:06:44.796+03	
08b4d929-4ed0-68c6-6351-e66e0e906a4b	2021-05-25 23:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:07:04.79+03	2021-05-25 23:07:04.796+03	
0d8c0242-dc0c-a2b2-4853-4aa82a0065fd	2021-05-25 23:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:07:24.79+03	2021-05-25 23:07:24.797+03	
902bc9f9-5543-a225-8e51-591b20d25425	2021-05-25 23:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:07:44.79+03	2021-05-25 23:07:44.796+03	
1a047221-b33c-58da-e721-56b8f5b25e67	2021-05-25 23:08:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:08:04.79+03	2021-05-25 23:08:04.796+03	
0adc4771-d81d-ec3c-6040-6acd85044f10	2021-05-25 23:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:08:24.79+03	2021-05-25 23:08:24.806+03	
a7a85056-250c-ca43-cc1c-b60130e8774a	2021-05-25 23:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:08:44.79+03	2021-05-25 23:08:44.808+03	
23814b5e-c554-d452-4a40-ce1b360d4294	2021-05-25 23:09:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:09:04.79+03	2021-05-25 23:09:04.801+03	
94570fd6-1640-8024-f2d4-d4c49af83e92	2021-05-25 23:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:09:24.79+03	2021-05-25 23:09:24.796+03	
81c6060e-470b-724e-7481-8477705dce72	2021-05-25 23:09:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:09:44.79+03	2021-05-25 23:09:44.797+03	
6393369d-264c-df85-127b-aafa6c0b2fe4	2021-05-25 23:10:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 23:10:00.791+03	2021-05-25 23:10:00.798+03	ERROR
633dafc6-9be9-e729-aec4-2690dae55eff	2021-05-25 23:10:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:10:14.79+03	2021-05-25 23:10:14.797+03	
0a19f17c-8a78-a4ca-f0eb-d3a4f58ffd3a	2021-05-25 23:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:10:34.79+03	2021-05-25 23:10:34.799+03	
3fc94efc-34df-645f-88ae-dc6985ec53ad	2021-05-25 23:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:10:54.79+03	2021-05-25 23:10:54.796+03	
9671ced4-6f80-4dc6-17a7-1c3c68af9511	2021-05-25 23:11:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:11:14.79+03	2021-05-25 23:11:14.81+03	
7373c981-9b49-0740-6067-e630d11caea6	2021-05-25 23:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:11:34.79+03	2021-05-25 23:11:34.796+03	
3650cf6f-5bd6-9a5c-afb2-58a074f92657	2021-05-25 23:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:11:54.79+03	2021-05-25 23:11:54.797+03	
3d29de8f-4e53-0a59-a7fa-7b55c82845a3	2021-05-25 23:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:12:14.79+03	2021-05-25 23:12:14.796+03	
40ecc1b5-243b-79b9-e994-a586f2b4a5dc	2021-05-25 23:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:12:34.79+03	2021-05-25 23:12:34.797+03	
b62f6411-b0cc-a365-9378-f61f1ecd9196	2021-05-25 23:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:12:54.79+03	2021-05-25 23:12:54.797+03	
524d7e4e-63f8-973a-12f6-5da126d51771	2021-05-25 23:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:13:14.79+03	2021-05-25 23:13:14.798+03	
30719bcf-3315-6380-76ee-aed1d073c445	2021-05-25 23:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:13:34.79+03	2021-05-25 23:13:34.796+03	
8a1ad578-ecb3-3204-e16b-fc00a88860a4	2021-05-25 23:13:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:13:54.79+03	2021-05-25 23:13:54.796+03	
5ee6ccab-bbf8-adbe-ae5d-983f221abc03	2021-05-25 23:14:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:14:14.79+03	2021-05-25 23:14:14.798+03	
fd404f67-4ba8-9ee6-5821-fdc11db6b646	2021-05-25 23:14:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:14:34.79+03	2021-05-25 23:14:34.797+03	
a772276f-1788-6e7a-858e-a8960bf8c0bc	2021-05-25 23:14:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:14:54.79+03	2021-05-25 23:14:54.797+03	
ac4866dd-2052-5405-cc0f-300ea701e061	2021-05-25 23:15:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:15:14.79+03	2021-05-25 23:15:14.796+03	
d8129ddc-6026-5700-9c53-419ada3d323d	2021-05-25 23:15:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:15:34.79+03	2021-05-25 23:15:34.809+03	
41df00c2-d1b4-fb13-23f1-c2641ac72fdf	2021-05-25 23:15:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:15:54.79+03	2021-05-25 23:15:54.796+03	
d64d87f7-02fb-b818-ebc3-1aca8cbf3609	2021-05-25 23:16:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:16:14.79+03	2021-05-25 23:16:14.796+03	
e9467fb9-e23a-43ed-2f35-503e6cb97be9	2021-05-25 23:16:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:16:34.79+03	2021-05-25 23:16:34.796+03	
8be07bf8-9ae2-ea56-30b9-6c377dbc68e8	2021-05-25 23:16:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:16:54.79+03	2021-05-25 23:16:54.814+03	
0471f41a-8324-8ebd-33b3-2e73c534a475	2021-05-25 23:17:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:17:14.79+03	2021-05-25 23:17:14.796+03	
7ec5ecf5-2a3e-0c63-d501-b7c24e5d004e	2021-05-25 23:17:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:17:34.79+03	2021-05-25 23:17:34.796+03	
eb857300-6444-3ef6-2af0-ab1e85166535	2021-05-25 23:17:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:17:54.79+03	2021-05-25 23:17:54.797+03	
84904dfe-2a52-39be-6364-b21a472d8975	2021-05-25 23:18:14.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:18:14.792+03	2021-05-25 23:18:14.814+03	
462a5563-c6c9-06a1-56a7-5345b774d5b8	2021-05-25 23:18:35.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:18:35.79+03	2021-05-25 23:18:35.796+03	
1899f9ca-0d01-57c1-8f19-04934254da46	2021-05-25 23:18:55.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:18:55.791+03	2021-05-25 23:18:55.799+03	
5f0e6499-125b-23b5-7b93-24ff3041f4f1	2021-05-25 23:19:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:19:16.79+03	2021-05-25 23:19:16.796+03	
c607d5bf-82a5-8203-a7ac-a462794b59a6	2021-05-25 23:19:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:19:37.79+03	2021-05-25 23:19:37.796+03	
8e28c1c0-e6f2-a30a-be48-b43d7541f585	2021-05-25 23:19:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:19:57.79+03	2021-05-25 23:19:57.796+03	
c92d8872-3888-e4e2-aa2e-887e7efd527c	2021-05-25 23:20:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:20:07.79+03	2021-05-25 23:20:07.796+03	
8e60a4ce-f8ea-4036-f488-f85289b49703	2021-05-25 23:20:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:20:27.79+03	2021-05-25 23:20:27.796+03	
2373943c-10f3-ee48-fcef-6ff516509161	2021-05-25 23:20:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:20:47.79+03	2021-05-25 23:20:47.812+03	
71117e00-d7ed-c3e8-ef9f-16e2a304e5d6	2021-05-25 23:21:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:21:07.79+03	2021-05-25 23:21:07.796+03	
6a5b748c-897a-8e27-b93a-a47c3d47d259	2021-05-25 23:21:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:21:27.79+03	2021-05-25 23:21:27.796+03	
06513fef-3fa9-52d8-dcf8-72798c1f9287	2021-05-25 23:21:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:21:47.79+03	2021-05-25 23:21:47.82+03	
30a47da8-fb86-70c4-8b7a-2b40f6cbbc89	2021-05-25 23:22:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:22:07.79+03	2021-05-25 23:22:07.796+03	
34da42f6-7e26-19e8-4af2-95048d574825	2021-05-25 23:22:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:22:27.79+03	2021-05-25 23:22:27.808+03	
8a65f5c2-e1e6-2a32-8e93-a0deaac29ceb	2021-05-25 23:22:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:22:47.79+03	2021-05-25 23:22:47.796+03	
ffec0c4a-9274-95ba-87dd-b4369154a58a	2021-05-25 23:23:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:23:07.79+03	2021-05-25 23:23:07.797+03	
f87cd7fd-38b1-122f-71f1-c162ced07e39	2021-05-25 23:23:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:23:27.79+03	2021-05-25 23:23:27.796+03	
77a23249-cdea-91de-9cda-32a482ff2f27	2021-05-25 23:23:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:23:47.79+03	2021-05-25 23:23:47.798+03	
5c8224a2-a3e2-f28b-6f64-ecbff85290fd	2021-05-25 23:24:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:24:07.79+03	2021-05-25 23:24:07.797+03	
e1f18667-7551-7891-904c-a1a1130a6538	2021-05-25 23:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:03:54.79+03	2021-05-25 23:03:54.796+03	
de74b9f1-ff51-5109-dc1a-f11ff94fe13c	2021-05-25 23:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:04:14.79+03	2021-05-25 23:04:14.798+03	
7728452e-a48f-ba67-d8b2-09a08fa52210	2021-05-25 23:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:04:34.79+03	2021-05-25 23:04:34.798+03	
ff335a9d-686c-1e8a-131a-4165237a9b4e	2021-05-25 23:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:04:54.79+03	2021-05-25 23:04:54.807+03	
c81851d8-31ba-d042-2434-bd35bdfc9c9e	2021-05-25 23:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:05:14.79+03	2021-05-25 23:05:14.797+03	
bc6eed80-0ba1-2343-164a-e09b9d626a77	2021-05-25 23:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:05:34.79+03	2021-05-25 23:05:34.796+03	
57dd830d-431f-63cd-253b-270e23456b40	2021-05-25 23:05:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:05:54.79+03	2021-05-25 23:05:54.796+03	
8dca5e41-d5e4-f1f8-cf4d-150da84cda90	2021-05-25 23:06:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:06:14.79+03	2021-05-25 23:06:14.796+03	
c68bc699-b694-5f2c-309d-a1bf11b3ab54	2021-05-25 23:06:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:06:34.79+03	2021-05-25 23:06:34.796+03	
5c92a4b3-1574-0205-4b95-01bffeed8e3e	2021-05-25 23:06:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:06:54.79+03	2021-05-25 23:06:54.796+03	
befffd40-043a-d2d4-1910-ad052587c7f6	2021-05-25 23:07:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:07:14.79+03	2021-05-25 23:07:14.81+03	
46e5f65d-fe2d-185a-ba61-34f29c8e0f3b	2021-05-25 23:07:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:07:34.79+03	2021-05-25 23:07:34.796+03	
0a433357-c875-3d0a-6f99-849e125cfce9	2021-05-25 23:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:07:54.79+03	2021-05-25 23:07:54.796+03	
96efb763-8a1e-4446-a20a-bcc0f9fe8439	2021-05-25 23:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:08:14.79+03	2021-05-25 23:08:14.812+03	
5c42962b-2922-9d2e-86a4-4f531c63f176	2021-05-25 23:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:08:34.79+03	2021-05-25 23:08:34.796+03	
0d2cf7e1-d824-f281-d47e-ebb4bd87dc00	2021-05-25 23:08:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:08:54.79+03	2021-05-25 23:08:54.796+03	
94542b9a-4740-834a-5582-d98b711d9824	2021-05-25 23:09:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:09:14.79+03	2021-05-25 23:09:14.797+03	
01f24290-f138-c151-e7b8-0e938db61add	2021-05-25 23:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:09:34.79+03	2021-05-25 23:09:34.797+03	
990ccdeb-bcc7-d10b-46ef-943a9ff162d4	2021-05-25 23:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:09:54.79+03	2021-05-25 23:09:54.81+03	
66852582-60f4-b262-b0f6-5cefe9b64b3a	2021-05-25 23:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:10:04.79+03	2021-05-25 23:10:04.796+03	
66a5f616-7b8e-b2f3-fda8-7773beaabb53	2021-05-25 23:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:10:24.79+03	2021-05-25 23:10:24.796+03	
de045dce-7c9b-0356-391f-56b5dfd0da78	2021-05-25 23:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:10:44.79+03	2021-05-25 23:10:44.796+03	
c976ff0f-430f-a8ba-f130-2ac91c0c6371	2021-05-25 23:11:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:11:04.79+03	2021-05-25 23:11:04.811+03	
6487fe3e-bcb2-ef0b-b5a0-4823c321768e	2021-05-25 23:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:11:24.79+03	2021-05-25 23:11:24.796+03	
11981799-6079-71af-125d-fe84511cffe8	2021-05-25 23:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:11:44.79+03	2021-05-25 23:11:44.797+03	
0070e71f-fcdc-fa9d-2722-899883508175	2021-05-25 23:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:12:04.79+03	2021-05-25 23:12:04.796+03	
f13cac40-32d2-4bdd-a54c-cc1f20c665d7	2021-05-25 23:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:12:24.79+03	2021-05-25 23:12:24.797+03	
61216f6c-b5b4-99f7-6145-f1933b66b711	2021-05-25 23:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:12:44.79+03	2021-05-25 23:12:44.796+03	
0a625ce8-4233-751e-0368-4ed055fce8c6	2021-05-25 23:13:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:13:04.79+03	2021-05-25 23:13:04.797+03	
4772deb8-887d-35fe-0437-129194c464bf	2021-05-25 23:13:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:13:24.79+03	2021-05-25 23:13:24.808+03	
eccba73d-7242-dc0d-daff-10e17b27f26e	2021-05-25 23:13:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:13:44.79+03	2021-05-25 23:13:44.796+03	
e867adcc-c4da-48f0-9e7c-630ad0676aa9	2021-05-25 23:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:14:04.79+03	2021-05-25 23:14:04.797+03	
7b65906a-5922-6dfe-e897-c2ba4dc6c37e	2021-05-25 23:14:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:14:24.79+03	2021-05-25 23:14:24.796+03	
c221f404-aac0-14c1-969a-99cea4f7d23f	2021-05-25 23:14:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:14:44.79+03	2021-05-25 23:14:44.8+03	
3ab46b0e-d78b-643b-f395-6a1e16ee1cd2	2021-05-25 23:15:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:15:04.79+03	2021-05-25 23:15:04.816+03	
fac33a91-62a0-f8f9-ca86-0e5d78cafccd	2021-05-25 23:15:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:15:24.79+03	2021-05-25 23:15:24.796+03	
dc6be5b8-8344-4e05-1a00-cf5a18363766	2021-05-25 23:15:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:15:44.79+03	2021-05-25 23:15:44.796+03	
3b95469d-1851-6fd3-270a-da178c8f5bb1	2021-05-25 23:16:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:16:04.79+03	2021-05-25 23:16:04.796+03	
843221d0-9a26-04a6-46d4-b7ad896cde4e	2021-05-25 23:16:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:16:24.79+03	2021-05-25 23:16:24.796+03	
903c2691-edec-5114-91f1-02d280a350fd	2021-05-25 23:16:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:16:44.79+03	2021-05-25 23:16:44.795+03	
a2090619-75ee-dac1-532b-17196a209757	2021-05-25 23:17:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:17:04.79+03	2021-05-25 23:17:04.796+03	
5b419ad4-bc58-f700-35b9-7b9b03863e2d	2021-05-25 23:17:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:17:24.79+03	2021-05-25 23:17:24.796+03	
00f19e0c-a30b-bbb4-54fe-e305f0c6a9aa	2021-05-25 23:17:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:17:44.79+03	2021-05-25 23:17:44.796+03	
574d7314-af2a-4ed3-2d44-b99723b8588b	2021-05-25 23:18:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:18:04.79+03	2021-05-25 23:18:04.797+03	
4ccfecfb-4355-c8b3-a8d7-e6937fabb424	2021-05-25 23:18:25.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:18:25.79+03	2021-05-25 23:18:25.796+03	
a71d8d84-e93f-fdd4-3d04-06a96d804d4c	2021-05-25 23:18:45.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:18:45.79+03	2021-05-25 23:18:45.796+03	
10aec2d4-0c1c-5551-077f-dd550c4f90fb	2021-05-25 23:19:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:19:06.79+03	2021-05-25 23:19:06.811+03	
4cadcda5-1e78-6517-8e83-0e1c3b9461f3	2021-05-25 23:19:26.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:19:26.791+03	2021-05-25 23:19:26.811+03	
c684b9d5-6b6c-fddd-f882-58c0c58badf3	2021-05-25 23:19:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:19:47.79+03	2021-05-25 23:19:47.796+03	
86918844-3dcf-9f2b-8e2e-e527a5ba9453	2021-05-25 23:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 23:20:00.79+03	2021-05-25 23:20:00.795+03	ERROR
ccf19448-0eb8-c93d-6bde-2de1bd097e47	2021-05-25 23:20:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:20:17.79+03	2021-05-25 23:20:17.813+03	
045538f5-e7f9-32c2-4dde-c17bf1d929cf	2021-05-25 23:20:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:20:37.79+03	2021-05-25 23:20:37.797+03	
5082c975-b1a3-5aef-f7bb-3d4dfd14a4e3	2021-05-25 23:20:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:20:57.79+03	2021-05-25 23:20:57.797+03	
314afe83-6b95-7579-8aae-309fdab247da	2021-05-25 23:21:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:21:17.79+03	2021-05-25 23:21:17.796+03	
33e8bc4a-7d1b-c00f-0342-ce15477af64d	2021-05-25 23:21:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:21:37.79+03	2021-05-25 23:21:37.796+03	
0f19a530-6980-9d96-e026-3fe16bd7ecee	2021-05-25 23:21:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:21:57.79+03	2021-05-25 23:21:57.796+03	
ebceea09-f588-9212-9953-b3af9da12ba4	2021-05-25 23:22:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:22:17.79+03	2021-05-25 23:22:17.805+03	
d5ad3546-5afa-c64d-1fa4-91cd7d5a5eb8	2021-05-25 23:22:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:22:37.79+03	2021-05-25 23:22:37.796+03	
c82c98ed-18a5-01af-26f6-18473744f64f	2021-05-25 23:22:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:22:57.79+03	2021-05-25 23:22:57.796+03	
20cf7613-0843-9929-c651-56ad3e998737	2021-05-25 23:23:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:23:17.79+03	2021-05-25 23:23:17.796+03	
d2798222-4dee-b43f-56cd-a34856bfd171	2021-05-25 23:23:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:23:37.79+03	2021-05-25 23:23:37.797+03	
517da151-e7d2-0f6c-1d15-589b720ff103	2021-05-25 23:23:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:23:57.79+03	2021-05-25 23:23:57.816+03	
12db381c-d677-2a81-e275-872c6ff1d9b7	2021-05-25 23:24:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:24:17.79+03	2021-05-25 23:24:17.802+03	
15f0ef5d-42f0-28ce-358a-919a46950e66	2021-05-25 23:24:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:24:27.79+03	2021-05-25 23:24:27.796+03	
1b865af5-debc-5dbf-9c6e-e2bf65f89afb	2021-05-25 23:24:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:24:47.79+03	2021-05-25 23:24:47.796+03	
572d88d8-f8c3-5a41-4682-d887c03d4958	2021-05-25 23:25:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:25:07.79+03	2021-05-25 23:25:07.796+03	
2006eb19-b173-1c85-c226-64cd8e581a79	2021-05-25 23:25:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:25:27.79+03	2021-05-25 23:25:27.797+03	
ebe501d3-d0fd-33d7-a3de-eed8032e761e	2021-05-25 23:25:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:25:47.79+03	2021-05-25 23:25:47.797+03	
e272d27b-ee14-6396-31c2-c5d3e6eee3f8	2021-05-25 23:26:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:26:07.79+03	2021-05-25 23:26:07.797+03	
de6913c1-32db-fca6-7409-3bd1deec8e6c	2021-05-25 23:26:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:26:27.79+03	2021-05-25 23:26:27.796+03	
80e91079-6c26-7c36-85f2-90e348c255c9	2021-05-25 23:26:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:26:47.79+03	2021-05-25 23:26:47.798+03	
22e32515-988b-687f-2d7f-f9fd55fc14ba	2021-05-25 23:27:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:27:07.79+03	2021-05-25 23:27:07.797+03	
cf557837-ed89-495f-c7fe-861065f7c682	2021-05-25 23:27:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:27:27.79+03	2021-05-25 23:27:27.812+03	
7c85d4a6-520c-3e1c-5514-b75eb1829982	2021-05-25 23:27:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:27:47.79+03	2021-05-25 23:27:47.796+03	
32958966-8a3c-1842-2519-35a82b872273	2021-05-25 23:28:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:28:07.79+03	2021-05-25 23:28:07.796+03	
b28f6a75-645a-1511-179b-26a489bf82fd	2021-05-25 23:28:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:28:27.79+03	2021-05-25 23:28:27.796+03	
4e8385bb-69a8-32ae-8bc0-ef4a61054238	2021-05-25 23:28:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:28:47.79+03	2021-05-25 23:28:47.796+03	
3ef8260b-762b-654c-38f3-5ab7f67b8841	2021-05-25 23:29:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:29:07.79+03	2021-05-25 23:29:07.796+03	
6308de7e-820a-ac5a-b938-a3f6b7fa9b70	2021-05-25 23:29:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:29:27.79+03	2021-05-25 23:29:27.799+03	
d85225c4-1c03-bb2b-09ca-6742ac76751d	2021-05-25 23:29:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:29:47.79+03	2021-05-25 23:29:47.796+03	
339bd347-8005-8553-f5d8-1c5a24ebaf0d	2021-05-25 23:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 23:30:00.79+03	2021-05-25 23:30:00.795+03	ERROR
a20d1dbb-bce9-468b-0a36-5308e6b85467	2021-05-25 23:30:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:30:17.79+03	2021-05-25 23:30:17.797+03	
193ce97e-73eb-56ae-8c4d-74d8c54f49d6	2021-05-25 23:30:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:30:37.79+03	2021-05-25 23:30:37.819+03	
d01046f2-ffc0-f2d4-ca52-f7d86edc6dd7	2021-05-25 23:30:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:30:57.79+03	2021-05-25 23:30:57.796+03	
7e99a1b8-6175-0458-0878-63dea4096f11	2021-05-25 23:31:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:31:17.79+03	2021-05-25 23:31:17.796+03	
dd200ddb-5e08-1329-f66a-5244217e01c4	2021-05-25 23:31:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:31:37.79+03	2021-05-25 23:31:37.817+03	
d023bbfa-3485-2b3f-3160-1b47e833bac6	2021-05-25 23:31:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:31:57.79+03	2021-05-25 23:31:57.796+03	
39e500d3-b8e2-9b71-17cd-6e1fa9181dd3	2021-05-25 23:32:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:32:17.79+03	2021-05-25 23:32:17.796+03	
e7ff100f-431d-dfa6-5368-cedeb7a36d6d	2021-05-25 23:32:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:32:37.79+03	2021-05-25 23:32:37.796+03	
fedef32f-5868-b4c4-5143-516a7134fa69	2021-05-25 23:32:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:32:57.79+03	2021-05-25 23:32:57.813+03	
ff5e1a7c-b734-9ad3-97b9-2fe41644e0e8	2021-05-25 23:33:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:33:17.79+03	2021-05-25 23:33:17.806+03	
f73c0f42-b481-8b0c-6c7b-9df721d8e2fa	2021-05-25 23:33:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:33:37.79+03	2021-05-25 23:33:37.796+03	
bf08768d-9094-2c14-7707-56bff99f027b	2021-05-25 23:33:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:33:57.79+03	2021-05-25 23:33:57.8+03	
a6ca898f-d217-eb61-e58b-2aaad0a5efd1	2021-05-25 23:34:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:34:17.79+03	2021-05-25 23:34:17.796+03	
29f0e494-00b6-1361-6e93-47657997ad1a	2021-05-25 23:34:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:34:37.79+03	2021-05-25 23:34:37.796+03	
ce153c02-7fc4-44a6-8373-0650b6c57c1c	2021-05-25 23:34:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:34:57.79+03	2021-05-25 23:34:57.796+03	
dcb19a73-b5cc-72ac-fcd7-f43265676bf9	2021-05-25 23:35:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:35:17.79+03	2021-05-25 23:35:17.796+03	
19a6d10f-e538-bb7a-5d36-27b1af0aa132	2021-05-25 23:35:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:35:37.79+03	2021-05-25 23:35:37.796+03	
6e70f3f3-6ada-b83b-4ac6-98c01f88e85b	2021-05-25 23:35:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:35:57.79+03	2021-05-25 23:35:57.796+03	
583d21e4-7b75-4a93-3704-cdeea6092ee5	2021-05-25 23:36:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:36:17.79+03	2021-05-25 23:36:17.799+03	
abc9da97-a815-5696-834c-f00e520a58b0	2021-05-25 23:36:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:36:37.79+03	2021-05-25 23:36:37.816+03	
8296483d-f07a-f941-4129-34181a409dea	2021-05-25 23:36:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:36:57.79+03	2021-05-25 23:36:57.796+03	
a052a1c9-4b05-7def-a5c8-88a9baf5a8ff	2021-05-25 23:37:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:37:17.79+03	2021-05-25 23:37:17.8+03	
3b50ce4b-2afd-2d17-86e9-7d064981bb2d	2021-05-25 23:37:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:37:37.79+03	2021-05-25 23:37:37.796+03	
ef2a91ee-bfec-6b94-a36d-3dbf3e973e0c	2021-05-25 23:37:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:37:57.79+03	2021-05-25 23:37:57.797+03	
840335ba-a65d-221c-2082-9ee4e8f1a9d5	2021-05-25 23:38:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:38:18.79+03	2021-05-25 23:38:18.796+03	
5216120b-d0f2-7a55-3810-97c6e0bceb6c	2021-05-25 23:38:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:38:38.79+03	2021-05-25 23:38:38.796+03	
83ab25f5-1663-19dc-8f0f-4bd99e8e8a1b	2021-05-25 23:38:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:38:58.79+03	2021-05-25 23:38:58.796+03	
351da0ba-bc6f-fa6e-4e39-47f3e013560a	2021-05-25 23:39:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:39:18.79+03	2021-05-25 23:39:18.796+03	
584e2f6d-28d4-af84-6b72-f3509e8c040c	2021-05-25 23:39:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:39:38.79+03	2021-05-25 23:39:38.796+03	
282dbb24-bc86-6958-0718-4ef01cb472d7	2021-05-25 23:39:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:39:58.79+03	2021-05-25 23:39:58.796+03	
a57777a4-fa85-ba12-f896-9247672b0840	2021-05-25 23:40:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:40:08.79+03	2021-05-25 23:40:08.796+03	
e0dffd7f-7ba0-22e2-78b1-f8ba65e80bc6	2021-05-25 23:40:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:40:28.79+03	2021-05-25 23:40:28.796+03	
4efac6e5-c340-c993-fcd3-abef63e1a9e4	2021-05-25 23:40:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:40:48.79+03	2021-05-25 23:40:48.796+03	
94041343-882a-64dd-c4c5-d662cd4957fd	2021-05-25 23:41:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:41:08.79+03	2021-05-25 23:41:08.805+03	
ce7d88f3-04ac-7125-8c71-2864bc75ab08	2021-05-25 23:41:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:41:28.79+03	2021-05-25 23:41:28.796+03	
564c2aa4-ba19-33d9-df04-1ac6ec879843	2021-05-25 23:41:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:41:48.79+03	2021-05-25 23:41:48.798+03	
20e365fa-bafa-ff0c-49c4-01fdd22567ee	2021-05-25 23:42:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:42:08.79+03	2021-05-25 23:42:08.796+03	
6c4f1f78-fb1f-3caa-2594-211c444c9091	2021-05-25 23:42:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:42:28.79+03	2021-05-25 23:42:28.796+03	
5d0fa613-ab75-8df4-d0cd-c0a258856171	2021-05-25 23:42:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:42:48.79+03	2021-05-25 23:42:48.797+03	
eb71fcf1-a45c-b9c6-699c-fa5729830f02	2021-05-25 23:43:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:43:08.79+03	2021-05-25 23:43:08.796+03	
5fe3b540-8fc6-59ac-528f-f024ab086a87	2021-05-25 23:43:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:43:28.79+03	2021-05-25 23:43:28.797+03	
96efbc48-df98-02c6-5adb-aadd252f91cb	2021-05-25 23:43:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:43:48.79+03	2021-05-25 23:43:48.814+03	
7ba1a6c6-151c-1745-6397-97ef31479f5c	2021-05-25 23:44:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:44:09.79+03	2021-05-25 23:44:09.797+03	
8b4628a3-6751-fca6-bf79-747a86fbdf98	2021-05-25 23:44:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:44:29.79+03	2021-05-25 23:44:29.796+03	
df6266ee-90c6-0d60-6c1f-48cb845ff15e	2021-05-25 23:44:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:44:49.79+03	2021-05-25 23:44:49.796+03	
d677463a-8f24-3db2-7ea8-8d1b503d3843	2021-05-25 23:24:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:24:37.79+03	2021-05-25 23:24:37.797+03	
5bb02ba5-e795-e324-ec22-728d7e7cb735	2021-05-25 23:24:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:24:57.79+03	2021-05-25 23:24:57.796+03	
ce28d3ff-bccb-a4c4-9783-6f31b349d18b	2021-05-25 23:25:17.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:25:17.79+03	2021-05-25 23:25:17.798+03	
5bf11d70-5a42-7e59-e7af-efb136dde912	2021-05-25 23:25:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:25:37.79+03	2021-05-25 23:25:37.796+03	
f7ad8001-2fef-b4c1-7353-2c8f9c1ec45a	2021-05-25 23:25:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:25:57.79+03	2021-05-25 23:25:57.797+03	
5f7bb165-d80f-9c39-8099-ea2c87f740e4	2021-05-25 23:26:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:26:17.79+03	2021-05-25 23:26:17.796+03	
cb94a1a6-6ee3-11ba-8bd5-249f31773247	2021-05-25 23:26:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:26:37.79+03	2021-05-25 23:26:37.797+03	
bdbd7153-a87b-7425-8040-ff218cc8799b	2021-05-25 23:26:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:26:57.79+03	2021-05-25 23:26:57.797+03	
ff77d35d-2c92-d8d9-117b-ed6168864b30	2021-05-25 23:27:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:27:17.79+03	2021-05-25 23:27:17.801+03	
5e98c691-f3f9-ec13-93c1-6a74b2779abf	2021-05-25 23:27:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:27:37.79+03	2021-05-25 23:27:37.796+03	
2c9260e2-ba63-4e22-6883-d8910f2e915d	2021-05-25 23:27:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:27:57.79+03	2021-05-25 23:27:57.796+03	
5d84b7f6-f4e0-5550-a9b1-fa6458e2c06b	2021-05-25 23:28:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:28:17.79+03	2021-05-25 23:28:17.796+03	
1b6fbf49-23e0-cb76-f4d1-5291f1ff8077	2021-05-25 23:28:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:28:37.79+03	2021-05-25 23:28:37.796+03	
4b068f39-35f5-6734-0fb1-890c193473af	2021-05-25 23:28:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:28:57.79+03	2021-05-25 23:28:57.796+03	
8bad92ff-325f-8d00-2a37-5dc7f838872f	2021-05-25 23:29:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:29:17.79+03	2021-05-25 23:29:17.798+03	
94f9e08f-2a32-cabf-95f9-1c0fd83465d5	2021-05-25 23:29:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:29:37.79+03	2021-05-25 23:29:37.797+03	
8a63e008-b3fb-f461-026e-ace3719eb643	2021-05-25 23:29:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:29:57.79+03	2021-05-25 23:29:57.796+03	
578b82ac-1eaf-87a1-6b01-139a53d47684	2021-05-25 23:30:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:30:07.79+03	2021-05-25 23:30:07.796+03	
a87b7c91-393e-4841-e47c-40260c94d9af	2021-05-25 23:30:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:30:27.79+03	2021-05-25 23:30:27.796+03	
edc55281-e104-e99d-fe0b-b0580598f967	2021-05-25 23:30:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:30:47.79+03	2021-05-25 23:30:47.8+03	
c3059045-9407-17dd-c8f7-c6e194490362	2021-05-25 23:31:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:31:07.79+03	2021-05-25 23:31:07.796+03	
b70e146a-2961-4c5a-de48-fad2678b09bc	2021-05-25 23:31:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:31:27.79+03	2021-05-25 23:31:27.796+03	
3f81034d-a49c-5b8f-6aa9-8e87217931a6	2021-05-25 23:31:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:31:47.79+03	2021-05-25 23:31:47.798+03	
f0f9353d-336f-0b4d-16c9-c8068f08c9d3	2021-05-25 23:32:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:32:07.79+03	2021-05-25 23:32:07.799+03	
98c4cbca-11e4-14da-bced-12c283facfd8	2021-05-25 23:32:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:32:27.79+03	2021-05-25 23:32:27.797+03	
53314dac-ae57-1be5-cd76-630398a660d3	2021-05-25 23:32:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:32:47.79+03	2021-05-25 23:32:47.804+03	
d42d93ea-6747-655c-3f3e-f706e58b56f5	2021-05-25 23:33:07.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:33:07.79+03	2021-05-25 23:33:07.802+03	
929ddf67-7f9b-bd62-2462-d90078e074b2	2021-05-25 23:33:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:33:27.79+03	2021-05-25 23:33:27.811+03	
80c6aaba-ea56-00e2-0abe-c6eece5e48c1	2021-05-25 23:33:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:33:47.79+03	2021-05-25 23:33:47.797+03	
0a93bddf-f7c6-c95f-f047-48f3e83ffb68	2021-05-25 23:34:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:34:07.79+03	2021-05-25 23:34:07.796+03	
de48ff1f-4d87-4288-2da4-71bc4312596a	2021-05-25 23:34:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:34:27.79+03	2021-05-25 23:34:27.796+03	
a645de3d-6c64-a91c-bf07-bb6fe31bd7ad	2021-05-25 23:34:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:34:47.79+03	2021-05-25 23:34:47.796+03	
c6451493-ae3f-adb2-9861-903948c80ac9	2021-05-25 23:35:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:35:07.79+03	2021-05-25 23:35:07.796+03	
4a0edf48-1a0d-503b-238c-308739b518ee	2021-05-25 23:35:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:35:27.79+03	2021-05-25 23:35:27.796+03	
745866d6-4377-e911-cfd7-89f398dbe6a6	2021-05-25 23:35:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:35:47.79+03	2021-05-25 23:35:47.811+03	
39c7cd7e-c249-195c-5f51-e6459fd89c39	2021-05-25 23:36:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:36:07.79+03	2021-05-25 23:36:07.797+03	
4bbe7fac-ca3f-97f7-071d-87b8658671dc	2021-05-25 23:36:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:36:27.79+03	2021-05-25 23:36:27.796+03	
5481518e-4ac5-b080-c480-7c5f29b8f68a	2021-05-25 23:36:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:36:47.79+03	2021-05-25 23:36:47.813+03	
ce44aeb7-a401-91ef-79d2-d2ab7b8ad8ec	2021-05-25 23:37:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:37:07.79+03	2021-05-25 23:37:07.796+03	
7f506427-75bb-de35-fc3f-cc8d565f3f64	2021-05-25 23:37:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:37:27.79+03	2021-05-25 23:37:27.797+03	
4e275dd6-4a04-4c91-1304-a717e3a0ad27	2021-05-25 23:37:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:37:47.79+03	2021-05-25 23:37:47.797+03	
36210040-82f6-2447-9e8a-d559238e0e15	2021-05-25 23:38:07.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:38:07.792+03	2021-05-25 23:38:07.799+03	
af6e9317-a099-023f-b2ab-b66433dc36ac	2021-05-25 23:38:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:38:28.79+03	2021-05-25 23:38:28.813+03	
624d0eda-f554-b68c-4440-55987a4cdd1b	2021-05-25 23:38:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:38:48.79+03	2021-05-25 23:38:48.797+03	
2dd6cf20-6e3b-c4a3-e4eb-212ce923f3db	2021-05-25 23:39:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:39:08.79+03	2021-05-25 23:39:08.796+03	
d0d71ba4-abf7-03b2-ce01-9f950e5bddbd	2021-05-25 23:39:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:39:28.79+03	2021-05-25 23:39:28.812+03	
c6fe447c-d716-d6b8-b139-1805fe65fd51	2021-05-25 23:39:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:39:48.79+03	2021-05-25 23:39:48.814+03	
15b927fa-b5af-bf9a-f01f-6ead3e324b1c	2021-05-25 23:40:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 23:40:00.791+03	2021-05-25 23:40:00.795+03	ERROR
12af5e60-13be-bf89-86b8-416204c21af5	2021-05-25 23:40:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:40:18.79+03	2021-05-25 23:40:18.796+03	
7bd39d7a-d8c7-8a19-2514-8b833beb2ce2	2021-05-25 23:40:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:40:38.79+03	2021-05-25 23:40:38.797+03	
2892728d-2029-81a5-74e1-39eb686c443c	2021-05-25 23:40:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:40:58.79+03	2021-05-25 23:40:58.796+03	
fb205fc6-1be6-c21b-12e9-ac78dee37819	2021-05-25 23:41:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:41:18.79+03	2021-05-25 23:41:18.796+03	
1260daba-47a5-3efe-b4ce-f65dc8ea8464	2021-05-25 23:41:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:41:38.79+03	2021-05-25 23:41:38.796+03	
b11bbd2c-caa9-cefe-6d05-4031e5cd03d7	2021-05-25 23:41:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:41:58.79+03	2021-05-25 23:41:58.802+03	
eaa7cde6-ac6c-379b-de92-832041fad9d1	2021-05-25 23:42:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:42:18.79+03	2021-05-25 23:42:18.796+03	
1aceab19-fb7a-362c-07f2-0967e3136400	2021-05-25 23:42:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:42:38.79+03	2021-05-25 23:42:38.813+03	
ce35294a-250a-f813-b819-d73774c0fbe7	2021-05-25 23:42:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:42:58.79+03	2021-05-25 23:42:58.796+03	
a2940acb-d6c6-994d-80aa-4cebc5970b5d	2021-05-25 23:43:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:43:18.79+03	2021-05-25 23:43:18.799+03	
e798c5dc-c927-f96b-6e5c-98249eab522e	2021-05-25 23:43:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:43:38.79+03	2021-05-25 23:43:38.812+03	
17af09d7-3058-1711-5cf7-df6cd2f0da1d	2021-05-25 23:43:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:43:58.791+03	2021-05-25 23:43:58.81+03	
887e6340-aa8d-4652-8753-e2cf198baf51	2021-05-25 23:44:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:44:19.79+03	2021-05-25 23:44:19.796+03	
5d08a13c-5c0b-b14b-321f-10c6c45df1d0	2021-05-25 23:44:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:44:39.79+03	2021-05-25 23:44:39.804+03	
68d7f94b-e1ad-6975-5ec1-70e4e4900596	2021-05-25 23:44:59.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:44:59.79+03	2021-05-25 23:44:59.799+03	
a2b8b5eb-ebe2-d6a4-07d9-274c15a5fcc3	2021-05-25 23:45:09.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:45:09.79+03	2021-05-25 23:45:09.797+03	
f2afaed1-8ff7-7118-05ab-fb54e5fada59	2021-05-25 23:45:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:45:29.79+03	2021-05-25 23:45:29.797+03	
061bcd28-38bf-428f-b8c9-55823fe0e2c9	2021-05-25 23:45:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:45:49.79+03	2021-05-25 23:45:49.796+03	
68edaee5-e551-191e-302f-d58650ee5bb4	2021-05-25 23:46:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:46:09.79+03	2021-05-25 23:46:09.796+03	
aec2a6cf-cd6c-b5e8-640e-d1e83c3c9c0f	2021-05-25 23:46:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:46:29.79+03	2021-05-25 23:46:29.799+03	
88c09902-cf8d-d501-e846-2daf72985c8f	2021-05-25 23:46:49.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:46:49.792+03	2021-05-25 23:46:49.801+03	
8bb7fc4a-f565-03ee-6717-6ba7d0119eac	2021-05-25 23:47:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:47:10.79+03	2021-05-25 23:47:10.797+03	
54adb787-0789-d8b6-549c-16d6869213f6	2021-05-25 23:47:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:47:30.79+03	2021-05-25 23:47:30.796+03	
19154e5c-3f43-ad9e-bd51-a09affb08ffa	2021-05-25 23:47:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:47:50.79+03	2021-05-25 23:47:50.796+03	
99e5a867-44b6-1920-59e3-6d1d5c54df63	2021-05-25 23:48:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:48:10.79+03	2021-05-25 23:48:10.797+03	
5434dfc7-9bb5-8ae2-dc0c-8a4b901411d7	2021-05-25 23:48:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:48:30.791+03	2021-05-25 23:48:30.797+03	
100e8865-4468-a35d-0015-aed216720906	2021-05-25 23:48:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:48:51.79+03	2021-05-25 23:48:51.796+03	
bbdee0e7-11da-a0e8-9e2d-9dc3678569ec	2021-05-25 23:49:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:49:11.79+03	2021-05-25 23:49:11.797+03	
477f2250-e69b-73a0-425e-9ed33a23ea08	2021-05-25 23:49:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:49:31.79+03	2021-05-25 23:49:31.797+03	
4e340b56-d53b-a77a-e532-303445f1cf90	2021-05-25 23:49:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:49:51.79+03	2021-05-25 23:49:51.813+03	
11379448-4687-7046-15cc-d18ed62e5f03	2021-05-25 23:50:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:50:01.79+03	2021-05-25 23:50:01.808+03	
af6da5a7-504d-b4fa-057e-fcdd901be191	2021-05-25 23:50:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:50:21.79+03	2021-05-25 23:50:21.796+03	
88f67a57-d3ca-e10f-fb72-38ac063e57ea	2021-05-25 23:50:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:50:41.79+03	2021-05-25 23:50:41.796+03	
6bb8ad31-0ec0-1c1a-1fb3-aecd04aa58c1	2021-05-25 23:51:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:51:01.79+03	2021-05-25 23:51:01.796+03	
0c3d5d8e-21e6-eb4d-c3ec-21b0fd5559d8	2021-05-25 23:51:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:51:21.79+03	2021-05-25 23:51:21.797+03	
1e6c0c3f-13dc-640c-88e6-db9eeadec4fa	2021-05-25 23:51:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:51:41.79+03	2021-05-25 23:51:41.799+03	
db2ed35b-7daa-2273-e3d5-651fbd0ee090	2021-05-25 23:52:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:52:01.79+03	2021-05-25 23:52:01.797+03	
4a75fb26-c48e-0312-46f1-b738649c70c9	2021-05-25 23:52:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:52:21.79+03	2021-05-25 23:52:21.796+03	
d180be88-c53e-0cb6-c847-ea9561466819	2021-05-25 23:52:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:52:41.79+03	2021-05-25 23:52:41.796+03	
43b39dac-1031-77b3-db3d-01f12f93371d	2021-05-25 23:53:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:53:01.79+03	2021-05-25 23:53:01.796+03	
1eb7685b-3f0d-c16e-5c03-3495b7d6027a	2021-05-25 23:53:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:53:21.79+03	2021-05-25 23:53:21.798+03	
dc63b3ac-3306-4f2f-ca85-70112e1952df	2021-05-25 23:53:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:53:41.79+03	2021-05-25 23:53:41.799+03	
0ea8d65c-85f9-8d84-559b-eaae3f3a62c1	2021-05-25 23:54:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:54:01.79+03	2021-05-25 23:54:01.797+03	
de65f78f-8c9a-d863-a42f-85890cd67921	2021-05-25 23:54:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:54:21.79+03	2021-05-25 23:54:21.8+03	
a0c629de-97fc-0688-f2e4-c0f2fd43ed88	2021-05-25 23:54:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:54:41.79+03	2021-05-25 23:54:41.796+03	
016e3d1d-3051-3c48-c991-927aeae55a66	2021-05-25 23:55:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:55:01.79+03	2021-05-25 23:55:01.797+03	
ef73e27b-dd0b-94e6-6143-211764729136	2021-05-25 23:55:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:55:21.79+03	2021-05-25 23:55:21.811+03	
7c643836-09f8-b02c-3024-ea5766242db9	2021-05-25 23:55:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:55:41.79+03	2021-05-25 23:55:41.797+03	
746dc5f3-fd30-947d-d617-0f56592eef42	2021-05-25 23:56:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:56:01.79+03	2021-05-25 23:56:01.797+03	
22c6af07-a816-70c3-5e27-f78d7c745371	2021-05-25 23:56:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:56:21.79+03	2021-05-25 23:56:21.796+03	
bac7631f-8c66-2d55-21a1-85f3dafcb8c2	2021-05-25 23:56:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:56:41.79+03	2021-05-25 23:56:41.796+03	
f0ea1c87-8feb-5a0d-16de-9239f9905d1f	2021-05-25 23:57:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:57:01.79+03	2021-05-25 23:57:01.797+03	
7591d717-69b6-9747-4ea5-fb189fc75f7c	2021-05-25 23:57:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:57:21.79+03	2021-05-25 23:57:21.796+03	
22e9e0b9-3a4a-1dce-67b5-8fa4259819b4	2021-05-25 23:57:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:57:41.79+03	2021-05-25 23:57:41.801+03	
26871d98-7925-d06b-b4a8-b78921ffe720	2021-05-25 23:58:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:58:01.79+03	2021-05-25 23:58:01.796+03	
62cac0de-aa46-8ed2-6a31-30d53ed7b631	2021-05-25 23:58:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:58:21.79+03	2021-05-25 23:58:21.796+03	
1eb550f4-031b-4383-f2bb-4610e80007e4	2021-05-25 23:58:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:58:41.79+03	2021-05-25 23:58:41.796+03	
e793daa5-575a-5422-4e27-e7f9c0e41d65	2021-05-25 23:59:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:59:01.79+03	2021-05-25 23:59:01.796+03	
c2759c6e-5924-5d9a-cd53-3421354b789a	2021-05-25 23:59:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:59:21.79+03	2021-05-25 23:59:21.796+03	
896b49da-cd7d-7135-c15b-50d3a557eecd	2021-05-25 23:59:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:59:41.79+03	2021-05-25 23:59:41.797+03	
a6b6eb7c-e46c-01d5-0199-84d92e625e1e	2021-05-26 00:00:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 00:00:00.79+03	2021-05-26 00:00:00.796+03	ERROR
15a6a7f9-6ef5-5f4f-392e-078e6e005d28	2021-05-26 00:00:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:00:11.79+03	2021-05-26 00:00:11.797+03	
76061359-0521-a9c8-6f8d-3b4e62645c4b	2021-05-26 00:00:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:00:31.79+03	2021-05-26 00:00:31.796+03	
9df26e88-2190-e989-afab-128e0e5eeb00	2021-05-26 00:00:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:00:51.79+03	2021-05-26 00:00:51.796+03	
bf7837c6-61fb-6d71-7474-405fe6928e13	2021-05-26 00:01:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:01:11.79+03	2021-05-26 00:01:11.796+03	
6d183e32-ed26-afa0-242a-02c3afba59c6	2021-05-26 00:01:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:01:31.79+03	2021-05-26 00:01:31.796+03	
f608f289-9ff5-9d6c-c15f-e4d27fe7890c	2021-05-26 00:01:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:01:51.79+03	2021-05-26 00:01:51.796+03	
39c308cf-cff2-f903-7df9-60fbe049176a	2021-05-26 00:02:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:02:11.79+03	2021-05-26 00:02:11.797+03	
93cfae4a-e727-7eef-5fcc-b2444896127e	2021-05-26 00:02:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:02:31.79+03	2021-05-26 00:02:31.796+03	
e406f15a-787f-ee1b-a915-287f28df5d43	2021-05-26 00:02:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:02:51.79+03	2021-05-26 00:02:51.796+03	
8537b6f4-d895-a475-3da8-d8555a9205cc	2021-05-26 00:03:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:03:11.79+03	2021-05-26 00:03:11.814+03	
d238800c-0239-fa13-16a2-00051ab8a2a5	2021-05-26 00:03:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:03:31.79+03	2021-05-26 00:03:31.796+03	
ebfd8b7e-13cd-b0ff-3b69-0495475473ee	2021-05-26 00:03:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:03:51.79+03	2021-05-26 00:03:51.796+03	
7b7c6848-714e-8350-71a0-0025974a401d	2021-05-26 00:04:11.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:04:11.79+03	2021-05-26 00:04:11.809+03	
2fb66155-70f2-63ff-5868-df42496a3df0	2021-05-26 00:04:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:04:31.79+03	2021-05-26 00:04:31.797+03	
55850d45-969b-078c-f3cc-a3d8f38f9d08	2021-05-26 00:04:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:04:51.79+03	2021-05-26 00:04:51.796+03	
ed96d6bb-b5a7-293d-57c7-e82d1e227b41	2021-05-26 00:05:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:05:11.79+03	2021-05-26 00:05:11.797+03	
db7c7603-b94d-bdb7-b00a-b72c40dd0e2e	2021-05-26 00:05:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:05:31.79+03	2021-05-26 00:05:31.809+03	
210a9e6b-e2ea-3d2c-da92-329bb061fdf4	2021-05-25 23:45:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:45:19.79+03	2021-05-25 23:45:19.797+03	
c39b1d72-87a9-6d08-41dd-41f86d5567f2	2021-05-25 23:45:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:45:39.79+03	2021-05-25 23:45:39.796+03	
e45c03b1-44cc-8526-e4c0-2ce3eca70206	2021-05-25 23:45:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:45:59.79+03	2021-05-25 23:45:59.796+03	
4a9bf770-7ea1-50a6-4c47-45e9df33d868	2021-05-25 23:46:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:46:19.79+03	2021-05-25 23:46:19.796+03	
3994e1e1-180d-99ab-cc2e-8d933a6c9ea7	2021-05-25 23:46:39.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:46:39.791+03	2021-05-25 23:46:39.814+03	
8686ab9b-63c0-9c69-686a-ac1c009774d1	2021-05-25 23:47:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:47:00.79+03	2021-05-25 23:47:00.797+03	
31f7c185-4627-d02c-d5be-bdd2201bb2fd	2021-05-25 23:47:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:47:20.79+03	2021-05-25 23:47:20.799+03	
f02e9d90-72ab-5c0c-f94d-a447580e046b	2021-05-25 23:47:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:47:40.79+03	2021-05-25 23:47:40.796+03	
9d164547-1d20-e2db-2aba-cb055f3fdc4e	2021-05-25 23:48:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:48:00.79+03	2021-05-25 23:48:00.812+03	
82075c21-2c04-f2ac-ab20-45db96fde0ee	2021-05-25 23:48:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:48:20.79+03	2021-05-25 23:48:20.801+03	
787a10c3-5eb5-97d1-f1b4-d317115be637	2021-05-25 23:48:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:48:41.79+03	2021-05-25 23:48:41.796+03	
5898f1ab-f330-53ed-6403-a787c92e1f0c	2021-05-25 23:49:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:49:01.79+03	2021-05-25 23:49:01.796+03	
1e638118-e6e0-a0bf-1829-2ba99acf8a0f	2021-05-25 23:49:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:49:21.79+03	2021-05-25 23:49:21.797+03	
a78810d3-fba0-ebe4-4c4c-0d2cade73a52	2021-05-25 23:49:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:49:41.79+03	2021-05-25 23:49:41.798+03	
cd49f5a7-d669-246b-3bd5-16bee13b66df	2021-05-25 23:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-25 23:50:00.79+03	2021-05-25 23:50:00.795+03	ERROR
a9aeafe6-5859-1940-b2ac-8af1a5e8b14a	2021-05-25 23:50:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:50:11.79+03	2021-05-25 23:50:11.803+03	
ee6c376b-aa19-c784-66e2-637af9ff4a04	2021-05-25 23:50:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:50:31.79+03	2021-05-25 23:50:31.796+03	
b6145d7d-316f-4ead-cc33-0937ee5e5e8c	2021-05-25 23:50:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:50:51.79+03	2021-05-25 23:50:51.797+03	
7eabb7ab-6b2e-8581-52f8-7a0ebd7aaffc	2021-05-25 23:51:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:51:11.79+03	2021-05-25 23:51:11.797+03	
a91f5cc5-fc28-5ced-5883-fe326b300a88	2021-05-25 23:51:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:51:31.79+03	2021-05-25 23:51:31.798+03	
edee6e9c-3e3a-06ef-d71f-8acac70e2227	2021-05-25 23:51:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:51:51.79+03	2021-05-25 23:51:51.796+03	
a2123066-d83c-6ae5-0cb1-2639c69b6395	2021-05-25 23:52:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:52:11.79+03	2021-05-25 23:52:11.797+03	
54263b0e-fecc-595b-7fc3-35af7a0b094b	2021-05-25 23:52:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:52:31.79+03	2021-05-25 23:52:31.797+03	
6c92e466-1687-aa57-e5c9-e485070dc319	2021-05-25 23:52:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:52:51.79+03	2021-05-25 23:52:51.797+03	
25603f74-5dca-e788-df43-399bc4398891	2021-05-25 23:53:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:53:11.79+03	2021-05-25 23:53:11.798+03	
c6cd18bf-aacb-1dfc-0f4f-9dab75312068	2021-05-25 23:53:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:53:31.79+03	2021-05-25 23:53:31.819+03	
dfd364a5-225e-325e-2234-e82e59f888fe	2021-05-25 23:53:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:53:51.79+03	2021-05-25 23:53:51.801+03	
b807a3f9-cf80-fead-a428-4032164d6a4a	2021-05-25 23:54:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:54:11.79+03	2021-05-25 23:54:11.796+03	
bd19ed69-43e9-c4f8-503c-c8d0355407f3	2021-05-25 23:54:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:54:31.79+03	2021-05-25 23:54:31.796+03	
ac22713b-1fc9-ed92-b673-24e44a469332	2021-05-25 23:54:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:54:51.79+03	2021-05-25 23:54:51.796+03	
1e061f02-9328-91db-cbe3-c9a93c9accf2	2021-05-25 23:55:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:55:11.79+03	2021-05-25 23:55:11.802+03	
823bc012-8d87-8ea9-f6cb-0a9f6baae21b	2021-05-25 23:55:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:55:31.79+03	2021-05-25 23:55:31.798+03	
74fb3736-de23-a260-93bc-1e52838764ac	2021-05-25 23:55:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:55:51.79+03	2021-05-25 23:55:51.796+03	
eed7ec7e-4733-6716-c574-440b788a8905	2021-05-25 23:56:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:56:11.79+03	2021-05-25 23:56:11.797+03	
0a16d2ff-f99c-1e99-bb73-9d2caa53a52b	2021-05-25 23:56:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:56:31.79+03	2021-05-25 23:56:31.797+03	
d7d95810-135f-3a4a-afbf-9b09a6f7c0ff	2021-05-25 23:56:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:56:51.79+03	2021-05-25 23:56:51.796+03	
7d5be60b-b617-111b-bf1e-943eff16ed06	2021-05-25 23:57:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:57:11.79+03	2021-05-25 23:57:11.796+03	
380b00d2-33b0-d29d-afcd-f8a448c0c045	2021-05-25 23:57:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:57:31.79+03	2021-05-25 23:57:31.81+03	
5255a2b6-45cb-824b-f48a-f3854d8c5fef	2021-05-25 23:57:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:57:51.79+03	2021-05-25 23:57:51.796+03	
367976c7-5102-1b83-873b-6207545db2f6	2021-05-25 23:58:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:58:11.79+03	2021-05-25 23:58:11.797+03	
2197eb59-8afa-a29f-6250-11ef9f85a871	2021-05-25 23:58:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:58:31.79+03	2021-05-25 23:58:31.797+03	
bd40a503-3717-6cc4-d04e-2b3d67bbc8d7	2021-05-25 23:58:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:58:51.79+03	2021-05-25 23:58:51.796+03	
9acda633-038a-62ab-2fa1-4f2b6f60aa4a	2021-05-25 23:59:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:59:11.79+03	2021-05-25 23:59:11.796+03	
3215d735-1ad5-cc99-992e-3e05d19f179b	2021-05-25 23:59:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:59:31.79+03	2021-05-25 23:59:31.797+03	
5f7c9dfb-1ec3-8935-7881-fd9bcb5a3fb6	2021-05-25 23:59:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-25 23:59:51.79+03	2021-05-25 23:59:51.795+03	
a5ccd06e-45c1-de7d-d247-347c29261aaa	2021-05-26 00:00:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:00:01.79+03	2021-05-26 00:00:01.803+03	
2db4d6ff-297c-daba-9ddd-fa7817963196	2021-05-26 00:00:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:00:21.79+03	2021-05-26 00:00:21.798+03	
d8167177-fa50-a02e-4305-7adab54f0e82	2021-05-26 00:00:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:00:41.79+03	2021-05-26 00:00:41.812+03	
2156cb75-39a9-7aba-4f38-0ede7d22840c	2021-05-26 00:01:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:01:01.79+03	2021-05-26 00:01:01.799+03	
6b8b3981-cead-ffa5-cb80-e2be4dbe05a8	2021-05-26 00:01:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:01:21.79+03	2021-05-26 00:01:21.796+03	
443c26a7-183f-d56e-f952-e4393f4bef58	2021-05-26 00:01:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:01:41.79+03	2021-05-26 00:01:41.8+03	
cce845eb-b43b-b121-d493-61e940cadb6c	2021-05-26 00:02:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:02:01.79+03	2021-05-26 00:02:01.812+03	
6399a1c4-f981-ebde-c066-76873ebea067	2021-05-26 00:02:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:02:21.79+03	2021-05-26 00:02:21.796+03	
2f3bf478-40b5-df4d-bcab-88457604b396	2021-05-26 00:02:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:02:41.79+03	2021-05-26 00:02:41.796+03	
4d4bdf89-2f4f-aa22-2741-2ffdb0fe4912	2021-05-26 00:03:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:03:01.79+03	2021-05-26 00:03:01.797+03	
19b3abaf-7699-b730-cc1b-0ca2ef514304	2021-05-26 00:03:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:03:21.79+03	2021-05-26 00:03:21.796+03	
45d20094-9ff9-25be-b4a8-a931b90b61b3	2021-05-26 00:03:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:03:41.79+03	2021-05-26 00:03:41.796+03	
984348a1-b22c-c669-541c-c2e4ef1a2eae	2021-05-26 00:04:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:04:01.79+03	2021-05-26 00:04:01.814+03	
1c4111dd-1022-7251-d2b6-7dd5eb1c2576	2021-05-26 00:04:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:04:21.79+03	2021-05-26 00:04:21.797+03	
ef3c851d-26dd-9d9a-d95d-26f331c9bf5b	2021-05-26 00:04:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:04:41.79+03	2021-05-26 00:04:41.797+03	
cb27df6f-0d5f-651a-b5f9-79806ef0518c	2021-05-26 00:05:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:05:01.79+03	2021-05-26 00:05:01.809+03	
a27fc2a3-4fb2-610a-9c64-ba1e5924ea89	2021-05-26 00:05:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:05:21.79+03	2021-05-26 00:05:21.796+03	
82d92cd8-63dc-b91b-2b5e-8fed79e1c04d	2021-05-26 00:05:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:05:41.79+03	2021-05-26 00:05:41.796+03	
dc833114-52b5-2925-2e8a-f62c25eb2217	2021-05-26 00:05:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:05:51.79+03	2021-05-26 00:05:51.796+03	
91c19f33-c91f-d747-b7ab-0c28f5f77475	2021-05-26 00:06:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:06:11.79+03	2021-05-26 00:06:11.796+03	
6bc67404-f96e-c11f-7789-ee3f0da74f49	2021-05-26 00:06:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:06:31.79+03	2021-05-26 00:06:31.808+03	
fa00ad75-ef25-dc99-6de3-3133c6e731b5	2021-05-26 00:06:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:06:51.79+03	2021-05-26 00:06:51.796+03	
bc0c9314-3661-a580-2d5a-c3120312a3ed	2021-05-26 00:07:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:07:11.79+03	2021-05-26 00:07:11.797+03	
1fad8b4f-ea17-a3be-12b6-7f57e06b0f11	2021-05-26 00:07:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:07:31.79+03	2021-05-26 00:07:31.812+03	
10a246ec-a02b-c235-ce32-820fcf57cbd7	2021-05-26 00:07:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:07:51.79+03	2021-05-26 00:07:51.803+03	
054e3b36-7b2d-5593-b026-4f1154ea5e7b	2021-05-26 00:08:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:08:11.79+03	2021-05-26 00:08:11.796+03	
710b10b7-3b4d-dfc3-fd10-e813a6e19821	2021-05-26 00:08:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:08:31.79+03	2021-05-26 00:08:31.797+03	
eb49f325-6559-6393-dde4-ea249681cf6a	2021-05-26 00:08:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:08:51.79+03	2021-05-26 00:08:51.803+03	
c8267c69-ea1a-82b4-6600-6fb02623022d	2021-05-26 00:09:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:09:11.79+03	2021-05-26 00:09:11.796+03	
d1a6a4eb-5e22-8cc2-0784-380e7be7a2b3	2021-05-26 00:09:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:09:31.79+03	2021-05-26 00:09:31.796+03	
8f6273ab-a789-1def-d69d-13ad01667b52	2021-05-26 00:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 00:10:00.79+03	2021-05-26 00:10:00.795+03	ERROR
a4adaec4-276b-36f0-5dfe-356b2d6d0137	2021-05-26 00:10:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:10:11.79+03	2021-05-26 00:10:11.797+03	
d07be88b-de95-2868-f2fb-ee5982ae0741	2021-05-26 00:10:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:10:31.79+03	2021-05-26 00:10:31.796+03	
e29a398a-d38d-b482-110c-48b974ff1d8a	2021-05-26 00:10:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:10:51.79+03	2021-05-26 00:10:51.796+03	
1a0912be-e594-9cfa-f5cf-1e4925ccb696	2021-05-26 00:11:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:11:11.79+03	2021-05-26 00:11:11.803+03	
6872d512-3b8a-213c-5e60-a3a4389dd6f6	2021-05-26 00:11:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:11:31.79+03	2021-05-26 00:11:31.796+03	
8c5466dd-fbe5-13f3-9a42-c17d92f2a1af	2021-05-26 00:11:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:11:51.79+03	2021-05-26 00:11:51.81+03	
19f947f7-9d03-8d5c-a598-94fecedc850f	2021-05-26 00:12:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:12:11.79+03	2021-05-26 00:12:11.796+03	
ca890d9f-7563-911b-a141-364e79a10b84	2021-05-26 00:12:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:12:31.79+03	2021-05-26 00:12:31.796+03	
de4aa8e4-b36d-e4ef-2a93-3e3f9c017b32	2021-05-26 00:12:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:12:51.79+03	2021-05-26 00:12:51.797+03	
9770e2d9-e364-3fc1-b69d-e79a747f561e	2021-05-26 00:13:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:13:11.79+03	2021-05-26 00:13:11.804+03	
c52fd30c-331f-1144-ee40-90f1c98761ed	2021-05-26 00:13:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:13:31.79+03	2021-05-26 00:13:31.798+03	
a550add6-752a-6fe0-b343-241b9b3638d2	2021-05-26 00:13:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:13:51.79+03	2021-05-26 00:13:51.796+03	
9a8bddd2-bd15-282c-94e3-2da1e065f9db	2021-05-26 00:14:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:14:11.79+03	2021-05-26 00:14:11.796+03	
01d4c80b-ee28-bece-8a24-6d11b2a51d3b	2021-05-26 00:14:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:14:31.79+03	2021-05-26 00:14:31.797+03	
07c049ca-e7e2-714b-fcfd-0bace78d8433	2021-05-26 00:14:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:14:51.79+03	2021-05-26 00:14:51.796+03	
a383313e-8dd6-2aca-29ec-b0cdfba875d5	2021-05-26 00:15:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:15:11.79+03	2021-05-26 00:15:11.797+03	
d086f6cb-5a81-cff4-eb03-00d988b3b8e1	2021-05-26 00:15:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:15:31.79+03	2021-05-26 00:15:31.796+03	
9025dc2a-27e8-88e4-8c6f-35788e7ae43a	2021-05-26 00:15:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:15:51.79+03	2021-05-26 00:15:51.797+03	
28ff923d-aeab-34c2-221d-9f35e6521a11	2021-05-26 00:16:11.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:16:11.791+03	2021-05-26 00:16:11.819+03	
bfb379f5-0bc7-180f-f8db-7e76ac3a39a1	2021-05-26 00:16:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:16:32.79+03	2021-05-26 00:16:32.797+03	
896bf82b-1b9d-3b65-6014-ed2b5bb1719d	2021-05-26 00:16:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:16:52.79+03	2021-05-26 00:16:52.796+03	
4faac32e-960b-bb22-cd6c-c5cc7067a39b	2021-05-26 00:17:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:17:12.79+03	2021-05-26 00:17:12.803+03	
44890d8a-0e40-94ce-466b-9b9b43816beb	2021-05-26 00:17:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:17:32.79+03	2021-05-26 00:17:32.797+03	
4a1a778f-3871-f609-44a9-51acbc1d0522	2021-05-26 00:17:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:17:52.79+03	2021-05-26 00:17:52.796+03	
132023e4-9761-7804-5fed-e75fbc75a9b7	2021-05-26 00:18:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:18:12.79+03	2021-05-26 00:18:12.795+03	
1ecfafee-7ee2-2acd-a5b7-902f059d67e6	2021-05-26 00:18:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:18:32.79+03	2021-05-26 00:18:32.796+03	
7a617dfd-1e1c-e7ba-4f9a-f19b2b3db5f4	2021-05-26 00:18:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:18:52.79+03	2021-05-26 00:18:52.799+03	
ccc161bf-824c-3127-0dbb-6af4b8e86cc8	2021-05-26 00:19:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:19:12.79+03	2021-05-26 00:19:12.806+03	
757bc83f-863b-052f-79d0-8c98dca47fe5	2021-05-26 00:19:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:19:32.79+03	2021-05-26 00:19:32.797+03	
af8a1979-183c-6cc9-758b-bbf67b3528a7	2021-05-26 00:19:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:19:52.79+03	2021-05-26 00:19:52.796+03	
7c6ec17c-045d-5ae7-86f2-eb7132e204e8	2021-05-26 00:20:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:20:02.79+03	2021-05-26 00:20:02.798+03	
62bde965-04f9-e68f-e174-995028e23cea	2021-05-26 00:20:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:20:22.79+03	2021-05-26 00:20:22.798+03	
23b7e100-6fac-d488-b80c-2d51aae03e93	2021-05-26 00:20:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:20:42.79+03	2021-05-26 00:20:42.797+03	
b85aacc8-679a-2aa4-7ed0-db101074e8f3	2021-05-26 00:21:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:21:03.79+03	2021-05-26 00:21:03.796+03	
d0e8188f-633e-6705-684e-bfe59f954c44	2021-05-26 00:21:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:21:23.79+03	2021-05-26 00:21:23.797+03	
1c7d498f-c409-e648-d9ed-bba0869eb8a2	2021-05-26 00:21:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:21:43.79+03	2021-05-26 00:21:43.811+03	
0bfe90aa-e0d8-a45f-5453-c75b56bc6143	2021-05-26 00:22:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:22:03.79+03	2021-05-26 00:22:03.796+03	
be20b618-b0a1-1dd3-2d95-476e77e71fd3	2021-05-26 00:22:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:22:24.79+03	2021-05-26 00:22:24.807+03	
dde5fa8e-b91f-f090-ef19-d99d4ad39ede	2021-05-26 00:22:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:22:44.79+03	2021-05-26 00:22:44.797+03	
411dfac6-9830-8ae2-e775-e69f7690eeaa	2021-05-26 00:23:04.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:23:04.791+03	2021-05-26 00:23:04.807+03	
d9b7ea2a-a6e1-9de1-da73-4e763fe3fa16	2021-05-26 00:23:25.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:23:25.791+03	2021-05-26 00:23:25.809+03	
a81fc537-6b7c-cd99-bfe6-328085a2ad23	2021-05-26 00:23:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:23:46.79+03	2021-05-26 00:23:46.804+03	
72f1b0bc-440a-c2d2-3c8c-21c9eae435b2	2021-05-26 00:24:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:24:06.79+03	2021-05-26 00:24:06.797+03	
02e1ebc2-1b40-58eb-84c0-916620b61168	2021-05-26 00:24:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:24:26.79+03	2021-05-26 00:24:26.797+03	
55c28ebb-8f93-72af-26a5-7de115ea3b4e	2021-05-26 00:24:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:24:46.79+03	2021-05-26 00:24:46.796+03	
b8e614e1-1241-e466-136f-ab5d71bf34a4	2021-05-26 00:25:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:25:06.791+03	2021-05-26 00:25:06.801+03	
ab38347a-9d16-c312-d5a4-c30ab3ec48a0	2021-05-26 00:25:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:25:27.79+03	2021-05-26 00:25:27.798+03	
85f07a15-d404-8bcc-6a55-4137364473a5	2021-05-26 00:25:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:25:47.79+03	2021-05-26 00:25:47.8+03	
a05914b5-681f-66be-a85f-5f68f529733e	2021-05-26 00:26:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:26:07.79+03	2021-05-26 00:26:07.797+03	
3de9f7c9-3251-0e9a-8687-ee4fd3585324	2021-05-26 00:26:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:26:27.79+03	2021-05-26 00:26:27.799+03	
04118dfe-e084-a0ae-7bb5-60b678f24a75	2021-05-26 00:06:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:06:01.79+03	2021-05-26 00:06:01.797+03	
4f599c19-4943-980a-7aef-303092db6f1c	2021-05-26 00:06:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:06:21.79+03	2021-05-26 00:06:21.796+03	
e58e90af-07bb-e92d-9309-7965ef8a8e85	2021-05-26 00:06:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:06:41.79+03	2021-05-26 00:06:41.798+03	
24b55c6c-90fd-e68d-072e-e27d9b59ea2b	2021-05-26 00:07:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:07:01.79+03	2021-05-26 00:07:01.797+03	
a87a41aa-2032-7db9-9dc4-6cd21d0e56e4	2021-05-26 00:07:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:07:21.79+03	2021-05-26 00:07:21.796+03	
a00194ad-f536-ca0e-c982-210220826dac	2021-05-26 00:07:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:07:41.79+03	2021-05-26 00:07:41.796+03	
5b5d9f14-977d-3121-dadc-53b3d31fcd40	2021-05-26 00:08:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:08:01.79+03	2021-05-26 00:08:01.818+03	
7e6d81a8-d268-b3d1-c59a-e4421f97dc36	2021-05-26 00:08:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:08:21.79+03	2021-05-26 00:08:21.797+03	
344cd1d0-cd60-84cb-f809-cdbc29758e77	2021-05-26 00:08:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:08:41.79+03	2021-05-26 00:08:41.796+03	
3c36f216-c6fa-49c6-dbc1-756d4764d7f0	2021-05-26 00:09:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:09:01.79+03	2021-05-26 00:09:01.811+03	
5cd40464-feeb-2af5-4de5-81e4fb266156	2021-05-26 00:09:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:09:21.79+03	2021-05-26 00:09:21.801+03	
31d2e19d-fd37-25ab-fbd2-643da3f4d0ae	2021-05-26 00:09:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:09:41.79+03	2021-05-26 00:09:41.796+03	
46c0a024-e10b-cbd2-2370-7a23b9dde810	2021-05-26 00:09:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:09:51.79+03	2021-05-26 00:09:51.796+03	
783f3d94-b025-6b13-97e3-626e48db0cb3	2021-05-26 00:10:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:10:01.79+03	2021-05-26 00:10:01.797+03	
3e9fc786-3ae8-9b1b-61eb-ba2c33d042b6	2021-05-26 00:10:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:10:21.79+03	2021-05-26 00:10:21.808+03	
20f6075d-ca19-8954-32be-3be0ae195397	2021-05-26 00:10:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:10:41.79+03	2021-05-26 00:10:41.796+03	
1d6b994f-05b1-35f4-956e-87227574cf35	2021-05-26 00:11:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:11:01.79+03	2021-05-26 00:11:01.798+03	
49be21ce-24ef-cf0b-3b9a-88414f19b0fb	2021-05-26 00:11:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:11:21.79+03	2021-05-26 00:11:21.796+03	
650bda27-0a15-3f0a-ea36-24a705feacf6	2021-05-26 00:11:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:11:41.79+03	2021-05-26 00:11:41.806+03	
508a2aaa-f902-757d-ea60-0888b85592b8	2021-05-26 00:12:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:12:01.79+03	2021-05-26 00:12:01.796+03	
5f437cc7-f53d-d269-9208-fa3a308739d7	2021-05-26 00:12:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:12:21.79+03	2021-05-26 00:12:21.797+03	
295a6397-70f2-be9e-c9fb-69033db15fa1	2021-05-26 00:12:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:12:41.79+03	2021-05-26 00:12:41.799+03	
d71aa2f2-1825-4436-68b5-c4f3f6b6c9a5	2021-05-26 00:13:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:13:01.79+03	2021-05-26 00:13:01.797+03	
635bbbc9-0cec-50e9-20ad-5fe7dfbc3d65	2021-05-26 00:13:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:13:21.79+03	2021-05-26 00:13:21.796+03	
5169cc91-07f7-bd0f-7920-a1eb53b97979	2021-05-26 00:13:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:13:41.79+03	2021-05-26 00:13:41.812+03	
f5dd88ee-cd9d-6908-ad61-f901def47450	2021-05-26 00:14:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:14:01.79+03	2021-05-26 00:14:01.797+03	
1899b49c-92ed-788e-dafa-b1f41df75422	2021-05-26 00:14:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:14:21.79+03	2021-05-26 00:14:21.796+03	
1cd82c22-4d67-2d7a-931b-1ab9cb46ed05	2021-05-26 00:14:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:14:41.79+03	2021-05-26 00:14:41.796+03	
00b93f62-5aa8-df34-7812-b35f4cf76b58	2021-05-26 00:15:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:15:01.79+03	2021-05-26 00:15:01.8+03	
319eab4b-d26f-c0da-6512-8807f488d05c	2021-05-26 00:15:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:15:21.79+03	2021-05-26 00:15:21.798+03	
2ea93916-1469-5761-3a7d-e1c96769dfdb	2021-05-26 00:15:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:15:41.79+03	2021-05-26 00:15:41.797+03	
e742b4ad-455a-0bb3-1b43-4497979abbc9	2021-05-26 00:16:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:16:01.79+03	2021-05-26 00:16:01.797+03	
716756ea-3115-6d2c-2c84-3c4be27d1f46	2021-05-26 00:16:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:16:22.79+03	2021-05-26 00:16:22.807+03	
eda3b85e-814f-cc9c-358b-29b6c7ce759f	2021-05-26 00:16:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:16:42.79+03	2021-05-26 00:16:42.796+03	
765c3d69-54e2-588e-cc27-d3458724f907	2021-05-26 00:17:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:17:02.79+03	2021-05-26 00:17:02.797+03	
8e855544-ed52-4271-8cec-0f780d3a158f	2021-05-26 00:17:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:17:22.79+03	2021-05-26 00:17:22.797+03	
8a88ba44-289d-bafa-1a31-b6ac0714846e	2021-05-26 00:17:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:17:42.79+03	2021-05-26 00:17:42.796+03	
7d99f6ae-808d-b8e2-a65f-c62773f612e4	2021-05-26 00:18:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:18:02.79+03	2021-05-26 00:18:02.796+03	
38459f8e-c409-9b00-2b30-d9ad06480c1f	2021-05-26 00:18:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:18:22.79+03	2021-05-26 00:18:22.796+03	
cf44b4a3-3afd-b9bb-5011-6a404ad8ca09	2021-05-26 00:18:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:18:42.79+03	2021-05-26 00:18:42.796+03	
d7c407ce-82ff-140c-8d25-4897d8e10c8b	2021-05-26 00:19:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:19:02.79+03	2021-05-26 00:19:02.797+03	
d9399b32-8851-527c-903b-2e986428980b	2021-05-26 00:19:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:19:22.79+03	2021-05-26 00:19:22.797+03	
ef8ed46f-d8f7-185b-12a9-4e594afb7c48	2021-05-26 00:19:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:19:42.79+03	2021-05-26 00:19:42.796+03	
699130b5-6125-cf1b-b2dc-2d32fe8a8f21	2021-05-26 00:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 00:20:00.79+03	2021-05-26 00:20:00.797+03	ERROR
114cb9c4-25cb-b44d-19ff-f3ae635de2f6	2021-05-26 00:20:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:20:12.79+03	2021-05-26 00:20:12.796+03	
813b73c3-135a-7503-e1d3-ebdd976afe42	2021-05-26 00:20:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:20:32.79+03	2021-05-26 00:20:32.796+03	
171a5634-1671-c7cc-33ef-c2fc451a9b8f	2021-05-26 00:20:52.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:20:52.792+03	2021-05-26 00:20:52.81+03	
7a9e8ec5-b13f-4276-c8be-5b996a2800f9	2021-05-26 00:21:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:21:13.79+03	2021-05-26 00:21:13.796+03	
63a9bdfb-dcff-34c2-0735-79f354f73e0f	2021-05-26 00:21:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:21:33.79+03	2021-05-26 00:21:33.796+03	
bbdef7c7-6e77-9f5e-ffbe-3d85c511720b	2021-05-26 00:21:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:21:53.79+03	2021-05-26 00:21:53.797+03	
b4c286c5-e797-d8f4-c0a0-efd9a31dc49f	2021-05-26 00:22:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:22:13.791+03	2021-05-26 00:22:13.81+03	
50b76749-27a2-d935-907f-8b673afd9e63	2021-05-26 00:22:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:22:34.79+03	2021-05-26 00:22:34.802+03	
2974db55-0c35-543a-7576-4f6ed5d52502	2021-05-26 00:22:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:22:54.79+03	2021-05-26 00:22:54.797+03	
87359488-b7c7-f7fa-b84b-bf159e6eb6e1	2021-05-26 00:23:15.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:23:15.79+03	2021-05-26 00:23:15.797+03	
6f58d522-331e-c55d-e565-8c4b5e003a96	2021-05-26 00:23:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:23:36.79+03	2021-05-26 00:23:36.796+03	
9010548d-f236-d702-bbfd-e2f61d59c947	2021-05-26 00:23:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:23:56.79+03	2021-05-26 00:23:56.797+03	
282887c3-d063-cbd5-dbc2-de763ed0320c	2021-05-26 00:24:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:24:16.79+03	2021-05-26 00:24:16.797+03	
9d237101-010e-b1a7-d0e8-eaba1a9a004b	2021-05-26 00:24:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:24:36.79+03	2021-05-26 00:24:36.797+03	
8835cfbe-716f-1a04-62fc-adeeee31b924	2021-05-26 00:24:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:24:56.79+03	2021-05-26 00:24:56.798+03	
280a7772-0dcc-1323-8e72-b8de9dcff463	2021-05-26 00:25:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:25:17.79+03	2021-05-26 00:25:17.796+03	
1b31b53f-ea87-0fab-ad50-76192859da4b	2021-05-26 00:25:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:25:37.79+03	2021-05-26 00:25:37.798+03	
c27deb29-ded5-f328-6262-ba28accd924e	2021-05-26 00:25:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:25:57.79+03	2021-05-26 00:25:57.797+03	
5138414c-51e8-a2ec-f0d5-f8c476b26841	2021-05-26 00:26:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:26:17.79+03	2021-05-26 00:26:17.797+03	
62800d49-1056-df39-8e6e-92411ae2e685	2021-05-26 00:26:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:26:37.79+03	2021-05-26 00:26:37.816+03	
0496c241-cbd8-edb3-9900-ed70ac766969	2021-05-26 00:26:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:26:58.79+03	2021-05-26 00:26:58.796+03	
ac8c4752-b3f5-60ef-19a6-8dae4c2ef14f	2021-05-26 00:27:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:27:18.79+03	2021-05-26 00:27:18.797+03	
4fc18cfa-1f58-3e74-69b7-6a39b72f907c	2021-05-26 00:27:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:27:38.79+03	2021-05-26 00:27:38.797+03	
b87b1a32-94a4-9713-1154-80f09c922d20	2021-05-26 00:27:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:27:58.79+03	2021-05-26 00:27:58.8+03	
e31b5bc5-11b7-f2be-1944-a6f70d4bf3a1	2021-05-26 00:28:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:28:18.79+03	2021-05-26 00:28:18.8+03	
b35cdf55-9e45-4510-29ee-2eecbbdb0c85	2021-05-26 00:28:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:28:38.79+03	2021-05-26 00:28:38.796+03	
3e84349a-ec0a-5c19-dd64-15dc7962d60e	2021-05-26 00:28:58.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:28:58.791+03	2021-05-26 00:28:58.813+03	
b4cad2a9-7bb1-e1a5-9d12-ba43db359693	2021-05-26 00:29:18.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:29:18.791+03	2021-05-26 00:29:18.798+03	
9d6afc46-e931-114f-109c-7af58c2ac800	2021-05-26 00:29:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:29:39.79+03	2021-05-26 00:29:39.797+03	
3a468e2b-b17f-51b4-e592-224e0803011c	2021-05-26 00:29:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:29:59.79+03	2021-05-26 00:29:59.796+03	
e17b6905-bfa8-99a8-49f5-5fca8673d1e4	2021-05-26 00:30:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:30:09.79+03	2021-05-26 00:30:09.796+03	
459895eb-1d1f-88fe-68fa-50e3c90b2735	2021-05-26 00:30:29.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:30:29.791+03	2021-05-26 00:30:29.816+03	
f2a76060-0ddc-6c5f-ca04-88adb4b39af9	2021-05-26 00:30:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:30:50.79+03	2021-05-26 00:30:50.796+03	
8177509d-a02f-525b-71c5-7966ca88494e	2021-05-26 00:31:10.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:31:10.79+03	2021-05-26 00:31:10.796+03	
cd632d28-9cfd-cbb7-41e3-a72c1e847093	2021-05-26 00:31:30.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:31:30.791+03	2021-05-26 00:31:30.797+03	
e8fdd94b-116f-2740-b395-c290cd6d5f87	2021-05-26 00:31:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:31:51.79+03	2021-05-26 00:31:51.796+03	
63293d27-9ed7-3cac-6ed2-cdb33082f620	2021-05-26 00:32:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:32:11.79+03	2021-05-26 00:32:11.796+03	
6a27c43c-36ec-5db0-136b-55dff1e45473	2021-05-26 00:32:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:32:31.79+03	2021-05-26 00:32:31.796+03	
f5d4c131-efac-a8cf-e571-991fbb1da8ab	2021-05-26 00:32:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:32:51.79+03	2021-05-26 00:32:51.796+03	
48c258fd-4b48-f1d7-edcc-a397dbb32019	2021-05-26 00:33:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:33:11.79+03	2021-05-26 00:33:11.796+03	
28c9c24e-24c7-ce0e-179e-7d1abb8d18be	2021-05-26 00:33:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:33:31.79+03	2021-05-26 00:33:31.796+03	
0ebe11a3-327e-b275-34e1-2577b1d97eba	2021-05-26 00:33:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:33:51.79+03	2021-05-26 00:33:51.797+03	
3b6a21b7-e081-e256-d5b4-b6616bbd31d6	2021-05-26 00:34:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:34:11.79+03	2021-05-26 00:34:11.796+03	
c58c181c-8030-b086-c19d-f7d2494fdb0e	2021-05-26 00:34:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:34:31.79+03	2021-05-26 00:34:31.796+03	
baae26e8-2bc8-44f3-f182-074966198fb0	2021-05-26 00:34:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:34:51.79+03	2021-05-26 00:34:51.811+03	
830857c8-8235-e2ea-3147-839882d995c0	2021-05-26 00:35:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:35:11.79+03	2021-05-26 00:35:11.796+03	
1056801d-0a76-59f0-f657-6aa53cef02c4	2021-05-26 00:35:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:35:31.79+03	2021-05-26 00:35:31.796+03	
16171f0a-d5d4-1538-fac9-eaab27e830fc	2021-05-26 00:35:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:35:51.79+03	2021-05-26 00:35:51.797+03	
ef7be01f-2e83-a3c6-e5da-7f7ffcdbf379	2021-05-26 00:36:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:36:11.79+03	2021-05-26 00:36:11.796+03	
09b8ebda-fb5d-cacc-cd73-e24cbb48e2b7	2021-05-26 00:36:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:36:31.79+03	2021-05-26 00:36:31.8+03	
15768a48-a923-0970-aefb-a9d993490c1e	2021-05-26 00:36:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:36:51.79+03	2021-05-26 00:36:51.797+03	
ba8f4236-f93c-35a1-37b1-d75d400f8ea0	2021-05-26 00:37:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:37:11.79+03	2021-05-26 00:37:11.797+03	
a61a8892-1d70-495f-b567-c58925aca149	2021-05-26 00:37:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:37:31.79+03	2021-05-26 00:37:31.797+03	
1207335b-8e2d-33e0-3a9e-42f8bac59e71	2021-05-26 00:37:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:37:51.79+03	2021-05-26 00:37:51.797+03	
caa5371e-a695-c132-7002-88b6ad6cd18e	2021-05-26 00:38:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:38:11.79+03	2021-05-26 00:38:11.796+03	
e8a077a2-daf1-7669-9679-da1904f0f993	2021-05-26 00:38:31.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:38:31.79+03	2021-05-26 00:38:31.797+03	
cc780459-05e2-ebf8-3add-f524deb66928	2021-05-26 00:38:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:38:52.79+03	2021-05-26 00:38:52.796+03	
e643050d-9b61-fc57-4700-fff12dbbae14	2021-05-26 00:39:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:39:12.79+03	2021-05-26 00:39:12.796+03	
478fae08-919e-f6b0-f553-28bfffffe759	2021-05-26 00:39:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:39:33.79+03	2021-05-26 00:39:33.8+03	
776d1d79-bed4-6aae-8737-f91b7f80a29b	2021-05-26 00:39:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:39:53.79+03	2021-05-26 00:39:53.798+03	
39185e71-33e4-2ca2-f370-1d3a5f93ab56	2021-05-26 00:40:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:40:03.79+03	2021-05-26 00:40:03.796+03	
0072340c-b106-94a8-64ca-21fa212d4e55	2021-05-26 00:40:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:40:23.79+03	2021-05-26 00:40:23.797+03	
01db2b75-fec2-a3f9-faee-ffa35a6d655e	2021-05-26 00:40:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:40:43.79+03	2021-05-26 00:40:43.802+03	
e1dc6566-d7ac-cf42-7449-558d8b044f00	2021-05-26 00:41:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:41:03.79+03	2021-05-26 00:41:03.797+03	
9cfeac14-9582-2f78-12ed-29b9d4fbbb4d	2021-05-26 00:41:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:41:23.79+03	2021-05-26 00:41:23.808+03	
d71e0422-188b-0a76-301b-9d48e37146cd	2021-05-26 00:41:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:41:43.79+03	2021-05-26 00:41:43.797+03	
6e17d64f-2340-15bb-4f46-2edff5db1298	2021-05-26 00:42:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:42:03.79+03	2021-05-26 00:42:03.808+03	
1a128697-8410-b5eb-1842-f1ae2170de44	2021-05-26 00:42:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:42:23.79+03	2021-05-26 00:42:23.796+03	
ae9dbbac-b821-0b4e-3632-e6a2912e4ba2	2021-05-26 00:42:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:42:43.79+03	2021-05-26 00:42:43.797+03	
606b9d2a-1bde-2463-44f0-268027b0643b	2021-05-26 00:43:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:43:03.79+03	2021-05-26 00:43:03.797+03	
30f3a462-0fad-1412-2a51-f7b52edb8fcd	2021-05-26 00:43:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:43:23.79+03	2021-05-26 00:43:23.799+03	
c068d315-90d0-89e1-df1b-aa267440a8db	2021-05-26 00:43:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:43:43.79+03	2021-05-26 00:43:43.796+03	
59e0bac5-8e08-edbd-3e34-5a41633d3536	2021-05-26 00:44:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:44:03.79+03	2021-05-26 00:44:03.796+03	
167ffed0-40e7-0e1d-fb2a-1105b8337da9	2021-05-26 00:44:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:44:23.79+03	2021-05-26 00:44:23.796+03	
d19e36cd-2e81-2a73-58bf-9def44d8a923	2021-05-26 00:44:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:44:43.79+03	2021-05-26 00:44:43.797+03	
47ccb375-3182-a185-371f-bb3bdb454046	2021-05-26 00:45:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:45:03.79+03	2021-05-26 00:45:03.813+03	
de685f7c-7b2d-299e-1969-81f135177b28	2021-05-26 00:45:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:45:23.79+03	2021-05-26 00:45:23.796+03	
efa2f196-671e-a5f4-7281-b68767c06cfa	2021-05-26 00:45:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:45:43.79+03	2021-05-26 00:45:43.798+03	
ff6b9eb7-d14b-bf8e-27ee-be2c7a6e263f	2021-05-26 00:46:03.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:46:03.79+03	2021-05-26 00:46:03.802+03	
23133fea-63c7-dc4b-49f9-a99bec41eea2	2021-05-26 00:46:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:46:23.79+03	2021-05-26 00:46:23.799+03	
f7f09f14-431a-d98a-e415-42d38ae1e0e8	2021-05-26 00:46:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:46:43.79+03	2021-05-26 00:46:43.805+03	
fb7a3595-debf-a11e-0728-dfd958fb9806	2021-05-26 00:47:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:47:03.79+03	2021-05-26 00:47:03.796+03	
9be3c73c-9b45-6d51-b446-4b39fd8ca508	2021-05-26 00:26:47.793	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:26:47.792+03	2021-05-26 00:26:47.802+03	
74dadc3f-b031-7c51-89fe-03973582f344	2021-05-26 00:27:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:27:08.79+03	2021-05-26 00:27:08.796+03	
77d2067c-5527-7426-69df-4175b5733fd1	2021-05-26 00:27:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:27:28.79+03	2021-05-26 00:27:28.796+03	
0199fd00-60fa-2d02-e593-888133a22eac	2021-05-26 00:27:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:27:48.79+03	2021-05-26 00:27:48.796+03	
2366e543-f066-1211-d6e6-2ebe59017178	2021-05-26 00:28:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:28:08.79+03	2021-05-26 00:28:08.797+03	
6e4acfc7-ba97-916b-563b-9680081306b0	2021-05-26 00:28:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:28:28.79+03	2021-05-26 00:28:28.796+03	
8449f500-8fa1-a287-3c1d-706c0bbbf601	2021-05-26 00:28:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:28:48.79+03	2021-05-26 00:28:48.797+03	
14eda55c-5416-20a7-d17e-2c3635b8df8a	2021-05-26 00:29:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:29:08.791+03	2021-05-26 00:29:08.815+03	
bee96855-db64-d662-52bb-b5db81ee9b75	2021-05-26 00:29:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:29:29.79+03	2021-05-26 00:29:29.797+03	
86976aa4-c975-82fc-3e55-e8e4e0d7a8f7	2021-05-26 00:29:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:29:49.79+03	2021-05-26 00:29:49.797+03	
62181c15-8594-37fb-fe7c-75c608674f1c	2021-05-26 00:30:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 00:30:00.79+03	2021-05-26 00:30:00.795+03	ERROR
a073727c-af54-81ed-750a-833d1051a402	2021-05-26 00:30:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:30:19.79+03	2021-05-26 00:30:19.797+03	
92755838-67e5-770a-c9ad-8a39e6f8768e	2021-05-26 00:30:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:30:40.79+03	2021-05-26 00:30:40.796+03	
e5998feb-4aa4-738a-c178-1dc81726e3b4	2021-05-26 00:31:00.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:31:00.79+03	2021-05-26 00:31:00.797+03	
b6e6f171-f953-ca2e-eabe-a43ef6a65b50	2021-05-26 00:31:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:31:20.791+03	2021-05-26 00:31:20.797+03	
3e2b0145-5d1b-036c-5f24-58ddfa899b1c	2021-05-26 00:31:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:31:41.79+03	2021-05-26 00:31:41.796+03	
6c2bf09a-fe08-4b09-144c-46b701ed6e99	2021-05-26 00:32:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:32:01.79+03	2021-05-26 00:32:01.796+03	
21568b1a-847e-1200-48b1-8241a5c92d92	2021-05-26 00:32:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:32:21.79+03	2021-05-26 00:32:21.796+03	
c8d281c1-88a9-a6be-f4cd-41b601b6cec2	2021-05-26 00:32:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:32:41.79+03	2021-05-26 00:32:41.81+03	
1a74030b-f917-5b7c-63b1-505a9628f044	2021-05-26 00:33:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:33:01.79+03	2021-05-26 00:33:01.797+03	
2e127763-908f-f3a6-e37a-c7fc4b061745	2021-05-26 00:33:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:33:21.79+03	2021-05-26 00:33:21.796+03	
fe30d90d-4737-4956-b85d-62bc24ce7521	2021-05-26 00:33:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:33:41.79+03	2021-05-26 00:33:41.796+03	
2d84d078-146f-385f-91a7-d12ffc6db86c	2021-05-26 00:34:01.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:34:01.79+03	2021-05-26 00:34:01.802+03	
a9524fc1-c011-3512-c77e-4e3a1cad69ae	2021-05-26 00:34:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:34:21.79+03	2021-05-26 00:34:21.796+03	
a8ff7564-87c1-c2dd-3ae6-ce22409f0c19	2021-05-26 00:34:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:34:41.79+03	2021-05-26 00:34:41.799+03	
a075077c-be18-6bc6-0ced-dd891b872fed	2021-05-26 00:35:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:35:01.79+03	2021-05-26 00:35:01.796+03	
15deda93-2fd7-d031-0a58-1e0080de223a	2021-05-26 00:35:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:35:21.79+03	2021-05-26 00:35:21.797+03	
9ebd09cf-98be-976b-4bfc-60886ae3aa73	2021-05-26 00:35:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:35:41.79+03	2021-05-26 00:35:41.796+03	
87be1751-f5fe-7584-9ff7-95736dae64eb	2021-05-26 00:36:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:36:01.79+03	2021-05-26 00:36:01.807+03	
2925c301-5d0b-76b2-3089-f9a2ae9a5745	2021-05-26 00:36:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:36:21.79+03	2021-05-26 00:36:21.796+03	
da448d14-12c7-76a6-c861-0fd200715e08	2021-05-26 00:36:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:36:41.79+03	2021-05-26 00:36:41.797+03	
3ee993f6-597e-687c-88cf-97559cb62386	2021-05-26 00:37:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:37:01.79+03	2021-05-26 00:37:01.804+03	
2c4ab9c8-4444-8e6d-3a14-ea0360a0bdaa	2021-05-26 00:37:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:37:21.79+03	2021-05-26 00:37:21.796+03	
1a4c41dc-d9db-8e3c-99e4-928bb5a947de	2021-05-26 00:37:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:37:41.79+03	2021-05-26 00:37:41.797+03	
4c41ef81-8ac6-39e2-78f9-48212c84c8ea	2021-05-26 00:38:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:38:01.79+03	2021-05-26 00:38:01.796+03	
454d8b7e-05f2-8dd7-4fd4-5f215261af3c	2021-05-26 00:38:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:38:21.79+03	2021-05-26 00:38:21.796+03	
3a2d9a03-e351-7d2b-5300-e0c1596fb015	2021-05-26 00:38:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:38:41.791+03	2021-05-26 00:38:41.8+03	
1f869822-4f1e-c32a-e0d9-e1b07b400f4c	2021-05-26 00:39:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:39:02.79+03	2021-05-26 00:39:02.814+03	
c81b109f-b1e8-fc48-81b5-27813e098d26	2021-05-26 00:39:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:39:22.791+03	2021-05-26 00:39:22.808+03	
da2a52f4-3e29-92c1-9c36-d3adeb7ae681	2021-05-26 00:39:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:39:43.79+03	2021-05-26 00:39:43.796+03	
a2713dba-80a8-ed05-bd1a-9921339fef64	2021-05-26 00:40:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 00:40:00.791+03	2021-05-26 00:40:00.797+03	ERROR
0777304a-9cb9-4650-56dd-5405ec491f65	2021-05-26 00:40:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:40:13.79+03	2021-05-26 00:40:13.797+03	
44633d41-3703-557a-a041-8c1460e98407	2021-05-26 00:40:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:40:33.79+03	2021-05-26 00:40:33.805+03	
a15519f8-9d4b-e320-7076-74bf9dfed4d7	2021-05-26 00:40:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:40:53.79+03	2021-05-26 00:40:53.797+03	
a0b38637-366e-cafe-65b6-9d66e86c66f0	2021-05-26 00:41:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:41:13.79+03	2021-05-26 00:41:13.813+03	
400be494-a9b0-db8f-2f46-c4c84d879180	2021-05-26 00:41:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:41:33.79+03	2021-05-26 00:41:33.796+03	
a5bad34c-c78b-ef3c-8f2d-0084980bee3f	2021-05-26 00:41:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:41:53.79+03	2021-05-26 00:41:53.8+03	
15af5b49-e576-a41d-d1ec-b9a4dace3605	2021-05-26 00:42:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:42:13.79+03	2021-05-26 00:42:13.797+03	
09883395-d1e5-674b-5093-9fa160a7360e	2021-05-26 00:42:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:42:33.79+03	2021-05-26 00:42:33.796+03	
ec13bc7e-b75b-69ac-6325-6c1d3dc77f15	2021-05-26 00:42:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:42:53.79+03	2021-05-26 00:42:53.796+03	
84fe7283-5e05-85c0-0f7f-b9d2510392b2	2021-05-26 00:43:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:43:13.79+03	2021-05-26 00:43:13.797+03	
913753a9-c62b-4c9a-d832-3dee323a1d26	2021-05-26 00:43:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:43:33.79+03	2021-05-26 00:43:33.797+03	
38903865-2584-af96-b81c-dc2a2236c510	2021-05-26 00:43:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:43:53.79+03	2021-05-26 00:43:53.798+03	
011eca49-cadd-2c28-e703-1667057637ed	2021-05-26 00:44:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:44:13.79+03	2021-05-26 00:44:13.797+03	
e759c558-80be-8c92-4389-42c5cbd90dc3	2021-05-26 00:44:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:44:33.79+03	2021-05-26 00:44:33.797+03	
73059959-35e7-c8a1-58da-3e736de40308	2021-05-26 00:44:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:44:53.79+03	2021-05-26 00:44:53.811+03	
d331fb56-5744-0ad4-7fac-faba40ccbf5e	2021-05-26 00:45:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:45:13.79+03	2021-05-26 00:45:13.796+03	
c02592f6-0d95-69bf-f8f7-91faf221f92a	2021-05-26 00:45:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:45:33.79+03	2021-05-26 00:45:33.796+03	
e0e783f3-10b8-b688-b70d-8f3a558370bd	2021-05-26 00:45:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:45:53.79+03	2021-05-26 00:45:53.796+03	
685e5983-88f9-b13a-08ff-cce064e3e521	2021-05-26 00:46:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:46:13.79+03	2021-05-26 00:46:13.796+03	
6707b7ec-ee0b-e2bd-78c8-2e004723cbaf	2021-05-26 00:46:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:46:33.79+03	2021-05-26 00:46:33.797+03	
1be26714-eff5-0d5c-6e36-fb362f1fb8a5	2021-05-26 00:46:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:46:53.79+03	2021-05-26 00:46:53.796+03	
5fef745f-bd4d-95c4-9360-d3934630aadc	2021-05-26 00:47:13.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:47:13.79+03	2021-05-26 00:47:13.798+03	
7a4af3cb-5468-3915-2d1c-9e7241a5c2be	2021-05-26 00:47:23.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:47:23.791+03	2021-05-26 00:47:23.806+03	
bb252cf8-03d0-a399-9d8a-2680380cf13e	2021-05-26 00:47:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:47:44.79+03	2021-05-26 00:47:44.796+03	
0cda3507-6fc6-e524-e5db-6ab8f7cf29d7	2021-05-26 00:48:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:48:04.79+03	2021-05-26 00:48:04.797+03	
651a6fe2-b08c-a377-628a-e5c9143a22a3	2021-05-26 00:48:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:48:24.79+03	2021-05-26 00:48:24.798+03	
29f35100-8af9-ee14-8c4e-22bc32300448	2021-05-26 00:48:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:48:44.79+03	2021-05-26 00:48:44.797+03	
94d5f9ba-9b3e-1eb1-fcc7-55587f014d08	2021-05-26 00:49:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:49:04.79+03	2021-05-26 00:49:04.797+03	
c008eaf4-424f-87d6-bf6e-2a309b1aabcb	2021-05-26 00:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:49:24.79+03	2021-05-26 00:49:24.796+03	
7e1a71b7-1b72-0bd1-3635-b8937568921c	2021-05-26 00:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:49:44.79+03	2021-05-26 00:49:44.797+03	
04657f63-69b5-716f-87e7-786d4271c154	2021-05-26 00:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 00:50:00.79+03	2021-05-26 00:50:00.794+03	ERROR
dc24d0e7-57e4-be1b-b94b-ed783e23d1a4	2021-05-26 00:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:50:14.79+03	2021-05-26 00:50:14.797+03	
3d2f1d4d-0fca-f4b3-e167-6680a32808f5	2021-05-26 00:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:50:34.79+03	2021-05-26 00:50:34.796+03	
66efc820-54a9-eca5-0903-6a2acf6b19af	2021-05-26 00:50:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:50:54.79+03	2021-05-26 00:50:54.796+03	
c4d4b37c-ea73-5edc-3793-6914b0470678	2021-05-26 00:51:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:51:14.79+03	2021-05-26 00:51:14.805+03	
19cd4d68-85e1-c349-3757-eb3c071704cd	2021-05-26 00:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:51:34.79+03	2021-05-26 00:51:34.797+03	
f41947d0-4734-9b40-76ff-d9843a584c59	2021-05-26 00:51:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:51:54.79+03	2021-05-26 00:51:54.798+03	
842e0b35-e641-0e27-3a87-1ff0928182fd	2021-05-26 00:52:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:52:14.79+03	2021-05-26 00:52:14.796+03	
f54e6172-59ef-1886-f19e-8ed04b1c3b84	2021-05-26 00:52:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:52:34.79+03	2021-05-26 00:52:34.8+03	
6219202a-e155-8c48-3ed3-b46a9dec6332	2021-05-26 00:52:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:52:54.79+03	2021-05-26 00:52:54.796+03	
051d0515-5a98-a4a8-2d95-96f4dcbcf9e3	2021-05-26 00:53:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:53:14.79+03	2021-05-26 00:53:14.816+03	
f3f47a47-69f1-846a-1dc2-7ee7f517b570	2021-05-26 00:53:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:53:34.79+03	2021-05-26 00:53:34.815+03	
0a4ba9c4-f5fe-70fe-5758-e67eb33e9003	2021-05-26 00:53:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:53:54.79+03	2021-05-26 00:53:54.796+03	
6b754807-2607-b7c5-ecf3-aaa15cd18ecb	2021-05-26 00:54:14.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:54:14.791+03	2021-05-26 00:54:14.814+03	
94a2df26-5cfa-8b57-4d93-59b72602ecd9	2021-05-26 00:54:35.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:54:35.791+03	2021-05-26 00:54:35.813+03	
75457832-bcc4-d7ac-77d8-e42c9ea07ce2	2021-05-26 00:54:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:54:56.79+03	2021-05-26 00:54:56.797+03	
6df98ff8-49b4-9821-1711-d6ec38b03114	2021-05-26 00:55:16.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:55:16.79+03	2021-05-26 00:55:16.797+03	
8276be76-f053-6d6b-24e7-5396632acfa4	2021-05-26 00:55:36.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:55:36.79+03	2021-05-26 00:55:36.796+03	
65dd24c0-ae32-2eef-d458-9a0e8fcc852f	2021-05-26 00:55:56.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:55:56.79+03	2021-05-26 00:55:56.797+03	
63597cb2-3634-e364-512f-bf4dd1e27481	2021-05-26 00:56:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:56:17.79+03	2021-05-26 00:56:17.799+03	
b292205e-5676-a192-8e57-d8579b0ce5cf	2021-05-26 00:56:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:56:37.79+03	2021-05-26 00:56:37.798+03	
7fc6edc4-f993-2a80-5810-c36338f36205	2021-05-26 00:56:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:56:57.79+03	2021-05-26 00:56:57.797+03	
e63cff31-ccc4-fe25-486d-d85ecf0ba80d	2021-05-26 00:57:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:57:17.79+03	2021-05-26 00:57:17.798+03	
688f2579-5a5e-c5b3-389a-b0f9887d1156	2021-05-26 00:57:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:57:37.79+03	2021-05-26 00:57:37.802+03	
da17c93a-07c0-c5ab-f7f4-62207b92eb0f	2021-05-26 00:57:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:57:57.79+03	2021-05-26 00:57:57.797+03	
b6192e26-845e-e081-aafb-aaab278c637c	2021-05-26 00:58:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:58:17.79+03	2021-05-26 00:58:17.796+03	
7c7f1026-8fcf-1c24-e533-319820e7d7ee	2021-05-26 00:58:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:58:47.79+03	2021-05-26 00:58:47.8+03	
afd2094f-f186-62e0-985e-f277912eb7d6	2021-05-26 00:59:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:59:07.79+03	2021-05-26 00:59:07.796+03	
a4b53ef3-56ce-520a-bb5c-06a53301d9c3	2021-05-26 00:59:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:59:27.79+03	2021-05-26 00:59:27.796+03	
4a668d45-b394-5148-f40e-7bb30d9909fb	2021-05-26 00:59:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:59:47.79+03	2021-05-26 00:59:47.802+03	
be534461-f563-d447-ceea-8ae557368319	2021-05-26 01:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 01:00:00.79+03	2021-05-26 01:00:00.795+03	ERROR
4d0068db-7024-08cc-d60c-a846fa735dc3	2021-05-26 01:00:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:00:17.79+03	2021-05-26 01:00:17.796+03	
ca27c54a-780e-08f9-05e8-4b198c863fac	2021-05-26 01:00:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:00:37.79+03	2021-05-26 01:00:37.796+03	
c342fcdf-b339-1159-19d5-31291f7744c3	2021-05-26 01:00:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:00:57.79+03	2021-05-26 01:00:57.798+03	
38bd6b3c-788a-1c31-4dc3-8b84fc2b5953	2021-05-26 01:01:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:01:17.79+03	2021-05-26 01:01:17.797+03	
d31542ed-f208-2f16-8109-5760bb811013	2021-05-26 01:01:37.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:01:37.79+03	2021-05-26 01:01:37.797+03	
6cdc573e-da63-012c-08d1-792862eeefdb	2021-05-26 01:01:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:01:57.79+03	2021-05-26 01:01:57.799+03	
d6b7336a-012e-fa74-80e8-d1be7c0c1435	2021-05-26 01:02:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:02:17.79+03	2021-05-26 01:02:17.797+03	
7c40df26-f1b5-7c37-b4fb-69ca186d6144	2021-05-26 01:02:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:02:37.79+03	2021-05-26 01:02:37.797+03	
74f17f07-b423-4c9f-b601-9cec04a5e812	2021-05-26 01:02:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:02:57.79+03	2021-05-26 01:02:57.798+03	
d20bd46f-c091-9758-0004-e61bb9ca2b7f	2021-05-26 01:03:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:03:17.79+03	2021-05-26 01:03:17.796+03	
eeb32236-345f-8cfb-1101-2f10f9ee3d7a	2021-05-26 01:03:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:03:37.79+03	2021-05-26 01:03:37.796+03	
f602bdc6-8e6c-70ec-8bf2-20fa42e140c1	2021-05-26 01:03:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:03:57.79+03	2021-05-26 01:03:58.03+03	
e8b251a9-bee4-bd1b-7114-81117f9cf29c	2021-05-26 01:04:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:04:17.79+03	2021-05-26 01:04:17.796+03	
67f14337-c4d6-3e2b-6a7b-863426dc25c1	2021-05-26 01:04:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:04:37.79+03	2021-05-26 01:04:37.796+03	
372642e5-d6d8-c86e-75fd-3c534256074d	2021-05-26 01:04:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:04:57.79+03	2021-05-26 01:04:57.802+03	
05966597-ec7a-5a95-dc1d-977353e661c8	2021-05-26 01:05:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:05:17.79+03	2021-05-26 01:05:17.799+03	
9f256841-3298-fcf0-9048-f43831bdb7d4	2021-05-26 01:05:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:05:37.79+03	2021-05-26 01:05:37.796+03	
b871fba4-5d05-dd36-2127-4d240129df3b	2021-05-26 01:05:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:05:57.79+03	2021-05-26 01:05:57.796+03	
251a8ed9-e12e-1d4c-1d13-936a00a26b5f	2021-05-26 01:06:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:06:17.79+03	2021-05-26 01:06:17.797+03	
66bf37d0-c7d5-6649-0b7b-20cdf15f0618	2021-05-26 01:06:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:06:37.79+03	2021-05-26 01:06:37.796+03	
6d6af891-793d-5d88-3b3b-164bb01fb19f	2021-05-26 01:06:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:06:57.79+03	2021-05-26 01:06:57.796+03	
60bdd596-0e34-8358-3af7-aa068a5537c8	2021-05-26 01:07:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:07:17.79+03	2021-05-26 01:07:17.796+03	
d40a4b83-5b80-a68f-0aa9-1b2396f9e839	2021-05-26 01:07:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:07:37.79+03	2021-05-26 01:07:37.796+03	
9656d774-2f79-7885-9853-e4f6f909fc85	2021-05-26 01:07:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:07:57.79+03	2021-05-26 01:07:57.798+03	
f368734b-1b21-d58f-9f5c-32f46058e3f5	2021-05-26 00:47:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:47:34.79+03	2021-05-26 00:47:34.796+03	
a1b94770-5d7c-d390-6eb2-7de39e10b201	2021-05-26 00:47:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:47:54.79+03	2021-05-26 00:47:54.796+03	
23c17270-98fc-d326-d6d6-20840ca31e9e	2021-05-26 00:48:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:48:14.79+03	2021-05-26 00:48:14.796+03	
033b438a-0339-03dc-f916-e6e467ce4884	2021-05-26 00:48:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:48:34.79+03	2021-05-26 00:48:34.8+03	
f27865b1-be1d-3b20-c766-b273ed71f81c	2021-05-26 00:48:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:48:54.79+03	2021-05-26 00:48:54.796+03	
e7f42dc8-0835-4ba5-a584-994755b267a1	2021-05-26 00:49:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:49:14.79+03	2021-05-26 00:49:14.796+03	
6dacdcf9-e320-c51f-8c6d-7c5b8862e552	2021-05-26 00:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:49:34.79+03	2021-05-26 00:49:34.797+03	
e3337d27-54ab-ea7f-5cda-95354faa7cc5	2021-05-26 00:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:49:54.79+03	2021-05-26 00:49:54.808+03	
856d3171-3bba-4e13-84dc-284ce110ad0a	2021-05-26 00:50:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:50:04.79+03	2021-05-26 00:50:04.797+03	
d1972718-7e08-f27a-f4f7-12227fcaab3a	2021-05-26 00:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:50:24.79+03	2021-05-26 00:50:24.797+03	
1e5b0b6c-adc4-b59f-8e0e-8b56ce91335f	2021-05-26 00:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:50:44.79+03	2021-05-26 00:50:44.797+03	
5c9a16e6-d9bb-52a1-c8a1-f2651fa2e22c	2021-05-26 00:51:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:51:04.79+03	2021-05-26 00:51:04.796+03	
72f2c1fc-1116-b55e-1750-9e2e4b5d5b43	2021-05-26 00:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:51:24.79+03	2021-05-26 00:51:24.796+03	
89cebb1c-89bc-08cf-978e-c84666fc0e84	2021-05-26 00:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:51:44.79+03	2021-05-26 00:51:44.799+03	
5789c93c-146f-5104-6b32-231f3066ebb2	2021-05-26 00:52:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:52:04.79+03	2021-05-26 00:52:04.806+03	
3b22155b-f335-024e-5914-f612d27c8fba	2021-05-26 00:52:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:52:24.79+03	2021-05-26 00:52:24.796+03	
e58445f8-aed7-8173-bb78-e248e3d84b28	2021-05-26 00:52:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:52:44.79+03	2021-05-26 00:52:44.796+03	
e9d15dcf-9648-3a85-d15a-49762302a132	2021-05-26 00:53:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:53:04.79+03	2021-05-26 00:53:04.81+03	
ea7b09c9-f987-763b-9693-ff24885d7b46	2021-05-26 00:53:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:53:24.79+03	2021-05-26 00:53:24.796+03	
76c0ce28-7aaa-81e7-393a-29241bfc9ac7	2021-05-26 00:53:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:53:44.79+03	2021-05-26 00:53:44.796+03	
6f10abe5-9c80-7655-d70a-14ebed619889	2021-05-26 00:54:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:54:04.79+03	2021-05-26 00:54:04.796+03	
e1755f20-6217-5fd0-17f2-6c202299315d	2021-05-26 00:54:25.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:54:25.791+03	2021-05-26 00:54:25.797+03	
02c54b00-634d-2d27-a693-75f753b4687b	2021-05-26 00:54:45.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:54:45.791+03	2021-05-26 00:54:45.797+03	
9aff44de-bdb1-5204-b45d-4f4ac72342d5	2021-05-26 00:55:06.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:55:06.79+03	2021-05-26 00:55:06.796+03	
cf6698a5-4c25-1f15-a6af-2ccdbb66571a	2021-05-26 00:55:26.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:55:26.79+03	2021-05-26 00:55:26.797+03	
2c6d7303-9283-255d-3c54-00a4ba0808d5	2021-05-26 00:55:46.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:55:46.79+03	2021-05-26 00:55:46.808+03	
679be81c-c5f2-1d99-7816-7a908a322954	2021-05-26 00:56:06.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:56:06.791+03	2021-05-26 00:56:06.801+03	
8b02248e-9ee4-1aed-afc4-a64279b036aa	2021-05-26 00:56:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:56:27.79+03	2021-05-26 00:56:27.796+03	
7429925d-e5f7-5750-5950-6f1c74e8c75d	2021-05-26 00:56:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:56:47.79+03	2021-05-26 00:56:47.796+03	
d5a70e69-165c-2b09-db56-51cf63e326a8	2021-05-26 00:57:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:57:07.79+03	2021-05-26 00:57:07.796+03	
3a70311c-6777-15d1-06ed-c34e2b2b513a	2021-05-26 00:57:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:57:27.79+03	2021-05-26 00:57:27.796+03	
a54108f1-0a8a-0ad6-bc18-32fd35cd8ad0	2021-05-26 00:57:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:57:47.79+03	2021-05-26 00:57:47.804+03	
c520641c-b59a-47c3-59ae-2e7979ad1099	2021-05-26 00:58:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:58:07.79+03	2021-05-26 00:58:07.796+03	
bf65be8f-2c88-cf82-519f-fe7d2727cfe1	2021-05-26 00:58:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:58:27.79+03	2021-05-26 00:58:27.796+03	
3c76eec3-4d6c-f391-e214-503cce90a675	2021-05-26 00:58:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:58:37.79+03	2021-05-26 00:58:37.796+03	
3d59b73a-179c-496a-3fd9-2a62223419ac	2021-05-26 00:58:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:58:57.79+03	2021-05-26 00:58:57.797+03	
5c99d7d5-b543-4e1e-54f5-701464258f3f	2021-05-26 00:59:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:59:17.79+03	2021-05-26 00:59:17.796+03	
3ab81be8-a25f-00a7-10de-bc130d13787e	2021-05-26 00:59:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:59:37.79+03	2021-05-26 00:59:37.846+03	
99d4efbe-2b9c-85a8-747e-b3f44930efcb	2021-05-26 00:59:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 00:59:57.79+03	2021-05-26 00:59:57.837+03	
412e95dd-bc72-3bc5-e22c-ee29b5dd3c3e	2021-05-26 01:00:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:00:07.79+03	2021-05-26 01:00:07.798+03	
e71fda69-2b2f-1fb2-3034-df5b8d691da1	2021-05-26 01:00:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:00:27.79+03	2021-05-26 01:00:27.798+03	
ee44a4cb-a21c-8858-ba89-c82671aca74b	2021-05-26 01:00:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:00:47.79+03	2021-05-26 01:00:47.82+03	
faebdcdb-8121-6ede-fd47-6bdd69d2a394	2021-05-26 01:01:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:01:07.79+03	2021-05-26 01:01:07.804+03	
b6e4c84b-7105-a127-a788-f6da6822326b	2021-05-26 01:01:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:01:27.79+03	2021-05-26 01:01:27.798+03	
a9646573-cedd-4b35-8ffc-da8e3dca0c9f	2021-05-26 01:01:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:01:47.79+03	2021-05-26 01:01:47.796+03	
e51bb038-c2cc-42ac-4db8-645b152c6320	2021-05-26 01:02:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:02:07.79+03	2021-05-26 01:02:07.796+03	
69b9669a-10a2-c6b1-8637-e7b5a6e17e2c	2021-05-26 01:02:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:02:27.79+03	2021-05-26 01:02:27.797+03	
fd5591bb-fe6f-7e3b-0bb3-6ba4105003ca	2021-05-26 01:02:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:02:47.79+03	2021-05-26 01:02:47.796+03	
2a912937-6b59-dfc8-0c57-fbdca0a86f83	2021-05-26 01:03:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:03:07.79+03	2021-05-26 01:03:07.807+03	
1ca86adf-7afb-a3b8-2997-39b2950f2b00	2021-05-26 01:03:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:03:27.79+03	2021-05-26 01:03:27.797+03	
c27a86f2-6330-5bc8-65b3-29b5a5020175	2021-05-26 01:03:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:03:47.79+03	2021-05-26 01:03:47.8+03	
8294e665-183a-3c05-6718-4aba5369b406	2021-05-26 01:04:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:04:07.79+03	2021-05-26 01:04:07.797+03	
0b3599ab-294f-3294-1361-4e7d2b2b7bac	2021-05-26 01:04:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:04:27.79+03	2021-05-26 01:04:27.796+03	
c1ce30a8-19c3-2a02-d85b-fda68a953876	2021-05-26 01:04:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:04:47.79+03	2021-05-26 01:04:47.796+03	
8a53511d-fe63-ef42-06d1-502030aa7370	2021-05-26 01:05:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:05:07.79+03	2021-05-26 01:05:07.8+03	
a0a3c487-c454-01a2-a2f6-e317fe08957b	2021-05-26 01:05:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:05:27.79+03	2021-05-26 01:05:27.796+03	
c13beee0-0602-4ee9-37b7-a9b56218469f	2021-05-26 01:05:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:05:47.79+03	2021-05-26 01:05:47.796+03	
5b7cfcc5-8ae4-875b-8348-d489be91a478	2021-05-26 01:06:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:06:07.79+03	2021-05-26 01:06:07.796+03	
1bee2d9b-7abd-1a40-5314-a8f25a014dab	2021-05-26 01:06:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:06:27.79+03	2021-05-26 01:06:27.797+03	
61c9789d-34d9-ca16-7270-425e6fa68019	2021-05-26 01:06:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:06:47.79+03	2021-05-26 01:06:47.8+03	
15a09e05-d912-0ee1-e87c-155ea4ab193f	2021-05-26 01:07:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:07:07.79+03	2021-05-26 01:07:07.797+03	
dd1ceaa3-2550-eda3-5739-c73e05329ffd	2021-05-26 01:07:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:07:27.79+03	2021-05-26 01:07:27.796+03	
7034a03b-d9dd-2853-ba50-1a9724f7e9d6	2021-05-26 01:07:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:07:47.79+03	2021-05-26 01:07:47.799+03	
ab37138a-910f-eb6b-1db6-90e7161ee93f	2021-05-26 01:08:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:08:07.79+03	2021-05-26 01:08:07.797+03	
7923414c-2e34-5093-5d33-20787d7c6950	2021-05-26 01:08:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:08:27.79+03	2021-05-26 01:08:27.798+03	
ae05e970-73fb-e6c1-1258-a1b7e832b1a1	2021-05-26 01:08:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:08:47.79+03	2021-05-26 01:08:47.796+03	
992c8f5b-40d2-313f-df27-709414e5901c	2021-05-26 01:09:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:09:07.79+03	2021-05-26 01:09:07.798+03	
ff60efd9-c906-5e17-4a6f-3b343056401f	2021-05-26 01:09:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:09:27.79+03	2021-05-26 01:09:27.8+03	
e13136ca-f6f7-c530-1469-0d3c578039b1	2021-05-26 01:09:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:09:47.79+03	2021-05-26 01:09:47.796+03	
c74c5a8f-6338-f879-f700-ba7215291ee5	2021-05-26 01:10:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 01:10:00.791+03	2021-05-26 01:10:00.796+03	ERROR
489b86cc-edd2-aa5e-fbe6-1c21873b9285	2021-05-26 01:10:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:10:17.79+03	2021-05-26 01:10:17.796+03	
50a8b042-1736-46ee-0c10-5122599de5dc	2021-05-26 01:10:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:10:37.79+03	2021-05-26 01:10:37.796+03	
6c5e9ffc-fc4f-356a-a316-80c95b37b290	2021-05-26 01:10:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:10:57.79+03	2021-05-26 01:10:57.796+03	
bc1de539-f8a0-aad3-bb49-b45bbd11fc1b	2021-05-26 01:11:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:11:17.79+03	2021-05-26 01:11:17.796+03	
eedaebbd-23bd-f62e-9b83-faf87e7423b5	2021-05-26 01:11:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:11:37.79+03	2021-05-26 01:11:37.796+03	
5710d238-5ee8-bbbd-9e54-c849986b9d2c	2021-05-26 01:11:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:11:57.79+03	2021-05-26 01:11:57.8+03	
9365a366-e7e7-ffd9-5c4b-1062640e9c37	2021-05-26 01:12:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:12:17.79+03	2021-05-26 01:12:17.796+03	
bd2808d1-90f8-8cd7-b8f0-00144e7b6da8	2021-05-26 01:12:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:12:37.79+03	2021-05-26 01:12:37.797+03	
9644b3c4-360f-8d36-5261-6703380bca69	2021-05-26 01:12:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:12:57.79+03	2021-05-26 01:12:57.798+03	
dd4c55ed-c4ac-ef1f-3952-4fac7bfdd6a4	2021-05-26 01:13:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:13:17.79+03	2021-05-26 01:13:17.796+03	
5332b0d5-9b1c-49e2-032e-4f9d4889bba8	2021-05-26 01:13:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:13:37.79+03	2021-05-26 01:13:37.796+03	
b7204ebe-509d-f564-c237-3d2bda7f4836	2021-05-26 01:13:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:13:57.79+03	2021-05-26 01:13:57.796+03	
d7f4789d-73be-321d-255c-9102d093d34d	2021-05-26 01:14:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:14:17.79+03	2021-05-26 01:14:17.796+03	
6c3e5422-ab16-63e7-8e0c-e02e5f5490cd	2021-05-26 01:14:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:14:37.79+03	2021-05-26 01:14:37.796+03	
085e809f-6676-6b03-206f-924327bc40de	2021-05-26 01:14:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:14:57.79+03	2021-05-26 01:14:57.796+03	
7b2d753f-5bfb-b4c6-a5e7-79837d321245	2021-05-26 01:15:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:15:17.79+03	2021-05-26 01:15:17.797+03	
b4c6a255-80c3-f1d3-ba09-7500e6f6a520	2021-05-26 01:15:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:15:37.79+03	2021-05-26 01:15:37.796+03	
a7db50ad-952b-c198-43ba-6a7024473d6c	2021-05-26 01:15:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:15:57.79+03	2021-05-26 01:15:57.797+03	
3125aaf5-4574-318e-1066-86e7134ffd1a	2021-05-26 01:16:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:16:17.79+03	2021-05-26 01:16:17.797+03	
fa9941ab-55bf-db95-4a34-c71f4fb7c982	2021-05-26 01:16:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:16:37.79+03	2021-05-26 01:16:37.796+03	
321be571-5d8b-51bc-43b7-cd88bdee30a9	2021-05-26 01:16:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:16:57.79+03	2021-05-26 01:16:57.797+03	
a27c0277-7d41-2615-42fd-f5baf6bf28f7	2021-05-26 01:17:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:17:17.79+03	2021-05-26 01:17:17.796+03	
2f7902be-686e-4eda-e784-2bf045f74aa6	2021-05-26 01:17:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:17:37.79+03	2021-05-26 01:17:37.796+03	
b26aaed3-175f-3a3b-d40f-8c1028e0d51e	2021-05-26 01:17:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:17:57.79+03	2021-05-26 01:17:57.797+03	
9be35ec9-2730-2ce2-8832-3f1247fa5529	2021-05-26 01:18:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:18:17.79+03	2021-05-26 01:18:17.797+03	
c5f27f85-dac6-692d-3729-8507615be0d3	2021-05-26 01:18:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:18:37.79+03	2021-05-26 01:18:37.796+03	
d2d081e6-1422-524c-8d0b-4fccac574db3	2021-05-26 01:18:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:18:57.79+03	2021-05-26 01:18:57.795+03	
fcb91aeb-1359-3f8b-d13d-446be4d2d8da	2021-05-26 01:19:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:19:17.79+03	2021-05-26 01:19:17.797+03	
298e65ca-f01f-63ba-e3df-4c01deda83a5	2021-05-26 01:19:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:19:37.79+03	2021-05-26 01:19:37.797+03	
ba29508d-6b65-49ba-d98e-37f345a2c74a	2021-05-26 01:19:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:19:57.79+03	2021-05-26 01:19:57.796+03	
5911d901-5d84-b2f4-9cef-b3e8de560096	2021-05-26 01:20:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:20:07.79+03	2021-05-26 01:20:07.796+03	
5cb0a77f-6958-029f-444c-ca57b51fc09b	2021-05-26 01:20:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:20:27.79+03	2021-05-26 01:20:27.796+03	
ac3cdb12-e093-5746-4cd5-6911d8eab08e	2021-05-26 01:20:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:20:47.79+03	2021-05-26 01:20:47.796+03	
b1494d6f-d9db-284b-1bda-e5fe1e100f86	2021-05-26 01:21:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:21:07.79+03	2021-05-26 01:21:07.796+03	
61fe2a9f-7e67-bfe3-f47f-f1447f0511c1	2021-05-26 01:21:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:21:27.79+03	2021-05-26 01:21:27.796+03	
8c0bc78e-aa49-b166-646e-687d270ef8b3	2021-05-26 01:21:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:21:47.79+03	2021-05-26 01:21:47.796+03	
0a3e11b8-a524-5a34-21d0-d4d720014df5	2021-05-26 01:22:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:22:07.79+03	2021-05-26 01:22:07.8+03	
a7b54ba9-3233-d939-7f9e-35710478e9b2	2021-05-26 01:22:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:22:27.79+03	2021-05-26 01:22:27.809+03	
53751dc7-4533-de89-b969-10cc18206658	2021-05-26 01:22:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:22:47.79+03	2021-05-26 01:22:47.796+03	
d1e315d9-39d9-8dbc-34c8-e546f83aee6c	2021-05-26 01:23:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:23:07.79+03	2021-05-26 01:23:07.796+03	
1c2a16e3-7db4-837f-4411-c302506898ab	2021-05-26 01:23:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:23:27.79+03	2021-05-26 01:23:27.796+03	
e05265f0-c25a-6ad4-e652-c8c0b181a59c	2021-05-26 01:23:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:23:47.79+03	2021-05-26 01:23:47.807+03	
e31da9fb-dff4-5425-4c75-dd4d6db8d6ae	2021-05-26 01:24:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:24:07.79+03	2021-05-26 01:24:07.809+03	
aeb81f41-879a-0986-17ea-bdfe50d1457e	2021-05-26 01:24:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:24:27.79+03	2021-05-26 01:24:27.796+03	
14797696-9634-f179-8003-7ceed8057652	2021-05-26 01:24:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:24:47.79+03	2021-05-26 01:24:47.797+03	
59d95376-fe8a-fb0b-3a51-ca50b299e77e	2021-05-26 01:25:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:25:07.79+03	2021-05-26 01:25:07.796+03	
e30514b9-d4f4-1b39-86af-6b922634dfbe	2021-05-26 01:25:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:25:27.79+03	2021-05-26 01:25:27.796+03	
ef3256e4-845b-4ec8-d971-fa5c775eb3c0	2021-05-26 01:25:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:25:47.79+03	2021-05-26 01:25:47.797+03	
3469d93a-22b1-57cf-d1f4-26c326a5699c	2021-05-26 01:26:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:26:07.79+03	2021-05-26 01:26:07.796+03	
c6460e1a-6bb8-e17f-38ae-fa65e3d18f06	2021-05-26 01:26:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:26:27.79+03	2021-05-26 01:26:27.796+03	
a88b625f-de2d-aa44-71f0-fd6c5f4b65f5	2021-05-26 01:26:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:26:47.79+03	2021-05-26 01:26:47.796+03	
8a2068af-4233-769d-ead7-f736c9fb8c9b	2021-05-26 01:27:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:27:07.79+03	2021-05-26 01:27:07.796+03	
5cbf8d5a-7f0d-5ac9-eb81-dc890b586cf0	2021-05-26 01:27:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:27:27.79+03	2021-05-26 01:27:27.796+03	
03d2494c-883c-cd5e-ab42-c97a64f7cf50	2021-05-26 01:27:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:27:47.79+03	2021-05-26 01:27:47.796+03	
5890cea1-0f39-94b6-06e5-a1c732890545	2021-05-26 01:28:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:28:07.79+03	2021-05-26 01:28:07.797+03	
fc405bfb-1522-43ad-6f97-2e31f4fe0443	2021-05-26 01:28:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:28:27.79+03	2021-05-26 01:28:27.796+03	
b9d99330-4080-28aa-5bd5-6bac14eef594	2021-05-26 01:08:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:08:17.79+03	2021-05-26 01:08:17.797+03	
b02688c8-dfa9-ad53-7951-8dcd93683d86	2021-05-26 01:08:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:08:37.79+03	2021-05-26 01:08:37.796+03	
a5e9b79e-89c4-6166-7555-75384e53afa0	2021-05-26 01:08:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:08:57.79+03	2021-05-26 01:08:57.796+03	
3af5d7ff-9c16-6191-92ae-a513cae156a8	2021-05-26 01:09:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:09:17.79+03	2021-05-26 01:09:17.796+03	
9624f65b-3885-43f6-6425-2c681ea981cd	2021-05-26 01:09:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:09:37.79+03	2021-05-26 01:09:37.797+03	
22014ce1-ecd8-efd0-ffad-4d12bd05ae8d	2021-05-26 01:09:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:09:57.79+03	2021-05-26 01:09:57.796+03	
8f2a957c-da6c-a24f-10f9-6c17603f8b37	2021-05-26 01:10:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:10:07.79+03	2021-05-26 01:10:07.807+03	
2451aa59-3b08-abb0-3c2d-8a895a9dcf1c	2021-05-26 01:10:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:10:27.79+03	2021-05-26 01:10:27.8+03	
0bda6067-80de-666f-f113-bf16edeb281b	2021-05-26 01:10:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:10:47.79+03	2021-05-26 01:10:47.796+03	
841703bf-2f1d-0746-f50f-af33d9b71954	2021-05-26 01:11:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:11:07.79+03	2021-05-26 01:11:07.796+03	
21c1aedc-5dd5-96ae-cdbb-dbf354ac61f7	2021-05-26 01:11:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:11:27.79+03	2021-05-26 01:11:27.796+03	
ebd06fa2-f59c-688b-f31e-454ab6f12ebb	2021-05-26 01:11:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:11:47.79+03	2021-05-26 01:11:47.796+03	
dfda6c20-7069-9f7f-2d1f-c8f7f69d73e4	2021-05-26 01:12:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:12:07.79+03	2021-05-26 01:12:07.796+03	
443f4719-64e5-7f83-45bd-b11a7d2b9834	2021-05-26 01:12:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:12:27.79+03	2021-05-26 01:12:27.796+03	
ab26bd0c-83eb-d5b1-0ab7-197b28971e3b	2021-05-26 01:12:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:12:47.79+03	2021-05-26 01:12:47.796+03	
60fc3f72-750e-5238-bf62-61c3ac15a53a	2021-05-26 01:13:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:13:07.79+03	2021-05-26 01:13:07.795+03	
04717f50-ea5f-b74b-66b2-a9b1aec0fb8a	2021-05-26 01:13:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:13:27.79+03	2021-05-26 01:13:27.797+03	
245b480d-c341-4b3f-cf07-b0c2b2c52de2	2021-05-26 01:13:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:13:47.79+03	2021-05-26 01:13:47.796+03	
62fcf18e-b5d1-f9a7-d05b-e7d768e34e4c	2021-05-26 01:14:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:14:07.79+03	2021-05-26 01:14:07.796+03	
d8f9d75f-cc61-7e00-ef7c-f93c7d541a54	2021-05-26 01:14:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:14:27.79+03	2021-05-26 01:14:27.797+03	
3dba1595-0db3-2cae-2ac1-f42e54ed95cb	2021-05-26 01:14:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:14:47.79+03	2021-05-26 01:14:47.799+03	
6aa6c5fc-1764-11a3-7316-4fb9eb8f7960	2021-05-26 01:15:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:15:07.79+03	2021-05-26 01:15:07.797+03	
2a0d0efb-94b0-818e-0201-3bf9e669cb89	2021-05-26 01:15:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:15:27.79+03	2021-05-26 01:15:27.798+03	
9a3bed9b-3911-492a-ab8a-f06ff2a82399	2021-05-26 01:15:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:15:47.79+03	2021-05-26 01:15:47.796+03	
1b266d40-dd4d-98e8-59bb-aad015930afc	2021-05-26 01:16:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:16:07.79+03	2021-05-26 01:16:07.796+03	
57b5d2d1-6e10-9038-526b-b4de829dec03	2021-05-26 01:16:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:16:27.79+03	2021-05-26 01:16:27.796+03	
32c4cdf0-a20e-49fd-5d45-7d119232fcde	2021-05-26 01:16:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:16:47.79+03	2021-05-26 01:16:47.797+03	
d71ca62e-ec86-fd62-3a95-187affbe0115	2021-05-26 01:17:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:17:07.79+03	2021-05-26 01:17:07.796+03	
fa367723-a858-a81d-03f1-607ffcb0a198	2021-05-26 01:17:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:17:27.79+03	2021-05-26 01:17:27.797+03	
b4d3cdae-c721-2a9a-8407-fc74fe053439	2021-05-26 01:17:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:17:47.79+03	2021-05-26 01:17:47.796+03	
6a859afe-efb2-891b-78a8-1ec3941b9f9b	2021-05-26 01:18:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:18:07.79+03	2021-05-26 01:18:07.796+03	
743fe8c2-078f-b4c0-93fe-501af14eab79	2021-05-26 01:18:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:18:27.79+03	2021-05-26 01:18:27.797+03	
086304c4-c2ef-eb41-2c6d-2249bc9ad175	2021-05-26 01:18:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:18:47.79+03	2021-05-26 01:18:47.796+03	
e3eef653-5df6-91f3-f77b-75145ae181b3	2021-05-26 01:19:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:19:07.79+03	2021-05-26 01:19:07.797+03	
b63fd77d-7013-ac80-d8f0-b300614b6b90	2021-05-26 01:19:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:19:27.79+03	2021-05-26 01:19:27.796+03	
7336f9c9-428f-968e-b656-830c2e9fc864	2021-05-26 01:19:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:19:47.79+03	2021-05-26 01:19:47.797+03	
15dc4016-702d-8111-dc3a-7e6914b24262	2021-05-26 01:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 01:20:00.79+03	2021-05-26 01:20:00.8+03	ERROR
b40a9611-ede2-6c64-73e1-c2228c1f2c4f	2021-05-26 01:20:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:20:17.79+03	2021-05-26 01:20:17.8+03	
1730f938-bf36-fa2f-0f83-72ca5e702cd9	2021-05-26 01:20:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:20:37.79+03	2021-05-26 01:20:37.796+03	
6a993ebc-32bc-4327-225a-b7ff74d22532	2021-05-26 01:20:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:20:57.79+03	2021-05-26 01:20:57.796+03	
ea87632f-4562-9069-95c3-d5082011c19e	2021-05-26 01:21:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:21:17.79+03	2021-05-26 01:21:17.797+03	
d560d7f5-ce62-e740-3c7d-ca42eb866c55	2021-05-26 01:21:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:21:37.79+03	2021-05-26 01:21:37.81+03	
db28e289-6d5f-b76d-f58b-1515d2a3f0e1	2021-05-26 01:21:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:21:57.79+03	2021-05-26 01:21:57.795+03	
dfb24ddb-652d-1916-7507-cd98fe577943	2021-05-26 01:22:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:22:17.79+03	2021-05-26 01:22:17.809+03	
31107e22-a166-259b-8bc9-0c2e3afecf63	2021-05-26 01:22:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:22:37.79+03	2021-05-26 01:22:37.796+03	
96fe992e-b1f5-9274-1d71-ec7ddaea7c2a	2021-05-26 01:22:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:22:57.79+03	2021-05-26 01:22:57.796+03	
cedb4036-fd33-a720-f3ee-0ec6eeab1c8d	2021-05-26 01:23:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:23:17.79+03	2021-05-26 01:23:17.797+03	
c8d92633-16ff-2f0f-2946-5c446f43e80c	2021-05-26 01:23:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:23:37.79+03	2021-05-26 01:23:37.807+03	
e1da8309-0705-6b5f-0342-b47f77c2ff4d	2021-05-26 01:23:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:23:57.79+03	2021-05-26 01:23:57.796+03	
d468a5c5-77ec-7ce7-f091-e29dd166efcd	2021-05-26 01:24:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:24:17.79+03	2021-05-26 01:24:17.796+03	
3ab6c8a0-3810-dc74-5b6b-d6ee72a50ecf	2021-05-26 01:24:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:24:37.79+03	2021-05-26 01:24:37.797+03	
21a350bf-7b09-5d6b-ea8e-57100f1a8174	2021-05-26 01:24:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:24:57.79+03	2021-05-26 01:24:57.796+03	
d6914b11-41cf-81ab-ccd9-29b3334c84fe	2021-05-26 01:25:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:25:17.79+03	2021-05-26 01:25:17.796+03	
ac53c9c1-2a60-df79-d72b-d02d73310183	2021-05-26 01:25:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:25:37.79+03	2021-05-26 01:25:37.796+03	
b0fc1db8-eeae-1c19-5950-13d0da81dfb2	2021-05-26 01:25:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:25:57.79+03	2021-05-26 01:25:57.797+03	
7bbca2dc-42cc-6bcf-0646-419af3da58ea	2021-05-26 01:26:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:26:17.79+03	2021-05-26 01:26:17.805+03	
1e2a1e45-27fe-1bfc-3bd0-fab4aebcd3ab	2021-05-26 01:26:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:26:37.79+03	2021-05-26 01:26:37.796+03	
f458face-dae9-a195-8d82-5b76d7fec0bb	2021-05-26 01:26:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:26:57.79+03	2021-05-26 01:26:57.796+03	
cce69e89-cbfc-3fb2-e97c-9be1f0e3a8fa	2021-05-26 01:27:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:27:17.79+03	2021-05-26 01:27:17.796+03	
9ece9541-bd03-16c0-185a-2b33410e6351	2021-05-26 01:27:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:27:37.79+03	2021-05-26 01:27:37.8+03	
3ec25744-ac0b-c227-3dde-56ee7b9a959c	2021-05-26 01:27:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:27:57.79+03	2021-05-26 01:27:57.812+03	
4a2c581a-e51e-7c1e-04ce-d10f0f7461bd	2021-05-26 01:28:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:28:17.79+03	2021-05-26 01:28:17.796+03	
6cf02ac0-a9ff-d921-0682-43f4c1d63850	2021-05-26 01:28:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:28:37.79+03	2021-05-26 01:28:37.796+03	
30d5f5c8-0e92-ca0c-817d-0cbca5040e98	2021-05-26 01:28:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:28:47.79+03	2021-05-26 01:28:47.802+03	
1c5066f2-137f-4707-8beb-2f90692f07fa	2021-05-26 01:29:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:29:07.79+03	2021-05-26 01:29:07.796+03	
03a20a69-b3b3-2dc5-8811-e63794636da1	2021-05-26 01:29:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:29:27.79+03	2021-05-26 01:29:27.796+03	
3266cdf7-7326-c710-ee33-f450ead4910a	2021-05-26 01:29:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:29:47.79+03	2021-05-26 01:29:47.797+03	
a7c38291-26d2-ece7-2e76-fb7211e2df3f	2021-05-26 01:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 01:30:00.79+03	2021-05-26 01:30:00.795+03	ERROR
885d488b-dbd4-6696-6583-79349da137ba	2021-05-26 01:30:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:30:17.79+03	2021-05-26 01:30:17.796+03	
a22b6fec-bd54-603c-03fb-0e8d8127c5b3	2021-05-26 01:30:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:30:37.79+03	2021-05-26 01:30:37.796+03	
9a408cda-d5b8-e1ba-fdb1-7f3b3a88c511	2021-05-26 01:30:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:30:57.79+03	2021-05-26 01:30:57.796+03	
7a920b9e-d922-c3a7-7714-c6c183dff792	2021-05-26 01:31:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:31:17.79+03	2021-05-26 01:31:17.796+03	
9b820d32-60cd-8579-b4d8-b395b8feb877	2021-05-26 01:31:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:31:37.79+03	2021-05-26 01:31:37.795+03	
7d830ebf-94c2-6b85-7c47-d5bcd0c6cb2e	2021-05-26 01:31:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:31:57.79+03	2021-05-26 01:31:57.795+03	
3d205dba-3fac-9795-2275-bf67212f135e	2021-05-26 01:32:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:32:17.79+03	2021-05-26 01:32:17.8+03	
41a97c73-be74-36cb-5e68-2d728d22e52e	2021-05-26 01:32:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:32:37.79+03	2021-05-26 01:32:37.805+03	
b5d52898-4aea-5068-1dbf-1b51821bfee7	2021-05-26 01:32:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:32:57.79+03	2021-05-26 01:32:57.796+03	
2b60f76d-3ecd-f34e-e6dc-6ead9d2f8fa9	2021-05-26 01:33:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:33:17.79+03	2021-05-26 01:33:17.796+03	
bda2b6e6-9321-7149-c668-a38271a40fc1	2021-05-26 01:33:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:33:37.79+03	2021-05-26 01:33:37.796+03	
9fac3a8e-341b-8191-3da0-ab01d5e35dfd	2021-05-26 01:33:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:33:57.79+03	2021-05-26 01:33:57.796+03	
3c17e7bc-c57b-aba9-2627-684dd323bd78	2021-05-26 01:34:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:34:17.79+03	2021-05-26 01:34:17.796+03	
76300107-4f1a-7b3f-2f01-2e6b2a2fc10a	2021-05-26 01:34:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:34:37.79+03	2021-05-26 01:34:37.796+03	
d9e35f82-d60a-2fad-d1f1-7681c1f9acad	2021-05-26 01:34:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:34:57.79+03	2021-05-26 01:34:57.796+03	
9f261d5a-a553-d4af-f2d5-c00d98f8328c	2021-05-26 01:35:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:35:17.79+03	2021-05-26 01:35:17.799+03	
db429de0-b815-1789-4a46-dd69bf3ad427	2021-05-26 01:35:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:35:37.79+03	2021-05-26 01:35:37.796+03	
d1e9f11d-7252-4ab6-e7c4-acd45ecb5978	2021-05-26 01:35:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:35:57.79+03	2021-05-26 01:35:57.797+03	
64dc1357-7925-237f-1a58-b25e0a3fdc00	2021-05-26 01:36:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:36:17.79+03	2021-05-26 01:36:17.8+03	
9637f45f-fc7d-3ba9-e871-ccbac5e8f115	2021-05-26 01:36:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:36:37.79+03	2021-05-26 01:36:37.796+03	
d473773f-f836-72b2-fc33-06d83d280e02	2021-05-26 01:36:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:36:57.79+03	2021-05-26 01:36:57.796+03	
cadd32c1-6f0c-495f-a77f-a126c1a08ab9	2021-05-26 01:37:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:37:17.79+03	2021-05-26 01:37:17.796+03	
d9c9ff92-0a3a-5daa-80a9-cfdba2fdd247	2021-05-26 01:37:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:37:37.79+03	2021-05-26 01:37:37.796+03	
ec96d880-ce6f-0fa3-5fd9-ded259285e83	2021-05-26 01:37:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:37:57.79+03	2021-05-26 01:37:57.796+03	
96284d86-e0cb-78ee-79af-cbc1734c180c	2021-05-26 01:38:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:38:17.79+03	2021-05-26 01:38:17.796+03	
e245f38f-8759-f08d-fb58-d5502bf44115	2021-05-26 01:38:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:38:37.79+03	2021-05-26 01:38:37.796+03	
9d788681-2ab8-c9a3-b841-6a8c6255dd5d	2021-05-26 01:38:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:38:57.79+03	2021-05-26 01:38:57.943+03	
8d4669f2-6c9e-2834-9fa4-ac406771eae9	2021-05-26 01:39:17.792	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:39:17.791+03	2021-05-26 01:39:17.813+03	
8fece2cd-fa87-20d2-fb7d-bf40447507c2	2021-05-26 01:39:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:39:38.79+03	2021-05-26 01:39:38.809+03	
e43c8324-c61e-65d0-e3ad-46e3b1bbbc4b	2021-05-26 01:39:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:39:58.79+03	2021-05-26 01:39:58.797+03	
5ec2b4da-7df6-580b-21fa-f9dd5190d52d	2021-05-26 01:40:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:40:08.79+03	2021-05-26 01:40:08.796+03	
e13d1e85-0c4a-f345-e734-a43457eed84a	2021-05-26 01:40:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:40:28.79+03	2021-05-26 01:40:28.796+03	
c8cc8c7f-e89b-1264-39c6-7b4cd8cb9de5	2021-05-26 01:40:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:40:48.79+03	2021-05-26 01:40:48.796+03	
4bf42ed7-24ef-18c8-73d1-f5424aeab269	2021-05-26 01:41:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:41:08.79+03	2021-05-26 01:41:08.796+03	
174190f7-28b7-1986-6997-421a9188e6e7	2021-05-26 01:41:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:41:28.79+03	2021-05-26 01:41:28.797+03	
9adb9618-419d-7b8d-4535-c0535311bfc8	2021-05-26 01:41:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:41:48.79+03	2021-05-26 01:41:48.795+03	
f5bcc84c-52e6-d918-61fd-b21330673603	2021-05-26 01:42:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:42:08.79+03	2021-05-26 01:42:08.797+03	
d03f2e25-3533-a646-e889-e2959e1d230c	2021-05-26 01:42:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:42:28.79+03	2021-05-26 01:42:28.796+03	
b191ddbf-c303-c614-ebba-68eb45222503	2021-05-26 01:42:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:42:48.79+03	2021-05-26 01:42:48.796+03	
6873969b-7d96-f7cd-d825-8370af2ba5b7	2021-05-26 01:43:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:43:08.79+03	2021-05-26 01:43:08.796+03	
244dc2f6-a1b0-a9ed-5a7d-dca3646fd98f	2021-05-26 01:43:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:43:28.79+03	2021-05-26 01:43:28.796+03	
6a67353e-627b-cdd5-686e-f706690f98be	2021-05-26 01:43:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:43:48.79+03	2021-05-26 01:43:48.796+03	
153017b4-ea63-edf5-f4f5-d261d82d3d16	2021-05-26 01:44:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:44:08.79+03	2021-05-26 01:44:08.796+03	
5089b530-dc78-458d-61bb-5d547cfbdeae	2021-05-26 01:44:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:44:28.79+03	2021-05-26 01:44:28.796+03	
4f7dc0a0-9c02-f2de-6a27-a72fc7cd4138	2021-05-26 01:44:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:44:48.79+03	2021-05-26 01:44:48.796+03	
e11747e2-28be-c3c0-e3cd-d772c75e9145	2021-05-26 01:45:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:45:08.79+03	2021-05-26 01:45:08.796+03	
30c39f6c-3d06-18f5-28d1-2f4ab78bf636	2021-05-26 01:45:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:45:28.79+03	2021-05-26 01:45:28.796+03	
7bcdccde-797e-2583-d9ba-c23b33485826	2021-05-26 01:45:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:45:48.79+03	2021-05-26 01:45:48.797+03	
fd705396-870b-99e2-eb04-c0d032e02d26	2021-05-26 01:46:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:46:08.79+03	2021-05-26 01:46:08.798+03	
6690a271-af7e-7d50-feb7-185dcacb4443	2021-05-26 01:46:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:46:28.79+03	2021-05-26 01:46:28.798+03	
230b8969-5327-af6b-bb14-bfc72728aa12	2021-05-26 01:46:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:46:48.79+03	2021-05-26 01:46:48.796+03	
3ee155f6-9d07-eab3-ed08-d9107e6d41c2	2021-05-26 01:47:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:47:08.79+03	2021-05-26 01:47:08.796+03	
3774e49f-2f53-cfb6-e6f4-3d7717af79f1	2021-05-26 01:47:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:47:28.79+03	2021-05-26 01:47:28.796+03	
667ddf73-248b-6130-3885-6a9a42d19249	2021-05-26 01:47:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:47:48.79+03	2021-05-26 01:47:48.797+03	
d23393c9-7f91-2f42-b2f3-8d5092421a3a	2021-05-26 01:48:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:48:08.79+03	2021-05-26 01:48:08.796+03	
663903bf-3603-28bb-0963-5e408dfa2028	2021-05-26 01:48:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:48:28.79+03	2021-05-26 01:48:28.812+03	
d2c01a39-435e-fb25-89a7-5e71ca69138b	2021-05-26 01:48:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:48:48.79+03	2021-05-26 01:48:48.796+03	
e5126a73-1807-7763-c63a-f70f5e4f203b	2021-05-26 01:49:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:49:08.79+03	2021-05-26 01:49:08.797+03	
b1645fab-ce57-f5b8-52c0-27e2f47aedb6	2021-05-26 01:28:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:28:57.79+03	2021-05-26 01:28:57.797+03	
296b29ff-e43c-dc52-37b7-7eae0d80fdf0	2021-05-26 01:29:17.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:29:17.79+03	2021-05-26 01:29:17.797+03	
809fc763-ec01-5503-013c-b77b60290097	2021-05-26 01:29:37.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:29:37.79+03	2021-05-26 01:29:37.798+03	
35e91cab-c2e3-08c8-e172-383053c35ff3	2021-05-26 01:29:57.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:29:57.79+03	2021-05-26 01:29:57.797+03	
b9d4ac67-a7c0-5b9c-f1bc-8de265d5a567	2021-05-26 01:30:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:30:07.79+03	2021-05-26 01:30:07.804+03	
60673a3b-b039-66f1-e54e-11c35670c484	2021-05-26 01:30:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:30:27.79+03	2021-05-26 01:30:27.796+03	
1b760408-ff47-6a09-0661-553adb2fff08	2021-05-26 01:30:47.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:30:47.79+03	2021-05-26 01:30:47.798+03	
127e9de8-ac8b-7be4-2efb-70ec7dedaf2d	2021-05-26 01:31:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:31:07.79+03	2021-05-26 01:31:07.802+03	
6ce99319-9d01-cee1-6524-5e8eb4c2b384	2021-05-26 01:31:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:31:27.79+03	2021-05-26 01:31:27.796+03	
1ea9b4cf-6a9f-2270-888d-1cb6d570f81a	2021-05-26 01:31:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:31:47.79+03	2021-05-26 01:31:47.796+03	
98f184e9-4001-d0fb-3fac-37e2a746dc56	2021-05-26 01:32:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:32:07.79+03	2021-05-26 01:32:07.796+03	
4e7d1338-6e3f-4dd3-2cd6-3f785da09ccd	2021-05-26 01:32:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:32:27.79+03	2021-05-26 01:32:27.796+03	
3bb4e35d-c90d-0b46-4f71-a00ce87698c3	2021-05-26 01:32:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:32:47.79+03	2021-05-26 01:32:47.796+03	
5416b5c0-346b-f167-e47e-433a7c43917d	2021-05-26 01:33:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:33:07.79+03	2021-05-26 01:33:07.796+03	
0287e8e3-0ec3-4ed4-bf7d-dd4e1b7299b8	2021-05-26 01:33:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:33:27.79+03	2021-05-26 01:33:27.796+03	
924f2d37-f366-600e-3fa4-c107065f530d	2021-05-26 01:33:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:33:47.79+03	2021-05-26 01:33:47.796+03	
b64c1eb5-067e-f0d3-9d1c-69db5a03fd31	2021-05-26 01:34:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:34:07.79+03	2021-05-26 01:34:07.796+03	
f25850a3-1852-3695-bcaf-b10a4c97b5df	2021-05-26 01:34:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:34:27.79+03	2021-05-26 01:34:27.796+03	
1e1e47a8-a05b-f0d0-feec-c136a22f5b22	2021-05-26 01:34:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:34:47.79+03	2021-05-26 01:34:47.796+03	
80c60646-b396-1c55-9821-1a3422c17c9e	2021-05-26 01:35:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:35:07.79+03	2021-05-26 01:35:07.796+03	
3083fb7f-c1ca-a60c-de78-c680120238d8	2021-05-26 01:35:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:35:27.79+03	2021-05-26 01:35:27.796+03	
66d041f0-4195-e2a7-7077-85de35069e44	2021-05-26 01:35:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:35:47.79+03	2021-05-26 01:35:47.801+03	
e652fadf-dd6c-892e-7aa2-feb7e4de2676	2021-05-26 01:36:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:36:07.79+03	2021-05-26 01:36:07.796+03	
a9b353d3-7b63-fbae-b053-18c7adb3ff4c	2021-05-26 01:36:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:36:27.79+03	2021-05-26 01:36:27.796+03	
8e8b71e0-fc55-110a-a2e4-94a748040bb9	2021-05-26 01:36:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:36:47.79+03	2021-05-26 01:36:47.796+03	
1e4e1dca-4de9-b2dd-40f8-3f5b59ea2b23	2021-05-26 01:37:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:37:07.79+03	2021-05-26 01:37:07.796+03	
738a6c59-01fb-2ace-8237-0dce236441d8	2021-05-26 01:37:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:37:27.79+03	2021-05-26 01:37:27.796+03	
dcac112c-a264-45be-f693-e70d3a0b4107	2021-05-26 01:37:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:37:47.79+03	2021-05-26 01:37:47.796+03	
1a0ff8ad-8b0c-fe7a-dfff-e386d8cee3ea	2021-05-26 01:38:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:38:07.79+03	2021-05-26 01:38:07.809+03	
dd56a1e8-6986-7e34-d129-5fa612b06776	2021-05-26 01:38:27.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:38:27.79+03	2021-05-26 01:38:27.796+03	
fdc59795-7e76-cb48-e1a6-a7c94ef81f00	2021-05-26 01:38:47.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:38:47.79+03	2021-05-26 01:38:47.799+03	
45219495-5a0e-1209-6c5b-c5d979ecab80	2021-05-26 01:39:07.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:39:07.79+03	2021-05-26 01:39:07.802+03	
7a3f7675-50de-3300-d48c-4047a4cd5cc3	2021-05-26 01:39:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:39:28.79+03	2021-05-26 01:39:28.797+03	
b875de3d-d25c-a5ad-7514-ccb8a3a71bcf	2021-05-26 01:39:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:39:48.79+03	2021-05-26 01:39:48.796+03	
9666d990-0ea4-60c2-1955-77eafb68e869	2021-05-26 01:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 01:40:00.79+03	2021-05-26 01:40:00.795+03	ERROR
b8c708c8-8ebf-e9f6-c8b1-5ec10e8bacd7	2021-05-26 01:40:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:40:18.79+03	2021-05-26 01:40:18.796+03	
2ab6941d-d491-178d-b564-51de254da1a6	2021-05-26 01:40:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:40:38.79+03	2021-05-26 01:40:38.796+03	
e5ca3808-4e80-114d-dcad-fe97b9d1d7e2	2021-05-26 01:40:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:40:58.79+03	2021-05-26 01:40:58.796+03	
5e1edd8d-576f-c1cc-dcc3-a54e87057cd5	2021-05-26 01:41:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:41:18.79+03	2021-05-26 01:41:18.797+03	
cd2b6f66-1d7c-5cae-4d9a-dd10aba1c7f2	2021-05-26 01:41:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:41:38.79+03	2021-05-26 01:41:38.796+03	
f81f3af5-9e91-6e03-1e58-3bb6e2b0b402	2021-05-26 01:41:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:41:58.79+03	2021-05-26 01:41:58.797+03	
2fc97f60-827e-a000-26f9-2d03f3032e2f	2021-05-26 01:42:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:42:18.79+03	2021-05-26 01:42:18.797+03	
876cd27e-f4ff-8ee1-6825-dca5d7da6a01	2021-05-26 01:42:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:42:38.79+03	2021-05-26 01:42:38.796+03	
7af6e75c-4cd0-4821-0047-df1846e6cc57	2021-05-26 01:42:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:42:58.79+03	2021-05-26 01:42:58.797+03	
56a9fb79-b2bc-de6a-132d-f5d993058be2	2021-05-26 01:43:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:43:18.79+03	2021-05-26 01:43:18.796+03	
6160d883-81bf-841e-1718-a47511b9af51	2021-05-26 01:43:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:43:38.79+03	2021-05-26 01:43:38.796+03	
135eb993-893e-88ad-9f00-f371afb43f89	2021-05-26 01:43:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:43:58.79+03	2021-05-26 01:43:58.796+03	
5a05d3be-db59-976e-06b4-c83252882f64	2021-05-26 01:44:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:44:18.79+03	2021-05-26 01:44:18.798+03	
832dc483-afb5-3480-f39f-0f583d9ac37f	2021-05-26 01:44:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:44:38.79+03	2021-05-26 01:44:38.796+03	
4c6f583e-8a5c-4bc5-e2b0-b37d6dfc4dd3	2021-05-26 01:44:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:44:58.79+03	2021-05-26 01:44:58.806+03	
b353ca3a-4629-2be0-1cc4-f95bfc891ee8	2021-05-26 01:45:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:45:18.79+03	2021-05-26 01:45:18.796+03	
46d53e45-e6fa-fe4b-5743-8d2a9fb8e188	2021-05-26 01:45:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:45:38.79+03	2021-05-26 01:45:38.796+03	
07aa8f80-9805-14ab-38db-48848f5b9963	2021-05-26 01:45:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:45:58.79+03	2021-05-26 01:45:58.797+03	
041a8f11-da11-7d30-675c-bde5d69d5974	2021-05-26 01:46:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:46:18.79+03	2021-05-26 01:46:18.797+03	
98be9dac-211a-a289-00eb-57e85b848cf4	2021-05-26 01:46:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:46:38.79+03	2021-05-26 01:46:38.796+03	
01dadaea-4b4e-c565-9100-e14fd3eb6271	2021-05-26 01:46:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:46:58.79+03	2021-05-26 01:46:58.796+03	
cc74931e-ce66-7711-148b-c4d54aa94087	2021-05-26 01:47:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:47:18.79+03	2021-05-26 01:47:18.796+03	
bb880fba-d7d5-c250-6324-5b2c52abd742	2021-05-26 01:47:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:47:38.79+03	2021-05-26 01:47:38.796+03	
87a59b5d-7410-2ac4-f451-24c3b16f7d7e	2021-05-26 01:47:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:47:58.79+03	2021-05-26 01:47:58.796+03	
fcf15be4-8381-a145-c4ec-82740ff002cd	2021-05-26 01:48:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:48:18.79+03	2021-05-26 01:48:18.797+03	
d0664c96-dc74-97d7-1697-ce6c4c2680ce	2021-05-26 01:48:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:48:38.79+03	2021-05-26 01:48:38.797+03	
0da2a8a6-f7f4-c602-580f-a401778179d7	2021-05-26 01:48:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:48:58.79+03	2021-05-26 01:48:58.796+03	
41e01da1-3aff-81e9-94e7-2e824371e3d3	2021-05-26 01:49:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:49:18.79+03	2021-05-26 01:49:18.797+03	
f4162ef3-81c8-4112-033c-1c9785da6949	2021-05-26 01:49:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:49:28.79+03	2021-05-26 01:49:28.797+03	
711dc4d1-7faa-5572-edbd-10c7b9a226d3	2021-05-26 01:49:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:49:48.79+03	2021-05-26 01:49:48.796+03	
200e13ad-ca9e-4e6e-3ace-c4f15cdf3898	2021-05-26 01:49:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:49:58.79+03	2021-05-26 01:49:58.796+03	
f03aaf07-b2c5-55a5-b87b-56b5adc34046	2021-05-26 01:50:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:50:08.79+03	2021-05-26 01:50:08.797+03	
42b23185-70f4-2e66-ec45-0c2dd625847a	2021-05-26 01:50:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:50:28.79+03	2021-05-26 01:50:28.797+03	
bb8fc9b0-3b38-827d-674a-984e4e9f2742	2021-05-26 01:50:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:50:48.79+03	2021-05-26 01:50:48.796+03	
78d3eb69-6444-f293-4d7d-8c8fe9bac41e	2021-05-26 01:51:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:51:08.79+03	2021-05-26 01:51:08.796+03	
135e67e8-aa4b-b42e-11d5-c98382e90f2d	2021-05-26 01:51:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:51:28.79+03	2021-05-26 01:51:28.796+03	
62294915-80b4-d5c6-deb8-e98b76594991	2021-05-26 01:51:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:51:48.79+03	2021-05-26 01:51:48.796+03	
86970386-f54e-5dfc-1a2b-291585e1c0a3	2021-05-26 01:52:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:52:08.79+03	2021-05-26 01:52:08.796+03	
ce3d9877-3761-b3d7-cc43-db03499db2f2	2021-05-26 01:52:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:52:28.79+03	2021-05-26 01:52:28.797+03	
e45cb47e-534e-f301-26a2-cb72d69939c8	2021-05-26 01:52:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:52:48.79+03	2021-05-26 01:52:48.796+03	
92167815-7b0e-3dc7-6940-b46b9f77859b	2021-05-26 01:53:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:53:08.79+03	2021-05-26 01:53:08.796+03	
ef2294ae-ada2-5e05-a853-eb96854c8e0b	2021-05-26 01:53:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:53:28.79+03	2021-05-26 01:53:28.796+03	
69804d1a-f1dd-13c1-3eba-1e7707a4f0f1	2021-05-26 01:53:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:53:48.79+03	2021-05-26 01:53:48.797+03	
d1167b60-4999-a966-ac9b-567027af2eb7	2021-05-26 01:54:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:54:08.79+03	2021-05-26 01:54:08.796+03	
07ab9260-fdf3-78c6-9764-e711f1199a60	2021-05-26 01:54:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:54:28.79+03	2021-05-26 01:54:28.796+03	
559d62a1-e8db-4ec6-ea96-9934cdbb2e22	2021-05-26 01:54:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:54:48.79+03	2021-05-26 01:54:48.796+03	
dd678960-d83f-3c2c-9a5e-836a5a0e041f	2021-05-26 01:55:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:55:08.79+03	2021-05-26 01:55:08.796+03	
fa977206-078e-6beb-a8c1-3347bf0a811b	2021-05-26 01:55:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:55:28.79+03	2021-05-26 01:55:28.796+03	
96fbe948-237c-bb83-12c2-b9a10d3059aa	2021-05-26 01:55:48.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:55:48.79+03	2021-05-26 01:55:48.796+03	
f285d82a-16eb-8fce-564a-6f4c55d88cb6	2021-05-26 01:56:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:56:08.79+03	2021-05-26 01:56:08.796+03	
25249f69-c61d-b69c-ab85-c9a98d4df9f8	2021-05-26 01:56:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:56:28.79+03	2021-05-26 01:56:28.797+03	
554c1cd1-2d1f-cb96-46ab-1ba27fa8038e	2021-05-26 01:56:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:56:48.79+03	2021-05-26 01:56:48.796+03	
49e8270e-e71c-fc5d-5891-1c6a3e442ae9	2021-05-26 01:57:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:57:08.79+03	2021-05-26 01:57:08.796+03	
54454c99-9fc5-a120-7afc-8188c16f0875	2021-05-26 01:57:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:57:28.79+03	2021-05-26 01:57:28.796+03	
80e02958-3ebd-c294-a1b3-76af58b24f63	2021-05-26 01:57:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:57:48.79+03	2021-05-26 01:57:48.797+03	
fe5dc9ad-5d1b-19a6-b7c0-bbf4f211f1ef	2021-05-26 01:58:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:58:08.79+03	2021-05-26 01:58:08.796+03	
bc60341c-c569-fb61-e1b6-c84bb61709f5	2021-05-26 01:58:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:58:28.79+03	2021-05-26 01:58:28.797+03	
7d7f5aa6-176a-1a81-1116-c4a6563aa7ba	2021-05-26 01:58:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:58:48.79+03	2021-05-26 01:58:48.797+03	
e632c00c-e441-c67d-66ae-60bec7594474	2021-05-26 01:59:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:59:08.79+03	2021-05-26 01:59:08.796+03	
c8989ad6-1309-f803-598a-ce58a615070f	2021-05-26 01:59:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:59:28.79+03	2021-05-26 01:59:28.797+03	
3080d5cd-564b-0f1b-5a1d-88e3acea6a48	2021-05-26 01:59:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:59:48.79+03	2021-05-26 01:59:48.796+03	
a3516a19-8535-f005-6c9e-2a489759480d	2021-05-26 02:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 02:00:00.79+03	2021-05-26 02:00:00.795+03	ERROR
ef001b47-1556-a9ec-8d67-0d091ba01494	2021-05-26 02:00:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:00:18.79+03	2021-05-26 02:00:18.797+03	
fbe8e0d8-10e3-0870-ba68-efc798bffbe7	2021-05-26 02:00:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:00:38.79+03	2021-05-26 02:00:38.797+03	
4666b57e-8692-02f6-e1d0-c5fac86d49f7	2021-05-26 02:00:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:00:58.79+03	2021-05-26 02:00:58.797+03	
be714e4f-3d98-7aa4-8b64-fc45d8e96763	2021-05-26 02:01:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:01:18.79+03	2021-05-26 02:01:18.796+03	
866573cf-f754-e8b9-c904-588266354ec2	2021-05-26 02:01:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:01:38.79+03	2021-05-26 02:01:38.796+03	
04d9d931-3032-ad14-0c1c-3ac9c92dfaf6	2021-05-26 02:01:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:01:58.79+03	2021-05-26 02:01:58.796+03	
ac76b5f5-159f-5cf6-be1c-a63d2c3a2a30	2021-05-26 02:02:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:02:18.79+03	2021-05-26 02:02:18.796+03	
4ab1ea3b-6e92-da4f-f964-0dd759222d45	2021-05-26 02:02:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:02:38.79+03	2021-05-26 02:02:38.796+03	
655d42f7-b8a4-adff-e007-7af8504a1bb4	2021-05-26 02:02:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:02:58.79+03	2021-05-26 02:02:58.807+03	
d6da3007-d514-290d-3ed4-3ebb45f6024d	2021-05-26 02:03:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:03:18.79+03	2021-05-26 02:03:18.796+03	
aa1f2764-7098-d977-1fc5-f5f19fd36d05	2021-05-26 02:03:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:03:38.79+03	2021-05-26 02:03:38.796+03	
69a8c5d1-7d86-4121-97d1-11993488729e	2021-05-26 02:03:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:03:58.79+03	2021-05-26 02:03:58.809+03	
33dc1172-3588-664f-263b-1a690612e5f3	2021-05-26 02:04:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:04:18.79+03	2021-05-26 02:04:18.797+03	
ec6355e9-e498-f123-9616-43df37dfdb05	2021-05-26 02:04:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:04:38.79+03	2021-05-26 02:04:38.799+03	
2272f226-e314-edd8-adce-06998c3b1160	2021-05-26 02:04:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:04:58.79+03	2021-05-26 02:04:58.796+03	
e9e78d36-6430-60d1-a9a5-d0a167582046	2021-05-26 02:05:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:05:18.79+03	2021-05-26 02:05:18.797+03	
8419141e-cf17-20b9-b3ea-c6ca2d0ae517	2021-05-26 02:05:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:05:38.79+03	2021-05-26 02:05:38.797+03	
18be7ee0-7a75-a3e5-e9c1-aeea93b71d5e	2021-05-26 02:05:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:05:58.79+03	2021-05-26 02:05:58.796+03	
02fbd728-1bf8-67ed-f13f-562f79e095c6	2021-05-26 02:06:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:06:18.79+03	2021-05-26 02:06:18.796+03	
1c66ad53-df86-983e-0059-4ee52bcee1c5	2021-05-26 02:06:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:06:38.79+03	2021-05-26 02:06:38.797+03	
47f88492-02ef-2d25-a753-7e561b2f6628	2021-05-26 02:06:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:06:58.79+03	2021-05-26 02:06:58.796+03	
1886182d-b114-8429-38c5-9acc31f954b0	2021-05-26 02:07:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:07:18.79+03	2021-05-26 02:07:18.797+03	
229bef06-2daf-d03b-7ab1-23279e781e0f	2021-05-26 02:07:38.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:07:38.79+03	2021-05-26 02:07:38.798+03	
104fc124-f1c7-3e1c-f393-1d3896433bb1	2021-05-26 02:07:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:07:58.79+03	2021-05-26 02:07:58.796+03	
9d769ac0-6980-e63a-06c2-cd4a2e3dcdf6	2021-05-26 02:08:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:08:18.79+03	2021-05-26 02:08:18.797+03	
26d075e1-d04c-024d-4c71-c65773cb4ba0	2021-05-26 02:08:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:08:38.79+03	2021-05-26 02:08:38.796+03	
47d1ace6-5730-d8fe-bd7a-9a4a5426bab4	2021-05-26 02:08:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:08:58.79+03	2021-05-26 02:08:58.797+03	
c11a9034-d653-d5ce-160d-38f866ebdc9f	2021-05-26 02:09:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:09:18.79+03	2021-05-26 02:09:18.797+03	
48887669-ccdc-f236-1342-b7a82a773293	2021-05-26 02:09:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:09:38.79+03	2021-05-26 02:09:38.796+03	
ab552c85-b471-ab64-8039-3e203c4b3284	2021-05-26 01:49:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:49:38.79+03	2021-05-26 01:49:38.797+03	
d2343c6d-438a-3431-14dd-ef8bd437d457	2021-05-26 01:50:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 01:50:00.791+03	2021-05-26 01:50:00.796+03	ERROR
b8455a7d-df1f-00c1-4517-e7df05f19799	2021-05-26 01:50:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:50:18.79+03	2021-05-26 01:50:18.8+03	
f1c30897-5caa-4376-f938-620a707d812d	2021-05-26 01:50:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:50:38.79+03	2021-05-26 01:50:38.799+03	
5cbe043f-1e2a-2923-1ea8-f52d74707752	2021-05-26 01:50:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:50:58.79+03	2021-05-26 01:50:58.796+03	
952a2efd-8ef8-df03-3f57-771329507481	2021-05-26 01:51:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:51:18.79+03	2021-05-26 01:51:18.796+03	
0c317c79-fd78-0c54-45f0-fcd392c24d53	2021-05-26 01:51:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:51:38.79+03	2021-05-26 01:51:38.796+03	
8444a02c-0304-9e5d-1b8c-8feee08bff73	2021-05-26 01:51:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:51:58.79+03	2021-05-26 01:51:58.796+03	
b9c64d83-bb90-7240-6529-5bc938b8f45d	2021-05-26 01:52:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:52:18.79+03	2021-05-26 01:52:18.796+03	
dfda9383-1453-a768-15e5-6b354ca4e32b	2021-05-26 01:52:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:52:38.79+03	2021-05-26 01:52:38.796+03	
38e474bf-1658-8858-5159-ea672849d8a3	2021-05-26 01:52:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:52:58.79+03	2021-05-26 01:52:58.796+03	
612ea962-847e-a3c4-8b0c-c6a7edea1478	2021-05-26 01:53:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:53:18.79+03	2021-05-26 01:53:18.796+03	
406e1cc3-b40b-6c2a-b4e9-111d4d3b123b	2021-05-26 01:53:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:53:38.79+03	2021-05-26 01:53:38.797+03	
55a31ca8-787f-cc33-e808-1d4b3c00f3c3	2021-05-26 01:53:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:53:58.79+03	2021-05-26 01:53:58.796+03	
404015e7-ecc3-948e-d073-3c9b9d547d48	2021-05-26 01:54:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:54:18.79+03	2021-05-26 01:54:18.797+03	
77c2b11d-ec11-90c4-cfdd-bf4c17ff9e94	2021-05-26 01:54:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:54:38.79+03	2021-05-26 01:54:38.796+03	
767e4f92-8ae2-b647-722d-4020d0c1b03a	2021-05-26 01:54:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:54:58.79+03	2021-05-26 01:54:58.796+03	
ee0f8bfa-df00-5e39-bb64-b25ba3e69375	2021-05-26 01:55:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:55:18.79+03	2021-05-26 01:55:18.796+03	
57c0dcef-1011-5925-edd3-cc110ce8b3f8	2021-05-26 01:55:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:55:38.79+03	2021-05-26 01:55:38.796+03	
d88304ef-c334-d701-885e-3389c8970e88	2021-05-26 01:55:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:55:58.79+03	2021-05-26 01:55:58.796+03	
c38ee2f3-7ac8-754d-9ae6-75c92d6b7232	2021-05-26 01:56:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:56:18.79+03	2021-05-26 01:56:18.801+03	
64421528-f8ba-2a42-39d7-ed66089a8482	2021-05-26 01:56:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:56:38.79+03	2021-05-26 01:56:38.795+03	
6bd5bc72-deaf-f982-1e16-59428565596e	2021-05-26 01:56:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:56:58.79+03	2021-05-26 01:56:58.796+03	
28e46a0c-c010-68b6-f56b-28bfb7e8a1b3	2021-05-26 01:57:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:57:18.79+03	2021-05-26 01:57:18.796+03	
84746427-8c0b-f488-0bc3-fb81da8f5019	2021-05-26 01:57:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:57:38.79+03	2021-05-26 01:57:38.797+03	
7e5d8e1d-7e8c-2f09-440c-06de8427506b	2021-05-26 01:57:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:57:58.79+03	2021-05-26 01:57:58.796+03	
50712ae8-e7df-099a-344d-848e9ec3635f	2021-05-26 01:58:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:58:18.79+03	2021-05-26 01:58:18.796+03	
500e3a2b-3184-1866-1b77-e3c14c0fe6af	2021-05-26 01:58:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:58:38.79+03	2021-05-26 01:58:38.796+03	
703cce98-93ab-0294-2aa4-9135dc3b52fc	2021-05-26 01:58:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:58:58.79+03	2021-05-26 01:58:58.796+03	
b4eea330-a51c-320a-2e46-be7a5e2ee144	2021-05-26 01:59:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:59:18.79+03	2021-05-26 01:59:18.796+03	
3ec6ade5-c817-9d7d-dfc1-11d0b635b8ca	2021-05-26 01:59:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:59:38.79+03	2021-05-26 01:59:38.797+03	
737f22c6-f668-9635-afd7-ef55ac626626	2021-05-26 01:59:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 01:59:58.79+03	2021-05-26 01:59:58.796+03	
5b463288-916e-41ba-fabd-df60f49ca762	2021-05-26 02:00:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:00:08.79+03	2021-05-26 02:00:08.796+03	
e2346bee-c103-9f9d-8fc4-8d219a52cbad	2021-05-26 02:00:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:00:28.79+03	2021-05-26 02:00:28.796+03	
cdbee4e4-703d-d975-c067-036fb382cb36	2021-05-26 02:00:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:00:48.79+03	2021-05-26 02:00:48.796+03	
3e260004-fb11-d4e3-9d9f-383345d7efd4	2021-05-26 02:01:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:01:08.79+03	2021-05-26 02:01:08.796+03	
55bb7bdb-89df-4cf3-362c-f2a1c2a08024	2021-05-26 02:01:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:01:28.79+03	2021-05-26 02:01:28.796+03	
f1bac95a-ceb9-f865-65c8-09c7bd3c2a01	2021-05-26 02:01:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:01:48.79+03	2021-05-26 02:01:48.796+03	
46898a48-d471-4ca5-0d67-bebf82900db9	2021-05-26 02:02:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:02:08.79+03	2021-05-26 02:02:08.796+03	
e859e1f4-7aa5-e1e3-c295-ed410ec1b7dc	2021-05-26 02:02:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:02:28.79+03	2021-05-26 02:02:28.797+03	
f8e6529f-04b6-51cc-5e27-6fdf59851e76	2021-05-26 02:02:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:02:48.79+03	2021-05-26 02:02:48.796+03	
61d1add2-dcc4-4e6b-bff4-52cb6e94b8cb	2021-05-26 02:03:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:03:08.79+03	2021-05-26 02:03:08.796+03	
b91ad378-27c6-872e-4dda-90784aa31d72	2021-05-26 02:03:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:03:28.79+03	2021-05-26 02:03:28.798+03	
ed7413bd-4189-9d2e-f7b8-b3f74df75779	2021-05-26 02:03:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:03:48.79+03	2021-05-26 02:03:48.796+03	
9d966d2c-7bb6-e833-8818-e6f1bfaeeee1	2021-05-26 02:04:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:04:08.79+03	2021-05-26 02:04:08.796+03	
2a912073-d195-cc3a-468f-df0559842062	2021-05-26 02:04:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:04:28.79+03	2021-05-26 02:04:28.796+03	
8fc2bd3a-5c67-4b55-0b5b-eece770704ca	2021-05-26 02:04:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:04:48.79+03	2021-05-26 02:04:48.796+03	
93b21f44-d438-d009-b6d6-6fe2054207c2	2021-05-26 02:05:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:05:08.79+03	2021-05-26 02:05:08.796+03	
2e34ec82-0bcf-3abc-ffc3-9640f95ef7b9	2021-05-26 02:05:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:05:28.79+03	2021-05-26 02:05:28.796+03	
93240497-5038-a622-0e09-cf1dfa4d9f6f	2021-05-26 02:05:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:05:48.79+03	2021-05-26 02:05:48.796+03	
b1bb7187-3621-c18b-42d6-dc492e64a4d9	2021-05-26 02:06:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:06:08.79+03	2021-05-26 02:06:08.796+03	
5b424abe-118b-f7c7-46a7-90ae11b2a9a1	2021-05-26 02:06:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:06:28.79+03	2021-05-26 02:06:28.796+03	
4fd90c79-8520-f559-d427-9c8ac0fb90bd	2021-05-26 02:06:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:06:48.79+03	2021-05-26 02:06:48.796+03	
520262ed-b5ac-e3ab-6d48-450485cdc99e	2021-05-26 02:07:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:07:08.79+03	2021-05-26 02:07:08.796+03	
5fbf947a-c80f-42b7-811c-978a80f74a9e	2021-05-26 02:07:28.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:07:28.79+03	2021-05-26 02:07:28.797+03	
e4636268-a1cd-9894-e234-3de240cd4697	2021-05-26 02:07:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:07:48.79+03	2021-05-26 02:07:48.796+03	
99ca5fda-7ad4-70b1-ded3-04a286a25a57	2021-05-26 02:08:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:08:08.79+03	2021-05-26 02:08:08.796+03	
c21d0234-4355-390b-548e-713d9a325fa8	2021-05-26 02:08:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:08:28.79+03	2021-05-26 02:08:28.802+03	
6f927ba0-0df8-bb44-3c79-39e0b692cd56	2021-05-26 02:08:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:08:48.79+03	2021-05-26 02:08:48.796+03	
dc0919bb-0dbb-971c-32f2-638a8d0dd148	2021-05-26 02:09:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:09:08.79+03	2021-05-26 02:09:08.796+03	
0d79f82d-bfea-f44f-c20a-a43fd84b29d6	2021-05-26 02:09:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:09:28.79+03	2021-05-26 02:09:28.797+03	
691d4c4d-039e-cdb4-d216-4fd07a604b5e	2021-05-26 02:09:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:09:48.79+03	2021-05-26 02:09:48.797+03	
f4b2d0c7-fb0f-9dd5-a3d5-69a6b51c5dc7	2021-05-26 02:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 02:10:00.79+03	2021-05-26 02:10:00.794+03	ERROR
c85914c4-c918-0db5-56b7-7fef8826560f	2021-05-26 02:09:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:09:58.79+03	2021-05-26 02:09:58.796+03	
7a638d26-e178-0348-65a5-0195404295e7	2021-05-26 02:10:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:10:08.79+03	2021-05-26 02:10:08.796+03	
b30b06be-fa15-f7c5-a2a5-8769c3a22393	2021-05-26 02:10:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:10:28.79+03	2021-05-26 02:10:28.797+03	
34913a63-8e25-1fb8-8332-edeb1ed84298	2021-05-26 02:10:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:10:48.79+03	2021-05-26 02:10:48.796+03	
e55a60ee-96f3-66f6-07bc-c555b44cce9d	2021-05-26 02:11:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:11:08.79+03	2021-05-26 02:11:08.796+03	
ec2e0cca-9261-f348-6fc9-f1c9fb8b5e0f	2021-05-26 02:11:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:11:28.79+03	2021-05-26 02:11:28.796+03	
aaf7810d-5d4c-25e7-34f8-5d50139d2546	2021-05-26 02:11:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:11:48.79+03	2021-05-26 02:11:48.796+03	
bdb9076e-8891-b0ec-6461-a6baf879a187	2021-05-26 02:12:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:12:08.79+03	2021-05-26 02:12:08.796+03	
f19a0a01-1bff-20d2-d910-fe10858eb77a	2021-05-26 02:12:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:12:28.79+03	2021-05-26 02:12:28.796+03	
72b91f46-d8b3-61bc-ee12-cab2e7ba086e	2021-05-26 02:12:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:12:48.79+03	2021-05-26 02:12:48.796+03	
e353981a-dbc9-cbb5-a769-d99a5a92ce40	2021-05-26 02:13:08.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:13:08.79+03	2021-05-26 02:13:08.799+03	
81d8748d-ed32-ee64-0956-e5a8117bb3e2	2021-05-26 02:13:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:13:28.79+03	2021-05-26 02:13:28.796+03	
a55b322e-d687-5547-2abe-a5a4fea49dfd	2021-05-26 02:13:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:13:48.79+03	2021-05-26 02:13:48.796+03	
a824613c-9f44-fd06-90ff-57a9af0a4482	2021-05-26 02:14:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:14:08.79+03	2021-05-26 02:14:08.797+03	
37bed041-613d-7abe-e8f2-e3468348f645	2021-05-26 02:14:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:14:28.79+03	2021-05-26 02:14:28.796+03	
f90d1f85-db43-eca2-da72-7c620df62d66	2021-05-26 02:14:48.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:14:48.79+03	2021-05-26 02:14:48.797+03	
f7888ede-c088-3859-e847-1ffcbb886e9e	2021-05-26 02:15:08.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:15:08.79+03	2021-05-26 02:15:08.801+03	
9ca39715-1d06-25ed-e4b1-0ae41752e86b	2021-05-26 02:15:28.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:15:28.79+03	2021-05-26 02:15:28.806+03	
e90a6398-e3d5-3252-888c-d2f83d7be7df	2021-05-26 02:15:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:15:49.79+03	2021-05-26 02:15:49.796+03	
f07f25ae-17b4-454a-cbb3-db1eaeaf63a7	2021-05-26 02:16:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:16:09.79+03	2021-05-26 02:16:09.797+03	
755b7674-2100-cfe8-daa1-21460380557a	2021-05-26 02:16:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:16:29.79+03	2021-05-26 02:16:29.796+03	
1610a124-7ab0-26b6-2c36-cd750ed8bffb	2021-05-26 02:16:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:16:49.79+03	2021-05-26 02:16:49.803+03	
5ad411c3-c8e8-85b7-f51e-039ad3ca6691	2021-05-26 02:17:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:17:09.79+03	2021-05-26 02:17:09.796+03	
d3b1f5a9-5166-3c13-fcc1-03ea22e27acb	2021-05-26 02:17:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:17:29.79+03	2021-05-26 02:17:29.796+03	
346bcc0d-8414-8ee9-b86e-3c5d2c8ec24b	2021-05-26 02:17:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:17:49.79+03	2021-05-26 02:17:49.797+03	
3a82a98d-5113-caff-85de-bd27683136b6	2021-05-26 02:18:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:18:09.79+03	2021-05-26 02:18:09.797+03	
2dd254bb-d9b8-8e4c-e8b5-57b04a7c23e6	2021-05-26 02:18:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:18:29.79+03	2021-05-26 02:18:29.797+03	
6999f7da-1af4-f694-c279-665101140133	2021-05-26 02:18:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:18:49.79+03	2021-05-26 02:18:49.796+03	
5bbcb29d-934f-6892-24c7-fec43a803d40	2021-05-26 02:19:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:19:09.79+03	2021-05-26 02:19:09.795+03	
0309b348-8007-07eb-af61-240d3b46fc7a	2021-05-26 02:19:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:19:29.79+03	2021-05-26 02:19:29.796+03	
dd9cb560-2ba1-4adb-e499-d2e1cc9bf4ff	2021-05-26 02:19:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:19:49.79+03	2021-05-26 02:19:49.796+03	
abc8bbf6-8acb-79c9-cbb1-e7140e040730	2021-05-26 02:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 02:20:00.79+03	2021-05-26 02:20:00.794+03	ERROR
d2b043cb-6883-09f0-c83c-8ca54e947bf9	2021-05-26 02:20:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:20:19.79+03	2021-05-26 02:20:19.798+03	
4d99827c-7127-a9fb-43a6-725ba6e62411	2021-05-26 02:20:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:20:39.79+03	2021-05-26 02:20:39.796+03	
0b5d0156-1a40-46bf-9e3d-644ac33387cb	2021-05-26 02:20:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:20:59.79+03	2021-05-26 02:20:59.797+03	
dd02919e-2216-6bfb-3337-ea979da75688	2021-05-26 02:21:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:21:19.79+03	2021-05-26 02:21:19.796+03	
2754b8a3-9d93-1b80-b99c-c7f8ffa813a2	2021-05-26 02:21:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:21:39.79+03	2021-05-26 02:21:39.796+03	
d3189415-5db4-c7c4-4266-4f70a9bbbb96	2021-05-26 02:21:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:21:59.79+03	2021-05-26 02:21:59.796+03	
e80f6c60-b2bd-99db-8c0b-4062e86ca8f5	2021-05-26 02:22:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:22:19.79+03	2021-05-26 02:22:19.799+03	
dc1b82b7-191a-b676-5e69-25c249c0dbb8	2021-05-26 02:22:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:22:39.79+03	2021-05-26 02:22:39.797+03	
8fbce8bf-cc9d-01e0-7529-d2d4cd032f0d	2021-05-26 02:22:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:22:59.79+03	2021-05-26 02:22:59.799+03	
b2daf545-9457-0830-ee1e-9c000c745646	2021-05-26 02:23:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:23:19.79+03	2021-05-26 02:23:19.796+03	
2ead5b30-7321-7c70-1f7e-bda604484c32	2021-05-26 02:23:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:23:39.79+03	2021-05-26 02:23:39.796+03	
e61113c3-0e34-b263-c816-f09d4c3d7b9e	2021-05-26 02:23:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:23:59.79+03	2021-05-26 02:23:59.797+03	
159c3a45-689e-ebc8-b2b8-8bcba8f2321d	2021-05-26 02:24:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:24:19.79+03	2021-05-26 02:24:19.797+03	
f89ee4e5-31b2-ddcb-6484-8c5b006ed6c0	2021-05-26 02:24:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:24:39.79+03	2021-05-26 02:24:39.797+03	
b51e7e9a-91c8-4baf-4ab3-0ddbee63e9d3	2021-05-26 02:24:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:24:59.79+03	2021-05-26 02:24:59.797+03	
861aa6e1-2df7-5a5e-745e-d0de90de16d6	2021-05-26 02:25:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:25:19.79+03	2021-05-26 02:25:19.801+03	
cc47cdad-a738-fa63-14b5-f7d2cf009dca	2021-05-26 02:25:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:25:39.79+03	2021-05-26 02:25:39.796+03	
86fa099c-babf-3539-15ad-3fef9f66adfb	2021-05-26 02:25:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:25:59.79+03	2021-05-26 02:25:59.81+03	
a31ce682-ac74-3665-34b9-6be6869dd6cc	2021-05-26 02:26:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:26:19.79+03	2021-05-26 02:26:19.797+03	
03f85d58-7121-58c0-3238-3724c1f60f0b	2021-05-26 02:26:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:26:39.79+03	2021-05-26 02:26:39.796+03	
f5c0fbb3-40b8-1415-d73a-2829e3fbc284	2021-05-26 02:26:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:26:59.79+03	2021-05-26 02:26:59.797+03	
018e1e1b-2a56-736e-1cd3-f422aa1ec0e4	2021-05-26 02:27:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:27:19.79+03	2021-05-26 02:27:19.81+03	
dadae47c-1e07-c98a-e9cc-9998d5ca41be	2021-05-26 02:27:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:27:39.79+03	2021-05-26 02:27:39.796+03	
8047f701-b239-da06-43c4-20ed95aad95b	2021-05-26 02:27:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:27:59.79+03	2021-05-26 02:27:59.796+03	
94264005-eb71-b572-d4f9-5f6b657dbf46	2021-05-26 02:28:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:28:19.79+03	2021-05-26 02:28:19.8+03	
53a17135-2fc0-0658-391e-9917d8883403	2021-05-26 02:28:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:28:39.79+03	2021-05-26 02:28:39.796+03	
07801868-98b0-4de7-faef-11a06d67cacc	2021-05-26 02:28:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:28:59.79+03	2021-05-26 02:28:59.796+03	
4d0e0144-88af-3117-2dda-768955f6e45c	2021-05-26 02:29:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:29:19.79+03	2021-05-26 02:29:19.797+03	
04705f5a-a427-d3d4-4f71-dd11660a345b	2021-05-26 02:29:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:29:39.79+03	2021-05-26 02:29:39.796+03	
fd08cc11-ea3f-b28d-21a8-fdd82a539ddb	2021-05-26 02:29:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:29:59.79+03	2021-05-26 02:29:59.796+03	
a06fa854-6894-2cbb-41db-203ae7889386	2021-05-26 02:30:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:30:09.79+03	2021-05-26 02:30:09.796+03	
1e37e4ef-647d-1dbb-e984-094fc4ad7998	2021-05-26 02:10:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:10:18.79+03	2021-05-26 02:10:18.796+03	
972a028f-264c-c237-08b2-5ffb3ef90765	2021-05-26 02:10:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:10:38.79+03	2021-05-26 02:10:38.797+03	
18bd45ff-1a93-341e-e8a5-f02e8d8e40d3	2021-05-26 02:10:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:10:58.79+03	2021-05-26 02:10:58.796+03	
f7567b34-1d47-b2a6-4d6b-df70aa131e59	2021-05-26 02:11:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:11:18.79+03	2021-05-26 02:11:18.796+03	
7ddb3f2a-4669-9f21-8099-88a57e0b0af0	2021-05-26 02:11:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:11:38.79+03	2021-05-26 02:11:38.796+03	
3d8f049f-a27e-f1a3-9c12-be9f049f96f0	2021-05-26 02:11:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:11:58.79+03	2021-05-26 02:11:58.796+03	
9aa0361b-225c-c18a-3f9c-b7b8d50e3d07	2021-05-26 02:12:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:12:18.79+03	2021-05-26 02:12:18.796+03	
f02b369f-423e-30ec-edf7-7ebf5435f581	2021-05-26 02:12:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:12:38.79+03	2021-05-26 02:12:38.796+03	
b0a2816b-d4c8-e9c2-df3a-d2c4e6c6fd54	2021-05-26 02:12:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:12:58.79+03	2021-05-26 02:12:58.797+03	
2ff97119-f555-dbc5-1045-cd8a2f87a1b6	2021-05-26 02:13:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:13:18.79+03	2021-05-26 02:13:18.796+03	
47426650-7b68-ce8b-325d-e9dee2d09462	2021-05-26 02:13:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:13:38.79+03	2021-05-26 02:13:38.807+03	
b9d9d383-3429-c1a5-2553-a6d16ddb10de	2021-05-26 02:13:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:13:58.79+03	2021-05-26 02:13:58.796+03	
4087a977-6389-53bd-6e4f-eed64ae9e199	2021-05-26 02:14:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:14:18.79+03	2021-05-26 02:14:18.797+03	
71066b2d-e1cd-fcf4-8b2d-c974052afc1b	2021-05-26 02:14:38.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:14:38.79+03	2021-05-26 02:14:38.796+03	
86aeab06-2e44-28bb-f816-f0610c10cdfc	2021-05-26 02:14:58.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:14:58.79+03	2021-05-26 02:14:58.796+03	
24b2ec7e-f905-c9ee-5590-abc135d73f52	2021-05-26 02:15:18.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:15:18.79+03	2021-05-26 02:15:18.796+03	
aa8a2a62-c3af-22b0-9d3f-a7c7eb383654	2021-05-26 02:15:39.441	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:15:39.44+03	2021-05-26 02:15:39.446+03	
bf1a6edf-c9d2-39de-1f80-5ab33d021313	2021-05-26 02:15:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:15:59.79+03	2021-05-26 02:15:59.849+03	
ed3fe985-4055-ee7e-ddab-020957b4f8d3	2021-05-26 02:16:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:16:19.79+03	2021-05-26 02:16:19.808+03	
b866b8e8-a96f-040f-0fec-587e1ed82102	2021-05-26 02:16:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:16:39.79+03	2021-05-26 02:16:39.796+03	
5a4602d2-f345-9fbb-b8a1-0ea99d7f80cf	2021-05-26 02:16:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:16:59.79+03	2021-05-26 02:16:59.797+03	
69d3845a-f23f-99df-2980-2a9d69dd6996	2021-05-26 02:17:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:17:19.79+03	2021-05-26 02:17:19.796+03	
6e539544-fb86-ebef-7766-516ea16a9374	2021-05-26 02:17:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:17:39.79+03	2021-05-26 02:17:39.796+03	
daa20886-4da0-257c-4e6b-71c8a9e6cab3	2021-05-26 02:17:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:17:59.79+03	2021-05-26 02:17:59.797+03	
02490481-fae9-1538-fdab-7d9b9d1c1fe5	2021-05-26 02:18:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:18:19.79+03	2021-05-26 02:18:19.797+03	
a2a18863-823d-3e40-1844-880f7917d654	2021-05-26 02:18:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:18:39.79+03	2021-05-26 02:18:39.796+03	
c42c81bc-296d-62a2-9ce0-bdd541e40144	2021-05-26 02:18:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:18:59.79+03	2021-05-26 02:18:59.808+03	
3d97505e-74c5-c93e-30fa-d7b08ef34c1c	2021-05-26 02:19:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:19:19.79+03	2021-05-26 02:19:19.796+03	
3df37556-7f08-08fe-c031-4a13f111a148	2021-05-26 02:19:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:19:39.79+03	2021-05-26 02:19:39.796+03	
ae72f59e-b411-a2b0-a8d3-e78c7d3bee89	2021-05-26 02:19:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:19:59.79+03	2021-05-26 02:19:59.796+03	
cb07e47b-2dc9-a619-0d02-aa4bf07b4715	2021-05-26 02:20:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:20:09.79+03	2021-05-26 02:20:09.796+03	
48e444fc-fe50-a892-e588-fe9d42f3931c	2021-05-26 02:20:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:20:29.79+03	2021-05-26 02:20:29.808+03	
84a61fe1-1e03-269c-fedd-a7c17ef7c74d	2021-05-26 02:20:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:20:49.79+03	2021-05-26 02:20:49.796+03	
e2aa972b-aa2e-0360-48ca-c23919b664cd	2021-05-26 02:21:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:21:09.79+03	2021-05-26 02:21:09.796+03	
300d5927-6f1a-a3b6-1682-0d2aa8a8afbb	2021-05-26 02:21:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:21:29.79+03	2021-05-26 02:21:29.797+03	
ec69b98d-1c00-97ba-dd29-8a2722749f78	2021-05-26 02:21:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:21:49.79+03	2021-05-26 02:21:49.796+03	
08f1fcc4-167d-5042-65c3-b31c18727d03	2021-05-26 02:22:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:22:09.79+03	2021-05-26 02:22:09.809+03	
d7e5d271-e6e7-f0dc-54ff-f8b8711b7c16	2021-05-26 02:22:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:22:29.79+03	2021-05-26 02:22:29.809+03	
9b8fa971-e64a-9166-aac4-91008cbe49dc	2021-05-26 02:22:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:22:49.79+03	2021-05-26 02:22:49.796+03	
3af12c1a-15a0-a4b3-149a-029c04b18dc4	2021-05-26 02:23:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:23:09.79+03	2021-05-26 02:23:09.811+03	
ad541b33-43b9-a764-cb4a-7cc52c4e1372	2021-05-26 02:23:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:23:29.79+03	2021-05-26 02:23:29.796+03	
70d73eee-33fb-b718-f914-7862bedf9adf	2021-05-26 02:23:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:23:49.79+03	2021-05-26 02:23:49.796+03	
e428afe0-1048-46ce-5da3-2e4886e41f60	2021-05-26 02:24:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:24:09.79+03	2021-05-26 02:24:09.797+03	
664f53a7-96f2-bea6-54eb-41d3988ef573	2021-05-26 02:24:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:24:29.79+03	2021-05-26 02:24:29.796+03	
7bb1587f-8d3a-eae9-0c3b-40647ce88480	2021-05-26 02:24:49.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:24:49.79+03	2021-05-26 02:24:49.797+03	
c6941386-1f9b-785f-992a-31e62fd7a2cf	2021-05-26 02:25:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:25:09.79+03	2021-05-26 02:25:09.797+03	
4bb57bc0-ef45-5635-b8d3-bec1e08f44b0	2021-05-26 02:25:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:25:29.79+03	2021-05-26 02:25:29.796+03	
81443ded-5788-de75-bfe8-38bae56be742	2021-05-26 02:25:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:25:49.79+03	2021-05-26 02:25:49.796+03	
c81a03f2-a146-f663-e815-62315f632e84	2021-05-26 02:26:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:26:09.79+03	2021-05-26 02:26:09.796+03	
515f126b-4325-806e-0273-0469bda1814c	2021-05-26 02:26:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:26:29.79+03	2021-05-26 02:26:29.797+03	
461d19c7-d276-3440-b294-347281c13c1f	2021-05-26 02:26:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:26:49.79+03	2021-05-26 02:26:49.796+03	
e93b01c9-abda-b7df-c424-fb2363feeea1	2021-05-26 02:27:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:27:09.79+03	2021-05-26 02:27:09.796+03	
eb5db468-2105-72a4-527f-a6e54fd14638	2021-05-26 02:27:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:27:29.79+03	2021-05-26 02:27:29.797+03	
1ad47ac4-349a-9f81-85ef-bf0c1ffd520c	2021-05-26 02:27:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:27:49.79+03	2021-05-26 02:27:49.805+03	
39969dc8-2211-1836-e956-ca74fc62d448	2021-05-26 02:28:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:28:09.79+03	2021-05-26 02:28:09.796+03	
477597ce-09a2-b6e2-b3f1-5eb4f5a89e5f	2021-05-26 02:28:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:28:29.79+03	2021-05-26 02:28:29.796+03	
6bbe35e6-0158-a59a-139e-201e5790925a	2021-05-26 02:28:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:28:49.79+03	2021-05-26 02:28:49.797+03	
09df88f8-7c42-5ff7-d9ca-928f3f19f30c	2021-05-26 02:29:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:29:09.79+03	2021-05-26 02:29:09.796+03	
c27bcc27-8dad-d322-9970-4f5cff7a2172	2021-05-26 02:29:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:29:29.79+03	2021-05-26 02:29:29.796+03	
9241ffde-1389-f06e-318d-dbd724f9db5b	2021-05-26 02:29:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:29:49.79+03	2021-05-26 02:29:49.796+03	
98bd2047-4375-2588-b4b7-b5c9b59235a7	2021-05-26 02:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 02:30:00.79+03	2021-05-26 02:30:00.795+03	ERROR
def18b87-0953-372b-efda-15b6a3e1958b	2021-05-26 02:30:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:30:19.79+03	2021-05-26 02:30:19.796+03	
ff494368-2151-716a-04e4-b2206bfe2779	2021-05-26 02:30:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:30:39.79+03	2021-05-26 02:30:39.796+03	
e7718a20-c0f3-a924-0fc3-45216cde2821	2021-05-26 02:30:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:30:29.79+03	2021-05-26 02:30:29.804+03	
df432043-60df-b825-65f8-87379973975e	2021-05-26 02:30:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:30:49.79+03	2021-05-26 02:30:49.797+03	
dd66d08b-5e8e-32fe-f29b-c8f2d934aeeb	2021-05-26 02:31:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:31:09.79+03	2021-05-26 02:31:09.796+03	
e760e6b3-04c5-20d5-1622-70abb9e0f250	2021-05-26 02:31:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:31:29.79+03	2021-05-26 02:31:29.798+03	
056f69c5-ce31-9fde-d36c-3e1c923380d8	2021-05-26 02:31:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:31:49.79+03	2021-05-26 02:31:49.796+03	
2764e0ef-691b-285d-2e27-dd7c73de680c	2021-05-26 02:32:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:32:09.79+03	2021-05-26 02:32:09.796+03	
f99cdf23-8ec1-4c0b-5a1a-29fd7d69c6fa	2021-05-26 02:32:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:32:29.79+03	2021-05-26 02:32:29.803+03	
561819ac-e19c-d5b5-59eb-034e3a1c93af	2021-05-26 02:32:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:32:49.79+03	2021-05-26 02:32:49.796+03	
a77ae4f9-67a4-9c50-df95-630f8b7ad916	2021-05-26 02:33:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:33:09.79+03	2021-05-26 02:33:09.803+03	
87ca76a6-3e11-04cc-b375-c327d37b2f2b	2021-05-26 02:33:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:33:29.79+03	2021-05-26 02:33:29.797+03	
ed676150-62dd-7efe-002c-6514eae43472	2021-05-26 02:33:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:33:49.79+03	2021-05-26 02:33:49.797+03	
c055335f-9639-e94a-c27e-e989fcdf06da	2021-05-26 02:34:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:34:09.79+03	2021-05-26 02:34:09.796+03	
3b3b4394-ad20-784e-9262-8ad892e310db	2021-05-26 02:34:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:34:29.79+03	2021-05-26 02:34:29.8+03	
d5ab737f-c691-0ab4-2045-a0f27ed303f3	2021-05-26 02:34:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:34:49.79+03	2021-05-26 02:34:49.796+03	
346a42bc-7d0e-34b6-883c-9ea397ceb45f	2021-05-26 02:35:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:35:09.79+03	2021-05-26 02:35:09.796+03	
c40762c5-e625-997a-ec8f-d839784507ac	2021-05-26 02:35:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:35:29.79+03	2021-05-26 02:35:29.796+03	
08c2d198-6f50-c86f-06e1-b2888c090b8c	2021-05-26 02:35:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:35:49.79+03	2021-05-26 02:35:49.796+03	
d04cde5d-de2a-7543-97b3-061f2e9cd698	2021-05-26 02:36:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:36:09.79+03	2021-05-26 02:36:09.806+03	
63def38e-7fc5-4c79-4ea2-5f301243f36b	2021-05-26 02:36:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:36:29.79+03	2021-05-26 02:36:29.796+03	
0dc6c6f6-0dfe-189b-6987-6579ca824580	2021-05-26 02:36:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:36:49.79+03	2021-05-26 02:36:49.796+03	
63ed941b-fad4-1b15-57db-db299b2d89f8	2021-05-26 02:37:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:37:09.79+03	2021-05-26 02:37:09.796+03	
a529058e-3f97-f332-5cbf-ab01d199444e	2021-05-26 02:37:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:37:29.79+03	2021-05-26 02:37:29.796+03	
0f191247-ffc0-78e1-4f3e-00edd1b49ef5	2021-05-26 02:37:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:37:49.79+03	2021-05-26 02:37:49.795+03	
0eaa1611-ee5f-b691-0ff5-ec9b88e87f53	2021-05-26 02:38:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:38:09.79+03	2021-05-26 02:38:09.796+03	
120963ed-d0df-8335-a5c3-886f4e7b8a9b	2021-05-26 02:38:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:38:29.79+03	2021-05-26 02:38:29.796+03	
0669677b-ec7e-c0f5-0dc3-7399d1369d58	2021-05-26 02:38:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:38:49.79+03	2021-05-26 02:38:49.795+03	
aac073cf-b8cb-92ad-d8f4-528ebed98388	2021-05-26 02:39:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:39:09.79+03	2021-05-26 02:39:09.796+03	
8870d40b-971b-d734-6a4e-0ed54434bc96	2021-05-26 02:39:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:39:29.79+03	2021-05-26 02:39:29.796+03	
473cf16f-0f91-36c2-a32b-07d4ac770b9f	2021-05-26 02:39:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:39:49.79+03	2021-05-26 02:39:49.798+03	
906fff57-81fd-e5b6-6729-df4fd36d4794	2021-05-26 02:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 02:40:00.79+03	2021-05-26 02:40:00.795+03	ERROR
705f16cc-77be-d2b2-40fb-483bb821a5a5	2021-05-26 02:40:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:40:19.79+03	2021-05-26 02:40:19.801+03	
cae444ac-2ff9-9eba-2e0e-d092c6a49512	2021-05-26 02:40:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:40:39.79+03	2021-05-26 02:40:39.797+03	
54a9e9ee-7b25-8953-b873-608d2599aa46	2021-05-26 02:40:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:40:59.79+03	2021-05-26 02:40:59.796+03	
cdf883d2-c070-f495-5623-182c6b95060b	2021-05-26 02:41:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:41:19.79+03	2021-05-26 02:41:19.796+03	
dee57967-3694-d265-cce2-499654b79ecf	2021-05-26 02:41:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:41:39.79+03	2021-05-26 02:41:39.796+03	
ed154ccf-556b-d718-1814-45352071e143	2021-05-26 02:41:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:41:59.79+03	2021-05-26 02:41:59.796+03	
dcdcd3e3-1211-3536-20e5-7e1879ddf7a8	2021-05-26 02:42:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:42:19.79+03	2021-05-26 02:42:19.797+03	
60676b04-7737-c57c-efcd-8afc15a9267a	2021-05-26 02:42:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:42:39.79+03	2021-05-26 02:42:39.796+03	
dd0e201e-9ee5-a546-61a2-9da7e6964ac0	2021-05-26 02:42:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:42:59.79+03	2021-05-26 02:42:59.796+03	
fcf12d7c-7efd-1160-bb58-c35a9abda090	2021-05-26 02:43:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:43:19.79+03	2021-05-26 02:43:19.796+03	
6bead214-6212-bc9f-3dd7-0c6d19eaaad9	2021-05-26 02:43:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:43:39.79+03	2021-05-26 02:43:39.813+03	
03478a6f-9c95-c2b5-6ab7-d95c9aefdff3	2021-05-26 02:43:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:43:59.79+03	2021-05-26 02:43:59.796+03	
6c40eec3-d6d7-177b-00f2-31d888ced071	2021-05-26 02:44:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:44:19.79+03	2021-05-26 02:44:19.797+03	
6b8ad202-5f4e-27e8-eaf5-5804d4d2000c	2021-05-26 02:44:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:44:39.79+03	2021-05-26 02:44:39.807+03	
fea87943-9896-cfaa-da9a-dba8ab1fa1b1	2021-05-26 02:44:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:44:59.79+03	2021-05-26 02:44:59.796+03	
1eb76e4e-481d-b806-7a2c-34402c323433	2021-05-26 02:45:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:45:19.79+03	2021-05-26 02:45:19.797+03	
9ee0dd56-9c5d-2c82-74d1-9dcc6a39686e	2021-05-26 02:45:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:45:39.79+03	2021-05-26 02:45:39.796+03	
21f8f069-1196-a70e-ca67-5a99de10f0a7	2021-05-26 02:45:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:45:59.79+03	2021-05-26 02:45:59.796+03	
afbce9a3-9a3b-47e1-ea43-0a7be18099b7	2021-05-26 02:46:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:46:19.79+03	2021-05-26 02:46:19.797+03	
933b5898-4fe2-3442-1ff5-b327d0373558	2021-05-26 02:46:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:46:39.79+03	2021-05-26 02:46:39.796+03	
1a2b928b-3a0f-1ff6-f6c2-1c62c8fbb28a	2021-05-26 02:46:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:46:59.79+03	2021-05-26 02:46:59.796+03	
6e988966-f115-5fb7-907e-f82cb951d853	2021-05-26 02:47:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:47:19.79+03	2021-05-26 02:47:19.797+03	
7568dc04-0d0e-9c2b-0ce0-7b3e6d486173	2021-05-26 02:47:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:47:39.79+03	2021-05-26 02:47:39.796+03	
c44ca63f-75a1-b944-5430-d9fe82c64849	2021-05-26 02:47:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:47:59.79+03	2021-05-26 02:47:59.802+03	
e0730af0-a599-3c79-a6d3-962b7e418e1c	2021-05-26 02:48:19.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:48:19.79+03	2021-05-26 02:48:19.798+03	
3a1edf2f-a6f0-c540-ae3e-ed730ab1071e	2021-05-26 02:48:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:48:39.79+03	2021-05-26 02:48:39.796+03	
86c93e68-8628-f99d-3a56-15703fb7b1c1	2021-05-26 02:48:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:48:59.79+03	2021-05-26 02:48:59.796+03	
93021848-bdc7-0a73-88e2-18ab101fc7b5	2021-05-26 02:49:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:49:19.79+03	2021-05-26 02:49:19.813+03	
630211e3-980f-71ac-e4af-1b3a7872204d	2021-05-26 02:49:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:49:39.79+03	2021-05-26 02:49:39.796+03	
f7355e30-6cc0-51c1-3a69-5541afd4ad8c	2021-05-26 02:49:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:49:59.79+03	2021-05-26 02:49:59.796+03	
85e4dd67-0a3a-7332-1d6f-d569e3306c7d	2021-05-26 02:50:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:50:09.79+03	2021-05-26 02:50:09.796+03	
d2df568f-01e4-5e98-d36c-7f16a0cf9ef8	2021-05-26 02:50:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:50:29.79+03	2021-05-26 02:50:29.797+03	
69d1b1f2-61fa-c709-42b1-0b9ac585c349	2021-05-26 02:50:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:50:49.79+03	2021-05-26 02:50:49.796+03	
418ac031-0983-a352-99d3-ca8af509fb37	2021-05-26 02:30:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:30:59.79+03	2021-05-26 02:30:59.797+03	
84cf008d-950a-ad5c-ffb8-6f88be1dd427	2021-05-26 02:31:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:31:19.79+03	2021-05-26 02:31:19.796+03	
842300f3-89db-cd78-1f2e-b6f61e148340	2021-05-26 02:31:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:31:39.79+03	2021-05-26 02:31:39.796+03	
ff330ba1-50f8-8a4b-6ff3-c4dce40e7d3e	2021-05-26 02:31:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:31:59.79+03	2021-05-26 02:31:59.796+03	
fe66aab5-3da0-2a7c-d681-91524421141c	2021-05-26 02:32:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:32:19.79+03	2021-05-26 02:32:19.803+03	
5e13c9b7-6a6f-9054-a0b3-34b33c8ee4d6	2021-05-26 02:32:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:32:39.79+03	2021-05-26 02:32:39.796+03	
a24247b2-b220-7c05-372f-241adb12812b	2021-05-26 02:32:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:32:59.79+03	2021-05-26 02:32:59.796+03	
ffdc1ba2-d8b8-cc1b-4d24-bc07ea32727b	2021-05-26 02:33:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:33:19.79+03	2021-05-26 02:33:19.797+03	
ea8e3fac-8bc6-48cb-e282-ac3275e0281a	2021-05-26 02:33:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:33:39.79+03	2021-05-26 02:33:39.796+03	
91425195-6754-9788-a4b3-bdd4e32e7233	2021-05-26 02:33:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:33:59.79+03	2021-05-26 02:33:59.796+03	
a58511f9-e9bc-82b3-7850-d2fd8270482d	2021-05-26 02:34:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:34:19.79+03	2021-05-26 02:34:19.796+03	
d5910bd6-8bb9-b694-ef28-b08f258e5622	2021-05-26 02:34:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:34:39.79+03	2021-05-26 02:34:39.797+03	
cd2580fa-e370-73f5-723f-2f52971e9280	2021-05-26 02:34:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:34:59.79+03	2021-05-26 02:34:59.796+03	
21c7f019-3dcb-e95a-4cb6-db5816e2a5bc	2021-05-26 02:35:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:35:19.79+03	2021-05-26 02:35:19.796+03	
f5375edc-4a15-93d4-d00d-f58803a484e9	2021-05-26 02:35:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:35:39.79+03	2021-05-26 02:35:39.796+03	
7aaf0d22-059d-71c4-aaf6-45b86326194f	2021-05-26 02:35:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:35:59.79+03	2021-05-26 02:35:59.796+03	
eba4bcdf-6b4b-04a5-b015-6f2d2b3e0703	2021-05-26 02:36:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:36:19.79+03	2021-05-26 02:36:19.796+03	
0ab49c39-1de2-9000-31a5-a4a6c834579c	2021-05-26 02:36:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:36:39.79+03	2021-05-26 02:36:39.796+03	
f1137e1f-c6bd-fa93-8e5b-3c52d4e7cf97	2021-05-26 02:36:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:36:59.79+03	2021-05-26 02:36:59.796+03	
79af1013-71e5-1469-271a-87c1fdd102a0	2021-05-26 02:37:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:37:19.79+03	2021-05-26 02:37:19.796+03	
f09a1888-2f2f-0b63-6a72-73828d7b83fe	2021-05-26 02:37:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:37:39.79+03	2021-05-26 02:37:39.807+03	
2c5cc820-eacd-c788-a2d9-f9916e8e44b4	2021-05-26 02:37:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:37:59.79+03	2021-05-26 02:37:59.797+03	
e620d71e-d6e1-86f0-f086-d574b5197a00	2021-05-26 02:38:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:38:19.79+03	2021-05-26 02:38:19.796+03	
0e1662ea-8c0d-8f42-3c93-4b3515ad2929	2021-05-26 02:38:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:38:39.79+03	2021-05-26 02:38:39.796+03	
7ece7c12-4fba-96ad-d250-809c000aed1c	2021-05-26 02:38:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:38:59.79+03	2021-05-26 02:38:59.797+03	
26d05b1a-ab38-aff2-45bd-4712efb837c5	2021-05-26 02:39:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:39:19.79+03	2021-05-26 02:39:19.796+03	
187ca58d-a4c8-dfe8-51f7-7c95fe4d100b	2021-05-26 02:39:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:39:39.79+03	2021-05-26 02:39:39.796+03	
f5d0985a-c5bd-5885-d112-1a57c397ed22	2021-05-26 02:39:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:39:59.79+03	2021-05-26 02:39:59.796+03	
bdfad6fc-aab9-7dd1-ece9-85f02977feb7	2021-05-26 02:40:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:40:09.79+03	2021-05-26 02:40:09.796+03	
7cb325e5-5dd3-8087-31dc-5b8f95b6d980	2021-05-26 02:40:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:40:29.79+03	2021-05-26 02:40:29.803+03	
9dbf25eb-fb10-496a-69f7-bdf0c120d60d	2021-05-26 02:40:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:40:49.79+03	2021-05-26 02:40:49.796+03	
f4d8fd9d-c894-4d01-5aee-e92ae55c7077	2021-05-26 02:41:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:41:09.79+03	2021-05-26 02:41:09.796+03	
87e009fb-2826-41a0-1f40-5c7cc9b7fd50	2021-05-26 02:41:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:41:29.79+03	2021-05-26 02:41:29.796+03	
035335b4-4bf3-a2dc-e894-62d38363925b	2021-05-26 02:41:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:41:49.79+03	2021-05-26 02:41:49.797+03	
064688ac-89ed-ded1-cac6-22f077263b6b	2021-05-26 02:42:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:42:09.79+03	2021-05-26 02:42:09.808+03	
4395b83b-7206-18cf-9f85-b4369ec7fd34	2021-05-26 02:42:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:42:29.79+03	2021-05-26 02:42:29.804+03	
6b9cc26b-3dd5-6a28-f096-33836697f9f2	2021-05-26 02:42:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:42:49.79+03	2021-05-26 02:42:49.799+03	
8238027c-ca5f-7651-eca9-c28618cc5f83	2021-05-26 02:43:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:43:09.79+03	2021-05-26 02:43:09.804+03	
2aa82f40-a3da-fb6a-44cb-5eea1f490bbc	2021-05-26 02:43:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:43:29.79+03	2021-05-26 02:43:29.796+03	
3b37f112-cf8c-f3cd-269d-14be3c623ed0	2021-05-26 02:43:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:43:49.79+03	2021-05-26 02:43:49.796+03	
b0ad8d43-94c3-af1e-9dd6-4aec67148411	2021-05-26 02:44:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:44:09.79+03	2021-05-26 02:44:09.796+03	
7a96ba20-5625-6307-5e71-26620666acd9	2021-05-26 02:44:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:44:29.79+03	2021-05-26 02:44:29.796+03	
be835f28-e861-b5f6-3a58-7ce8102eb23e	2021-05-26 02:44:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:44:49.79+03	2021-05-26 02:44:49.796+03	
aa860dd5-eceb-ce96-433f-d0cf22a93522	2021-05-26 02:45:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:45:09.79+03	2021-05-26 02:45:09.796+03	
ccb67f4c-4998-2316-ecda-cdeb1575b082	2021-05-26 02:45:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:45:29.79+03	2021-05-26 02:45:29.796+03	
601223db-9ad4-4103-fd15-b099eebe043f	2021-05-26 02:45:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:45:49.79+03	2021-05-26 02:45:49.796+03	
39a4e720-97d9-c231-6471-28429d37b6f9	2021-05-26 02:46:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:46:09.79+03	2021-05-26 02:46:09.796+03	
c24da109-9a01-1b84-8020-b9f06653a6a9	2021-05-26 02:46:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:46:29.79+03	2021-05-26 02:46:29.796+03	
d850e04c-4201-e6e7-03d3-13aa90ee76d6	2021-05-26 02:46:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:46:49.79+03	2021-05-26 02:46:49.796+03	
45b13028-31ca-2694-a428-f42a7a41e212	2021-05-26 02:47:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:47:09.79+03	2021-05-26 02:47:09.804+03	
d6dc1226-be45-6d6b-2c6f-430fb3162547	2021-05-26 02:47:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:47:29.79+03	2021-05-26 02:47:29.796+03	
538069f9-ffa7-3fe2-a51f-cc530dc94cb2	2021-05-26 02:47:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:47:49.79+03	2021-05-26 02:47:49.796+03	
a3efb139-0e38-b5ec-ea3c-89516721a997	2021-05-26 02:48:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:48:09.79+03	2021-05-26 02:48:09.796+03	
d48b6a96-13ca-f82b-d6b5-371f3bb6a77d	2021-05-26 02:48:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:48:29.79+03	2021-05-26 02:48:29.798+03	
22d576b9-bb97-763a-45e6-52b29d8704d2	2021-05-26 02:48:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:48:49.79+03	2021-05-26 02:48:49.797+03	
5baa3039-4db4-b01f-082d-71aded0a60b7	2021-05-26 02:49:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:49:09.79+03	2021-05-26 02:49:09.796+03	
479a1a35-0c7b-ce7e-76a4-504f1c01b8c2	2021-05-26 02:49:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:49:29.79+03	2021-05-26 02:49:29.796+03	
8a5c2703-2503-34eb-af04-69f9b6b73868	2021-05-26 02:49:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:49:49.79+03	2021-05-26 02:49:49.797+03	
60ad2bfa-91b5-392c-2cf4-db886b5ef914	2021-05-26 02:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 02:50:00.79+03	2021-05-26 02:50:00.795+03	ERROR
b8ff85c6-2d62-4364-d697-5c483aadf8aa	2021-05-26 02:50:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:50:19.79+03	2021-05-26 02:50:19.797+03	
9b2cfec4-6f27-358e-f64c-d3346ce49be3	2021-05-26 02:50:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:50:39.79+03	2021-05-26 02:50:39.797+03	
01d3df2f-607d-fa91-8d40-380882e68e1b	2021-05-26 02:50:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:50:59.79+03	2021-05-26 02:50:59.805+03	
9100e41c-6229-7715-464f-d265bab9e83d	2021-05-26 02:51:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:51:19.79+03	2021-05-26 02:51:19.798+03	
0115f945-04f5-44b3-4d98-df9cd331f606	2021-05-26 02:51:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:51:09.79+03	2021-05-26 02:51:09.797+03	
3c22e132-0bce-ea86-9723-649d1c355d24	2021-05-26 02:51:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:51:29.79+03	2021-05-26 02:51:29.797+03	
f03d0e08-0f1b-c93c-7353-12aec3d7e4af	2021-05-26 02:51:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:51:49.79+03	2021-05-26 02:51:49.796+03	
d2644b94-6576-8d38-3c11-2582039f5e8f	2021-05-26 02:52:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:52:09.79+03	2021-05-26 02:52:09.797+03	
6488d636-fbfa-5b81-f2fa-e83d993780ec	2021-05-26 02:52:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:52:29.79+03	2021-05-26 02:52:29.796+03	
f4209dca-03fa-1130-ec17-b5e05395dde8	2021-05-26 02:52:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:52:49.79+03	2021-05-26 02:52:49.81+03	
7405c8b8-8579-1790-580e-ba7e5165f967	2021-05-26 02:53:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:53:09.79+03	2021-05-26 02:53:09.797+03	
2702ec3c-5ea7-75ba-03e2-52c25d3bb4a4	2021-05-26 02:53:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:53:29.79+03	2021-05-26 02:53:29.796+03	
c3f0b997-aa67-1e95-beba-d2074d03c342	2021-05-26 02:53:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:53:49.79+03	2021-05-26 02:53:49.796+03	
a4c5341b-0f63-a9a9-4d25-5096473bc541	2021-05-26 02:54:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:54:09.79+03	2021-05-26 02:54:09.796+03	
f66e7e70-fba7-fe13-8105-1105ca40b9cf	2021-05-26 02:54:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:54:29.79+03	2021-05-26 02:54:29.796+03	
492ece39-d729-c3b2-b826-2e447b23b060	2021-05-26 02:54:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:54:49.79+03	2021-05-26 02:54:49.796+03	
31f96564-c95e-a966-5581-29c6ba7919a5	2021-05-26 02:55:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:55:09.79+03	2021-05-26 02:55:09.795+03	
a7c8f508-ab76-48b1-8182-34ac18839fa5	2021-05-26 02:55:29.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:55:29.79+03	2021-05-26 02:55:29.796+03	
663dea03-1137-a8a0-4d29-8b2620e95d20	2021-05-26 02:55:49.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:55:49.79+03	2021-05-26 02:55:49.796+03	
3f7ec696-636d-f2d7-0871-5619c698afdd	2021-05-26 02:56:09.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:56:09.79+03	2021-05-26 02:56:09.796+03	
fc15f348-f929-9218-1b5c-9b9e4792905e	2021-05-26 02:56:29.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:56:29.791+03	2021-05-26 02:56:29.797+03	
7997e789-d696-26d3-b3dc-c67b9dfe9616	2021-05-26 02:56:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:56:50.79+03	2021-05-26 02:56:50.797+03	
42d39ffd-939e-3d71-8c55-4312f49bde99	2021-05-26 02:57:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:57:10.79+03	2021-05-26 02:57:10.796+03	
fd4f74d5-afa6-98ff-ce35-298f9e2319fb	2021-05-26 02:57:30.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:57:30.79+03	2021-05-26 02:57:30.796+03	
ed153103-01ee-faa1-6e24-1c4678b9bfa5	2021-05-26 02:57:50.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:57:50.79+03	2021-05-26 02:57:50.796+03	
46b57328-1758-2a70-fdc6-c69870c58984	2021-05-26 02:58:10.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:58:10.79+03	2021-05-26 02:58:10.797+03	
31ad4931-349f-c6c9-dab7-4f11ec93ca06	2021-05-26 02:58:30.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:58:30.791+03	2021-05-26 02:58:30.798+03	
b15917a4-c5d7-d525-ad05-3c624bea1191	2021-05-26 02:58:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:58:51.79+03	2021-05-26 02:58:51.797+03	
34a2ac22-fca0-3f02-c526-940d5d96d15e	2021-05-26 02:59:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:59:11.79+03	2021-05-26 02:59:11.799+03	
b316730c-3bf9-5d5f-215a-6a40db9e8dfd	2021-05-26 02:59:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:59:31.79+03	2021-05-26 02:59:31.797+03	
76654f81-c143-1557-78a1-01d4b0657379	2021-05-26 02:59:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:59:51.79+03	2021-05-26 02:59:51.797+03	
ccd0091c-b299-1a9a-1798-71d97513c157	2021-05-26 03:00:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:00:01.79+03	2021-05-26 03:00:01.8+03	
968f5b99-a95a-8ef1-1667-5c3ea28bd9f9	2021-05-26 03:00:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:00:21.79+03	2021-05-26 03:00:21.797+03	
15ff5472-ad0f-3ad0-ac43-2872e9d4afcf	2021-05-26 03:00:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:00:41.79+03	2021-05-26 03:00:41.8+03	
6452b70b-8b73-7b93-42e5-4389c8eea15d	2021-05-26 03:01:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:01:01.79+03	2021-05-26 03:01:01.797+03	
03610baa-2011-35be-9bd6-b4348b395a0b	2021-05-26 03:01:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:01:21.79+03	2021-05-26 03:01:21.8+03	
b6a2d5c1-d25b-5170-40a4-8c53a89f98ea	2021-05-26 03:01:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:01:41.79+03	2021-05-26 03:01:41.798+03	
6fe1d5cf-9273-d574-63ba-545baed2f940	2021-05-26 03:02:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:02:01.79+03	2021-05-26 03:02:01.797+03	
6e943205-cb38-efa7-0565-683410b780f2	2021-05-26 03:02:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:02:21.79+03	2021-05-26 03:02:21.797+03	
2a5196a1-2544-b5a2-ce24-ac739cddb823	2021-05-26 03:02:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:02:41.79+03	2021-05-26 03:02:41.796+03	
3fa715f0-206a-839f-6886-c8fd9bed94e0	2021-05-26 03:03:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:03:01.79+03	2021-05-26 03:03:01.796+03	
fc2f55da-ba7a-f58d-8b1f-3858223db800	2021-05-26 03:03:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:03:21.79+03	2021-05-26 03:03:21.796+03	
527402ec-530a-014b-6655-24a56672cc3d	2021-05-26 03:03:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:03:41.79+03	2021-05-26 03:03:41.812+03	
d66cd1d8-014f-1aae-56fe-dc690f427fde	2021-05-26 03:04:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:04:01.79+03	2021-05-26 03:04:01.796+03	
fbd96ce5-8e9b-597b-10cc-d7adb773cc7f	2021-05-26 03:04:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:04:21.79+03	2021-05-26 03:04:21.811+03	
5e5c32cc-09b0-4e59-761c-5838b183bc0c	2021-05-26 03:04:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:04:41.79+03	2021-05-26 03:04:41.812+03	
b526c266-2d92-3e82-2182-e6367bc28bb3	2021-05-26 03:05:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:05:01.79+03	2021-05-26 03:05:01.797+03	
e3beafef-6148-cf4e-9f4e-1cf4e6f6e823	2021-05-26 03:05:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:05:21.79+03	2021-05-26 03:05:21.81+03	
989adabb-c39b-4d2b-09a0-07b3cbcf4b6e	2021-05-26 03:05:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:05:41.79+03	2021-05-26 03:05:41.808+03	
e997f596-e2fe-f105-187c-a60f9c00e6a6	2021-05-26 03:06:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:06:01.79+03	2021-05-26 03:06:01.796+03	
36b63428-bd31-d6a5-d12c-92cc801a1fe5	2021-05-26 03:06:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:06:21.79+03	2021-05-26 03:06:21.796+03	
3723035e-e83a-c995-4d9a-0b6d38c856d9	2021-05-26 03:06:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:06:41.79+03	2021-05-26 03:06:41.796+03	
fd399e8c-4ff1-0243-1f49-781fd316d4cb	2021-05-26 03:07:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:07:01.79+03	2021-05-26 03:07:01.797+03	
b316d07c-379f-ad8d-d242-e4a4a48a9876	2021-05-26 03:07:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:07:21.79+03	2021-05-26 03:07:21.796+03	
9916dbd9-5258-bd3d-915d-0108e0461b64	2021-05-26 03:07:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:07:41.79+03	2021-05-26 03:07:41.796+03	
d94927be-ca8b-532c-6bde-efc525a9f6f0	2021-05-26 03:08:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:08:01.79+03	2021-05-26 03:08:01.797+03	
9722dffe-4981-a4de-e658-1a1037f6cf57	2021-05-26 03:08:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:08:21.79+03	2021-05-26 03:08:21.796+03	
46922de5-3241-8877-ef87-1729015323ec	2021-05-26 03:08:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:08:41.79+03	2021-05-26 03:08:41.796+03	
19f14f9b-4058-dd73-f471-90c8d35796e6	2021-05-26 03:09:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:09:01.79+03	2021-05-26 03:09:01.796+03	
5eb69a05-00a4-0449-13ed-47399bc03558	2021-05-26 03:09:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:09:21.79+03	2021-05-26 03:09:21.796+03	
ae1452b3-ed5f-a84a-d752-fd2b43729022	2021-05-26 03:09:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:09:41.79+03	2021-05-26 03:09:41.796+03	
43a9f583-6fa1-16fa-cf3d-5db6f660e6cf	2021-05-26 03:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 03:10:00.79+03	2021-05-26 03:10:00.795+03	ERROR
3a90e462-aac1-5aa0-1a49-064b0c73df59	2021-05-26 03:10:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:10:11.79+03	2021-05-26 03:10:11.796+03	
b943180a-1a26-a75a-e8e3-b5b92b29fb71	2021-05-26 03:10:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:10:31.79+03	2021-05-26 03:10:31.797+03	
d47a5cd1-cbf9-33a3-210d-111470f0a46a	2021-05-26 03:10:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:10:51.79+03	2021-05-26 03:10:51.797+03	
cbf880ab-d8b7-ed83-fb32-d5b2963d3262	2021-05-26 03:11:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:11:11.79+03	2021-05-26 03:11:11.797+03	
c84ab7bf-f256-a303-b6e8-9b197cf12c79	2021-05-26 03:11:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:11:31.79+03	2021-05-26 03:11:31.798+03	
caab7536-ef4c-7e72-2453-1a2dc560d394	2021-05-26 02:51:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:51:39.79+03	2021-05-26 02:51:39.797+03	
f7b438e4-6c97-581f-6feb-11eea3749586	2021-05-26 02:51:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:51:59.79+03	2021-05-26 02:51:59.796+03	
75a28d3a-595e-4214-bfbb-5642c25026c6	2021-05-26 02:52:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:52:19.79+03	2021-05-26 02:52:19.797+03	
5333b704-6d8f-c289-f34f-787f73b7188c	2021-05-26 02:52:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:52:39.79+03	2021-05-26 02:52:39.796+03	
df1d09f2-54b1-b63b-ad03-e8c804eb0bfa	2021-05-26 02:52:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:52:59.79+03	2021-05-26 02:52:59.797+03	
19ec2df7-053d-b08a-412a-dab97af1bca7	2021-05-26 02:53:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:53:19.79+03	2021-05-26 02:53:19.797+03	
bd283506-0b6c-9ea7-0ad2-f11da9b900fb	2021-05-26 02:53:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:53:39.79+03	2021-05-26 02:53:39.796+03	
2b6a77f8-7f58-9d6b-341a-eca19aa3eee4	2021-05-26 02:53:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:53:59.79+03	2021-05-26 02:53:59.796+03	
e91d5fa1-8a8c-4928-cf4a-732171647b59	2021-05-26 02:54:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:54:19.79+03	2021-05-26 02:54:19.796+03	
b851d923-51f5-ed25-aa7d-2240ebc6a2a3	2021-05-26 02:54:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:54:39.79+03	2021-05-26 02:54:39.796+03	
8b8ff27f-fc6f-8d7c-6b9c-4e6621475f43	2021-05-26 02:54:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:54:59.79+03	2021-05-26 02:54:59.796+03	
f703741f-ace6-0d38-72db-47486a4bc400	2021-05-26 02:55:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:55:19.79+03	2021-05-26 02:55:19.809+03	
6eee29f3-bbba-bc25-f26e-f6df5e6a52a8	2021-05-26 02:55:39.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:55:39.79+03	2021-05-26 02:55:39.799+03	
ce7c16cb-6af7-9a94-ae4c-c70c8a4dfa4d	2021-05-26 02:55:59.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:55:59.79+03	2021-05-26 02:55:59.796+03	
34465a5f-586a-9f53-7297-775907bf6abe	2021-05-26 02:56:19.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:56:19.79+03	2021-05-26 02:56:19.799+03	
9d452f9b-b0c4-da37-8609-056a7946e1a2	2021-05-26 02:56:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:56:40.79+03	2021-05-26 02:56:40.808+03	
00e641a8-790a-0176-8ad4-94da55beb467	2021-05-26 02:57:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:57:00.79+03	2021-05-26 02:57:00.819+03	
30ec2a34-7eef-28c5-db3a-0e70e024c81e	2021-05-26 02:57:20.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:57:20.79+03	2021-05-26 02:57:20.808+03	
23417c30-c2b1-47c8-6ab0-678288756b8a	2021-05-26 02:57:40.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:57:40.79+03	2021-05-26 02:57:40.799+03	
7fe56b38-6ac6-d175-cfd3-c521fd75a6f5	2021-05-26 02:58:00.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:58:00.79+03	2021-05-26 02:58:00.798+03	
4c9d4b33-2d4a-94e9-f8ef-3dd4b00d9df7	2021-05-26 02:58:20.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:58:20.79+03	2021-05-26 02:58:20.796+03	
2eda268a-ca3a-6546-e3dd-c0858c84a6ec	2021-05-26 02:58:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:58:41.79+03	2021-05-26 02:58:41.796+03	
04e66665-4680-88e2-6c4a-af7b83ab6f58	2021-05-26 02:59:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:59:01.79+03	2021-05-26 02:59:01.797+03	
15112014-f3a9-c688-7231-433f210eb894	2021-05-26 02:59:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:59:21.79+03	2021-05-26 02:59:21.797+03	
73f48601-a073-1562-5ec7-8bb6b3601bb5	2021-05-26 02:59:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 02:59:41.79+03	2021-05-26 02:59:41.797+03	
b1cdeefd-d0ec-cfbf-5a7b-a515f5e5a74a	2021-05-26 03:00:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 03:00:00.791+03	2021-05-26 03:00:00.823+03	ERROR
52ac6b86-732f-39aa-9bf4-9d5a80de80df	2021-05-26 03:00:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:00:11.79+03	2021-05-26 03:00:11.798+03	
ee4a184b-130b-c8c5-ecac-0b62e999c7e6	2021-05-26 03:00:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:00:31.79+03	2021-05-26 03:00:31.798+03	
9af57b10-ee84-b46b-1fd8-8b047f8db0f0	2021-05-26 03:00:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:00:51.79+03	2021-05-26 03:00:51.796+03	
b7d76041-2e30-7628-706c-22165ef6a9ee	2021-05-26 03:01:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:01:11.79+03	2021-05-26 03:01:11.798+03	
b583a64f-0492-1a11-ba1a-9e5def84bf5a	2021-05-26 03:01:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:01:31.79+03	2021-05-26 03:01:31.818+03	
6cdcac84-32af-a844-d9ed-c2605f8e8b79	2021-05-26 03:01:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:01:51.79+03	2021-05-26 03:01:51.796+03	
fdc67fcc-2603-1073-9fd8-44dc796b6b13	2021-05-26 03:02:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:02:11.79+03	2021-05-26 03:02:11.798+03	
f5d5e8b4-43fc-f73b-4ef3-9bddfcf9f932	2021-05-26 03:02:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:02:31.79+03	2021-05-26 03:02:31.797+03	
e5d90c89-18ca-8db5-df3f-f82d0473d94d	2021-05-26 03:02:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:02:51.79+03	2021-05-26 03:02:51.796+03	
8888659c-3c3f-1b09-75cf-97c0671bcd55	2021-05-26 03:03:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:03:11.79+03	2021-05-26 03:03:11.797+03	
3622b301-0204-ac4e-f282-c400449a98ba	2021-05-26 03:03:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:03:31.79+03	2021-05-26 03:03:31.797+03	
4483de09-777b-890c-9e4b-4e48fd7c4800	2021-05-26 03:03:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:03:51.79+03	2021-05-26 03:03:51.796+03	
cefb59e7-43a7-f7bb-9da6-c110f12472dd	2021-05-26 03:04:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:04:11.79+03	2021-05-26 03:04:11.796+03	
00350fd3-5ba9-ee2c-f272-d9744b119cb5	2021-05-26 03:04:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:04:31.79+03	2021-05-26 03:04:31.796+03	
30354851-0ae8-b88c-802b-dfb2185879e3	2021-05-26 03:04:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:04:51.79+03	2021-05-26 03:04:51.797+03	
341829d9-b97a-d2e6-a0a3-82a87ada1508	2021-05-26 03:05:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:05:11.79+03	2021-05-26 03:05:11.796+03	
251678c6-dd2a-2d08-2afa-7fa19b48d760	2021-05-26 03:05:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:05:31.79+03	2021-05-26 03:05:31.797+03	
e66d2882-db1a-4172-2df0-f093c692f40e	2021-05-26 03:05:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:05:51.79+03	2021-05-26 03:05:51.796+03	
30ca1c7c-fa42-aca4-8aa4-d065252a2221	2021-05-26 03:06:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:06:11.79+03	2021-05-26 03:06:11.796+03	
dde91214-7902-155d-06f0-a2602e7429fa	2021-05-26 03:06:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:06:31.79+03	2021-05-26 03:06:31.798+03	
ce530d4c-509b-1139-d37c-2ac2132e0996	2021-05-26 03:06:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:06:51.79+03	2021-05-26 03:06:51.796+03	
29a58c34-ba76-9193-5f0c-a89836a885cd	2021-05-26 03:07:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:07:11.79+03	2021-05-26 03:07:11.796+03	
dbe2e1d7-6643-6d22-f0ca-7a0e933a272d	2021-05-26 03:07:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:07:31.79+03	2021-05-26 03:07:31.797+03	
75ac9ad8-2973-ea83-a335-5815af3afbcb	2021-05-26 03:07:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:07:51.79+03	2021-05-26 03:07:51.796+03	
85e9b2ae-ea43-e01c-0c7f-8c484d464e88	2021-05-26 03:08:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:08:11.79+03	2021-05-26 03:08:11.797+03	
0ec55756-90ab-e065-5813-a782a3d582c0	2021-05-26 03:08:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:08:31.79+03	2021-05-26 03:08:31.797+03	
97af5267-1c95-8efa-3b5c-c216eae27d26	2021-05-26 03:08:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:08:51.79+03	2021-05-26 03:08:51.796+03	
f16a9d6f-dc76-e43c-4f1d-357848c0e3b1	2021-05-26 03:09:11.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:09:11.79+03	2021-05-26 03:09:11.797+03	
6028dea2-e9c0-d700-7c3f-5226c08055ce	2021-05-26 03:09:31.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:09:31.79+03	2021-05-26 03:09:31.81+03	
5fea2bbe-58a4-2ba5-8dbc-ae8eacaf589c	2021-05-26 03:09:51.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:09:51.79+03	2021-05-26 03:09:51.812+03	
c19e0ee8-69fe-2f62-8d97-c5003b8f9529	2021-05-26 03:10:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:10:01.79+03	2021-05-26 03:10:01.796+03	
ae275cb1-63c7-20d7-4753-613f402c9862	2021-05-26 03:10:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:10:21.79+03	2021-05-26 03:10:21.796+03	
bd6ce43c-7332-db1a-d4d2-bc5874a578dd	2021-05-26 03:10:41.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:10:41.79+03	2021-05-26 03:10:41.81+03	
3c59f75f-1eeb-889c-87d8-e3f13d6d2d97	2021-05-26 03:11:01.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:11:01.79+03	2021-05-26 03:11:01.796+03	
2b20b184-18a1-6c72-9809-2308e8a3272a	2021-05-26 03:11:21.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:11:21.79+03	2021-05-26 03:11:21.797+03	
876bf177-0842-1730-db29-3c7c42ce9241	2021-05-26 03:11:41.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:11:41.791+03	2021-05-26 03:11:41.798+03	
ef9c4d04-05bb-0313-3e6d-663433e41f57	2021-05-26 03:12:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:12:02.79+03	2021-05-26 03:12:02.796+03	
2ace1869-f037-704a-0779-0aac28e3d08f	2021-05-26 03:11:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:11:52.79+03	2021-05-26 03:11:52.797+03	
b8ae05ae-9b3d-dfc4-51a9-c29118576c67	2021-05-26 03:12:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:12:12.79+03	2021-05-26 03:12:12.796+03	
7d5dbe3c-aad6-3b76-abce-3248b92e716f	2021-05-26 03:12:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:12:32.79+03	2021-05-26 03:12:32.796+03	
daf68934-9cc2-4163-ac0b-1bfd2b8a2bd2	2021-05-26 03:12:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:12:52.79+03	2021-05-26 03:12:52.796+03	
6104382d-a239-7e4c-36f3-528d2b4b85f2	2021-05-26 03:13:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:13:12.79+03	2021-05-26 03:13:12.797+03	
4de9cbdf-e1ca-6d66-9ca9-52c4d0712169	2021-05-26 03:13:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:13:32.79+03	2021-05-26 03:13:32.796+03	
618c2102-bbfe-eb68-4935-07ffcaf3ffeb	2021-05-26 03:13:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:13:52.79+03	2021-05-26 03:13:52.796+03	
de912b96-1214-7deb-5b1e-8ecb00e9e815	2021-05-26 03:14:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:14:12.79+03	2021-05-26 03:14:12.796+03	
8b26ace1-377b-f739-47ec-5e8c91f99050	2021-05-26 03:14:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:14:32.79+03	2021-05-26 03:14:32.796+03	
f8aec392-48d0-da3b-7230-91c6dcc66f6f	2021-05-26 03:14:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:14:52.79+03	2021-05-26 03:14:52.796+03	
77142a35-aadd-bf79-97dd-e798eed7dc6f	2021-05-26 03:15:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:15:12.79+03	2021-05-26 03:15:12.797+03	
3bc48040-68a1-5b68-b400-b8bee3f99187	2021-05-26 03:15:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:15:32.79+03	2021-05-26 03:15:32.799+03	
3c539996-4af5-a32f-ed66-7db1a20c44b6	2021-05-26 03:15:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:15:52.79+03	2021-05-26 03:15:52.8+03	
e40b9da4-4a19-9929-9b15-e8fb92bac173	2021-05-26 03:16:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:16:12.79+03	2021-05-26 03:16:12.796+03	
12043dfd-9c13-d69b-4b6d-5ffa70be9f7b	2021-05-26 03:16:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:16:32.79+03	2021-05-26 03:16:32.797+03	
31282ed3-0f83-26a6-83c2-0a08e5b9cb1b	2021-05-26 03:16:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:16:52.79+03	2021-05-26 03:16:52.796+03	
dd1e819b-5c1e-65ca-c7bb-ac0d23036bf9	2021-05-26 03:17:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:17:12.79+03	2021-05-26 03:17:12.798+03	
e08e0398-2788-54b2-a8bb-cea8acd47184	2021-05-26 03:17:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:17:32.79+03	2021-05-26 03:17:32.796+03	
d9534cf6-ae2c-4f7a-750c-05fa21e9d75a	2021-05-26 03:17:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:17:52.79+03	2021-05-26 03:17:52.796+03	
81b3525c-d0a0-1d11-bb22-c70f8b84006e	2021-05-26 03:18:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:18:12.79+03	2021-05-26 03:18:12.797+03	
d6e1b9a7-abdf-6188-fd2f-a71322be98a2	2021-05-26 03:18:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:18:32.79+03	2021-05-26 03:18:32.796+03	
b2b8f0ae-f793-465f-fc48-6130c387e6ba	2021-05-26 03:18:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:18:52.79+03	2021-05-26 03:18:52.796+03	
24141c79-590b-5b06-5795-f1bb0399e43b	2021-05-26 03:19:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:19:12.79+03	2021-05-26 03:19:12.795+03	
695622c1-0acd-d201-4db1-7a59c420614e	2021-05-26 03:19:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:19:32.79+03	2021-05-26 03:19:32.796+03	
96b5643f-efcd-be57-7a56-5a71cd6a0707	2021-05-26 03:19:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:19:52.79+03	2021-05-26 03:19:52.796+03	
b57e44b6-403f-433e-f9a2-b63d91da6060	2021-05-26 03:20:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:20:02.79+03	2021-05-26 03:20:02.796+03	
11f05807-daf5-314b-657a-6b3ff1d24288	2021-05-26 03:20:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:20:22.79+03	2021-05-26 03:20:22.796+03	
482bd3fd-cfa8-2197-a15d-dce209abd2b5	2021-05-26 03:20:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:20:42.79+03	2021-05-26 03:20:42.797+03	
f02589de-5962-7cae-965c-1a92c3da2bb1	2021-05-26 03:21:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:21:02.79+03	2021-05-26 03:21:02.796+03	
eab5f98e-2fc4-37cb-0857-23f7be3cf36e	2021-05-26 03:21:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:21:22.79+03	2021-05-26 03:21:22.797+03	
f2b79b9b-1cba-d26e-ed47-b3359a678ef2	2021-05-26 03:21:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:21:42.79+03	2021-05-26 03:21:42.796+03	
7c96fdf3-ef05-d68a-a5b1-53fd396596b1	2021-05-26 03:22:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:22:02.79+03	2021-05-26 03:22:02.799+03	
69d1a14b-c9ee-a9fd-2cc2-13e14ed11d2e	2021-05-26 03:22:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:22:22.79+03	2021-05-26 03:22:22.797+03	
3959797a-06c3-b805-bf70-d26748c07755	2021-05-26 03:22:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:22:42.79+03	2021-05-26 03:22:42.798+03	
481c50c3-26a4-0b70-0a78-fba5e5262e5c	2021-05-26 03:23:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:23:02.79+03	2021-05-26 03:23:02.797+03	
465826bd-cec2-ccf3-fc26-fb2b8d4b76ca	2021-05-26 03:23:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:23:22.79+03	2021-05-26 03:23:22.796+03	
5541fa22-4566-2783-e090-c514f6148777	2021-05-26 03:23:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:23:42.79+03	2021-05-26 03:23:42.808+03	
76367f48-8e86-dec5-ac65-7f877d052a19	2021-05-26 03:24:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:24:02.79+03	2021-05-26 03:24:02.796+03	
246d560c-802c-bfe7-785e-17314864b6b2	2021-05-26 03:24:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:24:22.79+03	2021-05-26 03:24:22.797+03	
ab5b8a77-c99c-4d20-636a-ec7bd0673a04	2021-05-26 03:24:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:24:42.79+03	2021-05-26 03:24:42.796+03	
221538de-8430-0ad3-98a2-04d5c40bc9cb	2021-05-26 03:25:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:25:02.79+03	2021-05-26 03:25:02.81+03	
a1b2fb4e-9ee2-81a1-bb7d-c8a11f85454f	2021-05-26 03:25:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:25:22.79+03	2021-05-26 03:25:22.813+03	
fb12c297-7f40-cbd2-46c9-bc8134238a22	2021-05-26 03:25:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:25:42.79+03	2021-05-26 03:25:42.797+03	
e8fb49ad-8c0b-17c6-bd71-f6268ea33295	2021-05-26 03:26:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:26:02.79+03	2021-05-26 03:26:02.796+03	
4f37e51c-dd83-dfae-35ea-bf7299d79135	2021-05-26 03:26:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:26:22.79+03	2021-05-26 03:26:22.796+03	
50f06b26-38a5-e0c7-fe61-0a758b973c7f	2021-05-26 03:26:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:26:42.79+03	2021-05-26 03:26:42.798+03	
558b2913-6fa3-c47a-d7de-c3ded2329de8	2021-05-26 03:27:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:27:02.79+03	2021-05-26 03:27:02.796+03	
80c8af04-815e-311a-0e42-6e492efc1a56	2021-05-26 03:27:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:27:22.79+03	2021-05-26 03:27:22.796+03	
65ac2b1d-d278-f4e3-f659-87864a461ed7	2021-05-26 03:27:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:27:42.79+03	2021-05-26 03:27:42.796+03	
3e985350-46ee-85b8-29f5-b302bff58ff2	2021-05-26 03:28:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:28:02.79+03	2021-05-26 03:28:02.796+03	
4ea57388-5269-8cd6-70b6-c7f8dc5af2a4	2021-05-26 03:28:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:28:22.79+03	2021-05-26 03:28:22.796+03	
5934d368-99ff-0c76-a9ee-d2df95b4e308	2021-05-26 03:28:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:28:42.79+03	2021-05-26 03:28:42.814+03	
eea5166d-cd7b-e13e-939c-d0a1b5fa1ce9	2021-05-26 03:29:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:29:02.79+03	2021-05-26 03:29:02.796+03	
e9afbced-e8e3-4604-9792-d6554d197e4e	2021-05-26 03:29:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:29:22.79+03	2021-05-26 03:29:22.796+03	
97b285ca-e17d-dab4-d11e-139a7053434b	2021-05-26 03:29:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:29:42.79+03	2021-05-26 03:29:42.797+03	
198ace0c-de19-3193-889c-702018d36add	2021-05-26 03:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 03:30:00.79+03	2021-05-26 03:30:00.795+03	ERROR
9c33ee75-4ed8-2579-a4e1-d99742074c3d	2021-05-26 03:30:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:30:12.79+03	2021-05-26 03:30:12.797+03	
df3a8174-b1a6-891a-b655-3be822026df5	2021-05-26 03:30:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:30:32.79+03	2021-05-26 03:30:32.797+03	
1a155220-166c-bdb8-55e4-0fdafa28340f	2021-05-26 03:30:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:30:52.79+03	2021-05-26 03:30:52.797+03	
57bc9e51-8f0f-42fd-6047-bc280becc223	2021-05-26 03:31:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:31:12.79+03	2021-05-26 03:31:12.797+03	
ecee09d0-4887-0828-a50a-c6af0b953997	2021-05-26 03:31:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:31:32.79+03	2021-05-26 03:31:32.796+03	
2cc851cc-b008-cb1e-dedd-d59e4794d235	2021-05-26 03:31:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:31:52.79+03	2021-05-26 03:31:52.798+03	
6ec1a988-5fcb-cae0-7086-1679d7169c3a	2021-05-26 03:32:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:32:12.79+03	2021-05-26 03:32:12.797+03	
57f20fb1-b646-5c95-b24b-32b310dc0df6	2021-05-26 03:12:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:12:22.79+03	2021-05-26 03:12:22.801+03	
38bfbac4-b7b7-c30b-b286-905b0ce73ef8	2021-05-26 03:12:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:12:42.79+03	2021-05-26 03:12:42.809+03	
0ef5fe93-7de1-0b4d-3589-a4a58b1286e5	2021-05-26 03:13:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:13:02.79+03	2021-05-26 03:13:02.797+03	
d5098024-9aae-a794-1215-ae49eb61ed61	2021-05-26 03:13:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:13:22.79+03	2021-05-26 03:13:22.807+03	
2d656536-640d-9925-52a2-5e9a3c195ccf	2021-05-26 03:13:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:13:42.79+03	2021-05-26 03:13:42.796+03	
23c791b5-e024-5725-d9de-c7b46e38b859	2021-05-26 03:14:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:14:02.79+03	2021-05-26 03:14:02.796+03	
a1d022a8-c2c0-9ffa-7b83-78c3dc58d252	2021-05-26 03:14:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:14:22.79+03	2021-05-26 03:14:22.806+03	
32e7b3c4-2b3a-da45-f58d-2aa260990229	2021-05-26 03:14:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:14:42.79+03	2021-05-26 03:14:42.797+03	
4af01a83-0f1e-5f3f-ab5f-71acf21642c1	2021-05-26 03:15:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:15:02.79+03	2021-05-26 03:15:02.796+03	
66a8dc72-dfaa-7502-79cf-eb78d4e0c04f	2021-05-26 03:15:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:15:22.79+03	2021-05-26 03:15:22.796+03	
4ff208de-45a9-974d-600f-d02cb0be501b	2021-05-26 03:15:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:15:42.79+03	2021-05-26 03:15:42.797+03	
a9f9c8d2-5251-2482-44e2-04fd1b2eeda6	2021-05-26 03:16:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:16:02.79+03	2021-05-26 03:16:02.797+03	
d0d6f60d-200e-2ad0-f5ec-56e928ea26e4	2021-05-26 03:16:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:16:22.79+03	2021-05-26 03:16:22.797+03	
1d7a906f-900e-4bc0-6ba9-a88c9c0f03b8	2021-05-26 03:16:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:16:42.79+03	2021-05-26 03:16:42.796+03	
2406005e-7aee-b151-793e-6074084129e6	2021-05-26 03:17:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:17:02.79+03	2021-05-26 03:17:02.799+03	
aafdcc7c-515d-5b47-6cd3-50147fda4c30	2021-05-26 03:17:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:17:22.79+03	2021-05-26 03:17:22.797+03	
196420e5-02f7-2b46-7035-80c0af05ed90	2021-05-26 03:17:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:17:42.79+03	2021-05-26 03:17:42.797+03	
4885eb36-f4d4-be82-1615-7789175e6d04	2021-05-26 03:18:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:18:02.79+03	2021-05-26 03:18:02.81+03	
dd4d9b73-82a5-dfdc-78ed-a0633d9637c4	2021-05-26 03:18:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:18:22.79+03	2021-05-26 03:18:22.797+03	
4163f9f6-4723-bfbd-8714-baa5a04d626b	2021-05-26 03:18:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:18:42.79+03	2021-05-26 03:18:42.796+03	
28330644-ba4c-af27-f4bc-0bc1872bd838	2021-05-26 03:19:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:19:02.79+03	2021-05-26 03:19:02.796+03	
165a327f-8fab-0845-f850-6cb6978ebf3a	2021-05-26 03:19:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:19:22.79+03	2021-05-26 03:19:22.796+03	
9b284b64-7e6e-9e2c-6e76-fbad6c598269	2021-05-26 03:19:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:19:42.79+03	2021-05-26 03:19:42.797+03	
ec014429-7b95-1ec1-fc55-9a57edf7dbf7	2021-05-26 03:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 03:20:00.79+03	2021-05-26 03:20:00.794+03	ERROR
4bdb7e1d-58ab-b12e-a4c4-d249c6f35323	2021-05-26 03:20:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:20:12.79+03	2021-05-26 03:20:12.808+03	
a90fc949-9362-5cba-5a76-bb540f2a4174	2021-05-26 03:20:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:20:32.79+03	2021-05-26 03:20:32.797+03	
02c8be4d-fff6-b4a9-38a1-90e8869c8418	2021-05-26 03:20:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:20:52.79+03	2021-05-26 03:20:52.797+03	
d262b932-5f45-ae74-aee5-ec8dd64e0082	2021-05-26 03:21:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:21:12.79+03	2021-05-26 03:21:12.797+03	
e293bdea-a871-0da8-169c-e2ccf5c9a14b	2021-05-26 03:21:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:21:32.79+03	2021-05-26 03:21:32.797+03	
6fbde178-b16f-69c8-d487-2150c1cfa3e8	2021-05-26 03:21:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:21:52.79+03	2021-05-26 03:21:52.797+03	
d9e32500-2009-d702-3408-251c8fc031de	2021-05-26 03:22:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:22:12.79+03	2021-05-26 03:22:12.797+03	
21314d29-8338-c590-7916-6558bfae6556	2021-05-26 03:22:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:22:32.79+03	2021-05-26 03:22:32.807+03	
4c7e0288-f1c4-f435-aec0-ae7a5cbe2e5c	2021-05-26 03:22:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:22:52.79+03	2021-05-26 03:22:52.796+03	
c5a5b57f-8fdd-ab9b-c2d3-682e7f710bca	2021-05-26 03:23:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:23:12.79+03	2021-05-26 03:23:12.799+03	
72d84713-b403-ad45-9fcb-63be2cd7cc3d	2021-05-26 03:23:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:23:32.79+03	2021-05-26 03:23:32.796+03	
ac6e3363-75c9-917e-11d6-c12009b7f481	2021-05-26 03:23:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:23:52.79+03	2021-05-26 03:23:52.797+03	
492fd99e-d621-3656-9114-8b2336e0265c	2021-05-26 03:24:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:24:12.79+03	2021-05-26 03:24:12.797+03	
0ef47144-4c51-7a05-e74b-163d19d45b7f	2021-05-26 03:24:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:24:32.79+03	2021-05-26 03:24:32.798+03	
78489238-a7bb-f6a1-12bc-f310f01702c9	2021-05-26 03:24:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:24:52.79+03	2021-05-26 03:24:52.796+03	
de667c1c-7c59-c906-5b8d-be7e04231da5	2021-05-26 03:25:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:25:12.79+03	2021-05-26 03:25:12.797+03	
822f3989-2dae-0f73-6b26-b905d9172941	2021-05-26 03:25:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:25:32.79+03	2021-05-26 03:25:32.797+03	
070fc016-ff46-8650-fff3-012436ecdc13	2021-05-26 03:25:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:25:52.79+03	2021-05-26 03:25:52.797+03	
a0d1c967-62d5-1822-c971-3aa8beba51d0	2021-05-26 03:26:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:26:12.79+03	2021-05-26 03:26:12.796+03	
b62548b0-8974-e942-b882-b20d039919a5	2021-05-26 03:26:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:26:32.79+03	2021-05-26 03:26:32.796+03	
dccec16e-50ed-5741-ef7f-25c39780438f	2021-05-26 03:26:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:26:52.79+03	2021-05-26 03:26:52.796+03	
b1277384-c217-050d-360c-d4419401caf9	2021-05-26 03:27:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:27:12.79+03	2021-05-26 03:27:12.797+03	
484f5761-883e-f5fb-e319-a5e0b5a0a337	2021-05-26 03:27:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:27:32.79+03	2021-05-26 03:27:32.796+03	
42010608-64cb-1e14-b5c5-cb3532726e4c	2021-05-26 03:27:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:27:52.79+03	2021-05-26 03:27:52.796+03	
10857209-95e2-6cfd-61bb-e2ba7c45c8b1	2021-05-26 03:28:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:28:12.79+03	2021-05-26 03:28:12.796+03	
3bb9b184-7007-79ba-f5f6-dab9bce54175	2021-05-26 03:28:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:28:32.79+03	2021-05-26 03:28:32.796+03	
bf768722-425d-332e-35ed-3b8fd921df89	2021-05-26 03:28:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:28:52.79+03	2021-05-26 03:28:52.796+03	
a43c4e37-7bd9-62a1-6c4a-5e90f7c7f2cc	2021-05-26 03:29:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:29:12.79+03	2021-05-26 03:29:12.797+03	
de5bdfb0-8180-ae7c-8be5-a1b41b9a5627	2021-05-26 03:29:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:29:32.79+03	2021-05-26 03:29:32.796+03	
7283078e-fbb0-187e-881c-c31ba9cb9555	2021-05-26 03:29:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:29:52.79+03	2021-05-26 03:29:52.796+03	
285b4c5a-874f-8a33-224e-9b8768d8809b	2021-05-26 03:30:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:30:02.79+03	2021-05-26 03:30:02.796+03	
6a60e7dd-9635-f8d4-5d2e-d678a2eadd0b	2021-05-26 03:30:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:30:22.79+03	2021-05-26 03:30:22.796+03	
b6a10835-400d-c60b-c063-59a3ae382355	2021-05-26 03:30:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:30:42.79+03	2021-05-26 03:30:42.797+03	
66b279da-4490-8f6c-74ad-7d1fe7659202	2021-05-26 03:31:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:31:02.79+03	2021-05-26 03:31:02.796+03	
95dbd5d1-de59-3c9c-e044-724dd4e9b915	2021-05-26 03:31:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:31:22.79+03	2021-05-26 03:31:22.796+03	
cd65f360-ff42-4b51-68a3-4f3db9b67d52	2021-05-26 03:31:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:31:42.79+03	2021-05-26 03:31:42.796+03	
6dcf6817-3283-b4fc-0744-870b177fa74d	2021-05-26 03:32:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:32:02.79+03	2021-05-26 03:32:02.796+03	
e53edf08-8dbc-0a8c-4922-fb6a36a614c2	2021-05-26 03:32:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:32:22.79+03	2021-05-26 03:32:22.796+03	
3094a3c8-0a55-6ae3-3acd-30ecbef86eec	2021-05-26 03:32:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:32:42.79+03	2021-05-26 03:32:42.796+03	
9445d663-f82e-9a83-c187-0b3a81c81c3b	2021-05-26 03:32:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:32:32.79+03	2021-05-26 03:32:32.796+03	
199f3a15-7305-7d1f-096c-65a8690ad87a	2021-05-26 03:32:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:32:52.79+03	2021-05-26 03:32:52.796+03	
f643c551-2e23-b657-e364-5b7d41b0a79e	2021-05-26 03:33:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:33:12.79+03	2021-05-26 03:33:12.796+03	
b64f1156-acc0-701f-b1ec-4a53d79cc68b	2021-05-26 03:33:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:33:32.79+03	2021-05-26 03:33:32.796+03	
a31edcae-de73-c6a8-f7fd-e72b01e0e515	2021-05-26 03:33:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:33:52.79+03	2021-05-26 03:33:52.796+03	
fdac7b5a-a6e9-912c-d545-1b820f535914	2021-05-26 03:34:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:34:12.79+03	2021-05-26 03:34:12.796+03	
4c30eb55-d386-ac2c-b6a2-74571889ec36	2021-05-26 03:34:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:34:32.79+03	2021-05-26 03:34:32.797+03	
6f99709f-5354-79f7-4ac2-70ed2230429f	2021-05-26 03:34:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:34:52.79+03	2021-05-26 03:34:52.811+03	
824db590-166f-93b5-0b6f-0d631e34f5c8	2021-05-26 03:35:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:35:12.79+03	2021-05-26 03:35:12.796+03	
d471833c-d001-6ed4-bb56-592385ddbb32	2021-05-26 03:35:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:35:32.79+03	2021-05-26 03:35:32.797+03	
cf60394a-23b0-5c11-6a4d-fdd4cf0b288d	2021-05-26 03:35:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:35:52.79+03	2021-05-26 03:35:52.801+03	
cf744539-56cb-616a-ea78-848f0e471717	2021-05-26 03:36:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:36:12.79+03	2021-05-26 03:36:12.796+03	
3c284f94-d23d-ffdd-2d10-943ec3c33d06	2021-05-26 03:36:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:36:32.79+03	2021-05-26 03:36:32.797+03	
b1cf2b87-f390-cdc9-f5ca-370102a59f0b	2021-05-26 03:36:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:36:52.79+03	2021-05-26 03:36:52.797+03	
0cac5532-dcda-25b3-f302-5f14213f932e	2021-05-26 03:37:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:37:12.79+03	2021-05-26 03:37:12.798+03	
6ffbfb5a-9183-f82a-029c-4ae5a41678c3	2021-05-26 03:37:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:37:32.79+03	2021-05-26 03:37:32.797+03	
456cd0f5-8a76-f78c-b805-a0ced2498d5f	2021-05-26 03:37:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:37:52.79+03	2021-05-26 03:37:52.796+03	
09594f80-84db-830e-2aa1-1de14a050052	2021-05-26 03:38:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:38:12.79+03	2021-05-26 03:38:12.809+03	
ca37abf5-0c0c-8734-ede3-0f73b693fe73	2021-05-26 03:38:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:38:32.79+03	2021-05-26 03:38:32.797+03	
a2eaeb6d-6467-535f-1279-c7574483389a	2021-05-26 03:38:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:38:52.79+03	2021-05-26 03:38:52.799+03	
02a1892b-e68f-5272-c1c8-6f90c81e80d7	2021-05-26 03:39:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:39:12.79+03	2021-05-26 03:39:12.796+03	
4074f2cf-ba83-5649-02d0-315f2b295e80	2021-05-26 03:39:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:39:32.79+03	2021-05-26 03:39:32.798+03	
91f16b59-731b-3731-fd4f-bfcfedaaf2f2	2021-05-26 03:39:52.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:39:52.79+03	2021-05-26 03:39:52.809+03	
e84950df-7ac2-a6ff-850d-dd36205d38d1	2021-05-26 03:40:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:40:02.79+03	2021-05-26 03:40:02.796+03	
b2934cef-d1ee-6e55-41c3-df1af65d77d0	2021-05-26 03:40:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:40:22.79+03	2021-05-26 03:40:22.797+03	
02d80708-d12d-a7d4-c863-977d568b10ae	2021-05-26 03:40:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:40:42.79+03	2021-05-26 03:40:42.808+03	
947e94f5-2b45-6d77-6abc-ff282155f5ee	2021-05-26 03:41:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:41:03.79+03	2021-05-26 03:41:03.796+03	
a23c8f70-ce1d-5fcf-edb0-d417c2d28b16	2021-05-26 03:41:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:41:23.79+03	2021-05-26 03:41:23.796+03	
f08a6f3e-c685-eb6b-4d7e-464e5eeba424	2021-05-26 03:41:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:41:43.79+03	2021-05-26 03:41:43.795+03	
28aeb704-11e4-d005-15b2-7cf3b842951d	2021-05-26 03:42:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:42:03.79+03	2021-05-26 03:42:03.796+03	
eb202084-7398-8c9f-5483-cfa0eaecb2f9	2021-05-26 03:42:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:42:23.79+03	2021-05-26 03:42:23.796+03	
b2efa4a1-a422-bb65-26c6-8d6f4c1f9750	2021-05-26 03:42:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:42:43.79+03	2021-05-26 03:42:43.798+03	
7706aff0-bbb0-aac9-fe82-31028d074f2e	2021-05-26 03:43:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:43:03.79+03	2021-05-26 03:43:03.796+03	
f90ca605-b5ce-4d6e-412c-a0c905ae331f	2021-05-26 03:43:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:43:23.79+03	2021-05-26 03:43:23.796+03	
f68dbb33-277a-db59-ba2b-4327cef93560	2021-05-26 03:43:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:43:43.79+03	2021-05-26 03:43:43.796+03	
e0033fea-7822-6df1-c9ba-01a2fc49d930	2021-05-26 03:44:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:44:03.79+03	2021-05-26 03:44:03.796+03	
2514cbe5-31ea-0b63-dfc5-d5d0ee104843	2021-05-26 03:44:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:44:23.79+03	2021-05-26 03:44:23.813+03	
1e89decd-94b7-c408-0374-78bfbffe0249	2021-05-26 03:44:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:44:43.79+03	2021-05-26 03:44:43.796+03	
0ea0a667-92e2-6abc-574b-2165bd6642f6	2021-05-26 03:45:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:45:03.79+03	2021-05-26 03:45:03.796+03	
00c32103-b3b8-0584-4692-99ccbe6403db	2021-05-26 03:45:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:45:23.79+03	2021-05-26 03:45:23.796+03	
394e1c4c-8999-e989-065d-7ea11ff92e0e	2021-05-26 03:45:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:45:43.79+03	2021-05-26 03:45:43.796+03	
e2fcb4a3-bf93-7a9d-3e83-27bc6f62f1ec	2021-05-26 03:46:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:46:03.79+03	2021-05-26 03:46:03.795+03	
2f1a3317-9fdc-025a-3fca-670b6891b3ee	2021-05-26 03:46:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:46:23.79+03	2021-05-26 03:46:23.796+03	
643a15fe-0923-6172-200e-359351849e00	2021-05-26 03:46:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:46:43.79+03	2021-05-26 03:46:43.797+03	
a4a25e8b-55cd-b123-6a27-9236ec3fdb93	2021-05-26 03:47:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:47:03.79+03	2021-05-26 03:47:03.798+03	
b35aa962-2de7-07a1-84ff-83df7c659f19	2021-05-26 03:47:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:47:23.79+03	2021-05-26 03:47:23.797+03	
13170258-bfa0-45c6-3fff-30ffbbe0297d	2021-05-26 03:47:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:47:43.79+03	2021-05-26 03:47:43.797+03	
44f94148-bc52-b883-4191-f7a576cbb012	2021-05-26 03:48:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:48:03.79+03	2021-05-26 03:48:03.796+03	
c2c1b2ca-a72c-d25a-5e8c-646ee219ef55	2021-05-26 03:48:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:48:23.79+03	2021-05-26 03:48:23.796+03	
93e3b9d1-2ccf-bbfb-bc67-89243788b42a	2021-05-26 03:48:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:48:43.79+03	2021-05-26 03:48:43.797+03	
e57f15e6-13af-3bf0-918e-acf063efb084	2021-05-26 03:49:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:49:03.79+03	2021-05-26 03:49:03.805+03	
07dd2db5-f18b-562d-7adb-aa026a58e719	2021-05-26 03:49:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:49:23.79+03	2021-05-26 03:49:23.797+03	
296e25ca-7862-ec44-c414-b7584a0177c4	2021-05-26 03:49:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:49:43.79+03	2021-05-26 03:49:43.796+03	
3777af47-e752-3922-fb9e-a88099e49197	2021-05-26 03:50:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 03:50:00.79+03	2021-05-26 03:50:00.794+03	ERROR
ebdf5862-6648-3806-c01f-c9830983e1f0	2021-05-26 03:50:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:50:13.79+03	2021-05-26 03:50:13.796+03	
9ae2abc0-9416-f193-0fc1-d92179196478	2021-05-26 03:50:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:50:33.79+03	2021-05-26 03:50:33.796+03	
f47557d6-5456-7849-afbd-657bfa14264a	2021-05-26 03:50:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:50:53.79+03	2021-05-26 03:50:53.797+03	
c2956b76-0693-2d7a-ffa6-ed5ee71d0eb2	2021-05-26 03:51:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:51:13.79+03	2021-05-26 03:51:13.796+03	
edcbc48d-a2b3-da2d-8ff4-ac1f1da3f9ef	2021-05-26 03:51:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:51:33.79+03	2021-05-26 03:51:33.796+03	
bbdeaccf-ea0d-001c-7854-9073a7c78921	2021-05-26 03:51:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:51:53.79+03	2021-05-26 03:51:53.797+03	
db762819-099c-3f56-25a2-c771376d4832	2021-05-26 03:52:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:52:13.79+03	2021-05-26 03:52:13.796+03	
146a23f1-4a6c-18c9-515b-0ebd47a2b827	2021-05-26 03:52:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:52:33.79+03	2021-05-26 03:52:33.798+03	
e7480279-1eea-f7d0-7d3f-ae1dcd06d5e7	2021-05-26 03:52:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:52:53.79+03	2021-05-26 03:52:53.797+03	
84527a7d-d6b0-ef2e-c0a9-0e54600e9c82	2021-05-26 03:33:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:33:02.79+03	2021-05-26 03:33:02.796+03	
c2229fff-87cd-74f1-1eba-52bb634cd42c	2021-05-26 03:33:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:33:22.79+03	2021-05-26 03:33:22.797+03	
df700f43-3fc4-abb4-27f8-4263518d7784	2021-05-26 03:33:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:33:42.79+03	2021-05-26 03:33:42.796+03	
46ddf976-0cbb-bc85-ee89-cb7a30ff2705	2021-05-26 03:34:02.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:34:02.79+03	2021-05-26 03:34:02.797+03	
baa5dc6f-63be-66af-6953-3d6ad1e723ed	2021-05-26 03:34:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:34:22.79+03	2021-05-26 03:34:22.797+03	
92df1164-0e36-2020-266c-f0cb69edb536	2021-05-26 03:34:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:34:42.79+03	2021-05-26 03:34:42.796+03	
5f98e540-ebfb-3e7c-9845-7ac9cf1c68cc	2021-05-26 03:35:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:35:02.79+03	2021-05-26 03:35:02.796+03	
a4dcd722-172e-0101-07db-cc80c3956b07	2021-05-26 03:35:22.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:35:22.79+03	2021-05-26 03:35:22.796+03	
10adb339-34d5-501e-7c3b-b191c13975ae	2021-05-26 03:35:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:35:42.79+03	2021-05-26 03:35:42.795+03	
f9d537ca-c2c7-fe5b-388f-9c6b0e9c1aa1	2021-05-26 03:36:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:36:02.79+03	2021-05-26 03:36:02.798+03	
63b0bc09-aaba-3c06-42d0-f92eb115c381	2021-05-26 03:36:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:36:22.79+03	2021-05-26 03:36:22.797+03	
12344051-4381-c3d3-e498-f86c0c357f0e	2021-05-26 03:36:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:36:42.79+03	2021-05-26 03:36:42.797+03	
49ac3092-e325-91c1-f7b5-18759ce5769b	2021-05-26 03:37:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:37:02.79+03	2021-05-26 03:37:02.796+03	
c306e632-a8cc-47e3-524f-2fe40c57949f	2021-05-26 03:37:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:37:22.79+03	2021-05-26 03:37:22.796+03	
7d8ad135-5269-419e-1d8a-3c96bed48958	2021-05-26 03:37:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:37:42.79+03	2021-05-26 03:37:42.797+03	
c2a87a0d-a699-01d5-18e3-7b9aae9e36d1	2021-05-26 03:38:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:38:02.79+03	2021-05-26 03:38:02.796+03	
b4621a6b-c878-442c-0c6a-796f1b183880	2021-05-26 03:38:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:38:22.79+03	2021-05-26 03:38:22.796+03	
03b239b1-80ed-2b87-cc52-4105847bad9a	2021-05-26 03:38:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:38:42.79+03	2021-05-26 03:38:42.797+03	
13ba2d8a-9edf-b93c-b3d1-45220092e24a	2021-05-26 03:39:02.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:39:02.79+03	2021-05-26 03:39:02.796+03	
19904a55-2338-384a-fc79-b4bcb6ca9899	2021-05-26 03:39:22.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:39:22.79+03	2021-05-26 03:39:22.81+03	
9e5c5a86-0633-175c-f19c-25a3d1ed3fb0	2021-05-26 03:39:42.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:39:42.79+03	2021-05-26 03:39:42.798+03	
b184664a-e869-059a-f3bd-6c9a2543e86c	2021-05-26 03:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 03:40:00.79+03	2021-05-26 03:40:00.795+03	ERROR
82fd5768-49d5-76ca-967d-0b239326f1fc	2021-05-26 03:40:12.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:40:12.79+03	2021-05-26 03:40:12.797+03	
8c29554f-0783-79db-2175-a6fdd10c6aea	2021-05-26 03:40:32.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:40:32.79+03	2021-05-26 03:40:32.802+03	
15c91024-7cd0-8571-b358-d4d04155bf96	2021-05-26 03:40:52.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:40:52.791+03	2021-05-26 03:40:52.798+03	
cc267f20-9b0b-03fc-7416-b5c392ffd4a3	2021-05-26 03:41:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:41:13.79+03	2021-05-26 03:41:13.796+03	
b46b141d-3c66-f84e-0698-76bb9eae9458	2021-05-26 03:41:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:41:33.79+03	2021-05-26 03:41:33.796+03	
e45d605b-cd02-1546-fa4c-4d0498dcb797	2021-05-26 03:41:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:41:53.79+03	2021-05-26 03:41:53.795+03	
2ac94a8b-293d-c938-77b5-46b8a0a6d71d	2021-05-26 03:42:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:42:13.79+03	2021-05-26 03:42:13.797+03	
73db1eba-86f6-9b76-2204-cab57ef76ccd	2021-05-26 03:42:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:42:33.79+03	2021-05-26 03:42:33.796+03	
f9dc53d9-acc1-77ef-f778-009e779689cd	2021-05-26 03:42:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:42:53.79+03	2021-05-26 03:42:53.796+03	
9c4e62f3-7bc1-6705-fc39-c85ed9c83faa	2021-05-26 03:43:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:43:13.79+03	2021-05-26 03:43:13.796+03	
fabf4319-b71b-8b73-bf1c-39314f3ac683	2021-05-26 03:43:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:43:33.79+03	2021-05-26 03:43:33.796+03	
e38949ef-63c2-0408-4d15-85bb85e37275	2021-05-26 03:43:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:43:53.79+03	2021-05-26 03:43:53.796+03	
5239bc5f-bf0a-566e-20d8-4aaf9bc723a8	2021-05-26 03:44:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:44:13.79+03	2021-05-26 03:44:13.796+03	
46efba32-164a-83cf-a1f7-5a370549b4ab	2021-05-26 03:44:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:44:33.79+03	2021-05-26 03:44:33.797+03	
c600c697-fe69-c021-daf6-42a5a489ca03	2021-05-26 03:44:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:44:53.79+03	2021-05-26 03:44:53.799+03	
9fa62763-6343-0c51-533e-99db877b70da	2021-05-26 03:45:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:45:13.79+03	2021-05-26 03:45:13.796+03	
a98f48a6-f98a-99d6-4a68-76305cfdce39	2021-05-26 03:45:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:45:33.79+03	2021-05-26 03:45:33.796+03	
79dfe505-da71-5f1a-9e24-f803e2c6d02d	2021-05-26 03:45:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:45:53.79+03	2021-05-26 03:45:53.798+03	
581bbfae-9168-ff93-b646-2384b21adfbd	2021-05-26 03:46:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:46:13.79+03	2021-05-26 03:46:13.796+03	
25b2558e-644f-521d-f7ea-177d90e7df68	2021-05-26 03:46:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:46:33.79+03	2021-05-26 03:46:33.796+03	
053fd950-81ee-791f-5ccf-0a450dd8c206	2021-05-26 03:46:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:46:53.79+03	2021-05-26 03:46:53.796+03	
d133ff81-459b-4762-361d-cf6eae3ff30b	2021-05-26 03:47:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:47:13.79+03	2021-05-26 03:47:13.796+03	
d76cf222-976f-ffd4-b783-293ea2ecdd38	2021-05-26 03:47:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:47:33.79+03	2021-05-26 03:47:33.797+03	
e3375d7f-543a-2a13-8446-1ae495d90ea8	2021-05-26 03:47:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:47:53.79+03	2021-05-26 03:47:53.796+03	
783e8a14-7a40-ac9b-1b3b-a971f0178397	2021-05-26 03:48:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:48:13.79+03	2021-05-26 03:48:13.799+03	
c38ff198-718c-2a48-5f1b-5eaf7d65e226	2021-05-26 03:48:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:48:33.79+03	2021-05-26 03:48:33.796+03	
7d7fb209-8c1f-845e-0430-79dd759cd398	2021-05-26 03:48:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:48:53.79+03	2021-05-26 03:48:53.797+03	
9379e97c-c92f-c5d7-9e9d-06e9d5b109d3	2021-05-26 03:49:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:49:13.79+03	2021-05-26 03:49:13.797+03	
1f9055c4-f145-0a8b-1948-e1ccdf4c4827	2021-05-26 03:49:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:49:33.79+03	2021-05-26 03:49:33.796+03	
a80b8ca3-70da-d8fb-1c35-cd9399c72961	2021-05-26 03:49:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:49:53.79+03	2021-05-26 03:49:53.798+03	
3b9c356c-f7c8-07a9-eb6a-abe6caa2675d	2021-05-26 03:50:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:50:03.79+03	2021-05-26 03:50:03.796+03	
bdaad1f3-8025-c7d5-5022-aae797cf810e	2021-05-26 03:50:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:50:23.79+03	2021-05-26 03:50:23.797+03	
d83ac3f5-bf89-f054-e808-2a5a922de484	2021-05-26 03:50:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:50:43.79+03	2021-05-26 03:50:43.797+03	
0273d7fa-6dda-7949-d261-3a132006bbe9	2021-05-26 03:51:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:51:03.79+03	2021-05-26 03:51:03.798+03	
5b1745b3-ec64-e572-6bfd-f5bb764e0327	2021-05-26 03:51:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:51:23.79+03	2021-05-26 03:51:23.798+03	
3eff6d6e-bdaf-d88b-6727-091c48981c8b	2021-05-26 03:51:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:51:43.79+03	2021-05-26 03:51:43.798+03	
941152ae-0fca-7b5b-7a79-e1b1c8b10fb8	2021-05-26 03:52:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:52:03.79+03	2021-05-26 03:52:03.796+03	
a25cf81e-1028-038f-1b24-3e199ae27558	2021-05-26 03:52:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:52:23.79+03	2021-05-26 03:52:23.796+03	
99b43b2e-aa2c-701d-3fc4-49295dad2bbf	2021-05-26 03:52:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:52:43.79+03	2021-05-26 03:52:43.797+03	
3e070581-732d-6c0b-07e6-1329e9594dfb	2021-05-26 03:53:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:53:03.79+03	2021-05-26 03:53:03.799+03	
0a4be825-9431-fc91-be0a-36f97e6e2792	2021-05-26 03:53:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:53:23.79+03	2021-05-26 03:53:23.797+03	
0c84be77-5485-b7d8-0625-ec065ed7e7de	2021-05-26 03:53:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:53:13.79+03	2021-05-26 03:53:13.816+03	
d6193358-278f-60d8-611c-cf7ab13f428e	2021-05-26 03:53:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:53:33.79+03	2021-05-26 03:53:33.797+03	
a1c0ad97-d6ba-d56e-63b6-2b5211988971	2021-05-26 03:53:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:53:53.79+03	2021-05-26 03:53:53.796+03	
8b56f098-471d-daed-4d10-ce5d7679076b	2021-05-26 03:54:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:54:13.79+03	2021-05-26 03:54:13.796+03	
3e38aa43-a465-b7eb-4ad1-ca5bd869a706	2021-05-26 03:54:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:54:33.79+03	2021-05-26 03:54:33.797+03	
8e542f21-d343-6916-eed5-1d3767da5209	2021-05-26 03:54:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:54:53.79+03	2021-05-26 03:54:53.797+03	
fc95ccc0-b15a-8eb0-590f-9fd26e04e968	2021-05-26 03:55:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:55:13.79+03	2021-05-26 03:55:13.805+03	
ff3406b0-cef8-e1e6-22ba-fecbeec1262b	2021-05-26 03:55:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:55:33.79+03	2021-05-26 03:55:33.796+03	
64648590-74d9-e9ce-d8f7-2c060d18b190	2021-05-26 03:55:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:55:53.79+03	2021-05-26 03:55:53.796+03	
309f4bf7-4892-4a7a-815e-3255c451d324	2021-05-26 03:56:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:56:13.79+03	2021-05-26 03:56:13.797+03	
c73f627f-71cc-735a-3c0e-06b83c56afd5	2021-05-26 03:56:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:56:33.79+03	2021-05-26 03:56:33.796+03	
52bbd912-cac2-ba7c-f7fe-20510e70e889	2021-05-26 03:56:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:56:53.79+03	2021-05-26 03:56:53.796+03	
896c49a1-cbf6-dac5-db9e-3f45113d3e6b	2021-05-26 03:57:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:57:13.79+03	2021-05-26 03:57:13.797+03	
d2e7cc75-7370-a344-dfb2-eebc27f63606	2021-05-26 03:57:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:57:33.79+03	2021-05-26 03:57:33.808+03	
56511d2e-cafa-ad6b-8da1-e70a337c807d	2021-05-26 03:57:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:57:53.79+03	2021-05-26 03:57:53.796+03	
e8a00e9d-a7a9-0064-7063-38a3a7f6abb3	2021-05-26 03:58:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:58:13.79+03	2021-05-26 03:58:13.797+03	
b2492565-e69d-dccb-396c-b5409533307a	2021-05-26 03:58:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:58:33.79+03	2021-05-26 03:58:33.797+03	
a9b33bd9-f171-65c1-14e8-16db0c3bde90	2021-05-26 03:58:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:58:53.79+03	2021-05-26 03:58:53.797+03	
d34e470c-9da5-b3c7-7f62-240c01826501	2021-05-26 03:59:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:59:13.79+03	2021-05-26 03:59:13.797+03	
9910b5aa-8a7e-f8dc-d148-d9b870f1decd	2021-05-26 03:59:33.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:59:33.79+03	2021-05-26 03:59:33.796+03	
96fc575e-346b-51bb-682a-0bfe5d5c449d	2021-05-26 04:00:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 04:00:00.792+03	2021-05-26 04:00:00.798+03	ERROR
515cd14f-8bc1-1b08-cef3-93aacc4350f2	2021-05-26 04:00:13.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:00:13.79+03	2021-05-26 04:00:13.804+03	
2ed1c69e-6b1d-2c79-aad7-211d0802ef5c	2021-05-26 04:00:33.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:00:33.791+03	2021-05-26 04:00:33.798+03	
d5c46c79-7df0-1b60-76a1-6e471ae5afdc	2021-05-26 04:00:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:00:54.79+03	2021-05-26 04:00:54.798+03	
99066bd3-b239-30c6-02f9-e50ed8c76745	2021-05-26 04:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:01:14.79+03	2021-05-26 04:01:14.799+03	
28d98411-5252-3243-818d-590dcce1b96d	2021-05-26 04:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:01:34.79+03	2021-05-26 04:01:34.81+03	
f6be7175-c4d6-3be0-4331-fe12073b7774	2021-05-26 04:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:01:54.79+03	2021-05-26 04:01:54.796+03	
fc19b58b-1ad0-13e5-8a74-a4b4e64bcbd2	2021-05-26 04:02:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:02:14.79+03	2021-05-26 04:02:14.798+03	
68b7d891-0aa1-9551-e74a-5734c6d9b9b4	2021-05-26 04:02:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:02:34.79+03	2021-05-26 04:02:34.796+03	
4dff53e9-9297-22f7-5f39-8ec3eea6fe98	2021-05-26 04:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:02:54.79+03	2021-05-26 04:02:54.797+03	
abf68169-4b8d-1c5c-4bb0-af32766de070	2021-05-26 04:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:03:14.79+03	2021-05-26 04:03:14.797+03	
87a6c6f4-3187-faad-4b22-cb6b1778dfc8	2021-05-26 04:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:03:34.79+03	2021-05-26 04:03:34.797+03	
18d3b53a-73c7-001f-567d-270141e6662c	2021-05-26 04:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:03:54.79+03	2021-05-26 04:03:54.813+03	
a4472388-eda7-9571-b04d-333ecd46ff57	2021-05-26 04:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:04:14.79+03	2021-05-26 04:04:14.797+03	
53e08a26-418d-4fe4-5c95-f2e44d7b891b	2021-05-26 04:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:04:34.79+03	2021-05-26 04:04:34.797+03	
a54160eb-8f48-e265-403a-8b6f9f4bdced	2021-05-26 04:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:04:54.79+03	2021-05-26 04:04:54.797+03	
ca6a3f49-5417-0f45-69f1-59b086133c57	2021-05-26 04:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:05:14.79+03	2021-05-26 04:05:14.797+03	
cf25f381-ed02-84d9-4542-b57b42836d6d	2021-05-26 04:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:05:34.79+03	2021-05-26 04:05:34.796+03	
767280fb-e137-4a68-90f2-bafaf8385b14	2021-05-26 04:05:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:05:54.79+03	2021-05-26 04:05:54.796+03	
75dfda49-aa58-207c-4e4a-97c2844a4dd8	2021-05-26 04:06:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:06:14.79+03	2021-05-26 04:06:14.796+03	
9bc8ea7b-dff2-df36-d6c0-d31eed75e237	2021-05-26 04:06:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:06:34.79+03	2021-05-26 04:06:34.796+03	
c6bb1876-b145-5807-ec85-20b88f2e48c6	2021-05-26 04:06:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:06:54.79+03	2021-05-26 04:06:54.797+03	
f9e971c1-230d-bd8b-43df-ed04e67cd6ce	2021-05-26 04:07:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:07:14.79+03	2021-05-26 04:07:14.797+03	
7b2b3bef-096d-cd4a-4838-806c6e028834	2021-05-26 04:07:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:07:34.79+03	2021-05-26 04:07:34.796+03	
700246ec-b92f-6896-ec39-980b70026ee9	2021-05-26 04:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:07:54.79+03	2021-05-26 04:07:54.797+03	
f9f96577-e793-f31a-3273-8253322c23a0	2021-05-26 04:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:08:14.79+03	2021-05-26 04:08:14.796+03	
a268ad49-dba7-76b1-d3a6-ccf6d4cbb3b7	2021-05-26 04:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:08:34.79+03	2021-05-26 04:08:34.807+03	
d8febeaa-36a6-633c-a412-df571643d733	2021-05-26 04:08:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:08:54.79+03	2021-05-26 04:08:54.796+03	
ed04217c-c2bd-9cc6-13e0-d93f902c7815	2021-05-26 04:09:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:09:14.79+03	2021-05-26 04:09:14.796+03	
5a26d893-42ec-1cc2-d31d-baa4fccbf8f2	2021-05-26 04:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:09:34.79+03	2021-05-26 04:09:34.797+03	
7e99d608-f03f-1384-8199-9aa22f7dc430	2021-05-26 04:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:09:54.79+03	2021-05-26 04:09:54.796+03	
37bd1619-f13d-94e4-25bc-7d57e5be67bb	2021-05-26 04:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:10:04.79+03	2021-05-26 04:10:04.815+03	
cf4da23a-e694-f57d-00a2-147717b9a15f	2021-05-26 04:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:10:24.79+03	2021-05-26 04:10:24.797+03	
b558c7b5-1934-abe1-85d6-70b0bf226f71	2021-05-26 04:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:10:44.79+03	2021-05-26 04:10:44.796+03	
fb98e0e3-c414-b6b9-ed41-b96c1cdb192b	2021-05-26 04:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:11:04.79+03	2021-05-26 04:11:04.796+03	
5915b0ba-d23b-daf9-77f0-da4a0bc7abb3	2021-05-26 04:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:11:24.79+03	2021-05-26 04:11:24.797+03	
1fcdf41f-7f36-ce49-4c4a-1309320e9bd4	2021-05-26 04:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:11:44.79+03	2021-05-26 04:11:44.797+03	
90017220-49f5-c7a2-7b21-3dac520a0336	2021-05-26 04:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:12:04.79+03	2021-05-26 04:12:04.796+03	
3d778ca6-6394-56b7-316a-775b4c64dc3f	2021-05-26 04:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:12:24.79+03	2021-05-26 04:12:24.796+03	
23e310f0-0d62-507a-7e2d-96c9e993f5af	2021-05-26 04:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:12:44.79+03	2021-05-26 04:12:44.796+03	
5230b378-fc32-c80a-0610-6d47e81d9d33	2021-05-26 04:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:13:04.79+03	2021-05-26 04:13:04.796+03	
f80a1569-53a0-340d-1743-e5a017d56596	2021-05-26 04:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:13:24.79+03	2021-05-26 04:13:24.796+03	
b9f96608-8196-3322-3742-ba4265cb801e	2021-05-26 04:13:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:13:44.79+03	2021-05-26 04:13:44.796+03	
9486c7ba-cc97-e1e8-8636-e256cd2293ec	2021-05-26 03:53:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:53:43.79+03	2021-05-26 03:53:43.798+03	
8591e36f-882a-0f26-1740-716a6746871a	2021-05-26 03:54:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:54:03.79+03	2021-05-26 03:54:03.796+03	
94950641-e229-e27c-f5ba-55a1e524170f	2021-05-26 03:54:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:54:23.79+03	2021-05-26 03:54:23.808+03	
6324d32c-1c79-34d1-7279-3a6f4cf981d9	2021-05-26 03:54:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:54:43.79+03	2021-05-26 03:54:43.798+03	
aa385c95-1f42-d678-94f6-cdef29d8da26	2021-05-26 03:55:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:55:03.79+03	2021-05-26 03:55:03.796+03	
618c7bfb-8aa6-5742-8921-b6c223028061	2021-05-26 03:55:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:55:23.79+03	2021-05-26 03:55:23.812+03	
96a7ef5d-bd5c-1d0a-739f-4ea2190df845	2021-05-26 03:55:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:55:43.79+03	2021-05-26 03:55:43.796+03	
aff0b5f0-37fc-1734-6c8d-c6ea8dde4138	2021-05-26 03:56:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:56:03.79+03	2021-05-26 03:56:03.796+03	
dce0b620-07f5-63b3-a151-9bb3ebed9ea7	2021-05-26 03:56:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:56:23.79+03	2021-05-26 03:56:23.796+03	
044fcd2d-4996-5448-94d0-8bcc72eccd1a	2021-05-26 03:56:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:56:43.79+03	2021-05-26 03:56:43.796+03	
22119f99-6d66-e437-829d-128dadc77463	2021-05-26 03:57:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:57:03.79+03	2021-05-26 03:57:03.797+03	
962cf09d-a9e4-0e06-7ef0-275d9922fd95	2021-05-26 03:57:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:57:23.79+03	2021-05-26 03:57:23.796+03	
4f2dd2c7-9c78-519c-bc56-988bcc0f4b68	2021-05-26 03:57:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:57:43.79+03	2021-05-26 03:57:43.797+03	
db91e613-9ac8-896d-2fff-077496c89e9f	2021-05-26 03:58:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:58:03.79+03	2021-05-26 03:58:03.796+03	
8fef6a32-75e6-d7d6-b0f1-e77d8cd7d444	2021-05-26 03:58:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:58:23.79+03	2021-05-26 03:58:23.796+03	
da0071cb-4fc5-1de7-969c-1141536c61be	2021-05-26 03:58:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:58:43.79+03	2021-05-26 03:58:43.796+03	
7b6663c9-e47f-a118-687f-33215a591dc6	2021-05-26 03:59:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:59:03.79+03	2021-05-26 03:59:03.796+03	
3bc627de-c5d7-7b91-bad9-8e05937f4cd4	2021-05-26 03:59:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:59:23.79+03	2021-05-26 03:59:23.797+03	
e1076a6e-2360-62c6-c20e-1c6a34db8164	2021-05-26 03:59:43.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:59:43.79+03	2021-05-26 03:59:43.796+03	
c94a77b2-4f74-9364-9723-f613fd37a6ca	2021-05-26 03:59:53.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 03:59:53.79+03	2021-05-26 03:59:53.796+03	
93896468-70fa-bd0c-65f2-12d46ae4c3c6	2021-05-26 04:00:03.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:00:03.79+03	2021-05-26 04:00:03.797+03	
77ca2cde-8f8a-186c-d61e-b0cb404d89d9	2021-05-26 04:00:23.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:00:23.79+03	2021-05-26 04:00:23.813+03	
40ba541c-fc6e-6506-b330-2f3208b497de	2021-05-26 04:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:00:44.79+03	2021-05-26 04:00:44.797+03	
7b705611-eb3c-86e2-b6b2-6b62cef56967	2021-05-26 04:01:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:01:04.79+03	2021-05-26 04:01:04.797+03	
1afbd891-bde7-2e6b-fc27-3452d8186f46	2021-05-26 04:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:01:24.79+03	2021-05-26 04:01:24.798+03	
9cdfff4f-bbc3-a47b-f24a-703cafff6713	2021-05-26 04:01:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:01:44.79+03	2021-05-26 04:01:44.798+03	
30cca928-b01a-3a23-f6d6-d6fc7a3a9176	2021-05-26 04:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:02:04.79+03	2021-05-26 04:02:04.796+03	
b49449ce-626c-3112-a56d-49b1db08a54d	2021-05-26 04:02:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:02:24.79+03	2021-05-26 04:02:24.797+03	
ea2ea31e-2ce0-15da-dfbc-ee17337823cd	2021-05-26 04:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:02:44.79+03	2021-05-26 04:02:44.797+03	
0b7801ee-106f-229a-10cb-c6e73ccb7284	2021-05-26 04:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:03:04.79+03	2021-05-26 04:03:04.812+03	
36e87ef4-0dfc-c8de-f206-95dd59045a8d	2021-05-26 04:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:03:24.79+03	2021-05-26 04:03:24.805+03	
fcacaf9b-2195-1676-12d3-3831c74c45ee	2021-05-26 04:03:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:03:44.79+03	2021-05-26 04:03:44.797+03	
23caf12c-96b8-3755-c120-0179bf7e07fa	2021-05-26 04:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:04:04.79+03	2021-05-26 04:04:04.798+03	
d8d9cf00-6c7b-029e-296f-b7540a64a111	2021-05-26 04:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:04:24.79+03	2021-05-26 04:04:24.796+03	
c31b668c-40b1-f8ed-4d22-767b2d8994cd	2021-05-26 04:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:04:44.79+03	2021-05-26 04:04:44.808+03	
62bc64f6-1f19-d5c4-fbee-075f654d54db	2021-05-26 04:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:05:04.79+03	2021-05-26 04:05:04.796+03	
d2151cb5-81fb-2943-b177-922cf6958a78	2021-05-26 04:05:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:05:24.79+03	2021-05-26 04:05:24.8+03	
6e09e5c3-c8e5-9ed8-0200-1553e19c5816	2021-05-26 04:05:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:05:44.79+03	2021-05-26 04:05:44.796+03	
618f8ac9-cd30-be02-70b9-24d0cfd27424	2021-05-26 04:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:06:04.79+03	2021-05-26 04:06:04.806+03	
77883521-662d-636c-e0c3-88834aaeb424	2021-05-26 04:06:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:06:24.79+03	2021-05-26 04:06:24.808+03	
ca52debd-bc20-585f-41aa-163b57ed31cb	2021-05-26 04:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:06:44.79+03	2021-05-26 04:06:44.796+03	
3074878f-1a06-28d5-69cd-95af105f3e5d	2021-05-26 04:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:07:04.79+03	2021-05-26 04:07:04.798+03	
b4fe2330-5321-9852-67e6-2d548afa8d11	2021-05-26 04:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:07:24.79+03	2021-05-26 04:07:24.797+03	
2159d108-d0bf-82f4-e3cc-cf914cf56395	2021-05-26 04:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:07:44.79+03	2021-05-26 04:07:44.797+03	
508a6e83-1e5b-f0f0-3b58-5f0555981d7a	2021-05-26 04:08:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:08:04.79+03	2021-05-26 04:08:04.797+03	
f139da5f-9daa-9d3c-a968-08edf5bb327b	2021-05-26 04:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:08:24.79+03	2021-05-26 04:08:24.797+03	
68f1f425-8a20-e83e-3c13-50482e4dd14f	2021-05-26 04:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:08:44.79+03	2021-05-26 04:08:44.799+03	
5742af6c-85d8-4eac-c83e-d88ca578b9de	2021-05-26 04:09:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:09:04.79+03	2021-05-26 04:09:04.799+03	
4ea5c905-8b55-daa6-9c0b-48f0fa5627cb	2021-05-26 04:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:09:24.79+03	2021-05-26 04:09:24.796+03	
d401c3be-7c09-d9c8-d195-940bcb5ed3ef	2021-05-26 04:09:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:09:44.79+03	2021-05-26 04:09:44.797+03	
c0adbc8d-0d71-536e-7362-4c2e0ee9b2d6	2021-05-26 04:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 04:10:00.79+03	2021-05-26 04:10:00.794+03	ERROR
59083d69-60dc-d09e-c881-04d8b120f71b	2021-05-26 04:10:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:10:14.79+03	2021-05-26 04:10:14.797+03	
db10d3e2-e354-ea13-0f55-f6e03ff9dff9	2021-05-26 04:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:10:34.79+03	2021-05-26 04:10:34.811+03	
ccdb9576-6542-000e-a502-3819a2d341a2	2021-05-26 04:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:10:54.79+03	2021-05-26 04:10:54.796+03	
d5624fe3-250c-e7ca-862d-4572c3e197c2	2021-05-26 04:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:11:14.79+03	2021-05-26 04:11:14.796+03	
296dc5b3-d568-0526-c12c-f4d164fc3871	2021-05-26 04:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:11:34.79+03	2021-05-26 04:11:34.796+03	
15e1a073-0e3a-4424-b2a1-a0dd4cec3ff6	2021-05-26 04:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:11:54.79+03	2021-05-26 04:11:54.796+03	
f4ef34b7-80c7-89d4-7443-8e978c22242d	2021-05-26 04:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:12:14.79+03	2021-05-26 04:12:14.804+03	
4ee840da-a6b1-75fc-460a-f3887c4f58fd	2021-05-26 04:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:12:34.79+03	2021-05-26 04:12:34.797+03	
d3f706d0-4211-234c-8042-000c7c3a24f2	2021-05-26 04:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:12:54.79+03	2021-05-26 04:12:54.796+03	
4f46702c-9a32-d5b9-5ec5-b552fe5fdda4	2021-05-26 04:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:13:14.79+03	2021-05-26 04:13:14.798+03	
5a3eee9e-ecbe-6c1d-51b1-43efb2c541b7	2021-05-26 04:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:13:34.79+03	2021-05-26 04:13:34.796+03	
df350f67-fe21-dd04-b603-0a32d91e95b8	2021-05-26 04:13:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:13:54.79+03	2021-05-26 04:13:54.796+03	
7e6b78a8-7de7-6ebe-3328-4f4e62bcf939	2021-05-26 04:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:14:04.79+03	2021-05-26 04:14:04.796+03	
e4e3d5dc-4c08-890a-4cd8-b25327232ae0	2021-05-26 04:48:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:48:24.79+03	2021-05-26 04:48:24.797+03	
1eb65e1b-5ad6-d678-7819-8d104271a5b2	2021-05-26 04:14:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:14:24.79+03	2021-05-26 04:14:24.796+03	
cbfa187e-93c9-4ecd-9fd1-1627c4cdc29b	2021-05-26 04:14:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:14:44.79+03	2021-05-26 04:14:44.8+03	
063fb3e8-763c-9e94-174e-ecadb36610b0	2021-05-26 04:48:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:48:44.79+03	2021-05-26 04:48:44.796+03	
736ff927-9658-fb06-8199-eb06487c1d11	2021-05-26 04:15:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:15:04.79+03	2021-05-26 04:15:04.797+03	
3524eee5-dea6-a0b4-2d57-67d156314fc9	2021-05-26 04:15:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:15:24.79+03	2021-05-26 04:15:24.811+03	
6f12a794-78da-e6a5-c5e4-5d984a355852	2021-05-26 04:49:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:49:04.79+03	2021-05-26 04:49:04.807+03	
8d319aef-8b5a-6052-0ba8-73bc3c01a145	2021-05-26 04:15:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:15:44.79+03	2021-05-26 04:15:44.796+03	
5bfafb9a-9da8-87cb-49e7-a04b1e5158fa	2021-05-26 04:16:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:16:04.79+03	2021-05-26 04:16:04.796+03	
abdecd53-6582-83fc-0d11-dca562201bfe	2021-05-26 04:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:49:24.79+03	2021-05-26 04:49:24.796+03	
6fad2865-e7ca-72c4-3cfb-b8bd71f269e0	2021-05-26 04:16:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:16:24.79+03	2021-05-26 04:16:24.813+03	
973f3979-cc0e-07f9-62f7-2ff04ecd6b9d	2021-05-26 04:16:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:16:44.79+03	2021-05-26 04:16:44.796+03	
a7a04950-1a7b-e71a-9b8b-3e6451cbae2d	2021-05-26 04:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:49:44.79+03	2021-05-26 04:49:44.797+03	
425bd065-e85d-1805-206a-857c96f8ed00	2021-05-26 04:17:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:17:04.79+03	2021-05-26 04:17:04.796+03	
1cbe52d4-fcef-5fa4-1269-0dfa86bc2006	2021-05-26 04:17:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:17:24.79+03	2021-05-26 04:17:24.796+03	
965b7dea-2ab1-b711-26c4-5f08711812cc	2021-05-26 04:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 04:50:00.79+03	2021-05-26 04:50:00.794+03	ERROR
cdbf859b-9338-ee59-f63b-4a3516d5b697	2021-05-26 04:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:50:14.79+03	2021-05-26 04:50:14.796+03	
78e1055c-1f98-dfe1-4bb1-a5099a981957	2021-05-26 04:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:50:34.79+03	2021-05-26 04:50:34.796+03	
fd3c6354-9236-a9d9-d98c-0d816663741a	2021-05-26 04:50:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:50:54.79+03	2021-05-26 04:50:54.796+03	
bbbae54c-5d69-562a-c65c-7af3f3c7238e	2021-05-26 04:51:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:51:14.79+03	2021-05-26 04:51:14.797+03	
cc770e19-9803-1f17-8cac-5c3c1fe23742	2021-05-26 04:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:51:34.79+03	2021-05-26 04:51:34.796+03	
9623d333-4ed3-3a5b-d7b9-907ba34bdb84	2021-05-26 04:51:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:51:54.79+03	2021-05-26 04:51:54.796+03	
75970756-3493-2d92-2cfe-fd159f99c816	2021-05-26 04:52:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:52:14.79+03	2021-05-26 04:52:14.796+03	
db6afe78-78ee-19e4-2b1e-69dc2b575f94	2021-05-26 04:52:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:52:34.79+03	2021-05-26 04:52:34.796+03	
8ab7ced2-7a06-448b-e3f4-37c0b4399dde	2021-05-26 04:52:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:52:54.79+03	2021-05-26 04:52:54.796+03	
4df56078-5c61-b5c1-7ec0-2b3bf1e87935	2021-05-26 04:53:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:53:14.79+03	2021-05-26 04:53:14.797+03	
f78eb38f-61fa-2aee-7cc8-391fbb423df4	2021-05-26 04:53:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:53:34.79+03	2021-05-26 04:53:34.796+03	
3326795e-09b0-fc86-da08-2099b47cd7b3	2021-05-26 04:53:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:53:54.79+03	2021-05-26 04:53:54.797+03	
b6eed24c-879e-b3df-5f02-ac4a38446ad8	2021-05-26 04:54:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:54:14.79+03	2021-05-26 04:54:14.796+03	
a2cc575a-41e3-ed00-2fa8-903cfe1d505b	2021-05-26 04:54:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:54:34.79+03	2021-05-26 04:54:34.796+03	
235bb958-0c39-cb4c-a722-a10a062d4505	2021-05-26 04:54:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:54:54.79+03	2021-05-26 04:54:54.796+03	
7297df2c-55d9-7111-fef6-00eb556ca001	2021-05-26 04:55:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:55:14.79+03	2021-05-26 04:55:14.796+03	
b65f9462-9f6b-88aa-4b7c-45e27eae8c47	2021-05-26 04:55:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:55:34.79+03	2021-05-26 04:55:34.797+03	
05f60c11-6a9f-7d48-f021-10037668f3b0	2021-05-26 04:55:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:55:54.79+03	2021-05-26 04:55:54.796+03	
b273d6a0-c583-e2ca-9f56-9bcc16ac84c0	2021-05-26 04:56:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:56:14.79+03	2021-05-26 04:56:14.795+03	
e1d5e827-f82c-62cf-8d4c-af241f02092f	2021-05-26 04:56:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:56:34.79+03	2021-05-26 04:56:34.796+03	
f4a4f4dc-5a05-0f1e-3339-18a53285dda8	2021-05-26 04:56:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:56:54.79+03	2021-05-26 04:56:54.796+03	
d9ccc427-1586-c96f-b810-0bd6edb91078	2021-05-26 04:57:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:57:14.79+03	2021-05-26 04:57:14.797+03	
43dc0852-6d06-f360-558e-995b85e4d5be	2021-05-26 04:57:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:57:34.79+03	2021-05-26 04:57:34.8+03	
2cb07ff7-e578-e88f-13b4-67cb141dd60f	2021-05-26 04:57:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:57:54.79+03	2021-05-26 04:57:54.796+03	
f9b7dfde-b927-a49a-1481-be70ef97f19c	2021-05-26 04:58:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:58:14.79+03	2021-05-26 04:58:14.796+03	
ae71bd53-3b76-03d5-7a12-ab7216d3dd1f	2021-05-26 04:58:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:58:34.79+03	2021-05-26 04:58:34.796+03	
9b199756-bffc-1c8e-64df-27a8b1bf51b1	2021-05-26 04:58:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:58:54.79+03	2021-05-26 04:58:54.797+03	
2356d2e1-f74c-7f40-4be1-4c18975fc1ee	2021-05-26 04:59:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:59:14.79+03	2021-05-26 04:59:14.796+03	
a83cab72-94e4-2bb8-8092-8887f3040f9f	2021-05-26 04:59:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:59:34.79+03	2021-05-26 04:59:34.796+03	
24c252aa-6b99-403e-3e79-da2fd65a43ac	2021-05-26 04:59:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:59:54.79+03	2021-05-26 04:59:54.797+03	
8624b5e2-0b20-8a6b-a814-8b22764935ea	2021-05-26 05:00:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:00:04.79+03	2021-05-26 05:00:04.796+03	
52daa3b5-7e39-b334-c84c-4e7da93564d1	2021-05-26 05:00:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:00:24.79+03	2021-05-26 05:00:24.796+03	
d13c10bf-4653-6f6b-5130-2b2cedc9c61b	2021-05-26 05:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:00:44.79+03	2021-05-26 05:00:44.796+03	
44e050dd-c310-0e00-5f68-04a0c2e08761	2021-05-26 05:01:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:01:04.79+03	2021-05-26 05:01:04.796+03	
8beeb418-e301-d717-9226-81f239eb9300	2021-05-26 05:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:01:24.79+03	2021-05-26 05:01:24.797+03	
73252d21-91e7-d75e-e596-5cdcfe9cc0cc	2021-05-26 05:01:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:01:44.79+03	2021-05-26 05:01:44.797+03	
725fdd25-2d8a-efc6-11f8-e1cf7df08782	2021-05-26 05:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:02:04.79+03	2021-05-26 05:02:04.798+03	
c3a6b989-0260-5ce6-57da-3a6401ee9e7b	2021-05-26 05:02:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:02:24.79+03	2021-05-26 05:02:24.798+03	
9335a4dc-c28d-5efb-5530-f3fcdb179b3b	2021-05-26 05:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:02:44.79+03	2021-05-26 05:02:44.797+03	
3bb62999-fa0e-f708-02a3-d6a02729e416	2021-05-26 05:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:03:04.79+03	2021-05-26 05:03:04.796+03	
a20dad07-37d8-d90f-2890-3f36793ba84f	2021-05-26 05:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:03:24.79+03	2021-05-26 05:03:24.796+03	
f3b07f2b-5802-23d6-0d7a-a1fc96e55076	2021-05-26 05:03:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:03:44.79+03	2021-05-26 05:03:44.797+03	
3018563f-c8f5-436b-adb0-36394d8a1a2c	2021-05-26 05:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:04:04.79+03	2021-05-26 05:04:04.795+03	
a4282f28-1349-8418-9f29-a2ef66bb3bac	2021-05-26 05:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:04:24.79+03	2021-05-26 05:04:24.796+03	
7b10e183-c65a-4395-ee73-04438b3d6b1b	2021-05-26 05:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:04:44.79+03	2021-05-26 05:04:44.809+03	
a181731d-d851-7ada-c642-70a70ae50807	2021-05-26 05:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:05:04.79+03	2021-05-26 05:05:04.797+03	
598fe3f3-7362-28f3-8ca1-c73bd1c2819f	2021-05-27 18:05:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:05:45.951+03	2021-05-27 18:05:45.958+03	
f40ce9e1-be3c-9a80-afeb-9e9769be9679	2021-05-26 04:14:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:14:14.79+03	2021-05-26 04:14:14.796+03	
5f1b6f4a-5935-6f8b-baea-2560cbaf1e34	2021-05-26 04:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:50:24.79+03	2021-05-26 04:50:24.796+03	
d1a702c3-a0dd-5614-0714-021cb61b406a	2021-05-26 04:14:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:14:34.79+03	2021-05-26 04:14:34.797+03	
2b42f07e-cbff-6fd3-53aa-85607df2ba8f	2021-05-26 04:14:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:14:54.79+03	2021-05-26 04:14:54.795+03	
d3127ee2-5128-b5c4-3847-04067b560132	2021-05-26 04:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:50:44.79+03	2021-05-26 04:50:44.797+03	
69c9d877-48df-9dfe-248d-7308457b5794	2021-05-26 04:15:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:15:14.79+03	2021-05-26 04:15:14.796+03	
e74571c8-262d-0967-1287-15110bdd4162	2021-05-26 04:15:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:15:34.79+03	2021-05-26 04:15:34.796+03	
eed44a09-c751-c9f8-3600-0718c08a1b79	2021-05-26 04:51:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:51:04.79+03	2021-05-26 04:51:04.796+03	
dddec8e3-2a25-f2c2-8f25-0f9eda36a675	2021-05-26 04:15:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:15:54.79+03	2021-05-26 04:15:54.796+03	
0cb386da-d1ea-bc4e-5426-0f429dc9b968	2021-05-26 04:16:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:16:14.79+03	2021-05-26 04:16:14.796+03	
107ffec9-d0cb-cef9-0c48-90ab37db4239	2021-05-26 04:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:51:24.79+03	2021-05-26 04:51:24.798+03	
85923f3d-456d-010d-144b-c24ac73b291a	2021-05-26 04:16:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:16:34.79+03	2021-05-26 04:16:34.796+03	
2eed6ad7-9969-42aa-73cb-039eb570f3fd	2021-05-26 04:16:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:16:54.79+03	2021-05-26 04:16:54.812+03	
2f297dc0-8b64-73c4-073e-1f75d831e3c3	2021-05-26 04:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:51:44.79+03	2021-05-26 04:51:44.796+03	
9ded5790-c09d-1565-0d05-15d861ae2916	2021-05-26 04:17:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:17:14.79+03	2021-05-26 04:17:14.796+03	
013d648e-3f0f-1455-fad5-4079e8db4a19	2021-05-26 04:52:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:52:04.79+03	2021-05-26 04:52:04.799+03	
d9ddfff1-8233-1230-c8c3-fcb04fba67ba	2021-05-26 04:52:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:52:24.79+03	2021-05-26 04:52:24.796+03	
a3f10ecd-75e4-3446-2f31-b8328dd57386	2021-05-26 04:52:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:52:44.79+03	2021-05-26 04:52:44.796+03	
e88d7eb2-6273-394e-9896-ba879233bbe1	2021-05-26 04:53:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:53:04.79+03	2021-05-26 04:53:04.796+03	
cd76ad84-b9c7-c385-0dc6-3303aaef3c82	2021-05-26 04:53:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:53:24.79+03	2021-05-26 04:53:24.81+03	
b711a916-644b-996b-5a92-b362b01f2945	2021-05-26 04:53:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:53:44.79+03	2021-05-26 04:53:44.796+03	
7718a5f4-18d7-4087-1bd8-791a4dcb621e	2021-05-26 04:54:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:54:04.79+03	2021-05-26 04:54:04.796+03	
fce2ffd0-b36e-39a0-9fe1-1435fbf7b615	2021-05-26 04:54:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:54:24.79+03	2021-05-26 04:54:24.809+03	
afb0af65-b1f3-3ff7-e180-3577b602d99c	2021-05-26 04:54:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:54:44.79+03	2021-05-26 04:54:44.796+03	
7890d385-a218-7c8d-ddf4-b3b2e18facaa	2021-05-26 04:55:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:55:04.79+03	2021-05-26 04:55:04.796+03	
46fc0586-fb70-dad0-5230-e0bda96a5829	2021-05-26 04:55:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:55:24.79+03	2021-05-26 04:55:24.812+03	
9bd37c6f-fba3-e8cc-962f-03eb7b11071d	2021-05-26 04:55:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:55:44.79+03	2021-05-26 04:55:44.797+03	
5b3b654b-b324-8aa0-08d2-69beac0a386d	2021-05-26 04:56:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:56:04.79+03	2021-05-26 04:56:04.796+03	
842e9f37-d7d5-6aa0-329f-10af2866b9bf	2021-05-26 04:56:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:56:24.79+03	2021-05-26 04:56:24.797+03	
1544f469-f19f-19bc-a0ce-caac8c78a797	2021-05-26 04:56:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:56:44.79+03	2021-05-26 04:56:44.797+03	
303f2f33-7cf8-19c6-901e-b569e815a4c3	2021-05-26 04:57:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:57:04.79+03	2021-05-26 04:57:04.796+03	
70b42139-514c-0436-f2a3-34d43caf248b	2021-05-26 04:57:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:57:24.79+03	2021-05-26 04:57:24.796+03	
90280da6-768e-02e4-7509-5e974fd6f2f6	2021-05-26 04:57:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:57:44.79+03	2021-05-26 04:57:44.796+03	
c45ef3f4-0cb3-1624-b174-12c9bafb718e	2021-05-26 04:58:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:58:04.79+03	2021-05-26 04:58:04.796+03	
4d5c98ce-d503-e477-e526-c5c257c056a6	2021-05-26 04:58:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:58:24.79+03	2021-05-26 04:58:24.796+03	
89341d09-6377-dfe4-d4aa-d9b2ffbe5d1c	2021-05-26 04:58:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:58:44.79+03	2021-05-26 04:58:44.796+03	
1149ea46-37c5-6a14-24fa-0342098799c1	2021-05-26 04:59:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:59:04.79+03	2021-05-26 04:59:04.796+03	
cfc9b4a1-5f81-7002-9222-cdb9b29e79b0	2021-05-26 04:59:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:59:24.79+03	2021-05-26 04:59:24.796+03	
03c0f324-8066-9593-9b59-bda83482ab27	2021-05-26 04:59:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 04:59:44.79+03	2021-05-26 04:59:44.797+03	
5aae1a36-6fd0-b420-7a01-5e1e34aa8312	2021-05-26 05:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 05:00:00.79+03	2021-05-26 05:00:00.795+03	ERROR
ab5f66bf-b33d-ec57-b333-e4d14ad961e0	2021-05-26 05:00:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:00:14.79+03	2021-05-26 05:00:14.797+03	
4ae57808-f835-e271-4bf3-edc3474ac755	2021-05-26 05:00:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:00:34.79+03	2021-05-26 05:00:34.796+03	
4e26520c-2ea8-5687-a5e3-baa5966258ff	2021-05-26 05:00:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:00:54.79+03	2021-05-26 05:00:54.796+03	
8173e6da-94d0-3495-a2d0-94f3b5185952	2021-05-26 05:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:01:14.79+03	2021-05-26 05:01:14.797+03	
0757cd89-0485-89ee-b782-65f5eab497df	2021-05-26 05:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:01:34.79+03	2021-05-26 05:01:34.796+03	
735bbfa7-2919-7d58-a4f1-1b8b9dbc21ee	2021-05-26 05:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:01:54.79+03	2021-05-26 05:01:54.796+03	
f10f57b6-5c59-73c4-f854-576851dc3c42	2021-05-26 05:02:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:02:14.79+03	2021-05-26 05:02:14.798+03	
650d7c2a-5aa0-0695-d2d2-42cadbbd1339	2021-05-26 05:02:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:02:34.79+03	2021-05-26 05:02:34.796+03	
8964e6ea-f3a5-0fa9-29a6-4944700716b7	2021-05-26 05:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:02:54.79+03	2021-05-26 05:02:54.797+03	
46a19c6b-ba03-c4a3-3a0e-064a53aa566a	2021-05-26 05:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:03:14.79+03	2021-05-26 05:03:14.796+03	
9105b8f8-43ab-0a67-34f8-36331bb08fc4	2021-05-26 05:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:03:34.79+03	2021-05-26 05:03:34.796+03	
430d75ea-2095-1421-47af-2dab4264c314	2021-05-26 05:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:03:54.79+03	2021-05-26 05:03:54.796+03	
49e29523-c090-1c1d-d8f7-ad76b1ffb0f9	2021-05-26 05:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:04:14.79+03	2021-05-26 05:04:14.796+03	
5aabb13a-7a96-1446-6cf9-18181d159e82	2021-05-26 05:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:04:34.79+03	2021-05-26 05:04:34.796+03	
46eca4ee-f5a9-3b72-9c18-30debbf0aa4a	2021-05-26 05:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:04:54.79+03	2021-05-26 05:04:54.796+03	
f3d88ab8-068f-4af3-8262-f1697fba995d	2021-05-26 05:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:05:14.79+03	2021-05-26 05:05:14.797+03	
cbfe6f0c-c62a-97dc-8d86-a7330e2c7215	2021-05-26 05:05:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:05:24.79+03	2021-05-26 05:05:24.798+03	
6ca3ac90-af26-e702-e33a-1ce3ef4e2fb3	2021-05-26 05:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:05:34.79+03	2021-05-26 05:05:34.796+03	
b4ccfb4d-d585-cf9d-327b-63ce8864997a	2021-05-26 05:05:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:05:44.79+03	2021-05-26 05:05:44.796+03	
1e8334d8-1443-3703-e775-6ceec2883e17	2021-05-26 05:05:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:05:54.79+03	2021-05-26 05:05:54.796+03	
a64b34a8-c83c-b8aa-3c4b-858c4c3b8054	2021-05-26 05:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:06:04.79+03	2021-05-26 05:06:04.797+03	
dddfaf52-024d-25f4-a830-91e5172234fa	2021-05-26 05:06:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:06:14.79+03	2021-05-26 05:06:14.796+03	
a50573d6-5c04-136f-140f-0d65a9e8dc17	2021-05-26 05:06:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:06:24.79+03	2021-05-26 05:06:24.797+03	
3cffe8b5-8434-1379-8243-85950020f87f	2021-05-26 05:06:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:06:34.79+03	2021-05-26 05:06:34.797+03	
aca648d1-11ed-1283-e4c2-a563fef4bc60	2021-05-26 05:06:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:06:54.79+03	2021-05-26 05:06:54.799+03	
e395a704-1803-1d4e-110b-227169a010fa	2021-05-26 05:07:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:07:14.79+03	2021-05-26 05:07:14.798+03	
f13dcf6a-cf05-5b06-d820-0311c0ad016d	2021-05-26 05:07:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:07:34.79+03	2021-05-26 05:07:34.798+03	
92f340f6-098b-b455-9465-973fe30eac45	2021-05-26 05:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:07:54.79+03	2021-05-26 05:07:54.796+03	
dbcac2f2-007a-8d4c-c759-1215b626c1df	2021-05-26 05:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:08:14.79+03	2021-05-26 05:08:14.809+03	
ba628159-a960-0382-f21e-03ddaac3c1bc	2021-05-26 05:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:08:34.79+03	2021-05-26 05:08:34.798+03	
c59bf6a6-486c-ed65-15d3-3d032cbdffdb	2021-05-26 05:08:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:08:54.79+03	2021-05-26 05:08:54.796+03	
43f0cd6e-ea17-2d88-0c55-4db3f02e03ae	2021-05-26 05:09:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:09:14.79+03	2021-05-26 05:09:14.797+03	
35bb89ec-d98d-591b-8382-69bdc21a2204	2021-05-26 05:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:09:34.79+03	2021-05-26 05:09:34.797+03	
0e2b20d9-9883-24ad-e68f-49cbb64f952b	2021-05-26 05:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:09:54.79+03	2021-05-26 05:09:54.796+03	
1e3e8d56-3144-9567-c040-55598ad70cc0	2021-05-26 05:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:10:04.79+03	2021-05-26 05:10:04.796+03	
e43bd636-593d-f976-5e12-4eee155f8371	2021-05-26 05:10:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:10:24.79+03	2021-05-26 05:10:24.798+03	
5d0efa42-6104-5cd7-6e00-d7f9f276e06e	2021-05-26 05:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:10:44.79+03	2021-05-26 05:10:44.797+03	
1c4d5d02-704c-ca22-4a70-990eceecebcf	2021-05-26 05:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:11:04.79+03	2021-05-26 05:11:04.797+03	
92a9a686-1144-84d6-823c-84a7a9000364	2021-05-26 05:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:11:24.79+03	2021-05-26 05:11:24.797+03	
9aba9972-e9ec-bcff-1aa7-5283d3c84153	2021-05-26 05:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:11:44.79+03	2021-05-26 05:11:44.796+03	
8cab9dfa-f6a9-e255-afaa-cb4e282974e6	2021-05-26 05:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:12:04.79+03	2021-05-26 05:12:04.796+03	
a27434bc-ba6d-e9b9-de30-aa191312bbb8	2021-05-26 05:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:12:24.79+03	2021-05-26 05:12:24.804+03	
1af2efd6-3c40-944f-3e0f-787712ee805b	2021-05-26 05:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:12:44.79+03	2021-05-26 05:12:44.796+03	
c896f76d-746a-97f1-988f-6fab90bd40d5	2021-05-26 05:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:13:04.79+03	2021-05-26 05:13:04.796+03	
68c4f480-6038-19a7-a458-ecdcba5e23b3	2021-05-26 05:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:13:24.79+03	2021-05-26 05:13:24.797+03	
027fa3b4-7c65-ed84-cad9-bb3de49abab3	2021-05-26 05:13:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:13:44.79+03	2021-05-26 05:13:44.796+03	
4db5c4cb-4cbd-027c-1918-07cee673923c	2021-05-26 05:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:14:04.79+03	2021-05-26 05:14:04.796+03	
21b42b7d-4cda-6491-cfa1-8e1a99bac4ac	2021-05-26 05:14:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:14:24.79+03	2021-05-26 05:14:24.796+03	
44a34071-e3d8-4711-1271-270e918d7510	2021-05-26 05:14:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:14:44.79+03	2021-05-26 05:14:44.797+03	
11d1d614-ba9a-4661-a60b-4bf1d88f3673	2021-05-26 05:15:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:15:04.79+03	2021-05-26 05:15:04.796+03	
5fb7b706-afe9-130c-dda5-bdab9eca1dad	2021-05-26 05:15:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:15:24.79+03	2021-05-26 05:15:24.796+03	
d50e2f55-0fda-9a12-861b-8a34ff5a107a	2021-05-26 05:15:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:15:44.79+03	2021-05-26 05:15:44.797+03	
30564eda-e718-07c8-9843-307d0d31d261	2021-05-26 05:16:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:16:04.79+03	2021-05-26 05:16:04.796+03	
a54be148-105f-304a-3b88-4dad1c8f3bda	2021-05-26 05:16:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:16:24.79+03	2021-05-26 05:16:24.797+03	
6092e072-e46f-e314-bbd5-e8d3c880824e	2021-05-26 05:16:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:16:44.79+03	2021-05-26 05:16:44.796+03	
b9e1f553-6897-fcbc-c1d3-5846e1499821	2021-05-26 05:17:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:17:04.79+03	2021-05-26 05:17:04.796+03	
f38a2313-d70f-6e67-a0be-9a30986f1ee9	2021-05-26 05:17:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:17:24.79+03	2021-05-26 05:17:24.797+03	
57b8826e-0869-6321-830b-27cb8b2e3b2a	2021-05-26 05:17:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:17:44.79+03	2021-05-26 05:17:44.797+03	
b87a7d79-9388-d345-881f-5e7640e66ffd	2021-05-26 05:18:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:18:04.79+03	2021-05-26 05:18:04.797+03	
11362695-ef69-9571-f2ad-96e5bad9d451	2021-05-26 05:18:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:18:24.79+03	2021-05-26 05:18:24.797+03	
797bdea8-4d86-a82e-18b2-7e1375d98276	2021-05-26 05:18:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:18:44.79+03	2021-05-26 05:18:44.796+03	
1088cf7f-5ff9-9698-2db4-faf5b4e8fbb3	2021-05-26 05:19:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:19:04.79+03	2021-05-26 05:19:04.797+03	
abd0b815-dd07-7154-fa72-7f31a3cefcce	2021-05-26 05:19:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:19:24.79+03	2021-05-26 05:19:24.797+03	
abc1ab54-3be8-a5c1-5269-c52266f5b1c0	2021-05-26 05:19:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:19:44.79+03	2021-05-26 05:19:44.799+03	
fb7fb37f-d4e2-390a-a8e0-b2c6c9c595b3	2021-05-26 05:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 05:20:00.79+03	2021-05-26 05:20:00.794+03	ERROR
32da1c65-39b5-14e7-0a78-294bc90b438f	2021-05-26 05:20:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:20:14.79+03	2021-05-26 05:20:14.797+03	
8cc8bee4-9325-fb92-75b1-f4bea87507a0	2021-05-26 05:20:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:20:34.79+03	2021-05-26 05:20:34.796+03	
c0b74982-e39c-5136-ecc4-9a70e8481a5b	2021-05-26 05:20:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:20:54.79+03	2021-05-26 05:20:54.797+03	
37e35046-25b4-10eb-dac1-f32c80ccb277	2021-05-26 05:21:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:21:14.79+03	2021-05-26 05:21:14.796+03	
387c6633-e9f2-f03c-c564-317d7d9814a1	2021-05-26 05:21:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:21:34.79+03	2021-05-26 05:21:34.797+03	
c6512838-d0be-df3d-32bc-1cb7406a9519	2021-05-26 05:21:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:21:54.79+03	2021-05-26 05:21:54.798+03	
4b379438-0e99-2729-beb3-b574d458dbaf	2021-05-26 05:22:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:22:14.79+03	2021-05-26 05:22:14.813+03	
adf6f030-0d78-935b-6cfe-f37125ca8b98	2021-05-26 05:22:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:22:34.79+03	2021-05-26 05:22:34.839+03	
bef294b1-886a-c82b-f293-703c78cce05b	2021-05-26 05:22:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:22:54.79+03	2021-05-26 05:22:54.796+03	
dbb65595-161f-1db7-07ee-c2383f8b976a	2021-05-26 05:23:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:23:14.79+03	2021-05-26 05:23:14.797+03	
10baf812-713a-97c3-5e7d-5c969a5bea8c	2021-05-26 05:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:23:34.79+03	2021-05-26 05:23:34.798+03	
35c7150b-7611-ddd1-bb0a-ecbdd1ca2f99	2021-05-26 05:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:23:54.79+03	2021-05-26 05:23:54.796+03	
86eec6a0-b6e6-cb79-fa38-62c778894a41	2021-05-26 05:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:24:14.79+03	2021-05-26 05:24:14.808+03	
5ddebd86-b329-1605-e639-d77fcf15f05f	2021-05-26 05:24:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:24:34.79+03	2021-05-26 05:24:34.797+03	
0fbbadd6-1075-f657-f5c2-9f049ef95942	2021-05-26 05:24:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:24:54.79+03	2021-05-26 05:24:54.796+03	
eac05eeb-b06d-c489-f9d4-9edf48194a92	2021-05-26 05:25:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:25:14.79+03	2021-05-26 05:25:14.796+03	
77ccac60-5688-8dff-8c38-02f28e4027e3	2021-05-26 05:25:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:25:34.79+03	2021-05-26 05:25:34.8+03	
de0f1f9f-31ec-2094-1589-2e2c23d8f818	2021-05-26 05:25:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:25:54.79+03	2021-05-26 05:25:54.796+03	
764b3c75-c564-83cb-8f35-7408da3523b0	2021-05-26 05:26:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:26:14.79+03	2021-05-26 05:26:14.797+03	
478fb857-4ab9-c199-1be4-3824c36b597a	2021-05-26 05:26:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:26:34.79+03	2021-05-26 05:26:34.798+03	
b52da7dd-37d8-8558-e5eb-75878ecd1336	2021-05-26 05:26:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:26:54.79+03	2021-05-26 05:26:54.797+03	
62f18e41-db8a-e143-9fdd-78ff56983fce	2021-05-26 05:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:06:44.79+03	2021-05-26 05:06:44.806+03	
fb6bde20-6b2c-ccd1-b961-aa584edf7496	2021-05-26 05:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:07:04.79+03	2021-05-26 05:07:04.797+03	
b53301c0-5905-cb17-c980-0a364e8924c1	2021-05-26 05:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:07:24.79+03	2021-05-26 05:07:24.797+03	
9edbd167-6536-fad1-3479-c482afc03b55	2021-05-26 05:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:07:44.79+03	2021-05-26 05:07:44.796+03	
69793d80-ed0b-47a8-2004-6ae3d0fa37d2	2021-05-26 05:08:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:08:04.79+03	2021-05-26 05:08:04.796+03	
743e1e58-2069-6b33-cebd-6f993ce9d42f	2021-05-26 05:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:08:24.79+03	2021-05-26 05:08:24.797+03	
facbebaa-5a2e-1c67-c6e2-fd6e5d46945f	2021-05-26 05:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:08:44.79+03	2021-05-26 05:08:44.797+03	
92fc5a02-1b61-a3db-f989-604bee8fd3c9	2021-05-26 05:09:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:09:04.79+03	2021-05-26 05:09:04.796+03	
52d279d0-ff06-bcf6-8acf-1cbbeb5c003d	2021-05-26 05:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:09:24.79+03	2021-05-26 05:09:24.796+03	
7203532f-6e09-ba48-4604-9fe7f1770e54	2021-05-26 05:09:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:09:44.79+03	2021-05-26 05:09:44.797+03	
312cfaae-80ea-9c2c-10d7-f070b2dcc604	2021-05-26 05:10:00.792	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 05:10:00.791+03	2021-05-26 05:10:00.796+03	ERROR
607c8d56-f989-f841-fb32-deba86b474ad	2021-05-26 05:10:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:10:14.79+03	2021-05-26 05:10:14.796+03	
d373ab72-4371-c486-da38-eb7f4be1c436	2021-05-26 05:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:10:34.79+03	2021-05-26 05:10:34.798+03	
a5301b1b-ca14-0cd3-9872-59e26a345521	2021-05-26 05:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:10:54.79+03	2021-05-26 05:10:54.797+03	
71481278-cab7-ae9d-a850-0ca3b9ac7595	2021-05-26 05:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:11:14.79+03	2021-05-26 05:11:14.796+03	
afefcfb7-08fc-283b-9335-f6dd365fa1de	2021-05-26 05:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:11:34.79+03	2021-05-26 05:11:34.798+03	
709c5f19-36d3-2ee0-4a5c-bd1fcc47483b	2021-05-26 05:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:11:54.79+03	2021-05-26 05:11:54.796+03	
58044732-b8af-5ef6-b1dd-44e6d7aa6186	2021-05-26 05:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:12:14.79+03	2021-05-26 05:12:14.796+03	
599657ee-a726-ca1b-00c2-9b6f975a99c4	2021-05-26 05:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:12:34.79+03	2021-05-26 05:12:34.796+03	
9c0893ba-3251-b7c8-c946-b5230d3e8a4b	2021-05-26 05:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:12:54.79+03	2021-05-26 05:12:54.797+03	
c5957515-676b-350c-1723-98d4c183943a	2021-05-26 05:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:13:14.79+03	2021-05-26 05:13:14.796+03	
18d71a99-4ca6-7b3a-c213-4ebff581d992	2021-05-26 05:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:13:34.79+03	2021-05-26 05:13:34.798+03	
a859b119-0618-4dad-220d-d47406af0516	2021-05-26 05:13:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:13:54.79+03	2021-05-26 05:13:54.796+03	
0e1e3790-e262-8fda-ed49-6b9940902667	2021-05-26 05:14:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:14:14.79+03	2021-05-26 05:14:14.797+03	
2b2f2680-b397-ad03-f745-d1988bd31933	2021-05-26 05:14:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:14:34.79+03	2021-05-26 05:14:34.798+03	
f329f4a1-5770-6460-57bd-e30f9d862a34	2021-05-26 05:14:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:14:54.79+03	2021-05-26 05:14:54.797+03	
aa4b0db0-ec7f-7e0f-b64a-9accc1456c67	2021-05-26 05:15:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:15:14.79+03	2021-05-26 05:15:14.797+03	
52807af2-729d-4b76-f922-756235f13cf3	2021-05-26 05:15:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:15:34.79+03	2021-05-26 05:15:34.796+03	
3fc2a9a1-5e2b-8a5f-a968-d168e73010a3	2021-05-26 05:15:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:15:54.79+03	2021-05-26 05:15:54.796+03	
d77b155e-5825-5eb4-9333-3106e476070b	2021-05-26 05:16:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:16:14.79+03	2021-05-26 05:16:14.796+03	
eb4ee022-f83f-3026-a9b3-ede836ecad16	2021-05-26 05:16:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:16:34.79+03	2021-05-26 05:16:34.798+03	
63251f01-062b-72cb-4177-65d75b090082	2021-05-26 05:16:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:16:54.79+03	2021-05-26 05:16:54.797+03	
f0f4264a-01ef-a668-98c6-fb0257f3f9f5	2021-05-26 05:17:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:17:14.79+03	2021-05-26 05:17:14.815+03	
93d785a2-fb40-2583-77bf-8673aa143780	2021-05-26 05:17:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:17:34.79+03	2021-05-26 05:17:34.798+03	
fe885c1f-4f1a-1127-c55b-0ebd2792e67d	2021-05-26 05:17:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:17:54.79+03	2021-05-26 05:17:54.796+03	
345188e9-8ea7-4641-9751-f1e87c25730f	2021-05-26 05:18:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:18:14.79+03	2021-05-26 05:18:14.796+03	
61c013ed-70f4-101c-8f5d-e0b9c4d282ed	2021-05-26 05:18:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:18:34.79+03	2021-05-26 05:18:34.799+03	
1133cefd-28a1-0b8a-7c2f-8af401c48346	2021-05-26 05:18:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:18:54.79+03	2021-05-26 05:18:54.796+03	
aadcfa7c-5bbb-fe4e-54f7-59d0263c576b	2021-05-26 05:19:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:19:14.79+03	2021-05-26 05:19:14.796+03	
c3d4e824-d4b5-394f-a918-768107bba6eb	2021-05-26 05:19:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:19:34.79+03	2021-05-26 05:19:34.797+03	
945bf62c-d7a1-c045-c04c-5d120f8574be	2021-05-26 05:19:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:19:54.79+03	2021-05-26 05:19:54.796+03	
f12fda57-6b70-cffe-d1f4-13cab84d62d5	2021-05-26 05:20:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:20:04.79+03	2021-05-26 05:20:04.797+03	
45b216eb-a1aa-0e8b-4a03-f210a7a3a041	2021-05-26 05:20:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:20:24.79+03	2021-05-26 05:20:24.797+03	
34f34403-0fb3-2c59-b0fe-01554d3b6fcd	2021-05-26 05:20:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:20:44.79+03	2021-05-26 05:20:44.796+03	
d024ffcf-804b-a951-71c9-bc856c5a52a1	2021-05-26 05:21:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:21:04.79+03	2021-05-26 05:21:04.796+03	
b9708598-5cd1-fcd6-cd15-952264691d12	2021-05-26 05:21:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:21:24.79+03	2021-05-26 05:21:24.798+03	
bf966695-1f79-5895-b356-835e0fae4c9a	2021-05-26 05:21:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:21:44.79+03	2021-05-26 05:21:44.797+03	
3b9625a8-da20-85c0-4e7e-23ee17b53b92	2021-05-26 05:22:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:22:04.79+03	2021-05-26 05:22:04.796+03	
2553f774-8b72-1bde-a070-c1c435911184	2021-05-26 05:22:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:22:24.79+03	2021-05-26 05:22:24.803+03	
41994550-b867-6c85-29e9-b802f5546875	2021-05-26 05:22:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:22:44.79+03	2021-05-26 05:22:44.796+03	
3d6dd810-473b-88f9-380b-aac45bd5dc54	2021-05-26 05:23:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:23:04.79+03	2021-05-26 05:23:04.796+03	
f6b946ca-2fa1-d855-8769-0890c195e71a	2021-05-26 05:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:23:24.79+03	2021-05-26 05:23:24.796+03	
03484135-eb1c-c5ed-5b20-93ba9e32550b	2021-05-26 05:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:23:44.79+03	2021-05-26 05:23:44.798+03	
a64e7b4b-0a33-c2ab-4cc6-32f532651e4c	2021-05-26 05:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:24:04.79+03	2021-05-26 05:24:04.798+03	
fd9a6015-5159-dfa4-ced7-a155567e268c	2021-05-26 05:24:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:24:24.79+03	2021-05-26 05:24:24.796+03	
7f7fe8e6-6a9f-c631-e54e-f7234d1f5c2d	2021-05-26 05:24:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:24:44.79+03	2021-05-26 05:24:44.797+03	
5cec7225-e5e9-a1de-f70d-cea370f1aab8	2021-05-26 05:25:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:25:04.79+03	2021-05-26 05:25:04.816+03	
7cd7e48a-4666-db56-30e0-08cf1704d46e	2021-05-26 05:25:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:25:24.79+03	2021-05-26 05:25:24.809+03	
c5667998-5379-b665-40c6-efc9c0e4c903	2021-05-26 05:25:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:25:44.79+03	2021-05-26 05:25:44.796+03	
5fd4d6e2-a1c8-cf87-09b1-0f085738991b	2021-05-26 05:26:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:26:04.79+03	2021-05-26 05:26:04.797+03	
32128066-c53d-05b9-53b4-0df3f22b340a	2021-05-26 05:26:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:26:24.79+03	2021-05-26 05:26:24.796+03	
12133825-2057-78b0-ca22-f9ccc084bcc1	2021-05-26 05:26:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:26:44.79+03	2021-05-26 05:26:44.796+03	
32a66b26-6c72-2e69-439c-a0ee1d552096	2021-05-26 05:27:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:27:04.79+03	2021-05-26 05:27:04.798+03	
4b7adf29-981a-2b70-354c-5d93ca939ae8	2021-05-26 05:27:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:27:14.79+03	2021-05-26 05:27:14.796+03	
e207d465-7cc1-0ded-d9b9-aac27aa1c223	2021-05-26 05:27:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:27:34.79+03	2021-05-26 05:27:34.797+03	
844c3396-4322-a44d-ea4d-84cf16b3939e	2021-05-26 05:27:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:27:54.79+03	2021-05-26 05:27:54.796+03	
1d2885c8-59a6-1427-52b4-1256e8078ad3	2021-05-26 05:28:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:28:14.79+03	2021-05-26 05:28:14.796+03	
b881a4e8-23e3-2859-1512-9c0f480afd66	2021-05-26 05:28:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:28:34.79+03	2021-05-26 05:28:34.796+03	
a9f6d6e5-f338-99d6-0a63-947d33f4fcd6	2021-05-26 05:28:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:28:54.79+03	2021-05-26 05:28:54.803+03	
03faabad-5a86-517e-f28f-14054b3f5443	2021-05-26 05:29:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:29:14.79+03	2021-05-26 05:29:14.812+03	
51819ed8-2167-7264-dab3-c08b181e9045	2021-05-26 05:29:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:29:34.79+03	2021-05-26 05:29:34.798+03	
10a28b22-e990-5247-20ff-dbaec7edec72	2021-05-26 05:29:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:29:54.79+03	2021-05-26 05:29:54.796+03	
f89017a3-6b6e-783f-314e-c0a25f28aac4	2021-05-26 05:30:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:30:04.79+03	2021-05-26 05:30:04.798+03	
b592ed58-fc14-e14f-7a31-8c1e9ef82265	2021-05-26 05:30:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:30:24.79+03	2021-05-26 05:30:24.797+03	
39c25a98-3024-467b-4781-cec5d0f5b341	2021-05-26 05:30:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:30:44.79+03	2021-05-26 05:30:44.812+03	
aadd6bdf-50a0-d627-87ac-e85f067cd0cd	2021-05-26 05:31:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:31:04.79+03	2021-05-26 05:31:04.797+03	
2f2f4ead-a74a-8c29-f42c-ef57f54d3432	2021-05-26 05:31:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:31:24.79+03	2021-05-26 05:31:24.806+03	
bd1e5353-0cde-ad16-7ea6-f562e37ee295	2021-05-26 05:31:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:31:44.79+03	2021-05-26 05:31:44.796+03	
bfcc2ce1-ad03-e64a-368a-b0104adc08af	2021-05-26 05:32:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:32:04.79+03	2021-05-26 05:32:04.797+03	
010a0034-ed8b-1733-7335-b78d370e4550	2021-05-26 05:32:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:32:24.79+03	2021-05-26 05:32:24.796+03	
ee798ecf-0370-5bf3-6ee2-ccf1790e58a8	2021-05-26 05:32:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:32:44.79+03	2021-05-26 05:32:44.796+03	
a08227bd-d84b-0839-4017-bc395a3f9464	2021-05-26 05:33:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:33:04.79+03	2021-05-26 05:33:04.85+03	
5b13b517-7023-3234-d41b-00afa8828527	2021-05-26 05:33:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:33:24.79+03	2021-05-26 05:33:24.81+03	
7336f58e-a27b-2df1-48b9-fc83fb5a489f	2021-05-26 05:33:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:33:44.79+03	2021-05-26 05:33:44.796+03	
9a923a2e-836a-835a-911b-e26aa75f62d8	2021-05-26 05:34:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:34:04.79+03	2021-05-26 05:34:04.797+03	
9273e6db-f28a-5e16-e269-6c6b709e95be	2021-05-26 05:34:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:34:24.79+03	2021-05-26 05:34:24.796+03	
fc0b1fd7-0127-aad4-c4a1-25e4a4bc1c4d	2021-05-26 05:34:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:34:44.79+03	2021-05-26 05:34:44.798+03	
5a1e2dc6-fdc9-16b1-2ef6-40433e6cb083	2021-05-26 05:35:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:35:04.79+03	2021-05-26 05:35:04.846+03	
33712002-fb4b-105a-c354-f7fc6976e23c	2021-05-26 05:35:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:35:24.79+03	2021-05-26 05:35:24.796+03	
d048e717-249b-f979-a831-8bc601e1fd02	2021-05-26 05:35:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:35:44.79+03	2021-05-26 05:35:44.796+03	
da3aca28-1a43-acb2-bcea-ab67e4ea1ee7	2021-05-26 05:36:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:36:04.79+03	2021-05-26 05:36:04.815+03	
e78563a3-e080-0466-4950-252293440cbd	2021-05-26 05:36:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:36:24.79+03	2021-05-26 05:36:24.797+03	
24787bb1-1cc1-62fd-d433-a0a2bde454ff	2021-05-26 05:36:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:36:44.79+03	2021-05-26 05:36:44.796+03	
ce304e67-3410-5293-d89b-812ec5e1ea1e	2021-05-26 05:37:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:37:04.79+03	2021-05-26 05:37:04.797+03	
aed93866-ac50-3e41-9e8d-984a97bbd5d9	2021-05-26 05:37:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:37:24.79+03	2021-05-26 05:37:24.796+03	
1407de98-07f4-47ec-5305-4f7f7b704f32	2021-05-26 05:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:37:44.79+03	2021-05-26 05:37:44.796+03	
5fa220d7-4eb3-d5a2-7371-60bcfeca4e72	2021-05-26 05:38:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:38:04.79+03	2021-05-26 05:38:04.803+03	
bc007c4f-4d34-7b80-3537-b852b53c531c	2021-05-26 05:38:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:38:24.79+03	2021-05-26 05:38:24.796+03	
0beba9e6-a7e8-ad59-e3f4-862212b43de3	2021-05-26 05:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:38:44.79+03	2021-05-26 05:38:44.796+03	
9694c360-281a-491c-5ba2-1428bc68b6b6	2021-05-26 05:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:39:04.79+03	2021-05-26 05:39:04.796+03	
857d2ddf-29b8-dd8f-3488-5d6fe0fb4777	2021-05-26 05:39:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:39:24.79+03	2021-05-26 05:39:24.796+03	
85e5e3f6-7595-103f-cffc-af0b818bbb9a	2021-05-26 05:39:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:39:44.79+03	2021-05-26 05:39:44.796+03	
1f8bf5c2-ba26-f542-3bf1-deccde0f1596	2021-05-26 05:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 05:40:00.79+03	2021-05-26 05:40:00.794+03	ERROR
f59b596f-6303-04fe-bfe4-a138ba853c6e	2021-05-26 05:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:40:14.79+03	2021-05-26 05:40:14.796+03	
6a0bc2e3-230e-334d-9104-b27164280aa4	2021-05-26 05:40:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:40:34.79+03	2021-05-26 05:40:34.809+03	
3b32e606-0df3-e07c-b83a-1a20e7bbd13b	2021-05-26 05:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:40:54.79+03	2021-05-26 05:40:54.796+03	
5c76d6e6-1637-ffce-f42f-7e5fb1a6359d	2021-05-26 05:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:41:14.79+03	2021-05-26 05:41:14.796+03	
91e9a80a-7577-d0ca-40af-6cb2c31e09bc	2021-05-26 05:41:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:41:34.79+03	2021-05-26 05:41:34.796+03	
504d83b0-9d12-eb97-00f5-6f5f0b0f2d6f	2021-05-26 05:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:41:54.79+03	2021-05-26 05:41:54.796+03	
1fa5201c-bcaa-8203-99f8-27db82b8ae54	2021-05-26 05:42:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:42:14.79+03	2021-05-26 05:42:14.796+03	
09f63daa-730e-79d3-3b85-d5602f56e534	2021-05-26 05:42:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:42:34.79+03	2021-05-26 05:42:34.797+03	
4ef40313-522d-fb0f-86a1-dfb4010a4c0e	2021-05-26 05:42:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:42:54.79+03	2021-05-26 05:42:54.808+03	
4ce827e1-675e-a0f4-e811-61d96f45f4eb	2021-05-26 05:43:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:43:14.79+03	2021-05-26 05:43:14.796+03	
b3796c5d-4962-02ed-888b-bca464c683fd	2021-05-26 05:43:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:43:34.79+03	2021-05-26 05:43:34.796+03	
b71bbb7a-34f8-31b0-8549-6b9a7933d8ff	2021-05-26 05:43:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:43:54.79+03	2021-05-26 05:43:54.796+03	
51a89275-4409-d6c5-13a8-84a0dc0cd408	2021-05-26 05:44:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:44:14.79+03	2021-05-26 05:44:14.796+03	
75ad82da-6b4d-c0bd-be5a-2ada3f2d6554	2021-05-26 05:44:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:44:34.79+03	2021-05-26 05:44:34.796+03	
e0f74418-be2a-ab38-2121-d04b48dfd14b	2021-05-26 05:44:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:44:54.79+03	2021-05-26 05:44:54.796+03	
c1ea2537-34f2-abf7-fbf2-bf4b49e91c71	2021-05-26 05:45:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:45:14.79+03	2021-05-26 05:45:14.797+03	
c2a83018-2fc8-25a1-4669-e17ebdb92977	2021-05-26 05:45:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:45:34.79+03	2021-05-26 05:45:34.796+03	
e6cd3565-560f-86eb-7145-c2586c7fbcfd	2021-05-26 05:45:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:45:54.79+03	2021-05-26 05:45:54.797+03	
e5aeef4c-31e7-d04b-913c-9e114bd08513	2021-05-26 05:46:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:46:14.79+03	2021-05-26 05:46:14.796+03	
826a6f50-1363-52ee-970a-6e7572fd2c25	2021-05-26 05:46:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:46:34.79+03	2021-05-26 05:46:34.796+03	
496a4762-7606-057c-075b-507d9c4019ec	2021-05-26 05:46:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:46:54.79+03	2021-05-26 05:46:54.797+03	
78b82848-b8d7-7999-3b20-f88d0d2511f0	2021-05-26 05:47:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:47:14.79+03	2021-05-26 05:47:14.796+03	
49d7edb8-65c2-7204-f811-509a8d1f01ed	2021-05-26 05:47:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:47:34.79+03	2021-05-26 05:47:34.796+03	
0eac3b70-b832-92cd-65c1-fe101bb636f6	2021-05-26 05:27:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:27:24.79+03	2021-05-26 05:27:24.797+03	
f11500ce-af2a-4c09-a67f-8a20e52f42ce	2021-05-26 05:27:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:27:44.79+03	2021-05-26 05:27:44.796+03	
b9488692-9517-81a1-372b-ac8eab537802	2021-05-26 05:28:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:28:04.79+03	2021-05-26 05:28:04.797+03	
8083462e-2957-3dcf-49ef-c29a5ab40701	2021-05-26 05:28:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:28:24.79+03	2021-05-26 05:28:24.796+03	
80e8bbd2-d12a-5043-0843-d277795977e5	2021-05-26 05:28:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:28:44.79+03	2021-05-26 05:28:44.796+03	
e6b3c5a8-5a98-2ed9-7be8-65f3bda7be41	2021-05-26 05:29:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:29:04.79+03	2021-05-26 05:29:04.801+03	
05840b30-07e4-8b0a-2de6-9c9e6795a763	2021-05-26 05:29:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:29:24.79+03	2021-05-26 05:29:24.796+03	
fd7e967b-1e31-d849-8c96-6340fe9a049c	2021-05-26 05:29:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:29:44.79+03	2021-05-26 05:29:44.796+03	
f2b58bee-cdc2-f43c-68be-754e745c9b18	2021-05-26 05:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 05:30:00.79+03	2021-05-26 05:30:00.794+03	ERROR
75e75c04-dafe-9a39-3315-8d016141b810	2021-05-26 05:30:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:30:14.79+03	2021-05-26 05:30:14.797+03	
155cf63c-38a8-1d76-a872-2d4056fdcbf8	2021-05-26 05:30:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:30:34.79+03	2021-05-26 05:30:34.852+03	
21ca8df0-8da7-cd61-5fd9-81df051b35d0	2021-05-26 05:30:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:30:54.79+03	2021-05-26 05:30:54.796+03	
739cbf5f-a58f-8317-ecec-2d945e5f83c0	2021-05-26 05:31:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:31:14.79+03	2021-05-26 05:31:14.797+03	
d8b7a146-16cd-e53d-63cc-1b885cd76aea	2021-05-26 05:31:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:31:34.79+03	2021-05-26 05:31:34.797+03	
978b99c6-085d-6909-d275-d690ce5ba407	2021-05-26 05:31:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:31:54.79+03	2021-05-26 05:31:54.797+03	
206e4c33-755e-e0dd-4e05-333cbb51340e	2021-05-26 05:32:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:32:14.79+03	2021-05-26 05:32:14.796+03	
75d99d02-2758-2470-0bdb-75618c740571	2021-05-26 05:32:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:32:34.79+03	2021-05-26 05:32:34.797+03	
5ede3691-c236-2745-c11f-a518e9e18848	2021-05-26 05:32:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:32:54.79+03	2021-05-26 05:32:54.797+03	
1ecd2225-518d-7b34-16df-c282418c8250	2021-05-26 05:33:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:33:14.79+03	2021-05-26 05:33:14.796+03	
151cb9b7-5536-1336-f15b-0c77d74f483c	2021-05-26 05:33:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:33:34.79+03	2021-05-26 05:33:34.85+03	
2193174a-0e3f-56a0-ee07-342eee6c9d4e	2021-05-26 05:33:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:33:54.79+03	2021-05-26 05:33:54.796+03	
0595c5b6-55de-60a2-331a-1ee76fc3b0c0	2021-05-26 05:34:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:34:14.79+03	2021-05-26 05:34:14.797+03	
e9410d25-0fbd-8c2a-f116-fb0b44c705e5	2021-05-26 05:34:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:34:34.79+03	2021-05-26 05:34:34.811+03	
45999607-77fa-f1e7-7848-e4f561db76a0	2021-05-26 05:34:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:34:54.79+03	2021-05-26 05:34:54.796+03	
89fc0a6b-0b6b-4505-d09b-9698c3b5059f	2021-05-26 05:35:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:35:14.79+03	2021-05-26 05:35:14.797+03	
68f71afe-d1d9-0ab8-fd5f-851412820a3b	2021-05-26 05:35:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:35:34.79+03	2021-05-26 05:35:34.796+03	
be09b9f3-dd0d-3a50-5aff-4c8de75a9bc3	2021-05-26 05:35:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:35:54.79+03	2021-05-26 05:35:54.812+03	
6c025ad9-8dec-b05c-c967-6e06c6b34f6a	2021-05-26 05:36:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:36:14.79+03	2021-05-26 05:36:14.797+03	
496c6d8e-9003-3b37-1d03-cd4deecac422	2021-05-26 05:36:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:36:34.79+03	2021-05-26 05:36:34.796+03	
e9348825-61e7-89c8-b11d-ad4948f5e040	2021-05-26 05:36:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:36:54.79+03	2021-05-26 05:36:54.797+03	
c7edf02c-42be-97ba-df24-c350ec68cfdf	2021-05-26 05:37:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:37:14.79+03	2021-05-26 05:37:14.796+03	
fdd56324-b472-0ea8-1eb9-f93b308130f9	2021-05-26 05:37:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:37:34.79+03	2021-05-26 05:37:34.796+03	
19e3cc43-a56c-ea58-5d3a-ee2479ee7df2	2021-05-26 05:37:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:37:54.79+03	2021-05-26 05:37:54.796+03	
744c748f-a73d-b3cf-65f0-dc96c01f1a3c	2021-05-26 05:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:38:14.79+03	2021-05-26 05:38:14.807+03	
aebe7319-ce22-b918-5b6d-4e880508aac5	2021-05-26 05:38:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:38:34.79+03	2021-05-26 05:38:34.796+03	
d0a15ee8-429d-eb53-a0d8-e3a947bc1970	2021-05-26 05:38:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:38:54.79+03	2021-05-26 05:38:54.796+03	
c5ce92a5-7c34-2f3d-50dc-47ed31fa6117	2021-05-26 05:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:39:14.79+03	2021-05-26 05:39:14.796+03	
bf5a447a-574d-ea97-5011-388f638cce70	2021-05-26 05:39:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:39:34.79+03	2021-05-26 05:39:34.796+03	
dd970467-bef2-4b08-356a-2de902e31719	2021-05-26 05:39:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:39:54.79+03	2021-05-26 05:39:54.81+03	
dee39473-0b82-a4de-78fd-b879c28c46fc	2021-05-26 05:40:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:40:04.79+03	2021-05-26 05:40:04.798+03	
b14978aa-b064-6116-20c3-082aeadb9472	2021-05-26 05:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:40:24.79+03	2021-05-26 05:40:24.797+03	
2fdeda35-6b09-cfe1-4051-1b4bf4fc097d	2021-05-26 05:40:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:40:44.79+03	2021-05-26 05:40:44.796+03	
5e0a71a9-e8d6-d2fd-b81e-990356ba8e7c	2021-05-26 05:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:41:04.79+03	2021-05-26 05:41:04.797+03	
e2562e16-7137-1051-8e6d-ed35ef07c6cf	2021-05-26 05:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:41:24.79+03	2021-05-26 05:41:24.797+03	
35d29287-5cd2-4280-f7ef-7a6b9cb2864c	2021-05-26 05:41:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:41:44.79+03	2021-05-26 05:41:44.797+03	
f9a93bb2-c121-ee71-0351-f9b5c2ea9bb2	2021-05-26 05:42:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:42:04.79+03	2021-05-26 05:42:04.798+03	
29648de0-62f5-668f-bdbf-ea3c11cb92cc	2021-05-26 05:42:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:42:24.79+03	2021-05-26 05:42:24.8+03	
507b85b4-d2ae-4b3c-5064-6b004fb8d009	2021-05-26 05:42:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:42:44.79+03	2021-05-26 05:42:44.796+03	
90604835-f023-bb7b-ff6e-4aa1b885408d	2021-05-26 05:43:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:43:04.79+03	2021-05-26 05:43:04.798+03	
1b4c971a-ba53-0f5a-ae1f-4e2197ae1e65	2021-05-26 05:43:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:43:24.79+03	2021-05-26 05:43:24.796+03	
8b5feccb-a41c-1950-6659-0cd81c5a5da7	2021-05-26 05:43:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:43:44.79+03	2021-05-26 05:43:44.796+03	
8324fdab-a278-9acc-1e35-83166349b2be	2021-05-26 05:44:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:44:04.79+03	2021-05-26 05:44:04.819+03	
87646e85-dc6f-55c3-9bcf-1584fee23b02	2021-05-26 05:44:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:44:24.79+03	2021-05-26 05:44:24.796+03	
894f2937-3089-feda-412e-0d221f4d4afa	2021-05-26 05:44:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:44:44.79+03	2021-05-26 05:44:44.796+03	
341d0bc2-ce0e-61a1-b7f1-a8202205f254	2021-05-26 05:45:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:45:04.79+03	2021-05-26 05:45:04.797+03	
c4ae33c6-700d-f0e3-8799-f62ffbb34f60	2021-05-26 05:45:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:45:24.79+03	2021-05-26 05:45:24.797+03	
8a6a909c-f2f2-e522-17d7-a9a5b9088f73	2021-05-26 05:45:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:45:44.79+03	2021-05-26 05:45:44.796+03	
27fb6cae-30e7-f6c1-34c0-27b06fca8d8f	2021-05-26 05:46:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:46:04.79+03	2021-05-26 05:46:04.797+03	
08627a25-e017-abed-0506-ea95bcafa47b	2021-05-26 05:46:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:46:24.79+03	2021-05-26 05:46:24.797+03	
8b17995c-8dc9-788b-d662-2f8bd79d7e92	2021-05-26 05:46:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:46:44.79+03	2021-05-26 05:46:44.801+03	
5a3529e5-e1f0-c879-9537-a1d02ab0c0d6	2021-05-26 05:47:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:47:04.79+03	2021-05-26 05:47:04.798+03	
6b45b12a-8664-409b-9e96-9818c8493173	2021-05-26 05:47:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:47:24.79+03	2021-05-26 05:47:24.796+03	
004e6211-1232-9a47-60f6-80622c9e66e3	2021-05-26 05:47:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:47:44.79+03	2021-05-26 05:47:44.797+03	
1462b78a-6188-3f75-661c-44c0e1b7c7d5	2021-05-26 05:47:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:47:54.79+03	2021-05-26 05:47:54.796+03	
6c59a251-2afd-5c20-041e-8ce16f56ae5e	2021-05-26 05:48:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:48:14.79+03	2021-05-26 05:48:14.812+03	
cea8e04e-f0b4-4b7c-ea19-fd6c42e97a22	2021-05-26 05:48:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:48:34.79+03	2021-05-26 05:48:34.796+03	
d347e97b-afa3-c749-040f-4b3077113205	2021-05-26 05:48:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:48:54.79+03	2021-05-26 05:48:54.796+03	
2b1e7581-e5e9-e385-ba35-cecb244e0cd4	2021-05-26 05:49:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:49:14.79+03	2021-05-26 05:49:14.797+03	
ae9c5e60-4311-a8b4-5189-669e305b1566	2021-05-26 05:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:49:34.79+03	2021-05-26 05:49:34.796+03	
ff270895-5102-49b4-72c9-d0e449a2394f	2021-05-26 05:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:49:54.79+03	2021-05-26 05:49:54.796+03	
5f04e1a1-9086-6adb-54ff-891614b8fbf0	2021-05-26 05:50:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:50:04.79+03	2021-05-26 05:50:04.797+03	
7b4edf3c-03eb-3265-551e-43ac9b63c64b	2021-05-26 05:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:50:24.79+03	2021-05-26 05:50:24.796+03	
2ec03f02-ca8a-d8f7-a988-5c10651093f1	2021-05-26 05:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:50:44.79+03	2021-05-26 05:50:44.797+03	
ba963ff3-f65c-1e73-6bfb-3214200fb48f	2021-05-26 05:51:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:51:04.79+03	2021-05-26 05:51:04.796+03	
881bc207-7a88-7a5c-6fe2-48cb4c3d9905	2021-05-26 05:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:51:24.79+03	2021-05-26 05:51:24.796+03	
8e4f1397-16cc-7fbb-1aea-caa6819565b0	2021-05-26 05:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:51:44.79+03	2021-05-26 05:51:44.796+03	
40bf8962-cd32-9c41-66a3-7f7ee302f1dd	2021-05-26 05:52:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:52:04.79+03	2021-05-26 05:52:04.797+03	
deee9cc2-8ce9-914b-14f9-e2e6844b51b4	2021-05-26 05:52:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:52:24.79+03	2021-05-26 05:52:24.798+03	
7b4e2b34-fee6-adc7-5340-362d891c8c8c	2021-05-26 05:52:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:52:44.79+03	2021-05-26 05:52:44.797+03	
887c0ded-a0a7-a978-91df-84f24a0ff68d	2021-05-26 05:53:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:53:04.79+03	2021-05-26 05:53:04.797+03	
8a202c9d-8bc6-8c56-0d21-e64463ee618b	2021-05-26 05:53:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:53:24.79+03	2021-05-26 05:53:24.796+03	
0a44bebe-1077-e12c-7fbd-c541bb9b6ba9	2021-05-26 05:53:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:53:44.79+03	2021-05-26 05:53:44.796+03	
e37366dd-5ee6-f19f-effd-9694316c5074	2021-05-26 05:54:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:54:04.79+03	2021-05-26 05:54:04.796+03	
2e1f42de-38f6-9528-4587-e332ec0c9e60	2021-05-26 05:54:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:54:24.79+03	2021-05-26 05:54:24.796+03	
38ed9a33-2377-61b8-2c78-dbfdaddc7b01	2021-05-26 05:54:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:54:44.79+03	2021-05-26 05:54:44.797+03	
788f3092-ee68-3573-2e6c-3417e6ac5a0b	2021-05-26 05:55:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:55:04.79+03	2021-05-26 05:55:04.796+03	
6f6bb9c4-1645-e846-7751-95bfae68bd0e	2021-05-26 05:55:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:55:24.79+03	2021-05-26 05:55:24.796+03	
5bf7ad3e-7519-7aaa-29f8-484fe1716649	2021-05-26 05:55:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:55:44.79+03	2021-05-26 05:55:44.796+03	
53d18296-9350-4f56-cffa-3a6a2745f392	2021-05-26 05:56:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:56:04.79+03	2021-05-26 05:56:04.796+03	
d12c5993-e997-2114-0f41-0b88c1d6e870	2021-05-26 05:56:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:56:24.79+03	2021-05-26 05:56:24.796+03	
34258ffe-52f1-a287-675d-a553f69e02df	2021-05-26 05:56:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:56:44.79+03	2021-05-26 05:56:44.796+03	
a2bace14-fdf0-df29-1db0-a389ed70c4c6	2021-05-26 05:57:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:57:04.79+03	2021-05-26 05:57:04.796+03	
2150e5fb-0aa6-5ec8-e84a-fff4f96733ee	2021-05-26 05:57:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:57:24.79+03	2021-05-26 05:57:24.796+03	
55d5dd8a-6bbd-c578-7c5a-aca6c6b9cd3c	2021-05-26 05:57:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:57:44.79+03	2021-05-26 05:57:44.796+03	
6d1c38c5-162c-7050-c29c-c34e6c312a6a	2021-05-26 05:58:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:58:04.79+03	2021-05-26 05:58:04.796+03	
189e69bc-c50c-b767-7ec3-9f3289fa3d88	2021-05-26 05:58:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:58:24.79+03	2021-05-26 05:58:24.797+03	
0f09695a-a8c7-3c93-78e6-8de0b61606ed	2021-05-26 05:58:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:58:44.79+03	2021-05-26 05:58:44.796+03	
d70a19dd-bbec-7d49-6779-1c4422eba04a	2021-05-26 05:59:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:59:04.79+03	2021-05-26 05:59:04.798+03	
8dbecff6-97de-83f7-a742-89c9aab5aa5e	2021-05-26 05:59:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:59:24.79+03	2021-05-26 05:59:24.796+03	
785bd3e4-8630-144e-d06b-07a61d0986eb	2021-05-26 05:59:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:59:44.79+03	2021-05-26 05:59:44.797+03	
565b6b89-e136-c846-7531-4175f6f38d5d	2021-05-26 06:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 06:00:00.79+03	2021-05-26 06:00:00.796+03	ERROR
b03a4fb2-a766-b625-69e0-e1df62303496	2021-05-26 06:00:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:00:14.79+03	2021-05-26 06:00:14.797+03	
cdde59a5-ab3f-2729-2a08-eddcc8b90aea	2021-05-26 06:00:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:00:34.79+03	2021-05-26 06:00:34.797+03	
4bdf3b96-252c-671f-fa63-fcf8de7afbec	2021-05-26 06:00:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:00:54.79+03	2021-05-26 06:00:54.797+03	
f6f35bd2-e1d0-4196-eab2-5217051e529d	2021-05-26 06:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:01:14.79+03	2021-05-26 06:01:14.797+03	
589b5ea3-1701-afb2-20c3-076f74ab42f9	2021-05-26 06:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:01:34.79+03	2021-05-26 06:01:34.797+03	
74db356a-0418-4a34-51bd-b0af715cedf2	2021-05-26 06:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:01:54.79+03	2021-05-26 06:01:54.796+03	
ee09307f-e9d8-fd4e-1ca1-057628eaf05f	2021-05-26 06:02:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:02:14.79+03	2021-05-26 06:02:14.808+03	
dd8a5094-15e5-f243-f996-eab869117890	2021-05-26 06:02:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:02:34.79+03	2021-05-26 06:02:34.8+03	
bc060125-a336-618e-07cf-2dd9256eb4a7	2021-05-26 06:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:02:54.79+03	2021-05-26 06:02:54.796+03	
5c09a494-cd21-8e3c-6874-d8a8243c7c6c	2021-05-26 06:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:03:14.79+03	2021-05-26 06:03:14.797+03	
92b037de-d01d-c76b-3e58-408ba8c3b988	2021-05-26 06:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:03:34.79+03	2021-05-26 06:03:34.797+03	
0b383b7e-c65d-17e2-bc30-9bcda6f84688	2021-05-26 06:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:03:54.79+03	2021-05-26 06:03:54.796+03	
62b8e6a4-7295-76d4-2ead-8afe057780c2	2021-05-26 06:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:04:14.79+03	2021-05-26 06:04:14.796+03	
67721669-e06e-5c15-cd3a-bd12631a1325	2021-05-26 06:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:04:34.79+03	2021-05-26 06:04:34.796+03	
435fb2a4-e94e-47f6-dd8b-dacd0e01baf7	2021-05-26 06:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:04:54.79+03	2021-05-26 06:04:54.797+03	
5aebd19e-1d37-48ff-25d2-fe94964b01fa	2021-05-26 06:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:05:14.79+03	2021-05-26 06:05:14.802+03	
003feac1-cb46-912e-1843-7e6316ac1242	2021-05-26 06:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:05:34.79+03	2021-05-26 06:05:34.796+03	
32903c55-b3d4-12b3-33f6-a25c8ee70acd	2021-05-26 06:05:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:05:54.79+03	2021-05-26 06:05:54.798+03	
3cbbb643-cd4f-8070-e0c6-0f746e617af1	2021-05-26 06:06:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:06:14.79+03	2021-05-26 06:06:14.797+03	
60aab691-a0a4-d304-ef49-d7078c2c7d7c	2021-05-26 06:06:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:06:34.79+03	2021-05-26 06:06:34.797+03	
418f8444-01ad-4eb7-7f96-02474db0f8a4	2021-05-26 06:06:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:06:54.79+03	2021-05-26 06:06:54.797+03	
5567918d-0d81-b1d6-3a8b-25f3f68a5a26	2021-05-26 06:07:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:07:14.79+03	2021-05-26 06:07:14.796+03	
a61a1b49-4ba9-1a79-6e22-3de33e324679	2021-05-26 06:07:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:07:34.79+03	2021-05-26 06:07:34.797+03	
f45ae261-a50b-07b4-fa95-f25dc68e00c4	2021-05-26 06:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:07:54.79+03	2021-05-26 06:07:54.797+03	
23c29139-9cd9-8ff0-4b83-a343aae0e84b	2021-05-26 06:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:08:14.79+03	2021-05-26 06:08:14.798+03	
e08a3f75-c734-2175-8303-a9146582dde9	2021-05-26 05:48:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:48:04.79+03	2021-05-26 05:48:04.798+03	
4acad7ab-57f6-04c3-745d-c5d051c0a447	2021-05-26 05:48:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:48:24.79+03	2021-05-26 05:48:24.796+03	
802552e0-c679-507c-9a00-0c3043e22620	2021-05-26 05:48:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:48:44.79+03	2021-05-26 05:48:44.797+03	
3eb4468d-9000-0071-3367-a4353c173a4c	2021-05-26 05:49:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:49:04.79+03	2021-05-26 05:49:04.797+03	
89d326ed-520a-357a-592b-c36de819ba80	2021-05-26 05:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:49:24.79+03	2021-05-26 05:49:24.796+03	
a8273126-1d53-6990-8a39-b1fe330ea0b8	2021-05-26 05:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:49:44.79+03	2021-05-26 05:49:44.796+03	
56c7826c-0778-f5d9-83d7-6757ff1a2c43	2021-05-26 05:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 05:50:00.79+03	2021-05-26 05:50:00.795+03	ERROR
69f94d61-0d51-cd6f-9869-e5b0e2776001	2021-05-26 05:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:50:14.79+03	2021-05-26 05:50:14.796+03	
4ff833ba-1251-5871-ce8a-09729884c22b	2021-05-26 05:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:50:34.79+03	2021-05-26 05:50:34.796+03	
31285759-4c95-36ed-b3cf-602151ea8536	2021-05-26 05:50:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:50:54.79+03	2021-05-26 05:50:54.796+03	
743519fa-6390-93a3-1209-d330890b6db5	2021-05-26 05:51:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:51:14.79+03	2021-05-26 05:51:14.796+03	
bd94f911-eb18-28bf-934e-e665c1ff8fa4	2021-05-26 05:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:51:34.79+03	2021-05-26 05:51:34.796+03	
bd05dc6c-d0d7-feb7-b73e-7d9f55804824	2021-05-26 05:51:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:51:54.79+03	2021-05-26 05:51:54.795+03	
b3de7bdd-3ce7-8d1d-b530-069832a377be	2021-05-26 05:52:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:52:14.79+03	2021-05-26 05:52:14.797+03	
946eefc2-0386-2946-3437-abed70164ca9	2021-05-26 05:52:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:52:34.79+03	2021-05-26 05:52:34.796+03	
9304f6ab-459d-ae4a-53c4-df6ed54c56b9	2021-05-26 05:52:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:52:54.79+03	2021-05-26 05:52:54.797+03	
4c35764f-daf1-98a6-faa7-6af68db93812	2021-05-26 05:53:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:53:14.79+03	2021-05-26 05:53:14.796+03	
ae778611-f4c4-7999-30a4-f59c6728498e	2021-05-26 05:53:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:53:34.79+03	2021-05-26 05:53:34.796+03	
3505eed8-9f78-bdae-cde8-5572cfdc7fd5	2021-05-26 05:53:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:53:54.79+03	2021-05-26 05:53:54.796+03	
d879a453-22e9-009d-a22d-da2691b57417	2021-05-26 05:54:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:54:14.79+03	2021-05-26 05:54:14.796+03	
51e6c992-1888-c1f5-b891-49af00af99dd	2021-05-26 05:54:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:54:34.79+03	2021-05-26 05:54:34.796+03	
fea6ddbe-57e9-d774-906e-2248c1a12580	2021-05-26 05:54:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:54:54.79+03	2021-05-26 05:54:54.796+03	
3b87b338-c5d8-e03e-568c-a861464bf4a2	2021-05-26 05:55:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:55:14.79+03	2021-05-26 05:55:14.797+03	
79867031-1e1e-4497-797d-c70da881274b	2021-05-26 05:55:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:55:34.79+03	2021-05-26 05:55:34.796+03	
be4ff92b-cdf0-78e6-ad89-dbf5bf62e16f	2021-05-26 05:55:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:55:54.79+03	2021-05-26 05:55:54.798+03	
c7bb0b15-7c85-c4b8-f764-ca12132eb2d7	2021-05-26 05:56:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:56:14.79+03	2021-05-26 05:56:14.81+03	
7bd23257-0c86-0ab0-0220-61776c26f8c3	2021-05-26 05:56:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:56:34.79+03	2021-05-26 05:56:34.796+03	
69cc1b31-2564-7721-2610-a30c93cd7938	2021-05-26 05:56:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:56:54.79+03	2021-05-26 05:56:54.796+03	
b66d4230-bb9f-b6ae-2f11-38aafda7418e	2021-05-26 05:57:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:57:14.79+03	2021-05-26 05:57:14.796+03	
00993949-d819-9368-21e9-31abdf0ee7d8	2021-05-26 05:57:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:57:34.79+03	2021-05-26 05:57:34.797+03	
0cfeac35-283c-8e90-052e-c2533bf0239b	2021-05-26 05:57:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:57:54.79+03	2021-05-26 05:57:54.81+03	
89336568-e0e9-6e95-e182-e1299260ca5e	2021-05-26 05:58:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:58:14.79+03	2021-05-26 05:58:14.796+03	
788ebd07-0d15-c315-646c-98d65be483f2	2021-05-26 05:58:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:58:34.79+03	2021-05-26 05:58:34.796+03	
6681b92c-0d18-996f-ca8b-31cfae8ae0d3	2021-05-26 05:58:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:58:54.79+03	2021-05-26 05:58:54.796+03	
41659c5c-1dd3-33d8-af4f-b6d08f40ff4b	2021-05-26 05:59:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:59:14.79+03	2021-05-26 05:59:14.796+03	
efebdf9f-eb3f-a8c7-a9a6-fbef85cdcb37	2021-05-26 05:59:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:59:34.79+03	2021-05-26 05:59:34.796+03	
6bec5a67-1a9d-b51c-9016-726279d6050f	2021-05-26 05:59:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 05:59:54.79+03	2021-05-26 05:59:54.796+03	
13ef0c4e-acd1-e585-2e38-cdb4db97db80	2021-05-26 06:00:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:00:04.79+03	2021-05-26 06:00:04.796+03	
d615b71b-2e19-6962-d24f-c925cf269ade	2021-05-26 06:00:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:00:24.79+03	2021-05-26 06:00:24.797+03	
d98d5cd1-449e-1470-87a5-3b5647a91842	2021-05-26 06:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:00:44.79+03	2021-05-26 06:00:44.796+03	
a2bb6050-8308-857e-25f4-e3f6d7d3860c	2021-05-26 06:01:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:01:04.79+03	2021-05-26 06:01:04.796+03	
c5197013-4ea0-2244-8d80-3890937bcdfd	2021-05-26 06:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:01:24.79+03	2021-05-26 06:01:24.796+03	
278ab6ed-c625-a2ac-6e21-2ee1371c12dd	2021-05-26 06:01:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:01:44.79+03	2021-05-26 06:01:44.797+03	
1577caba-d1cb-e817-2f0a-7ea15c9513d9	2021-05-26 06:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:02:04.79+03	2021-05-26 06:02:04.799+03	
7cfb8582-9fac-a8b6-7446-523e5c2ee374	2021-05-26 06:02:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:02:24.79+03	2021-05-26 06:02:24.797+03	
2dd288de-a6c6-703c-6520-1da53f0a8cfe	2021-05-26 06:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:02:44.79+03	2021-05-26 06:02:44.797+03	
6d521798-afab-406e-28c5-aaedd1d919d8	2021-05-26 06:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:03:04.79+03	2021-05-26 06:03:04.796+03	
9995ee63-f0f8-c206-bf9f-ba2f3a64ef5c	2021-05-26 06:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:03:24.79+03	2021-05-26 06:03:24.797+03	
f75be8d1-1bd8-1346-a72a-f769a209e253	2021-05-26 06:03:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:03:44.79+03	2021-05-26 06:03:44.796+03	
b8695b7f-68ee-2223-f73b-47ea2f7820b7	2021-05-26 06:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:04:04.79+03	2021-05-26 06:04:04.796+03	
8592a803-5e39-ab1e-8953-9d1faf3cf4a3	2021-05-26 06:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:04:24.79+03	2021-05-26 06:04:24.796+03	
76994aa7-1f7e-2260-9f7d-201b70773b09	2021-05-26 06:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:04:44.79+03	2021-05-26 06:04:44.798+03	
38439eec-8c6b-4361-5aac-2b5acc979fe3	2021-05-26 06:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:05:04.79+03	2021-05-26 06:05:04.799+03	
ab201576-2a99-aae1-c34f-e105e2555626	2021-05-26 06:05:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:05:24.79+03	2021-05-26 06:05:24.797+03	
c7cf457a-4c06-885c-f9a4-c83cd60d4b23	2021-05-26 06:05:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:05:44.79+03	2021-05-26 06:05:44.796+03	
01d6744d-bd51-ef01-04f5-f3c8294f8ece	2021-05-26 06:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:06:04.79+03	2021-05-26 06:06:04.797+03	
6b6e4f81-5049-6484-a35e-1a196695e09d	2021-05-26 06:06:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:06:24.79+03	2021-05-26 06:06:24.796+03	
2857ee04-93fe-7a90-5ebd-cc3b9dddf272	2021-05-26 06:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:06:44.79+03	2021-05-26 06:06:44.796+03	
cbf971eb-cc00-fcd7-3c9e-ac4a46f8ecd8	2021-05-26 06:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:07:04.79+03	2021-05-26 06:07:04.797+03	
8e8386e8-db76-fbc3-4171-f6e339a2e075	2021-05-26 06:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:07:24.79+03	2021-05-26 06:07:24.796+03	
7611f9e0-e68f-b0ec-e1b2-46ee8d29411d	2021-05-26 06:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:07:44.79+03	2021-05-26 06:07:44.797+03	
f5a1fee4-bf1d-d84c-9166-a8de818208dd	2021-05-26 06:08:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:08:04.79+03	2021-05-26 06:08:04.797+03	
d654a095-82a8-0db9-b31d-5db7b9c7d7ae	2021-05-26 06:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:08:24.79+03	2021-05-26 06:08:24.797+03	
f9222ff1-8cd8-9fb7-dced-f72fd4efb23c	2021-05-26 06:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:08:34.79+03	2021-05-26 06:08:34.798+03	
ac5235d1-849a-0b6a-cb94-0535ca76a76a	2021-05-26 06:08:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:08:54.79+03	2021-05-26 06:08:54.797+03	
a8b22d50-bfb9-0ab7-2287-8c16c1a52da2	2021-05-26 06:09:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:09:14.79+03	2021-05-26 06:09:14.797+03	
e662e586-7733-698e-71ee-0bb762e3c880	2021-05-26 06:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:09:34.79+03	2021-05-26 06:09:34.796+03	
7a6d4782-9606-857e-6e48-fb1b1463e105	2021-05-26 06:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 06:10:00.79+03	2021-05-26 06:10:00.795+03	ERROR
d1a80504-d70e-a459-f349-adf6cfdab343	2021-05-26 06:10:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:10:14.79+03	2021-05-26 06:10:14.796+03	
d2ce870b-e3a6-df64-4fae-a4a9569a8826	2021-05-26 06:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:10:34.79+03	2021-05-26 06:10:34.797+03	
bdb884f3-c753-331e-4a04-76e430619162	2021-05-26 06:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:10:54.79+03	2021-05-26 06:10:54.798+03	
8f8f76f8-2813-6d53-14de-a14d9af925bf	2021-05-26 06:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:11:14.79+03	2021-05-26 06:11:14.8+03	
b98cc696-cbe6-94f1-dd63-6fc2d7857e3e	2021-05-26 06:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:11:34.79+03	2021-05-26 06:11:34.797+03	
29879495-cbd7-658a-8eda-c95b78086c34	2021-05-26 06:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:11:54.79+03	2021-05-26 06:11:54.796+03	
0b2bbc2a-ae86-7c82-5b0f-cfda2961e118	2021-05-26 06:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:12:14.79+03	2021-05-26 06:12:14.796+03	
aab68b6b-951a-644a-d407-435d28509f55	2021-05-26 06:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:12:34.79+03	2021-05-26 06:12:34.798+03	
3bbb0fdd-fd9c-0029-473c-383a6b9f144d	2021-05-26 06:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:12:54.79+03	2021-05-26 06:12:54.796+03	
77050095-a0a8-d83a-0111-c924cf2460e5	2021-05-26 06:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:13:14.79+03	2021-05-26 06:13:14.797+03	
eacfe8a0-c481-2b5e-6fc5-a4eab6fff0ec	2021-05-26 06:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:13:34.79+03	2021-05-26 06:13:34.796+03	
d3b6789a-405c-fe2b-d476-d300a432e900	2021-05-26 06:13:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:13:54.79+03	2021-05-26 06:13:54.798+03	
6dcfe32e-7726-c353-7bfc-ff7129687994	2021-05-26 06:14:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:14:14.79+03	2021-05-26 06:14:14.796+03	
9d0f1384-0263-ff63-ed58-501d92585232	2021-05-26 06:14:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:14:34.79+03	2021-05-26 06:14:34.802+03	
69bc19b1-429e-4964-7bab-ea0f1fb7026c	2021-05-26 06:14:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:14:54.79+03	2021-05-26 06:14:54.799+03	
25283e1e-46ec-520a-b23f-f4f5bed674de	2021-05-26 06:15:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:15:14.79+03	2021-05-26 06:15:14.796+03	
5aab08c8-e83d-94f5-5057-ba6310078c20	2021-05-26 06:15:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:15:34.79+03	2021-05-26 06:15:34.796+03	
29998678-2bdd-9879-b0c2-23ea2e607ff3	2021-05-26 06:15:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:15:54.79+03	2021-05-26 06:15:54.796+03	
398ee562-1102-6b2d-e5b7-0f9a99ca7b67	2021-05-26 06:16:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:16:14.79+03	2021-05-26 06:16:14.796+03	
424e19c0-5c21-e9c0-5182-a4bd7b9affcf	2021-05-26 06:16:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:16:34.79+03	2021-05-26 06:16:34.797+03	
967518c9-09ad-0095-6f17-d3184e101838	2021-05-26 06:16:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:16:54.79+03	2021-05-26 06:16:54.797+03	
dc6963a3-dc90-b3ec-0a78-18e42204e872	2021-05-26 06:17:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:17:14.79+03	2021-05-26 06:17:14.799+03	
844c343e-ae0d-4f7c-99a8-ac355529b301	2021-05-26 06:17:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:17:34.79+03	2021-05-26 06:17:34.798+03	
122e6c47-3781-8c31-02fa-942a340abdef	2021-05-26 06:17:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:17:54.79+03	2021-05-26 06:17:54.797+03	
23822255-f713-526f-5a64-d6f46492ef9f	2021-05-26 06:18:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:18:14.79+03	2021-05-26 06:18:14.797+03	
f4abf07e-2315-1c5a-a95b-3f69230b71c0	2021-05-26 06:18:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:18:34.79+03	2021-05-26 06:18:34.797+03	
8a544e1b-e769-e7b7-e736-22750d22ab88	2021-05-26 06:18:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:18:54.79+03	2021-05-26 06:18:54.796+03	
1f5685fe-f7b8-4b67-758e-592cdc4717e1	2021-05-26 06:19:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:19:14.79+03	2021-05-26 06:19:14.796+03	
85f0ff52-f71c-4f5e-ebf0-49b8ad0239ae	2021-05-26 06:19:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:19:34.79+03	2021-05-26 06:19:34.798+03	
0d40801c-c7b2-bb6e-0917-062f1e7c528c	2021-05-26 06:19:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:19:54.79+03	2021-05-26 06:19:54.796+03	
03f6f1fc-d738-a067-6ca2-9e76e67092d7	2021-05-26 06:20:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:20:04.79+03	2021-05-26 06:20:04.796+03	
c717534c-ca8c-e3bf-f5ea-44803247d43b	2021-05-26 06:20:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:20:24.79+03	2021-05-26 06:20:24.796+03	
db010963-0408-c0ef-f790-b544d2737686	2021-05-26 06:20:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:20:44.79+03	2021-05-26 06:20:44.796+03	
be6924bd-d6ae-68e4-a56d-9fcea5b0d49b	2021-05-26 06:21:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:21:04.79+03	2021-05-26 06:21:04.797+03	
16f0f8b8-87d7-40d0-1292-720b0906e663	2021-05-26 06:21:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:21:24.79+03	2021-05-26 06:21:24.796+03	
bc2f8823-76f0-ab76-86ac-a12214e522f3	2021-05-26 06:21:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:21:44.79+03	2021-05-26 06:21:44.797+03	
70d005f5-b145-60d4-d6fb-c67fc79e01c9	2021-05-26 06:22:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:22:04.79+03	2021-05-26 06:22:04.796+03	
8b60c5ea-d7ba-46fd-c5a6-941aa95846d3	2021-05-26 06:22:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:22:24.79+03	2021-05-26 06:22:24.797+03	
104a3d80-0a56-5770-f0eb-77ca6fb8bf25	2021-05-26 06:22:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:22:44.79+03	2021-05-26 06:22:44.804+03	
38088b07-2981-6ee0-b091-40485bc5c84e	2021-05-26 06:23:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:23:04.79+03	2021-05-26 06:23:04.797+03	
c15a58be-6374-6ac3-fa72-9f80ad372a4b	2021-05-26 06:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:23:24.79+03	2021-05-26 06:23:24.817+03	
ac4cd72a-1cb1-e343-fae8-5d761a61a818	2021-05-26 06:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:23:44.79+03	2021-05-26 06:23:44.796+03	
223ae052-9501-4dd0-12da-fc60674db8f2	2021-05-26 06:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:24:04.79+03	2021-05-26 06:24:04.796+03	
00977b24-55ff-991b-e895-aadbd90c6c97	2021-05-26 06:24:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:24:24.79+03	2021-05-26 06:24:24.797+03	
5f917446-e796-e32f-dbc7-1b4bd5fe58c7	2021-05-26 06:24:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:24:44.79+03	2021-05-26 06:24:44.797+03	
a7392f94-1b8e-074a-926e-8d36715d4108	2021-05-26 06:25:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:25:04.79+03	2021-05-26 06:25:04.797+03	
bcaacc52-6117-35c3-c5e8-9f5765942b83	2021-05-26 06:25:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:25:24.79+03	2021-05-26 06:25:24.796+03	
bc9914d4-78ce-4006-acb5-d9dfdc1eff91	2021-05-26 06:25:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:25:44.79+03	2021-05-26 06:25:44.798+03	
e9e2f21a-fe1c-5777-53d9-2253503d36d8	2021-05-26 06:26:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:26:04.79+03	2021-05-26 06:26:04.797+03	
589d4363-3191-7b87-9958-2067eb8e0c0b	2021-05-26 06:26:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:26:24.79+03	2021-05-26 06:26:24.796+03	
6dd9f593-cb43-bb4f-a114-00831ed196c6	2021-05-26 06:26:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:26:44.79+03	2021-05-26 06:26:44.797+03	
9894fd67-934d-c403-387b-87e6971df64f	2021-05-26 06:27:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:27:04.79+03	2021-05-26 06:27:04.796+03	
1ea94f2a-1b33-73bc-0245-e2f02aa68f8a	2021-05-26 06:27:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:27:24.79+03	2021-05-26 06:27:24.796+03	
72c68db3-59e9-4044-f594-145de6aa9a3c	2021-05-26 06:27:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:27:44.79+03	2021-05-26 06:27:44.796+03	
d4dc6f76-2abc-8de5-ac9f-fb8541a40f5f	2021-05-26 06:28:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:28:04.79+03	2021-05-26 06:28:04.798+03	
2ad34315-14ce-2953-95ce-94312d5c5c4f	2021-05-26 06:28:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:28:24.79+03	2021-05-26 06:28:24.796+03	
5001a753-98e9-4730-db96-11ca61078771	2021-05-26 06:28:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:28:44.79+03	2021-05-26 06:28:44.796+03	
b4c971c6-92e1-1716-1c80-a472ef0c0c53	2021-05-26 06:29:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:29:04.79+03	2021-05-26 06:29:04.797+03	
ec37aded-9ac0-7bee-f25b-98b711b46ab4	2021-05-26 06:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:08:44.79+03	2021-05-26 06:08:44.797+03	
73af98ae-8342-6e61-4ab9-3deeb7ea02c2	2021-05-26 06:09:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:09:04.79+03	2021-05-26 06:09:04.798+03	
88bd33e4-911d-1c59-868e-c73da215e188	2021-05-26 06:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:09:24.79+03	2021-05-26 06:09:24.814+03	
612e7661-c486-91a7-35c3-d89fbe41c86b	2021-05-26 06:09:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:09:44.79+03	2021-05-26 06:09:44.797+03	
8d14ff00-6927-df9f-c5be-2aaa8f798deb	2021-05-26 06:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:09:54.79+03	2021-05-26 06:09:54.797+03	
3ebf2302-170e-a665-6863-bdff98d20bde	2021-05-26 06:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:10:04.79+03	2021-05-26 06:10:04.798+03	
6364aaff-e5f4-ab0a-6f68-f6b8e0f1df3a	2021-05-26 06:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:10:24.79+03	2021-05-26 06:10:24.797+03	
39c984c1-8474-1cee-995f-6d27863294e4	2021-05-26 06:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:10:44.79+03	2021-05-26 06:10:44.796+03	
039cbd84-c6cd-b15d-b145-1ac371378ea0	2021-05-26 06:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:11:04.79+03	2021-05-26 06:11:04.796+03	
3916f22d-b0fd-6584-c4ac-98348f1d82be	2021-05-26 06:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:11:24.79+03	2021-05-26 06:11:24.796+03	
abf7c9f8-498d-1223-2e18-5f31371b64bf	2021-05-26 06:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:11:44.79+03	2021-05-26 06:11:44.796+03	
26a3a06c-d8ed-c952-afde-437d84bfbf30	2021-05-26 06:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:12:04.79+03	2021-05-26 06:12:04.798+03	
b3ad0335-24d6-1972-cfdd-6b3e27fa2546	2021-05-26 06:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:12:24.79+03	2021-05-26 06:12:24.797+03	
3db36750-dcaf-e63f-a1a1-a463544defef	2021-05-26 06:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:12:44.79+03	2021-05-26 06:12:44.797+03	
a7fe9451-43af-e6e9-f7e7-128dcf89f319	2021-05-26 06:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:13:04.79+03	2021-05-26 06:13:04.797+03	
d8aed268-a0f2-dbad-9d94-3d790dc6322d	2021-05-26 06:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:13:24.79+03	2021-05-26 06:13:24.796+03	
478ab6ac-6668-74cc-8cf2-b04e809f10e8	2021-05-26 06:13:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:13:44.79+03	2021-05-26 06:13:44.798+03	
9e180d04-9585-09d1-cd6c-e02f7919f720	2021-05-26 06:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:14:04.79+03	2021-05-26 06:14:04.797+03	
71b349b5-d385-9ff5-fd62-9a88502c3a5f	2021-05-26 06:14:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:14:24.79+03	2021-05-26 06:14:24.797+03	
6aab07d0-c2ec-e1d1-cd08-92e772c672ba	2021-05-26 06:14:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:14:44.79+03	2021-05-26 06:14:44.797+03	
1e53e4a9-4f70-d01e-c151-edcca3dc1176	2021-05-26 06:15:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:15:04.79+03	2021-05-26 06:15:04.797+03	
6b3c6961-5270-4c1b-2e2d-51aaf44a9835	2021-05-26 06:15:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:15:24.79+03	2021-05-26 06:15:24.796+03	
9f85f01a-5b48-7bec-601f-d7a5dc31b9b8	2021-05-26 06:15:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:15:44.79+03	2021-05-26 06:15:44.796+03	
75e19698-e15c-32ca-f729-91abfaa71233	2021-05-26 06:16:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:16:04.79+03	2021-05-26 06:16:04.798+03	
11a31adf-e9aa-c936-5207-93f8917a6834	2021-05-26 06:16:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:16:24.79+03	2021-05-26 06:16:24.797+03	
5f70d325-3de1-c196-3549-83bc7b9693a8	2021-05-26 06:16:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:16:44.79+03	2021-05-26 06:16:44.798+03	
18c4e70f-8118-3e99-a805-439a2720f57b	2021-05-26 06:17:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:17:04.79+03	2021-05-26 06:17:04.797+03	
90f8dd58-1bb9-071b-885a-2993690abf43	2021-05-26 06:17:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:17:24.79+03	2021-05-26 06:17:24.796+03	
5090a8ec-776d-3dab-312a-ee6e0f49b6be	2021-05-26 06:17:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:17:44.79+03	2021-05-26 06:17:44.796+03	
b6db6d31-51e4-4580-1c98-bbe373b9c46f	2021-05-26 06:18:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:18:04.79+03	2021-05-26 06:18:04.796+03	
e6dd1f36-e469-6825-e4ca-72db60c8a4e3	2021-05-26 06:18:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:18:24.79+03	2021-05-26 06:18:24.797+03	
ab3d060b-b31a-aeda-d459-6eb944e4b792	2021-05-26 06:18:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:18:44.79+03	2021-05-26 06:18:44.796+03	
69541ed4-1803-a654-4452-4aabf721d736	2021-05-26 06:19:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:19:04.79+03	2021-05-26 06:19:04.797+03	
8fad5bc3-1975-8e3d-f38e-b5cbf815f961	2021-05-26 06:19:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:19:24.79+03	2021-05-26 06:19:24.796+03	
ae5ad831-d289-c35d-1c46-061b7b014d95	2021-05-26 06:19:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:19:44.79+03	2021-05-26 06:19:44.798+03	
f6c46bc0-286c-930a-d229-6afdc32722b3	2021-05-26 06:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 06:20:00.79+03	2021-05-26 06:20:00.796+03	ERROR
c9b7236b-01c9-6625-0089-38c65830b2ba	2021-05-26 06:20:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:20:14.79+03	2021-05-26 06:20:14.796+03	
2fb3f5b1-7742-35c7-6c6f-7f08e06c6df5	2021-05-26 06:20:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:20:34.79+03	2021-05-26 06:20:34.796+03	
76bd9bc7-c982-97ca-c292-9e6bc93863b8	2021-05-26 06:20:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:20:54.79+03	2021-05-26 06:20:54.796+03	
5abeab9f-31fc-f0d4-8a60-becd57c157a6	2021-05-26 06:21:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:21:14.79+03	2021-05-26 06:21:14.797+03	
ab976cdf-8a36-63b0-d71b-42a7f30632d1	2021-05-26 06:21:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:21:34.79+03	2021-05-26 06:21:34.797+03	
a7062f8e-1811-a071-c025-10f957f552be	2021-05-26 06:21:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:21:54.79+03	2021-05-26 06:21:54.802+03	
5591cfc6-733e-9685-8612-b0ce33689657	2021-05-26 06:22:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:22:14.79+03	2021-05-26 06:22:14.81+03	
0379aeca-0148-ab8a-5f56-52eac29c9964	2021-05-26 06:22:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:22:34.79+03	2021-05-26 06:22:34.797+03	
ab3e5f40-f0b7-1369-2771-ee0deeaefba3	2021-05-26 06:22:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:22:54.79+03	2021-05-26 06:22:54.809+03	
26081e66-a97b-097c-4aae-8700f25cbd7d	2021-05-26 06:23:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:23:14.79+03	2021-05-26 06:23:14.798+03	
4909813c-6501-2afe-8056-aa55a00d4181	2021-05-26 06:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:23:34.79+03	2021-05-26 06:23:34.797+03	
1702f5ec-986c-09e4-6479-723a098b5cdb	2021-05-26 06:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:23:54.79+03	2021-05-26 06:23:54.797+03	
6de3bdf8-1123-8007-68e7-8e87fdc2707c	2021-05-26 06:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:24:14.79+03	2021-05-26 06:24:14.796+03	
90d33a48-dd5e-2377-d0b4-38a46925db62	2021-05-26 06:24:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:24:34.79+03	2021-05-26 06:24:34.795+03	
26808b82-2da4-d1c2-9b53-b89acb48263a	2021-05-26 06:24:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:24:54.79+03	2021-05-26 06:24:54.796+03	
2c6e22b0-aacf-9784-93a2-428c3fcfdc8d	2021-05-26 06:25:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:25:14.79+03	2021-05-26 06:25:14.796+03	
664b3235-7f4b-73be-78b8-d2a6aff04ee0	2021-05-26 06:25:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:25:34.79+03	2021-05-26 06:25:34.797+03	
89fa7aea-c9fa-136c-b05c-15f49c3068b9	2021-05-26 06:25:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:25:54.79+03	2021-05-26 06:25:54.796+03	
6d36b8f3-055b-5359-ec92-541a33bde18b	2021-05-26 06:26:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:26:14.79+03	2021-05-26 06:26:14.799+03	
cce564fb-9552-69e8-3995-0b109ac671cc	2021-05-26 06:26:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:26:34.79+03	2021-05-26 06:26:34.796+03	
ef08421b-aaba-a6b8-251b-45e1c785bc8c	2021-05-26 06:26:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:26:54.79+03	2021-05-26 06:26:54.796+03	
a1b969ee-9e1b-1a7a-d89b-b569012b33f4	2021-05-26 06:27:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:27:14.79+03	2021-05-26 06:27:14.796+03	
b0da2b4b-3828-cfee-47d9-1d37d9a7f908	2021-05-26 06:27:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:27:34.79+03	2021-05-26 06:27:34.808+03	
568a82ae-c2fb-76c8-7138-126ec8662a1c	2021-05-26 06:27:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:27:54.79+03	2021-05-26 06:27:54.796+03	
8d7ad491-5404-0092-8387-23aa78852ec0	2021-05-26 06:28:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:28:14.79+03	2021-05-26 06:28:14.796+03	
2821511d-25e4-0fb1-02ba-ccc3ec104bc0	2021-05-26 06:28:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:28:34.79+03	2021-05-26 06:28:34.796+03	
971e3a8f-215f-7a40-ffdf-bffb00d190d8	2021-05-26 06:28:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:28:54.79+03	2021-05-26 06:28:54.797+03	
5cfa75bd-1d3f-b0b3-2f39-8c1fb0b00dd9	2021-05-26 06:29:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:29:14.79+03	2021-05-26 06:29:14.798+03	
b2cdd0c4-981e-b2dc-cad1-fba9434fc7c1	2021-05-26 06:29:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:29:34.79+03	2021-05-26 06:29:34.796+03	
6f42239e-2ff2-a0b7-e5c5-b9baabf44ff7	2021-05-26 06:29:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:29:54.79+03	2021-05-26 06:29:54.797+03	
85cda3d2-1d7b-6f8b-4cd7-2aa4dc556f17	2021-05-26 06:30:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:30:04.79+03	2021-05-26 06:30:04.796+03	
b4837dcf-755e-e257-369a-186f4627d07a	2021-05-26 06:30:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:30:24.79+03	2021-05-26 06:30:24.796+03	
45c0c082-6497-4626-2132-26b753b7c2e1	2021-05-26 06:30:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:30:44.79+03	2021-05-26 06:30:44.796+03	
c365ef05-4a45-7670-fcf3-fc4ba07b53c5	2021-05-26 06:31:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:31:04.79+03	2021-05-26 06:31:04.796+03	
f321a19b-d2d7-93cc-f8f0-1c5f7bd824fa	2021-05-26 06:31:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:31:24.79+03	2021-05-26 06:31:24.796+03	
53d75e8e-aa0a-3330-a604-69522e24dc12	2021-05-26 06:31:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:31:44.79+03	2021-05-26 06:31:44.796+03	
b6b675ae-b845-6d5c-6a02-231f0cb0859d	2021-05-26 06:32:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:32:04.79+03	2021-05-26 06:32:04.797+03	
91a7b61e-1326-bb3e-0a84-43506f651444	2021-05-26 06:32:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:32:24.79+03	2021-05-26 06:32:24.8+03	
331b1e75-8ad7-b740-644f-adcd2ee2d93a	2021-05-26 06:32:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:32:44.79+03	2021-05-26 06:32:44.798+03	
bc30aeff-d1f8-0857-f502-57cdfc95cfa5	2021-05-26 06:33:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:33:04.79+03	2021-05-26 06:33:04.797+03	
eaa2806a-d185-1902-3e14-f8c6039eef30	2021-05-26 06:33:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:33:24.79+03	2021-05-26 06:33:24.797+03	
c65619fa-69c8-53af-f274-b70bd13c42e9	2021-05-26 06:33:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:33:44.79+03	2021-05-26 06:33:44.796+03	
de2c57f3-6c7d-51df-a7ef-0cd6bdb71a58	2021-05-26 06:34:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:34:04.79+03	2021-05-26 06:34:04.797+03	
cd4e5c7b-2a65-f5d9-4474-1620c70dc962	2021-05-26 06:34:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:34:24.79+03	2021-05-26 06:34:24.798+03	
67c3af17-bd7e-8340-a6cd-05fb32b9127a	2021-05-26 06:34:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:34:44.79+03	2021-05-26 06:34:44.796+03	
878c0029-470d-2589-28a9-288ba684bb1d	2021-05-26 06:35:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:35:04.79+03	2021-05-26 06:35:04.796+03	
9d6b0c41-1d9d-06d8-f13b-1eebefb7228c	2021-05-26 06:35:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:35:24.79+03	2021-05-26 06:35:24.797+03	
8bdca9fd-6fe1-8930-68e2-14c5222109d7	2021-05-26 06:35:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:35:44.79+03	2021-05-26 06:35:44.797+03	
82df91d8-0f21-da27-1afb-35318d6c7867	2021-05-26 06:36:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:36:04.79+03	2021-05-26 06:36:04.801+03	
ccc6d94d-4a72-f961-2240-6939397d1288	2021-05-26 06:36:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:36:24.79+03	2021-05-26 06:36:24.797+03	
bd78b98e-ab3a-0699-5eb3-e82c351c6d57	2021-05-26 06:36:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:36:44.79+03	2021-05-26 06:36:44.796+03	
be16c620-24bb-bf2c-29e6-a55220f224fc	2021-05-26 06:37:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:37:04.79+03	2021-05-26 06:37:04.797+03	
50777b02-df78-6dbf-0442-bd7f9dfdf3fc	2021-05-26 06:37:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:37:24.79+03	2021-05-26 06:37:24.798+03	
5d26a655-9512-c8c1-0b41-18c42102fb90	2021-05-26 06:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:37:44.79+03	2021-05-26 06:37:44.797+03	
c7388416-d30b-d88a-db7e-67a74e7e1d3d	2021-05-26 06:38:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:38:04.79+03	2021-05-26 06:38:04.797+03	
491965d3-cbfb-25cc-4ea1-8f68ad1049c9	2021-05-26 06:38:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:38:24.79+03	2021-05-26 06:38:24.796+03	
a9a6ee98-cc0d-cefc-7286-67df467d2d42	2021-05-26 06:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:38:44.79+03	2021-05-26 06:38:44.797+03	
f16b8e24-76ad-991b-6526-d842aa9aba9e	2021-05-26 06:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:39:04.79+03	2021-05-26 06:39:04.797+03	
8b55def1-0d10-d979-cff4-5da73cfa3aff	2021-05-26 06:39:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:39:24.79+03	2021-05-26 06:39:24.798+03	
5222fa68-8e75-d15c-7ed4-1328413cf049	2021-05-26 06:39:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:39:44.79+03	2021-05-26 06:39:44.797+03	
6d31c8ef-1890-aabf-b06c-1a04967ee9f7	2021-05-26 06:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 06:40:00.79+03	2021-05-26 06:40:00.795+03	ERROR
9c3b6344-759b-9f59-eb66-6e88f853c472	2021-05-26 06:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:40:14.79+03	2021-05-26 06:40:14.797+03	
97f838df-2247-d12f-6700-bd66a703e2f2	2021-05-26 06:40:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:40:34.79+03	2021-05-26 06:40:34.797+03	
4e458d45-8574-7196-5060-05b4af243722	2021-05-26 06:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:40:54.79+03	2021-05-26 06:40:54.796+03	
54361308-97dd-55b7-ceab-5974a051824b	2021-05-26 06:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:41:14.79+03	2021-05-26 06:41:14.797+03	
93fe90c4-161d-138a-1245-49a9c9ac82bb	2021-05-26 06:41:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:41:34.79+03	2021-05-26 06:41:34.796+03	
f7bf31df-b520-8d65-1e8d-ed3f8c75cdf1	2021-05-26 06:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:41:54.79+03	2021-05-26 06:41:54.796+03	
6c89eefe-4cb9-5170-8b10-9e6c43262858	2021-05-26 06:42:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:42:14.79+03	2021-05-26 06:42:14.796+03	
2d7e42cf-a5dc-9b1c-9e81-8e177b6ad3ad	2021-05-26 06:42:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:42:34.79+03	2021-05-26 06:42:34.796+03	
46a5385c-d247-0d2a-a999-bb30cbc8b16b	2021-05-26 06:42:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:42:54.79+03	2021-05-26 06:42:54.796+03	
fb2a7e7f-856a-e17c-c8eb-0484b7608351	2021-05-26 06:43:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:43:14.79+03	2021-05-26 06:43:14.797+03	
393fcad2-0aeb-1020-47a9-fa5fc309e82a	2021-05-26 06:43:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:43:34.79+03	2021-05-26 06:43:34.797+03	
89c24282-79ac-d452-b326-9f3c5c66aab1	2021-05-26 06:43:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:43:54.79+03	2021-05-26 06:43:54.797+03	
c8b80a3e-cbc4-fcbc-d45b-23d1068a70b3	2021-05-26 06:44:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:44:14.79+03	2021-05-26 06:44:14.797+03	
c40c919b-9d32-73cc-3fa9-5586fd93614a	2021-05-26 06:44:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:44:34.79+03	2021-05-26 06:44:34.796+03	
bd4e76b7-fe27-5b8a-7241-f602cdf6db6c	2021-05-26 06:44:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:44:54.79+03	2021-05-26 06:44:54.797+03	
401d33ec-3c88-c1f5-6081-2a95a3177c45	2021-05-26 06:45:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:45:14.79+03	2021-05-26 06:45:14.804+03	
f8656243-b32c-f7bd-b385-0e53ea8fc43e	2021-05-26 06:45:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:45:34.79+03	2021-05-26 06:45:34.796+03	
89703503-9509-fea6-a486-00e3a96c2921	2021-05-26 06:45:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:45:54.79+03	2021-05-26 06:45:54.798+03	
91ed142d-a4e4-c797-e7be-914b9a572769	2021-05-26 06:46:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:46:14.79+03	2021-05-26 06:46:14.801+03	
acbc18af-62bd-8c72-82d8-74c209a0ec29	2021-05-26 06:46:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:46:34.79+03	2021-05-26 06:46:34.8+03	
4be984e5-2d91-df3b-48fe-44ba77e8177d	2021-05-26 06:46:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:46:54.79+03	2021-05-26 06:46:54.796+03	
1f08d747-c6a5-6b7c-ae42-284fb12b5d38	2021-05-26 06:47:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:47:14.79+03	2021-05-26 06:47:14.799+03	
c136b2c4-9126-1f3b-ce22-7e8985ffd09c	2021-05-26 06:47:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:47:34.79+03	2021-05-26 06:47:34.796+03	
4a06e079-c5b9-d9bd-4c82-18a17fb1c003	2021-05-26 06:47:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:47:54.79+03	2021-05-26 06:47:54.796+03	
39ec04bb-4351-a86a-0a93-f51012134b02	2021-05-26 06:48:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:48:14.79+03	2021-05-26 06:48:14.796+03	
b927b7fa-a581-2197-4d04-6c69aa38f407	2021-05-26 06:48:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:48:34.79+03	2021-05-26 06:48:34.797+03	
b713596f-ca57-e1e8-2a19-10c7f4415908	2021-05-26 06:48:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:48:54.79+03	2021-05-26 06:48:54.797+03	
dcf93f9f-4ef6-1454-2e9d-a35560575cc0	2021-05-26 06:49:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:49:14.79+03	2021-05-26 06:49:14.796+03	
7e56b3ed-2e3d-7341-0fa3-780a8bf47d3c	2021-05-26 06:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:49:34.79+03	2021-05-26 06:49:34.797+03	
8d07116f-7f02-80d3-b532-98fbb9fde299	2021-05-26 06:29:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:29:24.79+03	2021-05-26 06:29:24.799+03	
ba1dd33e-7456-fcb7-0d0b-f74984e177e5	2021-05-26 06:29:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:29:44.79+03	2021-05-26 06:29:44.796+03	
235c81b1-ae8c-93cb-6434-16852ff4155d	2021-05-26 06:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 06:30:00.79+03	2021-05-26 06:30:00.794+03	ERROR
e6ad0dfb-c1d8-3405-7af5-419e1c082891	2021-05-26 06:30:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:30:14.79+03	2021-05-26 06:30:14.797+03	
4a44e276-8eb8-4ab5-1736-fc6c7e7b4aa3	2021-05-26 06:30:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:30:34.79+03	2021-05-26 06:30:34.796+03	
8a0cb9f0-ba1e-edaa-0902-eb41602d5d89	2021-05-26 06:30:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:30:54.79+03	2021-05-26 06:30:54.798+03	
35a938af-5fa2-6469-35cb-0e6f9aac665a	2021-05-26 06:31:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:31:14.79+03	2021-05-26 06:31:14.796+03	
d9b953a2-7674-1aa0-cf4a-d622050360aa	2021-05-26 06:31:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:31:34.79+03	2021-05-26 06:31:34.797+03	
b59e040c-6bad-1c60-7c9d-ba948dc7e840	2021-05-26 06:31:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:31:54.79+03	2021-05-26 06:31:54.796+03	
a446c09c-d683-e5e5-6002-20a1ab44d52b	2021-05-26 06:32:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:32:14.79+03	2021-05-26 06:32:14.798+03	
6787f82a-1187-6375-8cc0-07ba872417b3	2021-05-26 06:32:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:32:34.79+03	2021-05-26 06:32:34.809+03	
dafd5dad-de81-ea8a-8733-fafb1a350315	2021-05-26 06:32:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:32:54.79+03	2021-05-26 06:32:54.799+03	
8639a96e-8ca7-852f-e479-e52cc873e0eb	2021-05-26 06:33:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:33:14.79+03	2021-05-26 06:33:14.796+03	
024949cf-8ebc-8884-d18a-76c69721d888	2021-05-26 06:33:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:33:34.79+03	2021-05-26 06:33:34.797+03	
04107b6c-c988-073e-f1fe-365c0cce4d2b	2021-05-26 06:33:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:33:54.79+03	2021-05-26 06:33:54.797+03	
fae41c6c-5f29-aec6-5cf7-d01f807413be	2021-05-26 06:34:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:34:14.79+03	2021-05-26 06:34:14.797+03	
9b92e90c-c666-4f1f-7d36-417217cf1d01	2021-05-26 06:34:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:34:34.79+03	2021-05-26 06:34:34.797+03	
920ce4dc-bde8-fbf3-0b5c-7613cc48b507	2021-05-26 06:34:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:34:54.79+03	2021-05-26 06:34:54.798+03	
e3afba93-347c-4b3c-fddc-aaa5efa252f3	2021-05-26 06:35:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:35:14.79+03	2021-05-26 06:35:14.797+03	
225ba323-3e7b-6c4e-347a-08086dd4ff89	2021-05-26 06:35:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:35:34.79+03	2021-05-26 06:35:34.8+03	
de290dc7-2d34-f0a9-f3e9-e0b9fce69427	2021-05-26 06:35:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:35:54.79+03	2021-05-26 06:35:54.796+03	
9edd415e-2488-6b68-7b06-96b1ae6397e1	2021-05-26 06:36:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:36:14.79+03	2021-05-26 06:36:14.797+03	
804a442c-b639-754d-7e6b-21fff4b95edb	2021-05-26 06:36:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:36:34.79+03	2021-05-26 06:36:34.796+03	
702bf545-2171-b2b6-2652-4725453885c5	2021-05-26 06:36:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:36:54.79+03	2021-05-26 06:36:54.797+03	
303a55b7-a4c4-bee6-3724-7d39c295e2c0	2021-05-26 06:37:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:37:14.79+03	2021-05-26 06:37:14.797+03	
6e8b27ce-363e-dc15-20ac-6ae1330c0a60	2021-05-26 06:37:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:37:34.79+03	2021-05-26 06:37:34.797+03	
554b6dc8-4ad3-ab6e-eeb5-a917f04035d9	2021-05-26 06:37:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:37:54.79+03	2021-05-26 06:37:54.796+03	
b2d2b9fa-b237-02b3-377c-077e85705020	2021-05-26 06:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:38:14.79+03	2021-05-26 06:38:14.796+03	
34574169-370a-6c97-940e-25cd0724142f	2021-05-26 06:38:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:38:34.79+03	2021-05-26 06:38:34.796+03	
963df58d-9890-8c2d-0c10-093ec6d20a17	2021-05-26 06:38:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:38:54.79+03	2021-05-26 06:38:54.797+03	
2e7c5b49-1474-2009-0320-7e4199005239	2021-05-26 06:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:39:14.79+03	2021-05-26 06:39:14.798+03	
33fe7f7d-24fe-9e55-c6a6-c36e47c6cce3	2021-05-26 06:39:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:39:34.79+03	2021-05-26 06:39:34.798+03	
39e24906-29f2-7ca5-7f12-c311c1d217d2	2021-05-26 06:39:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:39:54.79+03	2021-05-26 06:39:54.797+03	
c264380f-1c7e-bf1c-cfdf-a53e9526e92f	2021-05-26 06:40:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:40:04.79+03	2021-05-26 06:40:04.797+03	
ab09c38e-dcd3-1821-58de-b66247fb848e	2021-05-26 06:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:40:24.79+03	2021-05-26 06:40:24.797+03	
37cb7806-d9b0-d007-f49d-a9041c0fb6ae	2021-05-26 06:40:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:40:44.79+03	2021-05-26 06:40:44.797+03	
1ffc398d-bf2d-b0b8-d129-5e53ddfd5e6c	2021-05-26 06:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:41:04.79+03	2021-05-26 06:41:04.796+03	
c7aa0ef2-a7cf-2caa-f342-e7c3b98fd344	2021-05-26 06:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:41:24.79+03	2021-05-26 06:41:24.796+03	
60f1ea0d-a8f5-dbec-bc40-f2ec580dbbfb	2021-05-26 06:41:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:41:44.79+03	2021-05-26 06:41:44.796+03	
7bd76c7c-914f-33e5-24b5-4dd5bd7d3efd	2021-05-26 06:42:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:42:04.79+03	2021-05-26 06:42:04.796+03	
e18d42e5-b608-9aaf-f901-cf34f5274bf3	2021-05-26 06:42:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:42:24.79+03	2021-05-26 06:42:24.797+03	
8a4ba07d-2785-643d-ced8-a247656fc2ee	2021-05-26 06:42:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:42:44.79+03	2021-05-26 06:42:44.796+03	
56060822-fd43-2158-9b8d-c1110af8f6b9	2021-05-26 06:43:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:43:04.79+03	2021-05-26 06:43:04.797+03	
fad8aaed-87f6-c400-4d8c-253281edc96d	2021-05-26 06:43:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:43:24.79+03	2021-05-26 06:43:24.796+03	
0131c65b-710b-9f54-7230-535c72b2a432	2021-05-26 06:43:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:43:44.79+03	2021-05-26 06:43:44.796+03	
f9674322-cb13-06c1-5987-0ccd68986354	2021-05-26 06:44:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:44:04.79+03	2021-05-26 06:44:04.797+03	
ce484a5b-a9d1-2b07-4497-4f172118dfd9	2021-05-26 06:44:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:44:24.79+03	2021-05-26 06:44:24.796+03	
691dc114-69d1-6d1a-d3de-d84647c5fe75	2021-05-26 06:44:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:44:44.79+03	2021-05-26 06:44:44.797+03	
2d923982-2c8e-ba40-bad4-f2ace0983421	2021-05-26 06:45:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:45:04.79+03	2021-05-26 06:45:04.796+03	
cd7d2aab-54c2-411f-8c52-78e40b8a8028	2021-05-26 06:45:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:45:24.79+03	2021-05-26 06:45:24.796+03	
9290841d-a311-dbed-0707-349a9a2c81f9	2021-05-26 06:45:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:45:44.79+03	2021-05-26 06:45:44.796+03	
f5bb05b3-28e1-39b5-0d8f-fc781796595e	2021-05-26 06:46:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:46:04.79+03	2021-05-26 06:46:04.796+03	
8802500b-b8fc-4750-f8b0-7de9cb466593	2021-05-26 06:46:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:46:24.79+03	2021-05-26 06:46:24.796+03	
7c116fa1-5f0b-e545-c4e6-86546742d374	2021-05-26 06:46:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:46:44.79+03	2021-05-26 06:46:44.796+03	
b43d4c69-d9b6-9e4e-2d9a-c84e87463755	2021-05-26 06:47:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:47:04.79+03	2021-05-26 06:47:04.796+03	
5c06adb0-d740-a82f-bb21-a885725903b5	2021-05-26 06:47:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:47:24.79+03	2021-05-26 06:47:24.797+03	
5ad3d837-f453-42de-535b-e74eee3ce2e7	2021-05-26 06:47:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:47:44.79+03	2021-05-26 06:47:44.796+03	
95f14fdb-eef1-70aa-49e7-892d2f90943c	2021-05-26 06:48:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:48:04.79+03	2021-05-26 06:48:04.796+03	
10e9f716-860c-d651-f0f5-ac271a0cfe59	2021-05-26 06:48:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:48:24.79+03	2021-05-26 06:48:24.799+03	
a607c33a-d6ea-9818-c894-6d5153853a60	2021-05-26 06:48:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:48:44.79+03	2021-05-26 06:48:44.808+03	
a855b481-e2cf-5c55-227e-1f3cfbfc2ae9	2021-05-26 06:49:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:49:04.79+03	2021-05-26 06:49:04.807+03	
d05340ef-0892-302e-4aff-ecfed3a22d40	2021-05-26 06:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:49:24.79+03	2021-05-26 06:49:24.797+03	
8483e871-8cad-639d-5f45-a86193ef5961	2021-05-26 06:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:49:44.79+03	2021-05-26 06:49:44.797+03	
27c29829-3fac-3c9d-74a0-81929f8a29cd	2021-05-26 06:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:49:54.79+03	2021-05-26 06:49:54.796+03	
6264674c-923a-e9b3-09de-8cc9719d4759	2021-05-26 06:50:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:50:04.79+03	2021-05-26 06:50:04.797+03	
b17ccd8f-f13f-aee4-b0ed-ddc6910a806a	2021-05-26 06:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:50:24.79+03	2021-05-26 06:50:24.796+03	
a70d734f-ccf7-b8d5-c56d-7aedb7805082	2021-05-26 06:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:50:44.79+03	2021-05-26 06:50:44.796+03	
8056fc6c-33ee-b8b0-1528-c9682c68f0bb	2021-05-26 06:51:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:51:04.79+03	2021-05-26 06:51:04.796+03	
88d94fb1-05cd-f340-bf4a-32c1bac7efed	2021-05-26 06:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:51:24.79+03	2021-05-26 06:51:24.809+03	
2c1706c8-686b-9a61-096e-8b8c6dba9166	2021-05-26 06:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:51:44.79+03	2021-05-26 06:51:44.798+03	
5ee83e0a-aa17-0eda-666a-a1937852af06	2021-05-26 06:52:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:52:04.79+03	2021-05-26 06:52:04.796+03	
6222773b-e0b5-c130-128f-012bd3b65101	2021-05-26 06:52:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:52:24.79+03	2021-05-26 06:52:24.798+03	
494a8820-c99f-c17b-c703-2f5ebfa959df	2021-05-26 06:52:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:52:44.79+03	2021-05-26 06:52:44.796+03	
8338a442-0a24-ae6b-3d71-47c4fc98e3cf	2021-05-26 06:53:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:53:04.79+03	2021-05-26 06:53:04.796+03	
657dabf8-0868-e470-e7fd-17c3835f5af1	2021-05-26 06:53:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:53:24.79+03	2021-05-26 06:53:24.796+03	
965ecdac-5989-d2d1-fabe-f4cbc995a3be	2021-05-26 06:53:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:53:44.79+03	2021-05-26 06:53:44.797+03	
2d10957f-8250-cdd1-d3c9-32de7be7dffd	2021-05-26 06:54:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:54:04.79+03	2021-05-26 06:54:04.798+03	
dafb3483-9316-59ca-0df4-5476efd6bae9	2021-05-26 06:54:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:54:24.79+03	2021-05-26 06:54:24.796+03	
754660c4-fd2e-bc31-60b5-ab18b916b76e	2021-05-26 06:54:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:54:44.79+03	2021-05-26 06:54:44.797+03	
6ca1c781-9903-371c-7fdd-72602f4127a8	2021-05-26 06:55:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:55:04.79+03	2021-05-26 06:55:04.796+03	
f499cde9-46b1-d0cd-04a5-0a21fa6d8e4a	2021-05-26 06:55:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:55:24.79+03	2021-05-26 06:55:24.811+03	
4c1e7989-3af6-37ea-72ba-1a0a451e04c1	2021-05-26 06:55:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:55:44.79+03	2021-05-26 06:55:44.808+03	
8517eb0e-d481-7dc1-66b8-adcda7c0d90b	2021-05-26 06:56:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:56:04.79+03	2021-05-26 06:56:04.796+03	
41e4243a-3280-4e9a-3bca-ceb8e4a2a5bf	2021-05-26 06:56:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:56:24.79+03	2021-05-26 06:56:24.796+03	
27b5d59e-82d6-ac9e-9956-476160f490ed	2021-05-26 06:56:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:56:44.79+03	2021-05-26 06:56:44.796+03	
fd0643a0-0346-1942-59c9-bd7727f2ca76	2021-05-26 06:57:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:57:04.79+03	2021-05-26 06:57:04.796+03	
076f3b6f-c864-4ab5-5b32-619a8ba57649	2021-05-26 06:57:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:57:24.79+03	2021-05-26 06:57:24.796+03	
c119a00b-ceb1-c365-751e-073d05269fed	2021-05-26 06:57:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:57:44.79+03	2021-05-26 06:57:44.796+03	
b12e1ed8-42e4-2b4f-7a4b-1ad5d7a097c5	2021-05-26 06:58:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:58:04.79+03	2021-05-26 06:58:04.796+03	
c43426fa-d332-ade5-b50a-7aca1cfbac08	2021-05-26 06:58:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:58:24.79+03	2021-05-26 06:58:24.796+03	
f87b00cb-bfde-d905-db8f-5537e93ed8a3	2021-05-26 06:58:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:58:44.79+03	2021-05-26 06:58:44.799+03	
5bf32fc7-5ad0-6f50-ffb1-51318030d506	2021-05-26 06:59:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:59:04.79+03	2021-05-26 06:59:04.796+03	
b29c7057-d22f-86dd-d069-692ffcb8a294	2021-05-26 06:59:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:59:24.79+03	2021-05-26 06:59:24.797+03	
ba5c85f9-58e0-23c5-6bd9-f5c8579dab5b	2021-05-26 06:59:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:59:44.79+03	2021-05-26 06:59:44.797+03	
bd42d5ab-0c1c-ecd3-a1c7-a22f37d682fb	2021-05-26 06:59:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:59:54.79+03	2021-05-26 06:59:54.796+03	
40ba6008-ea5a-e17e-4f70-b8f5f6618276	2021-05-26 07:00:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:00:04.79+03	2021-05-26 07:00:04.796+03	
025e5aa7-b263-3e43-e502-ce1cd42f55de	2021-05-26 07:00:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:00:24.79+03	2021-05-26 07:00:24.802+03	
ab321969-d281-2a3c-73af-a06fc5fc94dc	2021-05-26 07:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:00:44.79+03	2021-05-26 07:00:44.797+03	
625ce969-c623-d224-3614-4499bd7ca900	2021-05-26 07:01:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:01:04.79+03	2021-05-26 07:01:04.798+03	
ccb1873a-b73b-81e4-53d1-f4b7790bf8b9	2021-05-26 07:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:01:24.79+03	2021-05-26 07:01:24.798+03	
999b773e-c8b4-ffb7-eebb-10ba97d1fc29	2021-05-26 07:01:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:01:44.79+03	2021-05-26 07:01:44.796+03	
490a3a94-fdd3-5a7f-ae32-13c8cdcafae6	2021-05-26 07:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:02:04.79+03	2021-05-26 07:02:04.8+03	
e8cc76be-eee2-9cba-53a7-dd4ba64008b6	2021-05-26 07:02:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:02:24.79+03	2021-05-26 07:02:24.798+03	
b754ec8b-189d-298d-5860-4aef770fc2b8	2021-05-26 07:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:02:44.79+03	2021-05-26 07:02:44.797+03	
c4888a50-9e03-da95-d017-f6ada6613740	2021-05-26 07:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:03:04.79+03	2021-05-26 07:03:04.796+03	
5b819e45-1570-82c2-95d0-0249d84c0a80	2021-05-26 07:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:03:24.79+03	2021-05-26 07:03:24.797+03	
1878778c-c5a8-ed72-a12a-13bec4a79c03	2021-05-26 07:03:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:03:44.79+03	2021-05-26 07:03:44.796+03	
c1093bde-d113-3616-ce3b-55f3b8bfa812	2021-05-26 07:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:04:04.79+03	2021-05-26 07:04:04.8+03	
440dd930-62d6-ce6e-bf16-2b8432e2aae0	2021-05-26 07:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:04:24.79+03	2021-05-26 07:04:24.812+03	
865713fa-b3a3-f2ee-930d-f3d2cbb22b60	2021-05-26 07:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:04:44.79+03	2021-05-26 07:04:44.796+03	
d24154ef-92d6-3b47-30d6-3f9620db14d6	2021-05-26 07:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:05:04.79+03	2021-05-26 07:05:04.797+03	
5654b082-738e-65d1-e220-5e7b2cf6d1bc	2021-05-26 07:05:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:05:24.79+03	2021-05-26 07:05:24.797+03	
70161683-e44b-9018-d702-e89e2f968a6c	2021-05-26 07:05:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:05:44.79+03	2021-05-26 07:05:44.796+03	
a150b9b2-cb8d-9e21-84dc-7e35af098c57	2021-05-26 07:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:06:04.79+03	2021-05-26 07:06:04.796+03	
5dce3dd4-d684-0afc-3b7b-3481090c2d71	2021-05-26 07:06:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:06:24.79+03	2021-05-26 07:06:24.796+03	
03df344c-06a2-52e7-7f90-3510cca18207	2021-05-26 07:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:06:44.79+03	2021-05-26 07:06:44.797+03	
e97e1df0-a930-e8ca-7368-0888403873bf	2021-05-26 07:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:07:04.79+03	2021-05-26 07:07:04.796+03	
afa6608b-fcce-3228-3d28-3406e02198cd	2021-05-26 07:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:07:24.79+03	2021-05-26 07:07:24.797+03	
abe2479e-1985-d743-2f4d-f7a1ee537ce6	2021-05-26 07:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:07:44.79+03	2021-05-26 07:07:44.796+03	
cb333ede-13f8-d616-d564-17c4afbd4613	2021-05-26 07:08:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:08:04.79+03	2021-05-26 07:08:04.81+03	
8e870c18-30e2-6c38-c781-f362468b7919	2021-05-26 07:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:08:24.79+03	2021-05-26 07:08:24.816+03	
0492b5ee-bb71-884c-0a1f-e8bcdc227304	2021-05-26 07:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:08:44.79+03	2021-05-26 07:08:44.796+03	
f91f2721-052a-9b48-dac8-5c750c8a568d	2021-05-26 07:09:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:09:04.79+03	2021-05-26 07:09:04.796+03	
859f8d5f-092f-bdc7-14cc-e339f312a931	2021-05-26 07:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:09:24.79+03	2021-05-26 07:09:24.797+03	
915d87b4-8b0d-24d9-12fe-735e5d7e1546	2021-05-26 07:09:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:09:44.79+03	2021-05-26 07:09:44.798+03	
6875aea5-e6c0-3e04-e74f-d6e8b56f0e92	2021-05-26 07:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 07:10:00.79+03	2021-05-26 07:10:00.795+03	ERROR
977817d4-acea-5c0b-0309-929db72116e5	2021-05-26 06:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 06:50:00.79+03	2021-05-26 06:50:00.797+03	ERROR
4a301b71-e96f-aa6b-4beb-076905b22e49	2021-05-26 06:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:50:14.79+03	2021-05-26 06:50:14.797+03	
ad370a21-e704-24e5-89a5-1ca2e0c30e64	2021-05-26 06:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:50:34.79+03	2021-05-26 06:50:34.796+03	
3d16747d-9b44-dfb5-ce90-a709da57a5d0	2021-05-26 06:50:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:50:54.79+03	2021-05-26 06:50:54.796+03	
fe82029d-5ab0-182e-758a-9fc5f2cd7cc6	2021-05-26 06:51:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:51:14.79+03	2021-05-26 06:51:14.796+03	
3974c2a8-3276-0aa7-efc9-76770a1bde1c	2021-05-26 06:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:51:34.79+03	2021-05-26 06:51:34.811+03	
992ddc18-becf-b127-b567-960183606bfc	2021-05-26 06:51:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:51:54.79+03	2021-05-26 06:51:54.796+03	
1b881a7c-601d-7892-4cd9-c5b47a5bda07	2021-05-26 06:52:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:52:14.79+03	2021-05-26 06:52:14.796+03	
08a2d436-a2b1-bf56-9196-2b8471cc4f6a	2021-05-26 06:52:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:52:34.79+03	2021-05-26 06:52:34.798+03	
7be87ac1-61c1-5775-f7db-a41b65c312a0	2021-05-26 06:52:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:52:54.79+03	2021-05-26 06:52:54.813+03	
8393fdb6-d247-7001-139d-65f427ada283	2021-05-26 06:53:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:53:14.79+03	2021-05-26 06:53:14.796+03	
7c687684-2258-7120-be81-901d3a4d6550	2021-05-26 06:53:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:53:34.79+03	2021-05-26 06:53:34.796+03	
26a38c6c-bc39-f235-845a-bf266136eca8	2021-05-26 06:53:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:53:54.79+03	2021-05-26 06:53:54.796+03	
bc5877c0-cced-e4b0-41be-f748036b1cfb	2021-05-26 06:54:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:54:14.79+03	2021-05-26 06:54:14.796+03	
1da646f9-2729-31fb-16e1-a1bcd91c9b6e	2021-05-26 06:54:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:54:34.79+03	2021-05-26 06:54:34.796+03	
a182a423-59e0-f930-3bb6-17ce4b2525e5	2021-05-26 06:54:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:54:54.79+03	2021-05-26 06:54:54.797+03	
88fcbc2f-7e87-c5a3-96f5-17a493043b5f	2021-05-26 06:55:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:55:14.79+03	2021-05-26 06:55:14.815+03	
73c8aec6-b605-3cf3-6ad9-fd981b230b3b	2021-05-26 06:55:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:55:34.79+03	2021-05-26 06:55:34.796+03	
ca7f0b2f-3c1b-0f08-e8bb-3151ff58a097	2021-05-26 06:55:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:55:54.79+03	2021-05-26 06:55:54.796+03	
bda26205-f8f6-5111-0497-95b770def7ee	2021-05-26 06:56:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:56:14.79+03	2021-05-26 06:56:14.796+03	
ca134da6-cfae-6963-24e9-a78dad539e67	2021-05-26 06:56:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:56:34.79+03	2021-05-26 06:56:34.796+03	
54441089-8f2a-56b9-d1a8-a74430234f72	2021-05-26 06:56:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:56:54.79+03	2021-05-26 06:56:54.796+03	
fbdf30e9-1e57-e287-c935-23ae37ed51b0	2021-05-26 06:57:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:57:14.79+03	2021-05-26 06:57:14.797+03	
294459de-ade8-59a4-1e0e-13a6627cc07e	2021-05-26 06:57:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:57:34.79+03	2021-05-26 06:57:34.795+03	
284ae7bb-c0c6-60ef-e761-78193504682e	2021-05-26 06:57:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:57:54.79+03	2021-05-26 06:57:54.796+03	
fe3cb2a7-be15-2fb9-2c78-b885cc32c2a2	2021-05-26 06:58:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:58:14.79+03	2021-05-26 06:58:14.796+03	
af62ef03-74c7-367f-471c-4ed0ab1f8df3	2021-05-26 06:58:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:58:34.79+03	2021-05-26 06:58:34.797+03	
901a88f6-ed2c-1fe6-fb8d-d3feff417744	2021-05-26 06:58:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:58:54.79+03	2021-05-26 06:58:54.797+03	
d1f36128-0381-581e-1783-ed0171ac6159	2021-05-26 06:59:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:59:14.79+03	2021-05-26 06:59:14.797+03	
e263f479-1724-0414-702e-5fed3d6c3cb7	2021-05-26 06:59:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 06:59:34.79+03	2021-05-26 06:59:34.796+03	
e74e88c6-61cd-1724-c481-6a5e20fa76c5	2021-05-26 07:00:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 07:00:00.79+03	2021-05-26 07:00:00.795+03	ERROR
ca7fa8af-f6f9-a6a1-6211-48736b62aad4	2021-05-26 07:00:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:00:14.79+03	2021-05-26 07:00:14.796+03	
3cf2f4cd-3912-2781-67bf-c45fa53cc27d	2021-05-26 07:00:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:00:34.79+03	2021-05-26 07:00:34.801+03	
24f3dbda-71b7-9b93-a7c9-81419914db8e	2021-05-26 07:00:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:00:54.79+03	2021-05-26 07:00:54.814+03	
244f04fd-2132-ea5c-5668-5819c3dc0b5f	2021-05-26 07:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:01:14.79+03	2021-05-26 07:01:14.796+03	
fb96254f-c48f-e926-f4bf-1876e193b950	2021-05-26 07:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:01:34.79+03	2021-05-26 07:01:34.796+03	
073519a3-714e-685a-aa7e-0ae628564030	2021-05-26 07:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:01:54.79+03	2021-05-26 07:01:54.797+03	
2d8b6b04-fa72-830b-c922-7d8264c4fac7	2021-05-26 07:02:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:02:14.79+03	2021-05-26 07:02:14.797+03	
152d9b8f-5aca-1a11-ee27-9707cf3d4586	2021-05-26 07:02:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:02:34.79+03	2021-05-26 07:02:34.81+03	
55b2e267-c515-b6e5-fec5-2074e2b7f596	2021-05-26 07:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:02:54.79+03	2021-05-26 07:02:54.807+03	
b14929d3-a292-a32d-2fc8-92a7c09741ff	2021-05-26 07:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:03:14.79+03	2021-05-26 07:03:14.796+03	
b2cf3d54-6a42-2732-176b-de6559a70809	2021-05-26 07:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:03:34.79+03	2021-05-26 07:03:34.796+03	
fa251ffe-6180-8e9d-693e-6675f039e7d9	2021-05-26 07:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:03:54.79+03	2021-05-26 07:03:54.796+03	
ce83424f-d579-dd79-7979-3f94d7a327ea	2021-05-26 07:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:04:14.79+03	2021-05-26 07:04:14.796+03	
3fa6a239-a964-245b-2b02-abcca4ad854c	2021-05-26 07:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:04:34.79+03	2021-05-26 07:04:34.796+03	
1aef6d6a-1cb5-a6d5-e1fe-0d323421bb8e	2021-05-26 07:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:04:54.79+03	2021-05-26 07:04:54.796+03	
c2ba57a2-cb17-679e-a7f5-258a49aa85fa	2021-05-26 07:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:05:14.79+03	2021-05-26 07:05:14.801+03	
27f92c13-ea96-f05b-83e8-9a78f208096c	2021-05-26 07:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:05:34.79+03	2021-05-26 07:05:34.797+03	
a02d7c4b-e94e-a518-87c7-f969708889b2	2021-05-26 07:05:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:05:54.79+03	2021-05-26 07:05:54.814+03	
8c8ed193-e789-b37b-48ee-7ce2c6e69dcb	2021-05-26 07:06:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:06:14.79+03	2021-05-26 07:06:14.796+03	
07557bc5-b047-4a74-1fb2-1b8d576cba23	2021-05-26 07:06:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:06:34.79+03	2021-05-26 07:06:34.796+03	
9904b0b5-c70f-3aad-a9f2-7a08deff3e07	2021-05-26 07:06:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:06:54.79+03	2021-05-26 07:06:54.795+03	
12aa797d-8d10-7212-e908-2d3249f8806e	2021-05-26 07:07:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:07:14.79+03	2021-05-26 07:07:14.796+03	
45b6b419-af3b-59d8-ef76-6291dfeeffa6	2021-05-26 07:07:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:07:34.79+03	2021-05-26 07:07:34.796+03	
c48d01d4-5d3b-cf2b-eefb-4c43c9f187c7	2021-05-26 07:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:07:54.79+03	2021-05-26 07:07:54.796+03	
16ce01f9-f4b7-2f46-101b-f4c2ad3ee5d3	2021-05-26 07:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:08:14.79+03	2021-05-26 07:08:14.796+03	
812608b1-ba28-f5e3-61a1-abd536a97a96	2021-05-26 07:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:08:34.79+03	2021-05-26 07:08:34.796+03	
28e1c3a7-978b-5a59-694a-eb4d8d499ef7	2021-05-26 07:08:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:08:54.79+03	2021-05-26 07:08:54.796+03	
c4340cb7-9726-ae69-27cd-4bb2e265a203	2021-05-26 07:09:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:09:14.79+03	2021-05-26 07:09:14.796+03	
99402058-8e53-40c3-cd34-5c1335a87e0a	2021-05-26 07:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:09:34.79+03	2021-05-26 07:09:34.796+03	
5288a8fd-a51a-c16b-1742-5e2d99fcd233	2021-05-26 07:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:09:54.79+03	2021-05-26 07:09:54.797+03	
82fc60e0-9d8e-5243-85df-b930b5911ffe	2021-05-26 07:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:10:04.79+03	2021-05-26 07:10:04.796+03	
681c12a7-38ff-8242-5415-380678a72a70	2021-05-26 07:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:10:24.79+03	2021-05-26 07:10:24.797+03	
a018b0a8-8744-eb0c-65b7-9647948c9af1	2021-05-26 07:10:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:10:14.79+03	2021-05-26 07:10:14.796+03	
1d622fc2-a32d-2eff-70d9-9fa28821979a	2021-05-26 07:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:10:34.79+03	2021-05-26 07:10:34.806+03	
b36560cb-e334-00bc-6397-fe19f9514458	2021-05-26 07:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:10:54.79+03	2021-05-26 07:10:54.796+03	
16cfbeeb-d09a-3e57-0131-b9fab334add9	2021-05-26 07:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:11:14.79+03	2021-05-26 07:11:14.797+03	
821192be-5202-1607-27d3-9fb97fa563f8	2021-05-26 07:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:11:34.79+03	2021-05-26 07:11:34.796+03	
7709f94d-aeed-beef-5156-5d2f96091184	2021-05-26 07:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:11:54.79+03	2021-05-26 07:11:54.796+03	
54c91984-eea3-ca41-675f-1eb807b18885	2021-05-26 07:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:12:14.79+03	2021-05-26 07:12:14.796+03	
268d5cb3-7258-74a8-660f-1b02a8b84e08	2021-05-26 07:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:12:34.79+03	2021-05-26 07:12:34.796+03	
dc33a1b1-330d-477a-2870-61762fd01c64	2021-05-26 07:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:12:54.79+03	2021-05-26 07:12:54.797+03	
512961ea-2eff-ce82-ee5c-0c6053d9480e	2021-05-26 07:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:13:14.79+03	2021-05-26 07:13:14.804+03	
7eadbf4b-9ebe-96e7-3194-a015f4008e23	2021-05-26 07:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:13:34.79+03	2021-05-26 07:13:34.796+03	
347612f4-af13-ff83-e67e-c98cfa89b00d	2021-05-26 07:13:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:13:54.79+03	2021-05-26 07:13:54.796+03	
899d0aaf-19f4-320a-69be-26674f039f76	2021-05-26 07:14:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:14:14.79+03	2021-05-26 07:14:14.796+03	
ea3d0cc9-717d-9c0b-10d2-157bee161eb5	2021-05-26 07:14:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:14:34.79+03	2021-05-26 07:14:34.796+03	
11a1d006-5a8f-b868-2370-9b85b7537543	2021-05-26 07:14:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:14:54.79+03	2021-05-26 07:14:54.797+03	
c69ef808-00dd-2a9f-25b4-a11d4a2d848e	2021-05-26 07:15:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:15:14.79+03	2021-05-26 07:15:14.796+03	
199b7ba1-0331-b700-407a-4c9860761c69	2021-05-26 07:15:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:15:34.79+03	2021-05-26 07:15:34.796+03	
6d8e920e-9b39-651e-e8bf-854ce00ce246	2021-05-26 07:15:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:15:54.79+03	2021-05-26 07:15:54.796+03	
6b70346e-20f2-f476-1bb1-a6c670dbf61c	2021-05-26 07:16:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:16:14.79+03	2021-05-26 07:16:14.796+03	
cb738663-481c-bf2a-44f7-a61ddc1bad57	2021-05-26 07:16:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:16:34.79+03	2021-05-26 07:16:34.796+03	
4f2beab7-24eb-8dd6-73b3-6b4a58a373b3	2021-05-26 07:16:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:16:54.79+03	2021-05-26 07:16:54.796+03	
27be01e8-0e72-6440-e4f9-f6bcd01c9a27	2021-05-26 07:17:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:17:14.79+03	2021-05-26 07:17:14.798+03	
fe57348e-8178-6d20-bfe9-1aea89708e85	2021-05-26 07:17:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:17:34.79+03	2021-05-26 07:17:34.802+03	
53e78662-6946-3c1a-20ad-c039c5e45c10	2021-05-26 07:17:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:17:54.79+03	2021-05-26 07:17:54.804+03	
2f26efa2-75fb-94d8-d53b-59095cdea686	2021-05-26 07:18:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:18:14.79+03	2021-05-26 07:18:14.796+03	
31b8f2b2-1b34-3729-121d-43955ce8d280	2021-05-26 07:18:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:18:34.79+03	2021-05-26 07:18:34.804+03	
4143727d-d4de-0cc5-0eee-75a6d97293eb	2021-05-26 07:18:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:18:54.79+03	2021-05-26 07:18:54.83+03	
e8dc995f-7805-9f11-7d93-ee0cf9867be8	2021-05-26 07:19:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:19:14.79+03	2021-05-26 07:19:14.796+03	
773ab927-81d2-1b2c-70c7-715f3c4ca2b4	2021-05-26 07:19:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:19:34.79+03	2021-05-26 07:19:34.796+03	
35389624-a73c-3c6e-4a80-951a50430843	2021-05-26 07:19:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:19:54.79+03	2021-05-26 07:19:54.796+03	
cbac5a02-c49d-b80e-04d6-3188938042d5	2021-05-26 07:20:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:20:04.79+03	2021-05-26 07:20:04.796+03	
a26cf603-c07d-8c67-f6ae-81caf04141b7	2021-05-26 07:20:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:20:24.79+03	2021-05-26 07:20:24.797+03	
e62f9cfd-1119-45a6-6fe4-1df4af59fbe9	2021-05-26 07:20:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:20:44.79+03	2021-05-26 07:20:44.796+03	
7be26aea-03b3-e3b7-670d-fa516e2ff82b	2021-05-26 07:21:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:21:04.79+03	2021-05-26 07:21:04.797+03	
c4143c3d-293f-4151-0b91-46931a7bfedd	2021-05-26 07:21:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:21:24.79+03	2021-05-26 07:21:24.797+03	
19a24a48-5611-2c19-75f3-0971887b5296	2021-05-26 07:21:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:21:44.79+03	2021-05-26 07:21:44.796+03	
ce12097c-bbb8-56b1-3faf-b629c27f281c	2021-05-26 07:22:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:22:04.79+03	2021-05-26 07:22:04.845+03	
3ba133e2-d628-da65-4ce5-18891c60e8fb	2021-05-26 07:22:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:22:24.79+03	2021-05-26 07:22:24.796+03	
cb341ac7-841b-dd77-c4a3-c8ce150f8a01	2021-05-26 07:22:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:22:44.79+03	2021-05-26 07:22:44.796+03	
f01b029d-7875-b8ef-4c85-55c2d08fe45b	2021-05-26 07:23:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:23:04.79+03	2021-05-26 07:23:04.8+03	
e20dee42-483c-d43f-20ed-601a54fb2c31	2021-05-26 07:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:23:24.79+03	2021-05-26 07:23:24.796+03	
3e678037-85b2-e7ad-1184-ca36ab88ba67	2021-05-26 07:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:23:44.79+03	2021-05-26 07:23:44.796+03	
52e5aa92-7f4a-f4d2-184a-6676ecf5974b	2021-05-26 07:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:24:04.79+03	2021-05-26 07:24:04.796+03	
a2b08811-4ad9-a079-e1c6-63f76abd5b80	2021-05-26 07:24:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:24:24.79+03	2021-05-26 07:24:24.796+03	
8eec90d5-0433-64e5-192d-a642ad689de2	2021-05-26 07:24:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:24:44.79+03	2021-05-26 07:24:44.797+03	
0704ab8d-669a-26cd-41d6-abe1e43d1747	2021-05-26 07:25:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:25:04.79+03	2021-05-26 07:25:04.796+03	
d7be3bdf-a5fa-b550-a27d-562abecd73c9	2021-05-26 07:25:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:25:24.79+03	2021-05-26 07:25:24.796+03	
ce61c56c-8cf3-50f0-cc50-974254ebb835	2021-05-26 07:25:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:25:44.79+03	2021-05-26 07:25:44.796+03	
15c59b85-9805-706b-2fb6-81d205ba16e8	2021-05-26 07:26:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:26:04.79+03	2021-05-26 07:26:04.796+03	
f7e5084c-3ad3-d264-ad20-b89d2eb8c208	2021-05-26 07:26:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:26:24.79+03	2021-05-26 07:26:24.796+03	
6a255c44-e5f7-d67c-bb99-9cfaee02eb47	2021-05-26 07:26:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:26:44.79+03	2021-05-26 07:26:44.796+03	
9351a7dd-3c7d-9481-5f0a-09c643cb1806	2021-05-26 07:27:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:27:04.79+03	2021-05-26 07:27:04.806+03	
f0c32322-16bb-0950-0683-efd9d3d691dd	2021-05-26 07:27:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:27:24.79+03	2021-05-26 07:27:24.798+03	
046beda0-907b-1aaf-6ef0-d79d3507eb14	2021-05-26 07:27:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:27:44.79+03	2021-05-26 07:27:44.796+03	
e52dcdc8-1456-b15d-b11d-91e8e9ab51a1	2021-05-26 07:28:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:28:04.79+03	2021-05-26 07:28:04.796+03	
f68f43c9-6a30-2db2-deb2-e1884d304544	2021-05-26 07:28:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:28:24.79+03	2021-05-26 07:28:24.796+03	
b9d003d9-9eba-d233-dcfb-a66b3a5b7e15	2021-05-26 07:28:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:28:44.79+03	2021-05-26 07:28:44.808+03	
1f46196d-7356-9ebe-9a17-5a5280dde788	2021-05-26 07:29:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:29:04.79+03	2021-05-26 07:29:04.796+03	
088fbacb-b5c3-0739-6562-3cce4052a620	2021-05-26 07:29:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:29:24.79+03	2021-05-26 07:29:24.796+03	
965e1a8a-5c82-ad3d-fa22-4d7f0f4337c5	2021-05-26 07:29:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:29:44.79+03	2021-05-26 07:29:44.796+03	
507c9a6c-2d44-fddb-da3a-d54b6aa8d663	2021-05-26 07:30:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 07:30:00.79+03	2021-05-26 07:30:00.795+03	ERROR
24bcc857-2fe3-89c7-dca7-0ef5b270db0b	2021-05-26 07:30:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:30:14.79+03	2021-05-26 07:30:14.796+03	
c0c404ab-8ab2-dc7e-ee13-7f179778e01a	2021-05-26 07:30:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:30:34.79+03	2021-05-26 07:30:34.796+03	
e2829a07-9cc6-5d6c-c97c-0e96607f48e4	2021-05-26 07:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:10:44.79+03	2021-05-26 07:10:44.797+03	
bc15a3a2-ea56-4061-2bf3-ba7aadd7484b	2021-05-26 07:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:11:04.79+03	2021-05-26 07:11:04.797+03	
85c818a8-84de-f2c9-b094-6a6e76093b6d	2021-05-26 07:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:11:24.79+03	2021-05-26 07:11:24.796+03	
cd04c25c-4aec-9340-c49d-f6eee304cc06	2021-05-26 07:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:11:44.79+03	2021-05-26 07:11:44.796+03	
ee9a49e9-75c4-fdd3-fcb1-1a6ffb789db3	2021-05-26 07:12:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:12:04.79+03	2021-05-26 07:12:04.801+03	
ea16a149-214f-c656-6143-7d2f4d14546a	2021-05-26 07:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:12:24.79+03	2021-05-26 07:12:24.804+03	
afb4bd78-d8f9-699a-0b53-4474ea7c9c26	2021-05-26 07:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:12:44.79+03	2021-05-26 07:12:44.796+03	
769ca31c-ba41-1560-f8ed-d7e26bb04d2d	2021-05-26 07:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:13:04.79+03	2021-05-26 07:13:04.796+03	
155175ae-5fb0-cf8a-887b-21c7fdf80e5f	2021-05-26 07:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:13:24.79+03	2021-05-26 07:13:24.796+03	
06d325ba-b8a1-a6e6-07bc-abd55271a6f0	2021-05-26 07:13:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:13:44.79+03	2021-05-26 07:13:44.801+03	
8e8df235-6e70-fcce-d39c-1792fd7580c4	2021-05-26 07:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:14:04.79+03	2021-05-26 07:14:04.797+03	
8b0f75f8-30b0-a937-3f91-2695cccda4f3	2021-05-26 07:14:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:14:24.79+03	2021-05-26 07:14:24.796+03	
e86b8732-4476-1cb6-b950-5ee84d3fd03d	2021-05-26 07:14:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:14:44.79+03	2021-05-26 07:14:44.796+03	
82913a68-e051-ddeb-00a0-0be072a1bbff	2021-05-26 07:15:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:15:04.79+03	2021-05-26 07:15:04.807+03	
5d084485-f69c-db96-5755-ff1ea62eb30e	2021-05-26 07:15:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:15:24.79+03	2021-05-26 07:15:24.797+03	
f85a6ef2-ee95-25ba-7edd-59bf086341f3	2021-05-26 07:15:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:15:44.79+03	2021-05-26 07:15:44.796+03	
91b261e5-546d-6467-f71a-30cfda5265cc	2021-05-26 07:16:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:16:04.79+03	2021-05-26 07:16:04.796+03	
8f12a207-19f5-7bf5-aa03-e49f352ff712	2021-05-26 07:16:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:16:24.79+03	2021-05-26 07:16:24.796+03	
d7030bd3-1fdb-41f0-2fb1-19044253dbbc	2021-05-26 07:16:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:16:44.79+03	2021-05-26 07:16:44.796+03	
2c2b1a51-2241-b941-61dd-bcced864173f	2021-05-26 07:17:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:17:04.79+03	2021-05-26 07:17:04.796+03	
dfc302c9-be40-292c-df89-272f0b99eb46	2021-05-26 07:17:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:17:24.79+03	2021-05-26 07:17:24.796+03	
d0cc55d0-3a34-d433-16cc-c6b68d018c55	2021-05-26 07:17:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:17:44.79+03	2021-05-26 07:17:44.796+03	
dc4bfa4d-6732-66ee-3361-564eefd1e0fc	2021-05-26 07:18:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:18:04.79+03	2021-05-26 07:18:04.796+03	
46461b35-081d-2086-1192-4cb9ffbb0b34	2021-05-26 07:18:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:18:24.79+03	2021-05-26 07:18:24.796+03	
5da26eee-905f-726b-2afc-cb0185609145	2021-05-26 07:18:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:18:44.79+03	2021-05-26 07:18:44.8+03	
fafbec9c-473a-c59b-5667-dc2df40bb627	2021-05-26 07:19:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:19:04.79+03	2021-05-26 07:19:04.82+03	
bf8a0b90-15dc-d5df-2868-074166d3c3aa	2021-05-26 07:19:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:19:24.79+03	2021-05-26 07:19:24.796+03	
b2d46b65-9b66-8255-332f-bb1a02dbe6c6	2021-05-26 07:19:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:19:44.79+03	2021-05-26 07:19:44.796+03	
78195d4d-8493-6bb0-eb2a-e06facd6f9dc	2021-05-26 07:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 07:20:00.79+03	2021-05-26 07:20:00.803+03	ERROR
76eac438-5852-44f6-54fe-b9fd5b23d337	2021-05-26 07:20:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:20:14.79+03	2021-05-26 07:20:14.796+03	
2409c53e-2377-738d-5b7b-680e8566f6da	2021-05-26 07:20:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:20:34.79+03	2021-05-26 07:20:34.797+03	
74db1747-b77e-17e5-6e20-4f90b3e64d64	2021-05-26 07:20:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:20:54.79+03	2021-05-26 07:20:54.796+03	
ac5cb518-994c-6efa-25ea-d9ea170edac0	2021-05-26 07:21:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:21:14.79+03	2021-05-26 07:21:14.796+03	
4ae84077-3a6e-f01e-2c9b-d35e458598e1	2021-05-26 07:21:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:21:34.79+03	2021-05-26 07:21:34.796+03	
c04bd49d-b0d0-e3d3-cb8f-3a9ce83f85d7	2021-05-26 07:21:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:21:54.79+03	2021-05-26 07:21:54.797+03	
966935e2-b800-bfdc-96ea-ecbb8d64462c	2021-05-26 07:22:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:22:14.79+03	2021-05-26 07:22:14.828+03	
5b3cba57-8b40-1bc6-980b-3937cc20b6f0	2021-05-26 07:22:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:22:34.79+03	2021-05-26 07:22:34.797+03	
1cd20104-4e0a-c3b3-35b4-af4b9ee4f96d	2021-05-26 07:22:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:22:54.79+03	2021-05-26 07:22:54.796+03	
6942b0cd-4c84-b128-ae10-cb8db0f633d7	2021-05-26 07:23:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:23:14.79+03	2021-05-26 07:23:14.796+03	
67bd491b-e443-fcd1-85a0-2d72faaea7f9	2021-05-26 07:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:23:34.79+03	2021-05-26 07:23:34.796+03	
82e4c898-5fa2-21e3-3742-74c30209563e	2021-05-26 07:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:23:54.79+03	2021-05-26 07:23:54.796+03	
c2f43689-cfad-58f0-eb1c-01ff1e0d21ed	2021-05-26 07:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:24:14.79+03	2021-05-26 07:24:14.796+03	
aae1ca63-f933-41b0-40b5-161c0a17a14b	2021-05-26 07:24:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:24:34.79+03	2021-05-26 07:24:34.796+03	
4166e996-86f1-4ce0-c2af-c803534afc60	2021-05-26 07:24:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:24:54.79+03	2021-05-26 07:24:54.796+03	
775e7ce0-efdf-da60-1adc-f39be73aa686	2021-05-26 07:25:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:25:14.79+03	2021-05-26 07:25:14.796+03	
52196c9c-30b8-bf9e-ae1b-336cfb5e7ca7	2021-05-26 07:25:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:25:34.79+03	2021-05-26 07:25:34.796+03	
41c41935-6f60-c4ea-93a0-41fe4e27b88c	2021-05-26 07:25:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:25:54.79+03	2021-05-26 07:25:54.797+03	
9f05de99-a100-b6d2-7d78-c6016920a42f	2021-05-26 07:26:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:26:14.79+03	2021-05-26 07:26:14.796+03	
1627f8b4-56e7-af7e-818b-4bd495ecaf31	2021-05-26 07:26:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:26:34.79+03	2021-05-26 07:26:34.796+03	
712d6321-9aac-ce1e-48c7-347a023bd376	2021-05-26 07:26:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:26:54.79+03	2021-05-26 07:26:54.795+03	
057a56e0-29a4-c339-f583-92144fd74faf	2021-05-26 07:27:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:27:14.79+03	2021-05-26 07:27:14.801+03	
69f7bb83-88bc-76f2-b0ab-73cdb31ae8d6	2021-05-26 07:27:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:27:34.79+03	2021-05-26 07:27:34.813+03	
cd3d59a7-0de9-c9c0-a1b2-dac74d09a4d2	2021-05-26 07:27:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:27:54.79+03	2021-05-26 07:27:54.796+03	
3ba42394-4e1d-b394-5084-7211ba1fca5f	2021-05-26 07:28:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:28:14.79+03	2021-05-26 07:28:14.796+03	
78236c43-e8e8-72da-ee53-3a062a082282	2021-05-26 07:28:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:28:34.79+03	2021-05-26 07:28:34.796+03	
cb085ee1-01b5-baae-5516-74efc9c474fb	2021-05-26 07:28:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:28:54.79+03	2021-05-26 07:28:54.796+03	
cb941dd2-ad42-cfdf-b648-cb4f207d202a	2021-05-26 07:29:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:29:14.79+03	2021-05-26 07:29:14.796+03	
a4407b16-d976-ac21-3685-62b548b60dc5	2021-05-26 07:29:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:29:34.79+03	2021-05-26 07:29:34.796+03	
13fafba0-1c0d-2782-f76b-1131046f5b53	2021-05-26 07:29:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:29:54.79+03	2021-05-26 07:29:54.796+03	
5a2eebdc-28ef-47b2-68c1-5f3b23377cc1	2021-05-26 07:30:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:30:04.79+03	2021-05-26 07:30:04.796+03	
0712757e-3e4a-96d6-cc41-9456fae9e35d	2021-05-26 07:30:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:30:24.79+03	2021-05-26 07:30:24.796+03	
fa87f67f-8d3d-9441-978b-88cc0dcf751d	2021-05-26 07:30:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:30:44.79+03	2021-05-26 07:30:44.796+03	
89a48ab8-5a1a-a3a6-4290-1adc2fdd7306	2021-05-26 07:31:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:31:04.79+03	2021-05-26 07:31:04.796+03	
ff290c79-befa-b35b-3a1d-be555e47cd33	2021-05-26 07:30:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:30:54.79+03	2021-05-26 07:30:54.796+03	
00f1b874-2aa6-953c-d53c-cf09ebd77e0a	2021-05-26 07:31:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:31:14.79+03	2021-05-26 07:31:14.796+03	
5d607335-749f-2a6c-583e-1d6f3d1d6c96	2021-05-26 07:31:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:31:34.79+03	2021-05-26 07:31:34.796+03	
7ee8dcf0-d3fd-166d-ab70-b8cc423d774b	2021-05-26 07:31:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:31:54.79+03	2021-05-26 07:31:54.796+03	
b9d08800-e609-1ef5-6111-eec65ce2d52a	2021-05-26 07:32:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:32:14.79+03	2021-05-26 07:32:14.796+03	
b5a31a57-2a7c-d324-cecf-6c0515edc0f2	2021-05-26 07:32:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:32:34.79+03	2021-05-26 07:32:34.796+03	
ecef1796-7bf7-e2ec-8fb9-0be23b63b186	2021-05-26 07:32:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:32:54.79+03	2021-05-26 07:32:54.797+03	
af61f3f0-c197-81f9-49b4-d8b51b3d3614	2021-05-26 07:33:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:33:14.79+03	2021-05-26 07:33:14.796+03	
6144cc78-5c1f-48a5-1770-7424c875b96a	2021-05-26 07:33:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:33:34.79+03	2021-05-26 07:33:34.796+03	
79c46554-d310-cc87-3e8f-0fb65e89404d	2021-05-26 07:33:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:33:54.79+03	2021-05-26 07:33:54.796+03	
8f97f17e-1c09-8205-d65f-17b8dc5a970a	2021-05-26 07:34:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:34:14.79+03	2021-05-26 07:34:14.796+03	
33a0ac5d-bd5e-88bc-5620-b55f1d8be72e	2021-05-26 07:34:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:34:34.79+03	2021-05-26 07:34:34.796+03	
eee84a13-f8f2-2f62-ed38-40dfb5c24069	2021-05-26 07:34:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:34:54.79+03	2021-05-26 07:34:54.796+03	
8c90812f-1904-248b-1db1-1c8744d95c20	2021-05-26 07:35:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:35:14.79+03	2021-05-26 07:35:14.796+03	
78313835-90b0-9632-a0b5-0c2cd52016aa	2021-05-26 07:35:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:35:34.79+03	2021-05-26 07:35:34.796+03	
95e59a43-cea1-5d29-535f-6b58df9c47de	2021-05-26 07:35:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:35:54.79+03	2021-05-26 07:35:54.797+03	
b7f06ef1-4caf-7eed-acdb-801e9ca838c5	2021-05-26 07:36:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:36:14.79+03	2021-05-26 07:36:14.797+03	
d4e64f61-59ca-8a49-61c0-e97d59842d89	2021-05-26 07:36:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:36:34.79+03	2021-05-26 07:36:34.797+03	
0419cd71-87ae-59a2-e788-e79454351a1c	2021-05-26 07:36:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:36:54.79+03	2021-05-26 07:36:54.796+03	
14058e91-c23c-9a53-605d-367e0e5e4da6	2021-05-26 07:37:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:37:14.79+03	2021-05-26 07:37:14.796+03	
5723c2a4-9480-8726-823a-b32064145102	2021-05-26 07:37:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:37:34.79+03	2021-05-26 07:37:34.796+03	
e4dcbcde-80c2-76e9-67e7-a92e71cb88ab	2021-05-26 07:37:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:37:54.79+03	2021-05-26 07:37:54.808+03	
f9e88ea8-0bba-511f-45a5-ad5c5f643cb9	2021-05-26 07:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:38:14.79+03	2021-05-26 07:38:14.796+03	
7a96d2e6-d8d7-67aa-e04e-2f57ca66d330	2021-05-26 07:38:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:38:34.79+03	2021-05-26 07:38:34.797+03	
d1d22d5d-c79d-e493-9f7a-9a16a5fa21d5	2021-05-26 07:38:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:38:54.79+03	2021-05-26 07:38:54.796+03	
92f6392b-749e-c1c2-3dee-86e5c60d924c	2021-05-26 07:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:39:14.79+03	2021-05-26 07:39:14.796+03	
973df880-ad25-47c4-da57-efe77139fc48	2021-05-26 07:39:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:39:34.79+03	2021-05-26 07:39:34.802+03	
51ec3642-0962-19e8-dd04-4fd469b81393	2021-05-26 07:39:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:39:54.79+03	2021-05-26 07:39:54.796+03	
15c96ddc-e279-f160-f029-eae71a76f01e	2021-05-26 07:40:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:40:04.79+03	2021-05-26 07:40:04.795+03	
ebd58d42-3572-f7ff-2c70-1b4e53866dec	2021-05-26 07:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:40:24.79+03	2021-05-26 07:40:24.796+03	
24b31328-e2eb-9363-263c-e53ebe2a0158	2021-05-26 07:40:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:40:44.79+03	2021-05-26 07:40:44.796+03	
7ae444a6-0217-db4a-3ecc-6d77b2dc30ab	2021-05-26 07:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:41:04.79+03	2021-05-26 07:41:04.796+03	
61e64d14-9dda-3ec6-b687-d7e9cc3727c2	2021-05-26 07:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:41:24.79+03	2021-05-26 07:41:24.796+03	
b12721c4-b67e-a47b-bd39-8af99284bf45	2021-05-26 07:41:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:41:44.79+03	2021-05-26 07:41:44.796+03	
84a4ce5d-8e18-cfba-cb72-a7a2e99afcdd	2021-05-26 07:42:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:42:04.79+03	2021-05-26 07:42:04.796+03	
2b142262-8657-bb5f-d4e1-dd50b7b86b7c	2021-05-26 07:42:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:42:24.79+03	2021-05-26 07:42:24.796+03	
b6c342c2-3096-b0fb-b3a2-3996add60863	2021-05-26 07:42:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:42:44.79+03	2021-05-26 07:42:44.796+03	
9a77ff94-1f31-0347-3f8e-04f52ea76e62	2021-05-26 07:43:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:43:04.79+03	2021-05-26 07:43:04.796+03	
11b8812f-67cd-865e-5825-9abd705d87d9	2021-05-26 07:43:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:43:24.79+03	2021-05-26 07:43:24.796+03	
bf7fa987-04a0-6aa9-4077-5ec0e3ad0c5d	2021-05-26 07:43:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:43:44.79+03	2021-05-26 07:43:44.802+03	
6555150b-a6e7-34af-0695-2fe6e307d138	2021-05-26 07:44:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:44:04.79+03	2021-05-26 07:44:04.796+03	
6ea96103-fc0b-9691-bc8f-b2fd6a473230	2021-05-26 07:44:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:44:24.79+03	2021-05-26 07:44:24.796+03	
3650544e-9d87-c256-122c-43a17b7a7252	2021-05-26 07:44:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:44:44.79+03	2021-05-26 07:44:44.797+03	
e2b84852-c88f-db6c-b160-e935099f9779	2021-05-26 07:45:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:45:04.79+03	2021-05-26 07:45:04.797+03	
058e55af-4a21-fab4-9408-a5729a63bea4	2021-05-26 07:45:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:45:24.79+03	2021-05-26 07:45:24.797+03	
a828d087-cb62-fad8-e72c-9b95075307cc	2021-05-26 07:45:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:45:44.79+03	2021-05-26 07:45:44.796+03	
7d38a78e-6682-c09f-fb4f-33f198b62ebd	2021-05-26 07:46:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:46:04.79+03	2021-05-26 07:46:04.796+03	
1464335e-c0e0-576d-1f6e-f9ce85e7f087	2021-05-26 07:46:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:46:24.79+03	2021-05-26 07:46:24.797+03	
1cb48145-9f48-cabc-6bf1-05344093036c	2021-05-26 07:46:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:46:44.79+03	2021-05-26 07:46:44.796+03	
d1274e83-aaec-7b4c-1023-4daf722be6a9	2021-05-26 07:47:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:47:04.79+03	2021-05-26 07:47:04.796+03	
62acf34a-a18d-8b4a-fbd5-b1e9a5efe3c1	2021-05-26 07:47:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:47:24.79+03	2021-05-26 07:47:24.797+03	
62783d38-5577-c46d-f626-3a0ec2b4221b	2021-05-26 07:47:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:47:44.79+03	2021-05-26 07:47:44.796+03	
0e173911-abc4-e063-80ba-dc78ae9fd5df	2021-05-26 07:48:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:48:04.79+03	2021-05-26 07:48:04.796+03	
58226a6b-49ef-3a4b-dab1-773c8bab5b0b	2021-05-26 07:48:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:48:24.79+03	2021-05-26 07:48:24.796+03	
71d1b8af-134a-e496-d555-22aea6c0ccee	2021-05-26 07:48:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:48:44.79+03	2021-05-26 07:48:44.808+03	
3fb9aaf2-6af2-7e80-f1a7-e10313ff08e5	2021-05-26 07:49:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:49:04.79+03	2021-05-26 07:49:04.796+03	
d5a58208-50cc-c9f1-7fe1-ba59881d729f	2021-05-26 07:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:49:24.79+03	2021-05-26 07:49:24.796+03	
8d5e1e1a-a690-9330-5467-34e06f9d5c2b	2021-05-26 07:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:49:44.79+03	2021-05-26 07:49:44.797+03	
8eed9733-d84d-fd37-f52c-9255bf8a1bdb	2021-05-26 07:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 07:50:00.79+03	2021-05-26 07:50:00.794+03	ERROR
d2fc36f7-201e-67f1-a41b-b056eb9ce48d	2021-05-26 07:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:50:14.79+03	2021-05-26 07:50:14.796+03	
0f4652d7-0b1b-a99f-db26-fdf07aed5c0c	2021-05-26 07:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:50:34.79+03	2021-05-26 07:50:34.796+03	
4b21524e-8125-da90-fc28-e0a52adf58ce	2021-05-26 07:50:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:50:54.79+03	2021-05-26 07:50:54.797+03	
0c6aaac5-8381-bb28-b424-8a5e59021c76	2021-05-26 07:51:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:51:14.79+03	2021-05-26 07:51:14.796+03	
118c6d4a-3edc-7fa7-fcf1-5127216f5aa9	2021-05-26 07:31:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:31:24.79+03	2021-05-26 07:31:24.796+03	
f0480321-2639-1115-1382-081efd79f6c8	2021-05-26 07:31:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:31:44.79+03	2021-05-26 07:31:44.796+03	
bc74bd80-8ec4-2a89-ee86-38c72dcc42fa	2021-05-26 07:32:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:32:04.79+03	2021-05-26 07:32:04.795+03	
63434fcd-a77e-5d9b-07a6-8123b5e443a4	2021-05-26 07:32:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:32:24.79+03	2021-05-26 07:32:24.796+03	
94c25e53-27d8-3708-e444-7e56673ef2b0	2021-05-26 07:32:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:32:44.79+03	2021-05-26 07:32:44.796+03	
90663b46-d1eb-c54d-03ba-f26f52a00357	2021-05-26 07:33:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:33:04.79+03	2021-05-26 07:33:04.797+03	
2bd95cef-7c45-beb8-791e-16a8fca88130	2021-05-26 07:33:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:33:24.79+03	2021-05-26 07:33:24.797+03	
e6fc36fd-54c9-5f8a-eb9d-0738caf23c53	2021-05-26 07:33:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:33:44.79+03	2021-05-26 07:33:44.81+03	
06301922-3370-8221-8a55-001cfbfe252c	2021-05-26 07:34:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:34:04.79+03	2021-05-26 07:34:04.796+03	
d220116e-d37d-3bb2-8ab1-8d341f4c09c1	2021-05-26 07:34:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:34:24.79+03	2021-05-26 07:34:24.796+03	
66e5754f-03b7-10ce-2589-aa508aa9c4fa	2021-05-26 07:34:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:34:44.79+03	2021-05-26 07:34:44.797+03	
243a4479-da49-4422-9169-5d25c62cd65f	2021-05-26 07:35:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:35:04.79+03	2021-05-26 07:35:04.796+03	
73a9314b-0fe1-5a56-eccf-2b9a9d43eff0	2021-05-26 07:35:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:35:24.79+03	2021-05-26 07:35:24.796+03	
c90719ad-e588-e0ac-9834-46bc2bd8b93b	2021-05-26 07:35:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:35:44.79+03	2021-05-26 07:35:44.796+03	
e01263f0-5a60-5167-d91e-e08f8f2ea779	2021-05-26 07:36:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:36:04.79+03	2021-05-26 07:36:04.796+03	
3019a775-faf5-dd1e-921d-720b7c0a7a27	2021-05-26 07:36:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:36:24.79+03	2021-05-26 07:36:24.796+03	
aa1bd1e7-3654-e621-dbb3-fab65c5557ac	2021-05-26 07:36:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:36:44.79+03	2021-05-26 07:36:44.807+03	
66926865-8f0a-4fb0-f9b2-f37517dee863	2021-05-26 07:37:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:37:04.79+03	2021-05-26 07:37:04.797+03	
adec858b-0d42-7269-4cc2-8ada984e1f41	2021-05-26 07:37:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:37:24.79+03	2021-05-26 07:37:24.796+03	
38493a19-6066-4822-7905-a7e783ed8727	2021-05-26 07:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:37:44.79+03	2021-05-26 07:37:44.796+03	
3915d8f8-bb46-f9e6-e482-8319559cbbf2	2021-05-26 07:38:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:38:04.79+03	2021-05-26 07:38:04.796+03	
6aa71230-a4fe-00b7-e51a-c1b2ef65a4a5	2021-05-26 07:38:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:38:24.79+03	2021-05-26 07:38:24.796+03	
541826c4-3f4f-ac3d-cf28-507efee22f6d	2021-05-26 07:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:38:44.79+03	2021-05-26 07:38:44.796+03	
32911812-4ba6-4a46-6ca6-940bb44a59d4	2021-05-26 07:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:39:04.79+03	2021-05-26 07:39:04.796+03	
e689ba35-4136-d462-71ab-6d625e7504d1	2021-05-26 07:39:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:39:24.79+03	2021-05-26 07:39:24.812+03	
dab5efa9-6a43-134c-205a-779b3d73c868	2021-05-26 07:39:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:39:44.79+03	2021-05-26 07:39:44.797+03	
a177083d-3142-2464-9d29-a952aee4397c	2021-05-26 07:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 07:40:00.79+03	2021-05-26 07:40:00.795+03	ERROR
51e0756b-f3cd-d5d4-dcbf-dbe7dc072dd7	2021-05-26 07:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:40:14.79+03	2021-05-26 07:40:14.796+03	
69a5640e-20d7-db00-6411-70f22c95cfc7	2021-05-26 07:40:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:40:34.79+03	2021-05-26 07:40:34.796+03	
f7caea3d-2b96-c26f-a522-45dc7c8c60d0	2021-05-26 07:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:40:54.79+03	2021-05-26 07:40:54.796+03	
bba87b02-66c0-5873-3032-9711fe44d2e6	2021-05-26 07:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:41:14.79+03	2021-05-26 07:41:14.796+03	
dd6328c4-4a59-7016-56a0-010e897eff54	2021-05-26 07:41:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:41:34.79+03	2021-05-26 07:41:34.796+03	
9852d78b-4e62-9540-b175-fed3494109ad	2021-05-26 07:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:41:54.79+03	2021-05-26 07:41:54.796+03	
f5064aea-7803-5d19-41cd-7bd815521113	2021-05-26 07:42:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:42:14.79+03	2021-05-26 07:42:14.796+03	
45875eb7-3fa7-2ab4-f0ce-c1727acf937a	2021-05-26 07:42:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:42:34.79+03	2021-05-26 07:42:34.796+03	
bd09a093-3046-172a-7aa1-9ed00062b953	2021-05-26 07:42:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:42:54.79+03	2021-05-26 07:42:54.795+03	
123d6f11-1fbf-1d86-8286-61af3bd255a3	2021-05-26 07:43:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:43:14.79+03	2021-05-26 07:43:14.796+03	
4f096d0d-9ea6-57f4-e2c4-dd1e85f3e6e2	2021-05-26 07:43:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:43:34.79+03	2021-05-26 07:43:34.796+03	
ee959dd9-b3c5-690b-9522-711fe39707f4	2021-05-26 07:43:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:43:54.79+03	2021-05-26 07:43:54.796+03	
4246d41b-c1f6-c384-a3d2-2ead97a1226c	2021-05-26 07:44:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:44:14.79+03	2021-05-26 07:44:14.796+03	
031ff190-bf68-f126-7b8e-273eaf0d34a2	2021-05-26 07:44:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:44:34.79+03	2021-05-26 07:44:34.796+03	
63cb4e0e-1c7c-df67-3710-760225d5e8f4	2021-05-26 07:44:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:44:54.79+03	2021-05-26 07:44:54.796+03	
21e85a2a-3e02-1382-43eb-10fa7c0df15c	2021-05-26 07:45:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:45:14.79+03	2021-05-26 07:45:14.796+03	
158d9d10-1e85-602a-5501-5c4d55ff14bd	2021-05-26 07:45:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:45:34.79+03	2021-05-26 07:45:34.796+03	
d4af0cfd-aeaa-66f6-bbc9-d0960433c4e3	2021-05-26 07:45:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:45:54.79+03	2021-05-26 07:45:54.796+03	
414daa7d-6034-2ad2-a219-eb76217851c0	2021-05-26 07:46:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:46:14.79+03	2021-05-26 07:46:14.796+03	
8c7fa046-6d56-2a9f-3f00-f24cd92fc629	2021-05-26 07:46:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:46:34.79+03	2021-05-26 07:46:34.796+03	
a7ab74a7-7337-1050-a84b-3ae0dcecb00b	2021-05-26 07:46:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:46:54.79+03	2021-05-26 07:46:54.796+03	
9026f595-2614-7098-9b17-8902ee111194	2021-05-26 07:47:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:47:14.79+03	2021-05-26 07:47:14.802+03	
746116a8-9ad6-2b76-2d57-02cb6b92df28	2021-05-26 07:47:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:47:34.79+03	2021-05-26 07:47:34.796+03	
fb6573f5-90f8-c743-bd30-90def54c8c73	2021-05-26 07:47:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:47:54.79+03	2021-05-26 07:47:54.797+03	
b330c681-d5b9-bb9a-7fea-0ac1eaecf3b2	2021-05-26 07:48:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:48:14.79+03	2021-05-26 07:48:14.796+03	
c9168b70-53f8-6adb-fa4b-83f47b73c297	2021-05-26 07:48:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:48:34.79+03	2021-05-26 07:48:34.81+03	
547b9283-8aaf-edb0-1ec4-2073fcb5e240	2021-05-26 07:48:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:48:54.79+03	2021-05-26 07:48:54.796+03	
4d1e04a4-455f-612b-0c92-70ba5cb2ba78	2021-05-26 07:49:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:49:14.79+03	2021-05-26 07:49:14.796+03	
89289003-bc72-dbc0-b92d-dd1a5e9f3e99	2021-05-26 07:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:49:34.79+03	2021-05-26 07:49:34.796+03	
4fc03e7b-55aa-5232-e2e0-cf2db671df6f	2021-05-26 07:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:49:54.79+03	2021-05-26 07:49:54.796+03	
686e773a-5b18-e909-5da7-45b73d5e7782	2021-05-26 07:50:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:50:04.79+03	2021-05-26 07:50:04.796+03	
9b44c80d-c282-d84b-266b-c7874d40756c	2021-05-26 07:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:50:24.79+03	2021-05-26 07:50:24.796+03	
7f809780-2a77-7520-13c8-3faf1f7220b4	2021-05-26 07:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:50:44.79+03	2021-05-26 07:50:44.796+03	
2b9b4a35-e5b6-9f11-75c4-04460060700b	2021-05-26 07:51:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:51:04.79+03	2021-05-26 07:51:04.796+03	
a20c9d93-0fb9-6fc4-999b-2ae8a9bfa199	2021-05-26 07:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:51:24.79+03	2021-05-26 07:51:24.796+03	
7c2b3fd1-7f7b-afd2-0fd9-df1947de6626	2021-05-26 07:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:51:44.79+03	2021-05-26 07:51:44.796+03	
516bfeb7-71fe-7b7d-6c64-056276f0f3d7	2021-05-26 07:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:51:34.79+03	2021-05-26 07:51:34.796+03	
373aaec5-16db-055f-0330-6ab5cef05339	2021-05-26 07:51:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:51:54.79+03	2021-05-26 07:51:54.812+03	
9c7b4eb4-4aea-7cf0-d34d-c89b5ca3e4b7	2021-05-26 07:52:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:52:14.79+03	2021-05-26 07:52:14.797+03	
03d89176-9500-42a1-82a8-8e01d19f78fd	2021-05-26 07:52:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:52:34.79+03	2021-05-26 07:52:34.796+03	
57d33a91-8558-ad76-941e-fff3b3f75dd7	2021-05-26 07:52:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:52:54.79+03	2021-05-26 07:52:54.796+03	
c163902d-eeb1-113c-31dd-5a5c690f72ba	2021-05-26 07:53:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:53:14.79+03	2021-05-26 07:53:14.796+03	
bdbc60ef-f2b9-e66a-9094-e06113e4a801	2021-05-26 07:53:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:53:34.79+03	2021-05-26 07:53:34.795+03	
3bbc45d8-9569-4b92-0b37-59474d7022b8	2021-05-26 07:53:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:53:54.79+03	2021-05-26 07:53:54.801+03	
c6dd400f-6fd3-7b7e-a867-38817c9f8ea9	2021-05-26 07:54:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:54:14.79+03	2021-05-26 07:54:14.797+03	
53579bdc-c815-e00e-f909-f34e8bfe3212	2021-05-26 07:54:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:54:34.79+03	2021-05-26 07:54:34.796+03	
fc4b3409-3ae4-9717-93c3-4ef3dc531d4f	2021-05-26 07:54:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:54:54.79+03	2021-05-26 07:54:54.797+03	
9fc106e9-0ad9-414e-2dce-e2ab574f21eb	2021-05-26 07:55:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:55:14.79+03	2021-05-26 07:55:14.796+03	
5208526a-5155-3125-08bb-db17fe15c83e	2021-05-26 07:55:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:55:34.79+03	2021-05-26 07:55:34.796+03	
98a0adaf-f258-3532-33a3-b2374fb836b0	2021-05-26 07:55:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:55:54.79+03	2021-05-26 07:55:54.796+03	
7479e0e5-8321-1232-c7dc-cff273592b81	2021-05-26 07:56:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:56:14.79+03	2021-05-26 07:56:14.797+03	
6dcfaa13-2d99-76d5-4ab0-42b35ce33307	2021-05-26 07:56:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:56:34.79+03	2021-05-26 07:56:34.796+03	
2d484572-5796-b34f-05c1-2a095674ac43	2021-05-26 07:56:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:56:54.79+03	2021-05-26 07:56:54.797+03	
247cdc39-f04d-9cc4-015e-5e4d39b37e4f	2021-05-26 07:57:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:57:14.79+03	2021-05-26 07:57:14.797+03	
ab81f90e-9741-fba3-3522-976f053f382d	2021-05-26 07:57:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:57:34.79+03	2021-05-26 07:57:34.796+03	
29b71322-8a80-b9e5-6064-96deea1baec8	2021-05-26 07:57:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:57:54.79+03	2021-05-26 07:57:54.797+03	
dce1874b-f3a4-a5ca-4ad0-bf3ce67420a0	2021-05-26 07:58:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:58:14.79+03	2021-05-26 07:58:14.796+03	
33686a97-6fcc-305c-d88b-63d05ab23120	2021-05-26 07:58:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:58:34.79+03	2021-05-26 07:58:34.796+03	
1c73841a-9c04-708c-2368-c89fd175cb6e	2021-05-26 07:58:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:58:54.79+03	2021-05-26 07:58:54.798+03	
a76ca46d-647e-50ee-7171-a5e1ccc579f4	2021-05-26 07:59:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:59:14.79+03	2021-05-26 07:59:14.796+03	
b717391a-d7f1-f509-9d6e-42b224f18682	2021-05-26 07:59:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:59:34.79+03	2021-05-26 07:59:34.797+03	
86cd86c9-a2e4-b9ea-50ed-50e3ef9064e3	2021-05-26 07:59:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:59:54.79+03	2021-05-26 07:59:54.797+03	
8367e2da-1ceb-b4ce-b87b-e0f7cd0fac67	2021-05-26 08:00:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:00:04.79+03	2021-05-26 08:00:04.796+03	
c057a278-4947-eb37-7c53-3f6a5f0cfa62	2021-05-26 08:00:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:00:24.79+03	2021-05-26 08:00:24.796+03	
f75133f1-d440-8085-19d7-87f56af007e0	2021-05-26 08:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:00:44.79+03	2021-05-26 08:00:44.796+03	
b130c43a-2f69-13b3-1510-cfc7140e698e	2021-05-26 08:01:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:01:04.79+03	2021-05-26 08:01:04.796+03	
ed6029b3-ac05-d515-656d-25d4d3f7183c	2021-05-26 08:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:01:24.79+03	2021-05-26 08:01:24.797+03	
d3b7b1d1-a312-a1fe-f99c-6cf4d978e563	2021-05-26 08:01:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:01:44.79+03	2021-05-26 08:01:44.797+03	
fe191e60-2a00-a585-4714-efbd78de2c13	2021-05-26 08:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:02:04.79+03	2021-05-26 08:02:04.796+03	
523930f5-f4e3-1ea4-0921-a47f81b57909	2021-05-26 08:02:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:02:24.79+03	2021-05-26 08:02:24.798+03	
95da0869-0d5a-cdc2-b3bc-5f922ce58bad	2021-05-26 08:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:02:44.79+03	2021-05-26 08:02:44.798+03	
3765d6ab-f1c0-df01-212c-be2044c49cc8	2021-05-26 08:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:03:04.79+03	2021-05-26 08:03:04.796+03	
5c9c2f27-0e91-97c7-aada-367465d095df	2021-05-26 08:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:03:24.79+03	2021-05-26 08:03:24.797+03	
b90d9085-aa4c-ca87-3bc0-8f3fa9e84cbf	2021-05-26 08:03:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:03:44.79+03	2021-05-26 08:03:44.796+03	
131b8155-6338-79fc-ba14-c0d480d6a3b4	2021-05-26 08:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:04:04.79+03	2021-05-26 08:04:04.795+03	
0b5b716d-a8fd-faa3-5b3e-fe581c89f23f	2021-05-26 08:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:04:24.79+03	2021-05-26 08:04:24.796+03	
a3250c7b-38ce-e1bd-1496-7cd487f4652e	2021-05-26 08:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:04:44.79+03	2021-05-26 08:04:44.796+03	
e2f93ade-57b6-303b-48ec-19b333fe96c7	2021-05-26 08:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:05:04.79+03	2021-05-26 08:05:04.797+03	
394a5d0c-343e-ac8d-1b12-9e3b58aa706c	2021-05-26 08:05:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:05:24.79+03	2021-05-26 08:05:24.796+03	
e474621b-ab7c-226d-d1ec-f2c4a1a556db	2021-05-26 08:05:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:05:44.79+03	2021-05-26 08:05:44.808+03	
403d0d2b-20d4-31b6-0c7d-7875c37ed822	2021-05-26 08:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:06:04.79+03	2021-05-26 08:06:04.798+03	
da8c637a-6046-62d9-9fd3-a3cb7a5664c8	2021-05-26 08:06:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:06:24.79+03	2021-05-26 08:06:24.797+03	
9b7131d5-e5b6-cdd4-972c-04ffda0e1131	2021-05-26 08:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:06:44.79+03	2021-05-26 08:06:44.797+03	
ca74bcff-e8bb-349d-1db0-fc15b21f379f	2021-05-26 08:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:07:04.79+03	2021-05-26 08:07:04.796+03	
3b13790c-82d5-32c2-e871-f3966c60a005	2021-05-26 08:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:07:24.79+03	2021-05-26 08:07:24.796+03	
8a8df2ff-e677-2b6c-97e9-cbb407653509	2021-05-26 08:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:07:44.79+03	2021-05-26 08:07:44.796+03	
b11c083f-d6d6-8205-9bbc-c6eda88cf7fd	2021-05-26 08:08:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:08:04.79+03	2021-05-26 08:08:04.802+03	
5335fc11-8357-f38e-a10d-85a47e5c7d86	2021-05-26 08:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:08:24.79+03	2021-05-26 08:08:24.797+03	
f7ece7a6-fbbe-51d6-2d15-43f81891c99b	2021-05-26 08:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:08:44.79+03	2021-05-26 08:08:44.797+03	
9ea7e7df-93aa-4a55-0edb-1d6a908d705b	2021-05-26 08:09:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:09:04.79+03	2021-05-26 08:09:04.796+03	
fe7a5f7b-e523-f082-40cb-216dcfac5dc3	2021-05-26 08:09:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:09:24.79+03	2021-05-26 08:09:24.797+03	
67a9ca27-4df7-68b9-16f8-ca838e95a4c2	2021-05-26 08:09:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:09:44.79+03	2021-05-26 08:09:44.797+03	
3c93d767-be3f-3bcc-a22c-817bec40889c	2021-05-26 08:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 08:10:00.79+03	2021-05-26 08:10:00.794+03	ERROR
b991d7c0-e254-4c10-6fcc-27fd02b85b2e	2021-05-26 08:10:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:10:14.79+03	2021-05-26 08:10:14.797+03	
b57c3ea7-c72a-6d06-7df7-30ed10c61ba1	2021-05-26 08:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:10:34.79+03	2021-05-26 08:10:34.796+03	
50b26c30-5f12-2a87-b4f2-64fc78093b91	2021-05-26 08:10:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:10:54.79+03	2021-05-26 08:10:54.796+03	
490c36ef-e4d7-3a8d-cdd5-fbd940b0ebfc	2021-05-26 08:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:11:14.79+03	2021-05-26 08:11:14.797+03	
2ceef423-9be5-e259-e1c3-7c9f6ca12898	2021-05-26 08:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:11:34.79+03	2021-05-26 08:11:34.798+03	
e3d18147-5089-d0a6-d3ff-eb3c1c5e39bc	2021-05-26 08:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:11:54.79+03	2021-05-26 08:11:54.797+03	
4ba6d0b2-b379-703d-b414-ee020a86ec49	2021-05-26 07:52:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:52:04.79+03	2021-05-26 07:52:04.796+03	
80dd2649-87e7-6f55-14e8-d92b9804ff8e	2021-05-26 07:52:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:52:24.79+03	2021-05-26 07:52:24.805+03	
7e282ef8-87a7-330f-0129-f11882fe8e6b	2021-05-26 07:52:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:52:44.79+03	2021-05-26 07:52:44.796+03	
4bcae98a-60c1-459c-59e5-70cc65f84f6f	2021-05-26 07:53:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:53:04.79+03	2021-05-26 07:53:04.796+03	
5b9da40b-8b63-221e-829c-d01115f1ce86	2021-05-26 07:53:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:53:24.79+03	2021-05-26 07:53:24.796+03	
f8abe08c-32b0-12e2-eed4-99b0f7b337e9	2021-05-26 07:53:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:53:44.79+03	2021-05-26 07:53:44.797+03	
14b4cc3a-e781-bc97-b8fd-43c5c4a632ef	2021-05-26 07:54:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:54:04.79+03	2021-05-26 07:54:04.796+03	
a343b8ee-611e-2bc5-1a9f-da2da9b8cee0	2021-05-26 07:54:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:54:24.79+03	2021-05-26 07:54:24.797+03	
00923e9b-2d09-145a-c3c4-d10c4129d219	2021-05-26 07:54:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:54:44.79+03	2021-05-26 07:54:44.8+03	
cfc25e56-36b6-38ce-bd27-c5d38a8f41a1	2021-05-26 07:55:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:55:04.79+03	2021-05-26 07:55:04.796+03	
f490aa46-6f34-6c56-632e-41285a9c5dee	2021-05-26 07:55:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:55:24.79+03	2021-05-26 07:55:24.796+03	
f64e8bb0-173f-56a5-2c1e-b6b3408bef48	2021-05-26 07:55:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:55:44.79+03	2021-05-26 07:55:44.809+03	
b3258e2a-5ad6-2139-bc43-0c4b24145b35	2021-05-26 07:56:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:56:04.79+03	2021-05-26 07:56:04.797+03	
9707fc7c-e449-55e4-8b08-44d16c304adb	2021-05-26 07:56:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:56:24.79+03	2021-05-26 07:56:24.798+03	
f797cccf-4303-6324-b130-e7661a510976	2021-05-26 07:56:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:56:44.79+03	2021-05-26 07:56:44.796+03	
98de1c82-0d2d-f708-f2c8-30de12b5519f	2021-05-26 07:57:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:57:04.79+03	2021-05-26 07:57:04.797+03	
6af91b9d-7fae-bd4a-a77c-cb52134eadf5	2021-05-26 07:57:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:57:24.79+03	2021-05-26 07:57:24.797+03	
802dbf73-4a0d-5012-29db-dbac1bfa1cd2	2021-05-26 07:57:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:57:44.79+03	2021-05-26 07:57:44.799+03	
cc642ede-09a1-27e4-1ba0-13e3743df843	2021-05-26 07:58:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:58:04.79+03	2021-05-26 07:58:04.797+03	
a7f56423-0e5d-6cce-c9e9-cde97a546e4f	2021-05-26 07:58:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:58:24.79+03	2021-05-26 07:58:24.798+03	
ba39159b-84b2-2e7d-5e29-a4ea9e50fd63	2021-05-26 07:58:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:58:44.79+03	2021-05-26 07:58:44.796+03	
45f8163d-a8b8-efd1-984e-b4808b85b6dc	2021-05-26 07:59:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:59:04.79+03	2021-05-26 07:59:04.796+03	
eacce4e0-eaee-72ab-22de-14424192269b	2021-05-26 07:59:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:59:24.79+03	2021-05-26 07:59:24.803+03	
b39374fa-bb1e-99e6-25f3-2977176521ac	2021-05-26 07:59:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 07:59:44.79+03	2021-05-26 07:59:44.799+03	
90e64ec4-fc47-554c-ae71-758f18759575	2021-05-26 08:00:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 08:00:00.791+03	2021-05-26 08:00:00.795+03	ERROR
b7a7d09e-4b08-51ac-efcb-5195936cd8a4	2021-05-26 08:00:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:00:14.79+03	2021-05-26 08:00:14.796+03	
b5ddc61f-64bd-fb4e-e0c6-8407f9926b1d	2021-05-26 08:00:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:00:34.79+03	2021-05-26 08:00:34.797+03	
f905b3dd-5cc0-8a22-f3ba-e59c0ba2d3af	2021-05-26 08:00:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:00:54.79+03	2021-05-26 08:00:54.796+03	
344d7720-c4ec-b575-5448-14612f17f6b8	2021-05-26 08:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:01:14.79+03	2021-05-26 08:01:14.797+03	
9f16485f-57cd-82c6-ebc9-a51ea05b102b	2021-05-26 08:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:01:34.79+03	2021-05-26 08:01:34.796+03	
55297def-194f-24a8-1e2a-704b350b1b19	2021-05-26 08:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:01:54.79+03	2021-05-26 08:01:54.797+03	
ef4a2a6b-cb86-886b-743c-924d6f8ef260	2021-05-26 08:02:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:02:14.79+03	2021-05-26 08:02:14.797+03	
543ebba0-1633-27c1-5ec6-e8f535e904dd	2021-05-26 08:02:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:02:34.79+03	2021-05-26 08:02:34.796+03	
39a4fcfa-cb54-40b4-5fa7-655df9d06188	2021-05-26 08:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:02:54.79+03	2021-05-26 08:02:54.797+03	
7a0786d7-333d-9670-16f4-b3958fea6ca7	2021-05-26 08:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:03:14.79+03	2021-05-26 08:03:14.817+03	
b52d3889-4a78-9fde-a601-dfe73198a40e	2021-05-26 08:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:03:34.79+03	2021-05-26 08:03:34.796+03	
c4d30e07-a61e-0855-bc18-0e4c1e194da2	2021-05-26 08:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:03:54.79+03	2021-05-26 08:03:54.796+03	
9a307b33-9115-1b8a-1baa-d18409fbda37	2021-05-26 08:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:04:14.79+03	2021-05-26 08:04:14.796+03	
b92d19ee-3db7-c46d-21ce-b5819af76cb6	2021-05-26 08:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:04:34.79+03	2021-05-26 08:04:34.81+03	
279f7f28-b9cd-bd51-bc0f-f0a4147f328e	2021-05-26 08:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:04:54.79+03	2021-05-26 08:04:54.797+03	
92a949a3-bb61-bcc9-c5d6-5099caf6af6d	2021-05-26 08:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:05:14.79+03	2021-05-26 08:05:14.796+03	
de04d62d-2802-dc0d-53cf-9e86d2580a30	2021-05-26 08:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:05:34.79+03	2021-05-26 08:05:34.796+03	
cc8eb1da-f2ec-d8f9-c35c-63e9d5eee33a	2021-05-26 08:05:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:05:54.79+03	2021-05-26 08:05:54.796+03	
fd77a0d2-4143-f66b-6646-0f98f83ea5c8	2021-05-26 08:06:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:06:14.79+03	2021-05-26 08:06:14.796+03	
240a70f8-2d62-9c0f-5a32-0b09ad1a5a36	2021-05-26 08:06:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:06:34.79+03	2021-05-26 08:06:34.796+03	
079f9557-6f6c-e9b2-4533-108bef8beab3	2021-05-26 08:06:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:06:54.79+03	2021-05-26 08:06:54.796+03	
769e518c-ec62-e4e2-228c-e06c0fb28dd6	2021-05-26 08:07:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:07:14.79+03	2021-05-26 08:07:14.796+03	
b83eb005-053e-1ce0-5746-a18758987a67	2021-05-26 08:07:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:07:34.79+03	2021-05-26 08:07:34.796+03	
7ba80d68-11c0-092d-3b9e-e4bbee04b534	2021-05-26 08:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:07:54.79+03	2021-05-26 08:07:54.797+03	
77ea4fc0-5a98-5706-57b0-4428602de26e	2021-05-26 08:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:08:14.79+03	2021-05-26 08:08:14.796+03	
8de02ad2-fcd5-2814-5d2e-5044277be330	2021-05-26 08:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:08:34.79+03	2021-05-26 08:08:34.796+03	
e91b0417-780e-21f2-c038-b03141e5029c	2021-05-26 08:08:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:08:54.79+03	2021-05-26 08:08:54.797+03	
c6cda22e-df48-6133-05a2-455af6566953	2021-05-26 08:09:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:09:14.79+03	2021-05-26 08:09:14.811+03	
872a9b63-59c0-50b0-3491-3aa22d2c40b2	2021-05-26 08:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:09:34.79+03	2021-05-26 08:09:34.796+03	
0c30c805-b9ea-bf18-51c6-ffc9c33242cb	2021-05-26 08:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:09:54.79+03	2021-05-26 08:09:54.796+03	
9704885b-6a4c-9fcc-9f59-293a83c18372	2021-05-26 08:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:10:04.79+03	2021-05-26 08:10:04.796+03	
3eb32274-3028-4488-06e1-2f9660892c92	2021-05-26 08:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:10:24.79+03	2021-05-26 08:10:24.798+03	
f54a11c8-9671-0df5-4f4d-171bb074d878	2021-05-26 08:10:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:10:44.79+03	2021-05-26 08:10:44.809+03	
2252b0b0-e807-0c23-2221-7be096054d9d	2021-05-26 08:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:11:04.79+03	2021-05-26 08:11:04.796+03	
f31637be-f751-0de9-898c-68e2c90c4927	2021-05-26 08:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:11:24.79+03	2021-05-26 08:11:24.796+03	
7bba352b-2f96-f9bc-1ff7-da2efe6fcd64	2021-05-26 08:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:11:44.79+03	2021-05-26 08:11:44.796+03	
d069c0f8-9561-155e-4498-8a56458357e1	2021-05-26 08:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:12:04.79+03	2021-05-26 08:12:04.796+03	
3ec78db0-aecb-9cd5-a0bf-870a6e42d7b9	2021-05-26 08:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:12:24.79+03	2021-05-26 08:12:24.798+03	
8d667335-e1cc-942c-2534-fe37d7614954	2021-05-26 08:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:12:14.79+03	2021-05-26 08:12:14.798+03	
61498527-6601-c67d-8168-0aff37c92847	2021-05-26 08:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:12:34.79+03	2021-05-26 08:12:34.796+03	
4a9c7420-21f7-0fa6-db95-7d1c877e4f2d	2021-05-26 08:12:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:12:54.79+03	2021-05-26 08:12:54.796+03	
c4dfd7ef-ff55-57dc-2107-69a1a0e7bb9b	2021-05-26 08:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:13:14.79+03	2021-05-26 08:13:14.796+03	
cf378ccc-d508-6a0c-4c54-9e67f7eb4781	2021-05-26 08:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:13:34.79+03	2021-05-26 08:13:34.796+03	
9f91ca30-3b69-22b5-97d6-d60a97eec6f5	2021-05-26 08:13:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:13:54.79+03	2021-05-26 08:13:54.796+03	
ed027713-1789-d99a-4f4d-17f7dd0f3210	2021-05-26 08:14:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:14:14.79+03	2021-05-26 08:14:14.796+03	
d6674204-ca73-b13a-f76f-0423b5c6d1f0	2021-05-26 08:14:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:14:34.79+03	2021-05-26 08:14:34.807+03	
a69d588d-075f-73c9-d207-99f055dbc646	2021-05-26 08:14:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:14:54.79+03	2021-05-26 08:14:54.796+03	
436d5f2a-e377-c5c2-d619-2483059f0c90	2021-05-26 08:15:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:15:14.79+03	2021-05-26 08:15:14.796+03	
11271c69-f37f-f21c-f786-66eed8e1ef1a	2021-05-26 08:15:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:15:34.79+03	2021-05-26 08:15:34.797+03	
5da4899d-c127-a62b-10de-54deced84f7a	2021-05-26 08:15:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:15:54.79+03	2021-05-26 08:15:54.796+03	
368130ec-cecf-2180-1ece-cda6798d4e24	2021-05-26 08:16:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:16:14.79+03	2021-05-26 08:16:14.797+03	
58de1b16-8bcf-3724-9d28-5c4f96180597	2021-05-26 08:16:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:16:34.79+03	2021-05-26 08:16:34.796+03	
88852dc4-d882-5aca-7a0e-604829a2d256	2021-05-26 08:16:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:16:54.79+03	2021-05-26 08:16:54.796+03	
9029f3a4-8ac6-8567-18c2-4d76b1bc1855	2021-05-26 08:17:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:17:14.79+03	2021-05-26 08:17:14.796+03	
e5d0d3dc-fd6f-1355-bac9-a46a6b90f1cf	2021-05-26 08:17:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:17:34.79+03	2021-05-26 08:17:34.796+03	
7e00190a-cce6-275d-8dc8-d385e1e0b299	2021-05-26 08:17:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:17:54.79+03	2021-05-26 08:17:54.797+03	
c75bc99b-7ded-ee09-eaa7-790546332f0f	2021-05-26 08:18:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:18:14.79+03	2021-05-26 08:18:14.796+03	
ccecd718-4ee6-3df7-0f56-07fe5f24c4a3	2021-05-26 08:18:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:18:34.79+03	2021-05-26 08:18:34.796+03	
05b00a7d-1331-f3cf-57c7-a9adcfafe6b0	2021-05-26 08:18:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:18:54.79+03	2021-05-26 08:18:54.796+03	
c7b74dab-c7a8-b070-6269-bc7abbbd2a46	2021-05-26 08:19:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:19:14.79+03	2021-05-26 08:19:14.804+03	
698db876-7954-aa26-6caa-4307e733a002	2021-05-26 08:19:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:19:34.79+03	2021-05-26 08:19:34.796+03	
39e84023-fa6a-f37f-4d60-9b14683b0f5e	2021-05-26 08:19:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:19:54.79+03	2021-05-26 08:19:54.796+03	
d51c8809-f518-22fb-e7fb-bb029b9b0c6a	2021-05-26 08:20:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:20:04.79+03	2021-05-26 08:20:04.796+03	
7690e551-3d0f-4cb9-1349-a143fd7672d2	2021-05-26 08:20:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:20:24.79+03	2021-05-26 08:20:24.796+03	
2dbf38e9-458c-18a9-e817-e2b293ac1dfd	2021-05-26 08:20:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:20:44.79+03	2021-05-26 08:20:44.796+03	
528e62d9-407e-8b41-8726-908e7159b30e	2021-05-26 08:21:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:21:04.79+03	2021-05-26 08:21:04.796+03	
a2ee7ca1-6406-8a30-8849-c281143e0195	2021-05-26 08:21:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:21:24.79+03	2021-05-26 08:21:24.797+03	
78cd1e57-6d98-1d40-fadc-5ca727c65764	2021-05-26 08:21:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:21:44.79+03	2021-05-26 08:21:44.797+03	
b5a0d773-7c58-d0fe-04f0-fd1f354d739e	2021-05-26 08:22:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:22:04.79+03	2021-05-26 08:22:04.796+03	
e18899ff-1b00-8363-086f-b726c951eafe	2021-05-26 08:22:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:22:24.79+03	2021-05-26 08:22:24.797+03	
85e83199-5117-3690-4fd6-d185672ca835	2021-05-26 08:22:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:22:44.79+03	2021-05-26 08:22:44.797+03	
aae5e9ac-2b9a-e4d4-5a57-9118f4aa3e92	2021-05-26 08:23:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:23:04.79+03	2021-05-26 08:23:04.796+03	
deedc7fe-1bdd-38a3-1486-b59d17669acb	2021-05-26 08:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:23:24.79+03	2021-05-26 08:23:24.817+03	
f6a78cb0-1cf8-b0cb-351c-689bf76491fa	2021-05-26 08:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:23:44.79+03	2021-05-26 08:23:44.796+03	
e9adbafd-5819-a1b3-1b9f-41357dfad78b	2021-05-26 08:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:24:04.79+03	2021-05-26 08:24:04.796+03	
ce18df02-98fa-e88b-26dd-9e4c630346d8	2021-05-26 08:24:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:24:24.79+03	2021-05-26 08:24:24.797+03	
bc4f9b0e-ca0d-d6a5-d63e-36c7c7d544a8	2021-05-26 08:24:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:24:44.79+03	2021-05-26 08:24:44.796+03	
a560cb0c-becd-7c76-3e61-01411aa7fd41	2021-05-26 08:25:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:25:04.79+03	2021-05-26 08:25:04.796+03	
88f18486-7b2b-22a0-2cda-4907229f471b	2021-05-26 08:25:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:25:24.79+03	2021-05-26 08:25:24.796+03	
73e06a6e-df51-af8c-bacf-188cf8503bca	2021-05-26 08:25:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:25:44.79+03	2021-05-26 08:25:44.796+03	
43f5da68-634c-74a8-8d1a-2c578b8a2b41	2021-05-26 08:26:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:26:04.79+03	2021-05-26 08:26:04.796+03	
57eb53df-b507-14b5-745b-8999ac19724d	2021-05-26 08:26:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:26:24.79+03	2021-05-26 08:26:24.818+03	
587cd0db-1409-55de-703c-53d5d8466b10	2021-05-26 08:26:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:26:44.79+03	2021-05-26 08:26:44.796+03	
75e5a015-765a-5c59-cf4f-cc51acf3fd2a	2021-05-26 08:27:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:27:04.79+03	2021-05-26 08:27:04.796+03	
685201eb-e1a2-1098-6d34-2ab65a71c125	2021-05-26 08:27:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:27:24.79+03	2021-05-26 08:27:24.796+03	
6188a03e-7115-4f1a-986d-22b6af79a0b5	2021-05-26 08:27:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:27:44.79+03	2021-05-26 08:27:44.796+03	
f5d690be-3020-5d28-d58a-a231002585b7	2021-05-26 08:28:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:28:04.79+03	2021-05-26 08:28:04.797+03	
56bb7a3e-7d99-a867-9cf2-b420feb3092a	2021-05-26 08:28:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:28:24.79+03	2021-05-26 08:28:24.796+03	
433d1d8e-328b-9e19-2d09-be291936edec	2021-05-26 08:28:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:28:44.79+03	2021-05-26 08:28:44.796+03	
fe18d42f-721d-3da6-78ba-91613dc7ba50	2021-05-26 08:29:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:29:04.79+03	2021-05-26 08:29:04.796+03	
6596caad-d6f0-2027-4299-bf457e53a21c	2021-05-26 08:29:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:29:24.79+03	2021-05-26 08:29:24.796+03	
c0e065b2-78e3-2657-327a-184df1e34ff2	2021-05-26 08:29:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:29:44.79+03	2021-05-26 08:29:44.797+03	
5dd1f9d7-e585-72e4-f780-96135687c79d	2021-05-26 08:30:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 08:30:00.79+03	2021-05-26 08:30:00.794+03	ERROR
2ec52c68-ad7a-ae98-b8af-4f28a773be29	2021-05-26 08:30:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:30:14.79+03	2021-05-26 08:30:14.797+03	
8a3c6e92-81c9-81c0-8480-02f500e99dfb	2021-05-26 08:30:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:30:34.79+03	2021-05-26 08:30:34.797+03	
4cdd0740-4453-39d0-9df0-cdef95339f54	2021-05-26 08:30:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:30:54.79+03	2021-05-26 08:30:54.797+03	
f43726e1-7f1f-85fb-b525-697f91e82240	2021-05-26 08:31:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:31:14.79+03	2021-05-26 08:31:14.796+03	
69c28ce2-6b95-818d-4624-23be102471ff	2021-05-26 08:31:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:31:34.79+03	2021-05-26 08:31:34.796+03	
233d5ba9-3d70-f67f-7169-384e1f7f2a85	2021-05-26 08:31:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:31:54.79+03	2021-05-26 08:31:54.797+03	
c672bcf8-386a-0763-7c91-35142376953e	2021-05-26 08:32:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:32:14.79+03	2021-05-26 08:32:14.799+03	
cb1ffda3-7c4e-4f52-d74f-4b1d017984e0	2021-05-26 08:32:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:32:34.79+03	2021-05-26 08:32:34.796+03	
a38dc6fa-dcff-b5d0-be47-2a64ed2f46bf	2021-05-26 08:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:12:44.79+03	2021-05-26 08:12:44.796+03	
c1f45807-32ce-8225-ee0b-7692d3cf84a0	2021-05-26 08:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:13:04.79+03	2021-05-26 08:13:04.796+03	
c1e1a249-673a-88bb-d6e1-27d8ad183558	2021-05-26 08:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:13:24.79+03	2021-05-26 08:13:24.8+03	
8e4263ca-d5b4-bf04-95fc-661c8b3605db	2021-05-26 08:13:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:13:44.79+03	2021-05-26 08:13:44.796+03	
4d1303f6-d981-7fa3-2197-9ccfb5e56b1d	2021-05-26 08:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:14:04.79+03	2021-05-26 08:14:04.796+03	
8ad4f985-e6f8-92c5-9492-2a66e4686d10	2021-05-26 08:14:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:14:24.79+03	2021-05-26 08:14:24.796+03	
0cb84e09-810f-b22e-ce08-89eac12403a5	2021-05-26 08:14:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:14:44.79+03	2021-05-26 08:14:44.797+03	
a9a018bf-796f-9a24-0e2c-a25b425f6586	2021-05-26 08:15:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:15:04.79+03	2021-05-26 08:15:04.796+03	
96352663-2c4d-647c-b945-56fdd037b4cd	2021-05-26 08:15:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:15:24.79+03	2021-05-26 08:15:24.796+03	
4908c901-8268-b2d8-1ad6-c958e29ee2a7	2021-05-26 08:15:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:15:44.79+03	2021-05-26 08:15:44.796+03	
a9d700be-0d1c-4ceb-b4c5-c0b8bd251bda	2021-05-26 08:16:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:16:04.79+03	2021-05-26 08:16:04.797+03	
b6937ce0-f7d1-b389-f3c4-48abec37666d	2021-05-26 08:16:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:16:24.79+03	2021-05-26 08:16:24.797+03	
fca03c04-cfd6-3375-2257-0f5dee8822c5	2021-05-26 08:16:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:16:44.79+03	2021-05-26 08:16:44.81+03	
a78f0c8e-720c-fbdd-7015-f8d5a60a68d0	2021-05-26 08:17:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:17:04.79+03	2021-05-26 08:17:04.797+03	
79341cfc-43c7-b699-cb9b-240ccf1e9fcb	2021-05-26 08:17:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:17:24.79+03	2021-05-26 08:17:24.796+03	
5e2c5b63-849d-9dbe-eb04-263701733f20	2021-05-26 08:17:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:17:44.79+03	2021-05-26 08:17:44.797+03	
28846080-9150-2648-55aa-d0673180a2fc	2021-05-26 08:18:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:18:04.79+03	2021-05-26 08:18:04.796+03	
4ace68d9-bb51-95ec-811c-845015506843	2021-05-26 08:18:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:18:24.79+03	2021-05-26 08:18:24.796+03	
f79d0c4a-64c1-4579-7942-80a0a41aad4b	2021-05-26 08:18:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:18:44.79+03	2021-05-26 08:18:44.796+03	
eeb62776-88f9-2e31-e17b-579c31cb887d	2021-05-26 08:19:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:19:04.79+03	2021-05-26 08:19:04.796+03	
4f784d1a-d274-5b23-118e-f37f9859c1c6	2021-05-26 08:19:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:19:24.79+03	2021-05-26 08:19:24.812+03	
92b124e7-d579-337c-6585-d73da96e0678	2021-05-26 08:19:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:19:44.79+03	2021-05-26 08:19:44.797+03	
f4d5eded-bf4e-eff4-9834-b3cac304474f	2021-05-26 08:20:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 08:20:00.79+03	2021-05-26 08:20:00.795+03	ERROR
9fa777dd-849f-18ca-c853-5aafedd917d7	2021-05-26 08:20:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:20:14.79+03	2021-05-26 08:20:14.799+03	
cbf5dfe1-796d-70dd-0f1e-d9845a54039a	2021-05-26 08:20:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:20:34.79+03	2021-05-26 08:20:34.796+03	
6b2c728c-68bd-8701-d90c-5b12b75f536d	2021-05-26 08:20:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:20:54.79+03	2021-05-26 08:20:54.796+03	
e4f6ebb7-f973-bfb2-faab-10f63d28daca	2021-05-26 08:21:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:21:14.79+03	2021-05-26 08:21:14.796+03	
ab6972df-8677-2240-6883-63f8ed580ce2	2021-05-26 08:21:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:21:34.79+03	2021-05-26 08:21:34.796+03	
08b05829-dd09-084b-5b8f-673381c3756f	2021-05-26 08:21:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:21:54.79+03	2021-05-26 08:21:54.796+03	
4a492cb1-a325-396b-f7c6-9cca6fee62a1	2021-05-26 08:22:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:22:14.79+03	2021-05-26 08:22:14.796+03	
d91519f2-3fd8-8155-b32d-4ae623384a60	2021-05-26 08:22:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:22:34.79+03	2021-05-26 08:22:34.797+03	
1d8a6935-5692-1b0f-be37-bbd70042e1c7	2021-05-26 08:22:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:22:54.79+03	2021-05-26 08:22:54.796+03	
3869937d-b423-8f0e-7260-856f0b16c965	2021-05-26 08:23:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:23:14.79+03	2021-05-26 08:23:14.807+03	
63f82267-d1d2-7986-7bf5-faa9306ad64f	2021-05-26 08:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:23:34.79+03	2021-05-26 08:23:34.803+03	
fb2ccf83-d81f-0a33-805d-0f0f179c505e	2021-05-26 08:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:23:54.79+03	2021-05-26 08:23:54.797+03	
e09334f3-9a33-8902-d31b-1e46375bd1b6	2021-05-26 08:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:24:14.79+03	2021-05-26 08:24:14.795+03	
8c12fc85-aa45-e487-8670-65c551870957	2021-05-26 08:24:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:24:34.79+03	2021-05-26 08:24:34.796+03	
376dfc59-93a7-df38-9520-50b58da497ca	2021-05-26 08:24:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:24:54.79+03	2021-05-26 08:24:54.796+03	
775f9207-9805-5a44-22aa-7f1f1344c756	2021-05-26 08:25:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:25:14.79+03	2021-05-26 08:25:14.796+03	
dd5c11ce-777a-ac55-92fe-914e7f485173	2021-05-26 08:25:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:25:34.79+03	2021-05-26 08:25:34.796+03	
c381d844-edfa-9472-4648-8b22671c8f2a	2021-05-26 08:25:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:25:54.79+03	2021-05-26 08:25:54.797+03	
b33f60ad-8c2c-c252-a74f-63f25d899a35	2021-05-26 08:26:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:26:14.79+03	2021-05-26 08:26:14.796+03	
f08a963f-1c68-06d0-6d9c-7f0f748f6474	2021-05-26 08:26:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:26:34.79+03	2021-05-26 08:26:34.796+03	
c2cc56f3-487f-0cd7-ce4d-271ed1e8a62c	2021-05-26 08:26:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:26:54.79+03	2021-05-26 08:26:54.796+03	
a7a35d92-11a8-d87f-304d-797afd020cd6	2021-05-26 08:27:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:27:14.79+03	2021-05-26 08:27:14.797+03	
7f23eaf8-e53b-0b73-ebb9-919e464df22c	2021-05-26 08:27:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:27:34.79+03	2021-05-26 08:27:34.796+03	
a283ec72-c062-9e0d-5581-c34d08b03184	2021-05-26 08:27:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:27:54.79+03	2021-05-26 08:27:54.796+03	
32a31608-a353-8e73-0374-ecddb5f25ede	2021-05-26 08:28:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:28:14.79+03	2021-05-26 08:28:14.796+03	
e7ad0fb5-5245-cce4-cbee-21c4e1f1736a	2021-05-26 08:28:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:28:34.79+03	2021-05-26 08:28:34.796+03	
b669ce2e-e67a-b90d-2e7d-56ee69e7f897	2021-05-26 08:28:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:28:54.79+03	2021-05-26 08:28:54.797+03	
a9e41945-390b-718b-3e80-4c9e452d2c62	2021-05-26 08:29:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:29:14.79+03	2021-05-26 08:29:14.799+03	
6745bbc9-fced-e932-78b0-15de3eae740b	2021-05-26 08:29:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:29:34.79+03	2021-05-26 08:29:34.796+03	
d5fb4b61-a975-cc65-e29a-ab96e7a1a2e2	2021-05-26 08:29:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:29:54.79+03	2021-05-26 08:29:54.811+03	
4da634ba-ada0-2f20-dacb-0097998197f2	2021-05-26 08:30:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:30:04.79+03	2021-05-26 08:30:04.796+03	
b0a5b38d-bc96-268f-981d-9e76564236f2	2021-05-26 08:30:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:30:24.79+03	2021-05-26 08:30:24.796+03	
75ccbc8e-6895-8b44-0526-392acd754dc0	2021-05-26 08:30:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:30:44.79+03	2021-05-26 08:30:44.797+03	
9cf0395d-ecc6-648c-2b62-30cbc6559106	2021-05-26 08:31:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:31:04.79+03	2021-05-26 08:31:04.796+03	
d0bec16d-fb4c-e268-6358-bfef2586276c	2021-05-26 08:31:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:31:24.79+03	2021-05-26 08:31:24.797+03	
e76b3206-edb8-ad90-a5e1-39d24437efe4	2021-05-26 08:31:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:31:44.79+03	2021-05-26 08:31:44.809+03	
e89314b3-d887-c959-a772-0b5b616e4c2f	2021-05-26 08:32:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:32:04.79+03	2021-05-26 08:32:04.797+03	
dc6bdc3b-1e57-829e-e4d4-f30cbe15cfc6	2021-05-26 08:32:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:32:24.79+03	2021-05-26 08:32:24.802+03	
e6c5e387-a99e-0d6d-b070-e1515b781e42	2021-05-26 08:32:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:32:44.79+03	2021-05-26 08:32:44.812+03	
f5b890f7-ac5a-3200-3e31-221ca39d8a57	2021-05-26 08:33:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:33:04.79+03	2021-05-26 08:33:04.796+03	
92215e09-2978-982f-571d-b9651f66974c	2021-05-26 08:32:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:32:54.79+03	2021-05-26 08:32:54.796+03	
7f45cebf-b3a9-c471-970d-dcf99ba058a1	2021-05-26 08:33:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:33:14.79+03	2021-05-26 08:33:14.796+03	
8684f945-607c-6960-04b6-1f536a1d41c2	2021-05-26 08:33:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:33:34.79+03	2021-05-26 08:33:34.796+03	
18ecd725-9ed2-226b-93c4-d960229083c5	2021-05-26 08:33:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:33:54.79+03	2021-05-26 08:33:54.797+03	
dac101b3-21ad-0373-73c5-39157884e6a4	2021-05-26 08:34:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:34:14.79+03	2021-05-26 08:34:14.796+03	
acce6ae8-d5db-77b9-1237-696d425c8f2f	2021-05-26 08:34:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:34:34.79+03	2021-05-26 08:34:34.798+03	
21afaca4-be41-f442-04cd-b1c81a40dbd0	2021-05-26 08:34:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:34:54.79+03	2021-05-26 08:34:54.796+03	
2a4e64c0-6614-f79e-d598-20ac3ce6b094	2021-05-26 08:35:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:35:14.79+03	2021-05-26 08:35:14.796+03	
6658cbda-170e-1b42-ab56-5b1b239d48de	2021-05-26 08:35:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:35:34.79+03	2021-05-26 08:35:34.796+03	
6e40cd24-2772-024f-ae25-b3a66e26c0ae	2021-05-26 08:35:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:35:54.79+03	2021-05-26 08:35:54.796+03	
aa91b80b-14d4-bbf9-8225-7ac508b91d9b	2021-05-26 08:36:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:36:14.79+03	2021-05-26 08:36:14.797+03	
577e81a2-7bb9-b33a-5be0-bb5ec17b2b85	2021-05-26 08:36:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:36:34.79+03	2021-05-26 08:36:34.798+03	
8dc32ac3-0633-c9c8-6917-ab08fb523a78	2021-05-26 08:36:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:36:54.79+03	2021-05-26 08:36:54.797+03	
1b45f1c1-a5f1-ab48-8f62-0194f0853358	2021-05-26 08:37:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:37:14.79+03	2021-05-26 08:37:14.796+03	
8a296c97-1c4a-1d46-20cc-b48bd4da0056	2021-05-26 08:37:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:37:34.79+03	2021-05-26 08:37:34.798+03	
a800f120-d0f8-f19b-1ebe-02e9315e248e	2021-05-26 08:37:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:37:54.79+03	2021-05-26 08:37:54.798+03	
85faa77c-51e1-fc1c-9d41-4899b98517d7	2021-05-26 08:38:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:38:14.79+03	2021-05-26 08:38:14.797+03	
20fa4e03-de5f-a760-d3c3-2d879b2c44bb	2021-05-26 08:38:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:38:34.79+03	2021-05-26 08:38:34.797+03	
825c8d1b-bf55-147c-22d0-857e1819b2e4	2021-05-26 08:38:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:38:54.79+03	2021-05-26 08:38:54.796+03	
f0e8af62-283f-f3fb-82e9-f63a24d1c41e	2021-05-26 08:39:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:39:14.79+03	2021-05-26 08:39:14.798+03	
39d58756-8c5a-928d-848e-6b0d8a24cf91	2021-05-26 08:39:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:39:34.79+03	2021-05-26 08:39:34.798+03	
b61ec6f2-3af0-cfd7-0b08-45c14f1e04f3	2021-05-26 08:39:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:39:54.79+03	2021-05-26 08:39:54.799+03	
d298909d-8bf2-5ab3-1529-b89c415e6751	2021-05-26 08:40:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:40:04.79+03	2021-05-26 08:40:04.796+03	
c861a84c-9bde-0fed-4b78-6e4e3d3974f8	2021-05-26 08:40:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:40:24.79+03	2021-05-26 08:40:24.797+03	
99d8cccc-329c-17ff-127a-aba4de23ea90	2021-05-26 08:40:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:40:44.79+03	2021-05-26 08:40:44.801+03	
cd11d95d-891d-236b-0771-0c670c1b86f1	2021-05-26 08:41:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:41:04.79+03	2021-05-26 08:41:04.797+03	
6ba1abf8-663c-a37d-83bb-78384ae50455	2021-05-26 08:41:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:41:24.79+03	2021-05-26 08:41:24.797+03	
3bbfc3c1-bab0-82be-2230-150a11292ceb	2021-05-26 08:41:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:41:44.79+03	2021-05-26 08:41:44.797+03	
dcf40e61-0170-67f0-328f-54df58312c8f	2021-05-26 08:42:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:42:04.79+03	2021-05-26 08:42:04.803+03	
cebc7908-90fc-e4f3-67c6-46557e893d02	2021-05-26 08:42:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:42:24.79+03	2021-05-26 08:42:24.799+03	
ae6d95ca-8cc2-0d22-5092-7f907862f568	2021-05-26 08:42:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:42:44.79+03	2021-05-26 08:42:44.797+03	
3a615edb-1579-c084-83e4-286f63561cf3	2021-05-26 08:43:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:43:04.79+03	2021-05-26 08:43:04.797+03	
8673540e-e750-27fa-6852-089fbf13dcc4	2021-05-26 08:43:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:43:24.79+03	2021-05-26 08:43:24.802+03	
687290e1-4880-37bc-f142-d0c219ed2ff5	2021-05-26 08:43:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:43:44.79+03	2021-05-26 08:43:44.796+03	
dd38ff44-2baf-380c-ba41-09caa236b3cf	2021-05-26 08:44:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:44:04.79+03	2021-05-26 08:44:04.796+03	
27fab28f-df40-2ff2-4a66-63d5afae28df	2021-05-26 08:44:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:44:24.79+03	2021-05-26 08:44:24.796+03	
c8dc6ea3-55ed-14aa-2815-7966354a956d	2021-05-26 08:44:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:44:44.79+03	2021-05-26 08:44:44.796+03	
969a2dc3-2e9f-58dd-0dc4-6ef3f8f3d07e	2021-05-26 08:45:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:45:04.79+03	2021-05-26 08:45:04.796+03	
9f680c9e-7f7f-2599-ced9-3c623a295457	2021-05-26 08:45:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:45:24.79+03	2021-05-26 08:45:24.804+03	
29a420ce-a477-d7f7-f597-d2d62201bd74	2021-05-26 08:45:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:45:44.79+03	2021-05-26 08:45:44.797+03	
4ca6dca5-d83c-c000-86db-51b55deea187	2021-05-26 08:46:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:46:04.79+03	2021-05-26 08:46:04.797+03	
13261079-c778-aba2-8772-415fed682dcb	2021-05-26 08:46:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:46:24.79+03	2021-05-26 08:46:24.796+03	
5d65f9c6-ef93-d16e-a7d6-7c8ad5036539	2021-05-26 08:46:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:46:44.79+03	2021-05-26 08:46:44.798+03	
8efe9e64-9664-b32b-d6ad-2ed95f9a6c7f	2021-05-26 08:47:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:47:04.79+03	2021-05-26 08:47:04.796+03	
dd1806e0-0644-c44b-a145-e490f00f5664	2021-05-26 08:47:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:47:24.79+03	2021-05-26 08:47:24.797+03	
2fe0964e-20e7-cbf7-8ad0-bd3ea04840f3	2021-05-26 08:47:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:47:44.79+03	2021-05-26 08:47:44.796+03	
62bea870-1d0a-fdd4-7993-91ff6811ec1a	2021-05-26 08:48:04.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:48:04.79+03	2021-05-26 08:48:04.797+03	
097f1a15-cef2-158f-b798-0d8466ea662b	2021-05-26 08:48:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:48:24.79+03	2021-05-26 08:48:24.796+03	
64496ae7-bdc8-9e90-5151-e28e04e8b08f	2021-05-26 08:48:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:48:44.79+03	2021-05-26 08:48:44.796+03	
8afc4d5c-d5ee-46f6-5d66-130d186e5953	2021-05-26 08:49:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:49:04.79+03	2021-05-26 08:49:04.796+03	
2e38d53d-96d2-b77b-9bdc-4cbcdfc77c0f	2021-05-26 08:49:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:49:24.79+03	2021-05-26 08:49:24.8+03	
949b0851-a45f-8f37-da57-e41e9167c8d7	2021-05-26 08:49:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:49:44.79+03	2021-05-26 08:49:44.796+03	
efa2d741-6e87-4a0d-e8d9-c72a9426aa5d	2021-05-26 08:50:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 08:50:00.79+03	2021-05-26 08:50:00.795+03	ERROR
ce1c9451-c17c-1397-a416-e89e6974fc15	2021-05-26 08:50:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:50:14.79+03	2021-05-26 08:50:14.796+03	
db98fd37-338e-4713-bab3-1f2f81ab16ae	2021-05-26 08:50:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:50:34.79+03	2021-05-26 08:50:34.805+03	
244cffb7-4c0f-5d2c-b17b-fe471e24ac39	2021-05-26 08:50:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:50:54.79+03	2021-05-26 08:50:54.796+03	
bc8507f8-0bba-deb3-d07a-ef463f1606d6	2021-05-26 08:51:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:51:14.79+03	2021-05-26 08:51:14.797+03	
65220254-8bc5-deb7-8919-579a91657b79	2021-05-26 08:51:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:51:34.79+03	2021-05-26 08:51:34.797+03	
0cae490c-1698-fcc7-7749-f05de60ddb9b	2021-05-26 08:51:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:51:54.79+03	2021-05-26 08:51:54.796+03	
6c4af7e8-a3da-5ba2-d7c3-b2c2f5e08ba3	2021-05-26 08:52:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:52:14.79+03	2021-05-26 08:52:14.797+03	
2b6554c2-eb34-5999-7724-beb56c469c0c	2021-05-26 08:52:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:52:34.79+03	2021-05-26 08:52:34.796+03	
86e633fe-3639-8186-a5bd-6f03bd7263a0	2021-05-26 08:52:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:52:54.79+03	2021-05-26 08:52:54.797+03	
caeb2360-71b2-e705-50f5-82cd11289e13	2021-05-26 08:53:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:53:14.79+03	2021-05-26 08:53:14.797+03	
126ade7c-5aa7-f2c2-b59a-0c8b642f9a8e	2021-05-26 08:33:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:33:24.79+03	2021-05-26 08:33:24.797+03	
9137c675-ae2c-461e-9276-18501d927e9e	2021-05-26 08:33:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:33:44.79+03	2021-05-26 08:33:44.797+03	
57ab8a2b-06fd-a024-ccc8-e22cc82fa82a	2021-05-26 08:34:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:34:04.79+03	2021-05-26 08:34:04.797+03	
f3c368f4-b402-f4d8-13f8-d43b667b0543	2021-05-26 08:34:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:34:24.79+03	2021-05-26 08:34:24.797+03	
6caa2392-05c7-344a-14c8-97bad301873f	2021-05-26 08:34:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:34:44.79+03	2021-05-26 08:34:44.796+03	
e60d1c03-5360-8841-1c7f-d8acec93f430	2021-05-26 08:35:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:35:04.79+03	2021-05-26 08:35:04.811+03	
1d86df4f-fb76-63d9-402f-bb28eff3b0c7	2021-05-26 08:35:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:35:24.79+03	2021-05-26 08:35:24.796+03	
8a478df6-f39f-93f6-5a54-ab5b13e2fe24	2021-05-26 08:35:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:35:44.79+03	2021-05-26 08:35:44.796+03	
2259e3d4-e8c4-1402-643f-e2a61bdaf174	2021-05-26 08:36:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:36:04.79+03	2021-05-26 08:36:04.795+03	
09acf8b8-a206-b224-66c7-62f03c0fa43e	2021-05-26 08:36:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:36:24.79+03	2021-05-26 08:36:24.797+03	
8cf1043a-b8ac-ab43-a7df-75b888d7aa19	2021-05-26 08:36:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:36:44.79+03	2021-05-26 08:36:44.797+03	
1c2e2dd1-af12-69ce-fa44-82d97b6908e0	2021-05-26 08:37:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:37:04.79+03	2021-05-26 08:37:04.797+03	
49c41cad-905a-bed6-9e61-4c7c0d1e89ef	2021-05-26 08:37:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:37:24.79+03	2021-05-26 08:37:24.798+03	
9c310b7d-7bf1-71f4-c093-7573b2cb2a75	2021-05-26 08:37:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:37:44.79+03	2021-05-26 08:37:44.796+03	
69355a2f-77af-4c23-cbdd-e718a99f1c4e	2021-05-26 08:38:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:38:04.79+03	2021-05-26 08:38:04.798+03	
2edeea3b-cdf7-9245-8912-338d4c2259ef	2021-05-26 08:38:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:38:24.79+03	2021-05-26 08:38:24.796+03	
e72a4a57-f78a-befc-c239-d97aad55044d	2021-05-26 08:38:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:38:44.79+03	2021-05-26 08:38:44.798+03	
ffbb0a6b-eec2-3846-7bbd-c35f2102867b	2021-05-26 08:39:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:39:04.79+03	2021-05-26 08:39:04.798+03	
314fa8de-7ac7-ea1a-6aea-9137f3dc17d9	2021-05-26 08:39:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:39:24.79+03	2021-05-26 08:39:24.796+03	
d85c99f4-541b-ff30-4674-155eded28dc7	2021-05-26 08:39:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:39:44.79+03	2021-05-26 08:39:44.797+03	
afd24d78-bd4e-5e10-4b28-fed270cf4791	2021-05-26 08:40:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 08:40:00.79+03	2021-05-26 08:40:00.794+03	ERROR
8e3686c3-400e-a55e-371d-492d6a6c796f	2021-05-26 08:40:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:40:14.79+03	2021-05-26 08:40:14.798+03	
57c1d6c9-d7f7-bfe7-1f7b-f52493a35af5	2021-05-26 08:40:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:40:34.79+03	2021-05-26 08:40:34.796+03	
886a0f60-6e84-20a0-7719-b98915d12ec5	2021-05-26 08:40:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:40:54.79+03	2021-05-26 08:40:54.796+03	
56c4c477-1167-df32-17aa-7f5a979938b1	2021-05-26 08:41:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:41:14.79+03	2021-05-26 08:41:14.796+03	
12258dbc-3fed-9931-5249-76eadd54ea7c	2021-05-26 08:41:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:41:34.79+03	2021-05-26 08:41:34.796+03	
225f5131-a1ac-77cb-2a77-b82626d5fd15	2021-05-26 08:41:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:41:54.79+03	2021-05-26 08:41:54.796+03	
f3c5307d-93a6-8086-2368-e4d7deb3b3c1	2021-05-26 08:42:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:42:14.79+03	2021-05-26 08:42:14.796+03	
dd3d8f63-7059-4672-04cb-598223aa7343	2021-05-26 08:42:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:42:34.79+03	2021-05-26 08:42:34.797+03	
1c40cfad-f110-6350-f27d-2111b34898e7	2021-05-26 08:42:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:42:54.79+03	2021-05-26 08:42:54.797+03	
7490087e-9cc3-b441-7b4d-6f33efd3ba11	2021-05-26 08:43:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:43:14.79+03	2021-05-26 08:43:14.798+03	
6e964bc5-0f8a-082d-c56d-c4e2457aa16e	2021-05-26 08:43:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:43:34.79+03	2021-05-26 08:43:34.796+03	
89cd6109-836b-158f-fa9b-15033ff6f9b9	2021-05-26 08:43:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:43:54.79+03	2021-05-26 08:43:54.796+03	
6028ff48-2b23-adc1-49f8-3adf01edeb80	2021-05-26 08:44:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:44:14.79+03	2021-05-26 08:44:14.796+03	
6aa7dd9e-53ac-2f27-b7ac-7f9e499c7831	2021-05-26 08:44:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:44:34.79+03	2021-05-26 08:44:34.796+03	
dbb9cfe5-423e-668d-c14f-4cef05a273b3	2021-05-26 08:44:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:44:54.79+03	2021-05-26 08:44:54.797+03	
4905984e-23d1-1610-25e6-bbda224e54df	2021-05-26 08:45:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:45:14.79+03	2021-05-26 08:45:14.846+03	
81eff12f-9d31-a290-2ceb-5c29dd953638	2021-05-26 08:45:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:45:34.79+03	2021-05-26 08:45:34.808+03	
f365dc5a-cf41-f067-2ae6-263dfbe4071f	2021-05-26 08:45:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:45:54.79+03	2021-05-26 08:45:54.796+03	
2be1fd38-179d-b51b-078a-7732c6738c66	2021-05-26 08:46:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:46:14.79+03	2021-05-26 08:46:14.796+03	
76c88ea2-88e4-56b1-486e-f38243d667a6	2021-05-26 08:46:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:46:34.79+03	2021-05-26 08:46:34.796+03	
bbe86a78-3128-6b34-03fe-839343ae74c8	2021-05-26 08:46:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:46:54.79+03	2021-05-26 08:46:54.797+03	
dffc2f1a-fe59-9e81-175d-8b1eafd5aeac	2021-05-26 08:47:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:47:14.79+03	2021-05-26 08:47:14.796+03	
59ce8a97-f282-a237-ee21-f0389903c291	2021-05-26 08:47:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:47:34.79+03	2021-05-26 08:47:34.796+03	
348377a0-c5e6-2042-df61-ded8bfacc2d8	2021-05-26 08:47:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:47:54.79+03	2021-05-26 08:47:54.796+03	
5f38c4cb-f60a-fcd1-f644-8bf460fda845	2021-05-26 08:48:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:48:14.79+03	2021-05-26 08:48:14.796+03	
2864cecd-f342-b8af-b849-d6dfc4a10edb	2021-05-26 08:48:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:48:34.79+03	2021-05-26 08:48:34.796+03	
4f62bd3b-027b-e12d-f5ca-a0166a9ad43c	2021-05-26 08:48:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:48:54.79+03	2021-05-26 08:48:54.796+03	
fdc06a1e-740c-7597-ae06-58a5835207a7	2021-05-26 08:49:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:49:14.79+03	2021-05-26 08:49:14.796+03	
75d83687-78d7-1ab5-e44c-9f77641eb86f	2021-05-26 08:49:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:49:34.79+03	2021-05-26 08:49:34.796+03	
cbd3bd51-1ed1-f9ae-e463-3a2db7480826	2021-05-26 08:49:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:49:54.79+03	2021-05-26 08:49:54.796+03	
809e5a52-9b51-99ef-0549-e50d9f664862	2021-05-26 08:50:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:50:04.79+03	2021-05-26 08:50:04.796+03	
ebc8d83c-bcaf-1a1d-0e0e-4992f3a7a287	2021-05-26 08:50:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:50:24.79+03	2021-05-26 08:50:24.796+03	
45855691-d8a8-011e-ae39-14f288de6fa3	2021-05-26 08:50:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:50:44.79+03	2021-05-26 08:50:44.797+03	
0ee1db83-1dff-eafb-2253-aff27167c391	2021-05-26 08:51:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:51:04.79+03	2021-05-26 08:51:04.796+03	
4e61d523-ca2d-4494-72f5-e278f495c73b	2021-05-26 08:51:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:51:24.79+03	2021-05-26 08:51:24.797+03	
34ccb59f-1a27-8496-7e5f-49811feb8e0a	2021-05-26 08:51:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:51:44.79+03	2021-05-26 08:51:44.797+03	
5dfe873b-de94-ec8c-1b4a-a050e0fc5522	2021-05-26 08:52:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:52:04.79+03	2021-05-26 08:52:04.806+03	
46010b32-2f31-7ed9-6abb-420ab61893aa	2021-05-26 08:52:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:52:24.79+03	2021-05-26 08:52:24.802+03	
e32e001a-ea33-f453-0e3c-0d4983600439	2021-05-26 08:52:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:52:44.79+03	2021-05-26 08:52:44.798+03	
29d47c1d-e8ae-5ce9-15b3-e0b0426f9674	2021-05-26 08:53:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:53:04.79+03	2021-05-26 08:53:04.796+03	
fe7caa0e-c267-c9f8-ea43-59524d3c51b4	2021-05-26 08:53:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:53:24.79+03	2021-05-26 08:53:24.804+03	
e02bfa17-fe88-297d-59da-18b6b78917c5	2021-05-26 08:53:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:53:44.79+03	2021-05-26 08:53:44.797+03	
92b7fc87-2724-0c5c-7937-55ee7c68d5dd	2021-05-26 08:53:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:53:34.79+03	2021-05-26 08:53:34.796+03	
344b0d42-3f40-afb4-baa1-7cfcaf2c2464	2021-05-26 08:53:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:53:54.79+03	2021-05-26 08:53:54.796+03	
ac5e2e40-f021-6c5f-1da5-f7194b5f13a1	2021-05-26 08:54:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:54:14.79+03	2021-05-26 08:54:14.796+03	
2ea61a71-d944-ced9-1099-87fbc4759a42	2021-05-26 08:54:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:54:34.79+03	2021-05-26 08:54:34.798+03	
6098c651-2358-f246-9d8b-f3bb638b3f07	2021-05-26 08:54:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:54:54.79+03	2021-05-26 08:54:54.797+03	
004948f9-ea3a-c6be-80fc-4dfe980a0f83	2021-05-26 08:55:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:55:14.79+03	2021-05-26 08:55:14.797+03	
36998afc-4fa6-3979-e5fa-b59f15f289ba	2021-05-26 08:55:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:55:34.79+03	2021-05-26 08:55:34.796+03	
953121c1-01d3-bf92-e8fd-7e28d7b1761b	2021-05-26 08:55:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:55:54.79+03	2021-05-26 08:55:54.797+03	
b851a5eb-030b-9b31-c58a-974e1ddd39f9	2021-05-26 08:56:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:56:14.79+03	2021-05-26 08:56:14.796+03	
d3829406-d00a-db7d-9ec1-2969c8ad5e68	2021-05-26 08:56:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:56:34.79+03	2021-05-26 08:56:34.796+03	
5c199e92-4f40-f189-9b48-05e8fde731d6	2021-05-26 08:56:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:56:54.79+03	2021-05-26 08:56:54.797+03	
3a290e77-449d-4aae-c139-3b21dcbdf2c7	2021-05-26 08:57:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:57:14.79+03	2021-05-26 08:57:14.797+03	
97b6c475-df6e-55bc-e8af-cfb62c38d948	2021-05-26 08:57:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:57:34.79+03	2021-05-26 08:57:34.797+03	
e6c6436e-0f87-00b4-d068-f5d89f0cb45d	2021-05-26 08:57:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:57:54.79+03	2021-05-26 08:57:54.797+03	
1c348132-f2a4-3176-7332-407a340cfdbe	2021-05-26 08:58:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:58:14.79+03	2021-05-26 08:58:14.796+03	
16e5e2d3-6f15-5e39-c7d2-c460d940397c	2021-05-26 08:58:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:58:34.79+03	2021-05-26 08:58:34.796+03	
bf1e46fe-54b4-8b5a-c6e2-de9bad260894	2021-05-26 08:58:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:58:54.79+03	2021-05-26 08:58:54.796+03	
2ace763e-7246-95d1-b8bb-f5c0655cb05d	2021-05-26 08:59:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:59:14.79+03	2021-05-26 08:59:14.801+03	
69215261-f0e8-1aaa-1c86-d99a14447aea	2021-05-26 08:59:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:59:34.79+03	2021-05-26 08:59:34.796+03	
9afd1a79-bec1-1341-9a6f-dda862fdc17c	2021-05-26 08:59:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:59:54.79+03	2021-05-26 08:59:54.797+03	
95e0982b-8394-290e-25c6-f24a9f356bf4	2021-05-26 09:00:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:00:04.79+03	2021-05-26 09:00:04.796+03	
a868f29f-3caf-6b4d-d331-870df496d89d	2021-05-26 09:00:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:00:24.79+03	2021-05-26 09:00:24.796+03	
2cdccf0e-493e-74ce-2f0a-fbbffb97a847	2021-05-26 09:00:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:00:44.79+03	2021-05-26 09:00:44.796+03	
6ff8a604-f510-678e-52e6-e93b71c5a1ca	2021-05-26 09:01:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:01:04.79+03	2021-05-26 09:01:04.796+03	
3df7806a-7c4b-6aae-66ac-072a48ab1398	2021-05-26 09:01:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:01:24.79+03	2021-05-26 09:01:24.796+03	
84674dc2-00f7-e1d5-b82e-eea9bf4d3948	2021-05-26 09:01:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:01:44.79+03	2021-05-26 09:01:44.796+03	
b5c468e6-740a-987d-765b-bc23a4326c3c	2021-05-26 09:02:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:02:04.79+03	2021-05-26 09:02:04.796+03	
e80f3bd0-fd54-268a-7262-389d7f36f9a4	2021-05-26 09:02:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:02:24.79+03	2021-05-26 09:02:24.796+03	
556b6ec9-0286-f74b-2509-998a7f960ac4	2021-05-26 09:02:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:02:44.79+03	2021-05-26 09:02:44.797+03	
fee52f32-4585-55d2-ba83-9d5e2cafd87b	2021-05-26 09:03:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:03:04.79+03	2021-05-26 09:03:04.797+03	
de16214d-6a4b-0d23-c93b-036a1e172303	2021-05-26 09:03:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:03:24.79+03	2021-05-26 09:03:24.797+03	
e4cf87a4-ae67-7c1b-85cf-3c0951c5d2d7	2021-05-26 09:03:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:03:44.79+03	2021-05-26 09:03:44.797+03	
e4806a88-0629-94ca-f0b2-2c2a2e6cf4d2	2021-05-26 09:04:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:04:04.79+03	2021-05-26 09:04:04.796+03	
38ab4848-e05f-ff91-97ef-a0d48cfd222f	2021-05-26 09:04:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:04:24.79+03	2021-05-26 09:04:24.796+03	
b475c4ba-7f2d-8e20-0f34-a791efaa0111	2021-05-26 09:04:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:04:44.79+03	2021-05-26 09:04:44.798+03	
5186d83b-a3ed-d022-c8bf-560ce1f8eb6f	2021-05-26 09:05:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:05:04.79+03	2021-05-26 09:05:04.802+03	
9f822ca0-7b3e-6ffb-9e79-efad07c258fc	2021-05-26 09:05:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:05:24.79+03	2021-05-26 09:05:24.81+03	
010489ab-f3a2-b948-4581-6d0b1bd2485b	2021-05-26 09:05:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:05:44.79+03	2021-05-26 09:05:44.798+03	
60df9cda-5b28-a580-87c6-63c7409871d8	2021-05-26 09:06:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:06:04.79+03	2021-05-26 09:06:04.796+03	
66e9699c-49de-37f7-c403-883bf3834e4e	2021-05-26 09:06:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:06:24.79+03	2021-05-26 09:06:24.798+03	
b705825a-ca9d-7b4b-9829-e53e4dfc4d36	2021-05-26 09:06:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:06:54.79+03	2021-05-26 09:06:54.81+03	
2849fce0-f4a3-26be-225d-bdc59e833adb	2021-05-26 09:07:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:07:14.79+03	2021-05-26 09:07:14.797+03	
75eda1b6-97bb-01c9-4895-db9506478952	2021-05-26 09:07:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:07:34.79+03	2021-05-26 09:07:34.796+03	
30490e80-759a-b18b-789d-1ed6f514959f	2021-05-26 09:07:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:07:54.79+03	2021-05-26 09:07:54.799+03	
6e76e1af-dd4d-3575-a6a4-a698acdc68c1	2021-05-26 09:08:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:08:14.79+03	2021-05-26 09:08:14.797+03	
0a082627-f9a4-d3d0-3fac-3509fa64b5e1	2021-05-26 09:08:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:08:34.79+03	2021-05-26 09:08:34.8+03	
94d6d1b4-c0c5-5c50-ba67-37e4ed0318fe	2021-05-26 09:08:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:08:54.79+03	2021-05-26 09:08:54.798+03	
bc4d7921-8a42-2562-8874-e3df0a846856	2021-05-26 09:09:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:09:14.79+03	2021-05-26 09:09:14.799+03	
bb7eb15f-740a-dade-a170-cb8ddc88acdd	2021-05-26 09:09:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:09:34.79+03	2021-05-26 09:09:34.797+03	
55927e5e-e9e3-60c6-91d0-3a236df6e18a	2021-05-26 09:09:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:09:54.79+03	2021-05-26 09:09:54.811+03	
bc985cc6-0c6f-c986-3bd6-a89e668f0532	2021-05-26 09:10:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:10:04.79+03	2021-05-26 09:10:04.797+03	
54b7c238-6141-1e48-b330-b63430dd55ed	2021-05-26 09:10:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:10:24.79+03	2021-05-26 09:10:24.796+03	
89874215-fd83-eecd-905a-46987fa86821	2021-05-26 09:10:44.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:10:44.79+03	2021-05-26 09:10:44.8+03	
ce689e83-b635-a446-01ad-8d48e2f6358f	2021-05-26 09:11:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:11:04.79+03	2021-05-26 09:11:04.798+03	
b5b296e6-f960-250f-89b1-0717487ff5b6	2021-05-26 09:11:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:11:24.79+03	2021-05-26 09:11:24.797+03	
e493d258-ac25-5f4d-ed74-c123fe3d2be5	2021-05-26 09:11:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:11:44.79+03	2021-05-26 09:11:44.798+03	
c263d3da-be34-7b2b-04ee-6bc689ced2ed	2021-05-26 09:12:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:12:04.79+03	2021-05-26 09:12:04.798+03	
48393edc-948a-bbe3-6034-74ccaffc8b06	2021-05-26 09:12:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:12:24.79+03	2021-05-26 09:12:24.797+03	
b82c12e3-6761-047b-84c8-4da34a75c418	2021-05-26 09:12:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:12:44.79+03	2021-05-26 09:12:44.796+03	
f35ef9be-05ba-e1c6-bdbe-eb750779112c	2021-05-26 09:13:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:13:04.79+03	2021-05-26 09:13:04.798+03	
2557644a-6510-3b15-d7a7-af1c38f9499e	2021-05-26 09:13:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:13:24.79+03	2021-05-26 09:13:24.798+03	
cfaa0407-e43b-e6ef-1d46-eb10064e5e44	2021-05-26 09:13:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:13:44.79+03	2021-05-26 09:13:44.797+03	
c1e64a07-95c7-2bbe-26e7-aaa57aabe0cf	2021-05-26 09:14:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:14:04.79+03	2021-05-26 09:14:04.799+03	
b2df5f1f-0394-b854-c07b-59b59fbfc949	2021-05-26 08:54:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:54:04.79+03	2021-05-26 08:54:04.797+03	
cc5fc30c-9be9-0173-66c3-b0dca5c953e5	2021-05-26 08:54:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:54:24.79+03	2021-05-26 08:54:24.797+03	
2004f8f6-197c-52af-7776-233d33f2e76b	2021-05-26 08:54:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:54:44.79+03	2021-05-26 08:54:44.798+03	
bb618f80-1ebb-2b3b-c48b-546c0a149c79	2021-05-26 08:55:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:55:04.79+03	2021-05-26 08:55:04.796+03	
657f84b1-c778-93c8-2892-08624528707f	2021-05-26 08:55:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:55:24.79+03	2021-05-26 08:55:24.796+03	
9fdbea57-a51b-47fa-f256-5bd5035df2b6	2021-05-26 08:55:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:55:44.79+03	2021-05-26 08:55:44.798+03	
6480a2ca-9152-9b21-616c-8cdd7cd211d7	2021-05-26 08:56:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:56:04.79+03	2021-05-26 08:56:04.796+03	
b36e5bd9-ac7a-294b-2dcd-166501e5d90d	2021-05-26 08:56:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:56:24.79+03	2021-05-26 08:56:24.801+03	
d3871e4c-7182-8126-2ddc-fe8208bd81c0	2021-05-26 08:56:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:56:44.79+03	2021-05-26 08:56:44.796+03	
1b71f8cc-e4dc-464e-d21c-7c7301889e46	2021-05-26 08:57:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:57:04.79+03	2021-05-26 08:57:04.796+03	
74106d40-23d8-08fd-3d2e-bf03355c624d	2021-05-26 08:57:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:57:24.79+03	2021-05-26 08:57:24.796+03	
3f8aa06a-7d1e-ec8b-f908-1c7cabb6a4ac	2021-05-26 08:57:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:57:44.79+03	2021-05-26 08:57:44.81+03	
a1593434-5690-c6de-6f4c-3e313613d71a	2021-05-26 08:58:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:58:04.79+03	2021-05-26 08:58:04.797+03	
425ed08f-bfa4-8146-c388-78dd1d76b628	2021-05-26 08:58:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:58:24.79+03	2021-05-26 08:58:24.797+03	
414afc96-46e0-ac19-4965-6cd053924466	2021-05-26 08:58:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:58:44.79+03	2021-05-26 08:58:44.797+03	
38c79428-197c-f11f-dfba-dd0b60457420	2021-05-26 08:59:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:59:04.79+03	2021-05-26 08:59:04.796+03	
037e6849-3973-c75d-e36d-c4fbb6c9643b	2021-05-26 08:59:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:59:24.79+03	2021-05-26 08:59:24.825+03	
182c9832-9300-c324-1bc7-383506e4b874	2021-05-26 08:59:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 08:59:44.79+03	2021-05-26 08:59:44.797+03	
3f458b69-848a-2985-c330-c3e87b27417d	2021-05-26 09:00:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 09:00:00.79+03	2021-05-26 09:00:00.796+03	ERROR
6ae51e9e-e0c5-58af-0b77-afb291a12ee8	2021-05-26 09:00:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:00:14.79+03	2021-05-26 09:00:14.796+03	
f202d835-6199-1cc2-98a2-55e645e1a2c9	2021-05-26 09:00:34.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:00:34.79+03	2021-05-26 09:00:34.809+03	
a82e2707-d46b-ec1b-8753-5220ad3d4113	2021-05-26 09:00:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:00:54.79+03	2021-05-26 09:00:54.796+03	
2da94026-879a-fab0-7611-1569512f9a23	2021-05-26 09:01:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:01:14.79+03	2021-05-26 09:01:14.796+03	
cb51e226-ba52-c563-1de3-8541a1240448	2021-05-26 09:01:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:01:34.79+03	2021-05-26 09:01:34.796+03	
6052d33e-07a0-4ba3-74a3-02a2953f5b56	2021-05-26 09:01:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:01:54.79+03	2021-05-26 09:01:54.796+03	
cb533293-77ed-44d2-37bf-bcc38584b571	2021-05-26 09:02:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:02:14.79+03	2021-05-26 09:02:14.796+03	
7ee90306-3723-d08b-1e5d-678fde0d9f0a	2021-05-26 09:02:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:02:34.79+03	2021-05-26 09:02:34.796+03	
3e4710d6-ab5b-580a-75cf-ab9ae9deb53f	2021-05-26 09:02:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:02:54.79+03	2021-05-26 09:02:54.797+03	
3ec23700-2e6c-c3a4-241a-5a464d39614b	2021-05-26 09:03:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:03:14.79+03	2021-05-26 09:03:14.797+03	
bc256335-cfde-fa45-5909-feb8723fa1d0	2021-05-26 09:03:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:03:34.79+03	2021-05-26 09:03:34.796+03	
a51df360-63cf-0ae8-1d70-e4bea1bae86f	2021-05-26 09:03:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:03:54.79+03	2021-05-26 09:03:54.797+03	
05c44616-a248-177e-8421-7aac4d1b06c7	2021-05-26 09:04:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:04:14.79+03	2021-05-26 09:04:14.797+03	
0a1d68a7-324e-cc1f-f56a-add8747ef60f	2021-05-26 09:04:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:04:34.79+03	2021-05-26 09:04:34.797+03	
2f750d79-a453-585a-611e-2ed344487b30	2021-05-26 09:04:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:04:54.79+03	2021-05-26 09:04:54.798+03	
034b6465-224e-69ae-eb51-7dc1a4ea6f5e	2021-05-26 09:05:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:05:14.79+03	2021-05-26 09:05:14.798+03	
10bdaa33-d416-e029-9ab5-1680e3791703	2021-05-26 09:05:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:05:34.79+03	2021-05-26 09:05:34.797+03	
b99471f7-888a-24cb-11c0-46c30f176a00	2021-05-26 09:05:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:05:54.79+03	2021-05-26 09:05:54.81+03	
9766f401-7282-810d-8d4e-41baad2cd243	2021-05-26 09:06:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:06:14.79+03	2021-05-26 09:06:14.797+03	
8b613e09-8a15-94b8-96fa-cf197b74aa6a	2021-05-26 09:06:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:06:34.79+03	2021-05-26 09:06:34.796+03	
03ff1663-a292-b81a-2abf-4345f66f3fe6	2021-05-26 09:06:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:06:44.79+03	2021-05-26 09:06:44.807+03	
0f66c182-1892-3fc8-1145-ab10d98ec930	2021-05-26 09:07:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:07:04.79+03	2021-05-26 09:07:04.797+03	
e6046961-2848-1a05-d8e7-2d76626f1293	2021-05-26 09:07:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:07:24.79+03	2021-05-26 09:07:24.798+03	
939b2d21-e90b-fd54-72de-65848c958d24	2021-05-26 09:07:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:07:44.79+03	2021-05-26 09:07:44.799+03	
d9990198-582e-eb42-8599-c62c330aefa1	2021-05-26 09:08:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:08:04.79+03	2021-05-26 09:08:04.796+03	
168df104-7384-2580-d91b-a80e12085bf9	2021-05-26 09:08:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:08:24.79+03	2021-05-26 09:08:24.802+03	
7e706f85-fac7-a90c-514a-abbe19630206	2021-05-26 09:08:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:08:44.79+03	2021-05-26 09:08:44.797+03	
71db0164-ff3a-8c29-c06f-4f0242aa341e	2021-05-26 09:09:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:09:04.79+03	2021-05-26 09:09:04.806+03	
9b3ddea8-218f-545d-6a00-ab86bad90283	2021-05-26 09:09:24.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:09:24.79+03	2021-05-26 09:09:24.806+03	
74f5711d-de49-019b-b2a6-5c29b3112963	2021-05-26 09:09:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:09:44.79+03	2021-05-26 09:09:44.798+03	
529fc87a-a1b5-4eb3-0715-67e577125c2e	2021-05-26 09:10:00.79	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 09:10:00.79+03	2021-05-26 09:10:00.795+03	ERROR
b823324b-877e-e541-0609-77903cb14f37	2021-05-26 09:10:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:10:14.79+03	2021-05-26 09:10:14.799+03	
212c33be-de2c-cc47-7b4e-60ed3d20c0ac	2021-05-26 09:10:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:10:34.79+03	2021-05-26 09:10:34.797+03	
fa1471d4-348d-ca73-e715-dd96322fc641	2021-05-26 09:10:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:10:54.79+03	2021-05-26 09:10:54.806+03	
7f7fe422-948f-68ba-7bbb-efd9fd86269f	2021-05-26 09:11:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:11:14.79+03	2021-05-26 09:11:14.798+03	
f4ba1da4-a0a3-27d6-2bf3-a22147b6e6da	2021-05-26 09:11:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:11:34.79+03	2021-05-26 09:11:34.802+03	
cd6d4f6d-95d5-eb5a-e4c8-86dcc2a265d4	2021-05-26 09:11:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:11:54.79+03	2021-05-26 09:11:54.811+03	
75c05d20-656e-2fa4-96fb-e611cf54de09	2021-05-26 09:12:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:12:14.79+03	2021-05-26 09:12:14.799+03	
df41a773-f2e0-d76c-9a17-934015bb4a42	2021-05-26 09:12:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:12:34.79+03	2021-05-26 09:12:34.797+03	
d0eaf8d1-1f64-d5d4-13d6-3c73f621fee8	2021-05-26 09:12:54.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:12:54.79+03	2021-05-26 09:12:54.797+03	
b92b85fa-e8aa-fdee-0745-7b65d31eb24f	2021-05-26 09:13:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:13:14.79+03	2021-05-26 09:13:14.797+03	
7e3eabf1-76e4-8721-3aea-c7811742334b	2021-05-26 09:13:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:13:34.79+03	2021-05-26 09:13:34.808+03	
ca592757-96cf-ddb0-3231-e18caac2f709	2021-05-26 09:13:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:13:54.79+03	2021-05-26 09:13:54.796+03	
4ddab6ae-f440-d904-5a3b-0c5df76e1069	2021-05-26 09:14:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:14:14.79+03	2021-05-26 09:14:14.798+03	
dab085bd-42df-1532-523b-8a7f7be49866	2021-05-26 09:14:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:14:24.79+03	2021-05-26 09:14:24.81+03	
4b552418-27f9-bc1d-ec09-dee7f1a44f42	2021-05-26 09:14:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:14:44.79+03	2021-05-26 09:14:44.797+03	
2b8e3f3e-eb78-465f-af11-dcc0bdd8a651	2021-05-26 09:15:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:15:04.79+03	2021-05-26 09:15:04.797+03	
d773ca44-51c6-9766-7f9e-808768dd1757	2021-05-26 09:15:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:15:24.79+03	2021-05-26 09:15:24.796+03	
d7a5c4ef-6568-410a-84e0-fe7335986dba	2021-05-26 09:15:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:15:44.79+03	2021-05-26 09:15:44.796+03	
c14107d4-63b0-9014-7766-6769302e8664	2021-05-26 09:16:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:16:04.79+03	2021-05-26 09:16:04.796+03	
d7846867-ca01-2584-70aa-9f62bfee53d7	2021-05-26 09:16:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:16:24.79+03	2021-05-26 09:16:24.796+03	
db1360ed-ea7a-f8a5-b68d-1cc6e3b7d881	2021-05-26 09:16:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:16:44.79+03	2021-05-26 09:16:44.796+03	
7cdc13b3-1d8b-c72a-c0c1-45577cc958b6	2021-05-26 09:17:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:17:04.79+03	2021-05-26 09:17:04.797+03	
d11a0f8c-d03a-f947-62dc-2f11dd866684	2021-05-26 09:17:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:17:24.79+03	2021-05-26 09:17:24.798+03	
13c85de1-2b54-8a25-ecca-185eded9324b	2021-05-26 09:17:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:17:44.79+03	2021-05-26 09:17:44.798+03	
37931d66-5f08-d838-cb59-632f88f0f308	2021-05-26 09:18:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:18:04.79+03	2021-05-26 09:18:04.797+03	
6ea0e935-dae4-2242-e5e9-9255e86752df	2021-05-26 09:18:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:18:24.79+03	2021-05-26 09:18:24.805+03	
cade5e65-becd-853d-9b5b-297a3f1082ab	2021-05-26 09:18:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:18:44.79+03	2021-05-26 09:18:44.799+03	
49bd2d93-70ce-3f5d-61d2-7cf4dc62fabc	2021-05-26 09:19:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:19:04.79+03	2021-05-26 09:19:04.797+03	
53501e54-f7ba-a86e-90f7-b242afc33af7	2021-05-26 09:19:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:19:24.79+03	2021-05-26 09:19:24.797+03	
c8dbab17-cd7d-c7bf-fba7-876b71b520f1	2021-05-26 09:19:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:19:44.79+03	2021-05-26 09:19:44.805+03	
cde461a5-fc21-098f-c8e0-3c37aad14754	2021-05-26 09:20:00.791	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 09:20:00.79+03	2021-05-26 09:20:00.794+03	ERROR
aa9d3203-8a77-994f-1577-5cc4136538aa	2021-05-26 09:20:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:20:14.79+03	2021-05-26 09:20:14.801+03	
6fba146c-5d4d-3bac-d73a-36078daf3c0b	2021-05-26 09:20:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:20:34.79+03	2021-05-26 09:20:34.796+03	
cdac74a2-a140-6bdd-d158-422b375577d2	2021-05-26 09:20:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:20:54.79+03	2021-05-26 09:20:54.798+03	
36c4795a-e2b7-0a4a-2ba5-c10c132f31d2	2021-05-26 09:21:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:21:14.79+03	2021-05-26 09:21:14.797+03	
d4eac678-cde5-0218-bb89-6762a09c04d3	2021-05-26 09:21:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:21:34.79+03	2021-05-26 09:21:34.796+03	
5ce74cad-7404-6ef9-2a01-6e2adb745383	2021-05-26 09:21:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:21:54.79+03	2021-05-26 09:21:54.796+03	
03c36f13-1649-f45e-5cfd-cf6d5249c8e5	2021-05-26 09:22:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:22:14.79+03	2021-05-26 09:22:14.796+03	
717d83e4-a184-5891-5451-81be3edbfc60	2021-05-26 09:22:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:22:34.79+03	2021-05-26 09:22:34.796+03	
afc573ec-cb09-df4e-840c-0c41dc57aef7	2021-05-26 09:22:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:22:54.79+03	2021-05-26 09:22:54.809+03	
ff9c236f-072e-9f88-0b63-eb21848715ff	2021-05-26 09:23:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:23:14.79+03	2021-05-26 09:23:14.796+03	
b475fd0f-17b3-87cb-add6-a22046af425b	2021-05-26 09:23:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:23:34.79+03	2021-05-26 09:23:34.797+03	
0a3a292b-92e0-b7e2-46ab-4acbb2632de2	2021-05-26 09:23:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:23:54.79+03	2021-05-26 09:23:54.796+03	
1f6d8f98-5116-f30c-4b61-8ca3529d58d5	2021-05-26 09:24:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:24:14.79+03	2021-05-26 09:24:14.797+03	
a73a4b86-fc14-52dd-e829-aa251be7f9b3	2021-05-26 09:24:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:24:34.79+03	2021-05-26 09:24:34.798+03	
805548a5-6f1d-3065-90c4-2cba56c24b92	2021-05-26 09:24:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:24:54.79+03	2021-05-26 09:24:54.796+03	
76c1ca62-e3b1-bef0-ddc3-54d78ae7b363	2021-05-26 09:25:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:25:14.79+03	2021-05-26 09:25:14.815+03	
2beb9e55-52c4-d892-90a8-136bb0e77146	2021-05-26 09:25:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:25:34.79+03	2021-05-26 09:25:34.796+03	
2343a982-ff65-dca1-5a23-d4b139af9f60	2021-05-26 09:25:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:25:54.79+03	2021-05-26 09:25:54.796+03	
31ed842b-fc12-743b-f118-3efa5e7a07bb	2021-05-26 09:26:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:26:14.79+03	2021-05-26 09:26:14.805+03	
b7e389c7-fd2e-bd41-1baa-175b18fa70cc	2021-05-26 09:26:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:26:34.79+03	2021-05-26 09:26:34.796+03	
341d039d-6519-3af6-e705-e6894052b85d	2021-05-26 10:29:42.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:29:42.952+03	2021-05-26 10:29:43.007+03	
b70efd29-721d-0195-b280-dd115321ad21	2021-05-26 10:29:52.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:29:52.953+03	2021-05-26 10:29:52.975+03	
d34e951f-1660-965e-4693-558954a2e19e	2021-05-26 10:30:00.985	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 10:30:00.952+03	2021-05-26 10:30:01.072+03	ERROR
79690803-c8ad-573e-9e8e-70b217c38d0a	2021-05-26 10:30:02.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:30:02.955+03	2021-05-26 10:30:03.002+03	
d86ad139-cfc6-6e7d-f97b-3b6e10093d08	2021-05-26 10:30:13.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:30:13.953+03	2021-05-26 10:30:13.987+03	
606f841d-8aa7-7e87-dda2-77241228dbe7	2021-05-26 10:30:23.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:30:23.953+03	2021-05-26 10:30:23.967+03	
23b383b1-e1de-3544-63bb-ad31eb3d0e10	2021-05-26 10:30:34.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:30:34.952+03	2021-05-26 10:30:34.966+03	
7deebf8d-b586-4793-2adf-1f53fcddc882	2021-05-26 10:30:44.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:30:44.952+03	2021-05-26 10:30:44.981+03	
197fd094-179c-1cc2-4e74-5061e1c3086c	2021-05-26 10:30:54.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:30:54.953+03	2021-05-26 10:30:54.97+03	
1776848c-03c7-3eb7-ec29-38d92d468363	2021-05-26 10:31:05.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:31:05.955+03	2021-05-26 10:31:05.999+03	
45cc3b2c-d17f-aa5d-a284-9697ce7a2e18	2021-05-26 10:31:16.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:31:16.952+03	2021-05-26 10:31:16.997+03	
f433bdc1-80bc-0710-05d3-752429eafc89	2021-05-26 10:31:26.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:31:26.952+03	2021-05-26 10:31:26.982+03	
c355fbcd-771c-0bb6-fa62-88b1e74f86ed	2021-05-26 10:31:36.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:31:36.953+03	2021-05-26 10:31:36.985+03	
cf051465-c146-e7d1-69a0-5507425f60f0	2021-05-26 10:31:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:31:47.952+03	2021-05-26 10:31:47.994+03	
873b7c02-e28a-b7a2-631c-9ace2a027dc6	2021-05-26 10:31:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:31:57.952+03	2021-05-26 10:31:57.993+03	
1f94a004-382b-bf57-6cb6-32dcd2763d58	2021-05-26 10:32:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:32:07.952+03	2021-05-26 10:32:07.98+03	
832c0ef3-2cf9-b174-e0cb-31adc22002ac	2021-05-26 10:32:17.959	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:32:17.957+03	2021-05-26 10:32:17.978+03	
9745f16f-cba4-6ae5-252a-a337fa71494d	2021-05-26 10:32:28.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:32:28.952+03	2021-05-26 10:32:28.983+03	
ddb58cec-bd3f-0e21-5886-afc0a7548c11	2021-05-26 10:32:38.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:32:38.952+03	2021-05-26 10:32:38.986+03	
2984fafb-36ef-2ec8-173b-ff1058db5747	2021-05-26 10:32:48.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:32:48.952+03	2021-05-26 10:32:48.966+03	
f10c346c-0ffa-750c-79b2-d087bb2c504d	2021-05-26 10:32:58.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:32:58.952+03	2021-05-26 10:32:58.992+03	
d7abe3e5-6cb6-49f2-d337-998ca03ce99b	2021-05-26 10:33:08.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:33:08.952+03	2021-05-26 10:33:08.965+03	
cda1513c-0d11-19e5-87d7-16720e63d638	2021-05-26 10:33:18.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:33:18.952+03	2021-05-26 10:33:18.981+03	
7b465073-d282-a900-54b8-a18fcf32567b	2021-05-26 10:33:28.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:33:28.952+03	2021-05-26 10:33:28.967+03	
84f9ee14-d7c0-e942-98b6-34df47052e6a	2021-05-26 10:33:38.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:33:38.952+03	2021-05-26 10:33:38.981+03	
09cf37b8-d128-5c48-740c-7164d6ead1f8	2021-05-26 09:14:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:14:34.79+03	2021-05-26 09:14:34.798+03	
dd3c3f6f-071d-a280-e7da-62bf63a5d11a	2021-05-26 09:14:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:14:54.79+03	2021-05-26 09:14:54.806+03	
75dde529-33ce-30e4-2d9a-fa48fcf8d7c7	2021-05-26 09:15:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:15:14.79+03	2021-05-26 09:15:14.797+03	
3cc8a1c3-53b1-ce11-ecfb-74e36d978387	2021-05-26 09:15:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:15:34.79+03	2021-05-26 09:15:34.799+03	
94d1d8ad-35ff-17a6-671f-9feb42e75002	2021-05-26 09:15:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:15:54.79+03	2021-05-26 09:15:54.807+03	
258f5b62-6af0-6cbf-4b48-1cffef6e776d	2021-05-26 09:16:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:16:14.79+03	2021-05-26 09:16:14.801+03	
bc509f07-770b-413e-ec1d-4d84afc2a7e2	2021-05-26 09:16:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:16:34.79+03	2021-05-26 09:16:34.797+03	
fc7e8728-c263-3acb-8fd0-b143166fd692	2021-05-26 09:16:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:16:54.79+03	2021-05-26 09:16:54.799+03	
3386842b-194a-48db-3c06-724845c39f1e	2021-05-26 09:17:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:17:14.79+03	2021-05-26 09:17:14.797+03	
b7d87038-54f2-9c68-84a3-ac0add9c55c8	2021-05-26 09:17:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:17:34.79+03	2021-05-26 09:17:34.796+03	
7a840a05-dc5d-62f0-d7b0-adbbb9611d7e	2021-05-26 09:17:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:17:54.79+03	2021-05-26 09:17:54.796+03	
39259661-f465-9aea-4c20-eaf7485325e6	2021-05-26 09:18:14.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:18:14.79+03	2021-05-26 09:18:14.798+03	
64d8e536-ca8d-e66c-5209-5fffe2763867	2021-05-26 09:18:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:18:34.79+03	2021-05-26 09:18:34.796+03	
4bb97c22-f064-b968-6802-dac7ca463ae8	2021-05-26 09:18:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:18:54.79+03	2021-05-26 09:18:54.796+03	
2d4a3a19-f006-5753-7c9c-a64cce284461	2021-05-26 09:19:14.791	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:19:14.79+03	2021-05-26 09:19:14.797+03	
38649b75-1dea-0a29-ad45-d3622c2f8076	2021-05-26 09:19:34.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:19:34.79+03	2021-05-26 09:19:34.796+03	
3e672f9c-f8c1-8845-7437-677a5946858b	2021-05-26 09:19:54.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:19:54.79+03	2021-05-26 09:19:54.809+03	
4659a26b-8129-1f63-b86a-8e0d194561c9	2021-05-26 09:20:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:20:04.79+03	2021-05-26 09:20:04.797+03	
296aea8c-23ce-8490-148d-0ffa931e10ba	2021-05-26 09:20:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:20:24.79+03	2021-05-26 09:20:24.8+03	
9842bb1f-2eb6-b834-6581-69b4044f3228	2021-05-26 09:20:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:20:44.79+03	2021-05-26 09:20:44.796+03	
db958db0-4cbe-3860-402c-4ad99966cc11	2021-05-26 09:21:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:21:04.79+03	2021-05-26 09:21:04.797+03	
adf87d4c-5efd-902f-e166-7703c7af0755	2021-05-26 09:21:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:21:24.79+03	2021-05-26 09:21:24.796+03	
c1f3d767-82a5-bbd8-464b-257dbb54bd1a	2021-05-26 09:21:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:21:44.79+03	2021-05-26 09:21:44.799+03	
7842c944-cc12-cab6-c090-d81413ae723d	2021-05-26 09:22:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:22:04.79+03	2021-05-26 09:22:04.797+03	
174680e3-ebff-02af-86ec-b37f4ca30bba	2021-05-26 09:22:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:22:24.79+03	2021-05-26 09:22:24.8+03	
fdbf3ec4-fba6-5652-426a-c4f17e0a41d9	2021-05-26 09:22:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:22:44.79+03	2021-05-26 09:22:44.797+03	
0b5a45e7-fa4e-d22e-b0c7-e7418aaf7ff2	2021-05-26 09:23:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:23:04.79+03	2021-05-26 09:23:04.797+03	
6593a553-4fef-5a34-21f4-c82603a79bfc	2021-05-26 09:23:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:23:24.79+03	2021-05-26 09:23:24.796+03	
9161fe2c-6829-49d8-362e-493706760d07	2021-05-26 09:23:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:23:44.79+03	2021-05-26 09:23:44.796+03	
4bd7bd94-9960-cc94-e44f-2130613da84c	2021-05-26 09:24:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:24:04.79+03	2021-05-26 09:24:04.795+03	
e95c68fb-57f2-2866-064e-9a725388094d	2021-05-26 09:24:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:24:24.79+03	2021-05-26 09:24:24.797+03	
6a0fe963-c1ec-3de9-6d47-9a738523e7a0	2021-05-26 09:24:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:24:44.79+03	2021-05-26 09:24:44.806+03	
ca087bc0-82d3-bba1-72ae-33a86ad88a08	2021-05-26 09:25:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:25:04.79+03	2021-05-26 09:25:04.796+03	
66082d18-8678-60fa-b13d-075aacb9d694	2021-05-26 09:25:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:25:24.79+03	2021-05-26 09:25:24.796+03	
6609a266-a1ad-2110-a09c-0bcee297d361	2021-05-26 09:25:44.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:25:44.79+03	2021-05-26 09:25:44.796+03	
ae7c2708-6c71-8aed-b034-8727497e277a	2021-05-26 09:26:04.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:26:04.79+03	2021-05-26 09:26:04.796+03	
a145543f-eaf7-5eef-5ec7-490f66cf02ac	2021-05-26 09:26:24.79	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 09:26:24.79+03	2021-05-26 09:26:24.796+03	
f78e5ac0-6da6-4c92-183f-26355f01013a	2021-05-26 10:25:15.428	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:25:15.359+03	2021-05-26 10:25:15.552+03	
26f2d74f-22f1-5b39-9c3f-27f00fc070f5	2021-05-26 10:25:26.242	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:25:26.237+03	2021-05-26 10:25:26.282+03	
4bbf02e3-4fc6-777e-5b01-bab781c168a8	2021-05-26 10:25:36.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:25:36.954+03	2021-05-26 10:25:37.2+03	
80101701-53e7-6f37-dd10-d92a8fb8c36a	2021-05-26 10:25:46.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:25:46.954+03	2021-05-26 10:25:46.988+03	
41e351d3-af5d-233e-cbcb-ed826b76ff0e	2021-05-26 10:25:56.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:25:56.954+03	2021-05-26 10:25:57.003+03	
456635e7-b6d6-3d62-fffa-871fc42b8938	2021-05-26 10:26:07.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:26:07.954+03	2021-05-26 10:26:08.046+03	
7c08222f-c338-5bf0-03eb-971a2f5c3dbe	2021-05-26 10:26:17.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:26:17.958+03	2021-05-26 10:26:18.002+03	
49c5fb45-a2cf-ca5b-f807-67383caf9523	2021-05-26 10:26:28.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:26:28.953+03	2021-05-26 10:26:28.994+03	
6014bce6-5272-2d53-8d0d-694561f7cddc	2021-05-26 10:26:38.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:26:38.953+03	2021-05-26 10:26:38.984+03	
83aafc2d-6df8-3e5e-4cd3-206c8fef3084	2021-05-26 10:26:48.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:26:48.954+03	2021-05-26 10:26:48.995+03	
3542338e-fec9-8d98-68f3-ec4ce1c584f4	2021-05-26 10:26:59.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:26:59.953+03	2021-05-26 10:26:59.985+03	
8e62fde6-5d17-15e9-a0cd-cdf1d06b4557	2021-05-26 10:27:09.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:27:09.953+03	2021-05-26 10:27:09.985+03	
1c440a80-9e24-84c8-a528-fbf11a9ed7c5	2021-05-26 10:27:19.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:27:19.953+03	2021-05-26 10:27:19.987+03	
630758ae-356b-4e1b-e157-c77b500f72be	2021-05-26 10:27:29.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:27:29.953+03	2021-05-26 10:27:29.989+03	
97e73278-68df-6619-26ff-e454cf7193ab	2021-05-26 10:27:39.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:27:39.953+03	2021-05-26 10:27:40.006+03	
658de57e-61b9-9c57-7b8d-8c79f305ef2b	2021-05-26 10:27:49.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:27:49.953+03	2021-05-26 10:27:49.993+03	
06c37004-f3cc-5da2-6f96-2b8dd21cd03f	2021-05-26 10:27:59.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:27:59.953+03	2021-05-26 10:27:59.995+03	
485598c2-1eba-76d1-0edf-d3b4addc48b5	2021-05-26 10:28:09.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:28:09.953+03	2021-05-26 10:28:09.979+03	
e01fc6e3-02ef-573e-e463-2e8a0d578891	2021-05-26 10:28:19.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:28:19.953+03	2021-05-26 10:28:19.983+03	
8d46d4e1-ef4a-cf8e-da75-c49de4195f0c	2021-05-26 10:28:29.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:28:29.953+03	2021-05-26 10:28:29.969+03	
a87a6a41-a5cd-3659-590e-468fb058cbbd	2021-05-26 10:28:39.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:28:39.953+03	2021-05-26 10:28:39.977+03	
aead1afe-9f10-105f-656f-2e878dd1b485	2021-05-26 10:28:49.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:28:49.958+03	2021-05-26 10:28:49.987+03	
dc34de67-3072-f86f-34be-d1f621ce61b6	2021-05-26 10:29:00.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:29:00.953+03	2021-05-26 10:29:00.987+03	
64470384-3dd4-ff97-92c6-1266782a060f	2021-05-26 10:29:11.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:29:11.952+03	2021-05-26 10:29:11.967+03	
de1a14c8-8d66-8f72-b090-8dc5372f0506	2021-05-26 10:29:21.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:29:21.953+03	2021-05-26 10:29:21.977+03	
b3b105ef-6e07-6b3e-595f-1e68b9db0794	2021-05-26 10:29:31.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:29:31.953+03	2021-05-26 10:29:31.981+03	
94f3a95c-eb44-7c68-a154-65eb29e09223	2021-05-26 10:33:48.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:33:48.952+03	2021-05-26 10:33:48.994+03	
920274d4-7fbf-76f0-f26c-5ee698cd323e	2021-05-26 10:34:09.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:34:09.953+03	2021-05-26 10:34:10.026+03	
79fdd562-df4c-ff61-67c3-6becd5fbc328	2021-05-26 10:34:30.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:34:30.952+03	2021-05-26 10:34:30.966+03	
69bd76a4-8f7d-7be8-6625-83630b99803b	2021-05-26 10:34:51.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:34:51.952+03	2021-05-26 10:34:51.964+03	
e764b5be-1b72-875d-56b3-2704d9e8294f	2021-05-26 10:35:11.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:35:11.952+03	2021-05-26 10:35:11.966+03	
67fbd3b1-166c-e011-6f71-576c2485c54a	2021-05-26 10:35:31.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:35:31.952+03	2021-05-26 10:35:31.985+03	
dd89c37e-730d-5464-3b69-7c3750e50cf6	2021-05-26 10:35:51.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:35:51.953+03	2021-05-26 10:35:51.97+03	
8635927a-f864-9494-a4a4-2c7f63efc222	2021-05-26 10:36:12.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:36:12.953+03	2021-05-26 10:36:12.965+03	
04c3aaf4-4420-a1a0-5fcc-b4639d68c20e	2021-05-26 10:36:33.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:36:33.952+03	2021-05-26 10:36:33.992+03	
a9624dd3-417d-f7ba-d581-c3c54481f56d	2021-05-26 10:36:53.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:36:53.952+03	2021-05-26 10:36:53.982+03	
5cb91ac9-ce5b-8c27-e706-230c1906bec3	2021-05-26 10:37:13.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:37:13.952+03	2021-05-26 10:37:13.978+03	
2d1418eb-7b79-ba7f-6223-6e9fc3996d8e	2021-05-26 10:37:33.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:37:33.952+03	2021-05-26 10:37:33.99+03	
b9ba642b-43f8-0302-8c48-adb0f7b0b89e	2021-05-26 10:37:53.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:37:53.952+03	2021-05-26 10:37:53.983+03	
70e1d123-cff9-c764-441a-641730b9afc4	2021-05-26 10:38:13.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:38:13.952+03	2021-05-26 10:38:13.982+03	
f4841519-aa0e-8335-1e41-d09756551d82	2021-05-26 10:38:33.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:38:33.952+03	2021-05-26 10:38:33.977+03	
73dc0ce9-243c-8320-f7b2-7da110c479f9	2021-05-26 10:38:53.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:38:53.952+03	2021-05-26 10:38:53.979+03	
be859bf8-40f3-f0cd-eb37-753e08827210	2021-05-26 10:39:13.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:39:13.952+03	2021-05-26 10:39:13.987+03	
b6bdd983-e5cb-71a3-3c18-b36acf043403	2021-05-26 10:39:33.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:39:33.952+03	2021-05-26 10:39:33.963+03	
257a6057-9ffa-7b83-c753-c19f7998befb	2021-05-26 10:39:53.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:39:53.953+03	2021-05-26 10:39:53.981+03	
a5941258-fa11-a8d7-d2ba-d97f562de2ff	2021-05-26 10:40:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:40:04.952+03	2021-05-26 10:40:04.989+03	
8dae4c9e-b7e0-2626-be13-b5334cb7f794	2021-05-26 10:40:24.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:40:24.952+03	2021-05-26 10:40:24.972+03	
9d555c2f-eedf-8f7d-b355-35884fe6b596	2021-05-26 10:40:44.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:40:44.952+03	2021-05-26 10:40:44.977+03	
5d669d66-4f26-a6b4-7dd9-99444911cdcc	2021-05-26 10:41:04.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:41:04.952+03	2021-05-26 10:41:04.986+03	
6c72a68a-09ac-556c-7990-02e01d5e6473	2021-05-26 10:41:24.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:41:24.952+03	2021-05-26 10:41:24.99+03	
6a66316a-d8da-f90f-391d-e2fcea9b8f56	2021-05-26 10:41:44.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:41:44.952+03	2021-05-26 10:41:44.976+03	
9e830845-e8bb-ea04-237a-0e9cc1266bfc	2021-05-26 10:42:04.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:42:04.952+03	2021-05-26 10:42:04.977+03	
84bc40ad-800d-19c1-28d7-f73babdd4d31	2021-05-26 10:42:24.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:42:24.952+03	2021-05-26 10:42:24.962+03	
09ff0d23-055d-4b7b-0615-761a85eb344b	2021-05-26 10:42:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:42:44.952+03	2021-05-26 10:42:44.995+03	
0b9833c8-c110-a556-97a4-fa13714abf1f	2021-05-26 10:43:04.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:43:04.953+03	2021-05-26 10:43:05.001+03	
2a67e965-1005-1184-aeeb-dc1152e7c0af	2021-05-26 10:43:25.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:43:25.952+03	2021-05-26 10:43:26.01+03	
28bc179f-11c8-bdbc-3eb7-e26c0670b5be	2021-05-26 10:43:45.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:43:45.952+03	2021-05-26 10:43:45.979+03	
4c822928-4e55-d542-c71e-5fbbd69f199f	2021-05-26 10:44:05.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:44:05.952+03	2021-05-26 10:44:05.988+03	
cf59caae-af2b-43d7-afbc-8fbd6ae4c9cd	2021-05-26 10:44:25.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:44:25.952+03	2021-05-26 10:44:25.963+03	
d4903c7d-acb3-4ed5-c0da-cceabf527b3c	2021-05-26 10:44:45.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:44:45.954+03	2021-05-26 10:44:45.982+03	
bd988b17-c6b4-dad5-f7b2-5e3cc98c6368	2021-05-26 10:45:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:45:06.952+03	2021-05-26 10:45:06.996+03	
2ea94421-b0d7-5fb6-5e93-f4c01931c5d8	2021-05-26 10:45:26.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:45:26.952+03	2021-05-26 10:45:26.98+03	
250a9c0c-ed6d-40b8-62cb-e8686a1734f2	2021-05-26 10:45:46.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:45:46.952+03	2021-05-26 10:45:46.963+03	
7ff556df-9e01-2819-0a59-b4c341eaf2e6	2021-05-26 10:46:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:46:06.952+03	2021-05-26 10:46:06.962+03	
64a84340-a4b2-e667-c6d0-8281434140aa	2021-05-26 10:46:26.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:46:26.952+03	2021-05-26 10:46:26.964+03	
7e752796-0b7c-d2b0-c543-03a925dd4fee	2021-05-26 10:46:46.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:46:46.952+03	2021-05-26 10:46:46.978+03	
76632a5f-be1c-1be8-a3aa-ddd876b78d76	2021-05-26 10:47:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:47:06.952+03	2021-05-26 10:47:06.976+03	
df70a7d2-f94e-13e0-de2c-8cdeb01ef4bd	2021-05-26 10:47:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:47:26.952+03	2021-05-26 10:47:26.961+03	
fa3e6c2f-cd88-7b81-2eb6-69c9d0f48926	2021-05-26 10:47:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:47:46.952+03	2021-05-26 10:47:46.985+03	
6c65bd71-b8df-2c21-6432-a6ede641e8e5	2021-05-26 10:48:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:48:06.952+03	2021-05-26 10:48:06.977+03	
d9a27f64-73f9-e1cf-e4f9-41e18a65b3d7	2021-05-26 10:48:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:48:26.952+03	2021-05-26 10:48:26.988+03	
fd2c23c6-5078-19dc-9c55-6ff84ccfff8c	2021-05-26 10:48:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:48:46.952+03	2021-05-26 10:48:46.967+03	
087e636d-6ca9-899d-bb24-c0437f092281	2021-05-26 10:49:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:49:06.952+03	2021-05-26 10:49:06.963+03	
62bdcfbe-401f-b1a9-4e38-20c6ed3bafd2	2021-05-26 10:49:26.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:49:26.952+03	2021-05-26 10:49:26.962+03	
6cf9d647-0169-9a3e-3b90-b657e7d51d30	2021-05-26 10:49:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:49:46.952+03	2021-05-26 10:49:46.961+03	
f81bbabd-b787-5507-4aa3-397accb48d76	2021-05-26 10:50:00.953	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 10:50:00.952+03	2021-05-26 10:50:01.038+03	ERROR
ff55b6d7-0660-0899-e3da-9b3456c04869	2021-05-26 10:50:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:50:17.952+03	2021-05-26 10:50:17.976+03	
e2ec603d-2956-9805-cc14-8b3780ff6358	2021-05-26 10:50:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:50:38.952+03	2021-05-26 10:50:38.982+03	
9825a007-acaf-f397-edf4-a6893ae055d6	2021-05-26 10:50:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:50:58.952+03	2021-05-26 10:50:58.971+03	
f106cdba-3abb-55e0-222e-e5d65d02fa3c	2021-05-26 10:51:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:51:18.952+03	2021-05-26 10:51:18.961+03	
656f88d6-ef52-198d-7cd0-9d82e084a00a	2021-05-26 10:51:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:51:38.952+03	2021-05-26 10:51:38.961+03	
fe3d3bae-aaf0-ca63-2cc7-cb7c12299e59	2021-05-26 10:51:58.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:51:58.952+03	2021-05-26 10:51:58.964+03	
9dd3cff3-205e-56ef-0a05-960437e4cd31	2021-05-26 10:52:18.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:52:18.952+03	2021-05-26 10:52:18.964+03	
816aaff8-034a-e063-6659-3b4c82706bd3	2021-05-26 10:52:39.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:52:39.952+03	2021-05-26 10:52:39.962+03	
aa6d815a-08d1-f490-537b-d9060786d71f	2021-05-26 10:52:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:52:59.952+03	2021-05-26 10:52:59.977+03	
552cd677-d8df-283c-747e-f318ef4a69e6	2021-05-26 10:53:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:53:19.952+03	2021-05-26 10:53:19.975+03	
881de691-a52c-9169-de57-d9b543b4d891	2021-05-26 10:53:39.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:53:39.952+03	2021-05-26 10:53:39.986+03	
6e621e7c-1265-3174-000e-77158323125c	2021-05-26 10:53:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:53:59.952+03	2021-05-26 10:53:59.988+03	
d9b007ad-595f-8f69-0ff9-1d1b8038e059	2021-05-26 10:54:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:54:20.951+03	2021-05-26 10:54:20.963+03	
df4b8edd-135c-1095-0993-ec8100fcfb0b	2021-05-26 10:33:58.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:33:58.954+03	2021-05-26 10:33:58.987+03	
2070bec3-70ff-7c2a-065b-7f43c57cc108	2021-05-26 10:34:20.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:34:20.952+03	2021-05-26 10:34:20.982+03	
d12f4a03-5540-5ad0-43d4-cb9e29c935ed	2021-05-26 10:34:40.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:34:40.954+03	2021-05-26 10:34:40.978+03	
f20cdeef-c4fc-e9cc-fdc3-d8efb226dfcc	2021-05-26 10:35:01.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:35:01.952+03	2021-05-26 10:35:01.99+03	
394255d5-ee56-3bde-eb08-d5abc7173ce2	2021-05-26 10:35:21.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:35:21.952+03	2021-05-26 10:35:21.969+03	
6dbac4e0-f10a-bc15-2cca-ae91534a0821	2021-05-26 10:35:41.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:35:41.952+03	2021-05-26 10:35:41.986+03	
7a200434-4c63-4949-a343-28591ee2b924	2021-05-26 10:36:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:36:02.952+03	2021-05-26 10:36:02.968+03	
1e74d888-d1b6-4c46-3d68-e966e1dda2de	2021-05-26 10:36:23.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:36:23.952+03	2021-05-26 10:36:23.964+03	
bd1b10e8-a190-07aa-c136-db4c39c733e5	2021-05-26 10:36:43.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:36:43.952+03	2021-05-26 10:36:43.976+03	
fddd23a6-50cf-200d-4bc0-0a6213434502	2021-05-26 10:37:03.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:37:03.952+03	2021-05-26 10:37:03.989+03	
70161283-c474-3baf-ec18-51a315745e32	2021-05-26 10:37:23.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:37:23.952+03	2021-05-26 10:37:23.985+03	
94d2b8d9-a225-6013-9c6d-f3d193b28adf	2021-05-26 10:37:43.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:37:43.952+03	2021-05-26 10:37:43.97+03	
6def9ae4-0451-632b-56c0-ee91dfe3caad	2021-05-26 10:38:03.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:38:03.952+03	2021-05-26 10:38:03.966+03	
da7a0511-88d0-c77c-69a2-1a628319bbfa	2021-05-26 10:38:23.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:38:23.952+03	2021-05-26 10:38:23.975+03	
a07d827a-15f4-bb05-9242-22467bce2deb	2021-05-26 10:38:43.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:38:43.952+03	2021-05-26 10:38:43.998+03	
a8416256-3777-297e-1680-86490bc90362	2021-05-26 10:39:03.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:39:03.952+03	2021-05-26 10:39:03.995+03	
2b0c6993-0138-2fbc-834f-ca69ce75cf3d	2021-05-26 10:39:23.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:39:23.952+03	2021-05-26 10:39:23.982+03	
0d08c9a6-3b95-96e7-17d1-b8d43cfd6666	2021-05-26 10:39:43.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:39:43.952+03	2021-05-26 10:39:43.982+03	
0d58d87a-6e09-3226-a646-cb9d651c669c	2021-05-26 10:40:00.954	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 10:40:00.952+03	2021-05-26 10:40:00.959+03	ERROR
3de0c2ba-4e7e-889c-df7a-d7f6bdcbd55a	2021-05-26 10:40:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:40:14.952+03	2021-05-26 10:40:14.98+03	
2371e067-b2da-6679-329b-4613d7c89cb2	2021-05-26 10:40:34.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:40:34.952+03	2021-05-26 10:40:34.963+03	
9d8618dd-e313-c5ef-1176-109c0513f0e5	2021-05-26 10:40:54.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:40:54.952+03	2021-05-26 10:40:54.991+03	
9ca8ed85-b2a2-6fc1-f744-3cf68e01be44	2021-05-26 10:41:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:41:14.952+03	2021-05-26 10:41:14.962+03	
3a8afc7f-bd49-e68c-3070-ddce7ce2df7c	2021-05-26 10:41:34.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:41:34.952+03	2021-05-26 10:41:34.979+03	
a52fd69e-7a24-e99c-7b95-6b958cfd5886	2021-05-26 10:41:54.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:41:54.952+03	2021-05-26 10:41:54.964+03	
1057f767-0231-2d18-7ccf-4a2a6f0887b7	2021-05-26 10:42:14.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:42:14.952+03	2021-05-26 10:42:14.968+03	
b4e81cae-f98c-ddfe-f784-b6ced2e0956d	2021-05-26 10:42:34.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:42:34.952+03	2021-05-26 10:42:34.992+03	
0398f2b6-6906-1424-b27d-7a3a89555fc6	2021-05-26 10:42:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:42:54.952+03	2021-05-26 10:42:54.99+03	
29225291-7fa6-04ee-ed25-e334ff65fddb	2021-05-26 10:43:15.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:43:15.952+03	2021-05-26 10:43:15.963+03	
260e9270-f8a0-0dbe-f0d2-61c5dc6e6486	2021-05-26 10:43:35.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:43:35.952+03	2021-05-26 10:43:35.988+03	
2ba98857-0979-4848-9396-89d8f7fdf3e0	2021-05-26 10:43:55.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:43:55.952+03	2021-05-26 10:43:55.964+03	
b2afd8ad-a8bb-d3c7-baad-4f641434c0f9	2021-05-26 10:44:15.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:44:15.952+03	2021-05-26 10:44:15.989+03	
0a6ca74a-73dc-dc9d-0e9e-6b3c8aadf607	2021-05-26 10:44:35.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:44:35.952+03	2021-05-26 10:44:35.963+03	
0af85bc1-4178-f0d5-0071-936af00baea7	2021-05-26 10:44:56.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:44:56.952+03	2021-05-26 10:44:56.963+03	
d6bfca2f-d36a-3764-1099-de88c9b796dd	2021-05-26 10:45:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:45:16.952+03	2021-05-26 10:45:16.995+03	
438db898-0a39-d8f6-083d-8ebbe2e7edb6	2021-05-26 10:45:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:45:36.952+03	2021-05-26 10:45:36.992+03	
e864f867-e9e7-8ffb-e711-7c2e600ff054	2021-05-26 10:45:56.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:45:56.952+03	2021-05-26 10:45:56.977+03	
690ca56d-9cfd-0635-8e20-4b6dbd901661	2021-05-26 10:46:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:46:16.952+03	2021-05-26 10:46:16.98+03	
2d7d6d15-c76d-c6f5-80d2-8620fb688cd2	2021-05-26 10:46:36.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:46:36.952+03	2021-05-26 10:46:36.976+03	
ae13643e-c813-3d94-bff3-f2a3197282c6	2021-05-26 10:46:56.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:46:56.952+03	2021-05-26 10:46:56.962+03	
9c1996bc-3d89-3d45-69cd-1e906d29b1b9	2021-05-26 10:47:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:47:16.952+03	2021-05-26 10:47:16.975+03	
66f25a87-6536-399c-f4b8-469c56ee0b9f	2021-05-26 10:47:36.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:47:36.952+03	2021-05-26 10:47:36.979+03	
7b8e333e-eb57-217e-e00d-2d5c87df1504	2021-05-26 10:47:56.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:47:56.952+03	2021-05-26 10:47:56.963+03	
6b94840f-9ea7-cd80-2060-51cc9b1d54f1	2021-05-26 10:48:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:48:16.952+03	2021-05-26 10:48:16.967+03	
2b310b9b-f834-927c-8851-16329578db9a	2021-05-26 10:48:36.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:48:36.952+03	2021-05-26 10:48:36.962+03	
4d7b331b-2850-14f9-56fa-99cfc9f2a986	2021-05-26 10:48:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:48:56.952+03	2021-05-26 10:48:56.988+03	
07f07150-3f3c-cdee-cb7d-b6b68d1acc2b	2021-05-26 10:49:16.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:49:16.952+03	2021-05-26 10:49:16.963+03	
990af6f8-5da4-3e20-07a7-3a568abf433e	2021-05-26 10:49:36.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:49:36.952+03	2021-05-26 10:49:36.975+03	
5831ce37-116e-ed5c-3ed9-70c2911d8ce1	2021-05-26 10:49:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:49:56.952+03	2021-05-26 10:49:56.978+03	
674d4298-8977-f6ff-d349-cb32e6bc55fe	2021-05-26 10:50:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:50:07.952+03	2021-05-26 10:50:07.962+03	
ba2d984d-e1b3-3c51-a324-1ba7df07c6b5	2021-05-26 10:50:27.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:50:27.953+03	2021-05-26 10:50:27.963+03	
3b7952cf-f271-03af-6dd7-d685134d2616	2021-05-26 10:50:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:50:48.952+03	2021-05-26 10:50:48.982+03	
a021b350-44dc-794a-7db5-d4bd9414c662	2021-05-26 10:51:08.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:51:08.952+03	2021-05-26 10:51:08.961+03	
e2360dfe-7215-6d4a-a16d-f97e8cc86a21	2021-05-26 10:51:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:51:28.952+03	2021-05-26 10:51:28.975+03	
cb444c13-d4e2-f08e-6cea-69a45dbcc3bd	2021-05-26 10:51:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:51:48.952+03	2021-05-26 10:51:48.961+03	
6680f68b-2b09-2f53-6e8d-842d212e3ca4	2021-05-26 10:52:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:52:08.952+03	2021-05-26 10:52:08.961+03	
88ebe477-05e7-f4b0-0456-d000a2c2b1ed	2021-05-26 10:52:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:52:28.952+03	2021-05-26 10:52:28.981+03	
7669c3e0-230c-cb0e-7a03-4746f892bb8f	2021-05-26 10:52:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:52:49.952+03	2021-05-26 10:52:49.99+03	
c05889c3-b4f1-f85b-8b0f-1c6cd7bc0c81	2021-05-26 10:53:09.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:53:09.952+03	2021-05-26 10:53:09.994+03	
2f7978e1-b3a3-dad1-8d14-23e09256c7a8	2021-05-26 10:53:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:53:29.952+03	2021-05-26 10:53:29.962+03	
b1651da1-557a-873c-df6b-c917bf8c8d42	2021-05-26 10:53:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:53:49.952+03	2021-05-26 10:53:49.976+03	
a0c961fb-f477-ba9a-2077-2f1915b57809	2021-05-26 10:54:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:54:10.951+03	2021-05-26 10:54:10.961+03	
72d38ad6-9af3-ea95-eb10-f347a7bf4c8c	2021-05-26 10:54:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:54:30.952+03	2021-05-26 10:54:30.98+03	
153b1eca-cbc7-cbd4-fb18-f8f8aa5eb6d4	2021-05-26 10:54:40.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:54:40.953+03	2021-05-26 10:54:40.982+03	
83f0114f-db72-9998-769c-872f2d05c9e8	2021-05-26 10:55:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:55:01.952+03	2021-05-26 10:55:01.979+03	
54bfeaf4-d5bc-ab7b-f6e4-4d8311347354	2021-05-26 10:55:21.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:55:21.952+03	2021-05-26 10:55:21.965+03	
0822e754-6687-04d1-0830-a5a54d45ff57	2021-05-26 10:55:41.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:55:41.952+03	2021-05-26 10:55:41.961+03	
3b35c430-27db-7060-eefe-a0d4d09dd7f5	2021-05-26 10:56:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:56:01.952+03	2021-05-26 10:56:01.97+03	
6105649a-809e-49b9-7454-b5f9c1b8b685	2021-05-26 10:56:21.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:56:21.952+03	2021-05-26 10:56:21.984+03	
0b17f0e6-d715-d1d3-d5df-583f1db55288	2021-05-26 10:56:51.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:56:51.952+03	2021-05-26 10:56:51.962+03	
472252fe-eb20-dedb-0d53-a28613d77195	2021-05-26 10:57:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:57:11.952+03	2021-05-26 10:57:11.987+03	
2a863a8b-1ad3-f291-284f-cda609363057	2021-05-26 10:57:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:57:41.952+03	2021-05-26 10:57:41.961+03	
6f5366ae-c4dd-a2a4-7d83-d76ae874a7e8	2021-05-26 10:58:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:58:01.952+03	2021-05-26 10:58:01.963+03	
e6750871-1ece-de7e-0e1f-7891114a9212	2021-05-26 10:58:22.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:58:22.952+03	2021-05-26 10:58:22.982+03	
6b222191-175f-8250-10c8-70f4429cb209	2021-05-26 10:58:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:58:43.951+03	2021-05-26 10:58:43.964+03	
68809359-bca7-5c7b-fee2-bbd3dcd04ab2	2021-05-26 10:59:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:59:04.951+03	2021-05-26 10:59:04.961+03	
0792d85e-f515-5c8c-f466-0b217b85390a	2021-05-26 10:59:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:59:24.952+03	2021-05-26 10:59:24.961+03	
38881101-dc6c-fce7-bb2a-1075c63316fa	2021-05-26 10:59:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:59:44.952+03	2021-05-26 10:59:44.974+03	
9a666458-39e4-bed7-21d6-7a80e75d16eb	2021-05-26 11:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 11:00:00.951+03	2021-05-26 11:00:00.972+03	ERROR
50374c1c-5308-997c-f63f-fac2dd7ed99d	2021-05-26 11:00:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:00:15.952+03	2021-05-26 11:00:15.971+03	
10076307-d463-0b0b-937a-cb61f9520b41	2021-05-26 11:00:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:00:36.951+03	2021-05-26 11:00:36.962+03	
3cf5d2ad-ad0b-8e12-1a0d-8d1882e894b3	2021-05-26 11:00:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:00:57.951+03	2021-05-26 11:00:57.973+03	
8b44e9c2-93d2-4ab5-c03c-52035e42724f	2021-05-26 11:01:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:01:17.951+03	2021-05-26 11:01:17.981+03	
f11e78a1-6055-1d24-75df-93c5800aca81	2021-05-26 11:01:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:01:37.953+03	2021-05-26 11:01:37.962+03	
c7823634-60c8-93e7-2ce5-8f015eb156ca	2021-05-26 11:01:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:01:58.951+03	2021-05-26 11:01:58.978+03	
a4e7ab26-dc2b-bff1-3f71-cb4d52464cc5	2021-05-26 11:02:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:02:18.952+03	2021-05-26 11:02:18.961+03	
014c6b01-ceae-7342-9fa3-a27aa0ce54be	2021-05-26 11:02:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:02:40.951+03	2021-05-26 11:02:40.97+03	
eba523a8-4134-dfda-e686-681d2fb5ce37	2021-05-26 11:03:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:03:00.951+03	2021-05-26 11:03:00.96+03	
0981a39c-71a4-f729-b0c4-5b581609eef6	2021-05-26 11:03:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:03:20.951+03	2021-05-26 11:03:20.961+03	
7b4e2944-fc65-6f95-82ba-b2ec14b7e3f3	2021-05-26 11:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:03:40.951+03	2021-05-26 11:03:40.961+03	
186a4235-eb31-3593-badc-74128d39285c	2021-05-26 11:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:04:00.951+03	2021-05-26 11:04:00.972+03	
31d3e445-d345-2b00-4302-7f10e260f610	2021-05-26 11:04:20.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:04:20.952+03	2021-05-26 11:04:20.961+03	
36fdd5d2-fe02-7e2d-49cb-210a3ab6f67c	2021-05-26 11:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:04:41.952+03	2021-05-26 11:04:41.962+03	
96948c45-e7d3-398f-a7ed-e67575a636a1	2021-05-26 11:05:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:05:02.951+03	2021-05-26 11:05:02.961+03	
d7ae9f15-c196-9805-5dfb-5f25d319d966	2021-05-26 11:05:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:05:32.952+03	2021-05-26 11:05:32.962+03	
c31e58c2-8132-fa13-4bc0-43e9eee32191	2021-05-26 11:05:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:05:52.952+03	2021-05-26 11:05:52.961+03	
c25a9051-450b-6d00-a17a-8b2bd954984c	2021-05-26 11:06:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:06:12.952+03	2021-05-26 11:06:12.967+03	
e8fe4681-23a2-4961-d71e-641d4fd06f02	2021-05-26 11:06:32.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:06:32.953+03	2021-05-26 11:06:32.968+03	
3c5be919-aa6c-3e34-6a59-053b056ac3e9	2021-05-26 11:06:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:06:53.952+03	2021-05-26 11:06:53.969+03	
397f6dea-fa20-bb86-2d5f-6f569642def8	2021-05-26 11:07:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:07:14.951+03	2021-05-26 11:07:14.961+03	
61e002a0-db24-0d3c-8162-bf422bce935b	2021-05-26 11:07:34.962	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:07:34.962+03	2021-05-26 11:07:34.99+03	
e1dcd6df-b629-438f-eb3d-d3d51b2550e8	2021-05-26 11:07:55.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:07:55.952+03	2021-05-26 11:07:55.979+03	
474d5937-91a3-ef10-6b9f-4185ac066791	2021-05-26 11:08:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:08:16.951+03	2021-05-26 11:08:16.964+03	
fc33c262-8298-a574-0cab-89e23805e5a1	2021-05-26 11:08:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:08:37.951+03	2021-05-26 11:08:37.986+03	
9e45fd1f-71cd-5633-62b0-c503c3f53f8f	2021-05-26 11:08:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:08:57.953+03	2021-05-26 11:08:57.964+03	
463c2445-dcfb-a52e-c67a-e4678d2276d2	2021-05-26 11:09:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:09:18.951+03	2021-05-26 11:09:18.969+03	
1acdb0b3-8d7a-8847-332d-108a68e0e028	2021-05-26 11:09:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:09:38.951+03	2021-05-26 11:09:38.966+03	
9cdde6a4-c3fa-0eec-ce85-9d7b5058f7d8	2021-05-26 11:09:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:09:59.951+03	2021-05-26 11:09:59.963+03	
b2c32faf-3f36-5737-aaca-1be117103333	2021-05-26 11:10:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:10:09.951+03	2021-05-26 11:10:09.961+03	
d0ab74aa-8f97-f087-f1a8-8f47fc6baa52	2021-05-26 11:10:29.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:10:29.952+03	2021-05-26 11:10:29.979+03	
1e3636b6-56e9-48cb-cb12-fce73b6d23cc	2021-05-26 11:10:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:10:50.951+03	2021-05-26 11:10:50.961+03	
6e4f8677-dbb2-4b59-ca45-54d91dca7834	2021-05-26 11:11:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:11:10.952+03	2021-05-26 11:11:10.965+03	
3f1078a1-105f-73d6-f618-0387a564f95e	2021-05-26 11:11:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:11:31.952+03	2021-05-26 11:11:31.964+03	
c83aae9f-656c-ae0e-1894-b8c0196e5d2b	2021-05-26 11:11:52.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:11:52.953+03	2021-05-26 11:11:52.968+03	
7541def6-1ed6-10a1-9a2a-e82077f52c69	2021-05-26 11:12:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:12:12.953+03	2021-05-26 11:12:12.992+03	
998586e1-052e-81b6-c066-ee47e6902f93	2021-05-26 11:12:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:12:32.953+03	2021-05-26 11:12:32.965+03	
ff4aac69-d32d-507f-f912-f228f608ec02	2021-05-26 11:12:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:12:53.952+03	2021-05-26 11:12:53.971+03	
c29faebd-980c-4caa-08c9-7e350478ad67	2021-05-26 11:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:13:14.951+03	2021-05-26 11:13:14.96+03	
8bb85784-85e6-a2d3-3c03-ea1ca2704a6a	2021-05-26 11:13:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:13:34.951+03	2021-05-26 11:13:34.961+03	
c2ff9a5a-1dfc-a1a1-b3d2-6773af92ec96	2021-05-26 11:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:13:54.951+03	2021-05-26 11:13:54.961+03	
31e4c311-db4b-d07c-ea72-c4a16837f03e	2021-05-26 11:14:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:14:14.951+03	2021-05-26 11:14:14.959+03	
b86caabb-d59b-4a4c-526a-a4d39c5712be	2021-05-26 11:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:14:34.951+03	2021-05-26 11:14:34.96+03	
ef0afa01-2e71-8034-7f6d-79272e879c7e	2021-05-26 11:15:15.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:15:15.952+03	2021-05-26 11:15:15.962+03	
c511e44b-64c2-cfe3-9ff9-f786ffe4e641	2021-05-26 11:15:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:15:45.952+03	2021-05-26 11:15:45.961+03	
1bf1fb39-e302-e55d-3e83-2a5a2d60a072	2021-05-26 11:15:56.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:15:56.952+03	2021-05-26 11:15:56.963+03	
483eb367-1746-2092-ad3c-e90687b487a3	2021-05-26 11:16:16.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:16:16.952+03	2021-05-26 11:16:16.962+03	
bcff3227-db4c-87cf-f411-3b38229aab21	2021-05-26 10:54:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:54:51.952+03	2021-05-26 10:54:51.965+03	
4dfc6e68-c57d-f72d-add9-f8a8c4f74a5c	2021-05-26 10:55:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:55:11.952+03	2021-05-26 10:55:11.985+03	
ebed2a8e-4033-eafb-997e-2373265ff382	2021-05-26 10:55:31.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:55:31.952+03	2021-05-26 10:55:31.971+03	
641f9396-59c3-6696-0721-6b37e6da41a5	2021-05-26 10:55:51.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:55:51.952+03	2021-05-26 10:55:51.962+03	
6a55d44a-7a58-a73b-7e8c-f813a1316dc0	2021-05-26 10:56:11.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:56:11.952+03	2021-05-26 10:56:11.966+03	
1cde231b-441d-aa79-aa62-b9f9afc6f136	2021-05-26 10:56:31.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:56:31.952+03	2021-05-26 10:56:31.962+03	
740a794a-89db-7e2e-980c-da562661fcd5	2021-05-26 10:56:41.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:56:41.952+03	2021-05-26 10:56:41.971+03	
62c095fc-db75-e918-1f21-9a6b06021795	2021-05-26 10:57:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:57:01.952+03	2021-05-26 10:57:01.962+03	
872033fb-3ffe-6235-cc30-e7ec1aa8614d	2021-05-26 10:57:21.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:57:21.952+03	2021-05-26 10:57:21.961+03	
33de049d-71a2-de9c-c3e5-1da29eefbc17	2021-05-26 10:57:31.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:57:31.952+03	2021-05-26 10:57:31.972+03	
b8378674-52f3-7fbe-447a-656750f79382	2021-05-26 10:57:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:57:51.952+03	2021-05-26 10:57:51.961+03	
8f097d6e-8ba2-5094-733a-f4e7135d3770	2021-05-26 10:58:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:58:11.952+03	2021-05-26 10:58:11.967+03	
abcace62-2a1a-cf4e-a578-4ed7a03856b9	2021-05-26 10:58:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:58:32.952+03	2021-05-26 10:58:32.989+03	
5c5b46d4-fddb-44c2-b406-1297eec8fadf	2021-05-26 10:58:53.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:58:53.952+03	2021-05-26 10:58:53.973+03	
19fc5b28-097b-3689-8853-4650f0052b55	2021-05-26 10:59:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:59:14.952+03	2021-05-26 10:59:14.963+03	
901a7d7a-2110-2708-a970-6e3dba99a8dc	2021-05-26 10:59:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:59:34.952+03	2021-05-26 10:59:34.971+03	
f3a1f68d-7e73-2164-85e8-c65f27e2edd8	2021-05-26 10:59:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 10:59:55.951+03	2021-05-26 10:59:55.988+03	
0619b852-d73e-0fde-064d-271a9a54111d	2021-05-26 11:00:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:00:05.951+03	2021-05-26 11:00:05.96+03	
7dcff344-f69d-5676-902f-9d46c4b8d701	2021-05-26 11:00:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:00:26.951+03	2021-05-26 11:00:26.962+03	
1b684ac1-896c-1230-4bdd-2793906ce575	2021-05-26 11:00:46.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:00:46.952+03	2021-05-26 11:00:46.961+03	
04b963cd-26fb-27c8-8837-23e2c9b5ddd2	2021-05-26 11:01:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:01:07.951+03	2021-05-26 11:01:07.96+03	
3a3426ae-774c-b8be-290b-1f4b36e84931	2021-05-26 11:01:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:01:27.953+03	2021-05-26 11:01:27.965+03	
b991facc-9de5-f557-31c5-ada1e1d1d8d2	2021-05-26 11:01:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:01:48.951+03	2021-05-26 11:01:48.96+03	
2ba5ef60-a234-6d8a-182f-7235a186ee19	2021-05-26 11:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:02:08.951+03	2021-05-26 11:02:08.962+03	
ced7b784-d154-42f8-198e-f2275b1d0bc3	2021-05-26 11:02:29.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:02:29.952+03	2021-05-26 11:02:29.96+03	
018e36a8-a34a-b017-db5c-23d53576b562	2021-05-26 11:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:02:50.951+03	2021-05-26 11:02:50.962+03	
8a232f33-0880-c69b-1268-757382633574	2021-05-26 11:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:03:10.951+03	2021-05-26 11:03:10.961+03	
2225122f-898e-6a54-aa4a-d25e9e9f12d7	2021-05-26 11:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:03:30.951+03	2021-05-26 11:03:30.96+03	
69904bbc-73b8-6bd6-6ffe-9dee6df9f9e6	2021-05-26 11:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:03:50.951+03	2021-05-26 11:03:50.96+03	
e81d8fe3-d0f0-77fb-b50a-c402b7ac39db	2021-05-26 11:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:04:10.951+03	2021-05-26 11:04:10.961+03	
f5fd98e6-b252-ed26-67dd-3a2c59bb3e37	2021-05-26 11:04:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:04:31.951+03	2021-05-26 11:04:31.971+03	
2df8980a-c62c-5ae0-9c5b-f41b6e4867da	2021-05-26 11:04:51.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:04:51.952+03	2021-05-26 11:04:51.961+03	
48584988-f755-e5ce-8685-9e9e5fa9ec58	2021-05-26 11:05:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:05:12.952+03	2021-05-26 11:05:12.974+03	
c9f8798f-2aff-e68e-b5b6-d026b4dbfc3d	2021-05-26 11:05:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:05:22.952+03	2021-05-26 11:05:22.963+03	
1763b5c8-6699-093f-a3e0-e5bcead724d1	2021-05-26 11:05:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:05:42.952+03	2021-05-26 11:05:42.963+03	
3b1ad702-a268-bef4-caf3-b2e4f7a899b6	2021-05-26 11:06:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:06:02.952+03	2021-05-26 11:06:02.961+03	
2535ebf7-abc1-dd33-9aa5-ca51a3622e44	2021-05-26 11:06:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:06:22.952+03	2021-05-26 11:06:22.961+03	
e9c4f571-8a36-947c-25c1-2513eb8f7305	2021-05-26 11:06:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:06:43.951+03	2021-05-26 11:06:43.976+03	
d1111f3f-8d0c-fc99-a2e3-d63a4889b5c9	2021-05-26 11:07:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:07:04.951+03	2021-05-26 11:07:04.962+03	
9d0b88ae-bf5e-c233-dd6a-8c875c6c3753	2021-05-26 11:07:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:07:24.952+03	2021-05-26 11:07:24.96+03	
b40dba3c-848d-f524-d13d-d98b03f7ff7c	2021-05-26 11:07:45.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:07:45.952+03	2021-05-26 11:07:45.963+03	
be3d978f-ff7c-8aab-215a-76e00402fdcb	2021-05-26 11:08:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:08:05.952+03	2021-05-26 11:08:05.962+03	
729d4ed0-19db-2e67-98ba-e823883b8c2a	2021-05-26 11:08:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:08:26.952+03	2021-05-26 11:08:26.962+03	
c9e491a6-f7cf-d42e-1957-4dab8292da0f	2021-05-26 11:08:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:08:47.952+03	2021-05-26 11:08:47.962+03	
ee592631-e7ce-3795-d162-94d8b33f4c18	2021-05-26 11:09:07.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:09:07.953+03	2021-05-26 11:09:07.968+03	
614931d0-988a-0c46-129b-df16678fec15	2021-05-26 11:09:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:09:28.951+03	2021-05-26 11:09:28.967+03	
0408c843-0507-913b-06bf-83671bdd48d6	2021-05-26 11:09:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:09:48.952+03	2021-05-26 11:09:48.996+03	
7fc5df50-4abd-32ab-4f47-4910308dbc99	2021-05-26 11:10:00.953	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 11:10:00.951+03	2021-05-26 11:10:00.959+03	ERROR
f2166ca1-25c9-fdd6-2960-1ca5d882f832	2021-05-26 11:10:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:10:19.951+03	2021-05-26 11:10:19.963+03	
be3f10c2-c4c7-4a8d-45e7-1adc19be1932	2021-05-26 11:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:10:40.951+03	2021-05-26 11:10:40.961+03	
7ebd42a7-f6ea-2702-0634-56e90b6bc2a0	2021-05-26 11:11:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:11:00.951+03	2021-05-26 11:11:00.962+03	
ceecf051-8db8-1ad9-0c29-a10cefeaf9ab	2021-05-26 11:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:11:21.951+03	2021-05-26 11:11:21.963+03	
d46bc6dc-a9d6-97e9-7a65-a4cf6486d535	2021-05-26 11:11:42.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:11:42.953+03	2021-05-26 11:11:42.961+03	
998b95a2-f62d-0e3c-fcb5-e52a9b8ae69c	2021-05-26 11:12:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:12:02.953+03	2021-05-26 11:12:02.962+03	
c7215030-e5dc-0201-863d-3d6f4c0c4e49	2021-05-26 11:12:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:12:22.953+03	2021-05-26 11:12:22.977+03	
45ca4de1-84e4-ea62-ef88-fa15358806de	2021-05-26 11:12:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:12:43.951+03	2021-05-26 11:12:43.96+03	
552c5e80-0505-278a-e6a5-633e69c1ccd2	2021-05-26 11:13:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:13:03.952+03	2021-05-26 11:13:03.96+03	
ea18fdfa-5360-b62d-3e23-24fccb79b165	2021-05-26 11:13:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:13:24.951+03	2021-05-26 11:13:24.96+03	
056c0e0d-ff49-7f8e-dec9-bcd14ac6ac6c	2021-05-26 11:13:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:13:44.951+03	2021-05-26 11:13:44.969+03	
cfd34f1d-be33-1312-2014-91081072e61e	2021-05-26 11:14:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:14:04.951+03	2021-05-26 11:14:04.961+03	
1c766678-3661-b982-e905-6f856aedc51f	2021-05-26 11:14:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:14:24.951+03	2021-05-26 11:14:24.962+03	
052bb131-d505-cf9b-cea8-afdc9a6c89a6	2021-05-26 11:14:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:14:44.951+03	2021-05-26 11:14:44.959+03	
d4a5cae9-8651-a623-77c7-a35bc8a98ead	2021-05-26 11:14:54.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:14:54.954+03	2021-05-26 11:14:55.011+03	
f9a5ff6c-db34-06ec-d925-54087d74eb70	2021-05-26 11:15:05.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:15:05.952+03	2021-05-26 11:15:05.998+03	
a1bc27c6-8379-0122-253a-586295313eac	2021-05-26 11:15:25.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:15:25.952+03	2021-05-26 11:15:25.961+03	
8a7ba900-f0e7-1251-f21d-80c642ba8d38	2021-05-26 11:15:35.958	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:15:35.952+03	2021-05-26 11:15:35.967+03	
89b4e601-1a2d-471a-471e-aaf13206cd85	2021-05-26 11:16:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:16:06.952+03	2021-05-26 11:16:06.962+03	
52d000da-eada-24ec-b74e-e37aed729f30	2021-05-26 11:16:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:16:26.952+03	2021-05-26 11:16:26.968+03	
1c2925f5-3a78-bf5b-21cb-b31764ba472d	2021-05-26 11:16:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:16:47.952+03	2021-05-26 11:16:47.961+03	
48cde542-2789-abd0-27b9-aec58dbfba1f	2021-05-26 11:17:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:17:09.951+03	2021-05-26 11:17:09.961+03	
b1d14aee-b7c7-f1f2-35e7-e8d2c726a19b	2021-05-26 11:17:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:17:29.952+03	2021-05-26 11:17:29.971+03	
d2d1a6eb-bcb5-c435-1a33-b7e9b8f8ae1e	2021-05-26 11:17:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:17:50.952+03	2021-05-26 11:17:50.961+03	
a1900710-2949-ec21-bbbd-22c9eee46904	2021-05-26 11:18:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:18:10.952+03	2021-05-26 11:18:10.961+03	
18842f98-857b-c1f3-a65e-73a66c66791f	2021-05-26 11:18:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:18:41.951+03	2021-05-26 11:18:41.961+03	
289c70ac-66c8-5cea-be6a-68390acc2c19	2021-05-26 11:19:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:19:02.952+03	2021-05-26 11:19:02.962+03	
dcc1dd78-5b78-91b6-95c2-77666e939271	2021-05-26 11:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:19:23.951+03	2021-05-26 11:19:23.96+03	
0cae760b-1141-d394-2a75-a82042b5f2f9	2021-05-26 11:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:19:43.951+03	2021-05-26 11:19:43.962+03	
5c29e558-bb62-720e-b8df-458ced936cf2	2021-05-26 11:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 11:20:00.951+03	2021-05-26 11:20:00.981+03	ERROR
ac2ebf06-ca9f-ff7f-98b7-3c5385afed99	2021-05-26 11:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:20:13.952+03	2021-05-26 11:20:13.961+03	
2f12e07d-9900-e59d-4235-8d79fe47d621	2021-05-26 11:20:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:20:34.952+03	2021-05-26 11:20:34.962+03	
4fb97175-bb18-7474-8e0d-65d06fdd05f5	2021-05-26 11:20:55.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:20:55.952+03	2021-05-26 11:20:55.963+03	
3e4ec147-d9e8-41a6-1003-d7d6bbe65ed6	2021-05-26 11:21:15.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:21:15.952+03	2021-05-26 11:21:15.972+03	
42692e77-23c9-c438-4955-e79ccb8eafc7	2021-05-26 11:21:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:21:36.951+03	2021-05-26 11:21:36.963+03	
93fc43af-d01e-77b2-a73b-8dc87491832c	2021-05-26 11:21:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:21:56.951+03	2021-05-26 11:21:56.961+03	
4d212124-cda8-db6d-7e04-f6468109254d	2021-05-26 11:22:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:22:17.951+03	2021-05-26 11:22:17.961+03	
77868db9-946e-1191-5400-5c4a40e51f6f	2021-05-26 11:22:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:22:38.951+03	2021-05-26 11:22:38.959+03	
c6323953-999c-1452-d356-8473365b4621	2021-05-26 11:22:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:22:59.951+03	2021-05-26 11:22:59.96+03	
ec697d1d-dc90-00dc-0b94-2433902c63b8	2021-05-26 11:23:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:23:19.951+03	2021-05-26 11:23:19.96+03	
9d7be18f-d39e-a347-b953-cbfdadee9861	2021-05-26 11:23:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:23:39.951+03	2021-05-26 11:23:39.962+03	
1b2d5b0f-a89f-c7f5-0a7a-50bb39fd7e71	2021-05-26 11:23:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:23:59.951+03	2021-05-26 11:23:59.959+03	
93d28f6d-d2e3-7556-c2bf-ae9963209d98	2021-05-26 11:24:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:24:20.951+03	2021-05-26 11:24:20.961+03	
3b287712-4dac-96ca-eba8-d13385c90b48	2021-05-26 11:24:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:24:40.951+03	2021-05-26 11:24:40.96+03	
acf77351-5aba-a866-fcc6-4bd1903488ac	2021-05-26 11:25:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:25:00.951+03	2021-05-26 11:25:00.961+03	
9c51a94c-e7f5-bce1-31e6-123d155646eb	2021-05-26 11:25:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:25:20.951+03	2021-05-26 11:25:20.96+03	
2550022f-a33a-376f-c675-c0aef818ac02	2021-05-26 11:25:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:25:40.951+03	2021-05-26 11:25:40.961+03	
9938686f-c4f1-b58d-bdbc-8595a42ab68a	2021-05-26 11:26:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:26:00.951+03	2021-05-26 11:26:00.961+03	
15d6b42a-5782-f429-f657-7724c213c3ca	2021-05-26 11:26:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:26:20.951+03	2021-05-26 11:26:20.96+03	
78de2152-4887-8bd6-ce7d-eec918fd363b	2021-05-26 11:26:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:26:40.951+03	2021-05-26 11:26:40.962+03	
64486760-8505-100e-cd7d-920728f19853	2021-05-26 11:27:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:27:00.951+03	2021-05-26 11:27:00.961+03	
c2f37167-eb0b-b193-0b3d-0a81ee020c45	2021-05-26 11:27:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:27:20.951+03	2021-05-26 11:27:20.959+03	
4118da2d-eed1-70c8-c73c-49bc3228bd6b	2021-05-26 11:27:40.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:27:40.952+03	2021-05-26 11:27:40.962+03	
94311aa3-b22b-18c4-aa85-7e599c0b4f3c	2021-05-26 11:28:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:28:01.952+03	2021-05-26 11:28:01.962+03	
48293cb4-4015-978a-37a1-51cc2c067941	2021-05-26 11:28:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:28:22.951+03	2021-05-26 11:28:22.959+03	
60ed9604-f51a-9e4c-2173-c5dfeb59ad68	2021-05-26 11:28:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:28:42.952+03	2021-05-26 11:28:42.96+03	
fc4c8521-1040-8bc0-51a2-a26d7ee22cd5	2021-05-26 11:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:29:03.951+03	2021-05-26 11:29:03.959+03	
1fce9a77-2a2c-9bb3-a3a8-133f593661f0	2021-05-26 11:29:13.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:29:13.951+03	2021-05-26 11:29:13.97+03	
b953d9fb-2038-1b7e-874a-e7d96a89f224	2021-05-26 11:29:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:29:33.951+03	2021-05-26 11:29:33.96+03	
434ffd46-b926-dc15-7ba5-5c088327116f	2021-05-26 11:29:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:29:53.951+03	2021-05-26 11:29:53.959+03	
4f8c9d90-112f-62f5-40b7-8d0fbb6796d2	2021-05-26 11:30:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:30:03.951+03	2021-05-26 11:30:03.959+03	
705d9d9e-c822-7e98-c4d6-39dae3f50c73	2021-05-26 11:30:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:30:23.951+03	2021-05-26 11:30:23.958+03	
cd8ab697-3e6f-abcb-a423-a941798a23e7	2021-05-26 11:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:30:43.951+03	2021-05-26 11:30:43.959+03	
45fbf003-dcdc-a4a0-7fb3-7a690f0875a6	2021-05-26 11:31:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:31:03.951+03	2021-05-26 11:31:03.966+03	
b84c876b-a5cb-fd6c-2952-8b626f5f181c	2021-05-26 11:31:23.963	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:31:23.962+03	2021-05-26 11:31:23.971+03	
9f097850-6373-a9db-7560-83315897badd	2021-05-26 11:31:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:31:44.951+03	2021-05-26 11:31:44.962+03	
08cd7a3f-84fd-2c24-8b18-e3f758bb99bf	2021-05-26 11:32:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:32:05.951+03	2021-05-26 11:32:05.96+03	
256e308f-a124-edb6-8326-d98b5bbee488	2021-05-26 11:32:25.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:32:25.952+03	2021-05-26 11:32:25.96+03	
c51806d0-7daa-4d71-639c-34fff32b3c0a	2021-05-26 11:32:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:32:46.951+03	2021-05-26 11:32:46.959+03	
196a9975-8ea5-909c-d968-b4011af9dae8	2021-05-26 11:33:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:33:06.951+03	2021-05-26 11:33:06.972+03	
5ed74f8a-594f-6ee2-7dec-ff368781b409	2021-05-26 11:33:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:33:26.951+03	2021-05-26 11:33:26.959+03	
0c0d453b-4726-7e6c-e171-68529827eba1	2021-05-26 11:33:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:33:46.951+03	2021-05-26 11:33:46.96+03	
1e3c74a5-18e7-9cc7-83af-6d136bbfd5cd	2021-05-26 11:34:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:34:06.951+03	2021-05-26 11:34:06.96+03	
ef058205-0808-40ec-dc25-5ab89836539c	2021-05-26 11:34:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:34:26.951+03	2021-05-26 11:34:26.962+03	
83276939-ffbd-d7fc-bccd-aeb22f41f0d8	2021-05-26 11:34:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:34:47.951+03	2021-05-26 11:34:47.959+03	
d924802b-bb12-e33d-20b4-55ec46d28542	2021-05-26 11:35:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:35:08.951+03	2021-05-26 11:35:08.961+03	
1662bd84-39c1-9714-be94-aa0b08d202de	2021-05-26 11:35:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:35:28.951+03	2021-05-26 11:35:28.96+03	
9fa4b10d-8547-f018-fc7c-7cec3b72fe36	2021-05-26 11:35:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:35:48.951+03	2021-05-26 11:35:48.959+03	
0698a9ea-b9e4-e358-51a0-0d2dca2b4ff0	2021-05-26 11:16:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:16:37.952+03	2021-05-26 11:16:37.963+03	
c88bcaa2-3208-f461-973c-fc11d610fa3a	2021-05-26 11:16:58.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:16:58.952+03	2021-05-26 11:16:58.98+03	
71ba962a-a28e-d259-f0bb-e0f3e3e911e2	2021-05-26 11:17:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:17:19.951+03	2021-05-26 11:17:19.962+03	
3ace9c2c-273a-d31a-1295-e4635894ef0a	2021-05-26 11:17:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:17:40.952+03	2021-05-26 11:17:40.961+03	
7bc35a31-1523-23ad-bbb1-41a613b7ac95	2021-05-26 11:18:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:18:00.952+03	2021-05-26 11:18:00.96+03	
8add4035-ff09-ab3b-8e45-5af9f6195cae	2021-05-26 11:18:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:18:20.952+03	2021-05-26 11:18:20.961+03	
fd3a2dd8-685b-1233-2952-e2420c7169eb	2021-05-26 11:18:31.959	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:18:31.951+03	2021-05-26 11:18:31.971+03	
7b1ba895-1032-55f4-860c-be221a85238b	2021-05-26 11:18:51.964	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:18:51.964+03	2021-05-26 11:18:51.973+03	
a1c1d284-bbdb-e669-fe5a-0684cad5f027	2021-05-26 11:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:19:13.951+03	2021-05-26 11:19:13.96+03	
8e4df9cf-2483-e08e-cff8-8d0dda6437fd	2021-05-26 11:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:19:33.951+03	2021-05-26 11:19:33.961+03	
3833461b-a38e-ae0d-7235-13d7f1c6b46a	2021-05-26 11:19:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:19:53.951+03	2021-05-26 11:19:53.961+03	
453813df-d174-3f6c-0578-bad54378f576	2021-05-26 11:20:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:20:03.952+03	2021-05-26 11:20:03.962+03	
5c973eeb-7264-a210-3ffa-f064f1ae7d3d	2021-05-26 11:20:23.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:20:23.952+03	2021-05-26 11:20:23.964+03	
fc817e2b-ec95-ab11-5a77-97eb7b73252b	2021-05-26 11:20:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:20:45.952+03	2021-05-26 11:20:45.96+03	
21c5f786-d835-3729-cf38-aa5a174024e4	2021-05-26 11:21:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:21:05.952+03	2021-05-26 11:21:05.963+03	
f51e3e4c-16f9-bee0-26df-45d193646fd0	2021-05-26 11:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:21:25.952+03	2021-05-26 11:21:25.96+03	
0573ce25-7f8b-c66f-a6d8-2caae35885be	2021-05-26 11:21:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:21:46.951+03	2021-05-26 11:21:46.96+03	
be334a0c-23ba-97e1-5a84-ff6c14f2ea40	2021-05-26 11:22:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:22:06.952+03	2021-05-26 11:22:06.963+03	
05a77880-e565-4268-a84a-942dd10be2a0	2021-05-26 11:22:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:22:27.953+03	2021-05-26 11:22:27.963+03	
044ae9c2-ee30-6716-46d6-e42afd8c5248	2021-05-26 11:22:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:22:48.952+03	2021-05-26 11:22:48.96+03	
fda473d0-dc32-034e-45ce-f98e71501edc	2021-05-26 11:23:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:23:09.951+03	2021-05-26 11:23:09.959+03	
22fc24d8-6c75-fd7f-031f-0914ba50d91a	2021-05-26 11:23:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:23:29.951+03	2021-05-26 11:23:29.959+03	
17341255-b361-62fe-3861-50d2fa6fc671	2021-05-26 11:23:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:23:49.951+03	2021-05-26 11:23:49.96+03	
c4ee5a3e-743f-cc32-19d6-1adf27cff257	2021-05-26 11:24:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:24:09.952+03	2021-05-26 11:24:09.959+03	
101ff814-aee9-7157-8398-2cd20b1102c5	2021-05-26 11:24:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:24:30.951+03	2021-05-26 11:24:30.961+03	
197bfdee-520f-b4f0-f7dd-b2d93e62c908	2021-05-26 11:24:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:24:50.951+03	2021-05-26 11:24:50.959+03	
6cd00912-d9e0-7c31-1265-d749e686cd62	2021-05-26 11:25:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:25:10.951+03	2021-05-26 11:25:10.96+03	
a519223b-0640-c0b9-1f2f-fb0a33670098	2021-05-26 11:25:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:25:30.951+03	2021-05-26 11:25:30.959+03	
d84de3e3-4127-77f1-2d43-260f9f6e9e53	2021-05-26 11:25:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:25:50.951+03	2021-05-26 11:25:50.959+03	
e443196e-bf9d-4cd5-0221-84224ac6f2e0	2021-05-26 11:26:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:26:10.951+03	2021-05-26 11:26:10.981+03	
4f080d17-f803-47e9-027b-d5efbd6533ce	2021-05-26 11:26:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:26:30.951+03	2021-05-26 11:26:30.961+03	
e577b871-b4ee-5f13-4416-05af4a267201	2021-05-26 11:26:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:26:50.951+03	2021-05-26 11:26:50.96+03	
d1c04083-abfa-e17d-944b-5d05da806b7c	2021-05-26 11:27:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:27:10.951+03	2021-05-26 11:27:10.961+03	
3eea60e7-5ba4-f0d1-2db8-1c75b61b184a	2021-05-26 11:27:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:27:30.951+03	2021-05-26 11:27:30.96+03	
25dc97d2-c2e8-d1ae-415f-bfbd0e96cfc9	2021-05-26 11:27:50.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:27:50.952+03	2021-05-26 11:27:50.971+03	
2b351f1a-a722-7382-9d32-4c9c285eee73	2021-05-26 11:28:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:28:12.951+03	2021-05-26 11:28:12.964+03	
e4f0e3c7-8c18-cd1c-3c0f-e95aebeb866f	2021-05-26 11:28:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:28:32.951+03	2021-05-26 11:28:32.959+03	
993cc0c9-3c72-5f77-2eeb-3b33c8c5ed53	2021-05-26 11:28:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:28:52.953+03	2021-05-26 11:28:52.96+03	
b1621e8c-6f1b-2f2b-710c-861622bc7ae1	2021-05-26 11:29:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:29:23.951+03	2021-05-26 11:29:23.96+03	
e042f250-8e94-cb3a-d827-1a49898ad825	2021-05-26 11:29:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:29:43.951+03	2021-05-26 11:29:43.959+03	
a14984ff-5805-5c75-a66c-a0cf31026ef5	2021-05-26 11:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 11:30:00.951+03	2021-05-26 11:30:00.96+03	ERROR
70394414-8c28-f25c-7a4c-b40a29a79208	2021-05-26 11:30:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:30:13.951+03	2021-05-26 11:30:13.959+03	
d31c1c93-2685-3a18-f3c6-5f71580a9d19	2021-05-26 11:30:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:30:33.951+03	2021-05-26 11:30:33.959+03	
95e330d1-8a51-a0b1-487c-6a610144fcf9	2021-05-26 11:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:30:53.951+03	2021-05-26 11:30:54.017+03	
af1d4ea6-d422-23f2-d025-a831021e8bce	2021-05-26 11:31:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:31:13.951+03	2021-05-26 11:31:13.959+03	
52d60d29-8c86-799a-2602-0a46bac5c41c	2021-05-26 11:31:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:31:34.951+03	2021-05-26 11:31:34.959+03	
d085a4d4-1126-eec3-874a-0e7a71cf3d60	2021-05-26 11:31:54.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:31:54.952+03	2021-05-26 11:31:54.96+03	
153c0cd9-3f05-3000-31f2-bafbdb141502	2021-05-26 11:32:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:32:15.951+03	2021-05-26 11:32:15.961+03	
1d1ba3bd-1f79-e25d-c276-00dc2371eb6d	2021-05-26 11:32:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:32:35.952+03	2021-05-26 11:32:35.967+03	
6e4238ee-a5e9-687f-128c-f6ad32131f15	2021-05-26 11:32:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:32:56.951+03	2021-05-26 11:32:56.958+03	
b50cbaec-559c-fbca-be75-464d220c777a	2021-05-26 11:33:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:33:16.951+03	2021-05-26 11:33:16.961+03	
53a8dd17-7dac-8c65-683d-c44798cb7b81	2021-05-26 11:33:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:33:36.951+03	2021-05-26 11:33:36.962+03	
b3e57b90-4836-4bb8-39f2-040c41bf1e32	2021-05-26 11:33:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:33:56.951+03	2021-05-26 11:33:56.96+03	
fadae880-4731-170a-cbd4-99488ff224f5	2021-05-26 11:34:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:34:16.951+03	2021-05-26 11:34:16.96+03	
7db17c82-f178-948b-b6a8-7dfa69225b33	2021-05-26 11:34:36.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:34:36.955+03	2021-05-26 11:34:36.963+03	
7d281a7f-1514-bfe6-dd51-fa4de2c8fbcc	2021-05-26 11:34:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:34:57.952+03	2021-05-26 11:34:57.961+03	
3096528e-d5ac-924d-b653-ecb47490ce2a	2021-05-26 11:35:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:35:18.951+03	2021-05-26 11:35:18.971+03	
17a2a189-27b9-43d5-8ebb-9a210c597b6a	2021-05-26 11:35:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:35:38.951+03	2021-05-26 11:35:38.96+03	
cd057d51-cd95-71e6-1251-70e6fad6487a	2021-05-26 11:35:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:35:58.951+03	2021-05-26 11:35:58.96+03	
32263321-8b49-528a-c0f8-40630ef69469	2021-05-26 11:36:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:36:18.951+03	2021-05-26 11:36:18.958+03	
a48c3b5f-5f6f-62a2-901c-bffdcea3730d	2021-05-26 11:36:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:36:38.951+03	2021-05-26 11:36:38.96+03	
279ad06a-47ed-192d-80c5-acf5f54a9bb7	2021-05-26 11:36:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:36:58.951+03	2021-05-26 11:36:58.96+03	
a0f81a69-9d74-a5a6-1355-b2c416e8a95e	2021-05-26 11:37:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:37:18.951+03	2021-05-26 11:37:18.96+03	
9f2812f2-5d87-6dd0-54ad-22083544bf99	2021-05-26 11:36:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:36:08.951+03	2021-05-26 11:36:08.959+03	
cdf78fc8-177f-4344-0ca5-766236e3c778	2021-05-26 11:36:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:36:28.951+03	2021-05-26 11:36:28.959+03	
212d392e-e828-1e88-9674-7a5050ee6c03	2021-05-26 11:36:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:36:48.951+03	2021-05-26 11:36:48.96+03	
8ea7d63c-3d3f-4ad4-70d4-4c61e0551984	2021-05-26 11:37:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:37:08.951+03	2021-05-26 11:37:08.959+03	
ec3957a7-a23c-6f1e-e0f6-9daf620565b4	2021-05-26 11:37:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:37:28.951+03	2021-05-26 11:37:28.96+03	
60b78b7d-93c0-2ad8-be72-c546250c1bc0	2021-05-26 11:37:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:37:48.951+03	2021-05-26 11:37:48.959+03	
b580e6a8-c182-e5e5-0dc5-222e6fe1dcc2	2021-05-26 11:38:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:38:08.951+03	2021-05-26 11:38:08.959+03	
61f5d650-1d2c-2ae6-6a39-5b948b6137d9	2021-05-26 11:38:38.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:38:38.951+03	2021-05-26 11:38:38.963+03	
c30dd41b-e5df-7def-6c01-e874c79d386d	2021-05-26 11:38:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:38:58.951+03	2021-05-26 11:38:58.96+03	
c6561b81-6c81-c1e1-9d8b-cad9df19cf2c	2021-05-26 11:39:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:39:18.951+03	2021-05-26 11:39:18.962+03	
0afebe7d-7c2c-d876-e3c3-8a185073c93b	2021-05-26 11:39:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:39:48.952+03	2021-05-26 11:39:48.965+03	
cf0ad2df-2e32-4b24-92ca-0934c06a4975	2021-05-26 11:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 11:40:00.951+03	2021-05-26 11:40:00.958+03	ERROR
5ce2956c-d43b-3a83-f523-09063f0c19e8	2021-05-26 11:40:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:40:19.951+03	2021-05-26 11:40:19.958+03	
5ce505d5-f1f2-60d8-7f41-e6b2eee64062	2021-05-26 11:40:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:40:40.951+03	2021-05-26 11:40:40.958+03	
9db97e33-8727-621a-5d1c-d84acaa98e3a	2021-05-26 11:41:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:41:00.951+03	2021-05-26 11:41:00.961+03	
c557e987-f629-9790-1746-f2e158047988	2021-05-26 11:41:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:41:20.951+03	2021-05-26 11:41:20.958+03	
ace47332-ccc3-0d95-6978-470d27390c37	2021-05-26 11:41:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:41:40.951+03	2021-05-26 11:41:40.958+03	
3323df13-81a5-7b1f-d09d-6626d53b2853	2021-05-26 11:42:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:42:00.951+03	2021-05-26 11:42:00.958+03	
291ec72f-7bc0-cd08-cec7-9aade2ecfc46	2021-05-26 11:42:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:42:20.951+03	2021-05-26 11:42:20.958+03	
e09c2e82-a724-314a-372e-ac327be2f9f1	2021-05-26 11:42:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:42:40.951+03	2021-05-26 11:42:40.961+03	
c8c94497-e379-cf85-f790-bf48872b3eb5	2021-05-26 11:43:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:43:00.951+03	2021-05-26 11:43:00.958+03	
08f820b9-6256-5854-bd31-e625323e965d	2021-05-26 11:43:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:43:20.951+03	2021-05-26 11:43:20.959+03	
904af033-ab2e-06ee-cac4-ae3c75b055c9	2021-05-26 11:43:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:43:40.951+03	2021-05-26 11:43:40.959+03	
ecad5d97-b22c-9668-98d7-88c3e5a600a1	2021-05-26 11:44:01.958	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:44:01.957+03	2021-05-26 11:44:01.965+03	
dbf2ba1d-55c6-e7c3-87e8-f257dce105c2	2021-05-26 11:44:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:44:22.952+03	2021-05-26 11:44:22.961+03	
ef514a21-d70b-4af1-5185-e0bdb16627ad	2021-05-26 11:44:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:44:43.951+03	2021-05-26 11:44:43.96+03	
e3134fca-3cb4-9e5d-4727-b2f6bed14758	2021-05-26 11:45:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:45:03.951+03	2021-05-26 11:45:03.959+03	
66397fed-1b4b-ecca-acd3-2583f9539368	2021-05-26 11:45:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:45:13.951+03	2021-05-26 11:45:13.958+03	
b4b276bf-0de5-1329-1836-be776f2ad2fd	2021-05-26 11:45:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:45:33.951+03	2021-05-26 11:45:33.958+03	
9d670804-0153-4a18-f482-ec2f457e49c2	2021-05-26 11:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:45:53.951+03	2021-05-26 11:45:53.958+03	
6464a944-fbaa-d8d0-0aa0-041fd34ef3f7	2021-05-26 11:46:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:46:13.951+03	2021-05-26 11:46:13.959+03	
5fb9f1af-115b-bf08-fe54-2c7ce9ffe836	2021-05-26 11:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:46:33.951+03	2021-05-26 11:46:33.959+03	
9809b9c7-f2a5-c2b9-d700-8855ac117474	2021-05-26 11:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:46:53.951+03	2021-05-26 11:46:53.958+03	
844b78d5-a06d-87f4-6b73-09c1ae55aae0	2021-05-26 11:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:47:13.951+03	2021-05-26 11:47:13.959+03	
6f84abe4-11ff-1621-dbd1-cc6ed0ca1091	2021-05-26 11:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:47:23.951+03	2021-05-26 11:47:23.959+03	
51386812-5a48-9fb1-ee6d-248e3cf6e107	2021-05-26 11:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:47:43.951+03	2021-05-26 11:47:43.958+03	
6cfbbfdd-15ab-3ccf-9969-36e6960b2ab3	2021-05-26 11:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:48:03.951+03	2021-05-26 11:48:03.959+03	
0d8d935b-507d-7e68-c16a-c3e2ddc16334	2021-05-26 11:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:48:23.951+03	2021-05-26 11:48:23.979+03	
87c20f8e-78e8-286f-b457-200b05e78e87	2021-05-26 11:48:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:48:53.951+03	2021-05-26 11:48:53.958+03	
5f9d7f45-ed11-fc05-18ce-823a3e0b8622	2021-05-26 11:49:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:49:13.951+03	2021-05-26 11:49:13.958+03	
d0a7d331-7475-897d-cc7d-17c3a6eb44d9	2021-05-26 11:49:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:49:33.951+03	2021-05-26 11:49:33.958+03	
2d0ee300-99df-bf35-b4d6-e14207b10272	2021-05-26 11:49:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:49:53.951+03	2021-05-26 11:49:53.959+03	
f21233bd-3657-d99a-8fd1-9abe4d1a2c6e	2021-05-26 11:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:50:03.951+03	2021-05-26 11:50:03.966+03	
eab49f3a-a595-8181-5aed-621c4df01799	2021-05-26 11:50:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:50:23.951+03	2021-05-26 11:50:23.96+03	
24b58a25-bad8-4156-1c24-19048e6122d6	2021-05-26 11:50:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:50:43.951+03	2021-05-26 11:50:43.959+03	
2a651a67-6aec-b804-89ec-f288ce4b0fab	2021-05-26 11:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:51:03.951+03	2021-05-26 11:51:03.959+03	
eed971ee-48e9-149b-b6d5-643a760c8dca	2021-05-26 11:51:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:51:23.951+03	2021-05-26 11:51:23.959+03	
9a60cf9d-8a2d-00a3-99ee-1e8c7354ddc3	2021-05-26 11:51:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:51:43.951+03	2021-05-26 11:51:43.961+03	
5e7e4859-0df9-f016-3b28-19ed7a77d5fb	2021-05-26 11:52:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:52:03.951+03	2021-05-26 11:52:03.959+03	
f72f737a-34d4-a1fd-5a50-33ea34e4bf7e	2021-05-26 11:52:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:52:23.951+03	2021-05-26 11:52:23.959+03	
31765096-8d39-9a97-b02a-0f82f1ee064e	2021-05-26 11:52:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:52:43.951+03	2021-05-26 11:52:43.972+03	
f92df129-eca7-54d4-a54a-3906851228e4	2021-05-26 11:53:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:53:03.951+03	2021-05-26 11:53:03.958+03	
5e294ed1-c21d-64b4-bee1-c0f4232ce2c5	2021-05-26 11:53:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:53:23.951+03	2021-05-26 11:53:23.959+03	
09f06162-17f3-7807-bcd4-fe1448b743dc	2021-05-26 11:53:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:53:43.951+03	2021-05-26 11:53:43.959+03	
64183736-6447-2a4e-e640-413ee79fa7d4	2021-05-26 11:54:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:54:03.951+03	2021-05-26 11:54:03.959+03	
9d73ab6b-ee5e-d630-4c71-bb5fedd38cd3	2021-05-26 11:54:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:54:23.951+03	2021-05-26 11:54:23.959+03	
8219ae5f-2830-a48c-a7fb-1c1b30d2498e	2021-05-26 11:54:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:54:43.951+03	2021-05-26 11:54:43.959+03	
30a88226-5245-26d7-483a-2f6b1becdb5a	2021-05-26 11:55:03.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:55:03.953+03	2021-05-26 11:55:03.961+03	
349c8785-ec5e-c19d-f958-53cef0b229a3	2021-05-26 11:55:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:55:24.951+03	2021-05-26 11:55:24.959+03	
3992bb3e-b88d-cc14-fdb9-6448cfc2189f	2021-05-26 11:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:55:44.951+03	2021-05-26 11:55:44.959+03	
4484405c-25ed-7f14-3706-6fe8bc1e446f	2021-05-26 11:56:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:56:04.951+03	2021-05-26 11:56:04.958+03	
046963df-2197-7e96-5a16-eae796625b8b	2021-05-26 11:56:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:56:24.951+03	2021-05-26 11:56:24.958+03	
15b58a4e-b356-664d-e734-b74a85c3960f	2021-05-26 11:56:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:56:44.951+03	2021-05-26 11:56:44.958+03	
1a0ce832-2328-2d06-f6be-a1efcc5bf694	2021-05-26 11:37:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:37:38.951+03	2021-05-26 11:37:38.959+03	
7c33bba6-214a-7cbd-4ce2-2c6ff5a8c6cd	2021-05-26 11:37:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:37:58.951+03	2021-05-26 11:37:58.96+03	
be3a1ffa-7782-72ef-830b-5abe1626412b	2021-05-26 11:38:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:38:18.951+03	2021-05-26 11:38:18.959+03	
deac1641-b743-ae15-093e-22e310cce02a	2021-05-26 11:38:28.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:38:28.951+03	2021-05-26 11:38:28.96+03	
f1420283-6957-e702-7ca1-4c8639f6ec46	2021-05-26 11:38:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:38:48.951+03	2021-05-26 11:38:48.958+03	
685e7bc8-42f0-fabe-5e2c-4c33a8b27aaf	2021-05-26 11:39:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:39:08.951+03	2021-05-26 11:39:08.961+03	
a3948621-7df9-a6dd-7457-2a8bd5c2fbe3	2021-05-26 11:39:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:39:28.951+03	2021-05-26 11:39:28.973+03	
8a7bfe36-954d-ba54-c112-caf0d730cba8	2021-05-26 11:39:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:39:38.951+03	2021-05-26 11:39:38.97+03	
154ae873-144f-14ec-1afd-6e2d266b9112	2021-05-26 11:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:39:59.951+03	2021-05-26 11:39:59.96+03	
2f39bc7f-744b-e424-0fe9-271650f4848e	2021-05-26 11:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:40:09.951+03	2021-05-26 11:40:09.959+03	
dca3f105-cced-a724-e494-123322df8244	2021-05-26 11:40:29.957	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:40:29.957+03	2021-05-26 11:40:29.969+03	
aa12d2bf-5e35-ce90-6282-6091d33f0d50	2021-05-26 11:40:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:40:50.951+03	2021-05-26 11:40:50.958+03	
d8dd3c14-8371-5ac6-9d1d-7be9388f0ffe	2021-05-26 11:41:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:41:10.951+03	2021-05-26 11:41:10.959+03	
5132c30b-d365-abc3-b2f2-76c559e562b2	2021-05-26 11:41:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:41:30.951+03	2021-05-26 11:41:30.958+03	
cfafed09-36c5-9335-5c0a-10dca8c11ead	2021-05-26 11:41:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:41:50.951+03	2021-05-26 11:41:50.958+03	
ecfd9be8-a3d3-ab4a-3309-cb1da7253810	2021-05-26 11:42:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:42:10.951+03	2021-05-26 11:42:10.971+03	
f8bb8088-031c-e3ef-5213-4b5973705b5b	2021-05-26 11:42:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:42:30.951+03	2021-05-26 11:42:30.959+03	
2ebe4622-bde0-4c19-e807-dd5872254720	2021-05-26 11:42:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:42:50.951+03	2021-05-26 11:42:50.959+03	
cedf95c6-f858-5a11-5a34-b886cb01ba6e	2021-05-26 11:43:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:43:10.951+03	2021-05-26 11:43:10.96+03	
d61dd859-b6b9-715a-de16-a9ad0be6f8c3	2021-05-26 11:43:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:43:30.951+03	2021-05-26 11:43:30.959+03	
d47bec2e-a41f-3236-305d-33215f9e065f	2021-05-26 11:43:50.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:43:50.953+03	2021-05-26 11:43:50.961+03	
ce404641-8cf3-5eb0-fc2c-2356d6da0e53	2021-05-26 11:44:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:44:12.951+03	2021-05-26 11:44:12.959+03	
ba86a892-1ff0-618f-6f7c-c223e4a36d13	2021-05-26 11:44:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:44:33.951+03	2021-05-26 11:44:33.959+03	
43c9733b-cd3b-acbc-7d36-a013a2798687	2021-05-26 11:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:44:53.951+03	2021-05-26 11:44:53.965+03	
43737987-0b1b-13ae-6ad4-31b43eef0ead	2021-05-26 11:45:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:45:23.951+03	2021-05-26 11:45:23.969+03	
71706c2e-1410-b48b-dc85-eb8770722645	2021-05-26 11:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:45:43.951+03	2021-05-26 11:45:43.958+03	
c0f35b0b-8a11-e019-2ed4-3add6f1cd355	2021-05-26 11:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:46:03.951+03	2021-05-26 11:46:03.96+03	
af56f4dc-a740-9052-9c5a-b6f2e28450ab	2021-05-26 11:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:46:23.951+03	2021-05-26 11:46:23.96+03	
dc4bb253-e80a-9626-5b29-86e9151cb3e6	2021-05-26 11:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:46:43.951+03	2021-05-26 11:46:43.959+03	
c6540b38-3f81-0651-c25d-d708cd6a1031	2021-05-26 11:47:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:47:03.951+03	2021-05-26 11:47:03.959+03	
cfae0f13-2071-9423-6887-961157d16817	2021-05-26 11:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:47:33.951+03	2021-05-26 11:47:33.958+03	
0a6cb14c-6611-f7bb-83e0-78dcdeb78f6f	2021-05-26 11:47:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:47:53.951+03	2021-05-26 11:47:53.959+03	
6d43f9d2-ff56-1870-84ff-f91433c40f69	2021-05-26 11:48:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:48:13.951+03	2021-05-26 11:48:13.959+03	
de23d29f-e568-904e-eb08-3cb48322e2e4	2021-05-26 11:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:48:33.951+03	2021-05-26 11:48:33.96+03	
29de79d9-c163-b3e3-bbf7-5dbb685f8015	2021-05-26 11:48:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:48:43.951+03	2021-05-26 11:48:43.958+03	
73d31fb8-990b-0627-4dfd-e8a289ef0fff	2021-05-26 11:49:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:49:03.951+03	2021-05-26 11:49:03.967+03	
445def17-a91b-e00f-98da-d8aff4feb0e6	2021-05-26 11:49:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:49:23.951+03	2021-05-26 11:49:23.96+03	
a9d907a8-d3ca-fd1a-506b-e88b2d059ec4	2021-05-26 11:49:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:49:43.951+03	2021-05-26 11:49:43.959+03	
ea3090ac-2ecb-7a2f-e7df-90af1b7b9280	2021-05-26 11:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 11:50:00.951+03	2021-05-26 11:50:00.957+03	ERROR
3f829a8d-37e7-02f9-6bab-d5c5af017d4e	2021-05-26 11:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:50:13.951+03	2021-05-26 11:50:13.961+03	
9028b1c7-5c3a-a7c4-8ccf-cb2aa5e65135	2021-05-26 11:50:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:50:33.951+03	2021-05-26 11:50:33.96+03	
5b8143f9-c0c2-c58d-7e4a-60883bb51c9b	2021-05-26 11:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:50:53.951+03	2021-05-26 11:50:53.959+03	
c28c4713-29e4-a000-be93-f0ad16f2ae0b	2021-05-26 11:51:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:51:13.951+03	2021-05-26 11:51:13.958+03	
a00c5a34-e9c2-b818-0b31-a9073733c912	2021-05-26 11:51:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:51:33.951+03	2021-05-26 11:51:33.958+03	
2582cb5a-0481-9055-7aa2-0800f2f1764c	2021-05-26 11:51:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:51:53.951+03	2021-05-26 11:51:53.959+03	
bddb25ec-a4a6-bdf8-c4ad-d62bd9929486	2021-05-26 11:52:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:52:13.951+03	2021-05-26 11:52:13.958+03	
896a10a6-1d8f-d3ec-8319-9d4d5b15176d	2021-05-26 11:52:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:52:33.951+03	2021-05-26 11:52:34.193+03	
4604eebb-80af-4cfa-8bd0-fdf8cbfcf8c8	2021-05-26 11:52:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:52:53.951+03	2021-05-26 11:52:53.958+03	
7936a750-f424-cdb9-03e9-40f74554adcb	2021-05-26 11:53:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:53:13.951+03	2021-05-26 11:53:13.958+03	
c8337852-df01-6828-2bcf-b1f275f8e0c4	2021-05-26 11:53:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:53:33.951+03	2021-05-26 11:53:33.959+03	
be5cdaf3-143e-6b71-c783-ffa16689ebe8	2021-05-26 11:53:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:53:53.951+03	2021-05-26 11:53:53.958+03	
1d631217-c57a-cac7-1c13-ae6e535f9893	2021-05-26 11:54:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:54:13.951+03	2021-05-26 11:54:13.959+03	
580911ad-00e2-3e8e-ea39-a197194c6fa7	2021-05-26 11:54:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:54:33.951+03	2021-05-26 11:54:33.961+03	
74e43703-92b4-03a4-a293-efa3a70c7e99	2021-05-26 11:54:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:54:53.951+03	2021-05-26 11:54:53.958+03	
bc299e12-7429-964d-71a1-48032bb5610f	2021-05-26 11:55:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:55:14.951+03	2021-05-26 11:55:14.959+03	
b7d60f91-c3f2-ffb0-255d-3e8952d0e38f	2021-05-26 11:55:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:55:34.951+03	2021-05-26 11:55:34.958+03	
8914eecb-a6ca-4459-fc84-c766d02a73e8	2021-05-26 11:55:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:55:54.951+03	2021-05-26 11:55:54.959+03	
6d6299c4-52cf-783d-7de7-4772252d514a	2021-05-26 11:56:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:56:14.951+03	2021-05-26 11:56:14.958+03	
624dc243-4fa6-4348-a13f-0ca906f12092	2021-05-26 11:56:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:56:34.951+03	2021-05-26 11:56:34.958+03	
228c16d9-8052-70c5-4df9-cb76a8eb5048	2021-05-26 11:56:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:56:54.951+03	2021-05-26 11:56:54.959+03	
1e733664-9534-722b-aeb5-cefdea3b2c61	2021-05-26 11:57:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:57:14.951+03	2021-05-26 11:57:14.958+03	
dd387a3a-c9d1-de67-ed38-c692062664ad	2021-05-26 11:57:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:57:34.951+03	2021-05-26 11:57:34.958+03	
d07fd93f-89d9-580f-630c-445c8f370300	2021-05-26 11:58:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:58:05.951+03	2021-05-26 11:58:05.961+03	
a6d27d30-7f52-39c6-bcb2-bb78d9e42331	2021-05-26 11:57:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:57:04.951+03	2021-05-26 11:57:04.959+03	
81ff9c1b-67fe-a8af-cc5b-423342ca2b4d	2021-05-26 11:57:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:57:24.951+03	2021-05-26 11:57:24.959+03	
a3850747-2277-46af-b04a-1d7bd2760d5e	2021-05-26 11:57:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:57:44.951+03	2021-05-26 11:57:44.958+03	
1028202c-61bd-e2c1-4159-abdfa49a1950	2021-05-26 11:57:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:57:54.952+03	2021-05-26 11:57:54.966+03	
65bee67c-e40a-8077-e443-c0f58c1879d8	2021-05-26 11:58:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:58:15.951+03	2021-05-26 11:58:15.959+03	
d1a3fbd4-6e83-13e8-224f-a120516831ac	2021-05-26 11:58:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:58:35.951+03	2021-05-26 11:58:35.961+03	
5fc54882-57cd-aff8-f2dc-dc1a9978ddbc	2021-05-26 11:58:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:58:55.952+03	2021-05-26 11:58:55.959+03	
47e7cc71-2aa6-739c-162f-23a77933c897	2021-05-26 11:59:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:59:16.951+03	2021-05-26 11:59:16.958+03	
d69e57ef-46be-868f-693d-29a5338a40b1	2021-05-26 11:59:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:59:36.951+03	2021-05-26 11:59:36.958+03	
0f0ac546-727e-3871-ab47-349a0506d85d	2021-05-26 11:59:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:59:56.951+03	2021-05-26 11:59:56.959+03	
cb72c0ea-0f45-e2ce-065f-a33308f660d3	2021-05-26 12:00:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:00:06.951+03	2021-05-26 12:00:06.959+03	
49117637-0422-d026-1d1e-5bdcdcff670a	2021-05-26 12:00:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:00:26.951+03	2021-05-26 12:00:26.961+03	
cc65f850-4482-f60f-1b8e-11e8101a7fa5	2021-05-26 12:00:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:00:46.951+03	2021-05-26 12:00:46.967+03	
adb3786d-ee84-1c5a-cc85-f9f1560d1afe	2021-05-26 12:01:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:01:06.951+03	2021-05-26 12:01:06.959+03	
3585168c-9b9d-d834-3e49-2ea580fa9ac9	2021-05-26 12:01:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:01:26.951+03	2021-05-26 12:01:26.961+03	
5b123086-d7f6-10d2-3d85-d211369fd8a2	2021-05-26 12:01:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:01:46.951+03	2021-05-26 12:01:46.96+03	
3b1d2c34-2913-43d4-d32a-766685da817a	2021-05-26 12:02:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:02:16.951+03	2021-05-26 12:02:16.961+03	
a0799326-0845-4cfa-ead1-2574e87d03db	2021-05-26 12:02:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:02:36.951+03	2021-05-26 12:02:36.96+03	
c847b8a6-2ac4-9c16-0bbb-f2a13e34264c	2021-05-26 12:02:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:02:56.951+03	2021-05-26 12:02:56.959+03	
130c16ad-ecd9-42ba-e950-41264452419e	2021-05-26 12:03:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:03:16.951+03	2021-05-26 12:03:16.958+03	
6891a6c0-d552-4709-a8cc-aa4abc29439d	2021-05-26 12:03:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:03:36.951+03	2021-05-26 12:03:36.958+03	
e788965e-f7b3-2fbc-34e2-7d41fa0b26d8	2021-05-26 12:03:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:03:56.951+03	2021-05-26 12:03:56.964+03	
b214ea26-ff04-7d21-5e3b-2699fd000997	2021-05-26 12:04:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:04:16.951+03	2021-05-26 12:04:16.958+03	
e5726f77-3325-bf77-e3b3-1802e386a9bb	2021-05-26 12:04:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:04:36.951+03	2021-05-26 12:04:36.958+03	
b678955d-dfe2-c3ae-7ef5-e192a31cf7bd	2021-05-26 12:04:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:04:56.951+03	2021-05-26 12:04:56.959+03	
3ea817db-3784-4f6f-dd4e-14f97274b087	2021-05-26 12:05:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:05:16.951+03	2021-05-26 12:05:16.959+03	
0bc2bc3c-9f88-bbbf-3294-473425d6ae04	2021-05-26 12:05:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:05:36.951+03	2021-05-26 12:05:36.968+03	
b44eef1f-983f-9fa6-689a-1cafc0c5a862	2021-05-26 12:05:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:05:56.951+03	2021-05-26 12:05:56.958+03	
c2ff8132-69c4-69fa-d6f6-1a71a6a26910	2021-05-26 12:06:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:06:17.952+03	2021-05-26 12:06:17.968+03	
eb197c70-dc91-0c90-b5ab-e9d98e4f559b	2021-05-26 12:06:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:06:38.951+03	2021-05-26 12:06:38.958+03	
28c81779-95b9-6cd3-0c02-042f0499c42a	2021-05-26 12:06:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:06:58.951+03	2021-05-26 12:06:58.96+03	
9868e3f9-e7fe-6ca9-7bef-2465fc395ef1	2021-05-26 12:07:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:07:18.951+03	2021-05-26 12:07:18.959+03	
f3c94752-9438-f071-5bb3-39366b37e632	2021-05-26 12:07:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:07:38.951+03	2021-05-26 12:07:38.958+03	
374eee0c-ff4e-644b-a6ea-0aa4ad76f234	2021-05-26 12:07:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:07:58.951+03	2021-05-26 12:07:58.958+03	
574a71e6-a45c-2229-578a-38480c879207	2021-05-26 12:08:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:08:18.951+03	2021-05-26 12:08:18.959+03	
dff3f330-915d-f1c0-ce16-672e517f9e85	2021-05-26 12:08:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:08:38.951+03	2021-05-26 12:08:38.958+03	
3c00f267-9fd4-c00d-638a-36d45ee48325	2021-05-26 12:08:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:08:58.951+03	2021-05-26 12:08:58.959+03	
8ec7aee7-0d85-468a-636f-5bd2f52dbc9a	2021-05-26 12:09:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:09:18.951+03	2021-05-26 12:09:18.96+03	
63606bc6-c988-7e70-6f56-87673f04c478	2021-05-26 12:09:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:09:38.951+03	2021-05-26 12:09:38.958+03	
0781da71-0ebb-d5bd-ad5a-6b4fb20cd8e4	2021-05-26 12:09:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:09:58.951+03	2021-05-26 12:09:58.96+03	
81b773c4-5057-270e-a71c-3d38d688628a	2021-05-26 12:10:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:10:08.951+03	2021-05-26 12:10:08.96+03	
a5adfe42-7441-10d2-bc76-ae494e6141f1	2021-05-26 12:10:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:10:28.951+03	2021-05-26 12:10:28.959+03	
d9b6caf9-a42e-1af6-9e3b-e2ebae589a5b	2021-05-26 12:10:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:10:48.951+03	2021-05-26 12:10:48.958+03	
1b04ff59-e762-c867-d17e-875d331e5bc1	2021-05-26 12:11:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:11:08.951+03	2021-05-26 12:11:08.958+03	
172efc2e-147c-594e-156f-6a2a40edec1f	2021-05-26 12:11:28.957	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:11:28.956+03	2021-05-26 12:11:28.964+03	
d3e64bf8-bfe1-10e2-870c-df7feb38ad03	2021-05-26 12:11:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:11:49.951+03	2021-05-26 12:11:49.96+03	
534cf92d-e378-f6ba-1521-14fc05edba12	2021-05-26 12:12:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:12:09.951+03	2021-05-26 12:12:09.959+03	
c1f3bb51-01b7-1ef0-e9d3-39140d6ddb57	2021-05-26 12:12:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:12:29.951+03	2021-05-26 12:12:29.96+03	
7a23494b-c570-a8d2-5479-fc5dda43a089	2021-05-26 12:12:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:12:49.951+03	2021-05-26 12:12:49.959+03	
617b1b47-5601-05ce-9ef2-c2adfdc2ff8a	2021-05-26 12:13:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:13:09.951+03	2021-05-26 12:13:09.959+03	
48269c41-0244-9b2a-8f31-46d0f227738d	2021-05-26 12:13:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:13:29.951+03	2021-05-26 12:13:29.958+03	
aa2ed067-acf4-0971-fc57-3f0f47125393	2021-05-26 12:13:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:13:49.951+03	2021-05-26 12:13:49.96+03	
1de549c8-57b5-39c1-683e-44d6f3f0366a	2021-05-26 12:14:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:14:09.951+03	2021-05-26 12:14:09.972+03	
e572df78-f963-fcd9-6559-1a21971eaacc	2021-05-26 12:14:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:14:29.951+03	2021-05-26 12:14:29.959+03	
90045915-31c7-785b-a8e3-887c9a29290b	2021-05-26 12:14:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:14:49.951+03	2021-05-26 12:14:49.959+03	
893872ab-27bd-073c-bb75-6dab4560c56c	2021-05-26 12:15:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:15:10.951+03	2021-05-26 12:15:10.961+03	
c8983b4a-763d-db22-e6f4-b943461f9d7e	2021-05-26 12:15:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:15:30.951+03	2021-05-26 12:15:30.959+03	
92984805-144c-a5bc-36fc-e2a99e288f20	2021-05-26 12:15:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:15:50.951+03	2021-05-26 12:15:50.959+03	
c74fe79c-1988-8a02-367f-4d19664e623a	2021-05-26 12:16:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:16:10.951+03	2021-05-26 12:16:10.959+03	
47cbc1d4-f44f-fa1e-32c2-3d167499fbd4	2021-05-26 12:16:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:16:30.951+03	2021-05-26 12:16:30.959+03	
e39444b5-11d4-5860-d0ae-551b4eae0c82	2021-05-26 12:16:40.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:16:40.951+03	2021-05-26 12:16:40.963+03	
864719a7-85fd-16d5-f218-59c56be9d316	2021-05-26 12:17:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:17:01.952+03	2021-05-26 12:17:01.968+03	
3bf9aece-54dd-3fb7-bd60-1d129acb0315	2021-05-26 12:17:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:17:22.951+03	2021-05-26 12:17:22.959+03	
d6b3fbd3-8717-8f71-fe93-20fa8269dcbb	2021-05-26 11:58:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:58:25.951+03	2021-05-26 11:58:25.961+03	
28fae0a9-df15-5488-4445-399112866368	2021-05-26 11:58:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:58:45.951+03	2021-05-26 11:58:45.958+03	
5ef43b3f-ca0e-f81c-f0a9-16d3514c1627	2021-05-26 11:59:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:59:06.951+03	2021-05-26 11:59:06.959+03	
86c92b55-5974-d894-b724-b399e242797c	2021-05-26 11:59:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:59:26.951+03	2021-05-26 11:59:26.959+03	
081f61fe-4d25-edac-e158-8a3ef4cc6da0	2021-05-26 11:59:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 11:59:46.951+03	2021-05-26 11:59:46.96+03	
32c301bc-c66d-d442-4be3-6042f9fc618b	2021-05-26 12:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 12:00:00.951+03	2021-05-26 12:00:00.977+03	ERROR
73dee569-09fe-a939-e7ce-a002864bb786	2021-05-26 12:00:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:00:16.951+03	2021-05-26 12:00:16.958+03	
d853ad14-7c73-3ffc-e0da-082fb3464898	2021-05-26 12:00:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:00:36.951+03	2021-05-26 12:00:36.973+03	
0a099953-5142-5c3e-26eb-5bf8e4913bcd	2021-05-26 12:00:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:00:56.951+03	2021-05-26 12:00:56.961+03	
7a6f16ba-180f-89bc-972e-b3df02b92f2b	2021-05-26 12:01:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:01:16.951+03	2021-05-26 12:01:16.959+03	
aae1bab3-6ab7-c841-7437-6ac3ef35cf0d	2021-05-26 12:01:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:01:36.951+03	2021-05-26 12:01:36.959+03	
7ce8ecf0-29ca-95b2-baa9-a2ea6beb0314	2021-05-26 12:01:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:01:56.951+03	2021-05-26 12:01:56.961+03	
f6f29d13-eec2-311c-ccbd-8e6d7d9db4ec	2021-05-26 12:02:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:02:06.951+03	2021-05-26 12:02:06.962+03	
f9a645ab-3deb-4303-37b1-e9e61247ac01	2021-05-26 12:02:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:02:26.951+03	2021-05-26 12:02:26.959+03	
28aee584-c477-3c11-87b9-453ec2fd5914	2021-05-26 12:02:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:02:46.951+03	2021-05-26 12:02:46.958+03	
c9893aa0-6e79-12c0-67e7-68e2eba183da	2021-05-26 12:03:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:03:06.951+03	2021-05-26 12:03:06.959+03	
235e5c35-c14c-60b4-2d56-fc57e243a048	2021-05-26 12:03:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:03:26.951+03	2021-05-26 12:03:26.961+03	
905a023d-fe49-61de-d68d-affd5fb95651	2021-05-26 12:03:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:03:46.951+03	2021-05-26 12:03:46.959+03	
15ffd3d4-cfa3-a94b-0aac-0e60f5dc2575	2021-05-26 12:04:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:04:06.951+03	2021-05-26 12:04:06.958+03	
3e7a5356-8973-c3fd-3974-92b7d4ad5d2b	2021-05-26 12:04:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:04:26.951+03	2021-05-26 12:04:26.958+03	
596290b5-4073-9ce8-9049-798118e26fec	2021-05-26 12:04:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:04:46.951+03	2021-05-26 12:04:46.959+03	
8efdec87-c1e9-ee21-50f4-c591f864c632	2021-05-26 12:05:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:05:06.951+03	2021-05-26 12:05:06.959+03	
376ed217-da7f-71bb-afab-925818d8de21	2021-05-26 12:05:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:05:26.951+03	2021-05-26 12:05:26.959+03	
fbc751c0-3fb6-9626-6866-5d7998785539	2021-05-26 12:05:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:05:46.951+03	2021-05-26 12:05:46.959+03	
e78aa34e-f142-463e-d4a6-cec6c8981ef0	2021-05-26 12:06:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:06:06.952+03	2021-05-26 12:06:06.96+03	
802516b8-14f8-e460-8777-f1f5311a8246	2021-05-26 12:06:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:06:28.951+03	2021-05-26 12:06:28.958+03	
1fa08f0d-de35-9677-a642-e0278d82a6f2	2021-05-26 12:06:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:06:48.951+03	2021-05-26 12:06:48.958+03	
d805665d-d6c6-04a0-c1ba-c0ba9fca2865	2021-05-26 12:07:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:07:08.951+03	2021-05-26 12:07:08.963+03	
1591602f-5e95-3657-dbee-00bf3b8440d3	2021-05-26 12:07:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:07:28.951+03	2021-05-26 12:07:28.958+03	
16a22b91-4eb3-5361-6b25-58dd7c9c023c	2021-05-26 12:07:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:07:48.951+03	2021-05-26 12:07:48.97+03	
42dd1ccb-b7e1-16fe-5f0f-3dd2c81da70c	2021-05-26 12:08:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:08:08.951+03	2021-05-26 12:08:08.959+03	
3bf55f6c-10a4-1e7e-16d8-a190d909822c	2021-05-26 12:08:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:08:28.951+03	2021-05-26 12:08:28.958+03	
638357a8-35c9-7dbf-7391-2bb15210e0cd	2021-05-26 12:08:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:08:48.951+03	2021-05-26 12:08:48.972+03	
9ab6855c-61c0-c72c-b1d6-7158df1eaec5	2021-05-26 12:09:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:09:08.951+03	2021-05-26 12:09:08.959+03	
b3ee3244-374f-3f47-725c-39c6ff7c362b	2021-05-26 12:09:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:09:28.951+03	2021-05-26 12:09:28.958+03	
536d73b0-00d8-91d1-77c7-e7e7c549af16	2021-05-26 12:09:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:09:48.951+03	2021-05-26 12:09:48.958+03	
fe972abd-263f-5eb9-1446-9c2c8dc83325	2021-05-26 12:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 12:10:00.951+03	2021-05-26 12:10:00.974+03	ERROR
5bff0852-0e03-bddc-2cf4-b7a148e3b42c	2021-05-26 12:10:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:10:18.951+03	2021-05-26 12:10:18.959+03	
6013da96-0965-c13d-1f0a-f3620c21ca05	2021-05-26 12:10:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:10:38.951+03	2021-05-26 12:10:38.958+03	
50c4e85a-0715-11fd-9582-c4eda86bb21e	2021-05-26 12:10:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:10:58.951+03	2021-05-26 12:10:58.96+03	
a6cde2b0-6ebc-9f38-046a-39280a28a339	2021-05-26 12:11:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:11:18.951+03	2021-05-26 12:11:18.966+03	
ec638cd1-4843-51f2-a9e3-a3164818e8df	2021-05-26 12:11:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:11:39.951+03	2021-05-26 12:11:39.959+03	
b734daaf-69c5-2d7e-48ca-2d94a8c1e7b4	2021-05-26 12:11:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:11:59.951+03	2021-05-26 12:11:59.959+03	
07a1ef92-63ed-3e56-6cf2-a0ac52a252d7	2021-05-26 12:12:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:12:19.951+03	2021-05-26 12:12:19.958+03	
911db73f-1242-acd5-8c4b-1471d51e355b	2021-05-26 12:12:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:12:39.951+03	2021-05-26 12:12:39.959+03	
655541ec-b2f5-ff43-9645-04a4866ad5ae	2021-05-26 12:12:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:12:59.951+03	2021-05-26 12:12:59.96+03	
df2d3f84-9306-7230-167f-f5e2602f2194	2021-05-26 12:13:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:13:19.951+03	2021-05-26 12:13:19.959+03	
942eb7fa-02f1-d2aa-31d7-9197fb9a998f	2021-05-26 12:13:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:13:39.951+03	2021-05-26 12:13:39.959+03	
2913243c-761f-0528-cc96-6533804e470f	2021-05-26 12:13:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:13:59.951+03	2021-05-26 12:13:59.972+03	
5bab0477-f7a7-0855-c7f9-43c74bd6dd2c	2021-05-26 12:14:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:14:19.951+03	2021-05-26 12:14:19.959+03	
4ab82508-12fc-9203-432a-709d230134c2	2021-05-26 12:14:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:14:39.951+03	2021-05-26 12:14:39.959+03	
9cd06dcc-ff30-f055-5da2-a99407a4de9a	2021-05-26 12:14:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:14:59.952+03	2021-05-26 12:14:59.961+03	
a52c811d-e679-e151-21a0-1ba996579081	2021-05-26 12:15:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:15:20.951+03	2021-05-26 12:15:20.959+03	
f1923abb-d06b-890b-7253-60774d831a0a	2021-05-26 12:15:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:15:40.951+03	2021-05-26 12:15:40.958+03	
0da45fd2-fab6-9816-9fb0-82a76c88359b	2021-05-26 12:16:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:16:00.951+03	2021-05-26 12:16:00.959+03	
96ecdde8-0aad-9b3e-1e0f-203c4dd8f273	2021-05-26 12:16:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:16:20.951+03	2021-05-26 12:16:20.959+03	
bd39c0fa-ef1d-bd1e-3028-4221059da178	2021-05-26 12:16:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:16:50.952+03	2021-05-26 12:16:50.96+03	
99470beb-5de4-0814-6e1b-00e60c0e01a6	2021-05-26 12:17:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:17:12.951+03	2021-05-26 12:17:12.958+03	
9f1d8171-b4b9-8be2-a3f5-bd903b6f9c49	2021-05-26 12:17:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:17:32.951+03	2021-05-26 12:17:32.958+03	
729b71a4-3122-bbba-ab79-6f87437217f0	2021-05-26 12:17:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:17:53.951+03	2021-05-26 12:17:53.958+03	
2493cc3c-495d-97c7-217f-c2554778f65c	2021-05-26 12:18:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:18:13.951+03	2021-05-26 12:18:13.958+03	
7b97676d-9ca0-9154-51ca-9e514b3799ce	2021-05-26 12:18:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:18:33.951+03	2021-05-26 12:18:33.96+03	
edd9ac2f-e857-c4a5-34f6-48b02475eb7c	2021-05-26 12:18:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:18:53.951+03	2021-05-26 12:18:53.959+03	
89c2d2c8-0839-36e9-64a0-910bc1ee4dc4	2021-05-26 12:17:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:17:42.952+03	2021-05-26 12:17:42.96+03	
5d28f40c-b617-f910-648c-7ad4d5f3ecdb	2021-05-26 12:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:18:03.951+03	2021-05-26 12:18:03.959+03	
0428bbf8-9be7-ec4e-486c-1d879d934914	2021-05-26 12:18:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:18:23.951+03	2021-05-26 12:18:23.959+03	
e09f5dce-3317-030a-7dec-6debec640e4e	2021-05-26 12:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:18:43.951+03	2021-05-26 12:18:43.958+03	
8a3e4f81-a611-c5d9-c8ab-36ddbb8f82da	2021-05-26 12:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:19:13.951+03	2021-05-26 12:19:13.959+03	
9a759721-293c-d293-50ee-1a49f4a947bf	2021-05-26 12:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:19:33.951+03	2021-05-26 12:19:33.958+03	
73ae61a6-210d-ef79-f925-cc964bc11b4f	2021-05-26 12:19:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:19:53.951+03	2021-05-26 12:19:53.958+03	
d799c8f9-df88-bc5b-49b2-1200b09489e7	2021-05-26 12:20:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:20:03.951+03	2021-05-26 12:20:03.958+03	
2d9e7f3f-a616-b359-541f-723d784cc923	2021-05-26 12:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:20:33.951+03	2021-05-26 12:20:33.959+03	
79d3e1b1-e9a6-60e9-5436-eabcd78bb1ce	2021-05-26 12:20:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:20:53.951+03	2021-05-26 12:20:53.958+03	
0fd90b0a-b24b-86b5-90e7-853bbb04c168	2021-05-26 12:21:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:21:13.951+03	2021-05-26 12:21:13.959+03	
06acc364-60d1-612c-9259-ecc3306f7033	2021-05-26 12:21:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:21:33.951+03	2021-05-26 12:21:33.96+03	
89a39b26-a892-254a-83e0-19843a0b336b	2021-05-26 12:21:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:21:53.951+03	2021-05-26 12:21:53.96+03	
bd01434c-f7a6-a246-181c-60842cf6545d	2021-05-26 12:22:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:22:13.951+03	2021-05-26 12:22:13.96+03	
174dd295-f823-382d-25d9-d8773eb0b784	2021-05-26 12:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:22:33.951+03	2021-05-26 12:22:33.958+03	
bd61b440-025c-c1e5-1568-3f047ec6127b	2021-05-26 12:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:23:03.951+03	2021-05-26 12:23:03.959+03	
a0de79f6-39fb-6c55-a933-5a30582baa07	2021-05-26 12:23:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:23:23.951+03	2021-05-26 12:23:23.959+03	
733920d5-a7c1-bd80-7fac-3ebab1757783	2021-05-26 12:23:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:23:43.951+03	2021-05-26 12:23:43.959+03	
eb2b6cd8-37c5-2ba0-3111-eaa6b7909aaf	2021-05-26 12:23:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:23:53.951+03	2021-05-26 12:23:53.958+03	
510fb870-8770-e602-cbf4-94f52be79dec	2021-05-26 12:24:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:24:03.951+03	2021-05-26 12:24:03.958+03	
018521a7-37a5-578d-3c3e-98d2906253ee	2021-05-26 12:24:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:24:23.951+03	2021-05-26 12:24:23.959+03	
a5bbec49-b245-daec-c851-97b0a88782d2	2021-05-26 12:24:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:24:43.951+03	2021-05-26 12:24:43.961+03	
161771b3-5d44-b47b-6a0c-5ecc01f2566b	2021-05-26 12:25:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:25:03.951+03	2021-05-26 12:25:03.959+03	
f596ad28-2c36-852a-1709-ac06de30248f	2021-05-26 12:25:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:25:23.951+03	2021-05-26 12:25:23.958+03	
a017cb9b-2097-b22e-7a3f-91f5afbabd72	2021-05-26 12:25:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:25:43.951+03	2021-05-26 12:25:43.959+03	
ce242362-5818-4a61-d731-24119522e707	2021-05-26 12:26:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:26:03.951+03	2021-05-26 12:26:03.998+03	
cc14513a-e953-c9be-6871-abe9490184e1	2021-05-26 12:26:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:26:23.951+03	2021-05-26 12:26:23.958+03	
7e1512e7-c92a-1f33-36ca-d480a77ec701	2021-05-26 12:26:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:26:43.951+03	2021-05-26 12:26:43.958+03	
44ad43de-035a-e031-5051-aa985858c75d	2021-05-26 12:27:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:27:03.951+03	2021-05-26 12:27:03.958+03	
0bed6252-dfc8-8c2a-755f-0c015f39b006	2021-05-26 12:27:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:27:23.951+03	2021-05-26 12:27:23.958+03	
615f6c47-0619-5097-2930-8abc7916a5f7	2021-05-26 12:27:44.033	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:27:44.032+03	2021-05-26 12:27:44.042+03	
1b9826d8-5f5f-3dfd-41e0-2b1ad73658d3	2021-05-26 12:28:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:28:04.951+03	2021-05-26 12:28:04.958+03	
03e5a48e-3cb0-a889-35a4-5f2ccadab5cb	2021-05-26 12:28:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:28:24.951+03	2021-05-26 12:28:24.959+03	
c2c331a6-bfa7-7893-108d-c3161b509651	2021-05-26 12:28:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:28:44.951+03	2021-05-26 12:28:44.959+03	
f1133f72-abdb-6d90-4294-ec3f4038a6f9	2021-05-26 12:29:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:29:04.951+03	2021-05-26 12:29:04.96+03	
5598a39d-6afe-0613-149f-c5bab82ccf48	2021-05-26 12:29:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:29:24.951+03	2021-05-26 12:29:24.967+03	
d2dc9d0b-7d09-abe6-ee05-8dbb72e80054	2021-05-26 12:29:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:29:44.951+03	2021-05-26 12:29:44.959+03	
05c5c42a-3f7d-9a96-b710-8bcd67fd3fa4	2021-05-26 12:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 12:30:00.951+03	2021-05-26 12:30:00.973+03	ERROR
541bdceb-321c-9605-9d0f-86637e4149be	2021-05-26 12:30:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:30:14.951+03	2021-05-26 12:30:14.96+03	
b862038a-d047-0876-e075-bd1ead2acd01	2021-05-26 12:30:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:30:34.951+03	2021-05-26 12:30:34.958+03	
433c6aee-bcb8-50d0-7fae-7b8a569f7a5a	2021-05-26 12:30:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:30:54.951+03	2021-05-26 12:30:54.964+03	
fc6fc369-f859-689b-353a-600d5cba79d3	2021-05-26 12:31:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:31:14.951+03	2021-05-26 12:31:14.959+03	
197302f7-5df6-0f9b-068e-116e44f04dac	2021-05-26 12:31:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:31:34.951+03	2021-05-26 12:31:34.958+03	
7a81f3fb-f64d-ca31-2f8b-f1464cc45473	2021-05-26 12:31:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:31:54.951+03	2021-05-26 12:31:54.958+03	
8b7832e7-2bf0-6fbb-b9e8-c2c82d3874c3	2021-05-26 12:32:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:32:14.951+03	2021-05-26 12:32:14.958+03	
423c0c81-f736-3899-5bce-6cb1d40e3793	2021-05-26 12:32:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:32:34.951+03	2021-05-26 12:32:34.958+03	
88f11443-cccd-3ef1-1b23-704f3a2b0f47	2021-05-26 12:32:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:32:54.951+03	2021-05-26 12:32:54.957+03	
9f93a128-0d63-75bd-55f8-fdf641d769bc	2021-05-26 12:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:33:14.951+03	2021-05-26 12:33:14.959+03	
3ecac860-bc3a-92b9-676c-4fe5ea163edd	2021-05-26 12:33:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:33:34.951+03	2021-05-26 12:33:34.958+03	
9bbc2923-7c18-b1e0-742d-853a01130d45	2021-05-26 12:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:33:54.951+03	2021-05-26 12:33:54.958+03	
7fbba29b-f6fb-6661-af9e-fb81b2a042bf	2021-05-26 12:34:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:34:14.951+03	2021-05-26 12:34:14.958+03	
7a480c7c-4417-2fdc-4774-941e70e9e7a6	2021-05-26 12:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:34:34.951+03	2021-05-26 12:34:34.958+03	
e6750d89-26f4-ac84-eca1-209db2879d6d	2021-05-26 12:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:34:54.951+03	2021-05-26 12:34:54.959+03	
12ed777f-8c83-9bb5-f591-bc844e7e4fd8	2021-05-26 12:35:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:35:24.951+03	2021-05-26 12:35:24.958+03	
cfb1e4c4-62db-b209-9838-92c3d5128e50	2021-05-26 12:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:35:44.951+03	2021-05-26 12:35:44.959+03	
2466d624-bff6-812e-d094-040ae9c4828d	2021-05-26 12:36:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:36:04.951+03	2021-05-26 12:36:04.96+03	
4b6bfe16-892d-448d-7da3-1b5963887f63	2021-05-26 12:36:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:36:24.951+03	2021-05-26 12:36:24.959+03	
e394f144-d058-856d-8a50-bd947b8d0486	2021-05-26 12:36:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:36:44.951+03	2021-05-26 12:36:44.958+03	
7d7d220b-70c4-7502-7f6e-84c4585ec42b	2021-05-26 12:37:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:37:04.951+03	2021-05-26 12:37:04.959+03	
d58089df-f3f5-f378-1d37-94ddee26beb2	2021-05-26 12:37:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:37:24.951+03	2021-05-26 12:37:24.959+03	
6f169ed4-aa7a-21b2-bfb1-514dddb4f221	2021-05-26 12:37:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:37:44.951+03	2021-05-26 12:37:44.96+03	
668789f7-1506-efe0-1ef5-565ae7262532	2021-05-26 12:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:38:04.951+03	2021-05-26 12:38:04.959+03	
050118a8-eb8e-f9c7-b8a4-e725d325c664	2021-05-26 12:38:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:38:24.951+03	2021-05-26 12:38:24.958+03	
ce1bff82-5194-b946-994e-08c9b8b28c91	2021-05-26 12:19:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:19:03.951+03	2021-05-26 12:19:03.96+03	
70eac17a-fa8a-17f0-59b1-6bd67dfeda45	2021-05-26 12:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:19:23.951+03	2021-05-26 12:19:23.958+03	
0583e48e-fb42-b290-1759-e1695e459c8b	2021-05-26 12:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:19:43.951+03	2021-05-26 12:19:43.958+03	
bd72dcf5-7ec9-8322-508a-8089e68ddcc3	2021-05-26 12:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 12:20:00.951+03	2021-05-26 12:20:00.956+03	ERROR
d795aa83-69e0-702d-12ca-da13ac0ac2c4	2021-05-26 12:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:20:13.951+03	2021-05-26 12:20:13.96+03	
c35f9e7b-61ba-6f52-f950-3f8b7e7648c3	2021-05-26 12:20:23.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:20:23.951+03	2021-05-26 12:20:23.966+03	
715cdae8-7922-da27-62dc-80a055004fe2	2021-05-26 12:20:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:20:43.951+03	2021-05-26 12:20:43.958+03	
977c2394-7f96-9bb6-ada4-a7a521b6273d	2021-05-26 12:21:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:21:03.951+03	2021-05-26 12:21:03.959+03	
bc142686-435b-371b-f4a2-b7ef9de4df04	2021-05-26 12:21:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:21:23.951+03	2021-05-26 12:21:23.958+03	
d7becf70-95f0-d9b7-83fb-e2a7abeb45ca	2021-05-26 12:21:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:21:43.951+03	2021-05-26 12:21:43.959+03	
ae36f3af-7a8e-7448-7916-1ccc46faac49	2021-05-26 12:22:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:22:03.951+03	2021-05-26 12:22:03.959+03	
740d6ebc-53d1-27db-c6a2-a859dbd0d58c	2021-05-26 12:22:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:22:23.951+03	2021-05-26 12:22:23.958+03	
99c1ac77-ce2f-6bcb-8423-2624cc6aa754	2021-05-26 12:22:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:22:43.951+03	2021-05-26 12:22:43.958+03	
55e46b08-6550-6896-64bf-b14d72733283	2021-05-26 12:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:22:53.951+03	2021-05-26 12:22:53.959+03	
d3d77915-5ed5-b2f1-87cc-47add028fc9c	2021-05-26 12:23:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:23:13.951+03	2021-05-26 12:23:13.959+03	
309dea29-ba20-5060-6d56-3ab9e3c1a783	2021-05-26 12:23:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:23:33.951+03	2021-05-26 12:23:33.959+03	
bcf729af-211c-c10b-bd22-aa0b026c6730	2021-05-26 12:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:24:13.951+03	2021-05-26 12:24:13.96+03	
2502af54-f712-4228-95fb-de5617bdd9a9	2021-05-26 12:24:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:24:33.951+03	2021-05-26 12:24:33.958+03	
e77ef21a-95e1-cffb-b435-ed5ffecd1c27	2021-05-26 12:24:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:24:53.951+03	2021-05-26 12:24:53.959+03	
e6ba5a0c-5964-12db-f1d6-a78f940f21f3	2021-05-26 12:25:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:25:13.951+03	2021-05-26 12:25:13.958+03	
49c507ce-ba64-31b9-af9f-50ad6176e87d	2021-05-26 12:25:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:25:33.951+03	2021-05-26 12:25:33.958+03	
d526ea55-2698-3757-ab4c-e3a99b0fcf53	2021-05-26 12:25:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:25:53.951+03	2021-05-26 12:25:53.958+03	
9b8b5487-5012-f9cd-0e7a-f16b8ecd7d95	2021-05-26 12:26:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:26:13.951+03	2021-05-26 12:26:13.958+03	
804c0ea5-1a15-00c4-ecb7-d0a24542b5b7	2021-05-26 12:26:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:26:33.951+03	2021-05-26 12:26:33.958+03	
4ed938a0-4250-f314-4ba7-0bdaab60db0c	2021-05-26 12:26:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:26:53.951+03	2021-05-26 12:26:53.958+03	
2aff1233-1186-641d-724b-da161099a7a7	2021-05-26 12:27:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:27:13.951+03	2021-05-26 12:27:13.958+03	
53ddb0f7-1b51-2963-7b82-4fca36932674	2021-05-26 12:27:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:27:33.951+03	2021-05-26 12:27:33.958+03	
4c0e7699-7ec9-64d0-c8e7-7f7957adf7b6	2021-05-26 12:27:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:27:54.951+03	2021-05-26 12:27:54.959+03	
2b20f6af-45ba-a717-1efd-9fc5fb65f963	2021-05-26 12:28:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:28:14.951+03	2021-05-26 12:28:14.958+03	
aa04e84c-72ce-3282-8cd4-74e017c18ea7	2021-05-26 12:28:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:28:34.951+03	2021-05-26 12:28:35.009+03	
33fb4109-2222-3251-3ba1-b15d95dcb747	2021-05-26 12:28:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:28:54.951+03	2021-05-26 12:28:54.959+03	
6caa1ec8-4fa4-8b12-fd93-4214246fd076	2021-05-26 12:29:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:29:14.951+03	2021-05-26 12:29:14.958+03	
9e2960c5-4ea8-c009-43e8-9d8d2ea294c2	2021-05-26 12:29:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:29:34.951+03	2021-05-26 12:29:34.958+03	
bbce872f-5a33-9398-d819-afec7ad52823	2021-05-26 12:29:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:29:54.951+03	2021-05-26 12:29:54.958+03	
4c7d219c-b8d2-4536-1bf1-d483a4735965	2021-05-26 12:30:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:30:04.951+03	2021-05-26 12:30:04.959+03	
1ee965b4-3d55-9308-d5f5-b2ffd1500072	2021-05-26 12:30:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:30:24.951+03	2021-05-26 12:30:24.959+03	
e98f68c0-1ea3-3e63-b87d-4dd55a82d13a	2021-05-26 12:30:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:30:44.951+03	2021-05-26 12:30:44.959+03	
bd88c512-83b7-d1c5-16d8-42785a1bf21b	2021-05-26 12:31:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:31:04.951+03	2021-05-26 12:31:04.958+03	
04ecdbdc-46aa-4d61-c94c-8b1ba747def2	2021-05-26 12:31:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:31:24.951+03	2021-05-26 12:31:24.958+03	
a3992241-5102-2930-8941-a8d7c5a2d16f	2021-05-26 12:31:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:31:44.951+03	2021-05-26 12:31:44.958+03	
b436c83e-d47a-47fc-fbaa-22452484ea8c	2021-05-26 12:32:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:32:04.951+03	2021-05-26 12:32:05.069+03	
410d9265-bf2e-c2a1-28db-d2cfd0516a78	2021-05-26 12:32:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:32:24.951+03	2021-05-26 12:32:24.958+03	
9e62caf5-69ad-299f-83ea-008c4c33b00c	2021-05-26 12:32:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:32:44.951+03	2021-05-26 12:32:44.958+03	
ca2ada35-89d1-4d95-583c-0a7c8ffcfe72	2021-05-26 12:33:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:33:04.951+03	2021-05-26 12:33:04.958+03	
9e42a154-302f-e90b-1f08-9326f435783b	2021-05-26 12:33:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:33:24.951+03	2021-05-26 12:33:24.958+03	
f1dc3abd-3dfa-77e5-4039-ae8298c36f81	2021-05-26 12:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:33:44.951+03	2021-05-26 12:33:44.959+03	
e8493ff5-3c5d-3490-8ebf-87e31f261da5	2021-05-26 12:34:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:34:04.951+03	2021-05-26 12:34:04.959+03	
ec91b213-9346-6e5a-62a9-2e44c2d0e648	2021-05-26 12:34:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:34:24.951+03	2021-05-26 12:34:24.958+03	
26b2753b-dbc5-8318-a34c-645454db914c	2021-05-26 12:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:34:44.951+03	2021-05-26 12:34:44.959+03	
873e1b4f-1733-f0e3-a8e8-0cd6419bbfb9	2021-05-26 12:35:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:35:04.951+03	2021-05-26 12:35:04.958+03	
6bbfa89d-7893-8843-ba77-bf38ee253f64	2021-05-26 12:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:35:14.951+03	2021-05-26 12:35:14.958+03	
76a1393e-2c87-b092-c7e0-4bc83783c228	2021-05-26 12:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:35:34.951+03	2021-05-26 12:35:34.958+03	
d3d9be2a-95db-64a8-a3ff-7bf3de55cdea	2021-05-26 12:35:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:35:54.951+03	2021-05-26 12:35:54.96+03	
c0df091f-5730-3c86-7dae-fdd3db6ebff7	2021-05-26 12:36:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:36:14.951+03	2021-05-26 12:36:14.959+03	
0731f1ed-adb2-18a7-75ee-c524537fc962	2021-05-26 12:36:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:36:34.951+03	2021-05-26 12:36:34.979+03	
f5d5c49a-4664-119e-adea-f1c5e1cba900	2021-05-26 12:36:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:36:54.951+03	2021-05-26 12:36:54.959+03	
dff61ab9-9d3c-393e-d819-864be989a964	2021-05-26 12:37:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:37:14.951+03	2021-05-26 12:37:14.964+03	
8ea3b837-6b5a-50c3-de66-70e00c97e00c	2021-05-26 12:37:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:37:34.951+03	2021-05-26 12:37:34.958+03	
8e2542c3-ef98-1b05-8022-3d9e3d3df20d	2021-05-26 12:37:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:37:54.951+03	2021-05-26 12:37:54.958+03	
0ed6c3d4-47d3-883a-9667-e2753ef1c41f	2021-05-26 12:38:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:38:14.951+03	2021-05-26 12:38:14.958+03	
d9e64ca6-c0bf-e2e7-200b-bf0a57070ea1	2021-05-26 12:38:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:38:34.951+03	2021-05-26 12:38:34.958+03	
269ae395-7eed-e1e4-b926-775753f4e201	2021-05-26 12:38:54.965	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:38:54.964+03	2021-05-26 12:38:54.974+03	
94afbc5e-457c-c831-9f60-cd3182f6c658	2021-05-26 12:39:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:39:15.951+03	2021-05-26 12:39:15.958+03	
294dca7e-616b-cf63-e7be-b104b66a8b48	2021-05-26 12:38:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:38:44.951+03	2021-05-26 12:38:44.961+03	
57e0c49e-3996-f08b-0742-64dea9ee7581	2021-05-26 12:39:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:39:05.951+03	2021-05-26 12:39:05.959+03	
d3f07be8-1371-b2f8-ec2e-669d04622912	2021-05-26 12:39:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:39:25.951+03	2021-05-26 12:39:25.959+03	
1964f9f4-9b58-9ccd-cf59-54f5b6827d61	2021-05-26 12:39:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:39:45.951+03	2021-05-26 12:39:45.958+03	
9877d62c-8a7d-9e15-cfea-e0ddbd9ab2b7	2021-05-26 12:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 12:40:00.951+03	2021-05-26 12:40:00.974+03	ERROR
2da11b27-54ab-dcf4-c4ed-c4ba88609ecd	2021-05-26 12:40:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:40:15.951+03	2021-05-26 12:40:15.958+03	
33884311-1429-80ca-8c16-fddc5c3e7503	2021-05-26 12:40:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:40:35.951+03	2021-05-26 12:40:35.958+03	
5c3c52b2-75ed-3f3e-bd34-164397d8a9d0	2021-05-26 12:40:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:40:55.951+03	2021-05-26 12:40:55.958+03	
1b827dde-723f-55ac-da64-d68457608609	2021-05-26 12:41:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:41:15.951+03	2021-05-26 12:41:15.958+03	
43b4252a-d89b-7a2e-2133-9783f7660ec6	2021-05-26 12:41:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:41:35.951+03	2021-05-26 12:41:35.958+03	
333135a6-497a-75d9-d6a3-37996617c5f1	2021-05-26 12:41:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:41:55.951+03	2021-05-26 12:41:55.959+03	
ae5472a1-614b-3518-9181-9dc07fff7ad9	2021-05-26 12:42:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:42:15.951+03	2021-05-26 12:42:15.958+03	
78f793f5-f6cd-bddf-a198-6ce60bfd36d9	2021-05-26 12:42:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:42:35.951+03	2021-05-26 12:42:35.959+03	
15e43413-6291-6a31-e0dd-b3bc26f80d25	2021-05-26 12:42:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:42:55.951+03	2021-05-26 12:42:55.958+03	
4c2756a2-19b1-b7e9-94ce-dd41fe52f2b5	2021-05-26 12:43:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:43:15.951+03	2021-05-26 12:43:15.961+03	
dc504ebe-dc68-795a-e5a3-9ad5bd870ea2	2021-05-26 12:43:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:43:35.951+03	2021-05-26 12:43:35.959+03	
680241cd-e1d9-64f5-6a59-739ce21dcbcc	2021-05-26 12:43:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:43:55.951+03	2021-05-26 12:43:55.958+03	
01d4f22b-67e4-edc1-8b1d-e4cf6a8161a7	2021-05-26 12:44:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:44:15.951+03	2021-05-26 12:44:15.967+03	
91983d7d-04b7-ab17-13d8-4b5a71477da7	2021-05-26 12:44:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:44:35.951+03	2021-05-26 12:44:35.958+03	
58e9d9d2-d245-aa98-e0c7-3b83731329bb	2021-05-26 12:44:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:44:55.951+03	2021-05-26 12:44:55.959+03	
7df767d1-e643-fee9-b4b5-2759af04c617	2021-05-26 12:45:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:45:15.951+03	2021-05-26 12:45:15.958+03	
b95513ef-817a-04b8-1ee7-4ef78328f99e	2021-05-26 12:45:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:45:35.951+03	2021-05-26 12:45:35.959+03	
8f8c266e-3d67-a1d5-ba82-197233a1a1e0	2021-05-26 12:45:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:45:55.951+03	2021-05-26 12:45:55.966+03	
fade8340-44a3-da88-50fb-cf54725c85f8	2021-05-26 12:46:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:46:15.951+03	2021-05-26 12:46:15.958+03	
e3bd7c71-3423-ea06-fb74-74c1d701102d	2021-05-26 12:46:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:46:35.951+03	2021-05-26 12:46:35.958+03	
790a731a-5013-12d4-7be2-46bb4992a8dc	2021-05-26 12:46:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:46:55.951+03	2021-05-26 12:46:55.958+03	
5432de7b-ceb2-40d4-44d4-d3850f563891	2021-05-26 12:47:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:47:15.951+03	2021-05-26 12:47:15.958+03	
f66c3804-43b7-aefb-38a2-2784b43ba0e5	2021-05-26 12:47:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:47:35.951+03	2021-05-26 12:47:35.958+03	
e401928f-b8ef-de7e-a67f-f3fc9de21681	2021-05-26 12:47:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:47:55.951+03	2021-05-26 12:47:55.958+03	
efc07b8c-88b4-c9e7-fd4b-7cb0018e8cae	2021-05-26 12:48:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:48:15.951+03	2021-05-26 12:48:15.957+03	
2cd31846-a73f-f52c-c7e1-2eb2f5bb696d	2021-05-26 12:48:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:48:35.951+03	2021-05-26 12:48:35.959+03	
9f241e1e-ca88-7f3c-c003-df6ee603ba8b	2021-05-26 12:48:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:48:55.951+03	2021-05-26 12:48:55.958+03	
1bc755bb-6226-e6bb-4c90-b4dbc16b3fa3	2021-05-26 12:49:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:49:15.951+03	2021-05-26 12:49:15.958+03	
60d566cb-e3b4-28c5-321d-4afe9566cc92	2021-05-26 12:49:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:49:25.951+03	2021-05-26 12:49:25.958+03	
05ce4bf8-4949-ef45-3649-c889e0ac8301	2021-05-26 12:49:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:49:45.951+03	2021-05-26 12:49:45.958+03	
ba69699e-79b2-4c68-d50f-ab1d52de18ff	2021-05-26 12:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 12:50:00.951+03	2021-05-26 12:50:00.975+03	ERROR
f9954005-8b4e-d289-fe8c-3243fb43d496	2021-05-26 12:50:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:50:15.951+03	2021-05-26 12:50:15.958+03	
d62b2081-74d1-0acd-60ae-5630cfaf66db	2021-05-26 12:50:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:50:35.951+03	2021-05-26 12:50:35.957+03	
a3a6cf2a-991d-fcd8-da0d-c47ef65e291c	2021-05-26 12:50:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:50:55.951+03	2021-05-26 12:50:55.958+03	
34b23ff6-6520-9718-12dc-3d03f2ce417d	2021-05-26 12:51:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:51:15.951+03	2021-05-26 12:51:15.958+03	
1cf2ef72-a73e-3c48-b442-1b5a0656547e	2021-05-26 12:51:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:51:35.951+03	2021-05-26 12:51:35.957+03	
9a85f1db-1a44-afb6-522d-184bae8b457c	2021-05-26 12:51:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:51:55.951+03	2021-05-26 12:51:55.959+03	
d560c7ac-b53e-3ba3-2ac0-c641b5846016	2021-05-26 12:52:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:52:15.951+03	2021-05-26 12:52:15.958+03	
14c886b4-bab8-e500-1eaa-74f04ec00cc8	2021-05-26 12:52:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:52:35.951+03	2021-05-26 12:52:35.958+03	
81fbd2ef-42fa-666c-6882-2c3bce6c7e3d	2021-05-26 12:52:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:52:55.951+03	2021-05-26 12:52:55.958+03	
92099f01-ba5d-2008-3878-0c57de3831be	2021-05-26 12:53:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:53:15.951+03	2021-05-26 12:53:15.958+03	
071a6b00-be93-4032-daf3-7b1d75a41c80	2021-05-26 12:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:53:35.951+03	2021-05-26 12:53:35.958+03	
4cf65d44-97df-8da9-b553-9e2a5413a967	2021-05-26 12:53:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:53:55.951+03	2021-05-26 12:53:55.958+03	
348103c7-52cc-3aad-9490-b25ab68fc11f	2021-05-26 12:54:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:54:15.952+03	2021-05-26 12:54:15.959+03	
ef86d6c7-09f2-3f10-8918-5440cd20ca78	2021-05-26 12:54:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:54:36.951+03	2021-05-26 12:54:36.958+03	
dd0e6ab9-c816-8fe5-1e80-6eec85ec749d	2021-05-26 12:54:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:54:56.951+03	2021-05-26 12:54:56.958+03	
12271cd9-f82a-6a12-5782-d1d5bab46011	2021-05-26 12:55:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:55:16.951+03	2021-05-26 12:55:16.959+03	
e1248e83-234d-6e85-335a-87a4febb4f54	2021-05-26 12:55:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:55:36.951+03	2021-05-26 12:55:36.958+03	
a6cde7ef-2eee-a59e-f5e2-0b69d8137537	2021-05-26 12:55:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:55:56.951+03	2021-05-26 12:55:56.958+03	
0121b8ae-f5b7-833b-767d-b3403e285c94	2021-05-26 12:56:16.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:56:16.952+03	2021-05-26 12:56:17.29+03	
5e40577c-8e96-bd2a-5aa9-e5e3fa60cf22	2021-05-26 12:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:56:38.951+03	2021-05-26 12:56:38.961+03	
d5435fd9-aac7-2a45-883a-f5a8097d8761	2021-05-26 12:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:56:58.951+03	2021-05-26 12:56:58.97+03	
8f6ef7cc-575a-ff8e-1f95-7450c911505e	2021-05-26 12:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:57:18.951+03	2021-05-26 12:57:18.959+03	
c3f0b129-e65d-ad8a-6e2f-25fe1cd910ce	2021-05-26 12:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:57:38.951+03	2021-05-26 12:57:38.959+03	
712c1baf-1b6b-7cbe-dabf-62470db715e9	2021-05-26 12:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:57:58.951+03	2021-05-26 12:57:58.958+03	
4241fb0c-effc-a8dc-f823-fe1347370ec3	2021-05-26 12:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:58:18.951+03	2021-05-26 12:58:18.958+03	
1f01d79f-98a8-e000-8960-cc18143cdee0	2021-05-26 12:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:58:38.951+03	2021-05-26 12:58:38.958+03	
c65e631a-a918-49b0-3b19-b8c73c01296f	2021-05-26 12:58:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:58:58.951+03	2021-05-26 12:58:58.961+03	
ae8d90be-ea11-98b7-8a63-40c8ba0a631a	2021-05-26 12:39:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:39:35.951+03	2021-05-26 12:39:35.958+03	
774fed9e-c15d-3224-4775-2d657d930a59	2021-05-26 12:39:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:39:55.951+03	2021-05-26 12:39:55.959+03	
057e42f9-42b7-b78c-2f8b-36af7385967f	2021-05-26 12:40:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:40:05.951+03	2021-05-26 12:40:05.958+03	
0acf2c60-cfa6-013d-a900-e631f1c22620	2021-05-26 12:40:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:40:25.951+03	2021-05-26 12:40:25.958+03	
094b71a1-815c-f804-ee6c-257bd79307d8	2021-05-26 12:40:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:40:45.951+03	2021-05-26 12:40:45.958+03	
769d476f-a5bc-cac6-7911-f2207890c86b	2021-05-26 12:41:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:41:05.951+03	2021-05-26 12:41:05.959+03	
9b8f0522-6306-f6d4-9cfa-6387f4cb596f	2021-05-26 12:41:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:41:25.951+03	2021-05-26 12:41:25.961+03	
a97367f3-6c55-1079-58fe-bd5ed40f0c3b	2021-05-26 12:41:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:41:45.951+03	2021-05-26 12:41:45.96+03	
110a721c-a079-7529-c769-e9446143ca40	2021-05-26 12:42:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:42:05.951+03	2021-05-26 12:42:05.958+03	
fab7f0f2-b8ab-2f17-3994-a4fda9629ce2	2021-05-26 12:42:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:42:25.951+03	2021-05-26 12:42:25.958+03	
e80d0eac-d21a-845c-4548-cc58a4228f81	2021-05-26 12:42:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:42:45.951+03	2021-05-26 12:42:45.958+03	
efb08cc0-a927-b407-e999-9bd7e62f016b	2021-05-26 12:43:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:43:05.951+03	2021-05-26 12:43:05.959+03	
6decf10e-0528-deeb-4e37-12b872b8e296	2021-05-26 12:43:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:43:25.951+03	2021-05-26 12:43:25.959+03	
056d65b1-bcf0-27d6-a3b9-870748aa1b8e	2021-05-26 12:43:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:43:45.951+03	2021-05-26 12:43:45.958+03	
10ff71e8-9d9a-4bc5-b39e-e60c2ed7fde4	2021-05-26 12:44:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:44:05.951+03	2021-05-26 12:44:05.958+03	
17a7f525-ced6-9e71-e092-ac6b04f3973a	2021-05-26 12:44:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:44:25.951+03	2021-05-26 12:44:25.958+03	
1caa5696-a62c-9117-ed3b-136e85ce6314	2021-05-26 12:44:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:44:45.951+03	2021-05-26 12:44:45.958+03	
b8f11996-bc64-2d7f-154c-110f041a63db	2021-05-26 12:45:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:45:05.951+03	2021-05-26 12:45:05.958+03	
76d03855-0d51-26b3-ffe6-d763ea4342f9	2021-05-26 12:45:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:45:25.951+03	2021-05-26 12:45:25.958+03	
e2c6fcc6-7fe6-4d19-474d-31e2520cf27c	2021-05-26 12:45:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:45:45.951+03	2021-05-26 12:45:45.957+03	
9ea1f7bb-9cd6-1d4f-d4a3-f12549970a13	2021-05-26 12:46:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:46:05.951+03	2021-05-26 12:46:05.958+03	
dfbc969c-3c25-f71d-b8a0-eec6c143d51d	2021-05-26 12:46:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:46:25.951+03	2021-05-26 12:46:25.958+03	
d64193f5-56ad-6a89-0d38-897def3d66e0	2021-05-26 12:46:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:46:45.951+03	2021-05-26 12:46:45.959+03	
981a7dd1-c948-fbc3-3ba9-2c7566b2e63b	2021-05-26 12:47:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:47:05.951+03	2021-05-26 12:47:05.958+03	
e808b6c8-0ecc-0ef8-b983-1d90f58ae8e8	2021-05-26 12:47:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:47:25.951+03	2021-05-26 12:47:25.958+03	
7eb02494-c24f-b435-3102-4e3957cae748	2021-05-26 12:47:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:47:45.951+03	2021-05-26 12:47:45.957+03	
f92e38be-b416-6067-a1cc-5deded3650d2	2021-05-26 12:48:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:48:05.951+03	2021-05-26 12:48:05.958+03	
b0e8c417-c3d7-4465-0ea8-5dfae7ab859d	2021-05-26 12:48:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:48:25.951+03	2021-05-26 12:48:25.961+03	
4222bfa4-3137-dd90-84d7-223d3d10d555	2021-05-26 12:48:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:48:45.951+03	2021-05-26 12:48:45.958+03	
689229f7-f748-defc-b845-b8571ef3dcc2	2021-05-26 12:49:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:49:05.951+03	2021-05-26 12:49:05.958+03	
3dbb5a44-99ae-3531-b540-0a16f08dc1ec	2021-05-26 12:49:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:49:35.951+03	2021-05-26 12:49:35.957+03	
d22dd50f-d0f4-3c15-e696-9a1e0b372bc7	2021-05-26 12:49:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:49:55.951+03	2021-05-26 12:49:55.958+03	
f7635be3-67ff-5d15-6b6d-accf6e6263bc	2021-05-26 12:50:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:50:05.951+03	2021-05-26 12:50:05.964+03	
a3c50c59-53c5-610e-af4b-0e0c377ffe7c	2021-05-26 12:50:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:50:25.951+03	2021-05-26 12:50:25.958+03	
2e750587-3914-5b97-116f-5a163a9a2c81	2021-05-26 12:50:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:50:45.951+03	2021-05-26 12:50:45.958+03	
0d009e0f-fb85-9773-bc07-80b59cff4880	2021-05-26 12:51:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:51:05.951+03	2021-05-26 12:51:05.957+03	
d4c2d1b9-281f-cd72-b75f-fc26e39c6430	2021-05-26 12:51:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:51:25.951+03	2021-05-26 12:51:25.958+03	
31fef3f3-8f6d-ab23-21b1-d49128c1fb31	2021-05-26 12:51:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:51:45.951+03	2021-05-26 12:51:45.958+03	
84ad9eed-0b70-babc-c028-f1b58ffede05	2021-05-26 12:52:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:52:05.951+03	2021-05-26 12:52:05.958+03	
0ce9a85d-63bd-d58c-4b53-4cff73cc03d0	2021-05-26 12:52:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:52:25.951+03	2021-05-26 12:52:25.959+03	
bc2c15ec-a884-4536-41b4-f0abeb654576	2021-05-26 12:52:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:52:45.951+03	2021-05-26 12:52:45.979+03	
3cc2b6e1-6372-7bb3-838b-d4147a725906	2021-05-26 12:53:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:53:05.951+03	2021-05-26 12:53:05.959+03	
5b0e2cd0-72e0-4ac7-0211-82ef58a4942e	2021-05-26 12:53:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:53:25.951+03	2021-05-26 12:53:25.96+03	
8b8e6c40-728b-cd6b-f5de-29c730ac82f0	2021-05-26 12:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:53:45.951+03	2021-05-26 12:53:45.958+03	
1371ec6f-b553-ef21-813c-7cefdcc451fa	2021-05-26 12:54:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:54:05.951+03	2021-05-26 12:54:05.96+03	
7b85b555-0e93-63ef-656c-4a93c2464500	2021-05-26 12:54:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:54:26.951+03	2021-05-26 12:54:26.958+03	
dcef01d5-267e-720f-37e6-ad5d24d85e47	2021-05-26 12:54:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:54:46.951+03	2021-05-26 12:54:46.958+03	
aa06c373-4e33-6bff-5010-38b66b2a8b70	2021-05-26 12:55:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:55:06.951+03	2021-05-26 12:55:06.958+03	
f588c6bb-00bb-2b42-25a4-aebc2d23e644	2021-05-26 12:55:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:55:26.951+03	2021-05-26 12:55:26.958+03	
1e36d728-de59-da8c-c30d-c978092fde10	2021-05-26 12:55:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:55:46.951+03	2021-05-26 12:55:46.958+03	
ac4238eb-a150-410f-d91a-865284509328	2021-05-26 12:56:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:56:06.951+03	2021-05-26 12:56:06.958+03	
3f6fd76e-3206-4aa6-6e6a-240109ef80be	2021-05-26 12:56:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:56:27.952+03	2021-05-26 12:56:27.959+03	
cb7706e7-17d8-f6f9-0bd5-cb570a507e6d	2021-05-26 12:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:56:48.951+03	2021-05-26 12:56:48.958+03	
7e56e355-61cb-5607-a29f-50157d952d2d	2021-05-26 12:57:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:57:08.951+03	2021-05-26 12:57:08.958+03	
c534a8c2-d79f-9acd-a572-369988fedf0a	2021-05-26 12:57:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:57:28.951+03	2021-05-26 12:57:28.958+03	
a0e71259-5ab4-d61e-7dcc-6a6943549bcf	2021-05-26 12:57:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:57:48.951+03	2021-05-26 12:57:48.959+03	
fca1dc0e-4eb7-cef8-1f3e-d7873a65648b	2021-05-26 12:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:58:08.951+03	2021-05-26 12:58:08.958+03	
18868e44-a913-020f-ed32-5792366e3139	2021-05-26 12:58:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:58:28.951+03	2021-05-26 12:58:28.958+03	
3db037f0-d913-d4fd-e7c3-6564b5358ca4	2021-05-26 12:58:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:58:48.951+03	2021-05-26 12:58:48.958+03	
922c287a-5309-5895-81fd-d904792251e2	2021-05-26 12:59:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:59:08.951+03	2021-05-26 12:59:08.958+03	
d60998ff-1254-ac55-da8b-a8ccc9fc914d	2021-05-26 12:59:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:59:28.951+03	2021-05-26 12:59:28.958+03	
8d52198e-c0ff-b3e0-0910-851f68c9f908	2021-05-26 12:59:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:59:48.951+03	2021-05-26 12:59:48.958+03	
c9468120-6ad6-1f2c-1c23-4cf961a4dfa8	2021-05-26 13:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 13:00:00.951+03	2021-05-26 13:00:00.975+03	ERROR
b0b31236-6de1-2e42-34be-84972be340af	2021-05-26 12:59:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:59:18.951+03	2021-05-26 12:59:18.958+03	
52512f23-0480-7c14-6b11-f810760ee773	2021-05-26 12:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:59:38.951+03	2021-05-26 12:59:38.959+03	
81e15466-0f34-6c18-749d-f63fe887b04f	2021-05-26 12:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 12:59:58.951+03	2021-05-26 12:59:58.958+03	
239f6786-af5c-0c3c-de4f-876a18641253	2021-05-26 13:00:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:00:08.951+03	2021-05-26 13:00:08.958+03	
299d501b-4112-95ad-c19c-25a9141fc4fe	2021-05-26 13:00:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:00:28.951+03	2021-05-26 13:00:28.958+03	
e984f6fd-8336-4a9b-e20b-694c4e5e983e	2021-05-26 13:00:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:00:48.951+03	2021-05-26 13:00:48.958+03	
a0b1aab4-22ce-5463-dda1-e28c3bd79cca	2021-05-26 13:01:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:01:09.951+03	2021-05-26 13:01:09.958+03	
fa4bccc6-7d83-131a-ed85-899f97aff4aa	2021-05-26 13:01:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:01:29.951+03	2021-05-26 13:01:29.958+03	
08899bd9-c355-d7e7-f664-122412712f92	2021-05-26 13:01:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:01:49.951+03	2021-05-26 13:01:49.958+03	
7a133954-207a-84b3-d3d6-f18186928ae6	2021-05-26 13:02:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:02:09.951+03	2021-05-26 13:02:09.958+03	
e3d8e70e-1b40-8ae8-8c0c-e813e6df3834	2021-05-26 13:02:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:02:29.951+03	2021-05-26 13:02:29.957+03	
5d4fb7a9-c649-a3ff-0534-aa01c02db5dc	2021-05-26 13:02:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:02:49.951+03	2021-05-26 13:02:49.958+03	
aafb029b-f786-71af-22f5-cc51506fbac0	2021-05-26 13:03:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:03:09.951+03	2021-05-26 13:03:09.958+03	
601bae2b-974b-8ac9-2e1e-90592d89f69d	2021-05-26 13:03:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:03:29.951+03	2021-05-26 13:03:29.958+03	
4b64ceb5-b8fe-505e-6743-d8b9dcfbbfdd	2021-05-26 13:03:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:03:49.951+03	2021-05-26 13:03:49.958+03	
974612b0-3cfe-3301-3395-08c800ddc896	2021-05-26 13:04:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:04:09.951+03	2021-05-26 13:04:09.957+03	
d8681969-d38f-e56b-7c3e-e6efff596ce0	2021-05-26 13:04:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:04:29.951+03	2021-05-26 13:04:29.957+03	
9887820c-c4e8-036a-9e2a-35a8d3fb0292	2021-05-26 13:04:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:04:49.951+03	2021-05-26 13:04:49.958+03	
6d6b2cd8-6880-3ba6-f3f4-c8e84e1ad476	2021-05-26 13:05:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:05:09.951+03	2021-05-26 13:05:09.958+03	
b7852ab7-32e4-c754-ffcd-858148e29c34	2021-05-26 13:05:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:05:19.951+03	2021-05-26 13:05:19.958+03	
a40eef75-0a32-f394-3a42-db7a1f661c8d	2021-05-26 13:05:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:05:39.951+03	2021-05-26 13:05:39.958+03	
4c12905e-7e4b-13cc-f9a5-e8ee7be5edc1	2021-05-26 13:05:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:05:59.951+03	2021-05-26 13:05:59.958+03	
b6d77334-84b0-adca-cd58-8d3b25a14017	2021-05-26 13:06:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:06:19.951+03	2021-05-26 13:06:19.958+03	
18207f29-dc56-0756-185f-b14a8a381332	2021-05-26 13:06:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:06:29.951+03	2021-05-26 13:06:29.958+03	
4c2d36c2-8712-97de-6567-4f099fb534b6	2021-05-26 13:06:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:06:49.951+03	2021-05-26 13:06:49.958+03	
db5d21d1-738c-39b8-a35e-2af5eb622ed2	2021-05-26 13:07:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:07:09.951+03	2021-05-26 13:07:09.957+03	
55b3ac11-f8c2-f605-bc1d-7bf3397ae027	2021-05-26 13:07:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:07:29.951+03	2021-05-26 13:07:29.958+03	
64badeb3-241a-27d1-d380-065054219e1d	2021-05-26 13:07:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:07:49.951+03	2021-05-26 13:07:49.958+03	
12d084a8-123b-6f92-b51b-52befcb35bef	2021-05-26 13:08:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:08:09.951+03	2021-05-26 13:08:09.958+03	
2c97b664-7dc9-c7cb-a879-9750302bf381	2021-05-26 13:08:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:08:29.951+03	2021-05-26 13:08:29.958+03	
684c9426-7fcc-72cc-9551-5aaaf1502ed7	2021-05-26 13:08:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:08:49.951+03	2021-05-26 13:08:49.958+03	
a0a7510f-e437-6269-b4b2-53d5e758a648	2021-05-26 13:09:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:09:09.951+03	2021-05-26 13:09:09.958+03	
0af560fd-ab80-d391-76bd-fe23152f7240	2021-05-26 13:09:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:09:29.951+03	2021-05-26 13:09:29.958+03	
88973465-63bb-76dc-cbf8-9ea763aa789c	2021-05-26 13:09:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:09:49.952+03	2021-05-26 13:09:49.958+03	
1437bdcf-3cda-3a18-c0e5-fa8229b233ab	2021-05-26 13:10:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:10:10.951+03	2021-05-26 13:10:10.959+03	
4ff5df26-12df-1811-db27-0033483f03b6	2021-05-26 13:10:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:10:30.951+03	2021-05-26 13:10:30.958+03	
dcf00174-6bd7-ac48-157c-77df222d1f5c	2021-05-26 13:10:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:10:50.951+03	2021-05-26 13:10:50.958+03	
aed5a5d9-f04f-114d-a6ca-c9d59c2ce9f8	2021-05-26 13:11:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:11:10.951+03	2021-05-26 13:11:10.958+03	
3f86ff60-2f16-0386-25c3-e13624010fa0	2021-05-26 13:11:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:11:30.951+03	2021-05-26 13:11:30.957+03	
5daeebba-f8ff-0844-d96a-3c8b0686bc2d	2021-05-26 13:11:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:11:50.951+03	2021-05-26 13:11:50.958+03	
f0d2b07a-fbdf-74de-30e7-d9f071cf2046	2021-05-26 13:12:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:12:10.951+03	2021-05-26 13:12:10.958+03	
1df39aeb-d238-d22c-0632-b9aa5cbebf88	2021-05-26 13:12:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:12:30.951+03	2021-05-26 13:12:30.958+03	
7ccbd1ca-22da-20f6-793f-34373e8e7b88	2021-05-26 13:12:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:12:50.951+03	2021-05-26 13:12:50.958+03	
3980c16a-2648-c7aa-02b1-6191e094a0f4	2021-05-26 13:13:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:13:10.951+03	2021-05-26 13:13:10.958+03	
8cacc96b-a86b-12ae-0674-88e2f823004c	2021-05-26 13:13:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:13:30.951+03	2021-05-26 13:13:30.959+03	
1e02dbb7-8f94-82cc-2125-67582a100ae8	2021-05-26 13:13:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:13:50.951+03	2021-05-26 13:13:50.958+03	
d3ca7be7-52b1-f523-e91f-0ad97fdcdac0	2021-05-26 13:14:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:14:10.951+03	2021-05-26 13:14:10.958+03	
37838f43-cad4-5fdb-ac05-ea20e2971ba8	2021-05-26 13:14:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:14:30.952+03	2021-05-26 13:14:30.959+03	
ede29597-2374-1def-ac62-532d8943b1bd	2021-05-26 13:14:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:14:51.951+03	2021-05-26 13:14:51.958+03	
74dfd887-df4b-c9b5-a95d-4457c507dcb8	2021-05-26 13:15:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:15:11.951+03	2021-05-26 13:15:11.958+03	
648df6e0-410b-0a6b-23e0-64cfe798315a	2021-05-26 13:15:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:15:21.951+03	2021-05-26 13:15:21.957+03	
a2633e25-ce2c-196a-c099-cc01ff0678c2	2021-05-26 13:15:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:15:41.951+03	2021-05-26 13:15:41.958+03	
d74042e6-f34e-6242-932b-49fdff4c1613	2021-05-26 13:16:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:16:01.951+03	2021-05-26 13:16:01.969+03	
a6159de3-ca5e-2cfa-6a57-5985a36ff3db	2021-05-26 13:16:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:16:11.951+03	2021-05-26 13:16:11.958+03	
b34cc170-ab12-6ab0-a454-002cbafabdfd	2021-05-26 13:16:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:16:31.951+03	2021-05-26 13:16:31.958+03	
ede0ba5f-c111-acfc-ae65-74ce5e9d7dff	2021-05-26 13:16:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:16:51.951+03	2021-05-26 13:16:51.958+03	
a8d5fe5c-d571-066d-5a6f-0b6cb48043a4	2021-05-26 13:17:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:17:11.951+03	2021-05-26 13:17:11.958+03	
2444b3e7-79eb-092f-e1bd-20c68ed2d6d0	2021-05-26 13:17:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:17:31.951+03	2021-05-26 13:17:31.958+03	
b0363a3b-fc4e-297c-60c9-bfbbddf7cbba	2021-05-26 13:17:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:17:51.951+03	2021-05-26 13:17:51.958+03	
3e8345ba-8f8d-691e-6911-bd06931f9035	2021-05-26 13:18:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:18:11.951+03	2021-05-26 13:18:11.958+03	
70cc5dfb-62fa-b722-79b9-795816543bc4	2021-05-26 13:18:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:18:31.951+03	2021-05-26 13:18:31.959+03	
b0f1537d-f72c-62b3-d517-978ac8f8e6f5	2021-05-26 13:18:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:18:52.951+03	2021-05-26 13:18:52.958+03	
c2a74e2a-5488-6993-ce41-4ff961695eb4	2021-05-26 13:19:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:19:12.952+03	2021-05-26 13:19:12.959+03	
e8fadb8c-185b-b5d9-bd94-458a6801d842	2021-05-26 13:00:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:00:18.951+03	2021-05-26 13:00:18.958+03	
d387b777-8d81-30c2-59fa-24b212639dd1	2021-05-26 13:00:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:00:38.951+03	2021-05-26 13:00:38.958+03	
dda6815b-954a-5e87-5cc4-39ffe93ba7d2	2021-05-26 13:00:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:00:58.952+03	2021-05-26 13:00:58.958+03	
31ccf7d4-2dc4-7537-cc54-f85d5ee6ebad	2021-05-26 13:01:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:01:19.951+03	2021-05-26 13:01:19.96+03	
8089cee9-7fe3-c760-5a08-e0f7b056b8a0	2021-05-26 13:01:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:01:39.951+03	2021-05-26 13:01:39.957+03	
46539f1f-19c0-36c1-3d63-83799aea3a02	2021-05-26 13:01:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:01:59.951+03	2021-05-26 13:01:59.958+03	
f77c6e35-46a2-c568-9c0b-16905a68967e	2021-05-26 13:02:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:02:19.951+03	2021-05-26 13:02:19.957+03	
a2d36296-c351-35ef-3ec5-7b1a2133b88c	2021-05-26 13:02:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:02:39.951+03	2021-05-26 13:02:39.958+03	
523714d0-914f-073b-ccbe-d109a50ec1e0	2021-05-26 13:02:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:02:59.951+03	2021-05-26 13:02:59.959+03	
14ea6a6b-3dba-b7f2-28d7-1e6fea9a746c	2021-05-26 13:03:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:03:19.951+03	2021-05-26 13:03:19.958+03	
b86f335e-93a1-f40c-1d17-7cbd10921573	2021-05-26 13:03:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:03:39.951+03	2021-05-26 13:03:39.958+03	
e9e041eb-3ab7-1c97-948d-934c716d6c13	2021-05-26 13:03:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:03:59.951+03	2021-05-26 13:03:59.959+03	
7ba430b2-eba3-4ec9-a627-ff6c0f5487d6	2021-05-26 13:04:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:04:19.951+03	2021-05-26 13:04:19.958+03	
51a1c30a-f9c9-a6df-0d02-ca3248491f06	2021-05-26 13:04:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:04:39.951+03	2021-05-26 13:04:39.958+03	
21f6b3ec-1219-d910-f781-5fae563793c0	2021-05-26 13:04:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:04:59.951+03	2021-05-26 13:04:59.958+03	
4dab4740-7ba0-ce26-8546-45adb7a09c2a	2021-05-26 13:05:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:05:29.951+03	2021-05-26 13:05:29.958+03	
1847cb00-2fc8-5efa-c1e0-8e14bdfe6527	2021-05-26 13:05:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:05:49.951+03	2021-05-26 13:05:49.958+03	
b100f955-41b4-aea3-9d9b-4f233c82ff11	2021-05-26 13:06:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:06:09.951+03	2021-05-26 13:06:09.958+03	
73dae9a9-1761-9cdc-4a23-abf77d5843aa	2021-05-26 13:06:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:06:39.951+03	2021-05-26 13:06:39.958+03	
4e79c03b-7841-699f-6fb3-c1b1382fb439	2021-05-26 13:06:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:06:59.951+03	2021-05-26 13:06:59.959+03	
45e5a99d-7c7e-14e2-fc9b-ce9678d04083	2021-05-26 13:07:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:07:19.951+03	2021-05-26 13:07:19.958+03	
779434ba-68c1-479a-87b9-81f2c4ff12ce	2021-05-26 13:07:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:07:39.951+03	2021-05-26 13:07:39.958+03	
2f800e4e-904d-3ca0-c129-a50fcab9033e	2021-05-26 13:07:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:07:59.951+03	2021-05-26 13:07:59.958+03	
82628653-460f-fc66-a0e7-7842f00b66a3	2021-05-26 13:08:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:08:19.951+03	2021-05-26 13:08:19.958+03	
5169939d-35a3-b076-adb1-98c40cb4e531	2021-05-26 13:08:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:08:39.951+03	2021-05-26 13:08:39.958+03	
9b725879-aa25-26e5-353a-786150f28e6a	2021-05-26 13:08:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:08:59.951+03	2021-05-26 13:08:59.958+03	
127a27a4-8be1-02d8-2d04-43898e3b25d5	2021-05-26 13:09:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:09:19.951+03	2021-05-26 13:09:19.958+03	
b66370eb-da16-dee3-dfd4-aa1e3d962a61	2021-05-26 13:09:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:09:39.951+03	2021-05-26 13:09:39.958+03	
3995f070-4ff3-cf59-7e1c-1535530705b4	2021-05-26 13:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 13:10:00.951+03	2021-05-26 13:10:00.958+03	ERROR
0102082b-cb42-a5dd-d614-47e0112baad8	2021-05-26 13:10:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:10:00.951+03	2021-05-26 13:10:00.972+03	
d2be8305-9819-9677-58ee-2f3562d086ca	2021-05-26 13:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:10:20.951+03	2021-05-26 13:10:20.958+03	
5cd0f63d-8fef-65f7-4ce5-889b9f9865d3	2021-05-26 13:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:10:40.951+03	2021-05-26 13:10:40.958+03	
f25e25ea-3fc4-5b79-e5a2-706e05cbc075	2021-05-26 13:11:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:11:00.951+03	2021-05-26 13:11:00.958+03	
bc24e485-ca21-48c1-0248-c11ab7c4e415	2021-05-26 13:11:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:11:20.951+03	2021-05-26 13:11:20.958+03	
4123d256-8b1e-d13e-efa0-30209a675cdd	2021-05-26 13:11:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:11:40.951+03	2021-05-26 13:11:40.957+03	
d1cb948f-7d3d-ede1-e4aa-8816cb362148	2021-05-26 13:12:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:12:00.951+03	2021-05-26 13:12:00.958+03	
97ca38e7-3efa-7034-505e-d59da04d1608	2021-05-26 13:12:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:12:20.951+03	2021-05-26 13:12:20.958+03	
981a4df2-09df-bf64-0100-9dc8f4a3731f	2021-05-26 13:12:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:12:40.951+03	2021-05-26 13:12:40.959+03	
da13d1cf-4576-2caf-1f5e-040ec6ca7116	2021-05-26 13:13:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:13:00.951+03	2021-05-26 13:13:00.958+03	
67b0eb30-7067-515c-d531-c35e81757de4	2021-05-26 13:13:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:13:20.951+03	2021-05-26 13:13:20.958+03	
3b4ec37d-f4af-b976-5e51-c17b60aecea6	2021-05-26 13:13:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:13:40.951+03	2021-05-26 13:13:40.96+03	
011e6b69-eb8a-bac6-b6b9-a5216d8aafe4	2021-05-26 13:14:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:14:00.951+03	2021-05-26 13:14:00.958+03	
3ee21d3d-3eac-c76a-27da-744fa9506580	2021-05-26 13:14:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:14:20.951+03	2021-05-26 13:14:20.958+03	
375700a9-f726-c5af-8313-ae1d2e3935d9	2021-05-26 13:14:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:14:41.951+03	2021-05-26 13:14:41.958+03	
e34dc800-b2cc-3283-4862-bd68ce0744e0	2021-05-26 13:15:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:15:01.951+03	2021-05-26 13:15:01.958+03	
48fa23b3-86b4-293e-e8a1-4a7df587ca0f	2021-05-26 13:15:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:15:31.951+03	2021-05-26 13:15:31.958+03	
15940d56-0e7c-67c1-0471-909b9d864797	2021-05-26 13:15:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:15:51.951+03	2021-05-26 13:15:51.958+03	
e149b1b9-e311-a69b-26e6-85bcde278ad9	2021-05-26 13:16:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:16:21.951+03	2021-05-26 13:16:21.958+03	
1234046b-ee9b-b8fb-3e81-ac9b4d2e79ca	2021-05-26 13:16:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:16:41.951+03	2021-05-26 13:16:41.958+03	
ce53551d-0d46-96cf-14b6-79400eb35fd6	2021-05-26 13:17:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:17:01.951+03	2021-05-26 13:17:01.959+03	
7bf2ea6e-8cf3-06aa-cfa0-37c53e5d5523	2021-05-26 13:17:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:17:21.951+03	2021-05-26 13:17:21.958+03	
4926bac6-0d5e-68b8-456c-18d8d1e2d3ac	2021-05-26 13:17:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:17:41.951+03	2021-05-26 13:17:41.958+03	
a0dc028d-1d09-3a9c-cc43-727695baa03d	2021-05-26 13:18:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:18:01.951+03	2021-05-26 13:18:01.958+03	
c94f6fe2-3409-c493-8678-13873feeaf47	2021-05-26 13:18:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:18:21.951+03	2021-05-26 13:18:21.958+03	
716c5d76-9241-0568-9cea-c372ace4652f	2021-05-26 13:18:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:18:41.952+03	2021-05-26 13:18:41.968+03	
47d302de-f8c2-4ccd-9238-e379650bbb9a	2021-05-26 13:19:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:19:02.951+03	2021-05-26 13:19:02.96+03	
8d7b56f8-0a77-56ef-8cdb-977aa736dc9e	2021-05-26 13:19:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:19:23.951+03	2021-05-26 13:19:23.959+03	
0984f470-cbc2-88fd-c7a9-30573e9c6003	2021-05-26 13:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:19:43.951+03	2021-05-26 13:19:43.959+03	
c1185803-0298-3826-f413-87594996261f	2021-05-26 13:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 13:20:00.951+03	2021-05-26 13:20:00.973+03	ERROR
b495e367-7a02-c171-64fb-0ccf59aecd3a	2021-05-26 13:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:20:13.951+03	2021-05-26 13:20:13.958+03	
25121325-ffbd-f27d-4d38-409125805dcb	2021-05-26 13:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:20:33.951+03	2021-05-26 13:20:33.958+03	
3adb3f22-9d7f-30dd-55ba-032028b5732e	2021-05-26 13:20:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:20:53.951+03	2021-05-26 13:20:53.958+03	
2604590e-d213-6dee-b251-cca4817814ad	2021-05-26 13:21:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:21:13.951+03	2021-05-26 13:21:13.958+03	
21ab8831-1f91-d3a5-f5ae-6d09b655c5cc	2021-05-26 13:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:19:33.951+03	2021-05-26 13:19:33.958+03	
f6941fa1-baca-af91-66ae-418971f27d21	2021-05-26 13:19:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:19:53.951+03	2021-05-26 13:19:53.958+03	
d5a0b9d6-cb01-b15f-caea-d63044911889	2021-05-26 13:20:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:20:03.951+03	2021-05-26 13:20:03.958+03	
805a6da2-9671-ece1-6741-509dc1c30e29	2021-05-26 13:20:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:20:23.951+03	2021-05-26 13:20:23.957+03	
64ab8bbd-08df-0438-0882-7010849d165a	2021-05-26 13:20:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:20:43.951+03	2021-05-26 13:20:43.958+03	
9555b651-9c5b-0280-003a-973de2df50fa	2021-05-26 13:21:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:21:03.951+03	2021-05-26 13:21:03.959+03	
3fa6e025-12d9-45cb-6978-f79879b97c8b	2021-05-26 13:21:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:21:23.951+03	2021-05-26 13:21:23.957+03	
a3bc13f9-0354-abb4-c134-36d000fbc8ca	2021-05-26 13:21:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:21:43.951+03	2021-05-26 13:21:43.957+03	
f8581053-bf43-98a9-bf83-b39066f2ffc6	2021-05-26 13:22:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:22:03.951+03	2021-05-26 13:22:03.958+03	
9e7ee7c2-2d57-872f-5ff4-5db92895b401	2021-05-26 13:22:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:22:23.951+03	2021-05-26 13:22:23.958+03	
8d05ec16-136c-63d8-07fa-a8450b9dab38	2021-05-26 13:22:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:22:43.951+03	2021-05-26 13:22:43.958+03	
a2f7ecc8-39ed-bd6b-bd76-cca6930f25d1	2021-05-26 13:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:23:03.951+03	2021-05-26 13:23:03.958+03	
a8705523-2ecc-2760-4759-cbd40079f668	2021-05-26 13:23:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:23:23.951+03	2021-05-26 13:23:23.958+03	
85539293-80cf-f0b6-7c2d-ec686afa3685	2021-05-26 13:23:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:23:43.951+03	2021-05-26 13:23:43.958+03	
3a599cd7-55cf-6dd7-89f0-0ac3adce27b8	2021-05-26 13:24:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:24:03.951+03	2021-05-26 13:24:03.958+03	
de8a8534-ce87-5471-e329-270f50150c12	2021-05-26 13:24:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:24:23.951+03	2021-05-26 13:24:23.96+03	
08aaa2a9-2820-0066-aa5f-f6226c8506b3	2021-05-26 13:24:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:24:43.951+03	2021-05-26 13:24:43.957+03	
855366b8-973e-991b-c12d-b517577610c5	2021-05-26 13:25:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:25:03.951+03	2021-05-26 13:25:03.966+03	
b04a0382-ef60-3d0c-27bb-615bc5bb7cce	2021-05-26 13:25:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:25:23.951+03	2021-05-26 13:25:23.958+03	
44b73e41-8b32-c376-ef15-eb4e5c6b5e3d	2021-05-26 13:25:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:25:43.951+03	2021-05-26 13:25:43.958+03	
10772f3f-23c7-4ad2-91aa-047ba4f6df4e	2021-05-26 13:26:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:26:03.951+03	2021-05-26 13:26:03.958+03	
6b74dcbe-1aee-a930-2568-37aa7b5a0e91	2021-05-26 13:26:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:26:23.951+03	2021-05-26 13:26:23.959+03	
cfcf83d1-eb56-885d-038c-e667351f843d	2021-05-26 13:26:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:26:43.951+03	2021-05-26 13:26:43.957+03	
45ae2c01-9a88-90b9-da26-471e5fc72395	2021-05-26 13:27:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:27:03.951+03	2021-05-26 13:27:03.958+03	
1d68fc40-45aa-a9e8-1e12-0f0acc05acb9	2021-05-26 13:27:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:27:23.951+03	2021-05-26 13:27:23.96+03	
bbfb4289-dfca-0f06-a2d0-0dea72cbe0bf	2021-05-26 13:27:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:27:43.951+03	2021-05-26 13:27:43.957+03	
0a4da534-2534-0ea1-d759-73c7715a4f07	2021-05-26 13:28:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:28:03.951+03	2021-05-26 13:28:03.958+03	
3d1f39ed-7a58-a95c-f955-0adaae0da7f8	2021-05-26 13:28:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:28:23.951+03	2021-05-26 13:28:23.958+03	
6fc03966-70f2-9543-6454-e52aa5e36616	2021-05-26 13:28:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:28:43.951+03	2021-05-26 13:28:43.958+03	
504607d2-5349-43a6-f9f0-c34e1663186f	2021-05-26 13:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:29:03.951+03	2021-05-26 13:29:03.958+03	
dcee34b6-ecaa-cfc4-b2f0-818b8e3a71d5	2021-05-26 13:29:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:29:23.951+03	2021-05-26 13:29:23.958+03	
e68d0423-cbab-4f0b-4d60-b35fbace2178	2021-05-26 13:29:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:29:33.951+03	2021-05-26 13:29:33.958+03	
f6393b1b-80f1-d9d7-0a27-7b84800e4e59	2021-05-26 13:29:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:29:53.951+03	2021-05-26 13:29:53.958+03	
9a449540-573f-f522-e6d9-90b543a2bdb6	2021-05-26 13:30:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:30:03.951+03	2021-05-26 13:30:03.958+03	
40719384-00d8-92b6-5f72-4b08f5069cc0	2021-05-26 13:30:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:30:23.951+03	2021-05-26 13:30:23.958+03	
73815917-74c5-7d9e-ebec-10ec6204dcfe	2021-05-26 13:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:30:43.951+03	2021-05-26 13:30:43.958+03	
0675081b-e9d2-2d96-e025-baff88a9aa68	2021-05-26 13:31:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:31:03.951+03	2021-05-26 13:31:03.959+03	
cf334a45-6f45-96fa-4136-b5b0057ecad6	2021-05-26 13:31:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:31:23.951+03	2021-05-26 13:31:23.959+03	
e430496f-172a-797d-ee88-1f6cb25dae6f	2021-05-26 13:31:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:31:43.951+03	2021-05-26 13:31:43.958+03	
261d5550-ba53-20a7-699d-b43c35109c82	2021-05-26 13:32:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:32:03.951+03	2021-05-26 13:32:03.959+03	
7c6b3623-d22a-8dac-bef1-85cfb7e7a81a	2021-05-26 13:32:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:32:23.951+03	2021-05-26 13:32:23.958+03	
a8cd42de-b8fe-672c-f46f-b14bd8cb42c1	2021-05-26 13:32:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:32:43.951+03	2021-05-26 13:32:43.958+03	
b020ccc7-3184-fac1-4a66-f85d3b2d0164	2021-05-26 13:33:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:33:04.951+03	2021-05-26 13:33:04.958+03	
ffb9733c-27ef-4437-f32d-6a31ecbc9397	2021-05-26 13:33:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:33:24.951+03	2021-05-26 13:33:24.958+03	
7872e302-5388-76e1-d968-50c774009dc3	2021-05-26 13:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:33:44.951+03	2021-05-26 13:33:44.958+03	
53f8c00d-afc3-16b3-fbb5-7f9aeb89df97	2021-05-26 13:34:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:34:04.951+03	2021-05-26 13:34:04.958+03	
47b6085b-72d1-9d9d-c078-7be6b573087b	2021-05-26 13:34:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:34:24.951+03	2021-05-26 13:34:24.958+03	
e6d97a3a-8e8a-1148-d311-bbef56e52fe9	2021-05-26 13:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:34:44.951+03	2021-05-26 13:34:44.958+03	
1fa9f623-00b7-afd8-4b88-d0be48190944	2021-05-26 13:35:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:35:04.951+03	2021-05-26 13:35:04.958+03	
230c3dfd-2fc4-b51e-6f4e-94480fc8f2cc	2021-05-26 13:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:35:24.951+03	2021-05-26 13:35:24.958+03	
c0f635e4-f787-12de-e504-aa0f8c23466b	2021-05-26 13:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:35:44.951+03	2021-05-26 13:35:44.958+03	
0c61976c-6147-b26a-36d2-e3ee0192b280	2021-05-26 13:36:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:36:04.951+03	2021-05-26 13:36:04.957+03	
3e601b0b-ec33-604e-7fbb-1cfb9dbcaf8f	2021-05-26 13:36:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:36:24.951+03	2021-05-26 13:36:24.958+03	
ad2fea7a-11d3-1236-7eef-52d4ea722a6f	2021-05-26 13:36:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:36:44.951+03	2021-05-26 13:36:44.958+03	
52da7753-74f3-2f70-c524-36bce2b545fa	2021-05-26 13:37:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:37:04.951+03	2021-05-26 13:37:04.957+03	
12926bee-93f2-16d5-7436-6abcfc993717	2021-05-26 13:37:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:37:24.951+03	2021-05-26 13:37:24.958+03	
378c899d-1322-7d9d-8f1d-b177c98f708f	2021-05-26 13:37:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:37:44.951+03	2021-05-26 13:37:44.957+03	
7d883492-f4f3-c679-9e6e-32f7f121db04	2021-05-26 13:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:38:04.951+03	2021-05-26 13:38:04.958+03	
03c7ee1f-69b4-11f1-35ab-f2ca5f3bea95	2021-05-26 13:38:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:38:24.951+03	2021-05-26 13:38:24.961+03	
0eabc350-4827-82c7-2d6c-21fb0826f56f	2021-05-26 13:38:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:38:44.951+03	2021-05-26 13:38:44.958+03	
b03182a1-b3bd-ad75-c04b-73776acb8928	2021-05-26 13:39:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:39:04.951+03	2021-05-26 13:39:04.959+03	
086458d0-0f7e-021a-eb69-16c308904a10	2021-05-26 13:39:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:39:24.951+03	2021-05-26 13:39:24.958+03	
6f9d54b9-08e8-884b-f35b-c4d63adc9efa	2021-05-26 13:39:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:39:44.951+03	2021-05-26 13:39:44.958+03	
9fc10096-401a-ec2a-b15d-4794561c6408	2021-05-26 13:21:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:21:33.951+03	2021-05-26 13:21:33.958+03	
12c2f88c-c726-a318-0069-b4369dddeb25	2021-05-26 13:21:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:21:53.951+03	2021-05-26 13:21:53.958+03	
fa040efa-0985-0231-1f48-2315f1a79e50	2021-05-26 13:22:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:22:13.951+03	2021-05-26 13:22:13.958+03	
c2ba2172-6d7f-3e74-1454-b58a5ecfa018	2021-05-26 13:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:22:33.951+03	2021-05-26 13:22:33.958+03	
6027d46b-595b-befa-fadc-a7b0e9db8dcc	2021-05-26 13:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:22:53.951+03	2021-05-26 13:22:53.958+03	
3a5b3b93-80da-1920-6663-4a876c849f3a	2021-05-26 13:23:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:23:13.951+03	2021-05-26 13:23:13.958+03	
ff2f6d43-2128-99f0-e498-ffbd46b18c64	2021-05-26 13:23:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:23:33.951+03	2021-05-26 13:23:33.958+03	
954c6093-d218-c024-ccd8-941aebec23b3	2021-05-26 13:23:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:23:53.951+03	2021-05-26 13:23:53.959+03	
19577ed4-acd7-5999-2492-2325238d91ab	2021-05-26 13:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:24:13.951+03	2021-05-26 13:24:13.958+03	
a81f6151-2b0c-8e5a-3651-a53e5e7e89e9	2021-05-26 13:24:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:24:33.951+03	2021-05-26 13:24:33.959+03	
e70da415-b468-4967-b009-c58a6af7fd2e	2021-05-26 13:24:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:24:53.951+03	2021-05-26 13:24:53.958+03	
954e2ee5-c203-55d4-603c-84a2614d677f	2021-05-26 13:25:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:25:13.951+03	2021-05-26 13:25:13.958+03	
eaf06c5b-7dd2-bac7-a8c3-7606de9378bd	2021-05-26 13:25:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:25:33.951+03	2021-05-26 13:25:33.959+03	
da775616-6881-29e1-95ce-7f07ee7dda1c	2021-05-26 13:25:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:25:53.951+03	2021-05-26 13:25:53.96+03	
730e1aa9-3716-fa83-4b8a-c3a325c31d55	2021-05-26 13:26:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:26:13.951+03	2021-05-26 13:26:13.958+03	
56cd7e48-c581-6ec9-8680-27ff6700776c	2021-05-26 13:26:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:26:33.951+03	2021-05-26 13:26:33.96+03	
5938752d-83b5-0c2d-427c-dc14271f528f	2021-05-26 13:26:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:26:53.951+03	2021-05-26 13:26:53.958+03	
9aa45ffe-053c-fb17-611b-41553be459ce	2021-05-26 13:27:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:27:13.951+03	2021-05-26 13:27:13.961+03	
7a4ea6d6-1200-38bc-1b55-b892ee1f7a76	2021-05-26 13:27:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:27:33.951+03	2021-05-26 13:27:33.958+03	
adcf4039-3c52-1eee-f3ff-560434048988	2021-05-26 13:27:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:27:53.951+03	2021-05-26 13:27:53.961+03	
050112a8-d79e-5731-294e-8be30aa2d30b	2021-05-26 13:28:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:28:13.951+03	2021-05-26 13:28:13.958+03	
667a6ea0-d41b-8abd-4e2c-13283ebe71ea	2021-05-26 13:28:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:28:33.951+03	2021-05-26 13:28:33.959+03	
cfb7d308-a462-393b-6c54-e65b54b59965	2021-05-26 13:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:28:53.951+03	2021-05-26 13:28:53.959+03	
bd50ee04-f6a5-1fdc-b4bb-b977e9a8a44d	2021-05-26 13:29:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:29:13.951+03	2021-05-26 13:29:13.958+03	
fd3916a0-48da-dd01-d8e4-006926e6a4ab	2021-05-26 13:29:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:29:43.951+03	2021-05-26 13:29:43.957+03	
781330c1-94da-7927-9357-f1f65ce5657f	2021-05-26 13:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 13:30:00.951+03	2021-05-26 13:30:00.974+03	ERROR
75676730-7b80-c120-b535-534f5f81a4b7	2021-05-26 13:30:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:30:13.951+03	2021-05-26 13:30:13.959+03	
47351316-ccdb-ce4e-42e4-d91121b45382	2021-05-26 13:30:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:30:33.951+03	2021-05-26 13:30:33.958+03	
440cac35-a24a-3954-66dc-76d3819c7a76	2021-05-26 13:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:30:53.951+03	2021-05-26 13:30:53.959+03	
669bcef7-c56f-ad66-907a-1f39ae658cc2	2021-05-26 13:31:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:31:13.951+03	2021-05-26 13:31:13.958+03	
d89473d5-cf4b-56eb-9424-7be16d45c44d	2021-05-26 13:31:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:31:33.951+03	2021-05-26 13:31:33.958+03	
ea576599-0b99-ef7b-cd1e-12cc9af0379e	2021-05-26 13:31:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:31:53.951+03	2021-05-26 13:31:53.963+03	
efd86fa6-2543-5159-dfb5-8e0989c1e2e2	2021-05-26 13:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:32:13.951+03	2021-05-26 13:32:13.958+03	
0cf6252c-7906-3763-786a-918818e747e0	2021-05-26 13:32:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:32:33.951+03	2021-05-26 13:32:33.958+03	
3fe8ddf7-d417-a52f-a244-825289c2e6b6	2021-05-26 13:32:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:32:53.952+03	2021-05-26 13:32:53.958+03	
0fba5231-92cf-ae2e-8bc5-896ae6772b65	2021-05-26 13:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:33:14.951+03	2021-05-26 13:33:14.958+03	
36552a5f-5c21-9fb7-078f-48e8e3f2b7a2	2021-05-26 13:33:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:33:34.951+03	2021-05-26 13:33:34.959+03	
329814f1-ce50-cbe7-b8e3-0e77c1dc0825	2021-05-26 13:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:33:54.951+03	2021-05-26 13:33:54.958+03	
c2f5d2a0-3559-259d-2144-159c8a46b265	2021-05-26 13:34:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:34:14.951+03	2021-05-26 13:34:14.958+03	
f9324ead-c594-e058-791c-3de5451b6dcb	2021-05-26 13:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:34:34.951+03	2021-05-26 13:34:34.958+03	
a6a47224-5ecf-bb4a-c9dc-314baf8d76a7	2021-05-26 13:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:34:54.951+03	2021-05-26 13:34:54.958+03	
de2f79bc-7a7c-5e69-1a1d-a9f0ad0fa3a9	2021-05-26 13:35:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:35:14.951+03	2021-05-26 13:35:14.957+03	
2f8b7829-0367-107d-b7c2-3f469013f469	2021-05-26 13:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:35:34.951+03	2021-05-26 13:35:34.957+03	
a168d72a-cd51-6e60-843d-1883a04acfb7	2021-05-26 13:35:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:35:54.951+03	2021-05-26 13:35:54.958+03	
5e3af562-e4a4-4195-f409-9e1b75697fdd	2021-05-26 13:36:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:36:14.951+03	2021-05-26 13:36:14.957+03	
00c035e5-4597-2cfb-d28f-9dde388747c2	2021-05-26 13:36:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:36:34.951+03	2021-05-26 13:36:34.957+03	
f7c14f58-37d4-9712-50ff-d3df809d1adf	2021-05-26 13:36:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:36:54.951+03	2021-05-26 13:36:54.957+03	
6b37cfe5-6d82-a985-ce4e-803f446874fa	2021-05-26 13:37:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:37:14.951+03	2021-05-26 13:37:14.958+03	
4b437c5a-ed41-8bef-71ac-b449ec048dad	2021-05-26 13:37:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:37:34.951+03	2021-05-26 13:37:34.961+03	
c32f3191-bee2-d0b8-7901-5ae9a5365521	2021-05-26 13:37:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:37:54.951+03	2021-05-26 13:37:54.957+03	
ac14e8c5-5e59-6dee-6001-bcebe5ead30e	2021-05-26 13:38:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:38:14.951+03	2021-05-26 13:38:14.958+03	
fa85f5c0-a15b-72d5-9e2c-2766efd590c1	2021-05-26 13:38:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:38:34.951+03	2021-05-26 13:38:34.958+03	
2e8acd88-92cd-b4db-e886-8233da40d6d3	2021-05-26 13:38:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:38:54.951+03	2021-05-26 13:38:54.958+03	
2ffc7796-552a-3bbd-8d2e-2e29d063a8e9	2021-05-26 13:39:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:39:14.951+03	2021-05-26 13:39:14.958+03	
10c17f24-c612-b932-34a3-8f96062271f6	2021-05-26 13:39:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:39:34.951+03	2021-05-26 13:39:34.958+03	
0820fdf0-7ce6-6e52-38b1-6a5b49b97030	2021-05-26 13:39:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:39:54.951+03	2021-05-26 13:39:54.958+03	
07259dd3-2c20-6a40-ebfa-659a08c69607	2021-05-26 13:40:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:40:04.951+03	2021-05-26 13:40:04.958+03	
6673564b-7a54-9b19-99fa-cd9cda644078	2021-05-26 13:40:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:40:24.951+03	2021-05-26 13:40:24.959+03	
f86437cd-5385-7a2b-3207-0bf41d263a27	2021-05-26 13:40:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:40:44.951+03	2021-05-26 13:40:44.957+03	
382fa3da-81eb-f35d-b5c9-396e8efa9a99	2021-05-26 13:41:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:41:04.951+03	2021-05-26 13:41:04.957+03	
2b4fae3a-f42f-5b09-2d88-ddfecb60c732	2021-05-26 13:41:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:41:24.951+03	2021-05-26 13:41:24.958+03	
8c150faf-4916-55e9-e859-7363a0b41a30	2021-05-26 13:41:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:41:45.951+03	2021-05-26 13:41:45.957+03	
94cbdd0d-a760-f4df-8e37-443b04ad9ce1	2021-05-26 13:42:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:42:05.951+03	2021-05-26 13:42:05.957+03	
b14039fe-f310-c04f-699e-fec47e60c30f	2021-05-26 13:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 13:40:00.951+03	2021-05-26 13:40:00.956+03	ERROR
c0f2b9a0-89fe-6cce-4f06-f54911af45e9	2021-05-26 13:40:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:40:14.951+03	2021-05-26 13:40:14.96+03	
c0a0accc-1608-e3f1-e665-93e88ed8f3e7	2021-05-26 13:40:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:40:34.951+03	2021-05-26 13:40:34.958+03	
6fc6b833-5e54-7208-faef-6693a279728e	2021-05-26 13:40:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:40:54.951+03	2021-05-26 13:40:54.958+03	
7323976a-6956-0c07-107a-530bb71a807f	2021-05-26 13:41:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:41:14.951+03	2021-05-26 13:41:14.985+03	
39998fa8-ed07-525b-bb89-5f024fbd1c7b	2021-05-26 13:41:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:41:34.952+03	2021-05-26 13:41:34.958+03	
384329cc-ecc6-f112-ab45-48c45371a292	2021-05-26 13:41:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:41:55.951+03	2021-05-26 13:41:55.958+03	
f4a87ec8-91e7-36ca-f5f3-12b02888bdba	2021-05-26 13:42:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:42:15.951+03	2021-05-26 13:42:15.958+03	
6c7d7b05-c4fb-799b-cdd7-d53d199cf5dd	2021-05-26 13:42:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:42:35.951+03	2021-05-26 13:42:35.96+03	
1c1cdf0e-da97-61f5-ac7b-2a8e0f485c39	2021-05-26 13:42:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:42:55.951+03	2021-05-26 13:42:55.958+03	
9ecfa3a0-4434-8a9a-0d09-04d974aeda5a	2021-05-26 13:43:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:43:15.951+03	2021-05-26 13:43:15.957+03	
b5be6d25-611f-46d4-b23f-16274556714a	2021-05-26 13:43:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:43:35.952+03	2021-05-26 13:43:35.959+03	
77fba430-ce48-3717-be83-f2792439c6ad	2021-05-26 13:43:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:43:56.951+03	2021-05-26 13:43:56.958+03	
db021275-dd88-fb84-074b-27d233c64282	2021-05-26 13:44:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:44:16.951+03	2021-05-26 13:44:16.959+03	
cdb5e4ed-4160-1b35-e5b6-3ac91bed1b18	2021-05-26 13:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:44:36.951+03	2021-05-26 13:44:36.959+03	
ef8475bc-2dc9-f846-1c3f-f88f6d3a934d	2021-05-26 13:44:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:44:56.951+03	2021-05-26 13:44:56.958+03	
54e4e297-dc9c-e512-4fb4-ba6c746d1ca5	2021-05-26 13:45:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:45:16.951+03	2021-05-26 13:45:16.958+03	
056922a9-ab9e-110d-b310-962fb6e899c0	2021-05-26 13:45:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:45:36.951+03	2021-05-26 13:45:36.958+03	
fcd5e587-5952-e4d1-07c0-715ca6df8d51	2021-05-26 13:45:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:45:56.951+03	2021-05-26 13:45:56.958+03	
377fe583-f6b1-5fe5-7ac7-eebbb0dff747	2021-05-26 13:46:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:46:16.951+03	2021-05-26 13:46:16.958+03	
9d20eca1-2ff9-0108-a737-0011c86580e6	2021-05-26 13:46:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:46:36.951+03	2021-05-26 13:46:36.959+03	
2d7d1ebe-90e8-90fb-2ece-e632fb9fdc7d	2021-05-26 13:46:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:46:56.951+03	2021-05-26 13:46:56.959+03	
fd2c6424-8fb4-f4b4-794a-156dc972044a	2021-05-26 13:47:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:47:16.951+03	2021-05-26 13:47:16.958+03	
fd3661b5-c6d6-7d94-c0ea-0539f232067d	2021-05-26 13:47:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:47:36.951+03	2021-05-26 13:47:36.959+03	
f78371f6-9e88-8d0e-c249-46fe82819a50	2021-05-26 13:47:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:47:56.951+03	2021-05-26 13:47:56.958+03	
09d61c26-4dd5-6c0a-31a8-9176f1deadd8	2021-05-26 13:48:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:48:16.951+03	2021-05-26 13:48:16.958+03	
652bf364-39ef-7cbe-9c33-c8dd7e7cce84	2021-05-26 13:48:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:48:36.951+03	2021-05-26 13:48:36.958+03	
3ce4d01d-6656-43ee-83e3-d961f7f2ef18	2021-05-26 13:48:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:48:56.951+03	2021-05-26 13:48:56.96+03	
e22f13ed-9058-0829-c084-da08e40ad52d	2021-05-26 13:49:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:49:17.952+03	2021-05-26 13:49:17.959+03	
815b358b-a187-d791-e405-1eb6f5055cdc	2021-05-26 13:49:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:49:37.952+03	2021-05-26 13:49:37.959+03	
5c958ca1-2c1b-d4f8-7d0f-c6a895a96f5e	2021-05-26 13:49:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:49:58.951+03	2021-05-26 13:49:58.959+03	
1c59c252-cf8c-f241-7a3b-a23651fa8fb8	2021-05-26 13:50:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:50:08.951+03	2021-05-26 13:50:08.958+03	
c0d138d1-83e3-f166-ac28-6c955e4d0680	2021-05-26 13:50:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:50:28.951+03	2021-05-26 13:50:28.958+03	
3e17417c-67e0-af83-5e79-8ab8dbe2dc9e	2021-05-26 13:50:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:50:48.951+03	2021-05-26 13:50:48.964+03	
2fb26110-ba4f-5e7e-47cb-fed2ea6b542d	2021-05-26 13:51:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:51:09.951+03	2021-05-26 13:51:09.958+03	
72d0a90f-2c16-2858-465c-6988e9594d8b	2021-05-26 13:51:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:51:29.951+03	2021-05-26 13:51:29.958+03	
f1afee00-4348-db3a-2dc1-0cbb05bf48cb	2021-05-26 13:51:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:51:49.951+03	2021-05-26 13:51:49.958+03	
0551c9bc-cf8a-9dde-0f2f-21f4f7b9f4b6	2021-05-26 13:52:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:52:09.951+03	2021-05-26 13:52:09.958+03	
2ed82e1e-6b4d-7d9f-db75-ef93815f220c	2021-05-26 13:52:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:52:29.951+03	2021-05-26 13:52:29.963+03	
bfb97d5f-8bff-b20e-54c6-bfeffe6ab201	2021-05-26 13:52:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:52:49.951+03	2021-05-26 13:52:49.959+03	
0c7b7cae-5942-9b14-bd8b-1866d9101ec4	2021-05-26 13:53:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:53:09.951+03	2021-05-26 13:53:09.958+03	
42190a4d-4498-463b-c0c0-f90f5989bd74	2021-05-26 13:53:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:53:29.951+03	2021-05-26 13:53:29.96+03	
5e3fff27-9aa7-6e64-5852-3b4e5ad4cfc4	2021-05-26 13:53:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:53:49.951+03	2021-05-26 13:53:49.958+03	
291f39c0-8577-e8fd-62e5-9eb7e13a480f	2021-05-26 13:53:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:53:59.951+03	2021-05-26 13:53:59.959+03	
4a19ae6d-8c9f-47c5-48e5-12b9a15b0551	2021-05-26 13:54:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:54:19.951+03	2021-05-26 13:54:19.958+03	
eaa729cb-dafb-7cfc-b629-a804978f7dd3	2021-05-26 13:54:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:54:39.951+03	2021-05-26 13:54:39.959+03	
dde13f63-e3ed-0445-f959-384e1c4b1c41	2021-05-26 13:54:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:54:59.951+03	2021-05-26 13:54:59.958+03	
0ba98795-4899-d8f9-2860-4121bfc330e8	2021-05-26 13:55:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:55:09.951+03	2021-05-26 13:55:09.958+03	
dbdc4d66-ad2e-15f2-19d8-00a0693fea41	2021-05-26 13:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:55:29.951+03	2021-05-26 13:55:29.958+03	
3714de3e-7755-06fb-a8de-6cf2abd9756a	2021-05-26 13:55:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:55:49.951+03	2021-05-26 13:55:49.958+03	
e988182e-cb63-0961-6d6f-69a9d9cf3b42	2021-05-26 13:56:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:56:09.951+03	2021-05-26 13:56:09.958+03	
3837269b-5525-12d5-14e0-1aa0c6a076f6	2021-05-26 13:56:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:56:29.951+03	2021-05-26 13:56:29.958+03	
9ad3aefd-17c8-36b7-c66d-235d9a6a8a53	2021-05-26 13:56:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:56:39.951+03	2021-05-26 13:56:39.958+03	
e5028f0f-e4cc-373e-f958-6bac024e25d8	2021-05-26 13:56:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:56:59.951+03	2021-05-26 13:56:59.958+03	
1ae6af0a-3a59-715c-ff65-921b0aee9526	2021-05-26 13:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:57:19.951+03	2021-05-26 13:57:19.958+03	
26664402-c4b7-36e2-8dcd-5ca724fb8ba9	2021-05-26 13:57:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:57:39.951+03	2021-05-26 13:57:39.958+03	
01aa6fb8-fcb6-c403-1e0f-1f9f0ca91354	2021-05-26 13:57:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:57:59.951+03	2021-05-26 13:57:59.958+03	
5b893bdd-8f67-f9ec-1c96-025d433eb069	2021-05-26 13:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:58:19.951+03	2021-05-26 13:58:19.958+03	
970889f6-cad6-c6d9-fcec-432d0ead61f3	2021-05-26 13:58:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:58:39.951+03	2021-05-26 13:58:39.958+03	
11269ab4-2661-265e-bbfa-5d6de71c9a8d	2021-05-26 13:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:58:59.951+03	2021-05-26 13:58:59.959+03	
19a13751-5857-c832-522c-1bd3a32b0f41	2021-05-26 13:59:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:59:19.951+03	2021-05-26 13:59:19.959+03	
89a69954-bdfe-42e7-8375-dbe76861d8a0	2021-05-26 13:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:59:39.951+03	2021-05-26 13:59:39.958+03	
9829f6d9-d437-0b5c-a8e4-220635ab0726	2021-05-26 13:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:59:59.951+03	2021-05-26 13:59:59.958+03	
bbaaa03f-6a02-f786-e464-338f4bc39627	2021-05-26 13:42:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:42:25.951+03	2021-05-26 13:42:25.958+03	
9c79fd0c-57db-c10b-406a-cbda84a34680	2021-05-26 13:42:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:42:45.951+03	2021-05-26 13:42:45.959+03	
6a5c55b8-9a4d-62f8-71f4-adc282ff00d6	2021-05-26 13:43:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:43:05.951+03	2021-05-26 13:43:05.959+03	
74476f06-ed2e-6849-1256-259ff08bb322	2021-05-26 13:43:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:43:25.951+03	2021-05-26 13:43:25.958+03	
a7bc2153-9dd3-8076-8715-4955a632811c	2021-05-26 13:43:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:43:46.951+03	2021-05-26 13:43:46.958+03	
0531d2f6-f90d-b811-87ac-255c0d04a611	2021-05-26 13:44:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:44:06.951+03	2021-05-26 13:44:06.958+03	
6f1acd86-c336-f6a8-47cd-4647b3d48681	2021-05-26 13:44:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:44:26.951+03	2021-05-26 13:44:26.959+03	
426b7345-2931-af17-c214-e3f5c71c38a5	2021-05-26 13:44:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:44:46.951+03	2021-05-26 13:44:46.958+03	
886796ad-f491-84ac-7d2d-20d820b8414a	2021-05-26 13:45:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:45:06.951+03	2021-05-26 13:45:06.958+03	
ab1f60ab-5488-40ed-fe81-2d97bce6a557	2021-05-26 13:45:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:45:26.951+03	2021-05-26 13:45:26.96+03	
ddfdc773-4304-6021-a2e5-77d328d836b6	2021-05-26 13:45:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:45:46.951+03	2021-05-26 13:45:46.958+03	
c2eea243-1afa-c310-bee8-c2a0f1155d70	2021-05-26 13:46:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:46:06.951+03	2021-05-26 13:46:06.958+03	
46b9ef8b-e233-d144-969e-b90d24add75a	2021-05-26 13:46:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:46:26.951+03	2021-05-26 13:46:26.958+03	
2eb9c93b-0c37-c564-227a-95d50f2857d1	2021-05-26 13:46:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:46:46.951+03	2021-05-26 13:46:46.958+03	
459e80e8-154e-e860-d330-7df6b1fc90e6	2021-05-26 13:47:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:47:06.951+03	2021-05-26 13:47:06.958+03	
144adf1b-fdc2-42dd-bb99-310690d3cd24	2021-05-26 13:47:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:47:26.951+03	2021-05-26 13:47:26.959+03	
cb02d546-0e56-e948-79c0-480887b4f27e	2021-05-26 13:47:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:47:46.951+03	2021-05-26 13:47:46.959+03	
6b586aeb-42e4-1e74-baf7-0b4119249f98	2021-05-26 13:48:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:48:06.951+03	2021-05-26 13:48:06.958+03	
da5e5820-0636-9da8-e1e1-14fb90ae2043	2021-05-26 13:48:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:48:26.951+03	2021-05-26 13:48:26.957+03	
a2b4d564-d900-cb5c-4061-bf29ead878aa	2021-05-26 13:48:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:48:46.951+03	2021-05-26 13:48:46.958+03	
57ee2787-ae13-985b-8a71-cc61b4ea1de4	2021-05-26 13:49:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:49:06.952+03	2021-05-26 13:49:06.96+03	
0a0e7dfb-4c82-38ee-9cd1-a24c4df3315f	2021-05-26 13:49:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:49:27.952+03	2021-05-26 13:49:27.959+03	
ab6a2ddd-7bf3-c06c-92fa-7d9c1819e082	2021-05-26 13:49:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:49:48.951+03	2021-05-26 13:49:48.961+03	
2f6656c3-2f98-c1da-4c33-3b2be6cf8033	2021-05-26 13:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 13:50:00.951+03	2021-05-26 13:50:00.958+03	ERROR
c5155720-2990-7ea1-89e1-1dce81cc2c5a	2021-05-26 13:50:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:50:18.951+03	2021-05-26 13:50:18.958+03	
cd11847c-58e7-9586-1679-610b003d525c	2021-05-26 13:50:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:50:38.951+03	2021-05-26 13:50:38.958+03	
9533b65e-5f5a-2ddb-1d51-5de62477eba9	2021-05-26 13:50:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:50:58.952+03	2021-05-26 13:50:58.961+03	
53fa67af-76a4-ee4b-d455-a48976baeba5	2021-05-26 13:51:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:51:19.951+03	2021-05-26 13:51:19.958+03	
f9a23e1a-5155-905a-0df5-a3560307f565	2021-05-26 13:51:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:51:39.951+03	2021-05-26 13:51:39.958+03	
c55cec56-e615-66c7-3a15-f5f4c130110c	2021-05-26 13:51:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:51:59.951+03	2021-05-26 13:51:59.958+03	
f23e29f1-a5d5-6595-9279-43e07a802da9	2021-05-26 13:52:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:52:19.951+03	2021-05-26 13:52:19.958+03	
a7e6105a-3fec-e6ec-108e-3384306e60f4	2021-05-26 13:52:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:52:39.951+03	2021-05-26 13:52:39.957+03	
ef4a57e7-ffa7-2b3e-827a-515e6984d885	2021-05-26 13:52:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:52:59.951+03	2021-05-26 13:52:59.958+03	
71b1cd17-95b2-8c10-bf23-de12b12c520d	2021-05-26 13:53:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:53:19.951+03	2021-05-26 13:53:19.958+03	
772e9caf-68bc-df42-cd78-19e730b886ac	2021-05-26 13:53:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:53:39.951+03	2021-05-26 13:53:39.958+03	
21e3752f-2339-78fd-29c2-49e86427ba3a	2021-05-26 13:54:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:54:09.951+03	2021-05-26 13:54:09.958+03	
ef9adeff-cfa7-5232-7f77-6d9f22240adf	2021-05-26 13:54:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:54:29.951+03	2021-05-26 13:54:29.959+03	
3e622a08-7468-0cdc-6c44-19ae6f72b151	2021-05-26 13:54:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:54:49.951+03	2021-05-26 13:54:49.958+03	
7e6f221d-e497-5adc-9299-fd7aaf31777c	2021-05-26 13:55:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:55:19.951+03	2021-05-26 13:55:19.958+03	
a99263f2-fdee-6ddc-7e5a-5f1fc61b47ed	2021-05-26 13:55:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:55:39.951+03	2021-05-26 13:55:39.958+03	
df9fca34-6b54-53d8-155e-e082ce1d2533	2021-05-26 13:55:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:55:59.951+03	2021-05-26 13:55:59.958+03	
55f64353-243a-8718-77da-c7f018bc01f7	2021-05-26 13:56:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:56:19.951+03	2021-05-26 13:56:19.957+03	
98b9c14e-9f80-e3f5-8bac-e4e340815f40	2021-05-26 13:56:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:56:49.951+03	2021-05-26 13:56:49.958+03	
d3c213df-61be-401f-e38c-dbd62960578e	2021-05-26 13:57:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:57:09.951+03	2021-05-26 13:57:09.959+03	
8f8206c3-3ac7-5558-cda8-b6b663b6e91a	2021-05-26 13:57:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:57:29.951+03	2021-05-26 13:57:29.958+03	
8c3e8550-fcf5-8c5a-6dd8-b9a6354dc2dd	2021-05-26 13:57:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:57:49.951+03	2021-05-26 13:57:49.958+03	
1adb8051-890b-1fe2-0992-2b610af4f269	2021-05-26 13:58:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:58:09.951+03	2021-05-26 13:58:09.958+03	
19e9da81-873d-e558-ae2d-9b02e4ee7b7f	2021-05-26 13:58:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:58:29.951+03	2021-05-26 13:58:29.958+03	
f914828e-4b4f-ded3-28e9-08ab9a4aa9ff	2021-05-26 13:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:58:49.951+03	2021-05-26 13:58:49.958+03	
a2e98bb4-2345-918b-866c-e68a209a7617	2021-05-26 13:59:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:59:09.951+03	2021-05-26 13:59:10.258+03	
44aea33d-c701-d1b8-4ad1-f37b44733809	2021-05-26 13:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:59:29.951+03	2021-05-26 13:59:29.958+03	
7500400a-9966-fcaa-f742-c947f6356cdf	2021-05-26 13:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 13:59:49.951+03	2021-05-26 13:59:49.958+03	
18e6f969-e549-d183-3669-28d4ecaf8e80	2021-05-26 14:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 14:00:00.951+03	2021-05-26 14:00:00.956+03	ERROR
dc231bf2-165e-97a8-8693-b109258591c0	2021-05-26 14:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:00:19.951+03	2021-05-26 14:00:19.958+03	
536e1011-27a2-192a-980c-8904ed148421	2021-05-26 14:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:00:39.951+03	2021-05-26 14:00:39.958+03	
06ca3983-826a-9010-db59-63b7559e3b0f	2021-05-26 14:00:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:00:59.951+03	2021-05-26 14:00:59.958+03	
9a7596a9-8cef-f486-0743-2a6b1152e085	2021-05-26 14:01:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:01:19.951+03	2021-05-26 14:01:19.958+03	
1bad9fa7-46f2-513d-d43a-025c29d3fc1b	2021-05-26 14:01:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:01:39.951+03	2021-05-26 14:01:39.958+03	
aac3f3db-a423-43e5-7059-e44a40298d47	2021-05-26 14:01:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:01:59.951+03	2021-05-26 14:01:59.96+03	
18f09cf9-0db1-e2e6-4b7e-cdbe23acf578	2021-05-26 14:02:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:02:19.951+03	2021-05-26 14:02:19.959+03	
fc540b40-d5fb-4ce6-bc6c-f814f198b308	2021-05-26 14:02:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:02:39.951+03	2021-05-26 14:02:39.957+03	
5281a073-e1ba-6315-83b4-a5aa948246d8	2021-05-26 14:02:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:02:59.951+03	2021-05-26 14:02:59.958+03	
3b8d3c39-8408-a372-3156-ff90efcc6f45	2021-05-26 14:03:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:03:19.951+03	2021-05-26 14:03:19.959+03	
9f867bd2-0123-4a71-b2d3-39b77326826e	2021-05-26 14:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:00:09.951+03	2021-05-26 14:00:09.961+03	
6c5ee83a-25e2-7290-db32-aa4e663c4c5f	2021-05-26 14:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:00:29.951+03	2021-05-26 14:00:29.958+03	
e62307c3-6322-7b92-85de-6b72fa985f95	2021-05-26 14:00:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:00:49.951+03	2021-05-26 14:00:49.958+03	
ba80adcd-9ef6-451b-f704-e09fe1b88ca0	2021-05-26 14:01:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:01:09.951+03	2021-05-26 14:01:09.958+03	
c38f6578-83cc-106e-7369-6ade5b10a655	2021-05-26 14:01:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:01:29.951+03	2021-05-26 14:01:29.958+03	
328f17b4-12b2-3103-7a8a-bc0683257fcb	2021-05-26 14:01:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:01:49.951+03	2021-05-26 14:01:49.958+03	
0561b278-78c5-1d24-f900-6bc0b36f4d90	2021-05-26 14:02:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:02:09.951+03	2021-05-26 14:02:09.959+03	
320290bf-4392-218e-c8ff-5f652aa59511	2021-05-26 14:02:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:02:29.951+03	2021-05-26 14:02:29.958+03	
1f1f4693-b84e-aa4b-0726-d42472a06808	2021-05-26 14:02:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:02:49.951+03	2021-05-26 14:02:49.958+03	
ffab6fd7-9d51-6bde-dc1c-fec883e4d757	2021-05-26 14:03:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:03:09.951+03	2021-05-26 14:03:09.959+03	
c816e886-4eaf-2439-d17a-585f7f0fe1ee	2021-05-26 14:03:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:03:29.951+03	2021-05-26 14:03:29.958+03	
5982c46d-fdf4-4c68-86f5-34b553798e48	2021-05-26 14:03:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:03:49.951+03	2021-05-26 14:03:49.958+03	
0c60a560-9680-2cc7-ebe9-5127dc160bba	2021-05-26 14:04:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:04:09.951+03	2021-05-26 14:04:09.958+03	
4c0f6ff4-8d8d-ee97-d9c5-df569fe62752	2021-05-26 14:04:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:04:29.951+03	2021-05-26 14:04:29.958+03	
b434fa2a-3527-fda3-8b20-6d5a47e82808	2021-05-26 14:04:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:04:49.951+03	2021-05-26 14:04:49.958+03	
928dc616-6697-b6cd-0e9b-1756f4ba8cb1	2021-05-26 14:05:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:05:09.951+03	2021-05-26 14:05:09.958+03	
7ed97ba0-3a43-f29f-2b0c-dcfc3144e3d9	2021-05-26 14:05:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:05:19.951+03	2021-05-26 14:05:19.958+03	
059f5787-a2bb-049b-b8bc-1da42d3fce95	2021-05-26 14:05:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:05:39.951+03	2021-05-26 14:05:39.957+03	
e0275bd9-aee1-a5c3-f7b5-cc1ed0828e49	2021-05-26 14:05:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:05:59.951+03	2021-05-26 14:05:59.957+03	
06b6a86b-ecea-d920-2dce-59005a019d65	2021-05-26 14:06:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:06:19.951+03	2021-05-26 14:06:19.957+03	
3b617248-7ac1-17b2-e1d7-586817e934b5	2021-05-26 14:06:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:06:39.951+03	2021-05-26 14:06:39.957+03	
c5b4aee3-ea79-52ea-f5f8-959a5dc4d3f6	2021-05-26 14:06:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:06:59.951+03	2021-05-26 14:06:59.958+03	
81d4ec4e-9f91-8deb-a662-c8b5492c5e9d	2021-05-26 14:07:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:07:19.951+03	2021-05-26 14:07:19.959+03	
93d1b26a-a5c3-c01b-1caa-11f50772d05f	2021-05-26 14:07:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:07:39.951+03	2021-05-26 14:07:39.958+03	
f32221e8-b139-c91c-3413-6e19651a8d4d	2021-05-26 14:07:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:07:59.951+03	2021-05-26 14:07:59.959+03	
e1e242ea-9b3d-f080-b8dd-64f1f4b0995f	2021-05-26 14:08:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:08:19.951+03	2021-05-26 14:08:19.958+03	
da86988f-aacb-2bb6-bee1-89f0f19d8b57	2021-05-26 14:08:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:08:39.951+03	2021-05-26 14:08:39.959+03	
e3f1050f-59b8-c7a9-df1b-b2267770e55a	2021-05-26 14:08:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:08:59.951+03	2021-05-26 14:08:59.959+03	
49405330-654f-d2af-3177-7769b2580609	2021-05-26 14:09:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:09:20.951+03	2021-05-26 14:09:20.958+03	
f1cf7b57-c79e-99e1-66b7-e79fd0c64a5b	2021-05-26 14:09:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:09:40.951+03	2021-05-26 14:09:40.959+03	
639f0783-fc74-592c-8daf-f692e102e83b	2021-05-26 14:10:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:10:00.951+03	2021-05-26 14:10:00.958+03	
0798ba5e-cb66-7868-bd24-3fb0ff7d95b5	2021-05-26 14:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:10:20.951+03	2021-05-26 14:10:20.959+03	
3f0cbb60-4eaa-fb80-fa61-d7937add6e5a	2021-05-26 14:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:10:40.951+03	2021-05-26 14:10:40.96+03	
053b9bef-f54e-0ab4-cb5f-4898e2931d79	2021-05-26 14:11:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:11:01.951+03	2021-05-26 14:11:01.959+03	
09fd4de7-c270-a1c2-35a0-03c4b9a20bb2	2021-05-26 14:11:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:11:21.951+03	2021-05-26 14:11:21.959+03	
53776628-b3c3-1331-a7da-5ad007a98c17	2021-05-26 14:11:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:11:41.951+03	2021-05-26 14:11:41.958+03	
f524a4a8-ef70-5fce-573c-7c281caf7a7b	2021-05-26 14:12:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:12:02.952+03	2021-05-26 14:12:02.961+03	
f939896a-1746-ef92-8476-aeb0249ca41b	2021-05-26 14:12:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:12:23.952+03	2021-05-26 14:12:23.968+03	
691ee043-2a9f-22a5-b942-552c5e79f621	2021-05-26 14:12:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:12:44.951+03	2021-05-26 14:12:44.96+03	
265e3040-dd17-a249-d2f3-8d5a64bce6d8	2021-05-26 14:13:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:13:05.951+03	2021-05-26 14:13:05.96+03	
9a01f8b7-eb94-6e71-e5d4-0b5b09248eaf	2021-05-26 14:13:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:13:25.951+03	2021-05-26 14:13:25.963+03	
f506d354-9454-2078-a021-67d3c90e439e	2021-05-26 14:13:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:13:45.951+03	2021-05-26 14:13:45.959+03	
0957e8b2-c5f8-c32d-d1b1-c9458c85a9d1	2021-05-26 14:14:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:14:05.951+03	2021-05-26 14:14:05.959+03	
2777ea3c-f6a1-fe33-33d9-3a8ea6560eb7	2021-05-26 14:14:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:14:25.951+03	2021-05-26 14:14:25.959+03	
198f86d7-d0ba-1e86-d17e-39ef649e1349	2021-05-26 14:14:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:14:45.951+03	2021-05-26 14:14:45.96+03	
f0621677-e3b8-e990-dace-3e2dec71a239	2021-05-26 14:15:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:15:05.951+03	2021-05-26 14:15:05.961+03	
ac74b4fe-c7ed-82f2-a099-ef100398aed7	2021-05-26 14:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:15:25.951+03	2021-05-26 14:15:25.96+03	
ca384d02-de8c-234c-2baf-f759b1914e79	2021-05-26 14:15:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:15:46.951+03	2021-05-26 14:15:46.961+03	
8a1de4ed-db42-260e-0f21-855fb178142e	2021-05-26 14:16:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:16:06.952+03	2021-05-26 14:16:06.962+03	
7791489f-40d3-8f09-0f0a-0f27e88d2d9f	2021-05-26 14:16:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:16:28.951+03	2021-05-26 14:16:28.963+03	
39e9df8c-9ad0-dc9a-7cba-a0651a92aa6c	2021-05-26 14:16:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:16:48.951+03	2021-05-26 14:16:48.961+03	
0a91912b-e122-b28e-a548-851eaabc88f0	2021-05-26 14:17:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:17:08.951+03	2021-05-26 14:17:08.962+03	
8969518a-f4c7-7dcc-6f58-13ce9042ae44	2021-05-26 14:17:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:17:28.951+03	2021-05-26 14:17:28.959+03	
cadd8fde-f822-5762-a3eb-a289600b08e2	2021-05-26 14:17:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:17:49.951+03	2021-05-26 14:17:49.96+03	
dc1d6c35-b9a2-6ea2-3581-14b9debff34d	2021-05-26 14:18:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:18:09.951+03	2021-05-26 14:18:09.961+03	
bca276fb-0401-5efe-a41e-6cf8bbcd6ce4	2021-05-26 14:18:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:18:29.951+03	2021-05-26 14:18:29.961+03	
2c913ab6-5688-0d00-7a27-026996f3f73c	2021-05-26 14:18:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:18:49.951+03	2021-05-26 14:18:49.961+03	
8790abb6-0963-49b6-7055-7d3b3016cdfc	2021-05-26 14:19:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:19:09.951+03	2021-05-26 14:19:09.961+03	
93ec3437-8b29-7ebd-d1f9-a3f89ba16f6a	2021-05-26 14:19:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:19:30.951+03	2021-05-26 14:19:30.959+03	
259af09e-9af9-cb95-5a03-9739eaef2841	2021-05-26 14:19:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:19:50.951+03	2021-05-26 14:19:50.958+03	
f7fa3b86-06d7-6101-c4cd-4439dc1d4f7e	2021-05-26 14:20:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:20:10.951+03	2021-05-26 14:20:10.96+03	
b525a6b5-447d-663b-6088-6a3c2ae17c0f	2021-05-26 14:20:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:20:30.951+03	2021-05-26 14:20:30.959+03	
01522ea6-91a0-c8b5-308d-77091ef7c1ec	2021-05-26 14:20:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:20:50.952+03	2021-05-26 14:20:50.959+03	
b0770109-93a1-b47b-12b5-61e5d56990be	2021-05-26 14:03:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:03:39.951+03	2021-05-26 14:03:39.958+03	
67bf80a8-bb79-a7d2-b518-69a253736e5a	2021-05-26 14:03:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:03:59.951+03	2021-05-26 14:03:59.958+03	
8b8fdcb6-638b-f58d-b880-cc84f0ddb23a	2021-05-26 14:04:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:04:19.951+03	2021-05-26 14:04:19.957+03	
82ce1328-861e-2a27-5ff8-83e325c74561	2021-05-26 14:04:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:04:39.951+03	2021-05-26 14:04:39.958+03	
743410b4-8a8e-91b6-9050-d3016a3b17a8	2021-05-26 14:04:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:04:59.951+03	2021-05-26 14:04:59.958+03	
7016749a-6b94-fe71-4d3a-35adb12e6a9c	2021-05-26 14:05:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:05:29.951+03	2021-05-26 14:05:29.958+03	
93e5e14f-17e4-897a-f186-c8012b4ad2b1	2021-05-26 14:05:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:05:49.951+03	2021-05-26 14:05:49.958+03	
5f42d651-82a0-6e9d-3c32-4c305e87c70c	2021-05-26 14:06:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:06:09.951+03	2021-05-26 14:06:09.959+03	
3fbe136b-139d-a1c6-3de8-e10c25bd7004	2021-05-26 14:06:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:06:29.951+03	2021-05-26 14:06:29.958+03	
c8a0f8f9-bc33-afa6-3a00-0fcfd0d77901	2021-05-26 14:06:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:06:49.951+03	2021-05-26 14:06:49.957+03	
6f141189-9260-8190-7ff4-0752c4696ffc	2021-05-26 14:07:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:07:09.951+03	2021-05-26 14:07:09.959+03	
a2dfdca5-e4e3-c009-4adb-f5e8982a41bf	2021-05-26 14:07:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:07:29.951+03	2021-05-26 14:07:29.958+03	
7a3fa20d-b8b0-77c4-193c-c30dac57d56d	2021-05-26 14:07:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:07:49.951+03	2021-05-26 14:07:49.958+03	
232ec96d-8dad-21cf-da1b-07329c0533f5	2021-05-26 14:08:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:08:09.951+03	2021-05-26 14:08:09.959+03	
c7bbdde7-f670-9ae2-a040-6799e8da4876	2021-05-26 14:08:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:08:29.951+03	2021-05-26 14:08:29.959+03	
f17aee98-6d55-c8c4-c9e4-622ace1e8c82	2021-05-26 14:08:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:08:49.951+03	2021-05-26 14:08:49.959+03	
7ffd8fc8-2333-0af6-8285-ab3de5c203ae	2021-05-26 14:09:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:09:09.952+03	2021-05-26 14:09:09.961+03	
1f38e667-f6c8-99ae-7ace-2ad425b68238	2021-05-26 14:09:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:09:30.951+03	2021-05-26 14:09:30.958+03	
efa7391c-2853-b5c8-2b06-1ac2e210db10	2021-05-26 14:09:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:09:50.951+03	2021-05-26 14:09:50.958+03	
711bec61-cdff-0e4e-dd7b-f9ce1964acbf	2021-05-26 14:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 14:10:00.951+03	2021-05-26 14:10:00.966+03	ERROR
85e7f655-c666-954b-7ee6-0b1b3d518d6a	2021-05-26 14:10:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:10:10.951+03	2021-05-26 14:10:10.965+03	
ae88cf9a-dec1-5cde-e8a5-00b38c63b62a	2021-05-26 14:10:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:10:30.951+03	2021-05-26 14:10:30.978+03	
1cd4af9d-2af0-cc13-32e0-e6bd64e584aa	2021-05-26 14:10:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:10:50.952+03	2021-05-26 14:10:50.962+03	
91685d5a-4d89-213a-4fd4-e8194e841f9b	2021-05-26 14:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:11:11.951+03	2021-05-26 14:11:11.96+03	
a4bde5d2-d11a-a377-0c89-81755facd560	2021-05-26 14:11:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:11:31.951+03	2021-05-26 14:11:31.958+03	
77067c98-e73f-d717-58e0-f5b9d48faa56	2021-05-26 14:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:11:51.952+03	2021-05-26 14:11:51.961+03	
133bd9d0-419d-bc37-06e3-774d5382f47c	2021-05-26 14:12:12.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:12:12.954+03	2021-05-26 14:12:12.961+03	
cb9414ac-daaf-1414-7d36-fcc514c26b71	2021-05-26 14:12:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:12:33.952+03	2021-05-26 14:12:33.959+03	
d99df3e2-7407-17e1-1633-0ca6d68f66f4	2021-05-26 14:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:12:54.952+03	2021-05-26 14:12:54.959+03	
3d237367-1d83-75fa-315a-443d76eb1f8d	2021-05-26 14:13:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:13:15.951+03	2021-05-26 14:13:15.959+03	
68eac3b2-d115-241b-c36f-313d6a8db4c9	2021-05-26 14:13:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:13:35.951+03	2021-05-26 14:13:35.961+03	
d6f12d12-def6-04fe-9669-1935e3952efb	2021-05-26 14:13:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:13:55.951+03	2021-05-26 14:13:55.962+03	
dbd13ab4-238a-8dd7-bc1f-cd745c8f66ca	2021-05-26 14:14:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:14:15.951+03	2021-05-26 14:14:15.958+03	
14170298-bb4d-49ac-c327-9c9b75bab06f	2021-05-26 14:14:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:14:35.951+03	2021-05-26 14:14:35.958+03	
e1275475-078b-bf65-4cd0-8423e6a18b27	2021-05-26 14:14:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:14:55.951+03	2021-05-26 14:14:56.198+03	
09320427-96cb-2ebe-7485-3971d54e4db9	2021-05-26 14:15:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:15:15.951+03	2021-05-26 14:15:15.96+03	
dca76344-1e45-7495-44c8-44cb8924c153	2021-05-26 14:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:15:35.952+03	2021-05-26 14:15:35.959+03	
51bc74ee-77cb-138e-5645-11e261cec374	2021-05-26 14:15:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:15:56.951+03	2021-05-26 14:15:57.286+03	
8d59f6ea-f8d7-29bd-a316-a99956a84d4e	2021-05-26 14:16:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:16:17.952+03	2021-05-26 14:16:17.96+03	
1b2e0f98-ac66-c0e5-a42b-3e7fbdb2cc00	2021-05-26 14:16:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:16:38.951+03	2021-05-26 14:16:38.96+03	
06e47ae0-f722-b0b4-972e-d7f2b4297357	2021-05-26 14:16:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:16:58.951+03	2021-05-26 14:16:58.959+03	
cd31b31c-e4d8-9d02-0962-fc84252763a8	2021-05-26 14:17:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:17:18.951+03	2021-05-26 14:17:18.961+03	
2779eb8c-cf18-9d35-4645-baf73703446b	2021-05-26 14:17:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:17:38.952+03	2021-05-26 14:17:38.959+03	
1c9d5d31-f935-3071-3b24-11a4a996d968	2021-05-26 14:17:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:17:59.951+03	2021-05-26 14:17:59.959+03	
fed2c2ed-cd16-ccfc-1360-57e53727b274	2021-05-26 14:18:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:18:19.951+03	2021-05-26 14:18:19.958+03	
1c905cce-3ace-fdb1-c714-ea46b6c34641	2021-05-26 14:18:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:18:39.951+03	2021-05-26 14:18:39.959+03	
33b00a40-1ce5-b39f-78fe-cac63282c250	2021-05-26 14:18:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:18:59.951+03	2021-05-26 14:18:59.958+03	
c2072e63-0f43-f4bc-0ab8-5ae676971de5	2021-05-26 14:19:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:19:19.952+03	2021-05-26 14:19:19.958+03	
1890833a-424b-1256-988d-8ce5951fa0ea	2021-05-26 14:19:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:19:40.951+03	2021-05-26 14:19:40.957+03	
14b5f663-c845-abd3-2c36-68ba83a61b88	2021-05-26 14:20:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:20:00.951+03	2021-05-26 14:20:00.961+03	
cb5e6693-b6a8-5b21-5933-cadf0733a08b	2021-05-26 14:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 14:20:00.952+03	2021-05-26 14:20:00.971+03	ERROR
e32ef00e-6ab6-8442-5f6e-38c2667e62ca	2021-05-26 14:20:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:20:20.951+03	2021-05-26 14:20:20.96+03	
099f60c5-e267-5efc-cf82-689468650300	2021-05-26 14:20:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:20:40.951+03	2021-05-26 14:20:40.962+03	
c0b513b8-a66d-8875-56ed-de16525bf788	2021-05-26 14:21:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:21:00.952+03	2021-05-26 14:21:00.961+03	
062d0aa2-cf73-2db8-68b9-ccd8ef9fd837	2021-05-26 14:21:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:21:21.951+03	2021-05-26 14:21:21.959+03	
dd3ee758-849b-0e3c-d933-74b7057ebb6b	2021-05-26 14:21:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:21:42.951+03	2021-05-26 14:21:42.96+03	
0e4ec7b7-0182-ec51-b274-9c2d60723d05	2021-05-26 14:22:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:22:02.951+03	2021-05-26 14:22:02.962+03	
553d6204-c939-b702-fc02-e865007ed357	2021-05-26 14:22:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:22:23.951+03	2021-05-26 14:22:23.963+03	
681506ca-65dc-2986-5c08-ef1eb5ed5745	2021-05-26 14:22:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:22:43.951+03	2021-05-26 14:22:43.958+03	
edbc7ca8-14e3-32fe-1f79-bda8ca755738	2021-05-26 14:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:23:03.951+03	2021-05-26 14:23:03.959+03	
d065d20c-816a-5fb9-407e-b41b64a3aa00	2021-05-26 14:23:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:23:23.951+03	2021-05-26 14:23:23.958+03	
b7daaffa-35af-1fb4-1cdc-e3c73fbe3a19	2021-05-26 14:23:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:23:43.951+03	2021-05-26 14:23:43.958+03	
7b33b487-3df3-c976-0982-186595c6e562	2021-05-26 14:24:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:24:03.951+03	2021-05-26 14:24:03.961+03	
bcbe8e0f-b344-4fa6-7322-ab703e3431c2	2021-05-26 14:21:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:21:11.951+03	2021-05-26 14:21:11.962+03	
49379f2a-5403-b381-942c-7e755daf63f3	2021-05-26 14:21:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:21:31.952+03	2021-05-26 14:21:31.96+03	
0be9c79c-40d3-8492-af80-44a51fb95762	2021-05-26 14:21:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:21:52.951+03	2021-05-26 14:21:52.959+03	
4f942c22-182d-7bab-22fa-e9f687d77da6	2021-05-26 14:22:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:22:12.952+03	2021-05-26 14:22:12.961+03	
f8f97e8d-02df-ad75-004e-b3ba188ab56a	2021-05-26 14:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:22:33.951+03	2021-05-26 14:22:33.959+03	
5b829483-d151-e309-c251-0e41eb4faa3e	2021-05-26 14:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:22:53.951+03	2021-05-26 14:22:53.962+03	
8145055a-08c9-a202-b6b7-4493fc1741fe	2021-05-26 14:23:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:23:13.951+03	2021-05-26 14:23:13.959+03	
eba2a302-824e-5492-5d35-029625790b47	2021-05-26 14:23:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:23:33.951+03	2021-05-26 14:23:33.959+03	
0f1d275f-ddd7-83e2-35e4-cfd1bbcec866	2021-05-26 14:23:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:23:53.951+03	2021-05-26 14:23:53.96+03	
5aebb43d-f48c-f7af-94f3-dad9b4a08601	2021-05-26 14:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:24:13.951+03	2021-05-26 14:24:13.961+03	
ec0a9e5b-ea2f-6914-b679-f83d366ff480	2021-05-26 14:24:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:24:33.951+03	2021-05-26 14:24:33.958+03	
23e63672-590d-64e5-8ca5-33503492d2ba	2021-05-26 14:24:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:24:53.951+03	2021-05-26 14:24:53.96+03	
1ef1ac38-5af9-559e-a7dd-4086b72c9b47	2021-05-26 14:25:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:25:13.951+03	2021-05-26 14:25:13.96+03	
535feff7-0456-599a-b9cb-307ed5a95e5f	2021-05-26 14:25:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:25:33.951+03	2021-05-26 14:25:33.96+03	
ec0a3437-5a3c-1ec0-bcd8-57c374ed8ab2	2021-05-26 14:25:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:25:53.951+03	2021-05-26 14:25:53.959+03	
93efafa9-fe79-07e3-70f6-16c5c06440b4	2021-05-26 14:26:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:26:13.952+03	2021-05-26 14:26:13.966+03	
a01f765e-f94c-01d9-fc13-11dcb9c009a1	2021-05-26 14:26:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:26:34.952+03	2021-05-26 14:26:34.962+03	
6a5e3bf7-5163-e1b5-6e3a-99cf73f1a00f	2021-05-26 14:26:55.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:26:55.953+03	2021-05-26 14:26:55.963+03	
45beda8e-c7de-df77-7939-6b3827de223d	2021-05-26 14:27:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:27:46.951+03	2021-05-26 14:27:46.959+03	
76e88b7e-75d1-ed84-a691-7ac9161d4de7	2021-05-26 14:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:28:06.951+03	2021-05-26 14:28:06.96+03	
58dd62f6-318a-2e95-2c50-8ee46698a9a6	2021-05-26 14:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:28:26.951+03	2021-05-26 14:28:26.959+03	
6e9b2ce0-fcf9-3bc0-8076-f00803b71564	2021-05-26 14:28:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:28:46.951+03	2021-05-26 14:28:46.959+03	
fefd849a-2252-1688-8a3d-c02d312c4972	2021-05-26 14:29:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:29:06.951+03	2021-05-26 14:29:06.959+03	
b80e7d23-0042-6af0-f057-d2c5d32cbe8b	2021-05-26 14:29:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:29:26.951+03	2021-05-26 14:29:26.959+03	
6f955477-8bb6-b73a-96fd-1db0e51527a1	2021-05-26 14:29:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:29:57.952+03	2021-05-26 14:29:57.96+03	
dc4b66d4-3bbc-33ea-db42-2809f77edb69	2021-05-26 14:30:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:30:07.952+03	2021-05-26 14:30:07.96+03	
95c73760-19d7-dd58-19f6-3e5f097aca1c	2021-05-26 14:30:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:30:28.951+03	2021-05-26 14:30:28.959+03	
e5f5a1c0-bc04-88a4-3a2b-6c9990131118	2021-05-26 14:30:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:30:48.951+03	2021-05-26 14:30:48.96+03	
ecc6ab43-ac39-7409-89a7-c772f24054d9	2021-05-26 14:31:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:31:08.951+03	2021-05-26 14:31:08.961+03	
5dc21c8c-7c37-f94f-7347-71e4bcc63e7f	2021-05-26 14:31:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:31:18.951+03	2021-05-26 14:31:18.959+03	
dfa9ddac-979b-163c-6b37-0d2ce21cef56	2021-05-26 14:31:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:31:28.951+03	2021-05-26 14:31:28.959+03	
aae34988-027a-eb35-acee-fd92d663e7ff	2021-05-26 14:31:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:31:48.951+03	2021-05-26 14:31:48.959+03	
e98c7cb2-e1ce-e34d-9660-2efb8c6e6c86	2021-05-26 14:32:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:32:08.951+03	2021-05-26 14:32:08.96+03	
3dfe0b04-d40c-631e-1b63-65f9b6370ee2	2021-05-26 14:32:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:32:28.952+03	2021-05-26 14:32:28.964+03	
7c9bf35d-fc2b-18fb-00d1-8cbc91393f85	2021-05-26 14:32:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:32:49.951+03	2021-05-26 14:32:49.959+03	
867999ca-abf8-9e44-ffc4-02b068382f90	2021-05-26 14:33:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:33:19.951+03	2021-05-26 14:33:19.962+03	
9d5313a6-316c-3896-ab5d-bb72d2e0e005	2021-05-26 14:33:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:33:39.951+03	2021-05-26 14:33:39.958+03	
9ab3d8fb-816d-c6fa-9f35-e866ac4a0c72	2021-05-26 14:33:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:33:49.951+03	2021-05-26 14:33:49.963+03	
277d405f-841b-39fe-cb5e-2831c0c1f6cd	2021-05-26 14:34:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:34:09.951+03	2021-05-26 14:34:09.961+03	
cccb0d21-04c3-4272-1a85-83fdc1dbc117	2021-05-26 14:34:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:34:29.952+03	2021-05-26 14:34:29.961+03	
9adf8e99-8112-5500-283a-fd73e4fb656a	2021-05-26 14:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:34:50.952+03	2021-05-26 14:34:50.96+03	
4ef58c84-fed5-0c37-8ad4-37d5cbed8be5	2021-05-26 14:35:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:35:11.952+03	2021-05-26 14:35:11.96+03	
f1af8e82-f845-ae89-6010-968636c4ebc2	2021-05-26 14:35:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:35:32.951+03	2021-05-26 14:35:32.961+03	
996dfc47-1a6d-fbb8-c0d0-84738e9ffcf8	2021-05-26 14:35:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:35:52.951+03	2021-05-26 14:35:52.958+03	
e6e8680d-4cbc-93b6-65f7-c210f75adfee	2021-05-26 14:36:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:36:12.951+03	2021-05-26 14:36:12.96+03	
884a70f3-449c-0bc7-17d6-078be14b02bb	2021-05-26 14:36:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:36:32.952+03	2021-05-26 14:36:32.959+03	
7c882172-b2e1-195c-9ec6-4de68fbc2664	2021-05-26 14:36:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:36:53.951+03	2021-05-26 14:36:53.96+03	
4dee7c27-f7ac-5509-e7c3-1f3f6bc8e565	2021-05-26 14:37:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:37:14.951+03	2021-05-26 14:37:14.959+03	
0a2bf1bb-639a-8de0-1662-6701ef636014	2021-05-26 14:37:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:37:34.951+03	2021-05-26 14:37:34.963+03	
6ceadff1-7925-20de-a455-058de3e19bf6	2021-05-26 14:37:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:37:54.951+03	2021-05-26 14:37:54.959+03	
8add3992-3a59-ea57-16b8-66782b814b6f	2021-05-26 14:38:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:38:15.951+03	2021-05-26 14:38:15.958+03	
311a03e1-89f6-4f6d-40bb-03cdc8299d4f	2021-05-26 14:38:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:38:35.951+03	2021-05-26 14:38:35.96+03	
2e80f05a-db8b-4eb3-bcd9-c7f37382a820	2021-05-26 14:38:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:38:55.951+03	2021-05-26 14:38:55.958+03	
2d91c01d-b0ec-defa-34c8-c36a5849c8c7	2021-05-26 14:39:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:39:15.951+03	2021-05-26 14:39:15.958+03	
7c2b65a1-9f4a-2c0b-cfa9-7b0871c7d640	2021-05-26 14:39:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:39:35.951+03	2021-05-26 14:39:35.958+03	
2de0a808-c6df-5349-2aa7-8c124a3d35be	2021-05-26 14:39:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:39:55.951+03	2021-05-26 14:39:55.959+03	
a6385805-75ea-e088-90de-ff95ce9da51c	2021-05-26 14:40:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:40:05.951+03	2021-05-26 14:40:05.959+03	
6b2c8ecd-1f22-c758-f195-037071552ace	2021-05-26 14:40:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:40:25.951+03	2021-05-26 14:40:25.96+03	
4101e448-6c05-4b2d-27dc-6a8e3aa58245	2021-05-26 14:40:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:40:45.951+03	2021-05-26 14:40:45.959+03	
c655c398-412c-c5e3-74c7-8f8f729505d9	2021-05-26 14:41:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:41:05.951+03	2021-05-26 14:41:05.96+03	
5f333810-a4ab-8f0d-37f4-9522e60f7371	2021-05-26 14:41:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:41:25.951+03	2021-05-26 14:41:25.959+03	
3b1435f2-6b8e-de9a-ff40-e17633d3aa9c	2021-05-26 14:41:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:41:45.951+03	2021-05-26 14:41:45.959+03	
61409461-8cfd-12a3-bf94-d1940482f594	2021-05-26 14:42:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:42:05.951+03	2021-05-26 14:42:05.959+03	
880ad8af-6d32-f427-015f-0aa9fa4b0409	2021-05-26 14:24:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:24:23.951+03	2021-05-26 14:24:23.96+03	
8feaf7f3-797f-c00d-64b4-2604cb9c87ee	2021-05-26 14:24:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:24:43.951+03	2021-05-26 14:24:43.959+03	
1c73a094-4825-a8df-b42b-dd8573645d47	2021-05-26 14:25:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:25:03.951+03	2021-05-26 14:25:03.961+03	
7caa42d7-68b1-1e52-ceaf-7fa629033860	2021-05-26 14:25:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:25:23.951+03	2021-05-26 14:25:23.964+03	
bc12fad5-7946-3be6-9437-5d6d0a2db445	2021-05-26 14:25:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:25:43.951+03	2021-05-26 14:25:43.961+03	
9e809e9b-84d3-1940-f3c7-5629221c0870	2021-05-26 14:26:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:26:03.951+03	2021-05-26 14:26:03.961+03	
5ff0ade9-a00a-c88f-9956-671e2822668b	2021-05-26 14:26:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:26:24.951+03	2021-05-26 14:26:24.959+03	
e5876b1d-212f-d3ea-11ac-9f86ae82c1f0	2021-05-26 14:26:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:26:45.951+03	2021-05-26 14:26:45.958+03	
08f67c02-a392-af90-4e4e-c108b7a4091d	2021-05-26 14:27:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:27:06.951+03	2021-05-26 14:27:06.96+03	
de868c6a-b886-4aaf-22ed-b56850959167	2021-05-26 14:27:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:27:16.951+03	2021-05-26 14:27:16.96+03	
e5a6c490-31b8-9d19-dcae-4f9e4d368bfe	2021-05-26 14:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:27:26.951+03	2021-05-26 14:27:26.978+03	
17dc9c0a-0425-6db9-bb90-d5875259da28	2021-05-26 14:27:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:27:36.951+03	2021-05-26 14:27:36.958+03	
dcaf860c-87de-6d7f-5f90-3b4e4a2d094d	2021-05-26 14:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:27:56.951+03	2021-05-26 14:27:56.958+03	
cbfa4167-a577-523a-1fdb-de50cbfaa496	2021-05-26 14:28:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:28:16.951+03	2021-05-26 14:28:16.959+03	
cdc83437-1981-cbb1-8037-4da26ca8d9bd	2021-05-26 14:28:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:28:36.951+03	2021-05-26 14:28:36.96+03	
fb95e696-bcac-7baa-9d4f-14d64c725607	2021-05-26 14:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:28:56.951+03	2021-05-26 14:28:56.959+03	
2ec993f2-77b2-4e3c-597d-bd812008b31c	2021-05-26 14:29:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:29:16.951+03	2021-05-26 14:29:16.958+03	
6fd487fd-57d6-3b48-af90-0be92f2c245c	2021-05-26 14:29:36.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:29:36.954+03	2021-05-26 14:29:36.985+03	
0653648a-caca-2f5a-b62e-c1d769458ee8	2021-05-26 14:29:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:29:47.952+03	2021-05-26 14:29:47.962+03	
dee2bee0-658f-2b9f-23b7-ada050610126	2021-05-26 14:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 14:30:00.951+03	2021-05-26 14:30:00.959+03	ERROR
ef3b6f6a-3d17-ed26-b525-2fe7be0c1a39	2021-05-26 14:30:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:30:18.951+03	2021-05-26 14:30:18.961+03	
de42a73f-7c17-c3b7-dfcc-f82eb5682411	2021-05-26 14:30:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:30:38.951+03	2021-05-26 14:30:38.958+03	
797014bf-2837-9cb0-c678-12fbbf5aebe4	2021-05-26 14:30:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:30:58.951+03	2021-05-26 14:30:58.959+03	
1a90ce49-9cc7-7f07-a49f-75b700def344	2021-05-26 14:31:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:31:38.951+03	2021-05-26 14:31:38.959+03	
c7c89741-11b1-d4b4-d6a1-c8e073561b6c	2021-05-26 14:31:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:31:58.951+03	2021-05-26 14:31:58.958+03	
d06d90b5-8cf2-76b4-ba97-7e16d4f11f34	2021-05-26 14:32:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:32:18.951+03	2021-05-26 14:32:18.959+03	
3d35c71e-575e-6dbe-ed28-d139605f5958	2021-05-26 14:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:32:39.951+03	2021-05-26 14:32:39.958+03	
96014387-293a-c66b-088f-5ec1be4ef4aa	2021-05-26 14:32:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:32:59.951+03	2021-05-26 14:32:59.959+03	
838750a1-50e0-e58e-3d7d-86e172bdee15	2021-05-26 14:33:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:33:09.951+03	2021-05-26 14:33:09.959+03	
218f4820-7f6b-611e-3e26-2429301955e3	2021-05-26 14:33:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:33:29.951+03	2021-05-26 14:33:29.961+03	
eacfd250-4941-2272-8955-39da050caa56	2021-05-26 14:33:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:33:59.951+03	2021-05-26 14:33:59.96+03	
4ab16237-4019-3c20-34bf-f377248b84c0	2021-05-26 14:34:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:34:19.951+03	2021-05-26 14:34:19.959+03	
70fa0663-5476-2f7e-13c2-2ce309b21842	2021-05-26 14:34:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:34:40.951+03	2021-05-26 14:34:40.959+03	
2bdb94ac-1ec7-c7ca-f107-dd1f74b670ea	2021-05-26 14:35:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:35:01.952+03	2021-05-26 14:35:01.962+03	
02e0f32c-2cea-65a4-ed0b-4af1e04cc38c	2021-05-26 14:35:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:35:22.951+03	2021-05-26 14:35:22.958+03	
23601a38-aa2b-1472-14d7-59b175b6943e	2021-05-26 14:35:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:35:42.951+03	2021-05-26 14:35:42.96+03	
1e986861-7799-5817-fe14-a0140391f768	2021-05-26 14:36:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:36:02.951+03	2021-05-26 14:36:02.961+03	
771e9307-2ca0-9c74-5013-3db35803d3da	2021-05-26 14:36:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:36:22.951+03	2021-05-26 14:36:22.961+03	
47fd726a-b140-69cb-568c-005f9dded71b	2021-05-26 14:36:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:36:43.951+03	2021-05-26 14:36:43.958+03	
9e140f33-05de-272c-67f2-d92ced39ffd8	2021-05-26 14:37:03.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:37:03.952+03	2021-05-26 14:37:03.962+03	
c562b774-298a-3757-344a-b936b791ef56	2021-05-26 14:37:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:37:24.951+03	2021-05-26 14:37:24.958+03	
d34738b0-6d08-46bc-1b41-00ccef962728	2021-05-26 14:37:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:37:44.951+03	2021-05-26 14:37:44.961+03	
ee4eb433-9ff1-12c8-d5ab-a1dae59b0ca2	2021-05-26 14:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:38:04.952+03	2021-05-26 14:38:04.96+03	
bab4859a-0bcd-7821-c859-5d2b368d7da2	2021-05-26 14:38:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:38:25.951+03	2021-05-26 14:38:25.959+03	
14066525-cd95-03e6-f53b-0e4cec2f7b9a	2021-05-26 14:38:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:38:45.951+03	2021-05-26 14:38:45.959+03	
681b0399-bcdd-db61-f750-0108ca0cbaa6	2021-05-26 14:39:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:39:05.951+03	2021-05-26 14:39:05.959+03	
de09e506-b2fb-7bb6-848b-cc5431e63cb2	2021-05-26 14:39:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:39:25.951+03	2021-05-26 14:39:25.96+03	
84d69b24-e0f7-a0c2-ed03-ff5ef42c6530	2021-05-26 14:39:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:39:45.951+03	2021-05-26 14:39:45.96+03	
a0669a0e-36ca-5da7-8d48-f86427306d29	2021-05-26 14:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 14:40:00.951+03	2021-05-26 14:40:00.957+03	ERROR
ec553847-fc2c-a985-02e5-b2caf51f94c9	2021-05-26 14:40:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:40:15.951+03	2021-05-26 14:40:15.959+03	
80bfcdc5-d2a5-bdd3-ce86-895f09a27e51	2021-05-26 14:40:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:40:35.951+03	2021-05-26 14:40:35.959+03	
ca000c58-1436-a553-f4d6-578ba3929c7d	2021-05-26 14:40:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:40:55.951+03	2021-05-26 14:40:55.958+03	
b9f098e2-c882-a2d8-9553-7d5809c6667b	2021-05-26 14:41:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:41:15.951+03	2021-05-26 14:41:15.958+03	
a9e27c52-3053-1b7f-3958-6599b584d548	2021-05-26 14:41:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:41:35.951+03	2021-05-26 14:41:35.961+03	
783ce3f1-4891-2a31-cccf-334337a677aa	2021-05-26 14:41:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:41:55.951+03	2021-05-26 14:41:55.959+03	
5ed86653-a0c5-40b1-536f-2e78cf129b79	2021-05-26 14:42:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:42:25.951+03	2021-05-26 14:42:25.959+03	
4748a867-2a04-dce9-94d0-7340fd88b75d	2021-05-26 14:42:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:42:45.951+03	2021-05-26 14:42:45.959+03	
d2cb245f-cf30-4a07-c79f-2c7954fee92a	2021-05-26 14:43:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:43:05.951+03	2021-05-26 14:43:05.96+03	
7deab543-249c-6caf-da07-fccda5682309	2021-05-26 14:43:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:43:25.951+03	2021-05-26 14:43:25.959+03	
46223706-e734-835d-9efe-0cb3d864e981	2021-05-26 14:43:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:43:45.952+03	2021-05-26 14:43:45.962+03	
ae7294b9-6f0b-0d2c-c2c1-2acf5ef1f88e	2021-05-26 14:44:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:44:06.951+03	2021-05-26 14:44:06.958+03	
e30fb0f5-4ba3-9014-a5aa-9509254e6401	2021-05-26 14:44:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:44:26.951+03	2021-05-26 14:44:26.962+03	
123a8b1b-753f-aba6-ea03-8cc592817c81	2021-05-26 14:44:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:44:46.951+03	2021-05-26 14:44:46.958+03	
72a73fb7-991e-fd34-66f0-1b25ccf5f32d	2021-05-26 14:42:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:42:15.951+03	2021-05-26 14:42:15.961+03	
10c55410-9a9a-5d63-825d-ab8a7e79ad77	2021-05-26 14:42:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:42:35.951+03	2021-05-26 14:42:35.958+03	
df0c9412-f1c0-9fa9-90ec-06b51f7a0a0f	2021-05-26 14:42:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:42:55.951+03	2021-05-26 14:42:55.958+03	
cc03ca1c-16ea-69c2-0155-9d9db0a38e86	2021-05-26 14:43:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:43:15.951+03	2021-05-26 14:43:15.959+03	
9850c09d-6fe7-8cf5-abb0-2d1d4fdc9efa	2021-05-26 14:43:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:43:35.951+03	2021-05-26 14:43:35.96+03	
39a78216-c3ba-76e9-d149-2ad831d49b7f	2021-05-26 14:43:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:43:55.952+03	2021-05-26 14:43:55.962+03	
03f21ea2-b4b9-3920-3b56-693a538e81c8	2021-05-26 14:44:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:44:16.951+03	2021-05-26 14:44:16.96+03	
34551b17-2e57-fe32-70c0-90569966caed	2021-05-26 14:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:44:36.951+03	2021-05-26 14:44:36.959+03	
7bdcfc44-cb55-b367-a480-889839d0f030	2021-05-26 14:44:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:44:56.951+03	2021-05-26 14:44:56.958+03	
6b410492-d5f4-40b0-2f0b-3062b229e996	2021-05-26 14:45:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:45:17.951+03	2021-05-26 14:45:17.958+03	
f703c039-dcc0-282c-5761-8c0fca3370b0	2021-05-26 14:45:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:45:37.952+03	2021-05-26 14:45:37.961+03	
37b198bc-c2c8-63c8-f2f8-754acd3ca80c	2021-05-26 14:45:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:45:58.951+03	2021-05-26 14:45:58.959+03	
84ac583a-e177-5308-f757-203c069ec130	2021-05-26 14:46:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:46:19.951+03	2021-05-26 14:46:19.959+03	
8d111919-c5cd-47d3-f75d-a68dd5b4bf1a	2021-05-26 14:46:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:46:39.951+03	2021-05-26 14:46:39.959+03	
13f878cf-b1f7-ad41-abbc-a8e0ccc5d913	2021-05-26 14:46:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:46:59.951+03	2021-05-26 14:46:59.959+03	
5b4ff5fa-24e6-392a-d578-4735dfff3220	2021-05-26 14:47:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:47:19.951+03	2021-05-26 14:47:19.958+03	
450fff13-51f7-f655-43fc-79a0d6815dbe	2021-05-26 14:47:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:47:39.951+03	2021-05-26 14:47:39.959+03	
4a616d60-d0bd-f179-7ae7-f8ab66110ec1	2021-05-26 14:47:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:47:59.951+03	2021-05-26 14:47:59.959+03	
a494734d-ed13-c648-0814-048bd3c671a1	2021-05-26 14:48:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:48:19.951+03	2021-05-26 14:48:19.959+03	
4c210838-bcf7-1c9e-379e-c997bfd29299	2021-05-26 14:48:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:48:39.951+03	2021-05-26 14:48:39.959+03	
0414f89c-ceb5-4193-be2c-5aadfa8585b4	2021-05-26 14:48:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:48:59.951+03	2021-05-26 14:48:59.959+03	
6d7d2dc4-5ddd-8f0b-961d-af4ad1243bf2	2021-05-26 14:49:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:49:20.951+03	2021-05-26 14:49:20.961+03	
4941b6b5-559e-04f4-ea0d-124cf2e2025d	2021-05-26 14:49:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:49:41.951+03	2021-05-26 14:49:41.96+03	
b4ade69b-989c-5502-c62e-9f302c2cfcf1	2021-05-26 14:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 14:50:00.951+03	2021-05-26 14:50:00.957+03	ERROR
71daa49f-af9c-734a-1232-d7d2f0af80d4	2021-05-26 14:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:50:11.951+03	2021-05-26 14:50:11.959+03	
1b915c33-3b42-75db-9b62-18a4980e7fae	2021-05-26 14:50:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:50:31.951+03	2021-05-26 14:50:31.959+03	
4327377d-e9f3-c551-e78a-332011fb26d4	2021-05-26 14:50:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:50:51.952+03	2021-05-26 14:50:51.969+03	
072302d6-c559-773c-581f-a8172392571f	2021-05-26 14:51:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:51:02.951+03	2021-05-26 14:51:02.959+03	
0ca3db24-2348-8b09-2130-935a5c697c68	2021-05-26 14:51:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:51:22.951+03	2021-05-26 14:51:22.958+03	
0153335f-f997-e100-eab9-6e889a460bb1	2021-05-26 14:51:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:51:42.951+03	2021-05-26 14:51:42.959+03	
68889b5a-81e9-8355-b950-9dfddb46a855	2021-05-26 14:52:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:52:23.951+03	2021-05-26 14:52:23.958+03	
6876b89a-53ff-4df5-53c1-d93bbe1c3cc0	2021-05-26 14:52:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:52:43.951+03	2021-05-26 14:52:43.958+03	
2bf230c8-5bf1-53bc-4ade-12d67be84e3f	2021-05-26 14:53:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:53:03.951+03	2021-05-26 14:53:03.958+03	
4818fd17-d7e1-fee6-eb04-2c1c520f3c05	2021-05-26 14:53:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:53:13.951+03	2021-05-26 14:53:13.959+03	
9c962f52-247a-de12-2837-87903fe422f8	2021-05-26 14:53:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:53:33.951+03	2021-05-26 14:53:34.284+03	
8a68558a-7f99-b2ad-8249-a74aa7e14185	2021-05-26 14:54:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:54:03.951+03	2021-05-26 14:54:03.961+03	
d3176b99-cd28-0068-4c71-893bc90227ca	2021-05-26 14:54:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:54:23.951+03	2021-05-26 14:54:23.96+03	
a6a8bc5d-4bad-d0f9-244b-b9f0c49efa69	2021-05-26 14:54:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:54:43.951+03	2021-05-26 14:54:43.959+03	
b8febec4-006f-43b1-e2d7-7be9835b6b48	2021-05-26 14:55:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:55:03.951+03	2021-05-26 14:55:03.961+03	
b897ab9e-fb81-c9b3-3407-63eb168584c0	2021-05-26 14:55:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:55:23.951+03	2021-05-26 14:55:23.961+03	
30d2693f-e685-fb2a-6fd2-d0854d2f50f0	2021-05-26 14:55:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:55:43.951+03	2021-05-26 14:55:43.959+03	
ea95b3b1-3e74-d391-6d91-c127e57d2162	2021-05-26 14:56:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:56:03.951+03	2021-05-26 14:56:03.959+03	
bafd3222-665a-f055-4e66-576ef20aa013	2021-05-26 14:56:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:56:23.951+03	2021-05-26 14:56:23.96+03	
5736f0d7-83ef-6a8f-976b-0eb1a6b2a7e5	2021-05-26 14:56:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:56:43.951+03	2021-05-26 14:56:43.973+03	
a8b20b79-778b-787c-59a0-098c9ef60654	2021-05-26 14:57:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:57:03.951+03	2021-05-26 14:57:03.959+03	
cb3f058a-a94f-f067-a250-f64d23b771cf	2021-05-26 14:57:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:57:23.951+03	2021-05-26 14:57:23.957+03	
868e9e08-5be9-c90c-eca6-7d80ba79e5ca	2021-05-26 14:57:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:57:43.951+03	2021-05-26 14:57:43.958+03	
e06d5619-fbb2-d19f-177f-5e7fb3240d31	2021-05-26 14:58:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:58:03.951+03	2021-05-26 14:58:03.958+03	
a4c9006b-05bf-414a-bca1-c9354555431f	2021-05-26 14:58:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:58:23.951+03	2021-05-26 14:58:23.957+03	
7a472c35-184c-82e8-3599-1623ee642ab8	2021-05-26 14:58:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:58:43.951+03	2021-05-26 14:58:43.96+03	
71310ce7-6d86-eb74-8607-3e5d4800f09a	2021-05-26 14:59:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:59:03.952+03	2021-05-26 14:59:03.96+03	
9a32d576-a7f5-43d8-593f-989f4be3a1a7	2021-05-26 14:59:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:59:24.951+03	2021-05-26 14:59:24.961+03	
3aabb1ca-78de-c7d9-60ee-8faad0554cc4	2021-05-26 14:59:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:59:44.951+03	2021-05-26 14:59:44.958+03	
f5ff0ff8-3e5f-898d-e75f-f86813b02f6e	2021-05-26 15:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 15:00:00.951+03	2021-05-26 15:00:00.958+03	ERROR
e97a6d78-5ccb-94af-1fbb-54d5b605b18f	2021-05-26 15:00:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:00:14.951+03	2021-05-26 15:00:14.959+03	
54b3b2d2-baa2-c85f-8654-d5786c39bd52	2021-05-26 15:00:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:00:34.951+03	2021-05-26 15:00:34.958+03	
c2d0748e-31d7-7a8b-420b-552b678f2cef	2021-05-26 15:00:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:00:54.951+03	2021-05-26 15:00:54.958+03	
6fe7a5fd-0e74-812d-6214-192e2a4d5722	2021-05-26 15:01:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:01:14.951+03	2021-05-26 15:01:14.958+03	
aeb23c4b-4d9f-d684-e739-148c7d5efc95	2021-05-26 15:01:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:01:34.951+03	2021-05-26 15:01:34.958+03	
4c6cf70a-b71f-c823-4232-187d20d1d7ca	2021-05-26 15:01:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:01:54.951+03	2021-05-26 15:01:54.959+03	
026c745c-3f06-e4de-f76e-968aa508879c	2021-05-26 15:02:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:02:14.951+03	2021-05-26 15:02:14.958+03	
20a451f5-0764-bd31-b472-67ede100a290	2021-05-26 15:02:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:02:35.951+03	2021-05-26 15:02:35.96+03	
c4202b7f-91b2-1603-8984-ad6908468db2	2021-05-26 15:02:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:02:55.951+03	2021-05-26 15:02:55.958+03	
1f7e2cdd-76ce-4c4f-fd61-9d7115d5fe9b	2021-05-26 14:45:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:45:06.952+03	2021-05-26 14:45:06.97+03	
971fa02a-a273-f554-e63e-875d6395bc52	2021-05-26 14:45:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:45:27.951+03	2021-05-26 14:45:27.958+03	
f5420c8d-bc98-09c9-1bc3-924400b6a157	2021-05-26 14:45:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:45:48.951+03	2021-05-26 14:45:48.961+03	
48e879e6-103c-9839-c8ec-08792b93f752	2021-05-26 14:46:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:46:08.952+03	2021-05-26 14:46:08.96+03	
29e9545c-734c-47c5-9091-651dcff5250f	2021-05-26 14:46:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:46:29.951+03	2021-05-26 14:46:29.959+03	
0055d553-5258-042e-f208-a6ae321c0317	2021-05-26 14:46:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:46:49.951+03	2021-05-26 14:46:49.959+03	
65c25cf3-d713-f771-642e-2282f7656a46	2021-05-26 14:47:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:47:09.951+03	2021-05-26 14:47:09.959+03	
a1793b55-ca35-b840-b3ac-c8e76fe894c2	2021-05-26 14:47:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:47:29.951+03	2021-05-26 14:47:29.959+03	
96c63b02-0492-75e7-4838-d1dc17ff3c8b	2021-05-26 14:47:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:47:49.951+03	2021-05-26 14:47:49.959+03	
ceea0116-1bd4-ed72-1634-3b3df023c2c5	2021-05-26 14:48:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:48:09.951+03	2021-05-26 14:48:09.958+03	
51b4543f-8fe2-845b-d247-8952d8aadeec	2021-05-26 14:48:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:48:29.951+03	2021-05-26 14:48:29.959+03	
75928e08-bc7e-6a4a-4648-67f0446574f0	2021-05-26 14:48:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:48:49.951+03	2021-05-26 14:48:49.96+03	
f5301ee3-b8d9-d6c2-c215-0dca3429563b	2021-05-26 14:49:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:49:09.952+03	2021-05-26 14:49:09.961+03	
e095c353-dfe6-05d5-0c72-8133633a2b00	2021-05-26 14:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:49:30.952+03	2021-05-26 14:49:30.96+03	
98b1c367-6069-785e-a143-e68079c9fc82	2021-05-26 14:49:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:49:51.951+03	2021-05-26 14:49:51.959+03	
8c215303-c91c-3b81-0d3d-e64c51a782b6	2021-05-26 14:50:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:50:01.951+03	2021-05-26 14:50:01.96+03	
c7c81d2c-5ce6-37ee-8234-f029c59b8f7d	2021-05-26 14:50:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:50:21.951+03	2021-05-26 14:50:21.959+03	
c3ad4053-cc0e-73ee-da72-441bf69825b2	2021-05-26 14:50:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:50:41.951+03	2021-05-26 14:50:41.959+03	
2f6a6841-da5d-0050-275a-c98203a00008	2021-05-26 14:51:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:51:12.951+03	2021-05-26 14:51:12.958+03	
5093e48a-aaa1-1263-0bec-eb7438100ea5	2021-05-26 14:51:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:51:32.951+03	2021-05-26 14:51:32.959+03	
7379927d-2011-0b8d-0322-851a06978268	2021-05-26 14:51:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:51:52.951+03	2021-05-26 14:51:52.962+03	
f857d822-e521-8fe9-6ed8-8dbda8d87d25	2021-05-26 14:52:02.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:52:02.953+03	2021-05-26 14:52:02.976+03	
f793f3ff-069e-10a6-6f77-d0d3d48ad642	2021-05-26 14:52:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:52:13.951+03	2021-05-26 14:52:13.958+03	
f3b2fb24-7b5a-b777-6146-c0d5e575cb9b	2021-05-26 14:52:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:52:33.951+03	2021-05-26 14:52:33.959+03	
55446972-518f-7358-cef7-9c112e965465	2021-05-26 14:52:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:52:53.951+03	2021-05-26 14:52:53.961+03	
09f1ae96-d13b-9ec3-1b69-df4157af15b4	2021-05-26 14:53:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:53:23.951+03	2021-05-26 14:53:23.959+03	
45884157-edf0-8a37-b554-3cb52640a277	2021-05-26 14:53:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:53:43.951+03	2021-05-26 14:53:43.959+03	
688fa28d-11d8-116b-bc1e-0bd9ab7fed2d	2021-05-26 14:53:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:53:53.951+03	2021-05-26 14:53:53.961+03	
d7bb4c12-4018-dd7b-e6a9-2e5693d30014	2021-05-26 14:54:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:54:13.951+03	2021-05-26 14:54:13.961+03	
6a4dd6bf-bbd0-578a-fe11-29079390d858	2021-05-26 14:54:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:54:33.951+03	2021-05-26 14:54:33.96+03	
92daf1c0-e7b5-91a8-59b7-26d9359c1c25	2021-05-26 14:54:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:54:53.951+03	2021-05-26 14:54:54.272+03	
be22d71c-fa4a-5c34-1ec6-4b54540bf1c8	2021-05-26 14:55:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:55:13.951+03	2021-05-26 14:55:13.96+03	
8861f5fe-7f6f-404a-730d-1a2df6857dba	2021-05-26 14:55:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:55:33.951+03	2021-05-26 14:55:33.96+03	
32ac994c-f841-fa12-d80f-ca70aa99aec8	2021-05-26 14:55:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:55:53.951+03	2021-05-26 14:55:53.959+03	
c9bb880a-74ef-1ef9-2193-2643b46ab171	2021-05-26 14:56:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:56:13.951+03	2021-05-26 14:56:13.959+03	
8f9d089b-3414-a4f1-df18-ede714db5987	2021-05-26 14:56:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:56:33.951+03	2021-05-26 14:56:33.958+03	
89be4de1-a793-b578-7b78-a763a54f8002	2021-05-26 14:56:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:56:53.951+03	2021-05-26 14:56:53.96+03	
f3ccec74-6e33-e3c7-e1cf-beb02aae1a9e	2021-05-26 14:57:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:57:13.951+03	2021-05-26 14:57:13.959+03	
364ae6dd-54e1-1af7-0ec1-853ec008eb57	2021-05-26 14:57:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:57:33.951+03	2021-05-26 14:57:33.961+03	
fd9a0dc6-aa10-1b32-e01a-6b7cee4b5e38	2021-05-26 14:57:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:57:53.951+03	2021-05-26 14:57:53.959+03	
2d48f75b-c22e-13fd-42d5-46092b725a65	2021-05-26 14:58:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:58:13.951+03	2021-05-26 14:58:13.958+03	
8698e333-e27f-8780-b92a-f44c39e59243	2021-05-26 14:58:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:58:33.951+03	2021-05-26 14:58:33.961+03	
cc0c4ef7-6d7c-ba63-61b8-bc82a1ff749a	2021-05-26 14:58:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:58:53.951+03	2021-05-26 14:58:53.958+03	
d6133f46-4ad5-2830-5199-bfd229c0a032	2021-05-26 14:59:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:59:14.951+03	2021-05-26 14:59:14.958+03	
475ec766-6058-f41c-c5c2-7a5dee34f0e9	2021-05-26 14:59:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:59:34.951+03	2021-05-26 14:59:34.959+03	
e98d0c81-62d5-64bd-b380-dc91c75b785d	2021-05-26 14:59:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 14:59:54.951+03	2021-05-26 14:59:54.958+03	
57a8eef4-7281-988e-1a27-7a6195219fee	2021-05-26 15:00:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:00:04.951+03	2021-05-26 15:00:04.961+03	
4abe5804-2259-f16f-1bd1-57a83db261aa	2021-05-26 15:00:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:00:24.951+03	2021-05-26 15:00:24.959+03	
74f75605-e3be-002d-3dbd-90c406de988c	2021-05-26 15:00:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:00:44.951+03	2021-05-26 15:00:44.959+03	
2ff33419-61db-33a1-2898-7234b150586a	2021-05-26 15:01:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:01:04.951+03	2021-05-26 15:01:04.959+03	
a095421c-6fda-034f-efca-16ead0bfefad	2021-05-26 15:01:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:01:24.951+03	2021-05-26 15:01:24.958+03	
21006ecd-1418-0138-63bc-77b08b32fc41	2021-05-26 15:01:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:01:44.951+03	2021-05-26 15:01:44.959+03	
ffbfcda4-a5a8-52bf-6487-5a0113d3cdb9	2021-05-26 15:02:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:02:04.951+03	2021-05-26 15:02:04.959+03	
1a8361c2-1680-5d69-4259-78158cbc3fd6	2021-05-26 15:02:24.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:02:24.952+03	2021-05-26 15:02:24.959+03	
80f20c54-f0e0-330f-aaf8-8d9310c3bae4	2021-05-26 15:02:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:02:45.951+03	2021-05-26 15:02:45.961+03	
0e9da914-9916-cc57-50d2-7e0ba61564aa	2021-05-26 15:03:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:03:05.951+03	2021-05-26 15:03:05.959+03	
98fbddeb-ff87-40b0-42e7-3b8c4794f713	2021-05-26 15:03:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:03:25.951+03	2021-05-26 15:03:25.958+03	
af583559-3183-5bc0-8492-b229b7946c4f	2021-05-26 15:03:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:03:45.951+03	2021-05-26 15:03:45.96+03	
5c808410-a6e4-14ae-9582-19330fff6b15	2021-05-26 15:04:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:04:05.951+03	2021-05-26 15:04:05.959+03	
11e18a59-d514-54ff-77fd-118c3bb1e452	2021-05-26 15:04:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:04:25.951+03	2021-05-26 15:04:25.958+03	
f5d3d7e8-458c-164c-7aee-8fac384c87cc	2021-05-26 15:04:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:04:45.951+03	2021-05-26 15:04:45.959+03	
ae0e098e-923b-9d37-be73-8c10ea0a277e	2021-05-26 15:05:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:05:05.952+03	2021-05-26 15:05:05.96+03	
ccc6f7da-1268-0fef-f3d1-ef7a3730f2cb	2021-05-26 15:05:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:05:26.951+03	2021-05-26 15:05:26.96+03	
f3f1f2a3-cd9a-a98f-89e1-adbe42549f6d	2021-05-26 15:03:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:03:15.951+03	2021-05-26 15:03:15.963+03	
7ba3876a-7a06-a1e7-ac69-62a8d310293a	2021-05-26 15:03:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:03:35.951+03	2021-05-26 15:03:35.959+03	
b727c944-65e1-ce0c-2742-45c2cc86ec9c	2021-05-26 15:03:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:03:55.951+03	2021-05-26 15:03:55.959+03	
5f685a51-f8d3-56e4-b6e6-23b7751c90e4	2021-05-26 15:04:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:04:15.951+03	2021-05-26 15:04:15.959+03	
08a4377a-ec16-b004-9ad1-fe543087d4fb	2021-05-26 15:04:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:04:35.951+03	2021-05-26 15:04:35.958+03	
4763dd43-1221-a0ec-4ba7-7054d2202e4b	2021-05-26 15:04:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:04:55.951+03	2021-05-26 15:04:55.962+03	
4952ead0-737f-49f3-38b9-368d8f10d947	2021-05-26 15:05:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:05:16.951+03	2021-05-26 15:05:16.961+03	
39db5b7e-3074-e51f-2b6f-6cc236158686	2021-05-26 15:05:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:05:36.951+03	2021-05-26 15:05:36.961+03	
ee319d1f-0f66-2101-be16-5fcaf37a6e09	2021-05-26 15:05:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:05:57.952+03	2021-05-26 15:05:57.959+03	
691ccd12-ff44-22d9-50f2-faa450f684fa	2021-05-26 15:06:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:06:18.951+03	2021-05-26 15:06:18.961+03	
2582c268-7090-711e-5124-17ca985fe0c7	2021-05-26 15:06:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:06:38.951+03	2021-05-26 15:06:38.96+03	
2e07a9f1-15c3-b21e-947d-6af066872350	2021-05-26 15:06:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:06:58.951+03	2021-05-26 15:06:58.958+03	
02e0a8eb-10bd-f4fd-05f1-527035ccda7f	2021-05-26 15:07:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:07:18.951+03	2021-05-26 15:07:18.958+03	
e4649504-519e-f699-5d44-19d0fbe8aed0	2021-05-26 15:07:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:07:38.951+03	2021-05-26 15:07:38.959+03	
3ed410cf-d66e-7d26-6206-0dbdc6860492	2021-05-26 15:07:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:07:58.951+03	2021-05-26 15:07:58.959+03	
29d9990f-74d3-fc91-79cd-b401c3eea909	2021-05-26 15:08:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:08:18.951+03	2021-05-26 15:08:18.959+03	
21e08ed1-9d10-7093-4551-06e15f36f20e	2021-05-26 15:08:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:08:38.951+03	2021-05-26 15:08:38.958+03	
7def0ce6-90ba-f920-a50f-45ebac01379d	2021-05-26 15:08:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:08:58.952+03	2021-05-26 15:08:58.965+03	
308b7d93-4a78-59bb-dcbc-30d7203139f3	2021-05-26 15:09:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:09:19.952+03	2021-05-26 15:09:19.96+03	
7349306b-c2aa-1fa7-b2e3-c04ac7a20e5f	2021-05-26 15:09:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:09:40.951+03	2021-05-26 15:09:40.958+03	
116b5d65-09ec-f1a9-c5ba-c098066ebfa4	2021-05-26 15:10:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:10:00.951+03	2021-05-26 15:10:00.971+03	
a612c50f-22f1-c4b1-de53-ba88599573d6	2021-05-26 15:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:10:20.951+03	2021-05-26 15:10:20.96+03	
70437721-0bf3-172e-1d0a-7f854642afe7	2021-05-26 15:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:10:40.951+03	2021-05-26 15:10:40.96+03	
2967c1ac-53f0-f356-cd91-d17530800043	2021-05-26 15:11:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:11:01.951+03	2021-05-26 15:11:01.959+03	
42446f89-32c4-f557-ff95-9d67025e2ed6	2021-05-26 15:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:11:21.952+03	2021-05-26 15:11:21.959+03	
3b34a5c4-c617-d896-3bb4-724a830814fa	2021-05-26 15:11:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:11:43.951+03	2021-05-26 15:11:43.96+03	
7bce6d5b-7853-9387-94e4-56d4ba0bf0ce	2021-05-26 15:12:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:12:03.952+03	2021-05-26 15:12:03.961+03	
cbce4a1a-aad2-6692-cd3f-cbc1700f2fec	2021-05-26 15:12:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:12:24.951+03	2021-05-26 15:12:24.958+03	
40e5468c-0b7f-2ae5-430d-b220e604bca7	2021-05-26 15:12:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:12:44.951+03	2021-05-26 15:12:44.96+03	
3131561e-6978-b0fc-da85-70695e9a7dad	2021-05-26 15:13:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:13:04.951+03	2021-05-26 15:13:04.959+03	
fba2969e-285f-dab2-96ed-9f4f7d18cb73	2021-05-26 15:13:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:13:24.951+03	2021-05-26 15:13:24.959+03	
21fbb597-6c4e-2859-2e65-949af75d5090	2021-05-26 15:13:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:13:44.951+03	2021-05-26 15:13:44.959+03	
9f375d77-9f72-7f21-93da-50ba912c278e	2021-05-26 15:14:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:14:04.951+03	2021-05-26 15:14:04.958+03	
296cece0-2458-fbc1-8cd9-a234310c291f	2021-05-26 15:14:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:14:24.951+03	2021-05-26 15:14:24.961+03	
69e7be29-1cf4-0714-fc88-b18b6e3cbc91	2021-05-26 15:14:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:14:44.951+03	2021-05-26 15:14:44.96+03	
3eb38387-a7e6-e40d-ec6c-614931dd9d46	2021-05-26 15:15:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:15:04.951+03	2021-05-26 15:15:04.96+03	
7cb39d4a-2ee0-88d0-bf71-6f23efef359f	2021-05-26 15:15:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:15:24.951+03	2021-05-26 15:15:24.961+03	
9204d1a9-86c8-dc60-97a0-0f17378ffd38	2021-05-26 15:15:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:15:44.951+03	2021-05-26 15:15:44.958+03	
006a7204-b87c-f6b8-fa23-6a9b8e8bee91	2021-05-26 15:16:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:16:04.952+03	2021-05-26 15:16:04.959+03	
607c6c25-bd37-c5b4-5170-85b1b993ebc2	2021-05-26 15:16:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:16:25.952+03	2021-05-26 15:16:25.959+03	
9b316674-3bd6-14c6-d548-2039856a3938	2021-05-26 15:16:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:16:46.951+03	2021-05-26 15:16:46.959+03	
5e55a55f-aff0-f5f7-69d4-4e01fd96da09	2021-05-26 15:17:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:17:06.951+03	2021-05-26 15:17:06.96+03	
fde6c13d-fce0-2bb0-6631-206994e52f18	2021-05-26 15:17:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:17:26.951+03	2021-05-26 15:17:26.959+03	
315dddc9-2e7f-929e-c349-0cfdf26c6f8c	2021-05-26 15:17:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:17:47.951+03	2021-05-26 15:17:47.963+03	
983ac85d-fcf1-1f57-3809-72520f32a7da	2021-05-26 15:18:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:18:08.951+03	2021-05-26 15:18:08.959+03	
be206cd4-c575-133b-71be-d8949d9d670d	2021-05-26 15:18:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:18:28.951+03	2021-05-26 15:18:28.959+03	
f41847cd-dccb-3aa9-a21a-a24a98e130ca	2021-05-26 15:18:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:18:48.951+03	2021-05-26 15:18:48.965+03	
ef86b562-ff81-b0ef-6b52-be26c8fd001c	2021-05-26 15:19:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:19:08.951+03	2021-05-26 15:19:08.958+03	
e92557a4-5490-099c-ae7b-eb0272639045	2021-05-26 15:19:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:19:28.951+03	2021-05-26 15:19:28.96+03	
df5f61a4-3966-6e66-10a1-b4846765a906	2021-05-26 15:19:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:19:48.951+03	2021-05-26 15:19:48.962+03	
ef65b1f8-55c5-7d67-eab8-c0274af9209c	2021-05-26 15:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 15:20:00.951+03	2021-05-26 15:20:00.958+03	ERROR
2cb0ba0a-298b-4688-ea40-916e7d294541	2021-05-26 15:20:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:20:18.951+03	2021-05-26 15:20:18.959+03	
cff5b73c-951a-cb34-46b4-0d1a02f3b840	2021-05-26 15:20:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:20:38.951+03	2021-05-26 15:20:38.96+03	
6bc81d2c-f3c1-4854-3de5-4a2d428b518d	2021-05-26 15:20:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:20:58.951+03	2021-05-26 15:20:58.958+03	
e97ce2a7-0106-5300-b0d5-31d3191344ee	2021-05-26 15:21:18.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:21:18.952+03	2021-05-26 15:21:18.961+03	
635fdecb-0f06-92fe-4486-97c9ff65987b	2021-05-26 15:21:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:21:39.951+03	2021-05-26 15:21:39.958+03	
d4972535-2449-e709-7452-d6b321366d58	2021-05-26 15:21:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:21:59.951+03	2021-05-26 15:21:59.96+03	
1d926560-5052-52d2-3523-a10e25c01322	2021-05-26 15:22:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:22:19.951+03	2021-05-26 15:22:19.959+03	
5e765b24-81c2-96a3-53f8-1082d940d542	2021-05-26 15:22:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:22:39.951+03	2021-05-26 15:22:39.965+03	
e3fb8a8e-781c-accb-3312-6ca63c49039c	2021-05-26 15:22:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:22:59.951+03	2021-05-26 15:22:59.958+03	
6c820a62-c641-337d-e833-c6bbe350bb6a	2021-05-26 15:23:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:23:19.951+03	2021-05-26 15:23:19.963+03	
405798fd-2c0c-cdc4-3ffa-cb1d810a76b8	2021-05-26 15:23:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:23:40.951+03	2021-05-26 15:23:40.962+03	
9c840b73-7e3f-feb9-79ff-50bbde03328a	2021-05-26 15:23:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:23:50.951+03	2021-05-26 15:23:50.959+03	
d480de46-c76b-b675-cba7-5bf1c95b643d	2021-05-26 15:05:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:05:46.952+03	2021-05-26 15:05:46.961+03	
cffc4383-2892-c9f1-cb17-5303d51debd6	2021-05-26 15:06:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:06:08.951+03	2021-05-26 15:06:08.959+03	
607d2f77-cceb-d664-0e15-37f7451d549c	2021-05-26 15:06:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:06:28.951+03	2021-05-26 15:06:28.96+03	
b07843d4-5c81-aefe-e58a-5a396c230d67	2021-05-26 15:06:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:06:48.951+03	2021-05-26 15:06:48.965+03	
13c3019d-c222-7108-31e4-f87af319ec92	2021-05-26 15:07:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:07:08.951+03	2021-05-26 15:07:08.958+03	
6087c209-74c9-d93f-f032-9b4bce684d7f	2021-05-26 15:07:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:07:28.951+03	2021-05-26 15:07:28.959+03	
16cd6070-2705-99d5-86e1-4c88a091c871	2021-05-26 15:07:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:07:48.951+03	2021-05-26 15:07:48.96+03	
f3d120b3-aaa9-667f-ebc5-54874c0583da	2021-05-26 15:08:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:08:08.951+03	2021-05-26 15:08:08.961+03	
0657845f-dede-b2b8-7e0f-552b1bb5f160	2021-05-26 15:08:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:08:28.951+03	2021-05-26 15:08:28.958+03	
c8a37d5e-33ee-edac-d542-41233b3f6085	2021-05-26 15:08:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:08:48.951+03	2021-05-26 15:08:48.961+03	
00402d0d-a10c-1357-54c2-e78f80a02408	2021-05-26 15:09:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:09:08.952+03	2021-05-26 15:09:08.959+03	
a1c389d4-fb62-cfa5-b5c6-e186095c1524	2021-05-26 15:09:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:09:30.951+03	2021-05-26 15:09:30.96+03	
8fe83f57-8e02-0ee1-5b90-75e6030fb355	2021-05-26 15:09:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:09:50.951+03	2021-05-26 15:09:50.959+03	
a3cd9e91-b71e-1a77-4f15-97f7b57c2b82	2021-05-26 15:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 15:10:00.951+03	2021-05-26 15:10:00.981+03	ERROR
9424fa34-0d2e-5569-ee5a-2b60516c3092	2021-05-26 15:10:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:10:10.951+03	2021-05-26 15:10:10.959+03	
cd48e9fc-be52-f6c0-6b77-4a90c953051a	2021-05-26 15:10:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:10:30.951+03	2021-05-26 15:10:30.959+03	
4dc82a70-0d50-8e2f-e7de-3decabaf9e00	2021-05-26 15:10:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:10:50.952+03	2021-05-26 15:10:50.959+03	
693d2132-bc1b-ef61-de09-274209637048	2021-05-26 15:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:11:11.951+03	2021-05-26 15:11:11.96+03	
7e5d09ab-9f62-8c21-e6c3-e8fb913340bd	2021-05-26 15:11:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:11:32.952+03	2021-05-26 15:11:32.961+03	
c54ce299-2004-4fc7-8c18-2ee7f83d4a3e	2021-05-26 15:11:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:11:53.951+03	2021-05-26 15:11:53.958+03	
84d6aa89-0f04-cb69-d4b9-c3e16bcd4cb1	2021-05-26 15:12:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:12:14.951+03	2021-05-26 15:12:14.959+03	
0d8e7585-2c02-6d7d-135d-e2216e29668f	2021-05-26 15:12:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:12:34.951+03	2021-05-26 15:12:34.96+03	
4d2286fa-67c9-54db-a444-da123d149484	2021-05-26 15:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:12:54.951+03	2021-05-26 15:12:54.959+03	
9b4562c3-13c1-03b1-6d44-bb2df2d72ca8	2021-05-26 15:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:13:14.951+03	2021-05-26 15:13:14.959+03	
09c46716-ecb6-98d2-11fd-ec68952f9a8b	2021-05-26 15:13:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:13:34.951+03	2021-05-26 15:13:34.959+03	
300046c6-ff40-a9f3-7c06-79525535d938	2021-05-26 15:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:13:54.951+03	2021-05-26 15:13:54.962+03	
56d9aa14-a8f5-3cd8-19f6-10369325d1fd	2021-05-26 15:14:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:14:14.951+03	2021-05-26 15:14:14.959+03	
4f15d637-f1ac-233f-d0dd-2fb6e42398be	2021-05-26 15:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:14:34.951+03	2021-05-26 15:14:34.959+03	
8a332b01-cc96-9eba-3d75-fcea136d6013	2021-05-26 15:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:14:54.951+03	2021-05-26 15:14:54.959+03	
fb463db8-5a88-26be-4c77-92a19ff983ee	2021-05-26 15:15:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:15:14.951+03	2021-05-26 15:15:14.958+03	
4f157bb9-b252-65db-acf5-962f005abb85	2021-05-26 15:15:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:15:34.951+03	2021-05-26 15:15:34.961+03	
7f39eba7-14fc-8516-f1ec-6fff21f5631b	2021-05-26 15:15:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:15:54.952+03	2021-05-26 15:15:54.96+03	
aebe600a-8740-8696-2a1e-4cf7b0adeba5	2021-05-26 15:16:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:16:15.951+03	2021-05-26 15:16:15.96+03	
50530780-6a11-d652-4e8a-0b51180ad652	2021-05-26 15:16:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:16:36.951+03	2021-05-26 15:16:36.963+03	
a7851c72-216d-81ea-4e5a-9d3f85a9bd3b	2021-05-26 15:16:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:16:56.951+03	2021-05-26 15:16:56.959+03	
bc0c7474-f761-3fec-0c6d-110ba551656d	2021-05-26 15:17:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:17:16.951+03	2021-05-26 15:17:16.96+03	
294e50f3-f255-7236-4562-512fef23de54	2021-05-26 15:17:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:17:36.952+03	2021-05-26 15:17:36.958+03	
e15ef12f-2618-38e3-3e00-cdcccb773de2	2021-05-26 15:17:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:17:57.952+03	2021-05-26 15:17:57.962+03	
5ed348df-450d-7390-7e0f-a37edbab4e74	2021-05-26 15:18:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:18:18.951+03	2021-05-26 15:18:18.966+03	
f3978ba3-a5b4-ff26-2932-d9ca7744213a	2021-05-26 15:18:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:18:38.951+03	2021-05-26 15:18:38.958+03	
b52b7386-8b3e-057a-abf4-f9a7ed85379d	2021-05-26 15:18:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:18:58.951+03	2021-05-26 15:18:58.959+03	
eabfd325-4310-2d45-7f07-adf7542e8353	2021-05-26 15:19:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:19:18.951+03	2021-05-26 15:19:18.958+03	
81fd9666-b4c3-9f8a-0fdf-9383ca5a5946	2021-05-26 15:19:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:19:38.951+03	2021-05-26 15:19:38.958+03	
dcb82616-9c24-a050-f958-a6117cc39798	2021-05-26 15:19:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:19:58.951+03	2021-05-26 15:19:58.96+03	
76669991-efbf-b42b-bb6e-c4d6aab08f6d	2021-05-26 15:20:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:20:08.951+03	2021-05-26 15:20:08.96+03	
6f8c2a5c-738d-3745-b7ba-8ef74b7d124c	2021-05-26 15:20:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:20:28.951+03	2021-05-26 15:20:28.959+03	
4bfec866-37f9-889c-8e73-b1029c7b8d7f	2021-05-26 15:20:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:20:48.951+03	2021-05-26 15:20:48.962+03	
0267a12b-7a83-4095-e631-7978b4c5c9ac	2021-05-26 15:21:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:21:08.951+03	2021-05-26 15:21:08.959+03	
b4696089-7756-1a84-793a-b7dc6f7fa764	2021-05-26 15:21:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:21:28.952+03	2021-05-26 15:21:28.96+03	
e722a5be-7c98-a6a9-6b0f-d63893ee1309	2021-05-26 15:21:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:21:49.951+03	2021-05-26 15:21:49.96+03	
c6af745f-ce10-d71c-7687-2d3125d271af	2021-05-26 15:22:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:22:09.951+03	2021-05-26 15:22:09.959+03	
41168ec1-1593-fb49-1e42-f4039f403c59	2021-05-26 15:22:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:22:29.951+03	2021-05-26 15:22:29.957+03	
29726cbc-31e6-b27d-3fd1-3db1a3c4475b	2021-05-26 15:22:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:22:49.951+03	2021-05-26 15:22:49.96+03	
8b55ebb4-b54b-6549-546a-eea9780fe44d	2021-05-26 15:23:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:23:09.951+03	2021-05-26 15:23:09.96+03	
28af8648-a416-fd0f-c6a1-3b8be8362bb6	2021-05-26 15:23:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:23:29.952+03	2021-05-26 15:23:29.96+03	
df9c8d4f-e0e1-bb38-072d-e61c4cc0586a	2021-05-26 15:24:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:24:00.952+03	2021-05-26 15:24:00.96+03	
1682cf1f-bed8-73ae-a7bf-d77b342bc015	2021-05-26 15:24:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:24:21.951+03	2021-05-26 15:24:21.961+03	
b4f55e41-b7ad-b4c7-fb77-187f06d408ec	2021-05-26 15:24:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:24:41.952+03	2021-05-26 15:24:41.959+03	
8ec5a582-83f9-f8e8-f87e-36bedcc70c8e	2021-05-26 15:25:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:25:02.951+03	2021-05-26 15:25:02.959+03	
22770726-95fe-a528-f813-4f8083ae7907	2021-05-26 15:25:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:25:22.952+03	2021-05-26 15:25:22.96+03	
bb629479-7373-6d69-ef1e-859286399dee	2021-05-26 15:25:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:25:43.951+03	2021-05-26 15:25:43.958+03	
db699b37-a035-5d72-b4d8-cb9fef9d4638	2021-05-26 15:26:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:26:03.951+03	2021-05-26 15:26:03.96+03	
72bc37ed-6e6b-bc45-efea-ba280d01a9de	2021-05-26 15:26:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:26:23.951+03	2021-05-26 15:26:23.959+03	
36997f46-adcf-5f1d-71b4-36c56168ae09	2021-05-26 15:24:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:24:11.951+03	2021-05-26 15:24:11.959+03	
e0a00a25-b891-fd3f-3051-986797349eb1	2021-05-26 15:24:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:24:31.951+03	2021-05-26 15:24:31.958+03	
ec4e63eb-9c37-c871-2bc7-5e85c35a2e66	2021-05-26 15:24:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:24:52.951+03	2021-05-26 15:24:52.959+03	
f8adc2cc-33f6-00a5-50bb-f2512c8da95e	2021-05-26 15:25:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:25:12.951+03	2021-05-26 15:25:13.233+03	
0804381a-e81b-6279-50ff-e4466a3b9bc4	2021-05-26 15:25:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:25:33.951+03	2021-05-26 15:25:33.962+03	
26320464-10ce-bf20-4b34-0c042d610ba8	2021-05-26 15:25:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:25:53.951+03	2021-05-26 15:25:53.959+03	
053843f3-ca48-271b-9e3f-03ae9f213f10	2021-05-26 15:26:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:26:13.951+03	2021-05-26 15:26:13.96+03	
bad14599-b948-e299-b8fd-6a3f90d480d6	2021-05-26 15:26:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:26:33.951+03	2021-05-26 15:26:33.958+03	
71a68ee8-822a-81e6-68e9-343b5916f002	2021-05-26 15:26:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:26:53.951+03	2021-05-26 15:26:53.958+03	
56f1d045-132a-584b-8487-db3aa54499e7	2021-05-26 15:27:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:27:14.952+03	2021-05-26 15:27:14.959+03	
4ed5460f-03e2-6cd0-cfa3-e3c4ff6774dd	2021-05-26 15:27:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:27:46.951+03	2021-05-26 15:27:46.96+03	
135f9cc8-1bcf-bbdb-3203-f845aa662397	2021-05-26 15:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:28:06.951+03	2021-05-26 15:28:06.959+03	
898f3551-1e6d-c148-7ddb-0a15ee058812	2021-05-26 15:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:28:26.951+03	2021-05-26 15:28:26.959+03	
3bdfc7af-8d43-869f-a51d-12b07979fa2f	2021-05-26 15:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:28:56.951+03	2021-05-26 15:28:56.958+03	
069342e9-15a2-4bc1-a334-e5022928c666	2021-05-26 15:29:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:29:16.951+03	2021-05-26 15:29:16.96+03	
3c070459-020a-6638-a79e-63150ad078ed	2021-05-26 15:29:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:29:36.952+03	2021-05-26 15:29:36.959+03	
8025eab8-949d-33ea-a970-0fc5b62ea2d6	2021-05-26 15:29:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:29:57.952+03	2021-05-26 15:29:57.959+03	
2ca9ae24-d961-ec9b-b02e-9aa0d0ee2e80	2021-05-26 15:30:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:30:08.951+03	2021-05-26 15:30:08.96+03	
4472ba35-68c5-cc8e-ebf6-76198923b072	2021-05-26 15:30:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:30:28.952+03	2021-05-26 15:30:28.96+03	
d3fdfa1d-3901-843e-3db5-433f9c25645e	2021-05-26 15:30:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:30:49.951+03	2021-05-26 15:30:49.961+03	
4ceb842a-e76b-7714-fca5-2579eab6d893	2021-05-26 15:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:31:09.951+03	2021-05-26 15:31:09.957+03	
fbb72522-cf09-f127-4db3-47eefcbff64d	2021-05-26 15:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:31:29.951+03	2021-05-26 15:31:29.966+03	
1a56d4f2-fa2e-f0fa-2645-b1458afb176e	2021-05-26 15:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:31:49.951+03	2021-05-26 15:31:49.958+03	
bc1b7499-f907-f1bc-098d-a912b836438d	2021-05-26 15:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:32:09.951+03	2021-05-26 15:32:09.958+03	
ca13ef60-c583-9420-e3c4-61b1d30262b1	2021-05-26 15:32:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:32:29.952+03	2021-05-26 15:32:29.961+03	
19199135-88f1-56ba-ea42-87e4b3bed4fa	2021-05-26 15:32:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:32:50.951+03	2021-05-26 15:32:50.966+03	
2be14e0e-18d0-4671-5804-fddc5c192ed3	2021-05-26 15:33:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:33:10.951+03	2021-05-26 15:33:10.959+03	
0ec85db9-76d1-f3a5-3573-6afbe9850cfd	2021-05-26 15:33:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:33:40.951+03	2021-05-26 15:33:40.96+03	
5d8646a4-c628-3bf1-c969-2be17dfa4f87	2021-05-26 15:34:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:34:00.951+03	2021-05-26 15:34:00.959+03	
4973c256-ebf3-2622-06d1-7feaff4847ad	2021-05-26 15:34:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:34:20.951+03	2021-05-26 15:34:20.959+03	
1a73d714-8424-20b3-bdb7-6ccde9da6659	2021-05-26 15:34:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:34:40.951+03	2021-05-26 15:34:40.96+03	
4e2e494e-ef49-f965-659c-d841861ad60d	2021-05-26 15:35:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:35:00.951+03	2021-05-26 15:35:00.959+03	
cc2b1b73-9b60-a2ef-8959-edf2aa0ea857	2021-05-26 15:35:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:35:20.951+03	2021-05-26 15:35:20.959+03	
b33d7e1e-b7a2-6238-c71c-2d5d43829cd4	2021-05-26 15:35:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:35:40.951+03	2021-05-26 15:35:40.961+03	
9b4cd828-00f3-6836-bfee-664ca95f091c	2021-05-26 15:36:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:36:00.951+03	2021-05-26 15:36:00.96+03	
44917e5c-31fe-ead9-81de-8d41d715adb2	2021-05-26 15:36:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:36:20.951+03	2021-05-26 15:36:20.96+03	
341dfd3c-7b0b-d289-68b0-7ae155f0aeab	2021-05-26 15:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:36:40.951+03	2021-05-26 15:36:40.959+03	
e986974f-1de1-d6a7-b377-ab043337184f	2021-05-26 15:37:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:37:00.951+03	2021-05-26 15:37:00.959+03	
51e6327c-6671-95d2-4f38-ea4b22fb01b3	2021-05-26 15:37:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:37:20.951+03	2021-05-26 15:37:20.961+03	
224a92ff-e147-9e4b-cad5-3ecb48eb59da	2021-05-26 15:37:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:37:40.951+03	2021-05-26 15:37:40.959+03	
3e197e5a-9cb0-231b-5953-acc5c433bd09	2021-05-26 15:38:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:38:00.951+03	2021-05-26 15:38:00.959+03	
68ccf52a-61ed-4933-b686-d71e272d219a	2021-05-26 15:38:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:38:20.951+03	2021-05-26 15:38:20.957+03	
bf0407cc-d740-642f-4969-a37f9514ec81	2021-05-26 15:38:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:38:30.951+03	2021-05-26 15:38:30.958+03	
2d21cf78-59ca-e054-dd2f-d1bb17893577	2021-05-26 15:38:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:38:50.951+03	2021-05-26 15:38:50.958+03	
16f3048d-6dda-f790-042f-815ec143c5d5	2021-05-26 15:39:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:39:10.951+03	2021-05-26 15:39:10.958+03	
a654e12a-a3b3-3282-ebd1-dfacf7390d22	2021-05-26 15:39:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:39:31.951+03	2021-05-26 15:39:31.96+03	
7994967f-e943-64f9-dca0-3795ee5c56bb	2021-05-26 15:39:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:39:51.951+03	2021-05-26 15:39:51.959+03	
42ed7848-96e2-c9f6-690d-832249f9258f	2021-05-26 15:40:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:40:01.952+03	2021-05-26 15:40:01.961+03	
ec5277cd-d1e0-30bb-a4fe-0d4d80d0151a	2021-05-26 15:40:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:40:22.952+03	2021-05-26 15:40:22.96+03	
4b338e21-9f8d-389f-8382-0c3b577a3580	2021-05-26 15:40:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:40:43.951+03	2021-05-26 15:40:43.959+03	
ff1209a7-54d7-7a89-59f8-1c6dcfcbf098	2021-05-26 15:41:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:41:03.951+03	2021-05-26 15:41:03.958+03	
29775d6b-2672-ebe8-9a59-f04157422dfe	2021-05-26 15:41:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:41:23.951+03	2021-05-26 15:41:23.959+03	
de36fd66-479b-fb61-a3dc-2aa091956880	2021-05-26 15:41:43.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:41:43.952+03	2021-05-26 15:41:43.961+03	
7c298ba8-71ad-7f36-2edb-1e27ac67ec9d	2021-05-26 15:42:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:42:05.951+03	2021-05-26 15:42:05.961+03	
4db470a1-f836-03fc-2029-46d800ca96a6	2021-05-26 15:42:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:42:25.951+03	2021-05-26 15:42:25.959+03	
652f2344-980f-902f-0549-4e212472d595	2021-05-26 15:42:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:42:45.952+03	2021-05-26 15:42:45.961+03	
8609e085-4a42-3cb2-50cf-2d89b92a59eb	2021-05-26 15:43:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:43:06.951+03	2021-05-26 15:43:06.959+03	
d4aa0199-3e40-919b-daa2-3641c1b632b1	2021-05-26 15:43:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:43:26.951+03	2021-05-26 15:43:26.959+03	
251ff96a-95ac-e323-7a65-112994085a1e	2021-05-26 15:43:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:43:46.951+03	2021-05-26 15:43:46.958+03	
f03004cf-895c-b267-66aa-af739d6b4865	2021-05-26 15:44:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:44:06.951+03	2021-05-26 15:44:06.96+03	
d9df3e66-be17-3807-8e44-8e66d165fd80	2021-05-26 15:44:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:44:26.952+03	2021-05-26 15:44:27.295+03	
0ae795ce-82c4-fd03-34c9-f8a2553ab0e0	2021-05-26 15:44:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:44:47.952+03	2021-05-26 15:44:47.96+03	
fb6979f3-37cc-8a29-9cef-124e0662c46b	2021-05-26 15:45:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:45:08.951+03	2021-05-26 15:45:08.959+03	
4723ea30-7883-4bd6-5b96-93bbfaa2831a	2021-05-26 15:26:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:26:43.951+03	2021-05-26 15:26:43.959+03	
6c6777e1-e1d4-a63e-c7d9-4ff7158a1b4d	2021-05-26 15:27:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:27:03.952+03	2021-05-26 15:27:03.96+03	
151645d1-0a70-6ee8-2f0b-6a7a2462991e	2021-05-26 15:27:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:27:25.951+03	2021-05-26 15:27:25.959+03	
ac9ae8e2-76f6-fcad-1835-43effb8d6c4d	2021-05-26 15:27:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:27:35.952+03	2021-05-26 15:27:35.961+03	
8cade3d5-529f-30b3-a140-3a00fd73b61a	2021-05-26 15:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:27:56.951+03	2021-05-26 15:27:56.959+03	
aabeaa56-e976-6452-fe31-c632ad1aaa8f	2021-05-26 15:28:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:28:16.951+03	2021-05-26 15:28:16.96+03	
b56f78e9-8806-8d48-2936-f013fa82fe5c	2021-05-26 15:28:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:28:36.951+03	2021-05-26 15:28:36.971+03	
b4556e1b-347a-9808-3b52-2dd685edbb06	2021-05-26 15:28:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:28:46.951+03	2021-05-26 15:28:46.96+03	
f3182ebc-b8c0-6b68-92b0-a51b7214b30f	2021-05-26 15:29:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:29:06.951+03	2021-05-26 15:29:06.959+03	
958d67ae-fa24-3b16-c3c9-4a22f9d42fca	2021-05-26 15:29:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:29:26.951+03	2021-05-26 15:29:26.962+03	
57b42cd2-a09c-eb2e-07b9-5143839d7716	2021-05-26 15:29:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:29:47.951+03	2021-05-26 15:29:47.958+03	
3c8a8958-7a47-7d7a-28d0-ca250c72f4c7	2021-05-26 15:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 15:30:00.951+03	2021-05-26 15:30:00.957+03	ERROR
98eb5f0c-9711-bd8f-8372-75330eae4e6e	2021-05-26 15:30:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:30:18.951+03	2021-05-26 15:30:18.959+03	
758fe7a0-4058-af56-3b9d-e080383f9c1d	2021-05-26 15:30:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:30:39.951+03	2021-05-26 15:30:39.957+03	
3cd9182c-35d1-33cb-bf3d-c704c13d0386	2021-05-26 15:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:30:59.951+03	2021-05-26 15:30:59.958+03	
a147f675-ccfe-6704-d482-ecdb816e2769	2021-05-26 15:31:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:31:19.951+03	2021-05-26 15:31:19.961+03	
e4078a0f-6da1-3e8c-9ac2-aeb2a96b9213	2021-05-26 15:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:31:39.951+03	2021-05-26 15:31:39.961+03	
3a5186fa-4cc8-0199-5e15-84d07d010e85	2021-05-26 15:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:31:59.951+03	2021-05-26 15:31:59.96+03	
1262494c-e329-3e1d-5e2b-4dcca8a91f21	2021-05-26 15:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:32:19.951+03	2021-05-26 15:32:19.959+03	
4390463b-f2d7-0f40-289a-ca1f86650f5e	2021-05-26 15:32:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:32:40.951+03	2021-05-26 15:32:40.959+03	
7db7d5f7-32d1-3416-c87c-93fc60a53a33	2021-05-26 15:33:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:33:00.951+03	2021-05-26 15:33:00.959+03	
93f262a4-1647-3ad1-2653-9292f22a6a0a	2021-05-26 15:33:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:33:20.951+03	2021-05-26 15:33:20.958+03	
9b03046d-9342-311c-9394-4fc97186368f	2021-05-26 15:33:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:33:30.951+03	2021-05-26 15:33:30.974+03	
26272631-1722-0d20-a1a9-45823e9f55a3	2021-05-26 15:33:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:33:50.951+03	2021-05-26 15:33:50.958+03	
b2baa2a6-c66f-5342-7ee0-b3ef2bc8c970	2021-05-26 15:34:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:34:10.951+03	2021-05-26 15:34:10.959+03	
35a8a433-8cb6-9ed9-e965-a8ca7df7a8e6	2021-05-26 15:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:34:30.951+03	2021-05-26 15:34:30.96+03	
0f3088e1-6625-0d59-85b0-d70b084fde30	2021-05-26 15:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:34:50.951+03	2021-05-26 15:34:50.959+03	
b8f5c28a-1b93-d1aa-754e-9822e30be96c	2021-05-26 15:35:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:35:10.951+03	2021-05-26 15:35:10.959+03	
c5729f44-3f90-5865-f56e-6cf2adf632fd	2021-05-26 15:35:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:35:30.951+03	2021-05-26 15:35:30.957+03	
1a5b230d-f3fc-d978-dc30-24bb2258b266	2021-05-26 15:35:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:35:50.951+03	2021-05-26 15:35:50.958+03	
b17369cd-a3d1-26bc-8cc1-4f44553a18a6	2021-05-26 15:36:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:36:10.951+03	2021-05-26 15:36:10.961+03	
80d0808a-4875-7ece-c47c-be6d6427f9bc	2021-05-26 15:36:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:36:30.951+03	2021-05-26 15:36:30.962+03	
4c5ff137-0300-1159-4867-bf8f6fc5424f	2021-05-26 15:36:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:36:50.951+03	2021-05-26 15:36:50.96+03	
6b810447-ce79-cd48-00e5-42c0b17adf93	2021-05-26 15:37:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:37:10.951+03	2021-05-26 15:37:10.958+03	
6e13429d-9b66-1aba-abb8-9662993e8556	2021-05-26 15:37:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:37:30.951+03	2021-05-26 15:37:30.958+03	
1f7c3052-05a6-e78d-586f-e9794741173f	2021-05-26 15:37:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:37:50.951+03	2021-05-26 15:37:50.957+03	
3d255413-ae0b-0f0d-f2e1-6382fb1de002	2021-05-26 15:38:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:38:10.951+03	2021-05-26 15:38:10.963+03	
9e2190c9-5ac9-1989-2925-676326b8379f	2021-05-26 15:38:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:38:40.951+03	2021-05-26 15:38:40.959+03	
8fbd4dd4-e59f-a60b-027c-4dc0b266af4c	2021-05-26 15:39:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:39:00.951+03	2021-05-26 15:39:00.961+03	
bebf0450-5350-fa7e-584f-c35b89659a9d	2021-05-26 15:39:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:39:20.952+03	2021-05-26 15:39:20.96+03	
ca542367-1bec-e604-0b8f-4db99b9710f7	2021-05-26 15:39:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:39:41.951+03	2021-05-26 15:39:41.963+03	
f7b0500b-0326-8a2f-60c5-d2f2e5bc14e2	2021-05-26 15:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 15:40:00.951+03	2021-05-26 15:40:00.958+03	ERROR
c1b82eee-c0ae-4a45-a780-d9b960375883	2021-05-26 15:40:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:40:11.952+03	2021-05-26 15:40:11.961+03	
5a8b2282-819f-3fbe-6313-31927ccdb0e3	2021-05-26 15:40:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:40:33.951+03	2021-05-26 15:40:33.959+03	
585d6cb0-2b82-bf0a-ed09-c515bc4985b1	2021-05-26 15:40:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:40:53.951+03	2021-05-26 15:40:53.957+03	
e6ab71d3-e900-2143-71cd-e5a55ba48914	2021-05-26 15:41:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:41:13.951+03	2021-05-26 15:41:13.958+03	
e9af4a56-c8b9-e85d-71a9-789645dfd64c	2021-05-26 15:41:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:41:33.951+03	2021-05-26 15:41:33.958+03	
4f694739-46da-7194-a132-b1245308f7f1	2021-05-26 15:41:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:41:54.952+03	2021-05-26 15:41:54.962+03	
b3d58e98-d39e-d5e8-e611-292164429a6c	2021-05-26 15:42:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:42:15.951+03	2021-05-26 15:42:15.959+03	
e1af69e2-8a0b-b561-eb96-3d64b37cdd50	2021-05-26 15:42:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:42:35.951+03	2021-05-26 15:42:36.195+03	
b940569d-986a-915c-727f-51c604e93157	2021-05-26 15:42:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:42:56.951+03	2021-05-26 15:42:56.963+03	
2da73ae8-8654-5b87-eeac-d7d5f7d6cf64	2021-05-26 15:43:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:43:16.951+03	2021-05-26 15:43:16.958+03	
0b25afd5-75c2-4e9a-fa9b-b5695a890384	2021-05-26 15:43:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:43:36.951+03	2021-05-26 15:43:36.959+03	
708a3314-40fb-458d-f214-e7369f1ab855	2021-05-26 15:43:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:43:56.951+03	2021-05-26 15:43:56.96+03	
753661ea-fc29-f16b-24ad-aa00aaf29d4d	2021-05-26 15:44:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:44:16.951+03	2021-05-26 15:44:16.959+03	
034bc85f-5af8-76a7-4a92-e536dcda87aa	2021-05-26 15:44:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:44:37.951+03	2021-05-26 15:44:37.962+03	
b46d5d99-8d49-22e4-96a0-d7daa5cf36ac	2021-05-26 15:44:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:44:58.951+03	2021-05-26 15:44:58.958+03	
c3e7642a-3ecd-488a-2cbe-6bc56507c3c2	2021-05-26 15:45:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:45:28.951+03	2021-05-26 15:45:28.958+03	
297267ce-5f28-9da2-46d8-3a770cfaefb3	2021-05-26 15:45:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:45:48.951+03	2021-05-26 15:45:48.958+03	
29efcee7-404d-a403-f1a3-6f99c363a710	2021-05-26 15:46:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:46:08.952+03	2021-05-26 15:46:08.959+03	
bc25588a-0729-208d-e5cd-c580da4207eb	2021-05-26 15:46:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:46:29.952+03	2021-05-26 15:46:29.963+03	
da136c60-dfe4-6fb1-80df-7510adf1af45	2021-05-26 15:46:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:46:50.951+03	2021-05-26 15:46:50.959+03	
cc6f3549-315f-e277-e5c8-614b1ab58c56	2021-05-26 15:47:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:47:10.951+03	2021-05-26 15:47:10.958+03	
eab5a343-1b98-9f57-1cff-139ba27db02a	2021-05-26 15:45:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:45:18.951+03	2021-05-26 15:45:18.959+03	
e3c845bf-0c8f-c3bf-460c-9affe3d3d157	2021-05-26 15:45:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:45:38.951+03	2021-05-26 15:45:38.959+03	
5ebc7592-e86e-d8ef-ff6e-74f1d36c854f	2021-05-26 15:45:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:45:58.951+03	2021-05-26 15:45:58.962+03	
7ba1c867-c819-2209-3de3-aae4812c8dda	2021-05-26 15:46:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:46:19.951+03	2021-05-26 15:46:19.958+03	
75b00177-3b4c-41f3-1f42-5c4a7ccdec0d	2021-05-26 15:46:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:46:40.951+03	2021-05-26 15:46:40.959+03	
5564222a-b427-acee-a6d6-ba634e8a5864	2021-05-26 15:47:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:47:00.951+03	2021-05-26 15:47:00.958+03	
a6c3e7e3-5bc7-ab3b-55b0-7a15273d359d	2021-05-26 15:47:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:47:20.951+03	2021-05-26 15:47:20.969+03	
733f8ba5-20c5-77f7-2f2b-b9ccffd532b4	2021-05-26 15:47:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:47:40.951+03	2021-05-26 15:47:40.959+03	
3f1af287-7c1a-0812-f33e-aab963a64230	2021-05-26 15:48:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:48:00.951+03	2021-05-26 15:48:00.96+03	
ff02e744-e48b-b471-1cc9-c09c9deec707	2021-05-26 15:48:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:48:20.951+03	2021-05-26 15:48:20.96+03	
90d2b808-4b80-4a54-f1cc-5d8410b7e2c6	2021-05-26 15:48:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:48:40.951+03	2021-05-26 15:48:40.959+03	
f92bec07-edf0-79d1-51f1-df987d3c48dc	2021-05-26 15:49:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:49:00.951+03	2021-05-26 15:49:00.959+03	
f5f2e29d-15c5-ab6c-5a71-7d1ff36a5aab	2021-05-26 15:49:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:49:20.951+03	2021-05-26 15:49:20.96+03	
18e7b1f0-96a1-c540-f490-f1cea6c27be4	2021-05-26 15:49:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:49:40.951+03	2021-05-26 15:49:40.962+03	
c5c41d05-4f9c-f481-3735-7845ebe2d293	2021-05-26 15:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 15:50:00.951+03	2021-05-26 15:50:00.984+03	ERROR
6f2f4317-23fa-c47f-d500-bcb8b27d499b	2021-05-26 15:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:50:11.952+03	2021-05-26 15:50:11.961+03	
7b1a2422-20f2-1dc3-2987-e5d855661bee	2021-05-26 15:50:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:50:32.952+03	2021-05-26 15:50:32.96+03	
5f94e1fe-b274-6434-dd5e-252ab94be105	2021-05-26 15:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:50:53.951+03	2021-05-26 15:50:53.959+03	
29ee854d-ece5-188a-5e77-e18af498dc30	2021-05-26 15:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:51:14.951+03	2021-05-26 15:51:14.959+03	
5deebda8-cba5-2cd8-628b-ec0c03d598d9	2021-05-26 15:51:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:51:35.951+03	2021-05-26 15:51:35.958+03	
1b1d3654-be5e-75f2-aee4-7d2006fd5461	2021-05-26 15:51:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:51:55.951+03	2021-05-26 15:51:55.958+03	
bf42ebbf-1838-ed20-413d-bc912492157c	2021-05-26 15:52:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:52:15.951+03	2021-05-26 15:52:15.96+03	
2e5e5df2-8d89-a1c6-1562-5784d55a8656	2021-05-26 15:52:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:52:45.951+03	2021-05-26 15:52:45.959+03	
6620030b-2083-a058-f570-01e8a6665ae2	2021-05-26 15:53:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:53:05.951+03	2021-05-26 15:53:05.959+03	
87d1adfc-3ca7-46db-dfd7-d6c3c0b314c2	2021-05-26 15:53:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:53:25.951+03	2021-05-26 15:53:25.958+03	
52ca5090-c5a3-5341-6649-05b91c2c5db4	2021-05-26 15:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:53:45.951+03	2021-05-26 15:53:45.962+03	
8c57eae5-56ad-1769-8ae5-b32a1c3a5119	2021-05-26 15:54:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:54:05.951+03	2021-05-26 15:54:05.959+03	
a4cdd1ac-408a-5ec1-643a-ecb6bbe57148	2021-05-26 15:54:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:54:25.951+03	2021-05-26 15:54:25.96+03	
57eabc6e-26a7-8639-5877-08e445710c92	2021-05-26 15:54:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:54:45.951+03	2021-05-26 15:54:45.959+03	
60d89e81-62c7-445b-63fb-a70805a59d66	2021-05-26 15:55:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:55:05.951+03	2021-05-26 15:55:05.96+03	
102669f7-40ae-1a0f-f141-04f551de293d	2021-05-26 15:55:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:55:25.952+03	2021-05-26 15:55:25.964+03	
cc948dcc-08a0-0db5-2fcd-516d5e729811	2021-05-26 15:55:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:55:46.951+03	2021-05-26 15:55:46.96+03	
8ebbd398-6c12-8059-bc54-116246765400	2021-05-26 15:56:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:56:06.952+03	2021-05-26 15:56:06.963+03	
3ec4829e-f7a4-ddda-75af-7e63e94ab54a	2021-05-26 15:56:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:56:27.952+03	2021-05-26 15:56:27.959+03	
511b6722-c167-f743-36d8-d5ad3bcbc5ee	2021-05-26 15:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:56:48.951+03	2021-05-26 15:56:48.958+03	
07568fe4-dda1-ad7a-a612-52e74d9deb31	2021-05-26 15:57:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:57:08.951+03	2021-05-26 15:57:08.96+03	
2a9af2be-fc27-ef0e-03a9-cda89fc7b39c	2021-05-26 15:57:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:57:28.951+03	2021-05-26 15:57:28.961+03	
4b5f96d5-45a1-012a-3820-149b022e6f5c	2021-05-26 15:57:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:57:48.951+03	2021-05-26 15:57:48.96+03	
cea10989-7840-dbe3-6ce5-7da71c00e282	2021-05-26 15:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:58:08.951+03	2021-05-26 15:58:08.959+03	
7787ccf6-df96-8f8f-9efc-44d71d664c94	2021-05-26 15:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:58:28.951+03	2021-05-26 15:58:28.963+03	
cab95d66-5c32-b302-c022-374e28cded7f	2021-05-26 15:58:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:58:48.952+03	2021-05-26 15:58:48.961+03	
d9b37642-27da-fffa-1383-be056ab7302f	2021-05-26 15:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:59:09.951+03	2021-05-26 15:59:09.961+03	
ac2d5af9-f9e5-5983-a398-20da36107cfc	2021-05-26 15:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:59:29.951+03	2021-05-26 15:59:29.958+03	
13f1248c-3832-023c-8bc2-8fd4f6a58d14	2021-05-26 15:59:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:59:49.951+03	2021-05-26 15:59:49.958+03	
103cd1bb-33f3-f94e-9cf7-d18bd91b5130	2021-05-26 16:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 16:00:00.951+03	2021-05-26 16:00:00.956+03	ERROR
a81c2b8c-5478-9fb2-889a-6c6295b577a4	2021-05-26 16:00:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:00:20.951+03	2021-05-26 16:00:20.958+03	
d538e409-00ff-8fc5-399d-16ed372c6d04	2021-05-26 16:00:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:00:40.951+03	2021-05-26 16:00:40.96+03	
42e1233d-7a26-4736-ead4-7d1c2e63ad72	2021-05-26 16:01:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:01:00.951+03	2021-05-26 16:01:00.959+03	
6717b5e3-300a-0410-818a-1b2a59e1bd1d	2021-05-26 16:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:01:20.952+03	2021-05-26 16:01:20.959+03	
ec10a50b-d34b-78d8-99ac-60e33f31c378	2021-05-26 16:01:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:01:41.951+03	2021-05-26 16:01:41.958+03	
12a1ca74-1112-c79f-b121-c701c85ae279	2021-05-26 16:02:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:02:02.951+03	2021-05-26 16:02:02.96+03	
c63a62be-18cd-f13f-a90b-b0c08364261f	2021-05-26 16:02:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:02:22.951+03	2021-05-26 16:02:22.959+03	
9ab605f9-44ee-11d1-a109-f18b2bb2e524	2021-05-26 16:02:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:02:42.951+03	2021-05-26 16:02:42.959+03	
86235989-5738-5e78-bbf0-21ab4b54440c	2021-05-26 16:03:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:03:02.951+03	2021-05-26 16:03:02.959+03	
c040f3c4-ecfd-78ee-1820-48aaa61be20e	2021-05-26 16:03:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:03:22.951+03	2021-05-26 16:03:22.958+03	
308e5d0e-f052-dedf-2ba5-3c6dbc699ce2	2021-05-26 16:03:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:03:42.951+03	2021-05-26 16:03:42.959+03	
55114072-cf05-0879-33b3-1059a6b8ef6a	2021-05-26 16:04:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:04:02.952+03	2021-05-26 16:04:02.96+03	
f9c96c6e-c713-1455-9fdb-c477b2c051c4	2021-05-26 16:04:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:04:23.951+03	2021-05-26 16:04:23.958+03	
6509812a-6974-6773-f1fc-041a71c53933	2021-05-26 16:04:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:04:43.951+03	2021-05-26 16:04:43.959+03	
dcaded32-8f13-e99b-37a9-4cd552c19b8f	2021-05-26 16:05:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:05:03.952+03	2021-05-26 16:05:03.959+03	
d86b709c-a401-5f17-1ba6-3bab369788d7	2021-05-26 16:05:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:05:24.951+03	2021-05-26 16:05:24.959+03	
9997ad51-8e66-314f-d875-bfcf2e588261	2021-05-26 16:05:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:05:44.951+03	2021-05-26 16:05:44.959+03	
2e21289f-32ef-847b-e97e-732ad418a42d	2021-05-26 16:06:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:06:04.951+03	2021-05-26 16:06:04.959+03	
487b8030-68ae-2ddf-a7ab-305829779fe2	2021-05-26 15:47:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:47:30.951+03	2021-05-26 15:47:30.963+03	
8e0689a3-3a7a-4e20-9734-26867ed9f7ef	2021-05-26 15:47:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:47:50.951+03	2021-05-26 15:47:50.958+03	
64e510a5-ad96-2961-87f7-ec11cd8c80dc	2021-05-26 15:48:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:48:10.951+03	2021-05-26 15:48:10.959+03	
9788b552-8ef6-43b5-720e-379602559573	2021-05-26 15:48:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:48:30.951+03	2021-05-26 15:48:30.963+03	
7b16c7a4-6e31-7536-c090-99fe2591d46a	2021-05-26 15:48:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:48:50.951+03	2021-05-26 15:48:50.97+03	
a2325baf-d1b1-2beb-8e8b-2260f216b930	2021-05-26 15:49:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:49:10.951+03	2021-05-26 15:49:10.959+03	
e75217b6-ffe5-0066-32d0-fc88885f3e56	2021-05-26 15:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:49:30.951+03	2021-05-26 15:49:30.959+03	
3f25d7d1-0da5-0442-2821-92b293cac68b	2021-05-26 15:49:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:49:50.952+03	2021-05-26 15:49:50.96+03	
9528a11f-395f-c00d-5c58-056c408f8aca	2021-05-26 15:50:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:50:01.951+03	2021-05-26 15:50:01.959+03	
84f5ab14-da55-cefb-164d-4ad29ad55bbd	2021-05-26 15:50:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:50:22.951+03	2021-05-26 15:50:22.958+03	
8d390da0-4d01-be00-0fb1-407be333879c	2021-05-26 15:50:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:50:42.952+03	2021-05-26 15:50:42.958+03	
c5d118a8-0f0c-a96d-575d-553ae04cd8e3	2021-05-26 15:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:51:03.952+03	2021-05-26 15:51:03.963+03	
7cb6bbc2-9a12-56cf-0b45-8f16f6d7708d	2021-05-26 15:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:51:24.952+03	2021-05-26 15:51:24.959+03	
56529c78-68d9-a12e-c202-d4051892903c	2021-05-26 15:51:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:51:45.951+03	2021-05-26 15:51:45.961+03	
b3fe0361-25c5-ba0f-8299-07bdea2c09d3	2021-05-26 15:52:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:52:05.951+03	2021-05-26 15:52:05.959+03	
b3654dd4-3130-9a8c-f12d-da96e8a28db4	2021-05-26 15:52:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:52:25.951+03	2021-05-26 15:52:25.96+03	
dbeb0786-360f-11c1-53ca-27a4c30de981	2021-05-26 15:52:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:52:35.951+03	2021-05-26 15:52:35.958+03	
a7cbbce6-36d0-2fd5-104a-c44e519798ba	2021-05-26 15:52:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:52:55.951+03	2021-05-26 15:52:56.004+03	
20224bae-c2f7-fdfa-7faf-00e6bb248245	2021-05-26 15:53:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:53:15.951+03	2021-05-26 15:53:15.959+03	
942758f7-d5c3-ff2e-d8ce-53bd2e9cd2d0	2021-05-26 15:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:53:35.951+03	2021-05-26 15:53:35.96+03	
9c3bc317-9edc-d0b7-6d4b-3d0a0f03772e	2021-05-26 15:53:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:53:55.951+03	2021-05-26 15:53:55.96+03	
c92f97a8-6a2a-9648-567d-89457d00d089	2021-05-26 15:54:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:54:15.951+03	2021-05-26 15:54:15.96+03	
83d5690b-a69a-e932-2eee-cc986d41b9d4	2021-05-26 15:54:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:54:35.951+03	2021-05-26 15:54:35.959+03	
b15336ed-9810-79be-a181-ca19b8836fa5	2021-05-26 15:54:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:54:55.951+03	2021-05-26 15:54:55.958+03	
86eca824-3d5f-3daf-e145-fc420b54ee54	2021-05-26 15:55:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:55:15.951+03	2021-05-26 15:55:15.959+03	
59025a7b-7a93-0162-c41c-4ee5162c195d	2021-05-26 15:55:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:55:36.951+03	2021-05-26 15:55:36.959+03	
15cc0556-3df5-6968-ce01-baadeef8ae5c	2021-05-26 15:55:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:55:56.951+03	2021-05-26 15:55:56.958+03	
50a9a47f-17f5-076d-dfb2-ff89157745cd	2021-05-26 15:56:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:56:17.951+03	2021-05-26 15:56:17.959+03	
c534a88d-2a9c-c692-860b-d5229372718a	2021-05-26 15:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:56:38.951+03	2021-05-26 15:56:38.958+03	
2e37dc42-1592-5700-b767-f3917b16c4e1	2021-05-26 15:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:56:58.951+03	2021-05-26 15:56:58.959+03	
5728359e-eae9-6de5-13b7-14bfdb9cffc0	2021-05-26 15:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:57:18.951+03	2021-05-26 15:57:18.96+03	
07160a8b-db0f-dc5b-c115-ee0632281f35	2021-05-26 15:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:57:38.951+03	2021-05-26 15:57:38.959+03	
27f90d28-dba2-4c90-1c9c-673cfffcf3c8	2021-05-26 15:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:57:58.951+03	2021-05-26 15:57:58.959+03	
6ed58cd7-27e9-e463-7812-7d4afd1d8c66	2021-05-26 15:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:58:18.951+03	2021-05-26 15:58:18.961+03	
25d4edd0-e268-f3cc-2304-ddbf5599e1f9	2021-05-26 15:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:58:38.951+03	2021-05-26 15:58:39.237+03	
916d0164-6a98-4174-4315-91b5fccf7c33	2021-05-26 15:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:58:59.951+03	2021-05-26 15:58:59.958+03	
98efe79d-239e-ec4b-d09c-220f6640ab55	2021-05-26 15:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:59:19.951+03	2021-05-26 15:59:19.96+03	
cb672818-6998-4e30-477c-a2ea578062cc	2021-05-26 15:59:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:59:39.951+03	2021-05-26 15:59:39.961+03	
d43b8865-9726-1092-b126-afc675b3e277	2021-05-26 15:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 15:59:59.952+03	2021-05-26 15:59:59.958+03	
d8167d02-4111-6f1a-c881-bf4ba1c5adec	2021-05-26 16:00:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:00:10.951+03	2021-05-26 16:00:10.959+03	
2d892eca-cfea-a8bc-89ca-f80a42445bdd	2021-05-26 16:00:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:00:30.951+03	2021-05-26 16:00:30.958+03	
d2f536dc-4651-a578-246e-aabad689ce8f	2021-05-26 16:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:00:50.951+03	2021-05-26 16:00:50.959+03	
a48cd53c-64f1-fbf7-4dfb-03712541aaa4	2021-05-26 16:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:01:10.951+03	2021-05-26 16:01:10.961+03	
5fffbfff-6900-7283-b3bc-c527151cce04	2021-05-26 16:01:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:01:31.951+03	2021-05-26 16:01:31.96+03	
639f4b03-dbfe-6585-14d1-4a55e92ecd73	2021-05-26 16:01:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:01:51.952+03	2021-05-26 16:01:51.96+03	
3f095412-dabf-f935-319a-d24a1055c098	2021-05-26 16:02:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:02:12.951+03	2021-05-26 16:02:12.958+03	
6c7d5223-ce4f-97ad-d0fc-13029a88a34f	2021-05-26 16:02:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:02:32.951+03	2021-05-26 16:02:32.958+03	
f6332071-b483-8bdd-6ec1-cc8ae7899e9c	2021-05-26 16:02:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:02:52.951+03	2021-05-26 16:02:52.959+03	
7f967172-2c9c-89c4-111a-3a945363e677	2021-05-26 16:03:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:03:12.951+03	2021-05-26 16:03:12.959+03	
7126874c-2f8f-85db-8db1-1cac72d723fc	2021-05-26 16:03:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:03:32.951+03	2021-05-26 16:03:32.96+03	
66d3ce7e-f842-bb05-91f5-dcbb6332b8d5	2021-05-26 16:03:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:03:52.951+03	2021-05-26 16:03:52.958+03	
13e972fa-174c-477e-b10d-4eaa254d18e2	2021-05-26 16:04:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:04:13.951+03	2021-05-26 16:04:13.962+03	
00128ff7-3417-b218-ceee-d98fadf76a1b	2021-05-26 16:04:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:04:33.951+03	2021-05-26 16:04:33.959+03	
73c3843b-7476-d3bc-dd7c-f6ce8b0cd419	2021-05-26 16:04:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:04:53.951+03	2021-05-26 16:04:53.958+03	
a51ab3ec-e73c-e1f6-51ed-c8b04a29db8a	2021-05-26 16:05:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:05:14.951+03	2021-05-26 16:05:14.959+03	
88c029f9-e3d8-2db8-31af-e11a0cd64cf3	2021-05-26 16:05:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:05:34.951+03	2021-05-26 16:05:34.96+03	
6d8aea68-8d80-1848-ac2c-ede4ab38ed6d	2021-05-26 16:05:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:05:54.951+03	2021-05-26 16:05:54.959+03	
36cc4a7d-16c6-bd60-91d2-821b9383b159	2021-05-26 16:06:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:06:14.951+03	2021-05-26 16:06:14.96+03	
5aab3b3a-7d31-0122-0131-a2997aab3064	2021-05-26 16:06:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:06:34.951+03	2021-05-26 16:06:34.961+03	
fb8649a5-034b-d8eb-ffda-922414462bea	2021-05-26 16:06:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:06:55.951+03	2021-05-26 16:06:55.959+03	
a179056c-8ae8-d93a-e487-1b46e0f75923	2021-05-26 16:07:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:07:16.951+03	2021-05-26 16:07:16.958+03	
29c15eeb-8912-0b9f-ab67-9f7378488392	2021-05-26 16:07:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:07:37.952+03	2021-05-26 16:07:37.963+03	
8f41cb1a-0bbf-267e-d991-4526b20ec06f	2021-05-26 16:07:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:07:58.951+03	2021-05-26 16:07:58.958+03	
65219ba7-716d-06a6-f4de-466871feaa46	2021-05-26 16:06:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:06:24.951+03	2021-05-26 16:06:24.961+03	
8efb2e80-1479-a728-729c-26faa2f9e980	2021-05-26 16:06:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:06:44.952+03	2021-05-26 16:06:44.959+03	
7bd9611e-b24d-918a-f532-16e82228ed5b	2021-05-26 16:07:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:07:05.952+03	2021-05-26 16:07:05.96+03	
232e2ada-e09d-77b8-73f6-899219511568	2021-05-26 16:07:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:07:26.952+03	2021-05-26 16:07:26.961+03	
e58f88ed-0bd7-64e8-c5a1-382e9c08bfea	2021-05-26 16:07:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:07:48.951+03	2021-05-26 16:07:48.958+03	
c4d54106-024d-4942-09b2-6d00b7716a81	2021-05-26 16:08:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:08:08.951+03	2021-05-26 16:08:08.958+03	
94c6420c-dbcb-ab8e-3a23-d9943b1768b7	2021-05-26 16:08:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:08:28.951+03	2021-05-26 16:08:28.96+03	
8292139a-6433-3dde-41a2-fa7e5b01e63f	2021-05-26 16:08:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:08:48.951+03	2021-05-26 16:08:48.965+03	
86ff890e-0f06-5fbb-fb47-8c3ad9ae5fed	2021-05-26 16:09:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:09:08.951+03	2021-05-26 16:09:08.961+03	
39dad347-8630-df03-e297-78cb5dbe0766	2021-05-26 16:09:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:09:28.951+03	2021-05-26 16:09:28.96+03	
88757801-8e88-4e3f-88f4-534f642cfaed	2021-05-26 16:09:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:09:49.951+03	2021-05-26 16:09:49.959+03	
02421dd0-448b-cdc6-b3a6-3b92db1a73f2	2021-05-26 16:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 16:10:00.951+03	2021-05-26 16:10:00.957+03	ERROR
4bf821f0-9f64-b4fa-939a-4732535f805e	2021-05-26 16:10:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:10:19.951+03	2021-05-26 16:10:19.958+03	
111ccb48-fbfe-fdf8-5ade-7c9bb4f957a5	2021-05-26 16:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:10:40.951+03	2021-05-26 16:10:40.96+03	
368746f7-fecd-7afa-6140-97692ff54db1	2021-05-26 16:11:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:11:01.951+03	2021-05-26 16:11:01.96+03	
2c71b3a2-8593-48d0-ba67-3afc74612c62	2021-05-26 16:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:11:21.951+03	2021-05-26 16:11:21.958+03	
20b3c519-25bd-fdf7-edb4-7236c35b2bd9	2021-05-26 16:11:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:11:41.951+03	2021-05-26 16:11:41.96+03	
09eb1fd0-4609-2642-aba8-da31a908efcf	2021-05-26 16:12:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:12:02.951+03	2021-05-26 16:12:02.958+03	
3ab9bde8-5d54-c681-9950-fde5ed40a503	2021-05-26 16:12:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:12:22.951+03	2021-05-26 16:12:22.959+03	
e50b246d-94a3-4ad2-aff4-4af8cc0453e7	2021-05-26 16:12:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:12:42.951+03	2021-05-26 16:12:42.961+03	
bed1e756-227e-cc72-1394-4f25ffe0ba65	2021-05-26 16:13:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:13:02.952+03	2021-05-26 16:13:02.96+03	
1a7972d4-36fb-9621-85a3-2dc053963c8d	2021-05-26 16:13:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:13:22.952+03	2021-05-26 16:13:22.959+03	
3efbc281-f76e-66a4-3a2a-44617eb4126f	2021-05-26 16:13:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:13:42.952+03	2021-05-26 16:13:42.96+03	
bf074172-b1ad-6e6f-1363-0aa0801d96be	2021-05-26 16:14:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:14:02.952+03	2021-05-26 16:14:02.959+03	
81aa02fb-6896-2344-f7c4-5bdfc284f744	2021-05-26 16:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:14:23.951+03	2021-05-26 16:14:23.958+03	
28fb0b97-f1b9-da28-ab4a-7b28a6866861	2021-05-26 16:14:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:14:43.951+03	2021-05-26 16:14:43.958+03	
012fb700-ee63-ec55-fdef-2a080e09f801	2021-05-26 16:15:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:15:03.951+03	2021-05-26 16:15:03.959+03	
664ba5ed-7985-bf2e-9963-6cf7658b87d8	2021-05-26 16:15:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:15:23.951+03	2021-05-26 16:15:23.959+03	
3c331ad2-e0e5-6e46-07a9-18eed187db41	2021-05-26 16:15:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:15:43.951+03	2021-05-26 16:15:43.959+03	
5079fc72-26db-e9ba-800f-d2cb343f7b8e	2021-05-26 16:16:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:16:03.951+03	2021-05-26 16:16:03.959+03	
05602a86-82fc-a61e-c049-78953f83fcab	2021-05-26 16:16:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:16:23.951+03	2021-05-26 16:16:23.959+03	
f14e8311-4d31-10b0-cd50-d74e422eadfa	2021-05-26 16:16:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:16:44.951+03	2021-05-26 16:16:44.958+03	
4a8c908b-b568-dee2-4edb-4f8daa0f7193	2021-05-26 16:17:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:17:04.951+03	2021-05-26 16:17:04.958+03	
bcd85ba3-5b0b-f6ee-b10e-f3a0fdbaed57	2021-05-26 16:17:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:17:25.951+03	2021-05-26 16:17:25.959+03	
e8d5dc07-485f-c461-d732-606eb921f20a	2021-05-26 16:17:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:17:45.951+03	2021-05-26 16:17:45.959+03	
5eaf82ad-939f-9b5b-c5b2-67e4402bb9ec	2021-05-26 16:18:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:18:05.951+03	2021-05-26 16:18:05.962+03	
ab62eb11-129f-eb49-356a-68bafde5723e	2021-05-26 16:18:25.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:18:25.952+03	2021-05-26 16:18:25.962+03	
e6d11033-4077-e856-c79c-dca455a70ef3	2021-05-26 16:18:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:18:46.951+03	2021-05-26 16:18:46.959+03	
b24490b2-f4aa-ca37-ae21-b31fa23fd3a7	2021-05-26 16:19:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:19:06.951+03	2021-05-26 16:19:06.962+03	
bafc1e9f-aeed-44d2-982a-c8764ea02ee9	2021-05-26 16:19:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:19:26.951+03	2021-05-26 16:19:26.959+03	
f6f54453-7931-7b98-02d7-859fadf9c6d8	2021-05-26 16:19:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:19:46.951+03	2021-05-26 16:19:46.958+03	
351bce5b-419a-e081-8aa2-2861388c33d0	2021-05-26 16:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 16:20:00.951+03	2021-05-26 16:20:00.957+03	ERROR
8d4b3420-035a-d4ca-8baa-77932b88a337	2021-05-26 16:20:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:20:17.951+03	2021-05-26 16:20:17.96+03	
87d9eadb-4fd9-05d1-2c26-a1576c19bbff	2021-05-26 16:20:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:20:37.952+03	2021-05-26 16:20:37.959+03	
f27eace6-6640-f499-0319-307c2dcf5ef0	2021-05-26 16:20:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:20:58.951+03	2021-05-26 16:20:58.959+03	
2fc4d9f4-2bfb-786a-1f94-e73dd2bb8865	2021-05-26 16:21:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:21:18.951+03	2021-05-26 16:21:18.959+03	
4ecfc9a8-0c36-aa35-5d5e-6e758ed508dd	2021-05-26 16:21:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:21:38.951+03	2021-05-26 16:21:38.958+03	
ff1f95ae-7bb9-4106-0eb3-aeb02cabbf52	2021-05-26 16:21:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:21:58.951+03	2021-05-26 16:21:58.959+03	
5b816a6e-7929-4317-f3f4-a292ad41b24a	2021-05-26 16:22:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:22:18.951+03	2021-05-26 16:22:18.962+03	
0d12fee8-8783-d82a-47fe-a7ad84b50f3e	2021-05-26 16:22:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:22:38.951+03	2021-05-26 16:22:38.959+03	
98bceda7-3bf1-e54f-3db0-e472bca97a00	2021-05-26 16:22:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:22:58.951+03	2021-05-26 16:22:58.958+03	
1966ef58-31de-8445-2ec0-3345b7a31633	2021-05-26 16:23:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:23:18.951+03	2021-05-26 16:23:18.959+03	
575ea9fa-f300-6390-eb4f-def3e890a5a6	2021-05-26 16:23:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:23:38.951+03	2021-05-26 16:23:38.958+03	
6f01e5cf-25f4-1c54-e918-108d2124e435	2021-05-26 16:23:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:23:58.951+03	2021-05-26 16:23:58.958+03	
b8944541-bd48-4c9b-d7f4-b2128a936582	2021-05-26 16:24:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:24:18.951+03	2021-05-26 16:24:18.959+03	
e90909ee-454c-b81b-a49d-e45de004c61d	2021-05-26 16:24:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:24:38.951+03	2021-05-26 16:24:38.959+03	
a1d7ea28-4916-28a7-64e2-aaebf005d1b5	2021-05-26 16:24:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:24:58.951+03	2021-05-26 16:24:58.959+03	
4b2e7422-8251-4508-0efd-b53d022c4b73	2021-05-26 16:25:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:25:18.951+03	2021-05-26 16:25:18.959+03	
b688916f-0988-7233-b362-f8d6e294e363	2021-05-26 16:25:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:25:38.951+03	2021-05-26 16:25:38.962+03	
8744f4e3-c0f1-0e14-bf54-7ddae8bbf717	2021-05-26 16:25:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:25:58.951+03	2021-05-26 16:25:58.96+03	
23dd674a-28dc-7930-484d-c37951a830fb	2021-05-26 16:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:26:18.951+03	2021-05-26 16:26:18.961+03	
89470914-49eb-ec1e-fbfa-ddcdc63b904d	2021-05-26 16:26:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:26:38.951+03	2021-05-26 16:26:38.959+03	
1defa2a1-6b56-65d8-560a-a86e5f29c00e	2021-05-26 16:26:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:26:58.951+03	2021-05-26 16:26:58.958+03	
a968cbf6-d1ec-4225-9230-301c64e5949a	2021-05-26 16:08:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:08:18.951+03	2021-05-26 16:08:18.958+03	
006cee2c-20ef-247e-08b7-f8fca1915524	2021-05-26 16:08:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:08:38.951+03	2021-05-26 16:08:38.96+03	
43c54d60-807c-3e0d-a657-911c8f6f631c	2021-05-26 16:08:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:08:58.951+03	2021-05-26 16:08:58.958+03	
5ab6de26-712a-24cc-dd2d-0b06b20e9cca	2021-05-26 16:09:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:09:18.951+03	2021-05-26 16:09:18.961+03	
16224eff-0db8-4bca-550a-bfd327814f6c	2021-05-26 16:09:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:09:38.952+03	2021-05-26 16:09:38.96+03	
cac012bb-98db-e068-6a82-dee6f7e7fafc	2021-05-26 16:09:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:09:59.951+03	2021-05-26 16:09:59.959+03	
9cab5f49-17be-8a50-e55b-4a0097f0e663	2021-05-26 16:10:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:10:09.951+03	2021-05-26 16:10:09.959+03	
a4eb05eb-1245-518e-d7f2-6bcd5072c506	2021-05-26 16:10:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:10:29.952+03	2021-05-26 16:10:29.96+03	
6a215f1e-5a1a-2f68-25d5-c9e0a8ff37bc	2021-05-26 16:10:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:10:50.952+03	2021-05-26 16:10:50.961+03	
b4e925be-aa49-58c2-0479-ca9f6f65e27a	2021-05-26 16:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:11:11.951+03	2021-05-26 16:11:11.963+03	
00b7fdb4-2074-9891-2964-6963ddac9492	2021-05-26 16:11:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:11:31.951+03	2021-05-26 16:11:31.959+03	
1334483e-10bb-773b-594e-55ff5327df0a	2021-05-26 16:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:11:51.952+03	2021-05-26 16:11:51.96+03	
30dbdfad-f7d1-cbe0-a368-12bca1d0889b	2021-05-26 16:12:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:12:12.951+03	2021-05-26 16:12:12.96+03	
16b503ad-d586-2044-7434-b58005efa1bf	2021-05-26 16:12:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:12:32.951+03	2021-05-26 16:12:32.959+03	
91766623-57f6-7360-9580-76aba4a8ad0f	2021-05-26 16:12:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:12:52.952+03	2021-05-26 16:12:52.961+03	
58505d41-02a4-faab-d4fc-88b039560ce6	2021-05-26 16:13:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:13:12.952+03	2021-05-26 16:13:12.959+03	
f755429c-09e6-bbba-b3cb-c53a8e12f245	2021-05-26 16:13:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:13:32.952+03	2021-05-26 16:13:32.959+03	
f43af379-5015-481f-3c0d-1e4075bb45bf	2021-05-26 16:13:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:13:52.952+03	2021-05-26 16:13:52.959+03	
20a5d086-3f3e-0ecd-3d68-7242c21bb10b	2021-05-26 16:14:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:14:13.951+03	2021-05-26 16:14:13.957+03	
2ea4f190-cf63-85ea-26c4-258853cac57b	2021-05-26 16:14:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:14:33.951+03	2021-05-26 16:14:33.958+03	
d3f08086-09e8-d69a-b603-f8f971c43ad3	2021-05-26 16:14:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:14:53.951+03	2021-05-26 16:14:53.957+03	
8d734934-bb91-812f-4599-6e7708293a1c	2021-05-26 16:15:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:15:13.951+03	2021-05-26 16:15:13.961+03	
5988ad59-d991-1cd0-d033-7c7ea8025cbd	2021-05-26 16:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:15:33.951+03	2021-05-26 16:15:33.958+03	
c0ca6c07-fb43-418c-f5fc-17fe7704d556	2021-05-26 16:15:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:15:53.951+03	2021-05-26 16:15:53.959+03	
bc65d470-3d50-cc79-d3f7-0f29e65e6bb8	2021-05-26 16:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:16:13.951+03	2021-05-26 16:16:13.959+03	
8b877940-2fbc-b06d-f5b0-13ffc1d39e71	2021-05-26 16:16:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:16:33.952+03	2021-05-26 16:16:33.959+03	
3a283d70-7303-e5e0-5a86-d8a85958cd3e	2021-05-26 16:16:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:16:54.951+03	2021-05-26 16:16:54.958+03	
84af1f09-f7f2-d232-b0f9-6ca4aa50a93c	2021-05-26 16:17:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:17:14.952+03	2021-05-26 16:17:14.959+03	
78877f64-dffc-36b1-75bc-7ab5b81a9d87	2021-05-26 16:17:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:17:35.951+03	2021-05-26 16:17:35.958+03	
f64519be-a37d-e4e8-fc1a-d517a17f5b07	2021-05-26 16:17:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:17:55.951+03	2021-05-26 16:17:55.958+03	
7cf90fb5-51d7-f600-2793-77c4a390ae91	2021-05-26 16:18:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:18:15.951+03	2021-05-26 16:18:15.959+03	
15ec59f3-452f-85d6-abc2-b9bd61d65305	2021-05-26 16:18:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:18:36.951+03	2021-05-26 16:18:36.959+03	
e7635b93-dda7-158c-a57a-2a1172af5db8	2021-05-26 16:18:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:18:56.951+03	2021-05-26 16:18:56.958+03	
d1a0cc22-4211-14e1-e902-45a56798ed11	2021-05-26 16:19:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:19:16.951+03	2021-05-26 16:19:16.958+03	
bbb5c15c-6b56-30b1-4298-2424a411b09a	2021-05-26 16:19:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:19:36.951+03	2021-05-26 16:19:36.96+03	
fe686f12-9a58-8433-0bb6-bf21d80298fd	2021-05-26 16:19:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:19:56.952+03	2021-05-26 16:19:56.96+03	
7ef33888-7f06-d3ba-8647-3ed08def0256	2021-05-26 16:20:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:20:07.951+03	2021-05-26 16:20:07.959+03	
38f52fbe-4270-f30c-0942-dc7c434a6a25	2021-05-26 16:20:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:20:27.952+03	2021-05-26 16:20:27.96+03	
18b63dff-2418-df1a-710d-33db6c658a75	2021-05-26 16:20:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:20:48.951+03	2021-05-26 16:20:48.959+03	
fafe2882-dc22-fc4f-c573-c90f9d6c3cf2	2021-05-26 16:21:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:21:08.951+03	2021-05-26 16:21:08.958+03	
95602c9a-947d-8f40-8545-0a9b46a1ae3c	2021-05-26 16:21:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:21:28.951+03	2021-05-26 16:21:28.959+03	
90679a07-e6d6-2092-4d66-47f8fe512705	2021-05-26 16:21:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:21:48.951+03	2021-05-26 16:21:48.959+03	
94a60e95-59fa-11ae-ccb6-c25dd005aef9	2021-05-26 16:22:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:22:08.951+03	2021-05-26 16:22:08.96+03	
3654a64b-f192-a703-f082-958974b8ffaf	2021-05-26 16:22:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:22:28.951+03	2021-05-26 16:22:28.96+03	
d94ad27c-12fc-dae8-bba5-e228f8426eff	2021-05-26 16:22:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:22:48.951+03	2021-05-26 16:22:48.958+03	
6f48ef5f-f763-ccfd-783c-d42c780fadcc	2021-05-26 16:23:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:23:08.951+03	2021-05-26 16:23:08.958+03	
c0d60f15-9fe2-9abe-eae1-eddf26effac6	2021-05-26 16:23:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:23:28.951+03	2021-05-26 16:23:28.959+03	
660bf14c-ed3a-7306-2015-9122f585c7e4	2021-05-26 16:23:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:23:48.951+03	2021-05-26 16:23:48.959+03	
5c4b19b7-da90-b9e3-3ecf-ff7896396f64	2021-05-26 16:24:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:24:08.951+03	2021-05-26 16:24:08.959+03	
79c50c04-6962-8a23-1d1c-3b6db260dc1e	2021-05-26 16:24:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:24:28.951+03	2021-05-26 16:24:28.958+03	
4ca75cdb-02da-ab6a-4fc9-ce6d0b01efae	2021-05-26 16:24:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:24:48.951+03	2021-05-26 16:24:48.965+03	
1e332840-226a-3255-1d83-e11416cb97f9	2021-05-26 16:25:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:25:08.951+03	2021-05-26 16:25:08.96+03	
00c9f3ab-0afe-c7bd-7dbf-66add258f570	2021-05-26 16:25:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:25:28.951+03	2021-05-26 16:25:28.961+03	
bc8f382a-3e2e-9ef4-95ba-52583c158b8d	2021-05-26 16:25:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:25:48.951+03	2021-05-26 16:25:48.96+03	
887adb57-b843-741d-84b5-7df522ccb4d0	2021-05-26 16:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:26:08.951+03	2021-05-26 16:26:08.959+03	
e9bd5a4a-073f-1946-cb07-7a6a6875d499	2021-05-26 16:26:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:26:28.951+03	2021-05-26 16:26:28.961+03	
09c5850e-abb3-7ea6-16c2-8c9de859ed4e	2021-05-26 16:26:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:26:48.951+03	2021-05-26 16:26:48.958+03	
9fc4fcaa-fa8a-3111-b61b-95a15a2b0494	2021-05-26 16:27:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:27:08.951+03	2021-05-26 16:27:08.964+03	
69b5a846-4a57-92e4-a026-d64b8e590df2	2021-05-26 16:27:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:27:28.951+03	2021-05-26 16:27:28.963+03	
1a03b90d-c27e-0b70-cf22-102372da29b9	2021-05-26 16:27:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:27:48.951+03	2021-05-26 16:27:48.963+03	
a2f349af-9a75-6522-b5ae-443b302dc052	2021-05-26 16:28:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:28:08.951+03	2021-05-26 16:28:08.961+03	
09dc1e3a-f0f5-b5c2-a43b-b4d1ee77a023	2021-05-26 16:28:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:28:28.951+03	2021-05-26 16:28:28.96+03	
3f069925-7938-be38-6567-dc3e0753637d	2021-05-26 16:28:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:28:48.951+03	2021-05-26 16:28:48.959+03	
606ab265-2ecf-5b11-ad98-a7fc1e90a99f	2021-05-26 16:27:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:27:18.951+03	2021-05-26 16:27:18.982+03	
a08c72e6-6d41-919f-ef21-572326267825	2021-05-26 16:27:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:27:38.951+03	2021-05-26 16:27:38.965+03	
4342adac-55eb-0554-1160-c6502aa395dd	2021-05-26 16:27:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:27:58.951+03	2021-05-26 16:27:58.96+03	
85602ef3-a120-2963-dcb1-5b2f4b7869d2	2021-05-26 16:28:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:28:18.951+03	2021-05-26 16:28:18.958+03	
a233ad17-774e-a156-add8-33b406cecb54	2021-05-26 16:28:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:28:38.951+03	2021-05-26 16:28:38.961+03	
deee0a3e-15c7-cf98-dc98-22e8d85cfb6f	2021-05-26 16:28:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:28:58.951+03	2021-05-26 16:28:58.959+03	
5582ca69-16e8-c403-0e74-0d81c9e394a0	2021-05-26 16:29:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:29:18.951+03	2021-05-26 16:29:18.961+03	
283fcf81-da3c-1297-4538-bd244287c581	2021-05-26 16:29:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:29:39.951+03	2021-05-26 16:29:39.961+03	
f2069678-947d-fdf6-ef41-c05e7e291568	2021-05-26 16:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:29:59.951+03	2021-05-26 16:29:59.958+03	
f75ced00-196f-a0ff-e3ca-28af787a5c1e	2021-05-26 16:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:30:09.951+03	2021-05-26 16:30:09.959+03	
dbe80c69-d08e-2042-babd-f3099579adad	2021-05-26 16:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:30:29.951+03	2021-05-26 16:30:29.959+03	
8bd86ec2-211a-de15-e50c-fd590ad55f55	2021-05-26 16:30:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:30:49.951+03	2021-05-26 16:30:49.958+03	
5bfb3aa1-0bc7-4261-9861-d691770e5d05	2021-05-26 16:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:31:09.951+03	2021-05-26 16:31:09.958+03	
633dfa0f-6dee-9cb7-fe09-d33701d7aa5d	2021-05-26 16:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:31:29.951+03	2021-05-26 16:31:29.958+03	
29aa12be-14bf-e660-169f-61314727dad3	2021-05-26 16:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:31:49.951+03	2021-05-26 16:31:49.96+03	
c28cfb39-490f-c163-e08a-8195751a664b	2021-05-26 16:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:32:09.951+03	2021-05-26 16:32:09.961+03	
5a162217-3d53-1140-8159-ebaec7096e1e	2021-05-26 16:32:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:32:29.951+03	2021-05-26 16:32:29.957+03	
1b384aae-dcde-b369-283a-9ea6859a8975	2021-05-26 16:32:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:32:49.951+03	2021-05-26 16:32:49.958+03	
628f1f28-4ba0-bb75-ea57-356d11493012	2021-05-26 16:33:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:33:09.951+03	2021-05-26 16:33:09.963+03	
c90fda63-ab26-3ed8-3ca6-e368cd81e262	2021-05-26 16:33:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:33:29.951+03	2021-05-26 16:33:29.96+03	
2eb8d977-8411-3b65-2b09-b2abbe6ccd13	2021-05-26 16:33:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:33:49.951+03	2021-05-26 16:33:49.959+03	
fde2ed90-2fc2-6dea-9cd0-fc8f237a3f24	2021-05-26 16:34:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:34:09.952+03	2021-05-26 16:34:09.959+03	
14f69e81-b710-8727-e189-7d82925f7844	2021-05-26 16:34:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:34:31.951+03	2021-05-26 16:34:31.959+03	
d15424e7-43ed-16c0-7685-8943aa30cc62	2021-05-26 16:34:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:34:51.951+03	2021-05-26 16:34:51.958+03	
d2da2454-d842-ff73-ce21-71c03f297222	2021-05-26 16:35:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:35:11.951+03	2021-05-26 16:35:11.958+03	
e6a30121-cd36-ba16-7a63-320b426d7784	2021-05-26 16:35:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:35:32.951+03	2021-05-26 16:35:32.958+03	
bd0a50b8-1b98-f56d-b07f-14388f239ba1	2021-05-26 16:35:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:35:52.951+03	2021-05-26 16:35:52.959+03	
e597cf10-7c8a-427e-6f7b-2b8a18fef6bb	2021-05-26 16:36:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:36:12.951+03	2021-05-26 16:36:12.96+03	
bffef194-b674-d4a8-9b13-fd43895a6a29	2021-05-26 16:36:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:36:33.951+03	2021-05-26 16:36:33.958+03	
adf8577b-a3ba-6392-339e-a4f9ddbccb13	2021-05-26 16:36:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:36:53.951+03	2021-05-26 16:36:53.958+03	
59c07302-1a6a-7bf7-fefa-f5d513c420a2	2021-05-26 16:37:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:37:03.951+03	2021-05-26 16:37:03.958+03	
21d1ea04-7171-a7e2-c0c7-c9d68a991ba2	2021-05-26 16:37:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:37:23.951+03	2021-05-26 16:37:23.96+03	
c1373857-74a9-daea-309f-b76a30e24591	2021-05-26 16:37:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:37:43.951+03	2021-05-26 16:37:43.959+03	
be777e00-25ee-c71f-2135-e47581a82934	2021-05-26 16:38:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:38:03.951+03	2021-05-26 16:38:03.959+03	
c9822d91-f0a6-430f-55a9-f983a11307fd	2021-05-26 16:38:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:38:23.951+03	2021-05-26 16:38:23.96+03	
092188b6-6cfd-9456-0761-acc1247e58c5	2021-05-26 16:38:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:38:43.951+03	2021-05-26 16:38:43.958+03	
87ddfdc9-5c3d-adb0-d51a-20c196e0c8d9	2021-05-26 16:39:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:39:03.951+03	2021-05-26 16:39:04.241+03	
f6bcd2bf-4512-d16b-5eea-cd5c3f765236	2021-05-26 16:39:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:39:23.951+03	2021-05-26 16:39:23.959+03	
0f5decf0-98b3-bc05-b347-f81a248000cf	2021-05-26 16:39:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:39:43.951+03	2021-05-26 16:39:43.958+03	
da364df0-45a9-9854-7b46-0c986cd727aa	2021-05-26 16:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 16:40:00.951+03	2021-05-26 16:40:00.957+03	ERROR
2bf8601e-8958-a22a-34d0-12bac5395dd9	2021-05-26 16:40:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:40:13.951+03	2021-05-26 16:40:13.959+03	
55dd9bea-c3cc-6cc0-dd0a-caf6e7421ca8	2021-05-26 16:40:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:40:33.951+03	2021-05-26 16:40:33.96+03	
044a33df-6ff4-9188-226a-f93af5923acd	2021-05-26 16:40:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:40:53.951+03	2021-05-26 16:40:53.96+03	
cad6c4e7-0dab-4b8d-5ccf-d56f0e06bcbc	2021-05-26 16:41:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:41:13.951+03	2021-05-26 16:41:13.96+03	
5e7f05e9-c1cf-7fa6-5371-c7d8e6931fbe	2021-05-26 16:41:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:41:33.951+03	2021-05-26 16:41:33.959+03	
c3010fb3-7dd7-7a05-e859-0254e642441b	2021-05-26 16:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:41:53.951+03	2021-05-26 16:41:53.959+03	
6a5f229d-8bf5-08f7-c373-0c98f9121fac	2021-05-26 16:42:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:42:13.951+03	2021-05-26 16:42:13.959+03	
064b5826-d46c-1130-7629-c97a87165533	2021-05-26 16:42:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:42:33.951+03	2021-05-26 16:42:33.959+03	
f33704c8-abae-432f-efd8-441cd696046b	2021-05-26 16:42:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:42:53.951+03	2021-05-26 16:42:53.958+03	
169e760f-a5b3-5cd3-427f-886ba9b9d316	2021-05-26 16:43:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:43:13.951+03	2021-05-26 16:43:13.958+03	
70bfdb08-e7f4-2ff1-e5f0-7ddf6b6046f8	2021-05-26 16:43:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:43:33.951+03	2021-05-26 16:43:33.959+03	
ced2fa24-d18d-2a7f-86e0-bdc91ea7fc7e	2021-05-26 16:43:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:43:53.951+03	2021-05-26 16:43:53.96+03	
0081a1b5-e5db-cb94-eaf1-b4fa0d27da45	2021-05-26 16:44:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:44:13.951+03	2021-05-26 16:44:13.959+03	
b6f7484f-fe11-d01d-f7c9-9b9203d91645	2021-05-26 16:44:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:44:33.951+03	2021-05-26 16:44:33.959+03	
28a9a090-e4a7-5ace-acd8-35164167dbc8	2021-05-26 16:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:44:53.951+03	2021-05-26 16:44:53.96+03	
7704c905-5287-7217-1239-f60bdb2d5b7d	2021-05-26 16:45:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:45:23.951+03	2021-05-26 16:45:23.959+03	
38282b95-579c-6654-d2df-dfb9df55ee82	2021-05-26 16:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:45:43.951+03	2021-05-26 16:45:43.959+03	
6aafe9c9-adf9-0cd6-ccac-64c3a1aafd95	2021-05-26 16:46:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:46:03.951+03	2021-05-26 16:46:03.958+03	
0ceaf778-6eab-e7ab-1796-385587651a5f	2021-05-26 16:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:46:23.951+03	2021-05-26 16:46:23.961+03	
3e8da15b-dda2-2ab9-c03e-9a4fb4918e29	2021-05-26 16:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:46:43.951+03	2021-05-26 16:46:43.96+03	
ac567723-5a8f-5783-8f0c-d34e15ba2c14	2021-05-26 16:47:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:47:03.951+03	2021-05-26 16:47:03.959+03	
4b5645e4-505b-e0cc-2517-9d5531521ac9	2021-05-26 16:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:47:23.951+03	2021-05-26 16:47:23.959+03	
ce81ac6c-6af7-a25a-5407-814004f899eb	2021-05-26 16:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:47:43.952+03	2021-05-26 16:47:43.96+03	
344c7bf9-ed7d-9ceb-94e0-77f4d42526ee	2021-05-26 16:29:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:29:08.951+03	2021-05-26 16:29:08.963+03	
7cd7eab4-d1cb-4915-20cd-e5446138b47a	2021-05-26 16:29:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:29:28.952+03	2021-05-26 16:29:28.959+03	
44aa1703-1cf3-7b47-7a63-4248548519a5	2021-05-26 16:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:29:49.951+03	2021-05-26 16:29:49.96+03	
eb33b158-a063-f305-ff22-5965d95baeae	2021-05-26 16:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 16:30:00.951+03	2021-05-26 16:30:00.956+03	ERROR
d5da56b3-c2d1-6334-d58c-c52bd15e4e11	2021-05-26 16:30:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:30:19.951+03	2021-05-26 16:30:19.958+03	
d1db3873-53f1-7644-ff77-3ac27801e3a0	2021-05-26 16:30:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:30:39.951+03	2021-05-26 16:30:39.961+03	
102b02e4-2cd7-3c76-2602-59ee1fa5d676	2021-05-26 16:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:30:59.951+03	2021-05-26 16:30:59.958+03	
77fb2f6b-e717-b9cb-9089-7121e9a54b92	2021-05-26 16:31:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:31:19.951+03	2021-05-26 16:31:19.959+03	
87075e86-5192-c6d8-4946-bf62a344f91f	2021-05-26 16:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:31:39.951+03	2021-05-26 16:31:39.959+03	
1aa781a6-3ce8-060f-bc6b-1d755166804d	2021-05-26 16:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:31:59.951+03	2021-05-26 16:31:59.959+03	
e5ed3636-36fe-76d2-8172-1cec56c8f073	2021-05-26 16:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:32:19.951+03	2021-05-26 16:32:19.96+03	
11f8d0df-79fa-c162-bdd5-a01119a020bd	2021-05-26 16:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:32:39.951+03	2021-05-26 16:32:39.958+03	
c6633fc8-8826-b8d9-3098-f2307bdbf29e	2021-05-26 16:32:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:32:59.951+03	2021-05-26 16:32:59.959+03	
4a6ec0df-1f5b-63aa-576b-97cbe3795405	2021-05-26 16:33:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:33:19.951+03	2021-05-26 16:33:19.964+03	
a38027de-ec16-d0ad-c7f0-6946db621b19	2021-05-26 16:33:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:33:39.951+03	2021-05-26 16:33:39.966+03	
aa440afd-03f3-bf1f-d3bf-5163236eceae	2021-05-26 16:33:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:33:59.951+03	2021-05-26 16:33:59.961+03	
e3d45bab-ffc9-56ea-5806-93cf99d454a0	2021-05-26 16:34:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:34:20.952+03	2021-05-26 16:34:20.959+03	
f0600c07-0445-b693-11ab-d483276e15b9	2021-05-26 16:34:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:34:41.951+03	2021-05-26 16:34:41.959+03	
57ee0a6d-23e8-9a9e-0034-da1d4e7e42d8	2021-05-26 16:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:35:01.951+03	2021-05-26 16:35:01.958+03	
96dcf224-fda4-2ea8-147a-31d63fdd8b3b	2021-05-26 16:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:35:21.952+03	2021-05-26 16:35:21.96+03	
43500ae0-ad06-7788-c8c1-a1a9ce6af889	2021-05-26 16:35:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:35:42.951+03	2021-05-26 16:35:42.959+03	
0f3c5d00-2f43-015b-6612-58a2a4737841	2021-05-26 16:36:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:36:02.951+03	2021-05-26 16:36:02.958+03	
62877ba0-a4cc-12d6-a61f-36499d54d67b	2021-05-26 16:36:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:36:22.952+03	2021-05-26 16:36:22.959+03	
26ae33df-38c5-7a7d-6576-4e015144b234	2021-05-26 16:36:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:36:43.951+03	2021-05-26 16:36:43.958+03	
ca8f2555-2b44-5cc1-07f7-caded39a3b46	2021-05-26 16:37:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:37:13.951+03	2021-05-26 16:37:13.96+03	
7014e0b0-3cd9-8cb0-f99b-a5d205dffd19	2021-05-26 16:37:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:37:33.951+03	2021-05-26 16:37:33.959+03	
d6a98a66-a8e3-70f3-9273-d12e61b5f5f2	2021-05-26 16:37:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:37:53.951+03	2021-05-26 16:37:53.959+03	
1e27de46-f875-02c4-aded-54a7b4d513ae	2021-05-26 16:38:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:38:13.951+03	2021-05-26 16:38:13.958+03	
e20df35e-ae10-d357-1d90-e1977ec72412	2021-05-26 16:38:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:38:33.951+03	2021-05-26 16:38:33.958+03	
3b164327-3caf-6459-97e5-b79a64358057	2021-05-26 16:38:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:38:53.951+03	2021-05-26 16:38:53.962+03	
c29c11f7-9e99-3617-9a82-e08150a21266	2021-05-26 16:39:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:39:13.951+03	2021-05-26 16:39:13.958+03	
260b5e13-0a4b-311c-ebc1-f194dc56d05b	2021-05-26 16:39:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:39:33.951+03	2021-05-26 16:39:33.958+03	
716d07d6-62db-11da-101e-35f245767990	2021-05-26 16:39:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:39:53.951+03	2021-05-26 16:39:53.958+03	
4039e9b8-2213-57c9-39af-6184810f1466	2021-05-26 16:40:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:40:03.951+03	2021-05-26 16:40:03.959+03	
ea089f89-0189-1adb-b3f2-35db90615fbc	2021-05-26 16:40:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:40:23.951+03	2021-05-26 16:40:23.963+03	
eef64466-b71c-480b-df63-db55f144408f	2021-05-26 16:40:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:40:43.951+03	2021-05-26 16:40:43.96+03	
a1c1d181-a75c-f1db-7b54-5a91c3cfdbb3	2021-05-26 16:41:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:41:03.951+03	2021-05-26 16:41:03.957+03	
1d1cbe42-eaf7-4386-b540-b3bb67d22037	2021-05-26 16:41:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:41:23.951+03	2021-05-26 16:41:23.958+03	
1cb555f5-d1ea-c9c2-734b-d97c995b9272	2021-05-26 16:41:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:41:43.951+03	2021-05-26 16:41:43.96+03	
047cc481-d00b-dc01-1734-817f0ba46fb3	2021-05-26 16:42:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:42:03.951+03	2021-05-26 16:42:03.959+03	
fa92877a-aae4-15e2-2f26-3b8be6061d35	2021-05-26 16:42:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:42:23.951+03	2021-05-26 16:42:23.96+03	
959ae7e1-d056-0314-52fe-b070c5c57a2b	2021-05-26 16:42:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:42:43.951+03	2021-05-26 16:42:43.96+03	
0eba73a1-343a-1af0-4fde-9de88894d2a2	2021-05-26 16:43:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:43:03.951+03	2021-05-26 16:43:03.959+03	
7c1c7567-2ccb-bedd-daa9-99a5681ece2b	2021-05-26 16:43:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:43:23.951+03	2021-05-26 16:43:23.962+03	
ce88420f-b0fb-a87a-2ab0-ca54749c4728	2021-05-26 16:43:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:43:43.951+03	2021-05-26 16:43:43.958+03	
8ea7a4bd-7425-1b3c-f928-6ef6c7536494	2021-05-26 16:44:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:44:03.951+03	2021-05-26 16:44:03.958+03	
aa92a853-7f3d-4c2d-4c14-de7088b31d37	2021-05-26 16:44:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:44:23.951+03	2021-05-26 16:44:23.958+03	
f3deee4d-9c5b-5850-1e64-89af4398f94e	2021-05-26 16:44:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:44:43.951+03	2021-05-26 16:44:43.958+03	
db6eab24-e676-59bc-15c2-c9329bbba1a3	2021-05-26 16:45:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:45:03.951+03	2021-05-26 16:45:03.959+03	
d702dce5-b3a6-9d2f-2cef-f9fcbf816626	2021-05-26 16:45:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:45:13.951+03	2021-05-26 16:45:13.958+03	
8d277015-32d4-98ee-b1f7-f3dd7103f79f	2021-05-26 16:45:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:45:33.951+03	2021-05-26 16:45:33.96+03	
df0d9482-46f1-cd9e-9940-49c038dd1aef	2021-05-26 16:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:45:53.951+03	2021-05-26 16:45:53.959+03	
8b8874b2-abc6-04c2-b95b-21303b2d1928	2021-05-26 16:46:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:46:13.951+03	2021-05-26 16:46:13.958+03	
a03dba51-4bb4-00a9-8032-0cdf3dbbc2d9	2021-05-26 16:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:46:33.951+03	2021-05-26 16:46:33.962+03	
ed0a2026-9e4b-328c-439c-9cbee62a2509	2021-05-26 16:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:46:53.951+03	2021-05-26 16:46:54.274+03	
c0e59c23-6521-d6e3-cbab-f0a17148d10f	2021-05-26 16:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:47:13.951+03	2021-05-26 16:47:13.958+03	
85a7a328-30ea-7d3f-cccc-20b38917a30d	2021-05-26 16:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:47:33.951+03	2021-05-26 16:47:33.959+03	
2909f334-5b29-5e9e-badf-a4cf287a75a4	2021-05-26 16:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:47:54.951+03	2021-05-26 16:47:54.96+03	
aa008734-c876-3301-6df5-9577b20bb434	2021-05-26 16:48:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:48:14.951+03	2021-05-26 16:48:14.958+03	
cf7e703d-c967-e538-455c-9e81dc6ee6e3	2021-05-26 16:48:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:48:34.951+03	2021-05-26 16:48:34.958+03	
2e3aa3a5-74a8-6054-3b1a-402d5d80ab32	2021-05-26 16:48:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:48:54.951+03	2021-05-26 16:48:54.959+03	
7ba8206a-3a00-08f2-545a-024788ae6261	2021-05-26 16:49:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:49:14.951+03	2021-05-26 16:49:14.959+03	
efcc3d7a-7bff-1bfa-4840-88d0da51d9ae	2021-05-26 16:49:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:49:34.951+03	2021-05-26 16:49:34.96+03	
3f641613-3294-b8fe-5f36-3a7a896cc496	2021-05-26 16:48:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:48:04.951+03	2021-05-26 16:48:04.958+03	
fb2b8caa-def9-1687-39f8-a9d9ce93d29d	2021-05-26 16:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:48:24.951+03	2021-05-26 16:48:24.958+03	
2c79097e-f269-1d2b-edf8-9abc5fd13347	2021-05-26 16:48:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:48:44.951+03	2021-05-26 16:48:44.958+03	
ac9c97ce-66bb-cb86-99d0-ede2f493c422	2021-05-26 16:49:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:49:04.951+03	2021-05-26 16:49:05.29+03	
20de8937-d970-b768-b606-1c77812589de	2021-05-26 16:49:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:49:24.951+03	2021-05-26 16:49:24.957+03	
ddcde3a9-9149-b775-c5fe-4a8c66d514b6	2021-05-26 16:49:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:49:44.951+03	2021-05-26 16:49:44.957+03	
2e0ab6a4-795c-b1ca-9c79-1cf3d4afdec8	2021-05-26 16:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 16:50:00.951+03	2021-05-26 16:50:00.956+03	ERROR
e0bcc611-411d-7db8-c9e1-a167e4daab1a	2021-05-26 16:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:50:14.951+03	2021-05-26 16:50:14.957+03	
52c94c0e-b1da-1888-bbba-4a47b54f5ea2	2021-05-26 16:50:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:50:34.951+03	2021-05-26 16:50:34.957+03	
ab3d9a85-f3ce-86c6-4278-352d3c620492	2021-05-26 16:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:50:54.951+03	2021-05-26 16:50:54.958+03	
44a1e7bc-831b-6f42-b5f6-628e4e29c279	2021-05-26 16:51:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:51:14.951+03	2021-05-26 16:51:14.958+03	
241d543e-8776-3213-2733-8c3e0cefe1fd	2021-05-26 16:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:51:34.951+03	2021-05-26 16:51:34.957+03	
fd9b7622-1028-0b59-aa41-cb37775ba5a1	2021-05-26 16:51:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:51:54.951+03	2021-05-26 16:51:54.957+03	
a8a593ca-4aa4-6b79-dfc6-a177cb4fe334	2021-05-26 16:52:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:52:14.951+03	2021-05-26 16:52:14.957+03	
816cb337-aaa9-aca1-c711-40409472e5f4	2021-05-26 16:52:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:52:34.951+03	2021-05-26 16:52:34.957+03	
2fa9e479-4df6-d64c-a373-d604ebf1edf5	2021-05-26 16:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:52:54.951+03	2021-05-26 16:52:54.959+03	
20b6e9c7-530b-2ef5-2ce2-c93994d90b5d	2021-05-26 16:53:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:53:14.951+03	2021-05-26 16:53:14.957+03	
e3e4406d-0a25-5570-3e45-7b33eb11f1d5	2021-05-26 16:53:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:53:34.951+03	2021-05-26 16:53:34.958+03	
d0347f4f-1345-4e10-2799-f3fc1cebc109	2021-05-26 16:53:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:53:54.951+03	2021-05-26 16:53:54.957+03	
4ca26ffe-6a29-2304-7bdd-bab6811e1d91	2021-05-26 16:54:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:54:14.951+03	2021-05-26 16:54:14.957+03	
19cb9d77-f143-e6ab-bd02-2a525a48131f	2021-05-26 16:54:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:54:34.951+03	2021-05-26 16:54:34.957+03	
a37c427d-21ab-6917-782a-f0d9fad8da8f	2021-05-26 16:54:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:54:54.951+03	2021-05-26 16:54:54.957+03	
3947f1d4-3e5a-9048-abe9-0dc8a84103ed	2021-05-26 16:55:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:55:14.951+03	2021-05-26 16:55:14.957+03	
fb59aa59-6920-3d15-c428-0cc912f5cee2	2021-05-26 16:55:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:55:34.951+03	2021-05-26 16:55:34.958+03	
b886676e-4a58-befd-7a14-9b2f93158772	2021-05-26 16:55:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:55:54.951+03	2021-05-26 16:55:54.958+03	
a96dba64-9471-a990-d1bc-a41b2ed29c46	2021-05-26 16:56:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:56:14.951+03	2021-05-26 16:56:14.958+03	
1d1f9148-8fc3-aaa3-442a-c03e5262181c	2021-05-26 16:56:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:56:34.951+03	2021-05-26 16:56:34.958+03	
ae65d59f-98e8-fbcb-061c-4fc8335941e5	2021-05-26 16:56:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:56:54.951+03	2021-05-26 16:56:54.957+03	
c8e41640-fb72-3c69-ab3f-81674ae2e145	2021-05-26 16:57:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:57:14.951+03	2021-05-26 16:57:14.957+03	
4bd9f252-ae9a-8a9f-8373-e0550559e445	2021-05-26 16:57:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:57:34.951+03	2021-05-26 16:57:34.958+03	
e69ef4d7-80fd-389c-059d-f7b8a7543c15	2021-05-26 16:57:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:57:54.951+03	2021-05-26 16:57:54.959+03	
58ac4856-7593-dee0-25bb-a945eb997b66	2021-05-26 16:58:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:58:14.951+03	2021-05-26 16:58:14.958+03	
f4798c1b-c325-4f8f-dadd-698899a772aa	2021-05-26 16:58:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:58:34.951+03	2021-05-26 16:58:34.957+03	
e76b6a78-2ede-c6ca-6c32-153494284c24	2021-05-26 16:58:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:58:54.951+03	2021-05-26 16:58:54.957+03	
7bd31c48-790c-d470-4848-f57d1b7aa739	2021-05-26 16:59:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:59:14.951+03	2021-05-26 16:59:14.958+03	
006cba82-6e7e-ed07-e03e-e1263d179ddd	2021-05-26 16:59:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:59:34.951+03	2021-05-26 16:59:34.958+03	
2368d212-1fe5-8830-88d3-21524743c4bf	2021-05-26 16:59:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:59:54.951+03	2021-05-26 16:59:54.958+03	
63d068ed-ced7-793d-94b0-b9d64a65c7bd	2021-05-26 17:00:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:00:04.951+03	2021-05-26 17:00:04.958+03	
c9b07c0f-c08d-f80e-7309-dd0df97a550f	2021-05-26 17:00:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:00:24.951+03	2021-05-26 17:00:24.957+03	
882745f3-939a-9077-655d-3489017c07fc	2021-05-26 17:00:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:00:44.951+03	2021-05-26 17:00:44.961+03	
226b8cc6-bab2-c715-6dc0-83d657e977c7	2021-05-26 17:01:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:01:04.951+03	2021-05-26 17:01:04.967+03	
b033642f-ad81-8fdc-699d-859077972d48	2021-05-26 17:01:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:01:24.951+03	2021-05-26 17:01:24.958+03	
00b9dcc2-459d-2832-9f5f-106ca0c2e0a8	2021-05-26 17:01:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:01:44.951+03	2021-05-26 17:01:44.958+03	
5237598a-be58-cdb3-774f-30a390dd45e3	2021-05-26 17:02:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:02:04.951+03	2021-05-26 17:02:04.957+03	
253a0ff5-7182-4e7b-e16d-ef38cc3ccf9b	2021-05-26 17:02:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:02:24.951+03	2021-05-26 17:02:24.958+03	
2e42cc9c-ed09-cc92-01bf-c8f5bf88899f	2021-05-26 17:02:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:02:44.951+03	2021-05-26 17:02:44.957+03	
a164ad01-7fe2-84a6-b800-ec4fc675bb27	2021-05-26 17:03:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:03:04.951+03	2021-05-26 17:03:04.958+03	
e9ec8e67-de31-24db-08da-1cf74a3b43dd	2021-05-26 17:03:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:03:24.951+03	2021-05-26 17:03:24.958+03	
1cc78964-4dc1-ddc8-d01b-aadb10d0d3a7	2021-05-26 17:03:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:03:44.951+03	2021-05-26 17:03:44.957+03	
91a81caa-96c9-24d6-4988-9e8a111f2951	2021-05-26 17:04:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:04:04.951+03	2021-05-26 17:04:04.958+03	
30b5c53f-e048-6102-d560-89af4f9d8908	2021-05-26 17:04:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:04:14.951+03	2021-05-26 17:04:14.958+03	
756c90ab-ac36-b707-7f04-3e267a054a2f	2021-05-26 17:04:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:04:34.951+03	2021-05-26 17:04:34.969+03	
dc7d7f3b-9dac-b0d9-9683-41c84d7e8f4e	2021-05-26 17:04:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:04:54.951+03	2021-05-26 17:04:54.958+03	
1abadfde-f443-d0a6-bfb1-1b83e720196f	2021-05-26 17:05:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:05:14.951+03	2021-05-26 17:05:14.958+03	
0b2eb10f-4f62-de99-5e35-c9b7afa55820	2021-05-26 17:05:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:05:35.951+03	2021-05-26 17:05:35.957+03	
7f024d83-3f25-bf38-535d-b64861813fc9	2021-05-26 17:05:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:05:55.951+03	2021-05-26 17:05:55.957+03	
dd0644c0-9708-355a-4ed7-3408b3897680	2021-05-26 17:06:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:06:15.951+03	2021-05-26 17:06:15.959+03	
5326a86b-c9f4-c320-9595-1df03138fa29	2021-05-26 17:06:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:06:35.951+03	2021-05-26 17:06:35.958+03	
d661145f-c73a-086d-9fd5-2b035deea327	2021-05-26 17:06:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:06:55.951+03	2021-05-26 17:06:55.957+03	
aa8af0b2-a4dc-31f0-468e-c363497082ee	2021-05-26 17:07:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:07:15.951+03	2021-05-26 17:07:15.958+03	
dde49aee-9d6d-687b-d429-bf40ba6a5925	2021-05-26 17:07:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:07:35.951+03	2021-05-26 17:07:35.962+03	
7e77e755-e444-e349-6978-68d6a44bcf96	2021-05-26 17:07:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:07:55.951+03	2021-05-26 17:07:55.958+03	
cdf75db6-a8e2-b768-111b-d8b93d447ef1	2021-05-26 17:08:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:08:15.951+03	2021-05-26 17:08:15.958+03	
4346f306-3309-6233-50d1-1ce299c70d26	2021-05-26 16:49:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:49:54.951+03	2021-05-26 16:49:54.958+03	
da5af1e3-537d-4290-52cb-4e8ba777626a	2021-05-26 16:50:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:50:04.951+03	2021-05-26 16:50:04.957+03	
3b7db298-f502-80f7-6ac5-323fbbf70c26	2021-05-26 16:50:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:50:24.951+03	2021-05-26 16:50:24.957+03	
17c835e1-29e3-08ed-a75e-621b6496da90	2021-05-26 16:50:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:50:44.951+03	2021-05-26 16:50:44.958+03	
8b0eebb3-abd3-3f48-7c73-859574684561	2021-05-26 16:51:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:51:04.951+03	2021-05-26 16:51:04.957+03	
00269e3f-9024-7ca7-526b-877e87a272be	2021-05-26 16:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:51:24.951+03	2021-05-26 16:51:24.957+03	
fe1b395f-c8e9-db99-05ea-2ba900ad584e	2021-05-26 16:51:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:51:44.951+03	2021-05-26 16:51:44.957+03	
b18951f8-d800-3ca9-7555-90843c998ff2	2021-05-26 16:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:52:04.951+03	2021-05-26 16:52:04.957+03	
f44eb281-8881-e5f8-2f25-83757407f2f0	2021-05-26 16:52:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:52:24.951+03	2021-05-26 16:52:24.958+03	
6947e6cf-ce1e-a77f-02e3-fced17468fd0	2021-05-26 16:52:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:52:44.951+03	2021-05-26 16:52:44.958+03	
49bdf913-47e3-e49d-d8e1-6d1fbff3fdbc	2021-05-26 16:53:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:53:04.951+03	2021-05-26 16:53:04.957+03	
6c48a3f2-cf28-dd51-8863-621f45fcbf7f	2021-05-26 16:53:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:53:24.951+03	2021-05-26 16:53:24.958+03	
3dcea7aa-d42d-8891-4355-d3aac621decf	2021-05-26 16:53:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:53:44.951+03	2021-05-26 16:53:44.958+03	
0edab188-88f0-d637-8c61-04109b5f92f9	2021-05-26 16:54:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:54:04.951+03	2021-05-26 16:54:04.957+03	
1faa45e8-6de7-2b63-9bef-68c4adefe5dd	2021-05-26 16:54:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:54:24.951+03	2021-05-26 16:54:24.957+03	
3a9fa840-48ca-b6ba-e3be-0c47feb72f7b	2021-05-26 16:54:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:54:44.951+03	2021-05-26 16:54:44.957+03	
ca741435-e4d6-bed5-c4d8-ea0009a32300	2021-05-26 16:55:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:55:04.951+03	2021-05-26 16:55:04.958+03	
96eaadb3-cae0-b406-1bba-81c50e0764a6	2021-05-26 16:55:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:55:24.951+03	2021-05-26 16:55:24.958+03	
3a6b0a0e-e6ac-df13-b029-bb9b060f4a34	2021-05-26 16:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:55:44.951+03	2021-05-26 16:55:44.958+03	
27e0d242-7a3b-5cb4-627b-b539a834f7db	2021-05-26 16:56:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:56:04.951+03	2021-05-26 16:56:04.957+03	
06298bb5-8343-de78-69b4-45e3890e91e4	2021-05-26 16:56:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:56:24.951+03	2021-05-26 16:56:24.998+03	
79ec41bd-5745-a88c-f3a8-0af603d60fb1	2021-05-26 16:56:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:56:44.951+03	2021-05-26 16:56:44.958+03	
443b1ee1-efba-43a7-4c16-d0ad6216decd	2021-05-26 16:57:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:57:04.951+03	2021-05-26 16:57:04.957+03	
d3579744-d23b-3fcd-3595-c585a3df8061	2021-05-26 16:57:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:57:24.951+03	2021-05-26 16:57:24.957+03	
02f4ae69-8fc7-ee31-2791-f7ccfef8aa39	2021-05-26 16:57:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:57:44.951+03	2021-05-26 16:57:44.958+03	
9bb97e24-4ef6-4a2d-0647-da16240524ef	2021-05-26 16:58:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:58:04.951+03	2021-05-26 16:58:04.957+03	
5e966d3f-7d29-8cdc-fe87-2f88e0245519	2021-05-26 16:58:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:58:24.951+03	2021-05-26 16:58:24.958+03	
6c3c3f5a-3e9c-2ed9-5e72-d12138202173	2021-05-26 16:58:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:58:44.951+03	2021-05-26 16:58:44.958+03	
9adf92a3-fda7-5d41-973e-afc7f5cddda8	2021-05-26 16:59:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:59:04.951+03	2021-05-26 16:59:04.958+03	
7a524495-f10e-5c3d-9d31-b38b37359f26	2021-05-26 16:59:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:59:24.951+03	2021-05-26 16:59:24.957+03	
34eba091-4046-8518-916f-2ec1a46338af	2021-05-26 16:59:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 16:59:44.951+03	2021-05-26 16:59:44.957+03	
9b3e6e0c-d37f-ba4f-24ff-fcc6b661059c	2021-05-26 17:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 17:00:00.951+03	2021-05-26 17:00:00.958+03	ERROR
05ba3889-9b6f-028f-6f7e-a2b7b3306ca2	2021-05-26 17:00:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:00:14.951+03	2021-05-26 17:00:14.958+03	
9975f9a6-5dc4-0485-7a33-d48050c30a47	2021-05-26 17:00:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:00:34.951+03	2021-05-26 17:00:34.959+03	
110787ef-816c-d884-c40e-f96111159426	2021-05-26 17:00:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:00:54.951+03	2021-05-26 17:00:54.957+03	
8e08daaf-50fb-f6ed-1eab-575db48d99f6	2021-05-26 17:01:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:01:14.951+03	2021-05-26 17:01:14.958+03	
3671a2a9-79e2-8059-f868-d0c1b24412a0	2021-05-26 17:01:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:01:34.951+03	2021-05-26 17:01:34.957+03	
96d5399d-6f11-ce2d-54f4-acdea1fd14e5	2021-05-26 17:01:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:01:54.951+03	2021-05-26 17:01:54.958+03	
8450ea27-1216-30a7-218b-d69785dc7976	2021-05-26 17:02:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:02:14.951+03	2021-05-26 17:02:14.958+03	
5e4a30a3-96d1-f0b9-3242-a20555d2ed4f	2021-05-26 17:02:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:02:34.951+03	2021-05-26 17:02:34.957+03	
f1101550-fb4c-e616-68f4-8053dfe29ecd	2021-05-26 17:02:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:02:54.951+03	2021-05-26 17:02:54.957+03	
f05c6dfe-e105-448a-4788-7a2ffef3e398	2021-05-26 17:03:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:03:14.951+03	2021-05-26 17:03:14.957+03	
f3f47771-fa82-6012-f048-e26ba19a43ea	2021-05-26 17:03:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:03:34.951+03	2021-05-26 17:03:34.958+03	
a636e586-0917-1607-2d06-e2ce4827b73a	2021-05-26 17:03:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:03:54.951+03	2021-05-26 17:03:54.957+03	
016cd562-5fee-3773-5b69-a2cb5f611f90	2021-05-26 17:04:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:04:24.951+03	2021-05-26 17:04:24.958+03	
2c11bb90-3f62-2c2f-63d8-243ad0c5ee04	2021-05-26 17:04:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:04:44.951+03	2021-05-26 17:04:44.957+03	
7c7f5382-211c-2a16-794e-44a8036cd015	2021-05-26 17:05:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:05:04.951+03	2021-05-26 17:05:04.959+03	
d68165e7-71f0-fe6c-aa55-abc249b25afa	2021-05-26 17:05:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:05:24.952+03	2021-05-26 17:05:24.959+03	
decc5cfb-31bd-a8a7-8bdd-4bb44fe0127d	2021-05-26 17:05:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:05:45.951+03	2021-05-26 17:05:45.958+03	
82e31272-023f-ce5b-4a8f-7e5b31e3a19c	2021-05-26 17:06:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:06:05.951+03	2021-05-26 17:06:05.957+03	
1e0f654d-f7d4-4b15-33fd-32923935bacc	2021-05-26 17:06:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:06:25.951+03	2021-05-26 17:06:25.957+03	
c2bdca11-7c9c-bb79-fcbd-584e616943d5	2021-05-26 17:06:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:06:45.951+03	2021-05-26 17:06:45.958+03	
a777c17c-eb59-c98d-fba7-7bd55a01b470	2021-05-26 17:07:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:07:05.951+03	2021-05-26 17:07:05.957+03	
71e0bc41-5ab7-ea94-6df3-5fa4547b43f3	2021-05-26 17:07:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:07:25.951+03	2021-05-26 17:07:25.957+03	
4de44663-b328-012b-b9a2-433f154a88a6	2021-05-26 17:07:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:07:45.951+03	2021-05-26 17:07:45.958+03	
06b87d19-a225-9d6a-002f-02bd319a196a	2021-05-26 17:08:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:08:05.951+03	2021-05-26 17:08:05.957+03	
78fe908a-a689-738c-d034-8d2834ff250b	2021-05-26 17:08:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:08:25.951+03	2021-05-26 17:08:25.957+03	
ab14b969-3575-9ed5-09f5-51441571b0f4	2021-05-26 17:08:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:08:45.951+03	2021-05-26 17:08:45.957+03	
9b90e963-df7d-a083-24b8-0e87c3e5093b	2021-05-26 17:09:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:09:05.951+03	2021-05-26 17:09:05.957+03	
a07cf5d7-e89b-02a9-dcb7-b40b4c97cd14	2021-05-26 17:09:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:09:25.951+03	2021-05-26 17:09:25.958+03	
b479399d-4e28-a63b-b427-0ad8d47f38a8	2021-05-26 17:09:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:09:45.951+03	2021-05-26 17:09:45.958+03	
134a79bb-41b6-2235-92c5-05924f2a388d	2021-05-26 17:10:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 17:10:00.951+03	2021-05-26 17:10:00.955+03	ERROR
4066a1fd-c3b8-de7a-8129-fd8c36ef4c76	2021-05-26 17:10:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:10:15.951+03	2021-05-26 17:10:15.957+03	
f92e3cd7-b50f-f07b-ca43-715f22ae523b	2021-05-26 17:08:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:08:35.951+03	2021-05-26 17:08:35.958+03	
786dd275-97a4-4c3f-6e73-5f8f4ed6d79a	2021-05-26 17:08:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:08:55.951+03	2021-05-26 17:08:55.957+03	
ad1eeb77-6130-2037-39d1-ba537f1c4e3c	2021-05-26 17:09:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:09:15.951+03	2021-05-26 17:09:15.957+03	
6b8d96ea-fb36-4547-82cc-4e872d8b9326	2021-05-26 17:09:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:09:35.951+03	2021-05-26 17:09:35.957+03	
76dbd781-9d73-eebd-bb48-024b6e477574	2021-05-26 17:09:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:09:55.951+03	2021-05-26 17:09:55.957+03	
deab612f-6e2c-a685-d36d-0932d7bf0188	2021-05-26 17:10:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:10:05.951+03	2021-05-26 17:10:05.958+03	
c2755a3a-e8bc-f041-3bec-8cf33e0a4ad5	2021-05-26 17:10:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:10:25.951+03	2021-05-26 17:10:25.957+03	
8ea9a482-79db-d104-e46f-4e5e9c9d58ac	2021-05-26 17:10:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:10:45.951+03	2021-05-26 17:10:45.958+03	
8438e59a-b5f5-4971-ff7d-4c9a9e2aad5e	2021-05-26 17:11:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:11:05.951+03	2021-05-26 17:11:05.958+03	
bd199651-a1fd-0f01-2f9d-eafd359660f2	2021-05-26 17:11:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:11:25.951+03	2021-05-26 17:11:25.958+03	
3d42361a-703f-4dff-05b3-139174afe13a	2021-05-26 17:11:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:11:45.951+03	2021-05-26 17:11:45.961+03	
e8c36225-9b16-4bd0-8864-bfd8587643a6	2021-05-26 17:12:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:12:05.951+03	2021-05-26 17:12:05.957+03	
a639ee71-d798-f004-95ca-dce527291c26	2021-05-26 17:12:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:12:25.951+03	2021-05-26 17:12:25.957+03	
370d7c87-0ba8-dcb6-d4e1-1c356637248c	2021-05-26 17:12:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:12:45.951+03	2021-05-26 17:12:45.957+03	
9227765f-b4c7-9554-e527-b7e00c720be7	2021-05-26 17:13:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:13:05.951+03	2021-05-26 17:13:05.958+03	
0f31cc17-7e5f-0e3c-f169-7c8476a21f2c	2021-05-26 17:13:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:13:25.951+03	2021-05-26 17:13:25.957+03	
43248213-741b-ba82-93ca-944a6a602400	2021-05-26 17:13:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:13:45.951+03	2021-05-26 17:13:45.958+03	
7ace4ea8-9d71-f49a-722c-7fc4761aff51	2021-05-26 17:14:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:14:05.951+03	2021-05-26 17:14:05.957+03	
b0a30116-0c0f-1ef0-2a3a-83bfdd9ce787	2021-05-26 17:14:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:14:25.951+03	2021-05-26 17:14:25.958+03	
911d3da0-242e-ae84-968f-25ed5b5e25c4	2021-05-26 17:14:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:14:45.951+03	2021-05-26 17:14:45.957+03	
c33f57b0-61c6-5882-aa54-49eccbe821bf	2021-05-26 17:15:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:15:05.951+03	2021-05-26 17:15:05.957+03	
0ad7e58e-c6c1-67c6-4d25-ddd8b3af8b80	2021-05-26 17:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:15:25.951+03	2021-05-26 17:15:25.958+03	
848b48c0-6438-bdfe-a74c-f0bd4f95f5ab	2021-05-26 17:15:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:15:45.951+03	2021-05-26 17:15:45.957+03	
1ea233db-d1a8-2ea6-b2ed-2fe59da45a75	2021-05-26 17:15:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:15:55.951+03	2021-05-26 17:15:55.958+03	
4fac5a5f-1d1e-5c12-7405-02205c37dc49	2021-05-26 17:16:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:16:15.951+03	2021-05-26 17:16:15.958+03	
26da0337-51d4-f5f2-d78b-baadbf946d5f	2021-05-26 17:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:16:35.951+03	2021-05-26 17:16:35.959+03	
f8b43b64-8447-cdb4-6825-b3b78ee27b57	2021-05-26 17:16:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:16:55.951+03	2021-05-26 17:16:55.957+03	
dc9dd495-cf03-b826-838c-68043fcf4574	2021-05-26 17:17:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:17:15.951+03	2021-05-26 17:17:15.959+03	
a7bbfcbc-a510-a50a-5e53-7156b1904d5c	2021-05-26 17:17:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:17:35.951+03	2021-05-26 17:17:35.958+03	
92826c36-5286-9438-6403-509d6efca07f	2021-05-26 17:17:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:17:45.951+03	2021-05-26 17:17:45.957+03	
81b3603d-6659-6d83-ec25-e337372ab8a7	2021-05-26 17:18:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:18:05.951+03	2021-05-26 17:18:05.958+03	
7096e504-27f9-c38d-f928-be103067b741	2021-05-26 17:18:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:18:25.951+03	2021-05-26 17:18:25.957+03	
701ef1b2-e76c-9e84-f248-0588b6a34634	2021-05-26 17:18:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:18:45.951+03	2021-05-26 17:18:45.958+03	
0d2f5470-9a57-1aea-362f-4070cb391cc7	2021-05-26 17:19:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:19:05.951+03	2021-05-26 17:19:05.958+03	
c530a213-28e7-dbe7-d8b9-b4d15ee99dc1	2021-05-26 17:19:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:19:25.951+03	2021-05-26 17:19:25.958+03	
fd26a1b4-aa06-3ac5-7795-99887806f2d2	2021-05-26 17:19:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:19:35.951+03	2021-05-26 17:19:35.958+03	
89972312-fa46-0f14-6a3d-1a2212859775	2021-05-26 17:19:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:19:45.951+03	2021-05-26 17:19:45.958+03	
b9e6171a-f74b-8ca0-e7bc-fc70c0dc45df	2021-05-26 17:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 17:20:00.951+03	2021-05-26 17:20:00.956+03	ERROR
6119f62d-0ee2-bc13-f7bc-9e3970bb5766	2021-05-26 17:20:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:20:15.951+03	2021-05-26 17:20:15.958+03	
315b71e7-f088-468e-dd38-889235a4a99b	2021-05-26 17:20:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:20:45.951+03	2021-05-26 17:20:45.959+03	
00e1d905-b915-e35b-4ef1-34e2d9a370b2	2021-05-26 17:21:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:21:05.951+03	2021-05-26 17:21:05.957+03	
1354db19-c3cb-2099-4f1f-d6bafacb866d	2021-05-26 17:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:21:25.951+03	2021-05-26 17:21:25.957+03	
95cacf2d-950a-113e-6947-7666cfdb861a	2021-05-26 17:21:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:21:45.951+03	2021-05-26 17:21:45.957+03	
692654cf-1c64-7d63-9756-8a9fb79bf683	2021-05-26 17:22:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:22:05.951+03	2021-05-26 17:22:06.004+03	
5999d729-b828-0a87-27c8-e2a39c2a454f	2021-05-26 17:22:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:22:25.951+03	2021-05-26 17:22:25.959+03	
33c637c0-7385-3782-90a0-7ea0d14bcc83	2021-05-26 17:22:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:22:45.951+03	2021-05-26 17:22:45.958+03	
865c0af5-4541-7898-b083-2cf5661cdbf6	2021-05-26 17:23:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:23:05.951+03	2021-05-26 17:23:05.958+03	
82624ac9-6fdf-50d0-fe77-ddcf09d2bda7	2021-05-26 17:23:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:23:25.951+03	2021-05-26 17:23:25.957+03	
01d07258-0328-ef0e-c420-8360e646b29d	2021-05-26 17:23:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:23:46.951+03	2021-05-26 17:23:46.959+03	
c45a5ddf-210c-eed3-d866-1703746fd46b	2021-05-26 17:24:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:24:06.951+03	2021-05-26 17:24:06.96+03	
cb2a6fd4-9705-16aa-4d61-e3d4a79f05fa	2021-05-26 17:24:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:24:26.951+03	2021-05-26 17:24:26.958+03	
e7ea8a52-3ba3-4a61-1919-00435164c8d6	2021-05-26 17:24:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:24:46.951+03	2021-05-26 17:24:46.958+03	
c9234042-f4be-974b-46d6-cb3ddd209b1a	2021-05-26 17:25:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:25:06.951+03	2021-05-26 17:25:06.958+03	
38fbba0e-1fb8-a332-541f-2137d0723a8a	2021-05-26 17:25:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:25:26.951+03	2021-05-26 17:25:26.96+03	
5030e517-1451-a9fe-fe9a-167c2dfbd3c5	2021-05-26 17:25:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:25:46.951+03	2021-05-26 17:25:46.958+03	
317e0e28-fcd5-ca80-e61d-dce693ead672	2021-05-26 17:26:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:26:06.951+03	2021-05-26 17:26:06.958+03	
8f618fcd-6375-f7d6-51bc-fa452a053815	2021-05-26 17:26:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:26:26.951+03	2021-05-26 17:26:26.957+03	
e12e1a95-8315-87c6-de3f-49196aa45513	2021-05-26 17:26:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:26:46.951+03	2021-05-26 17:26:46.958+03	
b2d1f467-77b4-151b-260f-d83ff5c0f2d6	2021-05-26 17:26:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:26:56.951+03	2021-05-26 17:26:56.958+03	
9800e20e-186d-1ca3-0fa8-2fa566e23ff2	2021-05-26 17:27:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:27:16.951+03	2021-05-26 17:27:16.958+03	
f0ccd91f-bd46-6040-1faf-dbc5599c3401	2021-05-26 17:27:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:27:36.951+03	2021-05-26 17:27:36.957+03	
c7e60c77-c5c2-22c5-a1cf-a36b78f0dd9f	2021-05-26 17:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:27:56.951+03	2021-05-26 17:27:56.958+03	
73722ad4-f26e-e41f-4604-bf5bb69713a8	2021-05-26 17:28:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:28:16.951+03	2021-05-26 17:28:16.959+03	
aeac1606-ca31-61e6-db1c-b03f9fc106e2	2021-05-26 17:10:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:10:35.951+03	2021-05-26 17:10:35.958+03	
32a976ca-44d2-33a3-c8d7-efd82759b956	2021-05-26 17:10:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:10:55.951+03	2021-05-26 17:10:55.977+03	
7c366c74-1f14-9df0-bcc7-671994568802	2021-05-26 17:11:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:11:15.951+03	2021-05-26 17:11:15.957+03	
fb08e04f-9fc8-b8af-b069-f442928e6b66	2021-05-26 17:11:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:11:35.951+03	2021-05-26 17:11:35.958+03	
c06faa1d-0c54-68e4-f06c-3c2a3d4a687d	2021-05-26 17:11:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:11:55.951+03	2021-05-26 17:11:55.958+03	
49259c36-08e2-ed7f-8c98-a3baae21865e	2021-05-26 17:12:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:12:15.951+03	2021-05-26 17:12:15.957+03	
f7596860-f466-5f31-02e7-65c0bfd4f8d2	2021-05-26 17:12:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:12:35.951+03	2021-05-26 17:12:35.957+03	
7b5c356b-2839-9842-b131-2574cf8c1916	2021-05-26 17:12:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:12:55.951+03	2021-05-26 17:12:55.958+03	
932cd279-6a8d-c7d2-aece-f6450a10b83b	2021-05-26 17:13:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:13:15.951+03	2021-05-26 17:13:15.958+03	
f529cdab-1dd1-44a2-d2a1-7eb54e0c5b51	2021-05-26 17:13:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:13:35.951+03	2021-05-26 17:13:35.958+03	
04151495-3282-6a84-aec6-fd121d081ba2	2021-05-26 17:13:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:13:55.951+03	2021-05-26 17:13:55.957+03	
81e91af6-19b3-2240-b130-1f1c208ece11	2021-05-26 17:14:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:14:15.951+03	2021-05-26 17:14:15.957+03	
3555b2f2-0bb8-1777-9649-72992e4d5d0f	2021-05-26 17:14:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:14:35.951+03	2021-05-26 17:14:35.958+03	
f7ed0153-6070-bb42-229f-2f735036abeb	2021-05-26 17:14:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:14:55.951+03	2021-05-26 17:14:55.957+03	
f9c0708e-14d3-5e7e-d7f2-e08fd3ba0004	2021-05-26 17:15:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:15:15.951+03	2021-05-26 17:15:15.958+03	
6bd95aa0-86de-fc41-42bf-7c9fefff85b2	2021-05-26 17:15:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:15:35.951+03	2021-05-26 17:15:35.958+03	
7330a74f-fbaa-3290-1f36-a0a1276b0075	2021-05-26 17:16:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:16:05.951+03	2021-05-26 17:16:05.961+03	
c798d0fb-daf9-b988-0527-cbf65628f0ad	2021-05-26 17:16:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:16:25.951+03	2021-05-26 17:16:25.958+03	
21ce490a-bb1a-d514-305f-8bcbe8b756bf	2021-05-26 17:16:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:16:45.951+03	2021-05-26 17:16:45.958+03	
33f810a0-ce4a-6389-fa9c-743944f8e0b2	2021-05-26 17:17:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:17:05.951+03	2021-05-26 17:17:05.958+03	
b1e952bc-1386-063f-3178-73e73ed6334b	2021-05-26 17:17:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:17:25.951+03	2021-05-26 17:17:25.957+03	
82de4dc2-7d86-0131-c259-6d3faf5a3aad	2021-05-26 17:17:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:17:55.951+03	2021-05-26 17:17:55.958+03	
24d23390-645b-2291-6fdc-1949aa77363d	2021-05-26 17:18:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:18:15.951+03	2021-05-26 17:18:15.958+03	
d956e7e9-47a5-db3a-5f33-f4bbd287f5da	2021-05-26 17:18:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:18:35.951+03	2021-05-26 17:18:35.958+03	
be8cabbe-4cce-5d9e-ddab-4e8590d0b9c6	2021-05-26 17:18:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:18:55.951+03	2021-05-26 17:18:55.957+03	
8846f22b-ab3b-7503-6e58-ff0f4ae29581	2021-05-26 17:19:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:19:15.951+03	2021-05-26 17:19:15.957+03	
fc89c8f9-e628-3ea1-1865-4db03a5517f2	2021-05-26 17:19:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:19:55.951+03	2021-05-26 17:19:55.957+03	
0a98c323-afba-2812-a9d2-77c99f6456b0	2021-05-26 17:20:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:20:05.951+03	2021-05-26 17:20:05.957+03	
40a623f3-6036-5c6e-775f-bf3ec4291f96	2021-05-26 17:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:20:25.951+03	2021-05-26 17:20:25.958+03	
dc737907-4ac9-a5a8-da29-cc3d323ae020	2021-05-26 17:20:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:20:35.951+03	2021-05-26 17:20:35.958+03	
bb13f137-5aaf-e76c-8b5c-fc0b58ac8507	2021-05-26 17:20:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:20:55.951+03	2021-05-26 17:20:55.957+03	
54b994d5-6086-b8b3-2550-424950b25314	2021-05-26 17:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:21:15.951+03	2021-05-26 17:21:15.957+03	
f9414259-02e0-5bc9-ecf5-3f7f33a41504	2021-05-26 17:21:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:21:35.951+03	2021-05-26 17:21:35.958+03	
928216a9-a791-07aa-e8b5-9440d1f09bee	2021-05-26 17:21:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:21:55.951+03	2021-05-26 17:21:55.958+03	
f730c029-c4bb-5120-4876-1c99c65b2016	2021-05-26 17:22:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:22:15.951+03	2021-05-26 17:22:15.958+03	
06325067-195b-60df-da2a-e337c67c649d	2021-05-26 17:22:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:22:35.951+03	2021-05-26 17:22:35.958+03	
e060eed1-fa8a-7dfe-7a11-e1615e352e78	2021-05-26 17:22:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:22:55.951+03	2021-05-26 17:22:55.958+03	
c26c78cd-a4b7-0159-a8b5-3e217e5d9de3	2021-05-26 17:23:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:23:15.951+03	2021-05-26 17:23:15.964+03	
78f1b0f1-5ffb-1963-c5a5-4f12cd9660bd	2021-05-26 17:23:35.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:23:35.952+03	2021-05-26 17:23:35.969+03	
d9684722-e9a4-4fb3-ace0-6b7b3d199cf6	2021-05-26 17:23:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:23:56.951+03	2021-05-26 17:23:56.959+03	
da5785c1-32bf-e50f-c7b2-91896cb11da7	2021-05-26 17:24:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:24:16.951+03	2021-05-26 17:24:16.958+03	
26872f16-88f5-22ed-5a92-2df4b091301d	2021-05-26 17:24:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:24:36.951+03	2021-05-26 17:24:36.958+03	
1b3af9d8-4582-8579-237f-0a18b26b67cc	2021-05-26 17:24:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:24:56.951+03	2021-05-26 17:24:56.958+03	
dd85b77a-3820-1dc0-eac6-d7252a3c91cc	2021-05-26 17:25:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:25:16.951+03	2021-05-26 17:25:16.958+03	
004241ce-1a82-da79-c517-b8aade795632	2021-05-26 17:25:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:25:36.951+03	2021-05-26 17:25:36.957+03	
42a2e991-0544-feda-3125-b8b74117acbc	2021-05-26 17:25:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:25:56.951+03	2021-05-26 17:25:56.958+03	
d9564724-151b-7852-23fe-69bb3c982a4f	2021-05-26 17:26:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:26:16.951+03	2021-05-26 17:26:16.958+03	
7ae8c8a7-9866-d998-4619-0f8d203c2891	2021-05-26 17:26:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:26:36.951+03	2021-05-26 17:26:36.958+03	
180eb093-b28d-b1f8-124d-5f1d876cb81a	2021-05-26 17:27:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:27:06.951+03	2021-05-26 17:27:06.958+03	
50732610-2af1-088d-95a5-e4a2e3512a8d	2021-05-26 17:27:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:27:26.951+03	2021-05-26 17:27:26.958+03	
d385f03a-1349-72b4-1b0e-a40b688ff9e9	2021-05-26 17:27:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:27:46.951+03	2021-05-26 17:27:46.958+03	
5d7b470e-65a5-b9a1-7922-4666654cc42f	2021-05-26 17:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:28:06.951+03	2021-05-26 17:28:06.963+03	
d8ba804a-50d3-2905-230b-42fb7b5e64d1	2021-05-26 17:28:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:28:37.951+03	2021-05-26 17:28:37.959+03	
a6810e1b-5855-dd19-ee25-f65a519877a2	2021-05-26 17:28:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:28:57.951+03	2021-05-26 17:28:57.957+03	
fed14a3a-14ac-fe42-eac3-2e622532b8fd	2021-05-26 17:29:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:29:17.951+03	2021-05-26 17:29:17.958+03	
6206f954-4a4d-e039-112a-a0ce2c8e90cf	2021-05-26 17:29:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:29:37.952+03	2021-05-26 17:29:37.958+03	
ae8cc457-4012-6976-845a-50fbd5513348	2021-05-26 17:29:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:29:58.951+03	2021-05-26 17:29:58.957+03	
be0dcfbb-d4b0-5415-fe1c-13eda7a42bb3	2021-05-26 17:30:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:30:08.951+03	2021-05-26 17:30:08.96+03	
a484d578-9ecf-90f1-d200-8917385b6096	2021-05-26 17:30:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:30:28.951+03	2021-05-26 17:30:28.958+03	
f01e7afe-43fd-1f0d-b63b-a0b6b31ebe1d	2021-05-26 17:30:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:30:48.951+03	2021-05-26 17:30:48.957+03	
5d8ed7ec-27b6-b6c9-7b2f-004871af75c8	2021-05-26 17:31:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:31:08.951+03	2021-05-26 17:31:08.957+03	
5a5e25b5-bd95-782c-c234-8c1c0001a903	2021-05-26 17:31:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:31:28.951+03	2021-05-26 17:31:28.958+03	
df32e642-27ac-d6f6-2eea-8027a4518346	2021-05-26 17:31:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:31:48.951+03	2021-05-26 17:31:48.959+03	
8b4cce8b-64aa-7823-a5ae-fa89fa8734ae	2021-05-26 17:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:28:26.952+03	2021-05-26 17:28:26.959+03	
6554ec18-c053-45dd-c1c0-548bc1493b94	2021-05-26 17:28:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:28:47.951+03	2021-05-26 17:28:47.958+03	
0b2df166-151f-ce23-f619-b1ed59544363	2021-05-26 17:29:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:29:07.951+03	2021-05-26 17:29:07.958+03	
1c4c32cd-bcfb-fb65-c77c-a04d353d99db	2021-05-26 17:29:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:29:27.952+03	2021-05-26 17:29:27.959+03	
9fbb4c99-506e-b806-8787-85272228582f	2021-05-26 17:29:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:29:48.951+03	2021-05-26 17:29:48.958+03	
d1e46b94-6f9f-0bb1-9ef6-b5cdad6774d9	2021-05-26 17:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 17:30:00.951+03	2021-05-26 17:30:00.956+03	ERROR
16971ec5-def6-aceb-2444-30926449c4ff	2021-05-26 17:30:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:30:18.951+03	2021-05-26 17:30:18.958+03	
eb114bc7-8ce6-404f-433e-0a8bd853707a	2021-05-26 17:30:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:30:38.951+03	2021-05-26 17:30:38.958+03	
4d034074-7d7b-f78b-314f-5afd1d93ea97	2021-05-26 17:30:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:30:58.951+03	2021-05-26 17:30:58.957+03	
70cba946-b7dd-319a-7738-bf5e8f3fc668	2021-05-26 17:31:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:31:18.951+03	2021-05-26 17:31:18.957+03	
ea6221ab-e8cb-4d0a-9699-b0880f0d3c67	2021-05-26 17:31:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:31:38.951+03	2021-05-26 17:31:38.958+03	
d394f73e-4079-d668-6789-754caf6504cc	2021-05-26 17:31:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:31:58.951+03	2021-05-26 17:31:58.957+03	
d544748f-8104-cbf4-64e0-23d6798b844d	2021-05-26 17:32:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:32:18.951+03	2021-05-26 17:32:18.959+03	
9278d224-99eb-103a-e499-0424a0e2a2cc	2021-05-26 17:32:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:32:38.951+03	2021-05-26 17:32:38.958+03	
8340d4b7-ebd8-1ade-476e-161c97dbf307	2021-05-26 17:32:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:32:58.951+03	2021-05-26 17:32:58.958+03	
cd9a223e-b456-a4a3-15e6-a80192c4596a	2021-05-26 17:33:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:33:18.951+03	2021-05-26 17:33:18.963+03	
397bd576-7a95-361c-a953-f83180fcda9f	2021-05-26 17:33:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:33:38.951+03	2021-05-26 17:33:38.959+03	
97f0235c-1692-91d9-5f3a-6996cd48b2c8	2021-05-26 17:33:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:33:58.952+03	2021-05-26 17:33:58.961+03	
95cf61c5-8a8a-60d8-c184-a43ff0713301	2021-05-26 17:34:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:34:19.951+03	2021-05-26 17:34:19.957+03	
3aef310a-c01f-afce-64f0-6eafc3a5f1dd	2021-05-26 17:34:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:34:39.951+03	2021-05-26 17:34:39.96+03	
74adb370-019e-f126-1b4b-77e6e02548cf	2021-05-26 17:34:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:34:59.951+03	2021-05-26 17:34:59.959+03	
acdb5b53-d007-3e4c-3506-255f14f5c0a4	2021-05-26 17:35:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:35:19.951+03	2021-05-26 17:35:19.96+03	
a129f0e1-e971-2672-8983-36a4f52cf32d	2021-05-26 17:35:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:35:49.952+03	2021-05-26 17:35:49.963+03	
27b36cc1-3efd-7e6b-610f-cac4eebdb92d	2021-05-26 17:36:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:36:10.951+03	2021-05-26 17:36:10.959+03	
109c0f94-75b4-38b2-d472-1f05988f5de6	2021-05-26 17:36:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:36:30.951+03	2021-05-26 17:36:30.959+03	
c2e656da-0f2d-7078-2735-bf18500bbe42	2021-05-26 17:36:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:36:50.951+03	2021-05-26 17:36:50.958+03	
8154c0f1-ff5b-88ae-cca4-e84f4a8af99a	2021-05-26 17:37:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:37:00.951+03	2021-05-26 17:37:00.96+03	
f3316eb7-863d-7509-aea9-cb51daae47ec	2021-05-26 17:37:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:37:20.952+03	2021-05-26 17:37:20.96+03	
9c11756a-7bbc-6119-e7c7-5e2aa3e1bac7	2021-05-26 17:37:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:37:41.952+03	2021-05-26 17:37:41.958+03	
6427c202-16b4-3bc4-99ad-88661b7397e2	2021-05-26 17:38:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:38:02.951+03	2021-05-26 17:38:02.958+03	
abed6918-36c5-13e2-ff6b-6f6dd7ad742b	2021-05-26 17:38:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:38:22.952+03	2021-05-26 17:38:22.96+03	
8aaecf28-3d24-d3b9-adf7-30d58879a1d8	2021-05-26 17:38:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:38:43.951+03	2021-05-26 17:38:43.961+03	
c88168af-b794-ec49-9f4b-427ac05530d3	2021-05-26 17:39:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:39:24.951+03	2021-05-26 17:39:24.959+03	
b122b359-0d89-ec1c-fc74-6530fb46aa38	2021-05-26 17:39:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:39:44.951+03	2021-05-26 17:39:44.957+03	
9a04a846-103e-0ad8-5e63-0a15451e25cb	2021-05-26 17:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 17:40:00.951+03	2021-05-26 17:40:00.957+03	ERROR
62a258a4-a0a1-f472-5f77-fe0af52a44fe	2021-05-26 17:40:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:40:14.951+03	2021-05-26 17:40:14.959+03	
54c7fa09-667c-978a-7df1-b3492764a6a3	2021-05-26 17:40:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:40:34.951+03	2021-05-26 17:40:34.958+03	
c9234ac1-0840-da2e-5c8d-ba60e6494cda	2021-05-26 17:40:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:40:54.951+03	2021-05-26 17:40:54.959+03	
8c96dd77-8324-568f-9291-274d68380dad	2021-05-26 17:41:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:41:14.952+03	2021-05-26 17:41:14.966+03	
ed9b849e-53b5-5543-9579-77d70f7c54eb	2021-05-26 17:41:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:41:35.951+03	2021-05-26 17:41:35.959+03	
40f6e776-7710-5f95-efc7-d4923b788071	2021-05-26 17:41:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:41:55.951+03	2021-05-26 17:41:55.958+03	
f1f64513-c8df-89c0-9be6-65559082652c	2021-05-26 17:42:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:42:15.951+03	2021-05-26 17:42:15.959+03	
643d4a5d-601b-84ad-41d1-3881a72f2176	2021-05-26 17:42:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:42:35.951+03	2021-05-26 17:42:35.958+03	
f066a11e-75c8-1d68-76b7-5bc3d7100b0d	2021-05-26 17:42:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:42:55.951+03	2021-05-26 17:42:55.959+03	
7f165b6f-3a40-3871-2751-77901807b9e8	2021-05-26 17:43:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:43:25.951+03	2021-05-26 17:43:25.957+03	
f8952060-d950-5558-1169-f1e3b1829db4	2021-05-26 17:43:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:43:45.951+03	2021-05-26 17:43:45.958+03	
0587c24e-3e42-91ba-5b32-0e6f15233032	2021-05-26 17:44:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:44:05.951+03	2021-05-26 17:44:05.961+03	
13d9e18e-0683-15c5-ad6c-fb265930fbd9	2021-05-26 17:44:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:44:25.951+03	2021-05-26 17:44:25.959+03	
65acb256-2869-96bc-8be3-b4bccc6a8d9d	2021-05-26 17:44:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:44:45.951+03	2021-05-26 17:44:45.959+03	
d8958897-5db2-88c1-fcd3-57342288ce9d	2021-05-26 17:45:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:45:05.951+03	2021-05-26 17:45:05.959+03	
cb9e86e8-3573-569f-5e05-2f39eeb2435a	2021-05-26 17:45:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:45:25.951+03	2021-05-26 17:45:25.958+03	
5117a9ff-eb3b-7b57-c267-e094edb0ed0b	2021-05-26 17:45:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:45:45.951+03	2021-05-26 17:45:45.959+03	
f39c24a4-f0ae-c160-c520-f8d8b5551abe	2021-05-26 17:46:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:46:05.951+03	2021-05-26 17:46:05.96+03	
dc1887db-916a-44ca-773c-957c998c103b	2021-05-26 17:46:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:46:25.951+03	2021-05-26 17:46:25.958+03	
cc655cce-032c-996c-9212-b2017cda4c13	2021-05-26 17:46:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:46:45.951+03	2021-05-26 17:46:45.958+03	
66f868b1-508b-a0e1-f94b-20e5784706a9	2021-05-26 17:47:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:47:05.951+03	2021-05-26 17:47:05.958+03	
c9b12122-d98c-5bc3-8e6b-7f5db50ad42b	2021-05-26 17:47:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:47:25.951+03	2021-05-26 17:47:25.957+03	
fd291bfb-d398-30f4-fd0c-0bd01de666dd	2021-05-26 17:47:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:47:46.952+03	2021-05-26 17:47:46.96+03	
587154c6-53be-6718-4e8a-28daa802ff04	2021-05-26 17:48:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:48:07.952+03	2021-05-26 17:48:07.959+03	
683ae9be-0f9a-7c47-6370-9e43b6dd0e53	2021-05-26 17:48:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:48:28.951+03	2021-05-26 17:48:28.959+03	
211d105c-b427-833e-bb63-0fb4f7e43fd8	2021-05-26 17:48:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:48:48.951+03	2021-05-26 17:48:48.96+03	
1e7d23ba-263e-91cd-e64f-74bb50bd2d21	2021-05-26 17:49:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:49:08.951+03	2021-05-26 17:49:08.959+03	
45c52c24-8576-a18f-63cf-c5b6873aa490	2021-05-26 17:49:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:49:28.951+03	2021-05-26 17:49:28.96+03	
664b1242-970e-1f66-d485-89f45a7b4fdd	2021-05-26 17:32:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:32:08.951+03	2021-05-26 17:32:08.959+03	
9f4f0c5b-1694-96df-d096-43cff75fe7f6	2021-05-26 17:32:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:32:28.951+03	2021-05-26 17:32:28.96+03	
237c1b41-ba89-5c6d-021d-7d1ccbce1e6a	2021-05-26 17:32:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:32:48.951+03	2021-05-26 17:32:48.958+03	
8b69e867-c77d-840e-65b7-d4eab7e3594c	2021-05-26 17:33:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:33:08.951+03	2021-05-26 17:33:08.967+03	
feda9d91-b59d-ae4a-a83b-b6a4e2e92eba	2021-05-26 17:33:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:33:28.951+03	2021-05-26 17:33:28.97+03	
87f7e605-845e-6496-bcb3-f540ff9af9b8	2021-05-26 17:33:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:33:48.951+03	2021-05-26 17:33:48.961+03	
68b43fe0-124b-acf6-5083-ffcd6ca6527a	2021-05-26 17:34:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:34:09.951+03	2021-05-26 17:34:09.96+03	
ed0532cc-d9d8-1101-6754-d5c47a1f01af	2021-05-26 17:34:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:34:29.951+03	2021-05-26 17:34:29.959+03	
5477defb-6988-7282-dc0a-c950fe9fd10e	2021-05-26 17:34:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:34:49.951+03	2021-05-26 17:34:50.006+03	
0fd958c8-58dd-7170-e7b4-c32b9b698ece	2021-05-26 17:35:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:35:09.951+03	2021-05-26 17:35:09.959+03	
000bb014-82fa-ca32-17d3-691428e97cbc	2021-05-26 17:35:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:35:29.951+03	2021-05-26 17:35:29.958+03	
ca9ce458-a552-1d83-6877-6e68dd4730cd	2021-05-26 17:35:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:35:39.951+03	2021-05-26 17:35:39.961+03	
89ef4a81-b56c-7321-56e6-90f234d51790	2021-05-26 17:36:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:36:00.951+03	2021-05-26 17:36:00.959+03	
e6fce8b8-ddf9-fa40-e921-3d110be2be8b	2021-05-26 17:36:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:36:20.951+03	2021-05-26 17:36:20.959+03	
8d188858-3227-3ac9-d3c9-1ce5c970ec04	2021-05-26 17:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:36:40.951+03	2021-05-26 17:36:40.96+03	
5881aaca-3f6f-7722-0080-298cdd1ff00a	2021-05-26 17:37:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:37:10.951+03	2021-05-26 17:37:10.959+03	
f832b6f5-ca60-2b24-ac2c-33a1b748f669	2021-05-26 17:37:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:37:30.952+03	2021-05-26 17:37:30.96+03	
091de4a0-ed2d-6277-9a48-b3aa65833168	2021-05-26 17:37:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:37:51.952+03	2021-05-26 17:37:51.967+03	
9df95912-7daf-ff34-d5d5-890cef1379d2	2021-05-26 17:38:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:38:12.952+03	2021-05-26 17:38:12.96+03	
b1ef4afb-3d7f-e60f-79d4-a82f66e4c3b1	2021-05-26 17:38:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:38:33.951+03	2021-05-26 17:38:33.962+03	
ac5b1414-3503-2665-6f7b-959e3f6bd727	2021-05-26 17:38:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:38:53.951+03	2021-05-26 17:38:53.959+03	
6e0ec8d0-67df-3f87-231f-cf11dfed2ea7	2021-05-26 17:39:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:39:03.951+03	2021-05-26 17:39:03.959+03	
ce05636b-0c28-6ef8-91d5-4a2b4d9ac851	2021-05-26 17:39:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:39:13.952+03	2021-05-26 17:39:13.964+03	
5ea6ed54-3b6e-fff0-4c03-50f732170486	2021-05-26 17:39:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:39:34.951+03	2021-05-26 17:39:34.959+03	
61d1fb95-aa25-e146-29a4-bf8a5c1fd3fd	2021-05-26 17:39:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:39:54.951+03	2021-05-26 17:39:54.96+03	
854654ad-2245-398d-b68e-7828137d551c	2021-05-26 17:40:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:40:04.951+03	2021-05-26 17:40:04.959+03	
0cd800a2-4670-a2ff-630b-4357253cf938	2021-05-26 17:40:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:40:24.951+03	2021-05-26 17:40:24.958+03	
f4540e23-934c-5ef2-f93f-037f40f3c183	2021-05-26 17:40:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:40:44.951+03	2021-05-26 17:40:44.958+03	
e2e69a66-8a18-5955-294a-3ad467619fe6	2021-05-26 17:41:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:41:04.951+03	2021-05-26 17:41:04.959+03	
040dc6ce-6214-25cf-d461-b6057ee04a60	2021-05-26 17:41:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:41:25.951+03	2021-05-26 17:41:25.959+03	
a0295093-dc5d-c380-6492-b65695a5ef5c	2021-05-26 17:41:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:41:45.951+03	2021-05-26 17:41:45.958+03	
65a5b091-deee-f1d7-a5f5-fd6dd97eea0d	2021-05-26 17:42:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:42:05.951+03	2021-05-26 17:42:05.958+03	
a8d9e989-ec5b-fead-e1ae-798fe69c48e0	2021-05-26 17:42:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:42:25.951+03	2021-05-26 17:42:25.958+03	
88e45c34-19d6-14e4-13c3-69c3136c39f9	2021-05-26 17:42:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:42:45.951+03	2021-05-26 17:42:45.958+03	
2ea480cd-d237-baf1-174d-a0d1d307a808	2021-05-26 17:43:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:43:05.951+03	2021-05-26 17:43:05.958+03	
7d29a99d-cd62-1cf5-ef72-a77c7c67fdb4	2021-05-26 17:43:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:43:15.951+03	2021-05-26 17:43:15.958+03	
d45dcfb5-9933-eb42-3f8c-b2fbfebafd76	2021-05-26 17:43:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:43:35.951+03	2021-05-26 17:43:35.959+03	
0b8d9646-81e5-a462-7b77-606e1e155eb6	2021-05-26 17:43:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:43:55.951+03	2021-05-26 17:43:55.959+03	
06cd6763-1ee1-6b11-72bf-c579a5482d55	2021-05-26 17:44:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:44:15.951+03	2021-05-26 17:44:15.958+03	
a15d3ee2-e5ac-f268-b1b5-2889a28bb258	2021-05-26 17:44:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:44:35.951+03	2021-05-26 17:44:35.958+03	
4899aa02-8835-c04f-1739-c3779975e709	2021-05-26 17:44:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:44:55.951+03	2021-05-26 17:44:55.958+03	
4326a5b1-2b38-4b6a-d4eb-795c1e092403	2021-05-26 17:45:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:45:15.951+03	2021-05-26 17:45:15.961+03	
9f82e2a0-5e45-690b-c991-79fa771e63ce	2021-05-26 17:45:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:45:35.951+03	2021-05-26 17:45:35.965+03	
719a4fa2-4d82-3f38-1b53-2d1e4b095874	2021-05-26 17:45:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:45:55.951+03	2021-05-26 17:45:55.959+03	
eda1bb49-33b1-f555-1e60-e6d9cacecb03	2021-05-26 17:46:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:46:15.951+03	2021-05-26 17:46:15.958+03	
c32e3c72-68d0-c08f-e5a1-2e3df481dbca	2021-05-26 17:46:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:46:35.951+03	2021-05-26 17:46:35.959+03	
ffcb6341-3f06-7dbd-5c5e-3e4ac6462727	2021-05-26 17:46:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:46:55.951+03	2021-05-26 17:46:55.96+03	
4684a429-5892-6321-1049-d41242966390	2021-05-26 17:47:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:47:15.951+03	2021-05-26 17:47:15.959+03	
82f38267-c846-944a-5d2e-a701086bd9db	2021-05-26 17:47:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:47:35.952+03	2021-05-26 17:47:35.96+03	
1f2e35d1-3328-eede-5583-6b8b26c2e130	2021-05-26 17:47:56.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:47:56.952+03	2021-05-26 17:47:56.96+03	
f4fe00fb-c863-0a87-6814-b2fac0e4fa60	2021-05-26 17:48:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:48:17.953+03	2021-05-26 17:48:17.96+03	
cf0acf23-ce52-723f-f5cd-908c7ac2c5cc	2021-05-26 17:48:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:48:38.951+03	2021-05-26 17:48:38.962+03	
5cef2ea5-56b1-8f59-fed6-293bad40eccb	2021-05-26 17:48:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:48:58.951+03	2021-05-26 17:48:58.959+03	
5b53ed33-c47a-148e-ee3d-861335af3ddb	2021-05-26 17:49:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:49:18.951+03	2021-05-26 17:49:18.961+03	
891e5159-8cb7-2a8b-5a2e-e56d426fc15b	2021-05-26 17:49:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:49:38.951+03	2021-05-26 17:49:38.958+03	
0ac9d8a5-805d-e2d8-59bc-f7ec7639d4c2	2021-05-26 17:49:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:49:58.951+03	2021-05-26 17:49:58.959+03	
c9787314-311e-9acf-c564-e344e6ac2b00	2021-05-26 17:50:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:50:08.951+03	2021-05-26 17:50:08.959+03	
3227beea-9955-51bd-d838-496df0505250	2021-05-26 17:50:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:50:28.951+03	2021-05-26 17:50:28.958+03	
0211022b-7203-ea0e-9403-99b12c7a29fd	2021-05-26 17:50:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:50:48.951+03	2021-05-26 17:50:48.959+03	
e4226c64-022d-4769-9d25-fa7cad4ea2d6	2021-05-26 17:50:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:50:58.951+03	2021-05-26 17:50:58.959+03	
b039b99e-8705-06fd-c37b-0971d8f685f5	2021-05-26 17:51:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:51:18.951+03	2021-05-26 17:51:18.958+03	
13a6c949-dbe6-921d-63ba-7886c6486daa	2021-05-26 17:51:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:51:38.951+03	2021-05-26 17:51:38.96+03	
8be7c0b6-ddac-efe5-cd05-fb020af52051	2021-05-26 17:51:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:51:58.951+03	2021-05-26 17:51:58.958+03	
73758e05-e376-84f3-ba3a-eb3ed71f27f9	2021-05-26 17:49:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:49:48.951+03	2021-05-26 17:49:48.96+03	
e95d7ae3-f7e4-c611-7b12-abc2bba486af	2021-05-26 17:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 17:50:00.951+03	2021-05-26 17:50:00.958+03	ERROR
f7c714ac-b1ca-31d7-eeb3-f8571b48810a	2021-05-26 17:50:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:50:18.951+03	2021-05-26 17:50:18.958+03	
3cd1b1d1-6ce2-8312-b48f-5bce42de8af4	2021-05-26 17:50:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:50:38.951+03	2021-05-26 17:50:38.958+03	
d27c110f-5258-385e-789b-49919ec1d426	2021-05-26 17:51:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:51:08.951+03	2021-05-26 17:51:08.957+03	
cfb51eb5-0c2e-81ff-2e24-a6a8a9569cf3	2021-05-26 17:51:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:51:28.951+03	2021-05-26 17:51:28.958+03	
44437a09-ae81-2c50-6401-15ca885669be	2021-05-26 17:51:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:51:48.951+03	2021-05-26 17:51:48.958+03	
99c21ca9-117e-b7dd-d170-f12e65d88195	2021-05-26 17:52:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:52:08.951+03	2021-05-26 17:52:08.958+03	
2e0a471f-46c7-ad8e-9ba1-855c705563c8	2021-05-26 17:52:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:52:28.951+03	2021-05-26 17:52:28.959+03	
5d4177f3-e17e-1614-10a2-d8ba46d917e7	2021-05-26 17:52:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:52:48.951+03	2021-05-26 17:52:48.958+03	
20d75479-2a4d-d87e-1473-daa78a99ece4	2021-05-26 17:53:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:53:08.951+03	2021-05-26 17:53:08.958+03	
645b12d8-1f16-6439-14bd-a4963a47d9d0	2021-05-26 17:53:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:53:38.951+03	2021-05-26 17:53:38.959+03	
60e7e0e2-c0e7-416d-6024-e6200a8dd875	2021-05-26 17:53:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:53:58.951+03	2021-05-26 17:53:58.958+03	
63cbbb31-b643-7cdd-6714-7094e01510a3	2021-05-26 17:54:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:54:18.951+03	2021-05-26 17:54:18.958+03	
57ceefaf-c092-6220-ed78-605a1f620372	2021-05-26 17:54:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:54:38.951+03	2021-05-26 17:54:38.959+03	
93da734f-9582-7fa7-055f-9256fcd67710	2021-05-26 17:54:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:54:58.951+03	2021-05-26 17:54:59.007+03	
7f88a352-c997-7723-da60-5cfd0769e47a	2021-05-26 17:55:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:55:18.951+03	2021-05-26 17:55:18.963+03	
ee2dd53d-77fd-9c92-6588-452e524677ea	2021-05-26 17:55:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:55:38.951+03	2021-05-26 17:55:38.958+03	
5e68640c-b95d-f83f-f23f-44aef7feafee	2021-05-26 17:55:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:55:58.951+03	2021-05-26 17:55:58.959+03	
e685d635-4384-6626-6c3e-4f7048772650	2021-05-26 17:56:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:56:18.951+03	2021-05-26 17:56:18.958+03	
14cfa1ae-eab9-fdc7-ac5c-0a9242da9474	2021-05-26 17:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:56:38.951+03	2021-05-26 17:56:38.963+03	
b4473767-2418-e721-d478-3b49e14806e6	2021-05-26 17:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:56:58.951+03	2021-05-26 17:56:58.959+03	
335c4a57-9fb5-706c-5787-3f48255beaa3	2021-05-26 17:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:57:18.951+03	2021-05-26 17:57:18.959+03	
83533b91-65a7-1d2a-1cfd-5b0fdc27f209	2021-05-26 17:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:57:38.951+03	2021-05-26 17:57:38.959+03	
749ef2d4-0d87-81dc-6dcd-00414554795f	2021-05-26 17:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:57:58.951+03	2021-05-26 17:57:58.96+03	
4719ecef-fbba-1684-3699-5840b5da1fd6	2021-05-26 17:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:58:18.951+03	2021-05-26 17:58:18.959+03	
7cf7ed7e-9742-b370-24a2-7d8d6ef68e06	2021-05-26 17:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:58:38.951+03	2021-05-26 17:58:38.959+03	
6405572a-2383-d681-18cd-a55c7c136547	2021-05-26 17:58:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:58:58.951+03	2021-05-26 17:58:58.96+03	
9859be42-747f-5f86-a968-1ad2024891e7	2021-05-26 17:59:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:59:18.952+03	2021-05-26 17:59:18.96+03	
fce49488-051c-d0df-0d6b-bb3920ededbd	2021-05-26 17:59:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:59:39.951+03	2021-05-26 17:59:39.96+03	
3030cdb4-3d5d-31ce-51b8-8fdffd884d10	2021-05-26 17:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:59:59.951+03	2021-05-26 17:59:59.965+03	
385a4d58-9ab8-f3e4-19ba-b8734bcd32d9	2021-05-26 18:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:00:09.952+03	2021-05-26 18:00:09.959+03	
f5e441fa-d0e5-1440-162e-14e067ffd375	2021-05-26 18:00:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:00:30.951+03	2021-05-26 18:00:30.958+03	
91e18b6b-f180-f244-df9a-50f8cfc50177	2021-05-26 18:00:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:00:51.951+03	2021-05-26 18:00:51.958+03	
988b8c71-f422-90f6-c8c4-ddaa3e4cbf5b	2021-05-26 18:01:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:01:12.952+03	2021-05-26 18:01:12.959+03	
5342e0a5-5f00-6e18-8fa2-a28414ab646d	2021-05-26 18:01:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:01:33.951+03	2021-05-26 18:01:33.958+03	
dfbe5e9e-b002-3ab7-833d-12956d26a591	2021-05-26 18:01:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:01:53.952+03	2021-05-26 18:01:53.96+03	
9be6857f-f445-4536-30f5-36ff2ae34e53	2021-05-26 18:02:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:02:14.951+03	2021-05-26 18:02:14.959+03	
0f969caf-abb3-bebf-eef2-56a35bc847a6	2021-05-26 18:02:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:02:45.951+03	2021-05-26 18:02:45.959+03	
c4293706-8ea0-5ca4-0d63-d0fddf90f653	2021-05-26 18:03:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:03:05.951+03	2021-05-26 18:03:05.96+03	
6bbe10ec-178f-5b32-9afe-a57ce9612039	2021-05-26 18:03:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:03:35.951+03	2021-05-26 18:03:35.959+03	
8623a6a8-2678-45d0-68e4-5db9c75c7963	2021-05-26 18:03:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:03:55.951+03	2021-05-26 18:03:55.959+03	
911fc4ec-259c-61ee-937e-20f0f7aff510	2021-05-26 18:04:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:04:15.951+03	2021-05-26 18:04:15.958+03	
10be5036-ad3b-d1a3-9b08-9235ff631cf3	2021-05-26 18:04:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:04:35.951+03	2021-05-26 18:04:35.959+03	
92d34a9c-4f20-b0cc-327b-6f9a8e5d59c6	2021-05-26 18:04:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:04:55.951+03	2021-05-26 18:04:55.959+03	
26b96420-f910-6e9a-cd66-a1b861cf383d	2021-05-26 18:05:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:05:15.951+03	2021-05-26 18:05:15.959+03	
1ec35fba-73a1-5734-7f93-affb76d2b422	2021-05-26 18:05:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:05:35.951+03	2021-05-26 18:05:35.959+03	
df563aea-68f0-e57d-8de3-042ead8c06c5	2021-05-26 18:05:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:05:55.951+03	2021-05-26 18:05:55.959+03	
21f66a50-28b4-4bb3-024c-94efee2b44b0	2021-05-26 18:06:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:06:15.951+03	2021-05-26 18:06:15.959+03	
6db6d3d6-feb3-c05b-ecb7-f1069ed2b627	2021-05-26 18:06:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:06:35.951+03	2021-05-26 18:06:35.959+03	
f3654c53-4ee9-4dbc-8fa3-edda472a2c00	2021-05-26 18:06:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:06:45.951+03	2021-05-26 18:06:45.959+03	
322c55c4-e1ec-eb10-700b-7ebd1162c994	2021-05-26 18:07:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:07:05.951+03	2021-05-26 18:07:05.959+03	
97d0d8d1-974e-8c74-1571-def134176e2a	2021-05-26 18:07:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:07:25.951+03	2021-05-26 18:07:25.958+03	
e989041d-7313-0048-1b30-2375d65fe807	2021-05-26 18:07:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:07:45.951+03	2021-05-26 18:07:45.959+03	
4a703ffd-8550-ea68-e994-190e801b0116	2021-05-26 18:08:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:08:05.951+03	2021-05-26 18:08:05.959+03	
8ea361bc-a58a-02ec-d2ea-af20d8e41222	2021-05-26 18:08:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:08:25.951+03	2021-05-26 18:08:25.959+03	
af7281b9-f5b8-27bd-f76d-8b3306b4697d	2021-05-26 18:08:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:08:46.951+03	2021-05-26 18:08:46.958+03	
26963c5b-ea7e-4eb6-2438-1cf2d208b342	2021-05-26 18:09:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:09:06.951+03	2021-05-26 18:09:06.959+03	
56e4b3e5-cb11-a62e-2a08-d87402c2981b	2021-05-26 18:09:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:09:26.951+03	2021-05-26 18:09:26.959+03	
f94fb4df-8419-f269-255f-cb015ad1ef31	2021-05-26 18:09:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:09:46.951+03	2021-05-26 18:09:46.959+03	
d3746678-c7cd-c144-2902-b72108e373fa	2021-05-26 18:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 18:10:00.951+03	2021-05-26 18:10:00.956+03	ERROR
4b6c700f-677e-7539-f0e8-2bfa02aa8674	2021-05-26 18:10:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:10:16.951+03	2021-05-26 18:10:16.959+03	
a8481656-98d4-3ba3-d39c-61fbd23e62e0	2021-05-26 18:10:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:10:36.951+03	2021-05-26 18:10:36.957+03	
32bda915-4a0a-4aa6-c9af-53168dff1895	2021-05-26 17:52:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:52:18.951+03	2021-05-26 17:52:18.962+03	
79075853-a1a1-d26d-54b8-18603f512006	2021-05-26 17:52:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:52:38.951+03	2021-05-26 17:52:38.958+03	
5dba501a-801f-6bb1-48a9-e305621ae4d6	2021-05-26 17:52:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:52:58.951+03	2021-05-26 17:52:58.958+03	
5ed0ced9-4b7f-c8e5-0b8c-ba4beafbeb6a	2021-05-26 17:53:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:53:18.951+03	2021-05-26 17:53:18.96+03	
aeb72f28-9368-637e-fa65-b36ae2cae141	2021-05-26 17:53:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:53:28.951+03	2021-05-26 17:53:28.96+03	
32ba3f24-11f5-e8e2-6251-0dbe6f978c8d	2021-05-26 17:53:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:53:48.951+03	2021-05-26 17:53:48.959+03	
e32cc349-bc9e-d92d-a574-3f31af796908	2021-05-26 17:54:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:54:08.951+03	2021-05-26 17:54:08.958+03	
8c0fdb0d-77ae-fce9-6a68-1c217eb2ab18	2021-05-26 17:54:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:54:28.951+03	2021-05-26 17:54:28.958+03	
81e49581-ee60-bc3d-e37b-0f3a25294abb	2021-05-26 17:54:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:54:48.951+03	2021-05-26 17:54:48.958+03	
9b66d98a-b6f7-65fd-03a5-10970d20dc07	2021-05-26 17:55:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:55:08.951+03	2021-05-26 17:55:08.96+03	
bcba8f8e-60cc-dfd9-3ee0-9ce05909f1db	2021-05-26 17:55:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:55:28.951+03	2021-05-26 17:55:28.959+03	
7c891d69-cc80-1f2a-5cbd-951881c20352	2021-05-26 17:55:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:55:48.951+03	2021-05-26 17:55:48.959+03	
be24a7f9-8dec-e903-f61c-26448b4fee5d	2021-05-26 17:56:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:56:08.951+03	2021-05-26 17:56:08.959+03	
7bfe82f7-4183-ca64-d7fb-be4fb2a1c656	2021-05-26 17:56:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:56:28.951+03	2021-05-26 17:56:28.958+03	
9c345fd1-f616-5387-e75e-f0a702f0c613	2021-05-26 17:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:56:48.951+03	2021-05-26 17:56:48.959+03	
41926bfd-194d-13d2-03a7-b81abff1463f	2021-05-26 17:57:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:57:08.951+03	2021-05-26 17:57:08.958+03	
1c96d5b1-751f-6da2-3249-26e2f72d792a	2021-05-26 17:57:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:57:28.951+03	2021-05-26 17:57:28.959+03	
3f0a84fa-9b56-b4c6-7ca7-086d40b97a50	2021-05-26 17:57:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:57:48.951+03	2021-05-26 17:57:48.958+03	
9719221d-d14f-5e48-320e-32843564179a	2021-05-26 17:58:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:58:08.951+03	2021-05-26 17:58:08.958+03	
7f788787-9222-8629-b4ca-64d6b9dddad5	2021-05-26 17:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:58:28.951+03	2021-05-26 17:58:28.958+03	
6c3df5e0-5cff-687a-bb99-cd896a2cb667	2021-05-26 17:58:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:58:48.951+03	2021-05-26 17:58:48.959+03	
f538ea90-40f5-7797-09c8-243800b50c57	2021-05-26 17:59:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:59:08.951+03	2021-05-26 17:59:08.963+03	
825dfc5d-0b57-ee9b-547c-bb8574cb9a86	2021-05-26 17:59:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:59:28.952+03	2021-05-26 17:59:28.961+03	
e14debdc-8fda-16e2-d4fe-5ad7547a246f	2021-05-26 17:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 17:59:49.951+03	2021-05-26 17:59:49.958+03	
61bd08f1-cd9e-60d2-3d34-e19fe01fed86	2021-05-26 18:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 18:00:00.951+03	2021-05-26 18:00:00.956+03	ERROR
e0f7242a-f67e-c268-b1ba-c846cf962a04	2021-05-26 18:00:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:00:20.951+03	2021-05-26 18:00:20.958+03	
76f2bd70-6554-5eaa-17b0-66d36b89d569	2021-05-26 18:00:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:00:40.952+03	2021-05-26 18:00:40.961+03	
85d32432-92b8-2447-f205-7c3b57a1a713	2021-05-26 18:01:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:01:01.952+03	2021-05-26 18:01:01.966+03	
6a498272-4fa3-7108-0679-6736164cdbaa	2021-05-26 18:01:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:01:22.952+03	2021-05-26 18:01:22.959+03	
fb66918a-d9e2-2468-ea12-382132d0e080	2021-05-26 18:01:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:01:43.951+03	2021-05-26 18:01:43.958+03	
49368207-cf9b-6a5d-a856-38a54ea5aea0	2021-05-26 18:02:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:02:04.951+03	2021-05-26 18:02:04.959+03	
edb48a70-33b8-f69a-eea1-40da97864992	2021-05-26 18:02:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:02:24.951+03	2021-05-26 18:02:24.961+03	
12dcb56e-d5e7-8bdc-e0ab-19f4347c0ed5	2021-05-26 18:02:34.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:02:34.955+03	2021-05-26 18:02:34.98+03	
d629a57e-6d57-5952-998a-6f9c0bc134cc	2021-05-26 18:02:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:02:55.951+03	2021-05-26 18:02:55.96+03	
67d688a1-b472-095d-d3d7-6ae47c380c82	2021-05-26 18:03:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:03:15.951+03	2021-05-26 18:03:15.958+03	
ad7bffec-5478-dbd0-8e46-bc1e0c3eb5f4	2021-05-26 18:03:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:03:25.951+03	2021-05-26 18:03:25.971+03	
cdfc93fb-bf46-c939-7d7c-24a354b958b4	2021-05-26 18:03:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:03:45.951+03	2021-05-26 18:03:45.962+03	
cad43706-072f-b623-2a79-0e502f258d7e	2021-05-26 18:04:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:04:05.951+03	2021-05-26 18:04:05.959+03	
c7a5e3a9-87af-5e76-d99c-4c45b4ae51fc	2021-05-26 18:04:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:04:25.951+03	2021-05-26 18:04:25.959+03	
97f769ab-9861-0239-a03f-a2ed5189db83	2021-05-26 18:04:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:04:45.951+03	2021-05-26 18:04:45.959+03	
0c445c0e-330c-54a3-8ef4-bd7ad6095365	2021-05-26 18:05:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:05:05.951+03	2021-05-26 18:05:05.959+03	
4840be0d-1e70-baf2-c91f-9a3f82bc7bc6	2021-05-26 18:05:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:05:25.951+03	2021-05-26 18:05:25.959+03	
0ddf8985-b7d6-799d-cf0c-04a6c17a79d4	2021-05-26 18:05:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:05:45.951+03	2021-05-26 18:05:45.958+03	
9dc3cd03-828b-2eed-550d-9181087e5268	2021-05-26 18:06:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:06:05.951+03	2021-05-26 18:06:05.962+03	
46246723-93dd-bab0-9b1c-3c153015f9ab	2021-05-26 18:06:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:06:25.951+03	2021-05-26 18:06:25.959+03	
1a7bbe82-ee95-8eec-95a4-fd16dfe76689	2021-05-26 18:06:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:06:55.951+03	2021-05-26 18:06:55.959+03	
7c4f1470-6def-96c8-5aea-646e93ecc9b8	2021-05-26 18:07:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:07:15.951+03	2021-05-26 18:07:15.958+03	
c884bb2d-b9b0-4317-49b1-093778ff8475	2021-05-26 18:07:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:07:35.951+03	2021-05-26 18:07:35.958+03	
5d844f8a-f4ef-8d23-95bf-4c1caf0cd268	2021-05-26 18:07:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:07:55.951+03	2021-05-26 18:07:55.959+03	
13c81fce-4b65-bfb5-b906-7b7aa90e198e	2021-05-26 18:08:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:08:15.951+03	2021-05-26 18:08:15.958+03	
3ecaf0d1-aa7f-f9bb-d5fb-9c6899dfe200	2021-05-26 18:08:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:08:35.952+03	2021-05-26 18:08:35.959+03	
c5d46355-14a2-073f-12e8-1efa0d990a71	2021-05-26 18:08:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:08:56.951+03	2021-05-26 18:08:56.959+03	
a61f4c0e-9c67-57d1-b028-9cd4e65ec24f	2021-05-26 18:09:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:09:16.951+03	2021-05-26 18:09:16.958+03	
ea04d486-329e-ade1-1b9a-35eb347a0d03	2021-05-26 18:09:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:09:36.951+03	2021-05-26 18:09:36.958+03	
351c6eac-d0e6-b25c-b246-592bcaafe3a0	2021-05-26 18:09:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:09:56.951+03	2021-05-26 18:09:56.958+03	
ea1ee387-32d3-2059-e84c-28051af5277e	2021-05-26 18:10:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:10:06.951+03	2021-05-26 18:10:06.958+03	
c5854ca5-bf20-5ad5-7395-7b9d8f5c6cc8	2021-05-26 18:10:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:10:26.951+03	2021-05-26 18:10:26.959+03	
c0ede2fc-dedb-434d-c0c4-5bc5f5e76b1c	2021-05-26 18:10:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:10:46.951+03	2021-05-26 18:10:46.958+03	
b0493c2b-db44-d172-a7d6-db6c0f51c1e4	2021-05-26 18:11:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:11:06.951+03	2021-05-26 18:11:06.959+03	
688db3f8-7c61-1319-f35d-fd36d32da8b8	2021-05-26 18:11:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:11:27.951+03	2021-05-26 18:11:27.958+03	
66e62e6a-0218-b14e-534d-b6b92020cb83	2021-05-26 18:11:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:11:47.951+03	2021-05-26 18:11:47.96+03	
4a751a96-263a-9d02-a379-12779f877306	2021-05-26 18:12:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:12:07.951+03	2021-05-26 18:12:07.959+03	
1d0176ca-cbf4-0208-f422-11c025b7b94c	2021-05-26 18:12:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:12:27.952+03	2021-05-26 18:12:27.959+03	
a917642a-894c-620e-20c8-9583a41ff35f	2021-05-26 18:10:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:10:56.951+03	2021-05-26 18:10:56.959+03	
151d73fd-1b52-eb0b-9960-cf8846cc94c0	2021-05-26 18:11:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:11:16.952+03	2021-05-26 18:11:16.96+03	
8ccdaa78-adc9-41b9-b4a6-bce2a85e2f1c	2021-05-26 18:11:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:11:37.951+03	2021-05-26 18:11:37.961+03	
82c740f2-eb1c-943e-cf57-946a20af8801	2021-05-26 18:11:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:11:57.951+03	2021-05-26 18:11:57.96+03	
8c2c52c3-51a5-6162-810a-5a3933592901	2021-05-26 18:12:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:12:17.951+03	2021-05-26 18:12:17.96+03	
4a69ad3b-68fc-993c-f361-95a347ecd3d5	2021-05-26 18:12:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:12:37.952+03	2021-05-26 18:12:37.96+03	
0627209f-4634-2d58-8115-1b5c2019f252	2021-05-26 18:12:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:12:47.952+03	2021-05-26 18:12:47.961+03	
0422a1a2-3069-47bb-1796-14aec87d55f1	2021-05-26 18:12:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:12:58.951+03	2021-05-26 18:12:58.959+03	
616fdf99-a8f2-1810-8432-3e7c47504bc9	2021-05-26 18:13:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:13:08.951+03	2021-05-26 18:13:08.959+03	
2d8f2968-ee81-0365-4019-8fc20b344a5c	2021-05-26 18:13:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:13:18.951+03	2021-05-26 18:13:18.958+03	
d3294caf-4730-8760-6e2b-076d1b3a1c6c	2021-05-26 18:13:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:13:28.951+03	2021-05-26 18:13:28.958+03	
daf5a822-c236-7fd1-3a84-caa8b0868f53	2021-05-26 18:13:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:13:38.951+03	2021-05-26 18:13:38.959+03	
52717452-4d77-3851-005d-fef2a8dd60c4	2021-05-26 18:13:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:13:48.951+03	2021-05-26 18:13:48.959+03	
b7a999ec-d03f-8082-ec31-72ca874ac3e1	2021-05-26 18:13:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:13:58.951+03	2021-05-26 18:13:58.961+03	
7a29a7f8-a705-fe2c-68f7-be031f73fd82	2021-05-26 18:14:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:14:08.951+03	2021-05-26 18:14:08.961+03	
414ca8d5-68a6-0f09-8ef7-d54dad60530e	2021-05-26 18:14:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:14:18.951+03	2021-05-26 18:14:18.959+03	
4fea76a7-4b4d-3fb9-4310-f5cf6057c304	2021-05-26 18:14:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:14:28.951+03	2021-05-26 18:14:28.958+03	
ce134ea9-8b7a-4fe6-a4b0-d04d9b5f6df8	2021-05-26 18:14:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:14:38.951+03	2021-05-26 18:14:38.958+03	
303dd65b-1231-30c1-73a5-6e8a284b5fad	2021-05-26 18:14:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:14:48.951+03	2021-05-26 18:14:48.959+03	
feed4925-1368-bb27-f2ec-08514947f96a	2021-05-26 18:14:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:14:58.951+03	2021-05-26 18:14:58.958+03	
b556f43a-ccd8-b03e-dedb-d4f464342b0e	2021-05-26 18:15:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:15:08.951+03	2021-05-26 18:15:08.958+03	
63748a0b-970a-7cd7-f54b-3e0d67106238	2021-05-26 18:15:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:15:18.951+03	2021-05-26 18:15:18.958+03	
7d2c39d0-2cf1-453a-6b94-4e5ab73c3a51	2021-05-26 18:15:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:15:28.951+03	2021-05-26 18:15:28.96+03	
d9573110-c5ff-2c21-8ce3-aabf75a7a21e	2021-05-26 18:15:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:15:38.951+03	2021-05-26 18:15:38.958+03	
68bf1e86-539a-3cc1-e393-d28868add01d	2021-05-26 18:15:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:15:48.951+03	2021-05-26 18:15:48.961+03	
8aba9bbc-24c1-5771-f35c-0a459e709874	2021-05-26 18:15:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:15:58.952+03	2021-05-26 18:15:58.961+03	
ae6ff382-0e6a-b6b8-66d5-083fa9cfd64b	2021-05-26 18:16:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:16:08.952+03	2021-05-26 18:16:08.961+03	
9875edcf-309d-ee54-3077-c8e53bb16fb0	2021-05-26 18:16:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:16:19.951+03	2021-05-26 18:16:19.959+03	
83166c29-e742-1174-3b7c-558f89bcad15	2021-05-26 18:16:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:16:29.952+03	2021-05-26 18:16:29.961+03	
1ea55357-9ff9-db4d-f3b3-80d6a5091a74	2021-05-26 18:16:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:16:40.951+03	2021-05-26 18:16:40.959+03	
865d3f36-b96b-f1ed-15f4-e9985f1bd857	2021-05-26 18:16:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:16:50.951+03	2021-05-26 18:16:50.962+03	
6292a477-c115-1306-f736-26faa84221b9	2021-05-26 18:17:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:17:00.951+03	2021-05-26 18:17:00.959+03	
ddd53fde-8055-eef5-c395-51d16c001388	2021-05-26 18:17:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:17:10.951+03	2021-05-26 18:17:10.959+03	
5d72ed7c-f45a-27a9-2122-9ab56fb6ffc1	2021-05-26 18:17:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:17:20.952+03	2021-05-26 18:17:20.959+03	
c537af49-a3b4-76f9-a621-9a25efeaad8f	2021-05-26 18:17:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:17:31.951+03	2021-05-26 18:17:31.959+03	
4b8745d8-2e3d-c6db-b064-78e159b8e2e5	2021-05-26 18:17:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:17:41.951+03	2021-05-26 18:17:41.958+03	
1746a539-49df-2c72-5a7c-ccb3c1faf1b3	2021-05-26 18:17:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:17:51.951+03	2021-05-26 18:17:51.959+03	
326240c3-08d3-21dd-ccc0-ef1cac870535	2021-05-26 18:18:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:18:01.951+03	2021-05-26 18:18:01.958+03	
75381c8e-d55d-4a03-b3ad-f46b4581273c	2021-05-26 18:18:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:18:11.951+03	2021-05-26 18:18:11.958+03	
e9527dca-813c-e32f-0410-788729fb7f56	2021-05-26 18:18:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:18:21.951+03	2021-05-26 18:18:21.959+03	
01164e72-07c8-f243-2e74-bae8712fbc9e	2021-05-26 18:18:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:18:31.951+03	2021-05-26 18:18:31.96+03	
a413e89a-26b5-4a83-1fe9-0bb66b89b938	2021-05-26 18:18:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:18:41.951+03	2021-05-26 18:18:41.959+03	
931f2f69-fb07-0597-0ae9-4d956d04a726	2021-05-26 18:18:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:18:51.951+03	2021-05-26 18:18:51.958+03	
766f3d2d-44ee-9bb7-0027-63d124dc4995	2021-05-26 18:19:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:19:01.951+03	2021-05-26 18:19:01.957+03	
88cf1a04-199f-bfc5-9e81-d4bc1eb5c0d8	2021-05-26 18:19:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:19:11.951+03	2021-05-26 18:19:11.958+03	
f0f91354-baff-52a6-a844-d7ac3578d0d0	2021-05-26 18:19:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:19:21.951+03	2021-05-26 18:19:21.96+03	
ef8ff900-ad39-d131-6d81-51bf61cce747	2021-05-26 18:19:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:19:31.951+03	2021-05-26 18:19:31.959+03	
138efc95-fdc3-4f98-624e-d0f55c5565af	2021-05-26 18:19:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:19:41.951+03	2021-05-26 18:19:41.958+03	
222851d1-905c-c6d3-6c1e-06653804e71e	2021-05-26 18:19:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:19:51.951+03	2021-05-26 18:19:52.013+03	
c877a9af-00c7-bb9a-eb69-b63851bfbbc7	2021-05-26 18:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 18:20:00.951+03	2021-05-26 18:20:00.956+03	ERROR
a54592bf-c037-d43b-c5e3-015e716d9d2f	2021-05-26 18:20:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:20:01.951+03	2021-05-26 18:20:01.958+03	
3887b989-504a-6a5d-b34f-448c051cd9c2	2021-05-26 18:20:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:20:11.951+03	2021-05-26 18:20:11.959+03	
c2210ee7-e87f-1cfa-1e19-9fdf43417efc	2021-05-26 18:20:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:20:21.951+03	2021-05-26 18:20:21.959+03	
fc9bc397-5626-3cd2-4176-5f3c83f66075	2021-05-26 18:20:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:20:31.951+03	2021-05-26 18:20:31.959+03	
d9d63a4d-8db9-3888-7e1a-99dcde390d6e	2021-05-26 18:20:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:20:41.951+03	2021-05-26 18:20:41.959+03	
3761d968-b4aa-23f2-da11-eb6892a4d548	2021-05-26 18:20:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:20:51.951+03	2021-05-26 18:20:51.96+03	
fd2fa12a-714a-281e-cc2f-bb874162437d	2021-05-26 18:21:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:21:01.951+03	2021-05-26 18:21:01.958+03	
2dcecef4-97ce-fde6-13d8-4d2aba30ed0d	2021-05-26 18:21:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:21:11.951+03	2021-05-26 18:21:11.96+03	
47b28c62-cf00-2437-66fa-2c933d66507c	2021-05-26 18:21:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:21:21.951+03	2021-05-26 18:21:21.962+03	
d4edbb53-fae5-a14e-a750-e7d8b42363ac	2021-05-26 18:21:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:21:31.951+03	2021-05-26 18:21:31.958+03	
042d78de-dafa-3a72-d49a-20bbfb01e174	2021-05-26 18:21:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:21:41.951+03	2021-05-26 18:21:42.154+03	
fc222225-69b6-a54d-0149-2e89c41c9d15	2021-05-26 18:21:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:21:51.951+03	2021-05-26 18:21:51.96+03	
47971d0a-275a-b250-7a4e-fdb37888a3eb	2021-05-26 18:22:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:22:01.951+03	2021-05-26 18:22:01.958+03	
d68c4600-cef2-2444-a34c-98e08292afc8	2021-05-26 18:22:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:22:11.951+03	2021-05-26 18:22:11.96+03	
688fb73c-adaa-7562-e3ca-e5de5cf693f8	2021-05-26 18:22:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:22:42.951+03	2021-05-26 18:22:42.96+03	
b1ad42ff-be1d-7d8f-6b68-14fe51d6f66b	2021-05-26 18:23:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:23:02.951+03	2021-05-26 18:23:02.959+03	
1e2a9eba-3e27-ac7b-1005-976cd3773c00	2021-05-26 18:23:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:23:22.951+03	2021-05-26 18:23:22.958+03	
42136f2e-360b-9d8f-ebce-bded7a162262	2021-05-26 18:23:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:23:43.951+03	2021-05-26 18:23:43.958+03	
a6114190-766c-5925-2ee5-e30ee1d7eaaf	2021-05-26 18:24:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:24:03.951+03	2021-05-26 18:24:03.959+03	
99bb66e2-0ce0-775e-93ff-275a817d5269	2021-05-26 18:24:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:24:23.951+03	2021-05-26 18:24:23.959+03	
a8f8aa59-a155-11a0-5e86-eaa213695ef5	2021-05-26 18:24:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:24:44.951+03	2021-05-26 18:24:44.96+03	
56c9c9e6-a0d6-2465-6ae1-4d8f387f2258	2021-05-26 18:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:25:04.951+03	2021-05-26 18:25:04.958+03	
b885ea31-738f-96df-826d-00c2cb2f2b93	2021-05-26 18:25:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:25:25.951+03	2021-05-26 18:25:25.959+03	
ec50cd4d-34fe-7cbb-868a-d172c202db1a	2021-05-26 18:25:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:25:45.951+03	2021-05-26 18:25:45.958+03	
2d3166bb-411e-296e-7b1e-41664d71d951	2021-05-26 18:26:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:26:05.951+03	2021-05-26 18:26:05.959+03	
78194b21-b0ce-13e7-e61b-587b0e9c1c05	2021-05-26 18:26:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:26:25.951+03	2021-05-26 18:26:25.965+03	
232cb249-5310-2e34-6672-b9c0f32689c7	2021-05-26 18:26:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:26:46.951+03	2021-05-26 18:26:46.959+03	
083cd5ce-132c-07d3-f61d-94a0b4042fad	2021-05-26 18:27:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:27:06.951+03	2021-05-26 18:27:06.96+03	
f322a632-de6f-160d-bfa9-43ada303789c	2021-05-26 18:27:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:27:27.951+03	2021-05-26 18:27:27.959+03	
34017062-65e8-31a3-0033-5dabeda7038e	2021-05-26 18:27:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:27:47.951+03	2021-05-26 18:27:47.958+03	
65d3c546-b402-3b02-927f-7ae3f5acd7a4	2021-05-26 18:28:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:28:07.951+03	2021-05-26 18:28:07.958+03	
07d8f767-322b-1c5a-7265-8a583e66826b	2021-05-26 18:28:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:28:27.951+03	2021-05-26 18:28:27.958+03	
c08a109f-f95a-4b96-9f5e-813376cebaa4	2021-05-26 18:28:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:28:48.951+03	2021-05-26 18:28:48.959+03	
cd116dbb-a37d-a680-4b67-99e68103afc4	2021-05-26 18:29:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:29:08.951+03	2021-05-26 18:29:08.966+03	
430b2c9d-caaf-2432-4608-f0d3a2003837	2021-05-26 18:29:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:29:28.951+03	2021-05-26 18:29:28.96+03	
3f2a3f36-f26a-c328-bef5-b4b17f3e6008	2021-05-26 18:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:29:49.951+03	2021-05-26 18:29:49.959+03	
b1fff334-2687-6177-c02a-e2c6496bb414	2021-05-26 18:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 18:30:00.951+03	2021-05-26 18:30:00.956+03	ERROR
7d81e0fc-3fdd-04df-a435-4423625e2cbf	2021-05-26 18:30:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:30:20.951+03	2021-05-26 18:30:20.959+03	
032de0fa-f411-0262-3612-5327014a87c0	2021-05-26 18:30:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:30:40.951+03	2021-05-26 18:30:40.96+03	
7b4b9c1a-0cbb-fbe6-aed6-afbef4e68291	2021-05-26 18:31:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:31:00.951+03	2021-05-26 18:31:00.958+03	
66c4a2f1-5347-4945-a9f4-0daf7732effd	2021-05-26 18:31:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:31:20.951+03	2021-05-26 18:31:20.96+03	
5979dadb-6e42-28ce-d596-e75e64148bd2	2021-05-26 18:31:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:31:30.951+03	2021-05-26 18:31:30.959+03	
16cd7daa-dec8-bd50-fd47-72f592478b21	2021-05-26 18:31:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:31:50.952+03	2021-05-26 18:31:50.96+03	
ae99ca7f-de99-6e9f-af1f-adc50d66ee12	2021-05-26 18:32:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:32:11.951+03	2021-05-26 18:32:11.958+03	
f1f08ba2-1116-c763-7c89-5611853128f9	2021-05-26 18:32:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:32:31.951+03	2021-05-26 18:32:31.958+03	
ab166efb-870e-a8c0-600e-ebdedbe41a0b	2021-05-26 18:32:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:32:51.951+03	2021-05-26 18:32:51.958+03	
bea613d8-517d-18f3-7d3b-4f97075d9037	2021-05-26 18:33:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:33:11.951+03	2021-05-26 18:33:11.958+03	
93100d1d-d724-c77b-1ae9-8550d379d374	2021-05-26 18:33:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:33:31.951+03	2021-05-26 18:33:31.96+03	
6255f93d-9ec7-8f73-454e-d11545be6083	2021-05-26 18:33:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:33:52.951+03	2021-05-26 18:33:52.96+03	
15a8da9e-0037-fb18-5b66-0aa0deec6daa	2021-05-26 18:34:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:34:12.951+03	2021-05-26 18:34:12.959+03	
a486a579-be2f-cff8-7fe9-9301af6f5936	2021-05-26 18:34:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:34:32.951+03	2021-05-26 18:34:32.959+03	
4770438d-6312-466e-0572-92b57fcf288e	2021-05-26 18:34:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:34:52.951+03	2021-05-26 18:34:52.959+03	
16477ef8-6b5b-a582-3862-2cfb8981d2b2	2021-05-26 18:35:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:35:22.951+03	2021-05-26 18:35:22.957+03	
9e48a726-f788-272c-a400-947099153502	2021-05-26 18:35:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:35:42.951+03	2021-05-26 18:35:42.958+03	
bed34be7-1968-0fea-363a-cee83e6106ba	2021-05-26 18:36:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:36:02.951+03	2021-05-26 18:36:02.957+03	
a9e06b30-1166-be84-fe7f-9264b12f707d	2021-05-26 18:36:23.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:36:23.952+03	2021-05-26 18:36:23.959+03	
e6e9e881-707e-7874-1160-7cd5a8f9338b	2021-05-26 18:36:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:36:44.951+03	2021-05-26 18:36:44.959+03	
50387603-5644-0b59-ba08-b48c27714b15	2021-05-26 18:37:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:37:04.952+03	2021-05-26 18:37:04.958+03	
17b2287d-802e-071a-1459-aee4e1b3ad26	2021-05-26 18:37:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:37:25.951+03	2021-05-26 18:37:25.958+03	
060f64c7-137d-8c02-c142-f706ac64e904	2021-05-26 18:37:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:37:45.951+03	2021-05-26 18:37:45.96+03	
700384b1-0544-d3d3-d270-aec8322fb4e4	2021-05-26 18:38:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:38:05.951+03	2021-05-26 18:38:05.958+03	
d97f9ced-53a6-6151-9ae0-42b6ec850844	2021-05-26 18:38:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:38:25.952+03	2021-05-26 18:38:25.958+03	
2ac2447f-70d8-743b-3459-a8e48d5d6a15	2021-05-26 18:38:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:38:46.951+03	2021-05-26 18:38:46.961+03	
6c20b5a9-8253-b0c0-a299-f394b3b2fe07	2021-05-26 18:39:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:39:06.951+03	2021-05-26 18:39:06.959+03	
966a7373-540b-7d0d-ca9d-4b93c5ecddf3	2021-05-26 18:39:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:39:26.951+03	2021-05-26 18:39:26.959+03	
fd2dda37-833c-1815-0c44-d31879389820	2021-05-26 18:39:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:39:46.951+03	2021-05-26 18:39:46.958+03	
b8beeb66-2b46-6e68-ae2b-c159d5cf06e6	2021-05-26 18:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 18:40:00.951+03	2021-05-26 18:40:00.958+03	ERROR
c829158a-7361-064a-0163-5542e1775d46	2021-05-26 18:40:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:40:16.951+03	2021-05-26 18:40:16.958+03	
eb3f3f2d-bf32-6592-87ee-24762fb85773	2021-05-26 18:40:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:40:36.951+03	2021-05-26 18:40:36.958+03	
55533916-73eb-666b-bb52-d6901eb08b93	2021-05-26 18:40:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:40:56.951+03	2021-05-26 18:40:56.958+03	
89e1b9b5-8177-e6d2-9a75-cfec443b7433	2021-05-26 18:41:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:41:16.951+03	2021-05-26 18:41:16.958+03	
064d7566-00d6-08a6-b558-b559b8567e36	2021-05-26 18:41:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:41:36.951+03	2021-05-26 18:41:36.961+03	
f3537e8c-5a25-7e07-df91-ce4614fe1874	2021-05-26 18:41:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:41:56.952+03	2021-05-26 18:41:56.96+03	
3c513f96-accc-1124-ef6d-6cccd508ac3e	2021-05-26 18:42:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:42:17.951+03	2021-05-26 18:42:17.959+03	
3dc211ca-0e7f-38a2-a628-37312f018f0f	2021-05-26 18:42:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:42:48.952+03	2021-05-26 18:42:48.96+03	
58acd880-b55e-2951-bd8a-cf9edfb932fd	2021-05-26 18:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:43:09.952+03	2021-05-26 18:43:09.961+03	
1b399982-e536-40e9-c4af-ff97ae0909b1	2021-05-26 18:22:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:22:21.951+03	2021-05-26 18:22:21.962+03	
66a81700-a708-090d-033f-95537529bc72	2021-05-26 18:22:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:22:31.952+03	2021-05-26 18:22:31.959+03	
13266002-b563-ef5f-4cfa-61115a9b18e5	2021-05-26 18:22:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:22:52.951+03	2021-05-26 18:22:52.958+03	
91bf6ecd-a3e2-3f80-4fe5-3f18ab50df00	2021-05-26 18:23:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:23:12.951+03	2021-05-26 18:23:12.958+03	
f0a5a428-aa9d-aeec-8676-4c4c7554b053	2021-05-26 18:23:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:23:32.952+03	2021-05-26 18:23:32.96+03	
5708ed51-7eca-c6ea-f2eb-2c0cdbad54a1	2021-05-26 18:23:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:23:53.951+03	2021-05-26 18:23:53.959+03	
57b50aef-6b99-a5c7-8ff7-e3a4e0bb4160	2021-05-26 18:24:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:24:13.951+03	2021-05-26 18:24:13.958+03	
4a60ae24-a0e4-b915-ce7e-dd21ef123f99	2021-05-26 18:24:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:24:33.952+03	2021-05-26 18:24:33.959+03	
9a01660c-85f7-af6a-c031-05973211c229	2021-05-26 18:24:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:24:54.951+03	2021-05-26 18:24:54.957+03	
366369f0-c285-02b1-121d-eeb2bcec7bb6	2021-05-26 18:25:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:25:14.953+03	2021-05-26 18:25:14.96+03	
7876c825-a72f-025e-bf54-999c9cbc4633	2021-05-26 18:25:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:25:35.951+03	2021-05-26 18:25:35.959+03	
ba54d03e-0863-f846-efee-5304ba7446f2	2021-05-26 18:25:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:25:55.951+03	2021-05-26 18:25:55.958+03	
80aecd54-8591-6cc2-79e9-3a08ed6f39d1	2021-05-26 18:26:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:26:15.951+03	2021-05-26 18:26:15.959+03	
ce0c87aa-cd53-9fc5-20a1-ba25511da117	2021-05-26 18:26:35.977	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:26:35.976+03	2021-05-26 18:26:35.994+03	
c2de179a-1538-c898-f185-eef03d750ee1	2021-05-26 18:26:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:26:56.951+03	2021-05-26 18:26:56.96+03	
0cdba5ec-e8de-46d2-3b8e-b88c252fdacb	2021-05-26 18:27:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:27:16.952+03	2021-05-26 18:27:16.96+03	
a304ea42-c141-47ca-27db-72508c5661a6	2021-05-26 18:27:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:27:37.951+03	2021-05-26 18:27:37.958+03	
3a38da3b-0c96-1bd1-167a-7847e08d1cc9	2021-05-26 18:27:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:27:57.951+03	2021-05-26 18:27:57.958+03	
20b97409-6e74-2431-5855-a688a5ccac1b	2021-05-26 18:28:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:28:17.951+03	2021-05-26 18:28:17.958+03	
2ebeb1bf-8a2e-8c50-30c1-1f58fce96fa2	2021-05-26 18:28:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:28:37.952+03	2021-05-26 18:28:37.96+03	
4e113a75-0d82-da4d-fb7d-fc4e32133c2d	2021-05-26 18:28:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:28:58.951+03	2021-05-26 18:28:58.959+03	
366833bb-c301-489a-b60f-52d7620497ca	2021-05-26 18:29:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:29:18.951+03	2021-05-26 18:29:18.959+03	
10833907-4c90-e765-2cbe-5baf9856362c	2021-05-26 18:29:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:29:38.952+03	2021-05-26 18:29:38.959+03	
76c3eedb-cb51-dd29-0ec0-e0adb4429454	2021-05-26 18:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:29:59.951+03	2021-05-26 18:29:59.959+03	
67243ef1-1433-ec5d-d34c-ec9b913beb23	2021-05-26 18:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:30:09.952+03	2021-05-26 18:30:09.959+03	
b5540e4c-5f7c-aca3-5331-7078f0cd5b0b	2021-05-26 18:30:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:30:30.951+03	2021-05-26 18:30:30.958+03	
0285d99e-ba11-bd06-9441-35bf95f91c11	2021-05-26 18:30:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:30:50.951+03	2021-05-26 18:30:50.959+03	
3dc3976c-1d7e-af96-273c-0b8247d83aac	2021-05-26 18:31:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:31:10.951+03	2021-05-26 18:31:10.958+03	
5852bec7-34bb-2e5c-c2e4-046c50a1704f	2021-05-26 18:31:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:31:40.951+03	2021-05-26 18:31:40.959+03	
1d388d2d-ed05-8bf1-0dc9-77976e43d46d	2021-05-26 18:32:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:32:01.951+03	2021-05-26 18:32:01.96+03	
11e27304-66c6-75c0-8990-1153533fb2a4	2021-05-26 18:32:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:32:21.951+03	2021-05-26 18:32:21.958+03	
77b7072e-c5a9-6fdd-ecaa-6194e1062646	2021-05-26 18:32:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:32:41.951+03	2021-05-26 18:32:41.959+03	
223b1078-fa02-a507-dfef-7672ee79e8ae	2021-05-26 18:33:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:33:01.951+03	2021-05-26 18:33:01.958+03	
fb5ba6bc-1ca9-3814-80ca-199fd6ca22dc	2021-05-26 18:33:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:33:21.951+03	2021-05-26 18:33:21.959+03	
4848d7fa-87d5-c0f0-3808-0e21f0e085f2	2021-05-26 18:33:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:33:41.952+03	2021-05-26 18:33:41.959+03	
4da50017-b068-dc28-3c15-fca71d660a6c	2021-05-26 18:34:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:34:02.951+03	2021-05-26 18:34:02.959+03	
30e43103-ce3d-61d3-b1d9-adaa38d68375	2021-05-26 18:34:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:34:22.951+03	2021-05-26 18:34:22.959+03	
4e2f9d3d-c6ea-2eaf-c542-dcd959b180e8	2021-05-26 18:34:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:34:42.951+03	2021-05-26 18:34:42.959+03	
c09c00ae-0c42-9580-f960-ae8983eae935	2021-05-26 18:35:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:35:02.951+03	2021-05-26 18:35:02.958+03	
7863784a-9d39-f148-33a6-5d9e8c5b3dbc	2021-05-26 18:35:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:35:12.951+03	2021-05-26 18:35:12.972+03	
6943745c-f5f0-f46a-17b0-bae1a924af49	2021-05-26 18:35:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:35:32.951+03	2021-05-26 18:35:32.958+03	
32df3451-2b38-3185-c834-656c44cd94b8	2021-05-26 18:35:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:35:52.951+03	2021-05-26 18:35:52.959+03	
6c594647-daa5-7d05-4d36-f00539dd41d3	2021-05-26 18:36:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:36:12.952+03	2021-05-26 18:36:12.959+03	
c8c09e29-f113-aa97-fd00-a0e8c19166f3	2021-05-26 18:36:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:36:34.951+03	2021-05-26 18:36:34.958+03	
adc8a3d8-ef74-2d64-4e17-717b22dd27f2	2021-05-26 18:36:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:36:54.951+03	2021-05-26 18:36:54.958+03	
03b30ddb-2efc-c060-9123-739408304794	2021-05-26 18:37:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:37:15.951+03	2021-05-26 18:37:15.959+03	
f5058ac2-b020-a073-174e-468f16a91d5b	2021-05-26 18:37:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:37:35.951+03	2021-05-26 18:37:35.958+03	
d8ba3a28-f365-9402-6c7a-a5f78b03a951	2021-05-26 18:37:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:37:55.951+03	2021-05-26 18:37:55.961+03	
66ca350d-76f9-3208-b8c9-069fb463c384	2021-05-26 18:38:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:38:15.951+03	2021-05-26 18:38:15.958+03	
5b9581f2-b931-a3a0-24c4-86ab6a6efce9	2021-05-26 18:38:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:38:36.951+03	2021-05-26 18:38:36.958+03	
0a08f4e9-bd4e-b519-1725-9debd686e9ee	2021-05-26 18:38:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:38:56.951+03	2021-05-26 18:38:56.96+03	
58701be9-f7bd-8547-8522-bc3889fabe12	2021-05-26 18:39:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:39:16.951+03	2021-05-26 18:39:16.958+03	
644cf834-330a-721d-a911-6d9887546213	2021-05-26 18:39:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:39:36.951+03	2021-05-26 18:39:36.96+03	
46ca02c1-05fe-0134-a4ce-8364dd3356d0	2021-05-26 18:39:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:39:56.951+03	2021-05-26 18:39:56.959+03	
53855c78-79e5-6783-30c7-d693825f877f	2021-05-26 18:40:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:40:06.951+03	2021-05-26 18:40:06.96+03	
c4e8b629-aa54-fe41-225f-2b32a85a16df	2021-05-26 18:40:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:40:26.951+03	2021-05-26 18:40:26.959+03	
c682b793-d2e7-67ec-ed22-0e344fdde774	2021-05-26 18:40:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:40:46.951+03	2021-05-26 18:40:46.958+03	
b9b8bad3-a13f-cd38-daab-0f8bd84e5bdc	2021-05-26 18:41:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:41:06.951+03	2021-05-26 18:41:06.958+03	
7fd5dcef-6bca-e43d-2c4b-e5bf61547cd0	2021-05-26 18:41:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:41:26.951+03	2021-05-26 18:41:26.959+03	
cb7eb5b2-5379-d3a9-8c31-ada35d8af3e6	2021-05-26 18:41:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:41:46.951+03	2021-05-26 18:41:46.958+03	
96641370-14ad-d0fb-9ab6-932543aef4af	2021-05-26 18:42:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:42:07.951+03	2021-05-26 18:42:07.958+03	
64419129-5f55-ce58-4018-82ff4ea7adb6	2021-05-26 18:42:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:42:27.953+03	2021-05-26 18:42:27.96+03	
38bea61c-af40-db61-6a2e-3c5ad421527c	2021-05-26 18:42:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:42:38.951+03	2021-05-26 18:42:38.959+03	
aa012440-2cfe-8ed9-bb52-a68a96af029d	2021-05-26 18:42:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:42:59.951+03	2021-05-26 18:42:59.96+03	
db6c647f-013f-bc6b-dd89-323caf08e44a	2021-05-26 18:43:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:43:20.951+03	2021-05-26 18:43:20.959+03	
f1e5a860-be8d-d71c-86b4-222f55236f2d	2021-05-26 18:43:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:43:40.951+03	2021-05-26 18:43:40.957+03	
45ff8522-05b9-6e85-23b6-6bba5634ba39	2021-05-26 18:44:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:44:00.951+03	2021-05-26 18:44:00.958+03	
42b02169-57b7-2a4c-ca97-81c51e8b2055	2021-05-26 18:44:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:44:20.951+03	2021-05-26 18:44:20.957+03	
b6577806-45d7-355d-627b-af31791dde34	2021-05-26 18:44:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:44:50.951+03	2021-05-26 18:44:50.964+03	
effb57f7-2458-73c0-445a-311b8422a7c9	2021-05-26 18:45:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:45:10.951+03	2021-05-26 18:45:10.959+03	
aeeef428-ef20-035b-9d1c-8f71bc534f6f	2021-05-26 18:45:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:45:30.951+03	2021-05-26 18:45:30.958+03	
03c65ab9-7089-d210-256e-b498a10c165c	2021-05-26 18:45:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:45:50.951+03	2021-05-26 18:45:50.96+03	
4d66f760-fce4-24fb-a5f9-b39e6cf0ef03	2021-05-26 18:46:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:46:10.951+03	2021-05-26 18:46:10.958+03	
5854dc82-8a66-372b-17ca-2d1ef80da191	2021-05-26 18:46:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:46:30.951+03	2021-05-26 18:46:30.957+03	
637770db-afd5-3eca-2965-a2cb3f00b5fd	2021-05-26 18:46:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:46:50.951+03	2021-05-26 18:46:50.957+03	
9125fce3-5cca-b673-9534-8d1e91298cd8	2021-05-26 18:47:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:47:10.951+03	2021-05-26 18:47:10.958+03	
063cc6fd-3c6d-9ab7-226d-058e8c98bc3d	2021-05-26 18:47:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:47:30.951+03	2021-05-26 18:47:30.959+03	
51076da8-a271-094c-e2e1-b3aa33f17995	2021-05-26 18:47:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:47:50.951+03	2021-05-26 18:47:50.962+03	
8e85d982-2eb5-ccf5-f116-d016a89c3fd1	2021-05-26 18:48:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:48:10.951+03	2021-05-26 18:48:10.96+03	
3391ed15-4896-8f09-e87b-4b3729cceb8b	2021-05-26 18:48:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:48:30.951+03	2021-05-26 18:48:30.96+03	
13ff546c-3497-96b8-3e43-136f30ec382c	2021-05-26 18:48:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:48:50.951+03	2021-05-26 18:48:50.961+03	
9f84e505-1239-b8c6-7f41-a79059fd0a39	2021-05-26 18:49:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:49:10.951+03	2021-05-26 18:49:10.958+03	
2621815b-de52-af51-6f92-cf3d71e23168	2021-05-26 18:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:49:30.951+03	2021-05-26 18:49:30.959+03	
17ba1b9b-33dd-b765-e2c6-bd3f045fa8ae	2021-05-26 18:49:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:49:50.951+03	2021-05-26 18:49:50.958+03	
b07c6cdb-f4bd-4e2f-d7fc-441cb1e6830f	2021-05-26 18:50:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:50:10.951+03	2021-05-26 18:50:10.96+03	
fe76ab37-1c3d-9f09-296c-ce204b57c407	2021-05-26 18:50:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:50:30.951+03	2021-05-26 18:50:30.959+03	
f9beeb4a-57ae-dacb-e8ca-baa1bac69a81	2021-05-26 18:51:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:51:00.951+03	2021-05-26 18:51:00.958+03	
513cb758-1ec0-7fb2-f2b0-2c06d095c1bc	2021-05-26 18:51:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:51:21.951+03	2021-05-26 18:51:21.958+03	
6f22b030-4f5a-8706-2762-d86638ea2136	2021-05-26 18:51:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:51:41.951+03	2021-05-26 18:51:41.959+03	
4cc93d65-ecd1-4ee0-e7da-0dc6e81f56fa	2021-05-26 18:51:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:51:51.951+03	2021-05-26 18:51:51.959+03	
d6e635f8-d9fa-b82c-56b9-59fc234a181d	2021-05-26 18:52:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:52:11.951+03	2021-05-26 18:52:11.959+03	
92b0a46d-9f36-aebc-8b72-eb97fc41aae4	2021-05-26 18:52:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:52:31.951+03	2021-05-26 18:52:31.959+03	
9674df49-dc55-b815-d9c5-0fc17d1f6dd5	2021-05-26 18:53:01.962	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:53:01.962+03	2021-05-26 18:53:01.97+03	
49c02225-e297-bd16-6f69-d243619a6cbb	2021-05-26 18:53:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:53:22.951+03	2021-05-26 18:53:22.958+03	
df2239a1-e3d4-fddb-eb06-18dc2f70b33a	2021-05-26 18:53:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:53:42.951+03	2021-05-26 18:53:42.957+03	
385363da-879b-5889-8cd6-d75b29801c79	2021-05-26 18:53:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:53:52.951+03	2021-05-26 18:53:52.957+03	
53832b87-3ce2-f500-715e-66a0fa33dcc3	2021-05-26 18:54:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:54:12.951+03	2021-05-26 18:54:12.96+03	
5a7ccce7-398d-ccf3-71e3-b2262ad3d375	2021-05-26 18:54:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:54:32.951+03	2021-05-26 18:54:32.958+03	
63fe716a-c201-78a7-3cbb-631153854a0e	2021-05-26 18:55:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:55:02.951+03	2021-05-26 18:55:02.958+03	
149ae2b6-e046-2af8-71e5-64393e56510b	2021-05-26 18:55:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:55:42.951+03	2021-05-26 18:55:42.959+03	
e35323ae-31db-d951-acc5-c06686cfecf6	2021-05-26 18:55:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:55:52.951+03	2021-05-26 18:55:52.959+03	
b33d85a5-40b0-d4d8-a4b9-db5cbc59259c	2021-05-26 18:56:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:56:12.951+03	2021-05-26 18:56:12.959+03	
82249844-116b-c7dc-9200-6b1cc5bc91d3	2021-05-26 18:56:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:56:32.951+03	2021-05-26 18:56:32.959+03	
f2b33462-c868-e9c0-aaa5-72100a66a5bb	2021-05-26 18:57:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:57:12.951+03	2021-05-26 18:57:12.959+03	
e2bab6f7-affd-d07d-0ad9-32b1f7c9e47d	2021-05-26 18:57:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:57:32.951+03	2021-05-26 18:57:32.96+03	
41c526d4-984a-0ede-26ce-be9a3eb49a7c	2021-05-26 18:58:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:58:02.951+03	2021-05-26 18:58:02.958+03	
0341b6c7-e312-59cb-0d9c-f965a4f2af06	2021-05-26 18:58:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:58:22.952+03	2021-05-26 18:58:22.959+03	
c2d3609b-0b11-e773-4298-121a2237ce39	2021-05-26 18:59:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:59:03.951+03	2021-05-26 18:59:03.961+03	
a565f793-85c4-109d-6a23-573b1d1cd5f1	2021-05-26 18:59:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:59:24.951+03	2021-05-26 18:59:24.96+03	
6615eba5-8960-9f36-1bf2-0fcae70133b9	2021-05-26 18:59:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:59:44.951+03	2021-05-26 18:59:44.959+03	
d6cf5553-0ede-151c-995b-9ebec5487762	2021-05-26 19:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 19:00:00.951+03	2021-05-26 19:00:00.957+03	ERROR
5d5b7041-7d79-14b0-96cc-e765a8dcd81d	2021-05-26 19:00:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:00:15.951+03	2021-05-26 19:00:15.959+03	
b529c034-40c9-e8bc-bf6b-b2210e646078	2021-05-26 19:00:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:00:35.951+03	2021-05-26 19:00:35.959+03	
926daf95-7ef2-ab88-8fd6-ca9e930faaf2	2021-05-26 19:00:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:00:55.951+03	2021-05-26 19:00:55.963+03	
75fc54e7-52f7-4106-ac30-030ff5a7f05b	2021-05-26 19:01:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:01:15.951+03	2021-05-26 19:01:15.959+03	
12faddf0-a113-a07b-4a2f-114f9dc99ca0	2021-05-26 19:01:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:01:35.951+03	2021-05-26 19:01:35.959+03	
b6e94e6a-6310-391f-e60d-d87304b03598	2021-05-26 19:01:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:01:55.951+03	2021-05-26 19:01:55.959+03	
679e8409-1f5b-fcda-9b50-be689d10d893	2021-05-26 19:02:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:02:25.951+03	2021-05-26 19:02:25.957+03	
3c5270fc-51ba-fdd3-2ee3-038e1256e37c	2021-05-26 19:02:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:02:56.951+03	2021-05-26 19:02:56.957+03	
c2d2e1f2-2744-f584-b621-5fbd41c91453	2021-05-26 19:03:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:03:16.951+03	2021-05-26 19:03:16.958+03	
f01dd592-d5f5-217b-6912-53c3cf48e832	2021-05-26 19:03:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:03:36.951+03	2021-05-26 19:03:36.959+03	
7bd540b2-8a59-00ac-0b64-7ef67689029f	2021-05-26 19:03:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:03:46.951+03	2021-05-26 19:03:46.959+03	
cfb4ae11-80f9-0c0d-d42c-a0de70eff330	2021-05-26 19:04:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:04:06.951+03	2021-05-26 19:04:06.958+03	
ec1de812-7f72-698e-2d86-aa897c1ce4fc	2021-05-26 19:04:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:04:26.951+03	2021-05-26 19:04:26.959+03	
fdeed76a-2c08-1730-691e-5bacbf471188	2021-05-26 19:04:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:04:56.952+03	2021-05-26 19:04:56.962+03	
c2aa7c60-24fd-ee6c-eb59-9e19f0742ea5	2021-05-26 19:05:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:05:27.952+03	2021-05-26 19:05:27.96+03	
ad92af8c-ebca-798f-dc82-63c5fd2ab39b	2021-05-26 18:43:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:43:30.951+03	2021-05-26 18:43:30.96+03	
d315c96e-f97d-5e8e-d3ea-e7994df2dbd3	2021-05-26 18:43:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:43:50.951+03	2021-05-26 18:43:50.958+03	
01b40265-3bdb-4cef-0189-5991805e9c9b	2021-05-26 18:44:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:44:10.951+03	2021-05-26 18:44:10.957+03	
06b27c6d-108a-dc66-422c-df68da47d9fc	2021-05-26 18:44:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:44:30.951+03	2021-05-26 18:44:30.958+03	
9d35f793-fea7-2970-33bc-5f4590829484	2021-05-26 18:44:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:44:40.951+03	2021-05-26 18:44:40.973+03	
b5e97473-844d-1f4d-14fb-308c9e69c86c	2021-05-26 18:45:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:45:00.951+03	2021-05-26 18:45:00.958+03	
90b5309c-342d-ef04-921d-2f12750acddf	2021-05-26 18:45:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:45:20.951+03	2021-05-26 18:45:20.959+03	
c65c3df7-e43e-3cdd-f504-f09d1497c583	2021-05-26 18:45:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:45:40.951+03	2021-05-26 18:45:40.959+03	
0ebf9d58-f458-5381-7bf6-f1f7ddda48d7	2021-05-26 18:46:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:46:00.951+03	2021-05-26 18:46:00.958+03	
46addf29-bd62-f9af-b35c-7b5acf9ac57a	2021-05-26 18:46:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:46:20.951+03	2021-05-26 18:46:20.959+03	
b8a0089b-cd24-41f9-d7dd-14c05c40572a	2021-05-26 18:46:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:46:40.951+03	2021-05-26 18:46:40.959+03	
d2d8c8da-0bda-0a98-3b50-6ab41d61ba8d	2021-05-26 18:47:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:47:00.951+03	2021-05-26 18:47:00.959+03	
d3dc999d-f034-82cf-2ffa-4a969807cf17	2021-05-26 18:47:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:47:20.951+03	2021-05-26 18:47:20.959+03	
29dee1ce-9fee-f185-2795-3e73067e2fe8	2021-05-26 18:47:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:47:40.951+03	2021-05-26 18:47:40.958+03	
db0fa7ce-bc49-c76a-e7f5-05aa13e53fb8	2021-05-26 18:48:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:48:00.951+03	2021-05-26 18:48:00.958+03	
4108cff7-8788-c233-6cea-aa8de3367ff3	2021-05-26 18:48:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:48:20.951+03	2021-05-26 18:48:20.961+03	
619ff352-74e2-ac92-01d0-693b426ded91	2021-05-26 18:48:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:48:40.951+03	2021-05-26 18:48:40.958+03	
49b4040a-c820-17a8-1d63-874ecdeb32a3	2021-05-26 18:49:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:49:00.951+03	2021-05-26 18:49:00.959+03	
14a95be7-937c-7f82-7ed3-bd9bc810e585	2021-05-26 18:49:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:49:20.951+03	2021-05-26 18:49:20.958+03	
a0d44e7e-88df-7034-3eb3-2e14de2f87ff	2021-05-26 18:49:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:49:40.951+03	2021-05-26 18:49:40.961+03	
845e5404-a264-f1b6-bbcf-662bc8451e01	2021-05-26 18:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 18:50:00.951+03	2021-05-26 18:50:00.957+03	ERROR
606f90f2-b4fc-972f-9541-27fa026f85df	2021-05-26 18:50:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:50:00.951+03	2021-05-26 18:50:00.969+03	
67e8437d-9e4b-ee94-e7fe-9b3f3c4f124c	2021-05-26 18:50:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:50:20.951+03	2021-05-26 18:50:20.958+03	
174e2452-8337-f032-39a8-e667c8f7bf17	2021-05-26 18:50:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:50:40.951+03	2021-05-26 18:50:40.959+03	
3e68b3ef-bbc8-8edc-22b8-24810e2e4aec	2021-05-26 18:50:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:50:50.951+03	2021-05-26 18:50:50.957+03	
91a33966-3c18-4a54-4cf9-dc181f539dd4	2021-05-26 18:51:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:51:10.952+03	2021-05-26 18:51:10.96+03	
25582bde-2d3a-e7e7-d282-e26b68117fa0	2021-05-26 18:51:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:51:31.951+03	2021-05-26 18:51:31.957+03	
2e1cac9a-7686-633a-ee79-0236443f588c	2021-05-26 18:52:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:52:01.951+03	2021-05-26 18:52:01.96+03	
db6944f5-ad1f-537b-c6ec-efb18a4dd4b3	2021-05-26 18:52:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:52:21.951+03	2021-05-26 18:52:21.958+03	
2a2afb12-c5cf-d6e5-47db-4f08432cf8f8	2021-05-26 18:52:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:52:41.951+03	2021-05-26 18:52:41.958+03	
7d6a16eb-85f2-7353-d30a-9f6ec8665698	2021-05-26 18:52:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:52:51.951+03	2021-05-26 18:52:51.96+03	
0bd5c3c4-ac31-acb3-7df5-8c590ecad5f5	2021-05-26 18:53:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:53:12.951+03	2021-05-26 18:53:12.958+03	
a441370d-c11c-edef-3f8b-8133021b5394	2021-05-26 18:53:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:53:32.951+03	2021-05-26 18:53:32.958+03	
92ab3abc-4fc7-16d0-b878-f582f2fa3414	2021-05-26 18:54:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:54:02.951+03	2021-05-26 18:54:02.959+03	
15822095-12e1-7bbb-870f-d0ef732b2ca6	2021-05-26 18:54:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:54:22.951+03	2021-05-26 18:54:22.958+03	
fffee500-7488-e425-b17e-2426ff72aad3	2021-05-26 18:54:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:54:42.951+03	2021-05-26 18:54:42.959+03	
640aa000-5eb9-07f7-9061-ae279e223229	2021-05-26 18:54:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:54:52.951+03	2021-05-26 18:54:52.96+03	
9aaa5472-2d02-991b-3a16-6e8d3f8f55ec	2021-05-26 18:55:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:55:12.951+03	2021-05-26 18:55:12.969+03	
6986b812-3d26-64f1-ae8b-0b9572647b3e	2021-05-26 18:55:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:55:22.951+03	2021-05-26 18:55:22.958+03	
de6171f2-4e42-a573-e7ce-ecc0b7ae1ecd	2021-05-26 18:55:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:55:32.951+03	2021-05-26 18:55:32.957+03	
80181792-2f53-6116-19ac-46837e8eb1f8	2021-05-26 18:56:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:56:02.951+03	2021-05-26 18:56:02.959+03	
9ce44190-e85a-b332-1e48-d924edf91a79	2021-05-26 18:56:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:56:22.951+03	2021-05-26 18:56:22.96+03	
10f6453d-942f-5516-2f9b-b467d377ad2c	2021-05-26 18:56:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:56:42.951+03	2021-05-26 18:56:42.959+03	
7b51eccd-3b21-4394-a8d3-a7ea60c38cb1	2021-05-26 18:56:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:56:52.951+03	2021-05-26 18:56:52.958+03	
7592d17e-342a-814e-c164-f9d21129bdcd	2021-05-26 18:57:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:57:02.951+03	2021-05-26 18:57:02.958+03	
f6180446-8fd9-e78f-76ea-8bb68edcfa1c	2021-05-26 18:57:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:57:22.951+03	2021-05-26 18:57:22.958+03	
08e2a25d-e9df-7b5b-ca40-495b81a7d322	2021-05-26 18:57:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:57:42.951+03	2021-05-26 18:57:42.96+03	
59f201dd-2c1c-6936-a149-e196b325288c	2021-05-26 18:57:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:57:52.951+03	2021-05-26 18:57:52.958+03	
27fda779-14ee-d422-2dee-c6a9badcf2fa	2021-05-26 18:58:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:58:12.951+03	2021-05-26 18:58:12.958+03	
f602a5b9-ff63-1bab-9231-6e9319ca4bbc	2021-05-26 18:58:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:58:33.951+03	2021-05-26 18:58:33.959+03	
3a5c2b93-2134-79fb-809e-e0947b3e9139	2021-05-26 18:58:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:58:43.951+03	2021-05-26 18:58:43.973+03	
673a219c-43b0-73ce-5a9b-1aacb00f70d2	2021-05-26 18:58:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:58:53.951+03	2021-05-26 18:58:54.289+03	
f0335705-7c46-da12-579f-4d8d42e8b22c	2021-05-26 18:59:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:59:13.952+03	2021-05-26 18:59:13.959+03	
37cd8bb4-d8b9-72d5-fc42-75ba7ded3023	2021-05-26 18:59:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:59:34.951+03	2021-05-26 18:59:34.959+03	
245cbbfe-c2d9-476f-b938-d1ba39123dfa	2021-05-26 18:59:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 18:59:54.951+03	2021-05-26 18:59:54.961+03	
25b6821c-2f7f-324a-b6ff-881bcb7f74a7	2021-05-26 19:00:04.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:00:04.953+03	2021-05-26 19:00:04.96+03	
78d75104-82e1-8466-f95e-103ef96ff991	2021-05-26 19:00:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:00:25.951+03	2021-05-26 19:00:25.959+03	
3bde3289-f256-65e7-f5a1-f3f6299a36c7	2021-05-26 19:00:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:00:45.951+03	2021-05-26 19:00:45.959+03	
446c0f85-cfd4-4233-9ebc-a638740ded8d	2021-05-26 19:01:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:01:05.951+03	2021-05-26 19:01:05.958+03	
44bc8733-1061-83d2-1dac-345e7af08790	2021-05-26 19:01:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:01:25.951+03	2021-05-26 19:01:25.959+03	
181ac133-7f2f-fad3-5735-7850b974b2cc	2021-05-26 19:01:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:01:45.951+03	2021-05-26 19:01:45.957+03	
37578a94-ad07-b589-a0bc-b9aa9b8792b6	2021-05-26 19:02:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:02:05.951+03	2021-05-26 19:02:05.958+03	
8933f2d9-3e83-8d12-90de-28f051ee1c13	2021-05-26 19:02:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:02:15.951+03	2021-05-26 19:02:15.961+03	
e63085e4-9568-7a3d-ca3c-e9f7e21c6b36	2021-05-26 19:02:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:02:35.951+03	2021-05-26 19:02:35.959+03	
42b3a793-6e97-1130-66c3-0f5ba91033c1	2021-05-26 19:02:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:02:45.952+03	2021-05-26 19:02:45.958+03	
32744b71-1d23-9ceb-2b08-618981a67d03	2021-05-26 19:03:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:03:06.951+03	2021-05-26 19:03:06.958+03	
da13a050-9c0f-ca73-86cd-e74b2253b44f	2021-05-26 19:03:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:03:26.951+03	2021-05-26 19:03:26.958+03	
1758aac7-5870-d867-b3da-8345a2f19bd2	2021-05-26 19:03:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:03:56.951+03	2021-05-26 19:03:56.958+03	
ddfcc056-ab72-b1be-c64b-6c058270cf3d	2021-05-26 19:04:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:04:16.951+03	2021-05-26 19:04:16.959+03	
25d0397f-529c-484b-4176-3cf3c15999f2	2021-05-26 19:04:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:04:36.951+03	2021-05-26 19:04:36.958+03	
641004e4-8cb1-4522-1add-f896773b8ef5	2021-05-26 19:04:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:04:46.951+03	2021-05-26 19:04:46.958+03	
e76d6d59-26e1-9ecc-218b-8473e466b9e3	2021-05-26 19:05:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:05:07.951+03	2021-05-26 19:05:07.959+03	
d703b5e8-1bbc-5fd7-a016-551f04e73507	2021-05-26 19:05:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:05:17.952+03	2021-05-26 19:05:17.959+03	
538cbdc9-967a-4e2f-a688-dbc1fe601c9b	2021-05-26 19:05:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:05:38.951+03	2021-05-26 19:05:38.958+03	
4092dce9-3e19-275d-095f-cf217a547d61	2021-05-26 19:06:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:06:18.951+03	2021-05-26 19:06:18.958+03	
5d0a32ce-08aa-8989-a767-5d3085471144	2021-05-26 19:06:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:06:48.951+03	2021-05-26 19:06:48.958+03	
cdfe8242-3652-dff5-0de2-a534e8cb7981	2021-05-26 19:07:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:07:08.951+03	2021-05-26 19:07:08.958+03	
098d895d-ee1b-ac4a-4304-0f1014684869	2021-05-26 19:07:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:07:28.951+03	2021-05-26 19:07:28.958+03	
9743ad46-dc42-0f16-f1de-32d99f1245da	2021-05-26 19:07:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:07:48.952+03	2021-05-26 19:07:48.958+03	
8e63c15f-46ab-ba5c-06de-5ac66bdf2728	2021-05-26 19:08:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:08:09.951+03	2021-05-26 19:08:09.959+03	
55b52f1f-7c40-0f4c-3b92-98995135461f	2021-05-26 19:08:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:08:29.951+03	2021-05-26 19:08:29.959+03	
7649ef0a-addc-afcd-1557-ff96bb081368	2021-05-26 19:08:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:08:49.951+03	2021-05-26 19:08:49.958+03	
5ddea860-2b53-6471-eec7-2329fb3d81cf	2021-05-26 19:09:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:09:09.951+03	2021-05-26 19:09:09.958+03	
ebdef0ec-f62e-1a4b-d409-2e200d7dbfaf	2021-05-26 19:09:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:09:29.951+03	2021-05-26 19:09:29.958+03	
c7353e5b-35d5-eb5f-49a1-a14d55197021	2021-05-26 19:09:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:09:49.951+03	2021-05-26 19:09:49.958+03	
e785340b-964a-3a14-2dbb-9b862ec13d28	2021-05-26 19:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 19:10:00.951+03	2021-05-26 19:10:00.956+03	ERROR
4cfeee30-24f9-6c32-55dd-d39091732690	2021-05-26 19:10:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:10:19.951+03	2021-05-26 19:10:19.961+03	
60edfa11-29d4-13f4-b6d0-241cfe27f379	2021-05-26 19:10:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:10:39.951+03	2021-05-26 19:10:39.959+03	
ad53b8c1-6ed7-548c-dda4-34bbd5d2680a	2021-05-26 19:10:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:10:59.951+03	2021-05-26 19:10:59.959+03	
d1e954d7-c716-6a9a-c7b8-26442292f8bd	2021-05-26 19:11:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:11:19.951+03	2021-05-26 19:11:19.958+03	
458fdf39-2bec-cfe5-384a-b1dbb1627805	2021-05-26 19:11:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:11:39.951+03	2021-05-26 19:11:39.959+03	
33659678-bb55-136c-2177-90f355a28777	2021-05-26 19:11:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:11:49.951+03	2021-05-26 19:11:49.961+03	
7183025d-82ba-8b71-51b0-fe5dbbc687e6	2021-05-26 19:12:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:12:09.951+03	2021-05-26 19:12:09.958+03	
cf1c7d13-640f-dd47-b678-fd2ba3983ed5	2021-05-26 19:12:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:12:29.951+03	2021-05-26 19:12:29.959+03	
b327ea1c-f848-1d7f-222c-925768bc2d67	2021-05-26 19:12:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:12:49.951+03	2021-05-26 19:12:49.959+03	
c8bedb47-4956-056e-7ce4-680c8cd1624f	2021-05-26 19:13:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:13:09.951+03	2021-05-26 19:13:09.961+03	
683c3fa2-1d64-b364-101e-b84616ac7f94	2021-05-26 19:13:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:13:29.952+03	2021-05-26 19:13:29.961+03	
408d8657-b431-27ad-99db-81e5017e3a0d	2021-05-26 19:13:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:13:50.951+03	2021-05-26 19:13:50.961+03	
16bf7ac7-9eda-7157-0f90-9b06ef0c10f0	2021-05-26 19:14:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:14:10.951+03	2021-05-26 19:14:10.96+03	
30e6c18d-85b8-a241-177d-e92def8165d5	2021-05-26 19:14:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:14:30.952+03	2021-05-26 19:14:30.959+03	
c4699106-d246-3d89-4558-74f608a9989b	2021-05-26 19:15:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:15:01.951+03	2021-05-26 19:15:01.957+03	
a07a8cb7-38e7-0b80-200f-9ebab858d2f5	2021-05-26 19:15:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:15:21.951+03	2021-05-26 19:15:21.958+03	
ec4a7a47-ccba-e917-d81a-89912f4bde01	2021-05-26 19:15:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:15:41.951+03	2021-05-26 19:15:41.958+03	
0a1d139a-a421-6d48-18ab-2f2752db1862	2021-05-26 19:16:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:16:01.952+03	2021-05-26 19:16:01.96+03	
6ec32545-a2fe-e1e5-b8bb-bcd75841d86b	2021-05-26 19:16:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:16:22.952+03	2021-05-26 19:16:22.959+03	
86932bde-d646-d801-f41f-c5e13fa68803	2021-05-26 19:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:16:43.951+03	2021-05-26 19:16:43.959+03	
c634bc33-dfd5-8c00-5946-8c2a55f679e4	2021-05-26 19:16:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:16:53.951+03	2021-05-26 19:16:53.958+03	
1a299f1a-324c-7068-5ba1-518a2674a77c	2021-05-26 19:17:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:17:13.951+03	2021-05-26 19:17:13.959+03	
f5db8cbc-d04d-2645-cd7e-4e645cf8e169	2021-05-26 19:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:17:33.951+03	2021-05-26 19:17:33.959+03	
1c4986af-0769-293d-837b-0d3c09f79874	2021-05-26 19:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:18:03.951+03	2021-05-26 19:18:03.959+03	
66b0405f-7f9b-d9e7-8784-76521ae3a9c4	2021-05-26 19:18:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:18:23.951+03	2021-05-26 19:18:23.96+03	
d7375a15-0ff6-758c-164f-811d3a924a05	2021-05-26 19:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:18:43.951+03	2021-05-26 19:18:43.961+03	
a01c16a1-0baa-2a29-c03f-9a6eacf7dff6	2021-05-26 19:19:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:19:03.951+03	2021-05-26 19:19:03.959+03	
49bc3a80-c491-80f0-79b4-a8dc54ebc0a0	2021-05-26 19:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:19:23.951+03	2021-05-26 19:19:23.959+03	
92ae6ee1-dc57-5ab1-c3f2-ff93fc566b47	2021-05-26 19:19:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:19:43.951+03	2021-05-26 19:19:43.959+03	
770fefec-5051-17d8-0523-86f7e63ca185	2021-05-26 19:19:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:19:53.951+03	2021-05-26 19:19:53.959+03	
e25eddd3-c0d0-5c29-145d-9163db408535	2021-05-26 19:20:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:20:03.951+03	2021-05-26 19:20:03.958+03	
188005b2-251e-9098-502b-47b4cdb14590	2021-05-26 19:20:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:20:23.951+03	2021-05-26 19:20:23.959+03	
564e7a6a-ee10-85b8-e09f-40cd0af41680	2021-05-26 19:20:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:20:43.951+03	2021-05-26 19:20:43.959+03	
cba9841c-d946-5a19-a085-b5e3672601d7	2021-05-26 19:20:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:20:53.951+03	2021-05-26 19:20:53.958+03	
d3f02779-6681-615b-9fd5-714dc4c14eb1	2021-05-26 19:21:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:21:13.951+03	2021-05-26 19:21:13.96+03	
de64cae3-681e-94b8-493e-969e758f18d4	2021-05-26 19:21:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:21:33.951+03	2021-05-26 19:21:33.958+03	
fd1dfe6f-79b6-c9ae-38d2-d262fd095fa9	2021-05-26 19:22:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:22:04.952+03	2021-05-26 19:22:04.961+03	
8e40599b-504d-d17d-0ff6-b5e6fe679cfa	2021-05-26 19:22:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:22:25.952+03	2021-05-26 19:22:25.963+03	
51357011-0a1c-7115-bf23-c376a7edd4d4	2021-05-26 19:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:22:46.951+03	2021-05-26 19:22:46.958+03	
a7fad7f0-46ad-b200-9faa-1d60b67cb7f6	2021-05-26 19:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:23:06.952+03	2021-05-26 19:23:06.96+03	
27c06fcb-4b07-7ee6-c0c5-9df78c8293bd	2021-05-26 19:05:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:05:48.951+03	2021-05-26 19:05:48.96+03	
9d3255cf-fc1b-5a84-520f-5f500f069ce6	2021-05-26 19:05:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:05:58.951+03	2021-05-26 19:05:58.958+03	
307c6334-6178-ee9c-0501-7a746c83561f	2021-05-26 19:06:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:06:08.951+03	2021-05-26 19:06:08.963+03	
9b3027ae-fb36-34f0-23ee-d4e967dbe096	2021-05-26 19:06:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:06:28.951+03	2021-05-26 19:06:28.959+03	
b495a004-58a2-a1ae-cdf7-7d57b66d80ad	2021-05-26 19:06:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:06:38.951+03	2021-05-26 19:06:38.958+03	
08c5bb7a-0ad3-3eab-2c8f-f01e432daed6	2021-05-26 19:06:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:06:58.951+03	2021-05-26 19:06:58.959+03	
a277dd93-415f-7234-54c4-0c1893c78d77	2021-05-26 19:07:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:07:18.951+03	2021-05-26 19:07:18.958+03	
e8ba4d67-ab8e-2494-75a7-d12f412d962e	2021-05-26 19:07:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:07:38.951+03	2021-05-26 19:07:38.961+03	
c39fcb7a-32db-4e39-e3a1-2cf359a82f94	2021-05-26 19:07:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:07:59.951+03	2021-05-26 19:07:59.959+03	
fae53efe-4b1c-052d-850a-235e0a6843a8	2021-05-26 19:08:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:08:19.951+03	2021-05-26 19:08:19.96+03	
dd733af2-9133-7297-7bc6-eafe6fc1145e	2021-05-26 19:08:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:08:39.951+03	2021-05-26 19:08:39.958+03	
e00bef3c-2684-15ae-b041-d3895c07d460	2021-05-26 19:08:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:08:59.951+03	2021-05-26 19:08:59.958+03	
4d6809a8-2e21-7e6c-4e56-ad2c8e06439b	2021-05-26 19:09:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:09:19.951+03	2021-05-26 19:09:19.958+03	
0b657ce6-5151-b7ce-57a9-8e5edd831e40	2021-05-26 19:09:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:09:39.951+03	2021-05-26 19:09:39.959+03	
22b01b11-ca52-f1b9-368d-2e580f117aa7	2021-05-26 19:09:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:09:59.951+03	2021-05-26 19:09:59.96+03	
4f540352-3253-7764-f8c0-080cdd1b7474	2021-05-26 19:10:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:10:09.951+03	2021-05-26 19:10:09.957+03	
3f9daf3c-2b56-7b67-8b5b-5736fd24c59f	2021-05-26 19:10:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:10:29.951+03	2021-05-26 19:10:29.958+03	
17cd4869-af7f-73af-a50d-6dbf0822dc85	2021-05-26 19:10:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:10:49.951+03	2021-05-26 19:10:49.957+03	
f6c28408-a0bd-5bdb-eef5-105ce13ee41a	2021-05-26 19:11:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:11:09.951+03	2021-05-26 19:11:09.959+03	
4444f531-962f-ca09-7a0e-810d820b4182	2021-05-26 19:11:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:11:29.951+03	2021-05-26 19:11:29.972+03	
18fb1b84-bf52-4979-71c9-9ac0ae5c22aa	2021-05-26 19:11:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:11:59.951+03	2021-05-26 19:11:59.958+03	
486fe651-6a7d-2eac-9594-fabb80feb953	2021-05-26 19:12:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:12:19.951+03	2021-05-26 19:12:19.958+03	
06838ab1-72a5-5d86-8ab1-d47ba0b0f0de	2021-05-26 19:12:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:12:39.951+03	2021-05-26 19:12:39.959+03	
a56149e0-2200-9e68-a765-0e179d7242d6	2021-05-26 19:12:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:12:59.951+03	2021-05-26 19:12:59.959+03	
8b395d40-8031-26e6-62b5-fedddf1c0de0	2021-05-26 19:13:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:13:19.951+03	2021-05-26 19:13:19.962+03	
1425c311-0c42-50c0-2dd0-d4ac2b21dbbe	2021-05-26 19:13:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:13:40.951+03	2021-05-26 19:13:40.959+03	
b4a8be17-57f0-82a1-e69c-2ad7f6e6e9d8	2021-05-26 19:14:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:14:00.951+03	2021-05-26 19:14:00.963+03	
49b606ef-36dd-a838-2b9d-6c2cfe5e1d11	2021-05-26 19:14:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:14:20.952+03	2021-05-26 19:14:20.962+03	
148af60f-086c-83c6-8b65-8e9bc57a355b	2021-05-26 19:14:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:14:41.951+03	2021-05-26 19:14:41.965+03	
58dac393-d7fb-78c0-0f79-3d7e5a3711a1	2021-05-26 19:14:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:14:51.951+03	2021-05-26 19:14:51.961+03	
8e423428-855e-75b7-97a6-62a527a3532e	2021-05-26 19:15:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:15:11.951+03	2021-05-26 19:15:11.96+03	
d82d69fb-f451-e729-b80e-d8b22ef11601	2021-05-26 19:15:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:15:31.951+03	2021-05-26 19:15:31.958+03	
ef32bf5d-af3c-28f0-c6d7-046e946f5e8a	2021-05-26 19:15:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:15:51.951+03	2021-05-26 19:15:51.959+03	
2395db41-f7d3-fa43-2bdc-87ad27748cc0	2021-05-26 19:16:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:16:12.951+03	2021-05-26 19:16:12.959+03	
309ab8ff-da9b-57fd-2b54-a1bb7ef8bfc8	2021-05-26 19:16:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:16:33.951+03	2021-05-26 19:16:33.959+03	
763d9998-1803-2771-4283-54833e70da4c	2021-05-26 19:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:17:03.951+03	2021-05-26 19:17:03.958+03	
680dd60e-bdab-3fd6-58ee-ae5f2642fbd8	2021-05-26 19:17:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:17:23.951+03	2021-05-26 19:17:23.958+03	
89c364ca-b6dc-c6e5-b298-cfe0810665c4	2021-05-26 19:17:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:17:43.951+03	2021-05-26 19:17:43.96+03	
42643e1d-f391-6d66-0adb-02bce8c82e09	2021-05-26 19:17:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:17:53.951+03	2021-05-26 19:17:53.958+03	
e1925c25-df19-4479-5c75-959e673a60cd	2021-05-26 19:18:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:18:13.951+03	2021-05-26 19:18:13.957+03	
8251f35c-d1ef-0977-aa0c-92ac2ba2197e	2021-05-26 19:18:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:18:33.951+03	2021-05-26 19:18:33.959+03	
4fc153c8-b19c-336c-7e6e-15f3b7403e15	2021-05-26 19:18:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:18:53.951+03	2021-05-26 19:18:53.96+03	
75bcd3c9-d086-c600-b6d6-8eca83fc22e1	2021-05-26 19:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:19:13.951+03	2021-05-26 19:19:13.96+03	
d0b489a4-b858-2f41-ee99-a6163d38e65c	2021-05-26 19:19:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:19:33.951+03	2021-05-26 19:19:33.958+03	
f10b5fe9-3ba6-6659-803b-fd939ea07993	2021-05-26 19:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 19:20:00.951+03	2021-05-26 19:20:00.956+03	ERROR
7637579e-07a3-7ba4-a4e6-4957e1e68ab0	2021-05-26 19:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:20:13.951+03	2021-05-26 19:20:13.959+03	
b65450d4-5061-c508-1497-cfc1c0ebceae	2021-05-26 19:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:20:33.951+03	2021-05-26 19:20:33.96+03	
23489e61-3d5f-7bc4-3353-a9056b22391f	2021-05-26 19:21:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:21:03.951+03	2021-05-26 19:21:03.964+03	
fba01b1e-abf8-c27f-adf1-e93201a2bacf	2021-05-26 19:21:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:21:23.951+03	2021-05-26 19:21:23.959+03	
8e22e31b-13c0-df6f-2def-2259c68449e3	2021-05-26 19:21:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:21:43.952+03	2021-05-26 19:21:43.959+03	
e1d10c60-4641-756d-d5db-ddd28b27ae63	2021-05-26 19:21:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:21:53.952+03	2021-05-26 19:21:53.96+03	
6ba34f91-be06-2297-e420-7a33a1a76c14	2021-05-26 19:22:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:22:14.952+03	2021-05-26 19:22:14.96+03	
b1f82e92-5070-5317-4027-89f9892f8731	2021-05-26 19:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:22:36.951+03	2021-05-26 19:22:36.958+03	
682e4974-d6df-7f29-8274-fc2c185a321e	2021-05-26 19:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:22:56.951+03	2021-05-26 19:22:56.959+03	
0f916d2d-e449-34d4-036c-9f536b9f06cf	2021-05-26 19:23:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:23:16.952+03	2021-05-26 19:23:16.96+03	
42dc92a4-f452-375d-a0da-4b55d04e324e	2021-05-26 19:23:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:23:37.952+03	2021-05-26 19:23:37.96+03	
4e9de238-4054-be40-99f7-b0d9a8f5eb3e	2021-05-26 19:23:58.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:23:58.952+03	2021-05-26 19:23:58.959+03	
86e145da-a360-ab80-7854-2f77f8678fcc	2021-05-26 19:24:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:24:20.951+03	2021-05-26 19:24:20.961+03	
2815d7cb-6af9-7b6b-be89-8c7631ac8ead	2021-05-26 19:24:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:24:40.951+03	2021-05-26 19:24:40.96+03	
428df209-7747-1950-fdbb-b22c856b9ea1	2021-05-26 19:25:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:25:00.951+03	2021-05-26 19:25:00.961+03	
8263cc13-742d-7746-5490-88abf6d85bc8	2021-05-26 19:25:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:25:20.951+03	2021-05-26 19:25:20.959+03	
f4218656-c84b-3825-aba5-025dd5f9f542	2021-05-26 19:25:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:25:40.951+03	2021-05-26 19:25:40.959+03	
27858f7e-dd87-aa85-df84-ad21b8a0fb74	2021-05-26 19:26:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:26:00.951+03	2021-05-26 19:26:00.958+03	
7debc12d-aa79-3612-d224-3913c0febcdd	2021-05-26 19:23:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:23:27.951+03	2021-05-26 19:23:27.959+03	
6656e49d-9f99-64f3-0994-43154b2d4594	2021-05-26 19:23:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:23:48.951+03	2021-05-26 19:23:48.958+03	
eb8913d9-904d-9b24-aa4d-244c86005e19	2021-05-26 19:24:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:24:09.952+03	2021-05-26 19:24:09.96+03	
27bd1cc8-433a-0ae0-f639-7aa61b291bc1	2021-05-26 19:24:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:24:30.951+03	2021-05-26 19:24:30.96+03	
1ca8a402-8bb9-a005-3157-26e0228ead4d	2021-05-26 19:24:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:24:50.951+03	2021-05-26 19:24:50.959+03	
b9d24ae9-62bd-4576-01a9-da64f0953b9e	2021-05-26 19:25:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:25:10.951+03	2021-05-26 19:25:10.959+03	
475d1d3a-0d27-c627-48b9-00901c432f83	2021-05-26 19:25:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:25:30.951+03	2021-05-26 19:25:30.959+03	
b42b8c9c-46ca-70c7-713d-2c85014d1444	2021-05-26 19:25:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:25:50.951+03	2021-05-26 19:25:50.958+03	
519399a3-45fb-06b3-6707-e5396b4b5696	2021-05-26 19:26:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:26:10.951+03	2021-05-26 19:26:10.958+03	
a80cc148-732a-a655-5411-1ba27554b070	2021-05-26 19:26:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:26:30.951+03	2021-05-26 19:26:30.958+03	
f50bd6ba-ebd6-0e8c-a7c7-4702eaf4837e	2021-05-26 19:26:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:26:50.951+03	2021-05-26 19:26:50.959+03	
b08999c1-13ee-70d3-a775-c5b8f4da71a0	2021-05-26 19:27:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:27:10.951+03	2021-05-26 19:27:10.958+03	
02042872-8b61-da02-f638-a2242bd9bfd2	2021-05-26 19:27:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:27:30.951+03	2021-05-26 19:27:30.959+03	
aa24f9ba-da06-3a45-d9d9-7924f6a8383f	2021-05-26 19:27:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:27:50.952+03	2021-05-26 19:27:50.96+03	
8d41fea8-8beb-da78-59fa-9a8a1f359ec5	2021-05-26 19:28:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:28:11.951+03	2021-05-26 19:28:11.961+03	
5d1faeac-a257-ab29-0b46-78a7bf9d57f9	2021-05-26 19:28:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:28:31.951+03	2021-05-26 19:28:31.961+03	
c6d8b57f-ae01-6900-0132-d4228fa236dc	2021-05-26 19:28:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:28:51.951+03	2021-05-26 19:28:51.958+03	
74dc2253-fbeb-1588-961e-b582ba6a1e80	2021-05-26 19:29:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:29:11.951+03	2021-05-26 19:29:11.961+03	
599c3af6-21e7-510b-7da2-0f917d1f9848	2021-05-26 19:29:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:29:31.951+03	2021-05-26 19:29:31.957+03	
8c65a5ba-366f-d9fa-50b7-b565d3040b30	2021-05-26 19:29:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:29:51.951+03	2021-05-26 19:29:51.958+03	
bb57cbf1-44ff-ee28-2454-2ae877dd6719	2021-05-26 19:30:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:30:01.951+03	2021-05-26 19:30:01.959+03	
3585e7af-a867-326a-f435-6dab41d9a314	2021-05-26 19:30:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:30:21.952+03	2021-05-26 19:30:21.959+03	
d078fac5-9cf6-2224-184b-b151dc767a75	2021-05-26 19:30:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:30:42.952+03	2021-05-26 19:30:42.959+03	
a1768911-5a56-78ee-ada7-f0f39fc67259	2021-05-26 19:31:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:31:03.951+03	2021-05-26 19:31:03.958+03	
b90fddaa-5dd1-5176-eb3b-b3d5884908a9	2021-05-26 19:31:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:31:23.951+03	2021-05-26 19:31:23.959+03	
ad026b01-79ab-825e-3f4a-a979eb0c5457	2021-05-26 19:31:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:31:43.951+03	2021-05-26 19:31:43.958+03	
8aaa9f3e-fbab-6d6a-74d7-163efc90514e	2021-05-26 19:32:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:32:03.951+03	2021-05-26 19:32:03.959+03	
421f4b31-63fc-5a37-74da-65e91cac0064	2021-05-26 19:32:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:32:23.951+03	2021-05-26 19:32:23.958+03	
327b0224-c893-f469-7d3e-5e36abcf9211	2021-05-26 19:32:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:32:43.951+03	2021-05-26 19:32:43.958+03	
bcca47b5-d3f8-b32c-c07d-b963f09684c8	2021-05-26 19:33:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:33:03.951+03	2021-05-26 19:33:03.959+03	
5c19b433-5ce7-2287-4c7d-81edd3a23d4f	2021-05-26 19:33:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:33:23.951+03	2021-05-26 19:33:23.958+03	
00885483-9774-7ade-4d71-6476a8fb5597	2021-05-26 19:33:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:33:43.951+03	2021-05-26 19:33:43.958+03	
7798b4ee-d44d-9d48-9edb-419f553458ba	2021-05-26 19:34:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:34:03.951+03	2021-05-26 19:34:03.958+03	
592f084c-ce2b-5a0d-88af-ac722f62b7e1	2021-05-26 19:34:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:34:23.951+03	2021-05-26 19:34:23.958+03	
bc8bd1a9-c576-2f16-bb0c-bba5151f0ca3	2021-05-26 19:34:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:34:43.951+03	2021-05-26 19:34:43.971+03	
e7011f11-fa82-9fe1-8414-9efa6c2cee37	2021-05-26 19:35:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:35:03.951+03	2021-05-26 19:35:03.976+03	
114b1b13-d0f3-8593-b1cb-76b4e45bae49	2021-05-26 19:35:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:35:23.951+03	2021-05-26 19:35:23.958+03	
5d69851f-695f-9f54-ef33-280a85d6552e	2021-05-26 19:35:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:35:43.951+03	2021-05-26 19:35:43.958+03	
631265b1-ec3e-e392-f754-d91971c32ae8	2021-05-26 19:36:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:36:03.951+03	2021-05-26 19:36:03.958+03	
809e4ffb-1edd-37da-1e70-6f99af587aec	2021-05-26 19:36:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:36:23.951+03	2021-05-26 19:36:23.959+03	
2fa961c7-9747-304d-f374-e3b2b32eec29	2021-05-26 19:36:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:36:44.951+03	2021-05-26 19:36:44.957+03	
36bf6c83-e1f3-1598-ba81-49387a8e0724	2021-05-26 19:37:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:37:04.951+03	2021-05-26 19:37:04.959+03	
efe9319c-af9e-a156-67c2-ca4512522f13	2021-05-26 19:37:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:37:24.951+03	2021-05-26 19:37:24.959+03	
4532d22d-606d-bc5b-d08f-52454ae00738	2021-05-26 19:37:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:37:44.951+03	2021-05-26 19:37:44.96+03	
b9550262-51bf-2d67-ad9b-f1b8321dd205	2021-05-26 19:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:38:04.951+03	2021-05-26 19:38:04.959+03	
d9ab3763-391a-11cd-7230-4abd63915324	2021-05-26 19:38:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:38:24.951+03	2021-05-26 19:38:24.959+03	
152dcac5-a864-e624-d18b-de192b9066a4	2021-05-26 19:38:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:38:44.951+03	2021-05-26 19:38:44.959+03	
d5e5b9ac-eb13-82fa-4beb-070d6bf6f039	2021-05-26 19:39:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:39:04.951+03	2021-05-26 19:39:04.961+03	
e1b86915-64cb-f84c-78ad-cf79dbc61898	2021-05-26 19:39:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:39:24.951+03	2021-05-26 19:39:24.96+03	
e602f1f9-b2ac-1008-48d4-c3c35241a85a	2021-05-26 19:39:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:39:44.951+03	2021-05-26 19:39:44.959+03	
12cd2eb6-607a-792a-a1be-8865749c3112	2021-05-26 19:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 19:40:00.951+03	2021-05-26 19:40:00.956+03	ERROR
9183c698-512e-a436-2b94-33f5ceaef91d	2021-05-26 19:40:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:40:14.951+03	2021-05-26 19:40:14.959+03	
b002b818-2dc7-0c1d-2cb6-8d20d1961f14	2021-05-26 19:40:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:40:34.951+03	2021-05-26 19:40:34.962+03	
8531a66b-cf59-1ddb-00d9-777173847d57	2021-05-26 19:40:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:40:54.951+03	2021-05-26 19:40:54.96+03	
ccda9b2e-6ee4-7728-7302-b388ad72b294	2021-05-26 19:41:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:41:14.951+03	2021-05-26 19:41:14.957+03	
bbfa6fe0-362e-34bc-6c68-507db99c904c	2021-05-26 19:41:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:41:34.951+03	2021-05-26 19:41:34.96+03	
25d1b435-2cc0-db32-4d97-82e29058e54d	2021-05-26 19:41:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:41:54.951+03	2021-05-26 19:41:54.958+03	
54cd326d-8798-6c5b-d6e6-5a638830cdad	2021-05-26 19:42:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:42:14.951+03	2021-05-26 19:42:14.959+03	
a0ac07ef-63ee-9ed8-9956-d34664ab9d1d	2021-05-26 19:42:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:42:34.951+03	2021-05-26 19:42:34.958+03	
4dc57f2c-d975-a64e-aa9d-4ab0a71e32ee	2021-05-26 19:42:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:42:54.951+03	2021-05-26 19:42:54.959+03	
ef759882-d83c-7fdb-4f5c-191c121f012c	2021-05-26 19:43:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:43:14.951+03	2021-05-26 19:43:14.959+03	
f1bbeaa4-a8a1-8d9d-05e1-3854022174c4	2021-05-26 19:43:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:43:34.951+03	2021-05-26 19:43:34.96+03	
0e22fb94-3f3d-933d-f876-012c33c217e1	2021-05-26 19:43:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:43:54.951+03	2021-05-26 19:43:54.958+03	
61c90293-69b4-ab3b-f558-1a737108169e	2021-05-26 19:26:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:26:20.951+03	2021-05-26 19:26:20.958+03	
52d409e9-e732-4cb8-d9db-194ad5d1789c	2021-05-26 19:26:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:26:40.951+03	2021-05-26 19:26:40.958+03	
8a49a694-bdcc-10bc-3628-b8e7ff5d1743	2021-05-26 19:27:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:27:00.951+03	2021-05-26 19:27:00.958+03	
0e08bc76-91c7-040e-ffec-4a80fdf54407	2021-05-26 19:27:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:27:20.951+03	2021-05-26 19:27:20.96+03	
93d3efbc-0769-0edc-2b87-56fa1cb0c14a	2021-05-26 19:27:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:27:40.951+03	2021-05-26 19:27:40.959+03	
c42f4bcd-3b6b-fd78-e478-5587d1f811f7	2021-05-26 19:28:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:28:01.951+03	2021-05-26 19:28:01.959+03	
bbcc5c84-f604-965c-c72f-4b98df286da8	2021-05-26 19:28:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:28:21.951+03	2021-05-26 19:28:21.958+03	
8453f946-e30e-c797-67bd-0e204f45ef98	2021-05-26 19:28:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:28:41.951+03	2021-05-26 19:28:41.96+03	
edf26f1d-e8dd-52ee-ddf3-7f13b0cf2fac	2021-05-26 19:29:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:29:01.951+03	2021-05-26 19:29:01.958+03	
054ac641-a1ad-779f-0ede-e30501198057	2021-05-26 19:29:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:29:21.951+03	2021-05-26 19:29:21.959+03	
076cbb68-1e8f-dda3-d4a3-4833fe9d4600	2021-05-26 19:29:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:29:41.951+03	2021-05-26 19:29:41.96+03	
d6f96182-b7bd-5a8a-0fbf-e5e67f951fc9	2021-05-26 19:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 19:30:00.951+03	2021-05-26 19:30:00.956+03	ERROR
1a993d57-1144-6fb9-4e4b-175287a4860c	2021-05-26 19:30:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:30:11.951+03	2021-05-26 19:30:11.96+03	
32fe4b07-3c4d-a507-cd8c-59318f246b90	2021-05-26 19:30:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:30:32.951+03	2021-05-26 19:30:32.958+03	
49c8beb2-c4d3-e8d6-0f31-6e10c744f6b3	2021-05-26 19:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:30:53.951+03	2021-05-26 19:30:53.972+03	
d7b06178-fb10-7f0d-2934-dfdc522d8902	2021-05-26 19:31:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:31:13.951+03	2021-05-26 19:31:13.959+03	
51f59d91-890a-82ae-292f-8f10f3c12740	2021-05-26 19:31:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:31:33.951+03	2021-05-26 19:31:33.959+03	
dc38a908-c8f9-8be9-ab10-b8ffa574138c	2021-05-26 19:31:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:31:53.951+03	2021-05-26 19:31:53.961+03	
ef236155-a2b3-b7ac-5c51-0d4163dbcde1	2021-05-26 19:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:32:13.951+03	2021-05-26 19:32:13.958+03	
614edcd2-db8a-7b20-8da4-bbfd9756f8bb	2021-05-26 19:32:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:32:33.951+03	2021-05-26 19:32:34.195+03	
de2ac93b-1e38-9d1c-944e-4703dd9e64f2	2021-05-26 19:32:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:32:53.951+03	2021-05-26 19:32:53.963+03	
302a0c31-1f16-04a6-f204-2275a93867ec	2021-05-26 19:33:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:33:13.951+03	2021-05-26 19:33:13.958+03	
687a8cc2-9e2c-44cc-240c-7a21845996f0	2021-05-26 19:33:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:33:33.951+03	2021-05-26 19:33:33.959+03	
08f6122b-285d-2524-7e1b-54d70aaa91e0	2021-05-26 19:33:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:33:53.951+03	2021-05-26 19:33:53.959+03	
b0c2118d-9633-d4f7-ab44-a7e782b5f0b1	2021-05-26 19:34:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:34:13.951+03	2021-05-26 19:34:13.958+03	
2e0e71e2-5011-3149-45b8-db8a6353e804	2021-05-26 19:34:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:34:33.951+03	2021-05-26 19:34:33.96+03	
2968215e-a796-36c2-eec0-77303b5ac61a	2021-05-26 19:34:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:34:53.951+03	2021-05-26 19:34:53.958+03	
39fafcca-4f6b-2729-24f9-4a8b37e6b677	2021-05-26 19:35:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:35:13.951+03	2021-05-26 19:35:13.966+03	
8735b512-d3b3-71cd-241e-27004317d898	2021-05-26 19:35:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:35:33.951+03	2021-05-26 19:35:33.959+03	
8f963830-ca6d-98b3-1fc3-acd9a6728bf0	2021-05-26 19:35:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:35:53.951+03	2021-05-26 19:35:53.962+03	
6ca1255c-bcd2-f3b7-43ce-eb8a8f912e4b	2021-05-26 19:36:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:36:13.951+03	2021-05-26 19:36:13.962+03	
095d2594-b7df-f4ed-42c4-30b27bcfaba9	2021-05-26 19:36:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:36:33.952+03	2021-05-26 19:36:33.959+03	
64c592e8-e28f-3874-5698-bb55b03c209f	2021-05-26 19:36:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:36:54.951+03	2021-05-26 19:36:54.959+03	
e47898f0-df8c-bcfe-e26f-dfbdd22c4dfb	2021-05-26 19:37:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:37:14.951+03	2021-05-26 19:37:14.959+03	
94db0b47-5926-fa4d-cc53-2ebc231229aa	2021-05-26 19:37:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:37:34.951+03	2021-05-26 19:37:34.958+03	
5f3ff7b2-3fa1-d23d-f9d2-709bae633f76	2021-05-26 19:37:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:37:54.951+03	2021-05-26 19:37:54.96+03	
a9c70ac2-a222-dd40-ecba-599d4df784a0	2021-05-26 19:38:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:38:14.951+03	2021-05-26 19:38:14.96+03	
73324580-ce22-3f97-7012-b30a4826e81b	2021-05-26 19:38:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:38:34.951+03	2021-05-26 19:38:34.961+03	
16ae1b79-5e86-2405-dce4-f9912313436d	2021-05-26 19:38:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:38:54.951+03	2021-05-26 19:38:54.957+03	
905f351d-e77e-f8e0-4412-44ff16fbdef2	2021-05-26 19:39:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:39:14.951+03	2021-05-26 19:39:14.959+03	
c769483c-f421-0ab0-0560-4d778938db53	2021-05-26 19:39:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:39:34.951+03	2021-05-26 19:39:34.958+03	
e4f5763a-301a-8bc6-8ce0-fdac467b167c	2021-05-26 19:39:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:39:54.951+03	2021-05-26 19:39:54.958+03	
9f4d14e8-8a81-938a-3d89-2f380427de32	2021-05-26 19:40:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:40:04.951+03	2021-05-26 19:40:04.957+03	
03bd083a-f818-9aeb-ad2a-c3df90228da1	2021-05-26 19:40:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:40:24.951+03	2021-05-26 19:40:24.959+03	
ae8d4322-3205-45fd-2e2d-3ce737979706	2021-05-26 19:40:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:40:44.951+03	2021-05-26 19:40:44.959+03	
39cdb535-8164-f155-b466-0fc01ddec575	2021-05-26 19:41:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:41:04.951+03	2021-05-26 19:41:04.959+03	
6fb3de91-54af-9de5-b0d9-093f3a82651d	2021-05-26 19:41:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:41:24.951+03	2021-05-26 19:41:24.958+03	
0e92fa43-2341-6216-8e38-abe852f91b10	2021-05-26 19:41:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:41:44.951+03	2021-05-26 19:41:44.963+03	
54ed0b80-7991-212e-6d4f-ffe437f740b8	2021-05-26 19:42:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:42:04.951+03	2021-05-26 19:42:04.958+03	
3bbb74c3-742d-03ca-6979-5cfd07852f40	2021-05-26 19:42:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:42:24.951+03	2021-05-26 19:42:24.958+03	
c6513714-ed65-f8e5-7821-df569e714176	2021-05-26 19:42:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:42:44.951+03	2021-05-26 19:42:44.958+03	
30e78736-3670-b853-6706-bb022c97c5c4	2021-05-26 19:43:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:43:04.951+03	2021-05-26 19:43:04.958+03	
9fcf2627-bc7d-30a6-9c38-e11d52d62d91	2021-05-26 19:43:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:43:24.951+03	2021-05-26 19:43:24.958+03	
f8614466-be26-7642-2e9c-6a0c702c10fe	2021-05-26 19:43:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:43:44.951+03	2021-05-26 19:43:45.323+03	
ed05a6c3-1522-943d-6a87-d727f68d5099	2021-05-26 19:44:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:44:04.951+03	2021-05-26 19:44:04.959+03	
8e081fd3-b2da-69b7-3422-63eb6ef271d9	2021-05-26 19:44:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:44:24.951+03	2021-05-26 19:44:24.96+03	
29cdaaa5-f9d0-d0df-1c4f-e56ade90be77	2021-05-26 19:44:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:44:44.951+03	2021-05-26 19:44:44.959+03	
f4a6f8e3-7bb8-542e-d578-256767657817	2021-05-26 19:45:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:45:04.951+03	2021-05-26 19:45:04.958+03	
5f61ed53-72ec-2714-6b62-add5991701fe	2021-05-26 19:45:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:45:24.951+03	2021-05-26 19:45:24.959+03	
873c8d59-18db-be61-4811-2294aa32e094	2021-05-26 19:45:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:45:44.951+03	2021-05-26 19:45:44.958+03	
bd37f92f-98ea-9b57-888a-bb2c6194e8d2	2021-05-26 19:46:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:46:04.951+03	2021-05-26 19:46:04.959+03	
78cca697-d68c-a92d-e250-b5d67db4ba20	2021-05-26 19:46:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:46:24.951+03	2021-05-26 19:46:24.959+03	
b756db7d-0f8d-6912-2490-6f33c427cea2	2021-05-26 19:46:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:46:44.951+03	2021-05-26 19:46:44.957+03	
09fbe748-84eb-612a-c162-ce46ea459445	2021-05-26 19:44:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:44:14.951+03	2021-05-26 19:44:14.959+03	
b98cfc4e-8310-79f1-2562-0b7d5992bb1e	2021-05-26 19:44:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:44:34.951+03	2021-05-26 19:44:34.958+03	
16844491-106b-74a5-b91c-5c2529fca9a7	2021-05-26 19:44:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:44:54.951+03	2021-05-26 19:44:54.958+03	
ae329bdc-d8a5-dc90-9cdd-8298a7174430	2021-05-26 19:45:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:45:14.951+03	2021-05-26 19:45:14.959+03	
cbbd6a37-ea9d-d9ff-ef8d-17f26fcfa350	2021-05-26 19:45:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:45:34.951+03	2021-05-26 19:45:34.958+03	
403e08ab-83f1-3b09-6448-cf25a23bb7b6	2021-05-26 19:45:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:45:54.951+03	2021-05-26 19:45:54.959+03	
afbc8d81-6eb8-3d08-bb89-accddb38270a	2021-05-26 19:46:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:46:14.951+03	2021-05-26 19:46:14.958+03	
6ff1085a-91c5-eb5f-5d48-9b5a4a1736eb	2021-05-26 19:46:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:46:34.951+03	2021-05-26 19:46:34.958+03	
f3b7cf71-a9de-c3a5-cb97-74bc5e9f7047	2021-05-26 19:46:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:46:54.951+03	2021-05-26 19:46:54.96+03	
728951da-ed10-0835-1afc-8fbc9ca21cb8	2021-05-26 19:47:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:47:14.951+03	2021-05-26 19:47:14.958+03	
11653295-ccfe-420c-3497-f026c5c19caa	2021-05-26 19:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:47:34.951+03	2021-05-26 19:47:34.958+03	
648b80fb-10c4-638e-7e40-0b49dc5a1e55	2021-05-26 19:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:47:54.951+03	2021-05-26 19:47:54.959+03	
b5c552cb-b7a8-edd9-6522-1e27689a32d2	2021-05-26 19:48:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:48:14.951+03	2021-05-26 19:48:14.959+03	
ab3cbd6e-7d2e-031e-be47-a252f19c58eb	2021-05-26 19:48:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:48:34.952+03	2021-05-26 19:48:34.959+03	
91f6685a-da78-30e2-7901-785627db4e4a	2021-05-26 19:48:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:48:55.951+03	2021-05-26 19:48:55.958+03	
18510f58-e69f-aba5-ab55-8b50edd32782	2021-05-26 19:49:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:49:15.951+03	2021-05-26 19:49:15.959+03	
d8af284b-90f7-7a81-95bc-b666a86fd94c	2021-05-26 19:49:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:49:35.951+03	2021-05-26 19:49:35.957+03	
72703647-755d-7d95-1cb0-82c40965812e	2021-05-26 19:49:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:49:55.951+03	2021-05-26 19:49:55.958+03	
faab194c-427d-6edc-f5d5-877679e7a2be	2021-05-26 19:50:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:50:05.951+03	2021-05-26 19:50:05.96+03	
a1b2dbeb-4038-4900-4b11-2ab327c5a8e5	2021-05-26 19:50:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:50:25.951+03	2021-05-26 19:50:25.959+03	
ccaf0699-2fc7-90a5-b8be-f149bb09732e	2021-05-26 19:50:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:50:45.951+03	2021-05-26 19:50:45.959+03	
110be599-4c81-ff3a-bcb7-4a6fcdb88c3b	2021-05-26 19:51:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:51:05.951+03	2021-05-26 19:51:05.959+03	
014beecb-4338-6de3-952c-31f95703912c	2021-05-26 19:51:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:51:25.951+03	2021-05-26 19:51:25.958+03	
896119ed-de3e-6677-f202-5945e7c0c042	2021-05-26 19:51:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:51:45.951+03	2021-05-26 19:51:45.957+03	
9a39321f-7969-862c-57c1-d4aaa58af2d7	2021-05-26 19:52:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:52:05.951+03	2021-05-26 19:52:05.965+03	
fb6cc417-4f8b-afc9-0f3a-27a0a163de13	2021-05-26 19:52:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:52:25.951+03	2021-05-26 19:52:25.957+03	
0939aa38-573a-a73c-7fd5-101f704f2589	2021-05-26 19:52:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:52:45.951+03	2021-05-26 19:52:45.959+03	
11b01893-5fe7-e58b-a8b0-fe6976aa8a97	2021-05-26 19:53:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:53:05.951+03	2021-05-26 19:53:05.959+03	
3f53adbd-65db-6d7e-4ff5-4ae680267250	2021-05-26 19:53:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:53:25.951+03	2021-05-26 19:53:25.958+03	
acd6881c-2b13-7dfc-b90b-c495f7a66012	2021-05-26 19:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:53:45.951+03	2021-05-26 19:53:45.96+03	
05ff267d-15a7-2b1e-c0d7-fd6bbfaa7e02	2021-05-26 19:54:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:54:05.951+03	2021-05-26 19:54:05.96+03	
c8d98700-0ee7-9304-8647-aaa17b723bae	2021-05-26 19:54:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:54:25.951+03	2021-05-26 19:54:25.958+03	
c15c26fb-d98e-f84d-b48c-d8066fbc548d	2021-05-26 19:54:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:54:46.951+03	2021-05-26 19:54:46.96+03	
0020892b-d198-6453-eb0e-902a03b6630d	2021-05-26 19:55:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:55:06.951+03	2021-05-26 19:55:06.963+03	
9f5f5817-1ad7-a3a8-9fcb-dd77eb290ad4	2021-05-26 19:55:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:55:26.952+03	2021-05-26 19:55:26.963+03	
4e7b7ac9-4cf5-87c9-5815-8e2b0b2bc647	2021-05-26 19:55:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:55:47.951+03	2021-05-26 19:55:47.959+03	
aefd7e12-c4a1-2458-e7d2-20a431f72dab	2021-05-26 19:56:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:56:07.951+03	2021-05-26 19:56:07.965+03	
6af562bd-1fd8-639f-54fc-ad1cf95faaac	2021-05-26 19:56:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:56:27.951+03	2021-05-26 19:56:27.96+03	
d9912e50-852c-7707-7d66-e9fd06fd5bc6	2021-05-26 19:56:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:56:47.951+03	2021-05-26 19:56:47.959+03	
78036d98-34f8-1268-8024-913e57bf56d8	2021-05-26 19:57:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:57:07.951+03	2021-05-26 19:57:07.959+03	
d688da37-9ace-96d2-12dc-7cc65625137e	2021-05-26 19:57:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:57:27.951+03	2021-05-26 19:57:27.96+03	
d3278032-05fe-4f85-32f0-645cebe82442	2021-05-26 19:57:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:57:47.951+03	2021-05-26 19:57:47.963+03	
f42d8788-cac6-1fb2-eaa9-7550a18d644f	2021-05-26 19:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:58:08.951+03	2021-05-26 19:58:08.959+03	
9a55cde7-f2e3-d86d-7864-f4cacbeba993	2021-05-26 19:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:58:28.951+03	2021-05-26 19:58:28.957+03	
2db2e9b4-e322-2323-6882-3554466c9ce3	2021-05-26 19:58:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:58:48.951+03	2021-05-26 19:58:48.959+03	
a4272cd4-9bab-dfb5-fd7f-423db2495271	2021-05-26 19:59:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:59:08.951+03	2021-05-26 19:59:08.959+03	
9ec62856-7b97-6391-c6ca-eb98041f64d6	2021-05-26 19:59:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:59:28.951+03	2021-05-26 19:59:28.96+03	
e915fec3-bc7a-7374-4a38-51d42b1fc6ec	2021-05-26 19:59:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:59:48.951+03	2021-05-26 19:59:48.958+03	
53020310-a0d5-e0c9-b73e-b30b47b9d08f	2021-05-26 20:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 20:00:00.951+03	2021-05-26 20:00:00.956+03	ERROR
a997992f-e20e-c997-b739-3f91bcd44f9d	2021-05-26 20:00:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:00:18.951+03	2021-05-26 20:00:18.959+03	
2c9f7a06-4138-be5d-baca-017c8ed53840	2021-05-26 20:00:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:00:38.951+03	2021-05-26 20:00:38.958+03	
fbce52c5-a3c5-381d-d23b-3f28d0a3edbd	2021-05-26 20:00:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:00:58.951+03	2021-05-26 20:00:58.959+03	
cf81ce4f-b751-d9d0-84eb-7fc87a960f64	2021-05-26 20:01:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:01:18.951+03	2021-05-26 20:01:18.96+03	
a85a2047-5096-7c44-b692-825de7cfcead	2021-05-26 20:01:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:01:38.951+03	2021-05-26 20:01:38.959+03	
ef18cf84-9211-c7a8-bf81-871899882980	2021-05-26 20:01:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:01:58.951+03	2021-05-26 20:01:58.958+03	
f1ad81e8-04a5-8cc6-1da1-ce707bd37a6a	2021-05-26 20:02:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:02:18.951+03	2021-05-26 20:02:18.958+03	
9a0f48c7-307b-1134-b386-0153810d17d7	2021-05-26 20:02:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:02:38.951+03	2021-05-26 20:02:38.959+03	
ee1d0529-74da-4309-368f-fa0b24581bf0	2021-05-26 20:02:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:02:58.951+03	2021-05-26 20:02:58.958+03	
6c081a83-8f1b-d062-dc5a-e10476d62ce7	2021-05-26 20:03:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:03:18.951+03	2021-05-26 20:03:18.96+03	
c2ceced4-97e5-ff45-3f68-c7cb12d9ff6e	2021-05-26 20:03:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:03:38.951+03	2021-05-26 20:03:38.959+03	
78642b1e-555d-2459-e24f-49fff9d620de	2021-05-26 20:03:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:03:58.951+03	2021-05-26 20:03:58.961+03	
c5d0c4c6-42eb-9b08-3c74-3784d6741092	2021-05-26 20:04:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:04:18.951+03	2021-05-26 20:04:18.958+03	
2ce106ea-f20e-880a-07fa-520cd33d80ec	2021-05-26 20:04:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:04:38.951+03	2021-05-26 20:04:38.958+03	
c702f230-c310-5e61-c569-864ba0769420	2021-05-26 19:47:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:47:04.951+03	2021-05-26 19:47:04.959+03	
b71dc81d-2d04-32fb-cce7-48a3e40b5ad7	2021-05-26 19:47:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:47:24.951+03	2021-05-26 19:47:24.958+03	
61370eea-8976-3eab-326c-1e408eabbeb0	2021-05-26 19:47:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:47:44.951+03	2021-05-26 19:47:44.959+03	
bbb4a973-1cd0-2ac3-9e29-a5e33b64d503	2021-05-26 19:48:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:48:04.951+03	2021-05-26 19:48:04.958+03	
186e4c2d-1235-863b-329b-9929e920d6df	2021-05-26 19:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:48:24.951+03	2021-05-26 19:48:24.96+03	
572a5840-9e43-e72c-bb17-7d09777476da	2021-05-26 19:48:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:48:45.951+03	2021-05-26 19:48:45.958+03	
3943be8d-3f51-1ca0-2546-d683c7e1e18c	2021-05-26 19:49:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:49:05.951+03	2021-05-26 19:49:05.958+03	
1f18da04-b176-1db9-dad2-af5934ec8917	2021-05-26 19:49:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:49:25.951+03	2021-05-26 19:49:25.958+03	
6dfc2b0a-56eb-cce7-567e-e68836d6025b	2021-05-26 19:49:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:49:45.951+03	2021-05-26 19:49:45.957+03	
ffbe0a44-caa9-5865-afdf-11edc5be6699	2021-05-26 19:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 19:50:00.951+03	2021-05-26 19:50:00.957+03	ERROR
502d288d-68ec-3a94-5efb-0d8b1b34f6fb	2021-05-26 19:50:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:50:15.951+03	2021-05-26 19:50:15.959+03	
56bd7f1c-83ec-6c21-1b97-3916c8990b2a	2021-05-26 19:50:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:50:35.951+03	2021-05-26 19:50:35.958+03	
b72ba556-af2d-86c0-ba8d-0eb88fff839f	2021-05-26 19:50:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:50:55.951+03	2021-05-26 19:50:55.961+03	
b6b47e2a-5f07-df16-7aa4-5080dc0e3aa4	2021-05-26 19:51:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:51:15.951+03	2021-05-26 19:51:15.96+03	
c2b1cbbb-edf0-2d7b-ac4a-850e2b5a20b2	2021-05-26 19:51:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:51:35.951+03	2021-05-26 19:51:35.958+03	
e86fcd7d-5656-bce6-e7d9-2c2888ee842a	2021-05-26 19:51:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:51:55.951+03	2021-05-26 19:51:55.967+03	
735a112a-77cb-d74a-66fa-571dd3edaff7	2021-05-26 19:52:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:52:15.951+03	2021-05-26 19:52:15.96+03	
dc1459f9-a01d-b2c9-6d18-312473a3f195	2021-05-26 19:52:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:52:35.951+03	2021-05-26 19:52:35.958+03	
cb2dbb3a-e40f-50a9-b505-67000ef73853	2021-05-26 19:52:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:52:55.951+03	2021-05-26 19:52:55.961+03	
f8c840eb-bd12-a082-15d3-9d2d6a5238d1	2021-05-26 19:53:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:53:15.951+03	2021-05-26 19:53:15.958+03	
655a1f91-1511-9ab0-2a00-d6794f597193	2021-05-26 19:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:53:35.951+03	2021-05-26 19:53:35.958+03	
8aae4203-62e8-4c13-6f6b-4769904a22a6	2021-05-26 19:53:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:53:55.951+03	2021-05-26 19:53:55.96+03	
d53c3c25-4540-4a33-2f6e-37faf60dd613	2021-05-26 19:54:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:54:15.951+03	2021-05-26 19:54:15.959+03	
d3911352-a59a-042d-a542-1b6ae996ebf3	2021-05-26 19:54:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:54:35.952+03	2021-05-26 19:54:35.961+03	
9a2b7cde-ab39-b3da-2379-d155c2993048	2021-05-26 19:54:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:54:56.951+03	2021-05-26 19:54:56.96+03	
93da54d9-7f97-528d-fbd3-255b70b447a7	2021-05-26 19:55:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:55:16.951+03	2021-05-26 19:55:16.959+03	
254e95e7-ded8-26c9-047d-632f196eed80	2021-05-26 19:55:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:55:37.951+03	2021-05-26 19:55:37.958+03	
665cb6eb-a8ad-5e47-38cc-be849de916de	2021-05-26 19:55:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:55:57.951+03	2021-05-26 19:55:57.957+03	
77e24621-b078-a7c7-3f7c-40dfb941bfb0	2021-05-26 19:56:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:56:17.951+03	2021-05-26 19:56:17.96+03	
5daf2433-2651-26ac-f6f8-1d733ffc1606	2021-05-26 19:56:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:56:37.951+03	2021-05-26 19:56:37.958+03	
10ccb5b5-4e98-5e1f-4502-acf989458ec3	2021-05-26 19:56:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:56:57.951+03	2021-05-26 19:56:57.958+03	
1c19d40a-4c5f-4819-4081-b5a2c323a4d4	2021-05-26 19:57:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:57:17.951+03	2021-05-26 19:57:17.958+03	
c09f8014-269c-7db0-beef-d07a12854b4e	2021-05-26 19:57:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:57:37.951+03	2021-05-26 19:57:37.958+03	
69ba41eb-2c66-fb3c-d9c0-502b91a977ba	2021-05-26 19:57:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:57:57.953+03	2021-05-26 19:57:57.96+03	
cd407ceb-d065-9efc-085f-9f3e80ec7fde	2021-05-26 19:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:58:18.951+03	2021-05-26 19:58:18.96+03	
9912543b-8bbb-93e0-8733-17e4e5c01ce0	2021-05-26 19:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:58:38.951+03	2021-05-26 19:58:38.959+03	
46bb6ce0-f9bd-c7d4-f2a6-b0a29331dae6	2021-05-26 19:58:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:58:58.951+03	2021-05-26 19:58:58.96+03	
eb077fd8-80a3-1b71-0b33-d883dcc97733	2021-05-26 19:59:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:59:18.951+03	2021-05-26 19:59:18.958+03	
f429e637-9ada-6403-042a-1ef65482b77c	2021-05-26 19:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:59:38.951+03	2021-05-26 19:59:38.96+03	
addb7830-147c-2112-65e7-3b1e7d457cb2	2021-05-26 19:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 19:59:58.951+03	2021-05-26 19:59:58.958+03	
17a52146-6d1b-6132-0681-025b86cc2f10	2021-05-26 20:00:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:00:08.951+03	2021-05-26 20:00:08.959+03	
8d2a5976-7129-af74-d118-9f88b8f6e129	2021-05-26 20:00:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:00:28.951+03	2021-05-26 20:00:28.958+03	
e1d4458d-76e5-b2f5-bae0-553d3bf34788	2021-05-26 20:00:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:00:48.951+03	2021-05-26 20:00:48.958+03	
b373b50e-fca9-21e0-7731-f14224634499	2021-05-26 20:01:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:01:08.951+03	2021-05-26 20:01:08.961+03	
1ba4a93b-f9eb-1d21-0520-c3db4af8cebd	2021-05-26 20:01:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:01:28.951+03	2021-05-26 20:01:28.96+03	
8b3c5d26-47f8-07e6-1c2b-f17cd3054739	2021-05-26 20:01:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:01:48.951+03	2021-05-26 20:01:48.96+03	
288b9979-1d61-0808-a7a7-09be4af7db75	2021-05-26 20:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:02:08.951+03	2021-05-26 20:02:08.958+03	
c733419a-8906-4c9d-f07a-8b6e2420c33d	2021-05-26 20:02:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:02:28.951+03	2021-05-26 20:02:28.958+03	
ce609ec2-6979-e351-c96f-45feb41e9302	2021-05-26 20:02:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:02:48.951+03	2021-05-26 20:02:48.959+03	
79537ea6-4ffc-6fc9-a1bb-afef9c321623	2021-05-26 20:03:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:03:08.951+03	2021-05-26 20:03:08.958+03	
c8c1bd72-bb67-3b0e-e83e-bba62dff0bf4	2021-05-26 20:03:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:03:28.951+03	2021-05-26 20:03:28.959+03	
96495e46-d29e-1f23-3aef-f30bab9e1022	2021-05-26 20:03:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:03:48.951+03	2021-05-26 20:03:48.957+03	
449a128c-5d53-4ecb-76bd-5628d3b318a6	2021-05-26 20:04:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:04:08.951+03	2021-05-26 20:04:08.958+03	
4f0e3f79-3204-f425-a900-f82ec05d5a07	2021-05-26 20:04:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:04:28.951+03	2021-05-26 20:04:28.958+03	
2b01372f-688f-b648-92e9-522da7806441	2021-05-26 20:04:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:04:48.951+03	2021-05-26 20:04:48.959+03	
fab049cc-6f90-692e-b3b7-170d0d0f2491	2021-05-26 20:05:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:05:08.951+03	2021-05-26 20:05:08.959+03	
29877237-4bec-1155-0c58-a27d96ef7736	2021-05-26 20:05:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:05:18.951+03	2021-05-26 20:05:18.96+03	
6172cd2c-fa8d-db0c-2490-ab966e3273a6	2021-05-26 20:05:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:05:38.951+03	2021-05-26 20:05:38.961+03	
54473d8f-b3b5-d239-26f2-b0e020290c4c	2021-05-26 20:05:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:05:58.951+03	2021-05-26 20:05:58.958+03	
661bf9ba-3869-f5a4-9ce0-b445694c8017	2021-05-26 20:06:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:06:18.951+03	2021-05-26 20:06:18.959+03	
9bab0f41-cdee-9f4e-6801-9f29afb5aa7c	2021-05-26 20:06:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:06:38.951+03	2021-05-26 20:06:38.959+03	
794a05a7-8090-3cab-5f93-56e2e2a70aa7	2021-05-26 20:06:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:06:58.951+03	2021-05-26 20:06:58.959+03	
b6c438e0-0b66-9179-deaa-94f800395ee2	2021-05-26 20:07:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:07:18.951+03	2021-05-26 20:07:18.959+03	
50cae415-370e-7e27-a028-15380d812ecc	2021-05-26 20:04:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:04:58.951+03	2021-05-26 20:04:58.959+03	
c927d73b-ed61-a94b-d65c-e4b07bcacb93	2021-05-26 20:05:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:05:28.951+03	2021-05-26 20:05:28.958+03	
4b90a6bf-4e91-8842-1a2c-738049390079	2021-05-26 20:05:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:05:48.951+03	2021-05-26 20:05:49.003+03	
937bcc3d-46b7-e25d-cc6b-1cf3904b484b	2021-05-26 20:06:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:06:08.951+03	2021-05-26 20:06:08.959+03	
2ca96aea-bf00-5279-c809-29fe919c6af9	2021-05-26 20:06:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:06:28.951+03	2021-05-26 20:06:28.958+03	
4544fdc8-1f4b-3b6f-283e-2407240b164f	2021-05-26 20:06:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:06:48.951+03	2021-05-26 20:06:48.96+03	
20cea7c7-325f-eb43-a72f-b54fd867d1cf	2021-05-26 20:07:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:07:08.951+03	2021-05-26 20:07:08.958+03	
ceca31e5-9dff-7c0f-c42a-7d1c0221d347	2021-05-26 20:07:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:07:28.951+03	2021-05-26 20:07:28.96+03	
b13fbc4e-f0fa-782a-ed6c-7305bed3062a	2021-05-26 20:07:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:07:49.951+03	2021-05-26 20:07:49.957+03	
7ba08065-89cf-eb83-0ab2-17351669b1d1	2021-05-26 20:08:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:08:09.951+03	2021-05-26 20:08:09.958+03	
e9a76b1d-3d5f-1f8d-cd91-294e8e234c5e	2021-05-26 20:08:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:08:29.951+03	2021-05-26 20:08:29.959+03	
4c03f930-97a1-e28d-0f3d-eff71068d9db	2021-05-26 20:08:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:08:49.951+03	2021-05-26 20:08:49.958+03	
99cda409-1d8c-69cc-b730-4a0ed62d695c	2021-05-26 20:09:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:09:09.951+03	2021-05-26 20:09:09.958+03	
9b368320-b79c-4553-de67-57afe601d793	2021-05-26 20:09:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:09:29.951+03	2021-05-26 20:09:29.959+03	
6d5170f7-16a6-5be1-926f-b220fda7552d	2021-05-26 20:09:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:09:49.951+03	2021-05-26 20:09:49.958+03	
bc9656cb-cc37-5ecb-ff56-db544ef38c33	2021-05-26 20:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 20:10:00.951+03	2021-05-26 20:10:00.968+03	ERROR
3c539ddd-81e7-9490-6f05-2af005d0726b	2021-05-26 20:10:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:10:19.951+03	2021-05-26 20:10:19.96+03	
3bc3394f-9f1b-ae91-33d9-b07b08b6b1d7	2021-05-26 20:10:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:10:39.951+03	2021-05-26 20:10:39.963+03	
c21eb555-2e8d-a646-d480-a8f9a5ccfc93	2021-05-26 20:10:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:10:59.951+03	2021-05-26 20:10:59.958+03	
b0d15d2a-32d5-9aca-7fd5-87a82e2ba0c8	2021-05-26 20:11:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:11:20.951+03	2021-05-26 20:11:20.958+03	
1fe5bddd-291e-69e8-85a7-128b4611f768	2021-05-26 20:11:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:11:40.951+03	2021-05-26 20:11:40.958+03	
b3ac5b49-673d-7dca-6288-05f541c6dc80	2021-05-26 20:12:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:12:00.951+03	2021-05-26 20:12:00.958+03	
26b92ae6-0653-4030-056b-9ea22c93fffc	2021-05-26 20:12:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:12:20.951+03	2021-05-26 20:12:20.962+03	
ec7e22af-8ef5-1727-46d6-baf48f933d5b	2021-05-26 20:12:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:12:40.951+03	2021-05-26 20:12:40.959+03	
799f14b6-02a9-51f0-a6a9-66266dbe38c7	2021-05-26 20:13:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:13:00.951+03	2021-05-26 20:13:00.96+03	
1852cd9a-5ba7-eddc-2619-c186d2dbfb02	2021-05-26 20:13:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:13:20.951+03	2021-05-26 20:13:20.958+03	
6dd59fe3-f6be-ce31-6ab2-08fd07560811	2021-05-26 20:13:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:13:40.951+03	2021-05-26 20:13:40.961+03	
77790a15-3044-907f-90d9-af7824f5c3ce	2021-05-26 20:14:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:14:00.951+03	2021-05-26 20:14:00.959+03	
ed73118d-8d12-0e06-0f1f-dab490e14d34	2021-05-26 20:14:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:14:20.951+03	2021-05-26 20:14:20.958+03	
ad2e3e90-1045-89e6-466c-52bbacf91304	2021-05-26 20:14:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:14:40.951+03	2021-05-26 20:14:40.958+03	
deb2bff3-dfff-c734-7bc2-3b6c46434c30	2021-05-26 20:15:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:15:00.951+03	2021-05-26 20:15:00.958+03	
14fc9124-2b67-a955-0009-4ccbc038d359	2021-05-26 20:15:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:15:21.951+03	2021-05-26 20:15:21.96+03	
0c50dfb0-d045-f97d-9283-8087678aef39	2021-05-26 20:15:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:15:41.951+03	2021-05-26 20:15:41.959+03	
dbb5749d-a7ab-da51-0770-1e80acf99a5f	2021-05-26 20:16:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:16:01.951+03	2021-05-26 20:16:01.958+03	
ca0a3b36-694d-fd10-da62-ed4b9bbf1394	2021-05-26 20:16:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:16:21.951+03	2021-05-26 20:16:21.958+03	
9475486b-755a-3a67-0f0e-283b48e45dd6	2021-05-26 20:16:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:16:41.951+03	2021-05-26 20:16:41.959+03	
06884432-da0c-b76d-92c6-ac65290b9e17	2021-05-26 20:17:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:17:01.951+03	2021-05-26 20:17:01.96+03	
09c46712-c274-ccf8-1645-15fec9549d3d	2021-05-26 20:17:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:17:21.951+03	2021-05-26 20:17:21.959+03	
2063eb92-252f-430a-3b88-4720fefbbc29	2021-05-26 20:17:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:17:41.951+03	2021-05-26 20:17:41.961+03	
1962dbee-57eb-7491-1f70-db9280dac1a5	2021-05-26 20:18:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:18:01.951+03	2021-05-26 20:18:01.959+03	
a397bff2-d74d-8d59-f6cd-baa776be1e88	2021-05-26 20:18:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:18:21.951+03	2021-05-26 20:18:21.958+03	
3ccbe38c-e3dd-220a-ddfb-a8d04c71d062	2021-05-26 20:18:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:18:41.951+03	2021-05-26 20:18:41.959+03	
320116df-babf-6f1f-df12-d3dcc435a994	2021-05-26 20:19:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:19:01.951+03	2021-05-26 20:19:01.958+03	
03aa90f4-33d6-d278-19e9-01d5218393a8	2021-05-26 20:19:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:19:21.951+03	2021-05-26 20:19:21.959+03	
95af4e9d-b5b2-49f3-4f12-693aaea795b7	2021-05-26 20:19:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:19:41.951+03	2021-05-26 20:19:41.959+03	
fa75ee24-d318-7db0-7049-9803f2db21c0	2021-05-26 20:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 20:20:00.951+03	2021-05-26 20:20:00.956+03	ERROR
c3fd67b3-cfc1-ae9a-6412-bd8e18cbed8e	2021-05-26 20:20:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:20:11.951+03	2021-05-26 20:20:11.959+03	
372501eb-b141-782f-bebe-a1562dd214b3	2021-05-26 20:20:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:20:31.951+03	2021-05-26 20:20:31.959+03	
2351c83b-6299-7bce-e601-8f5eb27c0788	2021-05-26 20:20:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:20:51.951+03	2021-05-26 20:20:51.96+03	
5a9076ab-fdb6-dd27-10e6-e1de254c22f8	2021-05-26 20:21:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:21:11.951+03	2021-05-26 20:21:11.958+03	
fc263bd6-e7b9-07a7-77a1-882e5f35889a	2021-05-26 20:21:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:21:31.951+03	2021-05-26 20:21:31.958+03	
3cecd952-c6d7-0415-cf46-160fdf192432	2021-05-26 20:21:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:21:51.951+03	2021-05-26 20:21:51.959+03	
808d8881-458c-ffcf-3d9b-ea072e2daebc	2021-05-26 20:22:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:22:11.951+03	2021-05-26 20:22:11.958+03	
2b3d690d-60cb-6117-7ea8-23f427154419	2021-05-26 20:22:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:22:31.951+03	2021-05-26 20:22:31.958+03	
42c65d38-52cd-e98e-1d3f-3dc4040e7e18	2021-05-26 20:22:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:22:51.951+03	2021-05-26 20:22:51.959+03	
ccf4c136-8e6f-a35f-73df-fc5a6d8c2b85	2021-05-26 20:23:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:23:11.951+03	2021-05-26 20:23:12.258+03	
4f506f1e-b46d-43f7-2e73-5424cb4474f7	2021-05-26 20:23:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:23:31.951+03	2021-05-26 20:23:31.959+03	
d964bc48-1a5d-7985-0c93-7fff19e176ac	2021-05-26 20:23:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:23:51.951+03	2021-05-26 20:23:51.957+03	
a83e35c8-a53f-ec52-ee2d-1c1672d56121	2021-05-26 20:24:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:24:11.951+03	2021-05-26 20:24:11.958+03	
87db34cc-f612-3da8-74c9-a815c1b8c9e2	2021-05-26 20:24:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:24:31.951+03	2021-05-26 20:24:31.958+03	
ac2c773d-7ddd-5234-df6e-e5849a2115a9	2021-05-26 20:24:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:24:51.951+03	2021-05-26 20:24:51.958+03	
75778f10-b104-33b3-e5f5-aa62c6595428	2021-05-26 20:25:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:25:11.951+03	2021-05-26 20:25:11.959+03	
3e2de930-f89d-f6e0-5d4e-90f8e584102b	2021-05-26 20:25:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:25:31.951+03	2021-05-26 20:25:31.959+03	
9e87cc3e-b55d-aab7-cff0-76b697a0e6a6	2021-05-26 20:07:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:07:38.952+03	2021-05-26 20:07:38.961+03	
079a44df-0f1a-f729-0649-e95a30be13db	2021-05-26 20:07:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:07:59.951+03	2021-05-26 20:07:59.959+03	
6408428b-c6ad-df24-72af-484354b4a03e	2021-05-26 20:08:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:08:19.951+03	2021-05-26 20:08:19.96+03	
3d3bb030-a1ad-7769-a9bc-08e5238f91bd	2021-05-26 20:08:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:08:39.951+03	2021-05-26 20:08:39.957+03	
fc0eebfa-6700-96a9-34b0-23d5ff8e18ba	2021-05-26 20:08:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:08:59.951+03	2021-05-26 20:08:59.958+03	
dd1c9f80-f77e-2a2d-d684-215e75869c2c	2021-05-26 20:09:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:09:19.951+03	2021-05-26 20:09:19.959+03	
7cec5a24-4b08-968b-ba38-8684cfae07c1	2021-05-26 20:09:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:09:39.951+03	2021-05-26 20:09:39.96+03	
7208debd-0688-c871-f5d7-f2dfa90bc2c9	2021-05-26 20:09:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:09:59.951+03	2021-05-26 20:09:59.959+03	
cc8212ae-08b8-9b27-5b41-aee770510bac	2021-05-26 20:10:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:10:09.951+03	2021-05-26 20:10:09.961+03	
e3bae835-9005-49b1-1742-911b0927e116	2021-05-26 20:10:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:10:29.951+03	2021-05-26 20:10:29.959+03	
29b7a680-80f9-140a-bd77-f61e31554325	2021-05-26 20:10:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:10:49.951+03	2021-05-26 20:10:49.957+03	
6291d0e4-5e1e-e5ca-8bb3-89ee797de45d	2021-05-26 20:11:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:11:09.952+03	2021-05-26 20:11:09.959+03	
20a2cc48-c175-035a-2b26-0853f009eabc	2021-05-26 20:11:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:11:30.951+03	2021-05-26 20:11:30.958+03	
2accf2b8-f6ce-26e4-d713-ba9a2509c4d0	2021-05-26 20:11:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:11:50.951+03	2021-05-26 20:11:50.963+03	
9aa8db98-1d91-b407-f3e3-2e7b4f8f1394	2021-05-26 20:12:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:12:10.951+03	2021-05-26 20:12:10.958+03	
2185a294-bc4a-33b3-bcf1-499e3d85ce65	2021-05-26 20:12:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:12:30.951+03	2021-05-26 20:12:30.958+03	
8a5c349c-7132-d31f-dd49-f7851115442f	2021-05-26 20:12:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:12:50.951+03	2021-05-26 20:12:50.958+03	
fbe779ab-1ff7-8fbc-f5a5-2d33a2988f47	2021-05-26 20:13:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:13:10.951+03	2021-05-26 20:13:10.959+03	
839cc94b-cb5b-bdd2-feec-355d8e635e91	2021-05-26 20:13:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:13:30.951+03	2021-05-26 20:13:30.959+03	
5a9cd48f-ae0b-4fa7-0d5b-57da95954238	2021-05-26 20:13:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:13:50.951+03	2021-05-26 20:13:50.958+03	
fb62d073-e76b-1767-7b38-5e0847305f57	2021-05-26 20:14:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:14:10.951+03	2021-05-26 20:14:10.964+03	
1d322f28-4c66-75a3-c1e4-79f23d08297a	2021-05-26 20:14:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:14:30.951+03	2021-05-26 20:14:30.959+03	
f1c88133-cf02-65f1-637e-973a4b081410	2021-05-26 20:14:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:14:50.951+03	2021-05-26 20:14:50.96+03	
e91d5084-8011-7379-43d1-f36a5cf25265	2021-05-26 20:15:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:15:10.952+03	2021-05-26 20:15:10.96+03	
f018b652-71c8-c59b-a4fb-3bb28a3fe410	2021-05-26 20:15:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:15:31.951+03	2021-05-26 20:15:31.958+03	
78b826bb-e779-c355-b039-011eb5b99cd7	2021-05-26 20:15:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:15:51.951+03	2021-05-26 20:15:51.958+03	
b5c7c0b7-18cc-8d2d-e582-0056cc9b75dd	2021-05-26 20:16:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:16:11.951+03	2021-05-26 20:16:11.958+03	
b5d23131-caf5-b8ca-2333-216723d9c96c	2021-05-26 20:16:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:16:31.951+03	2021-05-26 20:16:31.959+03	
a06582c3-8a56-39b8-2491-d22c1aca191d	2021-05-26 20:16:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:16:51.951+03	2021-05-26 20:16:51.96+03	
c62dc96a-690e-bcf1-8fca-28f1d58175cd	2021-05-26 20:17:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:17:11.951+03	2021-05-26 20:17:11.958+03	
a67cb760-e2c3-1b77-cb2e-ddecaa3343c3	2021-05-26 20:17:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:17:31.951+03	2021-05-26 20:17:31.959+03	
3e8ababe-cc6a-44bb-9a26-2a735be5dd66	2021-05-26 20:17:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:17:51.951+03	2021-05-26 20:17:51.958+03	
63b5fa7f-40cf-3dc9-b842-568a27e64a11	2021-05-26 20:18:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:18:11.951+03	2021-05-26 20:18:11.958+03	
69ac8876-d594-1585-8b53-c042512f8727	2021-05-26 20:18:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:18:31.951+03	2021-05-26 20:18:31.959+03	
384bb692-084d-7f53-ea82-00bb28b9b39d	2021-05-26 20:18:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:18:51.951+03	2021-05-26 20:18:51.959+03	
a558e204-d526-d5cd-6cde-46553043709e	2021-05-26 20:19:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:19:11.951+03	2021-05-26 20:19:11.96+03	
e5f187b0-d264-0ab2-3d34-0b6ec37717f6	2021-05-26 20:19:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:19:31.951+03	2021-05-26 20:19:31.958+03	
a5c63555-ae73-ddf2-c6b9-789356d515e9	2021-05-26 20:19:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:19:51.951+03	2021-05-26 20:19:51.962+03	
603ee7d7-2f58-5f00-eebf-90150c7b06ee	2021-05-26 20:20:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:20:01.951+03	2021-05-26 20:20:01.958+03	
b7c66509-1d5c-4570-4afe-dfed05378f43	2021-05-26 20:20:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:20:21.951+03	2021-05-26 20:20:21.958+03	
a6889b82-677b-e31c-f186-fd6253803d24	2021-05-26 20:20:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:20:41.951+03	2021-05-26 20:20:41.96+03	
2b6a7f36-61f3-550c-c466-8ef4739ce889	2021-05-26 20:21:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:21:01.951+03	2021-05-26 20:21:01.961+03	
9150d09c-14dd-6f40-b246-8319176bb76b	2021-05-26 20:21:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:21:21.951+03	2021-05-26 20:21:21.958+03	
88fae417-1cda-db36-c19f-7f340a05cfec	2021-05-26 20:21:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:21:41.951+03	2021-05-26 20:21:41.958+03	
5f7558ba-9d2e-9113-e6a2-2cab50853e4f	2021-05-26 20:22:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:22:01.951+03	2021-05-26 20:22:01.958+03	
fff27dab-e9ca-b37e-e8e5-cf5c43b4a73c	2021-05-26 20:22:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:22:21.951+03	2021-05-26 20:22:21.958+03	
24a31025-e26f-ead4-bbeb-6f8784460444	2021-05-26 20:22:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:22:41.951+03	2021-05-26 20:22:41.958+03	
8b3cee60-3ded-9083-5f72-3703eb1b54c9	2021-05-26 20:23:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:23:01.951+03	2021-05-26 20:23:01.958+03	
3c64bc19-b7f5-71e5-699a-1cdf684f6c47	2021-05-26 20:23:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:23:21.951+03	2021-05-26 20:23:21.959+03	
b0ae8aee-4d32-3caa-5f7c-932a7741c244	2021-05-26 20:23:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:23:41.951+03	2021-05-26 20:23:41.958+03	
dc1ecc03-7244-504c-7e99-aef077f76eff	2021-05-26 20:24:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:24:01.951+03	2021-05-26 20:24:01.958+03	
cdcd367a-c89b-4978-d729-6471486d8d89	2021-05-26 20:24:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:24:21.951+03	2021-05-26 20:24:21.959+03	
8ac2ebb2-dc09-1fee-0cb3-68b2866b47a1	2021-05-26 20:24:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:24:41.951+03	2021-05-26 20:24:41.959+03	
1a73fc39-1b6c-cb0d-d47c-8cb358d7bbbc	2021-05-26 20:25:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:25:01.951+03	2021-05-26 20:25:01.959+03	
0ee12717-f10f-f261-1284-802f2befd408	2021-05-26 20:25:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:25:21.951+03	2021-05-26 20:25:21.959+03	
4267aeac-76df-fd71-e9b4-1d14e4b70517	2021-05-26 20:25:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:25:41.951+03	2021-05-26 20:25:41.958+03	
8d733c63-eb74-bb3c-a69b-f2249d6b469d	2021-05-26 20:26:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:26:01.951+03	2021-05-26 20:26:01.958+03	
38b3f4d8-1a58-83e0-fde7-3bff7bfd6d60	2021-05-26 20:26:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:26:21.951+03	2021-05-26 20:26:21.958+03	
6856c685-d661-75bb-3cec-f2369f4e2ddf	2021-05-26 20:26:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:26:41.951+03	2021-05-26 20:26:41.958+03	
cfbcb035-7a73-fed3-52fc-c956f294b313	2021-05-26 20:27:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:27:02.951+03	2021-05-26 20:27:02.958+03	
cad3df05-e01f-f121-1383-5b5d4adc2ecb	2021-05-26 20:27:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:27:22.951+03	2021-05-26 20:27:22.958+03	
85d6c114-9dfe-5fc7-ce06-1e762b6bfd61	2021-05-26 20:27:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:27:42.951+03	2021-05-26 20:27:42.959+03	
6dc01228-9a99-f351-5ed6-160eaf84f51e	2021-05-26 20:28:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:28:02.951+03	2021-05-26 20:28:02.959+03	
3b28dcd1-fa39-487b-4821-9b0026b4c140	2021-05-26 20:25:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:25:51.951+03	2021-05-26 20:25:51.961+03	
ca95f5b5-21bb-7746-0134-c2f815bd8229	2021-05-26 20:26:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:26:11.951+03	2021-05-26 20:26:11.96+03	
17b36dc8-95e7-03a4-cb5d-cb5fd26a1462	2021-05-26 20:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:26:31.951+03	2021-05-26 20:26:31.958+03	
c58ec0fb-5fec-3733-2683-5901afecb538	2021-05-26 20:26:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:26:51.952+03	2021-05-26 20:26:51.96+03	
cb2a268b-cfca-af9d-4db2-ad4d8827b3f7	2021-05-26 20:27:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:27:12.951+03	2021-05-26 20:27:12.959+03	
a5fea8f8-6c62-0c07-11c6-f596af873274	2021-05-26 20:27:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:27:32.951+03	2021-05-26 20:27:32.957+03	
e000f594-6956-2438-1aa0-5f51c6d9a30d	2021-05-26 20:27:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:27:52.951+03	2021-05-26 20:27:52.959+03	
6ba8fb69-9529-4b1f-c006-e0ab459582f1	2021-05-26 20:28:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:28:12.951+03	2021-05-26 20:28:12.96+03	
0a8eeed8-64e5-3c5f-360b-ae82a1da73b8	2021-05-26 20:28:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:28:32.952+03	2021-05-26 20:28:32.959+03	
5179b327-04c8-a019-23ec-4333398fb09c	2021-05-26 20:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:28:53.951+03	2021-05-26 20:28:53.958+03	
43a3b53e-6ad4-64ab-66a5-3200d3b8cc64	2021-05-26 20:29:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:29:13.951+03	2021-05-26 20:29:13.958+03	
594b9bd9-cdcc-b0e5-6f02-38de84d3b2be	2021-05-26 20:29:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:29:33.951+03	2021-05-26 20:29:33.958+03	
47313097-dd29-9766-b737-16ad0da48b49	2021-05-26 20:29:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:29:53.951+03	2021-05-26 20:29:53.96+03	
c906945f-bb03-f100-597a-26164530eaad	2021-05-26 20:30:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:30:03.951+03	2021-05-26 20:30:03.958+03	
70f30b0d-8ce6-82ad-002b-3dbe54a84176	2021-05-26 20:30:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:30:23.951+03	2021-05-26 20:30:23.958+03	
d90d7318-4167-1f53-d21b-0869c62e2dc0	2021-05-26 20:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:30:43.951+03	2021-05-26 20:30:43.958+03	
49dd4711-4497-e07f-a510-ebb0fcabd8e9	2021-05-26 20:31:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:31:03.951+03	2021-05-26 20:31:03.958+03	
69f8cf71-4370-1661-26d0-8501152123b0	2021-05-26 20:31:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:31:23.951+03	2021-05-26 20:31:23.958+03	
7152cea4-f28b-2555-5fbe-701041fe3cc9	2021-05-26 20:31:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:31:43.951+03	2021-05-26 20:31:43.958+03	
e7f0b518-226e-b0fd-a665-4edfb9997f36	2021-05-26 20:32:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:32:03.951+03	2021-05-26 20:32:03.959+03	
22d98ad6-88fa-19dc-6c25-d697c9c4e282	2021-05-26 20:32:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:32:23.952+03	2021-05-26 20:32:23.96+03	
bbdb15f5-5535-2c87-d5fb-372db4203b66	2021-05-26 20:32:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:32:44.951+03	2021-05-26 20:32:44.958+03	
b00ee44c-58ed-265c-d0bc-456a106677b2	2021-05-26 20:33:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:33:04.951+03	2021-05-26 20:33:04.958+03	
f0c2313d-0802-bf55-974f-2977996d66aa	2021-05-26 20:33:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:33:24.951+03	2021-05-26 20:33:24.959+03	
2e5962f5-5091-5283-846c-d3c8cc7b7822	2021-05-26 20:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:33:44.951+03	2021-05-26 20:33:44.958+03	
59d950dd-d764-7bcb-805b-9a50b849a2d0	2021-05-26 20:34:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:34:04.951+03	2021-05-26 20:34:04.958+03	
e2d8a0b8-4efa-2b40-e41f-362be5e7777f	2021-05-26 20:34:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:34:24.951+03	2021-05-26 20:34:24.96+03	
4a2f6d3c-75a9-c104-3246-216a4fea1d49	2021-05-26 20:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:34:44.951+03	2021-05-26 20:34:44.958+03	
5889c83c-b547-bea1-0cb9-186f50764b4c	2021-05-26 20:35:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:35:04.951+03	2021-05-26 20:35:04.959+03	
51a6547b-5482-76d7-d6bf-1b7359d54630	2021-05-26 20:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:35:24.951+03	2021-05-26 20:35:24.962+03	
400cf8ba-0492-41c0-1aab-9a5f7acf0db8	2021-05-26 20:35:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:35:44.951+03	2021-05-26 20:35:44.961+03	
c647c146-e073-7e4d-570d-208204e1af20	2021-05-26 20:36:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:36:04.951+03	2021-05-26 20:36:04.958+03	
74cba3d1-a740-767e-b9ef-c3c89ea57c35	2021-05-26 20:36:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:36:24.951+03	2021-05-26 20:36:24.958+03	
5e49bb01-0382-faa8-3085-613749302caf	2021-05-26 20:36:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:36:44.951+03	2021-05-26 20:36:44.96+03	
607a900b-e92d-98e2-f809-e4d43a58cb0f	2021-05-26 20:37:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:37:04.951+03	2021-05-26 20:37:04.959+03	
b5d59a67-55d4-b14d-3327-289db032f4b7	2021-05-26 20:37:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:37:24.951+03	2021-05-26 20:37:24.96+03	
e9b24893-32dd-a2dd-6004-0e63fdc209b1	2021-05-26 20:37:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:37:44.951+03	2021-05-26 20:37:44.958+03	
a59800fd-3943-033d-ac14-cf2748017a7b	2021-05-26 20:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:38:04.951+03	2021-05-26 20:38:04.958+03	
6c6763ac-ca35-8808-f442-afb37e0e211f	2021-05-26 20:38:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:38:24.951+03	2021-05-26 20:38:24.96+03	
6079cd52-7dfd-0175-7940-0677d78c3f96	2021-05-26 20:38:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:38:45.951+03	2021-05-26 20:38:45.958+03	
81c6458b-38c5-0cd8-e97b-1b49949be757	2021-05-26 20:39:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:39:05.951+03	2021-05-26 20:39:05.96+03	
70f3c0ed-a67d-eb2c-5022-106498fefd06	2021-05-26 20:39:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:39:25.951+03	2021-05-26 20:39:25.96+03	
6eb0711e-0e9d-2624-5b6c-0131f789cc44	2021-05-26 20:39:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:39:45.951+03	2021-05-26 20:39:45.958+03	
cf2a76d2-4e97-39d7-484c-ec1118cf4bab	2021-05-26 20:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 20:40:00.951+03	2021-05-26 20:40:00.956+03	ERROR
763a1242-9e8f-0742-b048-381236cace52	2021-05-26 20:40:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:40:15.951+03	2021-05-26 20:40:15.958+03	
e87fb728-2821-f1af-f1b5-56dfc8f0c403	2021-05-26 20:40:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:40:35.951+03	2021-05-26 20:40:35.958+03	
ecf5b01e-5f0b-4830-f6fd-7e776fff9fb7	2021-05-26 20:40:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:40:55.951+03	2021-05-26 20:40:55.959+03	
1e4c5ace-2294-561a-09ff-41d7be023342	2021-05-26 20:41:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:41:16.951+03	2021-05-26 20:41:16.958+03	
46bda91d-359d-4ea4-0708-a9c2cd2cdb4c	2021-05-26 20:41:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:41:36.951+03	2021-05-26 20:41:36.959+03	
94d27d22-4711-f045-0abc-2a323cd4dbd1	2021-05-26 20:41:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:41:56.951+03	2021-05-26 20:41:56.96+03	
dab4cc1d-0d12-cef8-e3b3-b1b9c637309f	2021-05-26 20:42:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:42:16.951+03	2021-05-26 20:42:16.958+03	
e1a0e888-5ae1-365b-2852-08dbd2afcdb1	2021-05-26 20:42:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:42:36.951+03	2021-05-26 20:42:36.959+03	
5cbc1a21-ced4-318c-5757-1b9e3cb330e7	2021-05-26 20:42:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:42:56.951+03	2021-05-26 20:42:56.959+03	
ffea3eb2-abc6-b7e0-7de7-d3f89e132226	2021-05-26 20:43:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:43:16.951+03	2021-05-26 20:43:16.959+03	
b9dc781a-d2c9-ba44-72b7-ab53e363f396	2021-05-26 20:43:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:43:36.951+03	2021-05-26 20:43:36.958+03	
744d64bf-9282-99c9-33db-61ad98e93401	2021-05-26 20:43:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:43:56.951+03	2021-05-26 20:43:56.96+03	
1b302b01-2afb-3b4b-a0a8-5f30c3a47bb9	2021-05-26 20:44:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:44:16.951+03	2021-05-26 20:44:16.959+03	
cabd2c04-e039-c4eb-24f0-12259880ce7d	2021-05-26 20:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:44:36.951+03	2021-05-26 20:44:36.958+03	
795af60d-9ff3-347f-db5e-88153ad07969	2021-05-26 20:44:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:44:56.951+03	2021-05-26 20:44:56.959+03	
363c5f94-65f0-4dfe-0a6d-c1ba48ae7d8e	2021-05-26 20:45:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:45:16.951+03	2021-05-26 20:45:16.959+03	
ffdf054d-ee00-d251-db6f-47240a54e64a	2021-05-26 20:45:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:45:36.951+03	2021-05-26 20:45:36.96+03	
80b64ac0-c9bd-27f5-0595-c1bf58a4aca0	2021-05-26 20:45:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:45:56.951+03	2021-05-26 20:45:56.959+03	
812fb117-efdf-d586-5194-b7d8ebfbd440	2021-05-26 20:46:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:46:16.952+03	2021-05-26 20:46:16.958+03	
2eafbbf7-0d73-aec8-ed3f-687d88ab0d9f	2021-05-26 20:28:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:28:22.951+03	2021-05-26 20:28:22.965+03	
5007e728-0afd-8b31-c5da-774bf101ac66	2021-05-26 20:28:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:28:43.951+03	2021-05-26 20:28:43.958+03	
a394fc11-6176-566d-3cf7-3a382af709f0	2021-05-26 20:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:29:03.951+03	2021-05-26 20:29:03.96+03	
6ce25b41-311e-2f19-3a07-92e8674509bd	2021-05-26 20:29:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:29:23.951+03	2021-05-26 20:29:23.959+03	
68bf6377-5806-d2ff-1d5c-4f510eb14b60	2021-05-26 20:29:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:29:43.951+03	2021-05-26 20:29:43.96+03	
65f391ce-d285-b74c-a2c6-deaeb5c950d1	2021-05-26 20:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 20:30:00.951+03	2021-05-26 20:30:00.957+03	ERROR
9a90640a-8e24-afb8-6aaf-1ec712431aba	2021-05-26 20:30:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:30:13.951+03	2021-05-26 20:30:13.959+03	
35ff94c0-8c64-ac22-39cd-34d35b141d60	2021-05-26 20:30:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:30:33.951+03	2021-05-26 20:30:33.958+03	
1ff710b4-ad27-5505-d77d-53382d207a65	2021-05-26 20:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:30:53.951+03	2021-05-26 20:30:53.961+03	
7f59042d-912c-61ee-b7be-3703a4ea789a	2021-05-26 20:31:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:31:13.951+03	2021-05-26 20:31:13.958+03	
f0ad85dd-f631-ed45-054d-553a5ec102dd	2021-05-26 20:31:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:31:33.951+03	2021-05-26 20:31:33.958+03	
4ab05b36-b864-0ce9-c0af-539e3e757f18	2021-05-26 20:31:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:31:53.951+03	2021-05-26 20:31:53.958+03	
a8eba35b-e322-05da-db3d-32cc1d83e6c9	2021-05-26 20:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:32:13.951+03	2021-05-26 20:32:13.974+03	
6d3002f4-29d6-99c7-6a6c-3e9e0c979e6a	2021-05-26 20:32:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:32:34.951+03	2021-05-26 20:32:34.959+03	
d983599a-2a22-81e3-6243-757a3307f990	2021-05-26 20:32:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:32:54.951+03	2021-05-26 20:32:54.958+03	
7705cbd1-2ed7-433c-e5d1-2e1eaa726ca0	2021-05-26 20:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:33:14.951+03	2021-05-26 20:33:14.959+03	
9d1987e7-5786-19f3-1a84-3b695bcee3f3	2021-05-26 20:33:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:33:34.951+03	2021-05-26 20:33:34.959+03	
bb250cda-6c46-0d05-b171-8db1bcb9831e	2021-05-26 20:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:33:54.951+03	2021-05-26 20:33:54.959+03	
896f2153-e346-2937-8666-cfe61fd42af7	2021-05-26 20:34:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:34:14.951+03	2021-05-26 20:34:14.958+03	
4bd82bff-626a-755c-d035-618cc92bf0e5	2021-05-26 20:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:34:34.951+03	2021-05-26 20:34:34.958+03	
0ebc450a-2943-7389-069c-447f47f08aac	2021-05-26 20:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:34:54.951+03	2021-05-26 20:34:54.959+03	
8f1a1aca-66ee-2c66-a2a5-5edf7709bcf7	2021-05-26 20:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:35:14.951+03	2021-05-26 20:35:14.96+03	
4f6c5b2f-8aad-ac5b-2b30-c5be3f3c5cbe	2021-05-26 20:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:35:34.951+03	2021-05-26 20:35:34.962+03	
82e8c7b8-9bbf-d747-3308-1d20613e4526	2021-05-26 20:35:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:35:54.951+03	2021-05-26 20:35:54.959+03	
5a240055-c203-fbc6-11f4-640d44c0461c	2021-05-26 20:36:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:36:14.951+03	2021-05-26 20:36:14.958+03	
ebf81fb4-6836-afed-b2b5-b365055cc891	2021-05-26 20:36:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:36:34.951+03	2021-05-26 20:36:34.958+03	
139ff2ce-9186-cc14-5b42-1688413e9df7	2021-05-26 20:36:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:36:54.951+03	2021-05-26 20:36:54.96+03	
170a916f-56a5-2813-2afb-70d2fb67864c	2021-05-26 20:37:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:37:14.951+03	2021-05-26 20:37:14.959+03	
ec87a649-d8d4-ddcb-9854-278639991d04	2021-05-26 20:37:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:37:34.951+03	2021-05-26 20:37:34.958+03	
7198a7ef-5ca6-165b-5701-c02f96fcda7d	2021-05-26 20:37:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:37:54.951+03	2021-05-26 20:37:54.958+03	
e80010ed-8a85-2f73-d590-d4a8da56ca33	2021-05-26 20:38:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:38:14.951+03	2021-05-26 20:38:14.958+03	
c8ce3ee5-223b-0ee5-6182-e218828bee78	2021-05-26 20:38:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:38:34.952+03	2021-05-26 20:38:34.959+03	
8f1f73a3-9774-5f98-ad43-fc1bc6b9c9df	2021-05-26 20:38:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:38:55.951+03	2021-05-26 20:38:55.958+03	
f5dfe6d1-f9f8-6907-4508-99b40c36987c	2021-05-26 20:39:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:39:15.951+03	2021-05-26 20:39:15.959+03	
3ab5c376-6439-10af-6a31-f7b283cf1e05	2021-05-26 20:39:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:39:35.951+03	2021-05-26 20:39:35.958+03	
fbcf1e10-dcf0-62bf-51fb-c0635d31181d	2021-05-26 20:39:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:39:55.951+03	2021-05-26 20:39:55.959+03	
1368a46b-d42b-d959-7aa8-957e9d5e6038	2021-05-26 20:40:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:40:05.951+03	2021-05-26 20:40:05.958+03	
0885dd24-ec51-27da-2dab-ee952ba327ee	2021-05-26 20:40:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:40:25.951+03	2021-05-26 20:40:25.962+03	
89968580-1715-59e1-b78d-445da9189bcb	2021-05-26 20:40:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:40:45.951+03	2021-05-26 20:40:45.959+03	
63c90291-1005-e6d6-9fec-93611cd1bf25	2021-05-26 20:41:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:41:05.952+03	2021-05-26 20:41:05.96+03	
95b6d4ab-128b-4a93-9697-5efba3d01492	2021-05-26 20:41:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:41:26.951+03	2021-05-26 20:41:26.96+03	
ce22cbfe-97ac-61a0-4371-e8f0bd2fb79c	2021-05-26 20:41:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:41:46.951+03	2021-05-26 20:41:46.96+03	
a0b49a03-5961-b065-6e42-5d7561c12bdb	2021-05-26 20:42:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:42:06.951+03	2021-05-26 20:42:06.959+03	
9388d4d6-bbc7-2269-7f08-115c8fdf396a	2021-05-26 20:42:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:42:26.951+03	2021-05-26 20:42:26.959+03	
50bd8152-32dd-a00f-819a-0042ad0073d6	2021-05-26 20:42:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:42:46.951+03	2021-05-26 20:42:46.959+03	
0d21de32-8ccc-1ff2-1edc-27165c0e8ddd	2021-05-26 20:43:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:43:06.951+03	2021-05-26 20:43:06.96+03	
a3cc5c89-a9bb-9139-ae98-63659d9e9710	2021-05-26 20:43:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:43:26.951+03	2021-05-26 20:43:26.962+03	
1782970c-a071-087f-2b77-f83e701c374e	2021-05-26 20:43:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:43:46.951+03	2021-05-26 20:43:46.958+03	
4b26a4cf-c1d5-7376-2a9a-858047fac238	2021-05-26 20:44:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:44:06.951+03	2021-05-26 20:44:06.958+03	
210e8c4e-38a1-432b-5a1c-69b25f77d00d	2021-05-26 20:44:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:44:26.951+03	2021-05-26 20:44:26.957+03	
0e9f6bf6-3d4b-d53d-c128-02daada0e593	2021-05-26 20:44:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:44:46.951+03	2021-05-26 20:44:46.96+03	
a5b257ed-56ef-10fe-8e0e-3eae28de0a15	2021-05-26 20:45:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:45:06.951+03	2021-05-26 20:45:06.962+03	
a1127822-c441-fcb3-8e29-52523e9d3365	2021-05-26 20:45:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:45:26.951+03	2021-05-26 20:45:26.958+03	
3f91e9c5-81f8-664b-0c22-6eb9620544ad	2021-05-26 20:45:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:45:46.951+03	2021-05-26 20:45:46.958+03	
053ac508-7497-4718-7531-9a04bd0b377a	2021-05-26 20:46:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:46:06.952+03	2021-05-26 20:46:06.959+03	
7209009e-5de4-63f6-a203-3c0cb20563d8	2021-05-26 20:46:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:46:27.951+03	2021-05-26 20:46:27.958+03	
90d1e3bc-d62e-b314-c914-bac104deab40	2021-05-26 20:46:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:46:47.951+03	2021-05-26 20:46:47.959+03	
535d141c-f9c4-269e-4784-b6f3ac3b5e76	2021-05-26 20:47:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:47:07.951+03	2021-05-26 20:47:07.958+03	
2c1a498a-fe02-3589-6269-722600e040c9	2021-05-26 20:47:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:47:27.951+03	2021-05-26 20:47:27.959+03	
530ba87d-68e3-627a-f806-2252824c9e43	2021-05-26 20:47:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:47:47.951+03	2021-05-26 20:47:47.959+03	
1a0fd039-3126-a9ce-e25f-f7b675022cc5	2021-05-26 20:48:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:48:07.951+03	2021-05-26 20:48:07.958+03	
f659a3c3-57ee-832a-a82c-d718741a1480	2021-05-26 20:48:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:48:28.951+03	2021-05-26 20:48:28.959+03	
789718c2-bf16-0d08-a195-3d6b6d7837a8	2021-05-26 20:48:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:48:48.951+03	2021-05-26 20:48:48.959+03	
eeb878d7-6a5d-df4e-001b-6218da8e54d2	2021-05-26 20:46:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:46:37.951+03	2021-05-26 20:46:37.96+03	
8fc5b5e0-7941-98ed-25cd-0da0c17f47c8	2021-05-26 20:46:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:46:57.951+03	2021-05-26 20:46:57.959+03	
2b0fe2e0-4b87-8cca-c338-7ffbba65051f	2021-05-26 20:47:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:47:17.951+03	2021-05-26 20:47:17.959+03	
67d49b9a-d32f-87ee-398c-a5e8ce1168ac	2021-05-26 20:47:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:47:37.951+03	2021-05-26 20:47:37.958+03	
ca07690a-9c14-21d7-0bd8-8521276f15c9	2021-05-26 20:47:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:47:57.951+03	2021-05-26 20:47:57.957+03	
fe9887fc-47ad-6c00-be21-ba118e66475c	2021-05-26 20:48:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:48:17.952+03	2021-05-26 20:48:17.959+03	
d684e119-aa4e-4656-99c6-9291a9b42dcf	2021-05-26 20:48:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:48:38.951+03	2021-05-26 20:48:38.958+03	
a5c1a994-2e80-a0c9-9359-6ee1b8a3811a	2021-05-26 20:48:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:48:58.951+03	2021-05-26 20:48:58.959+03	
55e94683-922d-252b-c3cd-0f980f4be2b1	2021-05-26 20:49:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:49:18.951+03	2021-05-26 20:49:18.959+03	
d1125852-f39d-7e95-11c7-1379dbde54e4	2021-05-26 20:49:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:49:38.952+03	2021-05-26 20:49:38.959+03	
51bc4df9-f2c3-2e25-95da-c87300257430	2021-05-26 20:49:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:49:59.951+03	2021-05-26 20:49:59.959+03	
bdd62fc5-e7cb-e7d3-e715-df778007a01d	2021-05-26 20:50:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:50:09.951+03	2021-05-26 20:50:09.963+03	
fd53b614-6cbc-1c86-c884-626157b3bee4	2021-05-26 20:50:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:50:29.951+03	2021-05-26 20:50:29.958+03	
8d7b1ac6-07f2-f37c-b80b-a81a4afdf564	2021-05-26 20:50:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:50:49.951+03	2021-05-26 20:50:49.959+03	
20fdd601-d27d-49db-393a-03ce892f4d94	2021-05-26 20:51:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:51:09.951+03	2021-05-26 20:51:09.96+03	
12731287-9dac-384e-708e-d0fadd34a716	2021-05-26 20:51:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:51:29.951+03	2021-05-26 20:51:30.254+03	
9068b780-3f65-6a13-8d00-787bb7cc6031	2021-05-26 20:51:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:51:49.951+03	2021-05-26 20:51:49.96+03	
d88f86e7-21a2-9edc-a7e3-e681da70b7d6	2021-05-26 20:52:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:52:09.951+03	2021-05-26 20:52:09.959+03	
4187d678-9e8f-3dbb-40aa-c5f89e0f340a	2021-05-26 20:52:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:52:29.951+03	2021-05-26 20:52:29.961+03	
5a669688-ef0a-9ae1-437b-8adf3bf2b5e3	2021-05-26 20:52:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:52:49.951+03	2021-05-26 20:52:49.958+03	
f5372e9b-57e8-6d25-ecbd-419cabef6a66	2021-05-26 20:53:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:53:09.951+03	2021-05-26 20:53:09.958+03	
0750c67a-a97b-8650-fd0e-08be6bb8aebc	2021-05-26 20:53:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:53:29.951+03	2021-05-26 20:53:29.959+03	
35e6d8df-2695-0e55-5767-12ae0817eb33	2021-05-26 20:53:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:53:49.951+03	2021-05-26 20:53:49.961+03	
ca8f16fb-80e3-05fa-b183-9a565ccf1f22	2021-05-26 20:54:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:54:09.951+03	2021-05-26 20:54:09.957+03	
6c365c87-3bbb-94be-c2ff-43e2655f0e18	2021-05-26 20:54:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:54:29.951+03	2021-05-26 20:54:29.959+03	
40a31524-ffb0-d56c-737a-efd4f2e15619	2021-05-26 20:54:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:54:49.951+03	2021-05-26 20:54:49.959+03	
d680d3be-5bfe-fb81-d3d1-39eb03b88bcd	2021-05-26 20:55:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:55:09.951+03	2021-05-26 20:55:09.958+03	
3f3dd685-0107-ced3-9586-f1506031ad85	2021-05-26 20:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:55:29.951+03	2021-05-26 20:55:29.959+03	
7b518edb-8017-b314-9633-c1d4b2c054f2	2021-05-26 20:55:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:55:49.951+03	2021-05-26 20:55:49.959+03	
4a6c2577-b11c-4c69-3e55-964329ec25d9	2021-05-26 20:56:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:56:09.951+03	2021-05-26 20:56:09.959+03	
039a4837-4106-32b9-d47f-80fddcbf12b9	2021-05-26 20:56:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:56:29.951+03	2021-05-26 20:56:29.957+03	
3e8b9d26-a8e2-0955-9a8e-78d3cb0626ad	2021-05-26 20:56:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:56:49.951+03	2021-05-26 20:56:49.958+03	
0cda034f-c54d-13f2-4f4d-0371678654bf	2021-05-26 20:57:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:57:09.951+03	2021-05-26 20:57:09.959+03	
4ad357ab-0823-14ee-a087-0d007d12b7b0	2021-05-26 20:57:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:57:29.951+03	2021-05-26 20:57:29.961+03	
a41510e3-f668-ce8b-5b98-e2140eb356b1	2021-05-26 20:57:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:57:49.951+03	2021-05-26 20:57:49.958+03	
2093b4d6-d9db-2c3e-22e8-f74604e3df23	2021-05-26 20:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:58:09.951+03	2021-05-26 20:58:09.958+03	
e27aa9b8-678d-848d-f440-104e6c01c8b2	2021-05-26 20:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:58:29.951+03	2021-05-26 20:58:29.958+03	
d13f3b6d-de73-f22c-3814-3b9b34a73f5e	2021-05-26 20:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:58:49.951+03	2021-05-26 20:58:49.959+03	
e6dac879-f46a-d874-b236-776aef1ebfb6	2021-05-26 20:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:59:09.951+03	2021-05-26 20:59:09.958+03	
461b2110-05e9-82f6-75c8-9b5889a17def	2021-05-26 20:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:59:29.951+03	2021-05-26 20:59:29.958+03	
a9699623-3c6f-51c7-83d9-70097605ccac	2021-05-26 20:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:59:49.951+03	2021-05-26 20:59:49.959+03	
f48f3304-ec36-17ad-73c2-1b38728e0772	2021-05-26 21:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 21:00:00.951+03	2021-05-26 21:00:00.958+03	ERROR
f6a6ea0e-1ca4-3873-93e1-9f67652761c7	2021-05-26 21:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:00:19.951+03	2021-05-26 21:00:19.958+03	
0253be3d-1113-3e71-177d-e441e0d8bc7c	2021-05-26 21:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:00:39.952+03	2021-05-26 21:00:39.961+03	
7ef45bf6-7046-9825-61e4-5459d442b7fd	2021-05-26 21:01:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:01:00.951+03	2021-05-26 21:01:00.96+03	
8e18e014-f217-796e-c9f5-684bdc7ad3ed	2021-05-26 21:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:01:20.951+03	2021-05-26 21:01:20.959+03	
87113ad2-6a4c-577b-69cd-5955b6a6f975	2021-05-26 21:01:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:01:40.951+03	2021-05-26 21:01:40.959+03	
d71b0266-54cd-cb3d-6bac-c281cf449a11	2021-05-26 21:02:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:02:00.951+03	2021-05-26 21:02:00.958+03	
7c1dd788-6571-9c56-a5d6-e050a6766950	2021-05-26 21:02:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:02:20.951+03	2021-05-26 21:02:20.958+03	
e80ae553-51dc-1177-b84b-d364a4f66814	2021-05-26 21:02:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:02:40.951+03	2021-05-26 21:02:40.96+03	
27861588-d144-51c2-a733-6793178c0e8e	2021-05-26 21:03:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:03:00.951+03	2021-05-26 21:03:00.958+03	
e226706f-e874-ca36-6035-e01569b80367	2021-05-26 21:03:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:03:20.951+03	2021-05-26 21:03:20.958+03	
e4b940a8-98db-cfeb-f381-fd1f9cff9744	2021-05-26 21:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:03:40.951+03	2021-05-26 21:03:40.96+03	
e130d125-ac28-4943-8878-8c9859b6e987	2021-05-26 21:04:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:04:00.951+03	2021-05-26 21:04:00.957+03	
37fe883d-8cec-f434-b908-80c71ca0b12a	2021-05-26 21:04:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:04:21.951+03	2021-05-26 21:04:21.959+03	
323eec79-e351-7fb7-4c8f-349e56a6e898	2021-05-26 21:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:04:41.951+03	2021-05-26 21:04:41.959+03	
d0103335-46e9-9c92-a791-baa12427a509	2021-05-26 21:05:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:05:01.951+03	2021-05-26 21:05:01.957+03	
71bee5b8-f7a4-eff8-9a05-a92acf49f650	2021-05-26 21:05:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:05:21.951+03	2021-05-26 21:05:21.958+03	
1b3df51f-2325-5ab0-510b-44bda3080e3d	2021-05-26 21:05:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:05:41.951+03	2021-05-26 21:05:41.96+03	
853f08ec-6c2d-92b3-38d7-9fd7b23e4f24	2021-05-26 21:06:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:06:01.951+03	2021-05-26 21:06:01.959+03	
85f83009-33d6-fd0d-211a-6169f57fa39c	2021-05-26 21:06:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:06:21.951+03	2021-05-26 21:06:21.958+03	
f2c7b6cc-3902-fad2-aee2-816b6728cfac	2021-05-26 21:06:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:06:41.952+03	2021-05-26 21:06:41.959+03	
87d07b3f-8169-db9b-25f8-d85803ca7072	2021-05-26 21:07:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:07:02.951+03	2021-05-26 21:07:02.959+03	
1316b56b-1399-3887-9353-5e4d98c49a89	2021-05-26 20:49:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:49:08.951+03	2021-05-26 20:49:08.958+03	
d8ac77c9-4879-4b3d-4444-c12ffe57dfa3	2021-05-26 20:49:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:49:28.952+03	2021-05-26 20:49:28.958+03	
771dabff-ed39-a7d3-eee5-622898b306b9	2021-05-26 20:49:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:49:49.951+03	2021-05-26 20:49:49.959+03	
70182e0f-9774-1d15-649d-21cebb47ddfa	2021-05-26 20:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 20:50:00.951+03	2021-05-26 20:50:00.957+03	ERROR
bcc5f708-c181-18b6-1975-e55e70d5dc48	2021-05-26 20:50:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:50:19.951+03	2021-05-26 20:50:19.959+03	
b2ac7419-f1c0-659e-6e32-67ee29288c6c	2021-05-26 20:50:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:50:39.951+03	2021-05-26 20:50:39.959+03	
a451cac9-7673-ba32-1967-f390db2d89c1	2021-05-26 20:50:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:50:59.951+03	2021-05-26 20:50:59.961+03	
9a193e86-e697-c18b-c0d1-18a6ae4db89d	2021-05-26 20:51:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:51:19.951+03	2021-05-26 20:51:19.959+03	
f0bc8aeb-4038-eb6e-264e-fb2935516492	2021-05-26 20:51:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:51:39.951+03	2021-05-26 20:51:39.957+03	
e0f46b79-426c-b5af-c853-324b53f3c491	2021-05-26 20:51:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:51:59.951+03	2021-05-26 20:51:59.958+03	
ab418ec4-26e1-28a3-11af-7692e3c7d984	2021-05-26 20:52:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:52:19.951+03	2021-05-26 20:52:19.959+03	
5485a274-8855-cfb5-1f19-a0dd96b2c082	2021-05-26 20:52:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:52:39.951+03	2021-05-26 20:52:39.958+03	
9c138c33-5c77-4caa-6e51-44da10c2a594	2021-05-26 20:52:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:52:59.951+03	2021-05-26 20:52:59.958+03	
fbe7a719-74ef-3018-b95e-e52e861e2714	2021-05-26 20:53:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:53:19.951+03	2021-05-26 20:53:19.961+03	
1616d198-fcdc-531f-c4cf-4815420db270	2021-05-26 20:53:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:53:39.951+03	2021-05-26 20:53:39.96+03	
6caa9ba5-48f6-3f8b-473d-82bc1891c365	2021-05-26 20:53:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:53:59.951+03	2021-05-26 20:53:59.959+03	
4f412908-3b7d-9d09-e6fd-cae410dd57c8	2021-05-26 20:54:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:54:19.951+03	2021-05-26 20:54:19.958+03	
99cb6319-b377-9b90-115e-1c94c8ac51b7	2021-05-26 20:54:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:54:39.951+03	2021-05-26 20:54:39.959+03	
46993589-3464-12c3-98a1-5d56ffb0cce2	2021-05-26 20:54:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:54:59.951+03	2021-05-26 20:54:59.963+03	
cc01a91c-ce2f-a99f-f5a9-8b143f75f771	2021-05-26 20:55:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:55:19.951+03	2021-05-26 20:55:19.96+03	
ea11f9a1-521c-1fac-d278-84669269754e	2021-05-26 20:55:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:55:39.951+03	2021-05-26 20:55:39.958+03	
7ccb7e05-8f6a-759b-bd31-050ef731eda8	2021-05-26 20:55:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:55:59.951+03	2021-05-26 20:55:59.957+03	
3384fcd3-67f8-b78e-a77e-f68e1665a2c8	2021-05-26 20:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:56:19.951+03	2021-05-26 20:56:19.96+03	
014079e9-31b1-b242-7f72-b59f32ff2855	2021-05-26 20:56:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:56:39.951+03	2021-05-26 20:56:39.958+03	
e31852df-6092-2186-61e9-50ebb7a33872	2021-05-26 20:56:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:56:59.951+03	2021-05-26 20:56:59.958+03	
5a9b9245-f4cd-a804-e8f8-6c53d8a7b61e	2021-05-26 20:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:57:19.951+03	2021-05-26 20:57:19.959+03	
12ffe29f-5538-574c-4407-0879ef50e7f4	2021-05-26 20:57:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:57:39.951+03	2021-05-26 20:57:39.962+03	
abde9553-e882-9c76-6387-6decc8f4869c	2021-05-26 20:57:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:57:59.951+03	2021-05-26 20:57:59.959+03	
1ea53812-efaf-1538-5f93-f0a85b5c863c	2021-05-26 20:58:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:58:19.951+03	2021-05-26 20:58:19.957+03	
1216f5bd-fdcd-c628-4572-3cc4224a7964	2021-05-26 20:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:58:39.951+03	2021-05-26 20:58:39.958+03	
6278387b-df2b-edac-d168-7d21bd3d4c06	2021-05-26 20:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:58:59.951+03	2021-05-26 20:58:59.971+03	
66d111f5-d7b9-1a97-537d-df1bfd5d93b9	2021-05-26 20:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:59:19.951+03	2021-05-26 20:59:19.97+03	
24456ef3-5dd8-5fb7-0b68-f057fee9734b	2021-05-26 20:59:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:59:39.951+03	2021-05-26 20:59:39.959+03	
0ef3ba9b-6300-7b2d-15b1-85a37014c4d9	2021-05-26 20:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 20:59:59.951+03	2021-05-26 20:59:59.959+03	
ca90385e-baf3-a97c-8997-87acc7bd8c60	2021-05-26 21:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:00:09.951+03	2021-05-26 21:00:09.958+03	
2c3b4bf8-8053-50a2-f344-93bf1b4e974e	2021-05-26 21:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:00:29.951+03	2021-05-26 21:00:29.959+03	
e885582f-f5d4-1cec-d4a7-356c10b39a71	2021-05-26 21:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:00:50.951+03	2021-05-26 21:00:50.96+03	
a080a43b-7223-aeb0-be6a-8baaf1739a72	2021-05-26 21:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:01:10.951+03	2021-05-26 21:01:10.961+03	
2f8742d0-d6bb-01dd-f259-70990e3692da	2021-05-26 21:01:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:01:30.951+03	2021-05-26 21:01:30.958+03	
7b23123a-a1ed-95d5-2ceb-10f3cd6d8c8c	2021-05-26 21:01:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:01:50.951+03	2021-05-26 21:01:50.958+03	
511f865f-1f99-79e8-827a-a0720c7dc2a6	2021-05-26 21:02:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:02:10.951+03	2021-05-26 21:02:10.958+03	
b2ee0fad-867c-8a9a-3b69-c4ebcffab84f	2021-05-26 21:02:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:02:30.951+03	2021-05-26 21:02:30.959+03	
2dd30c6d-3dd2-19d2-d631-08d7999f05c5	2021-05-26 21:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:02:50.951+03	2021-05-26 21:02:50.959+03	
db92891b-a347-3d2a-abc9-32311e484d04	2021-05-26 21:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:03:10.951+03	2021-05-26 21:03:10.958+03	
39717285-e541-8300-53a2-f405414a4415	2021-05-26 21:03:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:03:30.951+03	2021-05-26 21:03:30.958+03	
9e2c41d6-9e54-514e-3cdd-13bfb7280b6b	2021-05-26 21:03:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:03:50.951+03	2021-05-26 21:03:50.959+03	
4128b078-9dab-5bc8-75b2-6808b8b096d8	2021-05-26 21:04:10.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:04:10.952+03	2021-05-26 21:04:10.961+03	
6d1f1340-a3ad-57a5-8009-256ccd682c49	2021-05-26 21:04:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:04:31.951+03	2021-05-26 21:04:31.959+03	
4bb6190c-b681-488d-fbf1-d27c3550f53a	2021-05-26 21:04:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:04:51.951+03	2021-05-26 21:04:51.959+03	
4699a845-b71a-320f-5f7c-5de6856de84f	2021-05-26 21:05:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:05:11.951+03	2021-05-26 21:05:11.963+03	
36f52cb0-9863-8cbe-5114-4511b97606e4	2021-05-26 21:05:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:05:31.951+03	2021-05-26 21:05:31.96+03	
750dfad6-395f-7c57-ab3b-8b2175edae01	2021-05-26 21:05:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:05:51.951+03	2021-05-26 21:05:51.96+03	
55af6c63-9226-20e5-f911-1889dc67585b	2021-05-26 21:06:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:06:11.951+03	2021-05-26 21:06:11.96+03	
77af6b22-3e4c-3517-e63c-d360b3f2212b	2021-05-26 21:06:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:06:31.951+03	2021-05-26 21:06:31.958+03	
0cd8aa4d-2a4a-8cb2-06dc-423c9c0e723f	2021-05-26 21:06:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:06:52.951+03	2021-05-26 21:06:52.96+03	
0fed19a8-9255-d7fd-3c76-ace711684ba6	2021-05-26 21:07:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:07:12.952+03	2021-05-26 21:07:12.96+03	
af12b629-39be-aba0-511b-9763c469be12	2021-05-26 21:07:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:07:33.951+03	2021-05-26 21:07:33.959+03	
ffc27885-4edc-f133-e40a-df8f52253c18	2021-05-26 21:07:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:07:53.951+03	2021-05-26 21:07:53.959+03	
aef02747-d870-447e-30d7-bd31ecf693ba	2021-05-26 21:08:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:08:13.951+03	2021-05-26 21:08:13.959+03	
c10f172d-5d35-465a-3953-385bc188fb00	2021-05-26 21:08:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:08:33.951+03	2021-05-26 21:08:33.96+03	
8a3ff51e-617f-df2c-aa83-3554a757609c	2021-05-26 21:08:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:08:53.951+03	2021-05-26 21:08:53.958+03	
f7b9e0fe-38bc-a32a-822b-cc9a1c92588a	2021-05-26 21:09:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:09:13.951+03	2021-05-26 21:09:13.958+03	
e8cd33d1-2e0c-d6b0-4643-a2b0530e2a15	2021-05-26 21:09:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:09:33.951+03	2021-05-26 21:09:33.959+03	
59281fa9-8727-629e-9ca8-3c981064fc6c	2021-05-26 21:07:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:07:23.951+03	2021-05-26 21:07:23.957+03	
28d529a6-c8d8-6f01-2b4d-65e00a62ca04	2021-05-26 21:07:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:07:43.951+03	2021-05-26 21:07:43.96+03	
81fef445-c3ee-7091-914f-a74ba0b23f4f	2021-05-26 21:08:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:08:03.951+03	2021-05-26 21:08:03.958+03	
b9eded96-4acd-8e9b-a081-0df89cbb04ec	2021-05-26 21:08:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:08:23.951+03	2021-05-26 21:08:23.959+03	
1329ed6d-8ddd-1f10-6ecf-2a72242022ca	2021-05-26 21:08:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:08:43.951+03	2021-05-26 21:08:43.959+03	
0b0cca75-027b-d255-5d87-1fa3170d39ee	2021-05-26 21:09:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:09:03.951+03	2021-05-26 21:09:03.959+03	
602a1387-5f6d-e79e-c62a-718ac10113e0	2021-05-26 21:09:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:09:23.951+03	2021-05-26 21:09:23.96+03	
8c1e0a81-4020-0d39-dfff-3e113a748328	2021-05-26 21:09:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:09:43.951+03	2021-05-26 21:09:43.959+03	
9003db21-f2ff-770f-7211-1f93faa7306d	2021-05-26 21:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 21:10:00.951+03	2021-05-26 21:10:00.957+03	ERROR
055280f6-1dfd-3972-4832-9344c5e78001	2021-05-26 21:10:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:10:13.951+03	2021-05-26 21:10:13.96+03	
0de5e131-2894-1d0f-7c58-e98b4e23f0b6	2021-05-26 21:10:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:10:33.952+03	2021-05-26 21:10:33.959+03	
0e3d7c8f-b17f-2cdb-7f5b-b6405d534f33	2021-05-26 21:10:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:10:54.951+03	2021-05-26 21:10:54.96+03	
28278b13-2d8b-4f17-dd7e-6fa9c7a16c91	2021-05-26 21:11:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:11:14.951+03	2021-05-26 21:11:14.96+03	
6c446518-dcf0-7624-7add-e159ef494be6	2021-05-26 21:11:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:11:34.951+03	2021-05-26 21:11:34.957+03	
6a68b2c0-bd24-f959-2c35-ef6a652b6331	2021-05-26 21:11:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:11:54.951+03	2021-05-26 21:11:54.957+03	
3910b8fc-d378-bf89-9727-bcf9e5a4de68	2021-05-26 21:12:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:12:14.951+03	2021-05-26 21:12:14.961+03	
8adb5d53-ca69-fe3a-f2c2-0cc7f0da5f13	2021-05-26 21:12:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:12:34.951+03	2021-05-26 21:12:34.958+03	
b245a2fc-3bdb-40d5-94ed-322710dd9e4b	2021-05-26 21:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:12:54.951+03	2021-05-26 21:12:54.958+03	
1ee989e8-9c42-f4f6-36fd-7f7a146017cb	2021-05-26 21:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:13:14.951+03	2021-05-26 21:13:14.959+03	
63c73012-ddfc-d6c6-7351-35fc0d780c8b	2021-05-26 21:13:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:13:34.951+03	2021-05-26 21:13:34.959+03	
13576e2a-947d-1a6c-37d1-fd53e1f125b2	2021-05-26 21:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:13:54.951+03	2021-05-26 21:13:54.958+03	
c494a7fc-4735-325a-dc04-3a0d7f55917e	2021-05-26 21:14:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:14:14.951+03	2021-05-26 21:14:14.96+03	
7b907ac5-6b7b-437b-0b1b-3f3c4bf9fb65	2021-05-26 21:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:14:34.951+03	2021-05-26 21:14:34.958+03	
e818a70c-ce5f-83da-f156-b5367de089a7	2021-05-26 21:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:14:54.951+03	2021-05-26 21:14:54.96+03	
0737fcc5-d86e-4eac-a2ab-fba4ca3f195f	2021-05-26 21:15:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:15:14.951+03	2021-05-26 21:15:14.958+03	
5a6e3309-bebd-31da-ce60-7ac49ae78e77	2021-05-26 21:15:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:15:34.951+03	2021-05-26 21:15:34.958+03	
dcf47273-6ca3-0a8a-53cd-1accbbaa907d	2021-05-26 21:15:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:15:54.951+03	2021-05-26 21:15:54.96+03	
b91ee0f5-91f2-661f-fe8b-f138bb561c70	2021-05-26 21:16:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:16:14.951+03	2021-05-26 21:16:14.959+03	
c3e4bedb-5f31-46ab-1c03-4926729a3088	2021-05-26 21:16:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:16:34.951+03	2021-05-26 21:16:34.959+03	
809fd54f-5265-b8ed-5a14-39f248b18329	2021-05-26 21:16:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:16:54.951+03	2021-05-26 21:16:54.958+03	
adf283ae-e072-3ab9-03f8-78cb19bd434e	2021-05-26 21:17:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:17:14.951+03	2021-05-26 21:17:14.961+03	
001a6c05-7dec-97bb-b02e-d3deef6aa1d6	2021-05-26 21:17:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:17:34.951+03	2021-05-26 21:17:34.958+03	
1e335aaf-a3fe-2e31-de17-83db9b600fdf	2021-05-26 21:17:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:17:54.951+03	2021-05-26 21:17:54.958+03	
523e0857-27fa-8245-563d-d889ada16be9	2021-05-26 21:18:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:18:14.951+03	2021-05-26 21:18:14.959+03	
6eb97530-bf9f-124e-98b8-1273fba94320	2021-05-26 21:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:18:34.951+03	2021-05-26 21:18:34.959+03	
aa267156-552d-0628-4d08-b595834650e0	2021-05-26 21:18:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:18:54.951+03	2021-05-26 21:18:54.958+03	
7b12f72d-0b15-fb0c-ffc4-fec750ffba3f	2021-05-26 21:19:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:19:14.951+03	2021-05-26 21:19:14.959+03	
a9ebb12e-344c-fda1-e70d-cab34d91ad0a	2021-05-26 21:19:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:19:34.951+03	2021-05-26 21:19:34.963+03	
84309c54-13d2-2857-0522-5a9d8705b190	2021-05-26 21:19:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:19:54.951+03	2021-05-26 21:19:54.965+03	
84d2aa4f-eec2-a3b6-5090-b54f1f7f46f8	2021-05-26 21:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:20:04.951+03	2021-05-26 21:20:04.959+03	
b52153a5-d827-843d-c141-be473df1a547	2021-05-26 21:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:20:25.951+03	2021-05-26 21:20:25.958+03	
5acdafce-d196-ad7e-fa84-0dbe422a4531	2021-05-26 21:20:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:20:46.951+03	2021-05-26 21:20:46.958+03	
1a599741-5a5d-9b84-cd86-a3730a7b2490	2021-05-26 21:21:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:21:06.951+03	2021-05-26 21:21:06.958+03	
86350c3c-e9a9-59bd-24b1-c6a43b8b7020	2021-05-26 21:21:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:21:26.951+03	2021-05-26 21:21:26.96+03	
9edddfb5-d1e9-3016-2c55-99ce48d19896	2021-05-26 21:21:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:21:46.951+03	2021-05-26 21:21:46.962+03	
7c201402-d64e-bcdd-0f62-9041a11ca21e	2021-05-26 21:22:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:22:06.951+03	2021-05-26 21:22:06.959+03	
49bd8d2e-0f08-856a-a0f9-5f863e0263a8	2021-05-26 21:22:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:22:26.951+03	2021-05-26 21:22:26.959+03	
b9c0d9ba-fd31-779a-1455-3ab8499d45a8	2021-05-26 21:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:22:46.951+03	2021-05-26 21:22:46.959+03	
756325a5-6216-4382-d7f7-920e466d3edd	2021-05-26 21:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:23:06.951+03	2021-05-26 21:23:06.959+03	
e8e08147-ee49-1f18-6f13-062fb0be89e7	2021-05-26 21:23:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:23:26.951+03	2021-05-26 21:23:26.963+03	
0cbe940f-5904-d122-f46f-526102fc8733	2021-05-26 21:23:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:23:46.951+03	2021-05-26 21:23:46.958+03	
f1afbb22-deb1-e5ca-a50d-b650346bc81f	2021-05-26 21:24:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:24:06.951+03	2021-05-26 21:24:06.958+03	
32d3ced6-fe80-b51e-7c23-31f6637a35b1	2021-05-26 21:24:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:24:26.951+03	2021-05-26 21:24:26.958+03	
aca0f7cb-5ff7-6025-374a-1b8a5532710e	2021-05-26 21:24:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:24:46.951+03	2021-05-26 21:24:46.958+03	
d28c5df8-318a-9bd0-6feb-738603815cba	2021-05-26 21:25:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:25:06.951+03	2021-05-26 21:25:06.958+03	
4ca46d22-aa0e-14c2-8655-e440e1383432	2021-05-26 21:25:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:25:26.951+03	2021-05-26 21:25:26.961+03	
8e720e88-871e-8daa-2cf7-ca96dedb2da8	2021-05-26 21:25:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:25:46.951+03	2021-05-26 21:25:46.959+03	
831793b2-5a56-7014-14fa-a1ecb06cfb60	2021-05-26 21:26:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:26:06.951+03	2021-05-26 21:26:06.959+03	
733aeb00-0927-a28b-cfa2-23b82c0133d7	2021-05-26 21:26:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:26:26.951+03	2021-05-26 21:26:26.961+03	
07f9851b-f89a-9beb-2fdf-aec00e1dc5d8	2021-05-26 21:26:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:26:46.951+03	2021-05-26 21:26:46.959+03	
df9bdb34-75e4-b373-4c37-48edd70c4d73	2021-05-26 21:27:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:27:06.951+03	2021-05-26 21:27:06.96+03	
133b3424-3bdb-a4a7-8dac-a0317226705b	2021-05-26 21:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:27:26.951+03	2021-05-26 21:27:26.958+03	
f91a289c-c9de-36d2-34da-1f92a61dd8cf	2021-05-26 21:27:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:27:46.951+03	2021-05-26 21:27:46.958+03	
6e2d3be7-fd5a-81b7-5f78-2c3883ce1e6b	2021-05-26 21:09:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:09:53.951+03	2021-05-26 21:09:53.962+03	
8fdfd17a-144e-df6e-7711-2d89bca5cb85	2021-05-26 21:10:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:10:03.951+03	2021-05-26 21:10:03.958+03	
03cad56b-fc26-8b9a-fb90-7678caccf512	2021-05-26 21:10:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:10:23.951+03	2021-05-26 21:10:23.958+03	
04e35400-da65-e1e5-c0dc-698dc0b9397b	2021-05-26 21:10:43.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:10:43.952+03	2021-05-26 21:10:43.96+03	
9b8bde0e-5258-bfab-873a-66cc7406a784	2021-05-26 21:11:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:11:04.951+03	2021-05-26 21:11:04.959+03	
85c48ce1-1935-68a8-904c-c87096573636	2021-05-26 21:11:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:11:24.951+03	2021-05-26 21:11:24.958+03	
bc1fd025-fd66-3a5e-3c09-7c693514602b	2021-05-26 21:11:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:11:44.951+03	2021-05-26 21:11:44.958+03	
6ff93127-0498-36dd-7153-9c8b5b819c3c	2021-05-26 21:12:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:12:04.951+03	2021-05-26 21:12:04.96+03	
c18876d3-60c9-f3e8-af7b-6802910be6f8	2021-05-26 21:12:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:12:24.951+03	2021-05-26 21:12:24.96+03	
3341291b-b0ce-db21-c90b-d8903df2e276	2021-05-26 21:12:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:12:44.951+03	2021-05-26 21:12:44.958+03	
72df83e2-9278-ef35-c13b-26dc3664e56f	2021-05-26 21:13:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:13:04.951+03	2021-05-26 21:13:04.959+03	
4075001e-f53c-2440-4afb-aaa401070f14	2021-05-26 21:13:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:13:24.951+03	2021-05-26 21:13:24.958+03	
e2190a41-0031-125f-c29c-f8e82d6866d2	2021-05-26 21:13:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:13:44.951+03	2021-05-26 21:13:44.96+03	
9a9f76f7-9c8e-7608-07c5-81af2accd6ed	2021-05-26 21:14:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:14:04.951+03	2021-05-26 21:14:04.958+03	
3ee973e5-b594-0c27-7f18-cc3d76b6f00e	2021-05-26 21:14:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:14:24.951+03	2021-05-26 21:14:24.958+03	
90ecdbe0-7a0c-6b88-81be-ab668a1baf0d	2021-05-26 21:14:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:14:44.951+03	2021-05-26 21:14:44.958+03	
9aa6b486-fadd-6d7a-5156-54bbadd9b167	2021-05-26 21:15:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:15:04.951+03	2021-05-26 21:15:04.959+03	
77c47b6f-c928-a058-3924-7e028c0f0671	2021-05-26 21:15:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:15:24.951+03	2021-05-26 21:15:24.96+03	
74f950cb-c290-86e5-6dc3-dbf4ee044360	2021-05-26 21:15:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:15:44.951+03	2021-05-26 21:15:44.959+03	
1fb478c7-d8fb-fb78-32aa-5dc9c1b062f4	2021-05-26 21:16:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:16:04.951+03	2021-05-26 21:16:04.963+03	
229fba29-6026-87b6-3399-d19a0d36de31	2021-05-26 21:16:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:16:24.951+03	2021-05-26 21:16:24.958+03	
9a0f0b12-786a-58dc-1cbf-4a1df13a56e7	2021-05-26 21:16:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:16:44.951+03	2021-05-26 21:16:44.959+03	
f2f76f80-da36-1312-7a95-7e85b2f4f7ed	2021-05-26 21:17:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:17:04.951+03	2021-05-26 21:17:04.958+03	
2dc5b9a8-f550-56a5-4554-2396fcdc75b2	2021-05-26 21:17:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:17:24.951+03	2021-05-26 21:17:24.96+03	
8c737613-8cff-9c97-bf74-546efffaa1e0	2021-05-26 21:17:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:17:44.951+03	2021-05-26 21:17:44.958+03	
b52ae194-e7fd-4de8-d45f-be9bb5efad85	2021-05-26 21:18:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:18:04.951+03	2021-05-26 21:18:04.959+03	
0204954b-bad3-6d0d-54de-ce495353fe60	2021-05-26 21:18:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:18:24.951+03	2021-05-26 21:18:24.959+03	
28d52d15-f52b-6567-9bd0-1cb7d488cb35	2021-05-26 21:18:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:18:44.951+03	2021-05-26 21:18:44.96+03	
9717f26c-86e9-40cb-5dc1-58422de5372c	2021-05-26 21:19:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:19:04.951+03	2021-05-26 21:19:04.959+03	
9a905834-768c-cc7c-9ae3-7e275d303a93	2021-05-26 21:19:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:19:24.951+03	2021-05-26 21:19:24.96+03	
5ad50723-d369-0f79-20e0-7b040fcf70ff	2021-05-26 21:19:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:19:44.951+03	2021-05-26 21:19:44.958+03	
2c1a7a3a-22b0-2e42-aa38-0fed84c52a88	2021-05-26 21:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 21:20:00.951+03	2021-05-26 21:20:00.957+03	ERROR
5c82f2f0-f334-1e59-6887-b49b2af78198	2021-05-26 21:20:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:20:14.952+03	2021-05-26 21:20:14.959+03	
31b6f194-7938-20e0-3b79-2ce3f1c61703	2021-05-26 21:20:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:20:35.952+03	2021-05-26 21:20:35.959+03	
e6f2a0b9-418b-09d1-c24f-e35f3a458fab	2021-05-26 21:20:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:20:56.951+03	2021-05-26 21:20:56.958+03	
e79e0488-3e7b-e9e2-7dd0-10eeaaf2f886	2021-05-26 21:21:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:21:16.951+03	2021-05-26 21:21:16.958+03	
4d9aa364-4d3c-82e9-4424-b42c33d11f16	2021-05-26 21:21:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:21:36.951+03	2021-05-26 21:21:36.958+03	
40f8edf2-f7e3-eadf-3c0c-2ab3832fcd7f	2021-05-26 21:21:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:21:56.951+03	2021-05-26 21:21:56.959+03	
d111b1ae-3324-31cf-ef1f-8721e72d68c5	2021-05-26 21:22:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:22:16.951+03	2021-05-26 21:22:16.96+03	
bc32adeb-f573-03f3-4dba-23d8c788bc24	2021-05-26 21:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:22:36.951+03	2021-05-26 21:22:36.959+03	
cd521777-613b-a6e9-caae-a5b52e24ad7c	2021-05-26 21:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:22:56.951+03	2021-05-26 21:22:56.958+03	
a103fb89-c220-45cc-0a60-28791881bb41	2021-05-26 21:23:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:23:16.951+03	2021-05-26 21:23:16.96+03	
54d319c4-60e8-7a2c-bbc4-3cc61ea4ff17	2021-05-26 21:23:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:23:36.951+03	2021-05-26 21:23:36.959+03	
4cc9fd5e-90b4-597a-6d0b-d8dd35aa9d14	2021-05-26 21:23:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:23:56.951+03	2021-05-26 21:23:56.959+03	
c7c0dcc5-b179-e873-bac5-902ec5176b45	2021-05-26 21:24:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:24:16.951+03	2021-05-26 21:24:16.959+03	
151dd039-0e14-08b0-05cb-04faa47fd7fe	2021-05-26 21:24:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:24:36.951+03	2021-05-26 21:24:36.961+03	
49719f67-72d0-2e05-5def-26eda1306a72	2021-05-26 21:24:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:24:56.951+03	2021-05-26 21:24:56.959+03	
83c35875-2d2a-6701-2b62-e8efd0a6fa2f	2021-05-26 21:25:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:25:16.951+03	2021-05-26 21:25:16.96+03	
2e7c0835-f8a9-5c9c-b9a2-72baecad6751	2021-05-26 21:25:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:25:36.951+03	2021-05-26 21:25:36.96+03	
b7c7348a-da22-8a6c-4225-c60006c09ca5	2021-05-26 21:25:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:25:56.951+03	2021-05-26 21:25:56.959+03	
36232b10-fd95-5705-2e87-8595be8e78c0	2021-05-26 21:26:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:26:16.951+03	2021-05-26 21:26:16.959+03	
848794a8-8ab6-77c0-e6f5-41d9e3ba924e	2021-05-26 21:26:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:26:36.951+03	2021-05-26 21:26:36.959+03	
782cc1b4-bbea-0eff-848b-d7fd6c734831	2021-05-26 21:26:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:26:56.951+03	2021-05-26 21:26:56.958+03	
8f318eb3-b18b-36d0-a0f1-7e690a7132af	2021-05-26 21:27:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:27:16.951+03	2021-05-26 21:27:16.958+03	
e50fda74-41fc-37f7-11e0-5307a0138da1	2021-05-26 21:27:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:27:36.951+03	2021-05-26 21:27:36.959+03	
1753cd3f-3e16-39f7-72d0-0d758ee602e8	2021-05-26 21:27:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:27:56.951+03	2021-05-26 21:27:56.958+03	
da32ed4b-4a1e-bbd8-8dc2-acfd74951235	2021-05-26 21:28:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:28:16.952+03	2021-05-26 21:28:16.961+03	
8157dab0-2c83-9d93-1787-f8e1ba0a730e	2021-05-26 21:28:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:28:37.951+03	2021-05-26 21:28:37.959+03	
37ce1c87-99ff-2e25-8980-2059457ea2d9	2021-05-26 21:28:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:28:57.952+03	2021-05-26 21:28:57.962+03	
dfea5824-976c-cc59-1791-b8f7c06a2cb7	2021-05-26 21:29:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:29:18.951+03	2021-05-26 21:29:18.96+03	
d765799e-7ce3-16fb-c1a1-2ab23fe01e79	2021-05-26 21:29:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:29:38.951+03	2021-05-26 21:29:38.961+03	
7029f895-44b7-5f65-dfcf-6dc2a98e3adc	2021-05-26 21:29:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:29:58.951+03	2021-05-26 21:29:58.959+03	
7b311dfc-48ee-d026-6e82-66782eee9557	2021-05-26 21:30:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:30:08.951+03	2021-05-26 21:30:08.959+03	
7a7fe5c3-52ea-b2c0-ca3e-6c4977a58806	2021-05-26 21:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:28:06.951+03	2021-05-26 21:28:06.958+03	
571e655e-f37c-4b61-5495-8672ced4aa0f	2021-05-26 21:28:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:28:27.951+03	2021-05-26 21:28:27.959+03	
fd71119b-edea-c1e5-a9c6-abd5ae73cc3c	2021-05-26 21:28:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:28:47.951+03	2021-05-26 21:28:47.959+03	
6404238e-b3bb-4003-bbcf-2b1c567d30d5	2021-05-26 21:29:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:29:08.951+03	2021-05-26 21:29:08.959+03	
f33595e4-5426-ea96-d05f-4d0bc5bc9cfe	2021-05-26 21:29:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:29:28.951+03	2021-05-26 21:29:28.96+03	
d7ebe52d-4a03-4698-84d4-fcdcee6cdab3	2021-05-26 21:29:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:29:48.951+03	2021-05-26 21:29:48.958+03	
e035de90-9421-cb6e-d5c6-53d1b9d7e2e1	2021-05-26 21:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 21:30:00.951+03	2021-05-26 21:30:00.956+03	ERROR
65b5d45c-8c39-3cbd-8267-5bb72ca39e30	2021-05-26 21:30:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:30:18.951+03	2021-05-26 21:30:18.96+03	
74dfa180-f184-e522-b0d2-8b205ab1198f	2021-05-26 21:30:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:30:38.951+03	2021-05-26 21:30:38.959+03	
fde0f71a-9ff0-8d95-756d-5a70853d8c64	2021-05-26 21:30:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:30:58.951+03	2021-05-26 21:30:58.958+03	
53232d90-7a00-f147-d739-eed121583e6a	2021-05-26 21:31:18.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:31:18.952+03	2021-05-26 21:31:18.959+03	
f3e88d09-6680-0f06-9ac9-2ddf5e344b93	2021-05-26 21:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:31:39.951+03	2021-05-26 21:31:39.961+03	
f315151c-6e52-7d03-a55e-a52aeb75eb73	2021-05-26 21:31:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:31:59.951+03	2021-05-26 21:31:59.958+03	
8cb1273d-34e8-ce4f-3e7a-66a308906625	2021-05-26 21:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:32:19.951+03	2021-05-26 21:32:19.958+03	
363cad56-dc44-5036-c869-36b0cbfa70ef	2021-05-26 21:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:32:39.951+03	2021-05-26 21:32:39.959+03	
7de6f5ba-06b5-7400-3258-68ac38e9acb8	2021-05-26 21:32:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:32:59.952+03	2021-05-26 21:32:59.96+03	
f7cf2f10-00f4-a304-c3d0-a5d17ea9186c	2021-05-26 21:33:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:33:20.951+03	2021-05-26 21:33:20.958+03	
c2ce1a64-fb53-e0c8-1613-192f58df06da	2021-05-26 21:33:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:33:40.951+03	2021-05-26 21:33:40.959+03	
66bbcf41-3ce1-cd19-6d17-993f154bba74	2021-05-26 21:34:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:34:00.951+03	2021-05-26 21:34:00.959+03	
a7d8aee6-69c1-7563-ec10-194607d2655d	2021-05-26 21:34:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:34:20.951+03	2021-05-26 21:34:20.96+03	
227ae1d0-2c0e-56d1-afd4-6215b1c2e846	2021-05-26 21:34:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:34:40.951+03	2021-05-26 21:34:40.96+03	
72f5af17-0662-7c5a-bad0-8433f413a666	2021-05-26 21:35:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:35:00.951+03	2021-05-26 21:35:00.958+03	
343908c8-a15c-febf-3fb8-abb17ffc8c00	2021-05-26 21:35:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:35:20.951+03	2021-05-26 21:35:20.958+03	
620bb711-7732-875e-8f18-18dc83349104	2021-05-26 21:35:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:35:40.951+03	2021-05-26 21:35:40.961+03	
b1a561ea-a216-4a9f-c965-1466aa3ba351	2021-05-26 21:36:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:36:00.952+03	2021-05-26 21:36:00.959+03	
59f73ae2-562c-7d51-b077-6b557230b856	2021-05-26 21:36:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:36:21.951+03	2021-05-26 21:36:21.961+03	
3c6adc5e-56d0-6ea6-e81d-86fb2ae77d23	2021-05-26 21:36:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:36:41.951+03	2021-05-26 21:36:41.958+03	
8ee5bcdd-9f0a-d056-1e4a-47f91d285a91	2021-05-26 21:37:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:37:01.951+03	2021-05-26 21:37:01.958+03	
aeb23f48-411c-6cfd-3fc9-7c67b605d245	2021-05-26 21:37:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:37:21.951+03	2021-05-26 21:37:21.958+03	
904cf6f8-108a-c08a-0176-d4336839c48b	2021-05-26 21:37:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:37:41.951+03	2021-05-26 21:37:41.958+03	
eac7c092-d257-d3e5-7fe7-e4f8cc694e4c	2021-05-26 21:38:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:38:01.951+03	2021-05-26 21:38:01.959+03	
2e7cb7ae-f195-b4e4-43f0-f10cc218aa01	2021-05-26 21:38:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:38:21.951+03	2021-05-26 21:38:21.958+03	
ec9b73f4-5751-879c-0eae-85b31ef18d62	2021-05-26 21:38:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:38:41.951+03	2021-05-26 21:38:41.958+03	
40309360-4a2d-94a9-e34d-643b12ea7eb9	2021-05-26 21:39:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:39:02.951+03	2021-05-26 21:39:02.959+03	
7414243d-8dda-8d13-5dad-ed5d5c897b32	2021-05-26 21:39:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:39:23.951+03	2021-05-26 21:39:23.959+03	
64ecd754-f1e7-4e21-577b-0dfcd0705b9a	2021-05-26 21:39:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:39:43.951+03	2021-05-26 21:39:43.959+03	
5f92ba73-5cea-0096-5f0b-fa94af47e760	2021-05-26 21:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 21:40:00.951+03	2021-05-26 21:40:00.958+03	ERROR
0a75a3ee-f297-3cb4-8e0f-7614a0f45dcf	2021-05-26 21:40:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:40:13.951+03	2021-05-26 21:40:13.961+03	
e800914e-3166-d35d-6625-884df6760423	2021-05-26 21:40:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:40:33.951+03	2021-05-26 21:40:33.961+03	
28729dec-7cac-6f5d-509f-ac38870f701c	2021-05-26 21:40:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:40:53.951+03	2021-05-26 21:40:53.958+03	
b490bef9-9aeb-5608-648f-d72eb6710d87	2021-05-26 21:41:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:41:13.951+03	2021-05-26 21:41:13.958+03	
b96276c3-d2b6-840f-5b2a-08d6b3598256	2021-05-26 21:41:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:41:33.951+03	2021-05-26 21:41:33.958+03	
df64e6cd-507d-3df6-fa8e-3335daeb26e0	2021-05-26 21:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:41:53.951+03	2021-05-26 21:41:53.96+03	
03c118b8-e3ba-b9cf-a2bb-519cc31812cb	2021-05-26 21:42:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:42:13.951+03	2021-05-26 21:42:13.958+03	
2da5a73e-8aa5-2965-65de-c43edd8656fc	2021-05-26 21:42:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:42:33.951+03	2021-05-26 21:42:33.958+03	
9ff4f41f-27cf-ccc9-e327-47b6f169c357	2021-05-26 21:42:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:42:53.951+03	2021-05-26 21:42:53.958+03	
66374865-75e4-e901-95c7-e4abd4803eee	2021-05-26 21:43:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:43:13.951+03	2021-05-26 21:43:13.958+03	
2c2fb661-cef3-aa3b-837c-671c4dd70487	2021-05-26 21:43:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:43:33.951+03	2021-05-26 21:43:33.959+03	
cfc27906-da13-1a38-5d5b-6d771eb9418f	2021-05-26 21:43:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:43:53.951+03	2021-05-26 21:43:53.958+03	
8dbe8f60-308b-5f57-c881-89621687f2b4	2021-05-26 21:44:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:44:13.951+03	2021-05-26 21:44:13.958+03	
279c1aad-d702-195f-cace-df3417d9c3e1	2021-05-26 21:44:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:44:33.951+03	2021-05-26 21:44:33.958+03	
d66c4b26-cd42-272e-4444-70b041e67a67	2021-05-26 21:44:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:44:53.951+03	2021-05-26 21:44:53.957+03	
1280ba05-2f95-a186-a744-39047c4dfef4	2021-05-26 21:45:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:45:13.951+03	2021-05-26 21:45:13.958+03	
8d1fa37c-9a57-46b8-185e-d5d371db39d4	2021-05-26 21:45:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:45:33.951+03	2021-05-26 21:45:33.959+03	
151f0477-ee6d-173d-1225-7373d6df66cd	2021-05-26 21:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:45:53.951+03	2021-05-26 21:45:53.959+03	
b8f1704e-9c12-633d-60ee-0138367bcf87	2021-05-26 21:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:46:13.951+03	2021-05-26 21:46:13.959+03	
a1d4bbd9-7d48-54e1-3d8b-20f72c3ff6d8	2021-05-26 21:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:46:33.951+03	2021-05-26 21:46:33.961+03	
09838328-8452-f382-1a19-4ac67dd7833d	2021-05-26 21:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:46:53.951+03	2021-05-26 21:46:53.958+03	
5d42fca9-fd75-1107-1345-2cd1927552bc	2021-05-26 21:47:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:47:13.951+03	2021-05-26 21:47:13.959+03	
4f33e140-9d74-1478-58f4-4df64b1bdd5b	2021-05-26 21:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:47:33.951+03	2021-05-26 21:47:33.959+03	
c20c2b52-94c3-1539-2e88-465c68219a75	2021-05-26 21:47:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:47:53.951+03	2021-05-26 21:47:53.959+03	
7da25d7d-6dd2-7c94-1a17-022578520c2a	2021-05-26 21:48:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:48:13.951+03	2021-05-26 21:48:13.96+03	
8513c57d-b7a8-64e9-c922-0efdf58bc979	2021-05-26 21:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:48:33.951+03	2021-05-26 21:48:33.959+03	
ec892e36-eab7-1ff7-c2d8-f96119da060b	2021-05-26 21:30:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:30:28.951+03	2021-05-26 21:30:28.958+03	
7ee00eee-f62d-c9bd-053a-d4523e8bb926	2021-05-26 21:30:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:30:48.951+03	2021-05-26 21:30:48.961+03	
6ba1a685-7d6d-8cf8-7565-40fb4fd5c7a2	2021-05-26 21:31:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:31:08.951+03	2021-05-26 21:31:08.959+03	
9fa816e3-452a-be7b-978d-2b3458981a15	2021-05-26 21:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:31:29.951+03	2021-05-26 21:31:29.958+03	
39145467-a3d2-4212-7d21-4b18096feb0a	2021-05-26 21:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:31:49.951+03	2021-05-26 21:31:49.958+03	
cc60fdad-790e-40e5-fcc8-1c949e453470	2021-05-26 21:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:32:09.951+03	2021-05-26 21:32:09.959+03	
d6302b57-3e17-b713-5e16-c5ff7b2d007c	2021-05-26 21:32:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:32:29.951+03	2021-05-26 21:32:29.963+03	
88591771-6dcf-6422-f720-b71a59af9423	2021-05-26 21:32:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:32:49.951+03	2021-05-26 21:32:49.959+03	
721b6414-a7bf-d6cc-7ad9-52cd16548689	2021-05-26 21:33:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:33:10.951+03	2021-05-26 21:33:10.961+03	
dbd2d730-04c9-bc2a-0f7f-245d4a671c27	2021-05-26 21:33:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:33:30.951+03	2021-05-26 21:33:30.958+03	
2e24c9c8-3133-b197-bc84-294f5d294bf7	2021-05-26 21:33:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:33:50.951+03	2021-05-26 21:33:50.961+03	
d59a8d4a-c6c7-b461-173e-6389f8ecc9e7	2021-05-26 21:34:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:34:10.951+03	2021-05-26 21:34:10.959+03	
f076b7a7-ac34-6caf-6a21-00ccbe87914a	2021-05-26 21:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:34:30.951+03	2021-05-26 21:34:30.958+03	
489968f5-0239-9191-a0ed-62a7ef7248ec	2021-05-26 21:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:34:50.951+03	2021-05-26 21:34:50.959+03	
91150d6a-a013-081f-0a85-a32e963f0c5e	2021-05-26 21:35:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:35:10.951+03	2021-05-26 21:35:10.958+03	
418e1659-d781-1dbf-708e-8c823120f0dd	2021-05-26 21:35:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:35:30.951+03	2021-05-26 21:35:30.959+03	
ed637008-9b4a-135c-3c44-ae8f32adcbc0	2021-05-26 21:35:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:35:50.951+03	2021-05-26 21:35:50.959+03	
ce65e866-62b9-cdf3-aae9-e4225cbb229c	2021-05-26 21:36:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:36:10.952+03	2021-05-26 21:36:10.958+03	
2815f4fd-40b2-5b26-bd42-e4118b67b1cd	2021-05-26 21:36:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:36:31.951+03	2021-05-26 21:36:31.957+03	
5f67c7b8-5429-1176-f6ad-6afe05a6ef12	2021-05-26 21:36:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:36:51.951+03	2021-05-26 21:36:51.963+03	
a45d3e61-8faf-84ca-acec-bcb6ad3e0199	2021-05-26 21:37:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:37:11.951+03	2021-05-26 21:37:11.959+03	
c8fd5305-4fdf-b66f-c301-60a458e37283	2021-05-26 21:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:37:31.951+03	2021-05-26 21:37:31.958+03	
60958e4f-0d51-f84c-c403-904e3aa99f4c	2021-05-26 21:37:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:37:51.951+03	2021-05-26 21:37:51.959+03	
0629d229-ba43-83f7-3856-e6c233dbf353	2021-05-26 21:38:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:38:11.951+03	2021-05-26 21:38:11.958+03	
46c84de7-a3cd-de00-441a-21f47ca1f655	2021-05-26 21:38:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:38:31.951+03	2021-05-26 21:38:31.959+03	
79e984fb-00a8-f2ca-d8a9-4948075c777d	2021-05-26 21:38:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:38:51.952+03	2021-05-26 21:38:51.958+03	
f691b56c-595b-c519-1ccc-74091dcd818e	2021-05-26 21:39:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:39:12.952+03	2021-05-26 21:39:12.959+03	
bd4c6835-ae1a-c703-43eb-0335d7efe424	2021-05-26 21:39:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:39:33.951+03	2021-05-26 21:39:33.959+03	
7c5ad247-e471-ebfd-b413-189e6bf3695e	2021-05-26 21:39:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:39:53.951+03	2021-05-26 21:39:53.96+03	
dd279367-fad3-963c-b207-93d1f18d969b	2021-05-26 21:40:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:40:03.951+03	2021-05-26 21:40:03.96+03	
7b5e5631-73b1-6e2f-a472-5ce8688014be	2021-05-26 21:40:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:40:23.951+03	2021-05-26 21:40:23.959+03	
2654d8bb-0960-ab7d-d4a6-ce97fdf5d5a9	2021-05-26 21:40:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:40:43.951+03	2021-05-26 21:40:43.959+03	
271d3a35-11e0-fea0-ae44-2c89e374e6e7	2021-05-26 21:41:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:41:03.951+03	2021-05-26 21:41:03.957+03	
c455fa08-3793-60b1-b242-193c068a1d4c	2021-05-26 21:41:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:41:23.951+03	2021-05-26 21:41:23.958+03	
96a8f418-adf6-c40f-c9a1-1a88f721e9df	2021-05-26 21:41:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:41:43.951+03	2021-05-26 21:41:43.958+03	
26335238-dee6-ddd6-2cd3-c6eb781d3a38	2021-05-26 21:42:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:42:03.951+03	2021-05-26 21:42:03.958+03	
ea2a9957-9609-598a-2e19-e2a99f213f57	2021-05-26 21:42:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:42:23.951+03	2021-05-26 21:42:23.958+03	
ad203921-46e6-bad4-f0ea-1195e1b41957	2021-05-26 21:42:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:42:43.951+03	2021-05-26 21:42:43.958+03	
5dc88d77-b1f9-82ae-17c9-99b7b8ffa6b9	2021-05-26 21:43:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:43:03.951+03	2021-05-26 21:43:03.958+03	
f1b272b7-92ee-ac41-9a75-5e68f6f0715b	2021-05-26 21:43:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:43:23.951+03	2021-05-26 21:43:23.958+03	
1cf59075-b058-09f2-2bca-d2370ae7ba1a	2021-05-26 21:43:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:43:43.951+03	2021-05-26 21:43:43.961+03	
47a54162-2206-3483-11d9-3b20b3ce60ff	2021-05-26 21:44:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:44:03.951+03	2021-05-26 21:44:03.958+03	
42a17d3d-2745-da1b-a503-268b85ed8ebb	2021-05-26 21:44:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:44:23.951+03	2021-05-26 21:44:23.959+03	
6da533d2-61af-a6cd-252c-5b023d992499	2021-05-26 21:44:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:44:43.951+03	2021-05-26 21:44:43.963+03	
73e15ac7-3382-94f6-14f6-21527b3a1bd9	2021-05-26 21:45:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:45:03.951+03	2021-05-26 21:45:03.958+03	
810afe7a-00f6-0419-bc1d-049136c65ad2	2021-05-26 21:45:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:45:23.951+03	2021-05-26 21:45:23.963+03	
b6cb8c29-c50a-68c5-8e43-ee94b471f38a	2021-05-26 21:45:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:45:43.951+03	2021-05-26 21:45:43.958+03	
21a9c462-ac37-2464-7076-b5449648be56	2021-05-26 21:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:46:03.951+03	2021-05-26 21:46:03.96+03	
fbb62b14-83ff-d38c-db9b-132831e372e0	2021-05-26 21:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:46:23.951+03	2021-05-26 21:46:23.958+03	
397cb914-5ef6-ca90-23b1-68bb8dc272aa	2021-05-26 21:46:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:46:43.951+03	2021-05-26 21:46:43.96+03	
bee1fc81-6f7d-7916-4eaf-6974e103b8f8	2021-05-26 21:47:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:47:03.951+03	2021-05-26 21:47:03.957+03	
11dc38c4-a486-d04a-5516-aa96bf9458c8	2021-05-26 21:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:47:23.951+03	2021-05-26 21:47:23.96+03	
31474b87-7ec2-1bf6-bde4-b9b0c47f106a	2021-05-26 21:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:47:43.951+03	2021-05-26 21:47:43.958+03	
d604019c-89c7-d0e8-9b92-576bca15b44a	2021-05-26 21:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:48:03.951+03	2021-05-26 21:48:03.958+03	
17f45813-2d64-ab07-be42-075656d79f28	2021-05-26 21:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:48:23.951+03	2021-05-26 21:48:23.958+03	
410de5e8-c897-e800-7a27-fe02908e3b2e	2021-05-26 21:48:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:48:43.951+03	2021-05-26 21:48:43.958+03	
f5e0e332-806e-86b9-0711-116577f3110c	2021-05-26 21:49:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:49:03.951+03	2021-05-26 21:49:03.958+03	
fd8c909a-6aeb-83c5-15d7-77fbc11b9af6	2021-05-26 21:49:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:49:24.951+03	2021-05-26 21:49:24.958+03	
60fbea7f-1f48-f795-4416-c9428c462e8b	2021-05-26 21:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:49:44.951+03	2021-05-26 21:49:44.958+03	
b54f5d2e-bfa8-30c8-0ce2-59a6fe12dfac	2021-05-26 21:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 21:50:00.951+03	2021-05-26 21:50:00.997+03	ERROR
0fea7e08-f77d-5947-e291-44de720f485e	2021-05-26 21:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:50:14.951+03	2021-05-26 21:50:14.958+03	
6cdbf30f-2c73-8ac6-9d47-721bbd08e043	2021-05-26 21:50:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:50:34.951+03	2021-05-26 21:50:34.958+03	
a89a1c3b-2960-ed49-a9f5-93ad04f2e123	2021-05-26 21:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:50:54.951+03	2021-05-26 21:50:54.959+03	
c43cdb87-6cc7-2262-f800-8b1914e07830	2021-05-26 21:48:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:48:53.951+03	2021-05-26 21:48:53.96+03	
c3a32ff7-f620-2386-6969-66f74ff21291	2021-05-26 21:49:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:49:13.952+03	2021-05-26 21:49:13.959+03	
4eb562b9-8788-7b78-dc28-be7d6d9662aa	2021-05-26 21:49:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:49:34.951+03	2021-05-26 21:49:34.959+03	
c620976e-6190-9bd3-7d0c-78fa8dc8e33c	2021-05-26 21:49:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:49:54.951+03	2021-05-26 21:49:54.96+03	
81802d25-c2bf-bb96-1990-b828bced8fb8	2021-05-26 21:50:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:50:04.951+03	2021-05-26 21:50:04.958+03	
58eb727e-d524-3693-b1cd-06b3695eb733	2021-05-26 21:50:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:50:24.951+03	2021-05-26 21:50:24.958+03	
60239fbe-e959-a87c-4a8b-60e66fdc5b11	2021-05-26 21:50:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:50:44.951+03	2021-05-26 21:50:44.959+03	
b5d7f7ce-5bb7-bec0-377e-b93a28dc1ff7	2021-05-26 21:51:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:51:04.951+03	2021-05-26 21:51:04.957+03	
e1c5a339-04ca-c5db-577a-4270f48654f4	2021-05-26 21:51:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:51:24.951+03	2021-05-26 21:51:24.959+03	
a2de4094-7a09-0aa3-a1df-b38a71d42125	2021-05-26 21:51:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:51:44.951+03	2021-05-26 21:51:44.958+03	
dc457ab3-379a-257c-3d25-b4c315e3e019	2021-05-26 21:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:52:04.951+03	2021-05-26 21:52:04.958+03	
b9ac3ebf-2464-0a6f-6a0a-68a78e7b0416	2021-05-26 21:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:52:24.951+03	2021-05-26 21:52:24.959+03	
47fa8d61-dcee-67fe-9598-cf0e1f737882	2021-05-26 21:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:52:44.951+03	2021-05-26 21:52:44.958+03	
7c88414d-e377-4935-79ef-8d11ba70b55b	2021-05-26 21:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:53:04.951+03	2021-05-26 21:53:04.96+03	
4ab062e9-c40d-d9cd-79c0-ee0f41551e65	2021-05-26 21:53:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:53:24.951+03	2021-05-26 21:53:24.959+03	
e3b06fef-fdba-cfe3-5f72-5d50ee76e737	2021-05-26 21:53:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:53:44.951+03	2021-05-26 21:53:44.962+03	
37ea0d86-58e1-4b12-08d3-e4768a92c354	2021-05-26 21:54:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:54:04.951+03	2021-05-26 21:54:04.959+03	
d61dd846-cb12-4a75-a41f-c83cc2e40c38	2021-05-26 21:54:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:54:24.951+03	2021-05-26 21:54:24.959+03	
ffc91bdb-70c5-7312-17c0-67e629d91a07	2021-05-26 21:54:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:54:44.951+03	2021-05-26 21:54:44.959+03	
54e28503-58ab-4bc5-09b1-c60ba37e2c95	2021-05-26 21:55:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:55:04.951+03	2021-05-26 21:55:04.958+03	
e0139475-6664-f39b-d534-592fcab8071a	2021-05-26 21:55:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:55:25.952+03	2021-05-26 21:55:25.958+03	
19d90d80-469b-7235-2cb4-de000f157f04	2021-05-26 21:55:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:55:46.951+03	2021-05-26 21:55:46.96+03	
90cb2358-ff97-5cad-4705-f0c0f42bfcec	2021-05-26 21:56:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:56:06.951+03	2021-05-26 21:56:06.96+03	
d0371c0d-d0fb-92d0-103e-6cf931bfc63e	2021-05-26 21:56:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:56:26.952+03	2021-05-26 21:56:26.959+03	
478c008e-0d8a-7fe9-b6e4-e185a7eb6ce0	2021-05-26 21:56:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:56:47.952+03	2021-05-26 21:56:47.959+03	
addbee77-d876-0b2a-7ed4-878532c4b27a	2021-05-26 21:57:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:57:07.952+03	2021-05-26 21:57:07.959+03	
ce119a41-c2c4-74c7-607e-7cf14781eab3	2021-05-26 21:57:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:57:28.951+03	2021-05-26 21:57:28.959+03	
6a48d7cb-c0d9-39cd-4f44-7741d9cdbaea	2021-05-26 21:57:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:57:48.951+03	2021-05-26 21:57:48.959+03	
74a066b5-2804-d3d2-7a08-eb647ed45633	2021-05-26 21:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:58:08.951+03	2021-05-26 21:58:08.959+03	
68fb9dca-8210-70b2-8ca5-0ff49c1eeb37	2021-05-26 21:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:58:28.951+03	2021-05-26 21:58:28.958+03	
8ba206fe-5659-3db6-bb0c-2338beac44cf	2021-05-26 21:58:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:58:48.951+03	2021-05-26 21:58:48.96+03	
458dfb7c-cbef-108d-c864-f0a09df877da	2021-05-26 21:59:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:59:08.951+03	2021-05-26 21:59:08.959+03	
8f965889-74f5-08e8-4142-227d92d4b5e1	2021-05-26 21:59:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:59:28.951+03	2021-05-26 21:59:28.958+03	
448043b8-0d41-5581-bb9a-7fe02d7555ac	2021-05-26 21:59:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:59:48.951+03	2021-05-26 21:59:48.957+03	
2a395306-3928-d71a-f0cd-6700b9973649	2021-05-26 22:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 22:00:00.951+03	2021-05-26 22:00:00.958+03	ERROR
7b827d45-6e47-1728-7c69-940fdf2cbae8	2021-05-26 22:00:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:00:18.951+03	2021-05-26 22:00:18.96+03	
0e8a5f01-ed65-ad44-32f5-8cd4b9b24a31	2021-05-26 22:00:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:00:38.951+03	2021-05-26 22:00:38.959+03	
78b4c8dd-7b3e-0f78-e782-6e7580a41539	2021-05-26 22:00:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:00:58.951+03	2021-05-26 22:00:58.958+03	
4f978c66-56b1-c514-f29c-9a5d846b0e85	2021-05-26 22:01:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:01:18.951+03	2021-05-26 22:01:18.959+03	
516f1ed2-24fc-67c9-e767-f3aed46abd07	2021-05-26 22:01:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:01:38.951+03	2021-05-26 22:01:38.96+03	
07914ec7-e519-4841-e031-3e0560aa1ba3	2021-05-26 22:01:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:01:58.951+03	2021-05-26 22:01:58.958+03	
d42f249b-3d63-5522-fc4c-22949e525afb	2021-05-26 22:02:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:02:18.951+03	2021-05-26 22:02:18.958+03	
2466196f-f226-9141-d808-61ee14659b88	2021-05-26 22:02:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:02:38.951+03	2021-05-26 22:02:38.959+03	
c6132912-1667-3219-54aa-d265317ef986	2021-05-26 22:02:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:02:58.951+03	2021-05-26 22:02:58.958+03	
70148f0c-756c-c250-3a1a-5d4460ae6f23	2021-05-26 22:03:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:03:19.951+03	2021-05-26 22:03:19.961+03	
811240dd-527f-c64a-c7ef-f96d76f131a4	2021-05-26 22:03:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:03:40.951+03	2021-05-26 22:03:40.961+03	
b1b217d2-102c-d5eb-7417-3f361849db2a	2021-05-26 22:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:04:00.951+03	2021-05-26 22:04:00.958+03	
3902b055-16f9-0370-e3ea-d87d90f299d6	2021-05-26 22:04:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:04:20.951+03	2021-05-26 22:04:20.958+03	
72d234a0-9028-5ff1-7a3f-60d552a62072	2021-05-26 22:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:04:40.951+03	2021-05-26 22:04:40.959+03	
d389ff41-edb5-52ef-28f5-b8769180cc24	2021-05-26 22:05:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:05:00.951+03	2021-05-26 22:05:00.959+03	
aa544af9-8889-47d0-effd-825352123815	2021-05-26 22:05:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:05:20.951+03	2021-05-26 22:05:20.959+03	
9c2660b7-373a-7b77-9ed0-7b81d83f6c96	2021-05-26 22:05:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:05:40.951+03	2021-05-26 22:05:40.958+03	
101d7f25-1049-87bc-3b07-b5b591244d3d	2021-05-26 22:06:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:06:00.951+03	2021-05-26 22:06:00.962+03	
cb248acd-baa1-6b78-1957-088ebf15d6dc	2021-05-26 22:06:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:06:20.951+03	2021-05-26 22:06:20.963+03	
8fc8c7e3-ae9d-0228-2e91-69ef9d8cf374	2021-05-26 22:06:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:06:40.951+03	2021-05-26 22:06:40.959+03	
6bcd0e7f-23bf-d598-d921-6052bbe89721	2021-05-26 22:07:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:07:00.951+03	2021-05-26 22:07:00.967+03	
7d63a253-af99-a932-dcdc-9ed8f65e4a04	2021-05-26 22:07:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:07:20.951+03	2021-05-26 22:07:20.959+03	
e38d7eba-5bdb-b050-8f75-7f922016858f	2021-05-26 22:07:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:07:40.952+03	2021-05-26 22:07:40.958+03	
65ab0df1-ed44-2835-8ce0-7e9017ee4913	2021-05-26 22:08:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:08:01.951+03	2021-05-26 22:08:01.959+03	
7e650dd9-c64c-64c5-b58d-c6d941e67cca	2021-05-26 22:08:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:08:21.951+03	2021-05-26 22:08:21.959+03	
2b593717-ffbb-9477-13c9-1a05b45e76c4	2021-05-26 22:08:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:08:41.951+03	2021-05-26 22:08:41.959+03	
0105a4ed-2d3d-5e43-4d7c-a61c852e8035	2021-05-26 22:09:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:09:01.951+03	2021-05-26 22:09:01.96+03	
6489435e-c70d-6821-4ec2-a2abbbe78a3d	2021-05-26 22:09:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:09:21.951+03	2021-05-26 22:09:21.958+03	
3cc1e33a-c9e2-c4a2-61cb-3372c099b582	2021-05-26 21:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:51:14.951+03	2021-05-26 21:51:14.959+03	
15f8e2bd-da10-da9c-3135-d33adc12a005	2021-05-26 21:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:51:34.951+03	2021-05-26 21:51:34.96+03	
7f737862-f5e9-bdec-c658-f55d590f5f5b	2021-05-26 21:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:51:54.951+03	2021-05-26 21:51:54.959+03	
3ef23a74-e733-54da-0b72-9895231ef86d	2021-05-26 21:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:52:14.951+03	2021-05-26 21:52:14.962+03	
7dbab290-8945-64c0-2768-80b57a3e1330	2021-05-26 21:52:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:52:34.951+03	2021-05-26 21:52:34.959+03	
e812025d-e1d3-0cca-8283-e1dd479e6bc8	2021-05-26 21:52:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:52:54.951+03	2021-05-26 21:52:54.96+03	
2f174219-4e75-3740-c32e-9fcfca1259ca	2021-05-26 21:53:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:53:14.951+03	2021-05-26 21:53:14.958+03	
c5d76b3c-7ad6-6710-3895-74ebbfcb582f	2021-05-26 21:53:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:53:34.951+03	2021-05-26 21:53:34.958+03	
bf2e7af6-292c-83cd-9b21-31fad09da94d	2021-05-26 21:53:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:53:54.951+03	2021-05-26 21:53:54.959+03	
d1dd8fe1-73b1-d9f9-70ed-45b9ed04971c	2021-05-26 21:54:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:54:14.951+03	2021-05-26 21:54:14.959+03	
5851c029-ef25-8268-6c24-ce4103447339	2021-05-26 21:54:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:54:34.951+03	2021-05-26 21:54:34.959+03	
4aa46b1a-b0e0-236a-bf52-c210bfba1095	2021-05-26 21:54:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:54:54.951+03	2021-05-26 21:54:54.96+03	
14dc31ce-5c29-3d8d-cfeb-5845520e6419	2021-05-26 21:55:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:55:14.952+03	2021-05-26 21:55:14.965+03	
f60e252a-9699-2860-8b93-132cf3463250	2021-05-26 21:55:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:55:36.951+03	2021-05-26 21:55:36.959+03	
28c7ce16-26cc-6eb4-67cb-1aba2819dd2d	2021-05-26 21:55:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:55:56.951+03	2021-05-26 21:55:56.957+03	
14a23e38-e4e1-473f-3352-19f40e9703b8	2021-05-26 21:56:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:56:16.951+03	2021-05-26 21:56:16.964+03	
d8b7c47f-a005-f44e-74eb-188940d8da3e	2021-05-26 21:56:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:56:37.951+03	2021-05-26 21:56:37.96+03	
da10392b-69ca-c97c-56ff-e8f1f9a28a2c	2021-05-26 21:56:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:56:57.952+03	2021-05-26 21:56:57.959+03	
d699615a-8c7c-c75d-1b76-aadc518b33c8	2021-05-26 21:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:57:18.951+03	2021-05-26 21:57:18.963+03	
de724cb2-2b67-1bb2-efc6-86d47874fff2	2021-05-26 21:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:57:38.951+03	2021-05-26 21:57:38.961+03	
7466e426-bdb1-6544-2387-56ca3b359bb2	2021-05-26 21:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:57:58.951+03	2021-05-26 21:57:58.958+03	
4a6a5876-10dc-aa7f-cacc-1ad72d62bc26	2021-05-26 21:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:58:18.951+03	2021-05-26 21:58:18.959+03	
23573303-4a7d-c85a-54ee-812086278414	2021-05-26 21:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:58:38.951+03	2021-05-26 21:58:38.961+03	
0fc79c17-0601-4011-b069-f161486fe78f	2021-05-26 21:58:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:58:58.951+03	2021-05-26 21:58:58.958+03	
e6ced3bb-d1dd-48df-dcf6-3994ccdde392	2021-05-26 21:59:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:59:18.951+03	2021-05-26 21:59:18.962+03	
ada6559c-45f9-bcf1-313a-c8df3fd08d37	2021-05-26 21:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:59:38.951+03	2021-05-26 21:59:38.958+03	
ba6dfd85-9133-3932-4305-5ff03002b53a	2021-05-26 21:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 21:59:58.951+03	2021-05-26 21:59:58.959+03	
fa15054b-14fb-e6a1-4dbe-cb5fd1d57fa3	2021-05-26 22:00:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:00:08.951+03	2021-05-26 22:00:08.96+03	
25466da1-0d72-ce55-21ac-111692121368	2021-05-26 22:00:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:00:28.951+03	2021-05-26 22:00:28.957+03	
1835218e-b98a-713f-d89d-a868d55a5dce	2021-05-26 22:00:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:00:48.951+03	2021-05-26 22:00:48.958+03	
8b709b8e-5b8b-793c-ad54-ed2ed9f78623	2021-05-26 22:01:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:01:08.951+03	2021-05-26 22:01:08.958+03	
0e184bf1-110c-394e-f7de-eb2c9b424ae9	2021-05-26 22:01:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:01:28.951+03	2021-05-26 22:01:28.958+03	
b2e964d4-9528-439c-8080-683fec890f1c	2021-05-26 22:01:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:01:48.951+03	2021-05-26 22:01:48.958+03	
5fccd45d-e985-93ba-8883-de2a1dce467b	2021-05-26 22:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:02:08.951+03	2021-05-26 22:02:08.958+03	
92a96606-84cf-8d1c-b60f-c53ade3edfed	2021-05-26 22:02:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:02:28.951+03	2021-05-26 22:02:28.957+03	
f3587832-bb63-4da6-b2d5-fda7f3d5fff4	2021-05-26 22:02:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:02:48.951+03	2021-05-26 22:02:48.959+03	
deb34ab8-6a33-0170-abe5-6aa62e375f8b	2021-05-26 22:03:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:03:08.952+03	2021-05-26 22:03:08.959+03	
62b2c07a-c765-0bb7-250c-449347313b0b	2021-05-26 22:03:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:03:29.952+03	2021-05-26 22:03:29.958+03	
259fce9f-bbac-b2e9-187b-e84c27e0a663	2021-05-26 22:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:03:50.951+03	2021-05-26 22:03:50.959+03	
75c463be-32d8-f177-d62c-84c9302099aa	2021-05-26 22:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:04:10.951+03	2021-05-26 22:04:10.959+03	
32149089-7ef5-56ca-5266-6f5301a28c3b	2021-05-26 22:04:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:04:30.951+03	2021-05-26 22:04:30.959+03	
65d81c24-7761-9845-5db7-d577bc08d6cd	2021-05-26 22:04:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:04:50.951+03	2021-05-26 22:04:50.959+03	
d4bba71f-1bf1-b8dd-e803-738884c4665d	2021-05-26 22:05:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:05:10.951+03	2021-05-26 22:05:10.958+03	
39e957ad-5c24-f22e-0972-9577764e1df8	2021-05-26 22:05:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:05:30.951+03	2021-05-26 22:05:30.958+03	
99ea5b8c-0ed3-b1bd-76f0-ade5121192af	2021-05-26 22:05:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:05:50.951+03	2021-05-26 22:05:50.958+03	
83d71430-0e55-756c-c759-c893b3f26993	2021-05-26 22:06:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:06:10.951+03	2021-05-26 22:06:10.96+03	
8cf210ee-c873-71b5-c8de-70079513e245	2021-05-26 22:06:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:06:30.951+03	2021-05-26 22:06:30.958+03	
5f6198cd-f77a-ea38-678d-d7d97b304424	2021-05-26 22:06:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:06:50.951+03	2021-05-26 22:06:50.959+03	
e823a506-9384-c019-a0b7-fbadb2b6bc76	2021-05-26 22:07:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:07:10.951+03	2021-05-26 22:07:10.959+03	
17f80f89-4c1f-5ea5-4dec-b0d4b8453500	2021-05-26 22:07:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:07:30.951+03	2021-05-26 22:07:30.961+03	
194d26fe-753a-97ae-1413-15606bd3b354	2021-05-26 22:07:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:07:51.951+03	2021-05-26 22:07:51.96+03	
ddc78b9e-aabb-b346-454b-8ffe0d2427f3	2021-05-26 22:08:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:08:11.951+03	2021-05-26 22:08:11.959+03	
0d5933fe-a336-fa53-683d-1cff977a316f	2021-05-26 22:08:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:08:31.951+03	2021-05-26 22:08:31.96+03	
0efb1a04-034c-6d34-c19b-cdfce4087c6d	2021-05-26 22:08:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:08:51.951+03	2021-05-26 22:08:51.96+03	
a3d2d89a-7398-dc66-e904-862607b51c9c	2021-05-26 22:09:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:09:11.951+03	2021-05-26 22:09:11.958+03	
e07a7fa4-2be4-6423-ce01-d9eb7ba11327	2021-05-26 22:09:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:09:31.951+03	2021-05-26 22:09:31.958+03	
3167e05b-0bbb-cb9f-7cbf-aeea9b02cbf6	2021-05-26 22:09:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:09:51.951+03	2021-05-26 22:09:51.959+03	
4e02bef5-bdbe-ae98-d9c5-4056d3664e71	2021-05-26 22:10:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:10:01.951+03	2021-05-26 22:10:01.96+03	
f6178701-2a2c-40a7-b4d1-869d97935150	2021-05-26 22:10:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:10:21.951+03	2021-05-26 22:10:21.96+03	
0c49ac01-538f-11dd-6003-9a50771ba0a3	2021-05-26 22:10:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:10:41.952+03	2021-05-26 22:10:41.96+03	
edf7d668-ff38-bdd6-66ca-6542edb69bef	2021-05-26 22:11:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:11:02.951+03	2021-05-26 22:11:02.961+03	
5778f9e9-f582-69a8-b914-2c102dbf107c	2021-05-26 22:11:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:11:22.952+03	2021-05-26 22:11:22.96+03	
3d31de8f-b679-2e87-ddd8-0777b264850c	2021-05-26 22:11:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:11:43.951+03	2021-05-26 22:11:43.959+03	
f42b69c3-855d-6b89-9f59-5d7ec9b4f93d	2021-05-26 22:09:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:09:41.951+03	2021-05-26 22:09:41.958+03	
2906c798-b6f5-ba54-f562-2c942be633f2	2021-05-26 22:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 22:10:00.951+03	2021-05-26 22:10:00.957+03	ERROR
5f93dab9-91c5-bb90-ace1-123e568a20a2	2021-05-26 22:10:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:10:11.951+03	2021-05-26 22:10:11.959+03	
3d7bb493-0406-a0e8-841a-d9138df9216f	2021-05-26 22:10:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:10:31.951+03	2021-05-26 22:10:31.957+03	
dc2dbd9c-6a3d-f0ef-f469-b0996a1b9ae1	2021-05-26 22:10:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:10:52.951+03	2021-05-26 22:10:52.959+03	
d5c10483-5bdb-2b61-4b20-dd058d72b77c	2021-05-26 22:11:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:11:12.952+03	2021-05-26 22:11:12.96+03	
4715c530-4d95-5635-c855-8fb68b9d4075	2021-05-26 22:11:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:11:33.951+03	2021-05-26 22:11:33.961+03	
f4f3b490-5994-e220-d39f-3b3a7ff2ace2	2021-05-26 22:11:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:11:53.951+03	2021-05-26 22:11:53.958+03	
627002f1-4d58-53db-6594-41cbca8d68ba	2021-05-26 22:12:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:12:13.952+03	2021-05-26 22:12:13.958+03	
6684503e-3f0d-c6ff-bce3-b55ea0a72d84	2021-05-26 22:12:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:12:34.951+03	2021-05-26 22:12:34.959+03	
9a1bbd3a-6784-6e35-2f98-4e6ddd08e5ed	2021-05-26 22:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:12:54.951+03	2021-05-26 22:12:54.959+03	
8099a1a4-b432-eedc-253d-cb067d32aa9a	2021-05-26 22:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:13:14.952+03	2021-05-26 22:13:14.96+03	
eac7333e-d7f8-3720-f6af-55e7b2c35f97	2021-05-26 22:13:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:13:35.951+03	2021-05-26 22:13:35.96+03	
1d452bd1-0248-8297-eef9-b6a701dc6584	2021-05-26 22:13:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:13:55.951+03	2021-05-26 22:13:55.958+03	
ee5c6c9e-3f31-cdf3-d198-262a316f5034	2021-05-26 22:14:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:14:15.951+03	2021-05-26 22:14:15.961+03	
89aeb308-074e-9df2-c66d-a9c785f56efb	2021-05-26 22:14:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:14:35.951+03	2021-05-26 22:14:35.958+03	
878b8436-ba0f-cc10-ddb2-6e5ed6e5bae7	2021-05-26 22:14:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:14:55.951+03	2021-05-26 22:14:55.958+03	
12a39f23-b578-fb5b-45cf-2ff8b0edf7cf	2021-05-26 22:15:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:15:15.951+03	2021-05-26 22:15:15.96+03	
5e9858d1-2968-5c11-a58b-5d64edd87297	2021-05-26 22:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:15:35.951+03	2021-05-26 22:15:35.958+03	
b96bf171-175b-217b-1b23-76b41aad3ead	2021-05-26 22:15:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:15:55.951+03	2021-05-26 22:15:55.958+03	
e10bb92e-6895-bee0-74dd-1635e7d2d365	2021-05-26 22:16:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:16:15.951+03	2021-05-26 22:16:15.958+03	
cffe7ffc-1f0e-2a61-078a-44502b7a0d27	2021-05-26 22:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:16:35.951+03	2021-05-26 22:16:35.959+03	
d389d201-5632-4e15-cb6f-24e9a56875fe	2021-05-26 22:16:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:16:55.951+03	2021-05-26 22:16:55.958+03	
f6f0b537-3754-36e3-c160-c81f06d34e87	2021-05-26 22:17:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:17:16.951+03	2021-05-26 22:17:16.96+03	
cd45656d-f719-0b58-4657-b5ac7aca39e1	2021-05-26 22:17:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:17:36.951+03	2021-05-26 22:17:36.958+03	
ba947f9c-09a0-fa53-6297-6065053291cd	2021-05-26 22:17:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:17:57.952+03	2021-05-26 22:17:57.96+03	
5e9779fd-63bc-b564-eaa9-1e715c4531f5	2021-05-26 22:18:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:18:18.951+03	2021-05-26 22:18:18.965+03	
74c9591d-fda1-1bd6-6cce-7d3ff18c3d12	2021-05-26 22:18:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:18:38.951+03	2021-05-26 22:18:38.959+03	
55fe9c55-b68c-8a46-82ae-2a61e1b9e323	2021-05-26 22:18:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:18:58.951+03	2021-05-26 22:18:58.959+03	
f94fbd68-ac11-a013-849e-14b6d4caad4c	2021-05-26 22:19:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:19:18.951+03	2021-05-26 22:19:18.959+03	
0694cbfb-e1d3-871b-cf70-6306fc62f1bf	2021-05-26 22:19:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:19:38.951+03	2021-05-26 22:19:38.958+03	
9853e4bd-2a09-5a47-89c0-4d7a3e01c8e5	2021-05-26 22:19:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:19:58.951+03	2021-05-26 22:19:58.959+03	
f0ce19bf-f43a-07f6-547a-e29ef9572dd6	2021-05-26 22:20:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:20:08.951+03	2021-05-26 22:20:08.958+03	
9bf9599d-f0d0-f8ae-4402-f1645a53bcb5	2021-05-26 22:20:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:20:28.951+03	2021-05-26 22:20:28.959+03	
3bf74445-a062-f00c-db91-1748c8207727	2021-05-26 22:20:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:20:48.951+03	2021-05-26 22:20:48.959+03	
af552440-afd1-4de1-272c-c8cdceda45a1	2021-05-26 22:21:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:21:08.951+03	2021-05-26 22:21:08.958+03	
bd3dc17b-05e9-facc-1649-2dcfb06138c5	2021-05-26 22:21:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:21:28.951+03	2021-05-26 22:21:28.958+03	
ead33f3e-0f40-18c7-1efa-877987adb79c	2021-05-26 22:21:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:21:48.951+03	2021-05-26 22:21:48.959+03	
93d0ea7f-4bc0-205c-b8dd-4234304d5b3e	2021-05-26 22:22:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:22:08.951+03	2021-05-26 22:22:08.958+03	
d276bbcd-21c7-38fe-2aa6-63a564ceda83	2021-05-26 22:22:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:22:28.951+03	2021-05-26 22:22:28.961+03	
276bd0b2-14ee-2176-f319-02c304b6788a	2021-05-26 22:22:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:22:48.952+03	2021-05-26 22:22:48.958+03	
fa50cac5-88cf-1ca0-56af-80fcaf01454d	2021-05-26 22:23:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:23:09.951+03	2021-05-26 22:23:09.957+03	
e063c94a-aa6f-6154-be66-a5fb409c6d6f	2021-05-26 22:23:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:23:29.951+03	2021-05-26 22:23:29.958+03	
1228207c-05e2-84ff-260f-91e4259602db	2021-05-26 22:23:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:23:49.951+03	2021-05-26 22:23:49.96+03	
c4f1c341-12f3-f392-a8af-1efa6d11fbf3	2021-05-26 22:24:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:24:09.951+03	2021-05-26 22:24:09.959+03	
e1e77e74-f346-aea5-3e85-4203a4e58134	2021-05-26 22:24:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:24:29.951+03	2021-05-26 22:24:29.96+03	
a643b82a-3bd4-3375-7804-d1bc25dd5be4	2021-05-26 22:24:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:24:49.951+03	2021-05-26 22:24:49.959+03	
2198c1cf-dfc8-d18a-4985-905f894d337f	2021-05-26 22:25:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:25:09.951+03	2021-05-26 22:25:09.958+03	
63a8a388-76a4-ebb7-ba3b-f7655eccbe66	2021-05-26 22:25:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:25:30.951+03	2021-05-26 22:25:30.958+03	
d48ab842-6e1f-e144-dd10-e27244c7cc36	2021-05-26 22:25:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:25:50.952+03	2021-05-26 22:25:51.016+03	
a578682e-3712-8666-af53-df1638c6e233	2021-05-26 22:26:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:26:11.951+03	2021-05-26 22:26:11.958+03	
65af1598-53b5-411a-1c03-86e61f93ae28	2021-05-26 22:26:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:26:32.951+03	2021-05-26 22:26:32.963+03	
d0732812-523d-1e14-b21c-fabe48dee28a	2021-05-26 22:26:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:26:52.952+03	2021-05-26 22:26:52.96+03	
1f41a8f5-81ef-82c3-9b02-f8f274d4d802	2021-05-26 22:27:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:27:14.951+03	2021-05-26 22:27:14.962+03	
47036ea3-15c7-1a35-04f6-fbcc676d91e3	2021-05-26 22:27:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:27:34.951+03	2021-05-26 22:27:34.959+03	
f5e44bfd-963e-ddce-0f3c-b9024c666e82	2021-05-26 22:27:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:27:54.951+03	2021-05-26 22:27:54.958+03	
73eee170-ee6e-b6f8-75c8-748d9264ec11	2021-05-26 22:28:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:28:15.951+03	2021-05-26 22:28:15.96+03	
c675e31e-df26-294b-3733-694bb7ff82a7	2021-05-26 22:28:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:28:35.952+03	2021-05-26 22:28:35.96+03	
cbaf6e81-6412-ddfb-d057-252321d71026	2021-05-26 22:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:28:56.951+03	2021-05-26 22:28:56.962+03	
81b7d924-fba0-1275-891c-cd8caeca0e03	2021-05-26 22:29:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:29:16.951+03	2021-05-26 22:29:16.961+03	
e658c24b-d6a5-a846-dc16-632bc86b632e	2021-05-26 22:29:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:29:36.951+03	2021-05-26 22:29:36.958+03	
0b9b8d9f-28c6-669c-cc55-211035104b5c	2021-05-26 22:29:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:29:56.951+03	2021-05-26 22:29:56.958+03	
854fa817-dfc6-dcdd-7278-9732eacaa74e	2021-05-26 22:30:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:30:06.951+03	2021-05-26 22:30:06.961+03	
67d35ef9-118d-ee98-429a-e871ace54673	2021-05-26 22:12:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:12:03.951+03	2021-05-26 22:12:03.96+03	
a9a3f898-fd60-0874-08b7-ef1545b44d83	2021-05-26 22:12:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:12:24.951+03	2021-05-26 22:12:24.959+03	
b5d7f06d-7dd3-7a70-49d8-608faa1155ed	2021-05-26 22:12:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:12:44.951+03	2021-05-26 22:12:44.958+03	
a21c9b10-9ef3-d4d3-425d-3b9004cd5458	2021-05-26 22:13:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:13:04.951+03	2021-05-26 22:13:04.959+03	
8ba8f9de-d397-9c0a-a835-819d091e8a49	2021-05-26 22:13:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:13:25.951+03	2021-05-26 22:13:25.96+03	
6dedf5da-dcb3-7138-c040-aca42cac2f92	2021-05-26 22:13:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:13:45.951+03	2021-05-26 22:13:45.958+03	
a336d7ca-1772-7a6a-2cd6-9bdce66632ca	2021-05-26 22:14:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:14:05.951+03	2021-05-26 22:14:05.958+03	
f27afec0-c12c-6ff2-7187-ccdd4e84f523	2021-05-26 22:14:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:14:25.951+03	2021-05-26 22:14:25.959+03	
9917f783-9b28-b853-edee-38e78470bc9f	2021-05-26 22:14:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:14:45.951+03	2021-05-26 22:14:45.958+03	
8f1ef066-2985-6917-0fc1-6ea4f904b241	2021-05-26 22:15:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:15:05.951+03	2021-05-26 22:15:05.959+03	
74e15246-bd7e-3bb0-883a-6ac6f28e5c00	2021-05-26 22:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:15:25.951+03	2021-05-26 22:15:25.958+03	
23df003b-05a2-9c25-d052-14ba2c6f61db	2021-05-26 22:15:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:15:45.951+03	2021-05-26 22:15:45.958+03	
a34ba1d7-7d94-0ec9-a8d2-f85d5ba1d493	2021-05-26 22:16:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:16:05.951+03	2021-05-26 22:16:05.958+03	
376f9112-f41e-2c9a-a109-9257e0db1668	2021-05-26 22:16:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:16:25.951+03	2021-05-26 22:16:25.958+03	
4ff2282c-5b8f-a8f8-5194-730df9746f96	2021-05-26 22:16:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:16:45.951+03	2021-05-26 22:16:45.958+03	
26ad49f6-085c-5e4b-e383-bedea0aad4fb	2021-05-26 22:17:05.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:17:05.952+03	2021-05-26 22:17:05.959+03	
a13a3d52-6352-d2a5-c5d2-a6fa1b49ecba	2021-05-26 22:17:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:17:26.951+03	2021-05-26 22:17:26.964+03	
428ca5a9-5cf2-82cb-e055-dcc65fd49333	2021-05-26 22:17:46.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:17:46.952+03	2021-05-26 22:17:46.959+03	
8afba788-9ba2-944a-ef44-ea24e88a58e0	2021-05-26 22:18:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:18:08.951+03	2021-05-26 22:18:08.958+03	
7f60e55a-84af-1954-348a-6db45d78a569	2021-05-26 22:18:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:18:28.951+03	2021-05-26 22:18:28.959+03	
98d7d366-7b3a-2a62-83b8-b34f1aa9e7d9	2021-05-26 22:18:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:18:48.951+03	2021-05-26 22:18:48.958+03	
8be605dc-0277-a36f-9b4d-6a0d6ca1d5ba	2021-05-26 22:19:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:19:08.951+03	2021-05-26 22:19:08.958+03	
4af32cb3-c9c8-bdb8-9565-b5c3220ef079	2021-05-26 22:19:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:19:28.951+03	2021-05-26 22:19:28.96+03	
4c0a00d0-c75f-384f-b6d3-e7fbfa287129	2021-05-26 22:19:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:19:48.951+03	2021-05-26 22:19:48.958+03	
2efbe315-5ed2-ae54-bc57-634ba7dbb141	2021-05-26 22:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 22:20:00.951+03	2021-05-26 22:20:00.959+03	ERROR
74065f10-53f0-6222-3d4b-b7b36bd7c702	2021-05-26 22:20:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:20:18.951+03	2021-05-26 22:20:18.961+03	
36dcc69a-75e2-bf76-451f-fb8ce443fb84	2021-05-26 22:20:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:20:38.951+03	2021-05-26 22:20:38.959+03	
40897895-38c2-7a9f-867a-63e0e91fdf8c	2021-05-26 22:20:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:20:58.951+03	2021-05-26 22:20:58.959+03	
970511ec-ff35-73c8-698f-cf46ffaf7321	2021-05-26 22:21:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:21:18.951+03	2021-05-26 22:21:18.958+03	
7cc028ba-8677-95c5-981d-545a19221cbe	2021-05-26 22:21:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:21:38.951+03	2021-05-26 22:21:38.959+03	
6b13fde5-9185-f0b3-1495-10b11d442614	2021-05-26 22:21:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:21:58.951+03	2021-05-26 22:21:58.96+03	
76da754c-809c-933a-a85e-4108212965fd	2021-05-26 22:22:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:22:18.951+03	2021-05-26 22:22:18.958+03	
6b53a313-71a5-42a9-b8fa-0854e0c4f72d	2021-05-26 22:22:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:22:38.951+03	2021-05-26 22:22:39.277+03	
3c232184-b9ee-32e8-f256-222c165caac4	2021-05-26 22:22:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:22:59.951+03	2021-05-26 22:22:59.958+03	
7f1320a7-44af-4307-5ec2-0fda991ccb02	2021-05-26 22:23:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:23:19.951+03	2021-05-26 22:23:19.961+03	
ab566e5e-f52b-60f5-db91-1baa28fd32fa	2021-05-26 22:23:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:23:39.951+03	2021-05-26 22:23:39.988+03	
94c2e06c-9e17-cdd5-8b62-89e136eedc8c	2021-05-26 22:23:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:23:59.951+03	2021-05-26 22:23:59.961+03	
cc920ebf-e21d-44a2-8c2e-65d46415531a	2021-05-26 22:24:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:24:19.951+03	2021-05-26 22:24:19.959+03	
8b23a84a-a98d-3e96-737d-0bcec6161b98	2021-05-26 22:24:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:24:39.951+03	2021-05-26 22:24:39.958+03	
abf7fc52-2eb8-3e70-ebec-d77cd37a25dc	2021-05-26 22:24:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:24:59.951+03	2021-05-26 22:24:59.96+03	
1a1156f2-e4de-5e8e-9036-0915a9db9abb	2021-05-26 22:25:19.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:25:19.952+03	2021-05-26 22:25:19.96+03	
a4681e2c-b7a6-05a3-6dc0-720f8f75c03a	2021-05-26 22:25:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:25:40.952+03	2021-05-26 22:25:40.96+03	
4a4c7143-1b80-8a9d-535d-c3e53eeebb06	2021-05-26 22:26:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:26:01.951+03	2021-05-26 22:26:01.962+03	
45d89064-fcc0-51cf-3d13-a6b43ffc9d30	2021-05-26 22:26:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:26:21.952+03	2021-05-26 22:26:21.959+03	
320d71a9-50ac-dafd-9f4c-e503d68f56a6	2021-05-26 22:26:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:26:42.952+03	2021-05-26 22:26:42.96+03	
a07aab58-53f0-0e45-8411-eabfc0a07eff	2021-05-26 22:27:03.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:27:03.952+03	2021-05-26 22:27:03.96+03	
caea1de3-1b98-f3f5-e38d-e0d4cd5a3189	2021-05-26 22:27:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:27:24.951+03	2021-05-26 22:27:24.959+03	
e91f1576-3f59-3f68-7989-717e253713ed	2021-05-26 22:27:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:27:44.951+03	2021-05-26 22:27:44.958+03	
85fa8198-f4a8-618c-bebf-919aa44034b4	2021-05-26 22:28:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:28:04.952+03	2021-05-26 22:28:04.96+03	
af0ada3c-8e04-bd87-2435-147e177d2918	2021-05-26 22:28:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:28:25.951+03	2021-05-26 22:28:25.959+03	
679269f4-d8af-48e3-57a4-516a186d75eb	2021-05-26 22:28:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:28:46.951+03	2021-05-26 22:28:46.958+03	
13ca500f-1e22-2f06-2b43-2bb5b1777088	2021-05-26 22:29:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:29:06.951+03	2021-05-26 22:29:06.959+03	
c352b946-d2b8-3b56-cd79-9edef9c96012	2021-05-26 22:29:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:29:26.951+03	2021-05-26 22:29:26.963+03	
bca193e0-0dda-099b-a485-bbe8aab0bbe6	2021-05-26 22:29:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:29:46.951+03	2021-05-26 22:29:46.959+03	
9814972a-671b-a4af-0ac9-1bfe3ea3fba0	2021-05-26 22:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 22:30:00.951+03	2021-05-26 22:30:00.957+03	ERROR
342acb7e-7470-3512-b5fc-18b2f26fcc7e	2021-05-26 22:30:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:30:16.951+03	2021-05-26 22:30:16.958+03	
d94f3252-db35-cb84-55b7-70bf8623a311	2021-05-26 22:30:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:30:36.951+03	2021-05-26 22:30:36.96+03	
fbb2c756-07d9-7192-06da-725a677c4598	2021-05-26 22:30:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:30:56.951+03	2021-05-26 22:30:56.958+03	
1c2a37d6-dbc6-dcc2-b328-2b489d080a60	2021-05-26 22:31:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:31:16.951+03	2021-05-26 22:31:16.958+03	
55bbae9e-89b6-fc8d-0d67-ac4fd0dbeada	2021-05-26 22:31:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:31:36.951+03	2021-05-26 22:31:36.959+03	
d5b703fa-b82c-2d34-2c5a-85f143fc1772	2021-05-26 22:31:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:31:56.951+03	2021-05-26 22:31:56.96+03	
4f987b98-d054-b084-cf99-4820a3a03625	2021-05-26 22:32:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:32:17.952+03	2021-05-26 22:32:17.959+03	
336d32ff-2ce9-ccaf-dcb0-ad0a300066ab	2021-05-26 22:32:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:32:38.951+03	2021-05-26 22:32:38.959+03	
af64ee40-d239-947e-d501-0766d4929368	2021-05-26 22:30:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:30:26.951+03	2021-05-26 22:30:26.958+03	
5b537b1a-3392-0a73-a8f2-d8a209546e86	2021-05-26 22:30:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:30:46.951+03	2021-05-26 22:30:46.958+03	
a6468103-9948-e4e6-af5f-1b383722764b	2021-05-26 22:31:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:31:06.951+03	2021-05-26 22:31:06.959+03	
c300580c-b528-f1e7-c380-f07da8feb724	2021-05-26 22:31:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:31:26.951+03	2021-05-26 22:31:26.959+03	
f10c0b35-1cc7-3d9a-3fe1-7e2450e30a2c	2021-05-26 22:31:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:31:46.951+03	2021-05-26 22:31:46.963+03	
7037d3e1-8d39-15c8-eb89-de2cb0434463	2021-05-26 22:32:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:32:06.952+03	2021-05-26 22:32:06.959+03	
f35e3d92-983c-eed8-3862-6cedaa9c342f	2021-05-26 22:32:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:32:28.951+03	2021-05-26 22:32:28.959+03	
384b3d21-25d5-1f72-457c-398dd24f5f98	2021-05-26 22:32:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:32:48.951+03	2021-05-26 22:32:48.958+03	
df023e8d-729b-262f-a2c2-e77c17add1ce	2021-05-26 22:33:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:33:08.951+03	2021-05-26 22:33:08.959+03	
5afbdf01-c10b-1902-2a07-c08a1b3b9ba9	2021-05-26 22:33:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:33:28.951+03	2021-05-26 22:33:28.96+03	
d757217a-11e1-3537-99ba-a45ea20d1703	2021-05-26 22:33:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:33:48.951+03	2021-05-26 22:33:48.958+03	
faa4b4ef-e5b9-900e-e92f-be8e274f144e	2021-05-26 22:34:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:34:08.951+03	2021-05-26 22:34:08.963+03	
3ac7fdd1-afa5-b199-dd90-a710adedbcee	2021-05-26 22:34:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:34:28.951+03	2021-05-26 22:34:28.958+03	
b4d9b58e-aa6f-c58d-d30a-2d6a4f5c6e5c	2021-05-26 22:34:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:34:48.951+03	2021-05-26 22:34:48.958+03	
c1807ebd-aad9-7896-b9b6-bede59381d3f	2021-05-26 22:35:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:35:08.951+03	2021-05-26 22:35:08.958+03	
689f8a2b-97b8-c0e8-857a-e93cac77abe6	2021-05-26 22:35:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:35:28.951+03	2021-05-26 22:35:28.958+03	
d7fe6c75-04fd-1181-380d-a9f367e254a5	2021-05-26 22:35:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:35:49.951+03	2021-05-26 22:35:49.96+03	
742e27db-6671-e0a6-3a3f-afbfd7d43efe	2021-05-26 22:36:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:36:09.951+03	2021-05-26 22:36:09.959+03	
a9e2a493-72ea-c364-ad9f-4c2684f6827c	2021-05-26 22:36:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:36:29.951+03	2021-05-26 22:36:29.958+03	
64c8560d-13ca-3b10-1aa8-e74b6d26a8a8	2021-05-26 22:36:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:36:50.951+03	2021-05-26 22:36:50.958+03	
9de13482-c1c5-6b59-02d3-6c9a480fea34	2021-05-26 22:37:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:37:10.951+03	2021-05-26 22:37:10.958+03	
05962b83-a523-6bcd-ca55-fe8fa6774e47	2021-05-26 22:37:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:37:30.951+03	2021-05-26 22:37:30.96+03	
9c133714-6d73-dd27-a702-cb12953865b6	2021-05-26 22:37:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:37:50.951+03	2021-05-26 22:37:51.104+03	
8d26a04c-d140-ab8a-80bb-b86462e5671c	2021-05-26 22:38:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:38:10.951+03	2021-05-26 22:38:10.959+03	
f8edd6f1-95e4-9e78-ddbb-6d3ac4f85d05	2021-05-26 22:38:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:38:30.951+03	2021-05-26 22:38:30.958+03	
8690558a-c336-98d6-9375-c483cd0a03a5	2021-05-26 22:38:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:38:50.951+03	2021-05-26 22:38:50.958+03	
7da8841a-293a-a0e7-c752-fdc029c0f30a	2021-05-26 22:39:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:39:10.951+03	2021-05-26 22:39:10.959+03	
5fa7b2a6-f121-d799-228b-c19cbe5be697	2021-05-26 22:39:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:39:30.951+03	2021-05-26 22:39:30.959+03	
f763cf7e-3b9a-f05d-9495-2d6c1e8bccfc	2021-05-26 22:39:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:39:50.951+03	2021-05-26 22:39:50.963+03	
4fab50c7-fcf0-b119-3da4-efba8ae5ffb8	2021-05-26 22:40:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:40:10.951+03	2021-05-26 22:40:10.958+03	
91bc3a15-e66b-a694-7c4f-5e445e2e54e4	2021-05-26 22:40:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:40:30.951+03	2021-05-26 22:40:30.957+03	
7f385500-474b-4ff2-7af5-067e70153261	2021-05-26 22:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:40:51.951+03	2021-05-26 22:40:51.959+03	
67c8cbeb-e1c3-d2d5-fc40-6c833ed0f914	2021-05-26 22:41:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:41:11.951+03	2021-05-26 22:41:11.958+03	
88a7b49d-3abb-33d9-490d-27ae340ee7c8	2021-05-26 22:41:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:41:31.951+03	2021-05-26 22:41:31.958+03	
32aa26b2-07ee-9c7e-0cf4-0a0aa2657517	2021-05-26 22:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:41:51.951+03	2021-05-26 22:41:51.959+03	
f2f043ff-d0a3-7f91-a132-b169d9d06245	2021-05-26 22:42:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:42:11.951+03	2021-05-26 22:42:11.96+03	
99c37aed-b386-6879-9897-cf7300b59a27	2021-05-26 22:42:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:42:31.951+03	2021-05-26 22:42:31.958+03	
41e8d86a-57f9-9a81-bdeb-5cf5661f2d5a	2021-05-26 22:42:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:42:51.951+03	2021-05-26 22:42:51.957+03	
e75674f7-6905-fd99-b187-1d2b4f263afc	2021-05-26 22:43:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:43:11.951+03	2021-05-26 22:43:11.96+03	
b346ad9f-c51c-2160-396c-30587266676f	2021-05-26 22:43:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:43:31.952+03	2021-05-26 22:43:31.96+03	
419afbf2-812e-0a44-e69e-da9802d6ca43	2021-05-26 22:43:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:43:52.951+03	2021-05-26 22:43:52.959+03	
8c11d172-b6b8-423b-eac1-0c7dcc668b8e	2021-05-26 22:44:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:44:12.951+03	2021-05-26 22:44:12.958+03	
f36f176a-1167-5e04-056c-96cf269e0eae	2021-05-26 22:44:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:44:32.951+03	2021-05-26 22:44:32.958+03	
136ade8a-50ce-f347-88de-d8f31eeb7d08	2021-05-26 22:44:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:44:52.951+03	2021-05-26 22:44:52.962+03	
17c19c9b-e6b2-a67f-4f6f-3947cbe142c2	2021-05-26 22:45:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:45:22.951+03	2021-05-26 22:45:22.959+03	
5af13a49-ab66-74c5-ea9d-d827ef8db863	2021-05-26 22:45:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:45:42.952+03	2021-05-26 22:45:42.96+03	
1dec05a2-192b-3c9d-d83f-83c47967e860	2021-05-26 22:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:46:03.951+03	2021-05-26 22:46:03.959+03	
b3bf1e04-4d35-feee-c2d2-293e13071806	2021-05-26 22:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:46:23.951+03	2021-05-26 22:46:23.96+03	
2b184a7e-f529-1d2d-3e81-f376310afd61	2021-05-26 22:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:46:43.951+03	2021-05-26 22:46:43.959+03	
43951cc2-5a2a-e74c-749a-cb8d64e32ad3	2021-05-26 22:47:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:47:03.951+03	2021-05-26 22:47:03.958+03	
e412a49c-54e4-6956-dbbc-e8d303aa36bc	2021-05-26 22:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:47:23.951+03	2021-05-26 22:47:23.958+03	
d8b4e730-1404-852d-ad24-eba41c0c80f9	2021-05-26 22:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:47:43.951+03	2021-05-26 22:47:43.959+03	
c4da3b8b-ca2b-885c-c942-3c13b496d1bb	2021-05-26 22:48:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:48:03.951+03	2021-05-26 22:48:03.959+03	
288e1a17-d9a7-5192-ffc1-a7dbecfc885c	2021-05-26 22:48:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:48:23.951+03	2021-05-26 22:48:23.958+03	
fdbc1894-5513-09b0-b697-0aabcc958da8	2021-05-26 22:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:48:44.951+03	2021-05-26 22:48:44.959+03	
870bb4d5-2f0c-f393-c157-24cf126f565d	2021-05-26 22:49:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:49:04.951+03	2021-05-26 22:49:04.959+03	
8f1abb43-7e33-32e0-84e8-fad44b29274a	2021-05-26 22:49:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:49:24.951+03	2021-05-26 22:49:24.959+03	
1bb759a5-1a86-7ec2-8c78-6b685b2e3d55	2021-05-26 22:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:49:44.951+03	2021-05-26 22:49:44.958+03	
4460f5f8-c2a0-e236-d669-6bb9e2637f6a	2021-05-26 22:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 22:50:00.951+03	2021-05-26 22:50:00.96+03	ERROR
d15eaf24-6d0b-cc7e-ea28-64e4bd662f7f	2021-05-26 22:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:50:14.951+03	2021-05-26 22:50:14.959+03	
edac1992-352d-4424-68da-c064744781d7	2021-05-26 22:50:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:50:34.951+03	2021-05-26 22:50:34.958+03	
ea728704-af66-9ed9-44f6-e24bb330949a	2021-05-26 22:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:50:54.951+03	2021-05-26 22:50:54.96+03	
05a2f891-028c-e680-356b-834da41ed794	2021-05-26 22:51:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:51:14.951+03	2021-05-26 22:51:14.958+03	
0fb4e063-baeb-d9b1-aab8-4a8af76842a4	2021-05-26 22:32:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:32:58.951+03	2021-05-26 22:32:58.96+03	
7172c809-a0ac-64e4-3f34-9087a7813f3d	2021-05-26 22:33:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:33:18.951+03	2021-05-26 22:33:18.958+03	
bccc15d5-70b1-54b2-343c-42274345b210	2021-05-26 22:33:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:33:38.951+03	2021-05-26 22:33:38.959+03	
e62ddf45-3c5a-21d9-6423-60741100948e	2021-05-26 22:33:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:33:58.951+03	2021-05-26 22:33:58.958+03	
e418ca50-79ed-1379-baf9-88cf293d22b2	2021-05-26 22:34:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:34:18.951+03	2021-05-26 22:34:18.961+03	
d0d3c623-08a0-8cda-4854-f9de58f7dcb9	2021-05-26 22:34:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:34:38.951+03	2021-05-26 22:34:38.958+03	
331df527-426f-557c-d6a4-ac81b0f96842	2021-05-26 22:34:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:34:58.951+03	2021-05-26 22:34:58.959+03	
cb44abd1-0429-8c24-6dbf-e0d60443902a	2021-05-26 22:35:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:35:18.951+03	2021-05-26 22:35:18.959+03	
bc8f4868-97c2-3264-4e81-6650a6b8a587	2021-05-26 22:35:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:35:38.952+03	2021-05-26 22:35:38.959+03	
a7980d18-b7a0-01aa-f92d-91de8ecd0949	2021-05-26 22:35:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:35:59.951+03	2021-05-26 22:35:59.958+03	
85df848b-c814-ea68-1d8d-988a5510ed8a	2021-05-26 22:36:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:36:19.951+03	2021-05-26 22:36:19.958+03	
967def59-51b3-29b4-c3f3-d3a3fa6bd851	2021-05-26 22:36:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:36:39.952+03	2021-05-26 22:36:39.959+03	
5d02aed6-1056-5b37-70f7-e17a5ee66367	2021-05-26 22:37:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:37:00.951+03	2021-05-26 22:37:00.96+03	
df252a8f-9efd-a9c3-fb4c-462480320b6b	2021-05-26 22:37:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:37:20.951+03	2021-05-26 22:37:20.959+03	
eb789ee7-5244-fc0c-951c-f228c9007c58	2021-05-26 22:37:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:37:40.951+03	2021-05-26 22:37:40.957+03	
a7a99d36-9b4a-2a2e-c07c-1163c478820d	2021-05-26 22:38:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:38:00.951+03	2021-05-26 22:38:00.957+03	
5314d12c-4adc-e6eb-6cb5-2ed45911a5a3	2021-05-26 22:38:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:38:20.951+03	2021-05-26 22:38:20.96+03	
2e1c09b0-13ff-3d52-5e2c-741e577cd325	2021-05-26 22:38:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:38:40.951+03	2021-05-26 22:38:40.96+03	
183f2902-a86d-db96-05a4-bb5ddb42a163	2021-05-26 22:39:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:39:00.951+03	2021-05-26 22:39:00.959+03	
3f6ec030-411e-c0ff-97bc-a272022bd6b8	2021-05-26 22:39:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:39:20.951+03	2021-05-26 22:39:20.958+03	
9abd6760-5aa0-3fce-1878-51adc339d392	2021-05-26 22:39:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:39:40.951+03	2021-05-26 22:39:40.959+03	
541c691c-2522-8b66-4e87-8e1e7fbd0360	2021-05-26 22:40:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:40:00.951+03	2021-05-26 22:40:00.959+03	
58c369a8-8fb6-e485-7a0a-bb0ca97d741f	2021-05-26 22:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 22:40:00.951+03	2021-05-26 22:40:00.97+03	ERROR
25cefb5a-26fa-4541-69b6-e1919d174a41	2021-05-26 22:40:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:40:20.951+03	2021-05-26 22:40:20.959+03	
2504c80c-6d31-cd7d-6e3a-4211ed32acb1	2021-05-26 22:40:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:40:40.952+03	2021-05-26 22:40:40.958+03	
d20a2e0a-f241-6461-fb30-fcd201c339e5	2021-05-26 22:41:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:41:01.951+03	2021-05-26 22:41:01.958+03	
b9c48dbb-371f-99f4-3265-80a8e68c9a95	2021-05-26 22:41:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:41:21.951+03	2021-05-26 22:41:21.959+03	
9c75d670-c696-d1b5-18db-a2bbf91a1edf	2021-05-26 22:41:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:41:41.951+03	2021-05-26 22:41:41.958+03	
32f20595-4a1f-5372-4a63-abeae1c309d9	2021-05-26 22:42:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:42:01.951+03	2021-05-26 22:42:01.96+03	
05aeb357-f73c-03c9-08c2-d357637f9dc8	2021-05-26 22:42:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:42:21.951+03	2021-05-26 22:42:21.96+03	
034b74fe-6a32-67f2-6b56-b4d06a757f78	2021-05-26 22:42:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:42:41.951+03	2021-05-26 22:42:41.958+03	
69ca6401-cf2c-1e94-debe-4f9aa3e6d762	2021-05-26 22:43:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:43:01.951+03	2021-05-26 22:43:01.961+03	
2ef538e6-af07-b66d-ef74-bad804a998b7	2021-05-26 22:43:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:43:21.951+03	2021-05-26 22:43:21.959+03	
2fa098e3-129a-12da-e9df-befea7b99640	2021-05-26 22:43:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:43:42.951+03	2021-05-26 22:43:42.964+03	
2467429d-6738-5c4a-2f94-6dc70624bf92	2021-05-26 22:44:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:44:02.951+03	2021-05-26 22:44:02.959+03	
a0c7bcd4-1a80-6130-f0bb-b65ba84adeab	2021-05-26 22:44:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:44:22.951+03	2021-05-26 22:44:22.958+03	
bbc28989-b5cd-d42d-16ed-af4977401ca5	2021-05-26 22:44:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:44:42.951+03	2021-05-26 22:44:42.961+03	
9439e296-42b6-2e94-fd16-2a7df504751a	2021-05-26 22:45:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:45:02.951+03	2021-05-26 22:45:02.959+03	
2d560d77-0b40-53ed-bf2d-b075138dce61	2021-05-26 22:45:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:45:12.951+03	2021-05-26 22:45:12.968+03	
4fec6afd-8a19-d02f-0faa-48c461f0423c	2021-05-26 22:45:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:45:32.951+03	2021-05-26 22:45:32.957+03	
6a13555e-632f-30ec-b6d7-593dfb3df2a8	2021-05-26 22:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:45:53.951+03	2021-05-26 22:45:53.959+03	
01103c27-62ef-2073-d7f5-7898d07d128a	2021-05-26 22:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:46:13.951+03	2021-05-26 22:46:13.958+03	
2d7d6e48-cc89-2722-f569-a86845f29c54	2021-05-26 22:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:46:33.951+03	2021-05-26 22:46:33.959+03	
2ea61da6-6130-14d6-f1e3-b7314ef3804d	2021-05-26 22:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:46:53.951+03	2021-05-26 22:46:53.958+03	
a89d4e0b-3fe8-27e2-dc51-c775ce812ccd	2021-05-26 22:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:47:13.951+03	2021-05-26 22:47:13.958+03	
07807193-4b16-5962-8ff3-a791d4dd7114	2021-05-26 22:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:47:33.951+03	2021-05-26 22:47:33.96+03	
0198f9e0-1fb1-7644-2b12-548237d5d9f7	2021-05-26 22:47:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:47:53.951+03	2021-05-26 22:47:53.958+03	
78678932-264c-4f74-a691-4d74fc6d5229	2021-05-26 22:48:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:48:13.951+03	2021-05-26 22:48:13.962+03	
3dcc2827-9d15-cc65-d75a-a1f28c77aecc	2021-05-26 22:48:33.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:48:33.952+03	2021-05-26 22:48:33.961+03	
2c6e9625-b8bd-68ab-d179-5ba84f2ce329	2021-05-26 22:48:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:48:54.951+03	2021-05-26 22:48:54.958+03	
cebade3a-3f5a-20ba-4219-e6672706b01a	2021-05-26 22:49:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:49:14.951+03	2021-05-26 22:49:14.96+03	
e943cf84-e572-9f71-dddd-e8d12b456e94	2021-05-26 22:49:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:49:34.951+03	2021-05-26 22:49:34.959+03	
a61bfe3e-0e1a-43dc-f7c0-e39e59fa172b	2021-05-26 22:49:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:49:54.951+03	2021-05-26 22:49:54.958+03	
fc9088c5-23dd-a4ad-2cdb-b580a55fcedf	2021-05-26 22:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:50:04.951+03	2021-05-26 22:50:04.959+03	
dc38f61c-12bf-e300-1d40-9a7bf39bc04d	2021-05-26 22:50:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:50:24.951+03	2021-05-26 22:50:24.96+03	
9196a31a-04ac-2b44-da2c-19b23a57825e	2021-05-26 22:50:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:50:44.951+03	2021-05-26 22:50:44.958+03	
9b033269-837b-3095-6952-b1906edc256f	2021-05-26 22:51:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:51:04.951+03	2021-05-26 22:51:04.958+03	
27a5b2ff-e17f-4506-ce72-5870a32c9dc4	2021-05-26 22:51:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:51:24.951+03	2021-05-26 22:51:24.959+03	
2b0057fd-0b3c-18e5-8d26-b9bd58deda7d	2021-05-26 22:51:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:51:44.951+03	2021-05-26 22:51:44.96+03	
ab93df9d-0659-5aa9-2897-40039e92983a	2021-05-26 22:52:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:52:04.951+03	2021-05-26 22:52:04.957+03	
763df7fd-a84d-fb6a-4f27-b2f43eb2edc4	2021-05-26 22:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:52:24.951+03	2021-05-26 22:52:24.959+03	
781d5e67-017d-df48-6481-5eede57f3a49	2021-05-26 22:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:52:44.951+03	2021-05-26 22:52:44.959+03	
b50d43f9-538f-08f9-cf0a-bd473fefc1c4	2021-05-26 22:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:53:04.951+03	2021-05-26 22:53:04.958+03	
77ef13f3-b905-2dfe-11d7-3ebdb3c2883f	2021-05-26 22:51:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:51:34.951+03	2021-05-26 22:51:34.958+03	
b26f7471-51b7-ed10-cdd4-3670ad7751c2	2021-05-26 22:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:51:54.951+03	2021-05-26 22:51:54.958+03	
ffa73d11-16b5-5ed7-c816-2af417faef87	2021-05-26 22:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:52:14.951+03	2021-05-26 22:52:14.958+03	
ca74fb2c-95f2-5d74-535f-6a5c6543d54e	2021-05-26 22:52:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:52:34.951+03	2021-05-26 22:52:34.96+03	
91152c59-9176-ddfa-b47d-57077fe0461b	2021-05-26 22:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:52:54.951+03	2021-05-26 22:52:54.958+03	
02e586f7-b579-2a5e-7ca4-cf6cee062689	2021-05-26 22:53:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:53:14.951+03	2021-05-26 22:53:14.959+03	
d436303d-8954-0fa2-4b37-ec3ccd9548a5	2021-05-26 22:53:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:53:34.951+03	2021-05-26 22:53:34.958+03	
bbfe9f18-c407-9d4a-e9a9-f7dea0602808	2021-05-26 22:53:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:53:54.951+03	2021-05-26 22:53:54.959+03	
af4e6b99-ad98-6de1-cbf3-fd2090e41170	2021-05-26 22:54:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:54:14.951+03	2021-05-26 22:54:14.959+03	
66cbbf48-f248-2039-29cc-7f7437e27302	2021-05-26 22:54:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:54:34.951+03	2021-05-26 22:54:34.959+03	
3ff36b4d-8d03-c860-ccef-87f52e235792	2021-05-26 22:54:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:54:54.951+03	2021-05-26 22:54:54.959+03	
33526ce2-c24d-e636-97fb-b14483bb9e45	2021-05-26 22:55:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:55:14.951+03	2021-05-26 22:55:14.958+03	
377b6ac2-a250-412c-56bb-4491992ec622	2021-05-26 22:55:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:55:34.951+03	2021-05-26 22:55:34.961+03	
c09ebb51-81f8-92b8-b3fc-cff6ad3dfa3f	2021-05-26 22:55:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:55:54.951+03	2021-05-26 22:55:54.959+03	
ea583a01-2f5d-875a-9610-ef87fdcc2931	2021-05-26 22:56:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:56:14.951+03	2021-05-26 22:56:14.959+03	
035fdd1a-fa6e-c1b1-6e8b-df5b69aa7f0c	2021-05-26 22:56:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:56:34.951+03	2021-05-26 22:56:34.959+03	
f07f2540-b29f-ee50-1b61-2c4e85b96ef0	2021-05-26 22:56:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:56:54.951+03	2021-05-26 22:56:54.96+03	
0c10ac62-f093-1eea-b3af-2ac87f91dff3	2021-05-26 22:57:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:57:14.951+03	2021-05-26 22:57:14.96+03	
b8cb545b-a83a-f5c8-ea23-3e86d3e142ce	2021-05-26 22:57:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:57:34.951+03	2021-05-26 22:57:34.957+03	
3ce7cd8f-fc5f-db24-b95a-a17afe4f25b2	2021-05-26 22:57:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:57:54.951+03	2021-05-26 22:57:54.959+03	
400e7c3e-de6f-0f56-f5e4-f06869957c64	2021-05-26 22:58:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:58:14.951+03	2021-05-26 22:58:14.959+03	
71a3e34f-709d-598e-e296-c85b990aed73	2021-05-26 22:58:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:58:34.951+03	2021-05-26 22:58:34.959+03	
21064cf7-992b-2792-86b1-5e4d4c2492f1	2021-05-26 22:58:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:58:54.951+03	2021-05-26 22:58:54.959+03	
6e78d659-26f6-cb20-6877-e4fb07962882	2021-05-26 22:59:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:59:14.951+03	2021-05-26 22:59:14.959+03	
430e3b6c-129e-b2a3-7c6a-2b95afffd599	2021-05-26 22:59:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:59:34.951+03	2021-05-26 22:59:34.958+03	
bd2f69f3-2706-47e4-3943-1546a594332e	2021-05-26 22:59:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:59:54.951+03	2021-05-26 22:59:54.958+03	
815a2009-aa47-ca12-4f0d-f5ba7c14ba02	2021-05-26 23:00:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:00:04.951+03	2021-05-26 23:00:04.958+03	
d87bc9ab-4954-7c66-e1e2-d7a89c5bcf66	2021-05-26 23:00:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:00:24.951+03	2021-05-26 23:00:25.273+03	
dce7c29c-f9a0-2b68-0d5c-4e242733e7c2	2021-05-26 23:00:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:00:45.951+03	2021-05-26 23:00:45.959+03	
35fdab29-6ded-a9c9-2a8d-44a359aa0fe5	2021-05-26 23:01:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:01:05.951+03	2021-05-26 23:01:05.958+03	
b0c88db8-daec-16ce-5835-278484491803	2021-05-26 23:01:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:01:25.951+03	2021-05-26 23:01:26.272+03	
bc121998-a7fe-d884-a309-657e2764738d	2021-05-26 23:01:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:01:45.951+03	2021-05-26 23:01:45.958+03	
9f9a1782-3a1b-136f-b7ad-ecb2593ad3d2	2021-05-26 23:02:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:02:05.951+03	2021-05-26 23:02:05.958+03	
eea9b425-dc4d-57a3-93ec-1cd604c03b34	2021-05-26 23:02:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:02:25.951+03	2021-05-26 23:02:25.972+03	
4d051a8d-cb77-a03d-651e-b161bdbfae41	2021-05-26 23:02:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:02:45.951+03	2021-05-26 23:02:45.958+03	
f56a9e1d-12e4-6829-7ffe-e4bacfcfeed9	2021-05-26 23:03:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:03:05.951+03	2021-05-26 23:03:05.958+03	
e1d4e24d-16ee-00c1-63f2-00450fe7dcb6	2021-05-26 23:03:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:03:25.951+03	2021-05-26 23:03:25.958+03	
415cf935-763f-2abc-1fa0-e7a1712d19cb	2021-05-26 23:03:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:03:45.951+03	2021-05-26 23:03:45.958+03	
4d9feee2-edbf-30fb-853a-275dcdf66f42	2021-05-26 23:04:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:04:05.951+03	2021-05-26 23:04:05.958+03	
d7590a3d-e8c1-b162-bb40-f004d262d8b1	2021-05-26 23:04:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:04:25.951+03	2021-05-26 23:04:25.958+03	
30343280-358b-f149-2412-9b8ad74f9d0c	2021-05-26 23:04:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:04:45.951+03	2021-05-26 23:04:45.958+03	
ce83a781-735c-79d2-09a5-1c73d815aaf3	2021-05-26 23:05:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:05:05.951+03	2021-05-26 23:05:05.959+03	
00d7cde3-27ea-4f38-94c2-86a5d4908e5f	2021-05-26 23:05:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:05:25.951+03	2021-05-26 23:05:25.959+03	
02611828-9b3a-a42d-669b-786e44918d69	2021-05-26 23:05:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:05:45.951+03	2021-05-26 23:05:45.96+03	
d07a03ae-9fec-d93f-d918-65983b71d3d0	2021-05-26 23:06:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:06:05.951+03	2021-05-26 23:06:05.958+03	
56445126-627c-489f-defd-191e0f397bdb	2021-05-26 23:06:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:06:25.951+03	2021-05-26 23:06:25.961+03	
88a14038-e4e4-e5f7-3917-b742f341a8ec	2021-05-26 23:06:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:06:45.951+03	2021-05-26 23:06:45.958+03	
2e50fe05-f694-5893-357f-bc607e1db591	2021-05-26 23:07:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:07:05.951+03	2021-05-26 23:07:05.959+03	
5c6046c8-c84c-2075-482f-e41fe52c941a	2021-05-26 23:07:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:07:25.951+03	2021-05-26 23:07:25.96+03	
8ac34a77-4871-ebd2-c750-6ab7e40dfb38	2021-05-26 23:07:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:07:45.951+03	2021-05-26 23:07:45.958+03	
c410f3d0-a759-7dc9-dd8d-eaca08114b98	2021-05-26 23:08:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:08:05.951+03	2021-05-26 23:08:05.959+03	
84bb30bd-f61c-b138-0058-f7d1bcb60037	2021-05-26 23:08:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:08:26.951+03	2021-05-26 23:08:26.96+03	
42290fcb-f0e0-1555-1dc8-f2e529805fe3	2021-05-26 23:08:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:08:46.951+03	2021-05-26 23:08:46.959+03	
d0e1fb15-5e88-0c6f-d078-35610f648c3c	2021-05-26 23:09:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:09:06.951+03	2021-05-26 23:09:06.958+03	
cdef1750-76f6-21ef-e8ad-ee7300f20107	2021-05-26 23:09:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:09:26.951+03	2021-05-26 23:09:26.961+03	
1e20a4be-7a32-ce90-f42e-5cfd06add94f	2021-05-26 23:09:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:09:47.952+03	2021-05-26 23:09:47.961+03	
48fddbc4-7688-27c8-bfbf-ab8a8c2923ed	2021-05-26 23:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 23:10:00.951+03	2021-05-26 23:10:00.959+03	ERROR
7a8bdb59-9632-34a7-c12a-3c355261c35e	2021-05-26 23:10:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:10:18.951+03	2021-05-26 23:10:18.96+03	
eb21f4ff-7d1a-211b-e56a-9759b6d9f0e9	2021-05-26 23:10:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:10:38.951+03	2021-05-26 23:10:38.965+03	
6a4cbf94-069c-8b0b-aa1b-83557e5e7150	2021-05-26 23:10:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:10:58.951+03	2021-05-26 23:10:58.958+03	
05441bf0-3d9a-304a-6dae-4df4c2bd7b0c	2021-05-26 23:11:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:11:18.951+03	2021-05-26 23:11:18.958+03	
ce7f63ba-7fe5-d373-be38-ac04e442f3f0	2021-05-26 23:11:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:11:38.951+03	2021-05-26 23:11:38.959+03	
ffafe6fb-461c-fe00-6094-181f57b4e230	2021-05-26 23:11:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:11:58.951+03	2021-05-26 23:11:58.957+03	
5d323c5a-5477-6cc5-a685-9ec61c491c74	2021-05-26 22:53:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:53:24.951+03	2021-05-26 22:53:24.959+03	
77d604ab-a60f-ca61-3cd9-db79c3df1367	2021-05-26 22:53:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:53:44.951+03	2021-05-26 22:53:44.96+03	
0250e877-2fde-6589-29d4-8a3bdc41692d	2021-05-26 22:54:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:54:04.951+03	2021-05-26 22:54:04.959+03	
cdc85375-dc2b-e4fd-c549-4aa30aa3d8f0	2021-05-26 22:54:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:54:24.951+03	2021-05-26 22:54:24.961+03	
3a10bc81-c83e-f1ff-2682-24e8198c36b7	2021-05-26 22:54:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:54:44.951+03	2021-05-26 22:54:44.959+03	
8b7b2d9d-18ee-0c5a-d2c4-0043d5c7d941	2021-05-26 22:55:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:55:04.951+03	2021-05-26 22:55:04.971+03	
45677429-3ebb-7592-7abd-a4db13d64a74	2021-05-26 22:55:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:55:24.951+03	2021-05-26 22:55:24.959+03	
79bc6233-7197-97bd-db66-673443c8e3bd	2021-05-26 22:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:55:44.951+03	2021-05-26 22:55:44.959+03	
e2693372-0c73-bb38-28d7-2b3b3ad6ae95	2021-05-26 22:56:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:56:04.951+03	2021-05-26 22:56:04.961+03	
511bdc37-61d5-35b8-7f0d-3f2ab6ae3321	2021-05-26 22:56:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:56:24.951+03	2021-05-26 22:56:24.96+03	
630f8241-eb12-bc11-8b4a-5d84bad5359a	2021-05-26 22:56:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:56:44.951+03	2021-05-26 22:56:44.958+03	
37921504-73fb-243d-6d9b-edc660ad347f	2021-05-26 22:57:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:57:04.951+03	2021-05-26 22:57:04.959+03	
08598bb2-4316-3a57-d88d-ecb635561109	2021-05-26 22:57:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:57:24.951+03	2021-05-26 22:57:24.959+03	
252cdead-2f11-a033-642e-ebf554b21fce	2021-05-26 22:57:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:57:44.951+03	2021-05-26 22:57:44.958+03	
a2f6c160-9856-055f-0c6f-cde7093052b3	2021-05-26 22:58:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:58:04.951+03	2021-05-26 22:58:04.959+03	
59b82b1b-c2b6-ca13-adbd-357a1b3b0707	2021-05-26 22:58:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:58:24.951+03	2021-05-26 22:58:24.958+03	
ebfcd0f0-ecab-4fb7-ae34-40408a886f77	2021-05-26 22:58:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:58:44.951+03	2021-05-26 22:58:44.959+03	
b8a4e40b-c4e8-e9d2-78ce-7aea04e6005e	2021-05-26 22:59:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:59:04.951+03	2021-05-26 22:59:04.96+03	
766092db-28b0-5ebf-6210-6e9f5d088c8d	2021-05-26 22:59:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:59:24.951+03	2021-05-26 22:59:24.958+03	
7acf8676-8cf9-a242-a413-493a8cf9d95a	2021-05-26 22:59:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 22:59:44.951+03	2021-05-26 22:59:44.958+03	
8e90ea21-6a16-deda-bc5a-e3cf2930ff46	2021-05-26 23:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 23:00:00.951+03	2021-05-26 23:00:00.957+03	ERROR
98dc1309-963d-3fa5-cb5d-a12777a031af	2021-05-26 23:00:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:00:14.951+03	2021-05-26 23:00:14.958+03	
3ee26bcf-dff1-237a-34ce-0b607290e65d	2021-05-26 23:00:34.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:00:34.952+03	2021-05-26 23:00:34.96+03	
0a2ca888-2e4e-bed1-4be3-ca2cd255842e	2021-05-26 23:00:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:00:55.951+03	2021-05-26 23:00:55.96+03	
1eb2afe9-97d8-9c0a-5540-481f9ccd3de3	2021-05-26 23:01:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:01:15.951+03	2021-05-26 23:01:15.958+03	
0c143975-cde0-1586-0616-37786d824140	2021-05-26 23:01:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:01:35.951+03	2021-05-26 23:01:35.957+03	
ac343687-0f18-a2a9-5acc-a991219cb9b7	2021-05-26 23:01:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:01:55.951+03	2021-05-26 23:01:55.96+03	
dc7a3d36-4535-e11c-23f9-c07eb1db56eb	2021-05-26 23:02:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:02:15.951+03	2021-05-26 23:02:15.958+03	
be44efa2-e8d6-2e29-3bdc-4321fe7204f0	2021-05-26 23:02:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:02:35.951+03	2021-05-26 23:02:35.959+03	
01aafbc3-3dfa-741e-9581-cdbeb9a4be7f	2021-05-26 23:02:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:02:55.951+03	2021-05-26 23:02:55.959+03	
b0497040-62e7-44ae-7e3e-b02c1a5d8c3e	2021-05-26 23:03:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:03:15.951+03	2021-05-26 23:03:15.959+03	
ea8717d9-2db8-00e0-d346-aeccdb48d519	2021-05-26 23:03:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:03:35.951+03	2021-05-26 23:03:35.959+03	
c834a4c0-666a-a641-d618-de3c6fceb8b2	2021-05-26 23:03:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:03:55.951+03	2021-05-26 23:03:55.959+03	
566e4d4e-9c5d-22ba-8ffb-d58b80e2e951	2021-05-26 23:04:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:04:15.951+03	2021-05-26 23:04:15.959+03	
703d46e1-1e5d-07d8-55e5-a6db24970460	2021-05-26 23:04:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:04:35.951+03	2021-05-26 23:04:35.958+03	
d88d56c6-6433-89e2-5ad9-3fff9d614457	2021-05-26 23:04:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:04:55.951+03	2021-05-26 23:04:55.959+03	
2d2d0eb4-86d2-5b82-e8e2-6af3ebdfc26c	2021-05-26 23:05:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:05:15.951+03	2021-05-26 23:05:15.958+03	
985df7f2-1d99-f25f-7eae-68b85329d6e3	2021-05-26 23:05:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:05:35.951+03	2021-05-26 23:05:35.961+03	
99150e3b-21bf-bd10-26de-00b7b3042081	2021-05-26 23:05:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:05:55.951+03	2021-05-26 23:05:55.96+03	
3a71e38c-18d8-18c6-7a46-a8bbbaacc807	2021-05-26 23:06:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:06:15.951+03	2021-05-26 23:06:15.958+03	
1b1d3a49-da28-87dd-dec7-3daa074b3d61	2021-05-26 23:06:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:06:35.951+03	2021-05-26 23:06:35.958+03	
0c23842e-a9bf-444a-1dd1-e692abf08227	2021-05-26 23:06:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:06:55.951+03	2021-05-26 23:06:55.96+03	
4e7d79c9-cdd6-ec08-303d-6ac833d70c0f	2021-05-26 23:07:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:07:15.951+03	2021-05-26 23:07:15.96+03	
b9b48216-c9c9-e7c8-82d8-62f1a56bc277	2021-05-26 23:07:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:07:35.951+03	2021-05-26 23:07:35.958+03	
e192b2c1-f6c8-e5b5-adc8-337a4bbf2516	2021-05-26 23:07:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:07:55.951+03	2021-05-26 23:07:55.96+03	
36be68c2-0832-5d51-cfcb-7482ac15e7dd	2021-05-26 23:08:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:08:15.952+03	2021-05-26 23:08:15.958+03	
8ac8a38c-4a8c-5921-5244-a131f37f3f77	2021-05-26 23:08:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:08:36.951+03	2021-05-26 23:08:36.959+03	
1de16b82-49ce-c94f-f60a-9ae98d41d8ea	2021-05-26 23:08:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:08:56.951+03	2021-05-26 23:08:56.957+03	
6f318143-525b-e859-6de1-60af4b2f12a3	2021-05-26 23:09:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:09:16.951+03	2021-05-26 23:09:16.959+03	
1f025eae-54d3-8dbb-585a-4bc8ea08c899	2021-05-26 23:09:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:09:36.952+03	2021-05-26 23:09:36.959+03	
a39b2eaf-2274-a712-9f6d-7516100f1bd2	2021-05-26 23:09:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:09:57.952+03	2021-05-26 23:09:57.959+03	
1479238e-d4a0-907b-b869-b896d9b11aed	2021-05-26 23:10:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:10:08.951+03	2021-05-26 23:10:08.958+03	
99b2fc3d-d362-af1e-8fe2-1647ea5a29f8	2021-05-26 23:10:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:10:28.951+03	2021-05-26 23:10:28.958+03	
9c70a721-f9e3-d859-7dc7-bdf62c150c84	2021-05-26 23:10:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:10:48.951+03	2021-05-26 23:10:48.957+03	
887a9ead-b8fb-ce3e-3e0b-746e17ad4aa6	2021-05-26 23:11:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:11:08.951+03	2021-05-26 23:11:08.962+03	
16722d54-53af-d6e8-4c0c-be9b356ce0da	2021-05-26 23:11:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:11:28.951+03	2021-05-26 23:11:28.959+03	
2b390edc-1bf6-a574-d144-3d74ed01d192	2021-05-26 23:11:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:11:48.951+03	2021-05-26 23:11:48.959+03	
80198bf6-d817-b710-360f-525c62b7f4fa	2021-05-26 23:12:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:12:08.952+03	2021-05-26 23:12:08.962+03	
a810a95a-b476-e3da-7fcb-65968cb7dab9	2021-05-26 23:12:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:12:29.952+03	2021-05-26 23:12:29.963+03	
50db1932-b4fd-08a8-a899-7f4ca44207d2	2021-05-26 23:12:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:12:50.951+03	2021-05-26 23:12:50.96+03	
4b511bfa-95c2-8264-361e-3d6d8906987d	2021-05-26 23:13:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:13:10.951+03	2021-05-26 23:13:10.958+03	
0091c92a-b6b3-cd6f-caf2-b766106c13b7	2021-05-26 23:13:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:13:30.952+03	2021-05-26 23:13:30.958+03	
9418d61b-9891-464e-7075-9f144268d5e0	2021-05-26 23:13:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:13:51.951+03	2021-05-26 23:13:52.015+03	
0ec7568a-e988-e9b3-ba71-ad6ee9b8af92	2021-05-26 23:12:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:12:19.951+03	2021-05-26 23:12:19.96+03	
03897e75-2752-0422-d91b-5d0aa7281026	2021-05-26 23:12:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:12:40.951+03	2021-05-26 23:12:40.959+03	
250b1d92-962b-ce88-7294-69cb59ab22e0	2021-05-26 23:13:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:13:00.951+03	2021-05-26 23:13:00.959+03	
3d35c41a-2b3b-979b-f6e3-819e993d9c8a	2021-05-26 23:13:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:13:20.951+03	2021-05-26 23:13:20.958+03	
1e4bb4dc-1519-b5ee-9441-73bdce78ec73	2021-05-26 23:13:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:13:41.951+03	2021-05-26 23:13:41.96+03	
d6ee1115-ddb6-145c-19f1-1c2064561089	2021-05-26 23:14:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:14:01.951+03	2021-05-26 23:14:01.961+03	
e315b22a-876d-4b8f-c5b5-3694ec356abb	2021-05-26 23:14:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:14:21.951+03	2021-05-26 23:14:21.959+03	
8c46d719-57a1-b4c4-41e3-b97efc0b3498	2021-05-26 23:14:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:14:41.951+03	2021-05-26 23:14:41.957+03	
42b5e3c9-e9a1-99b9-f6b3-f4adc98f0d42	2021-05-26 23:15:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:15:01.951+03	2021-05-26 23:15:01.959+03	
aed231e2-d4ae-a325-1c68-8b0d8300acb6	2021-05-26 23:15:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:15:21.951+03	2021-05-26 23:15:21.959+03	
974c4553-dce0-2e7a-bf55-7a183b8e5f45	2021-05-26 23:15:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:15:41.951+03	2021-05-26 23:15:41.958+03	
2bc31a5d-8897-4d32-356d-4ababcaea3b0	2021-05-26 23:16:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:16:01.951+03	2021-05-26 23:16:01.959+03	
9fedb289-078e-e85f-43f9-a9245a556d4b	2021-05-26 23:16:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:16:21.951+03	2021-05-26 23:16:21.958+03	
963d1686-c39e-df2b-f524-933325157987	2021-05-26 23:16:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:16:41.951+03	2021-05-26 23:16:41.959+03	
28e8d4c2-3d9c-750f-550d-f93672c55730	2021-05-26 23:17:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:17:01.951+03	2021-05-26 23:17:01.958+03	
f0a1e5e7-1c5d-f7a1-ed76-28630596b985	2021-05-26 23:17:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:17:21.951+03	2021-05-26 23:17:21.961+03	
2bedef5b-afff-ed8c-b0e7-49cde863f4b3	2021-05-26 23:17:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:17:41.951+03	2021-05-26 23:17:41.961+03	
53e9d38a-ab57-c199-b855-558ee82ec654	2021-05-26 23:18:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:18:02.951+03	2021-05-26 23:18:02.959+03	
a7f65bd4-ccfe-eeba-0f5f-9eb0d3578ecc	2021-05-26 23:18:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:18:22.952+03	2021-05-26 23:18:22.959+03	
987cdefc-b76c-5424-eb2b-da560c6da234	2021-05-26 23:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:18:43.951+03	2021-05-26 23:18:43.959+03	
181e8d63-3e67-1a93-6341-aace11d1e9be	2021-05-26 23:19:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:19:03.951+03	2021-05-26 23:19:04.002+03	
e0696583-0184-470c-ed35-72f7772447dd	2021-05-26 23:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:19:23.951+03	2021-05-26 23:19:23.958+03	
45ede5f1-f58f-9a3e-2952-6665ebc6413f	2021-05-26 23:19:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:19:43.951+03	2021-05-26 23:19:43.958+03	
6c6c3d2e-1812-5863-2499-71da417f278a	2021-05-26 23:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 23:20:00.951+03	2021-05-26 23:20:00.956+03	ERROR
55c748fc-c73a-7782-3e8a-7edbb8f04e18	2021-05-26 23:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:20:13.951+03	2021-05-26 23:20:13.958+03	
02c3664e-cb77-63b5-3595-d12a897d6f54	2021-05-26 23:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:20:33.951+03	2021-05-26 23:20:33.958+03	
10e9a65f-dc43-3b6d-31bb-af010f89f1fe	2021-05-26 23:20:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:20:53.951+03	2021-05-26 23:20:53.958+03	
49fa4e6c-dd20-872b-2c06-fe0bd0bbbe3a	2021-05-26 23:21:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:21:13.951+03	2021-05-26 23:21:13.959+03	
ac6f0208-435d-79b1-2167-4723577b169e	2021-05-26 23:21:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:21:33.951+03	2021-05-26 23:21:33.958+03	
a1db30db-c04f-dc87-1d4c-201b6d995658	2021-05-26 23:21:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:21:53.951+03	2021-05-26 23:21:53.958+03	
75371ff2-d8e7-a246-6c8f-f037949243b8	2021-05-26 23:22:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:22:13.951+03	2021-05-26 23:22:13.958+03	
8e9da42d-8dd9-5333-7c0e-9821b7e3f6bc	2021-05-26 23:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:22:33.951+03	2021-05-26 23:22:33.959+03	
c4198cbe-a9dd-2ed7-8084-db80a520fba1	2021-05-26 23:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:22:53.951+03	2021-05-26 23:22:53.961+03	
aaf460cf-ec1a-1863-43f8-3f1279bdfcc1	2021-05-26 23:23:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:23:13.951+03	2021-05-26 23:23:13.957+03	
bed3f617-a324-e4ba-f190-3bf6d834d58a	2021-05-26 23:23:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:23:33.951+03	2021-05-26 23:23:33.959+03	
4708dc73-26d1-410b-522f-08682c084b1e	2021-05-26 23:23:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:23:53.951+03	2021-05-26 23:23:53.96+03	
1729ee62-ad10-3e38-bae3-7b4f91de638a	2021-05-26 23:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:24:13.951+03	2021-05-26 23:24:13.958+03	
5c9be36c-3aeb-c3d3-8e9a-e6ce01fc9097	2021-05-26 23:24:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:24:33.951+03	2021-05-26 23:24:33.958+03	
c1140dfe-52bb-06d6-0c44-eefe5e74f75c	2021-05-26 23:24:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:24:54.951+03	2021-05-26 23:24:54.959+03	
064c9ddd-4c90-13b0-eaa5-1a9de1d0a27d	2021-05-26 23:25:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:25:14.951+03	2021-05-26 23:25:14.959+03	
b6070b57-ea83-80d0-ec78-447b975c9261	2021-05-26 23:25:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:25:34.951+03	2021-05-26 23:25:34.958+03	
06af88b0-78ec-bd84-5d96-36fc251c78e5	2021-05-26 23:25:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:25:54.951+03	2021-05-26 23:25:54.958+03	
5afb0c2c-5ad1-8785-8eb7-66004a75b8f0	2021-05-26 23:26:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:26:14.951+03	2021-05-26 23:26:14.958+03	
4d08206c-7e73-b100-4b7c-302b5b7f1702	2021-05-26 23:26:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:26:34.951+03	2021-05-26 23:26:34.96+03	
72c4788b-bf22-8aeb-be9c-12fb9aaecb02	2021-05-26 23:26:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:26:54.951+03	2021-05-26 23:26:54.959+03	
60dec070-71e2-fe6a-9f15-6ef2e9bb0930	2021-05-26 23:27:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:27:14.951+03	2021-05-26 23:27:14.96+03	
e0676cfd-66bd-55a4-1d1d-bdfd3bd9c046	2021-05-26 23:27:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:27:34.951+03	2021-05-26 23:27:34.958+03	
80b49181-1839-bf46-d0eb-0bfb6aaa0b47	2021-05-26 23:27:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:27:54.951+03	2021-05-26 23:27:54.958+03	
3200ea2c-42e2-773e-bc14-105288eb4555	2021-05-26 23:28:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:28:14.951+03	2021-05-26 23:28:14.958+03	
79690546-6721-f7b6-f20f-fe4898567e2e	2021-05-26 23:28:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:28:34.951+03	2021-05-26 23:28:34.959+03	
f67eb82f-ec5f-5f7c-a3f0-32b1dcaed34f	2021-05-26 23:28:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:28:54.951+03	2021-05-26 23:28:54.959+03	
8b66e14d-1b2b-f1d1-7266-accb6aa787a8	2021-05-26 23:29:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:29:14.951+03	2021-05-26 23:29:14.958+03	
e2331e2e-4a29-af3f-f49e-4a9afb355e18	2021-05-26 23:29:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:29:34.951+03	2021-05-26 23:29:34.958+03	
81fc8360-3926-8b4b-b704-1aa8c7d848c3	2021-05-26 23:29:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:29:54.951+03	2021-05-26 23:29:54.958+03	
6798a840-8188-1f9c-f610-d121792b0527	2021-05-26 23:30:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:30:04.951+03	2021-05-26 23:30:04.958+03	
7cb30817-8790-1d2c-39de-30d21f312577	2021-05-26 23:30:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:30:24.952+03	2021-05-26 23:30:24.96+03	
a8ddf9ec-64b2-6703-4f10-8a75466192ec	2021-05-26 23:30:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:30:45.951+03	2021-05-26 23:30:45.958+03	
ae43da45-6c03-a62b-3694-069a98afe69c	2021-05-26 23:31:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:31:05.951+03	2021-05-26 23:31:05.958+03	
f04e026f-df03-f0d1-c795-d2154a768201	2021-05-26 23:31:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:31:25.951+03	2021-05-26 23:31:25.976+03	
3e6c8068-30e1-2a22-0da4-795d377def5c	2021-05-26 23:31:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:31:45.951+03	2021-05-26 23:31:45.959+03	
f8bd9aa0-415b-2dc9-afd0-c9444aedffc9	2021-05-26 23:32:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:32:05.952+03	2021-05-26 23:32:05.96+03	
2cd9da6c-901e-4136-93e4-1ca70974d435	2021-05-26 23:32:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:32:26.951+03	2021-05-26 23:32:26.958+03	
f7e784f0-a841-5d3b-cf1e-dc5c19050a51	2021-05-26 23:32:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:32:46.951+03	2021-05-26 23:32:46.959+03	
b2532632-7430-6624-de46-3bbfdc9890eb	2021-05-26 23:14:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:14:11.951+03	2021-05-26 23:14:11.957+03	
a970be01-5e73-b811-b7d1-6b4113ea320e	2021-05-26 23:14:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:14:31.951+03	2021-05-26 23:14:31.959+03	
0a506c7d-2c1f-3063-5ced-064ba6b2ae5a	2021-05-26 23:14:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:14:51.951+03	2021-05-26 23:14:51.958+03	
2f2c7571-9d53-27cb-bda4-b22e6792e581	2021-05-26 23:15:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:15:11.951+03	2021-05-26 23:15:11.958+03	
3a3c7d55-c334-0072-b9db-a8a90408cc4b	2021-05-26 23:15:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:15:31.951+03	2021-05-26 23:15:31.958+03	
82341329-74c5-e124-5b1a-6525bcbd610d	2021-05-26 23:15:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:15:51.951+03	2021-05-26 23:15:51.958+03	
6f097011-975e-de56-2d3e-ecad86feb898	2021-05-26 23:16:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:16:11.951+03	2021-05-26 23:16:11.958+03	
d6edd886-fb89-9245-53b0-aed574c321fc	2021-05-26 23:16:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:16:31.951+03	2021-05-26 23:16:31.959+03	
e0bc63fa-1d50-6761-d063-21ab299af67f	2021-05-26 23:16:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:16:51.951+03	2021-05-26 23:16:51.958+03	
28961cd1-5e25-f707-c76d-75bc176108d4	2021-05-26 23:17:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:17:11.951+03	2021-05-26 23:17:11.958+03	
58156406-c02d-3b64-194c-30e59b2d757d	2021-05-26 23:17:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:17:31.951+03	2021-05-26 23:17:31.958+03	
ede632e8-7a5e-f966-93c5-d7ec22fb26ca	2021-05-26 23:17:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:17:51.952+03	2021-05-26 23:17:51.96+03	
cd37948d-f290-106c-26ce-17a184c07f78	2021-05-26 23:18:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:18:12.951+03	2021-05-26 23:18:12.958+03	
7c38e1ed-b5f6-bd9d-56af-4230324bccb7	2021-05-26 23:18:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:18:33.951+03	2021-05-26 23:18:33.959+03	
99476162-70b6-70ea-15fe-0e56715e3a5f	2021-05-26 23:18:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:18:53.951+03	2021-05-26 23:18:53.959+03	
1b8b9a84-91d2-2fb9-736a-0c85a3dd9081	2021-05-26 23:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:19:13.951+03	2021-05-26 23:19:13.96+03	
91a2d8ba-9333-f7b2-d397-99a1cc780635	2021-05-26 23:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:19:33.951+03	2021-05-26 23:19:33.958+03	
7fc7f012-36df-ea38-a1ff-cf16144830e6	2021-05-26 23:19:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:19:53.951+03	2021-05-26 23:19:53.957+03	
ff6e37b7-69fa-a5c0-3c33-156ba887ef42	2021-05-26 23:20:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:20:03.951+03	2021-05-26 23:20:03.96+03	
3db3edc3-1fb3-2e40-3d7c-fa248614b3ac	2021-05-26 23:20:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:20:23.951+03	2021-05-26 23:20:23.961+03	
5a5a3b5d-aa18-490d-bfbf-bf3e393d8d3e	2021-05-26 23:20:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:20:43.951+03	2021-05-26 23:20:43.957+03	
0d3de321-cedc-62dc-d903-023ffba3bd9a	2021-05-26 23:21:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:21:03.951+03	2021-05-26 23:21:03.96+03	
3ffd1c63-1caa-94d5-0db2-8c20faa3d94b	2021-05-26 23:21:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:21:23.951+03	2021-05-26 23:21:23.958+03	
b4868186-fad5-c3dc-3451-61a3f694512f	2021-05-26 23:21:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:21:43.951+03	2021-05-26 23:21:43.958+03	
6298b234-f84b-5a97-03e8-b027772bf7ab	2021-05-26 23:22:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:22:03.951+03	2021-05-26 23:22:03.958+03	
3ea5d702-ea60-6e41-e75c-8c3860190773	2021-05-26 23:22:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:22:23.951+03	2021-05-26 23:22:23.962+03	
2e4f33c8-6a14-f402-7e55-9eb4daa5016f	2021-05-26 23:22:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:22:43.951+03	2021-05-26 23:22:43.959+03	
74dc86be-5b11-73de-b6d4-e7a7bbf4447e	2021-05-26 23:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:23:03.951+03	2021-05-26 23:23:03.958+03	
c6e6347c-99c4-68fe-d82d-29f5e3095fab	2021-05-26 23:23:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:23:23.951+03	2021-05-26 23:23:23.958+03	
731f2713-1288-87ed-65cd-878f75affbc9	2021-05-26 23:23:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:23:43.951+03	2021-05-26 23:23:43.959+03	
e1763097-6fcd-09a4-1c8a-32f0d2e59dcc	2021-05-26 23:24:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:24:03.951+03	2021-05-26 23:24:03.958+03	
0040601c-453d-2552-1509-6d5b2913aa1e	2021-05-26 23:24:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:24:23.951+03	2021-05-26 23:24:23.958+03	
290aff09-1e3d-4fbc-ccd1-fe5f0e7a3629	2021-05-26 23:24:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:24:43.952+03	2021-05-26 23:24:43.958+03	
153e3d1f-eab4-bfb9-0fa5-bcec88f1a430	2021-05-26 23:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:25:04.951+03	2021-05-26 23:25:04.96+03	
7517081c-f244-8286-2f6e-2d153796a7c4	2021-05-26 23:25:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:25:24.951+03	2021-05-26 23:25:24.962+03	
f5dd3a48-4fca-fe19-b44a-ba8844066e86	2021-05-26 23:25:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:25:44.951+03	2021-05-26 23:25:44.963+03	
ef9e352a-8902-ea89-738a-23e344faf26f	2021-05-26 23:26:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:26:04.951+03	2021-05-26 23:26:04.958+03	
b0f86440-7b0e-d5fc-d0c7-a77ab90912b1	2021-05-26 23:26:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:26:24.951+03	2021-05-26 23:26:24.959+03	
2407e85d-5d7c-fa0a-2789-469911a3a126	2021-05-26 23:26:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:26:44.951+03	2021-05-26 23:26:44.96+03	
ed709f5a-02ed-b04d-6a37-3ccf00399c66	2021-05-26 23:27:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:27:04.951+03	2021-05-26 23:27:04.959+03	
209cb08d-2b20-7a98-7fc8-fda89e383d1e	2021-05-26 23:27:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:27:24.951+03	2021-05-26 23:27:24.959+03	
e9839f8e-5c5c-8c2d-6dcb-bf9ac92ab451	2021-05-26 23:27:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:27:44.951+03	2021-05-26 23:27:44.957+03	
ac93ef28-baf8-f00f-c6fe-f42028ca01ff	2021-05-26 23:28:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:28:04.951+03	2021-05-26 23:28:04.958+03	
e5383990-a0cd-4bbc-50d2-2717a87a7e53	2021-05-26 23:28:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:28:24.951+03	2021-05-26 23:28:24.961+03	
fe61eb6e-a4a6-aaca-2bbe-c7e6ef723763	2021-05-26 23:28:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:28:44.951+03	2021-05-26 23:28:44.959+03	
9bb847c7-2228-a1e2-636d-e3901d46668c	2021-05-26 23:29:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:29:04.951+03	2021-05-26 23:29:04.957+03	
6941214d-9eda-b8e2-f6e8-762c4412a031	2021-05-26 23:29:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:29:24.951+03	2021-05-26 23:29:24.958+03	
9e99c106-eb72-0035-fa7f-eff5531b209c	2021-05-26 23:29:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:29:44.951+03	2021-05-26 23:29:44.958+03	
6a715108-db89-c5c4-a0c4-f823a11f2970	2021-05-26 23:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 23:30:00.951+03	2021-05-26 23:30:00.957+03	ERROR
c1529afb-1af1-b73e-1bc4-24e2c1d44063	2021-05-26 23:30:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:30:14.951+03	2021-05-26 23:30:14.958+03	
2c05bc53-cce0-0ceb-f373-c5279052c395	2021-05-26 23:30:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:30:35.951+03	2021-05-26 23:30:35.959+03	
0015b8d5-b1d5-bcc7-7b9e-5e9ff18f68d2	2021-05-26 23:30:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:30:55.951+03	2021-05-26 23:30:55.986+03	
f6bbe328-e977-e0f0-ecdd-60e8567abbc0	2021-05-26 23:31:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:31:15.951+03	2021-05-26 23:31:15.959+03	
8ccdfa9a-7b08-462c-3aa2-287acabb7728	2021-05-26 23:31:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:31:35.951+03	2021-05-26 23:31:35.957+03	
c5779921-a3a5-fa8f-4fe4-61b3431a6d5f	2021-05-26 23:31:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:31:55.951+03	2021-05-26 23:31:55.958+03	
232fc1b5-f910-8d61-f3d3-d1bbaf9abbb3	2021-05-26 23:32:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:32:16.951+03	2021-05-26 23:32:16.957+03	
78abab85-71de-08e9-278c-d6c9f1d090dc	2021-05-26 23:32:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:32:36.951+03	2021-05-26 23:32:36.958+03	
c5ab8b15-c5dc-a139-1241-1b8a251d9bf6	2021-05-26 23:32:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:32:56.951+03	2021-05-26 23:32:56.958+03	
41f4e360-6929-305f-5b92-d5d6b9289cd5	2021-05-26 23:33:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:33:16.951+03	2021-05-26 23:33:16.96+03	
56e4e2d3-5138-3219-719f-0748b0519257	2021-05-26 23:33:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:33:36.951+03	2021-05-26 23:33:36.958+03	
c2fcce92-5756-aa17-392d-dd277432c9c3	2021-05-26 23:33:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:33:56.951+03	2021-05-26 23:33:56.96+03	
6b894740-6647-96ea-e16c-7b4263170491	2021-05-26 23:34:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:34:16.951+03	2021-05-26 23:34:16.959+03	
c3fea84e-e1d1-8b0a-3f56-c8cfd6b8d8aa	2021-05-26 23:34:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:34:36.951+03	2021-05-26 23:34:36.958+03	
925fa8ba-1067-cfcf-02bb-60d718291819	2021-05-26 23:33:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:33:06.951+03	2021-05-26 23:33:06.966+03	
ce5f990b-4509-d33c-0ceb-32756e7181ae	2021-05-26 23:33:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:33:26.951+03	2021-05-26 23:33:26.958+03	
f0f65689-edf6-84bd-8609-2e46d4061df1	2021-05-26 23:33:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:33:46.951+03	2021-05-26 23:33:46.96+03	
cb4357fe-4aea-443a-97a2-229d72a43fdc	2021-05-26 23:34:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:34:06.951+03	2021-05-26 23:34:06.959+03	
23b351c7-b0d0-cf9d-447c-ebed7aebdc6b	2021-05-26 23:34:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:34:26.951+03	2021-05-26 23:34:26.958+03	
94b1e541-f993-3e55-eb37-5363d8cf597d	2021-05-26 23:34:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:34:46.951+03	2021-05-26 23:34:46.959+03	
1ef178bf-db9b-c557-4a11-ed90884bb938	2021-05-26 23:35:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:35:06.951+03	2021-05-26 23:35:06.959+03	
7f66093c-516a-24f7-0b13-a784148e9bbe	2021-05-26 23:35:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:35:26.951+03	2021-05-26 23:35:26.958+03	
915178b0-fc35-9822-e6b3-8efa6478c03e	2021-05-26 23:35:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:35:46.951+03	2021-05-26 23:35:46.958+03	
c07ea221-1fa9-0272-9c1a-ff2357b1d045	2021-05-26 23:36:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:36:06.951+03	2021-05-26 23:36:06.958+03	
be8d5b32-d3bb-1153-fc03-9eef39f3d469	2021-05-26 23:36:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:36:26.951+03	2021-05-26 23:36:26.96+03	
8278ef2a-2b0d-f1b7-77bb-75ada36e17b5	2021-05-26 23:36:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:36:46.951+03	2021-05-26 23:36:46.96+03	
67c9394c-0305-ec71-b08a-880a91ed3819	2021-05-26 23:37:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:37:06.951+03	2021-05-26 23:37:06.959+03	
39ef9fad-e1d3-cd7c-01b1-cdbb9fcd8dea	2021-05-26 23:37:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:37:26.952+03	2021-05-26 23:37:26.959+03	
1e09a920-5791-681d-968f-d822e0bec764	2021-05-26 23:37:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:37:47.951+03	2021-05-26 23:37:47.96+03	
e3947b13-924f-c281-69a6-05c9cf706c33	2021-05-26 23:38:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:38:07.951+03	2021-05-26 23:38:07.96+03	
805f56be-0387-0c67-225e-2882972064c1	2021-05-26 23:38:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:38:27.951+03	2021-05-26 23:38:27.96+03	
36ca4107-f067-9b71-af3f-2b1018a20d6c	2021-05-26 23:38:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:38:47.951+03	2021-05-26 23:38:47.96+03	
664dcd4b-d785-83ac-9f88-96218f2c5e59	2021-05-26 23:39:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:39:07.952+03	2021-05-26 23:39:07.96+03	
de33261b-c9e6-4a1b-7092-fd23b3d8c3db	2021-05-26 23:39:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:39:29.951+03	2021-05-26 23:39:29.958+03	
743de7bc-6756-ca21-5826-565c9a850d94	2021-05-26 23:39:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:39:49.951+03	2021-05-26 23:39:49.958+03	
8234f2a8-0d4a-e260-7fc3-450225e48129	2021-05-26 23:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 23:40:00.951+03	2021-05-26 23:40:00.956+03	ERROR
f8b150ee-6685-0834-d11d-c8a27322be54	2021-05-26 23:40:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:40:19.951+03	2021-05-26 23:40:19.959+03	
45d2b002-d418-32b9-7acf-3d3270338931	2021-05-26 23:40:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:40:39.951+03	2021-05-26 23:40:39.958+03	
87c2d001-0c04-01c0-5944-4da6b393d83d	2021-05-26 23:40:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:40:59.951+03	2021-05-26 23:40:59.959+03	
a41c5dde-45e7-90a5-ceba-ce931b5b6192	2021-05-26 23:41:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:41:19.951+03	2021-05-26 23:41:19.959+03	
1b48ce02-6222-ad16-d4bf-8f7b9c696797	2021-05-26 23:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:41:39.951+03	2021-05-26 23:41:39.961+03	
1dfd6917-6c24-47f5-0252-ca6f8cd638fd	2021-05-26 23:41:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:41:59.951+03	2021-05-26 23:41:59.958+03	
16933652-54a3-e77e-6f8a-2e1840969749	2021-05-26 23:42:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:42:19.951+03	2021-05-26 23:42:19.958+03	
09abdbc5-485c-7c74-5795-69f0affefe7a	2021-05-26 23:42:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:42:39.951+03	2021-05-26 23:42:39.96+03	
dfaa9451-907c-21cc-1999-5c191104a14c	2021-05-26 23:42:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:42:59.951+03	2021-05-26 23:42:59.957+03	
9338a505-72b5-cee0-fc13-0cfa1313b26e	2021-05-26 23:43:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:43:19.951+03	2021-05-26 23:43:19.958+03	
6371e23b-4337-60d4-faec-7a42b608e8c9	2021-05-26 23:43:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:43:39.951+03	2021-05-26 23:43:39.962+03	
3b8e27ad-dc7f-2866-0b81-1a30ea60d553	2021-05-26 23:43:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:43:59.951+03	2021-05-26 23:43:59.96+03	
afd6bdf1-9c57-5c92-4a08-b062671e444c	2021-05-26 23:44:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:44:19.951+03	2021-05-26 23:44:19.958+03	
7b79562b-99dd-487a-b105-821d57d06387	2021-05-26 23:44:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:44:39.951+03	2021-05-26 23:44:39.959+03	
4c4535fd-8928-64cc-858b-c6c298abfc69	2021-05-26 23:44:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:44:59.951+03	2021-05-26 23:44:59.957+03	
39bb2767-4043-dd6f-80e2-53f1b8b097ce	2021-05-26 23:45:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:45:19.951+03	2021-05-26 23:45:19.959+03	
1534bc29-0b4f-8d38-bf69-accefb94856a	2021-05-26 23:45:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:45:39.951+03	2021-05-26 23:45:39.958+03	
f7586a2c-4218-eff7-fe40-ec450ad860dc	2021-05-26 23:45:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:45:59.951+03	2021-05-26 23:45:59.959+03	
95058153-2c7c-1685-49ea-d4f7b359fcc4	2021-05-26 23:46:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:46:20.951+03	2021-05-26 23:46:20.959+03	
e52159b8-6ce4-0b75-b2da-59b88d4919d7	2021-05-26 23:46:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:46:40.951+03	2021-05-26 23:46:40.957+03	
07835143-c271-3d90-8a17-c82388c1493b	2021-05-26 23:47:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:47:00.951+03	2021-05-26 23:47:00.959+03	
fe9523fa-16c2-82c7-88b4-14660900a97d	2021-05-26 23:47:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:47:20.951+03	2021-05-26 23:47:20.959+03	
c46ab078-bf85-b91e-17de-69ebdcd2968d	2021-05-26 23:47:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:47:40.951+03	2021-05-26 23:47:40.958+03	
cb1fa552-64a0-c997-41c0-3fc7533fce29	2021-05-26 23:48:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:48:00.951+03	2021-05-26 23:48:00.958+03	
442ea1fa-6704-cec3-e2ae-68b88ead272b	2021-05-26 23:48:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:48:20.951+03	2021-05-26 23:48:20.959+03	
a634d593-5a97-97ef-7e44-30f04048557b	2021-05-26 23:48:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:48:41.951+03	2021-05-26 23:48:41.959+03	
ec4a4a04-d25c-e992-7949-954f16877a7e	2021-05-26 23:49:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:49:01.951+03	2021-05-26 23:49:01.96+03	
34b6c737-321c-fb5d-2900-c36020f9f5f3	2021-05-26 23:49:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:49:21.951+03	2021-05-26 23:49:21.96+03	
c4d08fd7-7ad4-cfcb-84f2-7050f87c70d4	2021-05-26 23:49:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:49:41.951+03	2021-05-26 23:49:41.96+03	
66cd2d3c-5b88-0d96-2913-6532beb87c69	2021-05-26 23:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-26 23:50:00.951+03	2021-05-26 23:50:00.957+03	ERROR
469cb9f6-63de-1e8b-ba37-33a7330ebc17	2021-05-26 23:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:50:11.951+03	2021-05-26 23:50:11.958+03	
e2d4bfab-8898-1044-db19-2cdea689dbf3	2021-05-26 23:50:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:50:31.951+03	2021-05-26 23:50:31.96+03	
564871ed-494b-5ab2-8936-10e12b1016a2	2021-05-26 23:50:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:50:51.951+03	2021-05-26 23:50:51.959+03	
bf51e127-8faa-254d-7134-7ec7806c1b6c	2021-05-26 23:51:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:51:11.951+03	2021-05-26 23:51:11.96+03	
cada8349-7e85-ba41-e7e9-3dea85b4e0ee	2021-05-26 23:51:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:51:31.951+03	2021-05-26 23:51:31.958+03	
9b3d22d1-a1b5-0af6-5505-d8283548d3e4	2021-05-26 23:51:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:51:51.951+03	2021-05-26 23:51:51.958+03	
bb883c68-bb17-4f1d-b272-6178c92494e8	2021-05-26 23:52:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:52:11.951+03	2021-05-26 23:52:11.96+03	
1e45b9a6-3ed4-1bb7-b724-a2902846b9a8	2021-05-26 23:52:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:52:31.951+03	2021-05-26 23:52:31.957+03	
561d3802-0a64-2670-6e5a-3e9256b326b8	2021-05-26 23:52:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:52:51.951+03	2021-05-26 23:52:51.958+03	
df954655-9e50-7e82-cea1-0b7f2bf7dc4c	2021-05-26 23:53:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:53:11.951+03	2021-05-26 23:53:11.957+03	
28d03808-e809-dfce-5420-9354a20aeb30	2021-05-26 23:53:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:53:31.951+03	2021-05-26 23:53:31.958+03	
e42908bc-fa9f-0166-e58f-052b00b17edc	2021-05-26 23:34:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:34:56.951+03	2021-05-26 23:34:56.959+03	
6e6f1075-2063-2222-139f-4d3eac76e254	2021-05-26 23:35:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:35:16.951+03	2021-05-26 23:35:16.958+03	
2ad2c4c6-1f54-e22c-3ccf-49f1522e8c3f	2021-05-26 23:35:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:35:36.951+03	2021-05-26 23:35:36.96+03	
77ff154c-5c5e-dec8-315d-403b4e6b1792	2021-05-26 23:35:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:35:56.951+03	2021-05-26 23:35:56.959+03	
cfd44e9c-1881-098e-84fd-51a08dea0ebe	2021-05-26 23:36:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:36:16.951+03	2021-05-26 23:36:16.96+03	
4337d248-9f29-0bb4-4682-51083ee20f0d	2021-05-26 23:36:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:36:36.951+03	2021-05-26 23:36:36.958+03	
40d0573f-fca9-9b27-5c2a-76ca27476e63	2021-05-26 23:36:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:36:56.951+03	2021-05-26 23:36:56.958+03	
0bec9e20-d607-3a6e-937a-8ef191ba8acb	2021-05-26 23:37:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:37:16.951+03	2021-05-26 23:37:16.961+03	
6908325c-00be-05ee-8e37-233b21616aa9	2021-05-26 23:37:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:37:37.951+03	2021-05-26 23:37:37.961+03	
e2d71f26-b014-2bb6-88d8-0ba4c80d11f0	2021-05-26 23:37:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:37:57.951+03	2021-05-26 23:37:57.962+03	
44ea6068-3b69-3187-4fb9-6a302461e575	2021-05-26 23:38:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:38:17.951+03	2021-05-26 23:38:17.959+03	
61c1350a-0853-7503-5b84-0f8c7b8f65f2	2021-05-26 23:38:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:38:37.951+03	2021-05-26 23:38:37.961+03	
2ccc3777-c3e0-7c93-254b-3d35a7db7e26	2021-05-26 23:38:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:38:57.952+03	2021-05-26 23:38:57.96+03	
5702cf30-b912-11ff-5efa-f57e5748eb1d	2021-05-26 23:39:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:39:18.952+03	2021-05-26 23:39:18.958+03	
62f5e05a-1241-d890-8261-53cde82c12a6	2021-05-26 23:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:39:39.951+03	2021-05-26 23:39:39.96+03	
7f25fc33-7fb6-0027-87ff-27ecbc031d17	2021-05-26 23:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:39:59.951+03	2021-05-26 23:39:59.96+03	
b726b667-1d8a-70fb-ffb1-172829ec5527	2021-05-26 23:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:40:09.951+03	2021-05-26 23:40:09.96+03	
6320674b-7471-c08e-eb35-af1a2a19ef5c	2021-05-26 23:40:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:40:29.951+03	2021-05-26 23:40:29.959+03	
62ef339c-cbc7-811c-7878-f7e4498b6cf2	2021-05-26 23:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:40:49.951+03	2021-05-26 23:40:49.957+03	
3a91ffb4-b30f-51fc-0d34-4b28673bb195	2021-05-26 23:41:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:41:09.951+03	2021-05-26 23:41:09.959+03	
77ec0f89-6856-d695-d900-e4632861baec	2021-05-26 23:41:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:41:29.951+03	2021-05-26 23:41:29.958+03	
2fe58349-bedb-697f-0d5b-eb26197a9f59	2021-05-26 23:41:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:41:49.951+03	2021-05-26 23:41:49.959+03	
42fe8755-858b-dabe-a7f4-fc56653aa12d	2021-05-26 23:42:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:42:09.951+03	2021-05-26 23:42:09.959+03	
0be1448a-1d93-1128-0e76-f85cc582240b	2021-05-26 23:42:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:42:29.951+03	2021-05-26 23:42:29.959+03	
57b5dc16-5b78-f664-172d-cb54c2396d72	2021-05-26 23:42:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:42:49.951+03	2021-05-26 23:42:49.958+03	
0d6700fb-1c65-1b19-9451-cb5350834fd0	2021-05-26 23:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:43:09.951+03	2021-05-26 23:43:09.958+03	
8c6154d5-52dd-3e83-f29a-34690d1c9114	2021-05-26 23:43:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:43:29.951+03	2021-05-26 23:43:29.957+03	
4dbf3920-58b7-3746-05b2-de3113ccdecb	2021-05-26 23:43:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:43:49.951+03	2021-05-26 23:43:49.959+03	
496e11ca-e0cd-52bd-63df-c44676d497dd	2021-05-26 23:44:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:44:09.951+03	2021-05-26 23:44:09.96+03	
2a0c617b-a6d8-7ecc-b683-45a971a3b31b	2021-05-26 23:44:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:44:29.951+03	2021-05-26 23:44:29.959+03	
789e3b45-1ea1-00c2-c211-b1c93e92dc90	2021-05-26 23:44:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:44:49.951+03	2021-05-26 23:44:49.957+03	
b32fe931-2fa7-c70a-b6f7-c8f3f4edc116	2021-05-26 23:45:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:45:09.951+03	2021-05-26 23:45:09.961+03	
b99f256e-5c3f-89da-931c-a4b4e820c131	2021-05-26 23:45:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:45:29.951+03	2021-05-26 23:45:29.957+03	
2daa12a9-ebe0-e9c4-8be0-05ef798b5ad9	2021-05-26 23:45:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:45:49.951+03	2021-05-26 23:45:49.958+03	
ac2031d9-5170-94f0-5d41-db6b6ba553a9	2021-05-26 23:46:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:46:09.952+03	2021-05-26 23:46:09.959+03	
febe466b-1ecb-8a75-c959-665ae77457c3	2021-05-26 23:46:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:46:30.951+03	2021-05-26 23:46:30.958+03	
7bc2ef11-696d-6cb9-c0df-30d95680196a	2021-05-26 23:46:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:46:50.951+03	2021-05-26 23:46:50.958+03	
eb32d5ca-5d14-8aef-073e-7a5fd012e79d	2021-05-26 23:47:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:47:10.951+03	2021-05-26 23:47:10.958+03	
0342fa4d-504e-6879-2a65-7b8d4191e0ce	2021-05-26 23:47:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:47:30.951+03	2021-05-26 23:47:30.958+03	
619500ca-15db-15b3-5408-0eb83469bb9f	2021-05-26 23:47:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:47:50.951+03	2021-05-26 23:47:50.958+03	
fdd3c9d4-3aa0-93d2-0a35-6a89712fe0fc	2021-05-26 23:48:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:48:10.951+03	2021-05-26 23:48:10.962+03	
71a4e6be-5b1d-4191-059b-2bb29ddf72c3	2021-05-26 23:48:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:48:30.952+03	2021-05-26 23:48:30.959+03	
817c43c6-d9b6-fdb5-821a-6c497de8118c	2021-05-26 23:48:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:48:51.951+03	2021-05-26 23:48:51.96+03	
5b3a8cb1-a6a8-83f1-ca99-43648bfe9a7c	2021-05-26 23:49:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:49:11.951+03	2021-05-26 23:49:11.958+03	
63dcc860-47ba-9cee-d71d-7d37f12845f2	2021-05-26 23:49:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:49:31.951+03	2021-05-26 23:49:31.959+03	
b3134148-8cbf-ccb1-616f-93605a6172b7	2021-05-26 23:49:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:49:51.951+03	2021-05-26 23:49:51.958+03	
0241132d-96a4-20d8-abe8-e6f9028266b2	2021-05-26 23:50:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:50:01.951+03	2021-05-26 23:50:01.966+03	
d1c34a0b-7068-cd3e-9a7c-f5e4304eabb4	2021-05-26 23:50:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:50:21.951+03	2021-05-26 23:50:21.96+03	
733fa34a-7755-17a4-26af-7fa3530bceea	2021-05-26 23:50:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:50:41.951+03	2021-05-26 23:50:41.958+03	
1aa35a37-e986-a653-604f-9bdc60d28432	2021-05-26 23:51:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:51:01.951+03	2021-05-26 23:51:01.962+03	
06b89cbe-eda3-f1c5-e222-23a0e8d1e01e	2021-05-26 23:51:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:51:21.951+03	2021-05-26 23:51:21.958+03	
eaaeab43-c473-2a38-dd3b-73504c15afd2	2021-05-26 23:51:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:51:41.951+03	2021-05-26 23:51:41.96+03	
6c6d49e8-fdba-7ecb-e804-21c0594053fa	2021-05-26 23:52:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:52:01.951+03	2021-05-26 23:52:01.96+03	
4d141d87-7691-32a8-fec8-1cce2a944b2a	2021-05-26 23:52:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:52:21.951+03	2021-05-26 23:52:21.96+03	
82d835c7-50c8-e979-fc3d-7536ad3b35ca	2021-05-26 23:52:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:52:41.951+03	2021-05-26 23:52:41.959+03	
7ba199c6-cab1-1bb2-d4b8-cd97d63f66a2	2021-05-26 23:53:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:53:01.951+03	2021-05-26 23:53:01.958+03	
cff43d2a-62d5-27e4-09f4-7109a128f073	2021-05-26 23:53:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:53:21.951+03	2021-05-26 23:53:21.958+03	
49a7a66c-1f04-7d27-4cba-6ea65c64b86e	2021-05-26 23:53:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:53:41.951+03	2021-05-26 23:53:41.96+03	
825dec20-e59c-7689-fd35-32a396d5f5fe	2021-05-26 23:54:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:54:01.951+03	2021-05-26 23:54:01.959+03	
8996b238-8780-bac7-31cd-f9fc666b53bc	2021-05-26 23:54:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:54:21.951+03	2021-05-26 23:54:21.959+03	
484f0f38-f343-e7be-3872-97b3508bed55	2021-05-26 23:54:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:54:41.951+03	2021-05-26 23:54:41.96+03	
7805ae23-6728-b297-0653-ac055ffeca19	2021-05-26 23:55:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:55:01.951+03	2021-05-26 23:55:01.958+03	
6c19f19b-c67d-a3e3-296f-d407f62066d5	2021-05-26 23:55:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:55:21.951+03	2021-05-26 23:55:21.961+03	
fc01bc45-0725-e8a6-69ca-461588f9b1d8	2021-05-26 23:53:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:53:51.951+03	2021-05-26 23:53:51.96+03	
fad95ab6-cf5f-d41d-ea64-1a5b4bc1c97d	2021-05-26 23:54:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:54:11.951+03	2021-05-26 23:54:11.958+03	
77de60c7-e75d-55b4-63d8-288e1e334b39	2021-05-26 23:54:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:54:31.951+03	2021-05-26 23:54:31.959+03	
075bc06c-9d41-cbb6-2f18-6b4aef6aa971	2021-05-26 23:54:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:54:51.951+03	2021-05-26 23:54:51.96+03	
83b436f4-6c26-f09b-1ff0-6ecb13f09c61	2021-05-26 23:55:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:55:11.951+03	2021-05-26 23:55:11.959+03	
6d15a5f0-7ab2-39de-28e6-4986ad80181b	2021-05-26 23:55:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:55:31.951+03	2021-05-26 23:55:31.959+03	
a415e65b-8895-2ddc-005d-c69653bbe974	2021-05-26 23:55:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:55:51.951+03	2021-05-26 23:55:51.958+03	
ca622e8e-e614-00d6-6ff7-9c43cef59891	2021-05-26 23:56:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:56:11.951+03	2021-05-26 23:56:11.958+03	
5f302ff3-a3c1-45e4-332c-67c7c6299ae1	2021-05-26 23:56:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:56:31.951+03	2021-05-26 23:56:31.958+03	
f1737f20-17f5-12bf-3a11-e9ecb1d86b6f	2021-05-26 23:56:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:56:51.951+03	2021-05-26 23:56:51.957+03	
6f61b1bd-e3a3-a1bd-3359-524580a7b482	2021-05-26 23:57:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:57:11.951+03	2021-05-26 23:57:11.959+03	
cd923fae-f6f4-9c60-85ca-414623c15aa5	2021-05-26 23:57:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:57:31.951+03	2021-05-26 23:57:31.96+03	
e920e2ff-db7e-816d-3f81-5ba31c8d31aa	2021-05-26 23:57:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:57:51.951+03	2021-05-26 23:57:51.958+03	
fed8c0a3-074c-fae2-93cd-f59c0a90f7f0	2021-05-26 23:58:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:58:11.951+03	2021-05-26 23:58:11.961+03	
217a6fde-e1f8-4a19-1d78-d3b457cb9a92	2021-05-26 23:58:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:58:31.951+03	2021-05-26 23:58:31.959+03	
12003017-1d03-238a-45fc-00ebf4405d7f	2021-05-26 23:58:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:58:51.951+03	2021-05-26 23:58:51.96+03	
15b2b7c7-fc87-6a0f-8125-0b821e4963e1	2021-05-26 23:59:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:59:11.951+03	2021-05-26 23:59:11.959+03	
5c1d5f6f-2ccf-5f83-9361-64577b780fa8	2021-05-26 23:59:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:59:31.951+03	2021-05-26 23:59:31.958+03	
e0deb091-1155-313f-9727-e21b8472dd41	2021-05-26 23:59:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:59:51.951+03	2021-05-26 23:59:51.96+03	
abe96e5d-e49f-8986-a0b9-5a0861833454	2021-05-27 00:00:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:00:01.951+03	2021-05-27 00:00:01.958+03	
a53954ae-94e2-e55c-c2c2-660a0735d572	2021-05-27 00:00:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:00:21.951+03	2021-05-27 00:00:21.958+03	
46790e9b-a4a1-4409-83bb-475591cee545	2021-05-27 00:00:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:00:41.951+03	2021-05-27 00:00:41.957+03	
be1c18be-4018-4cb3-014d-e79f9c64a293	2021-05-27 00:01:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:01:01.951+03	2021-05-27 00:01:01.961+03	
5df19a59-f416-fef6-4b1f-bc1ed13e8488	2021-05-27 00:01:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:01:21.951+03	2021-05-27 00:01:21.958+03	
4c53a792-05a7-ace2-88e8-60977a9eafe7	2021-05-27 00:01:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:01:41.951+03	2021-05-27 00:01:41.96+03	
bd2bd068-0e4c-c869-6a8e-7d772261c1d6	2021-05-27 00:02:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:02:01.951+03	2021-05-27 00:02:01.959+03	
ef5a014d-3acd-4fca-4c2f-36e0cc5282f8	2021-05-27 00:02:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:02:21.951+03	2021-05-27 00:02:21.958+03	
021ef8b1-f696-35ff-b4ed-a876997e0cfc	2021-05-27 00:02:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:02:41.951+03	2021-05-27 00:02:41.959+03	
10540048-8189-ddac-2475-5457a5749212	2021-05-27 00:03:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:03:01.951+03	2021-05-27 00:03:01.958+03	
9957b9b3-6b7f-2ddd-2be0-edf656f5ed9c	2021-05-27 00:03:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:03:21.951+03	2021-05-27 00:03:21.958+03	
14eabae9-b1bf-fba5-4e9f-9893ac4549e9	2021-05-27 00:03:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:03:41.951+03	2021-05-27 00:03:41.959+03	
4755866a-6e87-0d62-d287-1de8dfdbddc7	2021-05-27 00:04:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:04:01.951+03	2021-05-27 00:04:01.958+03	
443a63cf-41b9-849d-63d6-5dfc4f368f84	2021-05-27 00:04:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:04:21.951+03	2021-05-27 00:04:21.958+03	
2eafd4ec-8f60-8633-d456-fc23ab85476f	2021-05-27 00:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:04:41.951+03	2021-05-27 00:04:41.958+03	
1667d8e9-d579-30e3-807f-ac62ee6c9085	2021-05-27 00:05:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:05:01.951+03	2021-05-27 00:05:01.958+03	
fe8f4dff-ec29-9fb1-473b-3b5d32dfa515	2021-05-27 00:05:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:05:21.951+03	2021-05-27 00:05:21.958+03	
76d657ea-359a-d399-f94f-8dafcbf8ffcf	2021-05-27 00:05:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:05:41.951+03	2021-05-27 00:05:41.963+03	
dea32078-f0be-3583-2296-dc189ee5cbeb	2021-05-27 00:06:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:06:01.951+03	2021-05-27 00:06:01.957+03	
4b84d6a5-288d-21d1-0006-5df2f5b0723b	2021-05-27 00:06:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:06:21.951+03	2021-05-27 00:06:21.958+03	
10ca8c69-a3e9-ee6d-04a5-08ae85a84e65	2021-05-27 00:06:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:06:41.952+03	2021-05-27 00:06:41.964+03	
2368dff9-193f-4ace-e2fa-4469a0a16118	2021-05-27 00:07:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:07:03.951+03	2021-05-27 00:07:03.96+03	
3b7b6d68-8b60-8dc6-ddfa-2ad0fceff588	2021-05-27 00:07:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:07:23.951+03	2021-05-27 00:07:23.959+03	
d114296b-3612-e898-df93-127a37dce597	2021-05-27 00:07:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:07:44.951+03	2021-05-27 00:07:44.959+03	
8f8c600e-365d-3dab-b308-c36030ea5773	2021-05-27 00:08:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:08:04.951+03	2021-05-27 00:08:04.958+03	
d1dd1b70-e27f-1871-9abe-f53c7ef3f282	2021-05-27 00:08:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:08:24.951+03	2021-05-27 00:08:24.957+03	
2b518be2-f5aa-7f33-376f-223fce7d7541	2021-05-27 00:08:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:08:44.951+03	2021-05-27 00:08:44.96+03	
7847f1db-f095-801e-6583-f6b50cdefabb	2021-05-27 00:09:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:09:04.951+03	2021-05-27 00:09:04.959+03	
c2931bbd-5fa9-511b-d39a-084dca7c16ee	2021-05-27 00:09:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:09:24.951+03	2021-05-27 00:09:24.96+03	
48057b10-48dc-78bd-6d36-8fa61f7a36e5	2021-05-27 00:09:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:09:44.951+03	2021-05-27 00:09:44.96+03	
afa58135-9515-fd8b-a942-79d1c119aedc	2021-05-27 00:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 00:10:00.951+03	2021-05-27 00:10:00.957+03	ERROR
f42261a1-f4bf-04bb-db43-f5978eb5c663	2021-05-27 00:10:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:10:14.951+03	2021-05-27 00:10:14.958+03	
a37cbcfa-b461-372b-f44d-10070b313c83	2021-05-27 00:10:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:10:34.951+03	2021-05-27 00:10:34.959+03	
dd3a2054-2622-34c0-5874-68dcc84e5db7	2021-05-27 00:10:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:10:54.951+03	2021-05-27 00:10:54.959+03	
faac35ad-6303-133c-53fc-69bc5613e209	2021-05-27 00:11:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:11:14.951+03	2021-05-27 00:11:14.957+03	
09e132d2-ac0f-5aeb-aad6-90e5219ea7ee	2021-05-27 00:11:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:11:35.951+03	2021-05-27 00:11:35.959+03	
46487e5d-cd7e-5184-6142-fddc5e3b43b7	2021-05-27 00:11:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:11:55.951+03	2021-05-27 00:11:55.958+03	
a650cd0a-bd66-72d8-37ac-f6107ce9e2b5	2021-05-27 00:12:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:12:16.951+03	2021-05-27 00:12:16.957+03	
95a6b857-a854-9aed-8fc7-8c7acd648662	2021-05-27 00:12:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:12:36.951+03	2021-05-27 00:12:36.957+03	
00310eb9-abea-1ece-53a3-0881022f420a	2021-05-27 00:12:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:12:56.951+03	2021-05-27 00:12:56.958+03	
a423ed48-0833-0700-7935-253c418a11cd	2021-05-27 00:13:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:13:16.951+03	2021-05-27 00:13:16.961+03	
600122bd-138f-1867-59fe-49ee0bda2570	2021-05-27 00:13:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:13:36.951+03	2021-05-27 00:13:36.959+03	
b618e4c6-b166-9578-b5fa-a0ef05040b6d	2021-05-27 00:13:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:13:56.951+03	2021-05-27 00:13:56.959+03	
170ba531-0d44-f260-3ad3-cf259ad5f4b9	2021-05-27 00:14:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:14:16.952+03	2021-05-27 00:14:16.963+03	
80140eb8-7a75-f0aa-3ace-e962430bb3fb	2021-05-26 23:55:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:55:41.951+03	2021-05-26 23:55:41.96+03	
be2f738a-4290-563f-e054-95350d730e79	2021-05-26 23:56:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:56:01.951+03	2021-05-26 23:56:01.959+03	
91e5f19e-0adc-ed37-3943-39d3917c599a	2021-05-26 23:56:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:56:21.951+03	2021-05-26 23:56:21.957+03	
88a35b16-ae62-ca7d-6951-93a96a8f065a	2021-05-26 23:56:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:56:41.951+03	2021-05-26 23:56:41.959+03	
db1e4ae6-7e87-3b9e-1ba8-209b6d28a259	2021-05-26 23:57:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:57:01.951+03	2021-05-26 23:57:01.958+03	
fa435616-a472-9895-683c-06359b19067a	2021-05-26 23:57:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:57:21.951+03	2021-05-26 23:57:21.959+03	
bf369df3-1714-de29-63ff-d31fd8ebf2c8	2021-05-26 23:57:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:57:41.951+03	2021-05-26 23:57:41.958+03	
c4d639dd-a8d9-c967-1a90-8929df55c352	2021-05-26 23:58:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:58:01.951+03	2021-05-26 23:58:01.959+03	
cc021cad-fefb-7c2c-5609-94aa38152329	2021-05-26 23:58:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:58:21.951+03	2021-05-26 23:58:21.959+03	
d97e3f09-9cbd-51e3-4b44-f337f8f5abe2	2021-05-26 23:58:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:58:41.951+03	2021-05-26 23:58:41.958+03	
5296c17a-117c-a9b9-460e-dcb43e68731f	2021-05-26 23:59:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:59:01.951+03	2021-05-26 23:59:01.959+03	
988162b5-dff3-8ec6-bb59-2feef347c824	2021-05-26 23:59:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:59:21.951+03	2021-05-26 23:59:21.963+03	
a5a0ab52-9200-6605-32d4-26a17713dd5c	2021-05-26 23:59:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-26 23:59:41.951+03	2021-05-26 23:59:41.959+03	
bb512179-e09f-000e-d8c4-61a5e530cf56	2021-05-27 00:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 00:00:00.951+03	2021-05-27 00:00:00.959+03	ERROR
1f1fdf79-537a-19dc-201f-8ef2b3f958f4	2021-05-27 00:00:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:00:11.951+03	2021-05-27 00:00:11.959+03	
ec084721-03d2-eb9e-c049-a9714617a859	2021-05-27 00:00:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:00:31.951+03	2021-05-27 00:00:31.957+03	
1f81c64a-bdd8-6185-53bc-8e37459219cd	2021-05-27 00:00:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:00:51.951+03	2021-05-27 00:00:51.959+03	
f5b7ad6f-7578-fe82-ae3c-801c158847d1	2021-05-27 00:01:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:01:11.951+03	2021-05-27 00:01:11.959+03	
a5d86f94-5b26-c9bd-9408-8a87080b2235	2021-05-27 00:01:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:01:31.951+03	2021-05-27 00:01:31.959+03	
424fafb2-0e52-eda5-b8df-5e8ea85f3b68	2021-05-27 00:01:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:01:51.951+03	2021-05-27 00:01:51.959+03	
f44cc805-3915-3b5d-8b71-a45ca4f86af1	2021-05-27 00:02:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:02:11.951+03	2021-05-27 00:02:11.957+03	
1991d3f5-b7b8-9e67-fe9e-5b3ba1ebf283	2021-05-27 00:02:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:02:31.951+03	2021-05-27 00:02:31.959+03	
23100ffa-557a-aee7-8ad5-4a8e80c1429a	2021-05-27 00:02:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:02:51.951+03	2021-05-27 00:02:51.96+03	
ac7939d1-89c3-579e-851b-475e0889e7be	2021-05-27 00:03:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:03:11.951+03	2021-05-27 00:03:11.959+03	
3ce1288b-eb72-d003-cdd3-7b2c77ecd98a	2021-05-27 00:03:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:03:31.951+03	2021-05-27 00:03:31.958+03	
7e6052d5-d9bc-5237-70c9-6904faef3087	2021-05-27 00:03:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:03:51.951+03	2021-05-27 00:03:51.959+03	
2a7ec312-3584-5143-c0d8-316925ebf272	2021-05-27 00:04:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:04:11.951+03	2021-05-27 00:04:11.957+03	
b1524494-dde3-a056-26ee-92fbcf8b153c	2021-05-27 00:04:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:04:31.951+03	2021-05-27 00:04:31.96+03	
b8f202e6-619d-ff3b-70f8-eb6d0e8f001a	2021-05-27 00:04:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:04:51.951+03	2021-05-27 00:04:51.958+03	
d22a282f-b76f-9d1e-1bce-3dce344ed699	2021-05-27 00:05:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:05:11.951+03	2021-05-27 00:05:11.959+03	
422d53a0-53db-1e00-b22e-afed7ef14988	2021-05-27 00:05:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:05:31.951+03	2021-05-27 00:05:31.959+03	
36cd2935-035e-b3b4-4c68-e5f68beb66a6	2021-05-27 00:05:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:05:51.951+03	2021-05-27 00:05:51.959+03	
37b1fc60-26bc-be8c-ab0e-6fea0f91f8b4	2021-05-27 00:06:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:06:11.951+03	2021-05-27 00:06:11.958+03	
6ee4c09a-21a7-efcd-4cdb-c8a0ee9bd2d9	2021-05-27 00:06:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:06:31.951+03	2021-05-27 00:06:31.959+03	
fe465e46-8da4-6c12-f03d-4ef439755d2b	2021-05-27 00:06:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:06:52.953+03	2021-05-27 00:06:52.96+03	
3bc716aa-92bf-e8cf-a7cc-49f8caae6eae	2021-05-27 00:07:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:07:13.951+03	2021-05-27 00:07:13.959+03	
afbfce92-a6a1-6c45-ca1f-0ef38a037a96	2021-05-27 00:07:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:07:33.952+03	2021-05-27 00:07:33.96+03	
77b97d70-c881-5467-bc75-bf538dbde450	2021-05-27 00:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:07:54.951+03	2021-05-27 00:07:54.958+03	
9aa46a3c-3e01-fdf3-2372-878e53746ec5	2021-05-27 00:08:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:08:14.951+03	2021-05-27 00:08:14.959+03	
c6840b4a-f538-51ff-ae37-d01fccc4a843	2021-05-27 00:08:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:08:34.951+03	2021-05-27 00:08:34.958+03	
d2f06a6e-5ca7-ef85-a011-254e27cdf275	2021-05-27 00:08:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:08:54.951+03	2021-05-27 00:08:54.958+03	
85739ce6-fc5b-3c19-4f70-4f8ce02d792a	2021-05-27 00:09:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:09:14.951+03	2021-05-27 00:09:14.958+03	
7b662111-8401-96ff-5b47-ddf4ed552f6b	2021-05-27 00:09:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:09:34.951+03	2021-05-27 00:09:34.957+03	
d202c56c-e69b-66dd-1aa5-932d10bd0098	2021-05-27 00:09:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:09:54.951+03	2021-05-27 00:09:54.959+03	
a6de89b2-5e29-59a9-706a-a59bf1e04a07	2021-05-27 00:10:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:10:04.951+03	2021-05-27 00:10:04.959+03	
acac3a7d-a2e2-fc14-4441-89edfc1cd293	2021-05-27 00:10:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:10:24.951+03	2021-05-27 00:10:24.958+03	
5f8d336f-a125-972a-c6ea-8fdbd09ef4fb	2021-05-27 00:10:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:10:44.951+03	2021-05-27 00:10:44.958+03	
9ff2b1a2-4153-8f49-a7bc-4e616b4a777e	2021-05-27 00:11:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:11:04.951+03	2021-05-27 00:11:04.958+03	
31c57de9-2806-194f-a998-430f7ab066cb	2021-05-27 00:11:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:11:24.952+03	2021-05-27 00:11:24.961+03	
ea1fd0f7-153a-87ea-12c0-80bba32e415e	2021-05-27 00:11:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:11:45.951+03	2021-05-27 00:11:45.959+03	
d68c9f87-575d-62e1-7cc8-a61aa9858300	2021-05-27 00:12:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:12:05.952+03	2021-05-27 00:12:05.959+03	
4b1a9c36-922b-5d21-e579-2dd3802479d5	2021-05-27 00:12:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:12:26.951+03	2021-05-27 00:12:26.959+03	
36dc8df1-df52-48ff-aedb-e4f07ed5e58a	2021-05-27 00:12:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:12:46.951+03	2021-05-27 00:12:46.958+03	
f771a7dc-e16a-08e1-6ad6-5fb6afd1b8ee	2021-05-27 00:13:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:13:06.951+03	2021-05-27 00:13:06.958+03	
4fcc2398-3c0e-a670-d0a8-c1053833bc34	2021-05-27 00:13:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:13:26.951+03	2021-05-27 00:13:26.958+03	
b60d96ad-3a6d-0bc6-3d73-08a836e0f421	2021-05-27 00:13:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:13:46.951+03	2021-05-27 00:13:46.958+03	
af33402f-6b5d-ffd1-f170-c22d3fd618eb	2021-05-27 00:14:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:14:06.951+03	2021-05-27 00:14:06.959+03	
99710d5b-d62a-6314-1572-b705cf61f159	2021-05-27 00:14:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:14:27.952+03	2021-05-27 00:14:27.96+03	
b0d964fe-7dff-11af-7a1e-6866fa494281	2021-05-27 00:14:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:14:47.952+03	2021-05-27 00:14:47.96+03	
49692cc7-2cff-402e-0dc7-bd6d41bc5a69	2021-05-27 00:15:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:15:09.951+03	2021-05-27 00:15:09.958+03	
feab17d6-f416-64fa-27ab-ca27b507cd8c	2021-05-27 00:15:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:15:29.951+03	2021-05-27 00:15:29.959+03	
57eb825e-8a1e-33cc-2dcb-eaaee6de738c	2021-05-27 00:15:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:15:49.951+03	2021-05-27 00:15:49.959+03	
de275c4a-a14b-6b9b-5098-fd95af3a785a	2021-05-27 00:16:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:16:09.952+03	2021-05-27 00:16:09.96+03	
40d37915-9374-1506-d6b5-8d1cfb352896	2021-05-27 00:14:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:14:37.952+03	2021-05-27 00:14:37.96+03	
82576323-3adf-eb0f-af6e-f676f2d67122	2021-05-27 00:14:58.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:14:58.952+03	2021-05-27 00:14:58.96+03	
43431a28-0b2c-9dea-0f2a-e5f29d6c3550	2021-05-27 00:15:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:15:19.951+03	2021-05-27 00:15:19.959+03	
aff06840-c493-a5ce-4519-98b41d637e56	2021-05-27 00:15:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:15:39.951+03	2021-05-27 00:15:39.962+03	
38773415-bece-1532-f85b-2c62b3bdd89b	2021-05-27 00:15:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:15:59.951+03	2021-05-27 00:15:59.957+03	
64ec31d3-b434-4c3a-3961-a697177502f8	2021-05-27 00:16:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:16:20.951+03	2021-05-27 00:16:20.96+03	
c9d6f08c-cbf2-a376-2dd3-d404b30a8e1f	2021-05-27 00:16:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:16:40.951+03	2021-05-27 00:16:40.958+03	
4c0599c0-9232-c4e5-68de-dc86de732d7d	2021-05-27 00:17:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:17:00.952+03	2021-05-27 00:17:00.963+03	
e36ef311-9705-9db3-a6fe-0244f43d04b9	2021-05-27 00:17:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:17:21.951+03	2021-05-27 00:17:21.958+03	
208cc53f-857b-0c44-08fe-e694fd1f3343	2021-05-27 00:17:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:17:41.951+03	2021-05-27 00:17:41.96+03	
0fde5d7d-982d-6b2a-d1b7-5f2f3cb0a821	2021-05-27 00:18:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:18:01.951+03	2021-05-27 00:18:01.958+03	
f853133a-b54f-ef3e-e850-0d9093413969	2021-05-27 00:18:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:18:21.951+03	2021-05-27 00:18:21.959+03	
b451ac45-8829-cbfd-dc0c-b79e9dd15215	2021-05-27 00:18:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:18:41.951+03	2021-05-27 00:18:41.959+03	
be5b6a02-401d-cb57-0585-4575575bc006	2021-05-27 00:19:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:19:01.951+03	2021-05-27 00:19:01.958+03	
242172b8-0746-c2c3-b089-620a6c85e95a	2021-05-27 00:19:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:19:21.951+03	2021-05-27 00:19:21.959+03	
40675d22-ed5f-a94b-d2f2-ec7d6db3df3d	2021-05-27 00:19:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:19:41.951+03	2021-05-27 00:19:41.96+03	
c2e16766-6243-7ef2-ba33-61775f6f6e52	2021-05-27 00:20:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 00:20:00.951+03	2021-05-27 00:20:00.956+03	ERROR
30ffafe1-a421-a8ab-3baa-4bef4a690e99	2021-05-27 00:20:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:20:11.951+03	2021-05-27 00:20:11.959+03	
68a04719-3c4f-62ce-3d59-a6462318bb70	2021-05-27 00:20:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:20:31.951+03	2021-05-27 00:20:31.958+03	
20133bb0-05b8-c58c-6a9c-2ddff944bca4	2021-05-27 00:20:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:20:51.951+03	2021-05-27 00:20:51.961+03	
b583f437-8b8c-d922-6871-5040e8096905	2021-05-27 00:21:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:21:11.951+03	2021-05-27 00:21:11.957+03	
771c64a7-f00d-f70d-51cf-afbfd0721ed3	2021-05-27 00:21:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:21:32.951+03	2021-05-27 00:21:32.96+03	
3ad4ed41-0702-f3c8-d05e-4f4e77407c44	2021-05-27 00:21:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:21:52.951+03	2021-05-27 00:21:52.958+03	
a41c814b-41de-72b8-474c-b47f488930c9	2021-05-27 00:22:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:22:12.951+03	2021-05-27 00:22:12.957+03	
eec94230-c933-acd4-34e9-35bb3b5ba55a	2021-05-27 00:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:22:33.952+03	2021-05-27 00:22:33.958+03	
33e9b430-5acc-3976-c73b-1672b711179f	2021-05-27 00:22:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:22:54.951+03	2021-05-27 00:22:54.959+03	
ebe4b080-8645-dc43-f6d3-15319ec3732b	2021-05-27 00:23:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:23:14.951+03	2021-05-27 00:23:14.958+03	
c4ad6116-aeb2-dae1-22e4-c32dc441f878	2021-05-27 00:23:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:23:34.951+03	2021-05-27 00:23:34.959+03	
b1900718-6b6e-67b5-c842-957d667cb097	2021-05-27 00:23:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:23:54.951+03	2021-05-27 00:23:54.96+03	
01cb24ef-dd76-5383-cd15-1a8e8ab627c6	2021-05-27 00:24:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:24:15.951+03	2021-05-27 00:24:15.96+03	
771b50da-d228-ba14-7ef9-e9640ce1f19f	2021-05-27 00:24:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:24:35.951+03	2021-05-27 00:24:35.959+03	
56a27a23-7556-018a-f78f-bb881c11364a	2021-05-27 00:24:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:24:55.951+03	2021-05-27 00:24:55.959+03	
a6569995-6d1f-f14c-7b6d-10ae89b60fa5	2021-05-27 00:25:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:25:16.951+03	2021-05-27 00:25:16.96+03	
2b88a0d0-82cc-4bb9-85eb-7e5425753002	2021-05-27 00:25:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:25:36.951+03	2021-05-27 00:25:36.967+03	
ba7dc145-f614-5299-100c-5fbcc5699f8c	2021-05-27 00:25:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:25:56.951+03	2021-05-27 00:25:56.959+03	
6e44d82b-d9ae-6ff3-5e14-447e168511ed	2021-05-27 00:26:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:26:16.951+03	2021-05-27 00:26:16.959+03	
d0259c9a-320e-5127-b7d0-1575edf1efb8	2021-05-27 00:26:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:26:36.951+03	2021-05-27 00:26:36.958+03	
aa45844c-491e-5dc7-20bd-6104ae54d678	2021-05-27 00:26:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:26:56.951+03	2021-05-27 00:26:56.959+03	
348666bc-a05b-11f1-d008-a21af7179c5e	2021-05-27 00:27:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:27:16.951+03	2021-05-27 00:27:16.958+03	
77f618cd-c3ea-47fc-db5c-2caf7b67f9e3	2021-05-27 00:27:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:27:36.951+03	2021-05-27 00:27:36.959+03	
dfdf0804-a161-b839-f102-d5baa44f1d26	2021-05-27 00:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:27:56.951+03	2021-05-27 00:27:56.959+03	
58993afa-b5b9-e7ae-b1bd-22a0986b0c10	2021-05-27 00:28:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:28:16.951+03	2021-05-27 00:28:16.957+03	
b0e5d287-e49a-b5d0-db88-50cee9f4399d	2021-05-27 00:28:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:28:36.951+03	2021-05-27 00:28:36.959+03	
5b1739b3-fb37-8439-7646-efca0ce0cf8b	2021-05-27 00:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:28:56.951+03	2021-05-27 00:28:56.958+03	
d69e1aae-c19c-f38a-da5a-77dc16d07985	2021-05-27 00:29:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:29:17.951+03	2021-05-27 00:29:17.958+03	
7273ada5-25a4-e7da-403e-5b286804f3ab	2021-05-27 00:29:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:29:37.951+03	2021-05-27 00:29:37.958+03	
14a9ab46-d9a5-8eb4-aeea-819ddbbf36ce	2021-05-27 00:29:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:29:58.951+03	2021-05-27 00:29:58.96+03	
0d4518e1-41e8-8e85-078f-f2960cf53eb1	2021-05-27 00:30:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:30:08.951+03	2021-05-27 00:30:08.96+03	
33fcbbe7-a81b-4f64-5c3a-abb90cbc98b4	2021-05-27 00:30:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:30:28.951+03	2021-05-27 00:30:28.972+03	
2958a777-ff0e-f2ba-5283-e3cb258feeca	2021-05-27 00:30:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:30:48.951+03	2021-05-27 00:30:48.958+03	
833a15ab-dfae-8fe7-f5bd-3b75f4de7e85	2021-05-27 00:31:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:31:08.951+03	2021-05-27 00:31:08.959+03	
03793588-684d-2185-85e7-004dc0bc0628	2021-05-27 00:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:31:29.951+03	2021-05-27 00:31:29.958+03	
77438482-9fd8-3104-ca0c-16c229617b9f	2021-05-27 00:31:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:31:49.951+03	2021-05-27 00:31:49.959+03	
393f85b8-567d-7030-2d7e-5b03e3dcc46f	2021-05-27 00:32:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:32:09.951+03	2021-05-27 00:32:09.957+03	
de0fa9d9-a756-9f7a-7406-a8572bb2e93c	2021-05-27 00:32:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:32:29.951+03	2021-05-27 00:32:29.962+03	
88265691-ad35-9ee8-9900-e4c7cefb703f	2021-05-27 00:32:49.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:32:49.952+03	2021-05-27 00:32:49.96+03	
08844e64-acce-0869-4bc6-3a0f06d6b899	2021-05-27 00:33:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:33:10.951+03	2021-05-27 00:33:10.96+03	
8211fd2f-b730-5f65-3d63-99dd2e5ff9ad	2021-05-27 00:33:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:33:31.951+03	2021-05-27 00:33:31.96+03	
5a0a2ac8-32da-a3dd-1cdb-d72d978a1ebb	2021-05-27 00:33:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:33:51.951+03	2021-05-27 00:33:51.958+03	
25435ce0-b045-e7d8-2222-3e8bc21d1404	2021-05-27 00:34:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:34:01.951+03	2021-05-27 00:34:01.965+03	
3e73fbdf-abfc-ecfc-9672-1ddcf66b1925	2021-05-27 00:34:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:34:21.951+03	2021-05-27 00:34:21.958+03	
44faf196-ce4a-289f-94ef-3725f790f8d8	2021-05-27 00:34:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:34:41.951+03	2021-05-27 00:34:41.959+03	
7b0ce8b2-70e2-0b66-6349-1c1e52834c98	2021-05-27 00:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:35:01.951+03	2021-05-27 00:35:01.958+03	
be333fef-44fb-1371-f130-436caa153691	2021-05-27 00:16:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:16:30.951+03	2021-05-27 00:16:30.959+03	
221f617c-3c2e-98a4-2dec-95be976b4f6e	2021-05-27 00:16:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:16:50.951+03	2021-05-27 00:16:50.958+03	
afc0b21a-9df8-fa42-2f5a-e8a3752e9c81	2021-05-27 00:17:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:17:11.951+03	2021-05-27 00:17:11.959+03	
c9b70864-0249-1df9-7843-fb761dcc1cef	2021-05-27 00:17:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:17:31.951+03	2021-05-27 00:17:31.957+03	
757f18d6-305e-041d-c4b1-756f7d490519	2021-05-27 00:17:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:17:51.951+03	2021-05-27 00:17:51.958+03	
67f06395-fec9-55ad-9d43-c884d4f90650	2021-05-27 00:18:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:18:11.951+03	2021-05-27 00:18:11.958+03	
130e6468-ebae-e3a8-d618-4d71b73e70f4	2021-05-27 00:18:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:18:31.951+03	2021-05-27 00:18:31.958+03	
df134325-99da-531d-d08d-a9c4a4a12dc3	2021-05-27 00:18:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:18:51.951+03	2021-05-27 00:18:51.96+03	
ab3c3ee3-48c0-b757-2f92-c8ac50e69a77	2021-05-27 00:19:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:19:11.951+03	2021-05-27 00:19:11.958+03	
12f92161-7a3b-41e6-766c-b79a1136adfa	2021-05-27 00:19:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:19:31.951+03	2021-05-27 00:19:31.958+03	
cd064b4b-a7f9-4c27-72c3-f4f83d837003	2021-05-27 00:19:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:19:51.951+03	2021-05-27 00:19:51.961+03	
99ed44b1-4167-7819-9ea8-2b61b2bd1355	2021-05-27 00:20:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:20:01.951+03	2021-05-27 00:20:01.958+03	
0ab41cd0-92d5-05ff-d01d-520aba628b18	2021-05-27 00:20:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:20:21.951+03	2021-05-27 00:20:21.959+03	
d1014d91-05f4-343e-27b9-0f62f847adee	2021-05-27 00:20:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:20:41.951+03	2021-05-27 00:20:41.958+03	
94281426-a250-73ba-edf4-c54543323d26	2021-05-27 00:21:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:21:01.951+03	2021-05-27 00:21:01.958+03	
5f995fde-9c4b-3e4e-dcef-70959300f2fb	2021-05-27 00:21:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:21:21.952+03	2021-05-27 00:21:21.959+03	
cd841e55-8a02-2683-0e48-47f58076896f	2021-05-27 00:21:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:21:42.951+03	2021-05-27 00:21:42.959+03	
5f10dde1-b46b-6783-f105-8b8c9f31be3c	2021-05-27 00:22:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:22:02.951+03	2021-05-27 00:22:02.958+03	
8fb820d6-66b7-6df8-b3dc-d6dbc5d97836	2021-05-27 00:22:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:22:22.952+03	2021-05-27 00:22:22.959+03	
f4043d2b-4fb8-6414-5263-022d6fcf8ed2	2021-05-27 00:22:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:22:44.951+03	2021-05-27 00:22:44.959+03	
d35f0aaf-e5ee-9f75-ee95-56cdc167def5	2021-05-27 00:23:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:23:04.951+03	2021-05-27 00:23:04.957+03	
752208c6-48c7-7872-67e2-18d0a0a0ee02	2021-05-27 00:23:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:23:24.951+03	2021-05-27 00:23:24.958+03	
92af7d17-a414-8680-9406-e203d14e4cbf	2021-05-27 00:23:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:23:44.951+03	2021-05-27 00:23:44.959+03	
b57e99ab-65a7-a3ad-0725-06fa8ca6467e	2021-05-27 00:24:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:24:04.952+03	2021-05-27 00:24:04.961+03	
b9d797c9-d192-757b-2957-8fbed27316fe	2021-05-27 00:24:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:24:25.951+03	2021-05-27 00:24:25.958+03	
4cec1b08-efca-d7fe-b00b-91f7632c5eb2	2021-05-27 00:24:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:24:45.951+03	2021-05-27 00:24:45.962+03	
b76c48b5-b520-a33b-988a-865fef873b11	2021-05-27 00:25:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:25:05.952+03	2021-05-27 00:25:05.958+03	
92ae5a7a-d2b9-c664-4e53-7034557ce60d	2021-05-27 00:25:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:25:26.951+03	2021-05-27 00:25:26.959+03	
f785a2ff-e2a2-e34e-1a09-dc938caa5542	2021-05-27 00:25:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:25:46.951+03	2021-05-27 00:25:46.958+03	
1bc2decf-5100-93f7-049b-2957f809fe32	2021-05-27 00:26:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:26:06.951+03	2021-05-27 00:26:06.977+03	
b834947f-aaa4-bd6c-3cd1-f5a1c9484774	2021-05-27 00:26:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:26:26.951+03	2021-05-27 00:26:26.96+03	
ebf4b383-d158-1d77-a41a-7ab4a857f388	2021-05-27 00:26:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:26:46.951+03	2021-05-27 00:26:46.957+03	
03b99d72-4a19-ef76-4de0-e0047de76aed	2021-05-27 00:27:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:27:06.951+03	2021-05-27 00:27:06.96+03	
83844b6f-1757-0891-8c04-b510581febce	2021-05-27 00:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:27:26.951+03	2021-05-27 00:27:26.961+03	
8064e066-a5c3-c49f-91b1-52c913a29cdc	2021-05-27 00:27:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:27:46.951+03	2021-05-27 00:27:46.959+03	
365e7d7a-b3f1-2832-a6dd-d368814d77e8	2021-05-27 00:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:28:06.951+03	2021-05-27 00:28:06.958+03	
6a133ef9-a5d4-6116-6276-1766f75f2a22	2021-05-27 00:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:28:26.951+03	2021-05-27 00:28:26.966+03	
46b94454-30ba-ac42-add6-5de21a2507fb	2021-05-27 00:28:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:28:46.951+03	2021-05-27 00:28:46.959+03	
73cc40b5-e50b-0da9-2fe4-373b664dc2d8	2021-05-27 00:29:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:29:06.952+03	2021-05-27 00:29:06.962+03	
1d661aad-6cca-0726-f67d-bc298f33b29d	2021-05-27 00:29:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:29:27.951+03	2021-05-27 00:29:27.958+03	
bfc73443-2d88-90da-0fbf-8b3ba8b4b6ea	2021-05-27 00:29:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:29:47.952+03	2021-05-27 00:29:47.962+03	
d2a74880-9576-34f9-69c3-051460f0ea5c	2021-05-27 00:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 00:30:00.951+03	2021-05-27 00:30:00.956+03	ERROR
92006064-7327-61f8-4255-f1f8f84edb7b	2021-05-27 00:30:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:30:18.951+03	2021-05-27 00:30:18.958+03	
7d9e4dcc-69c1-d792-c73a-61470dfffc76	2021-05-27 00:30:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:30:38.951+03	2021-05-27 00:30:38.958+03	
59819acc-abe2-7c09-7935-8731bfe8b284	2021-05-27 00:30:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:30:58.951+03	2021-05-27 00:30:58.958+03	
24f1d612-bf0a-88a3-9256-9815dfef3706	2021-05-27 00:31:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:31:18.952+03	2021-05-27 00:31:18.959+03	
61ba0a80-9f1e-1fc1-ab77-11b05349f8de	2021-05-27 00:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:31:39.951+03	2021-05-27 00:31:39.96+03	
ff5a42d7-43f6-b52f-a4e8-d8a66ed2c4d6	2021-05-27 00:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:31:59.951+03	2021-05-27 00:31:59.964+03	
8547b769-6618-2069-eae4-494538e8c5ca	2021-05-27 00:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:32:19.951+03	2021-05-27 00:32:19.959+03	
aa89753b-2da3-8013-bea7-c740cdb5587e	2021-05-27 00:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:32:39.951+03	2021-05-27 00:32:39.964+03	
fc34c04b-1953-6517-7938-f8b07017ae58	2021-05-27 00:33:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:33:00.951+03	2021-05-27 00:33:00.959+03	
871402ff-bae1-c73c-fcf3-10c52be72b8f	2021-05-27 00:33:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:33:20.952+03	2021-05-27 00:33:20.96+03	
5cba0882-ab3a-9aff-53da-a475173b4952	2021-05-27 00:33:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:33:41.951+03	2021-05-27 00:33:41.96+03	
e0c3991a-1d45-23d4-1204-9e5557a0f4c4	2021-05-27 00:34:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:34:11.951+03	2021-05-27 00:34:11.961+03	
07297d5d-7830-ae31-f6f4-59707e8d258f	2021-05-27 00:34:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:34:31.951+03	2021-05-27 00:34:31.958+03	
b0fe6a19-a7ba-8b99-7fa9-b1c9d9e359f9	2021-05-27 00:34:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:34:51.951+03	2021-05-27 00:34:51.96+03	
d49fe986-e147-fed3-0a78-0ed6e8c34a57	2021-05-27 00:35:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:35:11.951+03	2021-05-27 00:35:11.958+03	
d10c1af6-e09f-77f1-7195-2767214202f8	2021-05-27 00:35:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:35:32.953+03	2021-05-27 00:35:32.96+03	
503ab8d9-b298-e15d-8db9-49b4e6f86053	2021-05-27 00:35:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:35:53.951+03	2021-05-27 00:35:53.96+03	
4d2d709a-ed63-6423-4a37-eab05f79c627	2021-05-27 00:36:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:36:13.951+03	2021-05-27 00:36:13.96+03	
daf8f8e1-08b7-11f6-e671-281f106d6968	2021-05-27 00:36:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:36:33.951+03	2021-05-27 00:36:33.958+03	
57cf81ce-3b7f-b048-9d5c-4e1d4fb1ecba	2021-05-27 00:36:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:36:53.951+03	2021-05-27 00:36:53.959+03	
96a2edb0-c592-3035-9fff-f76273ff246b	2021-05-27 00:37:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:37:13.951+03	2021-05-27 00:37:13.958+03	
ff3e4085-2465-fb4b-d988-c0d61ec12b0e	2021-05-27 00:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:35:21.952+03	2021-05-27 00:35:21.961+03	
37da9f53-31ce-6938-8b52-99cb4cd0e85d	2021-05-27 00:35:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:35:43.951+03	2021-05-27 00:35:43.958+03	
7c8fde1f-e851-9b43-0554-776c3aef3db1	2021-05-27 00:36:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:36:03.951+03	2021-05-27 00:36:03.962+03	
b6a8b240-851a-b3aa-a1a4-fa052b69c061	2021-05-27 00:36:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:36:23.951+03	2021-05-27 00:36:23.963+03	
6d1a5065-43da-a864-ed18-076785b3a2d4	2021-05-27 00:36:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:36:43.951+03	2021-05-27 00:36:43.96+03	
016528ed-6571-a391-391b-e2b4699f6dae	2021-05-27 00:37:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:37:03.951+03	2021-05-27 00:37:03.96+03	
196c297b-d3e2-57ad-e347-a9ee23e9b984	2021-05-27 00:37:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:37:23.951+03	2021-05-27 00:37:23.961+03	
5ada5efd-90d6-b80a-ca7c-136f82b6730e	2021-05-27 00:37:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:37:43.951+03	2021-05-27 00:37:43.959+03	
dfc4509a-c863-de73-0823-1df0444eda20	2021-05-27 00:38:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:38:03.951+03	2021-05-27 00:38:03.962+03	
414b1446-1be4-3df5-c1eb-456d29d6fcd0	2021-05-27 00:38:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:38:23.951+03	2021-05-27 00:38:23.958+03	
9ce7d19a-3ce7-625d-a2e6-bbb45165ce3c	2021-05-27 00:38:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:38:43.951+03	2021-05-27 00:38:43.957+03	
f3368932-8eb6-05f3-794f-3db5de208c00	2021-05-27 00:39:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:39:03.951+03	2021-05-27 00:39:03.957+03	
c834bb9e-6582-05e2-cbec-40a14a04dc54	2021-05-27 00:39:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:39:23.951+03	2021-05-27 00:39:23.96+03	
87ccdca6-3bef-ad43-b1c3-569d96ea5176	2021-05-27 00:39:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:39:43.951+03	2021-05-27 00:39:43.957+03	
95772823-c428-bfc9-89d4-8d94c6115cbd	2021-05-27 00:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 00:40:00.951+03	2021-05-27 00:40:00.956+03	ERROR
0f7b4887-903d-4cbf-42e8-8cdc512500e2	2021-05-27 00:40:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:40:13.951+03	2021-05-27 00:40:13.958+03	
95ecf9a4-fee7-d0ab-2178-4d59f827382b	2021-05-27 00:40:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:40:33.951+03	2021-05-27 00:40:33.958+03	
07623dce-1093-c408-a7db-dd685d976fc1	2021-05-27 00:40:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:40:53.951+03	2021-05-27 00:40:53.958+03	
eb0e99dc-a7d4-1d9d-9942-d3966ddf8e00	2021-05-27 00:41:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:41:13.951+03	2021-05-27 00:41:13.958+03	
9b854212-f3af-f444-4fab-e4bc2775c710	2021-05-27 00:41:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:41:33.951+03	2021-05-27 00:41:33.959+03	
15dafaae-1d86-d2dc-e46c-55fc2b7dbf86	2021-05-27 00:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:41:53.951+03	2021-05-27 00:41:53.96+03	
ca2ad254-b51b-5510-a530-509d76014bfb	2021-05-27 00:42:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:42:13.951+03	2021-05-27 00:42:13.957+03	
c3a552b6-379d-c020-fdf0-0b8265425a41	2021-05-27 00:42:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:42:33.951+03	2021-05-27 00:42:33.958+03	
95faaf86-f971-b94e-0ee3-7986f373bdc1	2021-05-27 00:42:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:42:53.951+03	2021-05-27 00:42:53.961+03	
3225a21e-b123-4d86-9692-798b2158597f	2021-05-27 00:43:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:43:13.951+03	2021-05-27 00:43:13.957+03	
5135cd74-b18d-8ccc-91af-a56480d1ba72	2021-05-27 00:43:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:43:33.951+03	2021-05-27 00:43:33.958+03	
d07690aa-9128-5d48-6bf9-bda1e1eb0562	2021-05-27 00:43:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:43:54.951+03	2021-05-27 00:43:54.965+03	
23bd5fec-a6d9-09a8-7655-f4a6ef582779	2021-05-27 00:44:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:44:14.951+03	2021-05-27 00:44:14.958+03	
90d45c1c-6b1a-ecb4-0b6c-a8819526fe7b	2021-05-27 00:44:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:44:34.951+03	2021-05-27 00:44:34.958+03	
aa8d3595-0891-d46e-0c61-15f7301c6e17	2021-05-27 00:44:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:44:54.951+03	2021-05-27 00:44:54.958+03	
5817f791-45e0-e03e-f69f-0ce79c6a1fde	2021-05-27 00:45:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:45:14.951+03	2021-05-27 00:45:14.959+03	
672c7734-1082-bbfd-cb73-46ebe74dcb62	2021-05-27 00:45:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:45:34.951+03	2021-05-27 00:45:34.958+03	
75c6bd34-dbb5-0a75-167a-8bde930cee4b	2021-05-27 00:45:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:45:54.951+03	2021-05-27 00:45:54.958+03	
e87e8094-e460-665c-adbd-48ecfd401bb9	2021-05-27 00:46:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:46:14.951+03	2021-05-27 00:46:14.958+03	
fef7f8db-fd9b-299e-0c14-03975cb97886	2021-05-27 00:46:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:46:34.951+03	2021-05-27 00:46:34.958+03	
f6bf1e1c-724d-f4db-d684-212b15ca8c80	2021-05-27 00:46:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:46:54.951+03	2021-05-27 00:46:54.959+03	
2d47b5ab-3c00-7333-935e-010ddaa4a4dc	2021-05-27 00:47:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:47:14.951+03	2021-05-27 00:47:14.958+03	
040f8af5-8e59-d3b6-b19c-864e81c3b26e	2021-05-27 00:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:47:34.951+03	2021-05-27 00:47:34.959+03	
4fb2da34-a79c-9263-439b-e52ebbd2cd3e	2021-05-27 00:47:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:47:54.951+03	2021-05-27 00:47:54.958+03	
55758961-6bfd-d059-b71d-50b51da40a0b	2021-05-27 00:48:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:48:14.951+03	2021-05-27 00:48:14.957+03	
0014886f-db60-d9ec-0bf2-d0370443136d	2021-05-27 00:48:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:48:34.951+03	2021-05-27 00:48:34.958+03	
de34a9c4-998a-2807-279e-6f0a215cfa47	2021-05-27 00:48:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:48:54.951+03	2021-05-27 00:48:54.961+03	
7f872878-8eb1-9d76-6911-71561f7af9d1	2021-05-27 00:49:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:49:14.951+03	2021-05-27 00:49:14.959+03	
edf8f743-867e-da64-8f6f-c6c60df1b8ae	2021-05-27 00:49:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:49:34.951+03	2021-05-27 00:49:34.959+03	
88d945fa-7ba2-3f3c-f848-333da0bfd14c	2021-05-27 00:49:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:49:54.951+03	2021-05-27 00:49:54.958+03	
071224bd-0d6c-7740-f969-688172e172da	2021-05-27 00:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:50:04.951+03	2021-05-27 00:50:04.958+03	
0b7f86a2-d437-60d4-d846-9a41173f714f	2021-05-27 00:50:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:50:24.951+03	2021-05-27 00:50:24.957+03	
f4ff2cdc-736f-5708-8895-7299e20ab3bf	2021-05-27 00:50:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:50:44.951+03	2021-05-27 00:50:44.959+03	
33dedd29-89f8-a61e-7303-95fd85727d1e	2021-05-27 00:51:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:51:04.951+03	2021-05-27 00:51:04.96+03	
508bd0db-db51-b7cd-c90d-4c5c3cf8e3f0	2021-05-27 00:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:51:24.951+03	2021-05-27 00:51:24.958+03	
96495e0d-7581-fc2f-9cd0-086c76d16dc9	2021-05-27 00:51:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:51:44.951+03	2021-05-27 00:51:44.958+03	
8f6350d5-d47d-b340-8c7f-be6b6923f2de	2021-05-27 00:52:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:52:04.951+03	2021-05-27 00:52:04.958+03	
e6749ff2-df71-d3b7-cb41-b2cea7eb23df	2021-05-27 00:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:52:24.951+03	2021-05-27 00:52:24.959+03	
0224c1c8-7b6e-7fd2-fa89-c3d753062093	2021-05-27 00:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:52:44.951+03	2021-05-27 00:52:44.961+03	
f7542865-d6d3-71c9-9197-7d972674f3b5	2021-05-27 00:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:53:04.951+03	2021-05-27 00:53:04.958+03	
43030cfd-7f5a-c2a9-9402-502e7d5a36f7	2021-05-27 00:53:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:53:24.951+03	2021-05-27 00:53:24.959+03	
03411250-2079-8782-017e-b314db5a563e	2021-05-27 00:53:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:53:44.951+03	2021-05-27 00:53:44.958+03	
047fc8b4-2c63-7af4-065d-4654c45f2fa6	2021-05-27 00:54:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:54:04.951+03	2021-05-27 00:54:04.957+03	
95f8c182-d61f-dfee-0fb2-83180be1e939	2021-05-27 00:54:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:54:24.951+03	2021-05-27 00:54:24.964+03	
0b310202-1adf-bb23-5c62-8929794bf21e	2021-05-27 00:54:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:54:44.951+03	2021-05-27 00:54:44.959+03	
b2c26991-deb1-e350-e96a-d18f400c2445	2021-05-27 00:55:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:55:04.951+03	2021-05-27 00:55:04.988+03	
ae41fd70-fd81-ac4c-59b4-b97f7531ea29	2021-05-27 00:55:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:55:14.951+03	2021-05-27 00:55:14.958+03	
363ce93c-bfa1-57d9-3a75-95bda4f8b3f3	2021-05-27 00:55:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:55:34.951+03	2021-05-27 00:55:34.958+03	
4461c1c5-07fc-28f7-98bb-bba19a739faa	2021-05-27 00:37:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:37:33.951+03	2021-05-27 00:37:33.959+03	
932e9822-09f6-e4a2-73ca-3ea71589fce2	2021-05-27 00:37:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:37:53.951+03	2021-05-27 00:37:53.958+03	
01155d06-1a3b-49bc-dc65-806e2f5bae0d	2021-05-27 00:38:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:38:13.951+03	2021-05-27 00:38:13.96+03	
98c2978d-5db3-373e-e0c8-c74cf07b1cfd	2021-05-27 00:38:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:38:33.951+03	2021-05-27 00:38:33.958+03	
3ad0cc22-892c-c528-5921-f06ace9af9b3	2021-05-27 00:38:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:38:53.951+03	2021-05-27 00:38:53.958+03	
ecc02657-56f6-68d5-45cf-49d25b662ed5	2021-05-27 00:39:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:39:13.951+03	2021-05-27 00:39:13.958+03	
86b80499-cba9-7b16-7565-627bfe8e795d	2021-05-27 00:39:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:39:33.951+03	2021-05-27 00:39:33.96+03	
6225c4a1-fc42-85e9-78c8-0d10cbeeee3a	2021-05-27 00:39:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:39:53.951+03	2021-05-27 00:39:53.963+03	
70059864-b176-679f-0899-b533b6eaef72	2021-05-27 00:40:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:40:03.951+03	2021-05-27 00:40:03.957+03	
15bdb19b-2a4a-a4dd-9135-862e2d21da79	2021-05-27 00:40:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:40:23.951+03	2021-05-27 00:40:23.957+03	
e3e90f1e-4e81-25b5-3e20-cb9ddfb4c630	2021-05-27 00:40:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:40:43.951+03	2021-05-27 00:40:43.959+03	
9544860d-759e-1762-6356-449dc236c628	2021-05-27 00:41:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:41:03.951+03	2021-05-27 00:41:03.962+03	
1197834e-35d2-5a3d-2b64-b4b4327d36bc	2021-05-27 00:41:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:41:23.951+03	2021-05-27 00:41:23.958+03	
0d42592e-5438-4bf5-f103-4aec1cb9ebc0	2021-05-27 00:41:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:41:43.951+03	2021-05-27 00:41:43.96+03	
6434de09-1d6f-5c49-543e-ae06d74bf593	2021-05-27 00:42:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:42:03.951+03	2021-05-27 00:42:03.958+03	
1443bb09-4b70-3ce8-473f-9e92ac22fb03	2021-05-27 00:42:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:42:23.951+03	2021-05-27 00:42:23.959+03	
00c0a1d0-93df-2614-55f4-ffbd504f7905	2021-05-27 00:42:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:42:43.951+03	2021-05-27 00:42:43.958+03	
af68ab67-7daf-d695-7ced-1849d81f01a2	2021-05-27 00:43:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:43:03.951+03	2021-05-27 00:43:03.957+03	
13fbb460-7b60-7fff-421a-8ed4788392a9	2021-05-27 00:43:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:43:23.951+03	2021-05-27 00:43:23.959+03	
aa1b173b-111f-2317-0643-d74cd0a5e365	2021-05-27 00:43:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:43:43.952+03	2021-05-27 00:43:43.958+03	
468a0471-d420-d5cf-c6a4-68b74f2642da	2021-05-27 00:44:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:44:04.951+03	2021-05-27 00:44:04.962+03	
5a58b99a-21eb-4956-191a-cb9f135db1e6	2021-05-27 00:44:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:44:24.951+03	2021-05-27 00:44:24.958+03	
1653d1af-05e8-7cda-8d5f-12c16eaa5545	2021-05-27 00:44:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:44:44.951+03	2021-05-27 00:44:44.961+03	
ea7c41db-0eee-4c08-ebe4-ba555ef6a466	2021-05-27 00:45:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:45:04.951+03	2021-05-27 00:45:04.959+03	
2fb1cbdd-c9ef-6d45-8dbf-cd085f4ec83b	2021-05-27 00:45:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:45:24.951+03	2021-05-27 00:45:24.958+03	
4e947edc-95d8-a3e6-d3eb-e3e8a20f133b	2021-05-27 00:45:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:45:44.951+03	2021-05-27 00:45:44.958+03	
16fbce6f-b260-8906-8875-8befc46a30f7	2021-05-27 00:46:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:46:04.951+03	2021-05-27 00:46:04.958+03	
ecc51680-6d8d-25b8-e4ec-29cf4a4af388	2021-05-27 00:46:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:46:24.951+03	2021-05-27 00:46:24.959+03	
aa231285-9704-86bf-2fd8-90efe79a06ce	2021-05-27 00:46:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:46:44.951+03	2021-05-27 00:46:44.957+03	
ceb3923f-cf6f-ec20-34ec-51108b331107	2021-05-27 00:47:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:47:04.951+03	2021-05-27 00:47:04.957+03	
53d28505-66b6-bacf-e6ab-7e26ebe0211c	2021-05-27 00:47:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:47:24.951+03	2021-05-27 00:47:24.96+03	
09996bd4-8edd-0bb0-cdd6-e88e389cdf1d	2021-05-27 00:47:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:47:44.951+03	2021-05-27 00:47:44.959+03	
e22be132-f443-39ec-58c7-5d2c3a5747fb	2021-05-27 00:48:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:48:04.951+03	2021-05-27 00:48:04.958+03	
5814ac38-172a-12f6-6c88-afe5f8c504bc	2021-05-27 00:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:48:24.951+03	2021-05-27 00:48:24.96+03	
88172edb-9cc4-c222-c71b-6b1f3e02f0c7	2021-05-27 00:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:48:44.951+03	2021-05-27 00:48:44.958+03	
682cee97-8ccf-8759-96c0-6db0b86c0a71	2021-05-27 00:49:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:49:04.951+03	2021-05-27 00:49:04.957+03	
6ce0b86e-d0d2-9713-ce7d-607ec095a789	2021-05-27 00:49:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:49:24.951+03	2021-05-27 00:49:24.958+03	
1f3e7853-7ffd-f1a0-da6e-04b3d8c9b56e	2021-05-27 00:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:49:44.951+03	2021-05-27 00:49:44.958+03	
0e2a7c6e-ca0f-5296-9e7b-b988cbbd2fb9	2021-05-27 00:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 00:50:00.951+03	2021-05-27 00:50:00.957+03	ERROR
6a560d2d-c749-fae9-7d3d-8186d40d2875	2021-05-27 00:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:50:14.951+03	2021-05-27 00:50:14.958+03	
5ad65227-9dc5-5218-fded-e1c9a9688624	2021-05-27 00:50:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:50:34.951+03	2021-05-27 00:50:34.958+03	
21274f56-2118-430f-0d54-c902e559b5eb	2021-05-27 00:50:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:50:54.951+03	2021-05-27 00:50:54.958+03	
01e59752-0c12-e9ef-83cd-18919bf8f5df	2021-05-27 00:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:51:14.951+03	2021-05-27 00:51:14.96+03	
f4d430e4-d741-1e8f-7898-9c3f9e81bcd6	2021-05-27 00:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:51:34.951+03	2021-05-27 00:51:34.959+03	
b5ad9347-4129-9be7-f598-0c5ad8915023	2021-05-27 00:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:51:54.951+03	2021-05-27 00:51:54.958+03	
f2cef937-646f-6b35-a3e0-ee2ed9949a36	2021-05-27 00:52:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:52:14.951+03	2021-05-27 00:52:14.958+03	
f3981d51-edcd-af99-a6cc-9d5320de57d8	2021-05-27 00:52:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:52:34.951+03	2021-05-27 00:52:34.958+03	
298efbea-c74d-b33c-df3f-8e0d8b57d273	2021-05-27 00:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:52:54.951+03	2021-05-27 00:52:54.958+03	
521c05d2-5af4-d76f-2ac7-8bf97e0e9302	2021-05-27 00:53:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:53:14.951+03	2021-05-27 00:53:14.958+03	
7a7c1bf4-f92a-180b-0981-53afb0c2eaae	2021-05-27 00:53:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:53:34.951+03	2021-05-27 00:53:34.96+03	
5858bc7a-ee39-dc1e-7453-e93254fd07a6	2021-05-27 00:53:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:53:54.951+03	2021-05-27 00:53:54.958+03	
57d872af-f4a2-86b4-a205-5560e8142ae0	2021-05-27 00:54:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:54:14.951+03	2021-05-27 00:54:14.957+03	
96136064-5cd6-7175-f4d4-29d5b1436ca8	2021-05-27 00:54:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:54:34.951+03	2021-05-27 00:54:34.957+03	
da5fba09-01fc-6aee-aaaf-8eb550a2ab08	2021-05-27 00:54:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:54:54.951+03	2021-05-27 00:54:54.96+03	
96afa66a-f2b5-0b61-a910-60257b19f97c	2021-05-27 00:55:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:55:24.951+03	2021-05-27 00:55:24.961+03	
1da5320d-ca75-10ba-753f-9dcee717345e	2021-05-27 00:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:55:44.951+03	2021-05-27 00:55:44.958+03	
735d0163-dec3-2b40-6067-2a6a6dc5251e	2021-05-27 00:56:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:56:04.951+03	2021-05-27 00:56:04.958+03	
02bf1afa-1ddc-d722-57cc-5b5bc6d266bf	2021-05-27 00:56:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:56:24.952+03	2021-05-27 00:56:24.958+03	
f2c7b409-e4f9-b3a3-be4c-14516e8cfa96	2021-05-27 00:56:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:56:45.951+03	2021-05-27 00:56:45.957+03	
cf4bd617-0347-00ed-d78d-8763bced3d0e	2021-05-27 00:57:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:57:05.951+03	2021-05-27 00:57:05.958+03	
91fc3d95-5c48-874f-9a1b-2349dbac65fa	2021-05-27 00:57:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:57:25.951+03	2021-05-27 00:57:25.958+03	
a8cda804-6012-6955-0e50-ca898186501b	2021-05-27 00:57:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:57:45.951+03	2021-05-27 00:57:45.96+03	
a621e456-ad8e-1db6-91d0-f42665938b04	2021-05-27 00:58:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:58:05.951+03	2021-05-27 00:58:05.964+03	
b209c368-c444-728e-c3dd-9e697c3b5dc6	2021-05-27 00:55:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:55:54.951+03	2021-05-27 00:55:54.958+03	
93486d5d-313c-a4dd-1ba5-1b45c54ff784	2021-05-27 00:56:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:56:14.951+03	2021-05-27 00:56:14.959+03	
0480edba-56d5-f77a-4d4a-00cfda4d6a95	2021-05-27 00:56:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:56:35.951+03	2021-05-27 00:56:35.961+03	
d50ea03a-de7f-336c-0298-336879a8a0a0	2021-05-27 00:56:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:56:55.951+03	2021-05-27 00:56:55.96+03	
88ae0a30-d6ae-ab63-64b5-e2c9a4b5823d	2021-05-27 00:57:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:57:15.951+03	2021-05-27 00:57:15.959+03	
aa06badf-bd3b-af3f-10a9-5446c7f3d923	2021-05-27 00:57:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:57:35.951+03	2021-05-27 00:57:35.958+03	
759a79ea-f1ca-b82a-fa97-61a5910ab74d	2021-05-27 00:57:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:57:55.951+03	2021-05-27 00:57:55.959+03	
056fa4f8-fa2b-1f0d-72c1-88ef63a56901	2021-05-27 00:58:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:58:15.951+03	2021-05-27 00:58:15.958+03	
172ae884-0623-8c1e-4319-43030bbe0613	2021-05-27 00:58:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:58:35.951+03	2021-05-27 00:58:35.958+03	
626d8cf3-daaa-0de1-7923-540a601a1930	2021-05-27 00:58:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:58:55.951+03	2021-05-27 00:58:55.958+03	
93274fd3-fc04-e345-041e-3ecd1ee1394f	2021-05-27 00:59:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:59:15.951+03	2021-05-27 00:59:15.958+03	
7db05c2e-4cac-0dc2-3ddd-039767a56a71	2021-05-27 00:59:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:59:35.951+03	2021-05-27 00:59:35.958+03	
1c98d37f-c7f9-b3d2-8617-c8eda6878d0c	2021-05-27 00:59:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:59:55.951+03	2021-05-27 00:59:55.959+03	
4ecb5261-d9a3-9efb-2987-e0c70caa07c1	2021-05-27 01:00:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:00:05.951+03	2021-05-27 01:00:05.959+03	
33beb5f2-3fea-8525-4b2a-fd1440613cad	2021-05-27 01:00:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:00:25.951+03	2021-05-27 01:00:25.958+03	
268b324c-c22b-809b-0dc6-6bb9945b079e	2021-05-27 01:00:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:00:45.951+03	2021-05-27 01:00:45.959+03	
cd1924d8-2487-fe6f-348e-e355b8d73895	2021-05-27 01:01:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:01:05.951+03	2021-05-27 01:01:05.959+03	
ebae3cf0-d8cd-f680-4cde-4135fa3d6d03	2021-05-27 01:01:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:01:25.952+03	2021-05-27 01:01:25.96+03	
52dff66e-ad1b-590e-ce30-49fa4b55b62f	2021-05-27 01:01:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:01:46.951+03	2021-05-27 01:01:46.96+03	
fdbaf49b-a01d-23ab-53f6-e62f67bdebef	2021-05-27 01:02:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:02:06.951+03	2021-05-27 01:02:06.959+03	
5464c02a-0db4-9d9e-e14f-84bda8cc7681	2021-05-27 01:02:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:02:26.951+03	2021-05-27 01:02:26.958+03	
be6f975f-d37d-f816-f529-d28a2921a69e	2021-05-27 01:02:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:02:46.951+03	2021-05-27 01:02:46.96+03	
3d08f8a9-f416-9818-5aeb-209e2788c2e8	2021-05-27 01:03:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:03:06.951+03	2021-05-27 01:03:06.958+03	
02abd0e6-3a7a-ede4-0488-1dd64fee7c14	2021-05-27 01:03:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:03:26.951+03	2021-05-27 01:03:26.959+03	
5d98ad3f-351c-c1d8-dd58-12e5d366d40a	2021-05-27 01:03:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:03:46.951+03	2021-05-27 01:03:46.958+03	
191f9953-04c3-b0df-8e31-78a860daf57b	2021-05-27 01:04:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:04:06.952+03	2021-05-27 01:04:06.96+03	
2539bfae-e9a8-b63b-da18-ceda6adfb136	2021-05-27 01:04:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:04:27.951+03	2021-05-27 01:04:27.959+03	
3ce86625-d9ac-11a7-4bac-8128d9042c3b	2021-05-27 01:04:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:04:47.952+03	2021-05-27 01:04:47.96+03	
94d346ac-bad4-fadc-2a9f-a0ab061179ed	2021-05-27 01:05:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:05:07.952+03	2021-05-27 01:05:07.96+03	
4c38f7df-917c-4142-fbf1-8a352dbddaa8	2021-05-27 01:05:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:05:27.952+03	2021-05-27 01:05:27.959+03	
7068ec6c-5904-df9c-73d2-a9c1fa64ddf4	2021-05-27 01:05:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:05:47.952+03	2021-05-27 01:05:47.958+03	
275dbf3f-a458-5cb5-32a5-441652b03453	2021-05-27 01:06:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:06:08.951+03	2021-05-27 01:06:08.958+03	
25f3557a-ac0d-98c5-2930-e700b777a065	2021-05-27 01:06:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:06:28.951+03	2021-05-27 01:06:28.959+03	
0f650737-45e8-3656-3d2c-a24014b6470b	2021-05-27 01:06:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:06:48.951+03	2021-05-27 01:06:48.96+03	
df2806e0-b1d7-c1d7-b831-6da695c127db	2021-05-27 01:07:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:07:08.951+03	2021-05-27 01:07:08.959+03	
e17973ac-0097-5b00-e2d6-7df26e25b312	2021-05-27 01:07:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:07:28.951+03	2021-05-27 01:07:28.96+03	
0da6f1c0-cca6-d201-3d35-98a0aef8054c	2021-05-27 01:07:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:07:48.951+03	2021-05-27 01:07:48.958+03	
65235186-169b-46e4-9e84-7dd161e69fe4	2021-05-27 01:08:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:08:08.951+03	2021-05-27 01:08:08.958+03	
2fc94f96-aa74-f667-8f36-caabdc1549a1	2021-05-27 01:08:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:08:28.951+03	2021-05-27 01:08:28.961+03	
506daf42-c5ca-7d95-2915-942085d9df50	2021-05-27 01:08:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:08:48.951+03	2021-05-27 01:08:48.961+03	
6b266d3f-be88-37a6-b5da-1263b1a30471	2021-05-27 01:09:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:09:08.951+03	2021-05-27 01:09:08.96+03	
59152827-bd19-4108-b85c-1ef0b0b45734	2021-05-27 01:09:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:09:28.951+03	2021-05-27 01:09:28.96+03	
bf75500f-da59-3fb9-0e21-de714695fff6	2021-05-27 01:09:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:09:48.951+03	2021-05-27 01:09:48.959+03	
0374610c-adc7-df7a-1600-179148584952	2021-05-27 01:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 01:10:00.951+03	2021-05-27 01:10:00.957+03	ERROR
9b2bc79c-2c7f-1870-f969-45e0e2188ea8	2021-05-27 01:10:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:10:18.951+03	2021-05-27 01:10:18.959+03	
dae6f02f-37c0-eef6-9871-f02705ee43cf	2021-05-27 01:10:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:10:39.951+03	2021-05-27 01:10:39.96+03	
f95f050d-de5a-0557-2bef-2d8e27c5103b	2021-05-27 01:10:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:10:59.951+03	2021-05-27 01:10:59.958+03	
9bcd294e-dc1a-68e8-790f-f88a4b13f638	2021-05-27 01:11:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:11:19.951+03	2021-05-27 01:11:19.958+03	
fd1c5054-6f41-e513-6721-1e852f99ca83	2021-05-27 01:11:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:11:39.951+03	2021-05-27 01:11:39.959+03	
fa7c5430-1205-fb77-c8cf-42b1b8515b3a	2021-05-27 01:11:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:11:59.951+03	2021-05-27 01:11:59.96+03	
30da9330-9521-dc75-667a-65a88e2dd817	2021-05-27 01:12:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:12:19.951+03	2021-05-27 01:12:19.958+03	
c2b4081a-ae89-9731-2326-784c62cf04f2	2021-05-27 01:12:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:12:39.951+03	2021-05-27 01:12:39.96+03	
d3128ee9-95a4-ef75-b6f2-38407afe743c	2021-05-27 01:12:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:12:59.951+03	2021-05-27 01:12:59.961+03	
ffcafa04-6fe4-4809-2b94-fd19e7eba3b4	2021-05-27 01:13:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:13:19.951+03	2021-05-27 01:13:19.958+03	
713360a3-8a94-9f7f-2e04-e90bb11fa419	2021-05-27 01:13:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:13:39.951+03	2021-05-27 01:13:39.96+03	
3e13a364-e301-439b-3caf-93a585891bb2	2021-05-27 01:13:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:13:59.951+03	2021-05-27 01:13:59.959+03	
b5bf7bdf-d8ee-5d72-31d8-b5a1ff185321	2021-05-27 01:14:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:14:19.951+03	2021-05-27 01:14:19.958+03	
31a1d323-1caf-f9e5-cc07-d37437e20738	2021-05-27 01:14:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:14:39.951+03	2021-05-27 01:14:39.959+03	
674a2116-3fe2-5f20-537a-c93263648909	2021-05-27 01:14:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:14:59.951+03	2021-05-27 01:14:59.96+03	
0a1d6ba0-50dc-1cf8-56a7-90e5837b28ff	2021-05-27 01:15:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:15:19.951+03	2021-05-27 01:15:19.958+03	
a10161b6-e0b0-408a-842f-cbd5ec69eb1c	2021-05-27 01:15:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:15:39.952+03	2021-05-27 01:15:39.96+03	
261946ba-b45e-917d-4aa3-dcd29b5e126a	2021-05-27 01:16:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:16:00.951+03	2021-05-27 01:16:00.958+03	
fc0f3109-d62b-e12c-cf85-0a159de3b062	2021-05-27 01:16:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:16:20.952+03	2021-05-27 01:16:20.959+03	
a79dc528-5169-e435-6ceb-20527efe4cc8	2021-05-27 00:58:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:58:25.951+03	2021-05-27 00:58:25.958+03	
244fde52-4a78-3b12-3679-5ead5a630340	2021-05-27 00:58:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:58:45.951+03	2021-05-27 00:58:45.959+03	
436b1cfe-e292-61fb-7bb5-3043ba876cf9	2021-05-27 00:59:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:59:05.951+03	2021-05-27 00:59:05.959+03	
65459861-bc83-e656-56de-914c17fcdecf	2021-05-27 00:59:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:59:25.951+03	2021-05-27 00:59:25.96+03	
2df5ccd6-ea86-8f94-b576-92441e37adfd	2021-05-27 00:59:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 00:59:45.951+03	2021-05-27 00:59:45.96+03	
09e2662e-1f83-6237-ecd5-ce95bb57d253	2021-05-27 01:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 01:00:00.951+03	2021-05-27 01:00:00.957+03	ERROR
12cd91b5-155c-c0ab-9d40-c4ba3c46cee4	2021-05-27 01:00:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:00:15.951+03	2021-05-27 01:00:15.959+03	
17cf817f-72a8-7aa0-5f0f-32a580684cea	2021-05-27 01:00:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:00:35.951+03	2021-05-27 01:00:35.959+03	
e1eb6d6f-b188-82a5-ef58-403d8cf0fa51	2021-05-27 01:00:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:00:55.951+03	2021-05-27 01:00:55.959+03	
013d8897-7105-781d-d9d2-e5b7185b0570	2021-05-27 01:01:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:01:15.951+03	2021-05-27 01:01:15.959+03	
257febf8-1070-0991-0da9-ee3a73d65282	2021-05-27 01:01:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:01:36.951+03	2021-05-27 01:01:36.96+03	
4ba27ce1-236d-bcfc-6c6b-c3065727657d	2021-05-27 01:01:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:01:56.951+03	2021-05-27 01:01:56.959+03	
3e9a3c1d-9a1a-db2b-cf16-ff04aad090dd	2021-05-27 01:02:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:02:16.951+03	2021-05-27 01:02:16.958+03	
de106735-f648-451d-6817-81676628a7fa	2021-05-27 01:02:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:02:36.951+03	2021-05-27 01:02:36.959+03	
4be5c7c7-7b0e-ff87-54c4-2ba471b091b4	2021-05-27 01:02:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:02:56.951+03	2021-05-27 01:02:56.958+03	
07846aa1-dade-fd7b-cca6-368db2fa4c9b	2021-05-27 01:03:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:03:16.951+03	2021-05-27 01:03:16.958+03	
b0fd8949-3d70-5a04-046a-0633113cece2	2021-05-27 01:03:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:03:36.951+03	2021-05-27 01:03:36.959+03	
728c5df5-1926-6342-d7bf-3aa9c8a811db	2021-05-27 01:03:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:03:56.951+03	2021-05-27 01:03:56.958+03	
c8f9ce33-994a-4580-7bbf-49a10b1c1544	2021-05-27 01:04:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:04:17.951+03	2021-05-27 01:04:17.961+03	
551fa59c-a852-01a2-e85c-1ec633e2567d	2021-05-27 01:04:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:04:37.952+03	2021-05-27 01:04:37.96+03	
57fbc347-5d8f-c8a4-f2b5-56e1512bdf65	2021-05-27 01:04:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:04:57.952+03	2021-05-27 01:04:57.96+03	
9f5f932e-6b4e-3c54-9e49-0afa88c9ef9c	2021-05-27 01:05:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:05:17.952+03	2021-05-27 01:05:17.96+03	
562fb87e-98b1-7b29-29ff-0ff1a623cfaa	2021-05-27 01:05:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:05:37.952+03	2021-05-27 01:05:37.959+03	
86736886-62c6-cb03-eb1c-b98013d112bc	2021-05-27 01:05:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:05:58.951+03	2021-05-27 01:05:58.96+03	
f6dfead7-4c04-1340-affd-47cb5738078e	2021-05-27 01:06:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:06:18.951+03	2021-05-27 01:06:18.959+03	
8711221e-b4e1-748d-017f-41055d461d35	2021-05-27 01:06:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:06:38.951+03	2021-05-27 01:06:38.959+03	
be1f088b-a96e-a980-1d3f-9373156e97eb	2021-05-27 01:06:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:06:58.951+03	2021-05-27 01:06:58.958+03	
dc96b9e3-2f53-9f10-f33e-6eb75418862d	2021-05-27 01:07:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:07:18.951+03	2021-05-27 01:07:18.959+03	
976269ea-4093-4c0e-c029-474dea36f6dd	2021-05-27 01:07:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:07:38.951+03	2021-05-27 01:07:38.958+03	
9cdc3cdb-ea9b-f8da-cc17-cf6df4913a83	2021-05-27 01:07:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:07:58.951+03	2021-05-27 01:07:58.959+03	
ad316ce5-35cb-6ddc-7773-c4aec3526319	2021-05-27 01:08:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:08:18.951+03	2021-05-27 01:08:18.959+03	
de6bcd6e-5fe8-2655-9240-b20eb1d6526a	2021-05-27 01:08:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:08:38.951+03	2021-05-27 01:08:38.961+03	
8cfdd626-f02b-0505-9113-8d667e5e90fa	2021-05-27 01:08:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:08:58.951+03	2021-05-27 01:08:58.96+03	
d3d7c0c3-c190-e57f-f8e7-d301d7ac74b8	2021-05-27 01:09:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:09:18.951+03	2021-05-27 01:09:18.957+03	
3f87d08e-e415-7b73-e829-49ec59464dd8	2021-05-27 01:09:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:09:38.951+03	2021-05-27 01:09:38.958+03	
f2525aca-04bf-79fc-8624-bd72d3854579	2021-05-27 01:09:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:09:58.951+03	2021-05-27 01:09:58.959+03	
05c202e6-eb63-386b-a54a-c9e0b9244e55	2021-05-27 01:10:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:10:08.951+03	2021-05-27 01:10:08.958+03	
21d6d79d-0ca2-3f43-7c50-96cf1e77e542	2021-05-27 01:10:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:10:28.952+03	2021-05-27 01:10:28.966+03	
f03aadf8-0a36-694e-1066-0bccd9f818af	2021-05-27 01:10:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:10:49.951+03	2021-05-27 01:10:49.958+03	
07c01187-8a7a-665d-cf6f-22b5811c61b2	2021-05-27 01:11:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:11:09.951+03	2021-05-27 01:11:09.96+03	
8387f6ed-11f5-a218-6c66-77213c85d3f5	2021-05-27 01:11:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:11:29.951+03	2021-05-27 01:11:29.959+03	
14e84aed-211c-ca04-5b88-c8d2e7735396	2021-05-27 01:11:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:11:49.951+03	2021-05-27 01:11:49.961+03	
1ca098ee-73fa-509b-a739-8c32328e60fd	2021-05-27 01:12:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:12:09.951+03	2021-05-27 01:12:09.96+03	
475699df-80ec-de98-88e9-c2678a877562	2021-05-27 01:12:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:12:29.951+03	2021-05-27 01:12:29.959+03	
13fdd31f-29b2-fb68-b9e1-6867a4cf3ed6	2021-05-27 01:12:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:12:49.951+03	2021-05-27 01:12:49.958+03	
d2b50745-c28f-0c21-b8b2-41a5da41aa66	2021-05-27 01:13:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:13:09.951+03	2021-05-27 01:13:09.958+03	
b4ea6f7b-1b93-234f-7801-91c70b301063	2021-05-27 01:13:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:13:29.951+03	2021-05-27 01:13:29.959+03	
8c82d482-6bf6-0a3f-be08-db7bdc105cf5	2021-05-27 01:13:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:13:49.951+03	2021-05-27 01:13:49.958+03	
69c9a79d-2bc1-009e-e0bb-641535f089c5	2021-05-27 01:14:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:14:09.951+03	2021-05-27 01:14:09.957+03	
2432d9bc-76c7-9735-8c3b-c3579df43c01	2021-05-27 01:14:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:14:29.951+03	2021-05-27 01:14:29.96+03	
93338133-b0ba-fed4-de4e-6971300b1d02	2021-05-27 01:14:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:14:49.951+03	2021-05-27 01:14:49.959+03	
02b6c01d-1bc0-82f3-9fe4-5cc7b1fafb01	2021-05-27 01:15:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:15:09.951+03	2021-05-27 01:15:09.959+03	
5ff0b69c-5899-6534-1d7e-87222dbdfa70	2021-05-27 01:15:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:15:29.951+03	2021-05-27 01:15:29.96+03	
1b53ee1d-d48a-5bbd-d181-6fa9897bc395	2021-05-27 01:15:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:15:50.951+03	2021-05-27 01:15:50.958+03	
a58ee838-551d-e4e0-ebef-36aad7883876	2021-05-27 01:16:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:16:10.951+03	2021-05-27 01:16:10.958+03	
d1179868-2c76-0072-3c14-f161de920634	2021-05-27 01:16:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:16:31.951+03	2021-05-27 01:16:31.959+03	
34150c35-8c34-21b2-8cba-84ebe362f36a	2021-05-27 01:16:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:16:51.951+03	2021-05-27 01:16:51.959+03	
de9cbfd2-98e0-1d63-491c-1e1aa9cfca24	2021-05-27 01:17:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:17:12.951+03	2021-05-27 01:17:12.96+03	
dc42205f-e0a2-42d8-448e-fd88a1abd651	2021-05-27 01:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:17:33.951+03	2021-05-27 01:17:33.959+03	
9b24b0fa-6e49-7a35-6fe3-77be1f12867d	2021-05-27 01:17:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:17:53.951+03	2021-05-27 01:17:53.959+03	
96e8a0d7-1ea5-1f7f-6f28-400d0db37519	2021-05-27 01:18:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:18:13.951+03	2021-05-27 01:18:13.96+03	
c5ec7851-9b99-709b-885e-fb71d57dd1fd	2021-05-27 01:18:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:18:33.951+03	2021-05-27 01:18:33.96+03	
ed2eb5ec-6fb1-362a-cc4b-3b6a8347da41	2021-05-27 01:18:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:18:53.951+03	2021-05-27 01:18:53.958+03	
3be25116-34bc-91e0-9074-d5cf19c0a451	2021-05-27 01:16:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:16:41.951+03	2021-05-27 01:16:41.959+03	
5a9ba0f5-dda1-43d6-8665-78222e58b624	2021-05-27 01:17:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:17:01.952+03	2021-05-27 01:17:01.959+03	
93782f66-7d81-eb7e-481b-a3bce4d0f2a9	2021-05-27 01:17:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:17:22.952+03	2021-05-27 01:17:22.96+03	
2a6c8e94-3753-dcab-689e-a2bbb807f65d	2021-05-27 01:17:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:17:43.951+03	2021-05-27 01:17:43.958+03	
0ccd0f6f-7f61-82d2-de17-7b24422fc09c	2021-05-27 01:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:18:03.951+03	2021-05-27 01:18:03.959+03	
70ffade5-cbe7-bd4a-20af-c543fc0154a3	2021-05-27 01:18:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:18:23.951+03	2021-05-27 01:18:23.957+03	
e2ca3f24-f8a7-dbec-4428-2879c9a55034	2021-05-27 01:18:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:18:43.951+03	2021-05-27 01:18:43.959+03	
be8edd9c-cc71-af76-a3c2-824e2ed6778a	2021-05-27 01:19:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:19:03.951+03	2021-05-27 01:19:03.959+03	
676f8828-7436-a486-c015-744d3db7beb2	2021-05-27 01:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:19:23.951+03	2021-05-27 01:19:23.96+03	
c93fc2af-74bf-8ef7-dd2c-37b2861610de	2021-05-27 01:19:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:19:43.951+03	2021-05-27 01:19:43.958+03	
667738eb-ee02-88ab-b955-88067988a4c8	2021-05-27 01:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 01:20:00.951+03	2021-05-27 01:20:00.956+03	ERROR
fd551133-1cc5-741c-6a2d-96e591705ba0	2021-05-27 01:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:20:13.951+03	2021-05-27 01:20:13.958+03	
dc3818b2-9320-c1fd-50b7-9964b800af3f	2021-05-27 01:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:20:33.951+03	2021-05-27 01:20:33.957+03	
d50be35d-a0da-5780-0710-310a242df280	2021-05-27 01:20:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:20:53.951+03	2021-05-27 01:20:53.959+03	
bede88d6-1862-dc91-2972-5d56a0928ee3	2021-05-27 01:21:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:21:13.951+03	2021-05-27 01:21:13.957+03	
317ba406-d981-fc75-82b8-649ad60e0896	2021-05-27 01:21:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:21:33.951+03	2021-05-27 01:21:33.957+03	
5e033c70-475a-4153-9bc9-14c6333f8856	2021-05-27 01:21:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:21:53.951+03	2021-05-27 01:21:53.958+03	
333e7153-2879-9dc4-83e6-73b9cb6126e8	2021-05-27 01:22:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:22:13.951+03	2021-05-27 01:22:13.96+03	
fc03b0d4-8d64-bf2b-056d-257d0e9d7055	2021-05-27 01:22:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:22:33.951+03	2021-05-27 01:22:33.957+03	
2959cbce-9c2b-6c87-da9e-3815567f57f4	2021-05-27 01:22:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:22:53.951+03	2021-05-27 01:22:53.958+03	
84068e4d-ba35-11e9-4af7-5e8dbfd31ee8	2021-05-27 01:23:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:23:13.951+03	2021-05-27 01:23:13.958+03	
27d8c563-e329-bd31-5f2d-5797cfb3df96	2021-05-27 01:23:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:23:33.951+03	2021-05-27 01:23:33.958+03	
e6a3533d-245a-0e76-53cd-1228b264bb0b	2021-05-27 01:23:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:23:53.951+03	2021-05-27 01:23:53.964+03	
a20b703d-a009-040e-efa2-bd0022ddf4ae	2021-05-27 01:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:24:13.951+03	2021-05-27 01:24:13.958+03	
fa199904-44c9-53b3-907f-8ad77a1b4f64	2021-05-27 01:24:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:24:33.951+03	2021-05-27 01:24:33.96+03	
d74f5a78-3138-9891-7626-9540969cf881	2021-05-27 01:24:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:24:53.951+03	2021-05-27 01:24:53.958+03	
1146a410-2def-064d-9176-f94ca03febb4	2021-05-27 01:25:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:25:13.951+03	2021-05-27 01:25:13.959+03	
423d19fd-a2c8-c56c-08a0-460bb33017b7	2021-05-27 01:25:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:25:33.951+03	2021-05-27 01:25:33.96+03	
eb1c50ee-7468-54f7-f0e4-661ee5c62435	2021-05-27 01:25:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:25:53.951+03	2021-05-27 01:25:53.963+03	
8eb5f7da-35e9-5964-fc06-90df3c70064c	2021-05-27 01:26:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:26:13.951+03	2021-05-27 01:26:13.958+03	
66a55f83-3ffa-0861-e02c-7281c05f9133	2021-05-27 01:26:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:26:33.951+03	2021-05-27 01:26:33.959+03	
5f01cdcb-c6a0-6e55-7725-cd27ff53696b	2021-05-27 01:26:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:26:53.951+03	2021-05-27 01:26:53.958+03	
450813c9-7e93-364a-4986-202fa5e376a4	2021-05-27 01:27:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:27:13.951+03	2021-05-27 01:27:13.959+03	
2908b88a-1a04-fc7e-1709-fe2c93847c8b	2021-05-27 01:27:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:27:33.951+03	2021-05-27 01:27:33.959+03	
3ea48b42-3746-310b-8ba4-7825a4592e61	2021-05-27 01:27:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:27:53.951+03	2021-05-27 01:27:53.957+03	
646564ba-3439-3935-f424-b9e25221af45	2021-05-27 01:28:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:28:13.951+03	2021-05-27 01:28:13.959+03	
2bac06ef-5b0c-7518-cb7c-5ebcab551d74	2021-05-27 01:28:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:28:33.951+03	2021-05-27 01:28:33.959+03	
c9675375-21a7-74ea-061a-85f35e216939	2021-05-27 01:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:28:53.951+03	2021-05-27 01:28:53.959+03	
c712237c-8c34-e3ad-c0fd-068ff55c5b3c	2021-05-27 01:29:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:29:13.951+03	2021-05-27 01:29:13.958+03	
a32131e9-249f-f8b3-65b5-32f06aa77e49	2021-05-27 01:29:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:29:33.951+03	2021-05-27 01:29:33.957+03	
17cba40e-f84a-a586-6ae0-32b25622216e	2021-05-27 01:29:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:29:53.951+03	2021-05-27 01:29:53.958+03	
5bbd59c5-d3a2-ab25-ce80-d73a01075b33	2021-05-27 01:30:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:30:03.951+03	2021-05-27 01:30:03.962+03	
277b64cb-4cf1-93ec-2651-6eca6b6858c8	2021-05-27 01:30:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:30:23.951+03	2021-05-27 01:30:23.958+03	
8fe9413b-579b-18e1-b151-e0c4ba916f0f	2021-05-27 01:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:30:43.951+03	2021-05-27 01:30:43.958+03	
605382b7-7866-17a4-c742-8deadaffd86b	2021-05-27 01:31:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:31:03.951+03	2021-05-27 01:31:03.958+03	
e1aad21e-4fb2-99d0-157d-242de6930468	2021-05-27 01:31:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:31:23.951+03	2021-05-27 01:31:23.958+03	
a462880c-ac68-6872-ac55-ab6c93c0ae64	2021-05-27 01:31:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:31:43.951+03	2021-05-27 01:31:43.961+03	
941a4731-b345-f62f-14c5-f20d18218ea8	2021-05-27 01:32:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:32:03.951+03	2021-05-27 01:32:03.959+03	
2e3931cb-a9db-1850-aec0-dc4b01813d7a	2021-05-27 01:32:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:32:23.951+03	2021-05-27 01:32:23.958+03	
d4dfb2fc-3445-f15c-6b46-25f90f4662c8	2021-05-27 01:32:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:32:43.951+03	2021-05-27 01:32:43.958+03	
d19f42ae-dc97-7080-455a-3b9d7ad5440c	2021-05-27 01:33:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:33:03.951+03	2021-05-27 01:33:03.958+03	
7c6520db-f456-dea5-ff74-d5547804b83a	2021-05-27 01:33:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:33:23.951+03	2021-05-27 01:33:23.958+03	
2a578a28-d812-2c6e-2b86-9233f84eb3b1	2021-05-27 01:33:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:33:43.951+03	2021-05-27 01:33:43.959+03	
18f56dc0-c378-e142-9105-d51b6bd64d69	2021-05-27 01:34:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:34:03.951+03	2021-05-27 01:34:03.959+03	
a81b692e-2191-5395-d2f5-bcc96584b3db	2021-05-27 01:34:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:34:23.951+03	2021-05-27 01:34:23.957+03	
c289da06-c78b-e310-82d9-420a003e33e2	2021-05-27 01:34:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:34:43.951+03	2021-05-27 01:34:43.959+03	
bdfc5f8e-aa71-a30f-e43c-7a574be2399f	2021-05-27 01:35:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:35:03.951+03	2021-05-27 01:35:03.959+03	
8483bda1-ec5e-8b7e-aeab-c74965e3ab62	2021-05-27 01:35:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:35:23.951+03	2021-05-27 01:35:23.959+03	
60f63c76-6096-cbb0-dd08-3ec81057c6c7	2021-05-27 01:35:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:35:43.951+03	2021-05-27 01:35:43.958+03	
734a32da-1db2-8f67-715c-81645cc106aa	2021-05-27 01:36:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:36:03.951+03	2021-05-27 01:36:03.957+03	
23c35b26-7890-5972-ff4b-710ee638568e	2021-05-27 01:36:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:36:23.951+03	2021-05-27 01:36:23.958+03	
4445c9c8-487e-5aee-95e6-bf26864b3d90	2021-05-27 01:36:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:36:44.951+03	2021-05-27 01:36:44.96+03	
a118b6e9-2955-7eb2-e714-25d341dbf872	2021-05-27 01:37:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:37:04.951+03	2021-05-27 01:37:04.96+03	
aa21b7cd-a422-2020-3e29-b7a38d0aa64e	2021-05-27 01:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:19:13.951+03	2021-05-27 01:19:13.96+03	
a154285c-7985-e153-a149-5a3dba5ffd25	2021-05-27 01:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:19:33.951+03	2021-05-27 01:19:33.962+03	
69a13331-4362-77da-d051-4ef28a0fbde3	2021-05-27 01:19:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:19:53.951+03	2021-05-27 01:19:53.959+03	
14c44e60-2348-8da4-1b2a-f5cee4aa4524	2021-05-27 01:20:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:20:03.951+03	2021-05-27 01:20:03.957+03	
97c3f03f-d681-46ca-9d52-a751760b2fd5	2021-05-27 01:20:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:20:23.951+03	2021-05-27 01:20:23.959+03	
ef2f32f0-3ce5-3f9a-fa99-512a5dbf5365	2021-05-27 01:20:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:20:43.951+03	2021-05-27 01:20:43.957+03	
903d2212-da43-a76c-d970-9d903e82a892	2021-05-27 01:21:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:21:03.951+03	2021-05-27 01:21:03.959+03	
43842c14-c0a0-a1e7-558f-6bb2253cc42d	2021-05-27 01:21:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:21:23.951+03	2021-05-27 01:21:23.957+03	
c7358096-db8b-d8cf-a996-6a65c92188a8	2021-05-27 01:21:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:21:43.951+03	2021-05-27 01:21:43.963+03	
31302fd1-b831-a076-8fad-890e3ed5b58c	2021-05-27 01:22:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:22:03.951+03	2021-05-27 01:22:03.958+03	
f420a9e2-87fe-f322-5a32-f1c038c01e5b	2021-05-27 01:22:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:22:23.951+03	2021-05-27 01:22:23.958+03	
c5244937-4295-d8db-e0fd-1e1626960cb5	2021-05-27 01:22:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:22:43.951+03	2021-05-27 01:22:43.959+03	
d34c2409-6476-6c30-997d-2f88781b10bf	2021-05-27 01:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:23:03.951+03	2021-05-27 01:23:03.958+03	
bcceb700-e59e-5148-0126-20e7ef735cfc	2021-05-27 01:23:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:23:23.951+03	2021-05-27 01:23:23.96+03	
3b4f8209-3fde-1580-cf80-98e3c0bf3c20	2021-05-27 01:23:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:23:43.951+03	2021-05-27 01:23:43.96+03	
6f7563a3-3e81-231d-22cb-f6c3ac084108	2021-05-27 01:24:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:24:03.951+03	2021-05-27 01:24:03.958+03	
5d94b781-1145-22fb-3b64-51a349179c05	2021-05-27 01:24:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:24:23.951+03	2021-05-27 01:24:23.959+03	
7498012a-51e8-7abd-84f9-3faa8268b488	2021-05-27 01:24:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:24:43.951+03	2021-05-27 01:24:43.958+03	
92dab628-5dff-4038-bc2d-6bc35a3b7353	2021-05-27 01:25:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:25:03.951+03	2021-05-27 01:25:03.96+03	
86399768-562f-49f0-0215-f01f9adce9da	2021-05-27 01:25:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:25:23.951+03	2021-05-27 01:25:23.957+03	
a9c657b4-39ba-b423-55b5-2621caa95d3e	2021-05-27 01:25:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:25:43.951+03	2021-05-27 01:25:43.957+03	
c07552c3-2d73-07b4-c50a-9c89698ca909	2021-05-27 01:26:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:26:03.951+03	2021-05-27 01:26:03.958+03	
b770c5c4-6b69-7b0f-8b9b-12de8ff0d181	2021-05-27 01:26:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:26:23.951+03	2021-05-27 01:26:23.958+03	
0ca2dc4d-5850-93e5-2892-1e5cd7e9f5ad	2021-05-27 01:26:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:26:43.951+03	2021-05-27 01:26:43.958+03	
97e2724f-2d1b-846c-c04a-efeb2467db53	2021-05-27 01:27:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:27:03.951+03	2021-05-27 01:27:03.968+03	
91c75ecc-c8f9-1809-8511-c1d618dd8601	2021-05-27 01:27:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:27:23.951+03	2021-05-27 01:27:23.958+03	
749940bc-768f-91e4-5eed-b48f0b1f5255	2021-05-27 01:27:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:27:43.951+03	2021-05-27 01:27:43.957+03	
b644a357-df78-96ed-ca72-e60c5b3dc44a	2021-05-27 01:28:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:28:03.951+03	2021-05-27 01:28:03.958+03	
8a3b52b6-c7bd-3d68-38bd-92fbf36dce70	2021-05-27 01:28:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:28:23.951+03	2021-05-27 01:28:23.958+03	
94ff891d-09c3-eb47-2386-d7bb3f85f433	2021-05-27 01:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:28:43.951+03	2021-05-27 01:28:43.96+03	
10c58475-1739-6ab6-2ec9-46cacbb5b8b0	2021-05-27 01:29:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:29:03.951+03	2021-05-27 01:29:03.958+03	
adfd5739-ba15-aa0b-eced-062095199e6d	2021-05-27 01:29:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:29:23.951+03	2021-05-27 01:29:23.959+03	
e0f5e9c3-ae12-f940-e8c2-f75fea7729c2	2021-05-27 01:29:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:29:43.951+03	2021-05-27 01:29:43.959+03	
5440ba6a-5ad3-51c8-e1ab-1e803588e4f1	2021-05-27 01:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 01:30:00.951+03	2021-05-27 01:30:00.959+03	ERROR
6f2071c2-9c78-d5ed-8604-e9123fed7ef2	2021-05-27 01:30:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:30:13.951+03	2021-05-27 01:30:13.959+03	
a2a0569b-3c96-00c8-d363-419bb1bb81ed	2021-05-27 01:30:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:30:33.951+03	2021-05-27 01:30:33.958+03	
62f77793-889f-6af3-4ca7-5ee31b745272	2021-05-27 01:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:30:53.951+03	2021-05-27 01:30:53.959+03	
9e9c6d28-3e6a-f5d0-ab8b-a0b15b2da840	2021-05-27 01:31:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:31:13.951+03	2021-05-27 01:31:13.958+03	
e92a58e5-e0a1-1dd4-3cd5-05585c931f8f	2021-05-27 01:31:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:31:33.951+03	2021-05-27 01:31:33.96+03	
98508191-6ae6-2f42-2f48-990451fe9e34	2021-05-27 01:31:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:31:53.951+03	2021-05-27 01:31:53.959+03	
9153cda0-e7d3-47bc-6314-0a3cfda60be2	2021-05-27 01:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:32:13.951+03	2021-05-27 01:32:13.958+03	
2b5a8b90-ca1a-a76e-e5e2-65052f156d8a	2021-05-27 01:32:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:32:33.951+03	2021-05-27 01:32:33.959+03	
96bd9931-6e6e-f091-4f32-ec26c345260b	2021-05-27 01:32:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:32:53.951+03	2021-05-27 01:32:53.961+03	
8ffee1d3-d961-8fa7-086c-a599606aefb2	2021-05-27 01:33:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:33:13.951+03	2021-05-27 01:33:13.959+03	
cf2ace09-00cf-7a3c-119b-d5f48895d1c1	2021-05-27 01:33:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:33:33.951+03	2021-05-27 01:33:33.959+03	
066dc87c-fe86-9ade-fa07-08bc386d5bb0	2021-05-27 01:33:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:33:53.951+03	2021-05-27 01:33:53.958+03	
67d4617a-0007-f339-cb21-948b3c44ffe2	2021-05-27 01:34:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:34:13.951+03	2021-05-27 01:34:14.278+03	
e67bdb1e-bb71-d23b-7f13-456274de601e	2021-05-27 01:34:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:34:33.951+03	2021-05-27 01:34:33.96+03	
0ae7c950-b6ab-5a95-8314-4bf98832a9d1	2021-05-27 01:34:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:34:53.951+03	2021-05-27 01:34:53.959+03	
76b14175-3f16-33de-69ba-2207d40232a2	2021-05-27 01:35:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:35:13.951+03	2021-05-27 01:35:13.958+03	
23cf9c5f-1b61-cd8f-8808-c18049bc016a	2021-05-27 01:35:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:35:33.951+03	2021-05-27 01:35:33.971+03	
100a8482-90bf-d28b-01d0-00d95a519dea	2021-05-27 01:35:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:35:53.951+03	2021-05-27 01:35:53.957+03	
7820575f-3da8-4c0e-0b71-34f3ec24822a	2021-05-27 01:36:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:36:13.951+03	2021-05-27 01:36:13.962+03	
6ae6eb33-0328-f555-2c78-8d26089c4b25	2021-05-27 01:36:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:36:33.952+03	2021-05-27 01:36:33.959+03	
f6c37291-0ad6-e2fc-b91a-9f9693a674ce	2021-05-27 01:36:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:36:54.951+03	2021-05-27 01:36:54.958+03	
c73ed288-9116-826c-845c-259e4dcae8e7	2021-05-27 01:37:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:37:14.951+03	2021-05-27 01:37:14.958+03	
3dd1f333-8639-56d1-64fe-5ae82d5150a9	2021-05-27 01:37:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:37:34.951+03	2021-05-27 01:37:34.958+03	
3c78f6f6-9a4d-d396-e694-2af13cae15a7	2021-05-27 01:37:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:37:54.951+03	2021-05-27 01:37:54.959+03	
7085dde3-042e-dbe0-c03a-9883bda885ed	2021-05-27 01:38:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:38:14.951+03	2021-05-27 01:38:14.957+03	
2e363a0c-15b1-76a9-15c4-6d06eb0b41d9	2021-05-27 01:38:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:38:34.951+03	2021-05-27 01:38:34.958+03	
8c1a9554-ad6a-5e90-1a38-ac8cab2f3f5f	2021-05-27 01:38:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:38:54.952+03	2021-05-27 01:38:54.96+03	
23cd195d-b505-d222-27d1-87264c8f3b3c	2021-05-27 01:39:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:39:15.952+03	2021-05-27 01:39:15.959+03	
f5360da0-80fb-f2a6-0e0d-7bff5cd8b23a	2021-05-27 01:39:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:39:36.951+03	2021-05-27 01:39:36.958+03	
70f4e1bf-5d1c-d7ec-7d25-51ad0d5adaf4	2021-05-27 01:37:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:37:24.951+03	2021-05-27 01:37:24.958+03	
fd44587c-2b24-2ac8-d2b8-fe92b5354f94	2021-05-27 01:37:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:37:44.951+03	2021-05-27 01:37:44.958+03	
f803c42f-8187-eb07-4605-3a249ee7334a	2021-05-27 01:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:38:04.951+03	2021-05-27 01:38:04.958+03	
25f0fdd3-936b-aea9-d1fa-d3af944abf8e	2021-05-27 01:38:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:38:24.951+03	2021-05-27 01:38:24.962+03	
34b25b7c-7ab3-289a-c2aa-6c5a89fc47d6	2021-05-27 01:38:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:38:44.952+03	2021-05-27 01:38:44.958+03	
d54be442-75de-b6b5-a2d4-d64f00776867	2021-05-27 01:39:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:39:05.951+03	2021-05-27 01:39:05.958+03	
5409fdea-94d9-f135-c244-23673ecdb18c	2021-05-27 01:39:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:39:26.951+03	2021-05-27 01:39:26.958+03	
3b74df19-5f23-1306-9a14-53830cdd0275	2021-05-27 01:39:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:39:46.951+03	2021-05-27 01:39:46.958+03	
473567ff-85a5-f1b6-ac32-b0d83f3ebb9c	2021-05-27 01:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 01:40:00.951+03	2021-05-27 01:40:00.959+03	ERROR
8b9c282e-139c-3f4b-91bb-1cc429d3b1fe	2021-05-27 01:40:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:40:16.951+03	2021-05-27 01:40:16.958+03	
eba37daf-cc95-7f30-865a-9c5eb8d91f12	2021-05-27 01:40:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:40:36.951+03	2021-05-27 01:40:36.958+03	
317ec308-2e59-bb92-92fd-b127e91a1e41	2021-05-27 01:40:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:40:56.952+03	2021-05-27 01:40:56.961+03	
becaed0a-4220-e1f6-3523-3d0930a377dd	2021-05-27 01:41:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:41:17.951+03	2021-05-27 01:41:17.959+03	
658cc0de-99f9-1963-743a-b0272d7be180	2021-05-27 01:41:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:41:37.952+03	2021-05-27 01:41:37.959+03	
2b3b2eac-3ff1-5fa1-30c3-7275437ce7bf	2021-05-27 01:41:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:41:58.951+03	2021-05-27 01:41:58.957+03	
c974028e-eac4-dc7f-5edd-20382b78df9f	2021-05-27 01:42:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:42:18.951+03	2021-05-27 01:42:18.959+03	
3994fbcf-233a-cbb6-30de-4136a16971dd	2021-05-27 01:42:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:42:38.951+03	2021-05-27 01:42:38.958+03	
b9b40871-1094-cb30-48da-2aeab5564c26	2021-05-27 01:42:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:42:58.952+03	2021-05-27 01:42:58.958+03	
9bd70a80-7346-cbf7-29c7-07afa8791cad	2021-05-27 01:43:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:43:19.951+03	2021-05-27 01:43:19.958+03	
73ad90f9-6f6a-ce20-f607-333d876685a3	2021-05-27 01:43:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:43:39.951+03	2021-05-27 01:43:39.958+03	
5059fe9d-1ce5-fc42-ae6e-2cb810888df3	2021-05-27 01:43:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:43:59.951+03	2021-05-27 01:43:59.959+03	
8996a803-9a54-ce20-eea2-3ae2ea003456	2021-05-27 01:44:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:44:19.951+03	2021-05-27 01:44:19.959+03	
47682fe2-bd26-ad98-0164-d072cc4db741	2021-05-27 01:44:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:44:39.951+03	2021-05-27 01:44:39.958+03	
e642676e-ca03-74a4-de9a-7cdd64402bb4	2021-05-27 01:44:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:44:59.951+03	2021-05-27 01:44:59.959+03	
b45b656a-9106-5619-c40f-69ad0e1e9ce0	2021-05-27 01:45:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:45:20.951+03	2021-05-27 01:45:20.958+03	
42d1a959-b8d2-e894-5b69-9862e4596ae9	2021-05-27 01:45:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:45:40.951+03	2021-05-27 01:45:40.958+03	
321865d3-d717-8f6d-bc7b-4422de535958	2021-05-27 01:46:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:46:00.951+03	2021-05-27 01:46:00.96+03	
1f09086a-1fc9-a3e1-935c-61c4e96f6868	2021-05-27 01:46:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:46:20.951+03	2021-05-27 01:46:20.958+03	
c0fa42c4-26b9-ab58-58c5-8309303ba516	2021-05-27 01:46:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:46:40.951+03	2021-05-27 01:46:40.959+03	
745abc02-42a5-85e1-bf13-4901829ba25c	2021-05-27 01:47:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:47:00.951+03	2021-05-27 01:47:00.963+03	
209933b1-cbd8-8520-3971-3a0cae6b9984	2021-05-27 01:47:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:47:20.951+03	2021-05-27 01:47:20.958+03	
ef215950-cb8f-ed8a-e12f-0179dd33e308	2021-05-27 01:47:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:47:40.951+03	2021-05-27 01:47:40.957+03	
719a3e0c-ad0a-c6df-7e04-e64c38c83287	2021-05-27 01:48:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:48:00.951+03	2021-05-27 01:48:00.958+03	
b9b4481a-7601-d202-e402-feba93c68f95	2021-05-27 01:48:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:48:20.951+03	2021-05-27 01:48:20.959+03	
fa3fbd1a-200b-c272-50fe-2f2051e88966	2021-05-27 01:48:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:48:40.951+03	2021-05-27 01:48:40.959+03	
bae0f3ca-1cbf-9a70-3d76-400abc7e20a1	2021-05-27 01:49:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:49:00.951+03	2021-05-27 01:49:00.958+03	
cfa2d33a-b0be-3520-7122-20ca7bb89f75	2021-05-27 01:49:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:49:20.951+03	2021-05-27 01:49:20.959+03	
a3019f3c-7503-1fff-7b5e-02febfb1d066	2021-05-27 01:49:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:49:40.951+03	2021-05-27 01:49:40.958+03	
8675fb2a-6d4b-cb33-c94b-0251b0603263	2021-05-27 01:50:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:50:00.952+03	2021-05-27 01:50:00.96+03	
cf113462-e2d8-ef62-7859-243f0c61ed8c	2021-05-27 01:50:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:50:21.951+03	2021-05-27 01:50:21.959+03	
9270ce4c-5e4a-ca11-7326-6e79b4284c76	2021-05-27 01:50:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:50:41.951+03	2021-05-27 01:50:41.958+03	
78582b3b-86a8-fbda-ce43-95cc3d1a9c0b	2021-05-27 01:51:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:51:01.951+03	2021-05-27 01:51:01.958+03	
d15b9f5c-1fe9-bfc4-05ce-8ce203ebc2ee	2021-05-27 01:51:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:51:21.951+03	2021-05-27 01:51:21.96+03	
412e23b0-b3f9-7af5-8b04-20f89c082277	2021-05-27 01:51:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:51:41.951+03	2021-05-27 01:51:41.96+03	
e6db58ff-9cba-f704-57f1-d801686f4593	2021-05-27 01:52:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:52:01.951+03	2021-05-27 01:52:01.958+03	
f419abeb-fcfd-4b3e-8755-c9f807b9b7e7	2021-05-27 01:52:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:52:21.951+03	2021-05-27 01:52:21.96+03	
72a54b34-1998-b1ae-8938-fc043a51d568	2021-05-27 01:52:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:52:41.951+03	2021-05-27 01:52:41.96+03	
56ba96e0-4040-1e2f-680d-e3843c5501e7	2021-05-27 01:53:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:53:01.951+03	2021-05-27 01:53:01.958+03	
91e4a4de-2ab8-65e0-aaca-ea74e318d689	2021-05-27 01:53:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:53:21.951+03	2021-05-27 01:53:21.96+03	
427c1c59-9c1c-fd54-c374-1f8a1f673125	2021-05-27 01:53:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:53:41.951+03	2021-05-27 01:53:41.958+03	
8c2fdf85-795e-f4e8-10e4-2cd8382bb7b4	2021-05-27 01:54:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:54:01.951+03	2021-05-27 01:54:01.958+03	
1db52885-cdaf-5476-65c5-23ba31547268	2021-05-27 01:54:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:54:21.951+03	2021-05-27 01:54:21.958+03	
af741029-3949-b94c-b832-d6231eac6ae9	2021-05-27 01:54:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:54:41.951+03	2021-05-27 01:54:41.96+03	
abcd71cc-319f-f5aa-f349-5648ce547b28	2021-05-27 01:55:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:55:01.951+03	2021-05-27 01:55:01.957+03	
07fa4459-4837-aeb4-d26f-f2fce0e75afb	2021-05-27 01:55:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:55:21.951+03	2021-05-27 01:55:21.959+03	
7beebb78-00d5-00f3-0e39-6491b757b3b8	2021-05-27 01:55:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:55:41.951+03	2021-05-27 01:55:41.96+03	
9820a256-5e86-79ed-36c9-f914be0d7811	2021-05-27 01:56:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:56:01.951+03	2021-05-27 01:56:01.961+03	
1e6251ae-02be-4324-12d8-709f54f73d61	2021-05-27 01:56:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:56:21.951+03	2021-05-27 01:56:21.958+03	
47e11586-cdde-000c-a905-4a7f70d74f81	2021-05-27 01:56:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:56:41.951+03	2021-05-27 01:56:41.958+03	
4afadc58-57ae-bac4-d810-ef6beb101e96	2021-05-27 01:57:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:57:01.951+03	2021-05-27 01:57:01.959+03	
597944ac-0d16-659f-5a83-64fedf528e6d	2021-05-27 01:57:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:57:21.951+03	2021-05-27 01:57:21.958+03	
4146157c-5215-467a-3c0a-bc53318f908b	2021-05-27 01:57:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:57:41.951+03	2021-05-27 01:57:41.958+03	
823f39f2-9b2d-f07a-8f5c-78949340a2a3	2021-05-27 01:58:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:58:01.951+03	2021-05-27 01:58:01.958+03	
ebf9faba-abef-f382-e087-9419a72937aa	2021-05-27 01:39:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:39:56.951+03	2021-05-27 01:39:56.96+03	
244d744e-596c-2d92-e229-eab4c9d15e38	2021-05-27 01:40:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:40:06.951+03	2021-05-27 01:40:06.959+03	
dda1065e-0168-87c0-c045-44d3b89c9186	2021-05-27 01:40:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:40:26.951+03	2021-05-27 01:40:26.958+03	
a86ce2d6-b45a-50cc-ce27-024c5ba90c35	2021-05-27 01:40:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:40:46.951+03	2021-05-27 01:40:46.959+03	
ff1b5d3d-96b7-2d44-9482-c93d96d5d373	2021-05-27 01:41:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:41:07.951+03	2021-05-27 01:41:07.957+03	
228f46ec-071b-cd15-ed65-706d4d73721c	2021-05-27 01:41:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:41:27.951+03	2021-05-27 01:41:27.958+03	
086af083-bf57-e32c-b225-682f68e4cfb9	2021-05-27 01:41:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:41:48.951+03	2021-05-27 01:41:48.959+03	
ee2e6f10-1df2-9a1a-a6b7-f9812b42d0f7	2021-05-27 01:42:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:42:08.951+03	2021-05-27 01:42:08.961+03	
eb433117-78f4-7ba4-febd-5da9fe229747	2021-05-27 01:42:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:42:28.951+03	2021-05-27 01:42:28.958+03	
72619639-f556-a29d-0d9c-0eb33acae609	2021-05-27 01:42:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:42:48.951+03	2021-05-27 01:42:48.958+03	
d1be0420-f102-5974-4351-2d7b9b24026a	2021-05-27 01:43:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:43:09.951+03	2021-05-27 01:43:09.959+03	
599aa4ae-f529-de91-16a4-98826d34a2da	2021-05-27 01:43:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:43:29.951+03	2021-05-27 01:43:29.959+03	
51091a16-7e77-809e-c82c-bb2d8ff67e62	2021-05-27 01:43:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:43:49.951+03	2021-05-27 01:43:49.96+03	
7310d6b3-c684-7aeb-4848-f8986382c239	2021-05-27 01:44:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:44:09.951+03	2021-05-27 01:44:09.958+03	
21b31860-e091-8148-3ad9-d726798dc13f	2021-05-27 01:44:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:44:29.951+03	2021-05-27 01:44:29.958+03	
05a1bc5f-273e-7f50-bc40-3ea847e2b603	2021-05-27 01:44:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:44:49.951+03	2021-05-27 01:44:49.958+03	
f9843408-e342-438a-67f5-d81c0624f246	2021-05-27 01:45:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:45:09.952+03	2021-05-27 01:45:09.96+03	
f25d6e3a-8a6f-69de-599d-64fe8010c1a3	2021-05-27 01:45:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:45:30.951+03	2021-05-27 01:45:30.958+03	
ed94c6c2-1df2-742c-97e3-650c57c35f7a	2021-05-27 01:45:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:45:50.951+03	2021-05-27 01:45:50.958+03	
c2d1dfa3-1be9-5761-0aca-43ac07baf191	2021-05-27 01:46:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:46:10.951+03	2021-05-27 01:46:10.957+03	
1c0e8607-b589-9e19-22a2-5186905ddff1	2021-05-27 01:46:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:46:30.951+03	2021-05-27 01:46:30.958+03	
0a14611a-c42a-a38c-e322-aa761bc2a3c8	2021-05-27 01:46:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:46:50.951+03	2021-05-27 01:46:50.958+03	
8147af83-7a7d-2b34-08e5-1e41627ab0de	2021-05-27 01:47:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:47:10.951+03	2021-05-27 01:47:10.958+03	
25d95872-56a0-8f90-24bb-a171d629c7c9	2021-05-27 01:47:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:47:30.951+03	2021-05-27 01:47:30.958+03	
71d01aea-c370-c939-c484-b94646265cfc	2021-05-27 01:47:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:47:50.951+03	2021-05-27 01:47:50.959+03	
e56b5a1a-326c-55b8-707a-6faa890fe0fc	2021-05-27 01:48:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:48:10.951+03	2021-05-27 01:48:10.959+03	
223c856a-767e-5222-479a-fd171fafa150	2021-05-27 01:48:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:48:30.951+03	2021-05-27 01:48:30.958+03	
d330d9fa-064b-3067-234e-b1f62fe5d1c0	2021-05-27 01:48:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:48:50.951+03	2021-05-27 01:48:50.959+03	
ddbab607-8d7c-3b62-ec8f-84c34043fe75	2021-05-27 01:49:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:49:10.951+03	2021-05-27 01:49:10.958+03	
3585dbd5-496e-ced0-1ded-e04e8feaec71	2021-05-27 01:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:49:30.951+03	2021-05-27 01:49:30.96+03	
fd957560-2cd0-a806-f7d4-87e2eedcb156	2021-05-27 01:49:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:49:50.951+03	2021-05-27 01:49:50.96+03	
ba3543e8-df5c-b594-03f0-835973177d6e	2021-05-27 01:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 01:50:00.952+03	2021-05-27 01:50:00.968+03	ERROR
a6515861-ee2d-2730-2c5c-0c079235d23b	2021-05-27 01:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:50:11.951+03	2021-05-27 01:50:11.96+03	
c0d9f073-cada-cc6f-eacd-4882624a64c1	2021-05-27 01:50:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:50:31.951+03	2021-05-27 01:50:31.959+03	
f1a11b09-da87-a996-37c0-e86a93fa33fb	2021-05-27 01:50:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:50:51.951+03	2021-05-27 01:50:51.958+03	
03214047-04a4-fac0-a4b8-4e0b383f31c0	2021-05-27 01:51:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:51:11.951+03	2021-05-27 01:51:11.958+03	
9843b975-f6f5-b2f5-b0a2-6a6ed1cf613e	2021-05-27 01:51:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:51:31.951+03	2021-05-27 01:51:31.958+03	
d6f35ac4-5f7c-a2ab-ca6d-fa627278c5fc	2021-05-27 01:51:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:51:51.951+03	2021-05-27 01:51:51.961+03	
aaab1b9c-e091-9238-2116-6b7ccf8fc253	2021-05-27 01:52:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:52:11.951+03	2021-05-27 01:52:11.96+03	
da2e21f3-0547-8859-e96d-54907ae156c3	2021-05-27 01:52:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:52:31.951+03	2021-05-27 01:52:31.959+03	
db0d03dd-1873-a358-96e0-375f268dbdd7	2021-05-27 01:52:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:52:51.951+03	2021-05-27 01:52:51.96+03	
ca5a2920-eefd-4521-5d0a-334bb5a86d48	2021-05-27 01:53:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:53:11.951+03	2021-05-27 01:53:11.958+03	
5548bdb6-9ba5-c4ff-ced5-947a7a3a5a11	2021-05-27 01:53:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:53:31.951+03	2021-05-27 01:53:31.959+03	
7d562058-e3c6-f347-e771-699ea818d244	2021-05-27 01:53:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:53:51.951+03	2021-05-27 01:53:51.962+03	
7aeef5bb-5bd8-ef4a-9ad5-76923370e9d4	2021-05-27 01:54:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:54:11.951+03	2021-05-27 01:54:11.96+03	
2f88ed46-a078-d4df-2159-dabb00ea6218	2021-05-27 01:54:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:54:31.951+03	2021-05-27 01:54:31.963+03	
c90761d1-479d-c2c0-119b-bc47af31863a	2021-05-27 01:54:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:54:51.951+03	2021-05-27 01:54:51.959+03	
1f1bf5b7-7e8d-f386-720c-d7cb18b0ee1e	2021-05-27 01:55:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:55:11.951+03	2021-05-27 01:55:11.959+03	
e820972c-733a-3012-c633-88b78f2cd2e0	2021-05-27 01:55:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:55:31.951+03	2021-05-27 01:55:31.963+03	
0d0b81ce-2cce-c4b8-9776-85cd21bf4d4d	2021-05-27 01:55:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:55:51.951+03	2021-05-27 01:55:51.96+03	
d775288b-79c5-abf8-2395-e18a0f40c63e	2021-05-27 01:56:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:56:11.951+03	2021-05-27 01:56:11.958+03	
69c1669c-b270-c30b-0f9e-bc6e31e07381	2021-05-27 01:56:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:56:31.951+03	2021-05-27 01:56:31.958+03	
e6fb180e-8e36-0443-16a6-fdd772cb5a20	2021-05-27 01:56:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:56:51.951+03	2021-05-27 01:56:51.961+03	
d9997aeb-73a5-106e-855c-3d67c5475c23	2021-05-27 01:57:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:57:11.951+03	2021-05-27 01:57:11.958+03	
9f77efec-f5cc-bb4e-370d-063da68c7a21	2021-05-27 01:57:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:57:31.951+03	2021-05-27 01:57:31.958+03	
339b386c-75bc-2fe6-a909-8a45b884540a	2021-05-27 01:57:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:57:51.951+03	2021-05-27 01:57:51.958+03	
a307a428-0e5b-d8db-a925-32fc49d08cd7	2021-05-27 01:58:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:58:11.951+03	2021-05-27 01:58:11.959+03	
7a6e65fb-8913-5ed0-da0b-0c4bd3c52434	2021-05-27 01:58:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:58:31.951+03	2021-05-27 01:58:31.959+03	
7e390577-e56a-5486-f974-9e9aad104c90	2021-05-27 01:58:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:58:51.951+03	2021-05-27 01:58:51.96+03	
b7b44527-49d8-20fe-3299-7da05f1806c4	2021-05-27 01:59:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:59:11.951+03	2021-05-27 01:59:11.957+03	
2bd0c4de-9a0f-024b-f2cb-70f16cd7265a	2021-05-27 01:59:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:59:31.951+03	2021-05-27 01:59:31.959+03	
1d06a70f-e33a-046c-e795-14f2101de705	2021-05-27 01:59:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:59:51.951+03	2021-05-27 01:59:51.958+03	
7dc4f463-6ca6-3f4b-e2ab-60039d7249d1	2021-05-27 02:00:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:00:01.951+03	2021-05-27 02:00:01.958+03	
7c8869fd-3032-d7c4-0f71-a1ac432d8fca	2021-05-27 01:58:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:58:21.951+03	2021-05-27 01:58:21.962+03	
5a33348d-d7af-053a-aec1-2b4e4a76e57a	2021-05-27 01:58:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:58:41.951+03	2021-05-27 01:58:41.962+03	
cb1e8fb2-f3a2-0650-44ad-955e259e89ef	2021-05-27 01:59:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:59:01.951+03	2021-05-27 01:59:01.958+03	
61a59d71-c06a-efe1-430a-a660ef404f72	2021-05-27 01:59:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:59:21.951+03	2021-05-27 01:59:21.958+03	
2ccffb41-ddb5-af55-3788-b4afa506c9f3	2021-05-27 01:59:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 01:59:41.951+03	2021-05-27 01:59:42.287+03	
dc1958b2-5d32-57be-736e-db8fa6205d63	2021-05-27 02:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 02:00:00.951+03	2021-05-27 02:00:00.957+03	ERROR
e525d935-015e-2f3d-3728-0497c519c9b7	2021-05-27 02:00:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:00:11.951+03	2021-05-27 02:00:11.959+03	
89ef8d96-5644-28c5-0b45-be89d9d9354f	2021-05-27 02:00:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:00:31.951+03	2021-05-27 02:00:31.958+03	
eb0861a6-e061-c120-7a50-bdb41aa24230	2021-05-27 02:00:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:00:51.951+03	2021-05-27 02:00:51.958+03	
7a6042d7-012e-8999-7461-49f889658830	2021-05-27 02:01:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:01:11.951+03	2021-05-27 02:01:11.96+03	
b45daa22-0105-a807-6673-91d5aa7bc6c8	2021-05-27 02:01:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:01:31.951+03	2021-05-27 02:01:31.959+03	
6f303e54-ab14-c771-3e65-ad4c5f37c6ea	2021-05-27 02:01:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:01:51.951+03	2021-05-27 02:01:51.96+03	
84f43be4-c442-5052-c791-4e96ffd59778	2021-05-27 02:02:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:02:11.951+03	2021-05-27 02:02:11.958+03	
41aac39d-2937-6ef3-acd7-aaa70d5ab719	2021-05-27 02:02:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:02:31.951+03	2021-05-27 02:02:31.958+03	
fd569de0-73f9-eeb8-e807-8df6286c077a	2021-05-27 02:02:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:02:51.951+03	2021-05-27 02:02:51.959+03	
319667c1-5990-f764-bfd6-f63853024c92	2021-05-27 02:03:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:03:11.951+03	2021-05-27 02:03:11.959+03	
09784b1a-029d-197c-6b78-813891d9c301	2021-05-27 02:03:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:03:31.951+03	2021-05-27 02:03:31.961+03	
2d0e198f-9f2e-e977-3c04-b672bca57062	2021-05-27 02:03:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:03:51.951+03	2021-05-27 02:03:51.958+03	
e0cc8add-e275-4770-7b8b-e7da3732ffa0	2021-05-27 02:04:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:04:12.951+03	2021-05-27 02:04:12.961+03	
bd75ef53-4700-09b7-943e-e8d812676cee	2021-05-27 02:04:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:04:32.951+03	2021-05-27 02:04:32.957+03	
c46453e6-8856-2d64-ef50-3bb5a099dee9	2021-05-27 02:04:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:04:53.951+03	2021-05-27 02:04:53.958+03	
5a7a20c3-01e0-0b03-aada-e8f09b44e28e	2021-05-27 02:05:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:05:13.951+03	2021-05-27 02:05:13.958+03	
604a31e1-e4b0-1674-a40b-3f57e1436bab	2021-05-27 02:05:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:05:33.951+03	2021-05-27 02:05:33.958+03	
54d46546-9e72-dffe-4db4-bff89994d897	2021-05-27 02:05:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:05:54.951+03	2021-05-27 02:05:54.96+03	
376b1355-8a48-0bdd-30c6-0798ef09105c	2021-05-27 02:06:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:06:14.951+03	2021-05-27 02:06:14.959+03	
225df259-f644-491e-5fbb-2b6da9e91038	2021-05-27 02:06:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:06:34.951+03	2021-05-27 02:06:34.958+03	
4bf7a8e2-1401-fae6-d426-f175b7f55df0	2021-05-27 02:06:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:06:54.951+03	2021-05-27 02:06:54.959+03	
2fe140e1-0f48-289b-c95c-2382750befc5	2021-05-27 02:07:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:07:14.951+03	2021-05-27 02:07:14.958+03	
7e74ef57-af3a-bff1-04cb-a5e764929233	2021-05-27 02:07:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:07:34.951+03	2021-05-27 02:07:34.958+03	
93d946c8-8225-9ec2-87b7-f6d00ae2cafd	2021-05-27 02:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:07:54.951+03	2021-05-27 02:07:54.958+03	
3714514a-24a0-86aa-6821-0f934a268c9b	2021-05-27 02:08:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:08:14.951+03	2021-05-27 02:08:14.957+03	
b22ffe1c-8bdb-d738-c5fd-2baee3007144	2021-05-27 02:08:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:08:34.951+03	2021-05-27 02:08:34.959+03	
c77d06d2-626d-c77c-89da-1dc5387ce0ca	2021-05-27 02:08:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:08:54.951+03	2021-05-27 02:08:54.96+03	
2735c4d4-2e85-bd1a-974b-47a2df02bd12	2021-05-27 02:09:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:09:14.951+03	2021-05-27 02:09:14.958+03	
5f08d150-8828-fc53-2e75-6965f70121ec	2021-05-27 02:09:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:09:34.952+03	2021-05-27 02:09:34.958+03	
62994588-2e6e-3784-78fa-93169c7cc739	2021-05-27 02:09:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:09:55.951+03	2021-05-27 02:09:55.958+03	
781403b1-0f95-1241-1a6f-286dafaa2033	2021-05-27 02:10:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:10:05.951+03	2021-05-27 02:10:05.959+03	
e25372d1-5327-8ae8-b77d-972dbf057c48	2021-05-27 02:10:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:10:25.951+03	2021-05-27 02:10:25.96+03	
8ff5e478-85a6-cc37-9809-87c39bf228cd	2021-05-27 02:10:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:10:45.951+03	2021-05-27 02:10:45.959+03	
53282596-0ff7-becc-1ff9-a58c4272d868	2021-05-27 02:11:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:11:05.951+03	2021-05-27 02:11:05.958+03	
33ec47b2-55ba-c3f6-7385-0f7e03adef2d	2021-05-27 02:11:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:11:25.951+03	2021-05-27 02:11:25.979+03	
cb5875db-770d-9500-09e8-31eb5a24bc1e	2021-05-27 02:11:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:11:45.951+03	2021-05-27 02:11:45.958+03	
4dd8894f-65d9-fe05-fcec-4108e907abd6	2021-05-27 02:12:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:12:05.951+03	2021-05-27 02:12:05.962+03	
926b2179-f0e2-902f-16bb-b9dfe2c1fc45	2021-05-27 02:12:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:12:25.951+03	2021-05-27 02:12:25.963+03	
53d8eaed-606e-766a-0329-c77df99ebf29	2021-05-27 02:12:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:12:45.951+03	2021-05-27 02:12:45.958+03	
720d6ac1-a7fb-91e5-7f93-75702bf01553	2021-05-27 02:13:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:13:05.951+03	2021-05-27 02:13:05.961+03	
66499c95-564b-75a8-f848-e92400bb0e62	2021-05-27 02:13:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:13:25.951+03	2021-05-27 02:13:25.959+03	
a94cad4c-fd83-ab4f-6156-e2e427c59af3	2021-05-27 02:13:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:13:45.951+03	2021-05-27 02:13:45.959+03	
2eb6536e-81a6-8a8f-a086-f9b3ff2dce1b	2021-05-27 02:14:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:14:05.951+03	2021-05-27 02:14:05.958+03	
fc9d819e-bbd3-a1b0-00f8-24cb27cba486	2021-05-27 02:14:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:14:26.951+03	2021-05-27 02:14:26.959+03	
7b403497-3ee0-afca-b46f-5fbe69b9bc00	2021-05-27 02:14:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:14:46.951+03	2021-05-27 02:14:46.96+03	
7b284a01-c990-461a-70f8-32a6b57a8b8f	2021-05-27 02:15:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:15:06.951+03	2021-05-27 02:15:06.957+03	
11692e7c-fe05-4b3b-ad21-d93d74e24e51	2021-05-27 02:15:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:15:26.951+03	2021-05-27 02:15:26.96+03	
575d4de0-0883-6c60-139b-5bb6a6c40501	2021-05-27 02:15:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:15:46.951+03	2021-05-27 02:15:46.959+03	
e0f884da-04c7-9d2f-f309-f7c933ccbdc2	2021-05-27 02:16:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:16:06.951+03	2021-05-27 02:16:06.963+03	
140351f3-9f5f-9e32-af0a-86ec691a5af8	2021-05-27 02:16:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:16:26.951+03	2021-05-27 02:16:26.958+03	
8ffc73cc-ceae-1742-08b2-5890bc976739	2021-05-27 02:16:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:16:46.951+03	2021-05-27 02:16:46.962+03	
dfa267d1-0c5c-cc4a-1be2-e8429860b7c7	2021-05-27 02:17:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:17:07.952+03	2021-05-27 02:17:07.962+03	
e65ac2c8-5c62-9af2-8640-d543490403cb	2021-05-27 02:17:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:17:28.952+03	2021-05-27 02:17:28.963+03	
abad3f10-fec8-cece-f540-fd7ace92ad40	2021-05-27 02:17:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:17:49.951+03	2021-05-27 02:17:49.959+03	
accf0256-5fd8-757d-784d-9ca001bb4ea5	2021-05-27 02:18:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:18:09.951+03	2021-05-27 02:18:09.959+03	
be429aad-e26e-78e0-3d1d-f85a62c22d69	2021-05-27 02:18:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:18:29.951+03	2021-05-27 02:18:29.958+03	
d7e4561c-dc44-9578-b7b7-7b1d814b7c6a	2021-05-27 02:18:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:18:49.951+03	2021-05-27 02:18:49.96+03	
e384860e-7d2c-65a9-6041-c1861d2d0454	2021-05-27 02:00:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:00:21.951+03	2021-05-27 02:00:21.959+03	
d03e453c-ff81-ada6-4611-5198f1ce7311	2021-05-27 02:00:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:00:41.951+03	2021-05-27 02:00:41.959+03	
0b1ac896-0ccc-8150-4278-7047adba2bf3	2021-05-27 02:01:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:01:01.951+03	2021-05-27 02:01:01.959+03	
c1e78a71-b56e-c626-ff11-f108bbc04715	2021-05-27 02:01:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:01:21.951+03	2021-05-27 02:01:21.958+03	
291f035b-bf3f-8828-b307-319bed9ad551	2021-05-27 02:01:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:01:41.951+03	2021-05-27 02:01:41.959+03	
bf2bd4f6-90f6-a6a0-15f5-82a8399ce3e1	2021-05-27 02:02:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:02:01.951+03	2021-05-27 02:02:01.959+03	
16d22417-0eba-bfb9-a8ac-01ec1c15a7ac	2021-05-27 02:02:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:02:21.951+03	2021-05-27 02:02:21.964+03	
b8ad1b80-5277-64b2-7870-62ac16bb3338	2021-05-27 02:02:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:02:41.951+03	2021-05-27 02:02:41.959+03	
fd4e70a0-4094-06f8-d5a2-d86b55f7b760	2021-05-27 02:03:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:03:01.951+03	2021-05-27 02:03:01.958+03	
fb3ebb3e-a917-31bd-08be-586ff16e388a	2021-05-27 02:03:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:03:21.951+03	2021-05-27 02:03:21.959+03	
ae3f16c3-521d-3cf6-aaaf-0036feafeed2	2021-05-27 02:03:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:03:41.951+03	2021-05-27 02:03:41.96+03	
195fdc20-9fb6-1c05-1252-640e726b8457	2021-05-27 02:04:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:04:01.952+03	2021-05-27 02:04:01.958+03	
3d4e5bed-5506-8c37-cde7-16ed9e00d8f9	2021-05-27 02:04:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:04:22.951+03	2021-05-27 02:04:22.96+03	
e7570bc6-5ccf-e4c9-aef5-a6ebccda92db	2021-05-27 02:04:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:04:42.952+03	2021-05-27 02:04:42.959+03	
13ea4640-59c1-3235-2c22-ced590e9152a	2021-05-27 02:05:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:05:03.951+03	2021-05-27 02:05:03.957+03	
ba6bab95-d57c-66d9-1d77-fadc9451ad8c	2021-05-27 02:05:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:05:23.951+03	2021-05-27 02:05:23.958+03	
d6a81185-53e7-47cc-0d37-f0cadef660a1	2021-05-27 02:05:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:05:43.952+03	2021-05-27 02:05:43.959+03	
5d736141-3f47-80ba-b8b8-2a9d765fc947	2021-05-27 02:06:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:06:04.951+03	2021-05-27 02:06:04.959+03	
937ac8a1-e720-6cac-25cb-d85b1f88f09e	2021-05-27 02:06:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:06:24.951+03	2021-05-27 02:06:24.959+03	
84ffe322-72c6-31a3-e3c1-bd13c2e302ad	2021-05-27 02:06:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:06:44.951+03	2021-05-27 02:06:44.957+03	
08051432-2799-c3ca-baaf-98a5676054ea	2021-05-27 02:07:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:07:04.951+03	2021-05-27 02:07:04.959+03	
e0279874-f7e0-15b4-ac51-7582a442db57	2021-05-27 02:07:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:07:24.951+03	2021-05-27 02:07:24.962+03	
0cf94f66-dabc-ded1-b816-467dc08fd8b4	2021-05-27 02:07:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:07:44.951+03	2021-05-27 02:07:44.958+03	
d551b66f-057e-26ac-6dac-78e754c8d139	2021-05-27 02:08:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:08:04.951+03	2021-05-27 02:08:04.959+03	
c3b8ed97-1db8-f7b1-07af-972524fa3caf	2021-05-27 02:08:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:08:24.951+03	2021-05-27 02:08:24.957+03	
8ec4849d-ea0e-5d51-29e2-ff16a9e17665	2021-05-27 02:08:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:08:44.951+03	2021-05-27 02:08:44.959+03	
1563245e-b75b-c2a8-8c2c-816a209cd212	2021-05-27 02:09:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:09:04.951+03	2021-05-27 02:09:04.958+03	
ab0a7600-6dae-4119-1b82-c854f6a93965	2021-05-27 02:09:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:09:24.951+03	2021-05-27 02:09:24.959+03	
4032b2d9-6b6e-e377-44d7-35153a3af56a	2021-05-27 02:09:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:09:45.951+03	2021-05-27 02:09:45.957+03	
ea52d0b4-f236-ded4-ca5e-581e72644183	2021-05-27 02:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 02:10:00.951+03	2021-05-27 02:10:00.958+03	ERROR
87f39aad-7783-3e9f-cc46-10108690bfac	2021-05-27 02:10:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:10:15.951+03	2021-05-27 02:10:15.958+03	
dbbab6e3-1bd5-7e82-b7e2-78527f87a2c0	2021-05-27 02:10:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:10:35.951+03	2021-05-27 02:10:35.958+03	
3988771b-e3a4-7461-aa4e-cb24340bf070	2021-05-27 02:10:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:10:55.951+03	2021-05-27 02:10:55.959+03	
7e1ab7c0-6c8b-906c-ba06-7663ad987ffc	2021-05-27 02:11:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:11:15.951+03	2021-05-27 02:11:15.958+03	
39e96b89-859c-a79f-a424-5127ca360e94	2021-05-27 02:11:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:11:35.951+03	2021-05-27 02:11:35.959+03	
9fe27a81-98d3-68d2-da59-bac08d845a0f	2021-05-27 02:11:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:11:55.951+03	2021-05-27 02:11:55.957+03	
300ee2f9-33a7-5329-9d77-f689552bc93d	2021-05-27 02:12:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:12:15.951+03	2021-05-27 02:12:15.961+03	
0195d087-0e38-80a2-47d7-8a3d47d97b07	2021-05-27 02:12:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:12:35.951+03	2021-05-27 02:12:35.958+03	
ee3b9a3b-374a-517f-b7ba-62afe3f428dd	2021-05-27 02:12:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:12:55.951+03	2021-05-27 02:12:55.961+03	
0479acf3-4ce0-38ad-66d2-09a6f8cae6dd	2021-05-27 02:13:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:13:15.951+03	2021-05-27 02:13:15.961+03	
c61715b7-800e-2357-1e75-8babbcb34889	2021-05-27 02:13:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:13:35.951+03	2021-05-27 02:13:35.957+03	
e29e719f-91cf-3bd6-81bf-a4128da40419	2021-05-27 02:13:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:13:55.951+03	2021-05-27 02:13:55.96+03	
ad4bdc42-24f4-da73-827f-eb528dbb5ced	2021-05-27 02:14:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:14:15.952+03	2021-05-27 02:14:15.959+03	
6bb8b7eb-67da-6e8e-a2d9-e667263c5329	2021-05-27 02:14:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:14:36.951+03	2021-05-27 02:14:36.958+03	
ab76982f-6c92-42e6-c2ae-909d3a10324a	2021-05-27 02:14:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:14:56.951+03	2021-05-27 02:14:56.96+03	
af354764-2f0c-9a0d-4464-eafbf3db8b0f	2021-05-27 02:15:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:15:16.951+03	2021-05-27 02:15:16.958+03	
a99f24d1-fef5-b05c-e453-4549becd6d9e	2021-05-27 02:15:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:15:36.951+03	2021-05-27 02:15:36.959+03	
f07a2fee-5ab9-5f14-496a-6c35f707545d	2021-05-27 02:15:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:15:56.951+03	2021-05-27 02:15:56.958+03	
b3ce03ba-d673-86f2-35b0-c7dec222f769	2021-05-27 02:16:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:16:16.951+03	2021-05-27 02:16:16.957+03	
fe2a8e62-9a34-d923-e8fa-dc4b3e324e21	2021-05-27 02:16:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:16:36.951+03	2021-05-27 02:16:36.957+03	
727b1b9b-3235-7f22-4108-bf5662bb9565	2021-05-27 02:16:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:16:56.952+03	2021-05-27 02:16:56.958+03	
05d492b5-6f36-60b3-ff23-5de86d660676	2021-05-27 02:17:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:17:18.951+03	2021-05-27 02:17:19.274+03	
54bd6903-20a2-2f13-057d-39833dc9237a	2021-05-27 02:17:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:17:39.951+03	2021-05-27 02:17:39.958+03	
38078321-5d66-d5c2-3e40-bbe9f7983866	2021-05-27 02:17:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:17:59.951+03	2021-05-27 02:17:59.959+03	
456b8150-ec9d-d94f-0dc3-2f698c389e89	2021-05-27 02:18:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:18:19.951+03	2021-05-27 02:18:19.957+03	
8e27d297-6089-f16b-a87a-521ed90c97e5	2021-05-27 02:18:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:18:39.951+03	2021-05-27 02:18:39.959+03	
f565ce12-f6a9-5df8-9442-30e7f9f6e0b7	2021-05-27 02:18:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:18:59.951+03	2021-05-27 02:18:59.959+03	
92292898-677f-2a65-7a15-0cdc9432ab61	2021-05-27 02:19:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:19:19.951+03	2021-05-27 02:19:19.958+03	
2b1e45c4-48f8-9367-ccf2-8b76e3e9261e	2021-05-27 02:19:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:19:39.951+03	2021-05-27 02:19:39.959+03	
069b49d3-f55a-de0e-bbd8-12949e16d8d2	2021-05-27 02:19:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:19:59.951+03	2021-05-27 02:19:59.958+03	
c8c5e799-587b-bd01-f3db-4778bbc267c0	2021-05-27 02:20:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:20:09.951+03	2021-05-27 02:20:09.964+03	
1ea3e1e5-41d0-f40f-6931-9f9de0ab4207	2021-05-27 02:20:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:20:29.951+03	2021-05-27 02:20:29.96+03	
003e681b-0320-396f-a382-d1208e43c1a6	2021-05-27 02:20:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:20:49.951+03	2021-05-27 02:20:49.957+03	
db7e550d-9d5c-0de1-2dc4-16c958035e5f	2021-05-27 02:19:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:19:09.951+03	2021-05-27 02:19:09.959+03	
01fd5667-575e-149e-6fe9-87a1c676ac06	2021-05-27 18:05:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:05:55.951+03	2021-05-27 18:05:55.96+03	
11a5d971-9d97-9480-d502-fc8772c8ac0c	2021-05-27 02:19:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:19:29.951+03	2021-05-27 02:19:29.959+03	
15495d32-d270-5355-5368-0de241ef074e	2021-05-27 02:19:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:19:49.951+03	2021-05-27 02:19:49.957+03	
c9c4eb6c-7824-ad17-7664-c8cd7c6f1b77	2021-05-27 18:06:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:06:16.951+03	2021-05-27 18:06:16.962+03	
4669bab8-947e-f450-c729-e238d722505b	2021-05-27 02:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 02:20:00.951+03	2021-05-27 02:20:00.961+03	ERROR
66d3123c-94ff-87ea-e8dd-6be78e0b32b5	2021-05-27 02:20:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:20:19.951+03	2021-05-27 02:20:19.96+03	
60d005c0-4606-dd7b-605a-097579431242	2021-05-27 18:06:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:06:36.951+03	2021-05-27 18:06:36.958+03	
d0ca0b2b-433e-b02d-1919-3a10937b443a	2021-05-27 02:20:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:20:39.951+03	2021-05-27 02:20:39.959+03	
2ab5c83c-1c89-a951-d741-7fbcb4e94103	2021-05-27 02:20:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:20:59.951+03	2021-05-27 02:20:59.961+03	
4c22f7d1-44a6-e675-a929-e754d28ec04c	2021-05-27 18:06:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:06:56.951+03	2021-05-27 18:06:56.959+03	
4c8575c7-e531-e7fc-c12a-0f5beb77a707	2021-05-27 02:21:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:21:20.951+03	2021-05-27 02:21:20.965+03	
b304ccfa-3f30-7b2d-296a-5d225c3f6f42	2021-05-27 02:21:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:21:41.951+03	2021-05-27 02:21:41.96+03	
16ec57ab-8f3b-e466-456f-aeda7e6dba93	2021-05-27 18:07:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:07:16.951+03	2021-05-27 18:07:16.958+03	
4b4feca4-6351-cec3-a16d-774c2badaf68	2021-05-27 02:22:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:22:01.951+03	2021-05-27 02:22:01.959+03	
4fa07d88-6099-3382-e08e-5d09e2dc663c	2021-05-27 02:22:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:22:21.951+03	2021-05-27 02:22:21.958+03	
d3d15605-a3ea-60a8-da65-8f88537363dd	2021-05-27 18:07:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:07:36.951+03	2021-05-27 18:07:36.957+03	
bcfc9cc8-6b2b-086a-f463-d30b7133229a	2021-05-27 02:22:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:22:41.951+03	2021-05-27 02:22:41.957+03	
edf2b5c9-a9cf-86c9-0d08-48d703a3b0ce	2021-05-27 02:23:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:23:01.951+03	2021-05-27 02:23:01.96+03	
27667df9-b2cd-3ed3-54ec-dea5bd4b0fe6	2021-05-27 18:07:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:07:56.951+03	2021-05-27 18:07:56.957+03	
a800cbac-437a-dd2c-17a7-2f0e64ff6c3d	2021-05-27 02:23:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:23:21.952+03	2021-05-27 02:23:21.959+03	
e9fa18bc-f02c-7d7e-5c53-d83f5b619459	2021-05-27 02:23:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:23:42.951+03	2021-05-27 02:23:42.959+03	
c58111bf-0e91-f32c-e5b1-62da0fceaeea	2021-05-27 18:08:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:08:16.951+03	2021-05-27 18:08:16.957+03	
f3bb9d21-b628-b3a1-8406-c4e35029de8a	2021-05-27 02:24:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:24:03.951+03	2021-05-27 02:24:03.96+03	
29906df9-db01-b474-dcf6-6ec7d84e404a	2021-05-27 02:24:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:24:23.951+03	2021-05-27 02:24:23.96+03	
e20c2e0d-351b-37e4-fc47-bc3814080ea4	2021-05-27 18:08:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:08:36.951+03	2021-05-27 18:08:36.958+03	
69a03725-47b8-1b1b-e402-0f4e1c27bb9c	2021-05-27 02:24:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:24:43.951+03	2021-05-27 02:24:43.958+03	
1fa73743-5e01-2169-f19f-902b01cb44eb	2021-05-27 02:25:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:25:03.951+03	2021-05-27 02:25:03.958+03	
eeabffef-2398-4ecb-6c89-9fd8f582e832	2021-05-27 18:08:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:08:56.951+03	2021-05-27 18:08:56.959+03	
9c41daae-1d6e-9163-bd14-7b6c08a6f77a	2021-05-27 02:25:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:25:23.951+03	2021-05-27 02:25:23.958+03	
23719b30-ea11-f1c4-63dc-61951c0c302c	2021-05-27 02:25:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:25:43.951+03	2021-05-27 02:25:43.958+03	
17ec48e3-caac-e03a-c36b-31445f3939a0	2021-05-27 18:09:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:09:16.951+03	2021-05-27 18:09:16.959+03	
7ec8dd00-9ff1-9fb0-d832-c6eef21e3315	2021-05-27 02:26:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:26:03.951+03	2021-05-27 02:26:03.958+03	
42716a5f-dbc3-bef8-f527-04a7be48a6dc	2021-05-27 02:26:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:26:23.951+03	2021-05-27 02:26:23.96+03	
979b62af-4b1e-804e-79a3-7a2c86105521	2021-05-27 02:26:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:26:43.951+03	2021-05-27 02:26:43.961+03	
f9adbea4-b50b-9f0e-f021-8940e1f4282d	2021-05-27 02:27:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:27:03.951+03	2021-05-27 02:27:03.958+03	
f615385c-401f-6247-3114-0fdde0af99e0	2021-05-27 02:27:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:27:23.951+03	2021-05-27 02:27:23.96+03	
72ac0d38-ca1f-6f6e-ee75-ddf03fd77aba	2021-05-27 02:27:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:27:43.952+03	2021-05-27 02:27:43.958+03	
1381e085-ca95-7889-ac75-e8572ed42403	2021-05-27 02:28:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:28:04.951+03	2021-05-27 02:28:04.96+03	
4056c295-1d45-ed6d-30cd-bcf71326e8e6	2021-05-27 02:28:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:28:24.951+03	2021-05-27 02:28:24.959+03	
d78c55ad-668c-57f2-e25a-7641a938f4b2	2021-05-27 02:28:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:28:44.951+03	2021-05-27 02:28:44.957+03	
8e6d490c-5098-d7b5-0fb3-2b0b2e5f33c5	2021-05-27 02:29:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:29:04.951+03	2021-05-27 02:29:04.959+03	
796b2596-7b75-e3c4-d0f5-37b6ec49dcc2	2021-05-27 02:29:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:29:24.951+03	2021-05-27 02:29:24.958+03	
cb93e50a-8b20-215d-4fca-9a472ef4e844	2021-05-27 02:29:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:29:44.951+03	2021-05-27 02:29:44.958+03	
5cf285a5-85dc-cf8f-f79a-24237969acc2	2021-05-27 02:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 02:30:00.951+03	2021-05-27 02:30:00.956+03	ERROR
d90b22a3-b5da-cb67-34af-dbbdbf26a645	2021-05-27 02:30:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:30:14.951+03	2021-05-27 02:30:14.957+03	
2f7d57ce-5986-9eeb-1f08-100381f76036	2021-05-27 02:30:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:30:34.951+03	2021-05-27 02:30:34.962+03	
56679296-dc28-3ca9-72da-10a86c181107	2021-05-27 02:30:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:30:54.951+03	2021-05-27 02:30:54.96+03	
12c5a969-a7ef-1f24-f302-d6783d70613a	2021-05-27 02:31:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:31:14.951+03	2021-05-27 02:31:14.958+03	
8c401888-83c7-9f7f-8fc3-630130dd5b4f	2021-05-27 02:31:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:31:34.951+03	2021-05-27 02:31:34.959+03	
492804cc-9534-b1a6-870a-f3fcab4d6066	2021-05-27 02:31:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:31:54.951+03	2021-05-27 02:31:54.959+03	
0c42bb7d-fd1d-fbf4-8486-2395f76d7259	2021-05-27 02:32:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:32:14.951+03	2021-05-27 02:32:14.958+03	
b27ba6af-024c-c1ba-2853-7e58ee20641d	2021-05-27 02:32:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:32:34.951+03	2021-05-27 02:32:34.959+03	
1890977b-a610-3ba3-b7b3-c936e843888b	2021-05-27 02:32:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:32:54.951+03	2021-05-27 02:32:54.958+03	
51c14b81-128b-9bf8-abbf-15b42f4fb799	2021-05-27 02:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:33:14.951+03	2021-05-27 02:33:14.959+03	
aea42939-762c-c1ea-f5d6-bfb742b517be	2021-05-27 02:33:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:33:34.951+03	2021-05-27 02:33:34.962+03	
ed089b30-3488-5284-8ec9-7944eee807b1	2021-05-27 02:33:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:33:54.951+03	2021-05-27 02:33:54.958+03	
80aad240-06c0-c143-8a29-9f421ced9b49	2021-05-27 02:34:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:34:14.951+03	2021-05-27 02:34:14.957+03	
a518c7f0-b11c-98d5-1f73-34b8d020859c	2021-05-27 02:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:34:34.952+03	2021-05-27 02:34:34.959+03	
cae16476-81a3-968d-26d4-ff05b0cbcd74	2021-05-27 02:34:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:34:55.951+03	2021-05-27 02:34:55.958+03	
b9fc0bcd-f2d0-4bf3-63c9-a380d051ab41	2021-05-27 02:35:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:35:15.951+03	2021-05-27 02:35:15.958+03	
45e07a3c-15f4-ea45-ec89-3f9a2bf83f52	2021-05-27 02:35:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:35:35.951+03	2021-05-27 02:35:35.957+03	
aad8a509-d0a7-f526-051f-47b88c3b797f	2021-05-27 02:35:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:35:55.951+03	2021-05-27 02:35:55.959+03	
a1eb40fd-d622-75fd-c9ab-ab1bdef44071	2021-05-27 02:21:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:21:09.952+03	2021-05-27 02:21:09.959+03	
082cb65a-27af-2229-5b0e-6d83acfc6060	2021-05-27 02:21:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:21:30.952+03	2021-05-27 02:21:30.959+03	
c139a0f2-a0a0-70cf-39b6-aa17420671ec	2021-05-27 02:21:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:21:51.951+03	2021-05-27 02:21:51.957+03	
87aa658c-d47f-5a4d-a962-33f80abdca8e	2021-05-27 02:22:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:22:11.951+03	2021-05-27 02:22:11.958+03	
3bb8a82a-6de7-0762-699e-489834ff1fed	2021-05-27 02:22:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:22:31.951+03	2021-05-27 02:22:31.958+03	
660e0d1b-7167-1414-f4e2-0546eb70dd35	2021-05-27 02:22:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:22:51.951+03	2021-05-27 02:22:51.958+03	
854d2919-9cbc-67e4-ddfb-7cce06e87697	2021-05-27 02:23:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:23:11.951+03	2021-05-27 02:23:11.958+03	
95a6b299-3a75-d9a2-59ba-34551d7cdbc5	2021-05-27 02:23:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:23:32.951+03	2021-05-27 02:23:32.96+03	
1487bd35-613a-8f41-c9b4-54c5f0499d16	2021-05-27 02:23:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:23:52.952+03	2021-05-27 02:23:52.959+03	
b0378db6-03a0-9dd9-8962-1fa9282dd454	2021-05-27 02:24:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:24:13.951+03	2021-05-27 02:24:13.961+03	
4693c86b-11c3-8b14-a568-ef36e5377cad	2021-05-27 02:24:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:24:33.951+03	2021-05-27 02:24:33.958+03	
40f4f34a-3531-1306-e8dd-026d0da1c579	2021-05-27 02:24:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:24:53.951+03	2021-05-27 02:24:53.958+03	
76f1a318-5499-9e9b-79cc-73d2ac60cf08	2021-05-27 02:25:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:25:13.951+03	2021-05-27 02:25:13.957+03	
62c0296c-691d-19da-7267-67c0f04e7de5	2021-05-27 02:25:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:25:33.951+03	2021-05-27 02:25:33.958+03	
c23e83bc-3e61-553e-4d16-4e55c4427916	2021-05-27 02:25:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:25:53.951+03	2021-05-27 02:25:53.959+03	
ce081e5e-9098-9b9c-233b-7edc2f7f1ecf	2021-05-27 02:26:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:26:13.951+03	2021-05-27 02:26:13.959+03	
2fc54980-c072-fe8c-ce26-78316a16d71f	2021-05-27 02:26:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:26:33.951+03	2021-05-27 02:26:33.958+03	
1e1fa810-3a2d-3779-53ac-bf41ce1e9a23	2021-05-27 02:26:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:26:53.951+03	2021-05-27 02:26:53.959+03	
5c2a3c14-7161-5ab9-5fe6-c1fcdd17648c	2021-05-27 02:27:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:27:13.951+03	2021-05-27 02:27:13.961+03	
cee40124-dc3c-447f-a7a6-233b41ff9b2f	2021-05-27 02:27:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:27:33.951+03	2021-05-27 02:27:33.963+03	
1293fc44-8812-e949-798a-1fc29737f49d	2021-05-27 02:27:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:27:54.951+03	2021-05-27 02:27:54.958+03	
45c6b47b-fd24-aced-1e19-2a008e237e07	2021-05-27 02:28:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:28:14.951+03	2021-05-27 02:28:14.958+03	
c3c35611-55fa-4f14-e3cc-e6f30fa39e02	2021-05-27 02:28:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:28:34.951+03	2021-05-27 02:28:34.958+03	
d1c7cc15-3230-45fb-41ca-d2983d36e8a9	2021-05-27 02:28:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:28:54.951+03	2021-05-27 02:28:54.96+03	
8957f753-ba91-a3ea-e424-226cf6df9890	2021-05-27 02:29:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:29:14.951+03	2021-05-27 02:29:14.959+03	
86dc3182-c11b-f1ce-f7e5-d0d0f5ea9de9	2021-05-27 02:29:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:29:34.951+03	2021-05-27 02:29:34.959+03	
bd9f8fed-8a82-2a49-7b66-123ee1cad6ba	2021-05-27 02:29:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:29:54.951+03	2021-05-27 02:29:54.96+03	
4596c8c6-8f85-6d28-860d-2fbeaecc4e36	2021-05-27 02:30:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:30:04.951+03	2021-05-27 02:30:04.959+03	
1a42fbdc-4bca-46f4-a08e-f470923b91bd	2021-05-27 02:30:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:30:24.951+03	2021-05-27 02:30:24.96+03	
4fdad650-944f-9b6c-0488-343052296894	2021-05-27 02:30:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:30:44.951+03	2021-05-27 02:30:44.963+03	
72d3fa42-4181-baed-4f43-fbebcc221542	2021-05-27 02:31:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:31:04.951+03	2021-05-27 02:31:04.962+03	
1be36bdd-88b8-9c45-bcdd-f0be79032640	2021-05-27 02:31:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:31:24.951+03	2021-05-27 02:31:24.958+03	
001d29ce-6311-5e18-efa7-5528095a0c4f	2021-05-27 02:31:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:31:44.951+03	2021-05-27 02:31:44.962+03	
9265576d-7229-ce72-88f3-de04180d5283	2021-05-27 02:32:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:32:04.951+03	2021-05-27 02:32:04.957+03	
6224a0f4-2627-d1b4-c8f4-b9f24b9b3274	2021-05-27 02:32:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:32:24.951+03	2021-05-27 02:32:24.962+03	
d20b58fd-4e2d-02ba-490a-7985e7788703	2021-05-27 02:32:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:32:44.951+03	2021-05-27 02:32:44.958+03	
9bfcf6a4-6c7c-f20a-ea2b-a286c6da9b4b	2021-05-27 02:33:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:33:04.951+03	2021-05-27 02:33:04.958+03	
637f1642-8795-981f-2889-7474defb13fd	2021-05-27 02:33:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:33:24.951+03	2021-05-27 02:33:24.959+03	
2db0162e-e125-7fa5-9c9a-176a68701272	2021-05-27 02:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:33:44.951+03	2021-05-27 02:33:44.962+03	
a5c50f12-bd9c-5732-aa8d-8187c3ba6190	2021-05-27 02:34:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:34:04.951+03	2021-05-27 02:34:04.959+03	
7c3ba08e-0a0a-4a78-893e-56e2394c64f3	2021-05-27 02:34:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:34:24.951+03	2021-05-27 02:34:24.959+03	
c9f1bbfb-8adc-ef4b-1bde-0610c461b312	2021-05-27 02:34:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:34:45.951+03	2021-05-27 02:34:45.958+03	
e4c93f69-9bb1-2654-6f52-896ff3ab0df7	2021-05-27 02:35:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:35:05.951+03	2021-05-27 02:35:05.959+03	
0b4b98ba-f404-aac8-e80b-63c61a7061d8	2021-05-27 02:35:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:35:25.951+03	2021-05-27 02:35:25.959+03	
ace1099f-532f-36ec-4a65-59a9433b6ea6	2021-05-27 02:35:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:35:45.951+03	2021-05-27 02:35:45.959+03	
aee4941b-dd4d-c027-e705-5d7774cd9cfd	2021-05-27 02:36:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:36:05.951+03	2021-05-27 02:36:05.957+03	
45ce9862-1a3d-e31b-3d72-788b6ae9c4fa	2021-05-27 02:36:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:36:15.951+03	2021-05-27 02:36:15.958+03	
8f09fdc1-fc37-8a54-267e-dce5c44a0943	2021-05-27 02:36:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:36:25.951+03	2021-05-27 02:36:25.959+03	
cd186d66-32f0-c014-9c29-71cff237b02c	2021-05-27 02:36:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:36:35.951+03	2021-05-27 02:36:35.958+03	
acb198ff-e2a7-3bf4-47d7-5d2966d3b4a4	2021-05-27 02:36:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:36:45.951+03	2021-05-27 02:36:45.958+03	
8f1d65cc-676d-dc91-6f59-79950c42f494	2021-05-27 02:36:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:36:55.951+03	2021-05-27 02:36:55.961+03	
59910a77-c1d0-76cd-e85b-486477c0be31	2021-05-27 02:37:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:37:05.951+03	2021-05-27 02:37:05.957+03	
85237dab-f1eb-0f46-6d0b-bd4a8dc654d8	2021-05-27 02:37:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:37:15.951+03	2021-05-27 02:37:15.957+03	
2e7b19d6-2489-1d96-749f-0ae9d11bf65e	2021-05-27 02:37:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:37:25.951+03	2021-05-27 02:37:25.96+03	
6a5fd121-5dbf-bbd0-5460-dd8170f7b899	2021-05-27 02:37:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:37:35.951+03	2021-05-27 02:37:35.963+03	
56f914e6-dfc5-f584-2d2e-e312952b79bd	2021-05-27 02:37:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:37:45.951+03	2021-05-27 02:37:45.958+03	
afb4d488-98d4-85b0-6028-abefaa0d9528	2021-05-27 02:37:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:37:55.951+03	2021-05-27 02:37:55.961+03	
e85209eb-9b21-396a-ad62-4aae67ea7667	2021-05-27 02:38:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:38:05.951+03	2021-05-27 02:38:05.958+03	
e2808275-43f7-5608-e5dc-4a568c56d54d	2021-05-27 02:38:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:38:15.951+03	2021-05-27 02:38:15.959+03	
a7574abc-51aa-e711-a872-8a323428fad7	2021-05-27 02:38:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:38:25.951+03	2021-05-27 02:38:25.96+03	
f96226a6-15f3-9644-4576-8052026db609	2021-05-27 02:38:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:38:35.951+03	2021-05-27 02:38:35.96+03	
c26247d1-ef98-808f-1f00-fe8dd04ccebf	2021-05-27 02:38:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:38:45.951+03	2021-05-27 02:38:45.958+03	
a4b7cebe-5730-3e46-5ad7-72daeccb3795	2021-05-27 02:38:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:38:55.951+03	2021-05-27 02:38:55.96+03	
3add078a-51a0-131a-fa90-e1d879fb027a	2021-05-27 02:39:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:39:05.951+03	2021-05-27 02:39:05.959+03	
2d6b759e-c4ef-1ffa-7d73-34fef01773f1	2021-05-27 02:39:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:39:25.951+03	2021-05-27 02:39:25.958+03	
6d6d0364-1684-a28d-3e55-3fe8217449a5	2021-05-27 02:39:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:39:45.952+03	2021-05-27 02:39:45.959+03	
bf24f5bc-f93e-70bf-c779-fd5712514bf2	2021-05-27 02:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 02:40:00.951+03	2021-05-27 02:40:00.956+03	ERROR
a8fb8308-d059-a221-2907-f384af90a66d	2021-05-27 02:40:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:40:16.951+03	2021-05-27 02:40:16.958+03	
b8c58763-f0cb-9072-ea7e-19e6c380cbdb	2021-05-27 02:40:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:40:36.951+03	2021-05-27 02:40:36.959+03	
6817aa14-d3bf-bc8f-63eb-271e36627ea9	2021-05-27 02:40:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:40:56.951+03	2021-05-27 02:40:56.959+03	
22c69361-a5cb-bacc-e89b-f2fcff2cf777	2021-05-27 02:41:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:41:16.951+03	2021-05-27 02:41:16.958+03	
99309f0e-a32d-ff27-899b-817950e2ee9f	2021-05-27 02:41:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:41:36.951+03	2021-05-27 02:41:36.959+03	
992bf8ef-d04e-569a-8224-2bc5970e3f5a	2021-05-27 02:41:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:41:56.951+03	2021-05-27 02:41:56.959+03	
5b2f5d66-78bc-799f-ddc4-55b6c5d16782	2021-05-27 02:42:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:42:16.951+03	2021-05-27 02:42:16.959+03	
67566ed6-fcb2-3b94-85c9-d85f3d027a92	2021-05-27 02:42:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:42:36.951+03	2021-05-27 02:42:36.958+03	
d07344e6-8726-4ada-4fc7-0c27c5b32ca6	2021-05-27 02:42:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:42:56.951+03	2021-05-27 02:42:56.959+03	
99618059-0676-b7f6-6702-71a7f5d59b1a	2021-05-27 02:43:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:43:16.951+03	2021-05-27 02:43:16.959+03	
02fa7756-3500-6337-0fee-dd6fad1be3aa	2021-05-27 02:43:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:43:36.951+03	2021-05-27 02:43:36.96+03	
a23d016a-bea3-42e6-487e-a37135a85548	2021-05-27 02:43:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:43:56.951+03	2021-05-27 02:43:56.958+03	
d969e2b9-48cf-d4d1-e0af-6ac10619c412	2021-05-27 02:44:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:44:16.951+03	2021-05-27 02:44:16.958+03	
17dd310d-d160-053c-644c-8de919007469	2021-05-27 02:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:44:36.951+03	2021-05-27 02:44:36.957+03	
89c33e2d-21c6-e873-4c52-cdd47117651a	2021-05-27 02:44:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:44:56.951+03	2021-05-27 02:44:56.958+03	
55120fa2-5fc2-f079-38e6-1d2257636728	2021-05-27 02:45:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:45:16.951+03	2021-05-27 02:45:16.959+03	
181f4a4c-4aee-efb4-fa79-5efff47d120a	2021-05-27 02:45:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:45:36.951+03	2021-05-27 02:45:36.958+03	
5a2763a5-7bba-c64e-e682-cdda81113f41	2021-05-27 02:45:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:45:56.951+03	2021-05-27 02:45:56.957+03	
2360cb5b-7159-678d-5534-a879aa87c296	2021-05-27 02:46:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:46:16.951+03	2021-05-27 02:46:16.959+03	
72fad4c8-67a8-9794-506c-735c994b6615	2021-05-27 02:46:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:46:36.951+03	2021-05-27 02:46:36.959+03	
3457253e-0095-ec24-3213-433e8c70e365	2021-05-27 02:46:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:46:56.951+03	2021-05-27 02:46:56.958+03	
7f02a930-68fb-e003-66e2-2aeded635e03	2021-05-27 02:47:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:47:16.951+03	2021-05-27 02:47:16.959+03	
1d5b2e80-7329-c4d4-6cd6-7ab413dfc6b1	2021-05-27 02:47:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:47:36.951+03	2021-05-27 02:47:36.959+03	
b8ba2f34-2dc7-cfca-c3da-d79b26d74cf3	2021-05-27 02:47:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:47:56.951+03	2021-05-27 02:47:56.957+03	
8088077e-419c-da0e-9b04-9faeeb28a7f4	2021-05-27 02:48:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:48:16.951+03	2021-05-27 02:48:16.958+03	
3365de48-ba8d-4386-4308-0019c4a64930	2021-05-27 02:48:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:48:36.951+03	2021-05-27 02:48:36.961+03	
17931bbe-3377-814a-58cb-0660dc6f3ead	2021-05-27 02:48:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:48:56.951+03	2021-05-27 02:48:56.958+03	
eb6bfb14-491e-c295-82a7-c51c64864ccc	2021-05-27 02:49:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:49:16.951+03	2021-05-27 02:49:16.958+03	
ffa03b1c-cbfd-4d8b-794c-b941e265795a	2021-05-27 02:49:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:49:36.951+03	2021-05-27 02:49:36.958+03	
3b2f4b35-0364-a22e-290a-d46f7a286084	2021-05-27 02:49:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:49:56.951+03	2021-05-27 02:49:56.958+03	
1472c31e-8a2a-a75e-240c-62e121dc9007	2021-05-27 02:50:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:50:06.951+03	2021-05-27 02:50:06.958+03	
95ca4d41-6405-67e3-7145-635b1748b025	2021-05-27 02:50:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:50:26.951+03	2021-05-27 02:50:26.958+03	
8b9f49cf-3cf8-339c-37cc-0b49da0f7884	2021-05-27 02:50:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:50:46.951+03	2021-05-27 02:50:46.958+03	
ff5734ac-776b-c41f-0fde-ac8c0f8d0c37	2021-05-27 02:51:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:51:06.951+03	2021-05-27 02:51:06.958+03	
21f12ace-c1a6-bfe9-c801-082e51cc8368	2021-05-27 02:51:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:51:26.951+03	2021-05-27 02:51:26.959+03	
36fed7e6-5898-c084-3ee4-b68cb8d6bc3f	2021-05-27 02:51:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:51:46.951+03	2021-05-27 02:51:46.962+03	
41eddbf2-3f4c-2ee1-3223-c4662a71d77a	2021-05-27 02:52:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:52:06.951+03	2021-05-27 02:52:06.957+03	
d8d497bf-9a0d-8786-f03a-049cf299996a	2021-05-27 02:52:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:52:26.952+03	2021-05-27 02:52:26.959+03	
a8cd8da7-bb87-c735-1f8b-81a1a5a8233d	2021-05-27 02:52:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:52:47.951+03	2021-05-27 02:52:47.96+03	
b63da0ad-370d-1639-86ff-2253e7dcc3cd	2021-05-27 02:53:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:53:07.951+03	2021-05-27 02:53:07.96+03	
14a8500f-b6a2-c2e7-0306-7478be3a1ad9	2021-05-27 02:53:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:53:28.951+03	2021-05-27 02:53:28.958+03	
954d8043-711b-ad1f-7d2f-ae56cd5f5139	2021-05-27 02:53:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:53:48.951+03	2021-05-27 02:53:48.958+03	
a568d00b-a17b-be1a-7b8e-08d372a0d231	2021-05-27 02:54:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:54:08.951+03	2021-05-27 02:54:08.958+03	
c03319e6-449a-971b-a515-dec94273a935	2021-05-27 02:54:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:54:28.951+03	2021-05-27 02:54:28.959+03	
71500294-d9bc-f97e-f8f5-532bd41b31f3	2021-05-27 02:54:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:54:48.951+03	2021-05-27 02:54:48.958+03	
6a79c5dd-6b14-6366-cb21-3102c51f8acb	2021-05-27 02:55:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:55:08.951+03	2021-05-27 02:55:08.958+03	
5f1bab8b-4915-65ab-62db-f82172efa002	2021-05-27 02:55:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:55:28.951+03	2021-05-27 02:55:28.963+03	
6daa51d2-8f3d-58e0-b50d-cb1c9c2a49d1	2021-05-27 02:55:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:55:48.951+03	2021-05-27 02:55:48.957+03	
b76febe6-3416-e620-266a-6a09ce4000a9	2021-05-27 02:56:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:56:08.951+03	2021-05-27 02:56:08.958+03	
f5f07038-775b-50f2-476c-a4c229d4069b	2021-05-27 02:56:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:56:28.951+03	2021-05-27 02:56:28.959+03	
a5491b5c-d42a-1526-7a08-10560cbfacc0	2021-05-27 02:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:56:48.951+03	2021-05-27 02:56:48.958+03	
5da1edac-cb1e-ffd8-307e-3ea53836eed3	2021-05-27 02:57:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:57:08.951+03	2021-05-27 02:57:08.957+03	
26392e04-1f70-3d07-c2db-d1cc23736dce	2021-05-27 02:57:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:57:28.951+03	2021-05-27 02:57:28.958+03	
666981da-c11a-bb58-921d-49c50cdfa014	2021-05-27 02:57:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:57:48.951+03	2021-05-27 02:57:48.957+03	
85f06cb8-bd97-e1af-14f1-eebeb77da142	2021-05-27 02:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:58:08.951+03	2021-05-27 02:58:08.958+03	
6a0fdfa3-7377-aca2-68b2-4e253fc06abe	2021-05-27 02:58:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:58:28.951+03	2021-05-27 02:58:28.959+03	
aa0891d4-bf45-c470-ab0e-849894de5502	2021-05-27 02:58:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:58:48.951+03	2021-05-27 02:58:48.958+03	
167d3748-32a0-8a1d-3e62-8d0ac22c6952	2021-05-27 02:59:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:59:08.951+03	2021-05-27 02:59:08.959+03	
777b6460-686f-cc19-c814-83c05d967113	2021-05-27 02:59:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:59:28.951+03	2021-05-27 02:59:28.96+03	
0f3431a6-bc6c-58e2-f67d-c27f8af812a6	2021-05-27 02:39:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:39:15.951+03	2021-05-27 02:39:15.962+03	
7eafdc7a-5f15-1729-fe7b-bc2046a3c2cd	2021-05-27 02:39:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:39:35.951+03	2021-05-27 02:39:35.959+03	
298729af-d4c7-f254-0bcd-b49e92ebe86d	2021-05-27 02:39:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:39:56.951+03	2021-05-27 02:39:56.959+03	
d67012c1-b5f1-4f50-2964-1f0d01e44ca6	2021-05-27 02:40:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:40:06.951+03	2021-05-27 02:40:06.959+03	
86046907-cd2b-1550-8092-9d9d9781e8a2	2021-05-27 02:40:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:40:26.951+03	2021-05-27 02:40:26.958+03	
73bb8b72-bd72-1e5d-9ba3-4b3cca40836a	2021-05-27 02:40:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:40:46.951+03	2021-05-27 02:40:46.968+03	
b52f45f1-9dad-42e0-5b2d-f38a226280b9	2021-05-27 02:41:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:41:06.951+03	2021-05-27 02:41:06.958+03	
d180f97c-cd74-000d-6854-84deda7070b7	2021-05-27 02:41:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:41:26.951+03	2021-05-27 02:41:26.96+03	
63aabbc3-a335-c153-d62e-98571abe40e8	2021-05-27 02:41:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:41:46.951+03	2021-05-27 02:41:46.958+03	
a3e08300-b414-4a55-ce40-3dab8b854e13	2021-05-27 02:42:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:42:06.951+03	2021-05-27 02:42:06.959+03	
ce8ebed0-94a6-0bfa-a8b3-679ce5ae6827	2021-05-27 02:42:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:42:26.951+03	2021-05-27 02:42:26.961+03	
988e16b6-1f12-3564-24b0-80cb52f9567d	2021-05-27 02:42:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:42:46.951+03	2021-05-27 02:42:46.96+03	
1dbe2a8c-3e46-3917-b187-753b3159a85b	2021-05-27 02:43:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:43:06.951+03	2021-05-27 02:43:06.959+03	
c2fecb97-c1c1-407f-2887-e549a2a15cd6	2021-05-27 02:43:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:43:26.951+03	2021-05-27 02:43:26.958+03	
09a62127-4f94-bd8c-7f1d-2f21aee9f92d	2021-05-27 02:43:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:43:46.951+03	2021-05-27 02:43:46.958+03	
ecbcdb4f-c16e-cdf6-324d-d25b55e0c5b8	2021-05-27 02:44:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:44:06.951+03	2021-05-27 02:44:06.96+03	
53160e4a-91cf-7b3a-e22c-3c8e894d0f3d	2021-05-27 02:44:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:44:26.951+03	2021-05-27 02:44:26.958+03	
04873319-b523-b00b-33a2-a5624dfce6f5	2021-05-27 02:44:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:44:46.951+03	2021-05-27 02:44:46.959+03	
c1fbc3c2-bd9b-136c-8931-d8f3e3b3188d	2021-05-27 02:45:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:45:06.951+03	2021-05-27 02:45:06.959+03	
ffff04a5-a747-2b51-f792-797d00476ae4	2021-05-27 02:45:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:45:26.951+03	2021-05-27 02:45:26.958+03	
b326d91c-ab17-1d5f-d147-ff22e7b9f763	2021-05-27 02:45:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:45:46.951+03	2021-05-27 02:45:46.958+03	
97a449b6-1379-f306-b426-7f433a0353ae	2021-05-27 02:46:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:46:06.951+03	2021-05-27 02:46:06.958+03	
37d14071-9705-c6c8-c74b-f69b0cf063c6	2021-05-27 02:46:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:46:26.951+03	2021-05-27 02:46:26.958+03	
ac785086-5c57-e6e7-4b96-f51c1e65be70	2021-05-27 02:46:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:46:46.951+03	2021-05-27 02:46:46.959+03	
f295ce32-dcc0-3305-cf76-3e15576e1bb7	2021-05-27 02:47:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:47:06.951+03	2021-05-27 02:47:06.963+03	
a90955eb-ccd7-83c3-7ea6-070b80119244	2021-05-27 02:47:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:47:26.951+03	2021-05-27 02:47:26.971+03	
a072f050-4ce5-9e9f-155f-1d971cbc9bea	2021-05-27 02:47:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:47:46.951+03	2021-05-27 02:47:46.958+03	
e3cc4961-789b-e891-1d09-813f3f5615f7	2021-05-27 02:48:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:48:06.951+03	2021-05-27 02:48:06.963+03	
87f65826-7cec-56ca-d7ef-2c2548ba3aa8	2021-05-27 02:48:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:48:26.951+03	2021-05-27 02:48:26.959+03	
7ea28676-a3a6-8fdb-909b-e7d9e80b5204	2021-05-27 02:48:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:48:46.951+03	2021-05-27 02:48:46.958+03	
8112b3d6-011a-580e-7b74-f23ffa77ff15	2021-05-27 02:49:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:49:06.951+03	2021-05-27 02:49:06.958+03	
41459e77-319b-d627-6e62-6a28b3e4fb3f	2021-05-27 02:49:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:49:26.951+03	2021-05-27 02:49:26.958+03	
fafcdaac-8602-09b9-530d-589e5f7d7b3d	2021-05-27 02:49:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:49:46.951+03	2021-05-27 02:49:46.959+03	
5484e8a2-b2c9-1fab-d85a-297198d50e9f	2021-05-27 02:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 02:50:00.951+03	2021-05-27 02:50:00.965+03	ERROR
8f89673b-3f54-508d-3159-77e8da03118e	2021-05-27 02:50:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:50:16.951+03	2021-05-27 02:50:16.959+03	
04bfadb1-a874-8bac-bfba-fb7a2395993b	2021-05-27 02:50:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:50:36.951+03	2021-05-27 02:50:36.959+03	
ed4f6528-0fd9-ef1d-5b36-6f6404136f42	2021-05-27 02:50:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:50:56.951+03	2021-05-27 02:50:56.96+03	
238da713-c76f-8ec5-2783-28fc521e0772	2021-05-27 02:51:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:51:16.951+03	2021-05-27 02:51:16.958+03	
17efaa1f-64e9-2560-4b8e-0aa8ea5c8988	2021-05-27 02:51:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:51:36.951+03	2021-05-27 02:51:36.958+03	
d578d14a-b26b-a7c2-a181-3bfa83ca9001	2021-05-27 02:51:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:51:56.951+03	2021-05-27 02:51:56.958+03	
c74b6caa-c940-c72b-9a06-6733d24eb7be	2021-05-27 02:52:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:52:16.951+03	2021-05-27 02:52:16.961+03	
f9cd6807-533e-dd14-0a4b-f6bf3e19aa5d	2021-05-27 02:52:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:52:37.951+03	2021-05-27 02:52:37.961+03	
b0634f2e-8af2-3c69-8d0c-015516b48f6f	2021-05-27 02:52:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:52:57.951+03	2021-05-27 02:52:57.959+03	
bb8c9774-b2df-a275-c309-0d5bc8afbff2	2021-05-27 02:53:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:53:17.952+03	2021-05-27 02:53:17.961+03	
657b6999-1d05-83f9-8adf-aba8cba4eb3d	2021-05-27 02:53:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:53:38.951+03	2021-05-27 02:53:38.959+03	
c954939f-835a-b134-bf60-e7ee640d661e	2021-05-27 02:53:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:53:58.951+03	2021-05-27 02:53:58.959+03	
c9f757da-f488-5961-bfcf-40b3cbf5bf3d	2021-05-27 02:54:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:54:18.951+03	2021-05-27 02:54:18.958+03	
42910872-0938-7314-3549-e502a33cf8a5	2021-05-27 02:54:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:54:38.951+03	2021-05-27 02:54:38.958+03	
de0f27f9-fe17-0e14-7f03-a93a9ab391cb	2021-05-27 02:54:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:54:58.951+03	2021-05-27 02:54:58.959+03	
b3bee0e8-db63-f55b-04de-6ccad104d88b	2021-05-27 02:55:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:55:18.951+03	2021-05-27 02:55:18.959+03	
2e1429dd-3b6b-ff99-4b25-35501a7b817e	2021-05-27 02:55:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:55:38.951+03	2021-05-27 02:55:38.959+03	
06e670f2-a566-4297-c7e9-7897e7f85b80	2021-05-27 02:55:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:55:58.951+03	2021-05-27 02:55:58.962+03	
69b33386-bc9f-fbc0-f662-50dab56f0b0a	2021-05-27 02:56:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:56:18.951+03	2021-05-27 02:56:18.958+03	
00b052b0-5bac-674f-7e25-97be1b51071c	2021-05-27 02:56:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:56:38.951+03	2021-05-27 02:56:38.959+03	
ad1024e5-a3ac-c0ab-add3-3148e8dd618a	2021-05-27 02:56:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:56:58.951+03	2021-05-27 02:56:58.959+03	
d32bcac5-3fbf-4b61-23ea-20bd83b88999	2021-05-27 02:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:57:18.951+03	2021-05-27 02:57:18.958+03	
39ea8576-0ea6-f0dc-fdcb-9152d15a1660	2021-05-27 02:57:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:57:38.951+03	2021-05-27 02:57:38.957+03	
8249c492-2fcb-ef8f-6396-b07176f81e7b	2021-05-27 02:57:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:57:58.951+03	2021-05-27 02:57:58.958+03	
dc27510a-483a-e2cd-bc9d-0cc083e4df70	2021-05-27 02:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:58:18.951+03	2021-05-27 02:58:18.959+03	
08ccdd8b-65d0-4ea4-841d-5045ed2f041e	2021-05-27 02:58:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:58:38.951+03	2021-05-27 02:58:38.958+03	
b4caa653-6a55-68b3-58f0-30cffc7ccbc3	2021-05-27 02:58:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:58:58.951+03	2021-05-27 02:58:58.957+03	
5c37859f-316a-7f94-2cd8-96b5a78b7bf5	2021-05-27 02:59:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:59:18.951+03	2021-05-27 02:59:18.958+03	
60792844-a480-2c44-83fd-583b891f7ab2	2021-05-27 02:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:59:38.951+03	2021-05-27 02:59:39.192+03	
51c4e941-329f-8724-2ded-de94024e07b5	2021-05-27 02:59:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:59:48.951+03	2021-05-27 02:59:48.959+03	
e83cd079-fa3e-6562-5052-73441dde1803	2021-05-27 03:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 03:00:00.951+03	2021-05-27 03:00:00.957+03	ERROR
81645953-51a3-e5bd-54d1-74d6a1a3c386	2021-05-27 03:00:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:00:18.951+03	2021-05-27 03:00:18.958+03	
c62f4618-fdcb-ebb3-30d7-eb223634a5c0	2021-05-27 03:00:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:00:38.951+03	2021-05-27 03:00:39.257+03	
e85c1ab4-89bb-7f3f-3ab5-6c0143de4377	2021-05-27 03:00:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:00:58.951+03	2021-05-27 03:00:58.96+03	
e27bb7da-ff58-a18f-b194-24db4e92e2c1	2021-05-27 03:01:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:01:18.951+03	2021-05-27 03:01:18.96+03	
eb805367-1493-de6c-0818-d4ec1dec4cb7	2021-05-27 03:01:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:01:38.951+03	2021-05-27 03:01:38.959+03	
42457fd0-c2ca-48e1-73cd-81bf00ef71c7	2021-05-27 03:01:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:01:58.951+03	2021-05-27 03:01:58.958+03	
9d8d735d-fe0d-fc9c-b1e4-5bf51887b89a	2021-05-27 03:02:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:02:18.951+03	2021-05-27 03:02:18.958+03	
274df443-695a-574d-90b0-53ff69db0ea8	2021-05-27 03:02:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:02:38.951+03	2021-05-27 03:02:38.957+03	
6c97ea2d-6a18-1cdc-122e-8cd932d6332b	2021-05-27 03:02:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:02:58.951+03	2021-05-27 03:02:58.959+03	
214cb403-4b44-d142-aafc-769fd3fd4e2f	2021-05-27 03:03:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:03:18.951+03	2021-05-27 03:03:18.958+03	
0d0e4c5c-9693-f399-0b4e-dfb6ef8b0985	2021-05-27 03:03:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:03:38.951+03	2021-05-27 03:03:38.959+03	
edb8512d-52c3-19d2-2673-401478417546	2021-05-27 03:03:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:03:58.951+03	2021-05-27 03:03:58.958+03	
9940d14b-7304-b9cd-2dec-415aa2bb0a93	2021-05-27 03:04:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:04:18.951+03	2021-05-27 03:04:18.959+03	
ab0dc1b1-913e-f021-5c87-f65a1d6d260a	2021-05-27 03:04:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:04:39.951+03	2021-05-27 03:04:39.957+03	
ff9e8cb0-f8b5-52cc-5b9c-f85b0c17c514	2021-05-27 03:04:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:04:59.951+03	2021-05-27 03:04:59.957+03	
e739b793-489c-b6b8-b01c-f654b46b792a	2021-05-27 03:05:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:05:19.951+03	2021-05-27 03:05:19.958+03	
231ad898-1e46-6b2b-ee1a-dcdde2775efd	2021-05-27 03:05:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:05:39.951+03	2021-05-27 03:05:39.961+03	
7f166d79-2871-d60e-c724-84a8d2add58b	2021-05-27 03:05:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:05:59.951+03	2021-05-27 03:05:59.959+03	
7e6f123a-6f0f-7d20-6d14-c255c4f8d0a5	2021-05-27 03:06:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:06:19.951+03	2021-05-27 03:06:19.957+03	
b75467aa-a42f-ebb3-cfb8-575a86f8f7a3	2021-05-27 03:06:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:06:39.951+03	2021-05-27 03:06:39.958+03	
f0eb19b7-87e9-fc89-0685-e2cbf0ac8831	2021-05-27 03:06:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:06:59.951+03	2021-05-27 03:06:59.958+03	
38c4580b-11ed-9c3c-d84f-67c2185d3d6a	2021-05-27 03:07:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:07:19.951+03	2021-05-27 03:07:19.961+03	
72b33698-d268-0f91-6c15-f33c7bb5da8a	2021-05-27 03:07:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:07:39.951+03	2021-05-27 03:07:39.958+03	
c9709976-f1c4-2394-ee1c-acc34cce1603	2021-05-27 03:07:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:07:59.951+03	2021-05-27 03:07:59.958+03	
8890e3e6-9732-5337-0e50-71496d46379f	2021-05-27 03:08:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:08:20.951+03	2021-05-27 03:08:20.96+03	
e72ee721-b021-4a22-16e8-41936cbef237	2021-05-27 03:08:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:08:40.951+03	2021-05-27 03:08:40.958+03	
a3f0f933-940d-43a8-5503-3da753312938	2021-05-27 03:09:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:09:00.951+03	2021-05-27 03:09:00.962+03	
307bff77-02c9-cd1d-fcdc-1a7f1ff0873b	2021-05-27 03:09:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:09:20.951+03	2021-05-27 03:09:20.96+03	
77014ad5-b70b-8822-1b9a-27d04dcb0e73	2021-05-27 03:09:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:09:40.951+03	2021-05-27 03:09:40.959+03	
057cf5c2-8c30-5865-dd68-936ea3868a9b	2021-05-27 03:10:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:10:00.951+03	2021-05-27 03:10:00.959+03	
d13dc250-4dd6-52b8-a31b-33912ce06845	2021-05-27 03:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:10:20.951+03	2021-05-27 03:10:20.958+03	
42130c91-5c2e-6156-0990-acc08835d004	2021-05-27 03:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:10:40.951+03	2021-05-27 03:10:40.958+03	
6fdbcf2b-9ba8-a516-e886-2c5866f29947	2021-05-27 03:11:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:11:00.951+03	2021-05-27 03:11:00.958+03	
643ef4ef-3ca0-9e8e-b16e-549070e9575f	2021-05-27 03:11:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:11:20.951+03	2021-05-27 03:11:20.957+03	
7ae99fb6-2bf1-9101-a31b-ebcb43563142	2021-05-27 03:11:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:11:40.951+03	2021-05-27 03:11:40.959+03	
215251bc-c2f9-3aaf-8f0c-c69bc4c93a76	2021-05-27 03:12:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:12:00.951+03	2021-05-27 03:12:00.957+03	
69ec0b9f-04e7-460d-4eab-eb4360e7771d	2021-05-27 03:12:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:12:20.951+03	2021-05-27 03:12:20.957+03	
df65c25f-9db7-fba2-f45b-fda93ca7c9df	2021-05-27 03:12:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:12:40.951+03	2021-05-27 03:12:40.961+03	
e13ac19b-62ad-7b44-2d23-e074173af9ba	2021-05-27 03:13:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:13:00.951+03	2021-05-27 03:13:00.957+03	
d2c41349-121f-af9a-2add-a399efb83e2a	2021-05-27 03:13:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:13:20.951+03	2021-05-27 03:13:20.96+03	
c5faadcf-eb63-95a6-7dc4-75ceb1d72ccf	2021-05-27 03:13:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:13:40.951+03	2021-05-27 03:13:40.958+03	
f0503850-e69f-8904-f2e9-6435fe6d3bb6	2021-05-27 03:14:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:14:00.951+03	2021-05-27 03:14:00.957+03	
681b948e-dac2-44c1-e6d7-fd3c37627b78	2021-05-27 03:14:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:14:20.951+03	2021-05-27 03:14:20.958+03	
171fd4f1-5de5-11d9-517b-8547b105a173	2021-05-27 03:14:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:14:40.951+03	2021-05-27 03:14:40.96+03	
0c72e141-f34a-3742-acab-bad52bbfd56b	2021-05-27 03:15:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:15:00.951+03	2021-05-27 03:15:00.958+03	
8c2c9cfb-586d-ac46-92af-7f792f2f9118	2021-05-27 03:15:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:15:20.951+03	2021-05-27 03:15:20.961+03	
a024f9ca-e75c-862f-5c72-45205ef51af3	2021-05-27 03:15:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:15:40.952+03	2021-05-27 03:15:40.961+03	
a8e7ac84-99ff-22e5-bd8d-617576b49a83	2021-05-27 03:16:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:16:01.951+03	2021-05-27 03:16:01.958+03	
c665cf5c-a639-6412-df97-2da4586a6d1b	2021-05-27 03:16:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:16:21.951+03	2021-05-27 03:16:21.958+03	
c0f97e62-89d9-984b-4ed9-fa2e270df1f8	2021-05-27 03:16:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:16:41.951+03	2021-05-27 03:16:41.96+03	
eb67b7f2-6813-71c2-83fb-c9c69dc2769c	2021-05-27 03:17:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:17:01.951+03	2021-05-27 03:17:01.958+03	
220a1d63-d287-4a89-c4a8-2e255e149b32	2021-05-27 03:17:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:17:21.951+03	2021-05-27 03:17:21.958+03	
eec8797b-a155-1680-6361-5a51767dbe14	2021-05-27 03:17:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:17:41.951+03	2021-05-27 03:17:41.958+03	
5f8e350e-c0af-f7f9-836c-0d2df74e6374	2021-05-27 03:18:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:18:01.951+03	2021-05-27 03:18:01.959+03	
cb197666-41e6-f180-f688-377de084ff29	2021-05-27 03:18:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:18:21.951+03	2021-05-27 03:18:21.961+03	
90c2627b-7841-a55e-49da-120c704494ef	2021-05-27 03:18:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:18:41.951+03	2021-05-27 03:18:41.961+03	
0c51c5e9-0b7d-418c-7099-7f7d17cae375	2021-05-27 03:19:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:19:01.951+03	2021-05-27 03:19:01.958+03	
1f6a033a-2f51-2bba-3515-947b4dace653	2021-05-27 03:19:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:19:21.951+03	2021-05-27 03:19:21.958+03	
ef201f26-2434-1210-08a5-b8ec6fab5dca	2021-05-27 03:19:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:19:41.951+03	2021-05-27 03:19:41.96+03	
7f5bc616-77e8-cc01-3235-f52c58d9cfbf	2021-05-27 03:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 03:20:00.951+03	2021-05-27 03:20:00.956+03	ERROR
96e21979-5aad-21af-c9c1-cfb86fb4153e	2021-05-27 03:20:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:20:11.951+03	2021-05-27 03:20:11.959+03	
36534ada-e1a9-e19d-d955-80ee1dc19b72	2021-05-27 02:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 02:59:58.951+03	2021-05-27 02:59:58.959+03	
227a8d90-3a44-101f-d8fa-684af3d18d5b	2021-05-27 03:00:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:00:08.951+03	2021-05-27 03:00:08.958+03	
117c802c-2a96-3571-f5ef-29804c1bdb9b	2021-05-27 03:00:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:00:28.951+03	2021-05-27 03:00:29.016+03	
ea09f463-25c2-012e-a32f-53aa2d1032f9	2021-05-27 03:00:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:00:48.951+03	2021-05-27 03:00:48.958+03	
b3ddffc1-dd31-4a0a-3ad2-91d5c0dd08a2	2021-05-27 03:01:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:01:08.951+03	2021-05-27 03:01:08.958+03	
78a4dfbe-3618-b00a-40ab-cfa23f8b5037	2021-05-27 03:01:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:01:28.951+03	2021-05-27 03:01:28.959+03	
8a1834c3-8c55-15cc-414a-27770107cf83	2021-05-27 03:01:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:01:48.951+03	2021-05-27 03:01:48.958+03	
26a1bbe5-f649-da7d-14c5-73228584e22b	2021-05-27 03:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:02:08.951+03	2021-05-27 03:02:08.958+03	
f0e23114-7622-a788-cc5f-ad68b9b0e81d	2021-05-27 03:02:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:02:28.951+03	2021-05-27 03:02:28.963+03	
19193414-5858-02c5-99c6-8dc1a92186c6	2021-05-27 03:02:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:02:48.951+03	2021-05-27 03:02:48.961+03	
7e6d1352-2170-0b3b-6d4f-d84d1073ac64	2021-05-27 03:03:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:03:08.951+03	2021-05-27 03:03:08.958+03	
93579571-252b-0920-70a6-beadac0fbb88	2021-05-27 03:03:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:03:28.951+03	2021-05-27 03:03:28.962+03	
fc80e889-cb19-f166-41c7-cf6ece705767	2021-05-27 03:03:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:03:48.951+03	2021-05-27 03:03:48.959+03	
9114d00b-3dac-7143-23fd-b2d47cd69346	2021-05-27 03:04:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:04:08.951+03	2021-05-27 03:04:08.957+03	
63ec9c47-8b7a-edd2-b2cf-15c975d40032	2021-05-27 03:04:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:04:28.952+03	2021-05-27 03:04:28.959+03	
7be06b0a-d26d-5e63-1f59-60552b2a3de7	2021-05-27 03:04:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:04:49.951+03	2021-05-27 03:04:50.272+03	
a90ed04c-a544-ca97-02d8-ac07f1fa8ab0	2021-05-27 03:05:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:05:09.951+03	2021-05-27 03:05:09.958+03	
834cff67-dfc1-1ed9-1aa4-a518e5ed8e4f	2021-05-27 03:05:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:05:29.951+03	2021-05-27 03:05:29.958+03	
1514b895-b067-89e6-2281-e96cd5f1bb99	2021-05-27 03:05:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:05:49.951+03	2021-05-27 03:05:49.959+03	
f6534568-0a87-a25e-066e-d9f1da56c784	2021-05-27 03:06:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:06:09.951+03	2021-05-27 03:06:09.958+03	
93967e91-5642-6229-fe14-1693c3363e1e	2021-05-27 03:06:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:06:29.951+03	2021-05-27 03:06:29.959+03	
5af6c6c7-8885-de5c-dcea-dc89b6f661ba	2021-05-27 03:06:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:06:49.951+03	2021-05-27 03:06:49.958+03	
7fb9b5ce-2ee4-4038-a75c-ad6848134d5a	2021-05-27 03:07:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:07:09.951+03	2021-05-27 03:07:09.957+03	
236c391b-3d1c-1646-31c9-69c4966b5eed	2021-05-27 03:07:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:07:29.951+03	2021-05-27 03:07:29.958+03	
5dbeae45-d237-5f00-6c31-e942a183a76c	2021-05-27 03:07:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:07:49.951+03	2021-05-27 03:07:49.961+03	
728f2ce3-8af0-af09-7ff0-dae7a0df7f46	2021-05-27 03:08:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:08:09.952+03	2021-05-27 03:08:09.96+03	
ab1ac028-e45e-edc4-0be3-d83622ba3da5	2021-05-27 03:08:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:08:30.951+03	2021-05-27 03:08:30.958+03	
79b0f371-7d81-459c-9e38-2fe00363965b	2021-05-27 03:08:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:08:50.951+03	2021-05-27 03:08:50.959+03	
ecee35dc-d010-7178-31e1-1b731ce93c2e	2021-05-27 03:09:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:09:10.951+03	2021-05-27 03:09:10.958+03	
8329097e-8d86-8bf5-a4d5-b840e37eccb4	2021-05-27 03:09:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:09:30.951+03	2021-05-27 03:09:30.959+03	
e464c827-b5b7-92cb-e4e1-af0e4e5ac90c	2021-05-27 03:09:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:09:50.951+03	2021-05-27 03:09:50.959+03	
7bb77f9c-d2ba-4def-5339-788567db0065	2021-05-27 03:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 03:10:00.951+03	2021-05-27 03:10:00.973+03	ERROR
9c55ca74-66f8-93a5-a008-ed637dbaefdf	2021-05-27 03:10:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:10:10.951+03	2021-05-27 03:10:10.959+03	
721957b5-beb7-984f-da8e-b75e61e34913	2021-05-27 03:10:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:10:30.951+03	2021-05-27 03:10:30.959+03	
33dc5473-5eea-9a33-cfb8-b4899299c946	2021-05-27 03:10:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:10:50.951+03	2021-05-27 03:10:50.959+03	
1396f95e-2b7d-9d9d-edf0-29e10228858a	2021-05-27 03:11:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:11:10.951+03	2021-05-27 03:11:10.959+03	
a0ac28ec-27d0-4abb-5ced-0612a345abe5	2021-05-27 03:11:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:11:30.951+03	2021-05-27 03:11:30.958+03	
72917458-099e-5312-35a6-145b101490d0	2021-05-27 03:11:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:11:50.951+03	2021-05-27 03:11:50.959+03	
759efbe2-36a1-8b27-1769-3854d464fa85	2021-05-27 03:12:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:12:10.951+03	2021-05-27 03:12:10.958+03	
ff0b1318-3801-407a-0dfa-1de537c3f1b4	2021-05-27 03:12:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:12:30.951+03	2021-05-27 03:12:30.962+03	
5d5a4be7-bc62-87a1-c43b-1d8cfaa9a850	2021-05-27 03:12:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:12:50.951+03	2021-05-27 03:12:50.959+03	
2784fcc0-4114-baaa-5a3e-3cff32668991	2021-05-27 03:13:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:13:10.951+03	2021-05-27 03:13:10.958+03	
7661aa87-893f-9877-fb52-312f22fa4c1b	2021-05-27 03:13:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:13:30.951+03	2021-05-27 03:13:30.958+03	
59d1ef1a-3593-43ea-6fc9-d730cae4fbaf	2021-05-27 03:13:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:13:50.951+03	2021-05-27 03:13:50.959+03	
ec376f2c-0494-4ce4-4710-97134be72340	2021-05-27 03:14:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:14:10.951+03	2021-05-27 03:14:10.96+03	
abf65a8e-8b21-aee6-38df-4b4a229d7170	2021-05-27 03:14:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:14:30.951+03	2021-05-27 03:14:30.966+03	
4fe95f38-0174-8fe7-3406-70d7a4a91f4d	2021-05-27 03:14:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:14:50.951+03	2021-05-27 03:14:50.961+03	
c31f6a9a-2ceb-bcaf-fdfb-8be453ab30ee	2021-05-27 03:15:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:15:10.951+03	2021-05-27 03:15:10.958+03	
c104eb06-db09-022b-a65c-94c94896bb3d	2021-05-27 03:15:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:15:30.951+03	2021-05-27 03:15:30.958+03	
29da3e1c-2ba6-c99a-3c1c-0b919997b7fb	2021-05-27 03:15:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:15:51.951+03	2021-05-27 03:15:51.958+03	
6e3e7d21-a851-e3b6-e6cc-e9a57cf1753b	2021-05-27 03:16:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:16:11.951+03	2021-05-27 03:16:11.959+03	
5ea0df60-2c55-3a5a-8a13-b7124275263c	2021-05-27 03:16:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:16:31.951+03	2021-05-27 03:16:31.959+03	
3080acab-f950-165a-cf67-cc637d71879f	2021-05-27 03:16:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:16:51.951+03	2021-05-27 03:16:51.959+03	
a2a6e240-7adc-7d9b-50d6-bd7b4d70fecf	2021-05-27 03:17:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:17:11.951+03	2021-05-27 03:17:11.957+03	
7c6b0bd7-bee2-4cd7-c397-08c3114573de	2021-05-27 03:17:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:17:31.951+03	2021-05-27 03:17:31.958+03	
5f080b72-160a-8dd5-29a6-0a72c5011517	2021-05-27 03:17:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:17:51.951+03	2021-05-27 03:17:51.958+03	
9042e2af-a30a-83ff-5a7c-64b98d88df6f	2021-05-27 03:18:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:18:11.951+03	2021-05-27 03:18:11.959+03	
eaa01432-7dd8-8a50-992c-05b0372fcf8f	2021-05-27 03:18:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:18:31.951+03	2021-05-27 03:18:31.962+03	
be2b7a11-5d1c-3034-a15f-4b5a9de03508	2021-05-27 03:18:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:18:51.951+03	2021-05-27 03:18:51.958+03	
39605a12-e399-a974-30c6-172854ecf159	2021-05-27 03:19:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:19:11.951+03	2021-05-27 03:19:11.958+03	
a7070d89-8273-6463-9518-8a8e6131eb40	2021-05-27 03:19:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:19:31.951+03	2021-05-27 03:19:31.959+03	
0d5321ec-9109-f0ef-92bb-b3f8bbfe359a	2021-05-27 03:19:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:19:51.951+03	2021-05-27 03:19:51.958+03	
bc1e62cb-42be-6e97-b341-e310523b077a	2021-05-27 03:20:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:20:01.951+03	2021-05-27 03:20:01.959+03	
13bb992a-51fd-35cf-3aa2-06a5a3a854d1	2021-05-27 03:20:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:20:21.951+03	2021-05-27 03:20:21.957+03	
836fa7b3-43ed-9883-57d7-40c3742929da	2021-05-27 03:20:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:20:41.952+03	2021-05-27 03:20:41.96+03	
f82ad677-893b-0439-0e21-06f2d9e5e911	2021-05-27 03:21:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:21:02.951+03	2021-05-27 03:21:02.961+03	
cd166478-3fc4-c6e3-1dee-fa1aba552553	2021-05-27 03:21:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:21:22.951+03	2021-05-27 03:21:22.958+03	
772adecc-736a-fffa-33b9-6b19333421a0	2021-05-27 03:21:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:21:43.951+03	2021-05-27 03:21:43.96+03	
aa2f2c1e-51e9-9995-a3cd-95fddf99540d	2021-05-27 03:22:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:22:03.951+03	2021-05-27 03:22:03.958+03	
4d4b1d2f-40c7-67fc-7509-e2cb264cd460	2021-05-27 03:22:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:22:23.951+03	2021-05-27 03:22:23.959+03	
9b3bde53-794f-8b90-7b07-dff2e9558d6e	2021-05-27 03:22:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:22:43.951+03	2021-05-27 03:22:43.958+03	
eac598fc-9b85-16c1-fd53-10fe2baf2940	2021-05-27 03:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:23:03.951+03	2021-05-27 03:23:03.958+03	
e744f236-041e-3da1-9c4d-6d27489280ff	2021-05-27 03:23:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:23:24.951+03	2021-05-27 03:23:24.958+03	
b14ca3fa-1dd6-60b3-2c8c-116b6db4f41f	2021-05-27 03:23:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:23:44.951+03	2021-05-27 03:23:44.958+03	
08a5bf74-a5ff-e7ab-200c-fcf88bb5227b	2021-05-27 03:24:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:24:04.951+03	2021-05-27 03:24:04.958+03	
649642e0-0f63-7966-a37f-cb4752ba884a	2021-05-27 03:24:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:24:24.951+03	2021-05-27 03:24:24.958+03	
bfcf6310-a8ee-d137-247d-d755a9cc816e	2021-05-27 03:24:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:24:44.951+03	2021-05-27 03:24:44.958+03	
59cd01ed-787c-b1a0-dde0-e8244929ab67	2021-05-27 03:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:25:04.951+03	2021-05-27 03:25:04.962+03	
f19b3e09-f365-d4a3-019d-3a6b27d1446e	2021-05-27 03:25:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:25:24.951+03	2021-05-27 03:25:24.959+03	
66c447e1-a9e9-1d8e-2048-7084641ac140	2021-05-27 03:25:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:25:44.952+03	2021-05-27 03:25:44.96+03	
113f5a37-22f4-0964-77dc-2421f145bad0	2021-05-27 03:26:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:26:05.951+03	2021-05-27 03:26:05.958+03	
fa703c30-ccb0-6560-66a0-a7b93d74f271	2021-05-27 03:26:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:26:25.951+03	2021-05-27 03:26:25.963+03	
32a8aa5b-6be6-3655-d586-3e7da5c0427d	2021-05-27 03:26:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:26:45.951+03	2021-05-27 03:26:45.958+03	
98a6b6b6-1acf-f2ed-83a4-0372ac96d238	2021-05-27 03:27:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:27:06.951+03	2021-05-27 03:27:06.957+03	
bb9564af-7459-8b3f-784b-1dd0916d3ec4	2021-05-27 03:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:27:26.951+03	2021-05-27 03:27:26.958+03	
feb6c021-7fa5-5dec-4110-e3b2dbf811b0	2021-05-27 03:27:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:27:46.951+03	2021-05-27 03:27:46.957+03	
fe44aee9-aa66-2f0d-d9f0-7d5876117116	2021-05-27 03:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:28:06.951+03	2021-05-27 03:28:06.959+03	
8a120c00-770d-9c73-3db7-ebd747648c4f	2021-05-27 03:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:28:26.951+03	2021-05-27 03:28:26.962+03	
543bc10e-280a-c8d9-bc02-47012356e7a4	2021-05-27 03:28:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:28:46.951+03	2021-05-27 03:28:46.958+03	
2bb3e637-c1a7-f854-1820-b90d004fd9ce	2021-05-27 03:29:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:29:06.951+03	2021-05-27 03:29:06.958+03	
794445c4-5ee1-170b-7fcc-6e4fa0406659	2021-05-27 03:29:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:29:26.951+03	2021-05-27 03:29:26.96+03	
87200e8b-5cce-6aaa-93c1-a181127d029c	2021-05-27 03:29:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:29:46.951+03	2021-05-27 03:29:46.958+03	
6332ef80-06b0-b7d0-77c7-0b18c82d995a	2021-05-27 03:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 03:30:00.951+03	2021-05-27 03:30:00.956+03	ERROR
10617ea3-0fd8-f825-fdce-d965f0e44c5e	2021-05-27 03:30:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:30:16.951+03	2021-05-27 03:30:16.958+03	
6cc20248-bd58-d67f-d7b5-90f620367f7e	2021-05-27 03:30:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:30:36.951+03	2021-05-27 03:30:36.957+03	
bbc45c31-d80d-3181-0d0a-e94a413c9a74	2021-05-27 03:30:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:30:56.951+03	2021-05-27 03:30:56.96+03	
0f0d0d9a-6a03-4d0a-dd5e-f69a8a418b7d	2021-05-27 03:31:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:31:16.951+03	2021-05-27 03:31:16.958+03	
73625b4f-c611-2d46-e47e-26674f8617e9	2021-05-27 03:31:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:31:36.951+03	2021-05-27 03:31:36.958+03	
1edd0302-32b2-b64e-3b34-4e2b74da7f11	2021-05-27 03:31:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:31:56.951+03	2021-05-27 03:31:56.96+03	
422d236d-1eba-96f5-1e63-06df2bb9b7ef	2021-05-27 03:32:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:32:16.951+03	2021-05-27 03:32:16.957+03	
1a7bd2e3-7cb9-f829-eba5-95c1406bc43e	2021-05-27 03:32:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:32:36.951+03	2021-05-27 03:32:36.959+03	
226d2e80-e4a1-03b2-15fc-16818b341d31	2021-05-27 03:32:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:32:56.951+03	2021-05-27 03:32:56.96+03	
06c68f61-645c-c56a-9dbd-89e830b3dbe2	2021-05-27 03:33:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:33:16.951+03	2021-05-27 03:33:16.957+03	
fdf984e5-e354-1015-c3af-fdb05ea71aba	2021-05-27 03:33:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:33:36.951+03	2021-05-27 03:33:36.959+03	
3c960f20-cbcc-2cd8-ff87-9fdb87145caa	2021-05-27 03:33:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:33:56.951+03	2021-05-27 03:33:56.957+03	
e966df0d-ffd0-9773-a8ff-3be722263ed0	2021-05-27 03:34:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:34:16.951+03	2021-05-27 03:34:16.958+03	
657f88f3-c5a7-4cb9-9c70-c96a07554ae7	2021-05-27 03:34:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:34:36.951+03	2021-05-27 03:34:36.959+03	
a4b5b861-0b16-2f68-04fd-89f46b869fa5	2021-05-27 03:34:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:34:56.951+03	2021-05-27 03:34:56.96+03	
4e7cacf8-1a41-279f-4c40-69b08c44e079	2021-05-27 03:35:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:35:16.951+03	2021-05-27 03:35:16.958+03	
e8a6bce2-a010-1977-5543-097e5aebdc25	2021-05-27 03:35:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:35:36.951+03	2021-05-27 03:35:36.958+03	
42951aaa-7bf2-41c3-8583-8724e9542558	2021-05-27 03:35:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:35:57.952+03	2021-05-27 03:35:57.959+03	
d500d851-0937-29a9-b42d-331d9dd90d04	2021-05-27 03:36:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:36:18.951+03	2021-05-27 03:36:18.96+03	
8bf1f60e-e1b8-b943-fb25-b493099b91d2	2021-05-27 03:36:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:36:38.951+03	2021-05-27 03:36:38.959+03	
4789f932-bd97-3a7b-ce96-bff45c9e1824	2021-05-27 03:36:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:36:58.951+03	2021-05-27 03:36:58.961+03	
328dfde1-090e-63d3-f3ed-6e0233ec1a7d	2021-05-27 03:37:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:37:18.951+03	2021-05-27 03:37:18.959+03	
e044a367-178f-3130-754f-a89099de496e	2021-05-27 03:37:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:37:38.951+03	2021-05-27 03:37:39.262+03	
846c3b4c-7ef8-9921-b9ce-b45bbad79a4b	2021-05-27 03:37:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:37:58.951+03	2021-05-27 03:37:58.959+03	
e1a60c87-fb51-064d-0de4-236af3c7ee85	2021-05-27 03:38:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:38:18.951+03	2021-05-27 03:38:18.959+03	
1094e7c1-1703-0ec6-d869-379c71df2e3a	2021-05-27 03:38:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:38:38.951+03	2021-05-27 03:38:38.958+03	
e9e63db2-6938-25f1-d73b-af53c78b2679	2021-05-27 03:38:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:38:58.951+03	2021-05-27 03:38:58.958+03	
44c68565-1637-211f-84f6-67188fe24e90	2021-05-27 03:39:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:39:18.951+03	2021-05-27 03:39:18.959+03	
05a52b32-e1e9-a42c-2880-bc86561db1f7	2021-05-27 03:39:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:39:38.952+03	2021-05-27 03:39:38.96+03	
8aa3d56f-3861-edd4-e429-f6de78b21669	2021-05-27 03:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:39:59.951+03	2021-05-27 03:39:59.959+03	
e02b99b6-da89-687e-c203-cd6be5ebd202	2021-05-27 03:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:40:09.951+03	2021-05-27 03:40:09.958+03	
cbd5cc18-353d-f7d8-d9e2-3bc154c7e941	2021-05-27 03:40:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:40:29.951+03	2021-05-27 03:40:29.958+03	
cc8d3fbf-78ac-e065-4c0b-d2d1eee12e8b	2021-05-27 03:40:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:40:49.951+03	2021-05-27 03:40:49.958+03	
eb6aa205-f694-b5bd-fe24-31ad247d9ac5	2021-05-27 03:20:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:20:31.951+03	2021-05-27 03:20:31.96+03	
d8475587-a53f-6b51-84e5-af70d40c32bb	2021-05-27 03:20:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:20:52.951+03	2021-05-27 03:20:52.96+03	
3836316f-8583-aa03-9bda-71f57730cc43	2021-05-27 03:21:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:21:12.951+03	2021-05-27 03:21:12.958+03	
c126caa8-aef9-310d-3172-b2b595a0eb57	2021-05-27 03:21:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:21:32.953+03	2021-05-27 03:21:32.961+03	
25ea4fcc-f124-a469-d182-e96eddf479f5	2021-05-27 03:21:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:21:53.951+03	2021-05-27 03:21:53.962+03	
174f442b-6b18-7261-6b64-c73e3922acde	2021-05-27 03:22:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:22:13.951+03	2021-05-27 03:22:13.958+03	
c5c9b0d5-4c61-0c77-cc23-94621293bbd5	2021-05-27 03:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:22:33.951+03	2021-05-27 03:22:33.959+03	
93990391-00dd-be8f-b6a7-c336ca793c80	2021-05-27 03:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:22:53.951+03	2021-05-27 03:22:53.958+03	
f783357a-3c0e-1e67-e46c-7af95efc8596	2021-05-27 03:23:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:23:13.952+03	2021-05-27 03:23:13.96+03	
9e805080-c3bb-a700-0a0d-ad7b362caebb	2021-05-27 03:23:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:23:34.951+03	2021-05-27 03:23:34.959+03	
321dc1a0-9eef-ab6c-3ab7-09e3cf73c7ea	2021-05-27 03:23:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:23:54.951+03	2021-05-27 03:23:54.958+03	
64b1fb0a-1ef3-223e-59e9-8f03182faff2	2021-05-27 03:24:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:24:14.951+03	2021-05-27 03:24:14.957+03	
65f14f55-7b69-5ee0-77c6-e8de0438c589	2021-05-27 03:24:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:24:34.951+03	2021-05-27 03:24:34.959+03	
baeba72f-e867-515b-b808-41e40aeec75f	2021-05-27 03:24:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:24:54.951+03	2021-05-27 03:24:54.958+03	
acdde9a5-44ca-7ade-f66b-ee0b2d01c7d9	2021-05-27 03:25:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:25:14.951+03	2021-05-27 03:25:14.958+03	
d38c3bd1-b4b8-9b04-dada-23bc11979de7	2021-05-27 03:25:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:25:34.951+03	2021-05-27 03:25:34.958+03	
eb1fef82-cafa-1c49-3e8b-a8ec225f4594	2021-05-27 03:25:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:25:55.951+03	2021-05-27 03:25:55.958+03	
20ca9872-7951-0c15-658a-aabe5fcce81b	2021-05-27 03:26:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:26:15.951+03	2021-05-27 03:26:15.959+03	
2dfa3c87-2835-93d0-d889-3cfe7b5bcd21	2021-05-27 03:26:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:26:35.951+03	2021-05-27 03:26:35.961+03	
3e46dbb1-458a-ef62-8baf-abc8e17783bf	2021-05-27 03:26:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:26:55.952+03	2021-05-27 03:26:55.96+03	
311eefaa-e4ce-4a2d-8216-c9b9f744afa3	2021-05-27 03:27:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:27:16.951+03	2021-05-27 03:27:16.958+03	
9daf905b-fb8d-5ad0-6620-d522e644f4f5	2021-05-27 03:27:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:27:36.951+03	2021-05-27 03:27:36.959+03	
d6c62a2a-6e8a-15a2-55bf-2bdb74a8860c	2021-05-27 03:27:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:27:56.951+03	2021-05-27 03:27:56.957+03	
a72a9c34-ed4d-b642-f10c-a7584c8c1485	2021-05-27 03:28:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:28:16.951+03	2021-05-27 03:28:16.957+03	
cd1302a9-0291-6ca6-4d3f-9cdfbcb86d4c	2021-05-27 03:28:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:28:36.951+03	2021-05-27 03:28:36.96+03	
100943c3-7be0-d96d-ee4e-e4518f9a6936	2021-05-27 03:28:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:28:56.951+03	2021-05-27 03:28:56.959+03	
b53bbe70-2dac-4a73-fd78-5ce7cc8f1169	2021-05-27 03:29:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:29:16.951+03	2021-05-27 03:29:16.961+03	
6c7444fc-a263-49dc-37f0-d0c4e03d8c31	2021-05-27 03:29:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:29:36.951+03	2021-05-27 03:29:36.958+03	
a749242c-5cd6-937d-1ac4-ea6b7d127bf6	2021-05-27 03:29:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:29:56.951+03	2021-05-27 03:29:56.958+03	
bd6845a2-acd1-7a08-fb14-de27d8554618	2021-05-27 03:30:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:30:06.951+03	2021-05-27 03:30:06.958+03	
4c26dcc4-ba9d-d1eb-f3b5-5b56c9e401f2	2021-05-27 03:30:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:30:26.951+03	2021-05-27 03:30:26.958+03	
a34c1016-12de-388b-0c82-719c8e8f4d85	2021-05-27 03:30:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:30:46.951+03	2021-05-27 03:30:46.958+03	
d037c21d-0910-24d9-5edb-7bd510056c23	2021-05-27 03:31:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:31:06.951+03	2021-05-27 03:31:06.958+03	
f2db7467-6212-b703-f9cf-87a360dd5a4c	2021-05-27 03:31:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:31:26.951+03	2021-05-27 03:31:26.96+03	
553d06b6-2d54-05b4-955c-c6840cad0b8b	2021-05-27 03:31:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:31:46.951+03	2021-05-27 03:31:46.959+03	
85b67dd5-5169-d02d-23df-8e13991fdf0c	2021-05-27 03:32:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:32:06.951+03	2021-05-27 03:32:06.957+03	
bed37f8d-c8d2-1087-1ebc-05b6820e443a	2021-05-27 03:32:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:32:26.951+03	2021-05-27 03:32:26.959+03	
8f754724-d183-7073-f770-7181925440c4	2021-05-27 03:32:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:32:46.951+03	2021-05-27 03:32:46.957+03	
455a1704-2272-f218-5e5d-51155d7e490d	2021-05-27 03:33:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:33:06.951+03	2021-05-27 03:33:06.958+03	
38981edb-03f2-cef9-dcb0-0271da418035	2021-05-27 03:33:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:33:26.951+03	2021-05-27 03:33:26.957+03	
1f90b626-9879-1c29-612c-613e65b7e167	2021-05-27 03:33:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:33:46.951+03	2021-05-27 03:33:46.959+03	
201f8b7e-6715-e04d-0e77-110e3273f555	2021-05-27 03:34:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:34:06.951+03	2021-05-27 03:34:06.96+03	
30c86635-5abe-a7e0-516c-62da72530298	2021-05-27 03:34:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:34:26.951+03	2021-05-27 03:34:26.96+03	
2476131e-6506-c89e-2d5d-8b998724d2c1	2021-05-27 03:34:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:34:46.951+03	2021-05-27 03:34:46.958+03	
bc1b32b9-7f54-22ed-b552-5435337847b6	2021-05-27 03:35:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:35:06.951+03	2021-05-27 03:35:06.957+03	
e5e78679-b7ca-cb89-7ea1-2984de50f685	2021-05-27 03:35:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:35:26.951+03	2021-05-27 03:35:26.957+03	
e63c3a01-11e0-64fd-f02c-9b3e2872d6ed	2021-05-27 03:35:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:35:46.952+03	2021-05-27 03:35:46.959+03	
2d3d2e16-d13c-03b9-fbc8-77a2c766f9f4	2021-05-27 03:36:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:36:08.951+03	2021-05-27 03:36:08.959+03	
a4c3e9e3-07cb-b701-daf1-ab9712b2f2fb	2021-05-27 03:36:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:36:28.951+03	2021-05-27 03:36:28.962+03	
183ed7e3-ca05-cb73-d8e0-3b01cedf403c	2021-05-27 03:36:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:36:48.951+03	2021-05-27 03:36:48.958+03	
12b747da-3233-7323-0b0b-5e7bb0d57d5c	2021-05-27 03:37:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:37:08.951+03	2021-05-27 03:37:08.959+03	
8f04f579-4fd4-9c9b-3d65-878e8152fd4b	2021-05-27 03:37:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:37:28.951+03	2021-05-27 03:37:28.958+03	
c0315b7f-6b17-3eca-81de-7bbfab00923f	2021-05-27 03:37:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:37:48.951+03	2021-05-27 03:37:48.959+03	
2a9b75d2-d60f-4872-c844-c5d42378fea0	2021-05-27 03:38:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:38:08.951+03	2021-05-27 03:38:08.959+03	
61435047-7c77-d127-728e-ebd4d06d6dbd	2021-05-27 03:38:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:38:28.951+03	2021-05-27 03:38:28.959+03	
459b2096-5ab2-5d62-c1df-715766506118	2021-05-27 03:38:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:38:48.951+03	2021-05-27 03:38:48.96+03	
a71a52ce-3906-75be-25f8-506f71205c03	2021-05-27 03:39:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:39:08.951+03	2021-05-27 03:39:08.96+03	
51fd04c6-0cf7-2dad-89db-3714381a4654	2021-05-27 03:39:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:39:28.951+03	2021-05-27 03:39:28.959+03	
c1623c58-25de-1864-bc2e-65fbbf506690	2021-05-27 03:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:39:49.951+03	2021-05-27 03:39:49.96+03	
df14145d-846f-db72-bf0e-4d55bd993136	2021-05-27 03:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 03:40:00.951+03	2021-05-27 03:40:00.956+03	ERROR
2bb29abd-bc5b-fb53-37cc-18e85cdbfff9	2021-05-27 03:40:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:40:19.951+03	2021-05-27 03:40:19.959+03	
6a1acdaa-bda7-71ff-0b1b-ad8434926076	2021-05-27 03:40:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:40:39.951+03	2021-05-27 03:40:39.958+03	
53cfd250-43e0-e175-0c63-e80b7d02d38f	2021-05-27 03:40:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:40:59.951+03	2021-05-27 03:40:59.959+03	
ab7f78c2-dede-98ea-ea4a-6c83e244cd2c	2021-05-27 03:41:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:41:09.951+03	2021-05-27 03:41:10.075+03	
feb58129-0324-8470-117a-1214898255e9	2021-05-27 03:41:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:41:29.951+03	2021-05-27 03:41:29.958+03	
66171c65-49c1-5a9d-c6be-320cef79592b	2021-05-27 03:41:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:41:49.951+03	2021-05-27 03:41:49.959+03	
0efeec5b-bf1c-ee42-90bb-de27fcb7545a	2021-05-27 03:42:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:42:09.951+03	2021-05-27 03:42:09.959+03	
133bd2ba-f8fa-3709-e60b-eae5917359fb	2021-05-27 03:42:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:42:29.951+03	2021-05-27 03:42:29.959+03	
eec76123-ff46-e284-03d4-ccf13c151dc2	2021-05-27 03:42:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:42:49.951+03	2021-05-27 03:42:49.958+03	
923887c0-9d32-9dfc-8bc7-0e3d6be5198d	2021-05-27 03:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:43:09.951+03	2021-05-27 03:43:09.958+03	
f6397df2-4867-145f-c02c-266e42654774	2021-05-27 03:43:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:43:29.951+03	2021-05-27 03:43:29.958+03	
7dbd1981-1bab-fafb-cc94-dc9b01849f83	2021-05-27 03:43:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:43:49.951+03	2021-05-27 03:43:49.958+03	
d2e282d4-4e2d-580d-a111-60f0fe4f87eb	2021-05-27 03:44:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:44:09.951+03	2021-05-27 03:44:09.958+03	
d7994044-8885-89de-1a8d-e3bdb49c9628	2021-05-27 03:44:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:44:29.951+03	2021-05-27 03:44:29.958+03	
970f9c3e-f190-f6ea-cb41-9b0667b79609	2021-05-27 03:44:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:44:49.951+03	2021-05-27 03:44:49.958+03	
29c0e9c3-618f-21ff-e920-81a83485e25d	2021-05-27 03:45:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:45:09.951+03	2021-05-27 03:45:09.957+03	
adbb3894-8141-89e2-6f54-5fdedd47e526	2021-05-27 03:45:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:45:29.951+03	2021-05-27 03:45:29.96+03	
285929d5-7a36-16cf-1182-2fa53b6a7c96	2021-05-27 03:45:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:45:49.951+03	2021-05-27 03:45:49.958+03	
12e221b4-3edd-1b7d-489d-7f72637aaac0	2021-05-27 03:46:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:46:09.952+03	2021-05-27 03:46:09.96+03	
4e9f9a45-425b-f39f-9b81-3681401b5460	2021-05-27 03:46:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:46:30.951+03	2021-05-27 03:46:30.957+03	
67fd9697-d2f9-ad1d-274f-eb6aa90b4743	2021-05-27 03:46:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:46:50.951+03	2021-05-27 03:46:50.958+03	
574202c6-2687-27ef-c5fe-bf592070cc2f	2021-05-27 03:47:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:47:10.951+03	2021-05-27 03:47:10.959+03	
8dbd47b3-94f3-e9db-a542-b209b6accff3	2021-05-27 03:47:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:47:30.951+03	2021-05-27 03:47:30.959+03	
41165c1b-b711-272a-d72e-c15943e43539	2021-05-27 03:47:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:47:50.951+03	2021-05-27 03:47:50.957+03	
abfd6b60-0d57-25f8-036c-8a78bebbf140	2021-05-27 03:48:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:48:10.951+03	2021-05-27 03:48:10.958+03	
4221cf71-3c1b-7296-91a4-42b12a8c534f	2021-05-27 03:48:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:48:30.951+03	2021-05-27 03:48:30.958+03	
3c52aadc-59d8-b51a-c9fc-4f974cd99e86	2021-05-27 03:48:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:48:50.951+03	2021-05-27 03:48:50.957+03	
2e401b16-6497-2ff4-43d9-4dfcdf53b900	2021-05-27 03:49:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:49:10.951+03	2021-05-27 03:49:10.958+03	
e08c4022-9015-19c5-4523-86626cf2fea9	2021-05-27 03:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:49:30.951+03	2021-05-27 03:49:30.958+03	
975baabc-ef1d-b916-195d-e279da1da286	2021-05-27 03:49:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:49:50.951+03	2021-05-27 03:49:50.958+03	
2e53d0e7-51b4-3b6c-3692-88e05da9f25e	2021-05-27 03:50:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:50:10.951+03	2021-05-27 03:50:10.96+03	
09a763e0-c113-ae41-aa95-3ef92f31a858	2021-05-27 03:50:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:50:30.951+03	2021-05-27 03:50:30.964+03	
afdf00dd-f8d6-045b-f9e4-80cc4cf7d3ae	2021-05-27 03:50:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:50:50.952+03	2021-05-27 03:50:50.958+03	
1be5fc57-bba1-6bf2-0076-38846543c081	2021-05-27 03:51:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:51:11.951+03	2021-05-27 03:51:11.959+03	
f41a2229-e35d-17dd-8b34-b40698c53b96	2021-05-27 03:51:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:51:31.951+03	2021-05-27 03:51:31.959+03	
f7c4ccfd-fa9c-b223-cafc-e70eb1b4ef15	2021-05-27 03:51:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:51:52.951+03	2021-05-27 03:51:52.957+03	
82faf444-1f7a-c10e-1c72-8f2b969f659d	2021-05-27 03:52:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:52:12.951+03	2021-05-27 03:52:12.961+03	
cedf962e-90a3-bf99-cab2-26c7578599af	2021-05-27 03:52:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:52:32.951+03	2021-05-27 03:52:32.959+03	
2977346e-fac2-371c-ecdd-9300a22968fa	2021-05-27 03:52:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:52:52.951+03	2021-05-27 03:52:52.958+03	
74a35f50-27dc-9243-9276-fedaff253694	2021-05-27 03:53:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:53:12.951+03	2021-05-27 03:53:12.958+03	
cc621080-f4ee-a2ad-c9f0-e7fc3b410478	2021-05-27 03:53:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:53:32.951+03	2021-05-27 03:53:32.958+03	
fbf78d63-6ccb-f39e-78c9-9d1561f04e27	2021-05-27 03:53:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:53:52.951+03	2021-05-27 03:53:52.959+03	
151c7db8-cedb-35f4-0304-e83f7d2c6514	2021-05-27 03:54:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:54:13.951+03	2021-05-27 03:54:13.959+03	
7ba77365-6634-8599-2863-1c8b8e2cd63c	2021-05-27 03:54:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:54:33.951+03	2021-05-27 03:54:33.961+03	
a4363954-3deb-9a4e-cdc0-40dcba47c04a	2021-05-27 03:54:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:54:53.951+03	2021-05-27 03:54:53.959+03	
f8a1bd65-b981-50f5-4549-3278b1518e6f	2021-05-27 03:55:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:55:13.951+03	2021-05-27 03:55:14.013+03	
8f72913f-b759-39ed-eefb-94ae1fd17fda	2021-05-27 03:55:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:55:33.951+03	2021-05-27 03:55:33.957+03	
e393b4e9-66de-b921-7f5d-0051b2cd865e	2021-05-27 03:55:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:55:53.951+03	2021-05-27 03:55:53.959+03	
53cbec66-66ec-43ed-f60e-14a227ab5762	2021-05-27 03:56:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:56:13.951+03	2021-05-27 03:56:13.959+03	
277f4d67-ee47-f536-ea49-b89e3630c7cb	2021-05-27 03:56:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:56:33.951+03	2021-05-27 03:56:33.958+03	
be600d2a-420f-19b3-03e4-68a1d52b6517	2021-05-27 03:56:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:56:53.951+03	2021-05-27 03:56:53.959+03	
b79bddc7-3b29-a9fd-7c40-8329d5fabb39	2021-05-27 03:57:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:57:13.951+03	2021-05-27 03:57:13.959+03	
e647ff35-5b54-9b22-84b5-1a3fe8b9b5f4	2021-05-27 03:57:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:57:33.951+03	2021-05-27 03:57:33.958+03	
d14b9ddc-1975-28be-97f7-cf348fe43d9b	2021-05-27 03:57:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:57:53.951+03	2021-05-27 03:57:53.96+03	
7b998f2d-09cf-ab83-13d7-2c6707a4e842	2021-05-27 03:58:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:58:13.951+03	2021-05-27 03:58:13.959+03	
3a45ee9c-fd9e-8f3b-03b3-8c9469524e64	2021-05-27 03:58:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:58:33.951+03	2021-05-27 03:58:33.959+03	
28dbcd38-64fb-b3fc-4180-776ea2af3c41	2021-05-27 03:58:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:58:53.951+03	2021-05-27 03:58:53.959+03	
1a2e8048-cbab-8882-8c03-574a0a81e320	2021-05-27 03:59:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:59:13.951+03	2021-05-27 03:59:14.005+03	
300ab526-4b52-3e8c-14b8-bcdddaf68d33	2021-05-27 03:59:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:59:33.951+03	2021-05-27 03:59:33.962+03	
226625af-d188-b097-c070-b0d9e2787b2a	2021-05-27 03:59:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:59:53.951+03	2021-05-27 03:59:53.961+03	
69165636-6482-af68-6e6d-fcd20eaf8c36	2021-05-27 04:00:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:00:03.951+03	2021-05-27 04:00:03.958+03	
906d6ad9-a189-6460-e4f5-3b5e95c58f9a	2021-05-27 04:00:23.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:00:23.953+03	2021-05-27 04:00:23.962+03	
6cb12f56-00d9-51b7-2c38-78c431587e3e	2021-05-27 04:00:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:00:44.952+03	2021-05-27 04:00:44.96+03	
9db9d28b-fc70-455f-c724-bedbba185450	2021-05-27 04:01:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:01:05.951+03	2021-05-27 04:01:05.96+03	
03110f03-3913-8a7e-0857-a0c4131a2820	2021-05-27 04:01:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:01:26.951+03	2021-05-27 04:01:26.96+03	
13cd25c3-98a6-dd88-9453-9de7208c05ad	2021-05-27 04:01:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:01:47.952+03	2021-05-27 04:01:47.96+03	
6f06b159-d829-5e2c-89d8-afc73ef68aed	2021-05-27 03:41:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:41:19.951+03	2021-05-27 03:41:19.958+03	
a67743bb-0400-b528-d6fe-8eac6e35d019	2021-05-27 03:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:41:39.951+03	2021-05-27 03:41:39.958+03	
b19138af-7639-d980-7369-97891e41a4b6	2021-05-27 03:41:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:41:59.951+03	2021-05-27 03:41:59.958+03	
bfb08a63-15bf-12ac-9258-b93689539af0	2021-05-27 03:42:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:42:19.951+03	2021-05-27 03:42:19.96+03	
4ed0d64c-3d79-d2b3-6144-33b47baa4866	2021-05-27 03:42:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:42:39.951+03	2021-05-27 03:42:39.958+03	
e754cf15-b07a-3f74-2ead-ae01ce26875d	2021-05-27 03:42:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:42:59.951+03	2021-05-27 03:42:59.96+03	
57611f0c-ef22-86cb-0a74-4695e6573e2e	2021-05-27 03:43:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:43:19.951+03	2021-05-27 03:43:19.959+03	
52146b8d-e17c-8c0d-fe95-0a0331ec8289	2021-05-27 03:43:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:43:39.951+03	2021-05-27 03:43:39.959+03	
e040d1f9-631a-85dd-2007-ba85e7e3b3a3	2021-05-27 03:43:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:43:59.951+03	2021-05-27 03:44:00.287+03	
ac209f30-28c6-9882-638a-44291432c7ef	2021-05-27 03:44:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:44:19.951+03	2021-05-27 03:44:19.957+03	
cace4003-703e-c551-3a26-d187464ae138	2021-05-27 03:44:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:44:39.951+03	2021-05-27 03:44:39.959+03	
320190c0-a32e-b7bd-0dbf-a8936e765f5a	2021-05-27 03:44:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:44:59.951+03	2021-05-27 03:44:59.957+03	
c76af15c-cca2-b0d7-74c8-618defb13f62	2021-05-27 03:45:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:45:19.951+03	2021-05-27 03:45:19.959+03	
f0a859e8-c759-b7b9-895d-0a8233432d3b	2021-05-27 03:45:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:45:39.951+03	2021-05-27 03:45:39.958+03	
bb2e94a6-8c1b-c20f-6def-bdd8f99490f2	2021-05-27 03:45:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:45:59.951+03	2021-05-27 03:45:59.958+03	
9576035d-8c75-f02c-0b76-727cbf9ca83a	2021-05-27 03:46:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:46:20.951+03	2021-05-27 03:46:20.962+03	
012a5194-f0fc-444a-7f49-0b250b3e1930	2021-05-27 03:46:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:46:40.951+03	2021-05-27 03:46:40.958+03	
acb2b214-791c-b84b-1cdc-53cd39bb8cbf	2021-05-27 03:47:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:47:00.951+03	2021-05-27 03:47:00.959+03	
869d1a14-0a35-a64d-b510-6ddbee923e90	2021-05-27 03:47:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:47:20.951+03	2021-05-27 03:47:20.958+03	
9a43ef37-7750-9e46-0ba7-e541b971ee83	2021-05-27 03:47:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:47:40.951+03	2021-05-27 03:47:40.958+03	
3e94483b-fa74-87a9-0872-5d77e985ee27	2021-05-27 03:48:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:48:00.951+03	2021-05-27 03:48:00.958+03	
cc1d297e-63e9-3ed0-19e2-ea3f4b2dbb92	2021-05-27 03:48:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:48:20.951+03	2021-05-27 03:48:20.957+03	
a9c1a9ca-7865-b76b-c053-7abc1273a2f7	2021-05-27 03:48:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:48:40.951+03	2021-05-27 03:48:40.961+03	
a2a5421b-87a7-5e42-0ef3-0bcf6c849a62	2021-05-27 03:49:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:49:00.951+03	2021-05-27 03:49:00.958+03	
7fafb4e6-fe56-0fbd-22be-10b46474d944	2021-05-27 03:49:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:49:20.951+03	2021-05-27 03:49:20.958+03	
56a59442-a00e-cbb2-c709-7dfb67ce78ce	2021-05-27 03:49:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:49:40.951+03	2021-05-27 03:49:40.958+03	
9d861f67-2851-6db2-e974-9d9914b1a56b	2021-05-27 03:50:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:50:00.951+03	2021-05-27 03:50:00.963+03	
9c26897a-5eb9-9465-3d7b-4ec5bfec568e	2021-05-27 03:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 03:50:00.951+03	2021-05-27 03:50:00.97+03	ERROR
2049b2bb-39de-30ed-b951-fcf906034457	2021-05-27 03:50:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:50:20.951+03	2021-05-27 03:50:20.959+03	
21bdc571-16f8-ff23-b505-1dc8f4c1741e	2021-05-27 03:50:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:50:40.951+03	2021-05-27 03:50:40.959+03	
d89f1bab-ac88-453b-1c76-376915d65e5c	2021-05-27 03:51:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:51:01.951+03	2021-05-27 03:51:01.959+03	
98cbc47c-33bf-cdb9-28c6-347184e7c853	2021-05-27 03:51:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:51:21.951+03	2021-05-27 03:51:21.959+03	
c9c3064d-d3a4-7c9d-e20f-d828fa7056a8	2021-05-27 03:51:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:51:41.952+03	2021-05-27 03:51:41.96+03	
160b5654-687b-880b-9b55-40ab210bd73e	2021-05-27 03:52:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:52:02.951+03	2021-05-27 03:52:02.958+03	
ff7cd0ea-dcd2-63a2-76fc-f022d0579c69	2021-05-27 03:52:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:52:22.951+03	2021-05-27 03:52:22.959+03	
4e746e9c-9714-2e93-0e71-3f14e4d2b844	2021-05-27 03:52:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:52:42.951+03	2021-05-27 03:52:42.959+03	
3d0e28c5-7a93-74ca-4480-3a959f3f7e5a	2021-05-27 03:53:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:53:02.951+03	2021-05-27 03:53:02.96+03	
3627ff02-39e0-d7d3-9392-17828d8fc051	2021-05-27 03:53:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:53:22.951+03	2021-05-27 03:53:22.958+03	
e30053a4-54ef-3198-f3e0-e05d2e1020b9	2021-05-27 03:53:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:53:42.951+03	2021-05-27 03:53:42.961+03	
c8673530-23b7-dded-ef03-ba30be67e37b	2021-05-27 03:54:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:54:02.952+03	2021-05-27 03:54:02.959+03	
bf88e885-daf2-1bad-027b-3c19aff32194	2021-05-27 03:54:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:54:23.951+03	2021-05-27 03:54:23.958+03	
1c7b83bc-2fa2-6e66-6260-b2e8c56bef9a	2021-05-27 03:54:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:54:43.951+03	2021-05-27 03:54:43.96+03	
abcc4b2a-2ac6-62bd-ca38-867373e8e9d5	2021-05-27 03:55:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:55:03.951+03	2021-05-27 03:55:03.958+03	
3bfc86da-6379-8cbb-8de2-c56cd95dbdb6	2021-05-27 03:55:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:55:23.951+03	2021-05-27 03:55:23.958+03	
1658adb6-58b1-717e-458d-04feb9a17e58	2021-05-27 03:55:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:55:43.951+03	2021-05-27 03:55:43.958+03	
ef78dca9-0f70-c11e-d951-e0e5413ffa57	2021-05-27 03:56:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:56:03.951+03	2021-05-27 03:56:03.959+03	
defd65a4-91a0-d940-ca02-db30b356bef1	2021-05-27 03:56:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:56:23.951+03	2021-05-27 03:56:23.96+03	
a9a37978-0e5c-b7d1-d7e7-dc84b8c79a37	2021-05-27 03:56:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:56:43.951+03	2021-05-27 03:56:43.958+03	
569e6855-4b39-35b1-f629-c8545f757169	2021-05-27 03:57:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:57:03.951+03	2021-05-27 03:57:03.958+03	
b9c2efdc-042a-ec6a-e20c-11bea5de84a7	2021-05-27 03:57:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:57:23.951+03	2021-05-27 03:57:23.96+03	
7de19a2d-c419-fdba-625f-fdc9d5fbbe29	2021-05-27 03:57:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:57:43.951+03	2021-05-27 03:57:43.959+03	
a36d309c-f028-5759-4227-095bf38fe532	2021-05-27 03:58:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:58:03.951+03	2021-05-27 03:58:03.959+03	
3fa8abe9-e325-9caa-a39c-01e10ebabb30	2021-05-27 03:58:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:58:23.951+03	2021-05-27 03:58:23.959+03	
ddac5cf7-8f00-c1fc-35f7-c5ba5ef8c4d4	2021-05-27 03:58:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:58:43.951+03	2021-05-27 03:58:43.958+03	
c7774a85-7e3e-7edc-e506-1be7c03f200b	2021-05-27 03:59:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:59:03.951+03	2021-05-27 03:59:03.96+03	
c1e79003-9578-2562-388b-d6802be78d03	2021-05-27 03:59:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:59:23.951+03	2021-05-27 03:59:23.96+03	
60beca95-ab88-8721-334e-b73bcd48debc	2021-05-27 03:59:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 03:59:43.951+03	2021-05-27 03:59:43.961+03	
d9e92fdb-1402-8540-b068-62970fd25db3	2021-05-27 04:00:00.953	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 04:00:00.953+03	2021-05-27 04:00:00.958+03	ERROR
50f29543-6a4b-d570-7714-0826e51c880d	2021-05-27 04:00:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:00:13.951+03	2021-05-27 04:00:13.961+03	
25e9df26-3c3e-f90a-8ca4-003eb6c508bd	2021-05-27 04:00:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:00:34.951+03	2021-05-27 04:00:34.958+03	
56bab311-5397-6dbf-31fb-689c996e89e3	2021-05-27 04:00:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:00:54.952+03	2021-05-27 04:00:54.959+03	
07e6e318-a031-168c-52c0-efec7ee8d286	2021-05-27 04:01:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:01:15.952+03	2021-05-27 04:01:15.959+03	
5510a765-6ec9-75ca-242e-aff4fa3bc9c9	2021-05-27 04:01:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:01:36.952+03	2021-05-27 04:01:36.96+03	
79e6f65e-3f4f-f2f5-aa2e-e8cac60aed65	2021-05-27 04:01:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:01:58.951+03	2021-05-27 04:01:58.958+03	
cb987422-84d6-8b63-6423-f9df1ec85477	2021-05-27 04:02:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:02:18.952+03	2021-05-27 04:02:18.962+03	
f3b7d1c1-0955-d0bc-aa1b-2f8093667c09	2021-05-27 04:02:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:02:39.951+03	2021-05-27 04:02:39.96+03	
b665af73-8e09-8c3b-e82a-ffb280961426	2021-05-27 04:02:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:02:59.951+03	2021-05-27 04:02:59.96+03	
0e8f1ccd-2a23-3d86-8a68-d17978b907c2	2021-05-27 04:03:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:03:19.952+03	2021-05-27 04:03:19.96+03	
fb685050-38e3-5e2b-f967-34b4691ec608	2021-05-27 04:03:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:03:40.951+03	2021-05-27 04:03:40.962+03	
ff60758b-a523-80ef-0e9a-6929ba1dfbda	2021-05-27 04:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:04:00.951+03	2021-05-27 04:04:00.958+03	
6b60af2c-1257-e81f-1b15-8172f7d473ae	2021-05-27 04:04:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:04:20.951+03	2021-05-27 04:04:20.957+03	
fc40ae65-8782-b0c6-6c15-612c4195a649	2021-05-27 04:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:04:40.951+03	2021-05-27 04:04:40.959+03	
a4707d03-5533-de59-0050-fa32f73ea479	2021-05-27 04:05:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:05:00.951+03	2021-05-27 04:05:00.963+03	
f52bbaa7-7843-785a-2874-48ae81bc3624	2021-05-27 04:05:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:05:31.951+03	2021-05-27 04:05:31.959+03	
e4198392-d542-78e9-7f3b-adad2d6b823b	2021-05-27 04:05:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:05:51.951+03	2021-05-27 04:05:51.959+03	
5db27957-26a6-68d8-9288-4d262f3a6ef3	2021-05-27 04:06:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:06:11.951+03	2021-05-27 04:06:11.958+03	
a2764584-e967-afae-db4e-bf72d192a783	2021-05-27 04:06:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:06:31.952+03	2021-05-27 04:06:31.959+03	
3df7eb4b-e40a-1f49-4d3e-7d250c5aef1b	2021-05-27 04:06:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:06:52.951+03	2021-05-27 04:06:52.959+03	
d1474ea8-5950-dd51-82ce-9d02d8dceb59	2021-05-27 04:07:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:07:12.951+03	2021-05-27 04:07:12.959+03	
b1b3225f-601d-7fc5-0128-9ffef996c02b	2021-05-27 04:07:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:07:32.951+03	2021-05-27 04:07:32.958+03	
c8d53cff-8557-503d-4bee-6602f65910b2	2021-05-27 04:07:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:07:53.952+03	2021-05-27 04:07:53.96+03	
12e6a791-225d-706d-e390-7518b8624d03	2021-05-27 04:08:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:08:14.951+03	2021-05-27 04:08:14.961+03	
1ef0066b-0afa-faa5-fafd-a4020f36f34f	2021-05-27 04:08:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:08:34.952+03	2021-05-27 04:08:34.968+03	
060e7b3c-514e-aee4-a60e-c6a9e17ba167	2021-05-27 04:08:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:08:55.951+03	2021-05-27 04:08:55.96+03	
114ac5e6-bb0e-9ca4-9669-acc6b4460619	2021-05-27 04:09:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:09:15.951+03	2021-05-27 04:09:15.959+03	
11e91279-7561-5e68-6616-6a86870a9ff7	2021-05-27 04:09:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:09:36.951+03	2021-05-27 04:09:36.959+03	
994832c1-2825-206a-ea64-6d6bdd4cb836	2021-05-27 04:09:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:09:56.951+03	2021-05-27 04:09:56.958+03	
f5ea537a-9bd2-f7fd-42ec-9fe6851b8b15	2021-05-27 04:10:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:10:06.951+03	2021-05-27 04:10:06.958+03	
c161dcca-c929-535f-be02-f4552561bb50	2021-05-27 04:10:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:10:26.951+03	2021-05-27 04:10:26.957+03	
d117fbbb-3072-3940-137f-cab2c87bd940	2021-05-27 04:10:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:10:46.951+03	2021-05-27 04:10:46.959+03	
bb0e7288-d3fb-5123-b897-4aaf76b2ebdf	2021-05-27 04:11:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:11:06.951+03	2021-05-27 04:11:06.958+03	
9da77974-1db8-ee82-1f37-b7b7f58c258d	2021-05-27 04:11:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:11:26.951+03	2021-05-27 04:11:26.958+03	
4dd8e08c-3577-b8c2-633c-ac84b356e248	2021-05-27 04:11:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:11:46.951+03	2021-05-27 04:11:46.958+03	
421c0ef5-ee57-1cc7-36ac-d8b5445c1bbb	2021-05-27 04:12:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:12:06.951+03	2021-05-27 04:12:06.958+03	
25dabd52-9ad0-c8ff-0f7e-2a83d43f8729	2021-05-27 04:12:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:12:26.951+03	2021-05-27 04:12:26.96+03	
4d4c9896-5af9-e729-ad84-9cb591e778ec	2021-05-27 04:12:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:12:46.951+03	2021-05-27 04:12:46.957+03	
ad11b820-2c6a-01e0-66a4-0ea9c8dc9742	2021-05-27 04:13:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:13:06.951+03	2021-05-27 04:13:06.957+03	
4c23b578-4052-e7d8-01db-3eefa09ac996	2021-05-27 04:13:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:13:26.951+03	2021-05-27 04:13:26.959+03	
2d223bf8-d3b1-8d44-8e0f-690b93b93050	2021-05-27 04:13:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:13:46.951+03	2021-05-27 04:13:46.958+03	
d0105733-0781-511b-490b-06ca7bb70001	2021-05-27 04:14:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:14:06.951+03	2021-05-27 04:14:06.959+03	
26cd6ffe-807e-b916-b563-b69546c8f87f	2021-05-27 04:14:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:14:26.951+03	2021-05-27 04:14:26.96+03	
1b84956e-d1c6-a453-c66b-2e375245b78e	2021-05-27 04:14:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:14:46.951+03	2021-05-27 04:14:46.959+03	
db0ad526-fdb7-a682-a6f6-17f991bfef40	2021-05-27 04:15:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:15:06.951+03	2021-05-27 04:15:06.96+03	
4f6273cc-7145-3471-0645-25fe2bb25611	2021-05-27 04:15:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:15:26.951+03	2021-05-27 04:15:26.958+03	
1bb3a1f4-237e-e76d-aae2-b8ee98b20a37	2021-05-27 04:15:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:15:46.951+03	2021-05-27 04:15:46.958+03	
eae2ef40-5ae5-2b8f-d2e2-acb03826104b	2021-05-27 04:16:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:16:06.951+03	2021-05-27 04:16:06.957+03	
10b5c4de-249e-f422-3914-0b23da1b9d9b	2021-05-27 04:16:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:16:26.951+03	2021-05-27 04:16:26.96+03	
deb972f3-1c06-4b08-42df-cce4c28db8e0	2021-05-27 04:16:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:16:46.951+03	2021-05-27 04:16:46.959+03	
17f11b13-9d9e-1e9e-9a4d-4f360b8167b6	2021-05-27 04:17:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:17:06.951+03	2021-05-27 04:17:06.958+03	
b647422d-0005-3bb3-f440-b36adb42ac43	2021-05-27 04:17:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:17:26.951+03	2021-05-27 04:17:26.959+03	
1546530a-3543-4e6e-06f7-b2521b5bf4a9	2021-05-27 04:17:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:17:46.951+03	2021-05-27 04:17:46.959+03	
f35613e5-4dac-aa2d-1ef0-b840acb62e4f	2021-05-27 04:18:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:18:06.951+03	2021-05-27 04:18:06.959+03	
fb291b5e-3f3e-233c-7574-917692dd1708	2021-05-27 04:18:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:18:26.951+03	2021-05-27 04:18:26.958+03	
0f8d89a8-6f6a-5a3f-9331-02cce4cb0f56	2021-05-27 04:18:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:18:46.951+03	2021-05-27 04:18:46.958+03	
d9efab13-473a-e1d7-f68f-34106b91c7a8	2021-05-27 04:19:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:19:06.951+03	2021-05-27 04:19:06.957+03	
fcb62cbb-94fe-6ddd-4ed1-6436bce13a95	2021-05-27 04:19:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:19:26.951+03	2021-05-27 04:19:26.958+03	
37a47ff3-8cca-4f13-2850-3c6b3dd6dddc	2021-05-27 04:19:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:19:47.952+03	2021-05-27 04:19:47.959+03	
045db806-64e3-9395-4917-5027d27ecead	2021-05-27 04:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 04:20:00.951+03	2021-05-27 04:20:00.956+03	ERROR
8c28de44-36aa-5666-6b11-ec2e9aecae91	2021-05-27 04:20:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:20:18.951+03	2021-05-27 04:20:18.959+03	
4c105fe5-9893-dca9-a8b2-23f57295f702	2021-05-27 04:20:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:20:38.951+03	2021-05-27 04:20:38.958+03	
bc8c5400-82d0-ca78-1b1a-bd7ca77d9766	2021-05-27 04:20:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:20:58.951+03	2021-05-27 04:20:58.958+03	
8ff41f85-f32f-7973-7807-15c8e6e6fe43	2021-05-27 04:21:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:21:18.951+03	2021-05-27 04:21:18.959+03	
e33c2020-4712-faa6-a708-18c601bf6ae2	2021-05-27 04:21:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:21:38.951+03	2021-05-27 04:21:38.959+03	
00a626aa-ef4f-c8c4-c92e-6f49bfd09c3d	2021-05-27 04:21:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:21:58.951+03	2021-05-27 04:21:58.961+03	
8593e7bc-d9c5-47ef-0892-5c2cdeb10eb7	2021-05-27 04:22:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:22:18.951+03	2021-05-27 04:22:18.958+03	
24064312-713a-471a-d3b0-e6b18fd058de	2021-05-27 04:22:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:22:38.951+03	2021-05-27 04:22:38.957+03	
c37d65a0-dfbb-a085-661b-c307e48dbadf	2021-05-27 04:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:02:08.952+03	2021-05-27 04:02:08.958+03	
ee47fa7a-2149-8288-f6cb-769cb1398948	2021-05-27 04:02:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:02:29.951+03	2021-05-27 04:02:29.962+03	
fc7a5b85-7775-1411-4f8e-21b33d539a9a	2021-05-27 04:02:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:02:49.951+03	2021-05-27 04:02:49.959+03	
f1203e46-0b70-8c58-2227-0f2e741dedc5	2021-05-27 04:03:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:03:09.951+03	2021-05-27 04:03:09.959+03	
113e0e1c-bc1f-c01e-8eb7-f0631deb1a98	2021-05-27 04:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:03:30.951+03	2021-05-27 04:03:30.959+03	
e0fa82c5-1c88-1baf-3f6d-0fc6111cd6ef	2021-05-27 04:03:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:03:50.951+03	2021-05-27 04:03:50.96+03	
94dfaf6a-e715-de5c-4001-8fe4ed435441	2021-05-27 04:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:04:10.951+03	2021-05-27 04:04:10.958+03	
da1322ff-6ec4-3bf4-9a62-7897a6e57b48	2021-05-27 04:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:04:30.951+03	2021-05-27 04:04:30.964+03	
83c7f468-b9df-e659-5a52-f292c6f45c3f	2021-05-27 04:04:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:04:50.951+03	2021-05-27 04:04:50.958+03	
5a757a7a-c021-aeb1-a0e2-52a7b6c0dfa5	2021-05-27 04:05:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:05:10.951+03	2021-05-27 04:05:10.958+03	
b69fd0b0-6a48-a4f8-304d-d694a9dcf652	2021-05-27 04:05:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:05:20.952+03	2021-05-27 04:05:20.962+03	
0da02d40-3d53-4627-8de5-17e23867b5d0	2021-05-27 04:05:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:05:41.951+03	2021-05-27 04:05:41.959+03	
9d4a5c8c-24d2-080d-bc0c-dcc6058ecbf9	2021-05-27 04:06:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:06:01.951+03	2021-05-27 04:06:01.961+03	
842e253c-fcb2-f3f9-a902-0cd4efd8feea	2021-05-27 04:06:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:06:21.951+03	2021-05-27 04:06:21.962+03	
9c20b974-1ca4-0f18-b0ce-ddf155209185	2021-05-27 04:06:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:06:42.951+03	2021-05-27 04:06:42.958+03	
8043a0dc-db4b-a8ca-f62e-a1c0d876610c	2021-05-27 04:07:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:07:02.951+03	2021-05-27 04:07:02.958+03	
d229aea5-f0bb-d5c7-ecc4-d060d2666c95	2021-05-27 04:07:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:07:22.951+03	2021-05-27 04:07:22.959+03	
98b65d80-5b73-7166-3f56-5c59952a0d21	2021-05-27 04:07:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:07:42.952+03	2021-05-27 04:07:42.96+03	
194144e6-cf5f-41df-6d05-74625b6f98a5	2021-05-27 04:08:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:08:04.951+03	2021-05-27 04:08:04.958+03	
20b30d10-c962-0a40-bf2a-fe2380595957	2021-05-27 04:08:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:08:24.951+03	2021-05-27 04:08:24.959+03	
ef3e5d03-8aeb-5bff-d603-79729fb9265a	2021-05-27 04:08:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:08:45.951+03	2021-05-27 04:08:45.959+03	
62ad3679-e5ae-0ed7-102b-4861a34332bf	2021-05-27 04:09:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:09:05.951+03	2021-05-27 04:09:05.958+03	
7fed53fe-1f2b-08cf-e3a4-4a65877d2f40	2021-05-27 04:09:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:09:25.952+03	2021-05-27 04:09:25.959+03	
0a5af9f9-aab1-1151-08be-7c1bf2096642	2021-05-27 04:09:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:09:46.951+03	2021-05-27 04:09:46.958+03	
f2e773fb-db37-6439-4b89-9a27a4f54617	2021-05-27 04:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 04:10:00.951+03	2021-05-27 04:10:00.956+03	ERROR
21158884-7713-30f5-4284-3b3808f449cc	2021-05-27 04:10:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:10:16.951+03	2021-05-27 04:10:16.958+03	
daac4f2e-5212-d6d3-418c-25624d3ed9a6	2021-05-27 04:10:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:10:36.951+03	2021-05-27 04:10:36.958+03	
9f44481f-a87f-cf7b-fb13-f4c07784cb3a	2021-05-27 04:10:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:10:56.951+03	2021-05-27 04:10:56.96+03	
0aacc312-0039-5e72-4ece-b8796dc6a342	2021-05-27 04:11:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:11:16.951+03	2021-05-27 04:11:16.958+03	
e11dc6ce-5a09-e4b3-22b7-668272fa2fa2	2021-05-27 04:11:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:11:36.951+03	2021-05-27 04:11:36.957+03	
26511e2a-e9db-bd72-833e-bc88906ec98f	2021-05-27 04:11:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:11:56.951+03	2021-05-27 04:11:56.958+03	
1bda9674-b2da-1527-3765-563ba629f954	2021-05-27 04:12:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:12:16.951+03	2021-05-27 04:12:16.959+03	
168aa0b0-bf4b-5aeb-841b-f8a0c347385b	2021-05-27 04:12:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:12:36.951+03	2021-05-27 04:12:36.96+03	
1fe572b5-ae8c-c643-3f92-13d385b28361	2021-05-27 04:12:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:12:56.951+03	2021-05-27 04:12:56.959+03	
c3d28410-4466-c9c5-4148-3434352761b5	2021-05-27 04:13:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:13:16.951+03	2021-05-27 04:13:16.958+03	
1fe0b4a4-2a2e-5627-a6d3-52b21d6fe96f	2021-05-27 04:13:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:13:36.951+03	2021-05-27 04:13:36.96+03	
eb4c77a2-25ba-f06e-f2a3-3d31da092598	2021-05-27 04:13:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:13:56.951+03	2021-05-27 04:13:56.958+03	
42d8dfb5-8e0e-64c6-6ceb-22cab39a5c70	2021-05-27 04:14:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:14:16.951+03	2021-05-27 04:14:16.959+03	
382024dd-0a8f-a26d-92df-1e689653ecaa	2021-05-27 04:14:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:14:36.951+03	2021-05-27 04:14:36.957+03	
a3f650fd-7583-26b7-7ca2-1e4ee9c5ba6a	2021-05-27 04:14:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:14:56.951+03	2021-05-27 04:14:56.957+03	
a689088a-cb77-2956-ee9b-5b9c63faa863	2021-05-27 04:15:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:15:16.951+03	2021-05-27 04:15:16.959+03	
e8257e7e-4cbf-3ff0-0668-13f32ca0a9c9	2021-05-27 04:15:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:15:36.951+03	2021-05-27 04:15:36.961+03	
55f8c936-31f8-dfc0-6bc6-5c5c009977b4	2021-05-27 04:15:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:15:56.951+03	2021-05-27 04:15:56.957+03	
6e66117c-13dd-9fdb-e464-d4800226445a	2021-05-27 04:16:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:16:16.951+03	2021-05-27 04:16:16.958+03	
98ec5983-727f-238c-a5dc-c1a4a45c05c6	2021-05-27 04:16:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:16:36.951+03	2021-05-27 04:16:36.958+03	
9cc618eb-ce0a-d48a-9fac-6ff86812a89a	2021-05-27 04:16:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:16:56.951+03	2021-05-27 04:16:56.96+03	
73837889-390b-2358-3966-f9f76da67dae	2021-05-27 04:17:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:17:16.951+03	2021-05-27 04:17:16.958+03	
6101c830-d62b-aa36-bed4-3818938e9076	2021-05-27 04:17:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:17:36.951+03	2021-05-27 04:17:36.958+03	
d81eb551-2c8f-cf30-38fd-d117ce25e4d3	2021-05-27 04:17:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:17:56.951+03	2021-05-27 04:17:56.959+03	
e2037554-f978-bacf-25db-f4356e7737c8	2021-05-27 04:18:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:18:16.951+03	2021-05-27 04:18:16.959+03	
27c323f2-cfa4-2abf-ecd0-22cb4deb262a	2021-05-27 04:18:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:18:36.951+03	2021-05-27 04:18:36.959+03	
4ae86b8c-3915-1764-0d88-953c4ddd4c24	2021-05-27 04:18:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:18:56.951+03	2021-05-27 04:18:56.959+03	
f5e5cbdb-73d6-7310-0a91-8199ebff7073	2021-05-27 04:19:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:19:16.951+03	2021-05-27 04:19:16.959+03	
9706a518-c966-b310-992d-3cdce422689f	2021-05-27 04:19:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:19:36.952+03	2021-05-27 04:19:36.959+03	
b249843d-7878-dc5c-651f-312ade0a0369	2021-05-27 04:19:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:19:57.952+03	2021-05-27 04:19:57.959+03	
4f95fed5-f7d6-6dd8-f9d4-8794ae1a90cf	2021-05-27 04:20:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:20:07.953+03	2021-05-27 04:20:07.961+03	
42d716c9-5945-f0ed-25e4-d2aa8dd43936	2021-05-27 04:20:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:20:28.951+03	2021-05-27 04:20:28.958+03	
4c184a9d-59fd-f86c-c0ee-2b7cee39af21	2021-05-27 04:20:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:20:48.951+03	2021-05-27 04:20:48.958+03	
667cadd1-8460-b52b-b454-b21dea1296cb	2021-05-27 04:21:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:21:08.951+03	2021-05-27 04:21:08.958+03	
56cbe573-19ab-4828-5c07-842d74362b1b	2021-05-27 04:21:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:21:28.951+03	2021-05-27 04:21:28.96+03	
e70f0b35-fa37-a59e-65c9-f2edb3a626ca	2021-05-27 04:21:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:21:48.951+03	2021-05-27 04:21:48.959+03	
c02eabef-6ed4-8b09-35cb-ebe2b9ad721a	2021-05-27 04:22:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:22:08.951+03	2021-05-27 04:22:08.964+03	
5ffb2935-fcf6-e2dc-3b13-35aa98176512	2021-05-27 04:22:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:22:28.951+03	2021-05-27 04:22:28.958+03	
2df63d05-b007-91b8-035a-869a190b4102	2021-05-27 04:22:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:22:48.951+03	2021-05-27 04:22:48.96+03	
0816df11-a086-db8b-47a9-7bdeedfc207d	2021-05-27 04:23:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:23:08.951+03	2021-05-27 04:23:08.96+03	
3d11d0bc-42f0-1b96-6ac9-3457b8817be8	2021-05-27 04:23:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:23:28.952+03	2021-05-27 04:23:28.959+03	
8e2a27dc-fe6f-3c28-d8f6-bc0d3a4e137f	2021-05-27 04:23:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:23:49.951+03	2021-05-27 04:23:49.959+03	
4dee119f-3648-d05b-3fed-6074b7d11e52	2021-05-27 04:24:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:24:09.951+03	2021-05-27 04:24:09.958+03	
b72495b1-5a3e-a056-4b97-cec236beb365	2021-05-27 04:24:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:24:29.951+03	2021-05-27 04:24:29.959+03	
bf765e84-05b6-ba37-c59b-7b56979c6e7f	2021-05-27 04:24:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:24:49.951+03	2021-05-27 04:24:49.958+03	
b09db2ff-a054-eb2f-5313-ea5aaf453938	2021-05-27 04:25:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:25:09.951+03	2021-05-27 04:25:09.96+03	
6fd73aef-deb0-ff02-0521-12f5bb2b7449	2021-05-27 04:25:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:25:29.952+03	2021-05-27 04:25:29.959+03	
99ae05ac-7852-99c9-d93f-5dbfc5d1f17f	2021-05-27 04:25:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:25:50.952+03	2021-05-27 04:25:50.958+03	
14e74ae7-05dc-e48a-e160-40564358e45d	2021-05-27 04:26:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:26:11.951+03	2021-05-27 04:26:11.958+03	
fbacea9f-0191-eeac-cadc-ea58e5cef7a2	2021-05-27 04:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:26:31.951+03	2021-05-27 04:26:31.959+03	
3f35f4c2-22fa-7210-d454-ce14433eaf58	2021-05-27 04:26:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:26:51.951+03	2021-05-27 04:26:51.958+03	
2bfbf232-8791-a05c-3d81-9184e9508c59	2021-05-27 04:27:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:27:11.951+03	2021-05-27 04:27:11.959+03	
03973249-fa45-be53-2f40-8eeaffc71ea8	2021-05-27 04:27:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:27:31.952+03	2021-05-27 04:27:31.96+03	
08914706-b484-a9bd-32cb-fcd5f71c2294	2021-05-27 04:27:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:27:52.952+03	2021-05-27 04:27:52.96+03	
942cb821-f2b3-d74c-589d-c8d0cec9179b	2021-05-27 04:28:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:28:13.951+03	2021-05-27 04:28:13.959+03	
d46d4ffc-c4d0-c55f-ee54-78516a9576f3	2021-05-27 04:28:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:28:33.951+03	2021-05-27 04:28:33.959+03	
a8af922b-4488-341f-ab76-cd1a5767d549	2021-05-27 04:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:28:53.951+03	2021-05-27 04:28:53.96+03	
b9d75b05-c7ea-0937-cc4a-c4d38974ccd1	2021-05-27 04:29:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:29:13.951+03	2021-05-27 04:29:13.959+03	
b96190c7-60c0-4996-e463-183d8e918a8d	2021-05-27 04:29:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:29:33.951+03	2021-05-27 04:29:33.96+03	
9f229b3c-75b7-3ba0-1608-256c2dbaef7e	2021-05-27 04:29:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:29:53.951+03	2021-05-27 04:29:53.957+03	
7b3b6f12-799e-8ec1-8e4c-22cc37daeb92	2021-05-27 04:30:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:30:03.951+03	2021-05-27 04:30:03.959+03	
b42bffbb-fd70-78ec-0fd4-f69f65f3de0c	2021-05-27 04:30:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:30:23.951+03	2021-05-27 04:30:23.959+03	
4374287c-2437-e4aa-4b4e-bdd9ef25ac9b	2021-05-27 04:30:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:30:43.951+03	2021-05-27 04:30:43.957+03	
1bb58c3a-cf47-d4a0-2d81-c18c2c049d57	2021-05-27 04:31:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:31:03.951+03	2021-05-27 04:31:03.959+03	
048cd508-687d-d360-5b4a-d0cf502b95d7	2021-05-27 04:31:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:31:23.951+03	2021-05-27 04:31:23.957+03	
ff8257f3-bee0-7701-7b57-d0bc58e90f44	2021-05-27 04:31:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:31:43.951+03	2021-05-27 04:31:43.958+03	
e3816294-2aed-dd52-a593-ea53ee184d5e	2021-05-27 04:32:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:32:03.951+03	2021-05-27 04:32:03.959+03	
21c913af-180a-9e3b-d2ea-c44ef6a220f0	2021-05-27 04:32:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:32:23.951+03	2021-05-27 04:32:23.957+03	
02fcbba1-2d48-c0e4-6885-c17264ef0be7	2021-05-27 04:32:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:32:43.951+03	2021-05-27 04:32:43.958+03	
7f797806-b8bd-f28d-11b8-188aa2e3f744	2021-05-27 04:33:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:33:03.951+03	2021-05-27 04:33:03.958+03	
9d125a81-24af-e942-73c9-34c5bc1eff2d	2021-05-27 04:33:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:33:23.951+03	2021-05-27 04:33:23.958+03	
d7384525-19a2-fc25-31f6-619baf442f46	2021-05-27 04:33:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:33:43.951+03	2021-05-27 04:33:43.958+03	
26aa4b6f-c47b-0518-261b-9ee5fd479cce	2021-05-27 04:34:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:34:03.951+03	2021-05-27 04:34:03.959+03	
a054fc00-689c-a9b5-4271-403c8226aa5e	2021-05-27 04:34:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:34:23.951+03	2021-05-27 04:34:23.959+03	
69011c0e-3682-52ae-87a7-4b042b336b54	2021-05-27 04:34:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:34:43.951+03	2021-05-27 04:34:43.961+03	
4ecf002a-f1bc-4a63-dd9f-4806d0a560b5	2021-05-27 04:35:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:35:03.951+03	2021-05-27 04:35:03.958+03	
1fb037d1-5521-d924-5b49-b01d22c9fba1	2021-05-27 04:35:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:35:23.951+03	2021-05-27 04:35:23.958+03	
8e0237cd-220f-34db-926a-fe37717b3f0c	2021-05-27 04:35:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:35:43.951+03	2021-05-27 04:35:43.96+03	
1acb8b7e-11cb-63d3-04c9-cbcc2bedf2c4	2021-05-27 04:36:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:36:03.951+03	2021-05-27 04:36:03.958+03	
983d1a34-bf3c-ebb9-7675-84b046dfe3f5	2021-05-27 04:36:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:36:23.951+03	2021-05-27 04:36:23.958+03	
1efe056a-137a-d390-d3ca-f76bb3c03f63	2021-05-27 04:36:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:36:43.951+03	2021-05-27 04:36:43.962+03	
92bd1894-f8ea-5377-7a89-ce0ca19568d8	2021-05-27 04:37:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:37:03.951+03	2021-05-27 04:37:03.958+03	
78a839ab-f492-5f54-7db7-e6784d9776b2	2021-05-27 04:37:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:37:23.951+03	2021-05-27 04:37:23.959+03	
26a0650a-1b07-2cbe-c2d9-7e2c5d1743fc	2021-05-27 04:37:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:37:43.951+03	2021-05-27 04:37:43.958+03	
9ac3c3ec-7af4-15fb-15b4-21323349cfad	2021-05-27 04:38:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:38:03.951+03	2021-05-27 04:38:03.96+03	
9e1de614-e710-ecbd-d38c-0e9d49c4ed7a	2021-05-27 04:38:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:38:23.951+03	2021-05-27 04:38:23.959+03	
9f8c4c26-f290-ba31-5499-33e5a3a8d9fa	2021-05-27 04:38:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:38:43.951+03	2021-05-27 04:38:43.958+03	
6915550f-04b5-8775-a884-994ad6bb15ab	2021-05-27 04:39:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:39:03.951+03	2021-05-27 04:39:03.958+03	
0e8ccd82-e670-f69e-d4ae-11e0008c66c7	2021-05-27 04:39:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:39:23.951+03	2021-05-27 04:39:23.958+03	
f20b27ea-6bfc-04b2-c038-ad0c76dc4b95	2021-05-27 04:39:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:39:43.952+03	2021-05-27 04:39:43.959+03	
c0ad6d0d-fa69-9ad4-af33-8ce6c3a10efc	2021-05-27 04:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 04:40:00.951+03	2021-05-27 04:40:00.956+03	ERROR
15d0253b-d0ec-ca49-2fd2-4a44d8ccf641	2021-05-27 04:40:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:40:14.951+03	2021-05-27 04:40:14.96+03	
4cd5361f-06d6-3e16-b600-d6211b886736	2021-05-27 04:40:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:40:34.951+03	2021-05-27 04:40:34.958+03	
2d5c2728-5ab6-73bd-f325-a5c7997844d8	2021-05-27 04:40:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:40:54.951+03	2021-05-27 04:40:54.957+03	
55332d34-5c26-d583-e55d-4bc5511a4b4e	2021-05-27 04:41:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:41:14.951+03	2021-05-27 04:41:14.957+03	
1c92bfc8-0a05-d810-95e1-03cf7b111ec2	2021-05-27 04:41:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:41:34.951+03	2021-05-27 04:41:34.959+03	
1897989a-9c5d-fc1b-3314-dc3f0afbbe73	2021-05-27 04:41:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:41:54.951+03	2021-05-27 04:41:54.957+03	
34bd89d6-0634-52b0-efb9-016c78415b70	2021-05-27 04:42:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:42:14.951+03	2021-05-27 04:42:14.96+03	
9c320911-0ecb-9e1c-466f-8f0a5268f788	2021-05-27 04:42:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:42:34.951+03	2021-05-27 04:42:34.959+03	
d27a0b36-0f35-96d0-fbb1-7dd6663b5100	2021-05-27 04:42:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:42:54.951+03	2021-05-27 04:42:54.96+03	
7c0fe2e1-899f-5ed6-41a4-a8852ecd5a10	2021-05-27 04:43:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:43:14.951+03	2021-05-27 04:43:14.958+03	
eee3733d-0c1d-eacb-a159-f43ead14afe1	2021-05-27 04:22:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:22:58.951+03	2021-05-27 04:22:58.959+03	
f639ae2f-5022-e325-8bb1-e160bddb5e92	2021-05-27 04:23:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:23:18.951+03	2021-05-27 04:23:18.961+03	
93b3138a-6738-449a-0c30-edc7ca2d2c87	2021-05-27 04:23:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:23:39.951+03	2021-05-27 04:23:39.959+03	
f39518fb-e568-813c-a0c7-e2562dc78f90	2021-05-27 04:23:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:23:59.951+03	2021-05-27 04:23:59.958+03	
81a430aa-b296-acb6-494f-60c6d499ce45	2021-05-27 04:24:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:24:19.951+03	2021-05-27 04:24:19.958+03	
d7f644fd-dcc0-8622-836a-e20024380327	2021-05-27 04:24:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:24:39.951+03	2021-05-27 04:24:39.959+03	
a73a004f-20c1-5751-d7a2-9037a599efbf	2021-05-27 04:24:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:24:59.951+03	2021-05-27 04:24:59.958+03	
75dc3c9e-b590-69b4-9b30-c9bdc84e1930	2021-05-27 04:25:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:25:19.951+03	2021-05-27 04:25:19.959+03	
9b6c2611-43ca-af75-d2c8-8a715290f63e	2021-05-27 04:25:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:25:40.951+03	2021-05-27 04:25:40.959+03	
6bb4144c-1c7e-99db-5c6c-2ba2c136daf0	2021-05-27 04:26:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:26:01.951+03	2021-05-27 04:26:01.958+03	
76a6ecd1-4f46-fa58-f780-4a8855019089	2021-05-27 04:26:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:26:21.951+03	2021-05-27 04:26:21.958+03	
e20f960b-1b71-808b-a13e-5a500915137d	2021-05-27 04:26:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:26:41.951+03	2021-05-27 04:26:41.959+03	
38825487-3305-c027-b0d8-f42b292d5183	2021-05-27 04:27:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:27:01.951+03	2021-05-27 04:27:01.958+03	
6c79e150-028f-988d-6eff-63fde41b49cc	2021-05-27 04:27:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:27:21.951+03	2021-05-27 04:27:21.959+03	
ac0d1531-ff34-c591-fa5f-768f3e41df00	2021-05-27 04:27:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:27:42.951+03	2021-05-27 04:27:42.959+03	
db2f2e31-019f-d292-5e8d-f61482f25c75	2021-05-27 04:28:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:28:03.951+03	2021-05-27 04:28:03.962+03	
fbbca044-1da0-66fc-cfad-4572b8994659	2021-05-27 04:28:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:28:23.951+03	2021-05-27 04:28:23.958+03	
eb2035cb-2991-d671-f206-3ecdf4b29980	2021-05-27 04:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:28:43.951+03	2021-05-27 04:28:43.962+03	
644f7762-4e4f-e083-8a85-0c2e1217f10b	2021-05-27 04:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:29:03.951+03	2021-05-27 04:29:03.958+03	
dabb3f5d-ec97-301a-4bb5-001292c06804	2021-05-27 04:29:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:29:23.951+03	2021-05-27 04:29:23.958+03	
8a431b2e-765a-fb02-2432-8203b64c282c	2021-05-27 04:29:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:29:43.951+03	2021-05-27 04:29:43.958+03	
2c3fa885-dfc9-4f02-cee9-44060e49ca04	2021-05-27 04:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 04:30:00.951+03	2021-05-27 04:30:00.957+03	ERROR
6a550022-9794-b037-2d22-dd4f4f28392f	2021-05-27 04:30:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:30:13.951+03	2021-05-27 04:30:13.959+03	
964c3f2b-d641-ac37-7a67-99fb297cd56d	2021-05-27 04:30:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:30:33.951+03	2021-05-27 04:30:33.96+03	
2b968334-3a5e-6bba-ab7b-a1d2b2e0882c	2021-05-27 04:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:30:53.951+03	2021-05-27 04:30:53.961+03	
43e4a67a-9b36-c5d4-02c1-08201819f599	2021-05-27 04:31:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:31:13.951+03	2021-05-27 04:31:13.957+03	
1233fd0d-fc69-c80c-7d7f-d1b6a1642cb3	2021-05-27 04:31:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:31:33.951+03	2021-05-27 04:31:33.962+03	
29716af8-9f14-9c57-5b16-4e89e88ad25e	2021-05-27 04:31:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:31:53.951+03	2021-05-27 04:31:53.957+03	
5ac8329a-bed9-f479-95e8-c828ead3acad	2021-05-27 04:32:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:32:13.951+03	2021-05-27 04:32:13.959+03	
53545b68-0877-6e48-d36d-db6a63a5304f	2021-05-27 04:32:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:32:33.951+03	2021-05-27 04:32:33.958+03	
994ac041-3cf3-4506-fc37-cbe01f8bd1e6	2021-05-27 04:32:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:32:53.951+03	2021-05-27 04:32:53.957+03	
89ec10ee-8c05-7ea4-2e6c-586c7a72bf05	2021-05-27 04:33:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:33:13.951+03	2021-05-27 04:33:13.957+03	
1d9ad7ce-c66a-5a85-9aab-b77d43fe6ef6	2021-05-27 04:33:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:33:33.951+03	2021-05-27 04:33:33.958+03	
67aa8ec0-4899-d8c6-edf9-a5453dcfde54	2021-05-27 04:33:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:33:53.951+03	2021-05-27 04:33:53.959+03	
f62d2309-b7a0-cbd8-5420-609699d1c763	2021-05-27 04:34:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:34:13.951+03	2021-05-27 04:34:13.958+03	
61a842de-daa3-3da5-9f77-b2c71230d5ba	2021-05-27 04:34:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:34:33.951+03	2021-05-27 04:34:33.959+03	
d46fdd75-981a-1363-f45c-3c5fa11fe49b	2021-05-27 04:34:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:34:53.951+03	2021-05-27 04:34:53.959+03	
091f31a3-9094-55a9-9207-79cd6a079240	2021-05-27 04:35:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:35:13.951+03	2021-05-27 04:35:13.958+03	
3c959421-eca1-6070-4c3a-edf2b25ea190	2021-05-27 04:35:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:35:33.951+03	2021-05-27 04:35:33.959+03	
09da39cf-37b2-bff2-4ae3-9adf240dd198	2021-05-27 04:35:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:35:53.951+03	2021-05-27 04:35:53.96+03	
9a6abd78-74c6-1bce-7e7f-a49b3dc7cd7f	2021-05-27 04:36:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:36:13.951+03	2021-05-27 04:36:13.957+03	
8f25e8c0-00c2-05f6-ec99-368da812efcf	2021-05-27 04:36:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:36:33.951+03	2021-05-27 04:36:33.959+03	
25c31879-f05d-3346-de83-2e5720eb6f7f	2021-05-27 04:36:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:36:53.951+03	2021-05-27 04:36:53.958+03	
9f8bfe5c-13b6-933b-0849-0ae087681e03	2021-05-27 04:37:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:37:13.951+03	2021-05-27 04:37:13.964+03	
c91a54be-f197-fdbd-bdc7-daf6a4d1f696	2021-05-27 04:37:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:37:33.951+03	2021-05-27 04:37:33.959+03	
e038a816-876c-8860-a7b5-90ce89969102	2021-05-27 04:37:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:37:53.951+03	2021-05-27 04:37:53.96+03	
ad72d465-36c9-c712-341c-708181b1e862	2021-05-27 04:38:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:38:13.951+03	2021-05-27 04:38:13.958+03	
087f5233-6be9-a5aa-500f-8a53865e63bc	2021-05-27 04:38:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:38:33.951+03	2021-05-27 04:38:33.959+03	
4c23d7a7-75a0-034f-542b-1bc7b44802dc	2021-05-27 04:38:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:38:53.951+03	2021-05-27 04:38:53.958+03	
b2faf277-f8b4-e5e0-7e3a-b4cc2e707720	2021-05-27 04:39:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:39:13.951+03	2021-05-27 04:39:13.958+03	
3d8c5d5e-4647-21a1-0048-ec46f34e034b	2021-05-27 04:39:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:39:33.951+03	2021-05-27 04:39:34.289+03	
0ad35d32-d190-d3b9-5e07-abd94e013cab	2021-05-27 04:39:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:39:54.951+03	2021-05-27 04:39:54.959+03	
1eff943c-ad5d-d506-06ed-c90cb20fa789	2021-05-27 04:40:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:40:04.951+03	2021-05-27 04:40:04.96+03	
0c6ef1d8-e107-b6d1-634f-794828b70292	2021-05-27 04:40:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:40:24.951+03	2021-05-27 04:40:24.959+03	
635afc6e-8740-589b-c65a-91269ede6cad	2021-05-27 04:40:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:40:44.951+03	2021-05-27 04:40:44.957+03	
0a70598a-e2e5-ddc7-7fbb-8e846b76bd53	2021-05-27 04:41:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:41:04.951+03	2021-05-27 04:41:04.957+03	
4984a7b9-7412-8223-0e32-27dc0d958891	2021-05-27 04:41:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:41:24.951+03	2021-05-27 04:41:24.963+03	
fc053d91-3ba1-9803-b3cd-e6ad451cd374	2021-05-27 04:41:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:41:44.951+03	2021-05-27 04:41:44.958+03	
6468242c-7cb6-92b7-a2a7-cc0776833685	2021-05-27 04:42:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:42:04.951+03	2021-05-27 04:42:04.957+03	
17ea6598-329c-9e2f-3d55-5ad9d9cf03fd	2021-05-27 04:42:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:42:24.951+03	2021-05-27 04:42:24.957+03	
588120f9-b46f-c139-8abe-f9d1a8e53bbd	2021-05-27 04:42:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:42:44.951+03	2021-05-27 04:42:44.958+03	
b575d73e-1177-0e0d-da79-975f3eb83296	2021-05-27 04:43:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:43:04.951+03	2021-05-27 04:43:04.959+03	
d7a86b71-7973-9601-6c7e-3830e860d8f1	2021-05-27 04:43:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:43:24.951+03	2021-05-27 04:43:24.968+03	
bcd847b3-15db-b569-0a5d-fc9c9dc05bf0	2021-05-27 04:43:34.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:43:34.951+03	2021-05-27 04:43:34.993+03	
0b55ab15-aeea-739c-6862-647a4abdb6f4	2021-05-27 04:43:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:43:54.951+03	2021-05-27 04:43:54.958+03	
77993952-8df0-3485-383e-b9770ae6cd15	2021-05-27 04:44:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:44:14.951+03	2021-05-27 04:44:14.959+03	
fc85d931-b3c9-1893-89cd-c6efd8ab3efd	2021-05-27 04:44:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:44:34.951+03	2021-05-27 04:44:34.959+03	
f6ec369f-3a0f-044a-a73e-aad42bad0976	2021-05-27 04:44:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:44:54.951+03	2021-05-27 04:44:54.96+03	
ea9ea2d9-dfe5-bf35-aae0-4a60304a8df8	2021-05-27 04:45:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:45:14.951+03	2021-05-27 04:45:14.958+03	
d30aec29-3d9f-abce-1460-2ae9534edc50	2021-05-27 04:45:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:45:34.951+03	2021-05-27 04:45:34.957+03	
c1d3fc04-a489-7c28-b9b0-ea63a69a7361	2021-05-27 04:45:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:45:54.951+03	2021-05-27 04:45:54.96+03	
c4fe02ac-5d7f-adb7-2fd6-69d987718177	2021-05-27 04:46:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:46:14.951+03	2021-05-27 04:46:14.962+03	
9f193440-eed1-7302-e9f2-47b269e1a55d	2021-05-27 04:46:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:46:34.951+03	2021-05-27 04:46:34.957+03	
92495b7f-1594-904f-41a4-9e1307bac9bb	2021-05-27 04:46:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:46:54.951+03	2021-05-27 04:46:54.959+03	
ffb10f72-c8e2-e143-cf09-8dd223b22950	2021-05-27 04:47:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:47:14.951+03	2021-05-27 04:47:14.958+03	
42fa2193-5fbe-17c6-8f14-b8ca97f5d976	2021-05-27 04:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:47:34.951+03	2021-05-27 04:47:34.958+03	
0038eaef-5b2d-8669-a19c-e8d57d75db29	2021-05-27 04:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:47:54.951+03	2021-05-27 04:47:54.959+03	
07a37c6e-c7c3-1453-5aac-94a368f86a40	2021-05-27 04:48:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:48:14.951+03	2021-05-27 04:48:14.957+03	
d4618b01-faee-6953-7fc4-d1eeabd7915d	2021-05-27 04:48:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:48:34.951+03	2021-05-27 04:48:34.959+03	
d6e7e430-fd6a-00fd-3fe1-ffb92a98ada4	2021-05-27 04:48:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:48:54.952+03	2021-05-27 04:48:54.959+03	
2619eb21-1e63-f685-3c3a-5c4175dface4	2021-05-27 04:49:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:49:15.951+03	2021-05-27 04:49:15.965+03	
af3dd72c-7191-d613-f47d-f6c7f4186506	2021-05-27 04:49:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:49:35.951+03	2021-05-27 04:49:35.958+03	
5915dd7c-9ad2-a59e-1a11-042ec5d15f37	2021-05-27 04:49:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:49:55.951+03	2021-05-27 04:49:55.959+03	
ad8d7349-0c1d-ba85-7b3b-c3877a64f151	2021-05-27 04:50:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:50:05.952+03	2021-05-27 04:50:05.96+03	
8dbc3e66-d60b-35a8-d8de-91d07ab6784a	2021-05-27 04:50:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:50:26.951+03	2021-05-27 04:50:26.96+03	
73eae3b3-61e6-b46b-92b5-ee5fc5dfffd2	2021-05-27 04:50:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:50:46.951+03	2021-05-27 04:50:46.959+03	
8735a72d-6e50-f344-e425-cd48e147291d	2021-05-27 04:51:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:51:06.951+03	2021-05-27 04:51:06.959+03	
f3517d3d-85c6-1733-64d5-739225afabda	2021-05-27 04:51:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:51:26.951+03	2021-05-27 04:51:26.959+03	
66fa04e1-9f4a-a9b3-4126-49a14ac263fa	2021-05-27 04:51:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:51:46.951+03	2021-05-27 04:51:46.958+03	
aa26d995-d398-e457-b021-93deff879ef6	2021-05-27 04:52:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:52:06.951+03	2021-05-27 04:52:06.959+03	
2375e6f8-ba53-cac7-99d3-c563b14cd4bd	2021-05-27 04:52:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:52:26.951+03	2021-05-27 04:52:26.96+03	
bf017b0a-76dd-5fc6-582e-e41cdda26c02	2021-05-27 04:52:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:52:46.951+03	2021-05-27 04:52:46.958+03	
440affb4-43fe-b874-5025-bfaca4ddf5e4	2021-05-27 04:53:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:53:06.951+03	2021-05-27 04:53:06.958+03	
1de01261-a2f6-28d3-bae9-08013a672821	2021-05-27 04:53:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:53:26.951+03	2021-05-27 04:53:26.958+03	
32a55439-2cae-a38c-b577-b9d5c3fc607e	2021-05-27 04:53:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:53:46.951+03	2021-05-27 04:53:46.958+03	
26e9a539-6706-98a1-434e-99e800022dbf	2021-05-27 04:54:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:54:06.951+03	2021-05-27 04:54:06.96+03	
54fc9432-b98b-dbe4-3226-ccc17ad880a9	2021-05-27 04:54:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:54:27.951+03	2021-05-27 04:54:27.959+03	
a93a10ef-0184-266f-1e1e-41de8342a932	2021-05-27 04:54:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:54:48.951+03	2021-05-27 04:54:48.958+03	
99a06148-f7a9-b6c1-5c79-3a4d534ffe6f	2021-05-27 04:55:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:55:09.951+03	2021-05-27 04:55:09.958+03	
6e188577-8eb6-b991-57c4-bb509e1ed1e6	2021-05-27 04:55:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:55:19.951+03	2021-05-27 04:55:19.958+03	
aed0a700-e1cf-a537-1815-b5b6adb9df0d	2021-05-27 04:55:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:55:39.951+03	2021-05-27 04:55:39.958+03	
670eb3ed-c381-1c13-b3bf-a7a855759295	2021-05-27 04:55:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:55:59.951+03	2021-05-27 04:55:59.958+03	
fdd53443-e560-7fa8-1a68-cbc7f0965ee7	2021-05-27 04:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:56:19.951+03	2021-05-27 04:56:19.958+03	
2e8752e9-d19b-aa5e-af64-c84e470da671	2021-05-27 04:56:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:56:39.951+03	2021-05-27 04:56:39.958+03	
e5317ab1-0b88-b430-0350-786674726215	2021-05-27 04:56:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:56:59.951+03	2021-05-27 04:56:59.959+03	
708743de-d41e-12c3-f1c4-c9f30d20240a	2021-05-27 04:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:57:19.951+03	2021-05-27 04:57:19.958+03	
1d6c2ca7-6542-28e8-a91e-4935062a295c	2021-05-27 04:57:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:57:39.951+03	2021-05-27 04:57:39.959+03	
819c2924-343e-6c38-46df-3ff7d105003c	2021-05-27 04:57:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:57:59.951+03	2021-05-27 04:57:59.958+03	
bfaac808-9fda-b71d-63c1-87d8a49fb242	2021-05-27 04:58:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:58:19.951+03	2021-05-27 04:58:19.958+03	
48556e0d-0200-c09f-7464-d0a2c990067e	2021-05-27 04:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:58:39.951+03	2021-05-27 04:58:39.958+03	
6030375d-11c9-ac34-7dee-8343bec306c2	2021-05-27 04:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:58:59.951+03	2021-05-27 04:58:59.958+03	
204a3f14-328a-56a0-190e-671cb3881dca	2021-05-27 04:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:59:19.951+03	2021-05-27 04:59:19.959+03	
709a3c89-ac7e-af7a-3e08-94051e475630	2021-05-27 04:59:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:59:39.951+03	2021-05-27 04:59:39.959+03	
a3fa21c8-858d-69a0-d925-643f907c9de8	2021-05-27 04:59:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:59:59.951+03	2021-05-27 04:59:59.959+03	
5587e832-87bc-bd77-e906-29b1b6e46915	2021-05-27 05:00:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:00:09.951+03	2021-05-27 05:00:09.958+03	
880f2707-bd28-ae3e-09fb-40fb93854935	2021-05-27 05:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:00:29.951+03	2021-05-27 05:00:29.959+03	
dee30363-50b9-0093-88bd-1912732a24a7	2021-05-27 05:00:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:00:49.951+03	2021-05-27 05:00:49.958+03	
7f672b31-ef1c-1225-64c7-554035675d2c	2021-05-27 05:01:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:01:09.951+03	2021-05-27 05:01:09.958+03	
de186967-2382-5fd7-6e7c-4b33d9abda7a	2021-05-27 05:01:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:01:29.951+03	2021-05-27 05:01:29.958+03	
25880056-a698-d45f-82df-73168eee41ee	2021-05-27 05:01:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:01:49.951+03	2021-05-27 05:01:49.958+03	
74ff936b-67cd-9dba-5044-74630ef99eb2	2021-05-27 05:02:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:02:09.951+03	2021-05-27 05:02:09.959+03	
a92a37d0-1642-887a-61cc-a095b62dc369	2021-05-27 05:02:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:02:29.951+03	2021-05-27 05:02:29.958+03	
b293c509-d920-617b-44cc-c07d6fff5d56	2021-05-27 05:02:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:02:49.952+03	2021-05-27 05:02:49.961+03	
7dc2c9e9-d66f-46c6-fbb7-4b0c7e577f7a	2021-05-27 05:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:03:10.951+03	2021-05-27 05:03:10.957+03	
befca0b8-cda0-5e81-3b6c-847712c42223	2021-05-27 05:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:03:30.951+03	2021-05-27 05:03:30.958+03	
7c144224-c66a-6053-b074-41c676893a9a	2021-05-27 05:03:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:03:50.951+03	2021-05-27 05:03:50.957+03	
a12dc647-df47-ef28-c027-b0ec455b5ff0	2021-05-27 04:43:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:43:44.951+03	2021-05-27 04:43:44.957+03	
e4734892-0519-1ca8-3a64-bec2ddec529f	2021-05-27 04:44:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:44:04.951+03	2021-05-27 04:44:04.958+03	
81d03196-f89d-6e28-589f-e944db27b32b	2021-05-27 04:44:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:44:24.951+03	2021-05-27 04:44:24.959+03	
b26e890d-0b90-651a-09dc-8e4effcffba3	2021-05-27 04:44:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:44:44.951+03	2021-05-27 04:44:44.958+03	
0a498ad8-4492-41b8-bf15-a83bb7aaa74a	2021-05-27 04:45:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:45:04.951+03	2021-05-27 04:45:04.959+03	
f8cb9c9d-0b43-9d28-d020-d8c54cedf3f8	2021-05-27 04:45:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:45:24.951+03	2021-05-27 04:45:24.963+03	
5dfa02b2-d73b-9692-b632-d11c7b5f3193	2021-05-27 04:45:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:45:44.951+03	2021-05-27 04:45:44.958+03	
e5de6a0c-59dd-6828-faba-e200179b625c	2021-05-27 04:46:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:46:04.951+03	2021-05-27 04:46:04.959+03	
7e6f3656-c564-20f4-0a80-9bc015e73f9f	2021-05-27 04:46:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:46:24.951+03	2021-05-27 04:46:24.96+03	
9f76f4c7-afc8-2262-28bc-a7f5f1da55be	2021-05-27 04:46:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:46:44.951+03	2021-05-27 04:46:44.958+03	
8555a534-9f2e-d401-2c53-cfcf92b5be98	2021-05-27 04:47:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:47:04.951+03	2021-05-27 04:47:05.206+03	
e9938770-a6eb-469e-c0c7-94efe7ffcfb3	2021-05-27 04:47:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:47:24.951+03	2021-05-27 04:47:24.957+03	
b735e9d8-7639-a90e-82c6-46de93cb2f05	2021-05-27 04:47:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:47:44.951+03	2021-05-27 04:47:44.958+03	
e324131f-4665-08de-98d5-0d4022d6b023	2021-05-27 04:48:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:48:04.951+03	2021-05-27 04:48:04.958+03	
5684776d-974f-0ace-0c44-352f90d4c1b7	2021-05-27 04:48:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:48:24.951+03	2021-05-27 04:48:24.958+03	
7490d558-b1c8-949b-d39a-fb06e324ffa4	2021-05-27 04:48:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:48:44.951+03	2021-05-27 04:48:44.959+03	
82adf2f0-be31-e789-8afe-ecb6392ee80a	2021-05-27 04:49:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:49:05.951+03	2021-05-27 04:49:05.958+03	
87872e65-ad95-8ef0-3f3c-6acb402ad003	2021-05-27 04:49:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:49:25.951+03	2021-05-27 04:49:25.958+03	
25096dbf-14bb-57d6-a8fc-1bcb6744fa7c	2021-05-27 04:49:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:49:45.951+03	2021-05-27 04:49:45.96+03	
ec52f743-1445-ff61-c674-9537ef542795	2021-05-27 04:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 04:50:00.951+03	2021-05-27 04:50:00.957+03	ERROR
bd5d26dc-500b-e702-00f5-1671b226ae47	2021-05-27 04:50:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:50:16.951+03	2021-05-27 04:50:16.957+03	
b2eded5e-2600-9d7f-53bb-a7e5e44683cf	2021-05-27 04:50:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:50:36.951+03	2021-05-27 04:50:36.959+03	
a23389e0-6bbb-3e07-ad91-537b028b5453	2021-05-27 04:50:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:50:56.951+03	2021-05-27 04:50:56.957+03	
baaeac55-469b-b1f7-8858-35ec53806770	2021-05-27 04:51:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:51:16.951+03	2021-05-27 04:51:16.958+03	
7c5db9c0-e0fc-34fa-01c7-90b2a0edf13f	2021-05-27 04:51:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:51:36.951+03	2021-05-27 04:51:36.962+03	
6b780bb5-5023-0c5c-cdfc-e92848ab162c	2021-05-27 04:51:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:51:56.951+03	2021-05-27 04:51:56.959+03	
1c314a5f-7daa-fa8d-4264-268ad4b08803	2021-05-27 04:52:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:52:16.951+03	2021-05-27 04:52:16.957+03	
5541c1e1-267d-8fb3-9de5-09c56edfbc5e	2021-05-27 04:52:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:52:36.951+03	2021-05-27 04:52:36.96+03	
0df64183-7df9-67e5-211b-a1c3d2375a24	2021-05-27 04:52:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:52:56.951+03	2021-05-27 04:52:56.958+03	
60121fdf-d07f-d49e-d4f3-aefb452d345f	2021-05-27 04:53:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:53:16.951+03	2021-05-27 04:53:16.959+03	
f77f6fa6-38bf-77cb-7bdb-487a8028ba23	2021-05-27 04:53:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:53:36.951+03	2021-05-27 04:53:36.96+03	
2f2dc404-02a0-3b7b-d068-a5bad2087e8f	2021-05-27 04:53:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:53:56.951+03	2021-05-27 04:53:56.959+03	
ebf72c95-d99d-03a0-558a-52fb55a79c96	2021-05-27 04:54:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:54:16.952+03	2021-05-27 04:54:16.959+03	
1399db15-3f48-e6ea-c277-c7859f3c9178	2021-05-27 04:54:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:54:37.952+03	2021-05-27 04:54:37.958+03	
935cf852-5500-7754-b752-2eee3c75fcf5	2021-05-27 04:54:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:54:58.952+03	2021-05-27 04:54:58.958+03	
4ab5b225-a481-dad1-d593-f00c036862db	2021-05-27 04:55:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:55:29.951+03	2021-05-27 04:55:29.957+03	
acc4cdac-bbd5-2660-f030-c292eea8581e	2021-05-27 04:55:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:55:49.951+03	2021-05-27 04:55:49.959+03	
c2ca1510-366c-66a9-eb0f-8f0945f2c645	2021-05-27 04:56:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:56:09.951+03	2021-05-27 04:56:09.958+03	
f08ba0bd-a4ed-e99e-f84e-a87225ac5de9	2021-05-27 04:56:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:56:29.951+03	2021-05-27 04:56:29.958+03	
d889cdc1-7495-b585-a399-73824429cab6	2021-05-27 04:56:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:56:49.951+03	2021-05-27 04:56:49.958+03	
42919bff-d80c-892e-94a1-a9021213aa0d	2021-05-27 04:57:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:57:09.951+03	2021-05-27 04:57:09.962+03	
5b301ba1-bc6a-27e4-8789-11cc2a7f0f26	2021-05-27 04:57:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:57:29.951+03	2021-05-27 04:57:29.959+03	
7c79b6b3-c4ad-60ac-beb1-8ff43b87a5ec	2021-05-27 04:57:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:57:49.951+03	2021-05-27 04:57:49.959+03	
c8400a2e-0dee-2d95-2cd6-04b8f73ae78f	2021-05-27 04:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:58:09.951+03	2021-05-27 04:58:09.959+03	
134b141f-4e33-5b6b-6787-fb98847938b4	2021-05-27 04:58:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:58:29.951+03	2021-05-27 04:58:29.958+03	
08a0c695-b433-2625-f170-2ff654d5fc21	2021-05-27 04:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:58:49.951+03	2021-05-27 04:58:49.957+03	
d615dfc6-c2ea-8317-84a4-6585c5dfcc6d	2021-05-27 04:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:59:09.951+03	2021-05-27 04:59:09.959+03	
5d95a2f5-93df-0554-db53-e476699646b1	2021-05-27 04:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:59:29.951+03	2021-05-27 04:59:29.96+03	
743d5e06-bac4-7dd0-a7db-f7ec4158e3e7	2021-05-27 04:59:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 04:59:49.951+03	2021-05-27 04:59:49.958+03	
02dae5bb-9364-8082-846b-21f241d63cbf	2021-05-27 05:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 05:00:00.951+03	2021-05-27 05:00:00.956+03	ERROR
25a303be-9fe7-5132-be36-cee78dc57f4c	2021-05-27 05:00:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:00:19.951+03	2021-05-27 05:00:19.957+03	
b153eb68-3d5f-f542-eca7-e353542352ab	2021-05-27 05:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:00:39.951+03	2021-05-27 05:00:39.957+03	
dca0c572-ef54-6f43-7d3c-fe6b941495a9	2021-05-27 05:00:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:00:59.951+03	2021-05-27 05:00:59.959+03	
a6a7d924-141b-dba7-70c9-085fa71b1e3b	2021-05-27 05:01:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:01:19.951+03	2021-05-27 05:01:19.961+03	
21bc0d29-2ae0-b7c0-ab9f-4a0228ff1cd7	2021-05-27 05:01:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:01:39.951+03	2021-05-27 05:01:39.958+03	
f72ffbe4-d330-add6-7159-118dbf35ea80	2021-05-27 05:01:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:01:59.951+03	2021-05-27 05:01:59.96+03	
845502f1-2287-459f-1826-f6206c996174	2021-05-27 05:02:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:02:19.951+03	2021-05-27 05:02:19.958+03	
2dd2f34d-4573-0145-5cde-a2b855ac400e	2021-05-27 05:02:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:02:39.951+03	2021-05-27 05:02:39.959+03	
e9b1505f-4d58-a873-5553-3d3175020452	2021-05-27 05:02:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:02:59.952+03	2021-05-27 05:02:59.959+03	
a285e612-b968-f0cc-1b7c-3843fd57c8da	2021-05-27 05:03:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:03:20.951+03	2021-05-27 05:03:20.958+03	
78f12bfb-0187-8875-2d27-055c79902a81	2021-05-27 05:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:03:40.951+03	2021-05-27 05:03:40.959+03	
0fbb43a6-de7a-cf63-465d-0143922ea781	2021-05-27 05:04:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:04:00.951+03	2021-05-27 05:04:00.957+03	
a1b83bf7-5cfe-0423-e127-1ff77c86b7b1	2021-05-27 05:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:04:20.951+03	2021-05-27 05:04:20.959+03	
c50594c1-8b27-8b32-e6a3-b782de727cd5	2021-05-27 05:04:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:04:10.951+03	2021-05-27 05:04:10.958+03	
a72847e1-44e1-cdc8-2bdd-7e6654da8c72	2021-05-27 05:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:04:30.951+03	2021-05-27 05:04:30.959+03	
16d9d9dd-6002-1071-1f69-fa91987af40b	2021-05-27 05:04:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:04:51.951+03	2021-05-27 05:04:51.958+03	
39a5441f-d5e6-b572-df77-a083d4c6d968	2021-05-27 05:05:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:05:11.951+03	2021-05-27 05:05:11.957+03	
27d302f9-cd0f-a6f8-c2eb-d488a8bc8876	2021-05-27 05:05:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:05:31.951+03	2021-05-27 05:05:31.959+03	
de0e134b-f6f1-a62c-8805-5881fa9102bb	2021-05-27 05:05:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:05:51.951+03	2021-05-27 05:05:51.958+03	
52e8ef56-2951-4e48-d244-068c3365590d	2021-05-27 05:06:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:06:11.951+03	2021-05-27 05:06:11.958+03	
f73cd209-8e29-f913-7fb3-13d4b7413ef8	2021-05-27 05:06:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:06:31.951+03	2021-05-27 05:06:31.959+03	
22e1210d-0dcb-b105-274d-06a2702248fc	2021-05-27 05:06:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:06:51.951+03	2021-05-27 05:06:51.958+03	
d22e916d-d250-d7e7-3510-9d59e80af487	2021-05-27 05:07:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:07:11.952+03	2021-05-27 05:07:11.96+03	
cf4a81a7-a73d-d47e-ec63-79a8cc1f55e3	2021-05-27 05:07:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:07:32.951+03	2021-05-27 05:07:32.958+03	
696fcd27-f98f-f28c-dd09-f2f1dd7eca71	2021-05-27 05:07:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:07:52.951+03	2021-05-27 05:07:52.959+03	
bf87281d-10d5-eec9-0c79-f7efd33db86f	2021-05-27 05:08:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:08:12.951+03	2021-05-27 05:08:12.958+03	
18fd9f9d-c71a-d233-6ad5-e71e45b63bb6	2021-05-27 05:08:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:08:33.951+03	2021-05-27 05:08:33.959+03	
184eb88c-6d08-04d4-4103-421e00e4f123	2021-05-27 05:08:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:08:53.952+03	2021-05-27 05:08:53.959+03	
5bfe00c9-3e85-1985-2be3-7522c3b8e69b	2021-05-27 05:09:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:09:14.951+03	2021-05-27 05:09:14.959+03	
718dde7a-d5ac-5b9b-ac65-ca01bfcb602a	2021-05-27 05:09:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:09:34.951+03	2021-05-27 05:09:34.959+03	
afa69667-4b4d-9a7f-db91-fbb09abd886a	2021-05-27 05:09:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:09:54.951+03	2021-05-27 05:09:54.959+03	
2661ecc9-63fe-5f27-95de-041dfa658b45	2021-05-27 05:10:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:10:04.951+03	2021-05-27 05:10:04.958+03	
4d6629e7-6468-beff-0db2-dd9fc851b2e4	2021-05-27 05:10:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:10:24.951+03	2021-05-27 05:10:24.96+03	
c318294a-3720-73c6-f9c5-e82dd61b75b7	2021-05-27 05:10:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:10:44.951+03	2021-05-27 05:10:44.96+03	
9caa7aa2-0312-8d72-07d6-414616ef1da1	2021-05-27 05:11:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:11:04.951+03	2021-05-27 05:11:04.959+03	
50cc32fe-7426-cc15-2e19-cd0e94449576	2021-05-27 05:11:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:11:25.952+03	2021-05-27 05:11:25.961+03	
ac9c82e1-821e-b75f-540c-63e604f9e9cf	2021-05-27 05:11:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:11:46.952+03	2021-05-27 05:11:46.96+03	
103cb332-c2a4-229b-f011-9db3e44dff49	2021-05-27 05:12:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:12:07.952+03	2021-05-27 05:12:07.959+03	
978a6f08-31e8-a2dc-c00b-8c45ff45ff24	2021-05-27 05:12:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:12:28.951+03	2021-05-27 05:12:28.96+03	
06f9ecd4-00c6-4556-ba0c-18446639f0b3	2021-05-27 05:12:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:12:48.951+03	2021-05-27 05:12:48.959+03	
3acc33ad-3172-b87c-ca65-2309d6bd4a41	2021-05-27 05:13:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:13:08.951+03	2021-05-27 05:13:08.958+03	
18b68656-5cec-f16a-a4c4-42abe1528d01	2021-05-27 05:13:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:13:28.951+03	2021-05-27 05:13:28.957+03	
b61e622d-fddc-eb20-75ff-cee91d9642e0	2021-05-27 05:13:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:13:48.952+03	2021-05-27 05:13:48.958+03	
934f1d1e-c4a4-6cb2-c466-6ca035ff9b12	2021-05-27 05:14:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:14:09.951+03	2021-05-27 05:14:09.959+03	
56f71037-cd6f-ad37-f5cb-5d4796fe56e2	2021-05-27 05:14:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:14:29.951+03	2021-05-27 05:14:29.958+03	
32cedf00-be0d-ef93-b880-f1d6070ca690	2021-05-27 05:14:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:14:49.951+03	2021-05-27 05:14:49.958+03	
8b3f3a7b-7dcd-e2ad-0360-55bdc6b6193f	2021-05-27 05:15:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:15:09.951+03	2021-05-27 05:15:09.96+03	
0215eb9f-91a8-b84c-a603-4e7409446ba9	2021-05-27 05:15:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:15:29.951+03	2021-05-27 05:15:29.958+03	
f6343f5e-a935-8cc6-ebd2-9f7c705d376c	2021-05-27 05:15:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:15:49.951+03	2021-05-27 05:15:49.959+03	
2bc36366-421f-8063-7de0-97c9cc108bfa	2021-05-27 05:16:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:16:09.951+03	2021-05-27 05:16:09.958+03	
aed47615-e9c9-96aa-245b-6e8c9caa96d8	2021-05-27 05:16:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:16:29.951+03	2021-05-27 05:16:29.959+03	
6b163f8e-dd1a-dbfa-2181-b79c107e8617	2021-05-27 05:16:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:16:49.951+03	2021-05-27 05:16:49.958+03	
37cd569b-21c0-f016-cc04-9ab9a7e3be41	2021-05-27 05:17:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:17:10.951+03	2021-05-27 05:17:10.958+03	
ba1d38ab-2d1c-c3c8-2228-be549e2587d3	2021-05-27 05:17:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:17:30.951+03	2021-05-27 05:17:30.958+03	
08f03da5-f0af-4b39-82d1-42dfb49e6a89	2021-05-27 05:17:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:17:50.951+03	2021-05-27 05:17:50.959+03	
224085b3-b2c5-86d3-896d-30594fd9b727	2021-05-27 05:18:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:18:10.952+03	2021-05-27 05:18:10.958+03	
d47b1a36-4bb9-7d3a-06d6-d6bf530b73c4	2021-05-27 05:18:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:18:31.951+03	2021-05-27 05:18:31.957+03	
8bb22745-a0d3-ee02-2871-419225d01f57	2021-05-27 05:18:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:18:51.951+03	2021-05-27 05:18:51.959+03	
270d3caa-3a45-1f51-62f4-7c72e9c0af31	2021-05-27 05:19:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:19:11.951+03	2021-05-27 05:19:11.96+03	
b7e0bac5-7c01-cd15-237c-cbf45db80159	2021-05-27 05:19:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:19:31.951+03	2021-05-27 05:19:31.958+03	
919425c2-f6ef-fbb3-fc44-6c1e536cc4a2	2021-05-27 05:19:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:19:51.951+03	2021-05-27 05:19:51.959+03	
5230d754-cfa8-da3d-7178-0230ee46707c	2021-05-27 05:20:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:20:01.951+03	2021-05-27 05:20:01.962+03	
04267bfc-ddd4-db68-a852-65ae415d7132	2021-05-27 05:20:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:20:21.951+03	2021-05-27 05:20:21.958+03	
9482093e-6167-f72e-4015-899d961a3b1e	2021-05-27 05:20:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:20:41.951+03	2021-05-27 05:20:41.959+03	
00a05fde-6646-0874-5e5f-22c996d1a708	2021-05-27 05:21:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:21:01.951+03	2021-05-27 05:21:01.958+03	
276e1fad-fdd0-d988-3fd4-c1b13f65d2be	2021-05-27 05:21:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:21:21.951+03	2021-05-27 05:21:21.958+03	
602ee394-56bb-40d2-9852-c07421e2410e	2021-05-27 05:21:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:21:41.951+03	2021-05-27 05:21:41.958+03	
ac40eaac-8233-1a48-b23b-9468cf8e09b4	2021-05-27 05:22:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:22:01.951+03	2021-05-27 05:22:01.957+03	
0feebbfe-7401-d8d1-0113-a2d879065e7c	2021-05-27 05:22:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:22:21.951+03	2021-05-27 05:22:21.957+03	
80745a1e-8085-12ee-236b-5aa613e1f371	2021-05-27 05:22:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:22:41.951+03	2021-05-27 05:22:41.959+03	
4a9fc0b5-2391-1717-6af2-17a771572419	2021-05-27 05:23:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:23:01.951+03	2021-05-27 05:23:01.957+03	
5bbc6ac3-d190-24f0-3512-cb9a38510cd3	2021-05-27 05:23:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:23:21.951+03	2021-05-27 05:23:21.958+03	
ca91df8c-846d-8ccf-2fd8-2e0e16d997e8	2021-05-27 05:23:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:23:41.951+03	2021-05-27 05:23:41.958+03	
8d92b8fc-33f5-8df2-e66b-d22cb86eb778	2021-05-27 05:24:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:24:01.951+03	2021-05-27 05:24:01.958+03	
b241580c-c23c-8461-6407-6cee1dcbab04	2021-05-27 05:24:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:24:21.951+03	2021-05-27 05:24:21.96+03	
2b42fc0d-42eb-cb86-2f17-0a63998c548b	2021-05-27 05:24:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:24:41.951+03	2021-05-27 05:24:41.96+03	
bff8a638-4f6a-bfa1-ba50-fc42dc0a4a49	2021-05-27 05:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:04:40.952+03	2021-05-27 05:04:40.96+03	
8f4a3af2-ab6d-bb36-65b0-69a557674930	2021-05-27 05:05:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:05:01.951+03	2021-05-27 05:05:01.958+03	
ea3fa2cb-ce12-ba68-8501-33ebd8f15901	2021-05-27 05:05:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:05:21.951+03	2021-05-27 05:05:21.961+03	
b1ffe282-b155-e3eb-e838-8ca7e0a9299f	2021-05-27 05:05:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:05:41.951+03	2021-05-27 05:05:41.959+03	
3227f73b-812b-2919-8ad2-b482530db7cb	2021-05-27 05:06:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:06:01.951+03	2021-05-27 05:06:01.959+03	
11e9ab93-54a2-2775-4f30-b54a0d3e0335	2021-05-27 05:06:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:06:21.951+03	2021-05-27 05:06:21.96+03	
a3ac1d04-118f-73a0-312d-421517ae5083	2021-05-27 05:06:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:06:41.951+03	2021-05-27 05:06:41.957+03	
0512af98-bd29-2f0e-e2c7-f9a076b2e708	2021-05-27 05:07:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:07:01.951+03	2021-05-27 05:07:01.958+03	
d0f11dea-cdfd-7383-b72c-f41cc19ac666	2021-05-27 05:07:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:07:22.951+03	2021-05-27 05:07:22.959+03	
d924457a-14d3-fec8-99f9-35a923bb714c	2021-05-27 05:07:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:07:42.951+03	2021-05-27 05:07:43.08+03	
c4ae6c17-811c-fe6a-3330-8540783127a1	2021-05-27 05:08:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:08:02.951+03	2021-05-27 05:08:02.957+03	
0c42b9e4-951d-1f8a-d62e-ad1ef38a7d5f	2021-05-27 05:08:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:08:22.952+03	2021-05-27 05:08:22.959+03	
421d5252-f444-99f5-416f-aaf87348e5bb	2021-05-27 05:08:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:08:43.951+03	2021-05-27 05:08:43.958+03	
66301ecf-abbd-2f78-fe6f-d0d4c33db1f4	2021-05-27 05:09:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:09:04.951+03	2021-05-27 05:09:04.958+03	
e8878938-ee07-a0a2-ee7f-5d1da7d3d529	2021-05-27 05:09:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:09:24.951+03	2021-05-27 05:09:24.957+03	
931ab484-2454-5f05-3595-ef54153ee5b8	2021-05-27 05:09:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:09:44.951+03	2021-05-27 05:09:44.958+03	
6be2ebe4-a3f3-d788-6fcc-d28c975c2c5e	2021-05-27 05:10:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 05:10:00.951+03	2021-05-27 05:10:00.957+03	ERROR
6a697211-1ef3-29c2-5de1-faf4f1a58a97	2021-05-27 05:10:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:10:14.951+03	2021-05-27 05:10:14.961+03	
19ebaad9-b19d-3173-4895-8bf7be56ddb6	2021-05-27 05:10:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:10:34.951+03	2021-05-27 05:10:34.958+03	
a60dd11f-1355-36c4-9a95-cfd1d6ce1f00	2021-05-27 05:10:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:10:54.951+03	2021-05-27 05:10:54.958+03	
531c26f5-8234-0043-3cf0-4eec26377d7e	2021-05-27 05:11:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:11:14.952+03	2021-05-27 05:11:14.959+03	
5d408a3c-88b0-ab06-1db1-9c7cd081b824	2021-05-27 05:11:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:11:36.951+03	2021-05-27 05:11:36.958+03	
572324b0-606b-2331-720e-1f67771e3935	2021-05-27 05:11:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:11:57.952+03	2021-05-27 05:11:57.959+03	
bbb9b94a-d151-8e71-8e09-5113cd28ce6c	2021-05-27 05:12:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:12:17.952+03	2021-05-27 05:12:17.959+03	
fed21fa7-ae4c-4cf1-56cf-f5a6a5fd5379	2021-05-27 05:12:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:12:38.951+03	2021-05-27 05:12:38.959+03	
045f48ed-30e1-c47b-9976-ad5e5072c6f9	2021-05-27 05:12:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:12:58.951+03	2021-05-27 05:12:58.959+03	
e9f2b6f0-da29-556e-f392-015319215678	2021-05-27 05:13:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:13:18.951+03	2021-05-27 05:13:18.957+03	
117cf3dc-5018-081e-445d-9e132e5f8929	2021-05-27 05:13:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:13:38.951+03	2021-05-27 05:13:38.96+03	
7e9c9783-c506-3870-36b4-b8e1379a3726	2021-05-27 05:13:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:13:59.951+03	2021-05-27 05:13:59.958+03	
aef3a9aa-4c3e-bb36-251c-0fc494b2f8ee	2021-05-27 05:14:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:14:19.951+03	2021-05-27 05:14:19.957+03	
b9d40bc1-f18a-4f25-4f58-b7d1ef17e60f	2021-05-27 05:14:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:14:39.951+03	2021-05-27 05:14:39.959+03	
65cd200d-a574-dafb-aa03-4f098fcf0a81	2021-05-27 05:14:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:14:59.951+03	2021-05-27 05:14:59.958+03	
497936ac-ecee-d5d4-7929-594f61dc1936	2021-05-27 05:15:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:15:19.951+03	2021-05-27 05:15:19.959+03	
8655fd9a-6248-f737-1ba5-a57df50469cc	2021-05-27 05:15:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:15:39.951+03	2021-05-27 05:15:39.957+03	
2659766e-30cd-968f-ecca-c1c012ee697e	2021-05-27 05:15:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:15:59.951+03	2021-05-27 05:15:59.958+03	
04454124-66a2-bac4-e93b-9e43b0846bed	2021-05-27 05:16:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:16:19.951+03	2021-05-27 05:16:19.958+03	
f8de9a6b-9ca3-e809-944b-f3ea763f5b01	2021-05-27 05:16:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:16:39.951+03	2021-05-27 05:16:39.958+03	
d5dd6683-f943-2a37-f160-d6b58705f67c	2021-05-27 05:16:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:16:59.952+03	2021-05-27 05:16:59.959+03	
b214fd56-df03-3870-a840-84a9c9662507	2021-05-27 05:17:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:17:20.951+03	2021-05-27 05:17:20.957+03	
a04152f1-1393-5412-42a3-392e78b36c51	2021-05-27 05:17:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:17:40.951+03	2021-05-27 05:17:40.957+03	
1d53930c-1268-0afe-9324-de75cec7d221	2021-05-27 05:18:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:18:00.951+03	2021-05-27 05:18:00.958+03	
03ce1125-3f73-4db0-2ab3-d0359873f12e	2021-05-27 05:18:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:18:21.951+03	2021-05-27 05:18:21.959+03	
0fb10d5b-8c86-b695-e33c-950ae660152f	2021-05-27 05:18:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:18:41.951+03	2021-05-27 05:18:41.958+03	
6aeafe49-bdf9-cb1f-a3e4-d11a8309b971	2021-05-27 05:19:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:19:01.951+03	2021-05-27 05:19:01.96+03	
fc429bed-db1c-90af-ec61-5a4946962248	2021-05-27 05:19:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:19:21.951+03	2021-05-27 05:19:21.959+03	
fef5e721-1a94-8e36-4241-0045020ce215	2021-05-27 05:19:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:19:41.951+03	2021-05-27 05:19:41.958+03	
e211f758-21b3-2c16-9eac-28167d24b629	2021-05-27 05:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 05:20:00.951+03	2021-05-27 05:20:00.957+03	ERROR
52b6e44c-f6c3-1fa9-0244-ff284373da4d	2021-05-27 05:20:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:20:11.951+03	2021-05-27 05:20:11.96+03	
fc874c4b-af99-fd5d-b346-ebc34475ba48	2021-05-27 05:20:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:20:31.951+03	2021-05-27 05:20:31.958+03	
66463d7c-c80b-79b6-c9c0-1e50db9f2841	2021-05-27 05:20:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:20:51.951+03	2021-05-27 05:20:51.96+03	
48f9291b-b4be-cd7a-66c8-ee6285e77fa5	2021-05-27 05:21:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:21:11.951+03	2021-05-27 05:21:11.957+03	
60271627-13e8-eb31-6845-e8ac4f7c75b8	2021-05-27 05:21:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:21:31.951+03	2021-05-27 05:21:31.958+03	
c44b6358-4d5a-d7f9-1f74-3cc6995b5b80	2021-05-27 05:21:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:21:51.951+03	2021-05-27 05:21:51.958+03	
a4c198a6-e821-5e4a-8a1f-c1754a128fe5	2021-05-27 05:22:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:22:11.951+03	2021-05-27 05:22:11.957+03	
870b9c28-8191-c2a9-155c-556911c074db	2021-05-27 05:22:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:22:31.951+03	2021-05-27 05:22:31.958+03	
f58b1b7f-2ba6-2976-ab94-aaf301ef020e	2021-05-27 05:22:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:22:51.951+03	2021-05-27 05:22:51.958+03	
02ab1683-9e60-e821-1528-9b9810887ec6	2021-05-27 05:23:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:23:11.951+03	2021-05-27 05:23:11.957+03	
c7a78a52-f20a-c94e-46a1-9b672d264274	2021-05-27 05:23:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:23:31.951+03	2021-05-27 05:23:31.958+03	
122045b8-a849-8aef-10f0-e406a8509755	2021-05-27 05:23:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:23:51.951+03	2021-05-27 05:23:51.96+03	
ceea6cfd-cbf1-b042-9b1b-216f5239a78f	2021-05-27 05:24:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:24:11.951+03	2021-05-27 05:24:11.958+03	
8271d01f-571f-c0a9-4b20-ca8639f8bb7e	2021-05-27 05:24:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:24:31.951+03	2021-05-27 05:24:31.959+03	
8e230e9a-e11f-c232-fbfd-61fea80851a9	2021-05-27 05:24:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:24:51.951+03	2021-05-27 05:24:51.958+03	
5a09f94f-7a25-4497-b406-5c3e6935fe26	2021-05-27 05:25:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:25:11.951+03	2021-05-27 05:25:11.958+03	
2d9c046f-2c38-5994-feba-6983f91db9ed	2021-05-27 05:25:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:25:01.951+03	2021-05-27 05:25:01.958+03	
373bcd6b-d458-da31-4d6a-a1a4d1e733e5	2021-05-27 05:25:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:25:21.951+03	2021-05-27 05:25:22.271+03	
37a5df63-927c-88d1-0ba4-05bbe5fa96f0	2021-05-27 05:25:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:25:41.951+03	2021-05-27 05:25:41.96+03	
30b49c17-6961-8426-b892-e7778d6fb5f9	2021-05-27 05:26:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:26:01.951+03	2021-05-27 05:26:01.958+03	
53a77264-df6e-a0db-0991-5b07c465705e	2021-05-27 05:26:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:26:21.951+03	2021-05-27 05:26:21.958+03	
44d1adab-26d6-1811-562b-2317a4716669	2021-05-27 05:26:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:26:41.951+03	2021-05-27 05:26:41.959+03	
9e64ede8-7241-3ff8-d9f3-677d5d9a4eed	2021-05-27 05:27:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:27:01.952+03	2021-05-27 05:27:01.96+03	
bad841a4-a2ed-4bc0-01d4-6e4d3c6791b2	2021-05-27 05:27:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:27:22.953+03	2021-05-27 05:27:22.962+03	
fdc4dfa4-0589-ad05-18f6-0ad2a90a75ff	2021-05-27 05:27:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:27:43.951+03	2021-05-27 05:27:43.957+03	
888e424b-320c-c8d4-81e7-46d2a54795e1	2021-05-27 05:28:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:28:03.951+03	2021-05-27 05:28:03.96+03	
c60bad06-aa04-f498-e432-fd5808f1cfef	2021-05-27 05:28:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:28:23.951+03	2021-05-27 05:28:23.959+03	
18d16cc1-dd24-d41e-1cc8-a8c7f944981f	2021-05-27 05:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:28:43.951+03	2021-05-27 05:28:43.958+03	
c8d09a22-1ee8-8eff-b7fb-ec140f23a3c1	2021-05-27 05:29:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:29:04.951+03	2021-05-27 05:29:04.958+03	
3d8ce9e8-cd66-fc78-5784-093bf418e56c	2021-05-27 05:29:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:29:24.952+03	2021-05-27 05:29:24.958+03	
81201bb4-0b4b-a6c9-fc4c-31867ff8c51c	2021-05-27 05:29:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:29:45.951+03	2021-05-27 05:29:45.958+03	
6b2c7fdf-20e5-9b7c-1a7b-a65442f28169	2021-05-27 05:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 05:30:00.951+03	2021-05-27 05:30:00.957+03	ERROR
4b783320-9e9d-6637-d4fd-41379f01d7af	2021-05-27 05:30:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:30:15.951+03	2021-05-27 05:30:15.958+03	
ad81a65d-a227-53bd-90cb-7428eaa3c9ea	2021-05-27 05:30:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:30:36.951+03	2021-05-27 05:30:36.96+03	
ba138dc2-9c15-5de2-1e1d-dc36778f5bc6	2021-05-27 05:30:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:30:56.951+03	2021-05-27 05:30:56.957+03	
915b0277-8227-e016-0025-ba90e5c8ae80	2021-05-27 05:31:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:31:16.951+03	2021-05-27 05:31:16.959+03	
3d5520f3-455c-219c-24ac-4db9a93daf8f	2021-05-27 05:31:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:31:36.951+03	2021-05-27 05:31:36.958+03	
13bb30ef-0955-5ee6-3d14-472edd0c718e	2021-05-27 05:31:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:31:56.951+03	2021-05-27 05:31:56.959+03	
dbdacea2-600a-281f-ff21-d2da417e9da0	2021-05-27 05:32:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:32:16.951+03	2021-05-27 05:32:16.958+03	
627d83f2-8a88-17a3-2d9f-01385e6ef209	2021-05-27 05:32:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:32:36.951+03	2021-05-27 05:32:36.959+03	
1740cca3-206f-9722-0f34-26918db45ac2	2021-05-27 05:32:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:32:56.951+03	2021-05-27 05:32:56.958+03	
55971f25-8e12-db2f-0fab-000869309d1f	2021-05-27 05:33:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:33:16.951+03	2021-05-27 05:33:16.958+03	
430ab832-199a-e846-b01f-d8534f4eb089	2021-05-27 05:33:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:33:36.951+03	2021-05-27 05:33:36.96+03	
20cbd972-cbbb-2f89-5a3b-63dd3dbf2444	2021-05-27 05:33:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:33:56.951+03	2021-05-27 05:33:56.964+03	
741a60aa-0c75-101a-a95f-c3fcc943bbaf	2021-05-27 05:34:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:34:16.951+03	2021-05-27 05:34:16.957+03	
b998cf03-641b-81eb-705d-505cb388321b	2021-05-27 05:34:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:34:36.951+03	2021-05-27 05:34:36.958+03	
eaad04db-a2b5-7c3c-2951-57b45cd1a5ff	2021-05-27 05:34:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:34:56.951+03	2021-05-27 05:34:56.958+03	
41c7e921-5b2b-bbfd-f6ff-ece78ac7add0	2021-05-27 05:35:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:35:16.951+03	2021-05-27 05:35:16.958+03	
403670c8-2091-958e-5517-52baece5b6eb	2021-05-27 05:35:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:35:36.951+03	2021-05-27 05:35:36.958+03	
9529aac9-6c0b-5030-3554-01462d0e6bc9	2021-05-27 05:35:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:35:56.951+03	2021-05-27 05:35:56.958+03	
521f6247-e002-8f60-ea48-768e3a1fded2	2021-05-27 05:36:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:36:16.952+03	2021-05-27 05:36:16.96+03	
b3caee49-7115-60ec-bda9-23f611c79168	2021-05-27 05:36:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:36:37.952+03	2021-05-27 05:36:37.964+03	
bcc63c24-b470-4f08-b2d6-af2c95466eb6	2021-05-27 05:36:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:36:58.951+03	2021-05-27 05:36:58.96+03	
85622d0d-6a56-d7a8-ac6f-d5f5c5e249bb	2021-05-27 05:37:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:37:18.951+03	2021-05-27 05:37:18.958+03	
41c2391e-99b2-cff6-7dd3-ac4338c505c8	2021-05-27 05:37:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:37:38.951+03	2021-05-27 05:37:38.96+03	
a5981dd8-585c-1dee-361e-e65da7347fd4	2021-05-27 05:37:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:37:58.951+03	2021-05-27 05:37:58.957+03	
6edc01cb-2bca-4fc6-49e0-2f849b773d4e	2021-05-27 05:38:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:38:18.951+03	2021-05-27 05:38:18.958+03	
d2dd9581-63d7-25c6-7f6d-125bade6ad79	2021-05-27 05:38:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:38:38.951+03	2021-05-27 05:38:38.96+03	
d30f671e-bae1-facf-ec06-46c6f3b74d9b	2021-05-27 05:38:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:38:58.951+03	2021-05-27 05:38:58.959+03	
9cea8f05-d337-d552-da64-9df79e2d4214	2021-05-27 05:39:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:39:18.951+03	2021-05-27 05:39:18.957+03	
550ec390-fd9e-8b1b-e3b2-f5c9d6942244	2021-05-27 05:39:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:39:38.951+03	2021-05-27 05:39:38.959+03	
cb4e5905-a2ba-acce-e0ec-a554efb08f34	2021-05-27 05:39:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:39:58.951+03	2021-05-27 05:39:58.957+03	
9dc2acdb-787d-e5b2-ec7d-c1c6e79d7799	2021-05-27 05:40:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:40:08.951+03	2021-05-27 05:40:08.957+03	
55839d0b-7b15-a4f4-99ca-88d9f027ea67	2021-05-27 05:40:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:40:28.951+03	2021-05-27 05:40:28.958+03	
20d55274-ef4a-72f3-21e6-1e44908a80c3	2021-05-27 05:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:40:49.951+03	2021-05-27 05:40:49.958+03	
d3d56ab2-652e-c362-0c22-63dd82fcdc94	2021-05-27 05:41:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:41:09.951+03	2021-05-27 05:41:09.958+03	
49aa2755-b011-7a40-4ae0-10bffb030541	2021-05-27 05:41:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:41:29.951+03	2021-05-27 05:41:29.959+03	
67e0ff44-6d01-6c59-d05d-5eb50f85bc50	2021-05-27 05:41:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:41:49.951+03	2021-05-27 05:41:49.959+03	
7da629f3-b591-8939-b60c-478a8118b8f2	2021-05-27 05:42:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:42:09.951+03	2021-05-27 05:42:09.959+03	
576822ac-bcad-dd7d-ee6b-e3a043d2e6a5	2021-05-27 05:42:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:42:29.951+03	2021-05-27 05:42:29.96+03	
13f85567-837f-25b2-ec4e-5b98d78db008	2021-05-27 05:42:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:42:49.951+03	2021-05-27 05:42:49.958+03	
3d740164-04cf-533e-23a3-93e92d96851f	2021-05-27 05:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:43:09.951+03	2021-05-27 05:43:09.959+03	
a64ac502-5a1a-35a2-cbf0-89b5f87bbf27	2021-05-27 05:43:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:43:29.951+03	2021-05-27 05:43:29.96+03	
dae59533-0bea-5e39-e87c-990bccaa6069	2021-05-27 05:43:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:43:49.952+03	2021-05-27 05:43:49.96+03	
060423e4-6547-1a97-19b9-291bbe2726f8	2021-05-27 05:44:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:44:10.951+03	2021-05-27 05:44:10.958+03	
1636c0b7-12b2-f0ac-72cf-24612573f852	2021-05-27 05:44:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:44:30.951+03	2021-05-27 05:44:30.96+03	
d0516f6d-bd79-ba17-3f51-999d9f5b9a33	2021-05-27 05:44:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:44:50.951+03	2021-05-27 05:44:50.958+03	
685f8ca5-c725-77fc-43de-efcf92b4b3ff	2021-05-27 05:45:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:45:10.951+03	2021-05-27 05:45:10.958+03	
629e6ee5-e55d-a7ff-1533-7e9bb9f27698	2021-05-27 05:45:30.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:45:30.952+03	2021-05-27 05:45:30.961+03	
01599ea1-d666-0440-6c94-c418725d4cd4	2021-05-27 05:25:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:25:31.951+03	2021-05-27 05:25:31.958+03	
0c4d4fb0-12e8-3aee-93c6-60482a2a6909	2021-05-27 05:25:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:25:51.951+03	2021-05-27 05:25:51.958+03	
71166b6a-0073-1b0c-17ce-ddc94c32703b	2021-05-27 05:26:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:26:11.951+03	2021-05-27 05:26:11.958+03	
f75864e1-6bfa-6122-4d1d-7bc264b2e7fa	2021-05-27 05:26:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:26:31.951+03	2021-05-27 05:26:31.957+03	
69d4330c-d115-82d4-090a-1fa97e9f82cf	2021-05-27 05:26:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:26:51.951+03	2021-05-27 05:26:51.957+03	
535719e4-ed24-f5f0-f990-522aeb9fc335	2021-05-27 05:27:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:27:12.951+03	2021-05-27 05:27:12.959+03	
f8694b32-6d04-f662-3ee5-bc389662d8f7	2021-05-27 05:27:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:27:33.951+03	2021-05-27 05:27:33.959+03	
c5f3ee8e-f19c-f682-b8a0-a0d875d5dee0	2021-05-27 05:27:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:27:53.951+03	2021-05-27 05:27:53.958+03	
42ce7f97-9ad3-629b-40de-ef19293010b5	2021-05-27 05:28:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:28:13.951+03	2021-05-27 05:28:13.96+03	
ae882642-556c-6e65-80b2-a62858bc5cf0	2021-05-27 05:28:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:28:33.951+03	2021-05-27 05:28:33.958+03	
f255a43f-71a7-e2a0-e1a1-f915bada6aab	2021-05-27 05:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:28:53.952+03	2021-05-27 05:28:53.958+03	
95cabdab-ee49-eccf-3f76-0b6369886cb4	2021-05-27 05:29:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:29:14.951+03	2021-05-27 05:29:14.961+03	
d6ddbd13-97aa-7547-b2ea-b0742e8c0581	2021-05-27 05:29:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:29:35.951+03	2021-05-27 05:29:35.961+03	
6aed41b7-a505-60e8-802a-2f31b3d0e885	2021-05-27 05:29:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:29:55.951+03	2021-05-27 05:29:55.96+03	
5ec925a0-21e2-865e-7c13-574984ed4589	2021-05-27 05:30:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:30:05.951+03	2021-05-27 05:30:05.96+03	
5b8672f5-d860-3cc2-a749-f702e131accc	2021-05-27 05:30:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:30:25.952+03	2021-05-27 05:30:25.959+03	
53b72d81-660e-9d0c-a090-4dde850134ab	2021-05-27 05:30:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:30:46.951+03	2021-05-27 05:30:46.957+03	
adb55136-3814-cf4c-9263-05a5b7e2245e	2021-05-27 05:31:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:31:06.951+03	2021-05-27 05:31:06.96+03	
c003e7c7-4df4-0498-3c44-da6916b93d0b	2021-05-27 05:31:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:31:26.951+03	2021-05-27 05:31:26.958+03	
a3946b26-e9a6-7e01-82a5-0b51c3b75aa0	2021-05-27 05:31:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:31:46.951+03	2021-05-27 05:31:46.958+03	
5a1cb9b1-e42b-05ce-c043-1dc37c41b852	2021-05-27 05:32:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:32:06.951+03	2021-05-27 05:32:06.958+03	
8a9ee8f2-e50c-f696-a783-de404de3447a	2021-05-27 05:32:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:32:26.951+03	2021-05-27 05:32:26.96+03	
e25de71a-d865-5bfe-9d42-2519ed8bcaaa	2021-05-27 05:32:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:32:46.951+03	2021-05-27 05:32:46.957+03	
258f9b8c-f4a4-443c-7b54-2deab596b351	2021-05-27 05:33:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:33:06.951+03	2021-05-27 05:33:06.961+03	
b7ff913a-44fa-b338-7de4-19b4533657aa	2021-05-27 05:33:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:33:26.951+03	2021-05-27 05:33:26.96+03	
45feb0c8-8381-7079-b4cc-f9b38e1ab4ab	2021-05-27 05:33:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:33:46.951+03	2021-05-27 05:33:46.958+03	
d83069f0-df2e-fe53-3ab5-ca755e862698	2021-05-27 05:34:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:34:06.951+03	2021-05-27 05:34:06.958+03	
a347966d-c211-be76-a291-f586a3d0b067	2021-05-27 05:34:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:34:26.951+03	2021-05-27 05:34:26.958+03	
22b86078-5dbe-4dd0-aa9d-8dbe8d2ede5d	2021-05-27 05:34:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:34:46.951+03	2021-05-27 05:34:46.958+03	
ce85ceb8-551f-bfc8-e717-f3c0647f1a4b	2021-05-27 05:35:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:35:06.951+03	2021-05-27 05:35:06.959+03	
b3648bf4-42b3-d835-511c-2e6bde4db646	2021-05-27 05:35:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:35:26.951+03	2021-05-27 05:35:26.958+03	
6cdaea8c-17be-d726-060b-3edb9eaf27ce	2021-05-27 05:35:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:35:46.951+03	2021-05-27 05:35:46.957+03	
f4746955-1d07-02bd-82ad-847b5e51b044	2021-05-27 05:36:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:36:06.951+03	2021-05-27 05:36:06.96+03	
2cb74745-e90a-6050-85e7-230110824ef5	2021-05-27 05:36:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:36:27.951+03	2021-05-27 05:36:27.959+03	
e1129914-807a-9866-32bb-aef8a6a1cbe6	2021-05-27 05:36:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:36:48.951+03	2021-05-27 05:36:48.958+03	
5e538278-e016-c147-6d7c-507ee7e3c30d	2021-05-27 05:37:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:37:08.951+03	2021-05-27 05:37:08.959+03	
06355ddb-4004-10d9-2df9-ab2e85921e6e	2021-05-27 05:37:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:37:28.951+03	2021-05-27 05:37:28.96+03	
5158a1d2-11ab-ea2c-74c1-528d95da5e63	2021-05-27 05:37:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:37:48.951+03	2021-05-27 05:37:48.958+03	
9b747881-2794-d38a-9959-43f314e24bdf	2021-05-27 05:38:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:38:08.951+03	2021-05-27 05:38:08.962+03	
42069674-1ce7-40ba-0882-b710dd1d50bf	2021-05-27 05:38:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:38:28.951+03	2021-05-27 05:38:28.96+03	
1a060059-98ef-0b4f-be61-be1a700eb2f0	2021-05-27 05:38:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:38:48.951+03	2021-05-27 05:38:48.959+03	
c3fb33f8-88b2-df3d-a35b-3ae8e0271ab3	2021-05-27 05:39:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:39:08.951+03	2021-05-27 05:39:08.96+03	
e6bd1688-16a0-7928-f726-f006209ba0d3	2021-05-27 05:39:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:39:28.951+03	2021-05-27 05:39:28.964+03	
3abc2e03-02dd-5329-cd78-0eb424ba3b28	2021-05-27 05:39:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:39:48.951+03	2021-05-27 05:39:48.96+03	
9e23380c-ce48-3ef5-7c7b-fe458e33d55b	2021-05-27 05:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 05:40:00.951+03	2021-05-27 05:40:00.956+03	ERROR
a762f62c-a51b-eb61-f8ef-099518889ae2	2021-05-27 05:40:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:40:18.951+03	2021-05-27 05:40:18.989+03	
91441462-05f7-dc84-607c-991d9f5c62c3	2021-05-27 05:40:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:40:38.952+03	2021-05-27 05:40:38.959+03	
d6e51c48-6bde-1337-a83e-99c4ee2392ac	2021-05-27 05:40:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:40:59.951+03	2021-05-27 05:40:59.959+03	
f1958e6e-3f30-8d6c-4f63-d3f91d89ad80	2021-05-27 05:41:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:41:19.951+03	2021-05-27 05:41:19.957+03	
280f2bb1-b0e0-fa36-078f-705f01df3022	2021-05-27 05:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:41:39.951+03	2021-05-27 05:41:39.959+03	
643e2685-6a2c-832a-e589-2820e9115b40	2021-05-27 05:41:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:41:59.951+03	2021-05-27 05:41:59.959+03	
38800c9c-7e94-7041-c225-0e0c76e93a20	2021-05-27 05:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:42:19.951+03	2021-05-27 05:42:19.958+03	
135dc02e-f5cf-eceb-ed5a-8aa69d57c986	2021-05-27 05:42:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:42:39.951+03	2021-05-27 05:42:39.959+03	
28d2b7aa-5663-bec7-e141-f4037cb63c37	2021-05-27 05:42:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:42:59.951+03	2021-05-27 05:42:59.959+03	
e9817c4b-2a0f-9c2e-0a96-21edac8f8643	2021-05-27 05:43:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:43:19.951+03	2021-05-27 05:43:19.958+03	
f17f87a2-dca7-f333-662b-aef22418edac	2021-05-27 05:43:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:43:39.951+03	2021-05-27 05:43:39.961+03	
12f8f14f-4ef6-75a7-5c02-25e95572cbb5	2021-05-27 05:44:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:44:00.951+03	2021-05-27 05:44:00.958+03	
6874a210-c2d9-f09b-e094-147b36c5915d	2021-05-27 05:44:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:44:20.951+03	2021-05-27 05:44:20.959+03	
ab1522e6-cca8-3e8b-5f21-37ac9c563e89	2021-05-27 05:44:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:44:40.951+03	2021-05-27 05:44:40.958+03	
e20e8010-14ac-a827-c99e-62ceafe6e35b	2021-05-27 05:45:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:45:00.951+03	2021-05-27 05:45:00.958+03	
360982ba-e772-d23a-d474-d52c9558a5f0	2021-05-27 05:45:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:45:20.951+03	2021-05-27 05:45:20.957+03	
f325ad7d-6ee3-3767-3ba6-a7873e758c03	2021-05-27 05:45:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:45:41.951+03	2021-05-27 05:45:41.959+03	
66813134-4a3c-fcb2-745e-d9f6eabd0c38	2021-05-27 05:46:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:46:01.951+03	2021-05-27 05:46:01.959+03	
8a2db4c5-59ff-8dcd-9303-7ec61fc0e422	2021-05-27 05:45:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:45:51.951+03	2021-05-27 05:45:51.959+03	
35163003-6eed-1ed2-905b-326d86b25dcf	2021-05-27 05:46:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:46:11.951+03	2021-05-27 05:46:11.959+03	
538e54d8-805c-3ffc-61d8-d45b1dda4c48	2021-05-27 05:46:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:46:31.951+03	2021-05-27 05:46:31.957+03	
17b454a3-0f5f-4acb-0e54-63b6cbe5f3a1	2021-05-27 05:46:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:46:51.951+03	2021-05-27 05:46:51.959+03	
27d0915f-f999-c433-c81f-e0794d1c40a2	2021-05-27 05:47:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:47:11.951+03	2021-05-27 05:47:11.958+03	
cdad42e6-3716-6973-e477-1125c3f23ff7	2021-05-27 05:47:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:47:31.951+03	2021-05-27 05:47:31.958+03	
c51aa076-8589-a72c-b3d8-134266901590	2021-05-27 05:47:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:47:51.951+03	2021-05-27 05:47:51.958+03	
34ec672c-e9e2-bb69-94e2-5987027ee235	2021-05-27 05:48:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:48:11.951+03	2021-05-27 05:48:11.959+03	
f81c0a09-d384-8f22-938d-8405088d01ae	2021-05-27 05:48:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:48:31.951+03	2021-05-27 05:48:31.959+03	
3bdb816d-f1ee-a1af-01a6-5a9adbac9cec	2021-05-27 05:48:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:48:51.951+03	2021-05-27 05:48:51.957+03	
233659b0-7f99-2913-26af-b3f89f5a489b	2021-05-27 05:49:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:49:11.951+03	2021-05-27 05:49:11.96+03	
b283decc-cd06-da5e-8dba-28d886378736	2021-05-27 05:49:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:49:31.951+03	2021-05-27 05:49:31.958+03	
2c8087ca-7f15-7fab-b49f-eb36674745e9	2021-05-27 05:49:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:49:51.951+03	2021-05-27 05:49:52.273+03	
4803c2b5-8fbc-d9d0-f2e7-f59a0250924c	2021-05-27 05:50:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:50:01.951+03	2021-05-27 05:50:01.96+03	
ed65b5e6-4467-d3d8-0063-106c29157869	2021-05-27 05:50:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:50:21.951+03	2021-05-27 05:50:21.959+03	
0572bb12-4baa-35bc-d200-b14f074524b3	2021-05-27 05:50:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:50:41.951+03	2021-05-27 05:50:41.958+03	
d224aeef-8976-151c-79a2-2bb2c7f52ddd	2021-05-27 05:51:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:51:01.951+03	2021-05-27 05:51:01.958+03	
7a037e9e-35e2-92d8-2378-0003a6c6b3c6	2021-05-27 05:51:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:51:21.951+03	2021-05-27 05:51:21.959+03	
6e49655f-eded-ea53-2e3e-628456c8a7d4	2021-05-27 05:51:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:51:41.951+03	2021-05-27 05:51:41.959+03	
49303d35-6eca-9381-fe63-64f37a774f4c	2021-05-27 05:52:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:52:01.951+03	2021-05-27 05:52:01.958+03	
69875960-788b-d748-c78d-2db834162389	2021-05-27 05:52:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:52:21.951+03	2021-05-27 05:52:21.958+03	
86210f54-52ed-fee0-f738-34d6fe26de20	2021-05-27 05:52:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:52:41.951+03	2021-05-27 05:52:41.958+03	
28455c0f-ae64-e0ae-7f01-dbb3ee6ab141	2021-05-27 05:53:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:53:01.951+03	2021-05-27 05:53:01.958+03	
5db2253c-4f7b-b50e-920f-87a3f8aa74c8	2021-05-27 05:53:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:53:21.951+03	2021-05-27 05:53:21.959+03	
cca69081-3b2c-04e8-cf9e-5cf19bebe56a	2021-05-27 05:53:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:53:41.951+03	2021-05-27 05:53:41.961+03	
4103a2d2-1629-ed60-3fd1-4549fd14ecd9	2021-05-27 05:54:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:54:01.951+03	2021-05-27 05:54:01.959+03	
8f0b34c3-b82e-5b4e-8230-aedb4d28da7e	2021-05-27 05:54:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:54:21.951+03	2021-05-27 05:54:21.958+03	
de1eda2c-fe21-9be0-c891-92053e514fe5	2021-05-27 05:54:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:54:41.951+03	2021-05-27 05:54:41.959+03	
0d0da25b-bd9e-9f49-4a90-1e691040ef47	2021-05-27 05:55:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:55:01.951+03	2021-05-27 05:55:01.958+03	
0803ca37-997f-eeff-f5c8-bc272f40b76b	2021-05-27 05:55:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:55:21.951+03	2021-05-27 05:55:21.958+03	
4ed9018d-767b-f4c8-8ed3-ddd5f1e6d343	2021-05-27 05:55:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:55:41.951+03	2021-05-27 05:55:41.96+03	
37a79af0-1e36-0d44-2bab-91c5eb49b657	2021-05-27 05:56:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:56:01.951+03	2021-05-27 05:56:01.958+03	
f627d774-a36f-89e3-8d8d-25719da5b7b8	2021-05-27 05:56:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:56:21.951+03	2021-05-27 05:56:21.959+03	
c07f0b7f-811b-e2f2-21d2-b15d514635e3	2021-05-27 05:56:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:56:41.952+03	2021-05-27 05:56:41.96+03	
b791a47f-4266-de31-e0eb-36b347649098	2021-05-27 05:57:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:57:02.951+03	2021-05-27 05:57:02.958+03	
e227b8cc-6e02-087a-f1d2-383aab0ee00c	2021-05-27 05:57:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:57:22.951+03	2021-05-27 05:57:22.96+03	
847407a4-8c96-6caa-6bad-5852da119f56	2021-05-27 05:57:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:57:42.951+03	2021-05-27 05:57:42.959+03	
fd278024-cb6d-b09e-e4db-69a9e21c92c0	2021-05-27 05:58:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:58:02.951+03	2021-05-27 05:58:02.96+03	
adeac958-c77f-da98-5650-2fbcf2c5fad6	2021-05-27 05:58:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:58:22.952+03	2021-05-27 05:58:22.959+03	
962bdeea-2cef-13bb-fc38-c9bc3f446093	2021-05-27 05:58:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:58:43.951+03	2021-05-27 05:58:43.96+03	
ba5461a6-e2cf-0d08-e5db-32614e9bf959	2021-05-27 05:59:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:59:03.951+03	2021-05-27 05:59:03.958+03	
7faccf25-9a60-4dea-250b-e62c8647c39a	2021-05-27 05:59:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:59:23.951+03	2021-05-27 05:59:23.959+03	
d65c364f-336c-374a-8909-1c74e750062e	2021-05-27 05:59:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:59:43.951+03	2021-05-27 05:59:43.958+03	
21a57c42-7d25-9501-ca32-350f0fca84c2	2021-05-27 06:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 06:00:00.951+03	2021-05-27 06:00:00.956+03	ERROR
6f6122f8-b89f-8f12-e6ae-3fb4bc1c4901	2021-05-27 06:00:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:00:13.951+03	2021-05-27 06:00:13.957+03	
62d8ddc3-8eda-9ad6-5e78-72fec5edde6b	2021-05-27 06:00:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:00:33.951+03	2021-05-27 06:00:33.96+03	
633c1b70-16b4-73bd-f59b-079cfc7be02e	2021-05-27 06:00:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:00:53.951+03	2021-05-27 06:00:53.958+03	
048152ee-c387-b902-cb23-59d223f54e3d	2021-05-27 06:01:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:01:13.951+03	2021-05-27 06:01:13.957+03	
2ab740ca-d96b-6eba-1b6d-a24227f733b5	2021-05-27 06:01:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:01:33.951+03	2021-05-27 06:01:33.959+03	
e1de2b61-532a-2b5a-2cac-bc10691dbe53	2021-05-27 06:01:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:01:53.951+03	2021-05-27 06:01:53.958+03	
547f28e8-2635-0e9a-90b6-40abf71e9203	2021-05-27 06:02:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:02:13.951+03	2021-05-27 06:02:13.96+03	
bf9bc363-4109-d4ba-9eb0-35d2417284d8	2021-05-27 06:02:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:02:33.951+03	2021-05-27 06:02:34.19+03	
66559f93-fa37-ebb2-f75c-fb790131b612	2021-05-27 06:02:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:02:53.951+03	2021-05-27 06:02:53.957+03	
3c82cf74-37f7-5f8b-1c13-f068378c7010	2021-05-27 06:03:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:03:13.951+03	2021-05-27 06:03:13.96+03	
362f7b81-c9d3-005e-b1c4-5d63ef273fd2	2021-05-27 06:03:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:03:33.951+03	2021-05-27 06:03:33.964+03	
12d3092c-0185-9a5a-a13a-70381cde39b4	2021-05-27 06:03:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:03:53.951+03	2021-05-27 06:03:53.961+03	
9478be5e-b46b-8f00-1b54-288164d4593d	2021-05-27 06:04:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:04:13.951+03	2021-05-27 06:04:13.959+03	
0c88938d-0050-7668-09cc-f1743f78b8f4	2021-05-27 06:04:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:04:33.951+03	2021-05-27 06:04:33.96+03	
36e0fd1f-97b1-d9d8-0494-b777aef550d7	2021-05-27 06:04:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:04:53.951+03	2021-05-27 06:04:53.962+03	
8ec19e6b-cac2-3e3d-95e0-5e22d33541a3	2021-05-27 06:05:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:05:13.951+03	2021-05-27 06:05:13.959+03	
3f6dadff-2abd-aa14-11c1-69194c0100da	2021-05-27 06:05:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:05:33.951+03	2021-05-27 06:05:33.963+03	
60329a3f-1016-8f8a-a7d5-42f300a0691b	2021-05-27 06:05:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:05:53.951+03	2021-05-27 06:05:53.958+03	
4d4807fc-933d-c1e8-21b9-2198a5e292d8	2021-05-27 06:06:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:06:13.951+03	2021-05-27 06:06:13.96+03	
04bb7938-6a32-1cbe-f7b5-7704227d23b8	2021-05-27 05:46:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:46:21.951+03	2021-05-27 05:46:21.96+03	
8c952a1c-5fd0-19f3-44a2-6f512c28591f	2021-05-27 05:46:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:46:41.951+03	2021-05-27 05:46:41.958+03	
a7944606-a4b7-e7e8-1bcb-3f76a92ad5fa	2021-05-27 05:47:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:47:01.951+03	2021-05-27 05:47:01.958+03	
8c526548-b990-92a8-cced-e3833f3f2b86	2021-05-27 05:47:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:47:21.951+03	2021-05-27 05:47:21.959+03	
4ee2418a-f253-5b5b-72fe-e563354ec73a	2021-05-27 05:47:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:47:41.951+03	2021-05-27 05:47:41.959+03	
de406b58-e0f3-49ec-3c5a-929db1fb8773	2021-05-27 05:48:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:48:01.951+03	2021-05-27 05:48:01.961+03	
68dafbef-e1a3-21be-c58d-a18f58b5df45	2021-05-27 05:48:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:48:21.951+03	2021-05-27 05:48:21.963+03	
947130e1-cd10-99e8-1bfd-526e82e39f86	2021-05-27 05:48:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:48:41.951+03	2021-05-27 05:48:41.96+03	
af15dd9e-d02a-f1d8-ff6a-64108fa9626a	2021-05-27 05:49:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:49:01.951+03	2021-05-27 05:49:01.959+03	
a3eeaf8d-a9dc-9b1a-7d93-741a401fe564	2021-05-27 05:49:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:49:21.951+03	2021-05-27 05:49:21.959+03	
ef420123-ea83-1b0e-a84a-0dca015e8c9c	2021-05-27 05:49:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:49:41.951+03	2021-05-27 05:49:41.958+03	
79067a48-4437-0eca-cd3b-2e0aae525ac4	2021-05-27 05:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 05:50:00.951+03	2021-05-27 05:50:00.956+03	ERROR
0a751a02-5ce2-9cb4-c15e-7c81819ebc19	2021-05-27 05:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:50:11.951+03	2021-05-27 05:50:11.959+03	
bd3fc0ce-c04a-bf88-b50a-c6a8f35138cf	2021-05-27 05:50:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:50:31.951+03	2021-05-27 05:50:31.961+03	
0316e17d-40ab-1162-6bc8-3ec22d94faaa	2021-05-27 05:50:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:50:51.951+03	2021-05-27 05:50:51.957+03	
802e2418-0b41-4f92-6eb1-6ed20674c085	2021-05-27 05:51:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:51:11.951+03	2021-05-27 05:51:11.959+03	
f7f5f402-c629-a454-6bd5-24dace6396d4	2021-05-27 05:51:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:51:31.951+03	2021-05-27 05:51:31.959+03	
02f04d2b-f600-8fd3-ff01-15d4c80d5b04	2021-05-27 05:51:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:51:51.951+03	2021-05-27 05:51:51.958+03	
f1822dcd-33a3-a90b-3c13-6175f91878b2	2021-05-27 05:52:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:52:11.951+03	2021-05-27 05:52:11.958+03	
92f1aa37-a77a-7548-f306-912ba3a10525	2021-05-27 05:52:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:52:31.951+03	2021-05-27 05:52:31.958+03	
5d1d1bb0-f5da-e9b6-067a-23dc2ccdc28c	2021-05-27 05:52:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:52:51.951+03	2021-05-27 05:52:51.958+03	
b85ed5d8-ff03-f06a-7d05-418cad1dca65	2021-05-27 05:53:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:53:11.951+03	2021-05-27 05:53:11.958+03	
597a6d37-b324-18cc-c51d-cf0f465f899b	2021-05-27 05:53:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:53:31.951+03	2021-05-27 05:53:31.958+03	
115245c7-7224-5c25-284a-cfd1e3ec80a6	2021-05-27 05:53:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:53:51.951+03	2021-05-27 05:53:51.96+03	
9b778a50-26ba-4a92-2281-103d68025e35	2021-05-27 05:54:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:54:11.951+03	2021-05-27 05:54:11.958+03	
eb6fb6d3-98fc-717b-2d32-908ae7f516bb	2021-05-27 05:54:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:54:31.951+03	2021-05-27 05:54:31.957+03	
06ab5695-4fbf-b812-b238-ab8ae97060b4	2021-05-27 05:54:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:54:51.951+03	2021-05-27 05:54:51.958+03	
bd81dcd7-5525-4b1d-dd9b-4ffe0ece9f48	2021-05-27 05:55:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:55:11.951+03	2021-05-27 05:55:11.958+03	
4b758ad5-27a8-845f-87dc-55d6b60c8aa8	2021-05-27 05:55:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:55:31.951+03	2021-05-27 05:55:31.959+03	
0ed14215-15e1-6076-777a-d579bb2bf48a	2021-05-27 05:55:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:55:51.951+03	2021-05-27 05:55:51.958+03	
12df0e8d-b27a-95bb-9b8f-eccdcf8f56bf	2021-05-27 05:56:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:56:11.951+03	2021-05-27 05:56:11.959+03	
dfec947e-240d-34b8-e342-89789c708bb5	2021-05-27 05:56:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:56:31.951+03	2021-05-27 05:56:31.958+03	
029a440b-2ff2-5501-f2b1-302f53c2463c	2021-05-27 05:56:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:56:52.951+03	2021-05-27 05:56:52.967+03	
699ec742-e388-37af-8c9b-c118baa34553	2021-05-27 05:57:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:57:12.951+03	2021-05-27 05:57:12.958+03	
a450cf6d-a451-498a-73fc-0a45add86313	2021-05-27 05:57:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:57:32.951+03	2021-05-27 05:57:32.958+03	
43cc220c-416a-ae6e-0591-b6c30377e967	2021-05-27 05:57:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:57:52.951+03	2021-05-27 05:57:52.959+03	
38f379e3-f589-fd53-f696-afc6d1e6dce5	2021-05-27 05:58:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:58:12.951+03	2021-05-27 05:58:12.959+03	
54c1bc6b-ef94-e3be-aa4d-44fe80d35138	2021-05-27 05:58:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:58:33.951+03	2021-05-27 05:58:33.958+03	
48bc638d-00cd-d43c-c7d9-a07490a5d89f	2021-05-27 05:58:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:58:53.951+03	2021-05-27 05:58:53.96+03	
1d372d03-771c-f698-facb-c76915467220	2021-05-27 05:59:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:59:13.951+03	2021-05-27 05:59:13.959+03	
23b50164-d2ae-ad91-5fe5-f0fdd9798cd7	2021-05-27 05:59:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:59:33.951+03	2021-05-27 05:59:33.958+03	
717d1f06-bc5b-5332-4184-01958b88be3d	2021-05-27 05:59:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 05:59:53.951+03	2021-05-27 05:59:53.961+03	
e6c35563-86c7-6313-bdf7-2b2ecce3399d	2021-05-27 06:00:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:00:03.951+03	2021-05-27 06:00:03.961+03	
c33f0252-f3f2-7940-5be4-5a01fec722df	2021-05-27 06:00:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:00:23.951+03	2021-05-27 06:00:23.958+03	
3dd5734b-861b-a22e-fd9a-de9d01f3f61b	2021-05-27 06:00:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:00:43.951+03	2021-05-27 06:00:43.958+03	
cc211bf1-878c-2fb0-8a74-8077d3441b4d	2021-05-27 06:01:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:01:03.951+03	2021-05-27 06:01:03.959+03	
eb3c11d4-5695-6dd9-699f-f441406c570a	2021-05-27 06:01:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:01:23.951+03	2021-05-27 06:01:23.96+03	
45a025b8-a43a-94b3-6f9c-78061874b552	2021-05-27 06:01:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:01:43.951+03	2021-05-27 06:01:43.957+03	
26756630-3f8e-1921-5d5d-c0a20b362af8	2021-05-27 06:02:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:02:03.951+03	2021-05-27 06:02:03.957+03	
92a8bc41-c414-bd74-3373-a127719ef8b8	2021-05-27 06:02:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:02:23.951+03	2021-05-27 06:02:23.957+03	
a404bbba-5783-f145-4b17-0e89856f1f0f	2021-05-27 06:02:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:02:43.951+03	2021-05-27 06:02:43.958+03	
d5d309aa-f67a-f27c-175c-3b5c87402aa1	2021-05-27 06:03:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:03:03.951+03	2021-05-27 06:03:03.959+03	
dc94a32b-bb26-04aa-5087-7a38a2c65e1f	2021-05-27 06:03:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:03:23.951+03	2021-05-27 06:03:23.958+03	
fc67db07-e3c7-c285-6174-48a29e66693a	2021-05-27 06:03:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:03:43.951+03	2021-05-27 06:03:43.959+03	
4bf55d3c-ab54-5fad-338b-f715c77ba17f	2021-05-27 06:04:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:04:03.951+03	2021-05-27 06:04:03.962+03	
64f97b63-fbd3-6c51-d732-0e44dfb14eb2	2021-05-27 06:04:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:04:23.951+03	2021-05-27 06:04:23.96+03	
a161eaf5-5b85-3708-1fe0-e74d3585fd85	2021-05-27 06:04:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:04:43.951+03	2021-05-27 06:04:43.958+03	
bdb6301c-d06b-4d61-d106-44142313c4c7	2021-05-27 06:05:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:05:03.951+03	2021-05-27 06:05:03.959+03	
ed14a1e0-1844-65b1-dfdd-fbc18ad5c4fb	2021-05-27 06:05:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:05:23.951+03	2021-05-27 06:05:23.958+03	
6dc2b3b9-6b9b-4ecb-eb2d-e0222daa08f5	2021-05-27 06:05:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:05:43.951+03	2021-05-27 06:05:43.958+03	
e55462d1-5eaf-88fd-70ac-3c0a12263d79	2021-05-27 06:06:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:06:03.951+03	2021-05-27 06:06:03.958+03	
4602bc8c-1177-af2c-28ea-4c70a68bfdfc	2021-05-27 06:06:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:06:23.951+03	2021-05-27 06:06:23.958+03	
ce3c1c6e-3558-2c02-2e0f-b83e618372e6	2021-05-27 06:06:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:06:43.951+03	2021-05-27 06:06:43.958+03	
41f6f3af-fda3-947f-9bef-b593e8e5d75f	2021-05-27 06:06:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:06:33.951+03	2021-05-27 06:06:33.96+03	
b6cbff62-cb54-b0f5-84bf-82a90cde9b95	2021-05-27 06:06:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:06:53.951+03	2021-05-27 06:06:53.958+03	
4571ada5-eaf0-a490-cd31-8bfc3fba0d93	2021-05-27 06:07:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:07:13.951+03	2021-05-27 06:07:13.959+03	
39b60281-c2e3-5ab1-0ed9-1303f00fee0b	2021-05-27 06:07:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:07:33.951+03	2021-05-27 06:07:33.96+03	
7d3d42ef-ae0c-7885-fc0d-a283429bdb9f	2021-05-27 06:07:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:07:53.951+03	2021-05-27 06:07:53.958+03	
2343a46c-8a34-86b8-b94c-b701d315c215	2021-05-27 06:08:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:08:13.951+03	2021-05-27 06:08:13.958+03	
e768445c-dd6f-b12b-0b7f-c05e1dfc05ba	2021-05-27 06:08:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:08:33.951+03	2021-05-27 06:08:33.958+03	
ce4d67d6-76d5-40f5-8834-0788cd4d5eeb	2021-05-27 06:08:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:08:53.951+03	2021-05-27 06:08:53.958+03	
06a04cf3-0a64-ca4d-e180-72402f5940b1	2021-05-27 06:09:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:09:13.951+03	2021-05-27 06:09:13.957+03	
f0557d4e-8fc1-db2b-695c-8e7b9f5ab485	2021-05-27 06:09:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:09:33.951+03	2021-05-27 06:09:33.959+03	
47cf869f-5078-ca62-fc7d-2308605f9973	2021-05-27 06:09:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:09:53.951+03	2021-05-27 06:09:53.966+03	
b6821704-f2ab-8881-85ff-ba3974e34afd	2021-05-27 06:10:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:10:03.951+03	2021-05-27 06:10:03.959+03	
5247c85a-1342-5d8b-6333-f8c1d5691cce	2021-05-27 06:10:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:10:23.951+03	2021-05-27 06:10:23.958+03	
60f34af3-8835-b2f4-736e-179dea641afb	2021-05-27 06:10:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:10:43.951+03	2021-05-27 06:10:43.96+03	
78981453-2dfe-d566-7f0e-8a3d501e25d1	2021-05-27 06:11:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:11:03.952+03	2021-05-27 06:11:03.964+03	
f008c6e5-33e6-fb0d-b1e7-f82826ee8ce9	2021-05-27 06:11:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:11:24.951+03	2021-05-27 06:11:24.958+03	
f104ed4c-5446-962e-d64a-c46e47e6f5fb	2021-05-27 06:11:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:11:44.952+03	2021-05-27 06:11:44.959+03	
fe2ba59f-c88a-2b2d-449c-b0f06816d823	2021-05-27 06:12:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:12:05.951+03	2021-05-27 06:12:05.958+03	
39140918-06f4-2b78-49b3-3a4f5012db4b	2021-05-27 06:12:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:12:25.951+03	2021-05-27 06:12:25.959+03	
8b223752-73a2-befa-a784-4d8ad7c26da3	2021-05-27 06:12:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:12:45.951+03	2021-05-27 06:12:45.959+03	
31a190dc-cf26-a112-5ba5-05de3f5fa77f	2021-05-27 06:13:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:13:05.951+03	2021-05-27 06:13:05.958+03	
8ed15195-b676-f244-2c2a-b7229bf952d2	2021-05-27 06:13:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:13:25.951+03	2021-05-27 06:13:25.959+03	
81782d0f-dde1-1880-2791-ce952c4c775b	2021-05-27 06:13:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:13:45.951+03	2021-05-27 06:13:45.959+03	
b6da7202-21c2-249b-d7ec-c0da3aa2d89e	2021-05-27 06:14:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:14:05.951+03	2021-05-27 06:14:05.957+03	
3c381b59-ccc3-612a-65df-bd6e959503b9	2021-05-27 06:14:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:14:25.951+03	2021-05-27 06:14:25.959+03	
8c7d2594-9de3-94c1-307c-9dee42efcbea	2021-05-27 06:14:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:14:45.951+03	2021-05-27 06:14:45.957+03	
abd2bb4d-da5f-bc6e-d4d1-9e606199960b	2021-05-27 06:15:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:15:05.951+03	2021-05-27 06:15:05.959+03	
ff406dfd-0889-fb3f-dde0-93a34d9e976c	2021-05-27 06:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:15:25.951+03	2021-05-27 06:15:25.959+03	
3d881d53-6ecc-8d67-f3ae-8c473e21e2bb	2021-05-27 06:15:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:15:45.951+03	2021-05-27 06:15:45.959+03	
efe6e0d0-3025-6620-f8d6-00e7f58a8b67	2021-05-27 06:16:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:16:05.951+03	2021-05-27 06:16:05.958+03	
cffebf3b-5bdb-b883-78b9-7cbceaffc4f4	2021-05-27 06:16:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:16:25.951+03	2021-05-27 06:16:25.959+03	
66f77a4a-ba8f-e007-23e5-9b7329a7ad0c	2021-05-27 06:16:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:16:45.951+03	2021-05-27 06:16:45.958+03	
403368dc-5ff1-a6d3-c7d2-4b9b8308666c	2021-05-27 06:17:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:17:05.951+03	2021-05-27 06:17:05.96+03	
d572b4dd-5f8c-cf6d-34e6-54ff7414946a	2021-05-27 06:17:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:17:25.952+03	2021-05-27 06:17:25.961+03	
363795f3-1d11-01c0-2e25-b0e8cd56e780	2021-05-27 06:17:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:17:46.951+03	2021-05-27 06:17:46.958+03	
36f33257-93f1-d9f3-1c06-05a95c2897a1	2021-05-27 06:18:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:18:06.951+03	2021-05-27 06:18:06.959+03	
3bc178dd-e04e-0273-ee37-fe00285ac8a3	2021-05-27 06:18:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:18:26.951+03	2021-05-27 06:18:26.959+03	
fe6b1839-d7a7-483c-6166-057ab1df4ce6	2021-05-27 06:18:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:18:46.951+03	2021-05-27 06:18:46.958+03	
aa15626a-939e-44c0-f0e0-d7b1919f46d5	2021-05-27 06:19:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:19:06.951+03	2021-05-27 06:19:06.958+03	
ff8d93b4-2f8a-641b-4911-e599008e85d9	2021-05-27 06:19:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:19:26.951+03	2021-05-27 06:19:26.959+03	
1f46fb44-4b1a-b775-bda3-1e628eb8cf68	2021-05-27 06:19:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:19:46.951+03	2021-05-27 06:19:46.96+03	
7270d962-2534-908a-6f75-ae37f4a0983a	2021-05-27 06:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 06:20:00.951+03	2021-05-27 06:20:00.957+03	ERROR
28d8750f-16c3-88be-6747-0e2648984316	2021-05-27 06:20:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:20:16.952+03	2021-05-27 06:20:16.959+03	
ae901197-7e40-592e-73db-c56478d11d85	2021-05-27 06:20:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:20:38.951+03	2021-05-27 06:20:38.962+03	
46c0a2b1-6815-0e6b-0547-b5730ec61e4e	2021-05-27 06:20:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:20:58.951+03	2021-05-27 06:20:58.96+03	
f72e4273-57b3-e0da-e700-df2e4ad75857	2021-05-27 06:21:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:21:18.951+03	2021-05-27 06:21:18.96+03	
887fe799-c248-3bb3-a8cb-1b8169dfd836	2021-05-27 06:21:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:21:38.951+03	2021-05-27 06:21:38.958+03	
6f485f52-4895-6b24-16f6-1cd205971d2a	2021-05-27 06:21:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:21:58.951+03	2021-05-27 06:21:58.957+03	
50777305-9b23-ea3f-6ed2-87124d337580	2021-05-27 06:22:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:22:18.951+03	2021-05-27 06:22:18.959+03	
e2c8db14-6789-e90a-07c9-f2e1256dd8d1	2021-05-27 06:22:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:22:38.951+03	2021-05-27 06:22:38.959+03	
97a878e8-61d7-478b-767e-58224a8fcde9	2021-05-27 06:22:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:22:58.951+03	2021-05-27 06:22:58.957+03	
08e2efea-11c1-9ffa-27e5-c2511116ec6c	2021-05-27 06:23:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:23:18.951+03	2021-05-27 06:23:18.958+03	
441da322-20aa-d5e6-27dd-befb4c67dce9	2021-05-27 06:23:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:23:38.951+03	2021-05-27 06:23:38.96+03	
1eb39657-c493-25f7-0f10-1903b0907b53	2021-05-27 06:23:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:23:58.951+03	2021-05-27 06:23:58.959+03	
4c12e049-0e5e-91ca-25b1-2a1d10547c9b	2021-05-27 06:24:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:24:18.951+03	2021-05-27 06:24:18.957+03	
0459c040-b359-baa9-48f7-0b3031873f25	2021-05-27 06:24:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:24:39.951+03	2021-05-27 06:24:39.958+03	
e4e35fee-73a1-08d3-d985-2c2f90e8c183	2021-05-27 06:24:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:24:59.951+03	2021-05-27 06:24:59.958+03	
65952f07-cb64-d5bf-a066-dacd1a8b7fda	2021-05-27 06:25:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:25:20.951+03	2021-05-27 06:25:20.959+03	
54c4b1cc-8d2a-a9f4-8b73-32e46f77edb9	2021-05-27 06:25:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:25:40.951+03	2021-05-27 06:25:40.958+03	
0b8d32b0-b3a8-5e4b-e4b0-4e582b942f4c	2021-05-27 06:26:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:26:01.951+03	2021-05-27 06:26:01.958+03	
4a17ba21-9b28-a60e-5ac9-641234a7e1fa	2021-05-27 06:26:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:26:21.951+03	2021-05-27 06:26:21.958+03	
ca97c5dd-59f2-dd55-b06a-3a378a05a137	2021-05-27 06:26:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:26:41.951+03	2021-05-27 06:26:41.96+03	
e81ef69a-1ab5-c911-bec2-24b536cf0f88	2021-05-27 06:27:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:27:01.951+03	2021-05-27 06:27:01.959+03	
be1a7b85-39c0-d971-c276-c637e45278c8	2021-05-27 06:07:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:07:03.951+03	2021-05-27 06:07:03.959+03	
4ae13da2-92ce-a248-272d-58c97ce55faf	2021-05-27 06:07:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:07:23.951+03	2021-05-27 06:07:23.958+03	
d713a20e-3437-d995-b41b-f21a9773b25e	2021-05-27 06:07:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:07:43.951+03	2021-05-27 06:07:43.958+03	
28204975-e5b4-0af9-520e-9a7078a7d68a	2021-05-27 06:08:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:08:03.951+03	2021-05-27 06:08:03.958+03	
c8b2fb99-9335-687e-4518-e1e31d651eed	2021-05-27 06:08:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:08:23.951+03	2021-05-27 06:08:23.959+03	
ff6e7bdc-ebf7-adf0-36a9-8c0bc5f641e2	2021-05-27 06:08:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:08:43.951+03	2021-05-27 06:08:43.958+03	
eb2ff421-ec57-33f3-562c-a97eb2c4fdaa	2021-05-27 06:09:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:09:03.951+03	2021-05-27 06:09:03.959+03	
2d758cbf-761b-7375-64e2-84a6565af17e	2021-05-27 06:09:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:09:23.951+03	2021-05-27 06:09:23.959+03	
a5009cb2-33e9-fb22-f721-3d927cfde1c1	2021-05-27 06:09:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:09:43.951+03	2021-05-27 06:09:43.958+03	
a974c270-e0ad-ad3d-135f-a754f4eb8229	2021-05-27 06:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 06:10:00.951+03	2021-05-27 06:10:00.956+03	ERROR
338a1850-e399-eb59-e0e6-6be25de00284	2021-05-27 06:10:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:10:13.951+03	2021-05-27 06:10:13.957+03	
4c945504-8d37-b5fb-e44e-ef1541e4b6a3	2021-05-27 06:10:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:10:33.951+03	2021-05-27 06:10:33.962+03	
e71c149b-4877-12fd-ee57-01541583aa5c	2021-05-27 06:10:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:10:53.951+03	2021-05-27 06:10:53.964+03	
4661e32a-15e5-110c-2278-57e913e1e7df	2021-05-27 06:11:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:11:14.951+03	2021-05-27 06:11:14.958+03	
c247011e-9c7a-eb20-cd27-3760f3cae01a	2021-05-27 06:11:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:11:34.951+03	2021-05-27 06:11:34.958+03	
942b4c60-4e6b-984b-efa9-b3ad537d91cb	2021-05-27 06:11:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:11:55.951+03	2021-05-27 06:11:55.958+03	
cdfec0e6-4664-2c93-d2e6-579b672cb04b	2021-05-27 06:12:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:12:15.951+03	2021-05-27 06:12:15.959+03	
b15efc25-8a84-87c5-87bb-01edfa139681	2021-05-27 06:12:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:12:35.951+03	2021-05-27 06:12:35.959+03	
4e79dba9-2bd6-4a1f-78c4-7abb71db51df	2021-05-27 06:12:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:12:55.951+03	2021-05-27 06:12:55.959+03	
ebb591ae-d2dd-600b-113e-e35aca1b93d5	2021-05-27 06:13:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:13:15.951+03	2021-05-27 06:13:15.957+03	
ca1794c9-c211-843a-825d-cabb223e8b76	2021-05-27 06:13:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:13:35.951+03	2021-05-27 06:13:35.959+03	
ed16db59-d9b9-b0ce-96ab-3b9d801ec4b5	2021-05-27 06:13:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:13:55.951+03	2021-05-27 06:13:55.959+03	
f24a4c1b-8fde-ec47-5e8d-724821798b3c	2021-05-27 06:14:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:14:15.951+03	2021-05-27 06:14:15.958+03	
4cfbf737-ea0b-b7ef-e149-31dd39b9227e	2021-05-27 06:14:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:14:35.951+03	2021-05-27 06:14:35.961+03	
c42b2918-ca41-3820-f785-5c7d23410229	2021-05-27 06:14:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:14:55.951+03	2021-05-27 06:14:55.957+03	
642b3bb1-37af-c7b4-786e-9876a62cfaa4	2021-05-27 06:15:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:15:15.951+03	2021-05-27 06:15:15.957+03	
768ddafc-5a81-e024-9b8c-4a7ab7e96770	2021-05-27 06:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:15:35.951+03	2021-05-27 06:15:35.96+03	
aacdd37e-1c68-00ef-9ae0-c8cf5ef35e55	2021-05-27 06:15:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:15:55.951+03	2021-05-27 06:15:55.959+03	
160c1c72-acc3-dd1a-35c5-c436f098f85e	2021-05-27 06:16:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:16:15.951+03	2021-05-27 06:16:15.958+03	
7bf0f08c-dfef-b963-0777-0da966d7c45c	2021-05-27 06:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:16:35.951+03	2021-05-27 06:16:35.958+03	
4dcc6fcf-485d-a2c9-2356-d8f84d95cd48	2021-05-27 06:16:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:16:55.951+03	2021-05-27 06:16:55.959+03	
700135c9-216a-3a11-44bf-6de5098f10c6	2021-05-27 06:17:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:17:15.951+03	2021-05-27 06:17:15.958+03	
b016ffe6-d52b-ba26-bcfa-54fba90bbac9	2021-05-27 06:17:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:17:36.951+03	2021-05-27 06:17:36.958+03	
62f858d6-b65e-dbfe-8277-bfeac64fa15b	2021-05-27 06:17:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:17:56.951+03	2021-05-27 06:17:56.959+03	
846611ba-12be-60e6-3580-6d9c9e27dccd	2021-05-27 06:18:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:18:16.951+03	2021-05-27 06:18:16.958+03	
a74af0ea-5def-d125-2737-3708b99834c9	2021-05-27 06:18:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:18:36.951+03	2021-05-27 06:18:36.959+03	
8a5c4536-7b7d-d10f-7886-48a4ec3cb70b	2021-05-27 06:18:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:18:56.951+03	2021-05-27 06:18:56.959+03	
54b4f83b-4c20-4435-f2b2-0f2a4b5626a7	2021-05-27 06:19:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:19:16.951+03	2021-05-27 06:19:16.961+03	
f2efd118-2062-0338-6fe5-0b5ebf0ea5ac	2021-05-27 06:19:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:19:36.951+03	2021-05-27 06:19:36.96+03	
44ad76df-64d4-fb9a-a341-5eb585a6431c	2021-05-27 06:19:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:19:56.951+03	2021-05-27 06:19:56.959+03	
e4f8a54f-7871-a367-2ded-a575e062fe55	2021-05-27 06:20:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:20:06.951+03	2021-05-27 06:20:06.958+03	
96da17cb-1510-a878-4e0e-2846e2b3d7b2	2021-05-27 06:20:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:20:27.952+03	2021-05-27 06:20:27.96+03	
84ac28be-2a51-2ea4-c005-3f304f601b9d	2021-05-27 06:20:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:20:48.951+03	2021-05-27 06:20:48.959+03	
d4488cc5-f6b7-b00a-e745-58898e3e002c	2021-05-27 06:21:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:21:08.951+03	2021-05-27 06:21:08.958+03	
e4bd7191-fbce-2acd-db7d-84dc7d489ac1	2021-05-27 06:21:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:21:28.951+03	2021-05-27 06:21:28.958+03	
38e45dab-5874-7e12-4575-ed8813d6e6bb	2021-05-27 06:21:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:21:48.951+03	2021-05-27 06:21:48.958+03	
0cd19c21-ef76-07ab-694a-cfc56378cf50	2021-05-27 06:22:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:22:08.951+03	2021-05-27 06:22:08.959+03	
7180d50f-c1f2-1c56-4692-6fafbc28f6f8	2021-05-27 06:22:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:22:28.951+03	2021-05-27 06:22:28.958+03	
1f6600ca-b103-f424-513a-1e1d22daa3a9	2021-05-27 06:22:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:22:48.951+03	2021-05-27 06:22:48.961+03	
4001e585-ab0c-29cc-c641-6721edce6a3c	2021-05-27 06:23:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:23:08.951+03	2021-05-27 06:23:08.958+03	
4c6d007f-2fb4-3bea-edbf-4a6e8ec1953d	2021-05-27 06:23:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:23:28.951+03	2021-05-27 06:23:28.958+03	
ed52db93-4283-2543-f108-7db653fa6895	2021-05-27 06:23:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:23:48.951+03	2021-05-27 06:23:48.96+03	
a1a8cd62-ae61-5405-2966-cb4e10de21f3	2021-05-27 06:24:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:24:08.951+03	2021-05-27 06:24:08.957+03	
5c140f01-7812-b23f-b886-83de16af1318	2021-05-27 06:24:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:24:28.952+03	2021-05-27 06:24:28.96+03	
b0552fe2-6a44-8337-a085-a4a98987e011	2021-05-27 06:24:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:24:49.951+03	2021-05-27 06:24:49.958+03	
3a99604d-18f3-1167-a049-911dc0249f73	2021-05-27 06:25:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:25:09.952+03	2021-05-27 06:25:09.96+03	
e0bcd6c2-3b0e-812d-2ce3-a0eec6117aed	2021-05-27 06:25:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:25:30.951+03	2021-05-27 06:25:30.959+03	
8f490d32-00d8-8d9b-b8cd-93fc925b92ea	2021-05-27 06:25:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:25:50.952+03	2021-05-27 06:25:50.96+03	
62f77709-e453-7038-abe9-bd6781ecc143	2021-05-27 06:26:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:26:11.951+03	2021-05-27 06:26:11.958+03	
455f8bef-2281-2dfe-5ec8-3f84065a8669	2021-05-27 06:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:26:31.951+03	2021-05-27 06:26:31.958+03	
8a131483-40da-9289-9e65-0822c43aeb3d	2021-05-27 06:26:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:26:51.951+03	2021-05-27 06:26:51.959+03	
2ae57ffa-7c7e-7d13-f090-2b164af87b5b	2021-05-27 06:27:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:27:11.951+03	2021-05-27 06:27:11.959+03	
13471b99-2a64-1cb7-e2c3-526e7c5fd03c	2021-05-27 06:27:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:27:31.951+03	2021-05-27 06:27:31.96+03	
3bad0fc1-7fff-3baf-ce30-c0c88fa50181	2021-05-27 06:27:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:27:21.951+03	2021-05-27 06:27:21.958+03	
6f53c273-9251-6cce-bfae-52de40f56547	2021-05-27 06:27:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:27:41.951+03	2021-05-27 06:27:41.958+03	
f711b307-e836-0e8d-8122-e400302ea9b1	2021-05-27 06:28:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:28:01.951+03	2021-05-27 06:28:01.958+03	
6da9d06f-234c-29c7-6c95-ea801a907c71	2021-05-27 06:28:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:28:21.951+03	2021-05-27 06:28:21.958+03	
0b2db714-8612-ce72-8475-3d77c73007b4	2021-05-27 06:28:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:28:41.952+03	2021-05-27 06:28:41.96+03	
7847507c-8ea2-3546-cd25-ddd9c1bc81e5	2021-05-27 06:29:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:29:02.951+03	2021-05-27 06:29:02.959+03	
25899082-cadc-0760-4b05-fe917d9c9d9d	2021-05-27 06:29:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:29:22.951+03	2021-05-27 06:29:22.957+03	
c510324e-d1f9-1db5-a205-e7bfa0b82e2a	2021-05-27 06:29:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:29:42.951+03	2021-05-27 06:29:42.962+03	
4eb3fb39-d275-c044-768b-a6441705dec3	2021-05-27 06:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 06:30:00.951+03	2021-05-27 06:30:00.957+03	ERROR
f42dc91e-f680-626e-c001-67df0a357e73	2021-05-27 06:30:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:30:14.951+03	2021-05-27 06:30:14.961+03	
4eb644af-b06e-6e1f-64cf-f1a20175bdb3	2021-05-27 06:30:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:30:34.951+03	2021-05-27 06:30:34.96+03	
d6b3dad8-3a2d-9ab2-a99c-8623168bd6ce	2021-05-27 06:30:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:30:54.951+03	2021-05-27 06:30:54.959+03	
c046d5b2-f2f6-eade-7cb6-f82a2a928f4f	2021-05-27 06:31:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:31:14.951+03	2021-05-27 06:31:15.039+03	
30b4265c-0871-427e-c8b5-8b1415ca166c	2021-05-27 06:31:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:31:34.951+03	2021-05-27 06:31:34.959+03	
37b89ad7-e05e-8dbc-3527-5b6a107a0a7e	2021-05-27 06:31:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:31:54.951+03	2021-05-27 06:31:54.958+03	
760beb02-5d46-025e-720a-d5b7b72b3123	2021-05-27 06:32:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:32:14.951+03	2021-05-27 06:32:14.96+03	
01944fd8-e65b-9111-e0e6-ad7fe61ca97b	2021-05-27 06:32:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:32:34.951+03	2021-05-27 06:32:34.958+03	
633e0c64-e1be-2764-7ce4-f4b42c739495	2021-05-27 06:32:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:32:54.951+03	2021-05-27 06:32:54.958+03	
8b642ccf-08ba-1001-13a1-d908734aaf46	2021-05-27 06:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:33:14.951+03	2021-05-27 06:33:14.958+03	
e972e47c-4b1b-967c-d02e-f4dd51a14021	2021-05-27 06:33:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:33:34.951+03	2021-05-27 06:33:34.959+03	
2705645f-8ad7-008c-ef71-0a3a5aae302d	2021-05-27 06:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:33:54.951+03	2021-05-27 06:33:54.958+03	
81c96484-c450-6b74-8c20-65917698f1ed	2021-05-27 06:34:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:34:14.951+03	2021-05-27 06:34:14.959+03	
9b56a722-0c3c-91d8-58f4-201b2b00475e	2021-05-27 06:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:34:34.951+03	2021-05-27 06:34:34.959+03	
a04a6a20-077a-5261-5992-1928b30d14d3	2021-05-27 06:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:34:54.951+03	2021-05-27 06:34:54.959+03	
a636d989-6c07-5ea5-221b-a043c8195189	2021-05-27 06:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:35:14.951+03	2021-05-27 06:35:14.958+03	
549ae79e-049a-9923-55fb-927c6c7afdc9	2021-05-27 06:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:35:34.951+03	2021-05-27 06:35:34.958+03	
15b3b30a-2e77-6ab5-a50c-786fb5c24dbc	2021-05-27 06:35:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:35:55.951+03	2021-05-27 06:35:55.957+03	
fc1bd133-f09d-0033-758a-fa52d0899650	2021-05-27 06:36:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:36:15.951+03	2021-05-27 06:36:15.957+03	
985cc41b-5af2-4362-d9ab-e4685a7cacf5	2021-05-27 06:36:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:36:35.951+03	2021-05-27 06:36:35.958+03	
cbacb58f-bd94-8811-f462-087c3ec05563	2021-05-27 06:36:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:36:55.951+03	2021-05-27 06:36:55.959+03	
40c2adc7-0542-fdf4-3193-056c0ed12844	2021-05-27 06:37:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:37:15.952+03	2021-05-27 06:37:15.958+03	
fee14573-30d7-d79e-be80-47a71d6299c8	2021-05-27 06:37:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:37:36.951+03	2021-05-27 06:37:36.958+03	
9aa6367b-e66a-7eba-3ae8-5c23dedab8b5	2021-05-27 06:37:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:37:56.951+03	2021-05-27 06:37:56.958+03	
4e0ccaa8-20bf-654f-a27b-9f8cd187272c	2021-05-27 06:38:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:38:16.951+03	2021-05-27 06:38:16.959+03	
372a7e5a-fbc1-aaf3-44ff-8b78f39c2566	2021-05-27 06:38:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:38:36.951+03	2021-05-27 06:38:36.958+03	
ccfb96b2-13ab-1ec1-355e-45bbfea6e795	2021-05-27 06:38:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:38:56.951+03	2021-05-27 06:38:56.958+03	
9b2a57d6-79d6-bd65-56ff-ad14d0417127	2021-05-27 06:39:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:39:16.951+03	2021-05-27 06:39:16.959+03	
3808849a-935d-56f2-aecf-4696159b595a	2021-05-27 06:39:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:39:36.951+03	2021-05-27 06:39:36.961+03	
4dcf2c0f-9114-50d2-39ed-24652790a005	2021-05-27 06:39:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:39:56.951+03	2021-05-27 06:39:56.957+03	
c7fc004c-833b-74b3-d2a2-6f5273313f17	2021-05-27 06:40:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:40:06.951+03	2021-05-27 06:40:06.958+03	
74acadf1-35c0-251d-5a4c-df3a9325e39e	2021-05-27 06:40:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:40:26.951+03	2021-05-27 06:40:26.958+03	
b5893cb5-e561-9fd9-08e6-7488c4199f01	2021-05-27 06:40:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:40:46.951+03	2021-05-27 06:40:46.957+03	
cd277f6f-0a25-214b-d2bd-1735a76aaef7	2021-05-27 06:41:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:41:07.952+03	2021-05-27 06:41:07.959+03	
458d5277-e182-ca94-6ab9-bd3ca0e127bb	2021-05-27 06:41:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:41:28.951+03	2021-05-27 06:41:28.957+03	
5105e118-a633-62d3-8521-3bb6e4847405	2021-05-27 06:41:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:41:48.951+03	2021-05-27 06:41:48.958+03	
c0606934-8448-cf40-b3f9-a0a471d85991	2021-05-27 06:42:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:42:08.951+03	2021-05-27 06:42:08.96+03	
31916d1c-c604-ce0f-29ad-2d99ca0fee96	2021-05-27 06:42:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:42:28.951+03	2021-05-27 06:42:28.96+03	
3bf8e1c9-ad5c-7300-2978-20c066300c5a	2021-05-27 06:42:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:42:49.951+03	2021-05-27 06:42:49.958+03	
a38d738d-d18d-011f-599b-df9bd9f1011d	2021-05-27 06:43:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:43:09.951+03	2021-05-27 06:43:09.958+03	
eb6506ee-a6ec-00b9-65d7-b1806e1c4261	2021-05-27 06:43:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:43:29.951+03	2021-05-27 06:43:29.958+03	
7fc54ae1-cc1f-0eb8-acc6-f604fb6a3d1a	2021-05-27 06:43:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:43:49.951+03	2021-05-27 06:43:49.959+03	
d9a2c19f-5528-88d2-2151-7766e33dd9ee	2021-05-27 06:44:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:44:10.951+03	2021-05-27 06:44:10.962+03	
cc048809-299c-9e9f-ed8d-9cc9620fb8af	2021-05-27 06:44:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:44:30.951+03	2021-05-27 06:44:30.959+03	
7502a183-668e-01bc-2686-b8430385eff4	2021-05-27 06:44:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:44:50.951+03	2021-05-27 06:44:50.958+03	
0d8e1471-e3fd-e0ab-291d-c087440d5d2b	2021-05-27 06:45:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:45:10.951+03	2021-05-27 06:45:10.959+03	
170773ad-dc4f-27aa-3a34-5100fb49a821	2021-05-27 06:45:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:45:30.951+03	2021-05-27 06:45:30.959+03	
6dd63f42-57d6-1bb1-42bf-1f06a79e1c78	2021-05-27 06:45:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:45:50.951+03	2021-05-27 06:45:50.963+03	
002deede-e10d-4b26-447b-a5a2837f4876	2021-05-27 06:46:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:46:10.951+03	2021-05-27 06:46:10.957+03	
76de8fed-c80d-e1b6-5bdf-78d53bbfc4b3	2021-05-27 06:46:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:46:30.951+03	2021-05-27 06:46:30.958+03	
ffcfd673-8bdb-f711-c15e-dad723b9be90	2021-05-27 06:46:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:46:50.951+03	2021-05-27 06:46:50.958+03	
0a24d70c-e1ad-40da-6fcb-a9ba1ea37f73	2021-05-27 06:47:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:47:10.951+03	2021-05-27 06:47:10.959+03	
4b478515-c93d-fd24-00d7-08b00e9dac09	2021-05-27 06:47:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:47:30.951+03	2021-05-27 06:47:30.961+03	
91beb7c1-3a1e-d626-45ff-b843ff35b5b9	2021-05-27 06:47:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:47:50.951+03	2021-05-27 06:47:50.958+03	
4ad6e9f7-c0e6-83a9-3bfa-9672003342ce	2021-05-27 06:27:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:27:51.951+03	2021-05-27 06:27:51.96+03	
e251d90f-e31b-6c75-80dc-dab32a810003	2021-05-27 06:28:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:28:11.951+03	2021-05-27 06:28:11.957+03	
18a029af-81dc-c7b3-aea5-c3f5ebde9f74	2021-05-27 06:28:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:28:31.951+03	2021-05-27 06:28:31.958+03	
f0d241c4-16dc-b90b-22f1-92c2055a90e9	2021-05-27 06:28:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:28:52.951+03	2021-05-27 06:28:52.961+03	
3ee4dee0-de6e-3e41-4a8b-05e67aa1d303	2021-05-27 06:29:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:29:12.951+03	2021-05-27 06:29:12.961+03	
6d7fc486-6e2b-0f3a-b895-a9c1478046db	2021-05-27 06:29:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:29:32.951+03	2021-05-27 06:29:32.959+03	
2b1f8bcd-2d7c-c708-bb70-a2516dff1baf	2021-05-27 06:29:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:29:52.953+03	2021-05-27 06:29:52.96+03	
2901ae00-a04d-39f2-c25d-d84761ee5e62	2021-05-27 06:30:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:30:03.952+03	2021-05-27 06:30:03.96+03	
2a3727fe-0145-24f3-bd40-107fe35f3fb4	2021-05-27 06:30:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:30:24.951+03	2021-05-27 06:30:24.958+03	
2687d668-7c63-520d-6a02-fd6e0244d418	2021-05-27 06:30:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:30:44.951+03	2021-05-27 06:30:44.959+03	
fdb2a985-03b4-a117-14ec-8fcb7e31fcbd	2021-05-27 06:31:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:31:04.951+03	2021-05-27 06:31:04.961+03	
d0e5c891-c4f1-422b-0f84-36968a2a0eeb	2021-05-27 06:31:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:31:24.951+03	2021-05-27 06:31:24.957+03	
27cacf0f-54e9-1594-6b21-c935326208f3	2021-05-27 06:31:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:31:44.951+03	2021-05-27 06:31:44.959+03	
d8be1f9f-b193-c09b-f320-280fa9b063c9	2021-05-27 06:32:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:32:04.951+03	2021-05-27 06:32:04.958+03	
2e4c7a47-b1e4-a4ff-3b63-10ee834a3361	2021-05-27 06:32:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:32:24.951+03	2021-05-27 06:32:24.958+03	
534a184c-9e89-5e08-cb4f-f571752277a7	2021-05-27 06:32:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:32:44.951+03	2021-05-27 06:32:44.959+03	
a30654e5-b0a6-8f7d-a954-6fcee4483d16	2021-05-27 06:33:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:33:04.951+03	2021-05-27 06:33:04.961+03	
81ba8118-4cb0-113e-3257-b60b904f2b61	2021-05-27 06:33:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:33:24.951+03	2021-05-27 06:33:24.958+03	
e557ea41-eb59-b8c2-2e2d-9ac02a541395	2021-05-27 06:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:33:44.951+03	2021-05-27 06:33:44.958+03	
39995e3f-0a81-1fa2-2f28-a8f0869fb330	2021-05-27 06:34:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:34:04.951+03	2021-05-27 06:34:04.96+03	
9f875cab-8915-1634-2498-d99e36b5ebe0	2021-05-27 06:34:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:34:24.951+03	2021-05-27 06:34:24.958+03	
d422e189-3c7e-7bc5-a93c-805a230c8449	2021-05-27 06:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:34:44.951+03	2021-05-27 06:34:44.958+03	
4a4a488f-02c8-2a40-09c3-66ddd5a64c32	2021-05-27 06:35:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:35:04.951+03	2021-05-27 06:35:04.96+03	
5de41ffe-c5d2-2745-9626-f03dbfac089e	2021-05-27 06:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:35:24.951+03	2021-05-27 06:35:24.959+03	
95839038-e784-5a01-a812-48fbf98c1289	2021-05-27 06:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:35:44.952+03	2021-05-27 06:35:44.96+03	
55f37026-d42d-49cc-f385-70291bc67289	2021-05-27 06:36:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:36:05.951+03	2021-05-27 06:36:05.958+03	
277b4c04-d35b-1a54-6fbf-196e577b4aa1	2021-05-27 06:36:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:36:25.951+03	2021-05-27 06:36:25.959+03	
2fea1358-e3b4-633c-507e-14c45a86495e	2021-05-27 06:36:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:36:45.951+03	2021-05-27 06:36:45.958+03	
2529585e-54fc-0e4a-e75c-666636494757	2021-05-27 06:37:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:37:05.951+03	2021-05-27 06:37:05.961+03	
e19c5c19-5bff-ce88-d1f1-faeeaa170ba1	2021-05-27 06:37:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:37:26.951+03	2021-05-27 06:37:26.959+03	
45b1f6da-c998-5171-f7a9-9a5e38d4b341	2021-05-27 06:37:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:37:46.951+03	2021-05-27 06:37:46.958+03	
ca6e8a4b-26ed-fa89-7d6e-2b2f0013efc8	2021-05-27 06:38:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:38:06.951+03	2021-05-27 06:38:06.958+03	
b4a37422-36b3-aba1-a686-6a76f7cd4653	2021-05-27 06:38:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:38:26.951+03	2021-05-27 06:38:26.958+03	
55e0dea5-ec99-681f-0bb1-8db4afc864cf	2021-05-27 06:38:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:38:46.951+03	2021-05-27 06:38:46.961+03	
f7170591-d20c-2980-0127-189577085c8a	2021-05-27 06:39:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:39:06.951+03	2021-05-27 06:39:06.959+03	
a18b4c24-6beb-ae4b-2717-4366f71181f7	2021-05-27 06:39:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:39:26.951+03	2021-05-27 06:39:26.958+03	
c5a90708-665c-6936-b22d-0defb36d787e	2021-05-27 06:39:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:39:46.951+03	2021-05-27 06:39:46.958+03	
308e98a8-3a21-c2b7-d6ad-78ccd33de040	2021-05-27 06:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 06:40:00.951+03	2021-05-27 06:40:00.956+03	ERROR
caaa5e5a-14c3-1db6-fb8b-9cf481417bd0	2021-05-27 06:40:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:40:16.951+03	2021-05-27 06:40:16.959+03	
66bce72e-50f0-59e7-a6f4-e83c5a39b3f6	2021-05-27 06:40:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:40:36.951+03	2021-05-27 06:40:36.96+03	
66aa65e2-82a5-e77d-ba64-98b3a0027828	2021-05-27 06:40:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:40:56.952+03	2021-05-27 06:40:56.96+03	
625ac756-3bab-3598-74d4-8d01a857f998	2021-05-27 06:41:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:41:18.951+03	2021-05-27 06:41:18.958+03	
3b609384-43e9-179c-0095-6a1940008922	2021-05-27 06:41:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:41:38.951+03	2021-05-27 06:41:38.957+03	
7374b454-0e9c-5334-f443-2503d39aa2db	2021-05-27 06:41:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:41:58.951+03	2021-05-27 06:41:58.958+03	
0c78b284-1c46-e0a2-724c-2af2678f6465	2021-05-27 06:42:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:42:18.951+03	2021-05-27 06:42:18.958+03	
cdeae3a3-6c2a-389f-d894-194e561d2ca5	2021-05-27 06:42:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:42:38.952+03	2021-05-27 06:42:38.958+03	
6e6d6e8d-3c73-0e37-2a1c-9234358301be	2021-05-27 06:42:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:42:59.951+03	2021-05-27 06:42:59.959+03	
5f57430d-a3fc-3d0d-5b4d-27a07c1407de	2021-05-27 06:43:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:43:19.951+03	2021-05-27 06:43:19.958+03	
d500e24a-fe60-85ae-c1ff-2b6a5fef3e24	2021-05-27 06:43:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:43:39.951+03	2021-05-27 06:43:39.96+03	
7aa21380-f815-a115-1db5-0e14fb2ef4de	2021-05-27 06:43:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:43:59.952+03	2021-05-27 06:43:59.96+03	
7a5cb4f9-4b67-cec7-81b4-51406b6d4412	2021-05-27 06:44:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:44:20.951+03	2021-05-27 06:44:20.958+03	
2fbc02a5-f1b5-2156-a8bf-a86e1a1bd9ff	2021-05-27 06:44:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:44:40.951+03	2021-05-27 06:44:40.957+03	
2304921f-8d34-0a5b-121b-7164c7b84d1a	2021-05-27 06:45:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:45:00.951+03	2021-05-27 06:45:00.96+03	
d08f29c4-291a-5e55-8346-6d77abde2a90	2021-05-27 06:45:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:45:20.951+03	2021-05-27 06:45:20.963+03	
25b59e73-b33b-9b6a-f970-c5e10368047a	2021-05-27 06:45:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:45:40.951+03	2021-05-27 06:45:40.958+03	
b3cd564b-f5e7-7b69-066f-55e91ca7e0cf	2021-05-27 06:46:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:46:00.951+03	2021-05-27 06:46:00.959+03	
7d33b81e-be70-fd1e-0da3-33c9cfdc57f8	2021-05-27 06:46:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:46:20.951+03	2021-05-27 06:46:20.959+03	
e2100bd6-28ac-c09e-e2c8-d075849b4d5f	2021-05-27 06:46:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:46:40.951+03	2021-05-27 06:46:40.959+03	
5c92c1e4-2fe3-ad9c-457d-db3ac626d8ce	2021-05-27 06:47:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:47:00.951+03	2021-05-27 06:47:00.959+03	
b641353c-af93-03a4-97ea-4b33bddbdde0	2021-05-27 06:47:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:47:20.951+03	2021-05-27 06:47:20.959+03	
9d300f65-090d-6e66-7200-fc2c117d0ef7	2021-05-27 06:47:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:47:40.951+03	2021-05-27 06:47:40.958+03	
db3b5775-00b7-a97f-7547-d9097022ff35	2021-05-27 06:48:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:48:00.951+03	2021-05-27 06:48:00.959+03	
4241f862-a21e-3be0-2ee7-f71652d37555	2021-05-27 06:48:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:48:20.951+03	2021-05-27 06:48:20.958+03	
311d682f-8907-4b68-d20c-8a53be752dad	2021-05-27 06:48:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:48:10.951+03	2021-05-27 06:48:10.959+03	
4e73bd39-275e-1365-75ca-4bbdc774d576	2021-05-27 06:48:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:48:30.951+03	2021-05-27 06:48:30.957+03	
17ded327-717d-82bc-cf9f-3e76af56eb86	2021-05-27 06:48:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:48:50.951+03	2021-05-27 06:48:50.959+03	
20264e48-c831-9941-b8de-b4e215fee85e	2021-05-27 06:49:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:49:10.951+03	2021-05-27 06:49:10.959+03	
a013cdab-e5b3-7efc-a32c-9084268905f3	2021-05-27 06:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:49:30.951+03	2021-05-27 06:49:30.958+03	
91426f8f-382e-ea5e-653d-f9eaf7a56c07	2021-05-27 06:49:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:49:50.951+03	2021-05-27 06:49:50.957+03	
d8629e1d-6383-4b8c-f270-ecbc2849199f	2021-05-27 06:50:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:50:10.951+03	2021-05-27 06:50:10.958+03	
957f85cb-71d2-53fa-f847-d477bdc6c94f	2021-05-27 06:50:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:50:30.951+03	2021-05-27 06:50:30.958+03	
1c1fdb26-4cb7-6ec7-ca8f-b47b78b5efc9	2021-05-27 06:50:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:50:50.951+03	2021-05-27 06:50:50.959+03	
4ba01de6-fe7c-c8f1-b316-5874ece8961f	2021-05-27 06:51:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:51:10.951+03	2021-05-27 06:51:10.958+03	
7ccd6cb9-07cf-b81a-1632-28cce98925f6	2021-05-27 06:51:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:51:30.951+03	2021-05-27 06:51:30.96+03	
0dc5c3e0-b8c3-49fa-a880-4d5ecde4ef41	2021-05-27 06:51:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:51:50.951+03	2021-05-27 06:51:50.96+03	
7e112c2b-b8bc-9a40-f3cb-da283af48a64	2021-05-27 06:52:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:52:10.951+03	2021-05-27 06:52:10.958+03	
7daf56c4-ab02-ce0c-9d46-ded177cbfe64	2021-05-27 06:52:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:52:30.951+03	2021-05-27 06:52:30.961+03	
78b90efb-ab7b-35b5-02ca-791a7ff433d6	2021-05-27 06:52:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:52:50.951+03	2021-05-27 06:52:50.957+03	
8c6b3a7f-c746-3080-0352-43b76860a7ac	2021-05-27 06:53:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:53:10.951+03	2021-05-27 06:53:10.96+03	
c10c492a-f151-3f66-24ff-dce4c691ed53	2021-05-27 06:53:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:53:30.951+03	2021-05-27 06:53:30.957+03	
8720fab5-99e5-df8b-a133-9e38e8328a69	2021-05-27 06:53:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:53:50.951+03	2021-05-27 06:53:50.957+03	
bb3d6856-d601-9efe-7516-75d86b0f49db	2021-05-27 06:54:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:54:10.951+03	2021-05-27 06:54:10.959+03	
f5197167-d73a-90b2-02f7-cc4e5d8d2275	2021-05-27 06:54:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:54:30.951+03	2021-05-27 06:54:30.96+03	
f8ec3b86-b25f-71c6-b189-1aa3c4ef92c4	2021-05-27 06:54:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:54:50.951+03	2021-05-27 06:54:50.958+03	
18e0ec7c-5f23-b26d-a02d-158c9b3b9968	2021-05-27 06:55:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:55:10.951+03	2021-05-27 06:55:10.96+03	
e7629817-9e65-23c9-65ad-f3a0677cd3e7	2021-05-27 06:55:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:55:30.952+03	2021-05-27 06:55:30.961+03	
5de1f735-0dcc-f23b-62e0-342095d7d8d3	2021-05-27 06:55:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:55:51.951+03	2021-05-27 06:55:51.958+03	
283e3e1e-c397-97d3-af69-dbd361ca17b2	2021-05-27 06:56:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:56:11.951+03	2021-05-27 06:56:11.959+03	
58922925-e61d-fb5e-ff15-c76410baa29d	2021-05-27 06:56:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:56:31.951+03	2021-05-27 06:56:31.958+03	
1f5fd310-d428-77ea-c653-8186dbf89959	2021-05-27 06:56:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:56:51.951+03	2021-05-27 06:56:51.958+03	
72a06a9e-6e58-be00-8ebd-3dcfb4ac820c	2021-05-27 06:57:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:57:11.951+03	2021-05-27 06:57:11.958+03	
88982f59-7533-a59d-b78a-fceaf87f183b	2021-05-27 06:57:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:57:31.951+03	2021-05-27 06:57:31.957+03	
059a6886-a148-fecb-b399-7f741a87c24b	2021-05-27 06:57:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:57:51.951+03	2021-05-27 06:57:51.958+03	
aa55991c-f79a-e04a-c3cc-960d8a4ac776	2021-05-27 06:58:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:58:11.951+03	2021-05-27 06:58:11.959+03	
ca12801f-797c-404e-35a0-dd36d391b4e4	2021-05-27 06:58:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:58:31.951+03	2021-05-27 06:58:31.957+03	
95db2da9-ad67-ca70-b1fc-c9878bc18003	2021-05-27 06:58:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:58:51.951+03	2021-05-27 06:58:51.959+03	
fd5a1e3f-d8fe-686b-2bbf-22dcb7e6ae64	2021-05-27 06:59:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:59:11.951+03	2021-05-27 06:59:11.958+03	
c301e184-94a9-eb43-4126-12c0c0cd5c81	2021-05-27 06:59:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:59:31.951+03	2021-05-27 06:59:31.959+03	
1a428952-e59e-fb70-972a-798ce3ed03b6	2021-05-27 06:59:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:59:51.951+03	2021-05-27 06:59:51.958+03	
4aed0c08-27f2-09f4-17ec-f64f661df0e0	2021-05-27 07:00:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:00:01.951+03	2021-05-27 07:00:01.959+03	
f3cab6f7-387b-9848-6542-ebb1f6463ec2	2021-05-27 07:00:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:00:21.951+03	2021-05-27 07:00:21.963+03	
06413b74-0599-8fea-c168-b4e3c0a01c4f	2021-05-27 07:00:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:00:41.951+03	2021-05-27 07:00:41.959+03	
1e12e0da-e028-3d37-af42-7d01d5629d87	2021-05-27 07:01:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:01:02.951+03	2021-05-27 07:01:02.959+03	
976e0aa7-9f4a-59d6-502f-f5e021d7cee6	2021-05-27 07:01:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:01:22.952+03	2021-05-27 07:01:22.959+03	
5de2b42c-0d61-b595-dc96-5e81bd26554f	2021-05-27 07:01:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:01:43.951+03	2021-05-27 07:01:43.958+03	
b8fcab68-cef5-d34a-6eaf-2af383a73467	2021-05-27 07:02:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:02:03.951+03	2021-05-27 07:02:03.959+03	
99c5e914-c23e-832b-f6fb-10b522910959	2021-05-27 07:02:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:02:23.951+03	2021-05-27 07:02:23.96+03	
91b697ad-e5a2-2273-db58-8889809578be	2021-05-27 07:02:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:02:43.951+03	2021-05-27 07:02:43.961+03	
65b564a1-a0b5-ec1c-4ba3-cd852ea004df	2021-05-27 07:03:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:03:03.951+03	2021-05-27 07:03:03.958+03	
d61e793f-97ca-f185-b985-daf4d30258a9	2021-05-27 07:03:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:03:23.951+03	2021-05-27 07:03:23.957+03	
d0325c99-e605-d796-9a7b-6b8a30d5bff8	2021-05-27 07:03:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:03:43.951+03	2021-05-27 07:03:43.958+03	
47535ed5-e7cb-7380-8456-66e644614fc9	2021-05-27 07:04:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:04:03.951+03	2021-05-27 07:04:03.959+03	
5ff9da95-b5af-74f7-8481-045f1ba81258	2021-05-27 07:04:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:04:23.951+03	2021-05-27 07:04:23.959+03	
e983f251-9fee-bcae-e220-3b253163299c	2021-05-27 07:04:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:04:43.951+03	2021-05-27 07:04:43.959+03	
3192e544-2d44-961e-8fd4-60a2f3259460	2021-05-27 07:05:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:05:03.951+03	2021-05-27 07:05:03.959+03	
0269dd78-bdcf-b229-23d0-b18b5ef1570f	2021-05-27 07:05:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:05:23.951+03	2021-05-27 07:05:23.957+03	
262d15c9-769f-8ba0-63c3-6d118030048b	2021-05-27 07:05:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:05:43.951+03	2021-05-27 07:05:43.959+03	
1f19ba0b-e633-7164-51ba-8d0d58abc64e	2021-05-27 07:06:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:06:03.951+03	2021-05-27 07:06:03.958+03	
0859273d-0ee4-d1e2-4765-7b163fbc878d	2021-05-27 07:06:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:06:23.951+03	2021-05-27 07:06:23.958+03	
d03af561-26e9-60ee-0a66-d767576856bb	2021-05-27 07:06:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:06:43.951+03	2021-05-27 07:06:43.958+03	
b4550809-9823-c7d0-7e2a-f010530042ef	2021-05-27 07:07:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:07:03.951+03	2021-05-27 07:07:03.958+03	
cbbe2f96-63ad-acca-7118-e9afb6622306	2021-05-27 07:07:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:07:24.951+03	2021-05-27 07:07:24.961+03	
752367b2-77bc-30e6-af87-d5cf773c7481	2021-05-27 07:07:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:07:44.951+03	2021-05-27 07:07:44.959+03	
bcbba086-e175-fb6b-bd9c-3cf9722544f3	2021-05-27 07:08:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:08:04.951+03	2021-05-27 07:08:04.958+03	
c1842ca0-0265-fe81-6b75-884a002db833	2021-05-27 07:08:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:08:24.951+03	2021-05-27 07:08:24.958+03	
d522be7b-dcbb-e91d-3ed3-718dd092fa98	2021-05-27 07:08:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:08:44.951+03	2021-05-27 07:08:44.959+03	
c252ad9d-0cdc-c24c-aba4-f5d9441af218	2021-05-27 06:48:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:48:40.951+03	2021-05-27 06:48:40.961+03	
6c9f4265-b3fa-59cd-f7f0-e9690cff9096	2021-05-27 06:49:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:49:00.951+03	2021-05-27 06:49:00.958+03	
879b1a21-76bc-dbfb-fe69-6ae7a4fb788d	2021-05-27 06:49:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:49:20.951+03	2021-05-27 06:49:20.958+03	
ad6b720c-db89-35ee-a61d-32692f73a377	2021-05-27 06:49:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:49:40.951+03	2021-05-27 06:49:40.958+03	
a7990ab7-7a7b-1f47-4d55-dd61f3cf4bd5	2021-05-27 06:50:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:50:00.951+03	2021-05-27 06:50:00.958+03	
fd06f7e7-71b5-919f-bcde-f330d1a409af	2021-05-27 06:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 06:50:00.951+03	2021-05-27 06:50:00.977+03	ERROR
7c938ce0-4105-93d0-2936-ce1ed58d1c04	2021-05-27 06:50:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:50:20.951+03	2021-05-27 06:50:20.958+03	
040f4e29-c731-d97d-fbc8-a5b3ef169da9	2021-05-27 06:50:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:50:40.951+03	2021-05-27 06:50:40.958+03	
235142eb-3a7b-10c5-05ba-379a0670d72a	2021-05-27 06:51:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:51:00.951+03	2021-05-27 06:51:00.959+03	
18536f82-945b-0188-cebc-15659ac0ec45	2021-05-27 06:51:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:51:20.951+03	2021-05-27 06:51:20.959+03	
0fdc597a-c678-f57d-eb50-e5992351d7b4	2021-05-27 06:51:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:51:40.951+03	2021-05-27 06:51:40.958+03	
6aa2fc85-d1a1-ff26-287f-5b7c26cdb94e	2021-05-27 06:52:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:52:00.951+03	2021-05-27 06:52:00.958+03	
0ffa3717-ead3-c27d-3aa3-e31d836f1c4e	2021-05-27 06:52:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:52:20.951+03	2021-05-27 06:52:20.959+03	
c962f9fe-9301-4510-9e83-a0c0462586d5	2021-05-27 06:52:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:52:40.951+03	2021-05-27 06:52:40.958+03	
0c84114e-f2d1-d1b3-6761-6b521f7baa30	2021-05-27 06:53:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:53:00.951+03	2021-05-27 06:53:00.958+03	
48ea780e-09c6-d85f-30cd-e0ae91f09b36	2021-05-27 06:53:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:53:20.951+03	2021-05-27 06:53:20.958+03	
497b8cc6-7775-9b64-3f84-5d12315f6b16	2021-05-27 06:53:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:53:40.951+03	2021-05-27 06:53:40.959+03	
6cea08dd-137a-64f8-29db-77034333c1f5	2021-05-27 06:54:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:54:00.951+03	2021-05-27 06:54:00.959+03	
6e8370d7-15d5-d383-521c-a683927aead6	2021-05-27 06:54:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:54:20.951+03	2021-05-27 06:54:20.958+03	
ff725e8d-1fa1-f0c6-8051-e12ef0f496ac	2021-05-27 06:54:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:54:40.951+03	2021-05-27 06:54:40.958+03	
b4b8f3cf-140a-f7ea-ad7c-a30ad21fc069	2021-05-27 06:55:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:55:00.951+03	2021-05-27 06:55:00.958+03	
8bca267c-1ab1-0709-f5e7-02debef73abf	2021-05-27 06:55:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:55:20.951+03	2021-05-27 06:55:20.958+03	
6e3c42df-aee2-a3f6-aa45-fa976b2c9fed	2021-05-27 06:55:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:55:41.951+03	2021-05-27 06:55:41.958+03	
19cd0e62-129c-6a2a-f29b-8d1a4922af55	2021-05-27 06:56:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:56:01.951+03	2021-05-27 06:56:01.958+03	
407fcca9-562f-d31e-6130-787a91e8b05f	2021-05-27 06:56:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:56:21.951+03	2021-05-27 06:56:21.959+03	
bce35e4e-bbd2-e576-dde1-3841327f6670	2021-05-27 06:56:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:56:41.951+03	2021-05-27 06:56:41.959+03	
dcbf5b63-a6ba-fb45-0577-eee45364145c	2021-05-27 06:57:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:57:01.951+03	2021-05-27 06:57:01.959+03	
98137940-d791-5727-e0df-50d66d85e504	2021-05-27 06:57:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:57:21.951+03	2021-05-27 06:57:21.958+03	
8030b57c-a515-5324-2fc7-2c746828b773	2021-05-27 06:57:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:57:41.951+03	2021-05-27 06:57:41.958+03	
278b671e-db79-bf84-fb8f-b416f0b0e4d4	2021-05-27 06:58:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:58:01.951+03	2021-05-27 06:58:01.958+03	
ba554ef5-ecd4-b0e6-a5e7-921226993922	2021-05-27 06:58:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:58:21.951+03	2021-05-27 06:58:21.958+03	
e2132d68-7633-0cfb-717f-1f2adc9a50bf	2021-05-27 06:58:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:58:41.951+03	2021-05-27 06:58:41.959+03	
12c7cd25-7164-b275-b768-d84bdc9887ef	2021-05-27 06:59:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:59:01.951+03	2021-05-27 06:59:01.958+03	
a76dcb60-567b-9f48-7917-c161920fd9f3	2021-05-27 06:59:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:59:21.951+03	2021-05-27 06:59:21.96+03	
410f6255-9e81-befe-2493-7c8027c81245	2021-05-27 06:59:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 06:59:41.951+03	2021-05-27 06:59:41.958+03	
db4aec10-7f2c-c1f9-125a-777d60e41a58	2021-05-27 07:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 07:00:00.951+03	2021-05-27 07:00:00.957+03	ERROR
456a8224-c014-6cfe-eda6-42a4a0a369c5	2021-05-27 07:00:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:00:11.951+03	2021-05-27 07:00:11.959+03	
85098bba-af76-5fac-deca-539024fa3ef4	2021-05-27 07:00:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:00:31.951+03	2021-05-27 07:00:32.201+03	
7e70faf2-39f2-6000-90f6-75190c122eb1	2021-05-27 07:00:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:00:51.952+03	2021-05-27 07:00:51.959+03	
928cb732-0d01-cf05-ea18-1ebe18adf5d9	2021-05-27 07:01:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:01:12.951+03	2021-05-27 07:01:12.958+03	
8e80b9e1-7a0f-4822-c127-7e16545b03cc	2021-05-27 07:01:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:01:33.951+03	2021-05-27 07:01:33.958+03	
e772a2f1-2e10-ebb4-42b7-147fd78204a0	2021-05-27 07:01:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:01:53.951+03	2021-05-27 07:01:53.958+03	
8cafdb31-e2fe-a538-ff44-901026fbf612	2021-05-27 07:02:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:02:13.951+03	2021-05-27 07:02:13.96+03	
59ce352d-c2f1-ac4a-ef72-0ac9c348b6a2	2021-05-27 07:02:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:02:33.951+03	2021-05-27 07:02:33.96+03	
87278432-f988-e972-4769-7bf4557547ab	2021-05-27 07:02:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:02:53.951+03	2021-05-27 07:02:53.958+03	
ad373c3d-befa-6038-c4a7-7adb09d0bcce	2021-05-27 07:03:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:03:13.951+03	2021-05-27 07:03:13.96+03	
f0196144-8069-d6dc-62e8-c950435d89fe	2021-05-27 07:03:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:03:33.951+03	2021-05-27 07:03:33.958+03	
e27cdcef-501b-9851-b0b6-91b43e2ce1e6	2021-05-27 07:03:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:03:53.951+03	2021-05-27 07:03:53.958+03	
61a97b14-491f-9d3a-26e6-db93232f258e	2021-05-27 07:04:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:04:13.951+03	2021-05-27 07:04:13.958+03	
aa4f0472-f078-8be1-f4ee-06aa594d1e98	2021-05-27 07:04:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:04:33.951+03	2021-05-27 07:04:33.958+03	
7806fd64-4c38-c843-783a-c3c918a7fedc	2021-05-27 07:04:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:04:53.951+03	2021-05-27 07:04:53.958+03	
d1f61b17-7ac7-620a-c081-df8697874729	2021-05-27 07:05:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:05:13.951+03	2021-05-27 07:05:13.958+03	
6d3c6663-b2e3-660f-4304-8e57e0fca885	2021-05-27 07:05:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:05:33.951+03	2021-05-27 07:05:33.957+03	
cfdbcb2b-12e9-0d1c-242b-8670b566d562	2021-05-27 07:05:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:05:53.951+03	2021-05-27 07:05:53.958+03	
be2bb86e-524a-c3c9-fab5-5a259bbb3939	2021-05-27 07:06:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:06:13.951+03	2021-05-27 07:06:13.958+03	
7a6c8e18-ccd4-bd6f-9447-5339e8644221	2021-05-27 07:06:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:06:33.951+03	2021-05-27 07:06:33.957+03	
11951c2c-2898-3e13-79b4-6c66964f13d6	2021-05-27 07:06:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:06:53.951+03	2021-05-27 07:06:53.959+03	
ef18ebc8-8c9b-1924-2f2d-08b3cf240404	2021-05-27 07:07:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:07:13.952+03	2021-05-27 07:07:13.962+03	
774eec7e-a135-757a-b129-fb20f41d987e	2021-05-27 07:07:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:07:34.951+03	2021-05-27 07:07:34.957+03	
08019515-0abd-24d0-2faa-a2c6c5396de4	2021-05-27 07:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:07:54.951+03	2021-05-27 07:07:54.958+03	
8f305a85-ec26-0285-ad31-dd7b82dccf81	2021-05-27 07:08:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:08:14.951+03	2021-05-27 07:08:14.958+03	
b5f81ba0-12a0-0643-bc7f-fb684d95e324	2021-05-27 07:08:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:08:34.951+03	2021-05-27 07:08:34.959+03	
4daf0b2e-9f45-73e0-dcc1-509acf07479e	2021-05-27 07:08:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:08:54.951+03	2021-05-27 07:08:54.958+03	
d0ff2451-5891-38e5-9fab-11130319fb1d	2021-05-27 07:09:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:09:04.952+03	2021-05-27 07:09:04.961+03	
f512cb50-f56a-1e18-4faf-adfce2679446	2021-05-27 07:09:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:09:25.951+03	2021-05-27 07:09:25.961+03	
d2d12c51-c92a-e79d-8d06-195b1e359395	2021-05-27 07:09:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:09:45.951+03	2021-05-27 07:09:45.958+03	
eb27e7d8-25da-7888-14c1-fe159ad5ad63	2021-05-27 07:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 07:10:00.951+03	2021-05-27 07:10:00.956+03	ERROR
73d6307f-2132-7a6e-20e7-784372f4a16a	2021-05-27 07:10:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:10:15.951+03	2021-05-27 07:10:15.958+03	
8684869d-ce89-4d4a-d51e-19ab29ae5078	2021-05-27 07:10:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:10:35.951+03	2021-05-27 07:10:35.96+03	
24eb5487-daae-1dab-152f-54ef64fe2dda	2021-05-27 07:10:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:10:55.951+03	2021-05-27 07:10:55.957+03	
feaee16c-e78e-b8de-de81-bc8b90663514	2021-05-27 07:11:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:11:15.951+03	2021-05-27 07:11:15.958+03	
ac890403-9f83-3d8f-78c5-b4277b0f97d2	2021-05-27 07:11:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:11:35.951+03	2021-05-27 07:11:35.96+03	
30cefae2-8ea4-a8fb-8b92-dc2d092ee2a9	2021-05-27 07:11:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:11:55.951+03	2021-05-27 07:11:55.96+03	
e68ab05b-3daa-f942-c40d-57edcad06d3e	2021-05-27 07:12:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:12:15.951+03	2021-05-27 07:12:15.959+03	
36e4b74f-03d7-6183-d81c-7b72a0c8e408	2021-05-27 07:12:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:12:36.951+03	2021-05-27 07:12:36.959+03	
c958b308-923c-5e33-452e-01d2659169dd	2021-05-27 07:12:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:12:56.951+03	2021-05-27 07:12:56.96+03	
ccddd047-9246-7a53-b6a1-88db4b0ecbbb	2021-05-27 07:13:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:13:16.951+03	2021-05-27 07:13:16.958+03	
882ccc50-1564-c9f1-f117-c380d4cc363b	2021-05-27 07:13:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:13:36.951+03	2021-05-27 07:13:36.958+03	
12495bd4-9c16-9285-dfa8-0c55f266fc89	2021-05-27 07:13:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:13:56.951+03	2021-05-27 07:13:56.96+03	
b15d18ec-aaba-04fb-b007-a44340e1659e	2021-05-27 07:14:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:14:16.951+03	2021-05-27 07:14:16.959+03	
3fdb01ec-8157-73c0-6a41-c939df7ae869	2021-05-27 07:14:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:14:36.951+03	2021-05-27 07:14:36.964+03	
0d32a12d-b085-8c79-6bc7-0720fd147995	2021-05-27 07:14:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:14:56.951+03	2021-05-27 07:14:56.958+03	
6be89cde-6504-59fb-5984-b3dc6717bed0	2021-05-27 07:15:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:15:16.952+03	2021-05-27 07:15:16.958+03	
c2466a2e-bf68-6bbd-5279-081d0e2a895d	2021-05-27 07:15:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:15:38.951+03	2021-05-27 07:15:38.959+03	
cfb39e62-fe5c-78d8-ec54-738d1395845a	2021-05-27 07:15:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:15:58.951+03	2021-05-27 07:15:58.96+03	
ce9f2065-4d21-0551-6795-29f68aeb6f44	2021-05-27 07:16:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:16:18.951+03	2021-05-27 07:16:18.96+03	
f69d94e3-d027-efe7-5446-8859530f04fb	2021-05-27 07:16:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:16:39.951+03	2021-05-27 07:16:39.958+03	
8cfd2822-d1b8-b653-cf80-56f88554f6c0	2021-05-27 07:16:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:16:59.951+03	2021-05-27 07:16:59.958+03	
715fe6ed-30e3-99b2-3e20-9ddfcd465e99	2021-05-27 07:17:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:17:19.951+03	2021-05-27 07:17:19.957+03	
80880cd6-6a88-557a-8057-641049385b93	2021-05-27 07:17:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:17:39.951+03	2021-05-27 07:17:39.959+03	
e0a01bc7-d75c-5549-c2f8-92b4509522f1	2021-05-27 07:17:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:17:59.951+03	2021-05-27 07:17:59.957+03	
39a4ebb9-ba38-c781-7193-f25d399bffbf	2021-05-27 07:18:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:18:19.952+03	2021-05-27 07:18:19.993+03	
8a97842a-2200-f943-599a-6748e8d576aa	2021-05-27 07:18:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:18:40.951+03	2021-05-27 07:18:40.959+03	
c5ace26c-205e-6807-dc2d-fcc21d83a7a4	2021-05-27 07:19:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:19:00.951+03	2021-05-27 07:19:00.959+03	
2a0baf16-56a0-60d3-f74d-4ed59f2a50ec	2021-05-27 07:19:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:19:20.951+03	2021-05-27 07:19:20.958+03	
100d0ad5-467d-c8f0-2257-8db5b93bd8e3	2021-05-27 07:19:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:19:40.951+03	2021-05-27 07:19:40.989+03	
f4511fde-e22d-ceed-251e-e32fc3c24ef4	2021-05-27 07:20:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:20:00.951+03	2021-05-27 07:20:00.959+03	
47e4bbf1-cea5-b3e1-d064-6943bdd70854	2021-05-27 07:20:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:20:20.951+03	2021-05-27 07:20:20.958+03	
eb680233-0aa9-bb7e-302e-2b26fd8ba251	2021-05-27 07:20:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:20:40.951+03	2021-05-27 07:20:40.957+03	
e509cc7c-741d-fed5-48b0-b50cab57f049	2021-05-27 07:21:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:21:00.951+03	2021-05-27 07:21:00.958+03	
786d4903-5275-91db-1224-f75d4ed07ef7	2021-05-27 07:21:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:21:20.951+03	2021-05-27 07:21:20.96+03	
0e5d3290-b1ea-97a5-88e0-67069b88b409	2021-05-27 07:21:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:21:40.952+03	2021-05-27 07:21:40.961+03	
ac830961-4c8d-c8ac-89d0-e64bf78325e1	2021-05-27 07:22:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:22:01.951+03	2021-05-27 07:22:01.959+03	
4d19dc82-3453-2420-241e-8716ba9dd550	2021-05-27 07:22:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:22:21.951+03	2021-05-27 07:22:21.958+03	
8d5499a1-f8b4-30c1-0b6e-2f1653c7a96c	2021-05-27 07:22:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:22:41.951+03	2021-05-27 07:22:41.983+03	
8e5b3f19-d706-d932-472d-f7679bd6d68b	2021-05-27 07:23:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:23:01.951+03	2021-05-27 07:23:01.958+03	
6d73a5e0-7edd-b692-b47e-a8f7fc20989c	2021-05-27 07:23:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:23:21.951+03	2021-05-27 07:23:21.958+03	
7a74492a-4a4e-c9c5-674c-25630f3d9152	2021-05-27 07:23:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:23:41.951+03	2021-05-27 07:23:41.985+03	
88d5f61a-485a-98ff-29a3-339dcaa34141	2021-05-27 07:24:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:24:01.951+03	2021-05-27 07:24:01.958+03	
391ad92c-170d-75df-e56a-b5b67f63cd7b	2021-05-27 07:24:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:24:21.951+03	2021-05-27 07:24:21.958+03	
a16935ff-71bf-291d-b604-cecb47f9dac2	2021-05-27 07:24:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:24:41.951+03	2021-05-27 07:24:41.958+03	
e8e14c0d-2402-619b-925c-81095b22517f	2021-05-27 07:25:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:25:01.951+03	2021-05-27 07:25:01.958+03	
1c806ebb-0cbc-3674-9796-654673cec0db	2021-05-27 07:25:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:25:21.951+03	2021-05-27 07:25:21.959+03	
0af3a932-337a-7bcd-8030-b66023ef472d	2021-05-27 07:25:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:25:41.951+03	2021-05-27 07:25:41.959+03	
f2e742d2-7844-3642-ad80-3e239aa2335d	2021-05-27 07:26:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:26:01.951+03	2021-05-27 07:26:01.958+03	
ab271f30-7c07-56a0-0e68-3e25ad9ddca7	2021-05-27 07:26:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:26:21.951+03	2021-05-27 07:26:21.959+03	
b0a33ad4-e472-a415-7142-8b410a1bf315	2021-05-27 07:26:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:26:42.952+03	2021-05-27 07:26:42.961+03	
319da2db-44a0-7027-b497-0d14099a07db	2021-05-27 07:27:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:27:03.951+03	2021-05-27 07:27:03.959+03	
a5b9d026-bf5c-ce18-0760-45ca4ba46511	2021-05-27 07:27:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:27:23.951+03	2021-05-27 07:27:23.959+03	
7e98c431-e69d-c928-25c7-eefc3f1ae6ad	2021-05-27 07:27:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:27:43.951+03	2021-05-27 07:27:43.96+03	
327c90db-4b18-bd90-e0a7-162759ebec7c	2021-05-27 07:28:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:28:03.951+03	2021-05-27 07:28:03.958+03	
dc0c968f-757f-e963-0bee-2d8006c0b4d5	2021-05-27 07:28:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:28:23.951+03	2021-05-27 07:28:23.957+03	
5b4cb6c0-0c80-4b71-2cee-ab4c2386f694	2021-05-27 07:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:28:43.951+03	2021-05-27 07:28:43.959+03	
aabbbfe9-8653-6ca9-f971-955d88293e85	2021-05-27 07:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:29:03.951+03	2021-05-27 07:29:03.958+03	
4d26f47c-b9ba-5ec8-d9ab-b645ee6359fd	2021-05-27 07:29:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:29:23.951+03	2021-05-27 07:29:23.958+03	
6e147ece-a78a-96fd-251a-993e8ac7fdc1	2021-05-27 07:29:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:29:43.951+03	2021-05-27 07:29:43.958+03	
26099f7e-46f2-28fb-9ce8-7baf3ec3a1ae	2021-05-27 07:09:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:09:15.951+03	2021-05-27 07:09:15.959+03	
c5e92cb5-39cd-75d8-0ceb-ad6c5368986b	2021-05-27 07:09:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:09:35.951+03	2021-05-27 07:09:35.959+03	
dc1afcc7-3d6d-6f99-1fb6-2c0c70970bd9	2021-05-27 07:09:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:09:55.951+03	2021-05-27 07:09:55.957+03	
a2959efc-38da-7314-9fef-b9c2dfd28506	2021-05-27 07:10:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:10:05.951+03	2021-05-27 07:10:05.96+03	
3a174688-aeec-c0ba-0930-74dd35f0814c	2021-05-27 07:10:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:10:25.951+03	2021-05-27 07:10:25.958+03	
89fa1cbf-2a27-e6c7-3b01-5a5732de0371	2021-05-27 07:10:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:10:45.951+03	2021-05-27 07:10:45.958+03	
8188ba2a-6699-1b81-3944-0bec5fcc776d	2021-05-27 07:11:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:11:05.951+03	2021-05-27 07:11:05.958+03	
27b6d3b7-f688-e1cc-052c-af7a7f860d80	2021-05-27 07:11:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:11:25.951+03	2021-05-27 07:11:25.958+03	
cb6c96dd-fd25-d6d9-cc7d-7eb4e20d36e8	2021-05-27 07:11:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:11:45.951+03	2021-05-27 07:11:45.958+03	
05bcbab6-9eb7-37c6-bfcf-73b66ea08662	2021-05-27 07:12:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:12:05.951+03	2021-05-27 07:12:05.959+03	
a686963a-1b06-0c7c-edd6-24ab272fb5c3	2021-05-27 07:12:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:12:25.952+03	2021-05-27 07:12:25.959+03	
2ad53554-63cb-b5c7-c64f-91a70d94673d	2021-05-27 07:12:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:12:46.951+03	2021-05-27 07:12:46.958+03	
c5cd8d7d-d5b7-9fe0-aad5-48ef87bc40f1	2021-05-27 07:13:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:13:06.951+03	2021-05-27 07:13:06.96+03	
de40fc02-151c-910a-e799-43226ba573df	2021-05-27 07:13:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:13:26.951+03	2021-05-27 07:13:26.96+03	
a1a7f795-beed-8e7d-dfc7-4ce767bf203a	2021-05-27 07:13:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:13:46.951+03	2021-05-27 07:13:46.96+03	
8672c990-9f73-50a4-eeb2-1f709e7e8038	2021-05-27 07:14:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:14:06.951+03	2021-05-27 07:14:06.958+03	
47cffc7a-47fe-1c5b-df66-4de5601b55c8	2021-05-27 07:14:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:14:26.951+03	2021-05-27 07:14:26.961+03	
25efe933-8a44-72b5-3075-396070220a38	2021-05-27 07:14:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:14:46.951+03	2021-05-27 07:14:46.959+03	
717bc3aa-dee0-8d3f-149b-39053d556a91	2021-05-27 07:15:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:15:06.951+03	2021-05-27 07:15:06.959+03	
06d9bf9e-9617-6128-cb3d-554143447fcc	2021-05-27 07:15:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:15:27.952+03	2021-05-27 07:15:27.96+03	
47b71feb-0589-72f3-107a-3466e2927632	2021-05-27 07:15:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:15:48.951+03	2021-05-27 07:15:48.959+03	
45db5c5e-c9c3-3001-ab46-2123f3fd20eb	2021-05-27 07:16:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:16:08.951+03	2021-05-27 07:16:08.958+03	
35565311-09e7-f334-25c5-0cb6c06922f4	2021-05-27 07:16:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:16:28.952+03	2021-05-27 07:16:28.96+03	
f5b1ffe8-e344-0fef-4a67-9b5fae2446e6	2021-05-27 07:16:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:16:49.951+03	2021-05-27 07:16:49.959+03	
48e24595-6d7c-3ca4-65dd-37309403f1e1	2021-05-27 07:17:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:17:09.951+03	2021-05-27 07:17:09.96+03	
b4af09ba-a7c2-25d0-f4a1-ec78407efa92	2021-05-27 07:17:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:17:29.951+03	2021-05-27 07:17:29.959+03	
104feab3-8bbd-e992-83b6-2fcf7fd83de5	2021-05-27 07:17:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:17:49.951+03	2021-05-27 07:17:49.96+03	
e5b555e9-beed-e666-fe44-4e41b223747a	2021-05-27 07:18:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:18:09.951+03	2021-05-27 07:18:09.994+03	
3db9c1f4-dc02-c249-2f7f-a4dda8b98ffd	2021-05-27 07:18:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:18:30.951+03	2021-05-27 07:18:30.958+03	
b1cb90cc-9564-372e-6c5d-5ff9627f4d22	2021-05-27 07:18:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:18:50.951+03	2021-05-27 07:18:50.99+03	
6e4d5817-b85d-d121-9f60-e46126ae1732	2021-05-27 07:19:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:19:10.951+03	2021-05-27 07:19:10.958+03	
ed49deb6-419c-7d56-73a5-c9d5ec8fcb77	2021-05-27 07:19:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:19:30.951+03	2021-05-27 07:19:30.957+03	
f00fa9e1-9e4c-e487-8c8d-748b86253a81	2021-05-27 07:19:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:19:50.951+03	2021-05-27 07:19:50.994+03	
7ff8eba3-c10b-80a7-7396-256c7716f018	2021-05-27 07:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 07:20:00.951+03	2021-05-27 07:20:00.967+03	ERROR
4e16ace0-8f96-5014-eb89-4f413c868e93	2021-05-27 07:20:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:20:10.951+03	2021-05-27 07:20:10.958+03	
9f4616f3-be25-99cb-3d77-9236d27c3034	2021-05-27 07:20:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:20:30.951+03	2021-05-27 07:20:30.958+03	
00f0fb41-9d10-f528-9e6e-36ca0b20a952	2021-05-27 07:20:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:20:50.951+03	2021-05-27 07:20:50.987+03	
7d3459dc-75ac-e460-5cbf-dfc484dc4f24	2021-05-27 07:21:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:21:10.951+03	2021-05-27 07:21:10.959+03	
19454a8f-c4aa-0836-48e2-92f2b34a8e51	2021-05-27 07:21:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:21:30.951+03	2021-05-27 07:21:30.96+03	
31dd5609-c6d1-ff9a-4b78-db7ec0fcc61e	2021-05-27 07:21:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:21:51.951+03	2021-05-27 07:21:51.96+03	
7a97ebd6-11cc-650f-c79d-53b9fb636a01	2021-05-27 07:22:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:22:11.951+03	2021-05-27 07:22:11.959+03	
4aa6d368-e95c-b2bc-e188-f5108e8b3f94	2021-05-27 07:22:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:22:31.951+03	2021-05-27 07:22:31.999+03	
c8e8fd10-ff34-843d-219f-08583f40fd0a	2021-05-27 07:22:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:22:51.951+03	2021-05-27 07:22:51.957+03	
4a718cff-91b2-74e3-a952-5e3fe070b94b	2021-05-27 07:23:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:23:11.951+03	2021-05-27 07:23:11.958+03	
178be827-0189-8994-ceba-06733d4d7d74	2021-05-27 07:23:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:23:31.951+03	2021-05-27 07:23:31.959+03	
84c6f4ac-7e80-5e76-871d-a3ef13b7bf0c	2021-05-27 07:23:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:23:51.951+03	2021-05-27 07:23:51.988+03	
83aac8b7-580f-4d19-9b4a-652516fc78bd	2021-05-27 07:24:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:24:11.951+03	2021-05-27 07:24:11.96+03	
db7fdac2-097b-aff5-90f4-af8c049cca91	2021-05-27 07:24:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:24:31.951+03	2021-05-27 07:24:31.958+03	
0de78cad-039a-b1a1-ef1c-fded7b6ef568	2021-05-27 07:24:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:24:51.951+03	2021-05-27 07:24:51.958+03	
97378afd-0858-8cfe-896c-ddb2a1226f50	2021-05-27 07:25:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:25:11.951+03	2021-05-27 07:25:11.959+03	
3afe4c16-be74-139e-535f-505082402042	2021-05-27 07:25:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:25:31.951+03	2021-05-27 07:25:31.958+03	
f340541c-c927-ac71-31db-b7ac140e22fb	2021-05-27 07:25:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:25:51.951+03	2021-05-27 07:25:51.958+03	
71bcf94d-5241-65c7-6ae4-582a6862031f	2021-05-27 07:26:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:26:11.951+03	2021-05-27 07:26:11.958+03	
0830f263-c228-27bd-adf7-e7397fe83d52	2021-05-27 07:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:26:31.952+03	2021-05-27 07:26:31.959+03	
52c9abed-2b0f-455d-870b-90b0300d4dee	2021-05-27 07:26:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:26:53.951+03	2021-05-27 07:26:53.958+03	
7f89c7e9-be3e-6f1a-8012-47846739213f	2021-05-27 07:27:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:27:13.951+03	2021-05-27 07:27:13.959+03	
aaf8652a-7b85-4a81-bd15-2d7df19aa901	2021-05-27 07:27:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:27:33.951+03	2021-05-27 07:27:33.958+03	
b9d59eb7-c15f-d324-ed52-0b05ff179ad4	2021-05-27 07:27:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:27:53.951+03	2021-05-27 07:27:53.958+03	
fa595390-1d9b-4f17-0775-2433be31fa21	2021-05-27 07:28:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:28:13.951+03	2021-05-27 07:28:13.958+03	
6c9b37ef-da6e-8332-7ba2-f5747b1b3fd8	2021-05-27 07:28:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:28:33.951+03	2021-05-27 07:28:33.957+03	
b36f253d-62a1-d89a-c44f-eb8d53e6f128	2021-05-27 07:28:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:28:53.951+03	2021-05-27 07:28:53.96+03	
1dcb51b7-912e-b333-76ef-0f773a855559	2021-05-27 07:29:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:29:13.951+03	2021-05-27 07:29:13.958+03	
1b97e0de-7303-af7c-6103-0cbb3e750930	2021-05-27 07:29:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:29:33.951+03	2021-05-27 07:29:33.96+03	
19e6e221-90e9-1610-cacf-406708446e71	2021-05-27 07:29:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:29:53.951+03	2021-05-27 07:29:53.959+03	
577783cc-5200-df0c-3c63-22565dd0de7a	2021-05-27 07:30:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:30:03.951+03	2021-05-27 07:30:03.957+03	
d7e4efcb-af89-8b05-e216-9f7f03c2b3a9	2021-05-27 07:30:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:30:23.951+03	2021-05-27 07:30:23.958+03	
0bd979f6-c58e-f1c7-c0cf-5695b1e63d18	2021-05-27 07:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:30:43.951+03	2021-05-27 07:30:43.959+03	
9cb09e93-df24-e828-de24-5457909e565c	2021-05-27 07:31:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:31:03.951+03	2021-05-27 07:31:03.986+03	
99250122-5ed7-bbcb-da52-e440eea89bf6	2021-05-27 07:31:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:31:23.951+03	2021-05-27 07:31:23.958+03	
cb58b224-a0e1-5c07-43cf-36794ae533da	2021-05-27 07:31:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:31:43.951+03	2021-05-27 07:31:43.958+03	
5ba6dba1-c4e9-288d-4671-0236d1f9d0e3	2021-05-27 07:32:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:32:03.951+03	2021-05-27 07:32:03.958+03	
c807ba38-6f69-e49c-a5b8-234207ff6116	2021-05-27 07:32:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:32:23.951+03	2021-05-27 07:32:23.962+03	
eb0c5cae-52ec-4745-20e4-1ccd8b7c5a5f	2021-05-27 07:32:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:32:43.951+03	2021-05-27 07:32:43.958+03	
de604f5a-b6f2-80ca-8e25-56a76c8ee626	2021-05-27 07:33:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:33:03.951+03	2021-05-27 07:33:03.958+03	
f75edc54-4bd5-ab14-caf2-c4e2e579edaa	2021-05-27 07:33:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:33:24.951+03	2021-05-27 07:33:24.959+03	
d1162ec3-f4b3-8b5a-74ff-aa53a804cd7d	2021-05-27 07:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:33:44.951+03	2021-05-27 07:33:44.957+03	
ad7bc415-84b2-e444-c5df-693311194240	2021-05-27 07:34:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:34:04.951+03	2021-05-27 07:34:04.962+03	
71adec39-2960-0c8c-f102-41f098a8d28e	2021-05-27 07:34:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:34:24.951+03	2021-05-27 07:34:24.957+03	
cea0ab2e-483f-54cb-52f5-5935ed0387e7	2021-05-27 07:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:34:44.951+03	2021-05-27 07:34:44.959+03	
b7d461da-9f83-241b-8dff-4a6eee7711c5	2021-05-27 07:35:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:35:04.951+03	2021-05-27 07:35:04.958+03	
9b5860b8-13d7-5be1-9c65-5987480f0387	2021-05-27 07:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:35:24.951+03	2021-05-27 07:35:24.96+03	
c0f6a6ce-e58e-028b-a750-432b70816314	2021-05-27 07:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:35:44.952+03	2021-05-27 07:35:44.96+03	
e45e998e-97ac-ba8c-0d4a-39518101288e	2021-05-27 07:36:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:36:05.951+03	2021-05-27 07:36:05.958+03	
cf010bbe-9931-7973-a733-1f92f824a279	2021-05-27 07:36:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:36:25.951+03	2021-05-27 07:36:25.958+03	
78ee1863-6fa9-1740-b5c3-57626551f279	2021-05-27 07:36:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:36:45.951+03	2021-05-27 07:36:45.959+03	
9c7e7052-944e-25de-5e26-e1b0f5933b08	2021-05-27 07:37:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:37:05.951+03	2021-05-27 07:37:05.962+03	
f6a4525a-0fdc-aa35-c011-bff850721629	2021-05-27 07:37:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:37:25.951+03	2021-05-27 07:37:25.959+03	
1d56850d-7db7-7fd6-6f2b-c20908957223	2021-05-27 07:37:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:37:45.951+03	2021-05-27 07:37:45.958+03	
86d5b7ea-3bd8-de22-ec7e-ed7db81fd02c	2021-05-27 07:38:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:38:05.951+03	2021-05-27 07:38:05.958+03	
b00e3f7d-f4d4-9d49-d665-e1b2aca2cbcd	2021-05-27 07:38:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:38:25.951+03	2021-05-27 07:38:25.958+03	
b697efce-ee34-e228-c729-6d71c3b2d26a	2021-05-27 07:38:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:38:45.951+03	2021-05-27 07:38:45.959+03	
77ca4021-bf6e-e299-324b-0fb5f9ebee1c	2021-05-27 07:39:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:39:05.951+03	2021-05-27 07:39:05.959+03	
ae141d4c-78c4-f5e3-3831-b500005f301d	2021-05-27 07:39:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:39:25.951+03	2021-05-27 07:39:25.957+03	
5b9ef1bf-6ef3-b07b-801f-47c17b493790	2021-05-27 07:39:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:39:45.951+03	2021-05-27 07:39:45.958+03	
88afb46a-2e9d-6ba4-0a7e-debf1a502042	2021-05-27 07:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 07:40:00.951+03	2021-05-27 07:40:00.957+03	ERROR
c3941b3e-2ea8-a302-5ad8-646fd7f486b0	2021-05-27 07:40:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:40:15.951+03	2021-05-27 07:40:15.957+03	
cf9a6627-22a4-bbdd-7272-f30fe6154c9e	2021-05-27 07:40:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:40:35.951+03	2021-05-27 07:40:35.96+03	
4afd599d-3116-b098-fab1-37b7231f502c	2021-05-27 07:40:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:40:55.951+03	2021-05-27 07:40:55.96+03	
79548c0b-df5f-3cd6-39e9-e2e7f8e793f0	2021-05-27 07:41:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:41:15.951+03	2021-05-27 07:41:15.958+03	
b49b5cda-c8c5-eef4-140a-65d116c0778c	2021-05-27 07:41:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:41:35.951+03	2021-05-27 07:41:35.959+03	
db0f022c-06d6-40f3-9e7f-0589225b4ca3	2021-05-27 07:41:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:41:55.951+03	2021-05-27 07:41:55.957+03	
01dadab8-6f5d-2288-654c-aed3ce331a4b	2021-05-27 07:42:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:42:15.951+03	2021-05-27 07:42:15.958+03	
4e4d3aec-b683-334c-18e5-6e5ea1b93ebe	2021-05-27 07:42:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:42:35.952+03	2021-05-27 07:42:35.959+03	
9f996a64-de39-0912-97b5-757e3a4ce124	2021-05-27 07:42:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:42:56.951+03	2021-05-27 07:42:56.957+03	
9c2194bc-d4fc-4792-62a3-9097bf12d8ee	2021-05-27 07:43:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:43:16.951+03	2021-05-27 07:43:16.958+03	
fc8f2fa8-124d-5831-8ab9-bc70c36d3c89	2021-05-27 07:43:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:43:36.951+03	2021-05-27 07:43:36.97+03	
fed55e33-f9ad-6d4a-d5b4-5805767e4b5b	2021-05-27 07:43:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:43:56.951+03	2021-05-27 07:43:56.96+03	
d53c616a-10e0-30d8-8aa8-96a88dff2a3b	2021-05-27 07:44:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:44:16.951+03	2021-05-27 07:44:16.959+03	
00387c59-9f20-602e-5641-6408e65ed973	2021-05-27 07:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:44:36.951+03	2021-05-27 07:44:36.959+03	
4ab6f92f-ef1d-b3c7-2e50-da1d930f2f2d	2021-05-27 07:44:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:44:56.951+03	2021-05-27 07:44:56.958+03	
474f5646-834e-09db-e443-d575faf4911b	2021-05-27 07:45:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:45:16.951+03	2021-05-27 07:45:16.959+03	
19d7b92f-c2e5-ef31-d114-23dd3b461610	2021-05-27 07:45:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:45:36.951+03	2021-05-27 07:45:36.958+03	
b52e08e7-dc2c-3fe4-2c9e-0bab63d49751	2021-05-27 07:45:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:45:56.951+03	2021-05-27 07:45:56.958+03	
4dee53b3-2ad8-32a6-7ff7-d6e5d20a3efb	2021-05-27 07:46:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:46:16.952+03	2021-05-27 07:46:16.958+03	
aa3988fe-b05c-d80e-bc52-15b20281e8ae	2021-05-27 07:46:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:46:38.951+03	2021-05-27 07:46:38.959+03	
551e996c-de36-7da0-6dd3-31381eede688	2021-05-27 07:46:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:46:58.951+03	2021-05-27 07:46:58.959+03	
e913ce50-4c01-84d2-9fda-17061997e4d5	2021-05-27 07:47:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:47:18.951+03	2021-05-27 07:47:18.963+03	
f0664692-71cd-00aa-24e9-cd7637461358	2021-05-27 07:47:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:47:38.951+03	2021-05-27 07:47:38.958+03	
9eaffed5-9dbb-4fa0-bd11-d6452b878bd3	2021-05-27 07:47:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:47:58.951+03	2021-05-27 07:47:58.959+03	
bbb64fa8-d656-9ade-db0b-9bfb14a0d8ac	2021-05-27 07:48:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:48:18.951+03	2021-05-27 07:48:18.957+03	
fec5ae5f-a31a-052d-458b-77d08a88b554	2021-05-27 07:48:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:48:38.951+03	2021-05-27 07:48:38.959+03	
4dca390e-23e9-c3ad-7b3e-1d276c159510	2021-05-27 07:48:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:48:59.951+03	2021-05-27 07:48:59.959+03	
4f3a7adf-8cbd-2840-552d-6fc3ad50b774	2021-05-27 07:49:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:49:19.951+03	2021-05-27 07:49:19.957+03	
7aefde70-ef89-d60a-f9a2-538e6fe0cef5	2021-05-27 07:49:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:49:39.951+03	2021-05-27 07:49:39.96+03	
fd4637d9-4b3b-afc6-8b96-d9b7cef72dbe	2021-05-27 07:49:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:49:59.951+03	2021-05-27 07:49:59.958+03	
efee50d5-ec51-6c44-234c-30a84c908105	2021-05-27 07:50:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:50:09.951+03	2021-05-27 07:50:09.96+03	
e9252ef6-47b2-7ffb-1d46-fac916973d6a	2021-05-27 07:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 07:30:00.951+03	2021-05-27 07:30:00.957+03	ERROR
c5e77e6d-4a15-152d-230d-3ebd87e480f5	2021-05-27 07:30:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:30:13.951+03	2021-05-27 07:30:13.958+03	
54b91f31-99a0-3333-b261-8ea12febb227	2021-05-27 07:30:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:30:33.951+03	2021-05-27 07:30:33.96+03	
271acf1d-eb74-0ebe-6de7-5c5b0be203de	2021-05-27 07:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:30:53.951+03	2021-05-27 07:30:53.977+03	
5eb8ac31-5d3d-cb0c-c6bb-6f5aa7c6ca81	2021-05-27 07:31:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:31:13.951+03	2021-05-27 07:31:13.959+03	
87f5ecd6-0166-9036-497b-1baece79362b	2021-05-27 07:31:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:31:33.951+03	2021-05-27 07:31:33.958+03	
a9d65c3e-cda1-e2c5-1104-09eda7cc6829	2021-05-27 07:31:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:31:53.951+03	2021-05-27 07:31:53.958+03	
f99d550e-e0c2-a99a-9b1b-325d9a804a1a	2021-05-27 07:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:32:13.951+03	2021-05-27 07:32:13.96+03	
b3119146-6298-f733-ef54-baf0e4b3f38e	2021-05-27 07:32:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:32:33.951+03	2021-05-27 07:32:33.96+03	
71cae183-6a3c-8fd7-b872-b6c79a99bb1a	2021-05-27 07:32:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:32:53.951+03	2021-05-27 07:32:53.957+03	
aacadb43-f245-92d2-67a0-3cc24cdb1b66	2021-05-27 07:33:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:33:13.952+03	2021-05-27 07:33:13.96+03	
7b944f20-a573-eb1a-7014-0d8053b04a5d	2021-05-27 07:33:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:33:34.951+03	2021-05-27 07:33:34.96+03	
db090ed4-03c6-a34b-1f15-5ba0935ee95a	2021-05-27 07:33:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:33:54.951+03	2021-05-27 07:33:54.959+03	
36f6d784-6dee-5422-c10f-aa940038c5a6	2021-05-27 07:34:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:34:14.951+03	2021-05-27 07:34:14.959+03	
33e214ba-c916-3748-e5d4-c36d8db6cc84	2021-05-27 07:34:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:34:34.951+03	2021-05-27 07:34:34.957+03	
c3cd48ab-297b-3ff7-0fb1-0ccd18bad302	2021-05-27 07:34:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:34:54.951+03	2021-05-27 07:34:54.958+03	
c6ddcf1d-6988-719a-e15d-80ffc64df53b	2021-05-27 07:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:35:14.951+03	2021-05-27 07:35:14.959+03	
1b887120-c54b-994b-51ce-ccb53583cce0	2021-05-27 07:35:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:35:34.951+03	2021-05-27 07:35:34.957+03	
9abe1d96-390c-53bc-e19a-6fba55783663	2021-05-27 07:35:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:35:55.951+03	2021-05-27 07:35:55.958+03	
b318e27a-63a3-a5c0-817f-434ac20555b0	2021-05-27 07:36:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:36:15.951+03	2021-05-27 07:36:15.958+03	
b465c443-1fd7-98f3-e94b-57ae89828240	2021-05-27 07:36:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:36:35.951+03	2021-05-27 07:36:35.96+03	
4649c025-e7ba-7455-1358-6e6ca0c1914a	2021-05-27 07:36:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:36:55.951+03	2021-05-27 07:36:55.959+03	
7de00bac-26d2-a734-0399-28cb7861993e	2021-05-27 07:37:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:37:15.951+03	2021-05-27 07:37:15.959+03	
1578ce0f-859a-171e-a72f-dc4d27bd9875	2021-05-27 07:37:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:37:35.951+03	2021-05-27 07:37:35.959+03	
fec2cd83-f709-f331-330d-e8f2eb35dc27	2021-05-27 07:37:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:37:55.951+03	2021-05-27 07:37:55.958+03	
75a3c93b-afbf-4bf2-f8cb-718be8bcf1a8	2021-05-27 07:38:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:38:15.951+03	2021-05-27 07:38:15.958+03	
bf3e3ec6-43a9-e110-91e2-bfb4a4800a7c	2021-05-27 07:38:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:38:35.951+03	2021-05-27 07:38:35.962+03	
ee2fc622-eaef-7d84-e943-fdf8c8a1630b	2021-05-27 07:38:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:38:55.951+03	2021-05-27 07:38:55.958+03	
7e851ba7-3dca-b827-e8c0-d392343f92de	2021-05-27 07:39:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:39:15.951+03	2021-05-27 07:39:15.958+03	
e3e12de0-0c0d-4715-3fee-f68e26fa71ea	2021-05-27 07:39:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:39:35.951+03	2021-05-27 07:39:35.96+03	
72deb7fe-b410-756f-b613-3ddf4c46f94e	2021-05-27 07:39:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:39:55.951+03	2021-05-27 07:39:55.958+03	
60ee143a-aa26-5f07-7da1-af4ccf7a6e1d	2021-05-27 07:40:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:40:05.951+03	2021-05-27 07:40:05.958+03	
1b3b0c2c-ee5f-9940-3c83-26c0b082a459	2021-05-27 07:40:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:40:25.951+03	2021-05-27 07:40:25.958+03	
4b44e757-d3ba-a151-83b5-4e4816565050	2021-05-27 07:40:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:40:45.951+03	2021-05-27 07:40:45.959+03	
12183d6f-e150-81c0-4f78-ff735e0cb449	2021-05-27 07:41:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:41:05.951+03	2021-05-27 07:41:05.959+03	
55c98206-db29-e767-5f2b-2d15a1128947	2021-05-27 07:41:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:41:25.951+03	2021-05-27 07:41:25.958+03	
8f813a31-1e11-8d0b-40e4-31e44d4a7b4d	2021-05-27 07:41:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:41:45.951+03	2021-05-27 07:41:45.957+03	
2b7eafb3-8e17-33f9-8ca4-79c9b89545ec	2021-05-27 07:42:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:42:05.951+03	2021-05-27 07:42:05.962+03	
83375e61-3c8a-22fb-b612-149f91eaf236	2021-05-27 07:42:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:42:25.951+03	2021-05-27 07:42:25.958+03	
78fd74fd-469d-39ea-9d53-8b588e9db350	2021-05-27 07:42:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:42:46.951+03	2021-05-27 07:42:46.959+03	
fc1ddb73-7075-d042-1211-5a12a77a41f3	2021-05-27 07:43:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:43:06.951+03	2021-05-27 07:43:06.958+03	
6f346e3d-3004-c22d-8aaf-f50d8e26d51d	2021-05-27 07:43:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:43:26.951+03	2021-05-27 07:43:26.958+03	
0e9ad492-7e70-a2d5-b573-7c2e724e0782	2021-05-27 07:43:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:43:46.951+03	2021-05-27 07:43:46.959+03	
7d77f93e-ae60-a545-92ed-cb4d8a02d1d1	2021-05-27 07:44:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:44:06.951+03	2021-05-27 07:44:06.959+03	
2591dedf-2dad-3800-3ee4-06064cdedd53	2021-05-27 07:44:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:44:26.951+03	2021-05-27 07:44:26.959+03	
8814dc02-c779-db97-cf73-b57d1cab14f0	2021-05-27 07:44:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:44:46.951+03	2021-05-27 07:44:46.957+03	
323c5d5b-f8cd-a41b-1777-53fd56bdac17	2021-05-27 07:45:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:45:06.951+03	2021-05-27 07:45:06.958+03	
9dbe17f5-cda7-dfd3-fa83-fe0551b9aaad	2021-05-27 07:45:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:45:26.951+03	2021-05-27 07:45:26.959+03	
5900a361-e9ed-5188-425d-c853a2ec119e	2021-05-27 07:45:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:45:46.951+03	2021-05-27 07:45:46.958+03	
700c0cd9-1d5e-62db-c3e3-f65be1d742d3	2021-05-27 07:46:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:46:06.951+03	2021-05-27 07:46:06.958+03	
3734bca5-f16e-db7d-172b-8f56acde4529	2021-05-27 07:46:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:46:27.953+03	2021-05-27 07:46:27.959+03	
99e0e5f9-ea15-f115-aec3-dd05211636bc	2021-05-27 07:46:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:46:48.951+03	2021-05-27 07:46:48.958+03	
36a5dcb1-ae18-474f-7dfd-ec82c178ca75	2021-05-27 07:47:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:47:08.951+03	2021-05-27 07:47:08.957+03	
904ead81-0d2a-545d-3880-9864929fadc4	2021-05-27 07:47:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:47:28.951+03	2021-05-27 07:47:28.957+03	
fa89afdb-d4ea-c668-0a64-0b7aa7d6da1d	2021-05-27 07:47:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:47:48.951+03	2021-05-27 07:47:48.958+03	
ad3f1b02-e911-d910-1c6c-80f9ac33b520	2021-05-27 07:48:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:48:08.951+03	2021-05-27 07:48:08.958+03	
dd964b71-84ea-bed6-ba4f-de471255e2be	2021-05-27 07:48:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:48:28.951+03	2021-05-27 07:48:28.959+03	
0d094d5d-9573-f97f-e4ab-49a6eb867208	2021-05-27 07:48:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:48:48.952+03	2021-05-27 07:48:48.958+03	
ee4fb63f-5e78-a0ad-2cb1-2e159ec8bfa0	2021-05-27 07:49:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:49:09.951+03	2021-05-27 07:49:09.958+03	
fe38ec01-4e9e-8f1c-4275-4b0050375700	2021-05-27 07:49:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:49:29.951+03	2021-05-27 07:49:29.959+03	
593cf21a-b396-ca8a-df61-c2d76159394c	2021-05-27 07:49:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:49:49.951+03	2021-05-27 07:49:49.958+03	
56ad2b42-3cb1-4c51-c6c3-9f81e3c774a0	2021-05-27 07:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 07:50:00.951+03	2021-05-27 07:50:00.957+03	ERROR
ab3cd8f1-f226-00e5-afd2-f1da6c834a6d	2021-05-27 07:50:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:50:19.951+03	2021-05-27 07:50:19.959+03	
1aa86710-ac3c-1b36-442c-a9f5ca3a413f	2021-05-27 07:50:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:50:29.951+03	2021-05-27 07:50:29.959+03	
56a9203d-992b-2f8a-3868-595a4b5ac954	2021-05-27 07:50:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:50:49.951+03	2021-05-27 07:50:49.958+03	
02983996-d11d-b011-161b-47c5b089ca40	2021-05-27 07:51:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:51:09.951+03	2021-05-27 07:51:09.958+03	
96e9e66f-4f74-dcc3-b4e1-70152670b0f2	2021-05-27 07:51:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:51:29.951+03	2021-05-27 07:51:29.96+03	
ffc2c5eb-cc70-53f0-899d-ef6c620e9994	2021-05-27 07:51:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:51:49.951+03	2021-05-27 07:51:49.958+03	
d65e43d3-0721-d089-d09a-0364868f6568	2021-05-27 07:52:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:52:09.951+03	2021-05-27 07:52:09.957+03	
839fa8fc-8581-0d85-1a88-3bc3c48bf935	2021-05-27 07:52:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:52:29.951+03	2021-05-27 07:52:29.959+03	
f4e1c335-36a3-b521-585b-7e9bfd5185bd	2021-05-27 07:52:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:52:49.951+03	2021-05-27 07:52:49.96+03	
e6b76f46-7370-3af3-7a36-cbe588d84035	2021-05-27 07:53:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:53:09.951+03	2021-05-27 07:53:09.958+03	
98c8baa0-7a22-2f5a-ddfc-4bab62bae2ec	2021-05-27 07:53:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:53:29.951+03	2021-05-27 07:53:29.959+03	
2de5b027-4984-6eea-1172-7ae5d22ffc9b	2021-05-27 07:53:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:53:49.951+03	2021-05-27 07:53:49.959+03	
b46080cd-774c-8767-7fe1-2e93f42a3eac	2021-05-27 07:54:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:54:09.951+03	2021-05-27 07:54:09.958+03	
67a521b0-680f-abe7-6830-d715b6e5fff9	2021-05-27 07:54:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:54:29.951+03	2021-05-27 07:54:29.959+03	
16572d8c-968e-0db3-babe-ecab3a117c6b	2021-05-27 07:54:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:54:49.951+03	2021-05-27 07:54:49.958+03	
a8cb4397-f937-f4a0-40cd-0ff6335aa646	2021-05-27 07:55:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:55:09.951+03	2021-05-27 07:55:09.958+03	
eac0955f-529d-045e-0fc7-0be9b85f614a	2021-05-27 07:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:55:29.951+03	2021-05-27 07:55:29.959+03	
60f772c9-edfa-ba0b-8d68-76ffd7198de8	2021-05-27 07:55:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:55:49.951+03	2021-05-27 07:55:49.958+03	
2096a521-cf1e-15c8-b0b4-ca1d73bdc902	2021-05-27 07:56:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:56:09.951+03	2021-05-27 07:56:09.958+03	
47e18a28-7b15-2e54-8207-2823e08eef2e	2021-05-27 07:56:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:56:29.951+03	2021-05-27 07:56:29.959+03	
12ee6faf-68e6-ee16-b028-11b03201ae78	2021-05-27 07:56:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:56:49.951+03	2021-05-27 07:56:49.958+03	
151a2b6d-0f1f-dbbd-9b68-079449525cac	2021-05-27 07:57:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:57:09.951+03	2021-05-27 07:57:09.959+03	
8b13757c-3f81-23af-4f6a-205bfe69f10a	2021-05-27 07:57:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:57:29.951+03	2021-05-27 07:57:29.957+03	
9bd3c594-f7ff-d715-2340-8926fa34d595	2021-05-27 07:57:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:57:49.951+03	2021-05-27 07:57:49.959+03	
328bbee2-9582-90a4-9b97-c339eca5c5df	2021-05-27 07:58:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:58:09.951+03	2021-05-27 07:58:09.959+03	
c40301a8-0505-9a58-e863-5a75742d2636	2021-05-27 07:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:58:29.951+03	2021-05-27 07:58:29.959+03	
cef98357-5c87-0d25-a8cd-6be7dd2f5c5c	2021-05-27 07:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:58:49.951+03	2021-05-27 07:58:49.96+03	
36734c2c-18ea-dcdb-2361-905016eeecdd	2021-05-27 07:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:59:09.951+03	2021-05-27 07:59:09.958+03	
2da60726-0ed0-140b-fff8-f8952ea6f102	2021-05-27 07:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:59:29.951+03	2021-05-27 07:59:29.958+03	
08f48fbc-a448-0748-e201-f76e4d1c7391	2021-05-27 07:59:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:59:49.951+03	2021-05-27 07:59:49.959+03	
f007a0f5-1c50-838c-9052-2c388e188c3e	2021-05-27 08:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 08:00:00.952+03	2021-05-27 08:00:00.961+03	ERROR
f2d0759d-65b9-2675-444e-20dfe847a24b	2021-05-27 08:00:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:00:19.951+03	2021-05-27 08:00:19.958+03	
fe8cb91a-8d56-da34-be2f-8dd04a95a6aa	2021-05-27 08:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:00:39.951+03	2021-05-27 08:00:39.959+03	
ebfbbb1e-c2dc-cf1c-8f77-b73955508467	2021-05-27 08:00:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:00:59.951+03	2021-05-27 08:00:59.961+03	
34da1097-e4dd-ff85-a3c7-66cf3ccb9951	2021-05-27 08:01:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:01:19.952+03	2021-05-27 08:01:19.959+03	
374dfa26-778e-6543-85e4-2e5d4bbd92fa	2021-05-27 08:01:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:01:40.951+03	2021-05-27 08:01:41.006+03	
79264489-db31-aeef-6190-062bf03f5392	2021-05-27 08:02:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:02:00.951+03	2021-05-27 08:02:00.958+03	
e0216769-555c-1afe-b903-bb33ea8668cc	2021-05-27 08:02:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:02:20.951+03	2021-05-27 08:02:20.958+03	
00ed2593-ad86-5130-624d-d0595ab281cc	2021-05-27 08:02:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:02:40.951+03	2021-05-27 08:02:40.958+03	
81a9f31c-72b8-dd9c-2748-04aee89b1aa2	2021-05-27 08:03:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:03:00.951+03	2021-05-27 08:03:00.957+03	
9a30dcd2-fbfb-a0ba-e7a1-ac65ca4ce670	2021-05-27 08:03:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:03:20.951+03	2021-05-27 08:03:20.958+03	
c21069b4-783e-8dfc-e146-2dbaa1d0e214	2021-05-27 08:03:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:03:41.951+03	2021-05-27 08:03:41.96+03	
6c853e5e-508c-334f-3ad6-395935aac12c	2021-05-27 08:04:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:04:01.951+03	2021-05-27 08:04:01.96+03	
1f0c03e8-af5b-eb50-96f4-6172b74eb40a	2021-05-27 08:04:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:04:21.951+03	2021-05-27 08:04:21.959+03	
2d50ef34-2bcc-0b06-3d03-56d8ef84d0b4	2021-05-27 08:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:04:41.951+03	2021-05-27 08:04:41.96+03	
e4498549-558b-e9d9-cdc7-f010aefcb98e	2021-05-27 08:05:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:05:01.951+03	2021-05-27 08:05:01.958+03	
1442432e-3201-455d-e852-b143e03e15b5	2021-05-27 08:05:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:05:31.951+03	2021-05-27 08:05:31.957+03	
9adcded2-d66e-80a8-698d-16d1b8b93cda	2021-05-27 08:05:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:05:51.951+03	2021-05-27 08:05:51.957+03	
509ba1a6-a437-e438-211e-e0e985f8eb02	2021-05-27 08:06:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:06:11.951+03	2021-05-27 08:06:11.959+03	
e7c39978-dd72-b589-3d10-71a87cf6a07d	2021-05-27 08:06:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:06:31.951+03	2021-05-27 08:06:31.959+03	
26ab9489-d3d0-4168-e138-b885af5457de	2021-05-27 08:06:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:06:51.951+03	2021-05-27 08:06:51.958+03	
a3688f0e-5ead-2192-f0d1-20e2f2ff16bb	2021-05-27 08:07:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:07:11.951+03	2021-05-27 08:07:11.96+03	
93fc3531-028b-f06f-a2ee-c19d6528ff60	2021-05-27 08:07:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:07:31.951+03	2021-05-27 08:07:31.959+03	
ba1aed51-c0b6-de6c-63b6-62865130a924	2021-05-27 08:07:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:07:51.951+03	2021-05-27 08:07:51.958+03	
f3f4ea7d-9ff2-1b46-10c8-c270d6581330	2021-05-27 08:08:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:08:11.951+03	2021-05-27 08:08:11.96+03	
c552e8c3-e6b0-e971-1056-7fe52ff0447f	2021-05-27 08:08:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:08:31.951+03	2021-05-27 08:08:31.958+03	
0fec1d9a-1abe-6c04-4684-e301205ad0b6	2021-05-27 08:08:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:08:51.951+03	2021-05-27 08:08:51.958+03	
fd67b14f-1eef-089e-af44-e8dcadd90697	2021-05-27 08:09:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:09:11.952+03	2021-05-27 08:09:11.959+03	
b6af8dce-94f4-de25-0348-46952c9db340	2021-05-27 08:09:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:09:32.951+03	2021-05-27 08:09:32.959+03	
b4ad96d2-6747-e281-0558-57fb783eb032	2021-05-27 08:09:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:09:52.951+03	2021-05-27 08:09:52.96+03	
0cdfb7ef-f689-5882-6af2-5853b2bdd7bb	2021-05-27 08:10:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:10:02.951+03	2021-05-27 08:10:02.958+03	
09083d0e-5fd0-9561-2957-7d520aaa1898	2021-05-27 08:10:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:10:22.951+03	2021-05-27 08:10:22.959+03	
bf69d9e9-8359-599d-0294-76ca383c4999	2021-05-27 08:10:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:10:42.951+03	2021-05-27 08:10:42.958+03	
3c7f6fec-81f5-2f8e-91a9-a7812efa90c9	2021-05-27 08:11:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:11:03.951+03	2021-05-27 08:11:03.96+03	
31b5da4c-3c7d-dd92-37d6-a1ff6513b402	2021-05-27 07:50:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:50:39.951+03	2021-05-27 07:50:39.958+03	
21516379-b019-442b-91ad-5f5afac14b63	2021-05-27 07:50:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:50:59.951+03	2021-05-27 07:50:59.961+03	
e191f6d7-70a0-5f1f-2e97-f22cc6bd5309	2021-05-27 07:51:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:51:19.951+03	2021-05-27 07:51:19.958+03	
5a7d0e09-e599-31a5-d388-2176f1e2fe49	2021-05-27 07:51:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:51:39.951+03	2021-05-27 07:51:39.96+03	
40019a3d-bf68-09ac-6fa2-7dfd56e5b9db	2021-05-27 07:51:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:51:59.951+03	2021-05-27 07:51:59.958+03	
d4dc2b5b-0f4d-cfa1-dcea-b33af0c3cff0	2021-05-27 07:52:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:52:19.951+03	2021-05-27 07:52:19.958+03	
a7a35a92-d7de-25d9-ac79-3c31d1410894	2021-05-27 07:52:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:52:39.951+03	2021-05-27 07:52:39.96+03	
6937c14a-0629-7f00-496d-65c06d504111	2021-05-27 07:52:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:52:59.951+03	2021-05-27 07:52:59.958+03	
946a2b52-2806-7b30-e992-cc5b2c6914e0	2021-05-27 07:53:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:53:19.951+03	2021-05-27 07:53:19.958+03	
b3d216da-472b-35ab-6695-0786cb3920e9	2021-05-27 07:53:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:53:39.951+03	2021-05-27 07:53:39.958+03	
c26ec1a5-9d91-408c-e109-5441b47caf4b	2021-05-27 07:53:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:53:59.951+03	2021-05-27 07:53:59.959+03	
cf316f0c-0f72-123d-51ce-eb2593a0bd29	2021-05-27 07:54:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:54:19.951+03	2021-05-27 07:54:19.959+03	
f957d199-c089-1884-2b59-f79d82b50be1	2021-05-27 07:54:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:54:39.951+03	2021-05-27 07:54:39.958+03	
a4df3c3d-b0d0-00b8-69a1-0a89e51e93d8	2021-05-27 07:54:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:54:59.951+03	2021-05-27 07:54:59.959+03	
5f5e1e3a-026e-356d-3cec-61c01b834220	2021-05-27 07:55:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:55:19.951+03	2021-05-27 07:55:19.958+03	
1f5709c5-031e-25cb-6cc7-6a9db69876dd	2021-05-27 07:55:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:55:39.951+03	2021-05-27 07:55:39.959+03	
6dbf5759-e4e0-2a37-811d-1d48b77b0100	2021-05-27 07:55:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:55:59.951+03	2021-05-27 07:55:59.959+03	
37ad50f6-3f07-214f-21eb-a33e40d5dbc5	2021-05-27 07:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:56:19.951+03	2021-05-27 07:56:19.957+03	
a2569413-6dfe-69f8-551d-dde57b61018b	2021-05-27 07:56:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:56:39.951+03	2021-05-27 07:56:39.958+03	
4f0c8f4c-1015-b0a3-9817-5679d2058499	2021-05-27 07:56:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:56:59.951+03	2021-05-27 07:56:59.957+03	
33cc798c-c315-6506-ad82-f2c7f7ad0114	2021-05-27 07:57:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:57:19.951+03	2021-05-27 07:57:19.958+03	
f928fb5b-9afb-a15b-3c17-05a5037c4cac	2021-05-27 07:57:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:57:39.951+03	2021-05-27 07:57:39.959+03	
1c5cb9cb-f228-4077-9f7b-f9904630dd97	2021-05-27 07:57:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:57:59.951+03	2021-05-27 07:57:59.958+03	
24b935c1-daa6-fd5a-4b53-8e0ef116e014	2021-05-27 07:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:58:19.951+03	2021-05-27 07:58:19.958+03	
12d61af0-f08b-6cfa-9e03-141453b53898	2021-05-27 07:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:58:39.951+03	2021-05-27 07:58:39.959+03	
14b016c9-e29c-c20a-a219-bbaecbaa9ac8	2021-05-27 07:58:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:58:59.951+03	2021-05-27 07:58:59.96+03	
1c1dc20c-6ade-cccd-6f34-dfbb71af14b4	2021-05-27 07:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:59:19.951+03	2021-05-27 07:59:19.959+03	
90e6536e-3593-fdae-c79f-1c8ca40ba174	2021-05-27 07:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:59:39.951+03	2021-05-27 07:59:39.958+03	
763ca305-eff3-4548-28a9-0c41f7dcaaf0	2021-05-27 07:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 07:59:59.951+03	2021-05-27 07:59:59.96+03	
40ee31f3-f5b3-9e2d-5ba5-b4fa5411074a	2021-05-27 08:00:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:00:09.951+03	2021-05-27 08:00:09.958+03	
8940950f-9592-9be0-9164-9455ad8c1f81	2021-05-27 08:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:00:29.951+03	2021-05-27 08:00:29.959+03	
8abd200d-a212-76a0-ac13-18f288a67280	2021-05-27 08:00:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:00:49.951+03	2021-05-27 08:00:49.959+03	
e76d623b-66ab-26d0-1c89-deddc930da71	2021-05-27 08:01:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:01:09.951+03	2021-05-27 08:01:09.959+03	
09704a23-6560-7e3d-a118-3050b5434316	2021-05-27 08:01:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:01:30.951+03	2021-05-27 08:01:30.958+03	
c7744c58-20ed-9ecd-a1a7-23c899d2527a	2021-05-27 08:01:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:01:50.951+03	2021-05-27 08:01:50.958+03	
5d9dd062-fe22-2c44-2325-f341183dfd23	2021-05-27 08:02:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:02:10.951+03	2021-05-27 08:02:10.959+03	
081f479f-5ce9-8526-2c10-4f9aa09ebfe5	2021-05-27 08:02:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:02:30.951+03	2021-05-27 08:02:30.964+03	
8b33cfe5-cca3-6b8d-967f-dbfed948a59b	2021-05-27 08:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:02:50.951+03	2021-05-27 08:02:50.958+03	
5ed1f03c-5df7-aafc-219a-ca9f270e1798	2021-05-27 08:03:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:03:10.951+03	2021-05-27 08:03:10.959+03	
6fccc980-7f3e-ab38-2331-0cff01fd07ba	2021-05-27 08:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:03:30.952+03	2021-05-27 08:03:30.959+03	
8f8f6c34-5fab-c92b-47f2-fa3061b8dd2d	2021-05-27 08:03:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:03:51.951+03	2021-05-27 08:03:51.96+03	
ab93a0b2-1887-23ab-6c95-6d814108038c	2021-05-27 08:04:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:04:11.951+03	2021-05-27 08:04:11.959+03	
640f8aef-d229-878e-c093-57a71abd8ee7	2021-05-27 08:04:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:04:31.951+03	2021-05-27 08:04:31.959+03	
4c5ca7c7-ba17-5111-8c81-13a987f575bd	2021-05-27 08:04:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:04:51.951+03	2021-05-27 08:04:51.958+03	
a90a5f59-3f3f-02b0-4769-00d94a121867	2021-05-27 08:05:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:05:11.951+03	2021-05-27 08:05:11.959+03	
27a62cd2-e24c-32a3-9961-452ff5b80435	2021-05-27 08:05:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:05:21.951+03	2021-05-27 08:05:21.958+03	
ef265b07-21f0-9f36-ce65-2132b7695439	2021-05-27 08:05:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:05:41.951+03	2021-05-27 08:05:41.959+03	
25ff123a-28be-ea08-9e2d-c63ef898ab26	2021-05-27 08:06:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:06:01.951+03	2021-05-27 08:06:01.958+03	
08716784-d271-6f58-3c24-7494376e34bb	2021-05-27 08:06:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:06:21.951+03	2021-05-27 08:06:21.962+03	
d535da22-845f-3164-dd60-b345e37cdc6a	2021-05-27 08:06:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:06:41.951+03	2021-05-27 08:06:41.958+03	
4f14f6a0-0640-c338-1635-ccaa9a54ac79	2021-05-27 08:07:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:07:01.951+03	2021-05-27 08:07:01.958+03	
2858f175-9735-979a-c13f-8a06fa1fd6c5	2021-05-27 08:07:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:07:21.951+03	2021-05-27 08:07:21.958+03	
688c6da1-c586-1047-7baa-342ce350b23b	2021-05-27 08:07:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:07:41.951+03	2021-05-27 08:07:41.958+03	
5ca757fe-3d11-7535-6c76-a4791499e8fb	2021-05-27 08:08:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:08:01.951+03	2021-05-27 08:08:01.963+03	
3d2772a0-55db-2d1f-c176-c3f94190279d	2021-05-27 08:08:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:08:21.951+03	2021-05-27 08:08:21.958+03	
bba44011-2daa-4085-787e-3c81a47866df	2021-05-27 08:08:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:08:41.951+03	2021-05-27 08:08:41.96+03	
5ec47339-bc93-754b-3ae6-b4c31072ac4d	2021-05-27 08:09:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:09:01.951+03	2021-05-27 08:09:01.957+03	
12f3a78a-ae91-078d-0645-7bcf0a3a12dd	2021-05-27 08:09:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:09:22.951+03	2021-05-27 08:09:22.958+03	
c390f4da-86e0-0812-73c7-11282ef67c0e	2021-05-27 08:09:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:09:42.951+03	2021-05-27 08:09:42.957+03	
f37e55d6-61bb-723c-2a25-d52e255b3ace	2021-05-27 08:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 08:10:00.951+03	2021-05-27 08:10:00.958+03	ERROR
1a9f496f-07f5-5790-0e76-85ef826c1636	2021-05-27 08:10:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:10:12.951+03	2021-05-27 08:10:12.96+03	
24e33724-e3e0-c8a8-2c10-fd1a2ec34b67	2021-05-27 08:10:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:10:32.951+03	2021-05-27 08:10:32.958+03	
0227247c-3f16-75d0-a34c-124ff7e10e9a	2021-05-27 08:10:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:10:52.952+03	2021-05-27 08:10:52.958+03	
c440f715-ba60-5e08-70dc-ed83e8cc4f75	2021-05-27 08:11:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:11:13.951+03	2021-05-27 08:11:13.958+03	
35c13f9d-ea1c-b3bd-96c3-5150525cc50b	2021-05-27 08:11:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:11:33.951+03	2021-05-27 08:11:33.958+03	
5b094a3a-9ea3-ea24-4add-dff248ae852e	2021-05-27 08:11:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:11:53.951+03	2021-05-27 08:11:53.96+03	
dd4a9787-72ab-a337-d02f-b76528ebfa55	2021-05-27 08:12:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:12:13.951+03	2021-05-27 08:12:13.958+03	
4c2a577c-2061-b9d0-f00f-04cfba142c74	2021-05-27 08:12:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:12:33.951+03	2021-05-27 08:12:33.958+03	
df8a4c33-ffe3-2dce-3176-35c0bf196745	2021-05-27 08:12:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:12:53.951+03	2021-05-27 08:12:53.958+03	
9aabf2be-b708-1fe0-7911-e25252bcaa85	2021-05-27 08:13:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:13:13.951+03	2021-05-27 08:13:13.958+03	
090768c2-4560-8953-4711-2a6bb9381ac2	2021-05-27 08:13:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:13:33.951+03	2021-05-27 08:13:33.959+03	
e71e2bb6-72fb-6cf0-8410-52a50faf3c7a	2021-05-27 08:13:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:13:53.951+03	2021-05-27 08:13:54.007+03	
3c8eefee-8f2f-1b97-1462-6941ad5979c9	2021-05-27 08:14:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:14:13.951+03	2021-05-27 08:14:13.96+03	
d9cd988d-5405-1363-4be1-2220926c3f82	2021-05-27 08:14:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:14:33.951+03	2021-05-27 08:14:33.958+03	
651caaff-d240-82d3-fd26-9783cb190fad	2021-05-27 08:14:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:14:53.951+03	2021-05-27 08:14:53.958+03	
9bebf520-fff5-8321-7835-7489b7b78910	2021-05-27 08:15:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:15:13.951+03	2021-05-27 08:15:13.958+03	
c0f68ab7-d858-195e-5889-6bdc7ce131f5	2021-05-27 08:15:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:15:33.951+03	2021-05-27 08:15:33.959+03	
2ba673a4-8000-8e07-93c6-57ba7d4945e8	2021-05-27 08:15:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:15:53.951+03	2021-05-27 08:15:53.961+03	
c30edbd8-f884-3e83-2c14-25805f57f816	2021-05-27 08:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:16:13.951+03	2021-05-27 08:16:13.958+03	
e68d509c-a711-f328-7ff8-c2afb45b5fef	2021-05-27 08:16:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:16:33.951+03	2021-05-27 08:16:33.959+03	
9c641a7a-6010-8bdc-da2d-aa0bf7a77055	2021-05-27 08:16:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:16:53.952+03	2021-05-27 08:16:53.958+03	
20555307-d757-aac8-51ce-602db3c0c63f	2021-05-27 08:17:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:17:14.951+03	2021-05-27 08:17:14.96+03	
ec0d0733-c609-02c7-acab-527405156fd3	2021-05-27 08:17:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:17:34.951+03	2021-05-27 08:17:34.957+03	
8979d20d-45d4-e427-3431-f45f1b575ec8	2021-05-27 08:17:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:17:54.951+03	2021-05-27 08:17:54.957+03	
afc2dad9-7cef-d30e-97b2-c8f8b7071174	2021-05-27 08:18:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:18:14.951+03	2021-05-27 08:18:14.958+03	
cb64874d-bb35-c1d5-a189-d83439955bff	2021-05-27 08:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:18:34.951+03	2021-05-27 08:18:34.958+03	
75fcfc45-e1e2-2439-56f0-3fb40a525786	2021-05-27 08:18:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:18:54.951+03	2021-05-27 08:18:54.961+03	
291e5150-d574-33ed-6cd5-c5af0c1e9f7b	2021-05-27 08:19:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:19:14.951+03	2021-05-27 08:19:14.958+03	
3741e948-7762-c50d-31d6-8aa9993cb152	2021-05-27 08:19:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:19:34.951+03	2021-05-27 08:19:34.96+03	
f8e1bdb1-f3e8-7009-1e01-b5016cec4e8f	2021-05-27 08:19:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:19:54.951+03	2021-05-27 08:19:54.959+03	
8b0fd0fb-f795-70a9-0b83-cdc2693cdb4e	2021-05-27 08:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:20:04.951+03	2021-05-27 08:20:04.959+03	
442f18bb-ad4f-9852-6ca1-5f87805fc82e	2021-05-27 08:20:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:20:24.951+03	2021-05-27 08:20:24.958+03	
4e689306-fb5e-fd2a-b7f1-5f592383eb02	2021-05-27 08:20:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:20:44.951+03	2021-05-27 08:20:44.958+03	
b10fc1eb-c197-8a20-a571-5b07a37f4e5d	2021-05-27 08:21:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:21:04.951+03	2021-05-27 08:21:04.958+03	
7be9b33a-3fac-18da-057f-970343fbc8fc	2021-05-27 08:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:21:25.951+03	2021-05-27 08:21:25.958+03	
7a0b3aff-a21b-f076-cbd2-bbbcf0e3b03a	2021-05-27 08:21:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:21:45.951+03	2021-05-27 08:21:45.96+03	
38fede79-d5c8-350e-dca6-961f95905530	2021-05-27 08:22:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:22:05.951+03	2021-05-27 08:22:05.96+03	
e0a49edb-8239-4734-3c1d-51010d44a751	2021-05-27 08:22:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:22:25.951+03	2021-05-27 08:22:25.958+03	
a04b51f0-ef0c-1e32-08b1-698e0fd14bdf	2021-05-27 08:22:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:22:45.951+03	2021-05-27 08:22:45.958+03	
0d837880-ccce-9cb8-3fc1-012dd19b3fb6	2021-05-27 08:23:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:23:05.951+03	2021-05-27 08:23:05.958+03	
8ba96e16-c809-470c-f914-e6bf841985b4	2021-05-27 08:23:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:23:25.951+03	2021-05-27 08:23:25.957+03	
210e49b7-ebea-99ae-44ac-2586781f8698	2021-05-27 08:23:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:23:45.951+03	2021-05-27 08:23:45.959+03	
8f541361-f80c-75e8-8f0e-3f217f563b50	2021-05-27 08:24:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:24:05.951+03	2021-05-27 08:24:05.959+03	
4d1af129-135e-9108-4ed6-5f94f8845e14	2021-05-27 08:24:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:24:25.951+03	2021-05-27 08:24:25.958+03	
01a385fa-c139-0b4b-f4da-3d5565a817f0	2021-05-27 08:24:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:24:45.951+03	2021-05-27 08:24:45.958+03	
327f277f-1e00-b5f8-281b-0651c2a3bc94	2021-05-27 08:25:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:25:05.952+03	2021-05-27 08:25:05.96+03	
7be0b08a-fd99-40b4-75c0-88dc68a1a21d	2021-05-27 08:25:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:25:26.951+03	2021-05-27 08:25:26.957+03	
696c7ec0-6b69-87e9-42a4-3801a2c9ccb7	2021-05-27 08:25:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:25:46.951+03	2021-05-27 08:25:46.959+03	
10208428-0928-59d5-c22a-270dc026780a	2021-05-27 08:26:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:26:06.951+03	2021-05-27 08:26:06.959+03	
229e3c47-52ec-74b6-7715-f84b61655213	2021-05-27 08:26:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:26:26.951+03	2021-05-27 08:26:26.958+03	
585545f9-def1-200c-58bb-d90877b02bf9	2021-05-27 08:26:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:26:46.951+03	2021-05-27 08:26:46.96+03	
00897c09-3167-ae76-9f1f-8da2904af4a8	2021-05-27 08:27:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:27:06.951+03	2021-05-27 08:27:06.959+03	
5b4832c7-4eda-c52f-1d90-4b0a82c65f92	2021-05-27 08:27:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:27:26.951+03	2021-05-27 08:27:26.958+03	
73f17141-ed54-9425-4115-8fa7ac705956	2021-05-27 08:27:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:27:46.951+03	2021-05-27 08:27:46.958+03	
94725b31-4678-5c69-71ce-eafd0508af7e	2021-05-27 08:28:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:28:07.951+03	2021-05-27 08:28:07.958+03	
459b9571-474d-e588-7bd9-25653ad4c6b7	2021-05-27 08:28:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:28:27.952+03	2021-05-27 08:28:27.958+03	
7efaa4f9-5f96-2a2f-c21b-6636816f137f	2021-05-27 08:28:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:28:48.951+03	2021-05-27 08:28:48.96+03	
2116fc72-d2dd-1cdd-c27e-831add70cbe6	2021-05-27 08:29:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:29:08.951+03	2021-05-27 08:29:08.958+03	
b9204fa8-59da-ac3d-260d-ca4520851a60	2021-05-27 08:29:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:29:28.951+03	2021-05-27 08:29:28.958+03	
daeeac66-84c2-7d6b-298c-9d509015a3b0	2021-05-27 08:29:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:29:48.951+03	2021-05-27 08:29:48.959+03	
20e04567-beb3-be3d-3df7-ab4a122faeee	2021-05-27 08:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 08:30:00.951+03	2021-05-27 08:30:00.956+03	ERROR
4eaac7ed-e27a-21c8-f545-cf1c2cca2698	2021-05-27 08:30:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:30:18.951+03	2021-05-27 08:30:18.958+03	
b5b3f635-8a2b-c3ed-563f-d377a7461a2a	2021-05-27 08:30:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:30:38.951+03	2021-05-27 08:30:38.958+03	
00023434-1b0b-0c47-fbb4-a7dfb4020dd9	2021-05-27 08:30:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:30:58.951+03	2021-05-27 08:30:58.963+03	
df4bb1c6-caeb-14c0-7dcb-29d598ed1abb	2021-05-27 08:31:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:31:18.951+03	2021-05-27 08:31:18.957+03	
0b2a1557-46d7-60d4-cbe3-afcb2cf73a12	2021-05-27 08:31:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:31:38.951+03	2021-05-27 08:31:38.957+03	
a0a2b095-43e8-3697-a470-3fa83c3bf63d	2021-05-27 08:11:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:11:23.951+03	2021-05-27 08:11:23.96+03	
f6bacf6f-d0e3-69af-a4cf-7d15b6886c72	2021-05-27 08:11:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:11:43.951+03	2021-05-27 08:11:43.958+03	
d096fd2f-0348-e545-df55-1ec340d49a18	2021-05-27 08:12:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:12:03.951+03	2021-05-27 08:12:03.957+03	
4d1cc81b-9747-2bff-a661-0d184cfb9cc7	2021-05-27 08:12:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:12:23.951+03	2021-05-27 08:12:23.958+03	
f3caae30-820d-41d5-2790-8ad2c0539725	2021-05-27 08:12:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:12:43.951+03	2021-05-27 08:12:43.958+03	
f8290571-9e5e-fa62-6754-d3e54db3d103	2021-05-27 08:13:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:13:03.951+03	2021-05-27 08:13:03.958+03	
79f2211d-8ef0-c613-878e-bc3b6c7dba91	2021-05-27 08:13:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:13:23.951+03	2021-05-27 08:13:23.962+03	
fd3d79f6-2a26-7a93-aba7-518d0d110ead	2021-05-27 08:13:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:13:43.951+03	2021-05-27 08:13:43.958+03	
ad00bce5-a32d-2ac1-5fb0-6ea7c0a14995	2021-05-27 08:14:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:14:03.951+03	2021-05-27 08:14:03.958+03	
01c1cc70-40b8-977c-4402-5cbef23506d9	2021-05-27 08:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:14:23.951+03	2021-05-27 08:14:23.962+03	
c10c3134-4f05-ed39-cb16-5f3faf52af8e	2021-05-27 08:14:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:14:43.951+03	2021-05-27 08:14:43.958+03	
ab9a6f32-c311-cfad-7d37-06f7a5867e8c	2021-05-27 08:15:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:15:03.951+03	2021-05-27 08:15:03.958+03	
6cbdf11c-8b1a-7cf3-f828-bdf1a7c7926c	2021-05-27 08:15:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:15:23.951+03	2021-05-27 08:15:23.961+03	
fcef014d-279f-cec4-dc76-aa3cc4489d35	2021-05-27 08:15:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:15:43.951+03	2021-05-27 08:15:43.958+03	
0727a11a-9f0d-0f2d-6e15-f0620244dd90	2021-05-27 08:16:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:16:03.951+03	2021-05-27 08:16:03.958+03	
66131b3c-3e85-ea40-4c6e-4e178db91b2a	2021-05-27 08:16:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:16:23.951+03	2021-05-27 08:16:23.958+03	
76ba47fc-a31e-b67d-0363-e53b2703a4dc	2021-05-27 08:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:16:43.951+03	2021-05-27 08:16:43.959+03	
68ef083c-206d-857b-d781-29b67120ea00	2021-05-27 08:17:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:17:04.951+03	2021-05-27 08:17:04.96+03	
b545dafc-9317-4e5f-b32e-d02b60155216	2021-05-27 08:17:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:17:24.951+03	2021-05-27 08:17:24.959+03	
5d976665-66cc-27ae-da85-803c26ca59ce	2021-05-27 08:17:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:17:44.951+03	2021-05-27 08:17:44.958+03	
a5ee59b1-6b56-796c-31ba-aff1bcf8c652	2021-05-27 08:18:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:18:04.951+03	2021-05-27 08:18:04.96+03	
4f2353ce-1a93-f6c6-5185-9efb9df7eb61	2021-05-27 08:18:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:18:24.951+03	2021-05-27 08:18:24.958+03	
abfba387-d351-986e-0d33-53586398a146	2021-05-27 08:18:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:18:44.951+03	2021-05-27 08:18:44.959+03	
58bf586d-09ba-09e6-289e-3b185ddaf3af	2021-05-27 08:19:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:19:04.951+03	2021-05-27 08:19:04.958+03	
2753b2fc-6de4-56b3-3d51-4827db098a48	2021-05-27 08:19:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:19:24.951+03	2021-05-27 08:19:24.958+03	
d5645aec-3355-f8a3-0aac-d99a3dc5e237	2021-05-27 08:19:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:19:44.951+03	2021-05-27 08:19:44.958+03	
878bebe8-db7c-c7af-2fdf-5d6e7843e33f	2021-05-27 08:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 08:20:00.951+03	2021-05-27 08:20:00.956+03	ERROR
21910136-c8f2-505d-fcd8-749e59d64380	2021-05-27 08:20:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:20:14.951+03	2021-05-27 08:20:14.959+03	
adc8be39-ba76-a32a-1170-f70d9313ae78	2021-05-27 08:20:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:20:34.951+03	2021-05-27 08:20:34.959+03	
41322478-a9e0-ff34-fce3-037eb7722d80	2021-05-27 08:20:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:20:54.951+03	2021-05-27 08:20:54.958+03	
28ddb458-8d92-67c5-9757-cb6029bbafde	2021-05-27 08:21:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:21:14.952+03	2021-05-27 08:21:14.959+03	
26948c60-a906-7fe0-82d9-82873a41486e	2021-05-27 08:21:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:21:35.951+03	2021-05-27 08:21:35.959+03	
848ab7bc-7266-cb31-70d0-e1b826d54e41	2021-05-27 08:21:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:21:55.951+03	2021-05-27 08:21:55.96+03	
3765a97b-1cd5-5343-2c8b-ae0593dddcb9	2021-05-27 08:22:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:22:15.951+03	2021-05-27 08:22:15.958+03	
42a891df-c1ff-74b1-510f-ccf042e87b44	2021-05-27 08:22:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:22:35.951+03	2021-05-27 08:22:35.958+03	
9ac96a0e-03b9-3603-3f51-75c7356c572a	2021-05-27 08:22:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:22:55.951+03	2021-05-27 08:22:55.958+03	
8e100ab6-685d-8772-a208-1e662a3eb669	2021-05-27 08:23:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:23:15.951+03	2021-05-27 08:23:15.958+03	
b0c5f234-63cb-a4bd-0526-99d40384eb23	2021-05-27 08:23:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:23:35.951+03	2021-05-27 08:23:35.96+03	
3a4b792d-868a-e28b-89f0-cb67e3515c3e	2021-05-27 08:23:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:23:55.951+03	2021-05-27 08:23:55.958+03	
41a3a43f-1dc2-06b3-20a6-d82f4acc3b2a	2021-05-27 08:24:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:24:15.951+03	2021-05-27 08:24:15.958+03	
4ffd2c20-69c0-8f56-345f-3260b08f38b1	2021-05-27 08:24:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:24:35.951+03	2021-05-27 08:24:35.959+03	
0fb334fc-81db-b77f-8c86-97dd3d031cca	2021-05-27 08:24:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:24:55.951+03	2021-05-27 08:24:55.959+03	
11b1f95f-a45f-2824-fad4-a6d67e1c3ef4	2021-05-27 08:25:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:25:16.951+03	2021-05-27 08:25:16.959+03	
4daacb1d-26eb-1345-079e-a4d5abd3c4ff	2021-05-27 08:25:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:25:36.951+03	2021-05-27 08:25:36.959+03	
27818c03-bb21-e992-49d1-26135aa19447	2021-05-27 08:25:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:25:56.951+03	2021-05-27 08:25:56.959+03	
26a97c9e-6dd5-30ca-4ea3-671810079efd	2021-05-27 08:26:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:26:16.951+03	2021-05-27 08:26:16.961+03	
d9d1450e-6b42-732f-ee84-4fe7c9357546	2021-05-27 08:26:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:26:36.951+03	2021-05-27 08:26:36.958+03	
ad692830-a9ce-db2c-20a4-1ef2336522e0	2021-05-27 08:26:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:26:56.951+03	2021-05-27 08:26:56.96+03	
8f00b42f-bf94-4d0d-66d6-93b2d95b2225	2021-05-27 08:27:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:27:16.951+03	2021-05-27 08:27:16.958+03	
f64a49a9-afec-84eb-69a1-54b27dc23035	2021-05-27 08:27:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:27:36.951+03	2021-05-27 08:27:36.957+03	
a1618c71-b4b0-1007-718a-f6dc7256d977	2021-05-27 08:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:27:56.952+03	2021-05-27 08:27:56.959+03	
dc05df4e-61bc-82d8-b50e-615decca3309	2021-05-27 08:28:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:28:17.951+03	2021-05-27 08:28:17.959+03	
25d39e64-614f-4a43-6b59-f50d85512516	2021-05-27 08:28:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:28:38.951+03	2021-05-27 08:28:38.958+03	
19e4cc3f-cbd6-821e-2523-493ad6e48bfe	2021-05-27 08:28:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:28:58.951+03	2021-05-27 08:28:58.958+03	
8b0d7c12-775b-aa67-27de-88b5cd1a1c9f	2021-05-27 08:29:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:29:18.951+03	2021-05-27 08:29:18.958+03	
590b921f-7323-2258-3079-e82049a766fa	2021-05-27 08:29:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:29:38.951+03	2021-05-27 08:29:38.959+03	
b422c304-8e0b-03e6-eb7f-eb9b46caa306	2021-05-27 08:29:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:29:58.951+03	2021-05-27 08:29:58.958+03	
99857f6d-98f3-aaf2-3423-580f260b585c	2021-05-27 08:30:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:30:08.951+03	2021-05-27 08:30:08.96+03	
5d8b6f1d-227e-90cc-2037-b3c1842cb752	2021-05-27 08:30:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:30:28.951+03	2021-05-27 08:30:28.959+03	
951eed59-3108-e907-7eb1-10eafdf11d8b	2021-05-27 08:30:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:30:48.951+03	2021-05-27 08:30:48.958+03	
f0c5669f-b391-5c45-20f0-2746d85baa2d	2021-05-27 08:31:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:31:08.951+03	2021-05-27 08:31:08.958+03	
00ede473-966f-be83-c34d-8b851c965d3a	2021-05-27 08:31:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:31:28.951+03	2021-05-27 08:31:28.959+03	
b6e1b078-cd28-3158-24bd-ecd49106bd7a	2021-05-27 08:31:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:31:48.951+03	2021-05-27 08:31:48.959+03	
74cf684a-c27d-71d6-3170-c65e639a011c	2021-05-27 08:31:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:31:58.951+03	2021-05-27 08:31:58.959+03	
b458d2d8-354f-cfd9-5801-8964df9c9a3d	2021-05-27 08:32:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:32:18.951+03	2021-05-27 08:32:18.958+03	
1853a68b-06b2-0e0f-8695-b680db4b5ac1	2021-05-27 08:32:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:32:38.951+03	2021-05-27 08:32:38.959+03	
d77c7e73-dc1f-c9c1-e98c-c8950e92c140	2021-05-27 08:32:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:32:58.952+03	2021-05-27 08:32:58.959+03	
714ed096-e0b8-9e45-df33-fd65afdaa6bd	2021-05-27 08:33:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:33:19.951+03	2021-05-27 08:33:19.958+03	
2e50a803-57d4-db31-0ae2-3dd48a0dff4b	2021-05-27 08:33:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:33:39.951+03	2021-05-27 08:33:39.957+03	
b21467d3-1596-3859-1c15-fa149f0219aa	2021-05-27 08:34:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:34:00.951+03	2021-05-27 08:34:00.959+03	
131555f8-8946-76da-aaa1-5cd62bfd3bcb	2021-05-27 08:34:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:34:20.951+03	2021-05-27 08:34:20.958+03	
55a88b40-eec3-a33a-18a6-3f2f341d5879	2021-05-27 08:34:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:34:40.951+03	2021-05-27 08:34:40.959+03	
4c330e21-3a96-ae16-d057-928e75b75081	2021-05-27 08:35:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:35:00.951+03	2021-05-27 08:35:00.957+03	
e6620eca-2ef5-b7a5-8beb-288816b2eec0	2021-05-27 08:35:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:35:20.951+03	2021-05-27 08:35:20.959+03	
62fa21cb-93c2-ae9b-3b33-48b13b457c4e	2021-05-27 08:35:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:35:40.951+03	2021-05-27 08:35:40.958+03	
0b5dac99-51d7-4b5a-549c-65cd437d494b	2021-05-27 08:36:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:36:00.951+03	2021-05-27 08:36:00.958+03	
5adfc246-1fe5-14b6-b2c5-09fe847ece59	2021-05-27 08:36:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:36:20.951+03	2021-05-27 08:36:20.96+03	
45f085b2-874b-1744-0b87-8c2d1c61d27e	2021-05-27 08:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:36:40.951+03	2021-05-27 08:36:40.96+03	
0e08383a-ae8b-43ec-ee21-d28053551b30	2021-05-27 08:37:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:37:00.951+03	2021-05-27 08:37:00.959+03	
c66889f3-616f-c449-d8b5-2b7ab591e620	2021-05-27 08:37:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:37:20.952+03	2021-05-27 08:37:20.959+03	
bdb7465b-0366-0c68-abd8-6b9e7d4cde9e	2021-05-27 08:37:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:37:41.951+03	2021-05-27 08:37:41.961+03	
da14fc58-5845-81e5-50d2-4bd8c58c944b	2021-05-27 08:38:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:38:01.951+03	2021-05-27 08:38:01.96+03	
9bf01652-89f1-dbfa-5528-a9228785a623	2021-05-27 08:38:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:38:21.951+03	2021-05-27 08:38:21.96+03	
355eaed6-d942-ff38-a402-4e9f35b2ca90	2021-05-27 08:38:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:38:41.951+03	2021-05-27 08:38:41.959+03	
721980e2-1b28-8dea-1f10-4d71ab881e1f	2021-05-27 08:39:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:39:01.951+03	2021-05-27 08:39:01.958+03	
8fdaed90-2322-6607-f6ce-9afd1ea3a70e	2021-05-27 08:39:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:39:21.951+03	2021-05-27 08:39:21.96+03	
d9af3ceb-111a-d085-7f6b-95a4e495255a	2021-05-27 08:39:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:39:41.951+03	2021-05-27 08:39:41.959+03	
32600877-5c5a-3147-a6b0-de508e488758	2021-05-27 08:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 08:40:00.951+03	2021-05-27 08:40:00.956+03	ERROR
40da5f89-85ca-fbfc-ca9c-bff3c2f185db	2021-05-27 08:40:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:40:11.951+03	2021-05-27 08:40:11.959+03	
d3be8236-af99-2310-569a-a6899bceed4f	2021-05-27 08:40:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:40:31.951+03	2021-05-27 08:40:31.958+03	
bc270134-775f-4fea-574b-dd6b510ffc49	2021-05-27 08:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:40:51.951+03	2021-05-27 08:40:52.041+03	
9b9f8583-aae9-0a7a-0e03-651ef784520e	2021-05-27 08:41:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:41:11.951+03	2021-05-27 08:41:11.958+03	
bbe52985-6f92-6b54-1d81-248ebbab6d62	2021-05-27 08:41:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:41:31.951+03	2021-05-27 08:41:31.957+03	
775e03f7-da88-24e5-8bfa-9f93c9143f64	2021-05-27 08:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:41:51.951+03	2021-05-27 08:41:51.959+03	
aa058a9f-4513-e186-51bc-1d2cdf9bf4f7	2021-05-27 08:42:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:42:11.951+03	2021-05-27 08:42:11.958+03	
8400ca09-0540-e355-ad2d-697a3220c17a	2021-05-27 08:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:42:31.951+03	2021-05-27 08:42:31.959+03	
56a80bb2-462a-167a-9607-669572b5b873	2021-05-27 08:42:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:42:51.951+03	2021-05-27 08:42:51.958+03	
2a3b0347-4c60-9f4e-09bf-c29eeb88b80c	2021-05-27 08:43:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:43:11.951+03	2021-05-27 08:43:11.963+03	
85828fb0-d997-330a-7aa0-c8445a246a8b	2021-05-27 08:43:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:43:31.951+03	2021-05-27 08:43:31.958+03	
f868dafb-f3ef-c4b5-420b-4ed3f9fadf3f	2021-05-27 08:43:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:43:51.951+03	2021-05-27 08:43:51.958+03	
9fea334c-1693-51a6-63a4-52ce2feb8474	2021-05-27 08:44:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:44:11.951+03	2021-05-27 08:44:11.957+03	
a40bd847-8f12-b98f-2e7a-e1a9f67b5d3a	2021-05-27 08:44:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:44:31.951+03	2021-05-27 08:44:31.96+03	
4af55d69-c230-e3d9-47b5-e6c410d616b7	2021-05-27 08:44:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:44:51.951+03	2021-05-27 08:44:51.958+03	
e54ed1d1-7cef-22d3-9706-9066150d0149	2021-05-27 08:45:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:45:11.951+03	2021-05-27 08:45:11.957+03	
059f99ec-d37c-8841-a31e-72156e75fcd8	2021-05-27 08:45:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:45:31.952+03	2021-05-27 08:45:31.963+03	
3c2cada9-aee9-4942-6b5d-6ddc22b741bf	2021-05-27 08:45:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:45:52.951+03	2021-05-27 08:45:52.958+03	
d1bcac84-61cc-73a4-7d32-a45dbe81e663	2021-05-27 08:46:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:46:12.951+03	2021-05-27 08:46:12.959+03	
d119862f-8998-af7a-0213-065007484b7e	2021-05-27 08:46:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:46:32.951+03	2021-05-27 08:46:32.959+03	
6ba8acd9-dede-8147-7333-30bad45c23da	2021-05-27 08:46:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:46:52.951+03	2021-05-27 08:46:52.96+03	
a3616c12-19ad-ff9e-b27b-98942d475d9b	2021-05-27 08:47:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:47:12.951+03	2021-05-27 08:47:12.958+03	
f09b2cc3-539a-79d5-c392-e5cbff875491	2021-05-27 08:47:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:47:32.951+03	2021-05-27 08:47:32.959+03	
7f4b6871-56a7-e349-58fb-2cacc927d414	2021-05-27 08:47:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:47:52.951+03	2021-05-27 08:47:52.959+03	
9460765a-6f25-b50b-a883-ad1c125f551b	2021-05-27 08:48:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:48:12.953+03	2021-05-27 08:48:12.96+03	
2f7a779b-5a7b-b6ce-7dd3-5447814ae322	2021-05-27 08:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:48:33.951+03	2021-05-27 08:48:33.959+03	
7ba1ce4c-310c-d233-6fbf-f3240896dc31	2021-05-27 08:48:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:48:53.951+03	2021-05-27 08:48:53.959+03	
46013e93-c0e5-754b-8999-05dcd165acc8	2021-05-27 08:49:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:49:13.951+03	2021-05-27 08:49:13.957+03	
faffa224-aa7c-455f-f5b0-2d9d9fc1e216	2021-05-27 08:49:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:49:33.951+03	2021-05-27 08:49:33.958+03	
f22bc8e8-1de4-23ab-82f9-72f95ea3e66a	2021-05-27 08:49:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:49:53.951+03	2021-05-27 08:49:53.958+03	
5aa71190-2e31-4922-ee9c-815dc83c3c3c	2021-05-27 08:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:50:03.951+03	2021-05-27 08:50:03.958+03	
e5155fa9-f9ab-d0ab-32e2-5aa854767a18	2021-05-27 08:50:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:50:23.951+03	2021-05-27 08:50:23.958+03	
7af46ab2-0281-1985-c280-b13e90bff9f2	2021-05-27 08:50:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:50:43.952+03	2021-05-27 08:50:43.958+03	
c219fd44-eb05-9d38-d952-9c1ea000c97b	2021-05-27 08:51:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:51:04.951+03	2021-05-27 08:51:04.959+03	
dfc0ff5a-868a-c18e-0a4c-a88a49ada9af	2021-05-27 08:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:51:24.951+03	2021-05-27 08:51:24.958+03	
3f83bc01-5736-8171-7ed7-bf6220513b7f	2021-05-27 08:51:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:51:44.951+03	2021-05-27 08:51:44.96+03	
c2ec8225-5805-534e-802f-b9cc8ef090a9	2021-05-27 08:52:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:52:04.951+03	2021-05-27 08:52:04.961+03	
60e84a00-8fcb-5ed5-4afe-221f4296f3c3	2021-05-27 08:52:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:52:25.951+03	2021-05-27 08:52:25.958+03	
d39aca7e-2fed-1e9d-b897-f8bb8ad76412	2021-05-27 08:32:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:32:08.951+03	2021-05-27 08:32:08.959+03	
a7db833d-cf73-1ce6-640c-56d96a5e8b79	2021-05-27 08:32:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:32:28.951+03	2021-05-27 08:32:28.958+03	
71a07709-b763-fdce-9523-73912e0bdf6e	2021-05-27 08:32:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:32:48.951+03	2021-05-27 08:32:48.958+03	
58ad2acc-a7b0-5754-9259-c90a0a761ebb	2021-05-27 08:33:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:33:09.951+03	2021-05-27 08:33:09.959+03	
74151932-8d9e-cb95-b78e-184161b00be8	2021-05-27 08:33:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:33:29.951+03	2021-05-27 08:33:29.957+03	
7cc4c655-3f76-403c-9333-40b6f286359b	2021-05-27 08:33:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:33:49.952+03	2021-05-27 08:33:49.959+03	
5dc91ff5-c5e9-1988-4661-e1a6d458a56f	2021-05-27 08:34:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:34:10.951+03	2021-05-27 08:34:10.963+03	
ec3ece6a-1158-792d-3c4f-bcf9c7342806	2021-05-27 08:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:34:30.951+03	2021-05-27 08:34:30.96+03	
55264810-48e5-458f-3f60-5a35d850622c	2021-05-27 08:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:34:50.951+03	2021-05-27 08:34:50.96+03	
fdd810ff-387f-cef2-9e61-318444884c05	2021-05-27 08:35:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:35:10.951+03	2021-05-27 08:35:10.958+03	
8fc4cef2-84b5-7b1b-8cb9-7f2f927d5350	2021-05-27 08:35:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:35:30.951+03	2021-05-27 08:35:30.959+03	
b6fc1dd5-c9dd-89a4-a99d-ed30586afd4d	2021-05-27 08:35:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:35:50.951+03	2021-05-27 08:35:50.958+03	
f8f9cb22-540c-ca0a-d1e4-926d35f9320b	2021-05-27 08:36:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:36:10.951+03	2021-05-27 08:36:10.958+03	
0ca250b6-01a5-eb83-3405-0f7f849657db	2021-05-27 08:36:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:36:30.951+03	2021-05-27 08:36:30.96+03	
2e515972-1b07-8d11-dd3c-5cf825d52fbf	2021-05-27 08:36:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:36:50.951+03	2021-05-27 08:36:50.961+03	
925b96d9-9acc-4ecf-76b1-62ff5fe6932f	2021-05-27 08:37:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:37:10.951+03	2021-05-27 08:37:10.96+03	
122422ac-e4ee-cd3c-97ec-20d18140272c	2021-05-27 08:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:37:31.951+03	2021-05-27 08:37:31.958+03	
b018dc54-0703-0429-f875-5b3b8a70b360	2021-05-27 08:37:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:37:51.951+03	2021-05-27 08:37:51.958+03	
e1e9e1ec-4542-dd51-e4e7-6535667e8672	2021-05-27 08:38:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:38:11.951+03	2021-05-27 08:38:11.959+03	
de1e8cd5-1a8f-10ee-fcd3-1819c2116449	2021-05-27 08:38:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:38:31.951+03	2021-05-27 08:38:31.958+03	
b8d9256a-8679-f738-b0d4-cb241c6a7c29	2021-05-27 08:38:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:38:51.951+03	2021-05-27 08:38:51.958+03	
f7b8cc59-ece2-3e11-c846-7a4745db7734	2021-05-27 08:39:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:39:11.951+03	2021-05-27 08:39:11.96+03	
820ea2e1-fdf3-d146-924d-ead36873718f	2021-05-27 08:39:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:39:31.951+03	2021-05-27 08:39:31.958+03	
0c5bdad3-2ac2-924c-1dcd-a5310e71f0f8	2021-05-27 08:39:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:39:51.951+03	2021-05-27 08:39:51.958+03	
7298d796-d2a0-aad8-f757-835a7656c268	2021-05-27 08:40:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:40:01.951+03	2021-05-27 08:40:01.958+03	
74a943b0-3b97-0fcd-5103-500de1a45139	2021-05-27 08:40:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:40:21.951+03	2021-05-27 08:40:21.959+03	
721b53d4-f037-10e3-0d8b-13262b131996	2021-05-27 08:40:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:40:41.951+03	2021-05-27 08:40:41.957+03	
05a4b5b5-1beb-33e9-9ac8-db58099f0abb	2021-05-27 08:41:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:41:01.951+03	2021-05-27 08:41:01.96+03	
d27a1018-1545-015f-d8d3-df38cf0b1927	2021-05-27 08:41:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:41:21.951+03	2021-05-27 08:41:21.958+03	
1a739b3a-0761-235b-5d5c-9193562b6693	2021-05-27 08:41:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:41:41.951+03	2021-05-27 08:41:41.958+03	
c7271c20-0503-3cfe-b0eb-827eb756cb8e	2021-05-27 08:42:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:42:01.951+03	2021-05-27 08:42:01.957+03	
925f5739-6400-84d6-0f82-480e3d645314	2021-05-27 08:42:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:42:21.951+03	2021-05-27 08:42:21.962+03	
a83add72-f25b-360a-f480-d7a1399db5ac	2021-05-27 08:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:42:41.951+03	2021-05-27 08:42:41.959+03	
f304489a-4006-3be8-42c5-0be79e5792e9	2021-05-27 08:43:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:43:01.951+03	2021-05-27 08:43:01.959+03	
1dc23024-5d9f-98d0-3b61-85d793122824	2021-05-27 08:43:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:43:21.951+03	2021-05-27 08:43:21.958+03	
a3ee56a5-6ef6-173b-b5c9-1fda92c0eb1a	2021-05-27 08:43:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:43:41.951+03	2021-05-27 08:43:41.958+03	
b2c9911c-037a-4fdd-15a9-0b9a33158cb3	2021-05-27 08:44:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:44:01.951+03	2021-05-27 08:44:01.959+03	
207581c2-44ee-5b40-2848-3f334fc306ea	2021-05-27 08:44:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:44:21.951+03	2021-05-27 08:44:21.961+03	
bf187c1a-a174-9c58-0ad0-f141dca57d05	2021-05-27 08:44:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:44:41.951+03	2021-05-27 08:44:41.959+03	
3ce89a0b-4158-4db2-4e31-e9fddf12dc42	2021-05-27 08:45:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:45:01.951+03	2021-05-27 08:45:01.96+03	
40a5b542-0447-abb6-275e-a8dad374cb12	2021-05-27 08:45:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:45:21.951+03	2021-05-27 08:45:21.959+03	
8d2fbfb2-02eb-1c26-00ad-2b7bfeb3bfd9	2021-05-27 08:45:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:45:42.951+03	2021-05-27 08:45:42.959+03	
fd70e72c-2522-e2b6-f5c1-66997ecfd5d8	2021-05-27 08:46:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:46:02.951+03	2021-05-27 08:46:02.958+03	
4e44048e-b5a0-dc07-e55d-832587460491	2021-05-27 08:46:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:46:22.951+03	2021-05-27 08:46:22.958+03	
565ede33-fe58-c8e0-bcd9-f3517ca558a8	2021-05-27 08:46:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:46:42.951+03	2021-05-27 08:46:42.959+03	
3d249b46-4d39-a141-3893-d02c1585cc39	2021-05-27 08:47:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:47:02.951+03	2021-05-27 08:47:02.958+03	
157ffde2-9d44-3d4c-15f6-c0c8d3ffcd7c	2021-05-27 08:47:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:47:22.951+03	2021-05-27 08:47:22.959+03	
5d879c78-8d3a-cb65-4d49-63c2064f90a9	2021-05-27 08:47:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:47:42.951+03	2021-05-27 08:47:42.962+03	
047daf7e-fc5b-dd31-f292-f4200c575305	2021-05-27 08:48:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:48:02.951+03	2021-05-27 08:48:02.958+03	
8f6f78e3-e9b6-8f13-61ea-0f11dc3240b2	2021-05-27 08:48:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:48:23.951+03	2021-05-27 08:48:23.958+03	
69e330aa-76da-a6d3-525f-bf2c0dca88b3	2021-05-27 08:48:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:48:43.951+03	2021-05-27 08:48:43.958+03	
723697a2-35fd-d735-45cb-1fa8654f4359	2021-05-27 08:49:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:49:03.951+03	2021-05-27 08:49:03.958+03	
ab7535d5-0a10-eb37-ae9f-c590671f1c8a	2021-05-27 08:49:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:49:23.951+03	2021-05-27 08:49:23.958+03	
f97bbf0b-e0da-1dbf-ee44-d8c40d88b309	2021-05-27 08:49:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:49:43.951+03	2021-05-27 08:49:43.961+03	
7b1771d2-1215-c585-d332-8aa1db461305	2021-05-27 08:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 08:50:00.952+03	2021-05-27 08:50:00.956+03	ERROR
852c5eb3-34bc-6db5-6126-c669ee7d1c02	2021-05-27 08:50:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:50:13.951+03	2021-05-27 08:50:13.958+03	
f2ee42e2-1af4-2872-8ada-6666f83007f5	2021-05-27 08:50:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:50:33.951+03	2021-05-27 08:50:33.958+03	
d9fa0b5f-6b5d-6606-8909-45696ea631af	2021-05-27 08:50:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:50:54.951+03	2021-05-27 08:50:54.958+03	
eab7fe6e-5f6d-36dd-ea86-9fe4543cdcb0	2021-05-27 08:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:51:14.951+03	2021-05-27 08:51:14.959+03	
aef6f0d2-0c17-3f82-fc79-ece348b7de82	2021-05-27 08:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:51:34.951+03	2021-05-27 08:51:34.958+03	
ae49ec6e-3d0d-a972-08a6-1f3c6ce41c83	2021-05-27 08:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:51:54.951+03	2021-05-27 08:51:54.958+03	
f1bb3e06-d1d8-65df-658a-c8b58f4da21b	2021-05-27 08:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:52:14.952+03	2021-05-27 08:52:14.961+03	
0d08a273-6c74-c14e-4098-7c2361ea6103	2021-05-27 08:52:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:52:35.951+03	2021-05-27 08:52:35.959+03	
43112e62-d38a-a407-f74c-5e73c1fa7cc1	2021-05-27 08:52:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:52:45.951+03	2021-05-27 08:52:45.959+03	
1b1cced3-55c0-0d3c-eb42-5fb9c25f5922	2021-05-27 08:53:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:53:05.951+03	2021-05-27 08:53:05.958+03	
04e1e3d7-507e-45fd-a3c6-907873604f04	2021-05-27 08:53:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:53:25.951+03	2021-05-27 08:53:25.96+03	
fb082b34-8ef4-0f88-d8c7-9b50fb733233	2021-05-27 08:53:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:53:46.951+03	2021-05-27 08:53:46.961+03	
6424ec7f-1b19-a3e3-a979-10d3d39c883d	2021-05-27 08:54:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:54:06.951+03	2021-05-27 08:54:06.961+03	
71d1d327-70dd-41a3-699d-85fae9aab68d	2021-05-27 08:54:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:54:26.951+03	2021-05-27 08:54:26.961+03	
a2e2b371-0bad-a107-668e-5eead2b15ad6	2021-05-27 08:54:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:54:46.951+03	2021-05-27 08:54:46.959+03	
64b10505-f2cf-efac-30b3-2949298f2ddb	2021-05-27 08:55:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:55:06.951+03	2021-05-27 08:55:06.958+03	
b4b33f10-405e-4058-d7d1-c746ba21921c	2021-05-27 08:55:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:55:16.951+03	2021-05-27 08:55:16.958+03	
ed4d99d7-1713-f280-f610-dbee6dcc5ee3	2021-05-27 08:55:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:55:36.951+03	2021-05-27 08:55:36.958+03	
f2e0aed5-b266-f472-28c7-d9f09d132d41	2021-05-27 08:55:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:55:56.951+03	2021-05-27 08:55:56.959+03	
c7bd0a88-1904-5dbd-e4e9-207b59639b4f	2021-05-27 08:56:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:56:16.951+03	2021-05-27 08:56:16.958+03	
4a58ee95-686d-9472-8248-397c608041cf	2021-05-27 08:56:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:56:36.951+03	2021-05-27 08:56:36.958+03	
c308d6c1-ee4d-4c7a-f421-a2638b5d9e3d	2021-05-27 08:56:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:56:56.951+03	2021-05-27 08:56:56.959+03	
18b50bf5-3865-1968-afd6-fd0f4b1e2f03	2021-05-27 08:57:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:57:16.951+03	2021-05-27 08:57:16.958+03	
f16f5d95-192e-9c75-a0c5-92788c75ccc8	2021-05-27 08:57:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:57:36.951+03	2021-05-27 08:57:36.958+03	
66f89287-987c-98a6-da70-1157eae51d8a	2021-05-27 08:57:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:57:56.951+03	2021-05-27 08:57:56.959+03	
8e8db348-a23d-3620-8083-9adaac6d519a	2021-05-27 08:58:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:58:16.951+03	2021-05-27 08:58:16.959+03	
80e8ed8a-efd0-091d-7b34-e0865f967721	2021-05-27 08:58:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:58:36.952+03	2021-05-27 08:58:36.958+03	
61c665c6-da5c-30e5-c42b-6d37e47395c0	2021-05-27 08:58:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:58:57.952+03	2021-05-27 08:58:57.96+03	
dc2f9889-8df3-b971-ab68-5d91a4476919	2021-05-27 08:59:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:59:18.951+03	2021-05-27 08:59:18.958+03	
4a5705ac-235e-a43e-f6ab-0dfc5f0ddaaf	2021-05-27 08:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:59:38.951+03	2021-05-27 08:59:38.959+03	
cbd57958-6656-128c-7f33-136bc5beb658	2021-05-27 08:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:59:58.951+03	2021-05-27 08:59:58.958+03	
7127714e-46ff-331a-b9c1-12e3db949eb7	2021-05-27 09:00:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:00:08.951+03	2021-05-27 09:00:08.959+03	
936dedad-5a7f-c1cb-22db-2093f043261e	2021-05-27 09:00:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:00:28.951+03	2021-05-27 09:00:28.958+03	
8bd256da-b00e-4d24-5e06-a9777aa9c3db	2021-05-27 09:00:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:00:48.951+03	2021-05-27 09:00:48.958+03	
25f542e0-8b33-1965-10c7-921d669c4fcb	2021-05-27 09:01:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:01:08.951+03	2021-05-27 09:01:08.959+03	
73867a3f-ad51-0ad7-f787-b582b061af5e	2021-05-27 09:01:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:01:28.951+03	2021-05-27 09:01:28.96+03	
5c79bb66-80c8-3a57-fb10-2ba90adf94ed	2021-05-27 09:01:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:01:48.951+03	2021-05-27 09:01:48.958+03	
a42cd844-84d9-4772-2432-f34792ed53da	2021-05-27 09:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:02:08.951+03	2021-05-27 09:02:08.963+03	
4428dc36-f00f-b975-3d91-5ad45f2ec623	2021-05-27 09:02:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:02:28.951+03	2021-05-27 09:02:28.958+03	
ba02de8d-fb73-36c8-aaa2-7848838d0205	2021-05-27 09:02:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:02:48.951+03	2021-05-27 09:02:48.958+03	
864db043-f8e8-7bb0-fdec-44a429eadd5b	2021-05-27 09:03:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:03:08.951+03	2021-05-27 09:03:08.959+03	
cc664d2c-240d-9b0b-3c51-dc5d13f402cf	2021-05-27 09:03:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:03:28.951+03	2021-05-27 09:03:28.958+03	
5c79ca92-91fa-1e64-271e-2988d6b9b970	2021-05-27 09:03:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:03:48.951+03	2021-05-27 09:03:48.96+03	
01a634b7-2719-0395-a3c1-9b2af749dc90	2021-05-27 09:04:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:04:08.951+03	2021-05-27 09:04:08.959+03	
00baac72-8ba2-1174-35d2-60e78738ad66	2021-05-27 09:04:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:04:28.951+03	2021-05-27 09:04:28.959+03	
2af090be-c957-e58b-571b-bc68095127ef	2021-05-27 09:04:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:04:49.951+03	2021-05-27 09:04:49.959+03	
635872d3-eafb-63f6-03ec-964b26096e09	2021-05-27 09:05:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:05:09.952+03	2021-05-27 09:05:09.959+03	
02c359d6-dff8-c28d-bf23-fae2d903c155	2021-05-27 09:05:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:05:30.951+03	2021-05-27 09:05:30.958+03	
87c47fb6-d74d-e996-4330-a4d6758c2c3a	2021-05-27 09:05:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:05:50.951+03	2021-05-27 09:05:50.962+03	
acde4c36-bab5-6a68-18a9-6db7df3caec8	2021-05-27 09:06:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:06:10.951+03	2021-05-27 09:06:10.959+03	
cfe800b0-69e7-a572-53b8-bd360f3f61d3	2021-05-27 09:06:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:06:30.951+03	2021-05-27 09:06:30.958+03	
609a328b-755c-ef78-daad-6275f2fb5135	2021-05-27 09:06:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:06:50.951+03	2021-05-27 09:06:50.959+03	
f817a571-a28d-4992-9d4f-49117f6d667a	2021-05-27 09:07:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:07:10.951+03	2021-05-27 09:07:10.959+03	
0cb2bf99-31d1-11b2-2b5a-c866eb4e6081	2021-05-27 09:07:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:07:30.951+03	2021-05-27 09:07:30.959+03	
995091ae-03e9-eb09-17de-0e367d94d3d9	2021-05-27 09:07:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:07:50.951+03	2021-05-27 09:07:50.958+03	
dd13c65c-d82b-92c9-1565-c5ca2a738975	2021-05-27 09:08:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:08:10.951+03	2021-05-27 09:08:10.959+03	
c7d9e473-c8ae-2281-9ba5-73b658ea7e72	2021-05-27 09:08:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:08:30.951+03	2021-05-27 09:08:30.96+03	
3bcdd3cc-2bff-554d-0152-5d7b480a3066	2021-05-27 09:08:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:08:50.951+03	2021-05-27 09:08:50.961+03	
67c0fabd-f956-b0bf-b7ae-b3bb0fce7b09	2021-05-27 09:09:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:09:10.951+03	2021-05-27 09:09:10.959+03	
4ebfeb64-6349-dc4a-9310-d42ef0c3d3a5	2021-05-27 09:09:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:09:30.951+03	2021-05-27 09:09:30.957+03	
b52ff642-d039-6307-2644-79e19300d163	2021-05-27 09:09:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:09:50.951+03	2021-05-27 09:09:50.958+03	
fe0030d8-d1c1-33e4-1ef8-e652c57722be	2021-05-27 09:10:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:10:11.951+03	2021-05-27 09:10:11.958+03	
b51807c6-902e-c944-b7ec-988290fc8f55	2021-05-27 09:10:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:10:31.951+03	2021-05-27 09:10:31.96+03	
178b0ea0-c2f9-7cd1-0daf-fb3dbc6dd44b	2021-05-27 09:10:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:10:51.951+03	2021-05-27 09:10:51.958+03	
1055ac27-cbb1-8446-e5f8-65585deafcf4	2021-05-27 09:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:11:11.951+03	2021-05-27 09:11:11.96+03	
f271a5e0-e1e1-3ac9-238c-606f9a851eeb	2021-05-27 09:11:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:11:31.951+03	2021-05-27 09:11:31.959+03	
df778727-55fb-5571-e704-e6c2fe1818d1	2021-05-27 09:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:11:51.951+03	2021-05-27 09:11:51.972+03	
74ddcfcf-58e9-12d6-cacf-abcf822a42ae	2021-05-27 09:12:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:12:11.951+03	2021-05-27 09:12:11.957+03	
22c975c2-0e75-97d9-15d8-9ac87ba52e38	2021-05-27 09:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:12:31.951+03	2021-05-27 09:12:31.96+03	
1bcb507b-5694-df06-1298-2adde4008b47	2021-05-27 09:12:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:12:51.951+03	2021-05-27 09:12:51.958+03	
0358dfec-927f-6db2-4f3f-f07c7b6321dd	2021-05-27 09:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:13:11.951+03	2021-05-27 09:13:11.959+03	
5adb1c0b-bd97-095d-2893-f9f4a294433c	2021-05-27 08:52:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:52:55.951+03	2021-05-27 08:52:55.962+03	
1ef42c84-da44-9e89-27ee-7c246ac0bed8	2021-05-27 08:53:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:53:15.951+03	2021-05-27 08:53:15.958+03	
c815b7b1-2eb6-5ba3-ec98-caf4f2402af6	2021-05-27 08:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:53:35.952+03	2021-05-27 08:53:35.959+03	
5b62623c-2f88-f354-c950-499a8f180d06	2021-05-27 08:53:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:53:56.951+03	2021-05-27 08:53:56.957+03	
6d218b2d-e4e1-ecbf-70c0-38ec0efdaed6	2021-05-27 08:54:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:54:16.951+03	2021-05-27 08:54:16.959+03	
8471122d-deb5-c7e7-4b08-243466f15266	2021-05-27 08:54:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:54:36.951+03	2021-05-27 08:54:36.958+03	
6523ebcd-79b1-ab57-431a-424659350de9	2021-05-27 08:54:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:54:56.951+03	2021-05-27 08:54:56.959+03	
60438652-7a93-7485-8a60-f0cdcedcc0ea	2021-05-27 08:55:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:55:26.951+03	2021-05-27 08:55:26.959+03	
437fe020-c4e3-b9f8-1889-80d039d9fca5	2021-05-27 08:55:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:55:46.951+03	2021-05-27 08:55:46.958+03	
460483cd-145c-06c8-abc0-9e805e28f365	2021-05-27 08:56:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:56:06.951+03	2021-05-27 08:56:06.958+03	
5668491d-5f07-8590-9e0f-e0b3c970a21c	2021-05-27 08:56:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:56:26.951+03	2021-05-27 08:56:26.96+03	
bd839a15-6252-cd84-4347-6dc28cbfe0f6	2021-05-27 08:56:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:56:46.951+03	2021-05-27 08:56:46.96+03	
2ad477f4-caba-ade5-89cc-2b13396cb366	2021-05-27 08:57:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:57:06.951+03	2021-05-27 08:57:06.96+03	
4f305d13-ac9f-4c4b-ecf5-a75ebbc37025	2021-05-27 08:57:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:57:26.951+03	2021-05-27 08:57:26.958+03	
0a55ff80-dfa3-ada6-d401-d7849e6566fa	2021-05-27 08:57:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:57:46.951+03	2021-05-27 08:57:46.958+03	
d66ce120-bcfe-c70e-5663-284ac5bb71e2	2021-05-27 08:58:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:58:06.951+03	2021-05-27 08:58:06.959+03	
0e2b3f2b-5e72-957d-a8c4-fbf7aaf28620	2021-05-27 08:58:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:58:26.952+03	2021-05-27 08:58:26.958+03	
26a7aa4b-8335-c431-f84f-86da73972be1	2021-05-27 08:58:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:58:47.951+03	2021-05-27 08:58:47.959+03	
700fdd03-22a4-8c66-6b12-ffee01d82a7f	2021-05-27 08:59:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:59:07.952+03	2021-05-27 08:59:07.96+03	
9633f72a-c7f9-4da2-ae4f-d0c4c3184a9c	2021-05-27 08:59:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:59:28.951+03	2021-05-27 08:59:28.958+03	
7c728090-cff0-ab7c-2869-648808a59699	2021-05-27 08:59:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 08:59:48.951+03	2021-05-27 08:59:48.959+03	
f6776131-ac37-1b7e-c256-14c474d33bc9	2021-05-27 09:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 09:00:00.951+03	2021-05-27 09:00:00.957+03	ERROR
afdd1886-197c-2bd6-477b-b92412915faa	2021-05-27 09:00:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:00:18.951+03	2021-05-27 09:00:18.958+03	
b5297dbb-a795-5f39-ff2c-c77a41cafa02	2021-05-27 09:00:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:00:38.951+03	2021-05-27 09:00:38.959+03	
d170ae09-6087-3fcb-f318-4dbc1b92e0a1	2021-05-27 09:00:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:00:58.951+03	2021-05-27 09:00:58.958+03	
8484902b-c8cb-0ab6-d123-d885e870e7fa	2021-05-27 09:01:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:01:18.951+03	2021-05-27 09:01:19.195+03	
526925df-1c7e-c18d-daaa-ab436f6b586b	2021-05-27 09:01:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:01:38.951+03	2021-05-27 09:01:38.958+03	
d7b8e959-090c-1293-4f16-b9c1cd5524cc	2021-05-27 09:01:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:01:58.951+03	2021-05-27 09:01:58.958+03	
344a952a-c09f-b71f-38ee-73d07447cf02	2021-05-27 09:02:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:02:18.951+03	2021-05-27 09:02:18.959+03	
2477a157-9cc1-5ac6-ea57-732e639d0bc8	2021-05-27 09:02:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:02:38.951+03	2021-05-27 09:02:38.963+03	
aedf674a-2d47-4336-0e3e-09863311b8ad	2021-05-27 09:02:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:02:58.951+03	2021-05-27 09:02:58.961+03	
6508dbde-26d8-0281-d11e-0d2990dc2e5d	2021-05-27 09:03:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:03:18.951+03	2021-05-27 09:03:18.959+03	
23b8dde5-6fe4-fde4-d1d2-4d9056e119e5	2021-05-27 09:03:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:03:38.951+03	2021-05-27 09:03:38.958+03	
58e3ef8b-d7d4-5197-e473-8a2acf56b693	2021-05-27 09:03:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:03:58.951+03	2021-05-27 09:03:58.957+03	
65f225f9-8300-1484-bade-7ec376feb9fd	2021-05-27 09:04:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:04:18.951+03	2021-05-27 09:04:18.959+03	
9db52be5-573c-af0a-d63f-f70ffa3715b5	2021-05-27 09:04:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:04:38.952+03	2021-05-27 09:04:38.959+03	
f230007e-7f29-1d73-8150-98f901d25c05	2021-05-27 09:04:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:04:59.951+03	2021-05-27 09:04:59.957+03	
d75c5398-a6d2-7bb4-5996-9253b3e030cd	2021-05-27 09:05:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:05:20.951+03	2021-05-27 09:05:20.958+03	
2cfb0f4d-1765-1760-d6e8-e32ad8829646	2021-05-27 09:05:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:05:40.951+03	2021-05-27 09:05:40.958+03	
cd28fa09-69a0-7a62-ca1b-656cff7f5715	2021-05-27 09:06:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:06:00.951+03	2021-05-27 09:06:00.958+03	
9769e2af-9d07-cc20-e16c-4791ea811111	2021-05-27 09:06:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:06:20.951+03	2021-05-27 09:06:20.961+03	
60cc8d21-105b-143c-a6f4-9013a8b51275	2021-05-27 09:06:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:06:40.951+03	2021-05-27 09:06:40.958+03	
1f3fbeb8-c1a9-29ff-cbbb-bf8dabfa2a51	2021-05-27 09:07:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:07:00.951+03	2021-05-27 09:07:00.957+03	
aef53613-0e93-27f0-1dc1-530761ccabd2	2021-05-27 09:07:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:07:20.951+03	2021-05-27 09:07:20.957+03	
c13278a1-04c8-e1cf-d0ff-677235ed78c5	2021-05-27 09:07:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:07:40.951+03	2021-05-27 09:07:40.96+03	
bf3f4ddd-955e-e274-1c72-222bc217b8c4	2021-05-27 09:08:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:08:00.951+03	2021-05-27 09:08:00.96+03	
18b5e906-5ddc-6953-d29f-318cf66a0683	2021-05-27 09:08:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:08:20.951+03	2021-05-27 09:08:20.959+03	
8b73b22b-d0a3-5528-11e1-bc704eb24810	2021-05-27 09:08:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:08:40.951+03	2021-05-27 09:08:40.959+03	
acf49620-a458-48d7-90fb-0d2ed76e7221	2021-05-27 09:09:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:09:00.951+03	2021-05-27 09:09:00.958+03	
0b5a5b30-cb81-7c5e-86d3-75ed5da663cb	2021-05-27 09:09:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:09:20.951+03	2021-05-27 09:09:20.959+03	
7e2bc1c6-6d4b-7182-e621-525efa3b4c08	2021-05-27 09:09:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:09:40.951+03	2021-05-27 09:09:40.959+03	
a1fae3de-39d9-c213-ccbf-e4fae6f44c59	2021-05-27 09:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 09:10:00.951+03	2021-05-27 09:10:00.96+03	ERROR
faf6a867-d5f0-8c4e-9917-e5093d908e32	2021-05-27 09:10:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:10:00.952+03	2021-05-27 09:10:00.969+03	
90e31bfa-6d5e-0c2d-2a50-19ca3c8e1578	2021-05-27 09:10:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:10:21.951+03	2021-05-27 09:10:21.958+03	
1565642c-efed-1b73-f501-5b70b29c5aec	2021-05-27 09:10:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:10:41.951+03	2021-05-27 09:10:41.959+03	
0bdfd105-b74b-b919-3b77-8a0c7b1ed846	2021-05-27 09:11:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:11:01.951+03	2021-05-27 09:11:01.957+03	
d01d5fee-883a-3bec-d3de-77903328d6ab	2021-05-27 09:11:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:11:21.951+03	2021-05-27 09:11:21.959+03	
3abe1f92-b7d6-194e-0d7b-d117d98dfcea	2021-05-27 09:11:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:11:41.951+03	2021-05-27 09:11:41.96+03	
19d43756-233b-7be3-7558-e0e2d0f368b6	2021-05-27 09:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:12:01.951+03	2021-05-27 09:12:01.958+03	
a7410028-72b3-547a-b121-0cc2faeb575a	2021-05-27 09:12:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:12:21.951+03	2021-05-27 09:12:21.959+03	
a11377fe-3c5a-6052-2245-d777440bb892	2021-05-27 09:12:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:12:41.951+03	2021-05-27 09:12:41.96+03	
82a1a2b1-ac86-8f47-bc09-4c87ccbf2a18	2021-05-27 09:13:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:13:01.951+03	2021-05-27 09:13:01.958+03	
b62333e1-e394-83ec-9de8-e7f9fc3da97b	2021-05-27 09:13:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:13:21.951+03	2021-05-27 09:13:21.959+03	
700f8b8c-8a44-1d59-826c-8d89502c451b	2021-05-27 09:13:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:13:31.951+03	2021-05-27 09:13:31.959+03	
5452d634-e9bf-2042-99c2-03634f978a4e	2021-05-27 09:13:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:13:51.951+03	2021-05-27 09:13:51.957+03	
1f57454a-9e2b-c233-4454-eaf74e82c046	2021-05-27 09:14:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:14:11.952+03	2021-05-27 09:14:11.96+03	
28b2e069-29f3-8c14-88a6-5f8f225002ed	2021-05-27 09:14:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:14:32.951+03	2021-05-27 09:14:32.959+03	
e3625922-134a-9692-e9ec-2a4afedfe281	2021-05-27 09:14:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:14:53.951+03	2021-05-27 09:14:53.96+03	
362e9890-f7ae-84cb-35fd-aa48c57d8516	2021-05-27 09:15:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:15:13.951+03	2021-05-27 09:15:13.958+03	
413a1480-31b3-ffce-f320-b8e2ac237a4f	2021-05-27 09:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:15:33.951+03	2021-05-27 09:15:33.958+03	
f7e767d3-01a4-06e3-12e6-0d71889ab4a0	2021-05-27 09:15:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:15:53.951+03	2021-05-27 09:15:53.96+03	
6f8a6357-af3b-8d17-82c3-b13da2f03bc3	2021-05-27 09:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:16:13.951+03	2021-05-27 09:16:13.958+03	
4d5f9168-4bfc-8c15-44bd-f3fcab4894fe	2021-05-27 09:16:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:16:33.951+03	2021-05-27 09:16:33.958+03	
d47743ab-84b2-6cee-6e12-27bb633e4462	2021-05-27 09:16:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:16:53.951+03	2021-05-27 09:16:53.958+03	
f26b7e23-0f2e-9127-0490-bc0a9803294f	2021-05-27 09:17:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:17:13.951+03	2021-05-27 09:17:13.957+03	
5e4135c8-5254-1429-ef40-c7124955ed26	2021-05-27 09:17:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:17:33.951+03	2021-05-27 09:17:33.958+03	
30f2970a-4aee-7248-8ff3-d58f1b0e1488	2021-05-27 09:17:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:17:53.951+03	2021-05-27 09:17:53.957+03	
19ed8249-2333-0a25-1d9d-8df64ddaf331	2021-05-27 09:18:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:18:13.951+03	2021-05-27 09:18:13.957+03	
8d0d8245-dd1d-0e24-d7bf-16c8f2ff251e	2021-05-27 09:18:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:18:33.951+03	2021-05-27 09:18:33.958+03	
26afc98a-66b5-7987-a1b5-bc0f70b12798	2021-05-27 09:18:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:18:53.951+03	2021-05-27 09:18:53.96+03	
9c5fc3c3-3191-3634-2efa-10a18e6efac8	2021-05-27 09:19:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:19:13.951+03	2021-05-27 09:19:13.958+03	
2eef980d-adbb-a1e4-0842-6ac8cf190aa9	2021-05-27 09:19:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:19:33.951+03	2021-05-27 09:19:33.957+03	
497b42b8-7074-6339-77a4-bac62dee86f8	2021-05-27 09:19:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:19:53.951+03	2021-05-27 09:19:53.958+03	
22fa26d3-494c-5053-a349-81ee0c79d965	2021-05-27 09:20:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:20:03.951+03	2021-05-27 09:20:03.957+03	
83f77fea-fd39-a602-b367-deac9fa72b34	2021-05-27 09:20:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:20:23.951+03	2021-05-27 09:20:23.96+03	
00d5482a-b526-2f2b-a7ee-ffbc8fc199ff	2021-05-27 09:20:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:20:43.951+03	2021-05-27 09:20:43.958+03	
cd6a36ae-4a18-09c1-8b13-a83795f4837a	2021-05-27 09:21:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:21:03.951+03	2021-05-27 09:21:03.958+03	
cc199d8a-631e-daa2-8fc8-50b9133d7a13	2021-05-27 09:21:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:21:23.952+03	2021-05-27 09:21:23.959+03	
feff6085-1d1a-4e37-6d02-9ae521254a91	2021-05-27 09:21:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:21:45.951+03	2021-05-27 09:21:45.959+03	
c704a23f-a5e7-e263-9e7e-4825a3b5b481	2021-05-27 09:22:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:22:06.951+03	2021-05-27 09:22:06.958+03	
35c2f5ab-be43-1da4-43c9-e6fe2fea830c	2021-05-27 09:22:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:22:26.951+03	2021-05-27 09:22:26.961+03	
3b3c685a-c3ce-4cf2-f026-f4a6b726c3e1	2021-05-27 09:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:22:46.951+03	2021-05-27 09:22:46.958+03	
0f7244ab-ee62-4ae7-1fd6-6279ed5641a9	2021-05-27 09:23:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:23:06.951+03	2021-05-27 09:23:06.958+03	
8a0d6212-8133-e742-9bea-717733be266d	2021-05-27 09:23:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:23:26.951+03	2021-05-27 09:23:26.957+03	
f2fc6ae9-0a02-2f0e-9448-6fed9f4fd5ff	2021-05-27 09:23:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:23:46.951+03	2021-05-27 09:23:46.96+03	
841232f3-fad3-2289-2b02-6f0443071190	2021-05-27 09:24:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:24:06.951+03	2021-05-27 09:24:06.959+03	
a6b39a40-7def-3cf6-af28-bdbfb0db8e1e	2021-05-27 09:24:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:24:26.951+03	2021-05-27 09:24:26.958+03	
89c25077-e950-7065-2e2a-95294ff5f043	2021-05-27 09:24:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:24:46.951+03	2021-05-27 09:24:46.959+03	
5229c3f9-b834-5f74-43a9-ef2b54ddc5aa	2021-05-27 09:25:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:25:07.952+03	2021-05-27 09:25:07.959+03	
80e095fb-7348-35d0-fa51-c8cd175a0c59	2021-05-27 09:25:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:25:28.951+03	2021-05-27 09:25:28.958+03	
9837b75a-0f19-9538-266a-669e68146b77	2021-05-27 09:25:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:25:48.951+03	2021-05-27 09:25:48.961+03	
34a1f99d-6be4-c708-d3bb-98c53945a1ab	2021-05-27 09:26:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:26:08.951+03	2021-05-27 09:26:08.961+03	
ea23745c-6ea5-7fb0-e1c3-a7c5b05056cf	2021-05-27 09:26:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:26:29.951+03	2021-05-27 09:26:29.958+03	
0fccdc34-7d49-8ef0-aefc-9ad083298047	2021-05-27 09:26:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:26:49.951+03	2021-05-27 09:26:49.958+03	
10a4681f-e36f-dfd2-e03c-acd7767fe37b	2021-05-27 09:27:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:27:09.951+03	2021-05-27 09:27:09.959+03	
c4ac51e8-7766-118c-d11c-590430110105	2021-05-27 09:27:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:27:29.951+03	2021-05-27 09:27:29.959+03	
c7399d78-86bf-9bb2-1cb3-d5d23afa3af4	2021-05-27 09:27:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:27:49.951+03	2021-05-27 09:27:49.959+03	
1d3aae00-d977-f5f8-ddf4-d156f95e9b3d	2021-05-27 09:28:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:28:09.951+03	2021-05-27 09:28:09.959+03	
255d7a4f-8dc5-93b7-8015-5928d46ebb96	2021-05-27 09:28:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:28:29.951+03	2021-05-27 09:28:29.958+03	
4021d876-9c91-0f3e-b1f0-beb62c87e6b2	2021-05-27 09:28:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:28:49.951+03	2021-05-27 09:28:49.958+03	
69848288-cf39-f53b-f957-1ca543f823b8	2021-05-27 09:29:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:29:09.951+03	2021-05-27 09:29:09.959+03	
0b2de7f7-61e9-40d9-c584-859ff4876a9d	2021-05-27 09:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:29:29.951+03	2021-05-27 09:29:29.96+03	
298b159a-80a8-1128-2f31-57654cfbf550	2021-05-27 09:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:29:49.951+03	2021-05-27 09:29:49.958+03	
b243a47e-c397-606d-6643-b679cbd2f7e5	2021-05-27 09:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 09:30:00.951+03	2021-05-27 09:30:00.956+03	ERROR
caf2374f-ea9d-eab6-4c79-8c9af3443d68	2021-05-27 09:30:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:30:19.951+03	2021-05-27 09:30:19.958+03	
99f826fb-d02f-ae11-4cb8-48125b7037a4	2021-05-27 09:30:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:30:39.951+03	2021-05-27 09:30:39.958+03	
01ed6a8a-203f-2d5b-728a-438a4f67ef08	2021-05-27 09:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:30:59.951+03	2021-05-27 09:30:59.958+03	
90cc97a6-e4bd-567a-e121-28d5f209be8b	2021-05-27 09:31:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:31:19.951+03	2021-05-27 09:31:19.958+03	
81e296f5-c6c6-8d07-ed3f-49aa45835540	2021-05-27 09:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:31:39.951+03	2021-05-27 09:31:39.959+03	
dc0b4e1a-4bf6-3203-82d6-84fbea92d2fe	2021-05-27 09:31:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:31:59.951+03	2021-05-27 09:31:59.959+03	
078f9081-013a-70b4-3fde-651c907b3a98	2021-05-27 09:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:32:19.951+03	2021-05-27 09:32:19.965+03	
3df205a5-0921-0244-8344-3e8daa77f5cf	2021-05-27 09:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:32:39.951+03	2021-05-27 09:32:39.958+03	
c1a5c235-872f-ba26-c453-73259a2a9bd4	2021-05-27 09:32:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:32:59.951+03	2021-05-27 09:32:59.958+03	
8e996b3e-3765-605a-58e5-00c6070273e8	2021-05-27 09:33:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:33:20.951+03	2021-05-27 09:33:20.958+03	
6358011f-ec8a-e3c4-6170-5f831812dac4	2021-05-27 09:33:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:33:40.951+03	2021-05-27 09:33:40.959+03	
e037d249-27ec-7508-1504-3fcdb1ccd36c	2021-05-27 09:34:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:34:00.951+03	2021-05-27 09:34:00.958+03	
d5b51077-3da8-11c6-10f4-d6e808b9ea87	2021-05-27 09:13:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:13:41.951+03	2021-05-27 09:13:41.96+03	
9cc3d0d6-73f5-7f07-80c0-6e90a1de1093	2021-05-27 09:14:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:14:01.951+03	2021-05-27 09:14:01.96+03	
589c782c-7172-f2d4-5545-421c2bfe5367	2021-05-27 09:14:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:14:22.951+03	2021-05-27 09:14:22.957+03	
3e0f1c11-e388-3a22-a3ff-21eeb5b17bf3	2021-05-27 09:14:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:14:42.953+03	2021-05-27 09:14:42.96+03	
85b8c332-dd30-715d-385a-bfffe7a4790f	2021-05-27 09:15:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:15:03.951+03	2021-05-27 09:15:03.959+03	
7fe1e64a-c6be-a212-1068-9239386520f8	2021-05-27 09:15:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:15:23.951+03	2021-05-27 09:15:23.958+03	
69b2ce4e-da59-6aa6-6335-5515be5c6ecc	2021-05-27 09:15:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:15:43.951+03	2021-05-27 09:15:43.958+03	
235da79a-a070-0bfc-576d-d87b0507c164	2021-05-27 09:16:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:16:03.951+03	2021-05-27 09:16:03.959+03	
77e2678d-2c88-01f2-caed-3e9e5d346519	2021-05-27 09:16:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:16:23.951+03	2021-05-27 09:16:23.957+03	
8cffc768-228f-5d84-9115-cdf1fe0f7ad9	2021-05-27 09:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:16:43.951+03	2021-05-27 09:16:43.958+03	
049e429d-3c51-706f-bd66-39879cf287c3	2021-05-27 09:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:17:03.951+03	2021-05-27 09:17:03.957+03	
504c0d59-6ee9-595e-8ddc-75a3220d1794	2021-05-27 09:17:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:17:23.951+03	2021-05-27 09:17:23.959+03	
5266aae1-701a-50d2-b28a-28ef78bf9d79	2021-05-27 09:17:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:17:43.951+03	2021-05-27 09:17:43.958+03	
03e06d73-68dd-844d-7447-057a78a57acd	2021-05-27 09:18:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:18:03.951+03	2021-05-27 09:18:03.959+03	
24d66e29-9bb4-ddb2-a60a-d7839fd43ad8	2021-05-27 09:18:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:18:23.951+03	2021-05-27 09:18:23.958+03	
735918c9-c942-90fe-dace-92e248d02dd4	2021-05-27 09:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:18:43.951+03	2021-05-27 09:18:43.958+03	
0015b4ab-6e18-3256-9f87-c11c1ba6df24	2021-05-27 09:19:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:19:03.951+03	2021-05-27 09:19:03.96+03	
927c7783-572c-ba9e-da7c-6b041ab509ed	2021-05-27 09:19:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:19:23.951+03	2021-05-27 09:19:23.959+03	
f6e8e64d-edce-2f8d-051a-df4804011bfb	2021-05-27 09:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:19:43.951+03	2021-05-27 09:19:43.958+03	
02f6dffc-ec2a-2930-8c48-867e3ddb6345	2021-05-27 09:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 09:20:00.951+03	2021-05-27 09:20:00.957+03	ERROR
827d2d0f-485c-cdde-5be8-592bc9162728	2021-05-27 09:20:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:20:13.951+03	2021-05-27 09:20:13.959+03	
c1260b11-a504-3ea0-8d93-406c6482deb7	2021-05-27 09:20:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:20:33.951+03	2021-05-27 09:20:33.957+03	
73fd87d9-5d64-f976-d1e2-a1d9bb0530a3	2021-05-27 09:20:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:20:53.951+03	2021-05-27 09:20:53.958+03	
6cad49c7-d2ea-cc8b-ac73-b1e15b229818	2021-05-27 09:21:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:21:13.951+03	2021-05-27 09:21:13.959+03	
69305b18-971c-e8e2-304e-05600230e81b	2021-05-27 09:21:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:21:34.952+03	2021-05-27 09:21:34.958+03	
28446b13-7b09-c966-b72b-6c0c91bcead4	2021-05-27 09:21:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:21:55.952+03	2021-05-27 09:21:55.96+03	
397ef8eb-7109-5a47-91a6-d4e9b177a4f9	2021-05-27 09:22:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:22:16.951+03	2021-05-27 09:22:16.959+03	
5f66170b-2cd4-fd81-a8c2-422ff2869e19	2021-05-27 09:22:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:22:36.951+03	2021-05-27 09:22:36.957+03	
c5037675-d90b-4161-681d-bd22115e8a5a	2021-05-27 09:22:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:22:56.951+03	2021-05-27 09:22:56.957+03	
60a3643e-646a-0412-a37c-b8eff78fbfdd	2021-05-27 09:23:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:23:16.951+03	2021-05-27 09:23:16.958+03	
13339772-541f-0c5a-afee-44a848a2a693	2021-05-27 09:23:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:23:36.951+03	2021-05-27 09:23:36.959+03	
59b072ca-5029-f609-c3ec-3fbeeb3dde57	2021-05-27 09:23:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:23:56.951+03	2021-05-27 09:23:56.959+03	
85df007e-23c0-5ada-a013-06c9ccc3eb0a	2021-05-27 09:24:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:24:16.951+03	2021-05-27 09:24:16.961+03	
dabaa625-e254-fa87-630e-54a28147d07e	2021-05-27 09:24:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:24:36.951+03	2021-05-27 09:24:36.958+03	
350bd491-600a-8e3a-ec35-bd6f15479ff8	2021-05-27 09:24:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:24:56.952+03	2021-05-27 09:24:56.96+03	
2990d171-36fc-c812-a09b-70e0ea86e4a5	2021-05-27 09:25:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:25:18.951+03	2021-05-27 09:25:18.96+03	
1ee1458f-1a22-265e-4219-d3533574be21	2021-05-27 09:25:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:25:38.951+03	2021-05-27 09:25:38.96+03	
48518345-182e-6df0-18eb-a48d1fffab62	2021-05-27 09:25:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:25:58.951+03	2021-05-27 09:25:58.958+03	
efcfe9a6-dbfe-6af1-b923-ca0a03b5098d	2021-05-27 09:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:26:18.952+03	2021-05-27 09:26:18.96+03	
2a769331-aa6f-b55a-3a71-a6a067ec6b15	2021-05-27 09:26:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:26:39.951+03	2021-05-27 09:26:39.958+03	
6b137f51-2000-c486-e960-a9b112c91610	2021-05-27 09:26:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:26:59.951+03	2021-05-27 09:26:59.957+03	
1f72130b-e518-9b64-598d-72033decc472	2021-05-27 09:27:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:27:19.951+03	2021-05-27 09:27:19.959+03	
0f1702f1-7013-a05d-3ae8-4d4b0bd93981	2021-05-27 09:27:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:27:39.951+03	2021-05-27 09:27:39.958+03	
0e990f60-8b79-0e9b-1128-af2fbda557b8	2021-05-27 09:27:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:27:59.951+03	2021-05-27 09:27:59.958+03	
8990e3d6-fd83-473a-c68d-73ad84747ff8	2021-05-27 09:28:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:28:19.951+03	2021-05-27 09:28:19.959+03	
95e5ea76-6fb5-012d-4660-7d7217d83ace	2021-05-27 09:28:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:28:39.951+03	2021-05-27 09:28:39.96+03	
93166851-534c-c7df-ca95-700d7dd30309	2021-05-27 09:28:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:28:59.951+03	2021-05-27 09:28:59.958+03	
7e182fcb-226b-44a2-9a5f-74a91de61953	2021-05-27 09:29:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:29:19.951+03	2021-05-27 09:29:19.958+03	
d61e3e78-2c00-1db8-8be2-431c8160674d	2021-05-27 09:29:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:29:39.951+03	2021-05-27 09:29:39.958+03	
01b80f6f-91dd-1b57-ecd8-d03a5bc35da4	2021-05-27 09:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:29:59.951+03	2021-05-27 09:29:59.959+03	
baba47e9-0c5c-82ee-c57d-4888e5829472	2021-05-27 09:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:30:09.951+03	2021-05-27 09:30:09.959+03	
4bdfdb15-0aa8-9d37-25d9-9c0d08a6daa1	2021-05-27 09:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:30:29.951+03	2021-05-27 09:30:29.958+03	
1a329fd4-40f0-bba7-3f76-c68d2c9bfa73	2021-05-27 09:30:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:30:49.951+03	2021-05-27 09:30:49.959+03	
82f8aae3-c9b0-4bb8-cd43-62bcfc81e9eb	2021-05-27 09:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:31:09.951+03	2021-05-27 09:31:09.958+03	
226d4e5f-d49f-2957-e168-1fdadbf416f7	2021-05-27 09:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:31:29.951+03	2021-05-27 09:31:29.958+03	
81af8f08-bcb0-dd81-78ae-b701835f068a	2021-05-27 09:31:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:31:49.951+03	2021-05-27 09:31:49.958+03	
e81db8b4-a887-9ebc-611d-d27039bf3731	2021-05-27 09:32:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:32:09.951+03	2021-05-27 09:32:09.962+03	
865194ef-1017-a0b3-8d17-8265ce6efc82	2021-05-27 09:32:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:32:29.951+03	2021-05-27 09:32:29.959+03	
cf281ab9-bc3f-4845-0020-abb1284f6b16	2021-05-27 09:32:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:32:49.951+03	2021-05-27 09:32:49.96+03	
b310ff63-1b38-fcab-5b90-c5cd4bb06fc9	2021-05-27 09:33:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:33:09.952+03	2021-05-27 09:33:09.958+03	
60fbe228-e4fc-306b-6b95-8de0e8795012	2021-05-27 09:33:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:33:30.951+03	2021-05-27 09:33:30.958+03	
686c653c-7d8e-b566-572f-9b9d391c7015	2021-05-27 09:33:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:33:50.951+03	2021-05-27 09:33:50.957+03	
f7100873-5d2f-9dad-2a1b-02fccafe5d7e	2021-05-27 09:34:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:34:10.951+03	2021-05-27 09:34:10.958+03	
8391020c-a892-b8b6-b539-56fe3c455fe4	2021-05-27 09:34:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:34:20.951+03	2021-05-27 09:34:20.96+03	
4269a128-5bb7-2239-992e-571990b34cf0	2021-05-27 09:34:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:34:40.951+03	2021-05-27 09:34:40.958+03	
a0857e49-b76b-8bd5-3186-01fa44d34a2a	2021-05-27 09:35:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:35:00.951+03	2021-05-27 09:35:00.959+03	
0b8fa977-b2f2-30c1-d496-d9454f214a65	2021-05-27 09:35:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:35:20.951+03	2021-05-27 09:35:20.959+03	
c5004613-922d-fdbd-020b-ebc667656888	2021-05-27 09:35:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:35:40.951+03	2021-05-27 09:35:40.959+03	
15ecc5a2-6667-6925-3284-ecf1de5df000	2021-05-27 09:36:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:36:00.951+03	2021-05-27 09:36:00.959+03	
91ae4817-21bf-421b-6f99-54eb49109e2b	2021-05-27 09:36:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:36:20.951+03	2021-05-27 09:36:20.958+03	
66d01a56-c8bc-e7bb-8026-72068dfd92bd	2021-05-27 09:36:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:36:40.951+03	2021-05-27 09:36:40.959+03	
bf19b93e-2f5f-32c5-443e-358b1d2e8709	2021-05-27 09:37:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:37:00.951+03	2021-05-27 09:37:00.958+03	
11aa3f9a-e2d5-3aa8-325f-f81b7c3496a2	2021-05-27 09:37:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:37:20.951+03	2021-05-27 09:37:20.957+03	
84a7a628-155c-3132-5535-5b88afafc5de	2021-05-27 09:37:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:37:40.951+03	2021-05-27 09:37:40.959+03	
3b3891b5-a189-c506-a72b-4d3e3abaccdf	2021-05-27 09:38:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:38:00.951+03	2021-05-27 09:38:00.959+03	
712c6590-9ac0-3ee5-b303-736c2898d1d4	2021-05-27 09:38:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:38:20.951+03	2021-05-27 09:38:20.958+03	
bf74661c-7cbd-9c84-cea5-075fc1b8b2be	2021-05-27 09:38:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:38:40.951+03	2021-05-27 09:38:40.959+03	
aee1abdf-e283-f572-e12c-9bf1750bdb7e	2021-05-27 09:39:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:39:00.951+03	2021-05-27 09:39:00.958+03	
24ea881d-3f60-528d-33c8-c6622bf8d737	2021-05-27 09:39:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:39:20.951+03	2021-05-27 09:39:20.958+03	
c41c4076-72fb-a58f-72ce-7d83f736f31c	2021-05-27 09:39:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:39:40.951+03	2021-05-27 09:39:40.958+03	
489604a6-fade-4514-13fd-87950a1622b7	2021-05-27 09:40:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:40:00.951+03	2021-05-27 09:40:00.961+03	
99f0c178-2b0f-c64a-49b3-5dc7a9b62c7d	2021-05-27 09:40:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:40:20.951+03	2021-05-27 09:40:20.96+03	
01022300-3a47-e2dc-7b16-b79b59684bef	2021-05-27 09:40:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:40:40.951+03	2021-05-27 09:40:40.959+03	
a2886a61-a8b4-fb8c-7ec0-71993f2c80e3	2021-05-27 09:41:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:41:00.951+03	2021-05-27 09:41:00.959+03	
a94db467-9d97-a80a-d03e-a45d63ce3af6	2021-05-27 09:41:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:41:20.951+03	2021-05-27 09:41:20.96+03	
e1ad9ba7-aceb-cb76-1223-11a8bfafc471	2021-05-27 09:41:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:41:40.952+03	2021-05-27 09:41:40.959+03	
97189122-923f-3334-dd00-8c2b83b3cc18	2021-05-27 09:42:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:42:01.951+03	2021-05-27 09:42:01.958+03	
a5781afe-43a2-c0ba-b1b2-79a0e7036587	2021-05-27 09:42:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:42:21.951+03	2021-05-27 09:42:21.959+03	
4efd19bf-93c5-5671-a52d-5d335ce4e18c	2021-05-27 09:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:42:41.952+03	2021-05-27 09:42:41.96+03	
7877d9f4-0eb9-9025-daf3-653122637b9a	2021-05-27 09:43:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:43:02.951+03	2021-05-27 09:43:02.959+03	
ff85a295-f20e-f884-d894-0007a67810b8	2021-05-27 09:43:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:43:22.951+03	2021-05-27 09:43:22.958+03	
4125f869-0b57-d493-80ea-a433c47362a8	2021-05-27 09:43:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:43:42.951+03	2021-05-27 09:43:42.958+03	
402603ea-dcc3-e982-9877-dc43f6d4d3f8	2021-05-27 09:44:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:44:02.951+03	2021-05-27 09:44:02.958+03	
bafd7beb-11a4-4639-5f6f-5e8400884a53	2021-05-27 09:44:22.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:44:22.953+03	2021-05-27 09:44:22.961+03	
b28fd810-23ef-5423-99a4-7bae5c8b34a8	2021-05-27 09:44:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:44:33.951+03	2021-05-27 09:44:33.959+03	
df2c32ce-4023-78e2-c12d-7549722aa631	2021-05-27 09:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:44:53.951+03	2021-05-27 09:44:53.959+03	
84014a7c-3e5d-cb1e-c157-e45fd4821fa2	2021-05-27 09:45:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:45:13.952+03	2021-05-27 09:45:13.959+03	
49527659-486a-fbb3-372b-2dc78f9260cc	2021-05-27 09:45:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:45:34.951+03	2021-05-27 09:45:34.958+03	
fe17e63b-2966-9fb9-8cf0-9f216a2793c1	2021-05-27 09:45:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:45:54.951+03	2021-05-27 09:45:54.96+03	
c362b8b3-4297-6a2e-ae51-5d8046ebc8d9	2021-05-27 09:46:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:46:15.951+03	2021-05-27 09:46:15.957+03	
d5a3709f-94f8-4b04-f62d-5579a18fb343	2021-05-27 09:46:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:46:35.952+03	2021-05-27 09:46:35.959+03	
85ecb3ec-7865-5952-b352-d542ee0d0d54	2021-05-27 09:46:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:46:56.951+03	2021-05-27 09:46:56.959+03	
55815dc0-262e-d7e1-ccbc-36c708c134f9	2021-05-27 09:47:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:47:16.951+03	2021-05-27 09:47:16.958+03	
810d6318-e3c6-3efa-fc7b-79cad6dca67d	2021-05-27 09:47:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:47:36.951+03	2021-05-27 09:47:36.958+03	
b893913a-63cf-3eb8-acf4-c97aaac25833	2021-05-27 09:47:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:47:56.951+03	2021-05-27 09:47:56.957+03	
d79ab004-7f04-590b-7659-00b38189064c	2021-05-27 09:48:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:48:16.951+03	2021-05-27 09:48:16.959+03	
a28f4402-e820-2b0b-ca4d-fec2a9952df2	2021-05-27 09:48:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:48:36.951+03	2021-05-27 09:48:36.958+03	
def08d9f-8773-19dc-9b76-a9da628b8010	2021-05-27 09:48:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:48:57.952+03	2021-05-27 09:48:57.958+03	
972ebe06-81d3-f6af-8a17-457aeb7198fb	2021-05-27 09:49:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:49:18.951+03	2021-05-27 09:49:18.958+03	
5379c27b-441a-9779-f301-6cadca757a81	2021-05-27 09:49:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:49:38.951+03	2021-05-27 09:49:38.961+03	
c3af966e-d673-3c11-2191-77cfd7901eaa	2021-05-27 09:49:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:49:58.951+03	2021-05-27 09:49:58.958+03	
8f5f593e-fc06-bec7-1b96-063adef333c1	2021-05-27 09:50:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:50:08.951+03	2021-05-27 09:50:08.958+03	
3fa092e1-20ee-cdb8-26af-8afb3c2567e6	2021-05-27 09:50:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:50:28.951+03	2021-05-27 09:50:28.957+03	
43caaf51-7db7-865a-6e3c-daab6a68db07	2021-05-27 09:50:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:50:48.951+03	2021-05-27 09:50:48.958+03	
cae5244f-a78d-44ec-fb88-93f0a6cbb2e4	2021-05-27 09:51:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:51:08.951+03	2021-05-27 09:51:08.958+03	
dd5f9a04-c681-005a-3a5e-fa3b6b1a7b42	2021-05-27 09:51:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:51:28.951+03	2021-05-27 09:51:28.959+03	
de97dca3-0110-ba48-77e6-bfbd71866bbe	2021-05-27 09:51:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:51:48.951+03	2021-05-27 09:51:48.958+03	
e07afed0-d78e-8c65-f191-b8afca919bec	2021-05-27 09:52:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:52:08.951+03	2021-05-27 09:52:08.958+03	
fba2fbef-9cff-22f1-4b9d-89278a476f49	2021-05-27 09:52:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:52:28.951+03	2021-05-27 09:52:28.962+03	
a4a87621-bd1e-207a-7b0e-473cabd9b5d7	2021-05-27 09:52:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:52:48.951+03	2021-05-27 09:52:48.96+03	
68bc07e9-67c4-9683-ead8-88f6d36aff74	2021-05-27 09:53:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:53:08.952+03	2021-05-27 09:53:08.96+03	
f83d5a75-1116-fe2c-8c10-dc55749fe626	2021-05-27 09:53:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:53:29.951+03	2021-05-27 09:53:29.959+03	
1c1a762f-3b57-dcd1-bbdf-d55ea75e9ad5	2021-05-27 09:53:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:53:59.951+03	2021-05-27 09:53:59.958+03	
940ea729-f6db-b8fb-1a4a-e00217b04d33	2021-05-27 09:54:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:54:19.951+03	2021-05-27 09:54:19.959+03	
616f2b4d-0819-c143-e385-017a54b3d55c	2021-05-27 09:54:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:54:39.951+03	2021-05-27 09:54:39.958+03	
5634aa92-058c-63a8-a086-9a700da091df	2021-05-27 09:54:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:54:59.951+03	2021-05-27 09:54:59.958+03	
232432a8-f86d-85fa-0ae5-0ed807ea6ba7	2021-05-27 09:34:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:34:30.951+03	2021-05-27 09:34:30.957+03	
1020fbac-ad4f-f350-b196-8d7a8597df60	2021-05-27 09:34:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:34:50.951+03	2021-05-27 09:34:50.959+03	
6d3f7931-094e-7142-1e62-705217664104	2021-05-27 09:35:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:35:10.951+03	2021-05-27 09:35:10.958+03	
2a9a404f-3244-09e6-4326-8779e397fcae	2021-05-27 09:35:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:35:30.951+03	2021-05-27 09:35:30.957+03	
2fb8515e-f2d5-7671-5684-08c3fe796f41	2021-05-27 09:35:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:35:50.951+03	2021-05-27 09:35:50.958+03	
544654b0-eae2-b458-75d5-50c20bbadb99	2021-05-27 09:36:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:36:10.951+03	2021-05-27 09:36:10.958+03	
070ba06a-b3c2-784f-d292-e6c3e659e39c	2021-05-27 09:36:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:36:30.951+03	2021-05-27 09:36:30.961+03	
d0fc2046-475a-0b23-b74c-27166554eb5d	2021-05-27 09:36:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:36:50.951+03	2021-05-27 09:36:50.958+03	
759b4ab4-9288-f06a-952e-3ccf864bf9d5	2021-05-27 09:37:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:37:10.951+03	2021-05-27 09:37:10.957+03	
0c6cad20-95d9-36df-6ff8-c2bd2b8da76f	2021-05-27 09:37:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:37:30.951+03	2021-05-27 09:37:30.959+03	
4352fd80-02cc-4144-352a-fea9c40e8d0e	2021-05-27 09:37:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:37:50.951+03	2021-05-27 09:37:50.96+03	
5f6aad55-2aae-631a-9181-c7e5e8e419ec	2021-05-27 09:38:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:38:10.951+03	2021-05-27 09:38:10.959+03	
e7d66908-65a7-da4e-2a43-97612071ea3b	2021-05-27 09:38:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:38:30.951+03	2021-05-27 09:38:30.958+03	
2d9c5715-bd11-e48b-3e41-c12fe8e33c6a	2021-05-27 09:38:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:38:50.951+03	2021-05-27 09:38:50.958+03	
adb5f46b-860c-d1b2-ce79-5fa3782983e4	2021-05-27 09:39:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:39:10.951+03	2021-05-27 09:39:10.959+03	
acafd051-40a0-a2c6-2119-e9fca9d5c28f	2021-05-27 09:39:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:39:30.951+03	2021-05-27 09:39:30.962+03	
a34af033-c955-d221-bd0d-4a1e3534d54d	2021-05-27 09:39:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:39:50.951+03	2021-05-27 09:39:50.958+03	
cb0ad910-97a1-3944-7c66-6e69663049d7	2021-05-27 09:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 09:40:00.952+03	2021-05-27 09:40:00.968+03	ERROR
a5dbd024-844e-87ec-220e-693be8fd1ec8	2021-05-27 09:40:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:40:10.951+03	2021-05-27 09:40:10.958+03	
e2f6d824-1c4e-938d-7f5d-5e40443fc372	2021-05-27 09:40:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:40:30.951+03	2021-05-27 09:40:30.959+03	
cb2ac0f3-661e-1907-199b-a86cfc27cead	2021-05-27 09:40:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:40:50.951+03	2021-05-27 09:40:50.96+03	
0b6b19f5-2386-9580-986b-1f13b625bc5f	2021-05-27 09:41:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:41:10.951+03	2021-05-27 09:41:10.96+03	
2e5aa224-7ea5-b794-a807-b7998dda3114	2021-05-27 09:41:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:41:30.951+03	2021-05-27 09:41:30.959+03	
ad643e4e-1d34-93fa-24ab-4589e1423c9c	2021-05-27 09:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:41:51.951+03	2021-05-27 09:41:51.959+03	
986eef92-e18e-f3e2-baca-55afdf802d81	2021-05-27 09:42:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:42:11.951+03	2021-05-27 09:42:11.96+03	
8251f4ae-2fc1-4e85-2a66-30cd97e8b6e2	2021-05-27 09:42:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:42:31.951+03	2021-05-27 09:42:31.959+03	
4b884a42-7d89-de35-3c23-268e36630996	2021-05-27 09:42:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:42:52.951+03	2021-05-27 09:42:52.959+03	
8541243f-2d06-87db-ea5e-01efb5c54cb7	2021-05-27 09:43:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:43:12.951+03	2021-05-27 09:43:12.96+03	
5b767b09-bd43-18ff-b7ac-eb965a0af36f	2021-05-27 09:43:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:43:32.951+03	2021-05-27 09:43:32.958+03	
d4120bd0-85eb-8b44-792d-891acb025719	2021-05-27 09:43:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:43:52.951+03	2021-05-27 09:43:52.958+03	
74413932-0dc3-e3af-5ce2-c3c3c63072fa	2021-05-27 09:44:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:44:12.951+03	2021-05-27 09:44:12.957+03	
e6460cdf-3fc6-1864-3e79-7ed8440e6c93	2021-05-27 09:44:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:44:43.951+03	2021-05-27 09:44:43.958+03	
a5c45ff6-6435-0d9d-60f7-4934f04816a9	2021-05-27 09:45:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:45:03.951+03	2021-05-27 09:45:03.959+03	
cd4333ca-2b9f-c3e7-cf6c-48ae23a9889e	2021-05-27 09:45:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:45:24.951+03	2021-05-27 09:45:24.959+03	
ccd4bfba-4fd2-40df-bf14-1b09b2e4ed88	2021-05-27 09:45:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:45:44.951+03	2021-05-27 09:45:44.958+03	
f9e9f772-9ba0-d7a2-716f-b82395ef8e7d	2021-05-27 09:46:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:46:04.952+03	2021-05-27 09:46:04.96+03	
2cbe473c-4c7f-127d-ee5f-c6fcf3686116	2021-05-27 09:46:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:46:25.951+03	2021-05-27 09:46:25.958+03	
b8a12a06-bc5d-2acb-fa88-fc9cbd905114	2021-05-27 09:46:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:46:46.951+03	2021-05-27 09:46:46.96+03	
015e2f3f-0030-4ae5-ba48-cb98d6059982	2021-05-27 09:47:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:47:06.951+03	2021-05-27 09:47:06.958+03	
c8a915da-c432-5140-2e04-426c20e0a49b	2021-05-27 09:47:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:47:26.951+03	2021-05-27 09:47:26.957+03	
af1800f9-9fd9-64a9-cd8e-aa90832f66ce	2021-05-27 09:47:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:47:46.951+03	2021-05-27 09:47:46.957+03	
78c8682f-61f2-544d-ae24-edf80806736d	2021-05-27 09:48:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:48:06.951+03	2021-05-27 09:48:06.958+03	
33a96059-3c8d-a5ca-5105-0078a44a9cc7	2021-05-27 09:48:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:48:26.951+03	2021-05-27 09:48:26.958+03	
e3a9fcb9-534a-aeb6-d156-b6b7d7e6d835	2021-05-27 09:48:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:48:46.952+03	2021-05-27 09:48:46.959+03	
7ac2f6c4-2ab7-882f-8060-979454c4aa07	2021-05-27 09:49:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:49:08.951+03	2021-05-27 09:49:08.958+03	
fc0bbcc1-134b-3fec-e244-5745a01fa075	2021-05-27 09:49:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:49:28.951+03	2021-05-27 09:49:28.958+03	
21e12760-2c6e-42a5-f772-02bede131c2b	2021-05-27 09:49:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:49:48.951+03	2021-05-27 09:49:48.959+03	
9d9ecf9e-a54e-3956-a22f-cfded57da4e7	2021-05-27 09:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 09:50:00.951+03	2021-05-27 09:50:00.956+03	ERROR
de3447bc-c8c7-e455-dca3-946cf6b613a4	2021-05-27 09:50:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:50:18.951+03	2021-05-27 09:50:18.958+03	
71f07d6a-a97b-fe33-8869-06cbd8a013ce	2021-05-27 09:50:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:50:38.951+03	2021-05-27 09:50:38.958+03	
9735cd24-8ccd-b37f-8244-62c329eaca81	2021-05-27 09:50:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:50:58.951+03	2021-05-27 09:50:58.96+03	
36133f96-e4e9-0eb0-3a1a-93945678acf6	2021-05-27 09:51:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:51:18.951+03	2021-05-27 09:51:18.958+03	
aad4bdb8-7fec-23b1-a3a4-e8058f6e87de	2021-05-27 09:51:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:51:38.951+03	2021-05-27 09:51:38.959+03	
4abed6c8-b5a2-943b-a854-11f7dd279071	2021-05-27 09:51:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:51:58.951+03	2021-05-27 09:51:58.96+03	
f59b0d49-c4cb-103c-6648-b2422ed8225e	2021-05-27 09:52:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:52:18.951+03	2021-05-27 09:52:18.957+03	
5560eef7-8fa0-8fc1-c108-878af8111e90	2021-05-27 09:52:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:52:38.951+03	2021-05-27 09:52:38.959+03	
88e3d34d-dd22-b716-d9d7-83c0947bbe3e	2021-05-27 09:52:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:52:58.952+03	2021-05-27 09:52:58.963+03	
1c9fca34-5ad2-998d-d845-f193d20f9de4	2021-05-27 09:53:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:53:18.952+03	2021-05-27 09:53:18.961+03	
e9e87766-9f5d-a22b-2ad0-6ede1ef64282	2021-05-27 09:53:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:53:39.951+03	2021-05-27 09:53:39.961+03	
31f5d45f-63fc-3ebc-9c1d-a20c9aaaf5af	2021-05-27 09:53:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:53:49.951+03	2021-05-27 09:53:49.961+03	
879a17da-faf2-ba3a-2ed2-8dc7585487d3	2021-05-27 09:54:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:54:09.951+03	2021-05-27 09:54:09.959+03	
c0c1a722-38c6-5e8c-5af4-eabee60666f6	2021-05-27 09:54:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:54:29.951+03	2021-05-27 09:54:29.959+03	
2664c005-e2cf-32aa-8577-b43e4fe34038	2021-05-27 09:54:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:54:49.951+03	2021-05-27 09:54:49.959+03	
33f4eb59-7931-426d-c8b7-ea9c51c4e1d0	2021-05-27 09:55:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:55:09.951+03	2021-05-27 09:55:09.958+03	
e7ab9ba0-b8e4-fc57-b17c-713ccda1e9d7	2021-05-27 09:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:55:29.951+03	2021-05-27 09:55:29.961+03	
2c8f557b-84df-e038-6363-8384e667fb29	2021-05-27 09:55:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:55:49.951+03	2021-05-27 09:55:49.957+03	
1f7b533a-6165-8c47-1e8f-5e14f81937eb	2021-05-27 09:56:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:56:09.951+03	2021-05-27 09:56:09.959+03	
6472717e-209e-3d42-8c0c-1631b6dcf36d	2021-05-27 09:56:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:56:29.951+03	2021-05-27 09:56:29.959+03	
0976f6cb-7ed5-a7d6-0ca0-7791fda35608	2021-05-27 09:56:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:56:49.951+03	2021-05-27 09:56:49.96+03	
32ff29fe-5ef0-a6ad-5d24-e868404fc074	2021-05-27 09:57:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:57:09.951+03	2021-05-27 09:57:09.959+03	
10d87b19-c6e2-79a4-c9c7-947cc9245b3a	2021-05-27 09:57:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:57:29.951+03	2021-05-27 09:57:29.958+03	
d067814a-b822-0e1a-9477-93fd43fdc3a7	2021-05-27 09:57:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:57:49.951+03	2021-05-27 09:57:49.958+03	
2e8596f5-b9af-acef-af4d-3f5f6872c6d0	2021-05-27 09:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:58:09.951+03	2021-05-27 09:58:09.958+03	
5ef8e504-0a06-6032-f091-afcaf69f03e6	2021-05-27 09:58:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:58:29.951+03	2021-05-27 09:58:29.958+03	
22e36617-12f3-704c-618d-f3d656b2437c	2021-05-27 09:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:58:49.951+03	2021-05-27 09:58:49.959+03	
cba9b0f6-3dee-92f5-d77a-ca6dcf38e466	2021-05-27 09:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:59:09.951+03	2021-05-27 09:59:09.96+03	
a8e7e00b-ca9c-1d4d-0de8-222dfef46eaa	2021-05-27 09:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:59:29.951+03	2021-05-27 09:59:29.958+03	
52b547ab-e640-552e-ce4b-32ae68572702	2021-05-27 09:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:59:49.951+03	2021-05-27 09:59:49.96+03	
6ba422db-5ee0-db9f-3a1b-7ba64faafa43	2021-05-27 10:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 10:00:00.951+03	2021-05-27 10:00:00.956+03	ERROR
ed40e8f9-1c90-5c56-791c-c97efe07f83a	2021-05-27 10:00:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:00:19.951+03	2021-05-27 10:00:19.958+03	
6f4089af-cf7e-6a7d-d0d1-a9dcbc3aa492	2021-05-27 10:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:00:39.951+03	2021-05-27 10:00:39.958+03	
bdf844c0-0cec-eaf7-3347-33664e13c78f	2021-05-27 10:00:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:00:59.951+03	2021-05-27 10:00:59.958+03	
23d6af16-03f6-c871-05e6-3940d1592796	2021-05-27 10:01:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:01:19.951+03	2021-05-27 10:01:19.959+03	
95bb6771-9f8e-8cef-1c51-ad34d8440c49	2021-05-27 10:01:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:01:39.951+03	2021-05-27 10:01:39.957+03	
9909999b-0b69-eb67-716a-05b2ce698900	2021-05-27 10:01:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:01:59.951+03	2021-05-27 10:01:59.959+03	
a14f9ec9-6aad-dd5b-7b7b-5421e804f25e	2021-05-27 10:02:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:02:19.952+03	2021-05-27 10:02:19.959+03	
2f46d6a0-43f3-ce90-a0a2-0fdf2a01ffe7	2021-05-27 10:02:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:02:40.951+03	2021-05-27 10:02:41.195+03	
f0952de3-4e17-c664-0841-38b13d9c96a7	2021-05-27 10:03:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:03:00.951+03	2021-05-27 10:03:00.957+03	
55186a95-c76d-0b6a-326d-e3d4a2c06531	2021-05-27 10:03:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:03:20.951+03	2021-05-27 10:03:20.959+03	
77ba0d02-6795-5842-04e3-8b4c9f7499c7	2021-05-27 10:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:03:40.951+03	2021-05-27 10:03:40.96+03	
cb271a40-d430-a13b-8529-38164f1ae12f	2021-05-27 10:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:04:00.951+03	2021-05-27 10:04:00.959+03	
ec0709ba-ac9e-1d3a-0d11-0f52685df847	2021-05-27 10:04:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:04:20.951+03	2021-05-27 10:04:20.959+03	
a41c3b29-29ce-a6dd-8d66-d371a1975015	2021-05-27 10:04:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:04:40.951+03	2021-05-27 10:04:40.958+03	
f5b9990d-3ff8-c9ab-dc6e-5e39466d19e6	2021-05-27 10:05:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:05:00.951+03	2021-05-27 10:05:00.957+03	
886b10f8-3c4c-b1c4-20b9-46fa28b93e04	2021-05-27 10:05:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:05:20.951+03	2021-05-27 10:05:20.958+03	
81bef170-dc58-ae7c-6e1b-2edeee8bce6e	2021-05-27 10:05:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:05:40.951+03	2021-05-27 10:05:40.958+03	
e3086ada-bdac-e73f-5905-35b33b3ac898	2021-05-27 10:06:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:06:00.951+03	2021-05-27 10:06:00.957+03	
3a08cb21-013d-2712-b51f-e4cb0db341a3	2021-05-27 10:06:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:06:20.951+03	2021-05-27 10:06:20.959+03	
e02430ec-f7d2-455a-5581-735d4e87feaf	2021-05-27 10:06:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:06:40.951+03	2021-05-27 10:06:40.964+03	
9a15c206-ec16-cfc8-0f59-02e32462a579	2021-05-27 10:07:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:07:00.951+03	2021-05-27 10:07:00.959+03	
a937a30d-2de2-ef75-d1e0-32a5924ccd00	2021-05-27 10:07:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:07:20.951+03	2021-05-27 10:07:20.959+03	
2ccd7083-3602-1506-c763-416191f3111a	2021-05-27 10:07:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:07:40.951+03	2021-05-27 10:07:40.958+03	
bbf129e7-0bbd-0c72-52f8-04db54d62b24	2021-05-27 10:08:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:08:00.951+03	2021-05-27 10:08:00.958+03	
403e1537-5a3e-66be-0aea-8cb634d2c76c	2021-05-27 10:08:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:08:20.951+03	2021-05-27 10:08:20.958+03	
3a0f50c1-65cf-edef-e9a4-657b22aa550e	2021-05-27 10:08:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:08:40.951+03	2021-05-27 10:08:40.958+03	
d99bd01c-82fa-f46d-2859-51b742ab7e50	2021-05-27 10:09:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:09:00.951+03	2021-05-27 10:09:00.958+03	
4fc119d7-fcfb-43eb-4336-16bd6145ae3e	2021-05-27 10:09:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:09:20.951+03	2021-05-27 10:09:20.959+03	
9a19525b-4866-98ec-b6b6-b01e1adad235	2021-05-27 10:09:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:09:40.951+03	2021-05-27 10:09:40.958+03	
4faa5b30-dfbf-1b04-6ad2-a650f170ac4d	2021-05-27 10:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 10:10:00.951+03	2021-05-27 10:10:00.958+03	ERROR
baaa17aa-d730-5294-01f6-8430322fa201	2021-05-27 10:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:10:20.951+03	2021-05-27 10:10:20.959+03	
9469339d-74df-9b78-edd7-d3418ed54d7a	2021-05-27 10:10:40.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:10:40.953+03	2021-05-27 10:10:40.96+03	
e6807c95-8376-11bb-a9ec-2430990c49a8	2021-05-27 10:11:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:11:01.951+03	2021-05-27 10:11:01.959+03	
2ad6b80b-d20f-db93-72df-e9c3067d4d64	2021-05-27 10:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:11:21.951+03	2021-05-27 10:11:21.958+03	
6e93c479-d107-7932-3212-417da8799f13	2021-05-27 10:11:52.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:11:52.953+03	2021-05-27 10:11:52.963+03	
7f677695-f3cb-071a-5c1a-259f87bfc713	2021-05-27 10:12:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:12:13.951+03	2021-05-27 10:12:13.96+03	
7172d9c1-46d4-736f-16d9-826feeecac53	2021-05-27 10:12:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:12:33.951+03	2021-05-27 10:12:33.959+03	
49f2c9ad-e8cc-e5ae-5559-6e29bbbd44de	2021-05-27 10:12:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:12:53.951+03	2021-05-27 10:12:53.958+03	
eb020fc1-0b91-8000-6063-7356f1aa194d	2021-05-27 10:13:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:13:13.951+03	2021-05-27 10:13:13.959+03	
b1dfe601-3ccb-d20b-bd05-af0d100fcebe	2021-05-27 10:13:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:13:33.951+03	2021-05-27 10:13:33.959+03	
2da213e0-cf3d-2f78-4463-cfff583540f3	2021-05-27 10:13:53.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:13:53.953+03	2021-05-27 10:13:53.961+03	
27b9a787-5b65-4b56-5a21-c3e4cfba1f96	2021-05-27 10:14:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:14:04.951+03	2021-05-27 10:14:04.958+03	
8df709b4-6b92-9ae8-5e14-8f9e9612d4cc	2021-05-27 10:14:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:14:24.951+03	2021-05-27 10:14:24.962+03	
b5b66ee9-841b-ab6d-e231-baf548c7ce27	2021-05-27 10:14:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:14:44.951+03	2021-05-27 10:14:44.958+03	
b0b0dc29-6e31-0647-2de5-641b31a02e8d	2021-05-27 10:15:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:15:04.951+03	2021-05-27 10:15:04.96+03	
3d5b4c9f-6734-77a5-4c56-8bad3dcff0a6	2021-05-27 10:15:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:15:24.951+03	2021-05-27 10:15:24.959+03	
a173fb8b-e13e-4675-2080-b825fd83a89f	2021-05-27 10:15:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:15:44.951+03	2021-05-27 10:15:44.959+03	
529e74db-1ce4-d86f-e880-56820dd24e62	2021-05-27 09:55:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:55:19.951+03	2021-05-27 09:55:19.959+03	
8b7d9430-07a7-e781-3b44-5acc0c8b1fb1	2021-05-27 09:55:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:55:39.951+03	2021-05-27 09:55:39.964+03	
8d545d41-68cb-3801-09a5-e776f3358941	2021-05-27 09:55:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:55:59.951+03	2021-05-27 09:55:59.958+03	
8b5defe4-70f3-0393-2ca2-02fd13ee123a	2021-05-27 09:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:56:19.951+03	2021-05-27 09:56:19.959+03	
e207ef77-fec0-72c9-1036-2c740a054225	2021-05-27 09:56:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:56:39.951+03	2021-05-27 09:56:39.961+03	
17ec71a4-d151-4513-fd57-5f5136470df0	2021-05-27 09:56:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:56:59.951+03	2021-05-27 09:56:59.963+03	
4b454a65-e3ff-01d5-53b1-b6344e1da7d3	2021-05-27 09:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:57:19.951+03	2021-05-27 09:57:19.959+03	
61cde758-ad9b-7f5a-c841-0429ac96eef9	2021-05-27 09:57:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:57:39.951+03	2021-05-27 09:57:39.957+03	
b5d7e0ba-04c2-5ebc-f41e-fb672d21a1e6	2021-05-27 09:57:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:57:59.951+03	2021-05-27 09:57:59.963+03	
054d0ea4-4ad5-a2f3-a8e4-c822efcc5bf5	2021-05-27 09:58:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:58:19.951+03	2021-05-27 09:58:19.957+03	
c1ec615b-3497-5dc6-5ff6-0b37b85e27b7	2021-05-27 09:58:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:58:39.951+03	2021-05-27 09:58:39.958+03	
0bff9eda-e695-0c17-bfba-205ca8fe044f	2021-05-27 09:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:58:59.951+03	2021-05-27 09:58:59.962+03	
32c53089-2649-fa97-bb3f-a308e3dfc2d1	2021-05-27 09:59:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:59:19.951+03	2021-05-27 09:59:19.959+03	
f0131375-b138-85a3-1b2b-547da1acabc5	2021-05-27 09:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:59:39.951+03	2021-05-27 09:59:39.958+03	
cb19e20a-1920-fb2c-1cf8-cc5632476ee1	2021-05-27 09:59:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 09:59:59.951+03	2021-05-27 09:59:59.957+03	
f19d471b-7661-22d3-17d4-147d615946cc	2021-05-27 10:00:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:00:09.951+03	2021-05-27 10:00:09.957+03	
c7befb42-c75c-04ab-46db-2ac256108fc8	2021-05-27 10:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:00:29.951+03	2021-05-27 10:00:29.96+03	
ddcd9bd8-db4d-bf13-18cb-c22a7cba7d60	2021-05-27 10:00:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:00:49.951+03	2021-05-27 10:00:49.964+03	
3a716db4-bc79-1152-3744-cc718adcd43f	2021-05-27 10:01:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:01:09.951+03	2021-05-27 10:01:09.958+03	
60fc75ea-8ae3-27c7-c11f-538e79c70f7d	2021-05-27 10:01:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:01:29.951+03	2021-05-27 10:01:29.958+03	
63c3fea9-172f-cad7-bbc6-abb11fad2fea	2021-05-27 10:01:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:01:49.951+03	2021-05-27 10:01:49.959+03	
c7e0875f-19a2-26ba-b7b7-d4eada9b6725	2021-05-27 10:02:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:02:09.951+03	2021-05-27 10:02:09.958+03	
14146066-a000-0c25-140a-b22ec5b18c61	2021-05-27 10:02:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:02:30.951+03	2021-05-27 10:02:30.958+03	
bac699c7-f41c-604c-2c4b-db288af83cee	2021-05-27 10:02:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:02:50.951+03	2021-05-27 10:02:50.957+03	
6f1b2b0b-9fab-7154-2c0e-7861fdff6e64	2021-05-27 10:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:03:10.951+03	2021-05-27 10:03:10.986+03	
43910ff7-a8fa-6090-ba9e-fc4b307e6fe2	2021-05-27 10:03:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:03:30.951+03	2021-05-27 10:03:30.958+03	
ebc33254-4c04-3a7c-6589-a4d3baadbc6f	2021-05-27 10:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:03:50.951+03	2021-05-27 10:03:50.96+03	
bae78db9-36ee-054c-63ca-b6fcd9ade2cb	2021-05-27 10:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:04:10.951+03	2021-05-27 10:04:10.958+03	
98183efd-2259-5f76-df0a-53e1fb1ddacd	2021-05-27 10:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:04:30.951+03	2021-05-27 10:04:30.959+03	
e83f8a47-de31-e560-7eec-b487803ec978	2021-05-27 10:04:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:04:50.951+03	2021-05-27 10:04:50.959+03	
bc5dc275-a9c0-c68e-14ce-61c81ae1b89a	2021-05-27 10:05:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:05:10.951+03	2021-05-27 10:05:10.958+03	
51f105ef-49c4-a0b5-3c2f-2b631777e87b	2021-05-27 10:05:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:05:30.951+03	2021-05-27 10:05:30.958+03	
aec41979-e9cd-eaed-3239-084fc056ea4d	2021-05-27 10:05:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:05:50.951+03	2021-05-27 10:05:50.958+03	
e297a8e8-2a24-8bb8-1f46-10746c00b19b	2021-05-27 10:06:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:06:10.951+03	2021-05-27 10:06:10.958+03	
66037aed-5823-ad2c-5264-4135885c9b04	2021-05-27 10:06:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:06:30.951+03	2021-05-27 10:06:30.958+03	
c8f00f0b-7497-f3d0-5a94-0dc8c7000bb5	2021-05-27 10:06:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:06:50.951+03	2021-05-27 10:06:50.959+03	
0a7326fa-983b-acfb-391b-17f500c8183c	2021-05-27 10:07:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:07:10.951+03	2021-05-27 10:07:10.959+03	
1d4b452a-0c0b-5040-f9f7-107fe3deb41e	2021-05-27 10:07:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:07:30.951+03	2021-05-27 10:07:30.958+03	
971592cb-8e9c-8151-3113-0739e9fef487	2021-05-27 10:07:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:07:50.951+03	2021-05-27 10:07:50.958+03	
6f4f7484-bccd-a45b-9b0f-89ab9e0a430a	2021-05-27 10:08:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:08:10.951+03	2021-05-27 10:08:10.958+03	
2c2ea336-e78b-1b3e-2ca3-cedc2adacbc9	2021-05-27 10:08:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:08:30.951+03	2021-05-27 10:08:30.958+03	
192c79c2-887b-7a1c-6fcb-690f3b55c57b	2021-05-27 10:08:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:08:50.951+03	2021-05-27 10:08:50.958+03	
c00d12a2-a5de-751a-c026-584141215b22	2021-05-27 10:09:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:09:10.951+03	2021-05-27 10:09:10.958+03	
eb2ec8be-357f-5653-1b95-98a96fcce8a2	2021-05-27 10:09:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:09:30.951+03	2021-05-27 10:09:30.962+03	
44e3adfa-64dc-0cc9-2469-257b7823c813	2021-05-27 10:09:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:09:50.951+03	2021-05-27 10:09:50.959+03	
94d5cee5-4ad7-6574-c8b1-16b8a4fb392e	2021-05-27 10:10:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:10:00.951+03	2021-05-27 10:10:00.967+03	
8fd412fd-f452-fc4b-8227-90c891015eff	2021-05-27 10:10:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:10:10.951+03	2021-05-27 10:10:10.958+03	
6368b1c8-1d7b-8a67-06a9-9392e5e906c6	2021-05-27 10:10:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:10:30.951+03	2021-05-27 10:10:30.958+03	
763950bb-2dd3-9f95-7254-be22a7efb328	2021-05-27 10:10:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:10:51.951+03	2021-05-27 10:10:51.957+03	
8dd6a195-1f01-b14d-13f3-2845e3271bc8	2021-05-27 10:11:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:11:11.951+03	2021-05-27 10:11:11.971+03	
4808612f-4c48-8674-3d9e-4a128f26e6cc	2021-05-27 10:11:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:11:31.951+03	2021-05-27 10:11:31.957+03	
59a9edc0-2a27-6b91-cb54-906b9327ce06	2021-05-27 10:11:41.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:11:41.953+03	2021-05-27 10:11:41.986+03	
f4de0ff0-fba0-8d3a-6542-bcbd62f08b2e	2021-05-27 10:12:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:12:03.951+03	2021-05-27 10:12:03.959+03	
b826f470-b1e8-2d74-5424-151ae9feeb56	2021-05-27 10:12:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:12:23.951+03	2021-05-27 10:12:23.959+03	
51946681-60d2-bd64-ca3e-43cfd6f8af0b	2021-05-27 10:12:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:12:43.951+03	2021-05-27 10:12:43.959+03	
c856c656-cf8f-c9d4-d457-dd1dfe6d4d97	2021-05-27 10:13:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:13:03.951+03	2021-05-27 10:13:03.961+03	
666ddb3a-9167-ff41-e3b3-39ab2e301eb8	2021-05-27 10:13:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:13:23.951+03	2021-05-27 10:13:23.959+03	
59fc2fb0-a7c1-3278-aa31-c67be67cee2b	2021-05-27 10:13:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:13:43.951+03	2021-05-27 10:13:43.959+03	
0638a8f2-7322-cddb-aa9a-75f51ef9fb37	2021-05-27 10:14:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:14:14.951+03	2021-05-27 10:14:14.961+03	
d1abcf91-7b7a-f567-7dca-41b4855c2113	2021-05-27 10:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:14:34.951+03	2021-05-27 10:14:34.96+03	
2e4c113a-bd00-c8e5-6488-e20b0d0d40f9	2021-05-27 10:14:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:14:54.951+03	2021-05-27 10:14:54.958+03	
76ced4d5-34fd-5d59-b134-96777700a20c	2021-05-27 10:15:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:15:14.951+03	2021-05-27 10:15:14.959+03	
34cd7efe-9351-f66c-5c68-1aadb227cc94	2021-05-27 10:15:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:15:34.951+03	2021-05-27 10:15:34.959+03	
836afb59-cbb8-8642-a62f-b781005e6dd6	2021-05-27 10:15:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:15:54.951+03	2021-05-27 10:15:54.96+03	
3654d896-63c9-47fd-7a8c-b7cf0f57246c	2021-05-27 10:16:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:16:14.951+03	2021-05-27 10:16:14.959+03	
a8381c0d-995c-631a-937a-0fe08a9b4c1d	2021-05-27 10:16:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:16:34.951+03	2021-05-27 10:16:34.959+03	
c3074620-4008-b6f3-daf7-01215ff70f68	2021-05-27 10:16:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:16:54.951+03	2021-05-27 10:16:54.957+03	
6892b91e-71fc-84b0-c206-02040d679f0a	2021-05-27 10:17:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:17:14.951+03	2021-05-27 10:17:14.959+03	
0f7b63a5-0be0-f58b-2dcc-e20ee1d695d8	2021-05-27 10:17:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:17:34.951+03	2021-05-27 10:17:34.958+03	
bc3b9e10-d625-0854-d211-e1ad3d55a320	2021-05-27 10:17:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:17:54.951+03	2021-05-27 10:17:54.958+03	
3dbf0011-29bb-588b-8641-363a2bd954de	2021-05-27 10:18:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:18:14.951+03	2021-05-27 10:18:14.959+03	
17cb5929-5f6b-4432-ed2c-384c4de2bd34	2021-05-27 10:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:18:34.951+03	2021-05-27 10:18:34.961+03	
98479842-8a2e-bf4e-9f95-f8f478375b4d	2021-05-27 10:18:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:18:54.951+03	2021-05-27 10:18:54.958+03	
0b91ad35-65f6-4ce0-f971-19a8c3c5af1b	2021-05-27 10:19:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:19:24.951+03	2021-05-27 10:19:24.959+03	
e109300e-64a2-0e7c-a792-5b9066e6e215	2021-05-27 10:19:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:19:44.951+03	2021-05-27 10:19:44.958+03	
2a41c9a9-56e2-d102-2778-61103abcd6d6	2021-05-27 10:20:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 10:20:00.951+03	2021-05-27 10:20:00.957+03	ERROR
d316b923-79a7-cb56-22ff-e94ebe837c32	2021-05-27 10:20:14.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:20:14.954+03	2021-05-27 10:20:14.964+03	
cbdc8dc6-2dc2-8d04-8762-71efcb39e0db	2021-05-27 10:20:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:20:35.951+03	2021-05-27 10:20:35.957+03	
5c9a97b8-61e8-40d6-541b-268a3e577d14	2021-05-27 10:20:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:20:55.951+03	2021-05-27 10:20:55.959+03	
da10d470-a827-560f-bcae-2f0b7714efe8	2021-05-27 10:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:21:15.951+03	2021-05-27 10:21:15.958+03	
6e97690a-69af-937a-7862-3c157920a55a	2021-05-27 10:21:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:21:35.951+03	2021-05-27 10:21:35.958+03	
c4fab363-e183-3155-3dec-92dce282b204	2021-05-27 10:21:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:21:55.951+03	2021-05-27 10:21:55.959+03	
9457cb99-a228-ccaa-b212-61db00a76d63	2021-05-27 10:22:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:22:25.951+03	2021-05-27 10:22:25.959+03	
17daf4b7-ebcc-c8b5-2a65-4b084bc6c968	2021-05-27 10:22:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:22:45.951+03	2021-05-27 10:22:45.958+03	
e7a99a09-d702-6a72-d49f-54ba356b14d7	2021-05-27 10:23:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:23:05.951+03	2021-05-27 10:23:05.958+03	
a8195fb4-32f1-e5f9-ce8e-20e25569b5ea	2021-05-27 10:23:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:23:25.951+03	2021-05-27 10:23:25.958+03	
b61fbc70-c09e-4d55-3c39-b8094db08daa	2021-05-27 10:23:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:23:45.951+03	2021-05-27 10:23:45.959+03	
7244d382-cec1-19eb-9d14-ead683cd5e88	2021-05-27 10:24:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:24:05.951+03	2021-05-27 10:24:05.958+03	
23d2fc8b-7921-e6cb-f8a0-c43fe1b5e97f	2021-05-27 10:24:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:24:25.951+03	2021-05-27 10:24:25.957+03	
9a205450-9464-2d19-ca9a-c6eb3f57278b	2021-05-27 10:24:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:24:45.951+03	2021-05-27 10:24:45.959+03	
7f466062-f33c-d18d-def5-1cbe5288f0f1	2021-05-27 10:25:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:25:06.951+03	2021-05-27 10:25:06.959+03	
b6a8a84d-4c09-94a5-b9ed-790d22f89c4a	2021-05-27 10:25:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:25:26.951+03	2021-05-27 10:25:26.958+03	
1b5bfef3-7cdd-2431-bae0-99a528ceca21	2021-05-27 10:25:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:25:47.952+03	2021-05-27 10:25:47.969+03	
8f13298b-fdce-824f-3736-c090d50c3865	2021-05-27 10:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:26:08.951+03	2021-05-27 10:26:08.959+03	
48460858-04cb-7550-39cb-ed50b93e03ac	2021-05-27 10:26:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:26:28.951+03	2021-05-27 10:26:28.959+03	
db13e572-8be4-5420-0f46-352e10cdb408	2021-05-27 10:26:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:26:48.951+03	2021-05-27 10:26:48.959+03	
d9f63a7f-2b98-238d-c294-7801eb52a580	2021-05-27 10:26:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:26:58.951+03	2021-05-27 10:26:58.958+03	
dcdfef36-3290-6a29-0c50-b34cdad22f03	2021-05-27 10:27:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:27:18.951+03	2021-05-27 10:27:18.958+03	
10b590ad-e2de-8b34-8c2c-0ca276f7f9b5	2021-05-27 10:27:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:27:38.951+03	2021-05-27 10:27:38.959+03	
d1c33c77-442d-de92-4411-ad97de686e92	2021-05-27 10:27:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:27:58.952+03	2021-05-27 10:27:58.959+03	
09cfc6a9-15f3-b3c8-47dd-a465d295c71f	2021-05-27 10:28:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:28:19.951+03	2021-05-27 10:28:19.959+03	
90912f46-e6f3-0f34-dc35-469b6ed714a0	2021-05-27 10:28:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:28:39.951+03	2021-05-27 10:28:39.963+03	
f732a606-578e-b28c-1157-60089124e443	2021-05-27 10:28:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:28:59.951+03	2021-05-27 10:28:59.959+03	
29bc4502-3437-a665-9076-ec232ebd8e79	2021-05-27 10:29:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:29:19.951+03	2021-05-27 10:29:19.96+03	
5752a354-5b58-b1f1-4dbf-7f264b2b5e08	2021-05-27 10:29:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:29:39.951+03	2021-05-27 10:29:39.958+03	
9c898268-e115-925d-6ea0-89db636eda0d	2021-05-27 10:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:29:59.951+03	2021-05-27 10:29:59.959+03	
d3eb8858-5417-ba9b-b54c-9bab0a9b0d32	2021-05-27 10:30:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:30:09.951+03	2021-05-27 10:30:09.96+03	
daa853dc-5a10-ab57-1e43-0ca938f3d750	2021-05-27 10:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:30:29.951+03	2021-05-27 10:30:29.959+03	
447886a1-174c-aa36-9fc4-03d87745f5c3	2021-05-27 10:30:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:30:49.951+03	2021-05-27 10:30:49.958+03	
6361f9f8-b5ba-a96d-18da-e9e2c4341932	2021-05-27 10:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:31:09.951+03	2021-05-27 10:31:09.961+03	
603cf250-f702-59bb-53f2-e9a9b6e3f971	2021-05-27 10:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:31:29.951+03	2021-05-27 10:31:29.959+03	
a3fabca5-c283-9cc0-fcbb-53ad192a2bf2	2021-05-27 10:31:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:31:50.951+03	2021-05-27 10:31:50.96+03	
3cccda39-11d3-0936-adfe-083186becfad	2021-05-27 10:32:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:32:10.951+03	2021-05-27 10:32:10.958+03	
53d62b34-7c1b-ef5a-7484-7e8a31847c63	2021-05-27 10:32:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:32:30.951+03	2021-05-27 10:32:30.961+03	
bb0a7232-7a43-3c0b-445c-90254bec8654	2021-05-27 10:32:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:32:50.951+03	2021-05-27 10:32:50.957+03	
90c23a1e-5604-c37c-94da-36132230d3ca	2021-05-27 10:33:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:33:10.951+03	2021-05-27 10:33:10.959+03	
0fb4c13e-e373-92a3-497f-b4210bdbecf3	2021-05-27 10:33:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:33:30.951+03	2021-05-27 10:33:30.96+03	
a2fd88e3-dd88-ab3e-be9f-5331a040ceda	2021-05-27 10:33:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:33:50.951+03	2021-05-27 10:33:50.957+03	
bc853c53-0f21-eb3a-640f-3d9e105402d8	2021-05-27 10:34:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:34:10.951+03	2021-05-27 10:34:10.959+03	
7a3fa638-d7bc-338a-96ca-e77b383da4ce	2021-05-27 10:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:34:30.951+03	2021-05-27 10:34:30.96+03	
2164cd99-bbb4-8108-5c05-53384614f951	2021-05-27 10:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:34:50.951+03	2021-05-27 10:34:50.96+03	
ab3ea6bf-16e8-097e-dcde-ea0ebd0e1293	2021-05-27 10:35:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:35:10.951+03	2021-05-27 10:35:10.96+03	
61a14c4c-b8e1-60bd-5850-2d53807bf18f	2021-05-27 10:35:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:35:30.951+03	2021-05-27 10:35:30.959+03	
cedb58ea-3a0b-70f4-f6ac-88dccad194d2	2021-05-27 10:35:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:35:50.951+03	2021-05-27 10:35:50.959+03	
b937f597-4acb-69fd-ffec-8bcfeeac30e4	2021-05-27 10:36:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:36:10.951+03	2021-05-27 10:36:10.959+03	
c29a8367-fb05-4f2a-c651-9ef337f1c34f	2021-05-27 10:36:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:36:30.951+03	2021-05-27 10:36:30.958+03	
e64ae6d4-f02a-2366-b42c-f824c0b1d9a9	2021-05-27 10:16:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:16:04.951+03	2021-05-27 10:16:04.958+03	
0ae05f0d-44cf-0b95-ad95-e04a57d896b1	2021-05-27 10:16:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:16:24.951+03	2021-05-27 10:16:24.958+03	
df0bed03-6796-c2cc-2471-23509255d7f6	2021-05-27 10:16:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:16:44.951+03	2021-05-27 10:16:44.958+03	
56fd941a-7ecf-e574-4e4f-a6a0eb402ab7	2021-05-27 10:17:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:17:04.951+03	2021-05-27 10:17:04.958+03	
83f9a7eb-6b30-093c-f5a2-707a03f048bb	2021-05-27 10:17:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:17:24.951+03	2021-05-27 10:17:24.958+03	
2622570c-7c59-57e0-9f72-956167420d64	2021-05-27 10:17:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:17:44.951+03	2021-05-27 10:17:44.957+03	
59861eb9-4acb-8120-3c75-dac545d8dc18	2021-05-27 10:18:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:18:04.951+03	2021-05-27 10:18:04.957+03	
1ab22fbf-b106-2bae-284f-6ed5baaa3a34	2021-05-27 10:18:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:18:24.951+03	2021-05-27 10:18:24.958+03	
007d35b7-790a-a242-bb9c-4109054432c6	2021-05-27 10:18:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:18:44.951+03	2021-05-27 10:18:44.959+03	
719416af-31d8-2db7-b969-b802c57a57fb	2021-05-27 10:19:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:19:04.951+03	2021-05-27 10:19:04.958+03	
bf4ba0ba-4072-3bd6-3fbd-fddd824031b1	2021-05-27 10:19:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:19:14.951+03	2021-05-27 10:19:14.959+03	
8ef58dd6-fcd2-eab6-74d2-adb8dcdf07f0	2021-05-27 10:19:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:19:34.951+03	2021-05-27 10:19:34.959+03	
acd31a58-c6bf-f46a-cf4e-013db5bc687f	2021-05-27 10:19:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:19:54.951+03	2021-05-27 10:19:54.957+03	
af4f9687-a17b-ce13-082b-0b20f7d54ba9	2021-05-27 10:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:20:04.951+03	2021-05-27 10:20:04.958+03	
62441d73-6e56-b1db-732c-df3604c10c67	2021-05-27 10:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:20:25.951+03	2021-05-27 10:20:25.959+03	
26b4636e-cec3-57ad-7aa9-12b46dfad3e2	2021-05-27 10:20:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:20:45.951+03	2021-05-27 10:20:45.958+03	
fb3d4e84-08bd-472c-97fa-81bf944ad39e	2021-05-27 10:21:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:21:05.951+03	2021-05-27 10:21:05.959+03	
6dd0bb77-a4f7-5d6b-f4c8-187e9b3c3c52	2021-05-27 10:21:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:21:25.951+03	2021-05-27 10:21:25.958+03	
ae4f6f3d-a9d0-1166-9adb-e89d57ee7748	2021-05-27 10:21:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:21:45.951+03	2021-05-27 10:21:45.959+03	
52ee4313-07f3-cfbd-7ff1-fa9c42849c62	2021-05-27 10:22:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:22:05.951+03	2021-05-27 10:22:05.958+03	
6afecf40-4d14-01ab-55db-e721183b56d5	2021-05-27 10:22:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:22:15.951+03	2021-05-27 10:22:15.958+03	
eecf317f-4429-60a5-0ff3-c5b9ad6253f3	2021-05-27 10:22:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:22:35.951+03	2021-05-27 10:22:35.959+03	
902375f8-40cd-ae66-d497-0ccc3c46b8d5	2021-05-27 10:22:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:22:55.951+03	2021-05-27 10:22:55.957+03	
23daf451-d897-0bd4-ddeb-912d694b8c88	2021-05-27 10:23:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:23:15.951+03	2021-05-27 10:23:15.958+03	
354931e1-3ff4-418c-1c4e-05ead1bdc7cf	2021-05-27 10:23:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:23:35.951+03	2021-05-27 10:23:35.959+03	
618d2be5-b25b-1973-4f7d-67f6efedc4d5	2021-05-27 10:23:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:23:55.951+03	2021-05-27 10:23:55.958+03	
aae68ae5-29b0-b468-1b00-954b0e3125cd	2021-05-27 10:24:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:24:15.951+03	2021-05-27 10:24:15.96+03	
2887b995-fb14-8e7c-93ce-5fd4b4750fc9	2021-05-27 10:24:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:24:35.951+03	2021-05-27 10:24:35.958+03	
c2b6989e-3c7a-9e86-e976-3b7925c13e49	2021-05-27 10:24:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:24:55.952+03	2021-05-27 10:24:55.958+03	
39a63c50-8c66-6b36-afed-08f782509d6b	2021-05-27 10:25:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:25:16.951+03	2021-05-27 10:25:16.958+03	
fa7de2ce-b40d-a3c4-d913-08bbe07dc0a5	2021-05-27 10:25:36.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:25:36.953+03	2021-05-27 10:25:36.959+03	
efe00146-f34d-ff6e-04e7-9eff48af8659	2021-05-27 10:25:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:25:58.951+03	2021-05-27 10:25:58.958+03	
1763c581-90a3-9355-a2a6-a674c20b7d5a	2021-05-27 10:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:26:18.951+03	2021-05-27 10:26:18.96+03	
4cad7492-e2b1-ce5f-29ab-dd4adaad6db7	2021-05-27 10:26:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:26:38.951+03	2021-05-27 10:26:38.958+03	
f7318336-16b0-b7f3-21d4-39fde4261e14	2021-05-27 10:27:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:27:08.951+03	2021-05-27 10:27:08.959+03	
0f2bce3b-853f-b3a9-da5a-249d852ea18d	2021-05-27 10:27:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:27:28.951+03	2021-05-27 10:27:28.958+03	
1815bec1-d2ca-3968-4500-2acb7ccf9ec8	2021-05-27 10:27:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:27:48.951+03	2021-05-27 10:27:48.958+03	
c4114b89-ae53-faa0-2bc8-b321505233be	2021-05-27 10:28:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:28:09.951+03	2021-05-27 10:28:09.962+03	
bacd0d76-1e29-f99e-7cd2-f04c961e0bcb	2021-05-27 10:28:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:28:29.951+03	2021-05-27 10:28:29.959+03	
b964cf93-1c74-d5e8-fa34-c05900173af7	2021-05-27 10:28:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:28:49.951+03	2021-05-27 10:28:49.959+03	
3fd7e599-7674-f866-264d-36efc4ae9c36	2021-05-27 10:29:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:29:09.951+03	2021-05-27 10:29:09.959+03	
8ed3047c-fec9-42ed-d749-b87ec49f0741	2021-05-27 10:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:29:29.951+03	2021-05-27 10:29:29.958+03	
9cc24b8a-560f-ab9a-d5ec-f6fde4ea48fb	2021-05-27 10:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:29:49.951+03	2021-05-27 10:29:49.958+03	
c6723663-021a-3341-a477-b8701c45ec41	2021-05-27 10:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 10:30:00.951+03	2021-05-27 10:30:00.957+03	ERROR
84f07a96-a947-905d-7c35-5c68c9de20b1	2021-05-27 10:30:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:30:19.951+03	2021-05-27 10:30:19.958+03	
37459549-ad31-d025-07e2-fbbea4f25cbf	2021-05-27 10:30:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:30:39.951+03	2021-05-27 10:30:39.958+03	
09e63e7d-d2d8-897b-697e-60d4a72915c4	2021-05-27 10:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:30:59.951+03	2021-05-27 10:30:59.959+03	
773a433d-f85a-48e1-23d1-e599cbbed67b	2021-05-27 10:31:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:31:19.951+03	2021-05-27 10:31:19.963+03	
1eeff722-5639-471c-8d27-47eae6588d69	2021-05-27 10:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:31:39.952+03	2021-05-27 10:31:39.959+03	
c089c582-e721-560f-28ff-36f8b32d21c7	2021-05-27 10:32:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:32:00.951+03	2021-05-27 10:32:00.958+03	
84f7e7af-b44a-3745-4534-6fbfffced136	2021-05-27 10:32:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:32:20.951+03	2021-05-27 10:32:20.959+03	
6fb21943-29f8-38a1-e7df-baeadca45e8b	2021-05-27 10:32:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:32:40.951+03	2021-05-27 10:32:40.959+03	
560dad24-3942-eba6-002c-c0a0fe9b4d31	2021-05-27 10:33:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:33:00.951+03	2021-05-27 10:33:00.96+03	
055174b9-6cdb-8704-2d67-e77465e85c71	2021-05-27 10:33:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:33:20.951+03	2021-05-27 10:33:20.959+03	
76592178-8f2d-c7e4-e8a2-5a6d76d3b350	2021-05-27 10:33:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:33:40.951+03	2021-05-27 10:33:40.959+03	
e326f8df-dc52-ba2f-e35b-26dc7da371a2	2021-05-27 10:34:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:34:00.951+03	2021-05-27 10:34:00.961+03	
3a501efb-2193-b515-eb49-ec7a39e14337	2021-05-27 10:34:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:34:20.951+03	2021-05-27 10:34:20.964+03	
539e07b3-0d2f-f4cd-3bbe-768d91db06e7	2021-05-27 10:34:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:34:40.951+03	2021-05-27 10:34:40.963+03	
af79737e-e2b7-5398-986f-a3f5c5f022b0	2021-05-27 10:35:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:35:00.951+03	2021-05-27 10:35:00.958+03	
205d5356-1f90-2b64-3a19-f7aa96bb86af	2021-05-27 10:35:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:35:20.951+03	2021-05-27 10:35:20.96+03	
707c39c6-c936-b2dd-629e-a91cecdaface	2021-05-27 10:35:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:35:40.951+03	2021-05-27 10:35:40.959+03	
98469c0f-d249-0549-5936-ac0235ab3bc8	2021-05-27 10:36:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:36:00.951+03	2021-05-27 10:36:00.958+03	
4066684e-b376-7d19-bcc5-28dacf6c234f	2021-05-27 10:36:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:36:20.951+03	2021-05-27 10:36:20.959+03	
b1c67186-f1fa-b1bc-37c6-e6246e0d676e	2021-05-27 10:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:36:40.951+03	2021-05-27 10:36:40.958+03	
597d3748-c893-48f2-e7f5-90889ab41abc	2021-05-27 10:37:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:37:00.951+03	2021-05-27 10:37:00.96+03	
b9189863-259a-98e5-0b12-291646f18a7f	2021-05-27 10:37:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:37:20.951+03	2021-05-27 10:37:20.96+03	
67b67821-34b3-081e-3f31-2fe771db6037	2021-05-27 10:37:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:37:30.951+03	2021-05-27 10:37:30.958+03	
70c61d6a-45d0-4e5a-7463-2e1cd62249f7	2021-05-27 10:37:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:37:50.951+03	2021-05-27 10:37:50.958+03	
4d3e39cf-5a41-77db-0507-b5cc925302d6	2021-05-27 10:38:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:38:10.951+03	2021-05-27 10:38:10.96+03	
4b6eaad6-4af7-7953-08bf-bb64c8b3f2a4	2021-05-27 10:38:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:38:30.951+03	2021-05-27 10:38:30.958+03	
a0b8b4a6-b5c1-2075-1336-c2f9af9b7681	2021-05-27 10:38:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:38:50.951+03	2021-05-27 10:38:50.96+03	
11e13ef3-c3e5-41ff-80da-d360c1b94400	2021-05-27 10:39:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:39:10.951+03	2021-05-27 10:39:10.961+03	
a3e5cfe6-69fb-b217-b3c8-83901126a103	2021-05-27 10:39:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:39:30.951+03	2021-05-27 10:39:30.958+03	
70c7df9c-10d0-32af-e909-0391c9ef2a66	2021-05-27 10:39:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:39:50.951+03	2021-05-27 10:39:50.958+03	
3bef685a-83d7-aa20-b858-84c329f31cde	2021-05-27 10:40:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:40:11.951+03	2021-05-27 10:40:11.958+03	
fd8907b6-9aa8-0e4c-fefc-e1cbd02d5b6e	2021-05-27 10:40:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:40:31.951+03	2021-05-27 10:40:31.958+03	
3021bda3-1292-98f0-621a-295fd9121745	2021-05-27 10:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:40:51.951+03	2021-05-27 10:40:51.959+03	
98be64ed-18ed-2747-947f-f126c8120802	2021-05-27 10:41:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:41:11.951+03	2021-05-27 10:41:11.958+03	
ed11ecc7-1838-6d11-0ee4-2f3880cb71c1	2021-05-27 10:41:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:41:31.951+03	2021-05-27 10:41:31.961+03	
8e4944a6-a4da-ebcd-719b-6db408c59b4c	2021-05-27 10:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:41:51.951+03	2021-05-27 10:41:51.959+03	
a0047d20-eac3-233a-f508-51ae70fe398e	2021-05-27 10:42:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:42:11.951+03	2021-05-27 10:42:11.958+03	
623f3eeb-39d1-21e5-8183-88d802585908	2021-05-27 10:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:42:31.951+03	2021-05-27 10:42:31.958+03	
9f2cd6e3-5eef-0a8e-083d-23ed5e9123b2	2021-05-27 10:42:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:42:51.951+03	2021-05-27 10:42:51.957+03	
bcb6c2b9-0728-dc0d-44ec-927ef0504820	2021-05-27 10:43:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:43:11.951+03	2021-05-27 10:43:11.96+03	
4e8a7a82-c863-3441-c169-f31200a5c978	2021-05-27 10:43:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:43:31.951+03	2021-05-27 10:43:31.958+03	
79b84904-4460-64c5-96c4-3b7225b9d040	2021-05-27 10:43:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:43:51.951+03	2021-05-27 10:43:51.959+03	
3aad8107-6c55-2a70-6b61-ec94871f3446	2021-05-27 10:44:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:44:11.951+03	2021-05-27 10:44:11.958+03	
5120fcfc-b2fe-4a9d-ffa5-165a934a0f0f	2021-05-27 10:44:21.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:44:21.951+03	2021-05-27 10:44:21.97+03	
61ef13ba-7d2f-e88a-c50f-d97335f4acca	2021-05-27 10:44:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:44:41.951+03	2021-05-27 10:44:41.96+03	
820952ad-8c0c-2a28-be71-db91a2cc31c1	2021-05-27 10:45:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:45:01.951+03	2021-05-27 10:45:01.957+03	
5f84c58a-6d78-4069-cc41-a9423a9230e8	2021-05-27 10:45:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:45:21.951+03	2021-05-27 10:45:21.958+03	
580d2de5-f0b7-fc31-a701-363e0a2408af	2021-05-27 10:45:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:45:41.951+03	2021-05-27 10:45:41.96+03	
f0317fa0-59a9-927b-1e96-fbdd91f0d1ad	2021-05-27 10:46:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:46:02.951+03	2021-05-27 10:46:02.959+03	
c275921b-9401-5c89-06ee-5c2d4dec0f3a	2021-05-27 10:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:46:23.951+03	2021-05-27 10:46:23.96+03	
dc9209df-25ee-fbda-5401-8fe2127c9983	2021-05-27 10:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:46:43.951+03	2021-05-27 10:46:43.959+03	
f15cc287-e794-56f3-4086-b0f32dbf0d2a	2021-05-27 10:47:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:47:03.951+03	2021-05-27 10:47:03.958+03	
6daefa1b-fa09-8ffc-8829-d739a675aa0a	2021-05-27 10:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:47:23.951+03	2021-05-27 10:47:23.961+03	
f3bf1ed3-e77d-142f-278a-59782c284718	2021-05-27 10:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:47:43.951+03	2021-05-27 10:47:43.959+03	
ccf3ecc5-750f-33e1-3b63-707fe0820656	2021-05-27 10:48:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:48:03.951+03	2021-05-27 10:48:03.959+03	
71898599-9cc8-5163-c485-824d047dcbd2	2021-05-27 10:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:48:23.951+03	2021-05-27 10:48:23.96+03	
98c32cb8-af57-d636-4a15-19fa4411c1da	2021-05-27 10:48:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:48:43.951+03	2021-05-27 10:48:43.96+03	
cfa29fff-3c5b-5779-81e7-98a6657b61ea	2021-05-27 10:49:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:49:03.951+03	2021-05-27 10:49:03.959+03	
98defe32-198b-ccf5-f855-129cd723e8a7	2021-05-27 10:49:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:49:23.951+03	2021-05-27 10:49:23.963+03	
50afbf2e-7dff-8723-97cc-9bbaf17f6740	2021-05-27 10:49:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:49:43.951+03	2021-05-27 10:49:43.957+03	
00de5040-4cca-b7fc-ca53-db801757029b	2021-05-27 10:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 10:50:00.951+03	2021-05-27 10:50:00.956+03	ERROR
441d0f01-34ac-1f8c-6389-cdfeca3d7641	2021-05-27 10:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:50:13.951+03	2021-05-27 10:50:13.958+03	
83c6750d-6cb7-34d1-6ced-f7d28c1c7c83	2021-05-27 10:50:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:50:33.951+03	2021-05-27 10:50:33.959+03	
11b098bc-aad1-532e-9542-6aface4a3a8f	2021-05-27 10:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:50:53.951+03	2021-05-27 10:50:53.958+03	
76971f42-d698-7306-c30b-b10f42c3d69c	2021-05-27 10:51:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:51:13.951+03	2021-05-27 10:51:13.959+03	
835915d7-0f6e-ad66-4f26-edb8b0ab0ca3	2021-05-27 10:51:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:51:43.951+03	2021-05-27 10:51:43.959+03	
ed9db845-1be3-6a91-d7ce-760177d4b586	2021-05-27 10:52:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:52:04.951+03	2021-05-27 10:52:04.959+03	
bebad027-56de-7bb1-5218-8ee837814d13	2021-05-27 10:52:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:52:24.951+03	2021-05-27 10:52:24.958+03	
e079a8cf-2fcf-37e6-af7b-679ab2370e6f	2021-05-27 10:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:52:44.951+03	2021-05-27 10:52:44.957+03	
9d4911c7-679e-a0b5-5a34-f8a1e5bf2ed8	2021-05-27 10:53:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:53:04.951+03	2021-05-27 10:53:04.958+03	
ce40b523-069e-9ac1-eb34-8614b6260074	2021-05-27 10:53:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:53:24.951+03	2021-05-27 10:53:24.96+03	
42717e31-2607-bbbb-f178-b1e102747580	2021-05-27 10:53:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:53:44.951+03	2021-05-27 10:53:44.958+03	
4c501426-50a5-9547-d5d1-3d4c3050120b	2021-05-27 10:54:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:54:04.951+03	2021-05-27 10:54:04.963+03	
958839ef-2395-fd8f-3221-559199ff5a52	2021-05-27 10:54:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:54:25.951+03	2021-05-27 10:54:25.958+03	
ffe872dd-326e-8021-b92c-324de32939ac	2021-05-27 10:54:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:54:45.951+03	2021-05-27 10:54:45.959+03	
3edadfb9-43e1-25b5-f275-b20933e308d6	2021-05-27 10:55:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:55:05.951+03	2021-05-27 10:55:05.958+03	
119c14cd-8445-f1c6-32c3-bf9b339189c5	2021-05-27 10:55:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:55:25.951+03	2021-05-27 10:55:25.963+03	
702a0ad3-59a9-3a9c-1222-daf31ee321fa	2021-05-27 10:55:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:55:45.951+03	2021-05-27 10:55:45.959+03	
87b18796-1250-e376-9607-c215e4e6e073	2021-05-27 10:56:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:56:05.951+03	2021-05-27 10:56:05.961+03	
17d9190e-962e-018a-ac68-f40ee7200ceb	2021-05-27 10:56:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:56:25.951+03	2021-05-27 10:56:25.958+03	
6fd179e6-24f8-1c23-29c8-ae4333b6eb75	2021-05-27 10:56:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:56:45.952+03	2021-05-27 10:56:45.958+03	
498140e6-df56-307b-9412-5da62230a8e7	2021-05-27 10:57:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:57:06.951+03	2021-05-27 10:57:06.959+03	
74316469-ce46-51dc-3f41-b1104c010fa1	2021-05-27 10:36:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:36:50.951+03	2021-05-27 10:36:50.959+03	
99bc3a8d-6c4a-2566-bd72-9ff1075e754f	2021-05-27 10:37:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:37:10.951+03	2021-05-27 10:37:10.958+03	
ad80a427-b410-5486-3ad6-0b8d49d56f0d	2021-05-27 10:37:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:37:40.951+03	2021-05-27 10:37:40.959+03	
59147acc-98c0-0522-1a2e-4ee0dd575b59	2021-05-27 10:38:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:38:00.951+03	2021-05-27 10:38:00.958+03	
440e5184-dae4-5511-4798-12e42b6dd7bd	2021-05-27 10:38:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:38:20.951+03	2021-05-27 10:38:20.958+03	
d8cd9e2a-d5bf-39d9-e271-c2304270229f	2021-05-27 10:38:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:38:40.951+03	2021-05-27 10:38:40.958+03	
bfc0f3cd-2b74-ecb9-f4af-892f996bb47f	2021-05-27 10:39:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:39:00.951+03	2021-05-27 10:39:00.958+03	
30b17317-73a5-1795-fa31-952c7e1e432c	2021-05-27 10:39:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:39:20.951+03	2021-05-27 10:39:20.959+03	
5ad35d14-dfb3-1f8f-6304-72449944e263	2021-05-27 10:39:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:39:40.951+03	2021-05-27 10:39:40.958+03	
334afa85-887a-95d1-2cb3-e82a9a77cbd9	2021-05-27 10:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 10:40:00.951+03	2021-05-27 10:40:00.958+03	ERROR
adfe48c3-4912-9351-a9ae-c42aae3638e1	2021-05-27 10:40:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:40:00.952+03	2021-05-27 10:40:00.968+03	
2bb74189-bc8b-a256-5b94-bf8ad55dc6b0	2021-05-27 10:40:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:40:21.951+03	2021-05-27 10:40:21.958+03	
aad585f8-311a-d0ee-382a-62c5a45b3416	2021-05-27 10:40:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:40:41.951+03	2021-05-27 10:40:41.959+03	
d7e18b99-5ea4-502d-e6a3-b2dfe2ec684a	2021-05-27 10:41:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:41:01.951+03	2021-05-27 10:41:01.959+03	
4df8401e-1d8b-10a0-19c0-de03e931e779	2021-05-27 10:41:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:41:21.951+03	2021-05-27 10:41:21.958+03	
6d138931-e529-4881-7ae7-ad554592a14f	2021-05-27 10:41:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:41:41.951+03	2021-05-27 10:41:41.959+03	
16a3811f-2c13-fd0c-c8df-406a69d546cb	2021-05-27 10:42:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:42:01.951+03	2021-05-27 10:42:01.96+03	
aa5e473c-1d9d-67e4-1a4e-4f354e4bb83e	2021-05-27 10:42:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:42:21.951+03	2021-05-27 10:42:21.958+03	
252c5dec-4f73-949f-834b-43b75da35ece	2021-05-27 10:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:42:41.951+03	2021-05-27 10:42:41.959+03	
1f5d8439-6c69-04b8-3b45-962186ab6840	2021-05-27 10:43:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:43:01.951+03	2021-05-27 10:43:01.959+03	
ce002144-bb63-4bea-b092-af88812be05b	2021-05-27 10:43:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:43:21.951+03	2021-05-27 10:43:21.959+03	
7101704e-3886-4bb1-e80a-36278e4bc392	2021-05-27 10:43:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:43:41.951+03	2021-05-27 10:43:41.958+03	
0095a018-df0c-b019-a1a9-2f08f345722d	2021-05-27 10:44:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:44:01.951+03	2021-05-27 10:44:01.957+03	
a16bbbbc-92bd-a474-b2c5-cf37308c04c0	2021-05-27 10:44:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:44:31.951+03	2021-05-27 10:44:31.958+03	
fceac483-ef32-7433-81a2-27f30d470397	2021-05-27 10:44:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:44:51.951+03	2021-05-27 10:44:51.96+03	
c03668b7-e246-a2ff-bf9b-0014f900d4b5	2021-05-27 10:45:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:45:11.951+03	2021-05-27 10:45:11.958+03	
003c3eae-2ef0-aec8-1ff6-f9ee5421ab86	2021-05-27 10:45:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:45:31.951+03	2021-05-27 10:45:31.959+03	
7a285ff4-824b-e3d8-7d50-179c1c9cbe3b	2021-05-27 10:45:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:45:51.952+03	2021-05-27 10:45:51.96+03	
e51b8e2a-d494-9826-7194-7df906989ca3	2021-05-27 10:46:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:46:12.952+03	2021-05-27 10:46:12.96+03	
b8855642-2c1c-8b1f-e8b8-78a26f99cf01	2021-05-27 10:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:46:33.951+03	2021-05-27 10:46:33.958+03	
080c4d2a-2a41-2eb7-0d80-682c31be8460	2021-05-27 10:46:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:46:53.951+03	2021-05-27 10:46:53.958+03	
d6358300-3d95-b2fa-d474-8896090725db	2021-05-27 10:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:47:13.951+03	2021-05-27 10:47:13.958+03	
5e480dff-1b70-8bd3-5108-81657b5fd249	2021-05-27 10:47:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:47:33.951+03	2021-05-27 10:47:33.958+03	
fb806119-029f-42f3-94d7-15c423dd6b27	2021-05-27 10:47:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:47:53.951+03	2021-05-27 10:47:53.958+03	
b52c9b5a-74e6-4f32-0586-1b5b5b2b7da0	2021-05-27 10:48:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:48:13.951+03	2021-05-27 10:48:13.958+03	
58ab9d57-b872-6e75-dbdb-57971db744c0	2021-05-27 10:48:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:48:33.951+03	2021-05-27 10:48:33.958+03	
4b643c7d-8e65-27b3-53b9-60df6ffc0494	2021-05-27 10:48:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:48:53.951+03	2021-05-27 10:48:53.958+03	
9d7a7b90-fc2d-068e-4ad3-99ad83ce9205	2021-05-27 10:49:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:49:13.951+03	2021-05-27 10:49:13.959+03	
fecd1be9-6a9e-e835-63e1-03f2634d66d5	2021-05-27 10:49:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:49:33.951+03	2021-05-27 10:49:33.957+03	
01f14679-8b55-981b-a401-d85286e5c3b1	2021-05-27 10:49:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:49:53.951+03	2021-05-27 10:49:53.958+03	
6b32ab63-acaf-0541-8eee-f86ad87e4ac1	2021-05-27 10:50:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:50:03.951+03	2021-05-27 10:50:03.959+03	
3c31ccb3-48fe-89b5-f905-f1b2b6aaba9e	2021-05-27 10:50:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:50:23.951+03	2021-05-27 10:50:23.958+03	
6a68cf98-8083-6d7a-a99f-1ac92e5109df	2021-05-27 10:50:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:50:43.951+03	2021-05-27 10:50:43.959+03	
2b9f3401-76f1-2f22-4816-74a29ed14e2d	2021-05-27 10:51:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:51:03.951+03	2021-05-27 10:51:03.958+03	
c7dd0de8-32af-b520-4c03-be68e1faed4a	2021-05-27 10:51:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:51:23.951+03	2021-05-27 10:51:23.959+03	
4c49fb4e-6759-5aad-5a8d-c012c0d7b92a	2021-05-27 10:51:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:51:33.951+03	2021-05-27 10:51:33.973+03	
b9649b55-92b7-581b-e966-f94d8c35cb2c	2021-05-27 10:51:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:51:53.952+03	2021-05-27 10:51:53.959+03	
a2b5bbc0-d954-9c46-2bd3-fd5eec87ada6	2021-05-27 10:52:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:52:14.951+03	2021-05-27 10:52:14.96+03	
1e4bc0c3-8b60-8167-7c29-5265ed8412e7	2021-05-27 10:52:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:52:34.951+03	2021-05-27 10:52:34.961+03	
dcba88fc-7211-a8eb-d283-75edbdaa20ee	2021-05-27 10:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:52:54.951+03	2021-05-27 10:52:54.959+03	
0602647d-1233-2cb3-5b81-1fcfe4f3240c	2021-05-27 10:53:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:53:14.951+03	2021-05-27 10:53:14.959+03	
ef1aaed3-7931-3028-ddd7-0e516ddf1611	2021-05-27 10:53:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:53:34.951+03	2021-05-27 10:53:34.958+03	
b2189740-6b9e-5791-7124-000cfecced50	2021-05-27 10:53:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:53:54.951+03	2021-05-27 10:53:54.958+03	
593a50d1-fa89-0658-fb74-b517dd156363	2021-05-27 10:54:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:54:14.952+03	2021-05-27 10:54:14.959+03	
e71c4aa0-d32c-863d-0b09-2039af207e22	2021-05-27 10:54:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:54:35.951+03	2021-05-27 10:54:35.959+03	
fc8f680b-9f2d-31e6-049c-42781e0ce2e6	2021-05-27 10:54:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:54:55.951+03	2021-05-27 10:54:55.959+03	
2c7cdcb3-258f-4723-0b79-bf544920c884	2021-05-27 10:55:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:55:15.951+03	2021-05-27 10:55:15.96+03	
a64dd0e8-9dee-9b66-b9d4-8541d3d25554	2021-05-27 10:55:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:55:35.951+03	2021-05-27 10:55:35.958+03	
705c9fc8-64a6-c524-3c52-68791be9a32f	2021-05-27 10:55:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:55:55.951+03	2021-05-27 10:55:55.957+03	
5658685f-db08-7825-456e-1864f7f6d33e	2021-05-27 10:56:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:56:15.951+03	2021-05-27 10:56:15.959+03	
423c0309-0fd9-3523-0874-5cb3d0c6dc67	2021-05-27 10:56:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:56:35.951+03	2021-05-27 10:56:35.959+03	
9f192d88-6a1a-a730-a791-c04945871bc7	2021-05-27 10:56:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:56:56.951+03	2021-05-27 10:56:56.958+03	
70de3ff7-ae16-bd62-68f2-7ab4daf2a664	2021-05-27 10:57:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:57:16.951+03	2021-05-27 10:57:16.962+03	
9f9cd293-a758-55f6-e66a-25e5f1de0d58	2021-05-27 10:57:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:57:26.951+03	2021-05-27 10:57:26.966+03	
f457556f-909e-2d42-5454-ba245f9108cf	2021-05-27 10:57:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:57:46.951+03	2021-05-27 10:57:46.958+03	
0509f4bd-a6f0-e626-f323-e1695729cd7a	2021-05-27 10:58:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:58:06.951+03	2021-05-27 10:58:06.959+03	
b6e8c05f-7110-8316-361a-a28e841cca3e	2021-05-27 10:58:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:58:26.951+03	2021-05-27 10:58:26.958+03	
0591c47a-f58d-1168-bded-1719ca4b932a	2021-05-27 10:58:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:58:47.952+03	2021-05-27 10:58:47.958+03	
1e33932e-601f-b4c8-e2ec-7c18961fd866	2021-05-27 10:59:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:59:08.951+03	2021-05-27 10:59:08.958+03	
a6087b3b-cce3-04f8-df3b-3398e1a88e51	2021-05-27 10:59:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:59:28.951+03	2021-05-27 10:59:28.959+03	
23ab5e3d-d363-b671-e748-87fae5c27aae	2021-05-27 10:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:59:49.951+03	2021-05-27 10:59:49.958+03	
470401e7-1720-6a3f-e2a9-f962b23756d4	2021-05-27 11:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 11:00:00.951+03	2021-05-27 11:00:00.957+03	ERROR
fc4d37b5-4a71-d288-b645-a16d5fdb9963	2021-05-27 11:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:00:19.951+03	2021-05-27 11:00:19.958+03	
8041d0e0-18ee-b7e7-ba5d-a0b4b0073580	2021-05-27 11:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:00:39.952+03	2021-05-27 11:00:39.962+03	
429c42cd-cb3d-2628-2836-f555a154a581	2021-05-27 11:01:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:01:00.951+03	2021-05-27 11:01:00.969+03	
74e89456-32d5-a2a1-3f25-a2e9de3e7402	2021-05-27 11:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:01:20.951+03	2021-05-27 11:01:20.959+03	
dc413dd6-9480-1d21-3b9d-17d8b60d0ffa	2021-05-27 11:01:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:01:40.951+03	2021-05-27 11:01:40.958+03	
f9aec043-eea6-77fe-5e44-b8f018fe59f3	2021-05-27 11:02:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:02:00.951+03	2021-05-27 11:02:00.959+03	
dfbe4fac-44f9-28e0-4c95-9c6b857c9c31	2021-05-27 11:02:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:02:20.951+03	2021-05-27 11:02:20.958+03	
7e8bee8e-27ad-8911-8495-41acafa13bd4	2021-05-27 11:02:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:02:40.951+03	2021-05-27 11:02:40.958+03	
22d74ae4-401c-587f-468e-f100fe7a5dbb	2021-05-27 11:03:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:03:00.951+03	2021-05-27 11:03:00.959+03	
e4fc74a8-7a9e-d8cc-e921-e4a931b4b0fb	2021-05-27 11:03:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:03:20.951+03	2021-05-27 11:03:20.957+03	
3aa84dd7-be15-4563-22e0-670d184387fe	2021-05-27 11:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:03:40.951+03	2021-05-27 11:03:40.959+03	
00eb44d9-acda-84a8-1f7f-5855caa79aa6	2021-05-27 11:04:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:04:00.951+03	2021-05-27 11:04:00.961+03	
c86fe09f-61e2-3506-4098-26ac8347fe2f	2021-05-27 11:04:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:04:20.951+03	2021-05-27 11:04:20.958+03	
308c60c0-75e8-ad7d-3d4a-0a5db664ab92	2021-05-27 11:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:04:40.951+03	2021-05-27 11:04:40.958+03	
db002c0b-0221-4224-a903-592fb6ad11c1	2021-05-27 11:05:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:05:00.951+03	2021-05-27 11:05:00.961+03	
0d1e7034-ebc9-fbac-7221-9e671c7ae549	2021-05-27 11:05:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:05:20.952+03	2021-05-27 11:05:20.96+03	
48552015-0493-d8a1-f06a-6aa3086f17cf	2021-05-27 11:05:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:05:41.951+03	2021-05-27 11:05:41.959+03	
03931edc-98ed-f9c4-f513-e024f1c42557	2021-05-27 11:06:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:06:01.951+03	2021-05-27 11:06:01.958+03	
e900de79-c0c7-8e66-106c-d385db84cfd8	2021-05-27 11:06:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:06:21.951+03	2021-05-27 11:06:21.959+03	
8e68804b-07ee-1e5a-50b8-986759f69115	2021-05-27 11:06:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:06:41.951+03	2021-05-27 11:06:41.958+03	
8efa43da-e765-448c-d446-0aa3895bfce5	2021-05-27 11:07:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:07:01.951+03	2021-05-27 11:07:01.961+03	
85702193-5791-0c99-795a-f6691a26bfe1	2021-05-27 11:07:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:07:21.951+03	2021-05-27 11:07:21.959+03	
54087768-88e2-67d5-3a92-563223d4bce4	2021-05-27 11:07:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:07:41.951+03	2021-05-27 11:07:41.96+03	
3bf080fd-9534-bd87-59f0-b3863106e182	2021-05-27 11:08:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:08:01.951+03	2021-05-27 11:08:01.96+03	
dc4ce7d9-10d6-2261-0112-807001b429ce	2021-05-27 11:08:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:08:21.952+03	2021-05-27 11:08:21.96+03	
ad7c2795-da45-ab35-ebbb-011e6746fe90	2021-05-27 11:08:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:08:42.951+03	2021-05-27 11:08:42.959+03	
63e43c80-4d0b-aa78-8d1c-7eeacba7a259	2021-05-27 11:09:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:09:02.952+03	2021-05-27 11:09:02.96+03	
b181535e-0ba6-b1b7-886a-7f3797147496	2021-05-27 11:09:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:09:23.951+03	2021-05-27 11:09:23.958+03	
6a58f954-bd03-c2b5-ca9b-5e54609672c7	2021-05-27 11:09:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:09:43.951+03	2021-05-27 11:09:43.96+03	
97eea464-2fed-16f5-bbdf-bd4e8290982d	2021-05-27 11:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 11:10:00.951+03	2021-05-27 11:10:00.956+03	ERROR
5d4265c4-9a69-de83-6f1b-ec317501b05b	2021-05-27 11:10:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:10:13.951+03	2021-05-27 11:10:13.957+03	
fcd5eab7-0bec-61ac-f328-f26e88c9b2da	2021-05-27 11:10:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:10:33.951+03	2021-05-27 11:10:34.047+03	
0194eee0-8528-9a8c-66f1-fc680accc7ea	2021-05-27 11:10:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:10:53.951+03	2021-05-27 11:10:53.959+03	
e66d70bd-7104-be16-f957-38b5fb4beb7c	2021-05-27 11:11:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:11:13.951+03	2021-05-27 11:11:13.96+03	
cd013111-04ae-2037-6d97-4828773df455	2021-05-27 11:11:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:11:33.951+03	2021-05-27 11:11:33.959+03	
be396b7e-29b1-6853-6de8-f26833e03ffb	2021-05-27 11:11:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:11:53.951+03	2021-05-27 11:11:53.957+03	
aada4e09-dd8a-6ed9-dd65-2c4185702858	2021-05-27 11:12:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:12:13.951+03	2021-05-27 11:12:13.959+03	
08c3a888-8483-0e75-aefb-e4b34ba5f22c	2021-05-27 11:12:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:12:33.951+03	2021-05-27 11:12:33.959+03	
cb4e2461-3d80-b483-a261-bd50338437c1	2021-05-27 11:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:12:54.951+03	2021-05-27 11:12:54.96+03	
943aa1c7-af74-7fb0-5dd9-fbb1dcd94805	2021-05-27 11:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:13:14.951+03	2021-05-27 11:13:14.958+03	
8702fd94-7d7e-45b4-adff-55e4a880742b	2021-05-27 11:13:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:13:34.951+03	2021-05-27 11:13:34.958+03	
fe576cf7-c1ee-15ba-abbe-d59789790506	2021-05-27 11:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:13:54.951+03	2021-05-27 11:13:54.958+03	
7bcb3343-146a-7043-4ba7-5c53aa732f3e	2021-05-27 11:14:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:14:14.951+03	2021-05-27 11:14:14.958+03	
0fda904b-2e40-6e0c-9839-240fc9a32df4	2021-05-27 11:14:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:14:34.951+03	2021-05-27 11:14:34.958+03	
6266f0df-d622-2471-8ed3-1707bbcb22b5	2021-05-27 11:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:14:54.951+03	2021-05-27 11:14:54.958+03	
4c6bde5f-b60c-5766-776e-89941d4ed367	2021-05-27 11:15:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:15:14.951+03	2021-05-27 11:15:14.958+03	
605598d1-8977-11f0-0456-ad5b1b9cd841	2021-05-27 11:15:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:15:34.951+03	2021-05-27 11:15:34.959+03	
4bec1d6f-65e7-5d3c-db56-af9f736aa99b	2021-05-27 11:15:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:15:54.951+03	2021-05-27 11:15:54.958+03	
312b608c-6fa9-d6f1-a265-f0a8d5d280ac	2021-05-27 11:16:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:16:14.951+03	2021-05-27 11:16:14.958+03	
c6c46876-22ea-57aa-ac40-6ec957ad7848	2021-05-27 11:16:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:16:34.951+03	2021-05-27 11:16:34.958+03	
0b763afa-6f41-662e-9fc4-79daed2631b4	2021-05-27 11:16:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:16:54.951+03	2021-05-27 11:16:54.959+03	
fc4ef498-b810-24a3-3924-e43a247c4ab3	2021-05-27 11:17:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:17:14.951+03	2021-05-27 11:17:14.957+03	
0738b6f4-fd61-8d85-50c1-17044a3b5a99	2021-05-27 11:17:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:17:34.951+03	2021-05-27 11:17:34.96+03	
efe10ef7-3fcf-c81a-b895-d8c186177c1c	2021-05-27 11:17:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:17:54.951+03	2021-05-27 11:17:54.959+03	
1c3fc763-4eff-5be3-2f52-63f29f883ac6	2021-05-27 10:57:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:57:36.951+03	2021-05-27 10:57:36.959+03	
4029675b-225a-5319-d513-9e04f52864d5	2021-05-27 10:57:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:57:56.951+03	2021-05-27 10:57:56.957+03	
cf34e7ca-755e-c273-d478-fb15014cd2cb	2021-05-27 10:58:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:58:16.951+03	2021-05-27 10:58:16.958+03	
22e13351-8b37-3a24-5f77-f5bf3ddacc1f	2021-05-27 10:58:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:58:36.952+03	2021-05-27 10:58:36.96+03	
ecf30f6d-b74e-169a-4e0f-dcb4fab18e03	2021-05-27 10:58:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:58:58.951+03	2021-05-27 10:58:58.958+03	
4c9264c3-e8f0-e7af-bd5a-9f7ba7b043da	2021-05-27 10:59:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:59:18.951+03	2021-05-27 10:59:18.958+03	
aa9d0b3f-b4d4-e727-cc92-a15ff0431b00	2021-05-27 10:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:59:38.952+03	2021-05-27 10:59:38.959+03	
8e19aa41-e59f-4151-60d6-2d28f0aa6fd2	2021-05-27 10:59:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 10:59:59.951+03	2021-05-27 10:59:59.957+03	
0a3056d9-3f4e-91e9-77de-61bb6fef7b92	2021-05-27 11:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:00:09.951+03	2021-05-27 11:00:09.958+03	
0162c40e-cf8c-a8a5-a4e1-ab1a2de52d3d	2021-05-27 11:00:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:00:29.951+03	2021-05-27 11:00:29.959+03	
e80e7428-6656-f98c-4e29-51271c0a5a3f	2021-05-27 11:00:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:00:50.951+03	2021-05-27 11:00:50.962+03	
811fccfa-5bbb-ae39-ac5c-38166a3da685	2021-05-27 11:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:01:10.951+03	2021-05-27 11:01:10.959+03	
99710da4-7fe2-7823-38f2-9702377b9155	2021-05-27 11:01:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:01:30.951+03	2021-05-27 11:01:30.958+03	
12401b80-3362-8bdb-a498-f1604523e717	2021-05-27 11:01:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:01:50.951+03	2021-05-27 11:01:50.958+03	
560a7f7a-377f-1b30-bb66-5fdbdc557738	2021-05-27 11:02:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:02:10.951+03	2021-05-27 11:02:10.958+03	
47cca36f-6a28-7d4f-da25-bd2812d7beef	2021-05-27 11:02:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:02:30.951+03	2021-05-27 11:02:30.958+03	
6e9f8a74-4d72-3641-7983-4f7afc265c78	2021-05-27 11:02:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:02:50.951+03	2021-05-27 11:02:50.958+03	
f2ace34f-3993-2ab7-387b-20cb77fa933d	2021-05-27 11:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:03:10.951+03	2021-05-27 11:03:10.959+03	
8cd1915e-8c7c-946e-e22a-35a17f4bbdde	2021-05-27 11:03:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:03:30.951+03	2021-05-27 11:03:30.959+03	
15ddeb44-379f-724a-5843-8a9d3b1e0bc3	2021-05-27 11:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:03:50.951+03	2021-05-27 11:03:50.959+03	
6583ebc0-0d46-741d-7a38-62fc839317f1	2021-05-27 11:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:04:10.951+03	2021-05-27 11:04:10.958+03	
a7001382-aca1-5bd2-ff20-190e0dad41d2	2021-05-27 11:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:04:30.951+03	2021-05-27 11:04:30.958+03	
3da81d37-efa2-3467-1e2b-9625719c7fd3	2021-05-27 11:04:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:04:50.951+03	2021-05-27 11:04:50.958+03	
e0d0ba2c-b669-dd07-bee9-f4bacd178a7b	2021-05-27 11:05:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:05:10.951+03	2021-05-27 11:05:10.96+03	
def1e358-96f0-a951-c1d1-eeb13a6343c4	2021-05-27 11:05:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:05:31.951+03	2021-05-27 11:05:31.961+03	
5223a514-66f2-0678-ca14-65157444efb1	2021-05-27 11:05:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:05:51.951+03	2021-05-27 11:05:51.959+03	
cf7d6495-db6f-d8e6-52ac-16db71888c1d	2021-05-27 11:06:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:06:11.951+03	2021-05-27 11:06:11.957+03	
c74bc7bf-03a3-345e-de2f-089ef2b9b6db	2021-05-27 11:06:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:06:31.951+03	2021-05-27 11:06:31.958+03	
762e790e-9b26-5ef8-fdb5-9f922f664f23	2021-05-27 11:06:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:06:51.951+03	2021-05-27 11:06:51.958+03	
237932e5-f622-33ef-c64c-959d10153ca9	2021-05-27 11:07:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:07:11.951+03	2021-05-27 11:07:11.958+03	
047366d0-637c-be5f-bde2-0977408cddb2	2021-05-27 11:07:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:07:31.951+03	2021-05-27 11:07:31.96+03	
50b5cced-128a-b9ad-e84b-c362eb695af0	2021-05-27 11:07:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:07:51.951+03	2021-05-27 11:07:51.959+03	
643e1b82-9223-d037-07ed-15ad70c30989	2021-05-27 11:08:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:08:11.951+03	2021-05-27 11:08:11.959+03	
44509863-f9d8-7007-35bc-7b4b3bc5c180	2021-05-27 11:08:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:08:32.951+03	2021-05-27 11:08:32.959+03	
b89565e4-380b-4fc3-71ee-4432b4bcd067	2021-05-27 11:08:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:08:52.952+03	2021-05-27 11:08:52.959+03	
fc2cf81b-84f0-affa-d044-df3353187eb1	2021-05-27 11:09:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:09:13.951+03	2021-05-27 11:09:13.958+03	
0e8ba885-8153-0469-301e-2db248797536	2021-05-27 11:09:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:09:33.951+03	2021-05-27 11:09:33.959+03	
02648156-5187-e652-dcb0-c9224ca2920c	2021-05-27 11:09:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:09:53.951+03	2021-05-27 11:09:53.959+03	
87bfae5b-5600-294e-69f3-8129e5dc1484	2021-05-27 11:10:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:10:03.951+03	2021-05-27 11:10:03.957+03	
2b3c6ba7-4d4f-10bf-1d5e-1ab6563917b8	2021-05-27 11:10:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:10:23.951+03	2021-05-27 11:10:23.959+03	
af89179e-50e8-7457-e0d7-2053a0b8a3f2	2021-05-27 11:10:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:10:43.951+03	2021-05-27 11:10:43.958+03	
ef16f85d-3f4d-ddc6-cb71-6379b4a9ee79	2021-05-27 11:11:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:11:03.951+03	2021-05-27 11:11:03.957+03	
684b7960-e184-57b6-8561-551bc62e7359	2021-05-27 11:11:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:11:23.951+03	2021-05-27 11:11:23.96+03	
17ca0474-8541-b13d-36a8-29c691b3e30f	2021-05-27 11:11:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:11:43.951+03	2021-05-27 11:11:43.958+03	
97908b54-eca1-654c-450e-6a81ba5e4bea	2021-05-27 11:12:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:12:03.951+03	2021-05-27 11:12:03.958+03	
01eb108d-3b8a-a05b-e2d4-c8e71669f8d6	2021-05-27 11:12:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:12:23.951+03	2021-05-27 11:12:23.957+03	
b0f72ee6-adf8-5295-efd6-8c7c73e94c0e	2021-05-27 11:12:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:12:43.952+03	2021-05-27 11:12:43.959+03	
c9c138d5-7528-9184-e9ac-4ff6a40aa578	2021-05-27 11:13:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:13:04.951+03	2021-05-27 11:13:04.959+03	
e271f080-380b-2307-0f34-4cf801c47aea	2021-05-27 11:13:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:13:24.951+03	2021-05-27 11:13:24.958+03	
fcbc26f0-204b-b854-cad9-255116734255	2021-05-27 11:13:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:13:44.951+03	2021-05-27 11:13:44.96+03	
cb7439d7-5178-7237-047b-36dfbccec93b	2021-05-27 11:14:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:14:04.951+03	2021-05-27 11:14:04.958+03	
1bc56b71-f74f-4d6d-423c-f1c1b43cb054	2021-05-27 11:14:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:14:24.951+03	2021-05-27 11:14:24.958+03	
4f52ab5c-3530-9990-a2b4-233a1643e259	2021-05-27 11:14:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:14:44.951+03	2021-05-27 11:14:44.959+03	
0ca6bdb8-eeba-14be-3c12-dfe3803178ba	2021-05-27 11:15:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:15:04.951+03	2021-05-27 11:15:04.958+03	
ca1cf7a2-c9e3-98cf-792a-20d996c04ddb	2021-05-27 11:15:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:15:24.951+03	2021-05-27 11:15:24.958+03	
a2d08566-ea4b-2369-6eb1-fa029f63902e	2021-05-27 11:15:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:15:44.951+03	2021-05-27 11:15:44.958+03	
7fd0ee85-be3d-a2f9-97d9-8580b1880835	2021-05-27 11:16:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:16:04.951+03	2021-05-27 11:16:04.958+03	
70e46edd-fc01-9775-2acf-94fc00ef8915	2021-05-27 11:16:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:16:24.951+03	2021-05-27 11:16:24.959+03	
42640815-2dbd-c1b4-eb4e-ab684419e164	2021-05-27 11:16:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:16:44.951+03	2021-05-27 11:16:44.959+03	
7aa07f38-4dfb-8163-418f-e0d6fe4c9923	2021-05-27 11:17:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:17:04.951+03	2021-05-27 11:17:04.959+03	
64f8b93a-346c-c745-cd9d-7bd6bfa41e02	2021-05-27 11:17:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:17:24.951+03	2021-05-27 11:17:24.958+03	
aef1cf38-f438-3fa3-33ad-75ed91faddf3	2021-05-27 11:17:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:17:44.951+03	2021-05-27 11:17:44.959+03	
fbf53f52-805d-484d-a219-88e0affdb5dc	2021-05-27 11:18:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:18:04.951+03	2021-05-27 11:18:04.957+03	
45c7124a-b963-479f-ab09-d9f202d90974	2021-05-27 11:18:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:18:14.951+03	2021-05-27 11:18:14.959+03	
a042e4a9-94a5-827e-32ef-8a1b51847b36	2021-05-27 18:06:05.971	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:06:05.97+03	2021-05-27 18:06:05.978+03	
c42501c1-6591-5da1-84fc-9e7c01d4017f	2021-05-27 11:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:18:34.951+03	2021-05-27 11:18:34.958+03	
012cba4c-4a4d-1dda-2c77-657f1f50d202	2021-05-27 11:18:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:18:54.951+03	2021-05-27 11:18:54.959+03	
35b31a9f-62f6-ccd2-0afb-97a636ca0bee	2021-05-27 18:06:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:06:26.951+03	2021-05-27 18:06:26.959+03	
0dc179db-e07e-7e79-b848-1ee82acee206	2021-05-27 11:19:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:19:14.951+03	2021-05-27 11:19:14.961+03	
356a2120-8fc9-02d5-1b56-9d9cfaf39321	2021-05-27 11:19:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:19:34.951+03	2021-05-27 11:19:34.96+03	
813455fe-2ed8-3192-c593-77c1a2b9294c	2021-05-27 18:06:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:06:46.951+03	2021-05-27 18:06:46.958+03	
b7dcf006-4e01-5ff9-9858-2b6188cf1abe	2021-05-27 11:19:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:19:54.951+03	2021-05-27 11:19:54.957+03	
7eae15a8-d2ca-c434-0f28-ece82cf34b56	2021-05-27 11:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:20:04.951+03	2021-05-27 11:20:04.959+03	
3fe3c5f6-a004-c25b-4095-507efd9f282c	2021-05-27 18:07:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:07:06.951+03	2021-05-27 18:07:06.958+03	
e80e3897-7893-3228-262b-1c03b506faea	2021-05-27 11:20:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:20:24.951+03	2021-05-27 11:20:24.959+03	
f098a96d-77bd-447d-45cc-f4bc37ae0a6b	2021-05-27 11:20:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:20:44.951+03	2021-05-27 11:20:44.964+03	
979071ea-9949-fd33-2875-6762e550bdd0	2021-05-27 18:07:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:07:26.951+03	2021-05-27 18:07:26.959+03	
83cdd30c-0a4b-107f-54dc-a3012e7cdd41	2021-05-27 11:21:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:21:05.951+03	2021-05-27 11:21:05.959+03	
51d83c56-9dbc-9d6e-6ba2-2652316e066c	2021-05-27 11:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:21:25.951+03	2021-05-27 11:21:25.964+03	
7ea99d49-2695-2058-81ff-bddfcfa4f405	2021-05-27 18:07:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:07:46.951+03	2021-05-27 18:07:46.957+03	
6595a741-7076-6df0-7b56-f6ea89b5dcb6	2021-05-27 11:21:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:21:45.952+03	2021-05-27 11:21:45.96+03	
41f29119-e1e5-eca8-bead-327ed79f15b8	2021-05-27 11:22:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:22:06.951+03	2021-05-27 11:22:06.961+03	
5c4261de-c12f-22c9-274c-5b1b9515af8f	2021-05-27 18:08:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:08:06.951+03	2021-05-27 18:08:06.957+03	
d94777ec-75fc-5e39-9f08-91c4e5e30780	2021-05-27 11:22:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:22:26.951+03	2021-05-27 11:22:26.957+03	
ae2cada4-7f99-7e5d-f9a0-b8b79135c70f	2021-05-27 11:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:22:46.951+03	2021-05-27 11:22:46.96+03	
994fe992-f3f0-a078-16fe-0b19c40f3fdc	2021-05-27 18:08:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:08:26.951+03	2021-05-27 18:08:26.958+03	
1e2f7363-cd2b-946b-18dc-b8f8c5596af7	2021-05-27 11:23:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:23:07.953+03	2021-05-27 11:23:07.96+03	
24aa7a28-c3b1-1ed6-d856-aee3d0ff7323	2021-05-27 11:23:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:23:28.951+03	2021-05-27 11:23:28.959+03	
6569a192-2e1b-e954-b6a7-16f942bbe10d	2021-05-27 18:08:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:08:46.951+03	2021-05-27 18:08:46.959+03	
e8255335-4a91-0535-c103-f773575f4d5d	2021-05-27 11:23:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:23:48.951+03	2021-05-27 11:23:48.96+03	
b85319bb-8043-3d00-f7a1-b9869e5a80b8	2021-05-27 11:24:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:24:08.951+03	2021-05-27 11:24:08.959+03	
ab0d009e-62f5-6a64-bafb-4a6741360e21	2021-05-27 18:09:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:09:06.951+03	2021-05-27 18:09:06.957+03	
19aa9c86-bdc2-fc4c-3268-bf7d41f6ec35	2021-05-27 18:09:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:09:26.951+03	2021-05-27 18:09:26.959+03	
4116a2f5-3f3e-bf8d-4cb2-cd3c83c65db0	2021-05-27 18:09:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:09:47.952+03	2021-05-27 18:09:47.96+03	
62aba593-5fd8-31fb-b280-ce817193c2ca	2021-05-27 18:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 18:10:00.951+03	2021-05-27 18:10:00.956+03	ERROR
147ba10c-616b-daec-5526-4fa0951e3394	2021-05-27 18:10:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:10:18.951+03	2021-05-27 18:10:18.958+03	
e6e030f4-c7ab-9442-982a-6c735c861364	2021-05-27 18:10:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:10:38.951+03	2021-05-27 18:10:38.963+03	
21629cc7-cd0c-fff6-9cd0-a3e395c7dc2c	2021-05-27 18:10:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:10:58.951+03	2021-05-27 18:10:58.959+03	
4e5bfcb6-7a32-1b9e-5e3a-1b8b1c4d8ee1	2021-05-27 18:11:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:11:18.951+03	2021-05-27 18:11:18.957+03	
28645d94-e04d-6824-fbf2-ad3ff1fa5df3	2021-05-27 18:11:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:11:38.951+03	2021-05-27 18:11:38.958+03	
2bb28527-8b66-86f6-c513-a5e99ebc7f05	2021-05-27 18:11:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:11:58.951+03	2021-05-27 18:11:58.959+03	
521a6af4-5b53-9e5a-6a0a-b43fd60ae8fc	2021-05-27 18:12:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:12:18.952+03	2021-05-27 18:12:18.96+03	
fd6486d7-ff75-840a-2879-56669da03d25	2021-05-27 18:12:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:12:39.951+03	2021-05-27 18:12:39.961+03	
8ee0eaf8-dedf-22cd-256d-42e3a8ec5847	2021-05-27 18:13:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:13:00.951+03	2021-05-27 18:13:00.957+03	
605ba197-23ff-d1a8-d825-f6779d2e21f6	2021-05-27 18:13:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:13:10.951+03	2021-05-27 18:13:10.96+03	
1495d245-ffd2-a6b1-45bf-9b3e27384a06	2021-05-27 18:13:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:13:20.951+03	2021-05-27 18:13:20.958+03	
18be4d07-5897-ab14-4c5a-bedd556d6435	2021-05-27 18:13:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:13:30.951+03	2021-05-27 18:13:30.958+03	
f097c408-ee8b-26ff-8b58-e92268e13131	2021-05-27 18:13:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:13:40.951+03	2021-05-27 18:13:40.961+03	
cdf46534-e419-a581-5049-62462591e03b	2021-05-27 18:13:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:13:50.951+03	2021-05-27 18:13:50.958+03	
0b9bd975-0aa7-8d4c-4a1a-1e14ac0c8f44	2021-05-27 18:14:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:14:00.951+03	2021-05-27 18:14:00.958+03	
c9ba91fc-94d8-9a48-ec4c-2e79630ad4e8	2021-05-27 18:14:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:14:10.951+03	2021-05-27 18:14:10.957+03	
de7b3a05-fb19-8dbd-f6b7-69cca13b1adf	2021-05-27 18:14:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:14:20.951+03	2021-05-27 18:14:20.958+03	
c28a757f-eb46-8436-d8c9-4f549a9675cd	2021-05-27 18:14:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:14:30.951+03	2021-05-27 18:14:30.958+03	
d359d041-106e-8826-32a7-01d6bf4fb1d4	2021-05-27 18:14:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:14:40.951+03	2021-05-27 18:14:40.958+03	
cbdd053f-eb35-2ede-e17f-f74df88bc63a	2021-05-27 18:14:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:14:50.951+03	2021-05-27 18:14:50.957+03	
f2eaf656-1453-3688-d30c-f02ff0a86759	2021-05-27 18:15:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:15:00.951+03	2021-05-27 18:15:00.958+03	
68961448-767f-99d1-5baf-a86a4a48e8f6	2021-05-27 18:15:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:15:10.951+03	2021-05-27 18:15:10.959+03	
559eff66-3200-e08a-526b-ff4d40690781	2021-05-27 18:15:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:15:20.951+03	2021-05-27 18:15:20.958+03	
39806d28-7319-979e-fe58-8ff782e989c4	2021-05-27 18:15:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:15:30.951+03	2021-05-27 18:15:30.959+03	
b03577c7-adeb-5cf8-694c-2dd85cdd168c	2021-05-27 18:15:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:15:40.951+03	2021-05-27 18:15:40.958+03	
6212be8e-e686-98c4-3876-5df2ff8a5250	2021-05-27 18:15:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:15:50.951+03	2021-05-27 18:15:50.958+03	
4a12f3de-294e-17aa-cfb0-e3fd7d7f5b74	2021-05-27 18:16:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:16:00.951+03	2021-05-27 18:16:00.958+03	
4ac7ec01-a404-8bd2-881e-1a3a65257499	2021-05-27 18:16:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:16:10.951+03	2021-05-27 18:16:10.959+03	
908816a6-251d-d102-a14d-d1de1a018420	2021-05-27 18:16:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:16:20.951+03	2021-05-27 18:16:20.958+03	
63394a76-dee1-62a2-54fa-dc1103055ea0	2021-05-27 18:16:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:16:30.951+03	2021-05-27 18:16:30.959+03	
2a28c1b5-a70a-7701-c60a-c0af06ce27ff	2021-05-27 18:16:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:16:40.951+03	2021-05-27 18:16:40.958+03	
87d92d7f-046b-2c7f-2ffe-f958504cac24	2021-05-27 11:18:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:18:24.951+03	2021-05-27 11:18:24.958+03	
2b8299d1-5956-8691-d225-e43dfa79add8	2021-05-27 11:18:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:18:44.951+03	2021-05-27 11:18:44.958+03	
c86851f5-5765-802b-03d5-535c55d4fbd4	2021-05-27 11:19:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:19:04.951+03	2021-05-27 11:19:04.96+03	
b02f22c7-1ce1-2935-d884-434b19401e25	2021-05-27 11:19:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:19:24.951+03	2021-05-27 11:19:24.959+03	
44250853-0712-f76a-79c0-f7c6bc044363	2021-05-27 11:19:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:19:44.951+03	2021-05-27 11:19:44.958+03	
3836a917-7e6a-a48f-0ef3-8d494beb87dc	2021-05-27 11:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 11:20:00.951+03	2021-05-27 11:20:00.956+03	ERROR
e27d8099-211a-2507-ae2d-f178bd330dd1	2021-05-27 11:20:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:20:14.951+03	2021-05-27 11:20:14.964+03	
bef84ca7-af6f-f49a-821d-dda091662077	2021-05-27 11:20:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:20:34.951+03	2021-05-27 11:20:34.959+03	
8a9232c9-50b2-8776-21f9-6880707dda2f	2021-05-27 11:20:54.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:20:54.952+03	2021-05-27 11:20:54.963+03	
002bfe2c-6dfc-c538-f72e-697e87265d2f	2021-05-27 11:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:21:15.951+03	2021-05-27 11:21:15.96+03	
8ac74a03-f604-1ab6-836a-c3adb4bb0214	2021-05-27 11:21:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:21:35.951+03	2021-05-27 11:21:35.958+03	
d65fa5e8-080d-ceb1-6837-1c2c8d74598c	2021-05-27 11:21:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:21:55.952+03	2021-05-27 11:21:55.96+03	
07d3a1e6-9999-ed51-caed-92da194e77f3	2021-05-27 11:22:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:22:16.951+03	2021-05-27 11:22:16.958+03	
94837aaa-a19c-06a2-a83b-2e3f4a2daec0	2021-05-27 11:22:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:22:36.951+03	2021-05-27 11:22:36.958+03	
63621f58-c28a-a5b5-3209-58f0604eacb5	2021-05-27 11:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:22:56.952+03	2021-05-27 11:22:56.959+03	
9431ace1-5a1c-e645-088c-1b67dd745c46	2021-05-27 11:23:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:23:18.951+03	2021-05-27 11:23:18.96+03	
9d66068e-f044-1cc4-18f0-ced4d1dc62af	2021-05-27 11:23:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:23:38.951+03	2021-05-27 11:23:38.96+03	
7823db62-7d20-a70b-8b90-002094685ed7	2021-05-27 11:23:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:23:58.951+03	2021-05-27 11:23:58.958+03	
aee77a68-c131-9cf4-88e2-a0ab90205a21	2021-05-27 11:24:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:24:18.951+03	2021-05-27 11:24:18.959+03	
fa7d70c8-f8cc-23fe-88ba-84a26b4bf16d	2021-05-27 11:24:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:24:28.951+03	2021-05-27 11:24:28.96+03	
8576303e-c3a1-37d4-0b33-3324bcfa1bc5	2021-05-27 11:24:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:24:38.951+03	2021-05-27 11:24:38.96+03	
46040c2a-0ed5-3ef0-705f-4c2954f3a2d9	2021-05-27 11:24:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:24:48.951+03	2021-05-27 11:24:48.958+03	
955db510-afa3-b591-f1f8-7cf9f5bffa40	2021-05-27 11:24:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:24:58.951+03	2021-05-27 11:24:58.958+03	
e014f83d-6800-ea75-43ab-d4b7f7d60831	2021-05-27 11:25:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:25:08.951+03	2021-05-27 11:25:08.958+03	
f1f7b093-9a59-7fbf-8405-f684cf725ee6	2021-05-27 11:25:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:25:18.951+03	2021-05-27 11:25:18.959+03	
0aa3e1c8-5daf-3713-7b10-a6360a0ba958	2021-05-27 11:25:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:25:28.951+03	2021-05-27 11:25:28.958+03	
0fa7d095-488e-7bbc-c20d-be186c2a0342	2021-05-27 11:25:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:25:38.951+03	2021-05-27 11:25:38.96+03	
3c232ed4-688b-830d-ded0-41166d159993	2021-05-27 11:25:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:25:48.951+03	2021-05-27 11:25:48.959+03	
774f18b7-da9a-5ac3-5244-dbe97f9ac57d	2021-05-27 11:25:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:25:58.951+03	2021-05-27 11:25:58.958+03	
9d6a31fa-e94c-b629-72cf-bebca3f74846	2021-05-27 11:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:26:08.952+03	2021-05-27 11:26:08.96+03	
d5ac48f6-550c-16d5-018a-0e0e29905beb	2021-05-27 11:26:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:26:19.951+03	2021-05-27 11:26:19.962+03	
033fcf65-c8f9-e37c-69d3-7e198522bebd	2021-05-27 11:26:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:26:29.951+03	2021-05-27 11:26:29.96+03	
fb58c9df-26a2-05cb-3866-df10ce5ab6bd	2021-05-27 11:26:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:26:39.951+03	2021-05-27 11:26:39.958+03	
e0113c1a-2f43-79a7-c831-de32d2d23a39	2021-05-27 11:26:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:26:49.951+03	2021-05-27 11:26:49.958+03	
290bb693-a353-5384-3630-37f5aee328e3	2021-05-27 11:26:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:26:59.951+03	2021-05-27 11:26:59.958+03	
7d9a6d69-ffac-3803-659e-1b884560f83a	2021-05-27 11:27:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:27:09.951+03	2021-05-27 11:27:09.957+03	
44b28349-e7d9-af3f-c17c-20e5a27fb057	2021-05-27 11:27:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:27:19.951+03	2021-05-27 11:27:19.957+03	
b87ad0b1-2ed4-0fc1-e984-0c1a39fc0535	2021-05-27 11:27:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:27:29.951+03	2021-05-27 11:27:29.958+03	
e8024455-15d6-ac01-579b-b4414623a03d	2021-05-27 11:27:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:27:39.951+03	2021-05-27 11:27:39.957+03	
3408f53f-523b-14c5-fce2-846bb0942d1f	2021-05-27 11:27:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:27:49.951+03	2021-05-27 11:27:49.96+03	
d2836a29-e2dc-9c81-e24d-e0afb0150c24	2021-05-27 11:27:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:27:59.951+03	2021-05-27 11:27:59.958+03	
2625ffd0-3efe-3dcf-2c09-3c5e6dbf6be4	2021-05-27 11:28:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:28:09.951+03	2021-05-27 11:28:09.959+03	
f696c6cf-46bd-b978-9442-70bb79ef453b	2021-05-27 11:28:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:28:19.951+03	2021-05-27 11:28:19.958+03	
35158c32-f731-c34d-0783-3cef12f8e165	2021-05-27 11:28:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:28:29.951+03	2021-05-27 11:28:29.958+03	
ff8ff739-01d3-3236-9979-6a523f083790	2021-05-27 11:28:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:28:39.951+03	2021-05-27 11:28:39.959+03	
4398e126-3e45-bda9-7bca-184260ef4217	2021-05-27 11:28:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:28:49.951+03	2021-05-27 11:28:49.959+03	
844c8734-e0f0-084e-d8a5-8a78c46b3cef	2021-05-27 11:28:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:28:59.951+03	2021-05-27 11:28:59.957+03	
04481f6a-5f77-cf0c-a661-a00e8b8116c7	2021-05-27 11:29:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:29:09.951+03	2021-05-27 11:29:10.191+03	
d323bf3f-4079-5d73-f620-16b441a419e9	2021-05-27 11:29:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:29:19.951+03	2021-05-27 11:29:19.958+03	
5ce4e22e-9734-874d-284d-f0d204d5aac7	2021-05-27 11:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:29:29.951+03	2021-05-27 11:29:29.959+03	
89556bf7-4841-5e30-ca7f-c847ed922318	2021-05-27 11:29:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:29:39.951+03	2021-05-27 11:29:39.958+03	
029bc6c8-1c09-ec71-647d-92cebdb75bc9	2021-05-27 11:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:29:49.951+03	2021-05-27 11:29:49.958+03	
32763723-d49e-945a-f1fb-ea91b459b498	2021-05-27 11:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:29:59.951+03	2021-05-27 11:29:59.958+03	
d5dae192-d3a4-7c9f-0244-b43248ce6992	2021-05-27 11:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 11:30:00.951+03	2021-05-27 11:30:00.956+03	ERROR
6015ea7b-50ed-1c8a-aec9-b427f409825f	2021-05-27 11:30:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:30:09.951+03	2021-05-27 11:30:09.96+03	
85c94265-672e-dfcb-6411-d0f816392a32	2021-05-27 11:30:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:30:19.951+03	2021-05-27 11:30:19.958+03	
44a02340-2833-ce5b-85e4-18b13a5e81f4	2021-05-27 11:30:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:30:29.951+03	2021-05-27 11:30:29.958+03	
c3063474-0ebe-d6ff-f5af-00205bb5a57c	2021-05-27 11:30:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:30:39.951+03	2021-05-27 11:30:39.959+03	
5d4610b9-e23c-4615-cb50-a738ec268098	2021-05-27 11:30:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:30:49.951+03	2021-05-27 11:30:49.958+03	
a6631176-9058-1d15-7f4f-b5d3d8de31c8	2021-05-27 11:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:30:59.951+03	2021-05-27 11:30:59.963+03	
a016619b-1e77-c8d5-1e05-2a957a1d359b	2021-05-27 11:31:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:31:09.951+03	2021-05-27 11:31:09.959+03	
1ab5058f-70ec-8ca7-0eb4-7825d754a77f	2021-05-27 11:31:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:31:19.951+03	2021-05-27 11:31:19.958+03	
7b6af84e-e561-afd6-299c-23e6fb6d8046	2021-05-27 11:31:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:31:29.951+03	2021-05-27 11:31:29.959+03	
2f3a4a85-4b3e-ae4b-7541-5af371aedf31	2021-05-27 11:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:31:39.951+03	2021-05-27 11:31:39.959+03	
25a0df0b-09b7-1efb-128c-1e32d5d263f0	2021-05-27 11:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:31:59.951+03	2021-05-27 11:31:59.96+03	
8830e5a8-2509-7ea6-a048-5230d3e82a14	2021-05-27 11:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:32:19.951+03	2021-05-27 11:32:19.958+03	
47bedd7e-6546-c887-d8c1-403f11db42d6	2021-05-27 11:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:32:39.951+03	2021-05-27 11:32:39.958+03	
731d515c-032e-cce7-deb3-fe97bee641f7	2021-05-27 11:32:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:32:59.951+03	2021-05-27 11:32:59.957+03	
e4d5e503-f063-9145-bc49-bf35e8bbe90a	2021-05-27 11:33:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:33:19.951+03	2021-05-27 11:33:19.958+03	
f06f2f36-ee7c-4cac-60b8-c5208199588a	2021-05-27 11:33:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:33:39.951+03	2021-05-27 11:33:39.96+03	
7f50b616-f8d0-87b5-d0f7-2a25cf535ef6	2021-05-27 11:33:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:33:59.951+03	2021-05-27 11:33:59.958+03	
decf9134-9957-d785-2298-f83bf4552482	2021-05-27 11:34:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:34:19.951+03	2021-05-27 11:34:19.965+03	
20bac7d4-d575-03c1-7a4a-32a28b192891	2021-05-27 11:34:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:34:39.951+03	2021-05-27 11:34:39.959+03	
395796ef-ca38-6233-668e-606ffc85251c	2021-05-27 11:34:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:34:59.951+03	2021-05-27 11:34:59.958+03	
4299c041-6df0-8950-09a7-5b347939c07b	2021-05-27 11:35:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:35:19.951+03	2021-05-27 11:35:19.959+03	
e17dbdc5-1884-b26b-f08e-736dd64e2efb	2021-05-27 11:35:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:35:39.951+03	2021-05-27 11:35:39.96+03	
33ad3997-0c22-bb71-8b73-c27dfbea4a11	2021-05-27 11:35:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:35:59.951+03	2021-05-27 11:35:59.959+03	
3875cce1-ab0c-752b-0691-92e2fe090aaa	2021-05-27 11:36:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:36:19.951+03	2021-05-27 11:36:19.959+03	
254d2a63-86cf-1408-a6aa-9c225178b8e4	2021-05-27 11:36:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:36:39.951+03	2021-05-27 11:36:39.962+03	
a5451cea-a625-48c9-36ad-49a4df993282	2021-05-27 11:36:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:36:59.951+03	2021-05-27 11:36:59.958+03	
c759d21d-8c02-56a8-daff-713515de615a	2021-05-27 11:37:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:37:19.951+03	2021-05-27 11:37:19.959+03	
5b5ee58f-0031-d4fa-40b3-9720109ece65	2021-05-27 11:37:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:37:39.951+03	2021-05-27 11:37:39.959+03	
9aadd65a-e412-89e1-4403-6f9e3e335af0	2021-05-27 11:37:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:37:59.951+03	2021-05-27 11:37:59.965+03	
12b2b971-82d1-d495-857a-00e9613b3e48	2021-05-27 11:38:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:38:19.951+03	2021-05-27 11:38:19.959+03	
dff71103-1f27-1c39-bf64-97e179d28ea9	2021-05-27 11:38:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:38:39.951+03	2021-05-27 11:38:39.959+03	
5c309cef-d790-2746-9f42-20382bd0cc8e	2021-05-27 11:38:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:38:59.951+03	2021-05-27 11:38:59.959+03	
082044c8-7334-a35e-e24e-eefb755a9b1e	2021-05-27 11:39:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:39:19.951+03	2021-05-27 11:39:19.958+03	
b0bb0276-a8ca-6269-356a-220600145a12	2021-05-27 11:39:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:39:39.951+03	2021-05-27 11:39:39.959+03	
4a213f24-1da9-b89a-c3c0-01177420ff04	2021-05-27 11:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:39:59.951+03	2021-05-27 11:39:59.958+03	
b1db9398-d084-6a6a-54bf-38f7bb890614	2021-05-27 11:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:40:09.951+03	2021-05-27 11:40:09.959+03	
b2f200f8-17b6-a8b6-ac99-b36803cd377f	2021-05-27 11:40:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:40:29.951+03	2021-05-27 11:40:29.962+03	
a2cddf07-9a04-c57c-3840-d8eecef02fe3	2021-05-27 11:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:40:49.951+03	2021-05-27 11:40:49.958+03	
0031f4c7-deab-3a2d-8a75-cdf3c2306bbd	2021-05-27 11:41:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:41:09.951+03	2021-05-27 11:41:09.959+03	
0d2a70ce-cd2d-24a3-d1dd-df7ea908a7bd	2021-05-27 11:41:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:41:29.951+03	2021-05-27 11:41:29.958+03	
6e0ed3a4-7536-0dd2-f3a3-d6c37c91bcaf	2021-05-27 11:41:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:41:49.951+03	2021-05-27 11:41:49.959+03	
dc68989b-550f-aeab-d867-7a1e7ee53b6f	2021-05-27 11:42:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:42:09.951+03	2021-05-27 11:42:09.959+03	
4a8f633c-f469-ae06-8710-2d3e10d1ff1b	2021-05-27 11:42:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:42:29.951+03	2021-05-27 11:42:29.96+03	
b421b157-faf7-b3ed-2152-d7ec398c19af	2021-05-27 11:42:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:42:50.951+03	2021-05-27 11:42:50.958+03	
8cd471df-9eeb-e09a-0364-c01e84d0c2b0	2021-05-27 11:43:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:43:10.951+03	2021-05-27 11:43:10.959+03	
98237846-3443-d222-8535-cb2c91835bb4	2021-05-27 11:43:30.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:43:30.952+03	2021-05-27 11:43:30.96+03	
69d15a6b-5f3f-fd50-21e8-c0c5c1226e22	2021-05-27 11:43:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:43:51.951+03	2021-05-27 11:43:51.959+03	
e16ea7de-ddf4-b71d-68f1-cdf74a31c17f	2021-05-27 11:44:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:44:11.951+03	2021-05-27 11:44:11.958+03	
0a6465e3-b699-0859-b365-ecd311dc8300	2021-05-27 11:44:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:44:31.951+03	2021-05-27 11:44:31.958+03	
c99c36a5-2f26-86e4-3aa5-a2df19fdcbcc	2021-05-27 11:44:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:44:51.951+03	2021-05-27 11:44:51.96+03	
b884eed5-3c7a-1b5c-4448-9034b0ffa9ed	2021-05-27 11:45:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:45:11.951+03	2021-05-27 11:45:11.958+03	
86d018b2-4a22-3a4b-d1ad-4b324e7e0683	2021-05-27 11:45:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:45:31.951+03	2021-05-27 11:45:31.957+03	
f6c7a828-ef4a-17a8-e759-946f50cb8e59	2021-05-27 11:45:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:45:51.952+03	2021-05-27 11:45:51.96+03	
868c668a-9a56-fafd-984c-fe11d44df51d	2021-05-27 11:46:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:46:12.952+03	2021-05-27 11:46:12.96+03	
28ebbf2e-741e-42a1-cfe9-70ed9d1e1a4a	2021-05-27 11:46:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:46:32.952+03	2021-05-27 11:46:32.959+03	
055c0b7c-6a72-79b3-6e2f-a9b8e84bf2a8	2021-05-27 11:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:46:53.951+03	2021-05-27 11:46:53.958+03	
9ed18e0c-6ffe-e169-6f60-08a77dbb794b	2021-05-27 11:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:47:13.951+03	2021-05-27 11:47:13.959+03	
8be3c7cf-ff2c-ec91-777f-398b59db6aca	2021-05-27 11:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:47:33.951+03	2021-05-27 11:47:33.96+03	
38120c31-44dc-2e0e-574a-0c3fdbc59060	2021-05-27 11:47:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:47:53.951+03	2021-05-27 11:47:53.959+03	
a5e2dd27-63bd-c16b-b981-779ea77a29e1	2021-05-27 11:48:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:48:13.951+03	2021-05-27 11:48:13.958+03	
19b52cb1-b02b-b3d6-72aa-c260be40ff6c	2021-05-27 11:48:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:48:33.951+03	2021-05-27 11:48:33.959+03	
23055a8f-b3c5-c936-7302-97828aeb0beb	2021-05-27 11:48:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:48:53.951+03	2021-05-27 11:48:53.958+03	
a41e6388-3629-ad6b-b198-bddf3ee45072	2021-05-27 11:49:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:49:13.952+03	2021-05-27 11:49:13.959+03	
a85e95e0-dc7f-237c-1778-810647adbe62	2021-05-27 11:49:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:49:34.951+03	2021-05-27 11:49:34.959+03	
9b5feb9c-45f2-1503-5162-51b07e56f5d3	2021-05-27 11:49:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:49:54.951+03	2021-05-27 11:49:54.958+03	
4696cc6e-f48e-3774-01d7-df156ba32da7	2021-05-27 11:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:50:04.951+03	2021-05-27 11:50:04.958+03	
4ec8fa86-5f88-029a-cd70-5b754f7d15d0	2021-05-27 11:50:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:50:24.951+03	2021-05-27 11:50:24.96+03	
b81b67d7-107a-05ed-bb99-6c634d82a1ac	2021-05-27 11:50:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:50:44.951+03	2021-05-27 11:50:44.958+03	
49185d1b-99f4-262e-c28e-feed0e81d251	2021-05-27 11:51:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:51:05.951+03	2021-05-27 11:51:05.959+03	
dbadf724-eec0-f0bb-a0dd-308f1009d043	2021-05-27 11:51:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:51:25.951+03	2021-05-27 11:51:25.958+03	
f9912c67-d0f1-a396-9850-b26be08849d0	2021-05-27 11:51:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:51:45.951+03	2021-05-27 11:51:45.959+03	
c46bb35a-1178-3205-22cb-bb2a2f08172e	2021-05-27 11:52:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:52:05.951+03	2021-05-27 11:52:05.96+03	
740dfbee-f7c6-f59c-482b-0b629c365923	2021-05-27 11:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:31:49.951+03	2021-05-27 11:31:49.959+03	
4d61dcc9-a98f-856d-b63f-05842271b798	2021-05-27 11:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:32:09.951+03	2021-05-27 11:32:09.96+03	
1dd5e4c9-178f-9859-ec73-69911c81c893	2021-05-27 11:32:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:32:29.951+03	2021-05-27 11:32:29.958+03	
04827c09-cce8-39b4-d8db-db9cab048748	2021-05-27 11:32:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:32:49.951+03	2021-05-27 11:32:49.959+03	
d8e28ef3-50b9-399f-a47e-80a4e2f6baeb	2021-05-27 11:33:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:33:09.951+03	2021-05-27 11:33:09.96+03	
eebcff9d-488c-6409-4958-07c1c86a9cf7	2021-05-27 11:33:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:33:29.951+03	2021-05-27 11:33:29.958+03	
125efa97-0741-e01c-e6f0-e16d585d6ddf	2021-05-27 11:33:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:33:49.951+03	2021-05-27 11:33:49.959+03	
8641f8b5-f146-b78c-316e-f8b4b7470e0c	2021-05-27 11:34:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:34:09.951+03	2021-05-27 11:34:09.958+03	
35569fa3-a011-f005-7a99-d3c5fd7ad1ab	2021-05-27 11:34:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:34:29.951+03	2021-05-27 11:34:29.959+03	
72d82396-cdc4-c0a5-9d94-d3c9d8735dd8	2021-05-27 11:34:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:34:49.951+03	2021-05-27 11:34:49.959+03	
c8bd7748-4099-38c0-efd5-bce0934f832d	2021-05-27 11:35:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:35:09.951+03	2021-05-27 11:35:09.959+03	
6c6fe3e8-8ae2-7855-369b-129e6ba79885	2021-05-27 11:35:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:35:29.951+03	2021-05-27 11:35:29.959+03	
15d5fb71-040b-f0d8-c69e-8e0856c4d88d	2021-05-27 11:35:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:35:49.951+03	2021-05-27 11:35:49.957+03	
2945c53e-6c43-9865-2ed1-5dcdfac80728	2021-05-27 11:36:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:36:09.951+03	2021-05-27 11:36:09.958+03	
05c712b7-0723-8e48-46a8-1cd6f96cef57	2021-05-27 11:36:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:36:29.951+03	2021-05-27 11:36:29.958+03	
575df31f-0e64-cf4c-1058-f4680d5ede8b	2021-05-27 11:36:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:36:49.951+03	2021-05-27 11:36:49.958+03	
70ae912e-3c94-0d6c-3fef-d24ca50266fd	2021-05-27 11:37:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:37:09.951+03	2021-05-27 11:37:09.958+03	
d05e5ec7-fe78-bf64-2b7f-9466aeb1f923	2021-05-27 11:37:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:37:29.951+03	2021-05-27 11:37:29.957+03	
3e1ab1bf-ccd6-e574-d4ab-d2170fec8caa	2021-05-27 11:37:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:37:49.951+03	2021-05-27 11:37:49.959+03	
3abb17c8-0584-ff43-13b5-c79a7192643f	2021-05-27 11:38:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:38:09.951+03	2021-05-27 11:38:09.959+03	
139bb23e-546a-59e5-e4d3-250bb76fc7f8	2021-05-27 11:38:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:38:29.951+03	2021-05-27 11:38:29.959+03	
f17f77c5-7051-32ca-63c2-7a8996e9d50f	2021-05-27 11:38:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:38:49.951+03	2021-05-27 11:38:49.959+03	
fae2b9cb-d9b6-26fc-4a60-e1dae9e3c572	2021-05-27 11:39:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:39:09.951+03	2021-05-27 11:39:09.958+03	
12e6a723-b2d2-51b3-258d-c745a36379ea	2021-05-27 11:39:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:39:29.951+03	2021-05-27 11:39:29.958+03	
f202efaf-8b24-b263-170c-df41a3431478	2021-05-27 11:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:39:49.951+03	2021-05-27 11:39:49.958+03	
abf4a612-b347-a4cb-8164-48aff33e82b2	2021-05-27 11:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 11:40:00.951+03	2021-05-27 11:40:00.956+03	ERROR
aa150ed1-bfb8-8a14-8680-97285f9484b6	2021-05-27 11:40:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:40:19.951+03	2021-05-27 11:40:19.958+03	
bbdd5196-ae17-f0c1-7044-bfc44eb7c271	2021-05-27 11:40:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:40:39.951+03	2021-05-27 11:40:39.959+03	
670b4ce4-3dd8-ba7c-1443-4bec22e36658	2021-05-27 11:40:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:40:59.951+03	2021-05-27 11:40:59.96+03	
e7dda0b8-da20-5e1a-37fa-98127ff321d6	2021-05-27 11:41:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:41:19.951+03	2021-05-27 11:41:19.959+03	
200c895a-c9bb-bde6-ba10-bfa88a1c46e5	2021-05-27 11:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:41:39.951+03	2021-05-27 11:41:39.958+03	
bd630a88-574e-d849-23de-746f5cc2af87	2021-05-27 11:41:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:41:59.951+03	2021-05-27 11:41:59.958+03	
d6f12c88-93db-bbdd-5e4d-1885b0b91894	2021-05-27 11:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:42:19.951+03	2021-05-27 11:42:19.961+03	
b3c3bac6-10e4-7404-b5e1-7b2cb72e768a	2021-05-27 11:42:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:42:39.952+03	2021-05-27 11:42:39.96+03	
91d5b11e-c01b-4fcb-8ed4-b6cc80e2f303	2021-05-27 11:43:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:43:00.951+03	2021-05-27 11:43:00.958+03	
3e86d835-46e4-397a-e282-d44f1e2472b6	2021-05-27 11:43:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:43:20.952+03	2021-05-27 11:43:20.96+03	
bde13e74-84c6-f573-e85f-28e5c965e3c1	2021-05-27 11:43:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:43:41.951+03	2021-05-27 11:43:41.96+03	
ba17c2e0-0d8f-6a68-52f6-bdaafdb86486	2021-05-27 11:44:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:44:01.951+03	2021-05-27 11:44:01.962+03	
112e5811-ea02-5b8b-5d1a-50e0d8d032f1	2021-05-27 11:44:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:44:21.951+03	2021-05-27 11:44:21.96+03	
6afcf86c-a560-2fb4-b0ff-1fbe783fbb82	2021-05-27 11:44:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:44:41.951+03	2021-05-27 11:44:41.959+03	
6bb1b47d-9030-7803-db0e-e2d5b26a7f9f	2021-05-27 11:45:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:45:01.951+03	2021-05-27 11:45:01.959+03	
e3a9171c-e025-1aa8-26c2-19e4939a0da5	2021-05-27 11:45:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:45:21.951+03	2021-05-27 11:45:21.959+03	
99b53cbc-9c1b-e94a-16e1-6fa1122fb3ad	2021-05-27 11:45:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:45:41.951+03	2021-05-27 11:45:41.958+03	
5fef767e-563c-8cd2-78b4-ab116a438a29	2021-05-27 11:46:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:46:02.952+03	2021-05-27 11:46:02.959+03	
20d6f13a-4740-1b94-6a9b-0bdec7de2eb0	2021-05-27 11:46:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:46:22.952+03	2021-05-27 11:46:22.959+03	
e7d53119-fc18-60a6-9ffe-5504b3c16a63	2021-05-27 11:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:46:43.951+03	2021-05-27 11:46:43.959+03	
ffa9c1f9-ef6f-03f6-aee5-be7ddaa4ac7c	2021-05-27 11:47:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:47:03.951+03	2021-05-27 11:47:03.958+03	
f5f58095-a96a-c547-f6e9-2a1a7b64ef90	2021-05-27 11:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:47:23.951+03	2021-05-27 11:47:23.959+03	
545ffbeb-ed38-63ff-c436-378be65c95cd	2021-05-27 11:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:47:43.951+03	2021-05-27 11:47:43.959+03	
6004dcb0-4abf-10d2-5abc-b25654eb6d73	2021-05-27 11:48:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:48:03.951+03	2021-05-27 11:48:03.958+03	
13dee512-74d5-77e1-bf6e-275d414a755b	2021-05-27 11:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:48:23.951+03	2021-05-27 11:48:23.958+03	
60dee27a-7bbd-f46e-074d-a92ca4d8ecd8	2021-05-27 11:48:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:48:43.951+03	2021-05-27 11:48:43.958+03	
274d0d6c-e701-4219-9dc7-1a55d0112037	2021-05-27 11:49:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:49:03.951+03	2021-05-27 11:49:03.957+03	
7d14e421-b2ec-f84e-7344-162e42590ce6	2021-05-27 11:49:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:49:24.951+03	2021-05-27 11:49:24.957+03	
6fa47795-9f85-4f78-35be-8961759888b3	2021-05-27 11:49:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:49:44.951+03	2021-05-27 11:49:44.959+03	
5e46f438-0131-c398-e946-bd5769773825	2021-05-27 11:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 11:50:00.951+03	2021-05-27 11:50:00.956+03	ERROR
9bdc74d7-be08-3381-f61d-4127a5bfaef2	2021-05-27 11:50:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:50:14.951+03	2021-05-27 11:50:14.958+03	
03a653e6-946f-40c9-c70b-3aa9968b3f94	2021-05-27 11:50:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:50:34.951+03	2021-05-27 11:50:34.959+03	
9a337051-d5b2-8114-83f9-fd79ba0bcba3	2021-05-27 11:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:50:54.952+03	2021-05-27 11:50:54.959+03	
13a2cc05-ae8c-c710-ff88-2cf9d793d221	2021-05-27 11:51:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:51:15.951+03	2021-05-27 11:51:15.959+03	
020e602b-7ff3-472a-570f-5d9ab9865c2c	2021-05-27 11:51:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:51:35.951+03	2021-05-27 11:51:35.958+03	
ef34671f-d95f-9adf-0e9d-5538208f8acf	2021-05-27 11:51:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:51:55.951+03	2021-05-27 11:51:55.958+03	
6a6fd601-802a-1f53-60da-6a06eff2248b	2021-05-27 11:52:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:52:15.951+03	2021-05-27 11:52:16.007+03	
652143fe-0695-aeab-da59-904526de7733	2021-05-27 11:52:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:52:25.951+03	2021-05-27 11:52:25.958+03	
24181937-fe7f-f4c3-94d2-25844cab4eab	2021-05-27 11:52:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:52:45.951+03	2021-05-27 11:52:45.958+03	
c4f86450-a795-8236-aad7-c9b94083f19c	2021-05-27 11:53:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:53:05.951+03	2021-05-27 11:53:05.957+03	
9dfa6909-998c-226f-1374-831b23d202c7	2021-05-27 11:53:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:53:25.951+03	2021-05-27 11:53:25.959+03	
2fc67a46-b904-ed62-4255-2fc7d90c359f	2021-05-27 11:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:53:45.951+03	2021-05-27 11:53:45.959+03	
28d2ae80-2284-fe1a-9163-c224d7beb6e3	2021-05-27 11:54:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:54:05.951+03	2021-05-27 11:54:05.958+03	
438006c2-5f9c-e22d-7a4c-ebda03fda779	2021-05-27 11:54:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:54:25.951+03	2021-05-27 11:54:25.957+03	
53206a26-b5a7-862e-d226-29b8d90bd85a	2021-05-27 11:54:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:54:45.951+03	2021-05-27 11:54:45.959+03	
e0baa747-2f2d-9a37-6e5c-44db67d7c57e	2021-05-27 11:55:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:55:05.951+03	2021-05-27 11:55:05.957+03	
8743b7e5-1cde-464f-d46e-f8e8d3cd16f3	2021-05-27 11:55:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:55:15.951+03	2021-05-27 11:55:15.96+03	
ffb33fc5-2245-4d31-e079-674c4b642f21	2021-05-27 11:55:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:55:35.951+03	2021-05-27 11:55:35.964+03	
2331351e-a5ac-41e8-cc1d-f55f155a0374	2021-05-27 11:55:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:55:55.951+03	2021-05-27 11:55:55.967+03	
8447ea90-8ddf-e11c-947a-69de756f8ea2	2021-05-27 11:56:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:56:15.951+03	2021-05-27 11:56:15.969+03	
fb687dff-14b4-97e2-e861-2ef874ff29f8	2021-05-27 11:56:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:56:36.951+03	2021-05-27 11:56:36.96+03	
c9caad10-abf0-15a3-5764-cb2783407956	2021-05-27 11:56:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:56:56.952+03	2021-05-27 11:56:56.959+03	
1421eaf6-752b-536a-8bbd-0f89f74e4e65	2021-05-27 11:57:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:57:17.952+03	2021-05-27 11:57:17.967+03	
fb283ac0-f6d4-9458-f119-fce7940dbb3c	2021-05-27 11:57:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:57:37.952+03	2021-05-27 11:57:37.96+03	
af0fedad-21bb-6351-2066-75707e24154e	2021-05-27 11:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:57:58.951+03	2021-05-27 11:57:58.958+03	
5b5246f6-b990-ec32-37a3-f803dd870e10	2021-05-27 11:58:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:58:18.951+03	2021-05-27 11:58:18.958+03	
ed84718b-bac4-05c0-5cfd-84712619e4cc	2021-05-27 11:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:58:38.951+03	2021-05-27 11:58:38.958+03	
fc4c1f29-afd2-2ba0-3d0d-d6c1e23bff68	2021-05-27 11:58:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:58:58.951+03	2021-05-27 11:58:58.96+03	
922b6f66-1761-7acb-89c3-9228f12e465f	2021-05-27 11:59:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:59:18.951+03	2021-05-27 11:59:18.958+03	
65a05e54-dbc8-9c31-69f6-c46b008c4e4c	2021-05-27 11:59:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:59:38.951+03	2021-05-27 11:59:38.958+03	
03caffa2-b77d-978c-018f-220a3dff086d	2021-05-27 11:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:59:58.951+03	2021-05-27 11:59:58.959+03	
18b322d9-9d47-5d0d-885e-0e38c8ff74a3	2021-05-27 12:00:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:00:08.951+03	2021-05-27 12:00:08.959+03	
a17fac00-916f-d119-cafc-a567b7efa2d8	2021-05-27 12:00:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:00:28.951+03	2021-05-27 12:00:28.957+03	
220d4135-d687-d8d1-4334-834ecb259eda	2021-05-27 12:00:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:00:48.951+03	2021-05-27 12:00:48.958+03	
1059db1c-f334-373c-37e7-4cffb72ed199	2021-05-27 12:01:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:01:08.951+03	2021-05-27 12:01:08.959+03	
82c079f3-17d2-e2c6-79f7-da18eec3f8ba	2021-05-27 12:01:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:01:28.951+03	2021-05-27 12:01:28.958+03	
40e896dd-b7f3-b218-923b-e75a42fc7008	2021-05-27 12:01:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:01:49.951+03	2021-05-27 12:01:49.959+03	
e78ef005-2721-d7cc-f8ce-923967a0b1a9	2021-05-27 12:02:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:02:09.951+03	2021-05-27 12:02:09.961+03	
ca676cd1-c6dc-53f8-8cf3-b9c562a775f8	2021-05-27 12:02:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:02:29.951+03	2021-05-27 12:02:29.961+03	
035fc029-2c72-95ae-25e5-9cec276d0f37	2021-05-27 12:02:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:02:49.951+03	2021-05-27 12:02:49.961+03	
242cea18-a254-8414-3268-c24199c0d35a	2021-05-27 12:03:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:03:09.951+03	2021-05-27 12:03:09.962+03	
fead3fb3-0f94-2011-d6e2-12313afa4976	2021-05-27 12:03:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:03:29.951+03	2021-05-27 12:03:29.96+03	
9ed37ee2-0920-69f4-8112-4289fa873d6f	2021-05-27 12:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:03:50.952+03	2021-05-27 12:03:50.961+03	
1a872a0e-3c41-de1a-41ca-8eeb76baab99	2021-05-27 12:04:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:04:11.951+03	2021-05-27 12:04:11.959+03	
828d67c9-7917-b56a-9182-101173f0c8eb	2021-05-27 12:04:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:04:31.951+03	2021-05-27 12:04:31.959+03	
fbce89ce-29af-3437-4552-00db77ce4643	2021-05-27 12:04:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:04:51.951+03	2021-05-27 12:04:51.958+03	
133c0c21-9a0f-300b-c3e8-cbb36385cffd	2021-05-27 12:05:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:05:11.951+03	2021-05-27 12:05:11.959+03	
70c0e66b-f392-7b87-f93b-d48fc42c9864	2021-05-27 12:05:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:05:31.951+03	2021-05-27 12:05:31.959+03	
7e5523ef-b1ac-d8f5-26fd-eb74f75f222d	2021-05-27 12:05:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:05:51.951+03	2021-05-27 12:05:51.959+03	
ef424a42-d99a-5fac-4e1d-6995ad063cb1	2021-05-27 12:06:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:06:11.951+03	2021-05-27 12:06:11.959+03	
fdc8d49c-9867-3e73-b73c-17631ca460e7	2021-05-27 12:06:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:06:31.951+03	2021-05-27 12:06:31.958+03	
514fdfe3-9059-52fc-a1d9-c8b632d1a568	2021-05-27 12:06:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:06:51.951+03	2021-05-27 12:06:51.959+03	
fdfde3d8-bfb8-5c1b-e876-9a47387312eb	2021-05-27 12:07:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:07:11.951+03	2021-05-27 12:07:11.959+03	
b3051e9c-af99-d433-cbe5-f47937fdd921	2021-05-27 12:07:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:07:31.951+03	2021-05-27 12:07:31.959+03	
57e6cee2-2239-ad97-cd4b-916fe78b6d74	2021-05-27 12:07:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:07:51.951+03	2021-05-27 12:07:51.959+03	
80491c10-9350-7e5c-2c66-3624309510d7	2021-05-27 12:08:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:08:11.951+03	2021-05-27 12:08:11.958+03	
bd9902e1-c671-6fe1-baa4-dc2dcfaf9298	2021-05-27 12:08:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:08:31.951+03	2021-05-27 12:08:31.959+03	
4e14dfb8-6e54-42f7-413b-d013dbcd2ffd	2021-05-27 12:08:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:08:51.951+03	2021-05-27 12:08:51.959+03	
e9c50e1b-b7b9-5b19-b038-d1cd37db6982	2021-05-27 12:09:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:09:11.951+03	2021-05-27 12:09:11.959+03	
d6169399-ef1d-bb82-e3cb-06e06fb18da5	2021-05-27 12:09:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:09:31.951+03	2021-05-27 12:09:31.957+03	
906054e1-3bcb-c2e5-e15a-cd0f1b327f8c	2021-05-27 12:09:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:09:51.951+03	2021-05-27 12:09:51.958+03	
b207428a-446f-1f99-e8f8-3f69ccfc65e5	2021-05-27 12:10:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:10:01.951+03	2021-05-27 12:10:01.958+03	
e30ab1d5-f4f4-a1e8-5578-b7268a9a431c	2021-05-27 12:10:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:10:21.951+03	2021-05-27 12:10:21.959+03	
c3285c90-530b-5162-d978-92240b65ea8c	2021-05-27 12:10:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:10:41.951+03	2021-05-27 12:10:41.96+03	
9f5d6dd8-0299-9f52-9e95-897386372d35	2021-05-27 12:11:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:11:01.951+03	2021-05-27 12:11:01.958+03	
fc8b0e00-2e26-fc97-a82c-d64ff25e91c2	2021-05-27 12:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:11:21.951+03	2021-05-27 12:11:21.959+03	
a4d5b243-05d7-ecd8-3806-49e2bd9ae01f	2021-05-27 12:11:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:11:41.951+03	2021-05-27 12:11:41.958+03	
f198f303-4c60-2b52-342d-09d0a43852c0	2021-05-27 12:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:12:01.951+03	2021-05-27 12:12:01.96+03	
3c500d0b-8208-0d97-ca08-2c856f9ba92b	2021-05-27 12:12:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:12:21.951+03	2021-05-27 12:12:21.957+03	
ed0e0cbe-4351-6d24-f533-9a165b5333db	2021-05-27 12:12:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:12:41.951+03	2021-05-27 12:12:41.96+03	
c05650e8-07fa-1cd6-e6fd-0d1b2c59fb14	2021-05-27 11:52:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:52:35.951+03	2021-05-27 11:52:35.959+03	
601f4b1b-4546-f1d1-c802-f90559ef9d15	2021-05-27 11:52:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:52:55.951+03	2021-05-27 11:52:55.957+03	
bc138aac-9606-0e6c-7771-66267f327a1d	2021-05-27 11:53:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:53:15.951+03	2021-05-27 11:53:15.958+03	
429e534a-fc2e-9c21-6544-d1278f3b6475	2021-05-27 11:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:53:35.951+03	2021-05-27 11:53:35.958+03	
0d76c473-b139-e8a9-adf1-49c358e0eb2e	2021-05-27 11:53:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:53:55.951+03	2021-05-27 11:53:55.96+03	
f7ca13f5-fa87-2146-b77e-6b7cfee93896	2021-05-27 11:54:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:54:15.951+03	2021-05-27 11:54:15.96+03	
f484e69b-6b7d-2ee9-8de9-391c0a811505	2021-05-27 11:54:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:54:35.951+03	2021-05-27 11:54:35.958+03	
4ffa218c-ed53-d5e5-5318-072b8949654e	2021-05-27 11:54:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:54:55.951+03	2021-05-27 11:54:55.96+03	
5bdf9396-b5aa-c4c1-0e74-1a4e5a9415e7	2021-05-27 11:55:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:55:25.951+03	2021-05-27 11:55:25.958+03	
4e911ff5-1843-cf8d-27be-bd20dd28d19b	2021-05-27 11:55:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:55:45.951+03	2021-05-27 11:55:45.961+03	
9ac6fb1b-e390-d3ba-05f0-aca9ba5be1b3	2021-05-27 11:56:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:56:05.951+03	2021-05-27 11:56:05.961+03	
edf6d292-0584-ce00-742d-a990fdfeda13	2021-05-27 11:56:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:56:25.952+03	2021-05-27 11:56:25.964+03	
5c3ec918-fdf2-a270-ce41-3486d62db2b2	2021-05-27 11:56:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:56:46.951+03	2021-05-27 11:56:46.958+03	
f9b30e82-d69b-bf9c-e887-1f71d50e0a99	2021-05-27 11:57:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:57:07.952+03	2021-05-27 11:57:07.96+03	
f685f4ee-fbde-088f-cd7c-be52d5d1d7ff	2021-05-27 11:57:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:57:27.952+03	2021-05-27 11:57:27.965+03	
0feb0626-757f-a4d3-b922-1ac2741cd8e8	2021-05-27 11:57:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:57:47.952+03	2021-05-27 11:57:47.96+03	
061d021e-7749-206e-48dd-0e3cbf6245f0	2021-05-27 11:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:58:08.951+03	2021-05-27 11:58:08.96+03	
f50a2a95-7144-f206-0107-0a50d718c210	2021-05-27 11:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:58:28.951+03	2021-05-27 11:58:28.958+03	
0997cea3-00dd-bbf6-234c-c49faf369c75	2021-05-27 11:58:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:58:48.951+03	2021-05-27 11:58:48.959+03	
3e1f619f-18e0-c280-7047-c49d5f057ed2	2021-05-27 11:59:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:59:08.951+03	2021-05-27 11:59:08.958+03	
eb82e956-06ff-7f88-b885-d22256e46837	2021-05-27 11:59:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:59:28.951+03	2021-05-27 11:59:28.957+03	
de45a1da-42dc-9f9b-643d-41352ef5982c	2021-05-27 11:59:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 11:59:48.951+03	2021-05-27 11:59:48.959+03	
9a4693d6-1547-f828-6229-9b3ba808f8ba	2021-05-27 12:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 12:00:00.951+03	2021-05-27 12:00:00.956+03	ERROR
9aeff82f-ed2d-cc42-87a3-ee294a145e8c	2021-05-27 12:00:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:00:18.951+03	2021-05-27 12:00:18.989+03	
0da55867-526f-cfa6-0070-c31e3f541cef	2021-05-27 12:00:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:00:38.951+03	2021-05-27 12:00:38.96+03	
d034122b-494c-fef8-964c-46de7fba60a4	2021-05-27 12:00:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:00:58.951+03	2021-05-27 12:00:58.957+03	
370de8a4-0e17-a7b7-434b-c5698252befb	2021-05-27 12:01:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:01:18.951+03	2021-05-27 12:01:18.959+03	
ab378fe4-504f-35e5-ad7f-1131c4b9f827	2021-05-27 12:01:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:01:38.952+03	2021-05-27 12:01:38.959+03	
7dd5f09f-e75f-4e00-af29-eccc439ac1c1	2021-05-27 12:01:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:01:59.951+03	2021-05-27 12:01:59.962+03	
e53187df-e369-0cb8-f1ba-ce275240c8a6	2021-05-27 12:02:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:02:19.951+03	2021-05-27 12:02:19.961+03	
1c167527-f09a-1326-d324-d10268a9dcf8	2021-05-27 12:02:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:02:39.951+03	2021-05-27 12:02:39.964+03	
efbc5166-7d04-195a-f442-77aac1754796	2021-05-27 12:02:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:02:59.951+03	2021-05-27 12:02:59.958+03	
4cf64a7f-eb6d-4836-9295-ed757a3ef9d9	2021-05-27 12:03:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:03:19.951+03	2021-05-27 12:03:19.958+03	
6c6e6113-f88e-3ec5-e69f-cfb1152e4d27	2021-05-27 12:03:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:03:39.952+03	2021-05-27 12:03:39.964+03	
d3809f8c-4c8d-dc19-d2aa-eb9dc0b1ec6c	2021-05-27 12:04:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:04:01.951+03	2021-05-27 12:04:01.96+03	
baddc055-696c-e4d9-7b5b-27cdc98928ef	2021-05-27 12:04:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:04:21.951+03	2021-05-27 12:04:21.96+03	
8cbb4e3f-d498-bbc0-2bc7-89f468d83e80	2021-05-27 12:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:04:41.951+03	2021-05-27 12:04:41.96+03	
c89d9430-0ca9-acb6-830c-2a4a4335b74b	2021-05-27 12:05:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:05:01.951+03	2021-05-27 12:05:01.958+03	
8840fb4b-5b51-d5cc-10e4-0a33184c33a7	2021-05-27 12:05:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:05:21.951+03	2021-05-27 12:05:21.958+03	
c250adf2-98c5-6f91-dfab-5a76569b0e7a	2021-05-27 12:05:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:05:41.951+03	2021-05-27 12:05:41.959+03	
a211c023-83f6-df47-0aba-06538e3c3e80	2021-05-27 12:06:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:06:01.951+03	2021-05-27 12:06:01.96+03	
36d6184d-631f-f11f-1f93-65990c965375	2021-05-27 12:06:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:06:21.951+03	2021-05-27 12:06:21.959+03	
c43b7b94-d9d5-712e-8e23-58473d636e4f	2021-05-27 12:06:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:06:41.951+03	2021-05-27 12:06:41.958+03	
8f5f9349-81d6-fa90-f147-056a8dd73ca4	2021-05-27 12:07:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:07:01.951+03	2021-05-27 12:07:01.958+03	
ab6b3dbc-c966-e7d0-4c21-040dffcf179a	2021-05-27 12:07:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:07:21.951+03	2021-05-27 12:07:21.959+03	
d19174e9-41e3-3146-bd7d-e3a8970b95d9	2021-05-27 12:07:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:07:41.951+03	2021-05-27 12:07:41.959+03	
88b87dd9-5ed7-6c23-68ed-26f58b785cc0	2021-05-27 12:08:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:08:01.951+03	2021-05-27 12:08:01.959+03	
2ec54993-d789-de68-c801-902e87fe2c27	2021-05-27 12:08:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:08:21.951+03	2021-05-27 12:08:21.96+03	
8e99ce76-ad48-731d-a644-8e9907b2c1a0	2021-05-27 12:08:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:08:41.951+03	2021-05-27 12:08:41.957+03	
68270798-5b73-358b-2bbb-7d5bfd7e8f0a	2021-05-27 12:09:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:09:01.951+03	2021-05-27 12:09:01.958+03	
ef2299d9-db0f-c4bc-e920-1ffae6c2fbd4	2021-05-27 12:09:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:09:21.951+03	2021-05-27 12:09:21.959+03	
4a27dea0-4cc3-3015-fb1b-4682628f2409	2021-05-27 12:09:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:09:41.951+03	2021-05-27 12:09:41.959+03	
556aa746-da4f-11d8-229d-ac0969682b5d	2021-05-27 12:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 12:10:00.951+03	2021-05-27 12:10:00.955+03	ERROR
13687b20-5623-c8f4-ffe0-5ef4d039c953	2021-05-27 12:10:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:10:11.951+03	2021-05-27 12:10:11.959+03	
397ea977-f328-3150-5073-19fd468f1e02	2021-05-27 12:10:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:10:31.951+03	2021-05-27 12:10:31.958+03	
44a752c2-dcef-de56-37cd-f645ebd3f15d	2021-05-27 12:10:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:10:51.951+03	2021-05-27 12:10:51.959+03	
95a59c88-395c-0e93-9de8-92036ea86f27	2021-05-27 12:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:11:11.951+03	2021-05-27 12:11:11.959+03	
927227c7-8b33-2dc3-1bb9-f59a7ef76500	2021-05-27 12:11:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:11:31.951+03	2021-05-27 12:11:31.97+03	
8333ffe8-d3fb-713c-ffb4-9f2aa4f56322	2021-05-27 12:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:11:51.951+03	2021-05-27 12:11:51.959+03	
a0085c61-7b60-a2cb-bb43-c7456a98c2e7	2021-05-27 12:12:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:12:11.951+03	2021-05-27 12:12:11.958+03	
e23bef18-5140-90eb-c65b-e151737e39f6	2021-05-27 12:12:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:12:31.951+03	2021-05-27 12:12:31.959+03	
5094dcf0-7ce1-8ed1-bcdf-93c662c66f5d	2021-05-27 12:12:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:12:51.951+03	2021-05-27 12:12:51.96+03	
8bb877b8-1fdb-1e52-7206-7f3564358c07	2021-05-27 12:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:13:11.951+03	2021-05-27 12:13:11.96+03	
d4e517b8-b7e9-509a-38d7-1c58daa7c23f	2021-05-27 12:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:13:01.951+03	2021-05-27 12:13:01.959+03	
7b63062b-210e-82ef-c3ff-41bc6e4dbbb7	2021-05-27 12:13:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:13:21.951+03	2021-05-27 12:13:21.958+03	
fdfa56e2-12a8-7294-5644-00c588cd69d4	2021-05-27 12:13:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:13:41.951+03	2021-05-27 12:13:41.961+03	
6c100bc9-e257-c39a-e42e-c81fc8f7a932	2021-05-27 12:14:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:14:01.951+03	2021-05-27 12:14:01.958+03	
10e895ed-e42a-2bb7-4743-f9bcc48fb374	2021-05-27 12:14:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:14:21.951+03	2021-05-27 12:14:21.958+03	
0bb0dc43-9a2a-3511-be1f-110eaa9d6ed2	2021-05-27 12:14:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:14:41.951+03	2021-05-27 12:14:41.958+03	
90e99b19-467f-82c3-6ba9-611f1dbf1165	2021-05-27 12:15:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:15:01.951+03	2021-05-27 12:15:01.96+03	
a9196c06-6e3c-8006-eee1-4ba5cdd7ac64	2021-05-27 12:15:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:15:21.951+03	2021-05-27 12:15:21.959+03	
472bc309-9b94-ae5f-b2b0-d31bbca04846	2021-05-27 12:15:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:15:41.952+03	2021-05-27 12:15:41.959+03	
6cf70326-3550-9618-b5da-dc52aa2cabc6	2021-05-27 12:16:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:16:03.951+03	2021-05-27 12:16:03.958+03	
9f4aede7-be46-2014-8ecf-a76f8cf2f82f	2021-05-27 12:16:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:16:23.951+03	2021-05-27 12:16:23.958+03	
a76d9917-db51-55c9-288f-c23a071bae8c	2021-05-27 12:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:16:43.951+03	2021-05-27 12:16:43.959+03	
57d0986f-f9da-4766-ea75-8ae244797650	2021-05-27 12:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:17:03.951+03	2021-05-27 12:17:03.958+03	
cc88f5ce-57e2-35f1-2c84-e96053d783d9	2021-05-27 12:17:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:17:23.951+03	2021-05-27 12:17:23.957+03	
27d038ef-8a2c-e594-3875-06f079ee78d8	2021-05-27 12:17:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:17:43.951+03	2021-05-27 12:17:43.96+03	
02e39f25-4ac0-3b3d-7a73-f8c508e6b05f	2021-05-27 12:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:18:03.951+03	2021-05-27 12:18:03.959+03	
21d6050b-e0d7-1be6-ff31-72e764a23314	2021-05-27 12:18:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:18:23.951+03	2021-05-27 12:18:23.958+03	
6a6a3006-0b91-4251-44c6-bcdb1c83ca57	2021-05-27 12:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:18:43.951+03	2021-05-27 12:18:43.962+03	
0b3fa80d-c64a-07a4-af19-09936246e8c2	2021-05-27 12:19:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:19:03.951+03	2021-05-27 12:19:03.959+03	
dacf6da5-54f7-b477-dfa9-409e42e98623	2021-05-27 12:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:19:23.951+03	2021-05-27 12:19:23.959+03	
6128fab2-5d15-9476-dd2a-cda5f2c6b8cf	2021-05-27 12:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:19:43.951+03	2021-05-27 12:19:43.958+03	
c2c1d157-e2b7-b6d3-5e77-1eeb7a168702	2021-05-27 12:20:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 12:20:00.951+03	2021-05-27 12:20:00.956+03	ERROR
5601b96d-2ba6-5726-4f93-7478fc26c3cd	2021-05-27 12:20:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:20:13.951+03	2021-05-27 12:20:13.957+03	
b453456d-d2bf-842f-2158-4f1b729a0351	2021-05-27 12:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:20:33.951+03	2021-05-27 12:20:33.96+03	
b5cdfc32-4a42-56ae-e01c-8cad6b643b38	2021-05-27 12:20:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:20:53.951+03	2021-05-27 12:20:53.958+03	
bb65f6e0-2f7a-2834-a631-a5a6d747c412	2021-05-27 12:21:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:21:13.951+03	2021-05-27 12:21:13.959+03	
8cb76e00-3cf8-e555-c0bc-a07711b50c95	2021-05-27 12:21:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:21:33.951+03	2021-05-27 12:21:33.958+03	
d95f948b-7cb5-b9a6-800e-1de9a5e8c3d9	2021-05-27 12:21:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:21:53.951+03	2021-05-27 12:21:53.959+03	
bf36f16b-370a-e213-842d-82088bb925d9	2021-05-27 12:22:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:22:13.951+03	2021-05-27 12:22:13.966+03	
f574b4a7-70bd-0543-0947-19947c8b397e	2021-05-27 12:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:22:33.951+03	2021-05-27 12:22:33.966+03	
b0d500e1-6f76-aa7d-cc8e-48fc3fe6f5eb	2021-05-27 12:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:22:53.951+03	2021-05-27 12:22:53.959+03	
4a27c611-4692-ca88-97d7-f6ad6100e08e	2021-05-27 12:23:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:23:13.951+03	2021-05-27 12:23:13.961+03	
a5a33623-7255-f943-4065-131ca9f15979	2021-05-27 12:23:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:23:33.951+03	2021-05-27 12:23:33.959+03	
d572e0fd-aa39-8f50-9fcd-6036cc251212	2021-05-27 12:23:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:23:53.951+03	2021-05-27 12:23:53.959+03	
534a16a0-f7e4-59e0-4b5f-e6aaa0616f2b	2021-05-27 12:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:24:13.952+03	2021-05-27 12:24:13.961+03	
8ed12586-c453-c654-34ac-ca3b16e3465e	2021-05-27 12:24:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:24:34.951+03	2021-05-27 12:24:34.958+03	
f7130eef-e205-d22c-ae90-8f195cf40593	2021-05-27 12:24:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:24:54.951+03	2021-05-27 12:24:54.959+03	
3415cf9e-cbaa-e8c3-e8d4-b30f4567cf0a	2021-05-27 12:25:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:25:14.951+03	2021-05-27 12:25:14.958+03	
fd976679-d6b2-57ff-cd14-744a5678ed48	2021-05-27 12:25:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:25:34.951+03	2021-05-27 12:25:34.96+03	
9cb0d68c-b367-832d-c8b6-f9a9f22f1bac	2021-05-27 12:25:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:25:54.951+03	2021-05-27 12:25:54.958+03	
107ef626-b89a-cf5e-bd0b-dda0ec0cfe2c	2021-05-27 12:26:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:26:15.951+03	2021-05-27 12:26:15.959+03	
fcfa2223-22c1-6e7a-da8d-63ecdceada15	2021-05-27 12:26:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:26:35.951+03	2021-05-27 12:26:35.959+03	
aff83ce2-180b-c978-a5b2-ae0be03ade8f	2021-05-27 12:26:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:26:55.951+03	2021-05-27 12:26:55.958+03	
853f002d-520f-ddfc-37b9-103f0777eddb	2021-05-27 12:27:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:27:15.951+03	2021-05-27 12:27:15.958+03	
daab3af5-3f84-aee4-6fb3-df45deeacf23	2021-05-27 12:27:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:27:35.951+03	2021-05-27 12:27:35.959+03	
6c3827ee-593a-efaa-fb54-ca5b3350cca6	2021-05-27 12:27:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:27:55.951+03	2021-05-27 12:27:55.958+03	
88501512-461a-536e-6822-e22ef8f92b27	2021-05-27 12:28:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:28:15.951+03	2021-05-27 12:28:15.959+03	
965b9f28-2d79-3e07-4aa7-f0e69e0771b7	2021-05-27 12:28:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:28:35.951+03	2021-05-27 12:28:35.96+03	
eb6dc942-f0b1-a437-a5b4-9aa98be1f330	2021-05-27 12:28:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:28:55.951+03	2021-05-27 12:28:55.958+03	
49debf55-0895-5f52-73f1-c76013ed6143	2021-05-27 12:29:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:29:15.951+03	2021-05-27 12:29:15.96+03	
3bcb55ff-d1e7-7214-e4d6-ddea1d2fdd46	2021-05-27 12:29:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:29:36.951+03	2021-05-27 12:29:36.96+03	
b05f9b21-e8d9-3e11-a0d1-f67e1be9555c	2021-05-27 12:29:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:29:56.951+03	2021-05-27 12:29:56.96+03	
5e34bfff-77db-7f2b-9fd4-71622bd0e95c	2021-05-27 12:30:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:30:06.951+03	2021-05-27 12:30:06.959+03	
6e5b3680-f5a9-dc55-0ed6-e0f873a3b298	2021-05-27 12:30:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:30:27.952+03	2021-05-27 12:30:27.96+03	
b931c77f-f846-1205-ae35-aee7972e7085	2021-05-27 12:30:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:30:48.951+03	2021-05-27 12:30:48.958+03	
5d413d54-d920-b133-a2b4-c5016669a26a	2021-05-27 12:31:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:31:08.951+03	2021-05-27 12:31:08.958+03	
36bcb15a-6b96-21e2-cd51-4ae5dc4bd706	2021-05-27 12:31:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:31:29.951+03	2021-05-27 12:31:29.957+03	
3e62e110-9691-cf95-c568-14290f39de33	2021-05-27 12:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:31:49.951+03	2021-05-27 12:31:49.959+03	
7bb285f7-76eb-8987-2066-03cd14ecc801	2021-05-27 12:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:32:09.951+03	2021-05-27 12:32:09.957+03	
5a4ffdfc-2a46-8998-cbba-313cfec832ca	2021-05-27 12:32:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:32:30.951+03	2021-05-27 12:32:30.958+03	
d348e90c-4751-6b17-3c26-65975e461f0b	2021-05-27 12:32:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:32:50.951+03	2021-05-27 12:32:50.957+03	
409d3eba-51f4-d0c6-1abd-82c4f3aed8a5	2021-05-27 12:33:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:33:10.951+03	2021-05-27 12:33:10.959+03	
c3f31dcb-e44d-8461-4282-21184c307519	2021-05-27 12:33:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:33:30.951+03	2021-05-27 12:33:30.961+03	
45dca332-5b10-6845-a278-70677ff9a2c6	2021-05-27 12:13:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:13:31.951+03	2021-05-27 12:13:31.958+03	
5f48f23a-bda6-1291-19e4-a77b72a4ee95	2021-05-27 12:13:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:13:51.951+03	2021-05-27 12:13:51.959+03	
3e461bdd-9c5c-d260-f1bc-67ea95f7d63e	2021-05-27 12:14:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:14:11.951+03	2021-05-27 12:14:11.958+03	
7293ca76-72b7-295c-0546-c1f155fcb890	2021-05-27 12:14:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:14:31.951+03	2021-05-27 12:14:31.959+03	
3476cb3a-44a4-6fb9-290a-2b4a640fd9b3	2021-05-27 12:14:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:14:51.951+03	2021-05-27 12:14:51.958+03	
9c562228-9569-1e18-fca5-01f77cf63aa1	2021-05-27 12:15:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:15:11.951+03	2021-05-27 12:15:11.958+03	
e17913d7-01ed-2233-1c9d-8ebe403f70df	2021-05-27 12:15:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:15:31.952+03	2021-05-27 12:15:31.961+03	
4bb46bdb-3550-653d-810d-95a105adb891	2021-05-27 12:15:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:15:52.952+03	2021-05-27 12:15:52.961+03	
626f7eb1-b1ee-9ae6-850b-debdcbec2f98	2021-05-27 12:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:16:13.951+03	2021-05-27 12:16:13.959+03	
bcbc46a6-0d3f-6a1a-eacd-41176bd65da8	2021-05-27 12:16:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:16:33.951+03	2021-05-27 12:16:33.96+03	
0d6f2dd1-fe41-0f0f-1d19-8f7f353ed4cd	2021-05-27 12:16:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:16:53.951+03	2021-05-27 12:16:53.959+03	
160c0df0-2424-b87f-d10e-1acb7a39d15a	2021-05-27 12:17:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:17:13.951+03	2021-05-27 12:17:13.958+03	
b79c9c9e-3fda-8573-b691-63181c06db56	2021-05-27 12:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:17:33.951+03	2021-05-27 12:17:33.963+03	
507bbf87-acd9-20bf-94f7-1746a317a3ac	2021-05-27 12:17:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:17:53.951+03	2021-05-27 12:17:53.958+03	
dbeb90f9-03a5-002f-e5bf-fde5a0d180a1	2021-05-27 12:18:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:18:13.951+03	2021-05-27 12:18:13.959+03	
34adb65d-9569-d76b-5069-1b8528ce449c	2021-05-27 12:18:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:18:33.951+03	2021-05-27 12:18:33.958+03	
00d7f714-bee9-e004-7b93-259ff4895e8d	2021-05-27 12:18:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:18:53.951+03	2021-05-27 12:18:53.959+03	
fda099bc-9c90-e905-2700-4252f1eb8534	2021-05-27 12:19:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:19:13.951+03	2021-05-27 12:19:13.957+03	
8364b43d-eab7-4a14-02ca-b9863ea196e7	2021-05-27 12:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:19:33.951+03	2021-05-27 12:19:33.959+03	
19002195-2618-55e4-cf00-820279afd08b	2021-05-27 12:19:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:19:53.951+03	2021-05-27 12:19:53.959+03	
b0789c84-25b9-f43e-5416-a0fbb20eefb1	2021-05-27 12:20:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:20:03.951+03	2021-05-27 12:20:03.958+03	
7cdfd5e6-83e4-f348-bab0-aac18da5ae5e	2021-05-27 12:20:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:20:23.951+03	2021-05-27 12:20:23.958+03	
dbff80f1-4592-bcb2-27dd-f05f03fd0c4b	2021-05-27 12:20:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:20:43.951+03	2021-05-27 12:20:43.959+03	
1fc9a9b4-c16b-6a82-bcf5-9a1105900c22	2021-05-27 12:21:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:21:03.951+03	2021-05-27 12:21:03.958+03	
d388e735-8142-6819-3894-d8df535abda2	2021-05-27 12:21:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:21:23.951+03	2021-05-27 12:21:23.959+03	
61bc1f2a-16be-e14a-779c-5bd3ce8b1307	2021-05-27 12:21:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:21:43.951+03	2021-05-27 12:21:43.958+03	
8d770d0c-dd47-8347-7720-f35011349ce7	2021-05-27 12:22:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:22:03.951+03	2021-05-27 12:22:03.958+03	
2b56b01e-94ae-572c-fc32-2f051b84b7e5	2021-05-27 12:22:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:22:23.951+03	2021-05-27 12:22:23.957+03	
481fda9e-97e7-d91b-8dd6-c659a850f1aa	2021-05-27 12:22:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:22:43.951+03	2021-05-27 12:22:43.959+03	
4829ed7a-0882-cee3-3fb0-828c417b6ae8	2021-05-27 12:23:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:23:03.951+03	2021-05-27 12:23:03.96+03	
510ad892-347c-4570-6502-c8b09dc87a86	2021-05-27 12:23:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:23:23.951+03	2021-05-27 12:23:23.958+03	
f097f178-130b-3fd8-d795-61a59dd081f9	2021-05-27 12:23:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:23:43.951+03	2021-05-27 12:23:44.011+03	
129b6565-def5-ae44-ebef-bfc12a5abeea	2021-05-27 12:24:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:24:03.951+03	2021-05-27 12:24:03.958+03	
ca87ca4f-0859-5f6b-01ce-1b664ad94e71	2021-05-27 12:24:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:24:24.951+03	2021-05-27 12:24:24.958+03	
ef120a86-c02a-c455-1f49-c6447d81db8e	2021-05-27 12:24:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:24:44.951+03	2021-05-27 12:24:44.959+03	
6171a8d7-edcc-236d-a0a3-239377cd0544	2021-05-27 12:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:25:04.951+03	2021-05-27 12:25:04.96+03	
644793e9-d035-c384-62e6-36624236c935	2021-05-27 12:25:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:25:24.951+03	2021-05-27 12:25:24.958+03	
279df77c-9879-0171-8c97-4a53181cb76e	2021-05-27 12:25:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:25:44.951+03	2021-05-27 12:25:44.958+03	
cd72f81b-541a-f4e7-6e98-9155d480d8b8	2021-05-27 12:26:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:26:04.952+03	2021-05-27 12:26:04.96+03	
325b24a4-1e50-a0fc-be54-5dc3d56f8480	2021-05-27 12:26:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:26:25.951+03	2021-05-27 12:26:25.959+03	
563a02f3-04e8-35d5-2a77-3df8c38f4cbe	2021-05-27 12:26:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:26:45.951+03	2021-05-27 12:26:45.959+03	
4cdf8214-0e05-f3e2-89a0-812ca744cc7c	2021-05-27 12:27:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:27:05.951+03	2021-05-27 12:27:05.958+03	
5d7881f4-d387-ca7d-a06b-aa93cab4c7a8	2021-05-27 12:27:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:27:25.951+03	2021-05-27 12:27:25.957+03	
404aacb9-2f31-6e3d-7892-2775d04e37e0	2021-05-27 12:27:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:27:45.951+03	2021-05-27 12:27:45.958+03	
d7014522-ad1d-0c0e-9d7b-f461333d1676	2021-05-27 12:28:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:28:05.951+03	2021-05-27 12:28:05.958+03	
003df8dc-93aa-5d80-af09-4bca25b079c1	2021-05-27 12:28:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:28:25.951+03	2021-05-27 12:28:25.96+03	
7fa95172-917c-8b3f-7403-9c7f9610edcd	2021-05-27 12:28:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:28:45.951+03	2021-05-27 12:28:45.959+03	
fc5b465a-032b-141b-0a54-3f81baec1568	2021-05-27 12:29:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:29:05.951+03	2021-05-27 12:29:05.958+03	
e0028c1c-c9d1-3172-eab0-72904b5572ef	2021-05-27 12:29:25.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:29:25.952+03	2021-05-27 12:29:25.961+03	
f12bcf9b-81a6-b5b7-28b1-628ecd1f4f28	2021-05-27 12:29:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:29:46.951+03	2021-05-27 12:29:46.959+03	
e552f5ff-79d6-e777-48d1-b7c8ac0b1258	2021-05-27 12:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 12:30:00.951+03	2021-05-27 12:30:00.957+03	ERROR
7fe650eb-87c2-731b-028e-381fa0ca5bce	2021-05-27 12:30:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:30:16.952+03	2021-05-27 12:30:16.959+03	
34e9613b-aebc-e07e-d924-dc9c55e080f6	2021-05-27 12:30:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:30:38.951+03	2021-05-27 12:30:38.96+03	
3edd70c0-3bc2-86af-35dd-9059054e67f7	2021-05-27 12:30:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:30:58.951+03	2021-05-27 12:30:58.959+03	
01d0e3da-ed0e-e574-eca0-4a051f7ea928	2021-05-27 12:31:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:31:18.952+03	2021-05-27 12:31:18.96+03	
04ec53d7-cb40-ba65-a3e4-206d0da8d9e9	2021-05-27 12:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:31:39.951+03	2021-05-27 12:31:39.959+03	
340dc305-7c6c-9145-2de1-027fa6a60ffb	2021-05-27 12:31:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:31:59.951+03	2021-05-27 12:31:59.963+03	
2a9c881c-cfe1-64f0-997c-e98eb4277b8a	2021-05-27 12:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:32:19.952+03	2021-05-27 12:32:19.961+03	
13b3de42-aade-7592-6856-a5bc8dfc0261	2021-05-27 12:32:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:32:40.951+03	2021-05-27 12:32:40.958+03	
b32d63f7-2e83-3284-508a-1ea2a7c07179	2021-05-27 12:33:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:33:00.951+03	2021-05-27 12:33:00.961+03	
a1b12836-461f-b4c5-181a-c91925723162	2021-05-27 12:33:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:33:20.951+03	2021-05-27 12:33:20.958+03	
c0399ad3-9a6d-5094-9da1-1cd5d8312e02	2021-05-27 12:33:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:33:40.951+03	2021-05-27 12:33:40.961+03	
4238f2e2-8be3-7140-e368-952bfc7d67a5	2021-05-27 12:34:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:34:00.951+03	2021-05-27 12:34:00.958+03	
1911c588-7107-a6f4-3b2b-2a275471b502	2021-05-27 12:33:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:33:50.951+03	2021-05-27 12:33:50.96+03	
ae258009-3b44-bce3-3280-d181decf9d42	2021-05-27 12:34:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:34:10.951+03	2021-05-27 12:34:10.958+03	
a7c35725-790e-2895-bdaa-19cedd271805	2021-05-27 12:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:34:30.951+03	2021-05-27 12:34:30.959+03	
05ee402e-61a0-5b94-e7dd-64353f6b13b8	2021-05-27 12:34:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:34:51.951+03	2021-05-27 12:34:51.961+03	
ce9e3f60-ed2b-20b0-699a-77adcedd2f74	2021-05-27 12:35:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:35:11.951+03	2021-05-27 12:35:11.959+03	
bb3e60b5-b979-325f-dc63-e8e59ff2867e	2021-05-27 12:35:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:35:31.951+03	2021-05-27 12:35:31.96+03	
98c492a9-b42e-489f-9f0a-f3ac53e2da7f	2021-05-27 12:35:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:35:52.952+03	2021-05-27 12:35:52.959+03	
d95c51ed-9624-c584-6e7b-370f796e86ba	2021-05-27 12:36:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:36:13.951+03	2021-05-27 12:36:13.958+03	
f244a55d-379c-a336-5b5b-f8d72848084b	2021-05-27 12:36:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:36:33.951+03	2021-05-27 12:36:33.959+03	
25bc57d1-e43d-427c-68f6-a7e4ead082fd	2021-05-27 12:36:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:36:53.951+03	2021-05-27 12:36:53.96+03	
1467f41a-7bcb-d557-a0fa-2f44633be0ec	2021-05-27 12:37:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:37:13.951+03	2021-05-27 12:37:13.961+03	
178c6942-86e9-9a36-c143-9598c9a4936c	2021-05-27 12:37:33.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:37:33.952+03	2021-05-27 12:37:33.964+03	
c5a06b85-e6d3-0034-e38d-62eb0cfaf393	2021-05-27 12:37:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:37:54.951+03	2021-05-27 12:37:54.959+03	
a762d4ef-3ae1-74ee-453c-fa21a90f6f2a	2021-05-27 12:38:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:38:14.951+03	2021-05-27 12:38:14.959+03	
a787de07-df0b-2e9e-85bc-60833a95e211	2021-05-27 12:38:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:38:34.951+03	2021-05-27 12:38:34.962+03	
a8f1da14-f21f-d9db-47f9-3103fcae580f	2021-05-27 12:38:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:38:54.951+03	2021-05-27 12:38:54.957+03	
1e08ddc9-fcfe-b70c-133b-145843a011f1	2021-05-27 12:39:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:39:14.951+03	2021-05-27 12:39:14.958+03	
f92e6845-c51b-2ed4-b965-4123ae5e0d5a	2021-05-27 12:39:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:39:35.951+03	2021-05-27 12:39:35.959+03	
6f0c0b87-b602-1a89-162c-4e08e61a20b2	2021-05-27 12:39:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:39:56.951+03	2021-05-27 12:39:56.958+03	
fc09ff63-0227-66f0-129b-2b7c905770fc	2021-05-27 12:40:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:40:06.951+03	2021-05-27 12:40:06.959+03	
4b25f8a8-4a85-9d6d-d47d-68d026a360b4	2021-05-27 12:40:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:40:27.951+03	2021-05-27 12:40:27.959+03	
9f6442c8-3a6f-3f62-9a40-66abbe1dfdaf	2021-05-27 12:40:47.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:40:47.951+03	2021-05-27 12:40:47.958+03	
68d77ff8-7abf-60ad-71dc-b598ed2b7619	2021-05-27 12:41:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:41:07.952+03	2021-05-27 12:41:07.959+03	
ba46a963-cb81-f042-da7e-f272b3bbd687	2021-05-27 12:41:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:41:28.951+03	2021-05-27 12:41:28.958+03	
f138b56d-a952-55c9-02e2-7208711561e4	2021-05-27 12:41:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:41:48.952+03	2021-05-27 12:41:48.958+03	
715ea01d-a779-c053-43c0-586924eb39e0	2021-05-27 12:42:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:42:10.951+03	2021-05-27 12:42:10.958+03	
9162c8fc-8e11-63ba-b6ba-b8bcbad13c30	2021-05-27 12:42:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:42:30.951+03	2021-05-27 12:42:30.959+03	
0893a488-2f41-8b95-f2e5-441689fc6b61	2021-05-27 12:42:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:42:50.951+03	2021-05-27 12:42:50.957+03	
de01c7e2-a575-689b-8656-45c45c056b9a	2021-05-27 12:43:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:43:10.951+03	2021-05-27 12:43:10.957+03	
27b4e8e3-c480-cb71-1742-a9e43e14521a	2021-05-27 12:43:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:43:30.951+03	2021-05-27 12:43:30.961+03	
a5b27cf4-3ad6-7e8e-f337-aeef5fdd7e94	2021-05-27 12:43:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:43:51.951+03	2021-05-27 12:43:51.96+03	
12ac8eda-90df-de60-2c0d-a405a61f3aa1	2021-05-27 12:44:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:44:11.951+03	2021-05-27 12:44:11.958+03	
696092df-d44b-9a74-1766-7708adea3a3a	2021-05-27 12:44:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:44:31.951+03	2021-05-27 12:44:31.96+03	
230ec9ec-cc5a-5f83-ae64-5f48f0f8663e	2021-05-27 12:44:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:44:51.951+03	2021-05-27 12:44:51.959+03	
41934bb9-4537-f6ac-d8bd-ebe66c5a0972	2021-05-27 12:45:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:45:11.951+03	2021-05-27 12:45:11.959+03	
80b97629-9a22-7465-855a-f8066d8e87a1	2021-05-27 12:45:31.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:45:31.956+03	2021-05-27 12:45:31.963+03	
d96fe37b-9a17-0210-1c93-a0ed7fb67d8e	2021-05-27 12:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:45:53.951+03	2021-05-27 12:45:53.959+03	
145a79d0-480b-55b1-5cab-7c9a02c4de10	2021-05-27 12:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:46:13.951+03	2021-05-27 12:46:13.959+03	
aca68cdc-75cb-f94f-6d61-c631463cde6c	2021-05-27 12:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:46:33.951+03	2021-05-27 12:46:33.958+03	
f2063326-503a-3f4f-1130-8fadee9a3063	2021-05-27 12:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:46:53.951+03	2021-05-27 12:46:53.959+03	
9a9b9ae4-4aad-f9c5-9e87-16a1f04e60c6	2021-05-27 12:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:47:13.951+03	2021-05-27 12:47:13.972+03	
ab204625-0ffd-36fd-717d-eb27c1cbcd89	2021-05-27 12:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:47:34.951+03	2021-05-27 12:47:34.958+03	
2400f9de-8fc0-ccf1-e946-fe033ee1d36f	2021-05-27 12:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:47:54.951+03	2021-05-27 12:47:54.958+03	
ef236fec-a04a-e145-d7ab-fb9348c80dcb	2021-05-27 12:48:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:48:14.951+03	2021-05-27 12:48:14.958+03	
3b405e7e-68a9-de44-2921-73ac8cc7b1f7	2021-05-27 12:48:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:48:34.951+03	2021-05-27 12:48:34.959+03	
99dcc721-e8df-fa78-6d18-377ca23663f2	2021-05-27 12:48:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:48:54.951+03	2021-05-27 12:48:54.958+03	
f77646b7-f28c-76db-055f-7aad5dbffbe1	2021-05-27 12:49:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:49:14.951+03	2021-05-27 12:49:14.959+03	
34c5a44b-9031-f57c-2546-7ad982be01a8	2021-05-27 12:49:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:49:34.951+03	2021-05-27 12:49:34.959+03	
00ff25e8-7990-de3a-87d9-4e5aeeaecd1e	2021-05-27 12:49:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:49:54.951+03	2021-05-27 12:49:54.958+03	
7de69a9b-b1d0-e852-2d0b-0a28d2e673d2	2021-05-27 12:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:50:04.951+03	2021-05-27 12:50:04.959+03	
f77df189-f98a-5be8-1d63-a7c1adea5692	2021-05-27 12:50:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:50:24.951+03	2021-05-27 12:50:24.958+03	
51020382-3bc9-aa99-3026-785081368597	2021-05-27 12:50:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:50:44.951+03	2021-05-27 12:50:44.957+03	
1fd179f8-b416-1866-34cc-3afd147345e2	2021-05-27 12:51:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:51:04.951+03	2021-05-27 12:51:04.958+03	
b47749a5-4345-9dee-c725-ce5fc0aa9830	2021-05-27 12:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:51:24.951+03	2021-05-27 12:51:24.958+03	
b56a9e0e-e1d0-1c47-2bc9-aff83365a6f8	2021-05-27 12:51:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:51:44.951+03	2021-05-27 12:51:44.958+03	
91707fb5-14b5-6b74-51a5-0eeefecad69d	2021-05-27 12:52:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:52:05.951+03	2021-05-27 12:52:05.958+03	
9ae8d6aa-506b-3e1d-8a2a-8f3f4953757c	2021-05-27 12:52:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:52:26.951+03	2021-05-27 12:52:26.959+03	
0b7e2ef9-6138-7366-a9c9-559161dc8a23	2021-05-27 12:52:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:52:46.951+03	2021-05-27 12:52:46.957+03	
fe305e59-7715-4233-6b86-a488714446d4	2021-05-27 12:53:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:53:06.951+03	2021-05-27 12:53:06.958+03	
15c9970b-cc55-d446-343d-def87aff25f0	2021-05-27 12:53:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:53:26.951+03	2021-05-27 12:53:26.958+03	
e5647b40-1e10-f610-5931-eab2864e878e	2021-05-27 12:53:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:53:46.951+03	2021-05-27 12:53:46.959+03	
529a0664-2594-4729-9ff1-f53a9c0e2803	2021-05-27 12:54:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:54:06.951+03	2021-05-27 12:54:06.959+03	
31ecd22a-c550-e214-217d-3fb77d6f9324	2021-05-27 12:54:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:54:26.951+03	2021-05-27 12:54:26.958+03	
45dd9542-b9dd-da92-c07b-7ab3bab58e19	2021-05-27 12:34:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:34:20.951+03	2021-05-27 12:34:20.963+03	
e18fc2b4-70e6-770b-2d17-a30a5a12f4db	2021-05-27 12:34:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:34:40.952+03	2021-05-27 12:34:40.961+03	
3eb889eb-7305-d3e8-a2d7-dba8f444a6bc	2021-05-27 12:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:35:01.951+03	2021-05-27 12:35:01.963+03	
61b1854b-7a15-0c49-764e-778ae6902f8f	2021-05-27 12:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:35:21.951+03	2021-05-27 12:35:21.96+03	
3f49b249-3631-3d5b-2ce6-e332b845d59c	2021-05-27 12:35:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:35:41.952+03	2021-05-27 12:35:41.96+03	
68d62232-e76f-b3e0-acee-00ebccc34f8a	2021-05-27 12:36:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:36:03.951+03	2021-05-27 12:36:03.957+03	
59c05bbc-a199-b39f-34ee-32c839126ba4	2021-05-27 12:36:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:36:23.951+03	2021-05-27 12:36:23.959+03	
3619bd5e-117d-53b2-b782-4f59cd38ce9c	2021-05-27 12:36:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:36:43.951+03	2021-05-27 12:36:43.961+03	
d8a4e1aa-948d-af9f-77b9-db29c56111c1	2021-05-27 12:37:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:37:03.951+03	2021-05-27 12:37:03.96+03	
f56a59a1-4421-bca1-30c7-5ac12ac1ede7	2021-05-27 12:37:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:37:23.951+03	2021-05-27 12:37:23.958+03	
34d12d3c-1809-1f2c-a0e9-12e7ef62b808	2021-05-27 12:37:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:37:43.952+03	2021-05-27 12:37:43.959+03	
0a06cf3d-49e4-c9fe-6b4c-480e825adb33	2021-05-27 12:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:38:04.951+03	2021-05-27 12:38:04.959+03	
5c985ff8-cc65-41a9-3355-91bf466c66b7	2021-05-27 12:38:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:38:24.951+03	2021-05-27 12:38:24.96+03	
09e18903-85b9-3e84-cb29-64f230ce530c	2021-05-27 12:38:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:38:44.951+03	2021-05-27 12:38:44.96+03	
46e681cc-c642-bce4-5496-ba0f2056d8f5	2021-05-27 12:39:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:39:04.951+03	2021-05-27 12:39:04.958+03	
f0dd7093-ed04-c39c-e1be-12460756ca32	2021-05-27 12:39:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:39:24.952+03	2021-05-27 12:39:24.959+03	
3f90a085-d38f-306e-e7d9-9fe3de21e7c0	2021-05-27 12:39:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:39:45.952+03	2021-05-27 12:39:45.959+03	
87fe95db-6713-ed35-9748-bd83ec8aba5e	2021-05-27 12:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 12:40:00.951+03	2021-05-27 12:40:00.957+03	ERROR
92757124-9aeb-3e56-cc56-f018a751bf22	2021-05-27 12:40:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:40:16.952+03	2021-05-27 12:40:16.959+03	
4170fef3-9adc-3c8c-46e3-14084da58575	2021-05-27 12:40:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:40:37.951+03	2021-05-27 12:40:37.957+03	
b62ac6b9-13ac-23ce-bf31-dfea03d8253c	2021-05-27 12:40:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:40:57.951+03	2021-05-27 12:40:57.959+03	
dc5918fa-92b8-c811-6358-1a36a3c0db32	2021-05-27 12:41:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:41:18.951+03	2021-05-27 12:41:18.96+03	
15ae6aaa-73a6-9c93-ffe5-0b796cd9fd4b	2021-05-27 12:41:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:41:38.951+03	2021-05-27 12:41:38.958+03	
fcbd8e6d-e739-7028-a3e3-05daa3d8f8f5	2021-05-27 12:41:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:41:59.952+03	2021-05-27 12:41:59.958+03	
d14a2f36-c88a-77f2-2fb8-e5432603da4e	2021-05-27 12:42:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:42:20.951+03	2021-05-27 12:42:20.959+03	
a0560c94-2a34-57ef-1345-f6c4b5c0f068	2021-05-27 12:42:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:42:40.951+03	2021-05-27 12:42:40.958+03	
5ad97e70-caec-33ad-495e-2d06787eca90	2021-05-27 12:43:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:43:00.951+03	2021-05-27 12:43:00.958+03	
48ae4ee1-2446-cc11-cfe6-b5f2e802baff	2021-05-27 12:43:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:43:20.951+03	2021-05-27 12:43:20.959+03	
8672bf4e-34e3-ecc7-a274-4a3bd378c350	2021-05-27 12:43:40.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:43:40.952+03	2021-05-27 12:43:40.961+03	
7da30eab-6fb5-4baa-17cc-f5d5ddf50ff6	2021-05-27 12:44:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:44:01.951+03	2021-05-27 12:44:01.959+03	
97b79bdc-0ab8-fc40-d6d7-b02a48556821	2021-05-27 12:44:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:44:21.951+03	2021-05-27 12:44:21.958+03	
7a7f4913-2365-77e6-3239-8c7ed0fd01e8	2021-05-27 12:44:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:44:41.951+03	2021-05-27 12:44:41.957+03	
c1ff50b2-7029-333b-55c3-cbf08ca89496	2021-05-27 12:45:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:45:01.951+03	2021-05-27 12:45:01.958+03	
b90d2f0a-8fad-3155-ff82-755ac0c74cad	2021-05-27 12:45:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:45:21.951+03	2021-05-27 12:45:21.959+03	
790f2626-38c6-8d55-7e2e-ef60665b1db0	2021-05-27 12:45:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:45:42.952+03	2021-05-27 12:45:42.96+03	
3abc32eb-7d3f-3617-49c7-a534ea7c2da6	2021-05-27 12:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:46:03.951+03	2021-05-27 12:46:03.959+03	
eea0f349-0502-1ef9-ce6b-9162bb76373b	2021-05-27 12:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:46:23.951+03	2021-05-27 12:46:23.959+03	
e8489b6f-5acb-2e34-14f6-604c81b5fecb	2021-05-27 12:46:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:46:43.951+03	2021-05-27 12:46:43.957+03	
7d22ba85-b49c-7ad8-7c7a-1dcb814ed4df	2021-05-27 12:47:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:47:03.951+03	2021-05-27 12:47:03.958+03	
59778838-2f83-cf96-300e-ef058e688f42	2021-05-27 12:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:47:23.952+03	2021-05-27 12:47:23.96+03	
96ce9bde-d782-17b3-8d37-5b024d0f5a34	2021-05-27 12:47:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:47:44.951+03	2021-05-27 12:47:44.961+03	
216c22aa-414f-2cba-b77b-38cd956d81be	2021-05-27 12:48:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:48:04.951+03	2021-05-27 12:48:04.959+03	
c55179fd-ebb2-b37b-6220-0a009acd662d	2021-05-27 12:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:48:24.951+03	2021-05-27 12:48:24.958+03	
06775b32-6c03-a4b0-2c52-1e13ea2b1243	2021-05-27 12:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:48:44.951+03	2021-05-27 12:48:44.959+03	
4c181872-1671-bc12-adad-4b8142382331	2021-05-27 12:49:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:49:04.951+03	2021-05-27 12:49:04.957+03	
12cc2966-7a78-c240-d226-0810c23859b1	2021-05-27 12:49:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:49:24.951+03	2021-05-27 12:49:24.959+03	
a93ccee2-d005-0c0b-c2f0-dfc619d1ea95	2021-05-27 12:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:49:44.951+03	2021-05-27 12:49:44.958+03	
23904039-7af3-89d2-28af-15174d165c07	2021-05-27 12:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 12:50:00.951+03	2021-05-27 12:50:00.956+03	ERROR
a985bd92-6fce-c5d3-76d7-cebb9ab4260f	2021-05-27 12:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:50:14.951+03	2021-05-27 12:50:14.958+03	
9f66479d-186a-34c6-4a04-e660207c1388	2021-05-27 12:50:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:50:34.951+03	2021-05-27 12:50:34.958+03	
c2b1a388-bf7c-e405-c783-1f7d7c4280b5	2021-05-27 12:50:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:50:54.951+03	2021-05-27 12:50:54.958+03	
19c71727-3201-5f85-cb21-5772879e20a3	2021-05-27 12:51:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:51:14.951+03	2021-05-27 12:51:14.958+03	
b0f468cc-c72a-439a-9343-05467a8841b3	2021-05-27 12:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:51:34.951+03	2021-05-27 12:51:34.958+03	
d23645bb-1c89-df4f-1968-31c90fc0e58b	2021-05-27 12:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:51:54.952+03	2021-05-27 12:51:54.96+03	
b380b370-ea3e-84c6-f0bf-3a2fb035fe6b	2021-05-27 12:52:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:52:15.952+03	2021-05-27 12:52:15.962+03	
427e2021-1e0f-0a38-77b4-d3d585a8e5e0	2021-05-27 12:52:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:52:36.951+03	2021-05-27 12:52:36.958+03	
282a9d36-3808-76a5-f0dd-3a7adecc8a69	2021-05-27 12:52:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:52:56.951+03	2021-05-27 12:52:56.966+03	
bdf3cdc9-1620-bacb-c0c2-ee9fd17febf8	2021-05-27 12:53:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:53:16.951+03	2021-05-27 12:53:16.961+03	
de445856-bd65-db81-ff17-b888c1f674fc	2021-05-27 12:53:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:53:36.951+03	2021-05-27 12:53:36.96+03	
6040383f-ffb7-2feb-d55f-01504f38efe2	2021-05-27 12:53:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:53:56.951+03	2021-05-27 12:53:56.96+03	
94ecf977-fc6e-4c83-f666-d107a4ca1e56	2021-05-27 12:54:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:54:16.951+03	2021-05-27 12:54:16.961+03	
4f2a5170-8660-6162-9440-d7a92335d4b1	2021-05-27 12:54:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:54:36.951+03	2021-05-27 12:54:36.958+03	
da28c222-0b2f-a132-eebd-9936d26f6393	2021-05-27 12:54:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:54:56.951+03	2021-05-27 12:54:56.957+03	
cf3037d6-db66-5273-e35b-acbe9fa36995	2021-05-27 12:54:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:54:46.951+03	2021-05-27 12:54:46.959+03	
011d4133-342b-03ce-59e4-5dc03b557318	2021-05-27 12:55:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:55:06.951+03	2021-05-27 12:55:06.959+03	
9d372589-2808-83a5-82cd-4ceca58ef314	2021-05-27 12:55:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:55:26.952+03	2021-05-27 12:55:26.96+03	
45221620-7d2c-4a21-7fa9-55ae5b230cd7	2021-05-27 12:55:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:55:48.951+03	2021-05-27 12:55:48.96+03	
0c9c9e89-a9e8-1825-bb78-0a0f5c8c0042	2021-05-27 12:56:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:56:08.951+03	2021-05-27 12:56:08.958+03	
b234eb69-a051-2eb0-1545-c506d2e91bc8	2021-05-27 12:56:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:56:28.951+03	2021-05-27 12:56:28.958+03	
e5ccbe77-136b-53fe-4fd9-5824553a58dc	2021-05-27 12:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:56:48.951+03	2021-05-27 12:56:48.958+03	
95f4b826-620d-d7e9-4f70-bba1b993c090	2021-05-27 12:57:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:57:09.951+03	2021-05-27 12:57:09.959+03	
429ed7c5-69c4-3ff9-ee66-491f7221c7a5	2021-05-27 12:57:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:57:29.951+03	2021-05-27 12:57:29.958+03	
168dbdb1-022c-36b2-3d15-66c3d66a0c66	2021-05-27 12:57:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:57:49.951+03	2021-05-27 12:57:49.958+03	
8fc36157-9de6-348e-81d5-e622b3a3ca88	2021-05-27 12:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:58:09.951+03	2021-05-27 12:58:09.958+03	
ea085440-b259-e967-9b1a-b47309caca9e	2021-05-27 12:58:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:58:30.951+03	2021-05-27 12:58:30.958+03	
84949a46-6f5e-374d-505b-28909cf45f6a	2021-05-27 12:58:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:58:50.951+03	2021-05-27 12:58:50.958+03	
64a84cac-a6ed-9825-cfea-815265ec3a9c	2021-05-27 12:59:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:59:10.951+03	2021-05-27 12:59:10.96+03	
f2a19060-b1fd-749f-0ce9-da74f4e41bdb	2021-05-27 12:59:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:59:30.951+03	2021-05-27 12:59:30.959+03	
03650a5d-7782-e155-008e-c0c264567d2b	2021-05-27 12:59:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:59:51.951+03	2021-05-27 12:59:51.957+03	
a7613c09-5ebe-ecd9-63e0-177b322d843f	2021-05-27 13:00:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:00:01.951+03	2021-05-27 13:00:01.958+03	
dcc1abfc-fdf8-c872-ed2c-79214b9af24d	2021-05-27 13:00:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:00:21.951+03	2021-05-27 13:00:21.96+03	
48d907aa-b55f-6af3-40af-c9578e438238	2021-05-27 13:00:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:00:41.951+03	2021-05-27 13:00:41.958+03	
102257a4-b043-7520-b10c-cc624299401a	2021-05-27 13:01:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:01:01.951+03	2021-05-27 13:01:01.963+03	
90cda649-14c1-a1c5-9d42-738b0f3201fe	2021-05-27 13:01:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:01:21.951+03	2021-05-27 13:01:21.958+03	
81f71fdc-280c-9644-9ff8-924cbfd08a34	2021-05-27 13:01:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:01:41.951+03	2021-05-27 13:01:41.96+03	
93c38013-310a-8b07-437a-a48113534f70	2021-05-27 13:02:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:02:01.951+03	2021-05-27 13:02:01.958+03	
24d4f76e-a79b-c6f6-a1e2-2176d647abf0	2021-05-27 13:02:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:02:21.951+03	2021-05-27 13:02:21.958+03	
ac5e93e0-cda8-56b6-d25b-7842886d9ebb	2021-05-27 13:02:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:02:41.951+03	2021-05-27 13:02:41.96+03	
e01e4e5a-007b-49f5-0bac-4724b75f46da	2021-05-27 13:03:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:03:01.951+03	2021-05-27 13:03:01.958+03	
d0a4f171-0e99-024d-da9a-c271717667cb	2021-05-27 13:03:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:03:21.951+03	2021-05-27 13:03:21.959+03	
0c38ed3a-2df9-dd78-ea07-53dd1f1e74be	2021-05-27 13:03:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:03:41.951+03	2021-05-27 13:03:41.958+03	
585a2cd8-efc4-2d29-3385-548d65e3a1e3	2021-05-27 13:04:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:04:01.951+03	2021-05-27 13:04:01.959+03	
2fec2a43-da24-3388-1950-78a04a44a024	2021-05-27 13:04:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:04:21.951+03	2021-05-27 13:04:21.958+03	
bdfdd88c-ba9d-df85-ab2b-50c725444a4a	2021-05-27 13:04:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:04:41.951+03	2021-05-27 13:04:41.958+03	
2cd5e06c-2deb-1bc7-5637-b98a5a736436	2021-05-27 13:05:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:05:02.952+03	2021-05-27 13:05:02.96+03	
8ae4ea81-6cd2-7468-d717-c7c51757de40	2021-05-27 13:05:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:05:23.951+03	2021-05-27 13:05:23.959+03	
a327fe61-02f0-6fac-34b3-dee68750c912	2021-05-27 13:05:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:05:43.951+03	2021-05-27 13:05:43.958+03	
91c14223-934c-3575-9846-eefa99153186	2021-05-27 13:06:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:06:03.951+03	2021-05-27 13:06:03.958+03	
73394ee2-0c50-e002-37d9-5c0366104ed7	2021-05-27 13:06:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:06:23.951+03	2021-05-27 13:06:23.959+03	
947e4ece-06c1-4fdb-644f-5b342988e506	2021-05-27 13:06:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:06:43.951+03	2021-05-27 13:06:43.958+03	
d21f4020-2397-2f4a-e9e1-8da0385f538d	2021-05-27 13:07:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:07:03.951+03	2021-05-27 13:07:03.96+03	
7e943afc-fab8-7d7b-8a6a-dfebf4e1b06d	2021-05-27 13:07:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:07:23.952+03	2021-05-27 13:07:23.958+03	
2596c6c2-29f3-a9d2-a1ae-4757fe533ca3	2021-05-27 13:07:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:07:44.951+03	2021-05-27 13:07:44.957+03	
422645a3-8586-da54-6985-da734e5e080b	2021-05-27 13:08:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:08:04.951+03	2021-05-27 13:08:04.958+03	
9db86da0-d33f-94c7-b4b4-b475ee676b75	2021-05-27 13:08:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:08:24.951+03	2021-05-27 13:08:24.96+03	
03442c53-b9b8-07ad-f889-60c199fc010b	2021-05-27 13:08:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:08:44.951+03	2021-05-27 13:08:44.957+03	
c4cc5c30-c3f6-df91-b6fe-f2fbeb0d896a	2021-05-27 13:09:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:09:04.951+03	2021-05-27 13:09:04.96+03	
98827338-a465-901d-48db-91dbc2f55e28	2021-05-27 13:09:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:09:24.951+03	2021-05-27 13:09:24.959+03	
83bb7c5a-7177-a6b6-d5ff-ed42d7e9c2d9	2021-05-27 13:09:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:09:44.951+03	2021-05-27 13:09:44.96+03	
75d601dc-23e7-dfc3-8504-b1c4d4e14ff5	2021-05-27 13:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 13:10:00.951+03	2021-05-27 13:10:00.969+03	ERROR
1452b9cd-da1b-5411-46ab-cd62172fbc1f	2021-05-27 13:10:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:10:14.951+03	2021-05-27 13:10:14.957+03	
8938c890-28ef-4a13-085b-f6bca8f11212	2021-05-27 13:10:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:10:34.951+03	2021-05-27 13:10:34.959+03	
0e7bac10-a0b8-d41e-6ce2-f85539f16bfe	2021-05-27 13:10:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:10:54.951+03	2021-05-27 13:10:54.958+03	
de6b35eb-c21d-cb70-1511-42e8b5232376	2021-05-27 13:11:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:11:14.951+03	2021-05-27 13:11:14.958+03	
f00fcbbd-8828-bba8-baab-b4b5255d00b2	2021-05-27 13:11:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:11:34.951+03	2021-05-27 13:11:34.958+03	
5eb47b82-4710-b117-044d-9b29ec3a4b86	2021-05-27 13:11:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:11:54.951+03	2021-05-27 13:11:54.958+03	
c3580c7e-2602-bdbd-ae4c-99f365757d25	2021-05-27 13:12:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:12:14.951+03	2021-05-27 13:12:14.959+03	
6aba1def-2bc4-c6ce-9ed7-efc36b56b747	2021-05-27 13:12:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:12:34.951+03	2021-05-27 13:12:34.958+03	
c3284430-1fd2-d8a1-75a4-d24f01e5fc18	2021-05-27 13:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:12:54.951+03	2021-05-27 13:12:54.959+03	
99346d15-fedb-76b5-2539-da7410dca512	2021-05-27 13:13:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:13:14.951+03	2021-05-27 13:13:14.959+03	
481d919b-060a-c49d-2cab-c14db06a9b85	2021-05-27 13:13:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:13:34.951+03	2021-05-27 13:13:34.957+03	
ed4a4119-4212-2935-6a16-fcc5473bf7ce	2021-05-27 13:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:13:54.951+03	2021-05-27 13:13:54.96+03	
d5587224-d08d-37c7-fdba-adbae1c05a4f	2021-05-27 13:14:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:14:14.951+03	2021-05-27 13:14:14.961+03	
2c65ec96-daf9-3b3f-3871-2f2ebb7fe559	2021-05-27 13:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:14:34.951+03	2021-05-27 13:14:34.962+03	
c8081741-94c3-d441-5cbb-4db6e93cc2f7	2021-05-27 13:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:14:54.951+03	2021-05-27 13:14:54.96+03	
033b9749-47d5-0c6a-6bd1-f65146fe2e7e	2021-05-27 13:15:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:15:14.952+03	2021-05-27 13:15:14.959+03	
2aba713e-5261-9958-8a11-fbab157e9b22	2021-05-27 12:55:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:55:16.951+03	2021-05-27 12:55:16.959+03	
9c367be1-b039-d2cc-5a15-e21d947854f4	2021-05-27 12:55:37.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:55:37.953+03	2021-05-27 12:55:37.963+03	
c90caeb9-1e7d-3741-9669-c5e7135a7f28	2021-05-27 12:55:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:55:58.951+03	2021-05-27 12:55:58.958+03	
655a0aa1-38b7-3d90-5cd8-0d4184ad0e53	2021-05-27 12:56:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:56:18.951+03	2021-05-27 12:56:18.958+03	
69aee6b3-f462-8f30-4db6-1413bad673a4	2021-05-27 12:56:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:56:38.951+03	2021-05-27 12:56:38.957+03	
b539658d-f16e-5bb1-f0d5-fa4280acb2ec	2021-05-27 12:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:56:58.952+03	2021-05-27 12:56:58.959+03	
9a5522f0-b495-9bc2-4769-2191687e499f	2021-05-27 12:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:57:19.951+03	2021-05-27 12:57:19.958+03	
9081963c-c469-5038-d6b7-5067deee39d6	2021-05-27 12:57:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:57:39.951+03	2021-05-27 12:57:39.958+03	
dfb5284b-b9c6-d32a-acf6-0a778750a652	2021-05-27 12:57:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:57:59.951+03	2021-05-27 12:57:59.958+03	
f49bd171-909b-ea68-9903-caea29b9f1ee	2021-05-27 12:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:58:19.952+03	2021-05-27 12:58:19.959+03	
091946a6-4b6b-3bf9-2ba0-26e3befaeb53	2021-05-27 12:58:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:58:40.951+03	2021-05-27 12:58:40.964+03	
37a8f07c-1236-24eb-2645-34af4dd417fe	2021-05-27 12:59:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:59:00.951+03	2021-05-27 12:59:00.957+03	
65172b1b-d18e-e8d4-b1ce-b9365eefe48d	2021-05-27 12:59:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:59:20.951+03	2021-05-27 12:59:20.959+03	
448e6556-d546-1bd2-3aed-c80febc0883b	2021-05-27 12:59:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 12:59:40.952+03	2021-05-27 12:59:40.959+03	
56e52e84-b40e-fa65-2763-0909734dda56	2021-05-27 13:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 13:00:00.951+03	2021-05-27 13:00:00.957+03	ERROR
150427ed-0211-dd3f-3ebb-1a42708cc179	2021-05-27 13:00:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:00:11.951+03	2021-05-27 13:00:11.958+03	
5e6e0f27-da57-fe7e-8b04-1fb657904760	2021-05-27 13:00:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:00:31.951+03	2021-05-27 13:00:31.959+03	
131d7388-15cb-f80f-1f73-13bb9a97a1f0	2021-05-27 13:00:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:00:51.951+03	2021-05-27 13:00:51.958+03	
64d553be-c707-ad3b-59dd-f4cd2e7202b1	2021-05-27 13:01:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:01:11.951+03	2021-05-27 13:01:11.958+03	
8e7f6451-30a9-c813-0f68-30eb51dd39c8	2021-05-27 13:01:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:01:31.951+03	2021-05-27 13:01:31.958+03	
3a663de4-359f-9f9e-bd7c-6bc2421b8b91	2021-05-27 13:01:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:01:51.951+03	2021-05-27 13:01:51.958+03	
36d42e77-292a-8ad4-e8fb-b8991c7d54d7	2021-05-27 13:02:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:02:11.951+03	2021-05-27 13:02:11.958+03	
bbd3bab5-07b0-30cc-0226-eb449d392bd7	2021-05-27 13:02:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:02:31.951+03	2021-05-27 13:02:31.958+03	
5706cae0-49ad-2d8d-8a16-6d8866e7683a	2021-05-27 13:02:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:02:51.951+03	2021-05-27 13:02:51.957+03	
2003c55e-cfbc-7076-bf78-80a5cc212001	2021-05-27 13:03:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:03:11.951+03	2021-05-27 13:03:11.958+03	
fc17a1d0-338c-6f03-39a1-ea523eb144fa	2021-05-27 13:03:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:03:31.951+03	2021-05-27 13:03:31.962+03	
7d5f49d1-9888-334c-7e01-48d99f43cbd9	2021-05-27 13:03:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:03:51.951+03	2021-05-27 13:03:51.958+03	
db839c4f-34b1-f424-bc2e-5490b643cadb	2021-05-27 13:04:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:04:11.951+03	2021-05-27 13:04:11.958+03	
061aa2aa-c606-293e-e159-b21f9ab215ee	2021-05-27 13:04:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:04:31.951+03	2021-05-27 13:04:31.958+03	
6090f056-1dbe-f3bb-5dd2-f87f6c247b8c	2021-05-27 13:04:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:04:51.952+03	2021-05-27 13:04:51.958+03	
e9f9e392-7d63-3eb9-6d64-04fb836f6846	2021-05-27 13:05:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:05:13.951+03	2021-05-27 13:05:13.957+03	
9f6f06f3-f264-b9ca-7101-a902d79da5bf	2021-05-27 13:05:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:05:33.951+03	2021-05-27 13:05:33.959+03	
8403bfb4-c1a9-dd1d-7797-ffd14d229be1	2021-05-27 13:05:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:05:53.951+03	2021-05-27 13:05:53.959+03	
100c585a-cf39-c725-d588-c75e513addcc	2021-05-27 13:06:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:06:13.951+03	2021-05-27 13:06:13.959+03	
775b2261-b682-9b35-ba86-f194d658782b	2021-05-27 13:06:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:06:33.951+03	2021-05-27 13:06:33.96+03	
547fce53-4c4a-8214-535b-f5fc4683ab6f	2021-05-27 13:06:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:06:53.951+03	2021-05-27 13:06:53.959+03	
899b3d85-b49d-9edd-6c0f-2b00f2457eef	2021-05-27 13:07:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:07:13.951+03	2021-05-27 13:07:13.959+03	
340fb783-4585-3867-6a3a-36c6c4737a45	2021-05-27 13:07:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:07:34.951+03	2021-05-27 13:07:34.957+03	
ec2c9ebb-768d-16a8-da8b-5cc961dbf602	2021-05-27 13:07:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:07:54.951+03	2021-05-27 13:07:54.959+03	
7c9159f5-395b-697a-22c2-4e34a5074599	2021-05-27 13:08:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:08:14.951+03	2021-05-27 13:08:14.959+03	
01b05353-0029-18c1-493f-003faffc2d7f	2021-05-27 13:08:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:08:34.951+03	2021-05-27 13:08:34.959+03	
dd20c804-c5be-0d76-6dca-3e70153a5660	2021-05-27 13:08:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:08:54.951+03	2021-05-27 13:08:54.959+03	
54597125-7a47-0531-d03f-89a4f3802278	2021-05-27 13:09:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:09:14.951+03	2021-05-27 13:09:14.958+03	
123983a1-0375-564c-c949-a0eade803a83	2021-05-27 13:09:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:09:34.951+03	2021-05-27 13:09:34.959+03	
93dae060-2d55-ad0e-ba71-92a33fcdb029	2021-05-27 13:09:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:09:54.951+03	2021-05-27 13:09:54.958+03	
82385a31-1994-4979-ad7d-0f8b72b069ec	2021-05-27 13:10:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:10:04.951+03	2021-05-27 13:10:04.96+03	
8fc571c3-6a55-37ff-ba68-709415b81cf5	2021-05-27 13:10:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:10:24.951+03	2021-05-27 13:10:24.96+03	
10e5ccac-91bc-d338-9e80-3a83c54c2b12	2021-05-27 13:10:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:10:44.951+03	2021-05-27 13:10:44.959+03	
08e74a2b-c6c8-37c1-1350-690d7e20583f	2021-05-27 13:11:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:11:04.951+03	2021-05-27 13:11:04.958+03	
a87c9485-6fa5-424f-7793-28eaf0834b84	2021-05-27 13:11:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:11:24.951+03	2021-05-27 13:11:24.957+03	
bdd430ac-86e5-aa96-ce58-c6a3cc91f92a	2021-05-27 13:11:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:11:44.951+03	2021-05-27 13:11:44.958+03	
a9adcf6f-a4e0-ec7c-9710-56d49c69434f	2021-05-27 13:12:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:12:04.951+03	2021-05-27 13:12:04.959+03	
6418ac4f-327a-4b76-41e0-4ee9e86c6ad2	2021-05-27 13:12:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:12:24.951+03	2021-05-27 13:12:24.958+03	
70045004-4c98-da96-21fe-db4e310de859	2021-05-27 13:12:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:12:44.951+03	2021-05-27 13:12:44.959+03	
871656ff-971f-5f45-4cb8-fb538afe9fd7	2021-05-27 13:13:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:13:04.951+03	2021-05-27 13:13:04.959+03	
35bbbc6f-33e9-1fd6-8323-383a52cec65d	2021-05-27 13:13:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:13:24.951+03	2021-05-27 13:13:24.958+03	
d3d72bb7-4546-80f0-af6e-dfbfd4abe7f2	2021-05-27 13:13:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:13:44.951+03	2021-05-27 13:13:44.96+03	
49c9f2cf-12b4-3874-1354-33e5578f3c2d	2021-05-27 13:14:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:14:04.951+03	2021-05-27 13:14:05.001+03	
67bd8537-549a-fbfc-26c4-456c7ef26181	2021-05-27 13:14:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:14:24.951+03	2021-05-27 13:14:24.958+03	
817fa9c5-b6ac-b126-0312-dfe9657c8940	2021-05-27 13:14:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:14:44.951+03	2021-05-27 13:14:44.959+03	
bc5f4445-4e91-a047-c34c-0e8f2bdc0bff	2021-05-27 13:15:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:15:04.951+03	2021-05-27 13:15:04.96+03	
75f7a3c9-47f1-aea9-3015-742a82b16a90	2021-05-27 13:15:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:15:25.951+03	2021-05-27 13:15:25.959+03	
1ded63e4-b250-e9dc-51e6-182f6e07caf8	2021-05-27 13:15:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:15:45.951+03	2021-05-27 13:15:45.959+03	
0b2d8dfa-cb7f-4bfb-37eb-d7f5f8902127	2021-05-27 13:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:15:35.951+03	2021-05-27 13:15:35.958+03	
99777e66-41c5-31ac-3028-71f3110449f7	2021-05-27 13:15:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:15:55.951+03	2021-05-27 13:15:55.959+03	
9f7694b7-22aa-03f7-3b67-2a0da3110f6c	2021-05-27 13:16:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:16:15.951+03	2021-05-27 13:16:15.962+03	
78be1b5b-d68c-b02b-26d8-877b5bf976d1	2021-05-27 13:16:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:16:35.951+03	2021-05-27 13:16:35.957+03	
3c25dea4-4216-27e9-9644-842fc722a361	2021-05-27 13:16:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:16:55.951+03	2021-05-27 13:16:55.958+03	
283c44ad-b24d-9acb-c539-a1ac081732a9	2021-05-27 13:17:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:17:15.951+03	2021-05-27 13:17:15.98+03	
e3b0b3cd-605b-ef87-2a22-4781ec43bed3	2021-05-27 13:17:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:17:35.951+03	2021-05-27 13:17:35.957+03	
b3d3a2ed-cec8-872f-d73c-b12ae316a77d	2021-05-27 13:17:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:17:55.951+03	2021-05-27 13:17:55.957+03	
68d49576-ce04-bb89-bf93-d6df4d0248f0	2021-05-27 13:18:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:18:15.951+03	2021-05-27 13:18:15.961+03	
c17f541f-cf3f-fe60-1ced-29916da79cfc	2021-05-27 13:18:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:18:35.951+03	2021-05-27 13:18:35.957+03	
dc4d90aa-bef1-a1ea-47bb-d5026265ede9	2021-05-27 13:18:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:18:55.951+03	2021-05-27 13:18:55.96+03	
280b73f1-4179-d25f-40df-73207ef2975c	2021-05-27 13:19:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:19:15.951+03	2021-05-27 13:19:15.959+03	
e3cda498-0bc4-5afe-c775-6bb296f2bca3	2021-05-27 13:19:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:19:35.951+03	2021-05-27 13:19:35.958+03	
8f4ef121-c0e9-b16b-637d-2c9e9953959c	2021-05-27 13:19:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:19:55.951+03	2021-05-27 13:19:55.959+03	
0efdf709-4e11-246a-fa07-f326e3b24826	2021-05-27 13:20:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:20:05.951+03	2021-05-27 13:20:05.958+03	
725bc364-2f11-45b3-f3e2-e6249c5838ec	2021-05-27 13:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:20:25.951+03	2021-05-27 13:20:25.959+03	
30a5f6ed-9690-4826-693c-68418de677bd	2021-05-27 13:20:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:20:45.951+03	2021-05-27 13:20:45.96+03	
d29e0b27-29bc-9c0f-f0f7-8c3ca5c456b9	2021-05-27 13:21:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:21:05.951+03	2021-05-27 13:21:05.958+03	
e731e892-4fb1-346d-84f7-3e9c2d32fc7b	2021-05-27 13:21:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:21:25.951+03	2021-05-27 13:21:25.959+03	
ea1e575f-4393-7bf3-a730-25130252aea3	2021-05-27 13:21:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:21:45.951+03	2021-05-27 13:21:45.959+03	
9bbd2f90-c631-5e0c-344e-bd90aed4c30d	2021-05-27 13:22:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:22:05.951+03	2021-05-27 13:22:05.958+03	
eaf12c69-4684-2a92-a7de-6279d1b705ed	2021-05-27 13:22:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:22:25.951+03	2021-05-27 13:22:25.959+03	
079a5d82-028c-826c-f43d-bbca7df3b145	2021-05-27 13:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:22:46.951+03	2021-05-27 13:22:46.959+03	
57bddc24-880f-4687-e831-ce5450fef4cf	2021-05-27 13:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:23:06.951+03	2021-05-27 13:23:06.959+03	
b194765d-53f4-4394-1569-134e8def17aa	2021-05-27 13:23:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:23:26.951+03	2021-05-27 13:23:26.958+03	
5d504e17-17d4-556d-abf3-e1a088ce1967	2021-05-27 13:23:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:23:46.951+03	2021-05-27 13:23:46.959+03	
9f628c65-d0e6-9f08-92fe-1e7910f8804f	2021-05-27 13:24:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:24:06.951+03	2021-05-27 13:24:06.958+03	
5b5679bd-744d-24c6-f9ae-68cb02f202bb	2021-05-27 13:24:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:24:26.951+03	2021-05-27 13:24:26.964+03	
5c8904fb-4ef8-9a8c-978e-58655fcd904e	2021-05-27 13:24:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:24:46.951+03	2021-05-27 13:24:46.96+03	
25da9841-0808-937a-cae3-34e04a996ccf	2021-05-27 13:25:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:25:06.951+03	2021-05-27 13:25:06.958+03	
406e114f-d49f-f065-e942-8c930f1efb1d	2021-05-27 13:25:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:25:26.951+03	2021-05-27 13:25:26.958+03	
843c5a46-ec53-f1e3-93d9-d45e6ba3b010	2021-05-27 13:25:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:25:46.951+03	2021-05-27 13:25:46.959+03	
985899c0-9be4-690b-a300-54d6e6d90511	2021-05-27 13:26:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:26:06.951+03	2021-05-27 13:26:06.958+03	
921fa536-1c9f-03b6-fa2e-d6f7600c4150	2021-05-27 13:26:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:26:26.951+03	2021-05-27 13:26:26.958+03	
180381d4-63e3-0171-ccdb-950b37d4d520	2021-05-27 13:26:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:26:46.951+03	2021-05-27 13:26:46.959+03	
ed4ac43f-8603-f511-956c-9785ff5e9467	2021-05-27 13:27:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:27:06.951+03	2021-05-27 13:27:06.959+03	
3b383f54-fff0-169a-93cf-3b2f191338c3	2021-05-27 13:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:27:26.951+03	2021-05-27 13:27:26.958+03	
aa3f5f88-7f74-22a9-5af6-aebc12ecc067	2021-05-27 13:27:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:27:46.951+03	2021-05-27 13:27:46.96+03	
27db308b-073c-0aa1-8cee-6a0f3b4a18cc	2021-05-27 13:28:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:28:06.951+03	2021-05-27 13:28:06.958+03	
2d0dd9e5-c48b-364d-ecb5-45063a674ac0	2021-05-27 13:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:28:26.951+03	2021-05-27 13:28:27.011+03	
663a63ff-1cbe-2b4a-db98-05741172a9d6	2021-05-27 13:28:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:28:46.951+03	2021-05-27 13:28:46.959+03	
960f87d6-eaba-2d8f-2c31-889d9675550b	2021-05-27 13:29:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:29:06.951+03	2021-05-27 13:29:06.958+03	
bbe684de-c28a-fc09-0c94-1158312ef04e	2021-05-27 13:29:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:29:26.951+03	2021-05-27 13:29:26.958+03	
0a1e0b42-1053-3af5-5a12-b09de60f4dd6	2021-05-27 13:29:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:29:46.951+03	2021-05-27 13:29:46.963+03	
fb1787ff-1b3a-ecfa-5346-3e42fd1ab22d	2021-05-27 13:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 13:30:00.951+03	2021-05-27 13:30:00.958+03	ERROR
573c72b7-2cc5-4d62-266d-fb938987483a	2021-05-27 13:30:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:30:16.951+03	2021-05-27 13:30:16.958+03	
22d03167-ea6a-340d-82d3-279f5a148742	2021-05-27 13:30:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:30:36.951+03	2021-05-27 13:30:36.959+03	
97bd6bd0-e479-40ba-6adc-0bd520ea70d8	2021-05-27 13:30:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:30:56.951+03	2021-05-27 13:30:56.957+03	
447b5567-a056-68a9-a006-53aa2bfda25d	2021-05-27 13:31:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:31:16.951+03	2021-05-27 13:31:16.958+03	
5339415b-321e-629a-b36c-48d69772e9ff	2021-05-27 13:31:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:31:36.952+03	2021-05-27 13:31:36.958+03	
b6b6d02b-5a29-a995-a24c-113dd07e4242	2021-05-27 13:31:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:31:57.952+03	2021-05-27 13:31:57.961+03	
68131c81-d1bd-77f7-4b55-1027ef47d872	2021-05-27 13:32:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:32:17.952+03	2021-05-27 13:32:17.96+03	
69050e28-18c1-aca5-cf5f-c3910eb1453b	2021-05-27 13:32:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:32:38.951+03	2021-05-27 13:32:38.957+03	
ba08175b-8c0c-5a7f-cda0-7be110d397c2	2021-05-27 13:32:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:32:59.951+03	2021-05-27 13:32:59.959+03	
10152e6a-ceae-2fc3-2d08-b2572c594390	2021-05-27 13:33:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:33:19.951+03	2021-05-27 13:33:19.961+03	
f03df93f-a3d3-8dfd-c69f-d6658ff4d3c8	2021-05-27 13:33:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:33:39.951+03	2021-05-27 13:33:39.959+03	
401b0c2b-5c57-d7bd-2230-a0b7eac4581b	2021-05-27 13:33:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:33:59.951+03	2021-05-27 13:33:59.959+03	
2f642fae-62da-2cde-c698-604b9d9f85e5	2021-05-27 13:34:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:34:19.951+03	2021-05-27 13:34:19.958+03	
3a7e738e-dc22-53a3-414c-46b231efddf4	2021-05-27 13:34:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:34:39.951+03	2021-05-27 13:34:39.958+03	
c9b9eae3-cac6-1e1c-b3e2-c262067c4413	2021-05-27 13:34:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:34:59.951+03	2021-05-27 13:34:59.959+03	
5face219-ee9c-f463-0f4f-3cc1f99495b9	2021-05-27 13:35:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:35:19.951+03	2021-05-27 13:35:19.96+03	
f4002ab0-2dd7-a33c-b518-c9eae20686fd	2021-05-27 13:35:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:35:39.951+03	2021-05-27 13:35:39.958+03	
b613730c-eede-4ea4-945e-86457e7c1675	2021-05-27 13:35:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:35:59.951+03	2021-05-27 13:35:59.964+03	
199b027e-534e-e93c-c269-87a053445640	2021-05-27 13:16:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:16:05.951+03	2021-05-27 13:16:05.958+03	
e6f7ce72-4bc9-5f98-77ec-54a445e4c4ae	2021-05-27 13:16:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:16:25.951+03	2021-05-27 13:16:25.958+03	
9ccc908d-9ebc-b65e-bef9-a51795256e86	2021-05-27 13:16:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:16:45.951+03	2021-05-27 13:16:46.006+03	
53170158-1b37-4deb-369e-a0dd7806317f	2021-05-27 13:17:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:17:05.951+03	2021-05-27 13:17:05.957+03	
77ecd177-101c-c1af-4486-280d48056341	2021-05-27 13:17:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:17:25.951+03	2021-05-27 13:17:25.959+03	
5bf7b6b7-6b42-311a-e303-b27f5e869253	2021-05-27 13:17:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:17:45.951+03	2021-05-27 13:17:45.958+03	
1c7f8827-3367-26a2-3e9f-7c0f47016dcd	2021-05-27 13:18:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:18:05.951+03	2021-05-27 13:18:05.958+03	
3839bd2f-de72-4ae7-93cc-b88bc1bf2ca3	2021-05-27 13:18:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:18:25.951+03	2021-05-27 13:18:25.959+03	
9334c418-975c-e769-1030-f1e771be13e1	2021-05-27 13:18:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:18:45.951+03	2021-05-27 13:18:45.96+03	
fd49383d-0432-0864-5b47-74cc8f1e852d	2021-05-27 13:19:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:19:05.951+03	2021-05-27 13:19:05.959+03	
37eb581a-15c7-38ea-61e8-21a78e98420f	2021-05-27 13:19:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:19:25.951+03	2021-05-27 13:19:25.96+03	
0939d88d-e1a2-c39b-2a06-62c72ed83512	2021-05-27 13:19:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:19:45.951+03	2021-05-27 13:19:45.957+03	
e88f13df-d3e9-edc1-8fd5-a5fc68848248	2021-05-27 13:20:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 13:20:00.951+03	2021-05-27 13:20:00.956+03	ERROR
542996d9-0d69-06c4-8d32-e27ebc34f2f9	2021-05-27 13:20:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:20:15.951+03	2021-05-27 13:20:15.959+03	
0e0c7646-5c6b-6e37-4a11-e6e67693d3b7	2021-05-27 13:20:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:20:35.951+03	2021-05-27 13:20:35.96+03	
afa9dfac-cfd9-2e30-f589-aea54168dae4	2021-05-27 13:20:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:20:55.951+03	2021-05-27 13:20:55.958+03	
09746abf-faef-607b-818b-358e76db4a8d	2021-05-27 13:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:21:15.951+03	2021-05-27 13:21:15.96+03	
def38aa2-aede-3405-2d39-44a92f096202	2021-05-27 13:21:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:21:35.951+03	2021-05-27 13:21:35.958+03	
3801865a-e09a-41a8-1009-157fb3b664b9	2021-05-27 13:21:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:21:55.951+03	2021-05-27 13:21:55.958+03	
65f46bae-15f2-4b89-20a3-317d18548f70	2021-05-27 13:22:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:22:15.951+03	2021-05-27 13:22:15.959+03	
cc2763ec-f4dc-17ae-357d-7f39ae6540cd	2021-05-27 13:22:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:22:35.952+03	2021-05-27 13:22:35.959+03	
9e2e2ba9-4893-a784-b976-fe9cbcc3a1c0	2021-05-27 13:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:22:56.951+03	2021-05-27 13:22:56.96+03	
501d1ae5-9edf-55b0-652a-902a36052cb6	2021-05-27 13:23:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:23:16.951+03	2021-05-27 13:23:16.959+03	
1fcf97aa-5b45-578c-b892-744c35a3f16d	2021-05-27 13:23:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:23:36.951+03	2021-05-27 13:23:36.962+03	
a20899ea-84d4-7a3c-b323-87686eab1a69	2021-05-27 13:23:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:23:56.951+03	2021-05-27 13:23:56.961+03	
8ef5113c-2c4d-b31e-ba1e-726d23c109fb	2021-05-27 13:24:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:24:16.951+03	2021-05-27 13:24:16.957+03	
a25d4867-7da6-8d59-e29d-3e3975d26378	2021-05-27 13:24:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:24:36.951+03	2021-05-27 13:24:36.959+03	
05b3c0c3-e2c5-9f59-37a0-5fdcc2b92471	2021-05-27 13:24:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:24:56.951+03	2021-05-27 13:24:56.961+03	
715bfa49-d717-cbf4-86b9-c26c276ef98f	2021-05-27 13:25:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:25:16.951+03	2021-05-27 13:25:16.962+03	
50130299-e7b3-501b-c991-f02eef8a7b02	2021-05-27 13:25:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:25:36.951+03	2021-05-27 13:25:36.957+03	
7b310f4a-39d0-fa87-48a1-52b56172a1fb	2021-05-27 13:25:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:25:56.951+03	2021-05-27 13:25:56.96+03	
4d3029d4-4075-d40d-49ab-ef3f561c0941	2021-05-27 13:26:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:26:16.951+03	2021-05-27 13:26:16.96+03	
5eea1683-80a2-8161-0a81-bb1d541b9e4a	2021-05-27 13:26:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:26:36.951+03	2021-05-27 13:26:36.957+03	
f2571a44-ca5a-7851-6452-90564455f8b0	2021-05-27 13:26:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:26:56.951+03	2021-05-27 13:26:56.957+03	
02088ecf-9ab7-dc4c-33e7-868b73cbe818	2021-05-27 13:27:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:27:16.951+03	2021-05-27 13:27:16.959+03	
96a7ca4a-e36d-b63b-1c97-27f8e7f48f2f	2021-05-27 13:27:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:27:36.951+03	2021-05-27 13:27:36.959+03	
33212f2e-9d5c-2a68-9d68-13318153dbf5	2021-05-27 13:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:27:56.951+03	2021-05-27 13:27:56.959+03	
5c4606a7-570a-9a11-57d9-6303c0c018e5	2021-05-27 13:28:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:28:16.951+03	2021-05-27 13:28:16.958+03	
d9bdaba2-98aa-63b8-9c32-e5156798bba8	2021-05-27 13:28:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:28:36.951+03	2021-05-27 13:28:36.958+03	
42a34e62-bd04-001e-fab6-81afe86fb5f3	2021-05-27 13:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:28:56.951+03	2021-05-27 13:28:56.96+03	
6a40f408-7600-e32e-f146-ce9e5fe19a6d	2021-05-27 13:29:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:29:16.951+03	2021-05-27 13:29:16.96+03	
bb49c01a-4d1d-97e3-5b00-d2dc28a4fb2b	2021-05-27 13:29:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:29:36.951+03	2021-05-27 13:29:36.957+03	
8c7909d1-500f-c2df-d4a5-f248a781377d	2021-05-27 13:29:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:29:56.951+03	2021-05-27 13:29:56.958+03	
e2889a48-5bcf-eeb8-49c1-66cd2cccb713	2021-05-27 13:30:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:30:06.951+03	2021-05-27 13:30:06.959+03	
e28f1afb-72ca-0537-268f-72a06db67bf5	2021-05-27 13:30:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:30:26.951+03	2021-05-27 13:30:26.959+03	
df1ba6fb-a216-8d0a-9df8-c08746402927	2021-05-27 13:30:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:30:46.951+03	2021-05-27 13:30:46.958+03	
9014f196-7351-b7e4-0223-36f82f946fb2	2021-05-27 13:31:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:31:06.951+03	2021-05-27 13:31:06.958+03	
451bfaf8-c9ca-ec16-97c6-b3c4bd26c660	2021-05-27 13:31:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:31:26.951+03	2021-05-27 13:31:26.957+03	
17a5137d-20f8-8912-883a-079282a29ea9	2021-05-27 13:31:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:31:47.951+03	2021-05-27 13:31:47.96+03	
d6235ffe-15ff-4706-7125-bcb8002374ef	2021-05-27 13:32:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:32:07.952+03	2021-05-27 13:32:07.96+03	
41abf199-3461-1779-7b8c-46ade824bbe8	2021-05-27 13:32:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:32:28.951+03	2021-05-27 13:32:28.962+03	
b385ad95-194c-e563-22d0-f7d442a9a58b	2021-05-27 13:32:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:32:48.952+03	2021-05-27 13:32:48.96+03	
e76b992e-caa5-7de6-6de9-319c42508db7	2021-05-27 13:33:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:33:09.951+03	2021-05-27 13:33:09.957+03	
14d134f8-c13a-29cd-dd5a-a764dcf6070d	2021-05-27 13:33:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:33:29.951+03	2021-05-27 13:33:29.96+03	
26c489d1-7a6c-4284-23a0-97bb4438cccf	2021-05-27 13:33:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:33:49.951+03	2021-05-27 13:33:49.958+03	
75b0832a-7df7-9963-7b6a-c106246adc1b	2021-05-27 13:34:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:34:09.951+03	2021-05-27 13:34:09.96+03	
dd5047d1-4fd5-f76f-b9f4-876d5b7d9e2b	2021-05-27 13:34:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:34:29.951+03	2021-05-27 13:34:29.959+03	
90bc4a4c-9038-795c-eadb-54bc0669ce89	2021-05-27 13:34:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:34:49.951+03	2021-05-27 13:34:49.959+03	
1cedf019-3e1a-9c65-966f-31735bbe7b42	2021-05-27 13:35:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:35:09.951+03	2021-05-27 13:35:09.959+03	
a8d888c3-27b4-ef77-f20f-d8d71b0586c6	2021-05-27 13:35:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:35:29.951+03	2021-05-27 13:35:29.964+03	
fd8ab3cc-49be-94ce-378a-86eca88472ed	2021-05-27 13:35:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:35:49.951+03	2021-05-27 13:35:49.961+03	
84329b81-6f91-952e-2290-4a2c208be06d	2021-05-27 13:36:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:36:09.952+03	2021-05-27 13:36:09.959+03	
587820ce-582f-35aa-b4b3-b2db5ba5b8de	2021-05-27 13:36:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:36:29.952+03	2021-05-27 13:36:29.959+03	
9fe52c98-7004-55c8-323f-8a167adeb932	2021-05-27 13:36:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:36:19.952+03	2021-05-27 13:36:19.961+03	
e090dda2-bfce-3cd5-ce94-2e4934e3ed7e	2021-05-27 13:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:36:40.952+03	2021-05-27 13:36:40.961+03	
c821856b-c464-63a2-b6cb-2e92dc742b45	2021-05-27 13:37:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:37:01.951+03	2021-05-27 13:37:01.958+03	
aa531b6b-a2a4-91f0-ef69-06ddd2516935	2021-05-27 13:37:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:37:21.951+03	2021-05-27 13:37:21.959+03	
9c3bb6fb-d430-9e11-8e6d-324d70ae970e	2021-05-27 13:37:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:37:41.951+03	2021-05-27 13:37:41.96+03	
b23dbf8a-f223-6d50-389b-cd898481caeb	2021-05-27 13:38:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:38:01.951+03	2021-05-27 13:38:01.959+03	
3ea940ee-3dcc-3aed-7913-4f13ec72dada	2021-05-27 13:38:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:38:21.951+03	2021-05-27 13:38:21.958+03	
edd3ef75-0de2-05d6-d3d0-0ba8613dd47c	2021-05-27 13:38:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:38:41.951+03	2021-05-27 13:38:41.958+03	
c2d9bf53-a23c-b926-e572-c9448ff326f9	2021-05-27 13:39:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:39:01.951+03	2021-05-27 13:39:01.959+03	
5112daa0-a967-be91-e24f-e4799187dbe2	2021-05-27 13:39:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:39:21.951+03	2021-05-27 13:39:21.958+03	
49a030c1-8c4d-0f34-fd47-6553d0b155f0	2021-05-27 13:39:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:39:41.951+03	2021-05-27 13:39:41.958+03	
b6acffcd-9fd2-345f-12be-f53ed0eed84a	2021-05-27 13:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 13:40:00.951+03	2021-05-27 13:40:00.956+03	ERROR
24854e85-1010-8ec5-9a6b-39ac1d1c5d57	2021-05-27 13:40:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:40:11.951+03	2021-05-27 13:40:11.962+03	
7de98e2e-87c2-3d21-51a7-e22108ec4a9e	2021-05-27 13:40:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:40:31.951+03	2021-05-27 13:40:31.957+03	
bd309cd4-90df-ce90-4227-62237eed43d6	2021-05-27 13:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:40:51.951+03	2021-05-27 13:40:51.958+03	
a3e037f0-93fc-1c27-d559-2614a8353db1	2021-05-27 13:41:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:41:11.951+03	2021-05-27 13:41:11.957+03	
93d17bb8-732e-6c91-fbec-ef175398a6bb	2021-05-27 13:41:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:41:31.951+03	2021-05-27 13:41:31.958+03	
5c69e257-f40d-8105-f78e-44268aa4cec7	2021-05-27 13:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:41:51.951+03	2021-05-27 13:41:51.959+03	
d7930a37-729a-cc62-df3b-588f0f3a7404	2021-05-27 13:42:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:42:11.951+03	2021-05-27 13:42:11.958+03	
fa9a0566-5e3b-d53f-942e-bc0b1965ce40	2021-05-27 13:42:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:42:31.951+03	2021-05-27 13:42:31.957+03	
4cf116ec-5e57-ad63-87e9-964f99a96a32	2021-05-27 13:42:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:42:51.951+03	2021-05-27 13:42:51.958+03	
1f3b9d02-8984-99c8-76fc-4cb89c759b33	2021-05-27 13:43:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:43:11.951+03	2021-05-27 13:43:11.959+03	
d60d690b-51d3-651a-b3bc-3fc5529732cc	2021-05-27 13:43:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:43:31.951+03	2021-05-27 13:43:31.958+03	
3ae11abb-06ec-c324-4509-bfa16d52e7fa	2021-05-27 13:43:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:43:51.951+03	2021-05-27 13:43:51.958+03	
2f1a5290-3e36-6d8c-1e33-2e9663559b6c	2021-05-27 13:44:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:44:11.951+03	2021-05-27 13:44:11.957+03	
349e71ce-3c14-6235-58a5-adac00048aa5	2021-05-27 13:44:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:44:31.952+03	2021-05-27 13:44:31.96+03	
5517e4b8-016f-c361-e06c-6d224bd67e92	2021-05-27 13:44:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:44:52.951+03	2021-05-27 13:44:52.958+03	
4fda774f-98df-5b2f-4d0a-132b04d6a1a7	2021-05-27 13:45:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:45:12.951+03	2021-05-27 13:45:12.959+03	
648922aa-4efc-43f7-4b99-571be57df626	2021-05-27 13:45:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:45:32.951+03	2021-05-27 13:45:32.958+03	
9256f6f9-a8b8-0bd3-21f3-da6dbf3c4814	2021-05-27 13:45:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:45:52.951+03	2021-05-27 13:45:52.959+03	
826caa87-6036-f1c7-f8de-e936920d37a7	2021-05-27 13:46:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:46:12.951+03	2021-05-27 13:46:12.958+03	
f1847194-d7da-dd7e-2e98-f4a09213a5d0	2021-05-27 13:46:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:46:32.951+03	2021-05-27 13:46:32.958+03	
a6efd751-3f31-ebaf-b2c3-bbeaba360ecb	2021-05-27 13:46:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:46:52.951+03	2021-05-27 13:46:52.958+03	
81b29ac7-5cd9-ad01-9b90-df2961da0d2a	2021-05-27 13:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:47:13.951+03	2021-05-27 13:47:13.957+03	
be2808c8-3e95-4cd9-538b-045d82edeefe	2021-05-27 13:47:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:47:33.951+03	2021-05-27 13:47:33.959+03	
459228df-9e84-339d-adb0-51abdac9a33f	2021-05-27 13:47:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:47:53.951+03	2021-05-27 13:47:53.96+03	
65a89a2d-0bb8-7577-c7c0-e011bc518ebe	2021-05-27 13:48:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:48:13.951+03	2021-05-27 13:48:13.958+03	
d07db62b-93a9-749c-1ad6-74145c9b4936	2021-05-27 13:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:48:33.951+03	2021-05-27 13:48:33.965+03	
68cd778b-2f3c-5c97-383e-f0bdc954a1e5	2021-05-27 13:48:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:48:53.951+03	2021-05-27 13:48:53.959+03	
134b5242-80d0-2dcc-6fdf-ad018266151f	2021-05-27 13:49:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:49:13.951+03	2021-05-27 13:49:13.958+03	
5fb322ab-ea09-3d8a-ad05-31c3d2ac1433	2021-05-27 13:49:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:49:33.951+03	2021-05-27 13:49:33.959+03	
dae10446-ae36-abc1-52ed-ba296c7d1a3f	2021-05-27 13:49:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:49:53.951+03	2021-05-27 13:49:53.958+03	
55dce2fb-a5da-fcad-5cba-a396d100c40f	2021-05-27 13:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:50:03.951+03	2021-05-27 13:50:03.958+03	
3abac410-fe5d-1b53-12e6-48ec5830a632	2021-05-27 13:50:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:50:23.951+03	2021-05-27 13:50:23.959+03	
c94f4b3f-9a2d-ffef-7f37-650129f34732	2021-05-27 13:50:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:50:43.951+03	2021-05-27 13:50:43.962+03	
98c12833-0ade-6c27-f131-804e2e7c49be	2021-05-27 13:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:51:03.951+03	2021-05-27 13:51:03.959+03	
a5afd136-e4bf-c93e-64b3-81c0359d9d6d	2021-05-27 13:51:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:51:23.951+03	2021-05-27 13:51:23.958+03	
8e75297a-3981-e071-6497-0f373f554b2a	2021-05-27 13:51:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:51:43.952+03	2021-05-27 13:51:43.959+03	
85d39a02-4bb3-5a26-aebc-e91e21c5d334	2021-05-27 13:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:52:04.951+03	2021-05-27 13:52:04.958+03	
b20af3ef-289a-fe61-6a66-50a0d533e47a	2021-05-27 13:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:52:24.951+03	2021-05-27 13:52:24.96+03	
0370098b-d22d-6740-7fa1-b3966e7b3043	2021-05-27 13:52:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:52:44.951+03	2021-05-27 13:52:44.957+03	
55b5badc-bfe5-ffbe-ef0b-7aa95dfd214c	2021-05-27 13:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:53:04.951+03	2021-05-27 13:53:04.958+03	
9a866654-7f1b-b820-a647-2e665aa8f977	2021-05-27 13:53:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:53:24.951+03	2021-05-27 13:53:24.959+03	
735a24e7-7375-0a8f-ecfe-d483ac9a4490	2021-05-27 13:53:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:53:45.951+03	2021-05-27 13:53:45.96+03	
17eec77d-6d61-2c21-aafb-f126c9f37022	2021-05-27 13:54:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:54:05.951+03	2021-05-27 13:54:05.959+03	
d2f78173-2864-e42b-2abf-564cffdb8a67	2021-05-27 13:54:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:54:25.951+03	2021-05-27 13:54:25.961+03	
ddfc498b-c8ed-1b22-7fb0-d110b3aa09ff	2021-05-27 13:54:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:54:46.951+03	2021-05-27 13:54:46.959+03	
c6c627fc-3496-cb6f-c18d-f64915fba0d5	2021-05-27 13:55:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:55:06.951+03	2021-05-27 13:55:06.958+03	
f9df1617-0c7b-681d-5d1b-dab480c5f14f	2021-05-27 13:55:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:55:26.952+03	2021-05-27 13:55:26.959+03	
f15fe9b6-8d9b-9a43-4502-41066f6bef63	2021-05-27 13:55:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:55:47.952+03	2021-05-27 13:55:47.96+03	
72934200-a6e1-0b79-42f0-0076445029f8	2021-05-27 13:56:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:56:08.951+03	2021-05-27 13:56:08.959+03	
116cd017-4b72-b4a5-e723-3ad6dd0b942d	2021-05-27 13:56:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:56:28.951+03	2021-05-27 13:56:28.957+03	
07895e8d-2fdb-dbbe-c7cb-e260271b93b1	2021-05-27 13:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:56:48.951+03	2021-05-27 13:56:48.96+03	
f0522cfe-f24e-ce84-bc54-075dfd742d98	2021-05-27 13:36:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:36:51.951+03	2021-05-27 13:36:51.96+03	
d9af6956-4b23-3ecc-26c2-381213a66047	2021-05-27 13:37:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:37:11.951+03	2021-05-27 13:37:11.959+03	
04a96866-366e-a2e1-3c38-3314084a92c6	2021-05-27 13:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:37:31.951+03	2021-05-27 13:37:31.958+03	
dbbc4f1d-e532-6245-c845-d47d74ff98d9	2021-05-27 13:37:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:37:51.951+03	2021-05-27 13:37:51.96+03	
1e7ff29a-6717-26d3-1d04-21d4bdb61f0c	2021-05-27 13:38:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:38:11.951+03	2021-05-27 13:38:11.959+03	
731ae054-bcb6-58c7-2ecf-bd166fd5e097	2021-05-27 13:38:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:38:31.951+03	2021-05-27 13:38:31.958+03	
ea495c89-3540-6d19-1745-c3087a02b798	2021-05-27 13:38:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:38:51.951+03	2021-05-27 13:38:51.962+03	
34c7a673-b988-8d27-411f-361c95067b1a	2021-05-27 13:39:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:39:11.951+03	2021-05-27 13:39:11.957+03	
f5eb89e7-a8df-4fd4-8608-3a6c5af64ad2	2021-05-27 13:39:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:39:31.951+03	2021-05-27 13:39:31.958+03	
8f5cb3ed-817e-2280-dca4-79f66c5beb9d	2021-05-27 13:39:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:39:51.951+03	2021-05-27 13:39:51.96+03	
aa4c8f60-73ba-730f-007b-a3d655865cfb	2021-05-27 13:40:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:40:01.951+03	2021-05-27 13:40:01.961+03	
2125a3f4-2547-1b0f-1415-a7f2d2fe63d3	2021-05-27 13:40:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:40:21.951+03	2021-05-27 13:40:21.96+03	
431966a0-eaa0-0628-5d76-c17b23a23cce	2021-05-27 13:40:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:40:41.951+03	2021-05-27 13:40:41.959+03	
ac98e938-dd48-83c4-77cd-e3be8d50084c	2021-05-27 13:41:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:41:01.951+03	2021-05-27 13:41:01.958+03	
e8b41351-4e7d-905c-2658-8c2608855e45	2021-05-27 13:41:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:41:21.951+03	2021-05-27 13:41:21.958+03	
3b19699d-fb5e-5e02-d3ef-88c43e5a3215	2021-05-27 13:41:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:41:41.951+03	2021-05-27 13:41:41.959+03	
6ca48212-9ae4-aec7-9773-a945b5ecfe2a	2021-05-27 13:42:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:42:01.951+03	2021-05-27 13:42:01.958+03	
9afded68-03f8-bd9d-5608-5b3fb1a62ab2	2021-05-27 13:42:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:42:21.951+03	2021-05-27 13:42:21.958+03	
6975c41c-7058-cbe1-0a00-55e33d0efb05	2021-05-27 13:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:42:41.951+03	2021-05-27 13:42:41.958+03	
aaacf76d-23e2-806a-d61e-ca73251640ba	2021-05-27 13:43:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:43:01.951+03	2021-05-27 13:43:01.959+03	
901f92f9-8ba4-d4ad-348b-ab1816fb6a91	2021-05-27 13:43:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:43:21.951+03	2021-05-27 13:43:21.958+03	
2434b9f0-f187-ab59-fbfb-5398e7bb73d6	2021-05-27 13:43:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:43:41.951+03	2021-05-27 13:43:41.958+03	
dbf85cd9-b562-45b9-3f59-44e33ed06527	2021-05-27 13:44:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:44:01.951+03	2021-05-27 13:44:01.958+03	
5174196c-88e2-bd4b-0613-13944225e687	2021-05-27 13:44:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:44:21.951+03	2021-05-27 13:44:21.959+03	
43d5b042-69f1-306b-2009-f9eff6a0a13f	2021-05-27 13:44:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:44:42.951+03	2021-05-27 13:44:42.958+03	
ecf9fe2a-aea6-6173-b3b7-93e9efc649cc	2021-05-27 13:45:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:45:02.951+03	2021-05-27 13:45:02.958+03	
ba2125be-b299-a320-0ffa-ff208eed28d7	2021-05-27 13:45:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:45:22.951+03	2021-05-27 13:45:22.958+03	
01b1fda4-0071-cb6e-5dd0-0ed7b4005c75	2021-05-27 13:45:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:45:42.951+03	2021-05-27 13:45:42.958+03	
03b5bf38-5d18-c8ce-84c4-974b5942ea36	2021-05-27 13:46:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:46:02.951+03	2021-05-27 13:46:02.963+03	
4888e642-69eb-b3b3-4495-d68256923ab8	2021-05-27 13:46:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:46:22.951+03	2021-05-27 13:46:22.958+03	
55477803-1e29-2529-c7d0-36bafebad471	2021-05-27 13:46:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:46:42.951+03	2021-05-27 13:46:42.958+03	
7ea79b71-58cb-4407-eef4-4faa3c07d3ef	2021-05-27 13:47:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:47:02.952+03	2021-05-27 13:47:02.959+03	
aece29e5-acdb-56ab-a876-aa643fbd457e	2021-05-27 13:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:47:23.951+03	2021-05-27 13:47:23.958+03	
b40e74d3-5b46-2ec0-ba7f-bd65921f8830	2021-05-27 13:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:47:43.951+03	2021-05-27 13:47:43.958+03	
05253599-7fc8-ff6e-30ea-81dc3ac5bcb3	2021-05-27 13:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:48:03.951+03	2021-05-27 13:48:03.959+03	
d0a9062d-0f83-3233-88d4-3aca24af7e5f	2021-05-27 13:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:48:23.951+03	2021-05-27 13:48:23.959+03	
d920227b-0f92-36f1-aab7-68cf51cc9206	2021-05-27 13:48:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:48:43.951+03	2021-05-27 13:48:43.96+03	
89494492-8600-2b3d-1578-a3b891ee86cb	2021-05-27 13:49:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:49:03.951+03	2021-05-27 13:49:03.958+03	
e54bbb20-3ad6-a3ed-4628-a9c37bd59792	2021-05-27 13:49:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:49:23.951+03	2021-05-27 13:49:23.959+03	
2c6d34f9-dfe2-2218-1769-101199bc7c4c	2021-05-27 13:49:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:49:43.951+03	2021-05-27 13:49:43.958+03	
ada87d34-98c1-33cc-4005-cd878ad945be	2021-05-27 13:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 13:50:00.951+03	2021-05-27 13:50:00.957+03	ERROR
e3a65403-62b8-e6d1-1a7c-9db990d506bd	2021-05-27 13:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:50:13.951+03	2021-05-27 13:50:13.958+03	
ca98039e-ef58-3f74-f1ed-2a62013e9cc1	2021-05-27 13:50:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:50:33.951+03	2021-05-27 13:50:33.959+03	
5e7cd2eb-5065-3be5-ad84-bae627267faa	2021-05-27 13:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:50:53.951+03	2021-05-27 13:50:53.96+03	
ffbee48f-dd92-5d27-5a7a-a9a1890360aa	2021-05-27 13:51:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:51:13.951+03	2021-05-27 13:51:13.958+03	
44adb81b-276d-d4e5-7103-08dc5c28e99e	2021-05-27 13:51:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:51:33.952+03	2021-05-27 13:51:33.959+03	
aeaaa6b7-93fd-a065-9782-24e9ffc3cdd7	2021-05-27 13:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:51:54.951+03	2021-05-27 13:51:54.96+03	
356ffd37-0899-c54b-ffcf-23f2397447c3	2021-05-27 13:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:52:14.951+03	2021-05-27 13:52:14.962+03	
50b689ca-e8d5-da08-8724-d0280ef91ec5	2021-05-27 13:52:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:52:34.951+03	2021-05-27 13:52:34.958+03	
d394e2ff-df2e-3e29-0520-2633844f3ee6	2021-05-27 13:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:52:54.951+03	2021-05-27 13:52:54.958+03	
bd754b7d-ea47-fa7a-e785-29c8786174af	2021-05-27 13:53:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:53:14.951+03	2021-05-27 13:53:14.958+03	
fb775555-ed71-dcde-ab90-5e9271d37d98	2021-05-27 13:53:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:53:34.952+03	2021-05-27 13:53:34.961+03	
392a0693-f6da-24d4-0f0a-5c9643c0a280	2021-05-27 13:53:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:53:55.951+03	2021-05-27 13:53:55.959+03	
baccbab4-205c-4772-bf15-a4ef8169c162	2021-05-27 13:54:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:54:15.951+03	2021-05-27 13:54:15.96+03	
53ef1ab8-ec23-facc-aab8-0fee71c907be	2021-05-27 13:54:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:54:35.952+03	2021-05-27 13:54:35.962+03	
642ffc21-4927-8cde-f725-c5f650d4dcae	2021-05-27 13:54:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:54:56.951+03	2021-05-27 13:54:56.96+03	
69bb2fc7-f356-2720-ae51-58f9431312d3	2021-05-27 13:55:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:55:16.952+03	2021-05-27 13:55:16.96+03	
3d2caedc-e354-167b-cd20-8d7aeb7357fc	2021-05-27 13:55:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:55:37.952+03	2021-05-27 13:55:37.959+03	
55e39dbb-cd17-06cd-3933-1f8f68135cf9	2021-05-27 13:55:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:55:58.951+03	2021-05-27 13:55:58.959+03	
0e7be5f6-5431-9086-e701-5b4e1419bce5	2021-05-27 13:56:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:56:18.951+03	2021-05-27 13:56:18.959+03	
260392eb-3513-877c-2135-878745ea0b45	2021-05-27 13:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:56:38.951+03	2021-05-27 13:56:38.998+03	
5f2a1aad-00d8-3258-5378-bd2882ad6f11	2021-05-27 13:56:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:56:58.951+03	2021-05-27 13:56:58.958+03	
2e06a2de-250a-81ce-8753-7db3d0d3e40c	2021-05-27 13:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:57:18.951+03	2021-05-27 13:57:18.959+03	
ea2b0cdf-74b0-11ba-e9c1-0728eabe0e46	2021-05-27 13:57:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:57:08.951+03	2021-05-27 13:57:08.959+03	
4652bad8-6239-c7b5-ad31-7272f6cd0773	2021-05-27 13:57:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:57:28.951+03	2021-05-27 13:57:28.959+03	
384f220f-55fc-26a8-3c7a-40dc817dcca8	2021-05-27 13:57:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:57:48.951+03	2021-05-27 13:57:48.957+03	
1dec4b82-ff63-324f-c8e6-5882a8f7f249	2021-05-27 13:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:58:08.952+03	2021-05-27 13:58:08.958+03	
3a8e1dc3-3faf-54b8-52bb-41d600098bb3	2021-05-27 13:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:58:29.951+03	2021-05-27 13:58:29.959+03	
83e91643-8695-e42e-4340-a9f8e16505ae	2021-05-27 13:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:58:49.951+03	2021-05-27 13:58:49.959+03	
30f362a8-987d-e723-8daf-3fa8e1b9ebb6	2021-05-27 13:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:59:09.951+03	2021-05-27 13:59:09.96+03	
c5d6c83f-4920-566d-20e6-9fb806766b17	2021-05-27 13:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:59:29.951+03	2021-05-27 13:59:29.957+03	
35e0a64c-3310-7b4b-6164-70d83d94fe9c	2021-05-27 13:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:59:49.951+03	2021-05-27 13:59:49.958+03	
82026cbc-ca80-4c15-54f4-6d7b264de5da	2021-05-27 14:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 14:00:00.951+03	2021-05-27 14:00:00.957+03	ERROR
34a604f6-84e2-4e5a-ba2c-f84f8fceeea5	2021-05-27 14:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:00:19.951+03	2021-05-27 14:00:19.959+03	
1f45c755-e03e-3241-709f-329e6cb53eda	2021-05-27 14:00:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:00:39.951+03	2021-05-27 14:00:39.958+03	
02e85f79-0e0a-6982-dae8-6ff36ced46c2	2021-05-27 14:01:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:01:00.951+03	2021-05-27 14:01:00.958+03	
0ec61a2f-2f0b-3540-560f-fe9cc9fd3835	2021-05-27 14:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:01:20.951+03	2021-05-27 14:01:20.959+03	
56de16b5-99f3-a6f4-ca16-c5ed5d1b5d10	2021-05-27 14:01:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:01:40.951+03	2021-05-27 14:01:40.958+03	
7617205f-0a20-07a5-a44a-db88a4ebbe89	2021-05-27 14:02:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:02:00.951+03	2021-05-27 14:02:00.959+03	
bd3db86e-97b8-69d3-89ef-a928ae476b26	2021-05-27 14:02:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:02:20.951+03	2021-05-27 14:02:20.957+03	
822e2353-0cbe-f426-4798-432c063ae2ee	2021-05-27 14:02:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:02:40.951+03	2021-05-27 14:02:40.958+03	
0e743e1b-0e28-40d5-43e5-aaa482c07237	2021-05-27 14:03:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:03:00.951+03	2021-05-27 14:03:00.957+03	
feb028e5-54be-cfa9-1f7d-b24804632321	2021-05-27 14:03:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:03:20.951+03	2021-05-27 14:03:20.959+03	
0a6756a9-d161-4e7f-fa7d-05442b95ef18	2021-05-27 14:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:03:40.951+03	2021-05-27 14:03:40.96+03	
04eb85bb-4184-3ecf-aa2a-6f555ef7aabc	2021-05-27 14:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:04:00.951+03	2021-05-27 14:04:00.96+03	
a1d0404f-83b0-e338-1ba1-6cacd30d6ede	2021-05-27 14:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:04:20.951+03	2021-05-27 14:04:20.959+03	
e9daba2a-707e-49e2-b26c-5014c89d3a09	2021-05-27 14:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:04:40.951+03	2021-05-27 14:04:40.958+03	
52901751-59ee-bc4d-de8f-7b959cf5752f	2021-05-27 14:05:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:05:00.951+03	2021-05-27 14:05:00.958+03	
64043c69-4947-9ffd-37c1-9c7cf242e85f	2021-05-27 14:05:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:05:30.951+03	2021-05-27 14:05:30.97+03	
69359b35-f1f0-be70-ed03-6666ab1a04e7	2021-05-27 14:05:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:05:50.951+03	2021-05-27 14:05:50.959+03	
fd16c9e7-dda9-128d-18c8-186e26dec263	2021-05-27 14:06:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:06:10.952+03	2021-05-27 14:06:10.961+03	
2e089e68-e0ec-1c95-7fdb-e98743390117	2021-05-27 14:06:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:06:31.951+03	2021-05-27 14:06:31.957+03	
cfa073d3-d462-b9cb-039b-245e84cca3e8	2021-05-27 14:06:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:06:52.951+03	2021-05-27 14:06:52.958+03	
19336ef8-74d4-bda7-5051-fc120f5ec5ee	2021-05-27 14:07:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:07:12.951+03	2021-05-27 14:07:12.959+03	
6d823fe3-8a62-68b6-97b7-7c24a9b0793e	2021-05-27 14:07:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:07:32.951+03	2021-05-27 14:07:32.958+03	
f5cd2b40-10cd-d05a-6b48-6390f75e5695	2021-05-27 14:07:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:07:53.951+03	2021-05-27 14:07:53.958+03	
e5da5b5b-d359-196f-6587-f72518def8e1	2021-05-27 14:08:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:08:13.951+03	2021-05-27 14:08:13.961+03	
bd29b1a6-da8f-b211-9fd8-c03983eb7373	2021-05-27 14:08:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:08:33.951+03	2021-05-27 14:08:33.959+03	
904bd2a5-8fe6-1d02-d16e-41252808caad	2021-05-27 14:08:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:08:53.951+03	2021-05-27 14:08:53.963+03	
37464b6c-6f83-368b-101e-584b5c58e619	2021-05-27 14:09:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:09:13.951+03	2021-05-27 14:09:13.96+03	
b34feea7-08c2-f454-5284-f0d7fce48e8c	2021-05-27 14:09:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:09:33.951+03	2021-05-27 14:09:33.959+03	
c5de5294-70cc-8f7e-955d-6be9cd4eefd3	2021-05-27 14:09:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:09:53.951+03	2021-05-27 14:09:53.958+03	
310753a5-c019-e32a-551f-0b857ee9eef2	2021-05-27 14:10:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:10:03.951+03	2021-05-27 14:10:03.959+03	
5ab87f6d-5056-5ed6-0750-70f3b447a8b3	2021-05-27 14:10:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:10:23.951+03	2021-05-27 14:10:23.958+03	
739ccfee-6e2d-7402-4b7a-a7e39e678ba6	2021-05-27 14:10:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:10:43.951+03	2021-05-27 14:10:43.963+03	
b5fddef6-a0cc-08f8-65af-7b0ca87bf289	2021-05-27 14:11:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:11:03.951+03	2021-05-27 14:11:03.959+03	
6ad65f63-7b9e-5ddd-a41a-8d3441c69cdf	2021-05-27 14:11:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:11:23.951+03	2021-05-27 14:11:23.958+03	
8c1c7754-8186-a388-7969-f2d9af633fdc	2021-05-27 14:11:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:11:43.951+03	2021-05-27 14:11:43.959+03	
1f727a90-94bc-2850-16c9-c484edf06f8f	2021-05-27 14:12:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:12:03.951+03	2021-05-27 14:12:03.957+03	
10b7e6b1-025c-291a-425f-db85ff414f86	2021-05-27 14:12:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:12:23.951+03	2021-05-27 14:12:23.959+03	
3041865e-eddb-9772-0970-df80366552cb	2021-05-27 14:12:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:12:43.951+03	2021-05-27 14:12:43.958+03	
2e39fd3d-c8da-77c2-310c-ba020a022f58	2021-05-27 14:13:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:13:03.951+03	2021-05-27 14:13:03.959+03	
50282f8e-233a-0503-cef9-b63aea826acd	2021-05-27 14:13:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:13:23.951+03	2021-05-27 14:13:23.957+03	
dfd08655-8c22-5bfd-cd85-182ddadb59d4	2021-05-27 14:13:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:13:43.951+03	2021-05-27 14:13:43.959+03	
8827c369-ecd0-481f-d8ca-8697c8956137	2021-05-27 14:14:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:14:03.951+03	2021-05-27 14:14:03.958+03	
69eda0c7-53ac-b231-ba00-f674d9f90447	2021-05-27 14:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:14:23.951+03	2021-05-27 14:14:23.96+03	
fe6d04d8-b8ac-05b5-92c0-a2a6f1b3c175	2021-05-27 14:14:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:14:43.951+03	2021-05-27 14:14:43.968+03	
de9fdaea-84f6-6c8a-59ad-7c464813e49f	2021-05-27 14:15:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:15:03.951+03	2021-05-27 14:15:03.961+03	
39c5e135-c678-6c58-868f-0561cc4e1ad2	2021-05-27 14:15:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:15:23.951+03	2021-05-27 14:15:23.96+03	
0ad0723b-690b-c357-638f-0fc13ec062da	2021-05-27 14:15:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:15:43.951+03	2021-05-27 14:15:43.958+03	
bdf87aae-face-2e90-c435-9978dccf6f8c	2021-05-27 14:16:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:16:03.951+03	2021-05-27 14:16:03.958+03	
152fc432-4eef-9d3a-bc8c-d8251d0e6d7c	2021-05-27 14:16:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:16:23.951+03	2021-05-27 14:16:23.959+03	
c20789fe-5c7e-250c-f390-968af7346c30	2021-05-27 14:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:16:43.951+03	2021-05-27 14:16:43.957+03	
a91de656-7e08-6cd2-b74d-41eb9108acc0	2021-05-27 14:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:17:03.951+03	2021-05-27 14:17:03.959+03	
3b1fd741-750b-2600-7481-d2969d7ea580	2021-05-27 14:17:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:17:23.951+03	2021-05-27 14:17:23.959+03	
009268d2-00a6-64c7-8f87-20518f3d75ee	2021-05-27 14:17:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:17:43.952+03	2021-05-27 14:17:43.959+03	
8b1585d6-c8c5-2451-9772-9dc244c6210c	2021-05-27 13:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:57:38.951+03	2021-05-27 13:57:38.959+03	
80ca1150-8d9b-549e-1c90-e3713c154975	2021-05-27 13:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:57:58.951+03	2021-05-27 13:57:58.958+03	
da3ee135-9b9d-bdc8-6e90-3af884327b7d	2021-05-27 13:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:58:19.951+03	2021-05-27 13:58:19.959+03	
8c96f63b-5603-799c-2441-58782a77b377	2021-05-27 13:58:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:58:39.951+03	2021-05-27 13:58:39.958+03	
af83202a-f9c5-49e5-8530-4b7deb7418f2	2021-05-27 13:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:58:59.951+03	2021-05-27 13:58:59.96+03	
a8a4dc3a-f1bc-84cf-626b-d3fba3ba49b4	2021-05-27 13:59:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:59:19.951+03	2021-05-27 13:59:19.959+03	
e83ad982-4545-a135-1145-64bde5262b27	2021-05-27 13:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:59:39.951+03	2021-05-27 13:59:39.957+03	
b1fb7dfb-a3c2-7c57-06a8-c7aefcaea29a	2021-05-27 13:59:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 13:59:59.951+03	2021-05-27 13:59:59.959+03	
27450182-ff6d-679c-590d-c9c3afffbfcd	2021-05-27 14:00:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:00:09.951+03	2021-05-27 14:00:09.963+03	
8e35a423-7a79-78e5-79ea-5f57a547a4f0	2021-05-27 14:00:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:00:29.951+03	2021-05-27 14:00:29.958+03	
06bd311e-9c8c-37ea-f88e-ca4b0517c8a7	2021-05-27 14:00:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:00:49.952+03	2021-05-27 14:00:49.96+03	
afffa2a5-b99d-6894-2711-d6913dfd7be8	2021-05-27 14:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:01:10.951+03	2021-05-27 14:01:10.96+03	
f94ca4ce-ecf8-da94-9d35-851eb8a4a59f	2021-05-27 14:01:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:01:30.951+03	2021-05-27 14:01:30.958+03	
f9b62386-7818-0723-d06d-1f0738001f27	2021-05-27 14:01:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:01:50.951+03	2021-05-27 14:01:50.958+03	
e82a5d28-d214-81a7-96bc-0c9fc6c50fc4	2021-05-27 14:02:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:02:10.951+03	2021-05-27 14:02:10.958+03	
e04ae2a0-ec19-5560-c84a-3a806d454773	2021-05-27 14:02:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:02:30.951+03	2021-05-27 14:02:30.96+03	
ccdee118-a13d-a0d4-fea6-52329a129f76	2021-05-27 14:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:02:50.951+03	2021-05-27 14:02:50.958+03	
432ca950-04c4-7d5f-5d04-25a097dd939a	2021-05-27 14:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:03:10.951+03	2021-05-27 14:03:10.959+03	
cb377af2-4687-a23f-5e74-cc215ff0aa7e	2021-05-27 14:03:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:03:30.951+03	2021-05-27 14:03:30.959+03	
063284c9-f2ce-1c53-c643-1aa277a87b02	2021-05-27 14:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:03:50.951+03	2021-05-27 14:03:50.96+03	
66b50de5-7d13-506a-8289-8e9b28aa7dea	2021-05-27 14:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:04:10.951+03	2021-05-27 14:04:10.961+03	
d641361a-a92f-e02f-c234-23aeae5ceb7b	2021-05-27 14:04:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:04:30.951+03	2021-05-27 14:04:30.957+03	
45e4f886-d536-161a-f48c-377fbf0462c0	2021-05-27 14:04:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:04:50.951+03	2021-05-27 14:04:50.958+03	
560b37b2-8909-640a-7b97-98f10ed88171	2021-05-27 14:05:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:05:10.951+03	2021-05-27 14:05:10.958+03	
df1f90dd-3609-ec58-f207-fdab2c312f5f	2021-05-27 14:05:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:05:20.951+03	2021-05-27 14:05:20.958+03	
b3812dd6-3908-7049-fc72-b8b1d2809864	2021-05-27 14:05:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:05:40.951+03	2021-05-27 14:05:40.958+03	
4ee517d2-d08a-d5f5-96ba-27a6a46052bd	2021-05-27 14:06:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:06:00.951+03	2021-05-27 14:06:00.959+03	
2979b52d-b8f1-3924-f397-ab6f0534c983	2021-05-27 14:06:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:06:20.952+03	2021-05-27 14:06:20.964+03	
b3447ae3-b8b1-d10c-ba4a-d427f692ae52	2021-05-27 14:06:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:06:41.952+03	2021-05-27 14:06:41.959+03	
1998c7a7-9664-058f-23a8-114c9e22410a	2021-05-27 14:07:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:07:02.951+03	2021-05-27 14:07:02.96+03	
5dfe446d-aa76-671e-c134-a851f3a8bf26	2021-05-27 14:07:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:07:22.951+03	2021-05-27 14:07:22.958+03	
3e5ae3bd-f903-fb2a-228d-fdf5dc0e7f3a	2021-05-27 14:07:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:07:42.952+03	2021-05-27 14:07:42.96+03	
0a4d41c3-07b3-7567-76fd-bec1582cb606	2021-05-27 14:08:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:08:03.951+03	2021-05-27 14:08:03.958+03	
42663ff1-80ec-05b2-7e1a-ece0c922183c	2021-05-27 14:08:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:08:23.951+03	2021-05-27 14:08:23.959+03	
ed1940bc-384c-f67c-6f74-6754df27bdb6	2021-05-27 14:08:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:08:43.951+03	2021-05-27 14:08:43.962+03	
6c541364-4af7-6d15-9b61-14ebdaa582fd	2021-05-27 14:09:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:09:03.951+03	2021-05-27 14:09:03.959+03	
917dab73-7547-3c3d-61e8-0a869690ffd8	2021-05-27 14:09:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:09:23.951+03	2021-05-27 14:09:23.959+03	
511c0474-b1c4-279b-487e-ac31b88182e6	2021-05-27 14:09:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:09:43.951+03	2021-05-27 14:09:43.957+03	
d24d7c5c-5e82-ce06-f9d7-5cbd6c1ecf5e	2021-05-27 14:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 14:10:00.951+03	2021-05-27 14:10:00.956+03	ERROR
1e6f5a97-4c0f-179e-073e-e0e9331f2abb	2021-05-27 14:10:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:10:13.951+03	2021-05-27 14:10:13.959+03	
dbdb2e4b-e046-fdf3-2361-5d8aedc65e13	2021-05-27 14:10:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:10:33.951+03	2021-05-27 14:10:33.96+03	
7cd1d0e9-8eda-9005-f3a3-194fd843b423	2021-05-27 14:10:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:10:53.951+03	2021-05-27 14:10:53.958+03	
20c0d3fa-d6b4-fd00-7780-d91d7333c05a	2021-05-27 14:11:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:11:13.951+03	2021-05-27 14:11:13.958+03	
09d096a1-01eb-0d1d-0583-3672abaa023c	2021-05-27 14:11:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:11:33.951+03	2021-05-27 14:11:33.959+03	
148f8486-8f04-396a-45ba-05dcd2e2ac39	2021-05-27 14:11:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:11:53.951+03	2021-05-27 14:11:53.959+03	
b5f12d2d-7f35-564e-fe0a-388d2fdaba14	2021-05-27 14:12:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:12:13.951+03	2021-05-27 14:12:13.958+03	
6348f24f-782f-8fd1-b1cb-63dbbf129357	2021-05-27 14:12:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:12:33.951+03	2021-05-27 14:12:33.959+03	
f4886447-f9c1-e5b7-1dae-ed127234570e	2021-05-27 14:12:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:12:53.951+03	2021-05-27 14:12:53.958+03	
578c7951-6cfd-35c0-45c9-96f993e6f385	2021-05-27 14:13:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:13:13.951+03	2021-05-27 14:13:13.959+03	
8ca5a027-ad20-0fd4-7003-42d13e92b307	2021-05-27 14:13:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:13:33.951+03	2021-05-27 14:13:33.958+03	
b7ba4114-8109-9972-eb1d-35d692cad308	2021-05-27 14:13:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:13:53.951+03	2021-05-27 14:13:53.961+03	
61fcfe18-e114-3d12-9599-32aec7f396c2	2021-05-27 14:14:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:14:13.951+03	2021-05-27 14:14:13.958+03	
a24583e6-ca01-0b5e-e4f1-0aab3f538d33	2021-05-27 14:14:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:14:33.951+03	2021-05-27 14:14:33.958+03	
ea3a063d-d22d-04e4-0574-abfd84d547de	2021-05-27 14:14:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:14:53.951+03	2021-05-27 14:14:53.958+03	
0baedf1f-416b-eb38-1747-4dea6c547b7e	2021-05-27 14:15:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:15:13.951+03	2021-05-27 14:15:13.959+03	
5fae8f3b-da44-6c80-82c3-53791caac25d	2021-05-27 14:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:15:33.951+03	2021-05-27 14:15:33.961+03	
9bf51a8f-b954-48dd-6841-820e4f808179	2021-05-27 14:15:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:15:53.951+03	2021-05-27 14:15:53.959+03	
5d345cec-c2a7-8290-edce-950295df79f1	2021-05-27 14:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:16:13.951+03	2021-05-27 14:16:13.959+03	
afb0b8ef-8f01-30b2-8fdb-3b80ee32d948	2021-05-27 14:16:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:16:33.951+03	2021-05-27 14:16:33.958+03	
f48ba4a1-79cf-17cb-1ec3-90a02c470b5a	2021-05-27 14:16:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:16:53.951+03	2021-05-27 14:16:53.958+03	
b83473d8-df28-fea1-59a2-14b7f33b126b	2021-05-27 14:17:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:17:13.951+03	2021-05-27 14:17:13.959+03	
53a03655-4bac-b577-8229-fbfd70903f03	2021-05-27 14:17:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:17:33.951+03	2021-05-27 14:17:33.958+03	
f927a38a-ef4f-13a4-055c-b37cb9c30898	2021-05-27 14:17:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:17:54.951+03	2021-05-27 14:17:54.958+03	
5dea66ec-d9fc-d738-b99f-a01f12d529c8	2021-05-27 14:18:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:18:04.951+03	2021-05-27 14:18:04.959+03	
e36f4be8-d325-ff46-30ab-ecf3dd5278ad	2021-05-27 14:18:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:18:24.951+03	2021-05-27 14:18:24.957+03	
a9fdb513-7e35-33d6-3412-6118bedfbb93	2021-05-27 14:18:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:18:44.951+03	2021-05-27 14:18:44.959+03	
31efc2e5-e1c4-a14f-39e0-a6991e7c5014	2021-05-27 14:19:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:19:04.951+03	2021-05-27 14:19:04.959+03	
eac06bc9-0127-25af-b36b-4ca111d00016	2021-05-27 14:19:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:19:24.951+03	2021-05-27 14:19:24.959+03	
d2d54af1-34f6-1aea-3db1-1564a987ddb1	2021-05-27 14:19:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:19:44.951+03	2021-05-27 14:19:44.958+03	
3ad5a951-65a1-6c59-9889-bb6e9984f8f1	2021-05-27 14:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 14:20:00.951+03	2021-05-27 14:20:00.957+03	ERROR
98f68b4d-876d-9b43-d23b-d95e4588955c	2021-05-27 14:20:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:20:14.951+03	2021-05-27 14:20:14.959+03	
0415a790-c10a-96a5-94d2-1dc4693b870b	2021-05-27 14:20:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:20:34.951+03	2021-05-27 14:20:34.958+03	
36142779-b7af-7138-5994-1c931ba9023c	2021-05-27 14:20:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:20:54.951+03	2021-05-27 14:20:54.96+03	
ceaee84a-0959-6b82-90a4-1b0b45478917	2021-05-27 14:21:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:21:14.951+03	2021-05-27 14:21:14.958+03	
a3aa2f57-f9b1-95c1-1e5f-19f33509bce9	2021-05-27 14:21:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:21:34.951+03	2021-05-27 14:21:34.959+03	
6df04872-9993-a4c0-99c6-23fe95f12c9b	2021-05-27 14:21:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:21:54.951+03	2021-05-27 14:21:54.958+03	
c8cc7934-2f00-5ab9-9d6e-c8778582efdf	2021-05-27 14:22:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:22:14.951+03	2021-05-27 14:22:14.959+03	
432dc561-0521-b001-c34a-c42e071f11d9	2021-05-27 14:22:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:22:34.951+03	2021-05-27 14:22:34.958+03	
6fe0dac1-ece0-e468-7c40-fec9cde14600	2021-05-27 14:22:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:22:54.951+03	2021-05-27 14:22:54.958+03	
7ccc905b-efc1-c87a-ad30-4212e2a85af4	2021-05-27 14:23:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:23:14.951+03	2021-05-27 14:23:14.959+03	
844c8d56-f944-c11a-214d-c7fad41083ba	2021-05-27 14:23:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:23:34.951+03	2021-05-27 14:23:34.958+03	
d5d73583-6aa7-61b5-12a7-0e67d42a67a3	2021-05-27 14:23:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:23:54.951+03	2021-05-27 14:23:54.958+03	
d2b63423-31d2-44af-f0da-87e12ef67dbe	2021-05-27 14:24:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:24:14.951+03	2021-05-27 14:24:14.96+03	
f2fdc6c4-fcb0-ea47-9007-128c29be669f	2021-05-27 14:24:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:24:34.951+03	2021-05-27 14:24:34.959+03	
ebaf1ba7-6668-2ea6-01f2-7a9446e850cf	2021-05-27 14:24:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:24:54.951+03	2021-05-27 14:24:54.958+03	
b0d184ef-0d57-0b1b-c2b7-9b89886a052a	2021-05-27 14:25:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:25:14.952+03	2021-05-27 14:25:14.96+03	
94781397-3007-6d46-eb27-d95bf9715f9a	2021-05-27 14:25:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:25:36.951+03	2021-05-27 14:25:36.957+03	
2221a8a4-8580-4d94-57f0-7fb698a1d061	2021-05-27 14:25:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:25:56.951+03	2021-05-27 14:25:56.96+03	
bf5b275b-a22c-9f4d-c303-f220b4f02882	2021-05-27 14:26:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:26:16.951+03	2021-05-27 14:26:16.958+03	
bb85c3ff-0563-14b4-3600-5885eee6cc3e	2021-05-27 14:26:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:26:36.951+03	2021-05-27 14:26:36.958+03	
2d55f5c4-8c8c-a501-5a77-eaf29e1bcccd	2021-05-27 14:26:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:26:56.951+03	2021-05-27 14:26:56.958+03	
f1d70c16-809b-dbe7-3a70-9b2d84f1817f	2021-05-27 14:27:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:27:16.951+03	2021-05-27 14:27:16.957+03	
24c33e24-aa09-d2ce-45cc-bf27ea2039a9	2021-05-27 14:27:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:27:36.951+03	2021-05-27 14:27:36.958+03	
60013182-8b58-8069-651a-7eab0e73c11f	2021-05-27 14:27:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:27:56.951+03	2021-05-27 14:27:56.957+03	
9b8226eb-19bf-b284-f372-04864608b4b4	2021-05-27 14:28:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:28:16.951+03	2021-05-27 14:28:16.958+03	
448eaaf8-86a5-4104-5ba0-d0e1afbc29c6	2021-05-27 14:28:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:28:36.951+03	2021-05-27 14:28:36.962+03	
cf50dc6f-6ae9-2355-6a74-6d74537b5c83	2021-05-27 14:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:28:56.952+03	2021-05-27 14:28:56.963+03	
c89ea2ca-776a-8e7a-c497-cfec871741ea	2021-05-27 14:29:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:29:18.951+03	2021-05-27 14:29:18.959+03	
3bf280d0-a1c0-119b-02aa-56ee74a218b2	2021-05-27 14:29:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:29:38.951+03	2021-05-27 14:29:38.962+03	
555677a1-767e-8bd7-4178-44474a221f89	2021-05-27 14:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:29:59.951+03	2021-05-27 14:29:59.962+03	
3cc09f55-4608-a544-dbea-5584cdb8b05c	2021-05-27 14:30:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:30:09.951+03	2021-05-27 14:30:09.959+03	
b3845b7f-3761-0097-8e0e-f3721a4b9e03	2021-05-27 14:30:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:30:29.951+03	2021-05-27 14:30:29.957+03	
2876df61-6263-6338-f061-32ea81469a85	2021-05-27 14:30:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:30:50.952+03	2021-05-27 14:30:50.96+03	
64b1b0ac-9fca-f886-c564-20d487211cc2	2021-05-27 14:31:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:31:11.951+03	2021-05-27 14:31:11.958+03	
dc3de9e0-bf43-c9c3-f838-716d437c5d78	2021-05-27 14:31:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:31:31.951+03	2021-05-27 14:31:31.958+03	
e46ff37f-1875-e0c6-c826-12c009bee2ca	2021-05-27 14:31:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:31:51.951+03	2021-05-27 14:31:51.959+03	
aab71d27-2a1c-3483-96f4-6207607591ee	2021-05-27 14:32:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:32:11.951+03	2021-05-27 14:32:11.959+03	
613babef-e964-87f1-d952-e6316ed062af	2021-05-27 14:32:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:32:31.951+03	2021-05-27 14:32:31.958+03	
a9620937-7978-9f94-8093-2b794309f924	2021-05-27 14:32:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:32:51.951+03	2021-05-27 14:32:51.958+03	
a21ded10-0265-ffed-7633-49748870cdaf	2021-05-27 14:33:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:33:11.951+03	2021-05-27 14:33:11.958+03	
e01731ee-b882-b089-a640-e023b5f4914b	2021-05-27 14:33:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:33:31.951+03	2021-05-27 14:33:31.959+03	
33bea33e-4656-36ca-8773-fb8c50692a43	2021-05-27 14:33:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:33:51.951+03	2021-05-27 14:33:51.96+03	
319dc4b3-a77f-e5ba-5ef2-8cad0bef23d1	2021-05-27 14:34:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:34:11.951+03	2021-05-27 14:34:11.96+03	
cce235b0-bce1-6abb-ac7d-327a7df955ce	2021-05-27 14:34:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:34:31.951+03	2021-05-27 14:34:31.957+03	
42d3e83b-d7c1-257d-986b-8d5b9b8b2ae7	2021-05-27 14:34:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:34:51.951+03	2021-05-27 14:34:51.957+03	
6faecd27-092e-7495-bbdb-c54e7d6adaab	2021-05-27 14:35:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:35:11.951+03	2021-05-27 14:35:11.958+03	
ac397162-ba80-8472-78c8-9597d7d8144c	2021-05-27 14:35:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:35:31.951+03	2021-05-27 14:35:31.959+03	
ba3ed831-5ebe-bbbb-a1a9-3925427921de	2021-05-27 14:35:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:35:51.951+03	2021-05-27 14:35:51.958+03	
c96dc153-1a64-342b-d8d8-d14644f9e2e8	2021-05-27 14:36:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:36:11.951+03	2021-05-27 14:36:11.959+03	
2660fb69-6144-3f93-21e1-6814a08926bf	2021-05-27 14:36:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:36:31.951+03	2021-05-27 14:36:31.96+03	
08587b21-221d-7870-fdd8-c65c24cab1ad	2021-05-27 14:36:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:36:51.951+03	2021-05-27 14:36:51.957+03	
fa2aa05c-b412-c8a9-b816-e5192a12df6f	2021-05-27 14:37:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:37:11.951+03	2021-05-27 14:37:11.959+03	
63c37519-4c7d-c0af-d22c-d63b3e2ec946	2021-05-27 14:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:37:31.951+03	2021-05-27 14:37:31.959+03	
8ffc1779-d49e-0ba3-f967-86a62f1465a6	2021-05-27 14:37:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:37:52.951+03	2021-05-27 14:37:52.958+03	
e171f401-c081-7e93-d749-5f024f0c5fcd	2021-05-27 14:38:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:38:13.951+03	2021-05-27 14:38:13.958+03	
510bdc99-e20d-7912-dcf0-d74448ed082e	2021-05-27 14:38:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:38:33.951+03	2021-05-27 14:38:33.958+03	
9c5b0a57-f574-26c0-4b50-4f338a4af173	2021-05-27 14:18:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:18:14.951+03	2021-05-27 14:18:14.957+03	
7e965fbd-600c-786f-cb27-2e4de4b7da6a	2021-05-27 14:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:18:34.951+03	2021-05-27 14:18:34.958+03	
3b9b3b40-63fe-e6d0-bea6-b948c3847f6e	2021-05-27 14:18:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:18:54.951+03	2021-05-27 14:18:54.957+03	
fc76fa63-9552-12ce-fc11-d74eba5a1569	2021-05-27 14:19:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:19:14.951+03	2021-05-27 14:19:14.958+03	
4a7ee611-959f-b5bc-1237-b102ea5d3385	2021-05-27 14:19:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:19:34.951+03	2021-05-27 14:19:34.96+03	
4e2b5323-6bf3-e272-d20c-1ee461effe5e	2021-05-27 14:19:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:19:54.951+03	2021-05-27 14:19:54.957+03	
b7256e57-ebae-1757-ded1-4db61f8af5fe	2021-05-27 14:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:20:04.951+03	2021-05-27 14:20:04.959+03	
fdd5f29a-bccb-16bb-5d2f-8ddf1c9fd2a7	2021-05-27 14:20:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:20:24.951+03	2021-05-27 14:20:24.959+03	
d8bce026-96c9-8f23-87ab-5ff0b301f446	2021-05-27 14:20:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:20:44.951+03	2021-05-27 14:20:44.958+03	
2be3efd2-4dae-7739-3444-ce390f5ff01f	2021-05-27 14:21:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:21:04.951+03	2021-05-27 14:21:04.959+03	
11b0e932-0fbf-7a1e-3a9c-1f50f16f9763	2021-05-27 14:21:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:21:24.951+03	2021-05-27 14:21:24.957+03	
f6191825-d140-7fc5-31fc-b9bec4753493	2021-05-27 14:21:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:21:44.951+03	2021-05-27 14:21:44.96+03	
60977e52-b656-e8ab-40cf-c52679c51ca9	2021-05-27 14:22:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:22:04.951+03	2021-05-27 14:22:04.96+03	
cd2ebd2f-da4f-4a4d-0b37-b4e518ba9fd9	2021-05-27 14:22:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:22:24.951+03	2021-05-27 14:22:24.957+03	
50075ee6-397d-6183-8537-6d0232164e92	2021-05-27 14:22:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:22:44.951+03	2021-05-27 14:22:45.276+03	
da8fe6f4-fb3d-f5f7-1f98-cfd0c427972e	2021-05-27 14:23:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:23:04.951+03	2021-05-27 14:23:04.958+03	
aca7b58e-ed80-f736-9024-fadd60076fdc	2021-05-27 14:23:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:23:24.951+03	2021-05-27 14:23:24.961+03	
881ad2d7-9b48-2d90-460b-c39fbc31f5e7	2021-05-27 14:23:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:23:44.951+03	2021-05-27 14:23:44.959+03	
1626c46d-504c-792b-c083-7eb7deb33fb4	2021-05-27 14:24:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:24:04.951+03	2021-05-27 14:24:04.958+03	
bfdd6f32-0fb3-0955-10c8-8b58b2451dee	2021-05-27 14:24:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:24:24.951+03	2021-05-27 14:24:24.959+03	
53cfdac1-ed43-cf62-3c42-7fe9d1bfc189	2021-05-27 14:24:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:24:44.951+03	2021-05-27 14:24:44.958+03	
72980d09-5c4a-f5b2-ffd1-8a7c546f0846	2021-05-27 14:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:25:04.951+03	2021-05-27 14:25:04.959+03	
9a44ce04-8708-8b35-563a-cf3ea577fae7	2021-05-27 14:25:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:25:25.952+03	2021-05-27 14:25:25.96+03	
400f2892-863f-6185-ba93-865426e044e7	2021-05-27 14:25:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:25:46.951+03	2021-05-27 14:25:46.958+03	
3fb0d1c6-a8f9-f5c4-c861-424a8976a72a	2021-05-27 14:26:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:26:06.951+03	2021-05-27 14:26:06.959+03	
9d1d8134-aabf-c9a6-2d29-4d4a5b98bb4d	2021-05-27 14:26:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:26:26.951+03	2021-05-27 14:26:26.957+03	
df1ab4df-c5ac-8f89-fe99-bb45eef53bea	2021-05-27 14:26:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:26:46.951+03	2021-05-27 14:26:46.96+03	
1d79f02a-b623-428d-a6ba-cdd121aa0f8d	2021-05-27 14:27:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:27:06.951+03	2021-05-27 14:27:06.959+03	
d6e7e77f-018a-6005-bcfb-883a0899e6bb	2021-05-27 14:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:27:26.951+03	2021-05-27 14:27:26.958+03	
019b2c8c-ae57-2e07-9d10-9921b103e21d	2021-05-27 14:27:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:27:46.951+03	2021-05-27 14:27:46.958+03	
75c9fedb-823f-ea6f-fbaa-da58ecb5dc96	2021-05-27 14:28:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:28:06.951+03	2021-05-27 14:28:06.958+03	
f97d55f7-cb72-532f-b213-01c3295c592d	2021-05-27 14:28:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:28:26.951+03	2021-05-27 14:28:26.958+03	
609ecb13-5094-bff4-d238-7c520790db6e	2021-05-27 14:28:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:28:46.951+03	2021-05-27 14:28:46.96+03	
830c0bfd-6cc1-285a-9dbd-49606c525da2	2021-05-27 14:29:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:29:07.953+03	2021-05-27 14:29:07.961+03	
30d059c5-b8e3-7c71-00ff-be09ffd67537	2021-05-27 14:29:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:29:28.951+03	2021-05-27 14:29:28.957+03	
69189dd5-230f-f353-4a45-46c2dabfb09a	2021-05-27 14:29:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:29:48.952+03	2021-05-27 14:29:48.961+03	
1df9934f-f681-4f4d-eb19-fcc34ec64eeb	2021-05-27 14:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 14:30:00.951+03	2021-05-27 14:30:00.957+03	ERROR
874ef179-e2f9-6bad-11d8-4c51cd96f677	2021-05-27 14:30:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:30:19.951+03	2021-05-27 14:30:19.958+03	
f42ec0da-c540-3aea-4731-4e4ee151909e	2021-05-27 14:30:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:30:39.952+03	2021-05-27 14:30:39.961+03	
2c7eac4c-8e23-ec11-f7f1-651afa95ca2f	2021-05-27 14:31:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:31:01.951+03	2021-05-27 14:31:01.959+03	
8675055d-f349-6b11-a9b2-ba242cbb047f	2021-05-27 14:31:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:31:21.951+03	2021-05-27 14:31:21.957+03	
acdfb658-712e-9e91-569e-a3fbd2463575	2021-05-27 14:31:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:31:41.951+03	2021-05-27 14:31:41.963+03	
1b48956b-f7b1-7900-0b31-84609e0c2dbe	2021-05-27 14:32:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:32:01.951+03	2021-05-27 14:32:01.958+03	
78c86b53-72d6-9012-d8ac-f5b922cb1e53	2021-05-27 14:32:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:32:21.951+03	2021-05-27 14:32:21.958+03	
3f9866e9-b5ac-7cb9-b815-bb4e87cc6f0d	2021-05-27 14:32:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:32:41.951+03	2021-05-27 14:32:41.958+03	
fac23f25-3067-66c8-7f5f-e8fef28e84e0	2021-05-27 14:33:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:33:01.951+03	2021-05-27 14:33:01.958+03	
7e3d83dc-c396-296b-c1cb-baa435570569	2021-05-27 14:33:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:33:21.951+03	2021-05-27 14:33:21.958+03	
298e8580-3a52-06ef-0cf3-eacbc7115e6b	2021-05-27 14:33:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:33:41.951+03	2021-05-27 14:33:41.96+03	
bff3c7cf-6c9a-af4c-42bc-2a60835367d3	2021-05-27 14:34:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:34:01.951+03	2021-05-27 14:34:01.958+03	
2a0d84cc-8641-ee3a-7ded-4c7d13ca0cb4	2021-05-27 14:34:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:34:21.951+03	2021-05-27 14:34:21.959+03	
fee206ca-90c4-b9ae-1092-61e213fb3fa7	2021-05-27 14:34:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:34:41.951+03	2021-05-27 14:34:41.959+03	
8e67b5ef-3e87-f3d1-a377-fae7513a6481	2021-05-27 14:35:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:35:01.951+03	2021-05-27 14:35:01.957+03	
f60a8ee7-06b4-c97e-7b61-7aca30aeee60	2021-05-27 14:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:35:21.951+03	2021-05-27 14:35:21.983+03	
b8a779d1-f5cc-3446-8dc9-b7b8668fa15d	2021-05-27 14:35:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:35:41.951+03	2021-05-27 14:35:41.959+03	
96779e3a-ccbf-f4b0-d3bd-2ca65ba50381	2021-05-27 14:36:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:36:01.951+03	2021-05-27 14:36:01.959+03	
18049154-0548-2b2b-440d-3237018e0fbf	2021-05-27 14:36:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:36:21.951+03	2021-05-27 14:36:21.958+03	
8f765773-20bd-834a-3f74-988f59f022c8	2021-05-27 14:36:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:36:41.951+03	2021-05-27 14:36:41.958+03	
70657887-dd7b-3fae-fb9e-4f368f499158	2021-05-27 14:37:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:37:01.951+03	2021-05-27 14:37:01.958+03	
965288a0-050c-5dee-3027-f6084238483f	2021-05-27 14:37:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:37:21.951+03	2021-05-27 14:37:21.958+03	
fb54e6e7-d8b8-f8d5-cab9-7c27c3006fb7	2021-05-27 14:37:41.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:37:41.952+03	2021-05-27 14:37:41.961+03	
d953c321-2cc1-5df4-991c-86dfb9b3afff	2021-05-27 14:38:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:38:02.952+03	2021-05-27 14:38:02.96+03	
4823dce1-4984-5fc9-e95c-f4aec85e1084	2021-05-27 14:38:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:38:23.951+03	2021-05-27 14:38:23.96+03	
5a40134b-17ff-c3be-a7ab-9c3df9fb6454	2021-05-27 14:38:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:38:43.951+03	2021-05-27 14:38:43.96+03	
cd7c8a60-9d32-12cf-36a3-d185ce63a1e6	2021-05-27 14:38:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:38:53.951+03	2021-05-27 14:38:53.961+03	
3aa7642f-42d9-8931-6c7d-cf30ae12f37a	2021-05-27 14:39:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:39:13.951+03	2021-05-27 14:39:13.958+03	
c0ece884-f865-2f27-37ca-696a9c0f5873	2021-05-27 14:39:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:39:33.951+03	2021-05-27 14:39:33.958+03	
f4e7bee0-4d6e-d107-9efe-0f25f6a710d5	2021-05-27 14:39:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:39:53.951+03	2021-05-27 14:39:53.959+03	
bb384945-e047-9d4c-9ff6-faeefadb26a0	2021-05-27 14:40:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:40:03.951+03	2021-05-27 14:40:03.959+03	
68b41d5a-55a0-d46f-77c1-30144773f5cd	2021-05-27 14:40:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:40:23.952+03	2021-05-27 14:40:23.959+03	
65fe0f9a-6114-62e2-d29e-112eb475fad5	2021-05-27 14:40:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:40:44.951+03	2021-05-27 14:40:44.959+03	
f8268c67-11ff-2bba-289d-33783310d041	2021-05-27 14:41:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:41:04.951+03	2021-05-27 14:41:04.958+03	
bc1da587-ce34-88e4-1b52-0052d921cd24	2021-05-27 14:41:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:41:24.951+03	2021-05-27 14:41:24.958+03	
21edf75c-96b6-e7b8-adee-f969a9ec12da	2021-05-27 14:41:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:41:44.951+03	2021-05-27 14:41:44.958+03	
0b7f8afd-c6a5-bab2-4e0e-f16b18130e62	2021-05-27 14:42:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:42:04.951+03	2021-05-27 14:42:04.958+03	
cae47c25-50d1-325e-c3c5-a4dbde6647c6	2021-05-27 14:42:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:42:24.951+03	2021-05-27 14:42:24.958+03	
331e0e80-6257-9d68-c94c-d74da5ae3688	2021-05-27 14:42:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:42:44.951+03	2021-05-27 14:42:44.959+03	
08fc2582-a642-1c38-2310-c57e2837472d	2021-05-27 14:43:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:43:04.951+03	2021-05-27 14:43:04.957+03	
fd39cbe6-c2ec-29de-2809-85263113cbb3	2021-05-27 14:43:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:43:24.951+03	2021-05-27 14:43:24.958+03	
96d9a457-23b4-31b7-7880-5e111216f114	2021-05-27 14:43:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:43:44.951+03	2021-05-27 14:43:44.959+03	
4ddc8ed5-b1f6-510c-4fff-04d2e36a49f1	2021-05-27 14:44:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:44:04.951+03	2021-05-27 14:44:04.957+03	
5add0b72-979f-4bd8-d256-a22671289323	2021-05-27 14:44:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:44:24.951+03	2021-05-27 14:44:24.962+03	
b58d19cd-5c55-8ecb-e581-e8eb45f2010d	2021-05-27 14:44:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:44:44.951+03	2021-05-27 14:44:44.96+03	
36baf5c6-eaa0-4417-c206-4d92bf934722	2021-05-27 14:45:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:45:04.951+03	2021-05-27 14:45:04.958+03	
f2bac903-53ff-a5ac-39f7-d4be7b407fad	2021-05-27 14:45:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:45:24.951+03	2021-05-27 14:45:24.959+03	
b0c7dcff-4d45-ad85-11eb-5586a3f0464f	2021-05-27 14:45:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:45:44.951+03	2021-05-27 14:45:44.958+03	
968c2bf2-2dc2-0dc6-2afd-07af7c7e2af9	2021-05-27 14:46:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:46:04.951+03	2021-05-27 14:46:04.958+03	
4b55ff55-d4b2-4c84-b22e-d1890b64db71	2021-05-27 14:46:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:46:24.951+03	2021-05-27 14:46:24.957+03	
694217f4-79d7-8bd1-38ae-b1214414538f	2021-05-27 14:46:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:46:44.951+03	2021-05-27 14:46:44.958+03	
06b366c5-2623-bd33-217a-888c07804d65	2021-05-27 14:47:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:47:04.951+03	2021-05-27 14:47:04.96+03	
62ba0080-6752-6c53-278c-0a3d2f359cbd	2021-05-27 14:47:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:47:24.951+03	2021-05-27 14:47:24.958+03	
e4d7a032-5c27-1bc2-fe6d-b2c3ef9fc534	2021-05-27 14:47:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:47:44.951+03	2021-05-27 14:47:44.958+03	
5690decc-2f07-40a1-7b4c-50f319cc346f	2021-05-27 14:48:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:48:04.951+03	2021-05-27 14:48:04.959+03	
3d95f01c-4436-c168-10dc-4692047a34bd	2021-05-27 14:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:48:24.951+03	2021-05-27 14:48:24.96+03	
3d423dbb-9ba1-af62-81c1-8855754da842	2021-05-27 14:48:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:48:44.951+03	2021-05-27 14:48:44.959+03	
68b4304d-8aa2-4390-fa01-474c50127496	2021-05-27 14:49:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:49:04.951+03	2021-05-27 14:49:04.959+03	
17f1e485-3e5c-1ba0-a22f-04ca7feb13b5	2021-05-27 14:49:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:49:24.951+03	2021-05-27 14:49:24.957+03	
f60910d0-427d-2111-3dfb-a4db157cf67c	2021-05-27 14:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:49:44.951+03	2021-05-27 14:49:44.96+03	
eab60373-9a6e-99f9-0d5c-7532afc37778	2021-05-27 14:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 14:50:00.951+03	2021-05-27 14:50:00.956+03	ERROR
a59ee1aa-a098-e7ba-b0e4-cd73b2a41ab3	2021-05-27 14:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:50:14.951+03	2021-05-27 14:50:14.961+03	
01e046ce-b028-1e5e-57ad-89768eaf18b1	2021-05-27 14:50:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:50:34.951+03	2021-05-27 14:50:34.959+03	
1eede01a-386f-6bf9-2a9f-93a062d2f8cb	2021-05-27 14:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:50:54.951+03	2021-05-27 14:50:54.959+03	
40ba8039-3c34-db29-8d69-c2c0bda1d656	2021-05-27 14:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:51:14.951+03	2021-05-27 14:51:14.96+03	
038dda51-a3bf-9ccd-5115-842b9e38433b	2021-05-27 14:51:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:51:34.951+03	2021-05-27 14:51:34.958+03	
d588fcf1-9d56-1b51-505c-98ef3a6fc521	2021-05-27 14:51:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:51:54.951+03	2021-05-27 14:51:54.959+03	
71f3fa7d-09b3-59a8-947e-09b01c0fb00f	2021-05-27 14:52:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:52:14.951+03	2021-05-27 14:52:14.962+03	
e5b5eacd-eef5-4aea-b19d-693eb31dc14a	2021-05-27 14:52:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:52:34.951+03	2021-05-27 14:52:34.959+03	
b47a7c85-068a-1a54-b910-9db5426356b9	2021-05-27 14:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:52:54.951+03	2021-05-27 14:52:54.959+03	
06146fba-8e5c-5347-b234-f267bc15020e	2021-05-27 14:53:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:53:14.951+03	2021-05-27 14:53:14.959+03	
5da0cdda-569e-8301-3f18-758074be802c	2021-05-27 14:53:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:53:34.951+03	2021-05-27 14:53:34.958+03	
7a9b322e-c6f1-340e-f3d2-e6398ffdc093	2021-05-27 14:53:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:53:54.951+03	2021-05-27 14:53:54.958+03	
c4173305-e7ad-f88c-ee97-048dac84a3d2	2021-05-27 14:54:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:54:14.951+03	2021-05-27 14:54:14.958+03	
f705a76b-f1cd-e902-4d5f-27b6171a504f	2021-05-27 14:54:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:54:34.951+03	2021-05-27 14:54:34.959+03	
01db1dfd-8f5d-4d9e-41f9-4f1262b3c2b8	2021-05-27 14:54:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:54:54.951+03	2021-05-27 14:54:54.957+03	
f44e3995-0425-8f2d-1bd0-4f55dd3fd281	2021-05-27 14:55:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:55:14.951+03	2021-05-27 14:55:14.959+03	
b670d679-dc01-0704-30fb-df2b6f6d1f60	2021-05-27 14:55:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:55:34.951+03	2021-05-27 14:55:34.96+03	
5ccdc0db-0821-5b35-30ff-a998aec4635b	2021-05-27 14:55:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:55:54.951+03	2021-05-27 14:55:54.959+03	
14ec2e9d-6b6b-98fe-a6d6-2d548e6f39c3	2021-05-27 14:56:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:56:14.951+03	2021-05-27 14:56:14.959+03	
719429d0-f8c9-08c4-2237-4fb2d102e23b	2021-05-27 14:56:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:56:34.951+03	2021-05-27 14:56:34.958+03	
03787bd4-cb21-880d-528f-c80e578c13b3	2021-05-27 14:56:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:56:54.951+03	2021-05-27 14:56:54.962+03	
f98fd9fa-eaac-4cf8-d186-9a0382c1c86e	2021-05-27 14:57:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:57:14.951+03	2021-05-27 14:57:14.959+03	
e404cc45-12ce-3077-c286-f5eb335ab04b	2021-05-27 14:57:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:57:34.951+03	2021-05-27 14:57:34.958+03	
c8d17b8f-8e51-e811-fbbe-d6e06b3eeb9b	2021-05-27 14:57:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:57:54.952+03	2021-05-27 14:57:54.96+03	
518a154c-6d67-7a0e-c981-453867b7260d	2021-05-27 14:58:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:58:15.951+03	2021-05-27 14:58:15.961+03	
97f8f5d2-eaa9-6db3-79cd-3ca7602e2d2c	2021-05-27 14:58:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:58:35.951+03	2021-05-27 14:58:35.96+03	
e9026b58-62af-d3b6-a81c-e87588590a6d	2021-05-27 14:58:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:58:55.951+03	2021-05-27 14:58:55.961+03	
b2be3e43-f9bf-e300-f342-5922f32d0e21	2021-05-27 14:59:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:59:15.951+03	2021-05-27 14:59:15.958+03	
112a4d64-c9b0-9c56-18e0-850258bb3949	2021-05-27 14:39:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:39:03.951+03	2021-05-27 14:39:03.96+03	
fbb1ae58-ea3f-b91f-e11b-957d8aa78b48	2021-05-27 14:39:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:39:23.951+03	2021-05-27 14:39:23.958+03	
aa69d955-87f0-db25-c8bd-da2123c085ce	2021-05-27 14:39:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:39:43.951+03	2021-05-27 14:39:43.96+03	
5e2a2a62-2d3a-cec7-c221-0c58501de27c	2021-05-27 14:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 14:40:00.951+03	2021-05-27 14:40:00.961+03	ERROR
39481bf3-b5c2-d6b4-c11e-ba5629f16f86	2021-05-27 14:40:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:40:13.951+03	2021-05-27 14:40:13.958+03	
b427b18d-80c6-e429-5b29-ae73200140fc	2021-05-27 14:40:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:40:33.952+03	2021-05-27 14:40:33.96+03	
08fc2d0e-56c1-3d74-03ba-beab1276994f	2021-05-27 14:40:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:40:54.951+03	2021-05-27 14:40:54.958+03	
4800adb0-b2c8-7d63-48d3-2bee513c7d4e	2021-05-27 14:41:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:41:14.951+03	2021-05-27 14:41:14.959+03	
8d6a2784-a7e1-bc85-d9d7-00a935289c26	2021-05-27 14:41:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:41:34.951+03	2021-05-27 14:41:34.957+03	
7b8564b7-a7bf-2b30-4bfe-12c6bba916fb	2021-05-27 14:41:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:41:54.951+03	2021-05-27 14:41:54.959+03	
0a2b053a-d433-c8b8-d870-dc08c00f5d2b	2021-05-27 14:42:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:42:14.951+03	2021-05-27 14:42:14.959+03	
aa61de2e-4841-c9a5-160a-d1981287646a	2021-05-27 14:42:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:42:34.951+03	2021-05-27 14:42:34.958+03	
ab31acd6-f19b-8e0a-9fac-727dcf8a97ce	2021-05-27 14:42:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:42:54.951+03	2021-05-27 14:42:54.959+03	
82a3cec9-96c7-558b-ab05-c29b35f2bbbb	2021-05-27 14:43:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:43:14.951+03	2021-05-27 14:43:14.968+03	
1d3073dd-0bc6-18ac-09a8-2d813cae0cf6	2021-05-27 14:43:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:43:34.951+03	2021-05-27 14:43:34.959+03	
db98291e-59b8-f540-a731-debc74605daa	2021-05-27 14:43:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:43:54.951+03	2021-05-27 14:43:54.959+03	
1e4b1d75-de69-c0b4-3e1c-4898d9e58ade	2021-05-27 14:44:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:44:14.951+03	2021-05-27 14:44:14.957+03	
277e138a-ed62-1a23-714f-248eb86d84f4	2021-05-27 14:44:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:44:34.951+03	2021-05-27 14:44:34.959+03	
603b9c10-3fe8-a7cf-4cbd-c8dc92b56fb2	2021-05-27 14:44:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:44:54.951+03	2021-05-27 14:44:54.957+03	
cd644b21-3e9f-fed0-bb0a-d0da85836ba3	2021-05-27 14:45:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:45:14.951+03	2021-05-27 14:45:14.958+03	
6e7f4512-9cb6-08a3-e209-6433c9afc195	2021-05-27 14:45:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:45:34.951+03	2021-05-27 14:45:34.958+03	
22d94538-8fc2-de37-2863-fbd8d8ccbeb0	2021-05-27 14:45:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:45:54.951+03	2021-05-27 14:45:54.958+03	
5fca28df-2c53-0e0f-c300-21388bd46d2b	2021-05-27 14:46:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:46:14.951+03	2021-05-27 14:46:14.958+03	
bfa74691-c8bf-92cb-8910-55c2a47058bc	2021-05-27 14:46:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:46:34.951+03	2021-05-27 14:46:34.958+03	
5f17bee3-93e5-2164-7f6a-4d0af7aa1745	2021-05-27 14:46:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:46:54.951+03	2021-05-27 14:46:54.959+03	
5cfbbe77-b14a-35c9-c5e0-607331855ee3	2021-05-27 14:47:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:47:14.951+03	2021-05-27 14:47:14.958+03	
d40c5633-ea96-b366-a15b-a1b24092f497	2021-05-27 14:47:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:47:34.951+03	2021-05-27 14:47:34.957+03	
938d54bb-28ef-8058-43f1-1b21ac0485cb	2021-05-27 14:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:47:54.951+03	2021-05-27 14:47:54.958+03	
a935490e-46b1-c87e-b86d-ecc19f3fe116	2021-05-27 14:48:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:48:14.951+03	2021-05-27 14:48:14.959+03	
133ba8df-873f-be6e-03ee-4ade06b852af	2021-05-27 14:48:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:48:34.951+03	2021-05-27 14:48:34.957+03	
1d97f4a6-e105-2310-41a6-29e9f86de0a0	2021-05-27 14:48:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:48:54.951+03	2021-05-27 14:48:54.959+03	
0bc424a4-3ea1-3a9e-ab1e-e370c01acce1	2021-05-27 14:49:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:49:14.951+03	2021-05-27 14:49:14.959+03	
76f26d60-880b-4b49-5563-3ee47bae5250	2021-05-27 14:49:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:49:34.951+03	2021-05-27 14:49:34.958+03	
057f167a-03ee-2a05-3a1c-518b5e7a932e	2021-05-27 14:49:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:49:54.951+03	2021-05-27 14:49:54.957+03	
f352c15a-1aff-854b-2d23-e52ee67bb973	2021-05-27 14:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:50:04.951+03	2021-05-27 14:50:04.958+03	
c1a5966c-0026-baa6-7143-317f170fc1c4	2021-05-27 14:50:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:50:24.951+03	2021-05-27 14:50:24.957+03	
1f3c0bd3-11b3-0a02-63a5-ded195aa4f90	2021-05-27 14:50:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:50:44.951+03	2021-05-27 14:50:44.961+03	
bf29460e-9a5f-d82b-927f-4c5c8d874866	2021-05-27 14:51:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:51:04.951+03	2021-05-27 14:51:04.958+03	
1a407153-c08e-ad3f-73f3-c881ec162d4f	2021-05-27 14:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:51:24.951+03	2021-05-27 14:51:24.957+03	
3276abac-f7aa-af88-064b-44971310bea2	2021-05-27 14:51:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:51:44.951+03	2021-05-27 14:51:44.957+03	
33721515-07fd-78f5-3338-de6c76b99403	2021-05-27 14:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:52:04.951+03	2021-05-27 14:52:04.958+03	
31da3dfa-d49c-dea2-fdb6-f488fcd6367c	2021-05-27 14:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:52:24.951+03	2021-05-27 14:52:24.957+03	
13604988-ab2f-4eb9-e00c-5edbce6b6e2b	2021-05-27 14:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:52:44.951+03	2021-05-27 14:52:44.96+03	
11f16b7a-ac76-db11-ae43-b3e4a27dea2e	2021-05-27 14:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:53:04.951+03	2021-05-27 14:53:04.959+03	
2c3824d2-f474-78c3-a60d-cd14593c2cf1	2021-05-27 14:53:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:53:24.951+03	2021-05-27 14:53:24.964+03	
e27ab3b2-32ca-c978-e277-97ffd7d20684	2021-05-27 14:53:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:53:44.951+03	2021-05-27 14:53:44.959+03	
82a3a53d-b44f-72b9-0ff4-eb86757fe9e4	2021-05-27 14:54:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:54:04.951+03	2021-05-27 14:54:04.959+03	
afec03fb-097a-33af-994e-463c6acf3518	2021-05-27 14:54:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:54:24.951+03	2021-05-27 14:54:24.959+03	
a0d15a4c-210f-ef70-6375-7b31f3d334ed	2021-05-27 14:54:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:54:44.951+03	2021-05-27 14:54:44.961+03	
a7d0196d-7273-608b-50fb-27bf26f9be8a	2021-05-27 14:55:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:55:04.951+03	2021-05-27 14:55:04.959+03	
3b9b3a24-2f84-8c17-bb9a-d27cc5bf071b	2021-05-27 14:55:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:55:24.951+03	2021-05-27 14:55:24.959+03	
43540e03-a987-e0d3-80ae-c5b5633d2bf1	2021-05-27 14:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:55:44.951+03	2021-05-27 14:55:44.959+03	
bde57a20-4ffb-6117-2e1f-6989f904e3f9	2021-05-27 14:56:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:56:04.951+03	2021-05-27 14:56:04.957+03	
1d9d8c8b-7db9-919c-6e11-2980c49ffbe3	2021-05-27 14:56:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:56:24.951+03	2021-05-27 14:56:24.96+03	
81b9e6bd-f548-3b5b-4ca0-e2b7ea91a2d7	2021-05-27 14:56:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:56:44.951+03	2021-05-27 14:56:44.958+03	
3a8270d6-cdd7-7238-c326-edeb2ff44cf3	2021-05-27 14:57:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:57:04.951+03	2021-05-27 14:57:04.959+03	
3e5db412-b3db-050e-a173-e5dd731887b1	2021-05-27 14:57:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:57:24.951+03	2021-05-27 14:57:24.958+03	
efe43327-2b70-bcb4-6146-f02f07ebb727	2021-05-27 14:57:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:57:44.951+03	2021-05-27 14:57:44.961+03	
b1b12b29-41e6-0df4-bbe5-5f9b13e04997	2021-05-27 14:58:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:58:04.952+03	2021-05-27 14:58:04.96+03	
ed2454f5-55e4-6caf-ffef-e9bf299b50fb	2021-05-27 14:58:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:58:25.951+03	2021-05-27 14:58:25.959+03	
142f057a-6c4a-7d4c-b1c1-ede324fb8068	2021-05-27 14:58:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:58:45.951+03	2021-05-27 14:58:45.96+03	
16cdecb7-48e4-41b7-b9e2-f45a39abe08e	2021-05-27 14:59:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:59:05.951+03	2021-05-27 14:59:05.957+03	
b442abda-274c-68de-6b8b-e8307b10f286	2021-05-27 14:59:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:59:25.951+03	2021-05-27 14:59:25.957+03	
8db76c8a-2fb6-60d2-6079-e9ac7f415d1a	2021-05-27 14:59:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:59:35.951+03	2021-05-27 14:59:35.96+03	
f14c657d-1109-fcf6-44c5-af2a79e03cc5	2021-05-27 14:59:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:59:55.951+03	2021-05-27 14:59:55.958+03	
be64bc6c-1974-a9ff-c1c7-9d6e20281fd4	2021-05-27 15:00:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:00:05.951+03	2021-05-27 15:00:05.957+03	
e0a0a7f1-d831-3fe3-2ceb-4d0d86674a64	2021-05-27 15:00:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:00:25.951+03	2021-05-27 15:00:25.959+03	
d04ae37e-5183-0fa4-7265-00e4deafe298	2021-05-27 15:00:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:00:46.951+03	2021-05-27 15:00:46.959+03	
d864acd1-613a-eb1b-6d1f-dcacc637022f	2021-05-27 15:01:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:01:06.951+03	2021-05-27 15:01:06.96+03	
1b4cd479-74ee-41af-d866-a3271a34af8c	2021-05-27 15:01:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:01:26.951+03	2021-05-27 15:01:26.958+03	
7aa613ff-24b0-d0fc-3029-df6d5ec05076	2021-05-27 15:01:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:01:46.951+03	2021-05-27 15:01:46.958+03	
1a1e9c20-0a20-a8fb-3c67-86cfb81a598c	2021-05-27 15:02:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:02:06.951+03	2021-05-27 15:02:06.959+03	
28025e06-52d2-4f7d-eb42-271bfdc4c434	2021-05-27 15:02:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:02:26.951+03	2021-05-27 15:02:26.964+03	
6a84c9a6-efac-62f5-e654-b1a001f34e0f	2021-05-27 15:02:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:02:46.951+03	2021-05-27 15:02:46.958+03	
7ff3265e-b622-977c-a7e0-711c6b403a78	2021-05-27 15:03:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:03:06.951+03	2021-05-27 15:03:06.959+03	
e064c758-a16a-2330-510b-52ddcdbe1bf1	2021-05-27 15:03:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:03:26.951+03	2021-05-27 15:03:26.958+03	
79f3a401-bfec-3722-d8cd-b876b8d2b332	2021-05-27 15:03:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:03:46.952+03	2021-05-27 15:03:46.959+03	
21114012-33d2-5c6f-1799-5f2bb81c21db	2021-05-27 15:04:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:04:07.951+03	2021-05-27 15:04:07.959+03	
ecc7c73c-6304-c9fd-5281-73f0d7f108d6	2021-05-27 15:04:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:04:27.951+03	2021-05-27 15:04:27.958+03	
928580ec-4eb9-cb81-7682-55c19131c5a8	2021-05-27 15:04:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:04:48.951+03	2021-05-27 15:04:48.957+03	
09c3f68d-6e85-fb21-fde1-2d58372cfe20	2021-05-27 15:05:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:05:08.951+03	2021-05-27 15:05:08.958+03	
8f449a4c-bdef-792c-5a8b-dc7562a87b6d	2021-05-27 15:05:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:05:29.951+03	2021-05-27 15:05:29.962+03	
8e02bd83-afda-50ad-1f5a-de5324d3935f	2021-05-27 15:05:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:05:49.951+03	2021-05-27 15:05:49.959+03	
038067e9-d9fe-b30d-4f4a-a269c39e480f	2021-05-27 15:06:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:06:10.951+03	2021-05-27 15:06:10.96+03	
43eabc8c-d79a-ef8d-55c3-575510ecbfb0	2021-05-27 15:06:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:06:30.951+03	2021-05-27 15:06:30.958+03	
a6ce0c23-5056-cd53-d6ed-edb2351ea108	2021-05-27 15:06:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:06:51.951+03	2021-05-27 15:06:51.959+03	
d8dccc91-1218-f34c-d7ea-0d1e37f0d98a	2021-05-27 15:07:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:07:11.951+03	2021-05-27 15:07:11.958+03	
0d9bf901-6c6c-3365-0bee-b70920eb4e99	2021-05-27 15:07:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:07:31.951+03	2021-05-27 15:07:31.96+03	
fc817a72-f6ea-d9c4-80b7-765c0d3d1b3c	2021-05-27 15:07:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:07:52.951+03	2021-05-27 15:07:52.959+03	
647c7b62-d6eb-c8fe-f5ab-c1896e1ff019	2021-05-27 15:08:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:08:12.951+03	2021-05-27 15:08:12.958+03	
6f708698-170d-67c6-a7cc-57991ed9bbac	2021-05-27 15:08:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:08:32.952+03	2021-05-27 15:08:32.958+03	
b0ed0a76-91ca-9340-3d46-8217d5005045	2021-05-27 15:08:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:08:52.952+03	2021-05-27 15:08:52.959+03	
ada889a5-4e1f-a577-3378-e80c78924ce6	2021-05-27 15:09:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:09:13.951+03	2021-05-27 15:09:13.958+03	
e16062aa-a81a-79ea-7aa9-1547abc66dc8	2021-05-27 15:09:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:09:33.951+03	2021-05-27 15:09:33.958+03	
5cee5137-f2d7-7ec1-5011-fbcdd4433321	2021-05-27 15:09:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:09:53.951+03	2021-05-27 15:09:53.959+03	
71ff7e52-f0cd-079a-619e-48370997276e	2021-05-27 15:10:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:10:03.951+03	2021-05-27 15:10:03.958+03	
c4e1dff4-fd02-c2fd-8ac1-89e19a15bee4	2021-05-27 15:10:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:10:23.951+03	2021-05-27 15:10:23.965+03	
cb372991-6a51-515f-aea2-aa84bbc0cd1c	2021-05-27 15:10:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:10:43.951+03	2021-05-27 15:10:43.96+03	
b6e5fd9b-2977-4176-ef8f-288ab67252a8	2021-05-27 15:11:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:11:03.951+03	2021-05-27 15:11:03.96+03	
cebe807e-df95-337b-4484-2fe5ea2fffd9	2021-05-27 15:11:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:11:23.951+03	2021-05-27 15:11:23.958+03	
4c3d6800-b03e-3983-9064-4178f59c6487	2021-05-27 15:11:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:11:43.951+03	2021-05-27 15:11:43.959+03	
b4bac01b-e012-7a80-2c42-dd3b2736f537	2021-05-27 15:12:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:12:03.951+03	2021-05-27 15:12:03.958+03	
2b6f85ad-e5a6-043e-5b25-bca0232a1d9f	2021-05-27 15:12:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:12:23.951+03	2021-05-27 15:12:23.961+03	
971572a1-bd92-c170-be95-400b053e4ca0	2021-05-27 15:12:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:12:43.951+03	2021-05-27 15:12:43.96+03	
639e77bd-6372-7b14-e84e-152ae8f23d4c	2021-05-27 15:13:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:13:04.951+03	2021-05-27 15:13:04.96+03	
a94e96ad-5894-0572-04b9-be518cbcbf9d	2021-05-27 15:13:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:13:24.951+03	2021-05-27 15:13:24.96+03	
ba26d78f-8caf-336c-5a92-4512a8fc9ed2	2021-05-27 15:13:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:13:44.951+03	2021-05-27 15:13:44.959+03	
6de97922-082f-f8c4-dca5-1a8cd61699ee	2021-05-27 15:14:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:14:04.951+03	2021-05-27 15:14:04.959+03	
cce081f3-ccad-70df-bb98-536d4772c9e5	2021-05-27 15:14:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:14:24.951+03	2021-05-27 15:14:24.958+03	
33178610-7fab-d322-1554-08952174aadf	2021-05-27 15:14:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:14:44.951+03	2021-05-27 15:14:44.959+03	
c4f48a7a-52ae-fa99-248a-a577717d3ecf	2021-05-27 15:15:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:15:04.952+03	2021-05-27 15:15:04.961+03	
0e2e3fee-2348-4c9e-d231-28f6a2cd9696	2021-05-27 15:15:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:15:25.951+03	2021-05-27 15:15:25.958+03	
f9f33e46-1964-a823-2bc0-072973fa547d	2021-05-27 15:15:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:15:45.951+03	2021-05-27 15:15:45.959+03	
050fadeb-8188-3c7f-6e03-425c6ad946ce	2021-05-27 15:16:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:16:05.951+03	2021-05-27 15:16:05.959+03	
83d4347a-e0b1-9105-0245-b850320ea329	2021-05-27 15:16:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:16:25.951+03	2021-05-27 15:16:25.958+03	
98b18e49-ac8e-cf2d-81fc-19f0813a7fba	2021-05-27 15:16:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:16:45.951+03	2021-05-27 15:16:45.96+03	
a30238ad-6cc2-e1fd-4e07-ba62b2cc82f4	2021-05-27 15:17:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:17:05.951+03	2021-05-27 15:17:05.958+03	
1314cf7c-a34b-a0ac-fbd2-2eba5c226a4d	2021-05-27 15:17:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:17:25.951+03	2021-05-27 15:17:25.958+03	
184b2239-037c-cf57-b03d-df9934029d82	2021-05-27 15:17:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:17:45.951+03	2021-05-27 15:17:45.958+03	
64c1df13-b822-2be2-f438-08584e202b5e	2021-05-27 15:18:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:18:05.951+03	2021-05-27 15:18:05.959+03	
7f6c0ce6-af5f-888f-c345-229e2306fc17	2021-05-27 15:18:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:18:25.951+03	2021-05-27 15:18:25.958+03	
f4144b6d-cdff-2c59-5ded-61e26bae7405	2021-05-27 15:18:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:18:45.951+03	2021-05-27 15:18:45.959+03	
b8d30740-9f3f-4875-710f-14779fa0e125	2021-05-27 15:19:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:19:05.951+03	2021-05-27 15:19:05.958+03	
44cc2f6c-9805-2420-a6e2-5cff04eedaa0	2021-05-27 15:19:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:19:25.951+03	2021-05-27 15:19:25.963+03	
82b80e82-e58e-c7cf-d70e-cf19475ebdf8	2021-05-27 15:19:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:19:45.951+03	2021-05-27 15:19:45.959+03	
8fd0d707-1ba3-8742-a3d4-350374ef36ca	2021-05-27 15:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 15:20:00.951+03	2021-05-27 15:20:00.957+03	ERROR
98f1b1c5-fd40-98e0-3c1a-9e5acb51654f	2021-05-27 14:59:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 14:59:45.951+03	2021-05-27 14:59:45.965+03	
92186e7d-ce8c-2ef3-c763-b4f6434d6e83	2021-05-27 15:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 15:00:00.951+03	2021-05-27 15:00:00.957+03	ERROR
49070d3f-b95a-2b20-de6e-eb28e8c6818d	2021-05-27 15:00:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:00:15.951+03	2021-05-27 15:00:15.958+03	
e8357f0a-aae3-94b8-4b06-68d1437d37d1	2021-05-27 15:00:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:00:35.952+03	2021-05-27 15:00:35.96+03	
50e3b683-86d6-87d6-be38-2621e7b34582	2021-05-27 15:00:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:00:56.951+03	2021-05-27 15:00:56.959+03	
45dfe41b-dcb0-385e-d58f-c92666002e1c	2021-05-27 15:01:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:01:16.951+03	2021-05-27 15:01:16.957+03	
b290523e-d93e-8d7d-c662-46c775ce09b2	2021-05-27 15:01:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:01:36.951+03	2021-05-27 15:01:36.958+03	
d6d1eace-6daa-da14-002e-ac57dd48459d	2021-05-27 15:01:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:01:56.951+03	2021-05-27 15:01:56.96+03	
d2ccc25d-c989-9394-5dc2-ea7d60c67590	2021-05-27 15:02:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:02:16.951+03	2021-05-27 15:02:16.958+03	
7ebf5da8-dfcb-0867-e900-a259c87bb478	2021-05-27 15:02:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:02:36.951+03	2021-05-27 15:02:36.964+03	
ac037cc8-2ea2-6e57-4fa3-ac2f3663915e	2021-05-27 15:02:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:02:56.951+03	2021-05-27 15:02:56.96+03	
11f47357-6dca-31d8-f502-af42bd84985e	2021-05-27 15:03:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:03:16.951+03	2021-05-27 15:03:16.962+03	
545a103d-0650-ed03-32bb-e9753b7c2672	2021-05-27 15:03:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:03:36.951+03	2021-05-27 15:03:36.96+03	
0ae29e54-33c4-6c94-2b70-841fd7a00c33	2021-05-27 15:03:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:03:57.951+03	2021-05-27 15:03:57.957+03	
c49f44e8-c39b-3ff0-87df-0527c7b34cf4	2021-05-27 15:04:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:04:17.951+03	2021-05-27 15:04:17.96+03	
f70e5fb8-c468-1a01-bf96-8804fffd0ad0	2021-05-27 15:04:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:04:37.952+03	2021-05-27 15:04:37.959+03	
0954de0e-720a-74d8-cbb9-69064c89a7e5	2021-05-27 15:04:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:04:58.951+03	2021-05-27 15:04:58.96+03	
0d9af1b5-efff-1a13-0c99-034b7b1a6b19	2021-05-27 15:05:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:05:18.952+03	2021-05-27 15:05:18.96+03	
86514db4-23ae-548e-98f2-419a252ef0bd	2021-05-27 15:05:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:05:39.951+03	2021-05-27 15:05:39.96+03	
d3ce3d91-a425-8c71-0855-f448bbfd3417	2021-05-27 15:05:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:05:59.952+03	2021-05-27 15:05:59.959+03	
de66d01c-2944-7c1d-74b2-f39d7509b1fa	2021-05-27 15:06:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:06:20.951+03	2021-05-27 15:06:20.96+03	
521d47ab-7a20-b2b1-ba66-e1e7e2381548	2021-05-27 15:06:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:06:40.952+03	2021-05-27 15:06:40.958+03	
648ad7f8-41af-6515-5e1a-62c542107b2a	2021-05-27 15:07:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:07:01.951+03	2021-05-27 15:07:01.958+03	
42c6c91e-a0b6-71b6-f89c-720a9940cb93	2021-05-27 15:07:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:07:21.951+03	2021-05-27 15:07:21.958+03	
0b8b870d-2e93-8405-b38b-11a7262ddcfc	2021-05-27 15:07:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:07:41.952+03	2021-05-27 15:07:41.959+03	
97edfc17-2703-ecae-fe55-47708e05b606	2021-05-27 15:08:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:08:02.951+03	2021-05-27 15:08:02.958+03	
c8cabcaa-867a-99ed-75d1-ca3d5f73cc7e	2021-05-27 15:08:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:08:22.952+03	2021-05-27 15:08:22.96+03	
f72a7e06-7d13-a3fb-3431-58100ebcd0d1	2021-05-27 15:08:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:08:42.952+03	2021-05-27 15:08:42.96+03	
1d71f862-9300-47f6-4d6d-74bf531ad9bb	2021-05-27 15:09:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:09:03.951+03	2021-05-27 15:09:03.959+03	
a4d5d68e-6a99-1a78-00c9-f4310cfe26ab	2021-05-27 15:09:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:09:23.951+03	2021-05-27 15:09:23.957+03	
7857657a-f00c-e550-2fde-9b2ad7462d75	2021-05-27 15:09:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:09:43.951+03	2021-05-27 15:09:43.959+03	
98c4805b-c4db-fa4f-8d01-7240317318e5	2021-05-27 15:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 15:10:00.951+03	2021-05-27 15:10:00.958+03	ERROR
1d9aff9f-5161-e0dc-a368-04a765634cb3	2021-05-27 15:10:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:10:13.951+03	2021-05-27 15:10:13.958+03	
9dbec078-1079-7d45-1bcf-8bfbaafbd75e	2021-05-27 15:10:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:10:33.951+03	2021-05-27 15:10:33.962+03	
ace21ac6-0204-7e1c-7ea2-e99438dce383	2021-05-27 15:10:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:10:53.951+03	2021-05-27 15:10:53.959+03	
297bb390-0baa-c1f3-36f5-3bd0979f561f	2021-05-27 15:11:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:11:13.951+03	2021-05-27 15:11:13.959+03	
a8210e32-21cf-232d-31d0-00b5531a03eb	2021-05-27 15:11:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:11:33.951+03	2021-05-27 15:11:33.958+03	
e00b9ec2-e996-d31a-3cdd-a84b0b1f0fbc	2021-05-27 15:11:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:11:53.951+03	2021-05-27 15:11:53.959+03	
164c7abd-abfd-93e9-3fbf-81cfdd658362	2021-05-27 15:12:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:12:13.951+03	2021-05-27 15:12:13.958+03	
a93a9fcf-d305-5118-bbfa-edd485b3769b	2021-05-27 15:12:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:12:33.951+03	2021-05-27 15:12:33.96+03	
6acdf865-3408-14a1-209b-250e8dc65e5f	2021-05-27 15:12:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:12:53.952+03	2021-05-27 15:12:53.967+03	
7483c71f-fd7d-f53a-1996-5910ffa52abb	2021-05-27 15:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:13:14.951+03	2021-05-27 15:13:14.958+03	
6e370cdd-d877-056b-9c9b-934b3b777f94	2021-05-27 15:13:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:13:34.951+03	2021-05-27 15:13:34.958+03	
5f4cb4a0-7f30-2f8c-63dc-8118d63211f0	2021-05-27 15:13:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:13:54.951+03	2021-05-27 15:13:54.959+03	
c3166399-c2e8-5a11-72b0-bb01366c3362	2021-05-27 15:14:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:14:14.951+03	2021-05-27 15:14:14.959+03	
9105e82a-e5bd-e89c-2b53-d91a8d737d52	2021-05-27 15:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:14:34.951+03	2021-05-27 15:14:34.959+03	
5ec528f9-9953-5ac9-4c85-31ffe0b14f58	2021-05-27 15:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:14:54.951+03	2021-05-27 15:14:54.959+03	
2387e8d7-5f84-9d34-1c90-d76c03d8e171	2021-05-27 15:15:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:15:15.951+03	2021-05-27 15:15:15.959+03	
17b5951d-1017-d8ab-8844-be38c7ec67ce	2021-05-27 15:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:15:35.951+03	2021-05-27 15:15:35.961+03	
a5384953-6f66-3b55-b330-55857b80d373	2021-05-27 15:15:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:15:55.951+03	2021-05-27 15:15:55.96+03	
1efab170-a53c-9bcb-866f-61c9501497ff	2021-05-27 15:16:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:16:15.951+03	2021-05-27 15:16:15.958+03	
c7d022e6-2aa4-5fff-4498-b93f88d5a7f9	2021-05-27 15:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:16:35.951+03	2021-05-27 15:16:35.959+03	
99e85af2-06b2-bdc4-2aa5-48f8ff46da3c	2021-05-27 15:16:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:16:55.951+03	2021-05-27 15:16:55.958+03	
5fa21720-4f1c-665f-85bd-9aeb8b9034f6	2021-05-27 15:17:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:17:15.951+03	2021-05-27 15:17:15.959+03	
860a4094-8027-ae54-c213-4c83ab07e98a	2021-05-27 15:17:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:17:35.951+03	2021-05-27 15:17:35.959+03	
5a7d38f2-b94e-2811-80fc-ae789aed7216	2021-05-27 15:17:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:17:55.951+03	2021-05-27 15:17:55.958+03	
1d6242d3-5c53-5671-e414-be22b16f626b	2021-05-27 15:18:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:18:15.951+03	2021-05-27 15:18:15.963+03	
d615e594-df9b-cc5a-3bc6-371091b986ef	2021-05-27 15:18:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:18:35.951+03	2021-05-27 15:18:35.959+03	
fb8ae9d4-5e8b-266c-4adb-f77c10291ee7	2021-05-27 15:18:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:18:55.951+03	2021-05-27 15:18:55.958+03	
2751a035-44b8-1d57-b223-8e1998933359	2021-05-27 15:19:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:19:15.951+03	2021-05-27 15:19:15.957+03	
6c13adb0-e703-1ec8-d620-f9803b976001	2021-05-27 15:19:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:19:35.951+03	2021-05-27 15:19:35.959+03	
74a91b07-6806-d9b7-f4e9-94baaae51696	2021-05-27 15:19:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:19:55.952+03	2021-05-27 15:19:55.961+03	
724c7e69-2e12-7ab3-bc98-5dae18bca4a3	2021-05-27 15:20:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:20:06.951+03	2021-05-27 15:20:06.957+03	
9980f5d0-d5b8-506a-5e99-e81a45d48d45	2021-05-27 15:20:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:20:16.951+03	2021-05-27 15:20:17.273+03	
7532c15a-0752-cce2-4428-1ec0bdb7719b	2021-05-27 15:20:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:20:36.951+03	2021-05-27 15:20:36.959+03	
cb823fdb-aff9-c888-a750-ec3fe6702656	2021-05-27 15:20:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:20:56.951+03	2021-05-27 15:20:56.958+03	
b1e4694c-1c75-ce78-e1e7-9a43536f3b3d	2021-05-27 15:21:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:21:16.951+03	2021-05-27 15:21:16.96+03	
164c235c-6034-1a7b-12eb-00a892afeea0	2021-05-27 15:21:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:21:36.951+03	2021-05-27 15:21:36.96+03	
15195b71-6b3d-a038-5397-4b3fecee6d01	2021-05-27 15:21:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:21:56.951+03	2021-05-27 15:21:56.962+03	
08cfa697-48bd-617c-ae33-f0cd674f9574	2021-05-27 15:22:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:22:16.951+03	2021-05-27 15:22:16.964+03	
47df77f2-461e-5399-dafd-80a4a7a197b6	2021-05-27 15:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:22:36.951+03	2021-05-27 15:22:36.969+03	
eacd5766-1c38-0ce1-48da-31d7d4b04ea4	2021-05-27 15:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:22:56.951+03	2021-05-27 15:22:56.959+03	
8c33da6a-5d1b-e558-fdf3-b8b97a12f25f	2021-05-27 15:23:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:23:16.951+03	2021-05-27 15:23:16.961+03	
8d8cc9e6-5b40-e22d-4253-941124a0a9d1	2021-05-27 15:23:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:23:36.952+03	2021-05-27 15:23:36.961+03	
2ff76522-fb0d-b4f5-cc77-56a10f8bc02b	2021-05-27 15:23:57.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:23:57.951+03	2021-05-27 15:23:57.958+03	
ffa22689-e896-d683-0834-024a62ebb0a1	2021-05-27 15:24:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:24:17.951+03	2021-05-27 15:24:17.96+03	
d8e95f4f-3d4e-25e8-df8c-096745e6f968	2021-05-27 15:24:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:24:38.951+03	2021-05-27 15:24:38.958+03	
7ec2bb1f-d518-600b-bbac-1d7ad03924cf	2021-05-27 15:24:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:24:58.951+03	2021-05-27 15:24:58.958+03	
d57aa1db-bc8f-d87a-1142-1756670b8629	2021-05-27 15:25:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:25:18.951+03	2021-05-27 15:25:18.958+03	
079c90af-db14-81a8-0018-d7136a90372d	2021-05-27 15:25:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:25:39.951+03	2021-05-27 15:25:39.959+03	
d9f7962b-87a0-ceb1-3872-51328324cb0f	2021-05-27 15:25:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:25:59.951+03	2021-05-27 15:25:59.96+03	
cd49430c-ea6a-f564-a541-da648ef30c85	2021-05-27 15:26:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:26:19.951+03	2021-05-27 15:26:19.959+03	
46018b3d-cd44-3602-98e7-8f51fe50b4b1	2021-05-27 15:26:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:26:40.951+03	2021-05-27 15:26:40.96+03	
5b21ea50-28d2-7ff5-3f13-6dd5073a1627	2021-05-27 15:27:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:27:00.951+03	2021-05-27 15:27:00.958+03	
73e46df0-4227-3e5c-a93f-4230d0f92f4f	2021-05-27 15:27:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:27:20.951+03	2021-05-27 15:27:20.959+03	
8d0ba09c-972f-12cf-1627-ccd536e40baf	2021-05-27 15:27:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:27:40.951+03	2021-05-27 15:27:40.957+03	
d73652dd-6ace-7e75-2fc4-843363ec4509	2021-05-27 15:28:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:28:00.951+03	2021-05-27 15:28:00.959+03	
93cf6e65-2902-8cd9-bd55-ff5834553298	2021-05-27 15:28:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:28:20.951+03	2021-05-27 15:28:20.96+03	
cf7cc024-7de1-ae16-67aa-f23405025031	2021-05-27 15:28:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:28:40.952+03	2021-05-27 15:28:40.96+03	
a4a4b727-7fec-1bf5-3f50-a60226b27b5d	2021-05-27 15:29:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:29:01.951+03	2021-05-27 15:29:01.959+03	
4707dd49-394a-e492-5fa7-2ff3e4fe80bb	2021-05-27 15:29:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:29:21.951+03	2021-05-27 15:29:21.96+03	
e40e773e-e067-a429-f76e-9b1be449fce9	2021-05-27 15:29:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:29:41.951+03	2021-05-27 15:29:41.96+03	
5fc29b63-7459-10e0-341c-bbcc44435460	2021-05-27 15:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 15:30:00.951+03	2021-05-27 15:30:00.959+03	ERROR
2c9a6ba2-9bf4-ab87-6d0c-facc2bacf9eb	2021-05-27 15:30:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:30:12.951+03	2021-05-27 15:30:12.96+03	
d769bbd8-f3c5-8121-d73a-3adce99f825c	2021-05-27 15:30:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:30:32.952+03	2021-05-27 15:30:32.959+03	
4543ee67-e176-cb06-87b7-6af2959abbcb	2021-05-27 15:30:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:30:53.951+03	2021-05-27 15:30:53.96+03	
9bd246d5-4f81-9bdb-a944-312a95030615	2021-05-27 15:31:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:31:13.951+03	2021-05-27 15:31:13.958+03	
2a9b9cf1-5451-7bb1-bc3c-63794abb61b2	2021-05-27 15:31:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:31:33.951+03	2021-05-27 15:31:33.957+03	
0a03650e-f36e-8442-f7e5-39f59682156e	2021-05-27 15:31:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:31:53.951+03	2021-05-27 15:31:53.957+03	
5bc15c44-4005-5e21-009f-3240bf50b008	2021-05-27 15:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:32:13.951+03	2021-05-27 15:32:13.96+03	
29ac23b4-0f4e-53c7-a475-4ceb550d6e30	2021-05-27 15:32:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:32:33.951+03	2021-05-27 15:32:33.964+03	
d113509c-30d3-0490-0ea0-1c5470f78a80	2021-05-27 15:32:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:32:53.951+03	2021-05-27 15:32:53.959+03	
5cb94926-c859-68c9-2131-5c94b85f1dc5	2021-05-27 15:33:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:33:13.951+03	2021-05-27 15:33:13.958+03	
72c3e12d-ebe8-7925-49fd-f79092faa1b1	2021-05-27 15:33:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:33:33.951+03	2021-05-27 15:33:33.961+03	
b58311be-e1d9-c886-0c06-6b4291a002af	2021-05-27 15:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:33:54.951+03	2021-05-27 15:33:54.958+03	
6d095faf-81e8-4c91-991e-d63e6a3e309c	2021-05-27 15:34:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:34:15.951+03	2021-05-27 15:34:15.959+03	
8dfe12bf-1019-0d0f-633f-f12662370121	2021-05-27 15:34:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:34:35.951+03	2021-05-27 15:34:35.961+03	
08628bc3-df00-6c3b-c863-2fe57391569d	2021-05-27 15:34:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:34:56.952+03	2021-05-27 15:34:56.964+03	
06c0c436-d820-6e49-a7df-0768ca988b69	2021-05-27 15:35:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:35:17.952+03	2021-05-27 15:35:17.962+03	
748605d0-5dc1-0fc5-7bef-1b989b533866	2021-05-27 15:35:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:35:38.951+03	2021-05-27 15:35:38.961+03	
38f3404d-9862-74d8-3a93-43afb7d2a493	2021-05-27 15:35:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:35:48.951+03	2021-05-27 15:35:48.96+03	
f6fa481e-52eb-e4e9-4578-e226c8999f57	2021-05-27 15:36:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:36:08.951+03	2021-05-27 15:36:08.964+03	
dee1fcd4-ef55-c410-8c24-4121762ccfff	2021-05-27 15:36:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:36:29.951+03	2021-05-27 15:36:29.96+03	
7272b282-d96e-0b15-669e-d1c0a10ac8bc	2021-05-27 15:36:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:36:49.951+03	2021-05-27 15:36:49.961+03	
630106a7-af03-999e-ab2d-79dcd564fbde	2021-05-27 15:37:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:37:09.951+03	2021-05-27 15:37:09.959+03	
25a78b16-90e2-01a5-e033-9fc46cefbe3b	2021-05-27 15:37:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:37:29.951+03	2021-05-27 15:37:29.958+03	
9a842408-5ecc-4de2-318e-028b61e7efef	2021-05-27 15:37:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:37:49.951+03	2021-05-27 15:37:49.96+03	
93e7a5fa-5cb6-f30e-6c4f-6d4d07ee50d1	2021-05-27 15:38:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:38:10.951+03	2021-05-27 15:38:10.958+03	
ff903dbf-7667-e356-7369-69ffa6cc40a1	2021-05-27 15:38:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:38:30.951+03	2021-05-27 15:38:30.958+03	
0403e125-d7a5-fb66-c902-7a5b6215485d	2021-05-27 15:38:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:38:50.951+03	2021-05-27 15:38:50.959+03	
6b7d664b-8883-6cf0-5dc2-af66570c0cf7	2021-05-27 15:39:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:39:11.951+03	2021-05-27 15:39:11.958+03	
c4501222-da40-cc64-a91e-9885a5fd9534	2021-05-27 15:39:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:39:31.951+03	2021-05-27 15:39:31.958+03	
3cd93d40-30e2-d49e-174e-93414d9119be	2021-05-27 15:39:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:39:51.951+03	2021-05-27 15:39:51.959+03	
eb400057-4949-98e8-93b3-13a24ddb48f6	2021-05-27 15:40:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:40:01.951+03	2021-05-27 15:40:01.96+03	
9c77d8a6-783f-7766-75f9-854e2cbc3454	2021-05-27 15:40:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:40:21.951+03	2021-05-27 15:40:21.971+03	
508874fe-8be7-3172-3a64-523742dc9870	2021-05-27 15:40:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:40:41.951+03	2021-05-27 15:40:41.958+03	
7a0d43b9-ab40-bc72-8c20-5bdc77a08ec1	2021-05-27 15:20:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:20:26.951+03	2021-05-27 15:20:26.96+03	
95032a46-8bb0-2601-378a-85c21d4663e3	2021-05-27 15:20:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:20:46.951+03	2021-05-27 15:20:46.958+03	
86ab9680-17c1-4883-86ec-25635c8d6ee3	2021-05-27 15:21:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:21:06.951+03	2021-05-27 15:21:06.957+03	
adfbe023-5461-414e-d835-3b24005ecd5a	2021-05-27 15:21:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:21:26.951+03	2021-05-27 15:21:26.962+03	
ebcc5770-ddfd-c204-32c7-82ea1a75bff8	2021-05-27 15:21:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:21:46.951+03	2021-05-27 15:21:47.2+03	
003c6977-764b-3828-6004-d2589cce80ea	2021-05-27 15:22:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:22:06.951+03	2021-05-27 15:22:06.959+03	
d33d4443-aeca-f5d4-46dc-28c5d649c914	2021-05-27 15:22:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:22:26.951+03	2021-05-27 15:22:26.96+03	
0f3c5bf1-0f76-1f0d-097b-9e19a6324831	2021-05-27 15:22:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:22:46.951+03	2021-05-27 15:22:46.958+03	
2700790b-1433-308b-9f89-7597c867fcc1	2021-05-27 15:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:23:06.951+03	2021-05-27 15:23:06.96+03	
20acf7c0-e549-9686-6b7c-f899a8cba551	2021-05-27 15:23:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:23:26.951+03	2021-05-27 15:23:26.96+03	
4cab4121-c594-1274-c631-2097997889f5	2021-05-27 15:23:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:23:47.951+03	2021-05-27 15:23:47.96+03	
35eb09c5-c29b-dc40-b9d3-98d6f8ee9522	2021-05-27 15:24:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:24:07.951+03	2021-05-27 15:24:07.959+03	
ebdeb42d-e796-9669-2e5c-e8ba61c11acd	2021-05-27 15:24:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:24:27.952+03	2021-05-27 15:24:27.959+03	
332078cb-d60d-9a31-96df-bd2ffef99b57	2021-05-27 15:24:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:24:48.951+03	2021-05-27 15:24:48.96+03	
4aa92706-219a-e729-a187-e6e4362c84b2	2021-05-27 15:25:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:25:08.951+03	2021-05-27 15:25:08.96+03	
26d96709-e933-a36a-b7c7-2699215d7bb6	2021-05-27 15:25:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:25:28.952+03	2021-05-27 15:25:28.962+03	
8d5a95ea-b9be-99d9-f246-94c819a781f4	2021-05-27 15:25:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:25:49.951+03	2021-05-27 15:25:49.961+03	
aae79a5d-f6ca-087e-65e1-589dbd21362a	2021-05-27 15:26:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:26:09.951+03	2021-05-27 15:26:09.96+03	
4c5236db-605f-6011-857a-3a50b2fcc167	2021-05-27 15:26:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:26:29.952+03	2021-05-27 15:26:29.959+03	
632baa12-13ee-c617-6a5a-6d5726c0f03b	2021-05-27 15:26:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:26:50.951+03	2021-05-27 15:26:50.959+03	
f3bd06dc-2d34-a605-b4f8-fc74d7b9793f	2021-05-27 15:27:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:27:10.951+03	2021-05-27 15:27:10.961+03	
2a122071-4529-b449-86d3-35e67ad4934b	2021-05-27 15:27:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:27:30.951+03	2021-05-27 15:27:30.957+03	
2f63ba94-b83f-60a9-a521-dcb44b86a2b9	2021-05-27 15:27:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:27:50.951+03	2021-05-27 15:27:50.958+03	
a5a3142c-1114-551e-a589-1c7d4eeffac0	2021-05-27 15:28:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:28:10.951+03	2021-05-27 15:28:10.957+03	
4e437d92-7658-73b1-e78b-0d3a4f8d956c	2021-05-27 15:28:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:28:30.951+03	2021-05-27 15:28:30.958+03	
c89856c4-1679-d943-5ea3-6b7543b2d052	2021-05-27 15:28:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:28:51.951+03	2021-05-27 15:28:51.96+03	
410afe9c-9f1d-06dc-80fc-42e44432ef49	2021-05-27 15:29:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:29:11.951+03	2021-05-27 15:29:11.96+03	
2abbfe05-4896-d23d-462d-bee22f52dc39	2021-05-27 15:29:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:29:31.951+03	2021-05-27 15:29:31.958+03	
e29cc67a-5055-383b-2a60-4f0d190d40d5	2021-05-27 15:29:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:29:51.951+03	2021-05-27 15:29:51.959+03	
b64bb3ec-d6a7-f734-fb71-76f9a44992af	2021-05-27 15:30:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:30:01.952+03	2021-05-27 15:30:01.959+03	
d6ccfef3-063b-845a-2bf6-f1b968d8e793	2021-05-27 15:30:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:30:22.951+03	2021-05-27 15:30:22.96+03	
f0bf83be-bf51-ee7e-1a7c-aa6cecfb443d	2021-05-27 15:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:30:43.951+03	2021-05-27 15:30:43.957+03	
bc403479-72f4-860d-da0f-64683c54a0b4	2021-05-27 15:31:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:31:03.951+03	2021-05-27 15:31:03.959+03	
88c384ef-4264-fbd4-4bcc-a23a68e90a25	2021-05-27 15:31:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:31:23.951+03	2021-05-27 15:31:23.959+03	
c52bf3aa-c6a6-b574-4209-532b62937108	2021-05-27 15:31:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:31:43.951+03	2021-05-27 15:31:43.958+03	
a5d3a174-a617-a9dd-168c-24894f4f1f1f	2021-05-27 15:32:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:32:03.951+03	2021-05-27 15:32:03.959+03	
6f36e0e7-9c9b-109b-ed5e-aaca11f2f759	2021-05-27 15:32:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:32:23.951+03	2021-05-27 15:32:23.964+03	
d951b328-9d72-9f79-bbd7-d02be1ff8ebe	2021-05-27 15:32:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:32:43.951+03	2021-05-27 15:32:43.959+03	
563a124b-9057-363f-62d1-d9f7c2d3100c	2021-05-27 15:33:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:33:03.951+03	2021-05-27 15:33:03.959+03	
33221d09-c45a-ebf5-9559-4f097601a6fb	2021-05-27 15:33:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:33:23.951+03	2021-05-27 15:33:23.959+03	
07e83e69-d9f2-1600-d0d8-c4d1a739011d	2021-05-27 15:33:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:33:43.952+03	2021-05-27 15:33:43.959+03	
81a9b190-27cd-7f62-6fc6-e8d1d9d2197b	2021-05-27 15:34:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:34:04.952+03	2021-05-27 15:34:04.961+03	
17406efe-aff3-4a2b-c5c0-2f71c881f0bc	2021-05-27 15:34:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:34:25.951+03	2021-05-27 15:34:25.959+03	
ef0740d9-b220-04cb-5a6b-8f4f5d0ef80c	2021-05-27 15:34:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:34:45.952+03	2021-05-27 15:34:45.967+03	
c8f2a810-bcf3-2c28-f76e-9fae6408bd53	2021-05-27 15:35:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:35:07.951+03	2021-05-27 15:35:07.958+03	
9c878e1b-5942-86a5-48cf-7e9085c1e842	2021-05-27 15:35:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:35:28.951+03	2021-05-27 15:35:28.964+03	
cadc3201-484e-7d00-af48-3b4e2a4120ee	2021-05-27 15:35:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:35:58.951+03	2021-05-27 15:35:58.959+03	
973ee57b-1b83-bf4e-396a-50d36d281d8f	2021-05-27 15:36:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:36:18.952+03	2021-05-27 15:36:18.964+03	
d68e7222-e9c0-f7c3-36a8-4355cd1c896a	2021-05-27 15:36:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:36:39.951+03	2021-05-27 15:36:39.958+03	
b2e3057d-4c59-176e-955d-f1abfb494076	2021-05-27 15:36:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:36:59.951+03	2021-05-27 15:36:59.96+03	
08f91dbf-accf-0556-1234-d82aaa0d9858	2021-05-27 15:37:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:37:19.951+03	2021-05-27 15:37:19.961+03	
5e8b2687-62af-6ce2-8555-fb820e45164a	2021-05-27 15:37:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:37:39.951+03	2021-05-27 15:37:39.958+03	
30035da9-2b9d-5827-b93c-d40982ae3786	2021-05-27 15:37:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:37:59.952+03	2021-05-27 15:37:59.959+03	
6e684bf8-2183-3743-4ce7-78161e87632d	2021-05-27 15:38:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:38:20.951+03	2021-05-27 15:38:20.959+03	
1e06cf54-c7eb-5528-7672-5a245ba2a542	2021-05-27 15:38:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:38:40.951+03	2021-05-27 15:38:40.957+03	
bdbc672c-00b4-3db1-7dcf-694c6858ca41	2021-05-27 15:39:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:39:00.952+03	2021-05-27 15:39:00.959+03	
ece8afc7-2368-dfc5-07f3-82445eefcd69	2021-05-27 15:39:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:39:21.951+03	2021-05-27 15:39:21.959+03	
c9a96924-1721-20a8-92b7-ba8a6e5c20cd	2021-05-27 15:39:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:39:41.951+03	2021-05-27 15:39:41.959+03	
42d06706-48f7-a73b-3eb9-a7c2059d2a6c	2021-05-27 15:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 15:40:00.951+03	2021-05-27 15:40:00.957+03	ERROR
306a89bd-07e9-36ff-765d-53a64c66bb8d	2021-05-27 15:40:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:40:11.951+03	2021-05-27 15:40:11.958+03	
90fd60cc-1dd6-625a-8900-dafe0af00f6a	2021-05-27 15:40:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:40:31.951+03	2021-05-27 15:40:31.958+03	
77b66149-7ad3-b56f-034b-823f474c83c5	2021-05-27 15:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:40:51.952+03	2021-05-27 15:40:51.959+03	
ff4c0616-5a8b-837a-18e2-b17bc177bdf5	2021-05-27 15:41:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:41:12.952+03	2021-05-27 15:41:12.962+03	
6a232b47-d78e-c4ad-db6e-1a7eed66b9e6	2021-05-27 15:41:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:41:02.952+03	2021-05-27 15:41:02.959+03	
8bfa03a0-bd41-7c34-aa68-5d0c7b78886e	2021-05-27 15:41:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:41:23.951+03	2021-05-27 15:41:23.961+03	
9e7d8386-2d7d-e939-9587-58ba8cc8faf8	2021-05-27 15:41:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:41:43.951+03	2021-05-27 15:41:43.959+03	
194d1caf-51d3-0e33-41fc-14d0be0642f7	2021-05-27 15:42:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:42:03.951+03	2021-05-27 15:42:03.959+03	
d6693a0e-c0b2-9849-35ec-ce0845332872	2021-05-27 15:42:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:42:24.951+03	2021-05-27 15:42:24.958+03	
74030731-8350-126c-1f0b-131b522a7792	2021-05-27 15:42:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:42:44.951+03	2021-05-27 15:42:44.958+03	
2c522219-10e1-7807-50c3-3dc41484bde1	2021-05-27 15:43:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:43:04.951+03	2021-05-27 15:43:04.96+03	
20c592b4-d839-ecbe-0c11-3e6755ad264a	2021-05-27 15:43:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:43:24.951+03	2021-05-27 15:43:24.959+03	
80ff6f36-3c9f-a8f6-6f44-201568f5d140	2021-05-27 15:43:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:43:44.951+03	2021-05-27 15:43:44.961+03	
71448bd5-e62d-b9ba-d306-aaae2dc9d24c	2021-05-27 15:44:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:44:04.951+03	2021-05-27 15:44:04.965+03	
0d174685-9a54-fff5-44a1-0c80c642b866	2021-05-27 15:44:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:44:24.951+03	2021-05-27 15:44:24.96+03	
5c0c1985-19dd-f801-9721-86f153ac039d	2021-05-27 15:44:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:44:44.951+03	2021-05-27 15:44:44.958+03	
212d5fb5-5364-ae21-bb06-49237ac61cde	2021-05-27 15:45:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:45:04.951+03	2021-05-27 15:45:04.959+03	
5dddcfd7-afbd-4918-11ee-660b60958bda	2021-05-27 15:45:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:45:24.951+03	2021-05-27 15:45:24.958+03	
b763b3ae-b4dd-850c-c3b1-afb3e4c4d72c	2021-05-27 15:45:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:45:44.951+03	2021-05-27 15:45:44.958+03	
4e8d741c-7289-db60-f591-d9eb692c180d	2021-05-27 15:46:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:46:04.951+03	2021-05-27 15:46:04.958+03	
e0f80afc-5652-1e4b-d5f5-69d1139b7bf5	2021-05-27 15:46:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:46:24.951+03	2021-05-27 15:46:24.957+03	
577d03c8-458a-eb94-146d-712685ba8d56	2021-05-27 15:46:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:46:44.951+03	2021-05-27 15:46:44.959+03	
5950ea30-bae6-a25e-0f5f-563773ad5482	2021-05-27 15:47:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:47:04.951+03	2021-05-27 15:47:04.957+03	
0648c1c6-c97a-7c31-3e50-9373156c2461	2021-05-27 15:47:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:47:24.951+03	2021-05-27 15:47:24.959+03	
7f9fa9d9-da83-b403-4c49-b1a8ec878e27	2021-05-27 15:47:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:47:44.951+03	2021-05-27 15:47:44.969+03	
277efb04-5049-1d5b-c8ee-42d33e074f28	2021-05-27 15:48:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:48:04.951+03	2021-05-27 15:48:04.959+03	
2aa1ee66-ce41-217b-572d-3e72aee084c5	2021-05-27 15:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:48:24.951+03	2021-05-27 15:48:24.96+03	
e71ee8d6-b806-3f63-fdd0-39c4d881e98f	2021-05-27 15:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:48:44.951+03	2021-05-27 15:48:44.961+03	
fb6396b6-d51d-fb6f-bcf5-1783a8772c34	2021-05-27 15:49:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:49:04.951+03	2021-05-27 15:49:04.964+03	
a893fbb9-1d8c-b2c9-60a2-30ee85754b2b	2021-05-27 15:49:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:49:24.951+03	2021-05-27 15:49:24.959+03	
cbe9900e-6ef4-65e1-6b13-6ea72cd3f2ae	2021-05-27 15:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:49:44.951+03	2021-05-27 15:49:44.959+03	
c00e0f46-9e48-03c8-247e-5929f2ea8079	2021-05-27 15:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 15:50:00.951+03	2021-05-27 15:50:00.956+03	ERROR
b93dcdc9-535a-fb64-aca9-c3105e6648dd	2021-05-27 15:50:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:50:14.951+03	2021-05-27 15:50:14.957+03	
703d5ce1-8c75-f580-dc5e-a06aadd870cf	2021-05-27 15:50:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:50:34.951+03	2021-05-27 15:50:34.958+03	
1d26e495-7161-8cf4-4912-6ff3bbd2339a	2021-05-27 15:50:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:50:54.951+03	2021-05-27 15:50:54.959+03	
8d66e9c4-235c-5fd8-d3d3-24086ccc8751	2021-05-27 15:51:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:51:14.951+03	2021-05-27 15:51:14.959+03	
44507970-2b92-459e-40ea-4c22fa281def	2021-05-27 15:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:51:34.951+03	2021-05-27 15:51:34.963+03	
0355dfd4-4080-6099-df32-cacf1b930876	2021-05-27 15:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:51:54.951+03	2021-05-27 15:51:54.959+03	
01dae8bb-3e74-191d-b37b-200df96bd77d	2021-05-27 15:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:52:14.952+03	2021-05-27 15:52:14.96+03	
9e0fa7b2-2215-cc6c-0b0a-fd306d0f6d7b	2021-05-27 15:52:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:52:35.951+03	2021-05-27 15:52:35.958+03	
5a9a747d-9499-ba90-af18-40d6e83c27e4	2021-05-27 15:52:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:52:55.951+03	2021-05-27 15:52:55.958+03	
4e5a99fc-4ea6-542c-5466-92eecb12eaf5	2021-05-27 15:53:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:53:15.951+03	2021-05-27 15:53:15.958+03	
f4099bb8-57f4-e012-4462-b9bf46b58d90	2021-05-27 15:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:53:35.951+03	2021-05-27 15:53:35.958+03	
28074177-db24-3856-a198-7dbb1f58b5b9	2021-05-27 15:53:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:53:55.951+03	2021-05-27 15:53:55.96+03	
c3f885e1-c226-9317-a62b-ec5ea5845fd6	2021-05-27 15:54:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:54:15.951+03	2021-05-27 15:54:15.958+03	
87f00c12-2768-7238-d82d-b37d35cc053e	2021-05-27 15:54:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:54:35.951+03	2021-05-27 15:54:35.959+03	
c51f5cb2-533c-06bd-ca75-900a3eef7de2	2021-05-27 15:54:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:54:55.951+03	2021-05-27 15:54:55.959+03	
4eb3b851-7d32-86b3-7c7e-be54fd1abf4a	2021-05-27 15:55:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:55:15.951+03	2021-05-27 15:55:15.962+03	
9c0bcc01-5cea-a2d0-d350-67e8da57226e	2021-05-27 15:55:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:55:35.951+03	2021-05-27 15:55:35.96+03	
8ca18ca4-be7f-73f6-636d-48020b0e1087	2021-05-27 15:55:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:55:55.951+03	2021-05-27 15:55:55.958+03	
9f576415-4b78-aab3-efa8-3ba1f39b445c	2021-05-27 15:56:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:56:15.951+03	2021-05-27 15:56:15.96+03	
dde3e3b0-9647-18c7-e2f4-602747ea96fe	2021-05-27 15:56:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:56:36.951+03	2021-05-27 15:56:36.958+03	
768816d3-1cb4-3b7e-6a2d-1042b571aae8	2021-05-27 15:56:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:56:56.951+03	2021-05-27 15:56:56.959+03	
cbee17b8-6303-c590-6696-0fadc838f4f6	2021-05-27 15:57:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:57:16.951+03	2021-05-27 15:57:16.961+03	
a1013b5d-f160-32c2-d9a1-9d885da1cb5f	2021-05-27 15:57:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:57:37.951+03	2021-05-27 15:57:37.958+03	
aa5487bb-1a68-f0cd-0bf8-5a6a44cc909d	2021-05-27 15:57:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:57:57.953+03	2021-05-27 15:57:57.959+03	
29dad337-8d8e-9629-e9ac-c248a39f3746	2021-05-27 15:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:58:18.951+03	2021-05-27 15:58:18.96+03	
ef844576-71b3-562a-19a2-bbdb550f6686	2021-05-27 15:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:58:38.951+03	2021-05-27 15:58:38.96+03	
365167d3-6612-015e-594a-8919ab9a431c	2021-05-27 15:58:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:58:58.951+03	2021-05-27 15:58:58.959+03	
cb8bfd8a-84c8-89cb-4493-e1c66400631a	2021-05-27 15:59:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:59:18.951+03	2021-05-27 15:59:18.958+03	
307fe1b4-211e-40bf-1d9a-b53eb73f0225	2021-05-27 15:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:59:38.951+03	2021-05-27 15:59:38.959+03	
ea613f8b-b2a1-a144-7612-4552ae6b319d	2021-05-27 15:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:59:58.951+03	2021-05-27 15:59:58.959+03	
6ce2fbe7-2c43-80ad-926d-855cafb1b223	2021-05-27 16:00:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:00:08.951+03	2021-05-27 16:00:08.957+03	
1458cd74-92a1-a70f-3547-340e87c8b4bd	2021-05-27 16:00:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:00:28.951+03	2021-05-27 16:00:28.957+03	
36e49be7-7d3f-9595-bf9e-93fdeb74003c	2021-05-27 16:00:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:00:48.951+03	2021-05-27 16:00:48.957+03	
f7fc3b76-468c-f5c3-ac9e-179cc4179b9a	2021-05-27 16:01:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:01:08.951+03	2021-05-27 16:01:08.958+03	
92e57242-0f57-192a-65d7-8d62c6ea96a2	2021-05-27 16:01:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:01:28.951+03	2021-05-27 16:01:28.962+03	
df4ce998-0939-262e-7327-d66eeb87fa0d	2021-05-27 15:41:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:41:33.951+03	2021-05-27 15:41:33.96+03	
62c10714-debe-3cda-f592-335dec571ca0	2021-05-27 15:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:41:53.951+03	2021-05-27 15:41:53.959+03	
b56bd72a-1264-2d11-fb8d-a34c5da756b9	2021-05-27 15:42:13.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:42:13.955+03	2021-05-27 15:42:13.962+03	
11ba64c6-a464-f210-9cd7-9a336d3ccbb0	2021-05-27 15:42:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:42:34.951+03	2021-05-27 15:42:34.958+03	
081ace9d-c9b8-c27d-51ef-aa43d6bfb659	2021-05-27 15:42:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:42:54.951+03	2021-05-27 15:42:54.958+03	
78220a41-0e7b-d015-cb4d-90b1f853c39c	2021-05-27 15:43:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:43:14.951+03	2021-05-27 15:43:14.96+03	
93310b3e-5e34-8fa8-ce78-85384fa05b0c	2021-05-27 15:43:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:43:34.951+03	2021-05-27 15:43:34.959+03	
5a7e7cf3-a586-8ce4-a505-184facb124a6	2021-05-27 15:43:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:43:54.951+03	2021-05-27 15:43:54.959+03	
064b0def-2997-e33c-ab72-4c989649c8bb	2021-05-27 15:44:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:44:14.951+03	2021-05-27 15:44:14.958+03	
16c43573-3f11-5ab2-6bc8-43ee54dad1c2	2021-05-27 15:44:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:44:34.951+03	2021-05-27 15:44:34.962+03	
d40f33e6-d499-9e05-5d1e-3e08c8b524a4	2021-05-27 15:44:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:44:54.951+03	2021-05-27 15:44:54.957+03	
306c51d3-d7a1-dfa6-1a28-9ff8d5d77cc2	2021-05-27 15:45:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:45:14.951+03	2021-05-27 15:45:14.959+03	
516fb584-c148-19dd-fc81-08adbc7edb7b	2021-05-27 15:45:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:45:34.951+03	2021-05-27 15:45:34.957+03	
5fe345b6-e23e-bd6f-c202-69748eca1e86	2021-05-27 15:45:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:45:54.951+03	2021-05-27 15:45:54.958+03	
ff5ba9a8-2525-0e8c-6e02-bf91bba2b03e	2021-05-27 15:46:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:46:14.951+03	2021-05-27 15:46:14.958+03	
325a5a09-76dc-6df8-5257-77403a55c324	2021-05-27 15:46:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:46:34.951+03	2021-05-27 15:46:34.959+03	
8bc5cc91-4148-5068-abd6-9624312e3ae6	2021-05-27 15:46:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:46:54.951+03	2021-05-27 15:46:54.96+03	
504451be-329e-f6a9-8c5c-172c7b11585c	2021-05-27 15:47:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:47:14.951+03	2021-05-27 15:47:14.959+03	
c642d727-82fd-7e7f-d087-3882ea9b409e	2021-05-27 15:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:47:34.951+03	2021-05-27 15:47:34.958+03	
6e45084e-5457-868b-c16f-478831687cf8	2021-05-27 15:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:47:54.951+03	2021-05-27 15:47:54.959+03	
955a92c0-16f4-6f40-e629-9157e6ad3894	2021-05-27 15:48:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:48:14.951+03	2021-05-27 15:48:14.958+03	
a3e8927e-50b7-79a6-d8b8-e26ea72d308a	2021-05-27 15:48:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:48:34.951+03	2021-05-27 15:48:34.958+03	
92e3d133-578d-a367-0b8a-5703ff9575c0	2021-05-27 15:48:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:48:54.951+03	2021-05-27 15:48:54.958+03	
8ce4fbcf-ac9a-2e1b-fb0e-8c4441a4b1f9	2021-05-27 15:49:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:49:14.951+03	2021-05-27 15:49:14.963+03	
10d05e8b-6459-5afe-96dd-a1a529dda763	2021-05-27 15:49:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:49:34.951+03	2021-05-27 15:49:34.959+03	
2c86c11c-7ca9-98c5-c249-1db5c3178f32	2021-05-27 15:49:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:49:54.951+03	2021-05-27 15:49:54.964+03	
f8b1dee3-8364-a085-88f2-5de62ed876b6	2021-05-27 15:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:50:04.951+03	2021-05-27 15:50:04.962+03	
30dc2ee2-605e-ebb6-c924-7d7bcc49e4d8	2021-05-27 15:50:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:50:24.951+03	2021-05-27 15:50:24.958+03	
f2843c29-2e82-8d77-14b7-539a66ee56b4	2021-05-27 15:50:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:50:44.951+03	2021-05-27 15:50:44.959+03	
c06b7499-438c-1386-1de7-b925380d75bc	2021-05-27 15:51:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:51:04.951+03	2021-05-27 15:51:04.958+03	
3132c3be-e23f-3de4-ed87-7fd41b024ccc	2021-05-27 15:51:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:51:24.951+03	2021-05-27 15:51:24.958+03	
83ce016a-21b8-d3a4-c86e-42bbb6330470	2021-05-27 15:51:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:51:44.951+03	2021-05-27 15:51:44.959+03	
e8a56f23-553a-bd4f-e9d1-2384bfe807d5	2021-05-27 15:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:52:04.951+03	2021-05-27 15:52:04.96+03	
6cacbe81-7d3b-8ae4-3846-7ea917496e22	2021-05-27 15:52:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:52:25.951+03	2021-05-27 15:52:25.958+03	
57354e6b-7433-5c38-198b-16372a35756e	2021-05-27 15:52:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:52:45.951+03	2021-05-27 15:52:45.959+03	
c0364688-afa6-84d1-ac66-b090abd086e0	2021-05-27 15:53:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:53:05.951+03	2021-05-27 15:53:05.958+03	
70fce2ee-1c80-4542-de04-782135c797dd	2021-05-27 15:53:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:53:25.951+03	2021-05-27 15:53:25.958+03	
c8974ba8-09bb-964a-f665-77ae2d2d4e4b	2021-05-27 15:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:53:45.951+03	2021-05-27 15:53:45.96+03	
e062a57b-7cff-8c7e-4eec-507374435dc1	2021-05-27 15:54:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:54:05.951+03	2021-05-27 15:54:05.959+03	
1099820d-1b74-671b-eda7-d6d17edee41f	2021-05-27 15:54:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:54:25.951+03	2021-05-27 15:54:25.958+03	
0bb41bb7-1515-3377-860b-83b2ed1afd14	2021-05-27 15:54:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:54:45.951+03	2021-05-27 15:54:45.959+03	
ac746b7f-2fbd-ac06-b5d6-e8fdd4d5d57f	2021-05-27 15:55:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:55:05.951+03	2021-05-27 15:55:05.959+03	
0792dd10-c954-f866-e017-0ae95f0b93f8	2021-05-27 15:55:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:55:25.951+03	2021-05-27 15:55:25.962+03	
21ff0ca6-15c3-8781-d2c5-a2f91674620a	2021-05-27 15:55:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:55:45.951+03	2021-05-27 15:55:45.96+03	
eaf4980b-40b3-233f-628d-77f24fdef775	2021-05-27 15:56:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:56:05.951+03	2021-05-27 15:56:05.959+03	
0b7fadae-68b9-ccbe-7c99-2113a444fbb9	2021-05-27 15:56:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:56:25.952+03	2021-05-27 15:56:25.962+03	
e2139685-37d0-8db5-3145-89234feaa374	2021-05-27 15:56:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:56:46.951+03	2021-05-27 15:56:46.959+03	
79dc9a64-a065-75b7-f1ea-3ee64ff9adee	2021-05-27 15:57:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:57:06.951+03	2021-05-27 15:57:06.959+03	
e7741bcd-877d-5c87-356c-39bf17b73c46	2021-05-27 15:57:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:57:26.952+03	2021-05-27 15:57:26.963+03	
f4d72fbb-38b8-e606-6a43-04c93e105ba3	2021-05-27 15:57:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:57:47.952+03	2021-05-27 15:57:47.959+03	
c93c07d5-2756-0ca3-129a-955b8bc8a811	2021-05-27 15:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:58:08.951+03	2021-05-27 15:58:08.958+03	
39388254-4768-6994-febf-c7e75c6e30fd	2021-05-27 15:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:58:28.951+03	2021-05-27 15:58:28.959+03	
dfd9b5ae-9fad-4bb7-cca9-23f4f63fe9bc	2021-05-27 15:58:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:58:48.951+03	2021-05-27 15:58:48.959+03	
c6cdc4c3-eee5-7596-96be-2c5069190562	2021-05-27 15:59:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:59:08.951+03	2021-05-27 15:59:08.958+03	
c05be4de-e0ad-2211-de48-d0060403859d	2021-05-27 15:59:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:59:28.951+03	2021-05-27 15:59:28.957+03	
b0f76695-6fd7-9920-a366-bbeec85f09f1	2021-05-27 15:59:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 15:59:48.951+03	2021-05-27 15:59:48.958+03	
dcb54182-7a0a-36ae-fe15-b9a3ded2393a	2021-05-27 16:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 16:00:00.951+03	2021-05-27 16:00:00.957+03	ERROR
632b59d7-7941-b9a9-64a2-14d62ec58fc0	2021-05-27 16:00:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:00:18.951+03	2021-05-27 16:00:18.958+03	
15bdbc4b-9906-1018-168f-fe3f07fceb0b	2021-05-27 16:00:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:00:38.951+03	2021-05-27 16:00:38.959+03	
d294c121-796e-d854-e6f3-5d59320b1418	2021-05-27 16:00:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:00:58.951+03	2021-05-27 16:00:58.961+03	
a4d92780-b522-e0f8-9718-6a3a59a303f3	2021-05-27 16:01:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:01:18.951+03	2021-05-27 16:01:18.962+03	
3e5b3f74-93e0-2add-c1bc-9660e1992ddb	2021-05-27 16:01:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:01:38.951+03	2021-05-27 16:01:38.963+03	
4259fe8a-f6e2-c098-8ebf-8ace344da23b	2021-05-27 16:01:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:01:58.951+03	2021-05-27 16:01:58.965+03	
c1dbd9ac-28e9-c11b-5390-27ecc09bd409	2021-05-27 16:01:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:01:48.951+03	2021-05-27 16:01:48.961+03	
7e4ff6eb-0767-4e5f-b586-69c8f8266afe	2021-05-27 16:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:02:08.951+03	2021-05-27 16:02:08.959+03	
a654d0d0-dc7f-cc7e-d339-0fcfac7d8372	2021-05-27 16:02:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:02:28.951+03	2021-05-27 16:02:28.958+03	
aedbe201-25d2-b518-1e03-8d061db1458a	2021-05-27 16:02:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:02:48.951+03	2021-05-27 16:02:48.96+03	
89d851ea-167e-7abc-68d5-8d21936f3368	2021-05-27 16:03:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:03:08.951+03	2021-05-27 16:03:08.958+03	
2122d844-6329-bca3-b5af-f79c4464f69e	2021-05-27 16:03:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:03:28.951+03	2021-05-27 16:03:28.959+03	
b0f768ba-01ca-3d5c-b4f8-ba18bb445db6	2021-05-27 16:03:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:03:48.951+03	2021-05-27 16:03:48.96+03	
343211c6-97a7-4434-ca63-2f8d10471245	2021-05-27 16:04:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:04:08.951+03	2021-05-27 16:04:08.962+03	
d430a751-b064-a884-e199-2952235db649	2021-05-27 16:04:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:04:28.951+03	2021-05-27 16:04:28.961+03	
69a8a3f7-6744-a11f-74be-f8672c662317	2021-05-27 16:04:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:04:49.951+03	2021-05-27 16:04:49.959+03	
d1d9c1e8-478a-79f3-20cb-789e0e82b4d9	2021-05-27 16:05:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:05:09.951+03	2021-05-27 16:05:09.959+03	
51f3c21d-8319-9bdf-07a9-00552ffd2640	2021-05-27 16:05:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:05:29.951+03	2021-05-27 16:05:29.959+03	
28cf6e0f-39e2-e003-689e-cc73c959899e	2021-05-27 16:05:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:05:49.951+03	2021-05-27 16:05:49.959+03	
a0ce9c62-bcb7-dd5f-5b02-c12a02727214	2021-05-27 16:06:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:06:09.951+03	2021-05-27 16:06:09.966+03	
e18b782a-f297-dcf8-c473-ff569320b468	2021-05-27 16:06:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:06:29.951+03	2021-05-27 16:06:29.965+03	
3ce8edc9-6947-4273-13ab-1b32ffe84725	2021-05-27 16:06:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:06:49.951+03	2021-05-27 16:06:49.958+03	
a656f74f-145e-5d76-6eed-c1e4f29c7089	2021-05-27 16:07:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:07:09.951+03	2021-05-27 16:07:09.959+03	
34d10d0a-ac4b-733d-b7b9-a5d601bba5d2	2021-05-27 16:07:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:07:29.951+03	2021-05-27 16:07:29.958+03	
f2f677e0-11c3-7fae-3a82-e3414e23005c	2021-05-27 16:07:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:07:49.951+03	2021-05-27 16:07:49.959+03	
0bc9b2b9-f3d3-e789-f52b-5a44cec031b0	2021-05-27 16:08:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:08:09.951+03	2021-05-27 16:08:09.96+03	
e178e162-fcaf-ecad-a5a9-5e8d66c06be9	2021-05-27 16:08:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:08:29.951+03	2021-05-27 16:08:29.958+03	
fd27a5a3-49f1-fc1f-eeea-35aa5b5469a8	2021-05-27 16:08:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:08:49.951+03	2021-05-27 16:08:49.959+03	
2fb33434-bb22-0771-e497-9786c9cdc05a	2021-05-27 16:09:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:09:09.951+03	2021-05-27 16:09:09.96+03	
62f11336-31fa-ccb9-4d57-49b2eae2daf8	2021-05-27 16:09:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:09:29.951+03	2021-05-27 16:09:29.958+03	
55c53631-73a9-0ec2-f71e-7f9470197c72	2021-05-27 16:09:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:09:49.951+03	2021-05-27 16:09:49.959+03	
7a6a1b6f-5471-7f78-9d34-b74ed5e96275	2021-05-27 16:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 16:10:00.951+03	2021-05-27 16:10:00.956+03	ERROR
aabfec26-0c60-19fb-780d-b53572a9bbb9	2021-05-27 16:10:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:10:19.951+03	2021-05-27 16:10:19.958+03	
0527883c-67cf-227b-28ec-63d5784ffdb8	2021-05-27 16:10:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:10:39.952+03	2021-05-27 16:10:39.959+03	
a76485b0-8b55-699b-8e55-6869bd4559d1	2021-05-27 16:11:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:11:00.951+03	2021-05-27 16:11:00.96+03	
90e6bb7e-fc5f-482f-7b18-5865756bc80f	2021-05-27 16:11:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:11:20.951+03	2021-05-27 16:11:20.958+03	
52021024-04c1-f468-14d3-a0ba6d4b22dd	2021-05-27 16:11:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:11:40.951+03	2021-05-27 16:11:40.958+03	
37191059-76de-a70e-fd6a-37839821b14b	2021-05-27 16:12:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:12:00.951+03	2021-05-27 16:12:00.959+03	
1d783468-be07-73d0-d63c-353de57ee28b	2021-05-27 16:12:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:12:21.951+03	2021-05-27 16:12:21.958+03	
86ce5d07-ee97-62fa-9bd3-de3d49998228	2021-05-27 16:12:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:12:41.951+03	2021-05-27 16:12:41.958+03	
c5f79aff-ca2f-bb0a-bea0-997dad20acd0	2021-05-27 16:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:13:01.951+03	2021-05-27 16:13:01.962+03	
412c5600-2659-e2b3-f2e0-4fc4dfb21f76	2021-05-27 16:13:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:13:21.951+03	2021-05-27 16:13:21.959+03	
e8670207-913a-4ca0-55da-8ad9722111a5	2021-05-27 16:13:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:13:41.951+03	2021-05-27 16:13:41.96+03	
36ef3970-d87b-037a-c93d-7daa4a4e5a27	2021-05-27 16:14:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:14:01.951+03	2021-05-27 16:14:01.958+03	
547ca99b-74fa-efbf-16e8-5033a51701a0	2021-05-27 16:14:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:14:21.951+03	2021-05-27 16:14:21.959+03	
d28d8032-ee5b-e05f-0c3d-f8cc609a3b43	2021-05-27 16:14:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:14:41.951+03	2021-05-27 16:14:41.958+03	
64a54e1b-9c1d-f18a-3502-4b58b9158b9f	2021-05-27 16:15:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:15:01.951+03	2021-05-27 16:15:01.959+03	
1e357daa-e535-6819-99be-dfa7fdc9cd7a	2021-05-27 16:15:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:15:21.951+03	2021-05-27 16:15:21.958+03	
7dcaa2ca-b99a-97d8-c484-e44950878a1d	2021-05-27 16:15:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:15:41.951+03	2021-05-27 16:15:41.958+03	
bffdfbfe-be07-38b0-5d1f-a98bfc50e0a3	2021-05-27 16:16:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:16:01.951+03	2021-05-27 16:16:01.958+03	
4d055797-218c-4254-4d52-bb1f63f5e1c6	2021-05-27 16:16:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:16:21.951+03	2021-05-27 16:16:21.957+03	
11d8c7ca-3529-783c-0527-83b0b325d399	2021-05-27 16:16:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:16:41.951+03	2021-05-27 16:16:41.957+03	
c7bec389-0b32-87e9-3cc2-80587e72547a	2021-05-27 16:17:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:17:01.951+03	2021-05-27 16:17:01.957+03	
8712e4eb-359e-b393-04c1-8b3859c9ca31	2021-05-27 16:17:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:17:21.951+03	2021-05-27 16:17:21.957+03	
ea291b35-8303-88d1-6a32-0a116e868da6	2021-05-27 16:17:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:17:41.951+03	2021-05-27 16:17:41.957+03	
50d85039-d22e-73d2-baac-d6a833254347	2021-05-27 16:18:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:18:01.951+03	2021-05-27 16:18:01.958+03	
d8b18614-d46f-1bf2-158e-edd109b2f4e3	2021-05-27 16:18:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:18:21.952+03	2021-05-27 16:18:21.957+03	
5008ee9a-6854-623e-3b71-503247f672ef	2021-05-27 16:18:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:18:42.951+03	2021-05-27 16:18:42.958+03	
5239b4fe-9209-a7f9-adc4-1cc9b1576fae	2021-05-27 16:19:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:19:02.951+03	2021-05-27 16:19:02.958+03	
6888db26-8ee9-8141-bb75-3f25107941c9	2021-05-27 16:19:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:19:22.951+03	2021-05-27 16:19:22.957+03	
19b19013-1c0a-b735-996f-c0ee6d2cc4a3	2021-05-27 16:19:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:19:42.951+03	2021-05-27 16:19:42.958+03	
c0589989-72af-1ac1-6f54-c548ba5488c6	2021-05-27 16:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 16:20:00.951+03	2021-05-27 16:20:00.957+03	ERROR
190d10db-04da-0d25-ef93-4371269cd4cc	2021-05-27 16:20:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:20:12.951+03	2021-05-27 16:20:12.96+03	
04239343-e881-2996-a297-76d995350155	2021-05-27 16:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:20:33.951+03	2021-05-27 16:20:33.96+03	
03e2e1ec-7489-494b-0d0b-d8b4eb15d811	2021-05-27 16:20:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:20:53.951+03	2021-05-27 16:20:53.957+03	
b8bd21ee-15fd-2d19-427b-3e9ac14943d4	2021-05-27 16:21:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:21:13.951+03	2021-05-27 16:21:13.958+03	
2bba801e-d48e-2238-4ec7-99867bf8e4fd	2021-05-27 16:21:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:21:33.951+03	2021-05-27 16:21:33.959+03	
19d91bf5-bda0-6fa1-ef81-1daea49aa229	2021-05-27 16:21:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:21:53.951+03	2021-05-27 16:21:53.961+03	
f4d18812-502d-6426-305d-66fb55211f33	2021-05-27 16:22:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:22:13.951+03	2021-05-27 16:22:13.958+03	
6124d096-220e-93bf-a119-a7ed981f6504	2021-05-27 16:02:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:02:18.951+03	2021-05-27 16:02:18.96+03	
e173ad0e-d811-300c-f0fa-6dfe70b8c8f6	2021-05-27 16:02:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:02:38.951+03	2021-05-27 16:02:38.962+03	
fa44ea0b-925b-2995-5ded-14ad6b5f6854	2021-05-27 16:02:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:02:58.951+03	2021-05-27 16:02:58.959+03	
7cc03a67-7ee1-a4c4-6ea9-f32660ea62ee	2021-05-27 16:03:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:03:18.951+03	2021-05-27 16:03:18.961+03	
8c91c56f-03c4-9526-5576-43772a7e18b9	2021-05-27 16:03:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:03:38.951+03	2021-05-27 16:03:38.96+03	
9482654f-414a-6da4-993b-b16571ca0fd6	2021-05-27 16:03:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:03:58.951+03	2021-05-27 16:03:58.962+03	
d365d736-9f71-84ff-57f7-4c8c7fdfb193	2021-05-27 16:04:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:04:18.951+03	2021-05-27 16:04:18.962+03	
562c0a7d-c82c-c656-202a-63ad374fec92	2021-05-27 16:04:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:04:38.952+03	2021-05-27 16:04:38.959+03	
b115cbf3-bf00-54b7-195c-0580ccbca39d	2021-05-27 16:04:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:04:59.951+03	2021-05-27 16:04:59.959+03	
3a3172bf-8981-4c79-0a8d-3e57ea20556e	2021-05-27 16:05:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:05:19.951+03	2021-05-27 16:05:19.958+03	
896b6220-3a6b-da55-2983-846fd9a1087c	2021-05-27 16:05:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:05:39.951+03	2021-05-27 16:05:39.958+03	
0310c63d-2a41-69dd-6d22-4ff494c4e3b6	2021-05-27 16:05:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:05:59.951+03	2021-05-27 16:05:59.965+03	
9b2698a0-eaef-fdaa-7f5d-bb3c41ceec65	2021-05-27 16:06:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:06:19.951+03	2021-05-27 16:06:19.959+03	
b854fa1a-fe9e-b694-a4da-a0a8af165921	2021-05-27 16:06:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:06:39.951+03	2021-05-27 16:06:39.959+03	
2c358f2e-1c2b-be67-cc5d-83ace265f448	2021-05-27 16:06:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:06:59.951+03	2021-05-27 16:06:59.965+03	
d7fd26d8-1ddf-db91-b515-33624ce02d88	2021-05-27 16:07:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:07:19.951+03	2021-05-27 16:07:19.958+03	
a3c4eb18-c05b-c520-9454-316f2511a8df	2021-05-27 16:07:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:07:39.951+03	2021-05-27 16:07:39.958+03	
6b5e0732-9326-fe52-d07a-98c39d4e3c1c	2021-05-27 16:07:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:07:59.951+03	2021-05-27 16:07:59.963+03	
34d7f9f3-53a1-6194-7125-575b92e7c4d9	2021-05-27 16:08:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:08:19.951+03	2021-05-27 16:08:19.958+03	
a14536db-1814-fc53-f02a-5f7056adf537	2021-05-27 16:08:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:08:39.951+03	2021-05-27 16:08:39.958+03	
1d03c8e1-7769-b64b-7d17-fc16730016d0	2021-05-27 16:08:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:08:59.951+03	2021-05-27 16:08:59.958+03	
25b65f9c-738f-b87a-7b92-489658b649ec	2021-05-27 16:09:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:09:19.951+03	2021-05-27 16:09:19.958+03	
9e3fd9d0-4db8-b91f-41e6-6281161aab25	2021-05-27 16:09:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:09:39.951+03	2021-05-27 16:09:39.958+03	
01bc3a9b-e974-9118-7830-92334c54c03a	2021-05-27 16:09:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:09:59.951+03	2021-05-27 16:09:59.958+03	
d8717b2a-4f59-0ce9-626b-4e84b85af64f	2021-05-27 16:10:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:10:09.951+03	2021-05-27 16:10:09.958+03	
28fde067-77c4-1076-dc5a-061914421d64	2021-05-27 16:10:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:10:29.951+03	2021-05-27 16:10:29.958+03	
48a2248d-8841-86d5-6d29-b72d9b0d2f4d	2021-05-27 16:10:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:10:50.951+03	2021-05-27 16:10:50.959+03	
93c42e82-8662-0bad-ed3e-d3320ab8268a	2021-05-27 16:11:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:11:10.951+03	2021-05-27 16:11:10.958+03	
0b695d3b-eeaf-c77b-4fa5-3f3fe7b1c6df	2021-05-27 16:11:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:11:30.951+03	2021-05-27 16:11:30.958+03	
0a401cf5-6d92-c4dc-0fbf-5ae748b0377f	2021-05-27 16:11:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:11:50.951+03	2021-05-27 16:11:51.253+03	
8605b9cc-2152-9f1f-a016-fdf1e3e236d6	2021-05-27 16:12:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:12:10.952+03	2021-05-27 16:12:10.96+03	
fc3e9bf5-61e3-642f-f3ff-775bc09e18ae	2021-05-27 16:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:12:31.951+03	2021-05-27 16:12:31.958+03	
a058fc17-25c6-052d-089b-9abfff7c4b7f	2021-05-27 16:12:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:12:51.951+03	2021-05-27 16:12:51.96+03	
092e810e-b992-332e-12a3-13344d8d1782	2021-05-27 16:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:13:11.951+03	2021-05-27 16:13:11.958+03	
29b0b9b6-b52a-495a-9f99-c6dc1106f4f2	2021-05-27 16:13:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:13:31.951+03	2021-05-27 16:13:31.959+03	
2d24247b-4cae-46d5-9ed1-52247e9c30db	2021-05-27 16:13:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:13:51.951+03	2021-05-27 16:13:51.959+03	
ad7cd5d2-6d64-2b8f-4295-8deb5d7ec733	2021-05-27 16:14:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:14:11.951+03	2021-05-27 16:14:11.959+03	
0c32d416-48ed-0abc-bd1c-26d0095f9d7c	2021-05-27 16:14:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:14:31.951+03	2021-05-27 16:14:31.964+03	
afcde596-4e4b-ba0d-efef-54d2033c6cc0	2021-05-27 16:14:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:14:51.951+03	2021-05-27 16:14:51.958+03	
9a4ab3d2-4ea2-81b3-c029-6108fd126c25	2021-05-27 16:15:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:15:11.951+03	2021-05-27 16:15:11.96+03	
250ec82b-faba-af87-6189-4660affdb7d4	2021-05-27 16:15:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:15:31.951+03	2021-05-27 16:15:31.958+03	
270d89ab-9bb3-24c9-9155-5f26495bb11a	2021-05-27 16:15:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:15:51.951+03	2021-05-27 16:15:51.957+03	
65d11dd1-e132-78da-7f5b-a2ade3e2f87c	2021-05-27 16:16:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:16:11.951+03	2021-05-27 16:16:11.958+03	
767d2525-4d7e-1e77-2b68-e70c7eeb434a	2021-05-27 16:16:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:16:31.951+03	2021-05-27 16:16:31.958+03	
db8e2b5f-8a25-1fb4-bf5d-c32b68fd1c6f	2021-05-27 16:16:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:16:51.951+03	2021-05-27 16:16:51.958+03	
09032200-af63-1ee5-810b-3570984548c1	2021-05-27 16:17:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:17:11.951+03	2021-05-27 16:17:11.958+03	
909c83dc-dd1d-698a-3f0d-65964a98cf9a	2021-05-27 16:17:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:17:31.951+03	2021-05-27 16:17:31.957+03	
14cbe349-eec6-a6ad-ff77-bd8948a04d7c	2021-05-27 16:17:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:17:51.951+03	2021-05-27 16:17:52.271+03	
3a38a416-36d7-f3f9-11c4-473d19b95e28	2021-05-27 16:18:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:18:11.951+03	2021-05-27 16:18:11.958+03	
f2349972-63c9-c6e2-40a4-9a2346b0ec64	2021-05-27 16:18:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:18:32.951+03	2021-05-27 16:18:32.958+03	
31be2ee9-0073-a460-a9ad-c5936d460eaf	2021-05-27 16:18:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:18:52.951+03	2021-05-27 16:18:52.958+03	
67cab2cd-3ae0-3752-c20b-5798e412f3b1	2021-05-27 16:19:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:19:12.951+03	2021-05-27 16:19:12.958+03	
0943a3f3-dc29-a6c1-a4c9-7498334539e6	2021-05-27 16:19:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:19:32.951+03	2021-05-27 16:19:32.958+03	
1f655f43-57cb-2ca6-3faa-7c6ad37c62df	2021-05-27 16:19:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:19:52.951+03	2021-05-27 16:19:52.958+03	
63e41ba4-3bdb-85c6-372d-54dc5dfbb69a	2021-05-27 16:20:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:20:02.951+03	2021-05-27 16:20:02.958+03	
27706846-0f86-a655-534f-7b353c33c342	2021-05-27 16:20:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:20:22.952+03	2021-05-27 16:20:22.959+03	
978d60c5-0927-646c-fc22-1e34e318475f	2021-05-27 16:20:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:20:43.951+03	2021-05-27 16:20:43.959+03	
fa4bf575-657f-77f7-3cc6-3fb79a879e85	2021-05-27 16:21:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:21:03.951+03	2021-05-27 16:21:03.959+03	
4983849b-bdf3-52a3-d807-58eb019c28b7	2021-05-27 16:21:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:21:23.951+03	2021-05-27 16:21:23.959+03	
df79ea06-b5e2-62bf-e02a-bf4bd5a699de	2021-05-27 16:21:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:21:43.951+03	2021-05-27 16:21:43.957+03	
c591fcec-6de0-612d-3fa2-a1b2f6a3548a	2021-05-27 16:22:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:22:03.951+03	2021-05-27 16:22:03.957+03	
4d3c0f24-91c5-4ed2-1d8c-9fd32c5f2f50	2021-05-27 16:22:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:22:23.951+03	2021-05-27 16:22:23.958+03	
72205e4f-2dfc-a04e-3249-aeadd0068694	2021-05-27 16:22:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:22:43.951+03	2021-05-27 16:22:43.964+03	
b8aeada5-1c85-db17-a35d-7b685f0e0478	2021-05-27 16:22:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:22:33.951+03	2021-05-27 16:22:33.959+03	
f2904d84-f2ba-90d5-b672-c7e7e744da37	2021-05-27 16:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:22:53.951+03	2021-05-27 16:22:53.963+03	
fd51768f-cba6-fcb6-8465-8d4861673545	2021-05-27 16:23:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:23:13.951+03	2021-05-27 16:23:13.96+03	
23cf1746-aece-989a-5d02-57e5a7bb56cc	2021-05-27 16:23:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:23:34.951+03	2021-05-27 16:23:34.958+03	
b749d2e0-12e3-e51b-a501-06a7f3745d17	2021-05-27 16:23:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:23:54.951+03	2021-05-27 16:23:54.959+03	
b3e99dd6-c536-538a-c3e1-d881381ef691	2021-05-27 16:24:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:24:14.951+03	2021-05-27 16:24:14.959+03	
7e0e724e-554d-d5a5-ea25-a8690220cefc	2021-05-27 16:24:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:24:34.951+03	2021-05-27 16:24:34.958+03	
8907e77b-6129-e197-9ec9-1afd486c7ea0	2021-05-27 16:24:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:24:54.951+03	2021-05-27 16:24:54.961+03	
f9a0bb34-b578-54ac-ba87-edf1ca87cf14	2021-05-27 16:25:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:25:14.951+03	2021-05-27 16:25:14.96+03	
500430ea-2f69-89f7-c012-c938b663793a	2021-05-27 16:25:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:25:34.951+03	2021-05-27 16:25:34.962+03	
3535dad6-af72-4ff9-8dbf-e357aa5075e2	2021-05-27 16:25:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:25:54.951+03	2021-05-27 16:25:54.958+03	
f4c7151b-63a7-cdaf-5e62-45b198ae5a21	2021-05-27 16:26:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:26:14.951+03	2021-05-27 16:26:14.965+03	
f587f980-df57-0f6f-9544-9ef25cb55f64	2021-05-27 16:26:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:26:34.951+03	2021-05-27 16:26:34.957+03	
dee3eaab-6c01-e6d7-252f-727e82da45b9	2021-05-27 16:26:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:26:54.951+03	2021-05-27 16:26:54.957+03	
e191f31e-091e-c34b-2326-fa7050e12594	2021-05-27 16:27:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:27:14.951+03	2021-05-27 16:27:14.957+03	
d7e4fdc2-7c8c-2630-3784-2ff10a521841	2021-05-27 16:27:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:27:34.951+03	2021-05-27 16:27:34.958+03	
eb5584dd-dbcc-2bbb-deb7-cb9f3d499dbe	2021-05-27 16:27:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:27:54.951+03	2021-05-27 16:27:54.958+03	
a02be114-f4c1-2787-1317-cb36f2534efe	2021-05-27 16:28:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:28:14.951+03	2021-05-27 16:28:14.958+03	
9f2a02e0-f0ce-168d-a477-fed3b14fdad6	2021-05-27 16:28:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:28:34.951+03	2021-05-27 16:28:34.957+03	
c32ff041-0bf4-4616-93ae-edcde5bfeb74	2021-05-27 16:28:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:28:54.951+03	2021-05-27 16:28:54.958+03	
9502bc0e-af69-f064-3375-3ecdf8b1c1f7	2021-05-27 16:29:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:29:14.951+03	2021-05-27 16:29:14.957+03	
8d0f438c-22a1-cda1-349d-677194f1ecd3	2021-05-27 16:29:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:29:34.951+03	2021-05-27 16:29:34.957+03	
0ced14b4-2a66-d0a6-f923-37472d83c100	2021-05-27 16:29:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:29:54.951+03	2021-05-27 16:29:54.958+03	
1352613e-e905-7006-c91a-1ce9aa1f8196	2021-05-27 16:30:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:30:04.951+03	2021-05-27 16:30:04.958+03	
9599a934-8d11-b636-b4b8-f702f18c5fbd	2021-05-27 16:30:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:30:24.951+03	2021-05-27 16:30:24.957+03	
8695b346-7f6c-1c3e-a840-7c9387804c07	2021-05-27 16:30:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:30:44.951+03	2021-05-27 16:30:44.958+03	
45db907c-d88a-aa1d-84f5-a99ae6a2be14	2021-05-27 16:31:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:31:04.951+03	2021-05-27 16:31:04.958+03	
d11705fe-8bcd-29f0-9a31-32b29a812658	2021-05-27 16:31:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:31:24.951+03	2021-05-27 16:31:24.958+03	
81856b79-a15b-287d-a646-f42d37805d27	2021-05-27 16:31:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:31:44.951+03	2021-05-27 16:31:44.957+03	
90988010-a0d3-0d42-c7ee-91030ba7c6ca	2021-05-27 16:32:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:32:04.951+03	2021-05-27 16:32:04.958+03	
ef3155d3-8213-8154-b4ec-bc1a661cc05f	2021-05-27 16:32:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:32:24.951+03	2021-05-27 16:32:24.957+03	
b3dbe7d1-28bd-c74c-d35d-fcb9af5113ab	2021-05-27 16:32:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:32:44.951+03	2021-05-27 16:32:44.957+03	
938d4d97-2db5-1940-b9ba-d848969704e0	2021-05-27 16:33:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:33:04.951+03	2021-05-27 16:33:04.958+03	
9a350715-d90f-e168-090c-3d3591af285d	2021-05-27 16:33:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:33:34.951+03	2021-05-27 16:33:34.957+03	
0531105e-e362-a22f-2ec2-08cf8fda2593	2021-05-27 16:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:33:54.951+03	2021-05-27 16:33:54.959+03	
669e987b-2fd4-17e6-9e0d-3a4982307c73	2021-05-27 16:34:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:34:14.951+03	2021-05-27 16:34:14.958+03	
b49bd777-ddbe-4bb2-e6ff-6d0e3766712c	2021-05-27 16:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:34:34.951+03	2021-05-27 16:34:34.959+03	
1a8ada40-8eeb-464c-48e4-3e6617124be4	2021-05-27 16:34:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:34:55.951+03	2021-05-27 16:34:55.958+03	
ad8113a5-86b6-0c4b-2108-2b69b619edc3	2021-05-27 16:35:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:35:15.951+03	2021-05-27 16:35:15.959+03	
62791633-4d2f-0160-6958-470d8464d3c9	2021-05-27 16:35:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:35:35.951+03	2021-05-27 16:35:35.957+03	
f6f76b90-7a20-c638-1975-14a5a35f6caa	2021-05-27 16:35:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:35:55.951+03	2021-05-27 16:35:55.957+03	
67f28984-8633-4c23-08df-81d1bb0ce3ac	2021-05-27 16:36:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:36:15.951+03	2021-05-27 16:36:15.957+03	
65c7c42e-9a1c-5fbb-b3fc-2eb5c9433596	2021-05-27 16:36:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:36:35.951+03	2021-05-27 16:36:35.958+03	
e965bc9f-4e05-79f4-70fa-d219aa72f9e0	2021-05-27 16:36:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:36:55.951+03	2021-05-27 16:36:55.958+03	
b5c6fdfc-fc0a-11b6-71a8-6e641bc77fac	2021-05-27 16:37:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:37:15.951+03	2021-05-27 16:37:15.959+03	
c270fdf4-e831-bbfe-a9d5-b4286df9a81c	2021-05-27 16:37:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:37:25.951+03	2021-05-27 16:37:25.958+03	
fdd51381-e8a2-dd3f-f4d8-9ec8f92c41f6	2021-05-27 16:37:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:37:45.952+03	2021-05-27 16:37:45.96+03	
4761ad0a-2a77-5a6e-2e15-2c6a0156e235	2021-05-27 16:38:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:38:06.951+03	2021-05-27 16:38:06.959+03	
30481b35-ec37-f353-94cc-41c1af88d418	2021-05-27 16:38:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:38:26.951+03	2021-05-27 16:38:26.957+03	
7eaf61a7-79e8-4c8b-2aeb-da7bd2f43ab4	2021-05-27 16:38:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:38:46.951+03	2021-05-27 16:38:46.959+03	
b207a782-b7e5-03d6-2452-5208b5099d4b	2021-05-27 16:39:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:39:06.951+03	2021-05-27 16:39:06.957+03	
1991ad72-c42d-995b-4689-e88a1bc10e0a	2021-05-27 16:39:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:39:26.951+03	2021-05-27 16:39:26.958+03	
3b0ce607-07ad-3637-c93a-1ce50715e6ea	2021-05-27 16:39:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:39:46.951+03	2021-05-27 16:39:46.958+03	
a924398d-fb8a-61f3-4623-d6cef0869ec6	2021-05-27 16:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 16:40:00.951+03	2021-05-27 16:40:00.956+03	ERROR
2d084543-6745-1559-1e4a-dcc0a0663b16	2021-05-27 16:40:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:40:16.951+03	2021-05-27 16:40:16.958+03	
c4eb5dc9-8bb9-8d13-6f3e-080eff2d63eb	2021-05-27 16:40:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:40:36.951+03	2021-05-27 16:40:36.958+03	
d56824cc-5b88-2b23-077d-cf13087f4561	2021-05-27 16:40:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:40:56.951+03	2021-05-27 16:40:56.96+03	
21ab750c-45d8-0c1f-e9ac-e0c0c7516644	2021-05-27 16:41:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:41:16.951+03	2021-05-27 16:41:16.96+03	
17e4f5dc-0b65-2eb2-bd6a-63b26c188e04	2021-05-27 16:41:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:41:36.951+03	2021-05-27 16:41:36.959+03	
be3a5baf-98ec-8da2-1df2-7a0aa91482cb	2021-05-27 16:41:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:41:56.951+03	2021-05-27 16:41:56.958+03	
41f957f2-f771-bf5f-db78-3659ba3a60f9	2021-05-27 16:42:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:42:16.951+03	2021-05-27 16:42:16.959+03	
2414a74c-4c4b-117b-9553-2a521cf8dcb0	2021-05-27 16:42:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:42:36.951+03	2021-05-27 16:42:36.958+03	
b1379ce6-1c4c-01d3-c02b-01b83df4a393	2021-05-27 16:42:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:42:56.951+03	2021-05-27 16:42:56.958+03	
ff958ee6-1631-b8cf-d009-575451f9a928	2021-05-27 16:23:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:23:03.951+03	2021-05-27 16:23:03.962+03	
b2df2062-5ddc-20ee-5faa-e53c20918216	2021-05-27 16:23:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:23:23.952+03	2021-05-27 16:23:23.96+03	
c8a30397-6e75-2d5f-75f7-6376089d8840	2021-05-27 16:23:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:23:44.951+03	2021-05-27 16:23:44.96+03	
e7adcc7f-1589-5988-cdf8-0e03fa506577	2021-05-27 16:24:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:24:04.951+03	2021-05-27 16:24:04.96+03	
ab2c5146-0d37-5890-fd4c-4a46361632c5	2021-05-27 16:24:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:24:24.951+03	2021-05-27 16:24:24.959+03	
819d4888-f769-5901-f414-bf1d7abe0223	2021-05-27 16:24:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:24:44.951+03	2021-05-27 16:24:44.958+03	
2cacf250-9818-827d-9ebb-dda5a44d8cdf	2021-05-27 16:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:25:04.951+03	2021-05-27 16:25:04.958+03	
1898b5e9-9b58-e019-7ec3-8ceeee425d8c	2021-05-27 16:25:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:25:24.951+03	2021-05-27 16:25:24.958+03	
2a305e42-888f-297e-0c7a-45782b548f22	2021-05-27 16:25:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:25:44.951+03	2021-05-27 16:25:44.96+03	
fe15c28a-86d3-69aa-9697-555ec6b01165	2021-05-27 16:26:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:26:04.951+03	2021-05-27 16:26:04.957+03	
301bf25a-7ada-fe9c-894d-5a0c2aa790b8	2021-05-27 16:26:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:26:24.951+03	2021-05-27 16:26:24.957+03	
3f195a77-43a9-64a9-3ca6-7b6d19d1c060	2021-05-27 16:26:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:26:44.951+03	2021-05-27 16:26:44.958+03	
9350d8ef-0374-8593-a260-f1c86228d237	2021-05-27 16:27:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:27:04.951+03	2021-05-27 16:27:04.958+03	
57cc0e7c-3501-e22d-4166-e38675532e59	2021-05-27 16:27:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:27:24.951+03	2021-05-27 16:27:24.957+03	
1b4fb861-9e1e-1b93-fe83-d3a1bccff160	2021-05-27 16:27:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:27:44.951+03	2021-05-27 16:27:44.957+03	
a9bbbc1f-44a1-b3a7-a127-e9bfe2eaeb85	2021-05-27 16:28:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:28:04.951+03	2021-05-27 16:28:04.958+03	
867c0f88-f23c-5e8c-996c-669667d6bd99	2021-05-27 16:28:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:28:24.951+03	2021-05-27 16:28:24.957+03	
a2d14193-0b63-91fb-c756-e69950b396e9	2021-05-27 16:28:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:28:44.951+03	2021-05-27 16:28:44.957+03	
647163ae-ab41-b127-e93b-2e1b9c5c8b4c	2021-05-27 16:29:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:29:04.951+03	2021-05-27 16:29:04.957+03	
e912a2cb-b43e-a055-3905-8db1523fed76	2021-05-27 16:29:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:29:24.951+03	2021-05-27 16:29:24.957+03	
361a972c-844b-9165-6dbc-d394e4d384f7	2021-05-27 16:29:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:29:44.951+03	2021-05-27 16:29:44.958+03	
1d45f8ee-bc4f-d80d-0b2d-d0a257053fa2	2021-05-27 16:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 16:30:00.951+03	2021-05-27 16:30:00.957+03	ERROR
a67954fd-bd65-48a2-6962-073afaae92ae	2021-05-27 16:30:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:30:14.951+03	2021-05-27 16:30:14.957+03	
8fca69a5-a0cd-c4cc-278d-643e170d0be1	2021-05-27 16:30:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:30:34.951+03	2021-05-27 16:30:34.957+03	
10ce3bcc-2371-453b-0147-590cff5e9741	2021-05-27 16:30:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:30:54.951+03	2021-05-27 16:30:54.958+03	
17405da6-1c95-115f-d8f7-1f6004ffe956	2021-05-27 16:31:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:31:14.951+03	2021-05-27 16:31:14.958+03	
b7cb52b3-088d-4263-66d1-d38021e8a9ab	2021-05-27 16:31:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:31:34.951+03	2021-05-27 16:31:34.958+03	
c8f0a9c9-2f15-8cc7-3ef0-e84e047eccbd	2021-05-27 16:31:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:31:54.951+03	2021-05-27 16:31:54.958+03	
081818ba-1ea8-08c6-55a3-f9807efe8c53	2021-05-27 16:32:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:32:14.951+03	2021-05-27 16:32:14.957+03	
8eec69ce-07fa-8bf9-1cdd-139d1a9b7ded	2021-05-27 16:32:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:32:34.951+03	2021-05-27 16:32:34.958+03	
138859c4-6e11-37c1-2175-14709452a51c	2021-05-27 16:32:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:32:54.951+03	2021-05-27 16:32:54.958+03	
8d781b68-92ab-aa74-9455-443feccd634b	2021-05-27 16:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:33:14.951+03	2021-05-27 16:33:14.958+03	
fe413248-534c-2c95-c46c-ba33e30446ae	2021-05-27 16:33:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:33:24.951+03	2021-05-27 16:33:24.957+03	
80b7e7d9-e2f5-fd52-f027-e865a56dd11b	2021-05-27 16:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:33:44.951+03	2021-05-27 16:33:44.957+03	
083ee638-e93a-db7d-cf96-a2089b1eba57	2021-05-27 16:34:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:34:04.951+03	2021-05-27 16:34:04.96+03	
3d1cc303-43ec-8181-4ad8-89d396620018	2021-05-27 16:34:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:34:24.951+03	2021-05-27 16:34:24.958+03	
8350e3ce-aed8-8246-d86b-1595463af84b	2021-05-27 16:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:34:44.952+03	2021-05-27 16:34:44.959+03	
07c8cd15-e818-257d-daab-e02193058b2a	2021-05-27 16:35:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:35:05.951+03	2021-05-27 16:35:05.958+03	
bec14490-f49c-a46b-2623-3f6c30f07988	2021-05-27 16:35:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:35:25.951+03	2021-05-27 16:35:25.959+03	
bf16952a-1dde-52e9-f336-fe242e775b4f	2021-05-27 16:35:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:35:45.951+03	2021-05-27 16:35:45.958+03	
644e6cd7-0bc6-8d29-ab92-bdf050a16556	2021-05-27 16:36:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:36:05.951+03	2021-05-27 16:36:05.958+03	
bc79c81a-0038-5ce0-0456-9fc009404e88	2021-05-27 16:36:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:36:25.951+03	2021-05-27 16:36:25.957+03	
e40550a8-b06a-95b8-f40f-8604d0210cf3	2021-05-27 16:36:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:36:45.951+03	2021-05-27 16:36:45.961+03	
385057a3-5d8a-b5fd-bcc6-2de0ec788f88	2021-05-27 16:37:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:37:05.951+03	2021-05-27 16:37:05.958+03	
01850876-018b-d33f-9ccb-cbd36fd1b155	2021-05-27 16:37:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:37:35.951+03	2021-05-27 16:37:35.958+03	
c7ae1652-178b-1c1b-a03a-18489b3c6d83	2021-05-27 16:37:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:37:56.951+03	2021-05-27 16:37:56.958+03	
42e7249b-a44a-66f6-be8c-941d70598537	2021-05-27 16:38:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:38:16.951+03	2021-05-27 16:38:16.957+03	
0badc42d-e972-1147-5e5c-c09f719a038f	2021-05-27 16:38:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:38:36.951+03	2021-05-27 16:38:36.958+03	
49d54158-e350-9783-fb52-ca0d10bce665	2021-05-27 16:38:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:38:56.951+03	2021-05-27 16:38:56.959+03	
37dcbc76-d0a4-04b1-5be3-ef18845e3d56	2021-05-27 16:39:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:39:16.951+03	2021-05-27 16:39:16.957+03	
e2da59ae-13aa-b337-88fb-63ba9f0f292d	2021-05-27 16:39:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:39:36.951+03	2021-05-27 16:39:37.08+03	
15088910-e819-8fb6-2a77-c69f79570c78	2021-05-27 16:39:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:39:56.951+03	2021-05-27 16:39:56.958+03	
2e728f44-9000-1770-0831-4bfa096f5758	2021-05-27 16:40:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:40:06.951+03	2021-05-27 16:40:06.958+03	
0e8dbff6-6f2a-8887-c35d-fc59ec709021	2021-05-27 16:40:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:40:26.951+03	2021-05-27 16:40:26.959+03	
78d30a66-dc57-c49c-8e77-0a4daf6e705c	2021-05-27 16:40:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:40:46.951+03	2021-05-27 16:40:46.957+03	
8ae07919-f9db-6c4a-906d-d26b6cc86cdc	2021-05-27 16:41:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:41:06.951+03	2021-05-27 16:41:06.958+03	
81d4e35f-a19a-9706-7f6d-7c8b12bbdba1	2021-05-27 16:41:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:41:26.951+03	2021-05-27 16:41:26.958+03	
9e6079ff-ad7c-eff9-91d5-6e43d4f761ab	2021-05-27 16:41:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:41:46.951+03	2021-05-27 16:41:46.96+03	
140945b0-5a6c-f128-7995-2bc97fc95cf2	2021-05-27 16:42:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:42:06.951+03	2021-05-27 16:42:06.958+03	
fc863651-70ad-8c70-edf7-a19b98ac6726	2021-05-27 16:42:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:42:26.951+03	2021-05-27 16:42:26.959+03	
a0d76d6d-90e8-59e3-663b-cfcf1fcb83c0	2021-05-27 16:42:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:42:46.951+03	2021-05-27 16:42:46.962+03	
f0c9f994-fc26-abfc-072b-4bb4f42c183f	2021-05-27 16:43:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:43:06.951+03	2021-05-27 16:43:06.961+03	
12bf73c0-3dba-98fb-ff82-fb6eb67001bf	2021-05-27 16:43:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:43:26.951+03	2021-05-27 16:43:26.958+03	
f97292c0-883d-b5d9-bb37-511afedb57df	2021-05-27 16:43:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:43:16.951+03	2021-05-27 16:43:16.96+03	
fa53b9d5-43b6-a44e-07f0-fa72b545f990	2021-05-27 16:43:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:43:36.951+03	2021-05-27 16:43:36.958+03	
1f2e767d-81ff-455e-0fe3-ce326a4a7665	2021-05-27 16:43:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:43:56.951+03	2021-05-27 16:43:56.959+03	
6986210c-8d83-75de-dc2a-d2cb529c9467	2021-05-27 16:44:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:44:16.951+03	2021-05-27 16:44:16.961+03	
58fefbfa-2839-61f0-f77f-318b2988e590	2021-05-27 16:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:44:36.951+03	2021-05-27 16:44:36.959+03	
090641b5-f7a3-84bb-74a4-5e9167978299	2021-05-27 16:44:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:44:56.952+03	2021-05-27 16:44:56.959+03	
59fc3e24-052f-d73e-dbf7-6f5de6b32a58	2021-05-27 16:45:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:45:17.951+03	2021-05-27 16:45:17.962+03	
1759f251-4484-5867-cb45-7a04fea4c1c0	2021-05-27 16:45:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:45:37.951+03	2021-05-27 16:45:37.958+03	
72d6ea1f-f7d7-09a1-3cfc-51ccdb1f7064	2021-05-27 16:45:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:45:58.951+03	2021-05-27 16:45:58.959+03	
66124c56-fb9e-10a3-21de-0cf7374f4283	2021-05-27 16:46:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:46:18.951+03	2021-05-27 16:46:18.959+03	
01bcdc0f-690d-31a6-2fb3-9b45fa0a8ac2	2021-05-27 16:46:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:46:39.951+03	2021-05-27 16:46:39.958+03	
6fc4d2f8-6a8d-4cca-f139-417ba84cca87	2021-05-27 16:46:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:46:59.951+03	2021-05-27 16:46:59.958+03	
250a829c-a8d2-cd3a-b4b3-393dabc1e601	2021-05-27 16:47:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:47:19.952+03	2021-05-27 16:47:19.973+03	
79586d69-b775-4321-1e79-bc7f1ff1d267	2021-05-27 16:47:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:47:40.951+03	2021-05-27 16:47:40.96+03	
5a9808ad-7448-1b45-4baa-a2279aca90ee	2021-05-27 16:48:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:48:00.951+03	2021-05-27 16:48:00.959+03	
b8108b9b-40af-023e-b24d-0c32049ae9f1	2021-05-27 16:48:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:48:20.951+03	2021-05-27 16:48:20.957+03	
1a4a84b1-b911-65fd-4d2b-08fe4e7d770d	2021-05-27 16:48:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:48:40.951+03	2021-05-27 16:48:40.957+03	
40609a49-74c1-55e9-9750-33bf387674ac	2021-05-27 16:49:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:49:00.951+03	2021-05-27 16:49:00.957+03	
81d85194-88e8-d664-15e3-59b17fc3c47f	2021-05-27 16:49:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:49:20.951+03	2021-05-27 16:49:21.011+03	
80330487-f227-c1d4-2455-816fb6089643	2021-05-27 16:49:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:49:40.951+03	2021-05-27 16:49:40.959+03	
2411d141-2089-c578-c902-0f64a98eb536	2021-05-27 16:50:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:50:00.952+03	2021-05-27 16:50:00.96+03	
ed2311e4-82ba-0d45-80d0-92d14f8729db	2021-05-27 16:50:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:50:22.952+03	2021-05-27 16:50:22.961+03	
f099d406-1c63-dd7d-916f-7c0283d4b84d	2021-05-27 16:50:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:50:43.951+03	2021-05-27 16:50:43.958+03	
878f178f-47da-283e-eaf9-5326dde51e12	2021-05-27 16:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:51:03.951+03	2021-05-27 16:51:03.96+03	
76b88daa-39df-677e-5f10-21547dd6da55	2021-05-27 16:51:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:51:23.951+03	2021-05-27 16:51:23.958+03	
453114f5-e842-ff17-3e76-4c87c54742de	2021-05-27 16:51:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:51:43.951+03	2021-05-27 16:51:43.958+03	
c12f34ec-6490-a819-6f41-2911f767d518	2021-05-27 16:52:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:52:03.951+03	2021-05-27 16:52:03.959+03	
727a0966-6259-2476-4037-476b4dfa420d	2021-05-27 16:52:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:52:23.951+03	2021-05-27 16:52:23.958+03	
5944df4a-3c18-14cf-0e20-0d2295c202ce	2021-05-27 16:52:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:52:43.951+03	2021-05-27 16:52:43.963+03	
817f26d6-7624-f38a-8912-b3aba08faa74	2021-05-27 16:53:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:53:03.951+03	2021-05-27 16:53:03.959+03	
9c727f22-1a2c-bd69-55da-8d4754318768	2021-05-27 16:53:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:53:23.951+03	2021-05-27 16:53:23.961+03	
6f21c6be-ed37-92e0-eb9d-b1a972fb576c	2021-05-27 16:53:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:53:43.951+03	2021-05-27 16:53:43.958+03	
d9a8c206-54ae-4ae6-f618-932ab056f818	2021-05-27 16:54:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:54:03.951+03	2021-05-27 16:54:03.958+03	
d4ad32dc-1bd6-ff43-c206-bd9f7600c536	2021-05-27 16:54:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:54:23.951+03	2021-05-27 16:54:23.958+03	
8226329d-a71d-9ad7-7d9e-b6324a73d7ce	2021-05-27 16:54:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:54:43.951+03	2021-05-27 16:54:43.961+03	
d98fa23a-cf1e-8c69-8228-88fc60910579	2021-05-27 16:55:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:55:03.952+03	2021-05-27 16:55:03.96+03	
3ca68ec7-45af-0bc3-ab49-b8514c577184	2021-05-27 16:55:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:55:24.951+03	2021-05-27 16:55:24.966+03	
b59eedfd-f31f-b054-d169-76e776486ff0	2021-05-27 16:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:55:44.951+03	2021-05-27 16:55:44.96+03	
d6354488-5021-b0e1-2b88-f5698ef6c53b	2021-05-27 16:56:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:56:04.951+03	2021-05-27 16:56:04.959+03	
c1004062-c796-1158-10a5-d4332068484d	2021-05-27 16:56:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:56:25.951+03	2021-05-27 16:56:25.96+03	
b11bb3ae-32e9-080c-0f6b-ed126f99d051	2021-05-27 16:56:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:56:45.951+03	2021-05-27 16:56:45.958+03	
bc5d5f9a-b9d4-fc2c-c233-4def29455a62	2021-05-27 16:57:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:57:05.951+03	2021-05-27 16:57:05.974+03	
58c0c629-8bb5-e458-ecf3-cec59f23bb36	2021-05-27 16:57:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:57:25.951+03	2021-05-27 16:57:25.959+03	
c6b2be90-498b-88d5-a7b4-e02838d253c1	2021-05-27 16:57:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:57:45.951+03	2021-05-27 16:57:45.958+03	
472476cd-c7cd-7a26-ad68-c3e2f62eeecb	2021-05-27 16:58:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:58:05.951+03	2021-05-27 16:58:05.958+03	
cb01d3cc-5dec-5c0c-0cf7-f284dbec4e1d	2021-05-27 16:58:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:58:25.951+03	2021-05-27 16:58:25.958+03	
efce62d1-3664-67c2-01e2-22af7fd673d0	2021-05-27 16:58:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:58:45.952+03	2021-05-27 16:58:45.96+03	
bad081af-57fb-3a1f-e247-585e0a6dbea3	2021-05-27 16:59:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:59:06.951+03	2021-05-27 16:59:06.957+03	
a3c3d1cc-d2bd-0f89-1c80-a11e8ae9ab42	2021-05-27 16:59:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:59:26.951+03	2021-05-27 16:59:26.958+03	
e379cb0e-d7ec-24a3-97a7-1fe7d5fefec2	2021-05-27 16:59:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:59:46.951+03	2021-05-27 16:59:46.959+03	
15da7bd5-2337-7a4a-0811-9a9c6068a37e	2021-05-27 17:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 17:00:00.951+03	2021-05-27 17:00:00.958+03	ERROR
163755d8-cd1f-275b-6768-5c8c77751f25	2021-05-27 17:00:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:00:16.951+03	2021-05-27 17:00:16.958+03	
a1287d52-9138-fe08-4bc4-3ceb5e533d93	2021-05-27 17:00:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:00:36.951+03	2021-05-27 17:00:36.959+03	
2f094f58-9e79-6c79-9194-ff8f38a87772	2021-05-27 17:00:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:00:56.951+03	2021-05-27 17:00:56.957+03	
ecf79b0a-c290-c88d-3ae7-dd730b5daf4c	2021-05-27 17:01:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:01:16.951+03	2021-05-27 17:01:16.957+03	
60d9a113-70b2-9f7a-afeb-66be9ce8057d	2021-05-27 17:01:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:01:36.951+03	2021-05-27 17:01:36.957+03	
19f236c4-7822-7fcb-8196-e449a65af6e6	2021-05-27 17:01:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:01:56.951+03	2021-05-27 17:01:56.96+03	
ec2cb31b-94f7-5feb-d289-c106422c2dec	2021-05-27 17:02:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:02:16.951+03	2021-05-27 17:02:16.958+03	
c0096f0e-e677-1c76-317b-e004055a4517	2021-05-27 17:02:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:02:36.951+03	2021-05-27 17:02:36.957+03	
e0bb2f84-b72e-1d33-c232-831846e01da7	2021-05-27 17:02:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:02:56.951+03	2021-05-27 17:02:56.96+03	
508c41ca-30f5-7d9f-2a57-bdfbb09a3cb8	2021-05-27 17:03:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:03:16.951+03	2021-05-27 17:03:16.958+03	
f7229d37-2b4e-2e70-c2ab-c4e54eab59c8	2021-05-27 17:03:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:03:36.951+03	2021-05-27 17:03:36.966+03	
341a59da-7f22-a428-0658-00a6940283fb	2021-05-27 17:03:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:03:56.951+03	2021-05-27 17:03:56.958+03	
50cb869d-9a1b-836d-03a5-1450f782c439	2021-05-27 16:43:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:43:46.951+03	2021-05-27 16:43:46.959+03	
18eca865-a26c-31bb-ca1e-3cdd950d3665	2021-05-27 16:44:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:44:06.951+03	2021-05-27 16:44:06.958+03	
38bcd7f1-d4a8-7794-4ebf-bc2d85bb00a6	2021-05-27 16:44:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:44:26.951+03	2021-05-27 16:44:26.958+03	
40f0a02f-9a86-6f4a-4833-0ea3dbfdfb47	2021-05-27 16:44:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:44:46.951+03	2021-05-27 16:44:46.961+03	
1ae95862-d016-4aaa-9edd-f73a01beb9b4	2021-05-27 16:45:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:45:07.951+03	2021-05-27 16:45:07.959+03	
e493118f-e8f9-eb23-cfb4-789b63887917	2021-05-27 16:45:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:45:27.951+03	2021-05-27 16:45:27.959+03	
038f2b3a-6d15-dacc-014f-2735f62c5194	2021-05-27 16:45:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:45:47.952+03	2021-05-27 16:45:47.959+03	
0b410011-3277-8b7e-dd30-8b24377a733c	2021-05-27 16:46:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:46:08.951+03	2021-05-27 16:46:08.959+03	
f71bbc18-74d5-271e-68b5-e5c6e1fcdcbd	2021-05-27 16:46:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:46:28.952+03	2021-05-27 16:46:28.959+03	
10c7b99d-3774-cb55-c458-d07f5746c37c	2021-05-27 16:46:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:46:49.951+03	2021-05-27 16:46:49.96+03	
57be1630-a8fb-75c5-1de5-67ac231a5868	2021-05-27 16:47:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:47:09.951+03	2021-05-27 16:47:09.962+03	
d5605be4-085b-6e0d-f178-a8adb2253aa0	2021-05-27 16:47:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:47:30.951+03	2021-05-27 16:47:30.963+03	
8979d9a4-1a4e-7db8-1d7d-50ad713dcd77	2021-05-27 16:47:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:47:50.951+03	2021-05-27 16:47:50.96+03	
53c84bbe-8675-d95f-ba17-122b0ff7cafa	2021-05-27 16:48:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:48:10.951+03	2021-05-27 16:48:10.958+03	
d88a0834-234c-320d-8123-7fb0441328dd	2021-05-27 16:48:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:48:30.951+03	2021-05-27 16:48:30.959+03	
de9b2276-18fa-c3f7-f5d7-f9f8e9fcc82f	2021-05-27 16:48:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:48:50.951+03	2021-05-27 16:48:50.959+03	
0930430c-4405-975b-553a-7f8d82dd408e	2021-05-27 16:49:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:49:10.951+03	2021-05-27 16:49:10.961+03	
0bf8b8d0-251a-4dda-fbf4-bee5af7302f3	2021-05-27 16:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:49:30.951+03	2021-05-27 16:49:30.961+03	
4958e1e2-1af2-fa61-ba97-49e21ab3bee8	2021-05-27 16:49:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:49:50.951+03	2021-05-27 16:49:50.96+03	
29b02aa5-dea3-49f7-f35a-8180b474632f	2021-05-27 16:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 16:50:00.951+03	2021-05-27 16:50:00.975+03	ERROR
f2f5e1a9-e996-69af-b26b-433d50f9d7db	2021-05-27 16:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:50:11.952+03	2021-05-27 16:50:11.963+03	
9f4f6766-a591-155c-a598-450209d772e8	2021-05-27 16:50:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:50:33.951+03	2021-05-27 16:50:33.961+03	
4497fd93-37f5-e595-f015-d76a36f1ffd1	2021-05-27 16:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:50:53.951+03	2021-05-27 16:50:53.957+03	
e5815cb3-44b3-8a8a-6bef-98d225cde78d	2021-05-27 16:51:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:51:13.951+03	2021-05-27 16:51:13.959+03	
79d95b1f-27bd-cd0d-3eac-8a6d583accad	2021-05-27 16:51:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:51:33.951+03	2021-05-27 16:51:33.958+03	
c0c4805a-dcca-276f-37ab-c52802fe7bc1	2021-05-27 16:51:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:51:53.951+03	2021-05-27 16:51:53.958+03	
6ec97cf9-9ed8-6d8f-d269-669148e8278f	2021-05-27 16:52:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:52:13.951+03	2021-05-27 16:52:13.959+03	
c13d9b4b-a460-d1cf-4c91-59da113720d9	2021-05-27 16:52:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:52:33.951+03	2021-05-27 16:52:33.962+03	
efd6348a-74a7-860a-f139-ae8770c06e93	2021-05-27 16:52:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:52:53.951+03	2021-05-27 16:52:53.958+03	
a7565493-d347-6cba-fc19-9cfc081583bb	2021-05-27 16:53:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:53:13.951+03	2021-05-27 16:53:13.959+03	
2a30ab46-a9c5-a4f9-4512-103fc4d9e811	2021-05-27 16:53:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:53:33.951+03	2021-05-27 16:53:33.96+03	
0a0c6cf6-2e2b-00d4-7e6a-5d12eb34611f	2021-05-27 16:53:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:53:53.951+03	2021-05-27 16:53:53.958+03	
3b935d87-e4bc-d1db-54b8-9acafb18aac4	2021-05-27 16:54:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:54:13.951+03	2021-05-27 16:54:13.957+03	
b51fc26c-3d5d-64db-6ff2-92edbeae92de	2021-05-27 16:54:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:54:33.951+03	2021-05-27 16:54:33.959+03	
abe3fedb-f852-5845-2bc3-3dedc43e5315	2021-05-27 16:54:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:54:53.951+03	2021-05-27 16:54:53.96+03	
bdf5d781-cada-586e-7a1c-c0c25726501e	2021-05-27 16:55:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:55:13.952+03	2021-05-27 16:55:13.961+03	
25256175-246d-c62f-d15d-5abba97668a2	2021-05-27 16:55:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:55:34.951+03	2021-05-27 16:55:34.961+03	
5a62ac5b-b7f1-c5ac-05ff-8679b0998721	2021-05-27 16:55:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:55:54.951+03	2021-05-27 16:55:54.959+03	
5db09ea1-2e35-fa71-bd14-d69ed3a07b13	2021-05-27 16:56:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:56:14.952+03	2021-05-27 16:56:14.963+03	
60a472d5-7c30-47a6-4697-505716c45755	2021-05-27 16:56:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:56:35.951+03	2021-05-27 16:56:35.963+03	
1a5e3ce7-868c-175f-6d9e-52fd42d87514	2021-05-27 16:56:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:56:55.951+03	2021-05-27 16:56:55.959+03	
7762e0fc-ca15-d5d1-13c9-1888b6eddef1	2021-05-27 16:57:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:57:15.951+03	2021-05-27 16:57:15.96+03	
57da3aba-6d93-4004-e637-8d40ece990d0	2021-05-27 16:57:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:57:35.951+03	2021-05-27 16:57:35.96+03	
3e82dbee-c608-a14f-d666-fd69a2d4dce2	2021-05-27 16:57:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:57:55.951+03	2021-05-27 16:57:55.958+03	
69a7e686-2442-4fe5-fc8c-91e575bbcca3	2021-05-27 16:58:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:58:15.951+03	2021-05-27 16:58:15.958+03	
f94dba2c-ad2c-eafc-7728-2e8a5a3dc31f	2021-05-27 16:58:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:58:35.951+03	2021-05-27 16:58:35.958+03	
864a4e43-31a7-af82-173d-7322511cb4c5	2021-05-27 16:58:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:58:56.951+03	2021-05-27 16:58:56.958+03	
e9cd20e2-3e08-9853-a049-638b6172461f	2021-05-27 16:59:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:59:16.951+03	2021-05-27 16:59:16.958+03	
91f001d1-1fec-2d39-5dd1-e4bf227e98fb	2021-05-27 16:59:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:59:36.951+03	2021-05-27 16:59:36.959+03	
aa94f78e-b829-20bd-6d4c-4e8242ced180	2021-05-27 16:59:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 16:59:56.951+03	2021-05-27 16:59:56.959+03	
dbb843b8-40f3-d9bd-b3f1-224b2a422e5f	2021-05-27 17:00:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:00:06.951+03	2021-05-27 17:00:06.957+03	
03ef5d82-6f67-6cdd-015e-8232c8191aa9	2021-05-27 17:00:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:00:26.951+03	2021-05-27 17:00:26.958+03	
e405dff9-70e2-5906-93ca-607e0dc149ce	2021-05-27 17:00:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:00:46.951+03	2021-05-27 17:00:46.959+03	
e4f85c5a-9db5-8853-429a-ad67b03b047c	2021-05-27 17:01:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:01:06.951+03	2021-05-27 17:01:06.959+03	
6af0c8c9-d02e-ae94-2be2-fbf3ea2dc37f	2021-05-27 17:01:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:01:26.951+03	2021-05-27 17:01:26.958+03	
1245823d-9320-dad0-b3c1-fa472050520d	2021-05-27 17:01:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:01:46.951+03	2021-05-27 17:01:46.959+03	
609dec41-8ef5-e35a-2f0c-2126bd974be6	2021-05-27 17:02:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:02:06.951+03	2021-05-27 17:02:06.957+03	
63f75e2e-80bb-5d1d-45e2-3bfe84e406ce	2021-05-27 17:02:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:02:26.951+03	2021-05-27 17:02:26.96+03	
d56ccbce-7803-dd93-415b-355f2a5348ee	2021-05-27 17:02:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:02:46.951+03	2021-05-27 17:02:47.003+03	
901bef80-5c8c-3b42-936d-d7b945dd73ab	2021-05-27 17:03:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:03:06.951+03	2021-05-27 17:03:06.96+03	
eeeada5c-f6bd-5722-3fb4-b68c474c913f	2021-05-27 17:03:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:03:26.951+03	2021-05-27 17:03:26.958+03	
2a71569b-0ea0-fe4d-5f9a-2055e209b7dd	2021-05-27 17:03:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:03:46.951+03	2021-05-27 17:03:46.96+03	
9bcc2ee4-0808-94c5-5dda-e0e1018e6a93	2021-05-27 17:04:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:04:06.951+03	2021-05-27 17:04:06.958+03	
135c9d96-1cd0-c3aa-1052-ef19782694e3	2021-05-27 17:04:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:04:16.951+03	2021-05-27 17:04:16.957+03	
2d6dabb3-3133-be6c-7f8e-b428e57e1976	2021-05-27 17:04:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:04:36.951+03	2021-05-27 17:04:36.959+03	
a4b8199a-a536-f26a-1571-5f1b97573e26	2021-05-27 17:04:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:04:56.951+03	2021-05-27 17:04:56.961+03	
8f3bdbb0-a6d4-e2b7-631e-6dc5a02561b4	2021-05-27 17:05:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:05:26.951+03	2021-05-27 17:05:26.96+03	
d92c556e-8c07-80d8-4ba8-a1e8210cd4d9	2021-05-27 17:05:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:05:46.951+03	2021-05-27 17:05:46.959+03	
6b23a253-c77a-6b25-2143-83fb347d78af	2021-05-27 17:06:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:06:06.951+03	2021-05-27 17:06:06.96+03	
25de3879-1aca-d1d4-3b6b-602dfded4ba0	2021-05-27 17:06:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:06:27.951+03	2021-05-27 17:06:27.958+03	
7b152c04-3d57-4573-0ccd-e712294ffd06	2021-05-27 17:06:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:06:47.952+03	2021-05-27 17:06:47.96+03	
d6ff0674-0c45-7de5-5b59-80f6ee79d7c7	2021-05-27 17:07:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:07:08.951+03	2021-05-27 17:07:08.958+03	
ae24ed2d-6811-d9a8-c3fc-2d55e32566f8	2021-05-27 17:07:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:07:28.951+03	2021-05-27 17:07:28.957+03	
01a9d89b-40b2-4d6c-bc2c-6468a6f2209d	2021-05-27 17:07:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:07:48.951+03	2021-05-27 17:07:48.959+03	
39b76fd3-6c90-0d7c-c460-93a4b1a07583	2021-05-27 17:08:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:08:08.951+03	2021-05-27 17:08:08.958+03	
a7ca57b3-4be5-fe6f-52fd-f414d871b592	2021-05-27 17:08:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:08:28.951+03	2021-05-27 17:08:28.96+03	
1d8bef70-4b83-4654-8eda-c57529abbb23	2021-05-27 17:08:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:08:48.951+03	2021-05-27 17:08:48.961+03	
3615145f-5e13-13d3-32b1-98634087ee72	2021-05-27 17:09:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:09:08.951+03	2021-05-27 17:09:08.958+03	
596c55e8-51bb-347b-1d8a-5673f398177a	2021-05-27 17:09:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:09:28.951+03	2021-05-27 17:09:28.957+03	
d132298b-7eef-395e-62d7-ac620e8b41aa	2021-05-27 17:09:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:09:48.951+03	2021-05-27 17:09:48.97+03	
fc3b760c-259d-3352-3db1-16b0d21b6e93	2021-05-27 17:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 17:10:00.951+03	2021-05-27 17:10:00.956+03	ERROR
8ac714b9-d0b1-60a9-2097-4ce5fa32fb74	2021-05-27 17:10:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:10:19.951+03	2021-05-27 17:10:19.958+03	
586c232c-cc00-cedc-ab59-196eaa107c45	2021-05-27 17:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:10:40.952+03	2021-05-27 17:10:40.959+03	
02587eb4-6f9d-450f-ff5f-c73ccef341de	2021-05-27 17:11:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:11:01.951+03	2021-05-27 17:11:01.96+03	
677fa842-0bd9-00d4-3bb1-fc34a5296172	2021-05-27 17:11:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:11:21.951+03	2021-05-27 17:11:21.959+03	
39587720-f869-1024-f821-23ffb847093f	2021-05-27 17:11:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:11:41.951+03	2021-05-27 17:11:41.958+03	
bd4f29fe-a4f7-cbe8-10a6-bf2f70c3f9e1	2021-05-27 17:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:12:01.951+03	2021-05-27 17:12:01.958+03	
9764d076-dcdf-9e3f-904e-d9220e972e05	2021-05-27 17:12:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:12:21.952+03	2021-05-27 17:12:21.96+03	
8c4fdabc-792c-f846-f286-d84878b39c41	2021-05-27 17:12:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:12:42.951+03	2021-05-27 17:12:42.959+03	
262cd0af-ac65-a810-432d-57962439a7ce	2021-05-27 17:13:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:13:03.951+03	2021-05-27 17:13:03.959+03	
fae5aed4-dc17-84c4-e1fc-689ad413ebdb	2021-05-27 17:13:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:13:23.951+03	2021-05-27 17:13:23.958+03	
396a14f4-3944-be31-4de0-2c18d4a096a6	2021-05-27 17:13:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:13:43.951+03	2021-05-27 17:13:43.96+03	
54220be8-e620-875e-947b-b8ff8d5a3888	2021-05-27 17:14:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:14:03.951+03	2021-05-27 17:14:03.96+03	
a5c11b6d-ef4b-fb79-50e1-70ce17d2c92a	2021-05-27 17:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:14:23.951+03	2021-05-27 17:14:23.961+03	
f0464969-5a97-5588-0225-cb78e2869299	2021-05-27 17:14:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:14:43.951+03	2021-05-27 17:14:43.958+03	
7a1aac19-5cae-97b1-c663-db259b8db555	2021-05-27 17:15:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:15:03.951+03	2021-05-27 17:15:03.96+03	
e7f18886-b49f-0fd3-d32c-519f9c7fe8e1	2021-05-27 17:15:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:15:23.951+03	2021-05-27 17:15:23.957+03	
cf7cfffa-3340-9288-a6bb-7e7e6decc7db	2021-05-27 17:15:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:15:43.952+03	2021-05-27 17:15:43.958+03	
9eedeec0-337b-78d6-4322-f7a4a2456d73	2021-05-27 17:16:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:16:04.951+03	2021-05-27 17:16:04.964+03	
53883061-eceb-a11b-6b02-9249e17f5b3a	2021-05-27 17:16:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:16:24.951+03	2021-05-27 17:16:24.959+03	
062c46d5-2e82-da49-33e6-feffde26ae5a	2021-05-27 17:16:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:16:44.951+03	2021-05-27 17:16:44.958+03	
6fcbaaf5-34a4-19a9-b8ce-2e9ef28fcbde	2021-05-27 17:17:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:17:04.951+03	2021-05-27 17:17:04.958+03	
d2bf13ab-d47a-3a03-8dd2-e94166e8e92b	2021-05-27 17:17:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:17:24.951+03	2021-05-27 17:17:24.958+03	
795d5190-d6b0-6b5f-eb57-3052284eb00d	2021-05-27 17:17:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:17:44.951+03	2021-05-27 17:17:44.959+03	
ab821c7a-a73b-3fae-670d-b29e76b2a7f9	2021-05-27 17:18:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:18:04.951+03	2021-05-27 17:18:04.959+03	
54ee3946-a421-bc3f-0a7a-df8b91dfcdb3	2021-05-27 17:18:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:18:24.951+03	2021-05-27 17:18:24.958+03	
f3d0ef0f-662f-cde1-46fd-5efe21a66649	2021-05-27 17:18:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:18:44.951+03	2021-05-27 17:18:44.96+03	
d1af21f4-009c-39a2-6cfe-33b303d8552a	2021-05-27 17:19:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:19:04.951+03	2021-05-27 17:19:04.958+03	
66683b5d-5c4f-fb69-0588-9c10a8804761	2021-05-27 17:19:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:19:24.951+03	2021-05-27 17:19:24.959+03	
ed3c38bf-204b-4dc7-faa3-2af3a1d512f0	2021-05-27 17:19:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:19:44.951+03	2021-05-27 17:19:44.958+03	
5d51d6a0-110d-a52e-eda7-640621d89675	2021-05-27 17:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 17:20:00.951+03	2021-05-27 17:20:00.96+03	ERROR
38848340-07f3-753b-f7ea-44f6b7c34708	2021-05-27 17:20:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:20:14.951+03	2021-05-27 17:20:14.958+03	
17f0b9b7-eb47-504a-7516-bc068d881c75	2021-05-27 17:20:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:20:34.951+03	2021-05-27 17:20:34.958+03	
74f72f18-ecfe-3462-92a9-9ade988086e3	2021-05-27 17:20:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:20:54.951+03	2021-05-27 17:20:54.968+03	
b83590ce-be55-0093-d91a-7654c3292dbb	2021-05-27 17:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:21:15.951+03	2021-05-27 17:21:15.96+03	
57750d1e-46d0-953a-e8ec-7db921f17068	2021-05-27 17:21:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:21:35.951+03	2021-05-27 17:21:35.96+03	
b8b8f152-6a69-70fa-7840-16b3ab049b6f	2021-05-27 17:21:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:21:56.951+03	2021-05-27 17:21:56.958+03	
31028370-b571-7b08-b39f-40679782980a	2021-05-27 17:22:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:22:16.951+03	2021-05-27 17:22:16.959+03	
5c551187-36f4-38b5-c54c-1ad19782c20f	2021-05-27 17:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:22:36.951+03	2021-05-27 17:22:36.96+03	
49b8e79c-0e01-899c-162b-04f3cf3cdbd3	2021-05-27 17:22:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:22:56.951+03	2021-05-27 17:22:56.959+03	
6f1adc33-7662-4c96-7a2f-97514e4bc79a	2021-05-27 17:23:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:23:16.951+03	2021-05-27 17:23:16.959+03	
ff38daa4-2c35-da97-0125-25d1f582589e	2021-05-27 17:23:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:23:36.951+03	2021-05-27 17:23:36.959+03	
4fc0494a-cb9f-f25f-22fe-673c5cbfd355	2021-05-27 17:23:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:23:56.951+03	2021-05-27 17:23:56.959+03	
3fdff8ca-0e51-d092-9af8-69b5bceb0020	2021-05-27 17:24:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:24:16.951+03	2021-05-27 17:24:16.959+03	
852d3c86-9f75-1e47-e4da-03d4a13442bf	2021-05-27 17:24:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:24:36.951+03	2021-05-27 17:24:36.958+03	
9bcdb454-3b60-a4b0-b81c-f69e2831aeb2	2021-05-27 17:24:57.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:24:57.951+03	2021-05-27 17:24:57.958+03	
bedbe4fc-1435-8b02-3fe3-9e072830c1dc	2021-05-27 17:04:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:04:26.951+03	2021-05-27 17:04:26.96+03	
4237507d-4206-c693-3d0e-67d969562b4d	2021-05-27 17:04:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:04:46.951+03	2021-05-27 17:04:46.959+03	
fab25b4c-4620-a682-9783-617d3772c616	2021-05-27 17:05:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:05:06.951+03	2021-05-27 17:05:06.958+03	
0e87ac1f-bfb1-c969-d673-c9aceb60c249	2021-05-27 17:05:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:05:16.951+03	2021-05-27 17:05:16.958+03	
e5239479-91d3-3d64-7e11-84ef905df5f8	2021-05-27 17:05:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:05:36.951+03	2021-05-27 17:05:36.958+03	
b8c751a9-3707-fb55-37bd-aa0b7d7f868d	2021-05-27 17:05:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:05:56.951+03	2021-05-27 17:05:56.964+03	
4d68f9ec-cd22-5080-a805-608e7dc49d34	2021-05-27 17:06:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:06:16.952+03	2021-05-27 17:06:16.959+03	
ccd78aa5-cb9b-6076-dc3d-fbdc4d940ebb	2021-05-27 17:06:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:06:37.951+03	2021-05-27 17:06:37.959+03	
b651220a-f851-6243-a77f-dd21d13d8923	2021-05-27 17:06:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:06:58.951+03	2021-05-27 17:06:58.957+03	
3c628fe3-dd51-1e53-1d8e-e446e52046a1	2021-05-27 17:07:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:07:18.951+03	2021-05-27 17:07:18.958+03	
6069d738-e431-eaac-51cb-ece0dde9e643	2021-05-27 17:07:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:07:38.951+03	2021-05-27 17:07:38.957+03	
84c53df6-0eef-4cc9-1cb2-b80c6c55731b	2021-05-27 17:07:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:07:58.951+03	2021-05-27 17:07:58.958+03	
718aa9e5-e13b-5378-8c1d-62ba59ed436c	2021-05-27 17:08:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:08:18.951+03	2021-05-27 17:08:18.957+03	
ffc23ede-0244-3bff-d472-76724c85bca8	2021-05-27 17:08:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:08:38.951+03	2021-05-27 17:08:38.958+03	
feecb7a0-cf8f-7755-17c5-3a826c528ffb	2021-05-27 17:08:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:08:58.951+03	2021-05-27 17:08:58.959+03	
ddeffe6c-b500-2044-132e-a0a5397c384a	2021-05-27 17:09:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:09:18.951+03	2021-05-27 17:09:18.959+03	
d89210eb-197d-0c4d-a331-714da95028e5	2021-05-27 17:09:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:09:38.951+03	2021-05-27 17:09:38.958+03	
3ca695b1-cbcf-82d9-4ec2-809a8b6d037a	2021-05-27 17:09:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:09:58.952+03	2021-05-27 17:09:58.961+03	
63135a5c-aa57-2f2b-3541-974f236ffc49	2021-05-27 17:10:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:10:08.952+03	2021-05-27 17:10:08.959+03	
a345b47d-2a77-bd59-ccbe-9c49b2db65ff	2021-05-27 17:10:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:10:29.952+03	2021-05-27 17:10:29.961+03	
837061aa-af73-4af1-0607-f76837831a85	2021-05-27 17:10:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:10:51.951+03	2021-05-27 17:10:51.96+03	
3ec231d2-17e6-7e8c-8d46-4f6a8facdd59	2021-05-27 17:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:11:11.951+03	2021-05-27 17:11:11.96+03	
88fe1e5f-fe0b-a25c-84d3-ed9d7862b246	2021-05-27 17:11:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:11:31.951+03	2021-05-27 17:11:31.957+03	
022a4aff-0c3c-11d5-c468-69e9d2b1feb0	2021-05-27 17:11:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:11:51.951+03	2021-05-27 17:11:51.958+03	
a8ab24f0-38ce-a09f-2e1b-d6406b0d1929	2021-05-27 17:12:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:12:11.951+03	2021-05-27 17:12:11.958+03	
c386533b-faae-300a-a206-4d93d0e3a9e5	2021-05-27 17:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:12:31.952+03	2021-05-27 17:12:31.959+03	
0ce3da16-d820-139f-cf76-c72c846326aa	2021-05-27 17:12:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:12:52.952+03	2021-05-27 17:12:52.959+03	
549e9c63-1117-57fa-d9b6-438a7b58a704	2021-05-27 17:13:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:13:13.951+03	2021-05-27 17:13:13.958+03	
66f0e58a-5998-3ab6-0db6-2e9ed64eafc7	2021-05-27 17:13:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:13:33.951+03	2021-05-27 17:13:33.961+03	
fe7fe038-7880-333e-9617-bf74a9126493	2021-05-27 17:13:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:13:53.951+03	2021-05-27 17:13:53.958+03	
027cf474-4127-59f2-a891-56ed2d4218d7	2021-05-27 17:14:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:14:13.951+03	2021-05-27 17:14:13.958+03	
94146412-0d83-7efb-d8ce-a374f63b49a6	2021-05-27 17:14:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:14:33.951+03	2021-05-27 17:14:33.959+03	
1c1da9d4-cfc0-a477-d869-966497f688c5	2021-05-27 17:14:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:14:53.951+03	2021-05-27 17:14:53.959+03	
4d38bf6d-7e02-bb02-f5e7-c070cdb43d64	2021-05-27 17:15:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:15:13.951+03	2021-05-27 17:15:13.96+03	
f7265ec6-7315-54ee-c79c-18d4973f2972	2021-05-27 17:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:15:33.951+03	2021-05-27 17:15:33.959+03	
41219185-38e7-00ae-47f7-fb6d482d39e9	2021-05-27 17:15:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:15:54.951+03	2021-05-27 17:15:54.957+03	
016f5de7-a1f2-3028-4ab5-4826aa203d9a	2021-05-27 17:16:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:16:14.951+03	2021-05-27 17:16:14.958+03	
abeb275d-064d-4101-1626-3ac4c80fa1a7	2021-05-27 17:16:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:16:34.951+03	2021-05-27 17:16:34.957+03	
fe211e6e-51fb-f44b-11c8-0f60e00b02d1	2021-05-27 17:16:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:16:54.951+03	2021-05-27 17:16:54.958+03	
5fd7a61f-3636-1bda-924d-2d58ce065fb9	2021-05-27 17:17:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:17:14.951+03	2021-05-27 17:17:14.958+03	
5632cea1-1c45-3637-3bea-f17ce62186d8	2021-05-27 17:17:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:17:34.951+03	2021-05-27 17:17:34.958+03	
9c6bde5a-8ac8-ccaf-cc5f-16cdbd33bba6	2021-05-27 17:17:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:17:54.951+03	2021-05-27 17:17:54.959+03	
15e8544a-6adf-0f51-f15c-52403a67a062	2021-05-27 17:18:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:18:14.951+03	2021-05-27 17:18:14.957+03	
b6f92b6f-6efa-107b-d2e4-921173e594be	2021-05-27 17:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:18:34.951+03	2021-05-27 17:18:34.958+03	
6208e820-65c8-946a-d97f-524a45936cf4	2021-05-27 17:18:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:18:54.951+03	2021-05-27 17:18:54.963+03	
14b93fd0-df11-ae6f-2bc7-aa3ce103e6f9	2021-05-27 17:19:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:19:14.951+03	2021-05-27 17:19:14.958+03	
6b679740-d4fc-9d2d-9c81-39d479601601	2021-05-27 17:19:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:19:34.951+03	2021-05-27 17:19:34.96+03	
1a274b52-21ef-d77a-3512-2dd220b81bd7	2021-05-27 17:19:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:19:54.951+03	2021-05-27 17:19:54.964+03	
69603aa1-efce-113c-dc47-ac17c825ad15	2021-05-27 17:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:20:04.951+03	2021-05-27 17:20:04.959+03	
a328faa8-2a8a-e732-909c-990531b437b6	2021-05-27 17:20:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:20:24.951+03	2021-05-27 17:20:24.957+03	
79d03fcc-309c-e721-f72d-fccf1462d5aa	2021-05-27 17:20:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:20:44.951+03	2021-05-27 17:20:44.96+03	
ae5d8195-12db-0fc7-cc4f-035dcf431266	2021-05-27 17:21:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:21:04.952+03	2021-05-27 17:21:04.96+03	
b7242399-fbc4-2ff6-f7bf-d2d65a6defb7	2021-05-27 17:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:21:25.951+03	2021-05-27 17:21:25.959+03	
7175ecca-7331-ab44-9e90-beed80fbcdda	2021-05-27 17:21:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:21:45.952+03	2021-05-27 17:21:45.959+03	
2416daf6-ef8b-aa0e-3302-f57d0268a644	2021-05-27 17:22:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:22:06.951+03	2021-05-27 17:22:06.959+03	
1b75b01d-7855-bed8-953e-a41daad5f2a4	2021-05-27 17:22:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:22:26.951+03	2021-05-27 17:22:26.958+03	
35944cfe-7ff0-c6a0-ede6-ac835c86cdcc	2021-05-27 17:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:22:46.951+03	2021-05-27 17:22:46.959+03	
33c8a192-0a94-7c5f-eddd-3a3ff2aa18b3	2021-05-27 17:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:23:06.951+03	2021-05-27 17:23:06.958+03	
68a86dfe-2562-9f36-7d88-4f1dbf8a175d	2021-05-27 17:23:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:23:26.951+03	2021-05-27 17:23:26.959+03	
20800b3f-816c-e88f-5084-3742e04d40a2	2021-05-27 17:23:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:23:46.951+03	2021-05-27 17:23:46.959+03	
5f253e08-0b65-bd0b-32cc-2229b7225786	2021-05-27 17:24:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:24:06.951+03	2021-05-27 17:24:06.958+03	
8a24d8e3-e8fb-6223-9d10-328ca511620b	2021-05-27 17:24:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:24:26.951+03	2021-05-27 17:24:26.958+03	
0d331bc7-40ec-b207-2456-0043e76278f0	2021-05-27 17:24:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:24:46.952+03	2021-05-27 17:24:46.958+03	
58edd46f-cb8d-8b09-e38d-d78fd9028e48	2021-05-27 17:25:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:25:07.952+03	2021-05-27 17:25:07.959+03	
4737d0d7-ee67-79ea-5638-a794dad02ea2	2021-05-27 17:25:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:25:28.951+03	2021-05-27 17:25:28.958+03	
4e0bba08-07ce-a998-7091-ecaeb8cea637	2021-05-27 17:25:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:25:48.951+03	2021-05-27 17:25:48.958+03	
3311af5d-7887-c379-94c6-5a20c2894af1	2021-05-27 17:26:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:26:08.951+03	2021-05-27 17:26:08.958+03	
6497573b-5546-dcf4-93a6-8f6d8bef90a3	2021-05-27 17:26:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:26:28.951+03	2021-05-27 17:26:28.958+03	
63602301-ef57-c595-f20f-f284945014a9	2021-05-27 17:26:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:26:48.951+03	2021-05-27 17:26:48.958+03	
43d481dd-aa57-c115-aad7-21114da6a77a	2021-05-27 17:27:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:27:09.951+03	2021-05-27 17:27:10.006+03	
a0106e50-9355-f095-5845-1f7d93a1f4ab	2021-05-27 17:27:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:27:29.951+03	2021-05-27 17:27:29.959+03	
c4431512-b0aa-582a-76cf-4b1006386c8b	2021-05-27 17:27:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:27:49.951+03	2021-05-27 17:27:49.958+03	
7dd51965-b626-5968-643d-1348d933aca4	2021-05-27 17:28:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:28:09.951+03	2021-05-27 17:28:09.958+03	
8e6e867a-0a30-b96f-7e08-1707deb7ba40	2021-05-27 17:28:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:28:29.951+03	2021-05-27 17:28:29.957+03	
f96b72b2-b2ee-76b2-bfe7-f7a213bb2f28	2021-05-27 17:28:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:28:49.951+03	2021-05-27 17:28:49.958+03	
4a3d2298-28fd-6d96-52a4-97470d301b8f	2021-05-27 17:29:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:29:09.951+03	2021-05-27 17:29:09.958+03	
f92a8955-fbef-1160-9a67-5caa0b6b44ca	2021-05-27 17:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:29:29.951+03	2021-05-27 17:29:29.958+03	
5ef7719d-fd29-e9d8-60a8-550cae8eb49a	2021-05-27 17:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:29:49.951+03	2021-05-27 17:29:49.96+03	
832d5abd-cce0-c9e6-89cb-c26bea848217	2021-05-27 17:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 17:30:00.951+03	2021-05-27 17:30:00.956+03	ERROR
0cb8b2e3-991f-dd1d-a1e1-9ffc9cf362e5	2021-05-27 17:30:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:30:19.951+03	2021-05-27 17:30:19.957+03	
0f96f2cc-5bbc-0942-2503-2840676bbbbd	2021-05-27 17:30:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:30:39.951+03	2021-05-27 17:30:39.957+03	
e76d1b33-4ca7-37db-043a-b2a48e92fad5	2021-05-27 17:30:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:30:59.951+03	2021-05-27 17:30:59.976+03	
e3fabc6e-af1e-ef26-ac1b-548d00d20538	2021-05-27 17:31:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:31:19.951+03	2021-05-27 17:31:19.958+03	
89aa2f6a-e16a-8bb4-0d20-6ac4e59df918	2021-05-27 17:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:31:39.951+03	2021-05-27 17:31:39.958+03	
d84265ca-5622-6ce6-c1a8-fc45deda82c3	2021-05-27 17:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:31:59.951+03	2021-05-27 17:31:59.958+03	
a80a151e-1771-273d-eb8e-27f5d4efe61a	2021-05-27 17:32:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:32:19.951+03	2021-05-27 17:32:19.957+03	
76108659-f52f-2b64-a5f0-a79fd14e9db4	2021-05-27 17:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:32:39.951+03	2021-05-27 17:32:39.958+03	
e114f1cc-bd2d-bd6e-02f3-4274d9a5e353	2021-05-27 17:32:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:32:59.951+03	2021-05-27 17:32:59.957+03	
d728dda3-16e4-0a00-5db4-1aa8bac7c3f2	2021-05-27 17:33:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:33:19.951+03	2021-05-27 17:33:19.958+03	
70cb028c-68d2-3a85-27ac-6ab3216c7f90	2021-05-27 17:33:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:33:40.951+03	2021-05-27 17:33:40.957+03	
d09576ec-af61-c484-7f6c-2e16973f286a	2021-05-27 17:34:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:34:00.951+03	2021-05-27 17:34:00.958+03	
db7b95d3-f30f-0e20-b403-e2848fc58470	2021-05-27 17:34:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:34:20.951+03	2021-05-27 17:34:20.958+03	
3fb108ea-6c35-d60f-65b8-4ed65463404a	2021-05-27 17:34:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:34:40.951+03	2021-05-27 17:34:40.959+03	
1f90a2f6-7571-8787-db34-ced03a6bc40f	2021-05-27 17:35:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:35:00.951+03	2021-05-27 17:35:00.959+03	
47bb5c93-a486-14e6-bdbb-12defa5e65fe	2021-05-27 17:35:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:35:20.951+03	2021-05-27 17:35:20.958+03	
d5007e1f-4be2-b1d7-4a99-091a685e38ae	2021-05-27 17:35:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:35:40.951+03	2021-05-27 17:35:40.959+03	
c488c860-a2d9-5ae4-b9e7-73bc290072c3	2021-05-27 17:36:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:36:00.951+03	2021-05-27 17:36:00.958+03	
d12fc550-98c6-16a6-124e-a1a1520a9ced	2021-05-27 17:36:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:36:20.951+03	2021-05-27 17:36:20.958+03	
efde6d67-6893-d2bc-9567-ab8497a8e030	2021-05-27 17:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:36:40.951+03	2021-05-27 17:36:40.96+03	
f4cf90b9-e639-548f-fbe5-1ea6ba0f1e9f	2021-05-27 17:37:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:37:00.951+03	2021-05-27 17:37:00.96+03	
f5cf37d4-56f5-cedd-70aa-084d0a6ad91b	2021-05-27 17:37:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:37:20.951+03	2021-05-27 17:37:20.957+03	
37d26d45-e33f-9e4f-c55f-53687901933e	2021-05-27 17:37:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:37:40.951+03	2021-05-27 17:37:40.958+03	
bd9ae308-8ac4-4070-76b6-44a2dfb12ab0	2021-05-27 17:38:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:38:00.951+03	2021-05-27 17:38:00.958+03	
994fd30c-9c98-2c2f-6005-6f30cb18906d	2021-05-27 17:38:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:38:20.951+03	2021-05-27 17:38:20.958+03	
e47ffb79-fb7b-f2f0-528e-f2237500657a	2021-05-27 17:38:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:38:40.951+03	2021-05-27 17:38:40.958+03	
3f4e3aa0-3317-686d-a699-925dffa9b009	2021-05-27 17:39:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:39:00.951+03	2021-05-27 17:39:00.959+03	
1bf49a67-e835-18c1-2a22-bf13e6e1a79a	2021-05-27 17:39:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:39:20.951+03	2021-05-27 17:39:20.959+03	
03818e24-a7de-ccfa-88c8-9123cfa8c75f	2021-05-27 17:39:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:39:40.951+03	2021-05-27 17:39:40.958+03	
ff6c4009-b202-f4aa-59a2-c9af3048a6ba	2021-05-27 17:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 17:40:00.951+03	2021-05-27 17:40:01.001+03	ERROR
93a23b93-cd56-570e-cf7d-cb460f5c7027	2021-05-27 17:40:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:40:21.951+03	2021-05-27 17:40:21.958+03	
9ad7f227-0e41-bc99-686a-58bce6db3014	2021-05-27 17:40:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:40:41.951+03	2021-05-27 17:40:41.958+03	
96de6cb0-58ec-9ea5-a83a-d0af50459555	2021-05-27 17:41:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:41:02.951+03	2021-05-27 17:41:02.959+03	
fb10194c-e851-38d6-02c9-62f49fe14f52	2021-05-27 17:41:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:41:22.951+03	2021-05-27 17:41:22.958+03	
79bda47b-6490-068e-b5b3-1d7d8ecb0621	2021-05-27 17:41:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:41:43.951+03	2021-05-27 17:41:43.957+03	
377fe6cf-6a2e-17de-c8fe-8fbe0f0cb3d7	2021-05-27 17:42:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:42:03.951+03	2021-05-27 17:42:03.958+03	
d5c1b835-4aad-05e9-092b-88183c60b1fb	2021-05-27 17:42:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:42:23.951+03	2021-05-27 17:42:23.958+03	
42a6a0ed-4264-f223-81c1-b29c08d194b1	2021-05-27 17:42:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:42:43.951+03	2021-05-27 17:42:43.957+03	
26a45ecf-d7d6-91e7-0934-1ca472c380c0	2021-05-27 17:43:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:43:03.951+03	2021-05-27 17:43:03.958+03	
c9e8193b-1dd1-5413-178b-75c3182400e2	2021-05-27 17:43:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:43:23.951+03	2021-05-27 17:43:23.958+03	
4c299afc-f618-4341-b547-1c08dea7d4f6	2021-05-27 17:43:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:43:43.951+03	2021-05-27 17:43:43.957+03	
adca8c4c-ef57-31d8-915a-cdb1597722bd	2021-05-27 17:44:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:44:03.951+03	2021-05-27 17:44:03.958+03	
0037e40f-9067-f5b0-42d6-e4c6820ac47d	2021-05-27 17:44:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:44:23.951+03	2021-05-27 17:44:23.958+03	
cf334865-769e-1798-1f75-798bd2a8b2cc	2021-05-27 17:44:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:44:43.951+03	2021-05-27 17:44:43.958+03	
2ceee638-4355-36f8-e81b-5fb8367a7094	2021-05-27 17:45:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:45:03.951+03	2021-05-27 17:45:03.959+03	
87ee43b1-4d25-99e2-f106-959dbbfb5bc1	2021-05-27 17:45:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:45:23.951+03	2021-05-27 17:45:23.958+03	
de7ad9ed-3673-17d3-0a1d-8e3741bc91dd	2021-05-27 17:45:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:45:43.951+03	2021-05-27 17:45:43.958+03	
a25cddfd-025d-6d8d-67b5-71707d79eae0	2021-05-27 17:25:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:25:18.951+03	2021-05-27 17:25:18.959+03	
3f2571b9-8092-78cc-330e-5762db17f227	2021-05-27 17:25:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:25:38.951+03	2021-05-27 17:25:38.958+03	
f735bbf0-bfd3-7049-15f9-e71cacb6ce05	2021-05-27 17:25:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:25:58.951+03	2021-05-27 17:25:58.958+03	
4e1f332c-75fc-20d5-263a-abc5e3a12879	2021-05-27 17:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:26:18.951+03	2021-05-27 17:26:18.958+03	
9c3772e5-1af8-356d-c776-17f9fe55dca2	2021-05-27 17:26:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:26:38.951+03	2021-05-27 17:26:38.959+03	
f10689e8-85bf-cbb0-787b-d30727766005	2021-05-27 17:26:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:26:58.952+03	2021-05-27 17:26:58.958+03	
03413bfc-e763-f300-7507-818b688d802f	2021-05-27 17:27:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:27:19.951+03	2021-05-27 17:27:19.959+03	
e3f88e74-6989-9061-1170-5ff507c67b72	2021-05-27 17:27:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:27:39.951+03	2021-05-27 17:27:39.958+03	
9b693fed-716c-8505-5cf1-10a3d882cc4b	2021-05-27 17:27:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:27:59.951+03	2021-05-27 17:27:59.957+03	
af942dc8-3e7f-067e-12df-664e78f4bcda	2021-05-27 17:28:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:28:19.951+03	2021-05-27 17:28:19.957+03	
246d05a0-0388-a608-0f42-a5bada7cf8e2	2021-05-27 17:28:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:28:39.951+03	2021-05-27 17:28:39.959+03	
e5fd55e5-666c-aaf9-0b28-4ab497405945	2021-05-27 17:28:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:28:59.951+03	2021-05-27 17:28:59.958+03	
c5cfbcbe-72f5-7654-a4ea-cfb6173886ee	2021-05-27 17:29:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:29:19.951+03	2021-05-27 17:29:19.958+03	
588bf63b-964e-9905-2d96-854da676c88b	2021-05-27 17:29:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:29:39.951+03	2021-05-27 17:29:39.959+03	
fb07cc06-c86c-7231-80b1-4d7fb5f40aa4	2021-05-27 17:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:29:59.951+03	2021-05-27 17:29:59.957+03	
bc29d179-a3f3-4b75-1fa8-7e13cf6432b1	2021-05-27 17:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:30:09.951+03	2021-05-27 17:30:09.959+03	
0afa4d26-5471-4122-11b0-b352587b3597	2021-05-27 17:30:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:30:29.951+03	2021-05-27 17:30:29.96+03	
06c335ba-6cdd-8a67-ebb1-05f4e44c0200	2021-05-27 17:30:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:30:49.951+03	2021-05-27 17:30:49.957+03	
987af2ec-29b5-8ff1-042a-4d4d91734f78	2021-05-27 17:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:31:09.951+03	2021-05-27 17:31:09.961+03	
4363af95-a245-5fa1-e441-89612be44bbd	2021-05-27 17:31:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:31:29.951+03	2021-05-27 17:31:29.957+03	
54ec35f5-83fb-c457-a405-962e79fb4342	2021-05-27 17:31:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:31:49.951+03	2021-05-27 17:31:49.957+03	
d5eecb37-7857-0dcb-05e4-0a5a733c85d6	2021-05-27 17:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:32:09.951+03	2021-05-27 17:32:09.958+03	
80592ffa-28d9-4843-95a2-cbeafd907280	2021-05-27 17:32:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:32:29.951+03	2021-05-27 17:32:29.958+03	
cb32747a-2fab-54f0-d224-c79d81c91aa8	2021-05-27 17:32:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:32:49.951+03	2021-05-27 17:32:49.959+03	
96d4cc3a-1ce2-ddba-21a2-16ca5160cef8	2021-05-27 17:33:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:33:09.951+03	2021-05-27 17:33:09.958+03	
4b3bf06c-7873-780b-cff4-2ead1d4c00aa	2021-05-27 17:33:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:33:29.952+03	2021-05-27 17:33:29.958+03	
e014fc5b-d11f-230b-086d-26fd82cfb9af	2021-05-27 17:33:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:33:50.951+03	2021-05-27 17:33:50.958+03	
81858362-feda-5406-5d8e-f0038bb0d552	2021-05-27 17:34:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:34:10.951+03	2021-05-27 17:34:10.959+03	
320199eb-62af-2b0d-a8de-72dd2c08a93d	2021-05-27 17:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:34:30.951+03	2021-05-27 17:34:30.959+03	
4c3aaaeb-93fc-5023-4835-97ecf2dfe002	2021-05-27 17:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:34:50.951+03	2021-05-27 17:34:50.96+03	
82c3f696-7cd9-b14a-6439-de3770116ea1	2021-05-27 17:35:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:35:10.951+03	2021-05-27 17:35:10.959+03	
caa66328-5221-c44c-9605-16c87829a45e	2021-05-27 17:35:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:35:30.951+03	2021-05-27 17:35:30.961+03	
73e372b4-b06a-bebe-ef58-9bfc70ae2bc2	2021-05-27 17:35:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:35:50.951+03	2021-05-27 17:35:50.961+03	
4b606eba-ed87-0430-5cbd-6528d0b47378	2021-05-27 17:36:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:36:10.951+03	2021-05-27 17:36:10.957+03	
a4a5ea32-9149-edf8-3fa2-edba6a837dd5	2021-05-27 17:36:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:36:30.951+03	2021-05-27 17:36:30.959+03	
bb640772-847e-8fd3-b4c9-f05fa0d96ee6	2021-05-27 17:36:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:36:50.951+03	2021-05-27 17:36:50.958+03	
b1e6467d-2ca8-7c70-538a-5070169f2933	2021-05-27 17:37:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:37:10.951+03	2021-05-27 17:37:10.961+03	
241387f1-497a-688c-db66-a34d940a83ac	2021-05-27 17:37:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:37:30.951+03	2021-05-27 17:37:30.959+03	
13625b4a-a45c-74df-ed0e-e42976aa01bc	2021-05-27 17:37:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:37:50.951+03	2021-05-27 17:37:50.964+03	
33ff99d1-4a29-4889-ffac-e521eed7e18c	2021-05-27 17:38:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:38:10.951+03	2021-05-27 17:38:10.96+03	
c625a97b-1a15-fb65-b619-0212ee312006	2021-05-27 17:38:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:38:30.951+03	2021-05-27 17:38:30.957+03	
5564a6ad-8973-4cbb-1a74-c89bea4d59d1	2021-05-27 17:38:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:38:50.951+03	2021-05-27 17:38:50.958+03	
ec589da0-a06d-2756-75ea-7d353238d51d	2021-05-27 17:39:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:39:10.951+03	2021-05-27 17:39:10.958+03	
af3a63ac-5011-35ef-eb2e-c2c9193e86e3	2021-05-27 17:39:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:39:30.951+03	2021-05-27 17:39:30.958+03	
c6a6893b-3b6e-5517-9b00-e9850cbcdcb2	2021-05-27 17:39:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:39:50.951+03	2021-05-27 17:39:50.958+03	
5989254e-697e-0131-f518-4056d2de8df2	2021-05-27 17:40:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:40:00.952+03	2021-05-27 17:40:01.019+03	
38b350a9-40ea-78e0-328d-e6154c572916	2021-05-27 17:40:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:40:11.951+03	2021-05-27 17:40:11.959+03	
7d6c7875-581e-fa08-56db-18fd0b8db426	2021-05-27 17:40:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:40:31.951+03	2021-05-27 17:40:31.958+03	
10061507-c76f-ff6e-377f-22a79764d6ca	2021-05-27 17:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:40:51.952+03	2021-05-27 17:40:51.959+03	
67e300ac-e13a-17b8-eb88-7eda0a7d186f	2021-05-27 17:41:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:41:12.951+03	2021-05-27 17:41:12.959+03	
9ef581e0-b2a1-86bd-cc27-2c315d3e33f2	2021-05-27 17:41:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:41:32.952+03	2021-05-27 17:41:32.96+03	
2cccdfeb-219c-530e-69fd-f818d02666ef	2021-05-27 17:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:41:53.951+03	2021-05-27 17:41:53.96+03	
d8f3d96b-b2d0-fa8a-970e-b9ec38048dcd	2021-05-27 17:42:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:42:13.951+03	2021-05-27 17:42:13.957+03	
fa94898f-f318-8bdd-9b90-421b35cb60b1	2021-05-27 17:42:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:42:33.951+03	2021-05-27 17:42:33.958+03	
43dd0746-c086-393d-fc46-b281f87cc024	2021-05-27 17:42:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:42:53.951+03	2021-05-27 17:42:53.958+03	
17f2e208-14a4-c297-34db-6c33e31fea7f	2021-05-27 17:43:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:43:13.951+03	2021-05-27 17:43:13.958+03	
fa3c7444-b5ad-f305-6db1-08da9ef91ec6	2021-05-27 17:43:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:43:33.951+03	2021-05-27 17:43:33.958+03	
dbe45358-e427-223d-9263-4690d82a8ca8	2021-05-27 17:43:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:43:53.951+03	2021-05-27 17:43:53.959+03	
fe3fcfb6-33b4-55b3-4b12-527f34c648ba	2021-05-27 17:44:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:44:13.951+03	2021-05-27 17:44:13.958+03	
a1385bae-da5d-6af2-a0d1-7c8076072631	2021-05-27 17:44:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:44:33.951+03	2021-05-27 17:44:33.958+03	
532bf803-7215-9294-a30c-9b36d9bfaeeb	2021-05-27 17:44:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:44:53.951+03	2021-05-27 17:44:54.012+03	
91eb7b48-4133-833a-ed46-a8444037de86	2021-05-27 17:45:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:45:13.951+03	2021-05-27 17:45:13.959+03	
5856ff19-137b-4267-6856-b0d7f399f3d1	2021-05-27 17:45:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:45:33.951+03	2021-05-27 17:45:33.958+03	
ff455567-e318-f546-3c78-c1a22f50a13d	2021-05-27 17:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:45:53.951+03	2021-05-27 17:45:53.96+03	
77f4149e-eccc-5ea5-de14-6c8a84015532	2021-05-27 18:09:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:09:36.952+03	2021-05-27 18:09:36.96+03	
a1362684-eccd-c25c-969a-7e7c98bc7b57	2021-05-27 17:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:46:13.951+03	2021-05-27 17:46:13.957+03	
96bed878-8946-3421-7eca-04198295ef76	2021-05-27 17:46:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:46:33.951+03	2021-05-27 17:46:33.961+03	
6a3adefb-a16a-5969-67f0-502160e95ab2	2021-05-27 18:09:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:09:58.951+03	2021-05-27 18:09:58.959+03	
1ff3320b-5eb7-fc0a-4e3a-98e57597000c	2021-05-27 17:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:46:53.952+03	2021-05-27 17:46:53.958+03	
18189c44-40fa-2064-6b17-26ed9f639564	2021-05-27 17:47:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:47:15.951+03	2021-05-27 17:47:15.957+03	
da26d9e5-09a0-9e9d-3fed-dabf6938616f	2021-05-27 18:10:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:10:08.951+03	2021-05-27 18:10:08.958+03	
a0b520c8-cf4f-bf8d-61c2-2aeb1630e69c	2021-05-27 17:47:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:47:35.951+03	2021-05-27 17:47:35.958+03	
3b23ceea-4f85-483a-6775-8a6039f6a1e0	2021-05-27 17:47:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:47:55.951+03	2021-05-27 17:47:55.958+03	
5cba4e6b-4572-6f6c-3a2e-4eef729495ec	2021-05-27 18:10:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:10:28.951+03	2021-05-27 18:10:28.958+03	
3b5596ee-0eac-eafd-2eb1-d3c4c2a2a540	2021-05-27 17:48:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:48:15.951+03	2021-05-27 17:48:15.958+03	
3819f489-d24b-0252-cde9-c295af4fd41b	2021-05-27 17:48:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:48:35.952+03	2021-05-27 17:48:35.962+03	
a1a67104-9741-b7f6-97b3-f46e65ac8b0a	2021-05-27 18:10:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:10:48.951+03	2021-05-27 18:10:48.958+03	
3f1f270d-927d-d8d4-6c7b-add9339a8956	2021-05-27 17:48:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:48:56.952+03	2021-05-27 17:48:56.959+03	
19a45421-9d60-4751-d19a-73fec406287b	2021-05-27 17:49:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:49:16.952+03	2021-05-27 17:49:16.959+03	
16387617-8a1f-5803-cd8d-8da5c85d79c1	2021-05-27 17:49:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:49:37.951+03	2021-05-27 17:49:37.959+03	
2dc14597-31da-9c28-8168-efb867926092	2021-05-27 17:49:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:49:58.951+03	2021-05-27 17:49:58.957+03	
27372752-6b4d-964a-1aba-91a34d881a34	2021-05-27 17:50:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:50:08.951+03	2021-05-27 17:50:08.958+03	
2a326840-2bd8-8c90-fe72-42070aae1c0f	2021-05-27 17:50:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:50:28.951+03	2021-05-27 17:50:28.958+03	
2ddda401-e55d-5fc7-f3f0-e328d487e340	2021-05-27 17:50:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:50:48.951+03	2021-05-27 17:50:48.958+03	
b821bccb-6a1b-de3f-53ef-52ead732bfcb	2021-05-27 17:51:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:51:08.951+03	2021-05-27 17:51:08.958+03	
605d7bc8-6448-d56a-43e6-5f32d3e7226f	2021-05-27 17:51:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:51:28.951+03	2021-05-27 17:51:28.958+03	
4bb69821-e932-f828-99bc-2e41a96bc373	2021-05-27 17:51:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:51:48.951+03	2021-05-27 17:51:48.957+03	
926f9883-acbd-ba36-73ca-51ce74f92c7d	2021-05-27 17:52:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:52:08.951+03	2021-05-27 17:52:08.957+03	
553c4dd9-40bd-0ad4-cd93-01bda54abaf6	2021-05-27 17:52:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:52:28.951+03	2021-05-27 17:52:28.959+03	
f6177917-25ee-dd11-53e7-127b94075699	2021-05-27 17:52:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:52:48.952+03	2021-05-27 17:52:48.958+03	
8b2dbe0b-c11a-71de-54f7-a5f5cbdc94f9	2021-05-27 17:53:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:53:09.951+03	2021-05-27 17:53:09.959+03	
70c884ed-3c93-0e5d-9d45-0df0c51710ca	2021-05-27 17:53:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:53:29.951+03	2021-05-27 17:53:29.957+03	
8001fbe0-d7f4-560d-eae2-20a8a7f9aeed	2021-05-27 17:53:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:53:49.952+03	2021-05-27 17:53:49.958+03	
bbb65f90-3ba3-2cc4-a670-2fb417fe1196	2021-05-27 17:54:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:54:10.951+03	2021-05-27 17:54:10.958+03	
b2454aea-a0b5-c184-bbc3-a55cfa200424	2021-05-27 17:54:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:54:30.952+03	2021-05-27 17:54:30.96+03	
5a55278c-b0b8-1456-80c3-07b79d81a31e	2021-05-27 17:54:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:54:51.951+03	2021-05-27 17:54:51.959+03	
3f053c39-307d-ed36-b7a9-f30179704710	2021-05-27 17:55:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:55:11.951+03	2021-05-27 17:55:11.959+03	
e127963a-5ec9-6486-0417-cbee698a7aad	2021-05-27 17:55:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:55:31.951+03	2021-05-27 17:55:31.958+03	
83fe2243-b745-6591-1dba-b5b0365278fc	2021-05-27 17:55:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:55:51.951+03	2021-05-27 17:55:51.958+03	
d32a50f1-1a4e-cc14-2220-eef4a77fa03b	2021-05-27 17:56:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:56:11.951+03	2021-05-27 17:56:11.962+03	
beb0e61c-971d-514c-9f05-56a077a10474	2021-05-27 17:56:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:56:31.951+03	2021-05-27 17:56:31.96+03	
5a0d6dbd-f7ab-dfe9-e677-d289c83f9900	2021-05-27 17:56:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:56:51.951+03	2021-05-27 17:56:51.962+03	
fe38ed90-3393-9e6e-c8d4-774b7176234f	2021-05-27 17:57:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:57:11.951+03	2021-05-27 17:57:11.959+03	
d58903c7-7f75-71b8-60e2-b37d346247aa	2021-05-27 17:57:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:57:31.951+03	2021-05-27 17:57:31.96+03	
295f6f16-845f-38b1-f387-9ce15ab6db02	2021-05-27 17:57:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:57:51.951+03	2021-05-27 17:57:51.958+03	
ee601afb-f3e6-e44d-2611-636ca743d546	2021-05-27 17:58:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:58:11.952+03	2021-05-27 17:58:11.959+03	
74a5da89-d509-1890-c405-ca793dcc461a	2021-05-27 17:58:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:58:32.953+03	2021-05-27 17:58:32.96+03	
df804e69-5bef-d1f0-bfdb-cd92b26b752d	2021-05-27 17:58:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:58:53.951+03	2021-05-27 17:58:53.958+03	
d3f076d4-5b30-d4da-36f9-7086cd6cc73c	2021-05-27 17:59:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:59:13.951+03	2021-05-27 17:59:13.958+03	
0e3f211b-0bfe-baa0-be78-e9902cb359b2	2021-05-27 17:59:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:59:33.951+03	2021-05-27 17:59:33.957+03	
6f562847-0cce-7f28-9245-acd82f1f20c0	2021-05-27 17:59:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:59:54.951+03	2021-05-27 17:59:54.959+03	
c0ca4a9b-0a08-6d4c-a868-2b6746ec1376	2021-05-27 18:00:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:00:04.951+03	2021-05-27 18:00:04.959+03	
a4275eff-6925-9261-a1fa-e09ce1a12836	2021-05-27 18:00:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:00:24.951+03	2021-05-27 18:00:24.957+03	
b1d6ac79-e136-4768-4252-289815f07493	2021-05-27 18:00:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:00:44.951+03	2021-05-27 18:00:44.958+03	
20250d98-42cf-55a6-5837-280c04fba615	2021-05-27 18:01:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:01:04.951+03	2021-05-27 18:01:04.958+03	
1b9a9883-6d27-c3da-b6af-1785a9859929	2021-05-27 18:01:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:01:25.951+03	2021-05-27 18:01:25.959+03	
cb29fec7-947d-2927-f8fe-d217aa78ae0f	2021-05-27 18:01:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:01:45.951+03	2021-05-27 18:01:45.959+03	
43b7ab3c-8b2b-ee39-7890-b5241f774ad7	2021-05-27 18:02:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:02:05.951+03	2021-05-27 18:02:05.958+03	
e7283f16-a628-cefd-dcb6-1e1cb3bcae8a	2021-05-27 18:02:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:02:25.951+03	2021-05-27 18:02:25.957+03	
a628c76c-95bf-60fa-2f8c-8f93e9d5ff3a	2021-05-27 18:02:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:02:45.951+03	2021-05-27 18:02:45.957+03	
a3cc7f62-3843-5db4-7b54-0ed25d6e1937	2021-05-27 18:03:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:03:05.951+03	2021-05-27 18:03:05.958+03	
26d49391-9601-e166-a114-4d926e51fe08	2021-05-27 18:03:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:03:25.951+03	2021-05-27 18:03:25.958+03	
d20fdb84-1c55-726d-f75f-e56bce2b9032	2021-05-27 18:03:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:03:45.951+03	2021-05-27 18:03:45.96+03	
86f07b15-9879-83f7-017f-6e16f233c576	2021-05-27 18:04:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:04:05.951+03	2021-05-27 18:04:05.958+03	
9a15701d-7476-ac9f-bf2a-830e3028737f	2021-05-27 18:04:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:04:25.951+03	2021-05-27 18:04:25.962+03	
ea34a3b6-9f43-90b3-234d-9d312bbf4275	2021-05-27 18:04:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:04:45.951+03	2021-05-27 18:04:45.96+03	
95c2d037-ab0d-2514-03c6-cfab64704990	2021-05-27 17:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:46:03.951+03	2021-05-27 17:46:03.961+03	
6d110ad8-c927-06b5-a0e0-cb849b48295b	2021-05-27 18:11:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:11:08.951+03	2021-05-27 18:11:08.959+03	
2080dfd8-ce42-0997-a0ea-7b33e3b9b3c4	2021-05-27 17:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:46:23.951+03	2021-05-27 17:46:23.958+03	
cd410cd3-ddba-37d6-db09-2817fd285979	2021-05-27 17:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:46:43.951+03	2021-05-27 17:46:43.959+03	
6a4fc45c-57da-3579-058c-2c59236b38a3	2021-05-27 18:11:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:11:28.951+03	2021-05-27 18:11:28.957+03	
dfcd4df9-01b0-3b9c-e57f-0c066955884f	2021-05-27 17:47:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:47:04.952+03	2021-05-27 17:47:04.958+03	
a306cab1-eeb1-e81c-f336-8210924d4fd3	2021-05-27 17:47:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:47:25.951+03	2021-05-27 17:47:25.959+03	
cbae4847-0e85-d355-a208-adf2cfa2cfda	2021-05-27 18:11:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:11:48.951+03	2021-05-27 18:11:48.958+03	
7e44ab16-fab6-8251-91fd-4bbe52d80cf1	2021-05-27 17:47:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:47:45.951+03	2021-05-27 17:47:45.959+03	
f2ab728a-752b-69d0-6c8a-632fc22f02c6	2021-05-27 17:48:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:48:05.951+03	2021-05-27 17:48:05.958+03	
3a65281a-34b0-72c2-ce6a-481aac2d8cf7	2021-05-27 18:12:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:12:08.951+03	2021-05-27 18:12:08.958+03	
5dc5c9dc-3d72-aec1-823b-ddc9d54e0a4b	2021-05-27 17:48:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:48:25.951+03	2021-05-27 17:48:25.959+03	
63757c95-14cc-4e5c-616a-d5daa5ccf9fb	2021-05-27 17:48:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:48:46.951+03	2021-05-27 17:48:46.96+03	
5884adab-82f5-bd36-2087-338638dec149	2021-05-27 18:12:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:12:29.951+03	2021-05-27 18:12:29.957+03	
b53c27d0-e3f7-5806-5393-ba6932891a2f	2021-05-27 17:49:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:49:06.952+03	2021-05-27 17:49:06.96+03	
8f407952-fffc-706c-e68c-a1ec78cedd1d	2021-05-27 17:49:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:49:27.951+03	2021-05-27 17:49:27.957+03	
ff42d4f3-7c1c-12b2-7ef0-3c0c2e99e23a	2021-05-27 18:12:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:12:49.952+03	2021-05-27 18:12:49.96+03	
465a6412-c436-8714-09a1-063699e765b3	2021-05-27 17:49:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:49:47.952+03	2021-05-27 17:49:47.958+03	
7dffda05-19cc-bb17-c193-8661a6d77411	2021-05-27 17:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 17:50:00.951+03	2021-05-27 17:50:00.956+03	ERROR
e7ab104a-69e4-03c4-284e-02b0bde4494e	2021-05-27 17:50:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:50:18.951+03	2021-05-27 17:50:18.959+03	
70c35585-7385-997a-e88e-a0baa1e84bcf	2021-05-27 17:50:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:50:38.951+03	2021-05-27 17:50:38.958+03	
0e85cfbf-db40-3398-905e-99a5838f9534	2021-05-27 17:50:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:50:58.951+03	2021-05-27 17:50:58.959+03	
6801967b-ea8a-6998-3bbe-654ed3afc51d	2021-05-27 17:51:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:51:18.951+03	2021-05-27 17:51:18.958+03	
48a23922-6a8a-fbc6-fc1b-7eb9f84dec24	2021-05-27 17:51:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:51:38.951+03	2021-05-27 17:51:38.958+03	
243ca97f-90aa-14cf-c256-3c915fd36bfa	2021-05-27 17:51:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:51:58.951+03	2021-05-27 17:51:58.958+03	
11d52dd1-5ca9-c885-1aff-7d7873720d4a	2021-05-27 17:52:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:52:18.951+03	2021-05-27 17:52:18.958+03	
516f032d-4cf1-423a-7565-2b1476920f01	2021-05-27 17:52:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:52:38.951+03	2021-05-27 17:52:38.957+03	
4005339e-4037-4290-11ab-2bb0aced9204	2021-05-27 17:52:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:52:59.951+03	2021-05-27 17:52:59.959+03	
44087744-5a9e-ca11-dd03-99396d20eb75	2021-05-27 17:53:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:53:19.951+03	2021-05-27 17:53:19.959+03	
3ec98f95-1153-52d2-6349-179bde3faade	2021-05-27 17:53:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:53:39.951+03	2021-05-27 17:53:39.957+03	
6c90c8cf-7e65-bb4f-5c57-f458a1de8eb3	2021-05-27 17:54:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:54:00.951+03	2021-05-27 17:54:00.957+03	
54dda4e8-0708-3d26-f0cb-bcf5d70e43e5	2021-05-27 17:54:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:54:20.951+03	2021-05-27 17:54:20.957+03	
3b928fa2-a592-22f9-00c2-670d210921eb	2021-05-27 17:54:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:54:41.951+03	2021-05-27 17:54:41.957+03	
ed35bd9b-1dd7-a43d-d588-65bd3002908a	2021-05-27 17:55:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:55:01.951+03	2021-05-27 17:55:01.959+03	
3a1419df-c214-567e-d8b4-ad748cc70065	2021-05-27 17:55:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:55:21.951+03	2021-05-27 17:55:21.958+03	
5883c361-5a19-8bb9-8172-5c15702adcc3	2021-05-27 17:55:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:55:41.951+03	2021-05-27 17:55:41.957+03	
e4a6be75-8799-81b4-6bf1-324ea1c8907a	2021-05-27 17:56:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:56:01.951+03	2021-05-27 17:56:01.958+03	
14f5367c-6bde-4ae5-774c-7702465ea491	2021-05-27 17:56:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:56:21.951+03	2021-05-27 17:56:21.959+03	
132ff2fb-57dd-2d45-c8a2-93ab7a13a46a	2021-05-27 17:56:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:56:41.951+03	2021-05-27 17:56:41.958+03	
f4926910-145a-00bf-e469-7a76935c89d3	2021-05-27 17:57:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:57:01.951+03	2021-05-27 17:57:01.96+03	
862e1996-ee33-c24a-4340-2e28b235eafe	2021-05-27 17:57:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:57:21.951+03	2021-05-27 17:57:21.958+03	
a4c9ee77-e02b-0a43-a50a-a5ab8f665193	2021-05-27 17:57:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:57:41.951+03	2021-05-27 17:57:41.958+03	
0c01b170-ef27-4b06-5035-d4a6f53b0bda	2021-05-27 17:58:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:58:01.951+03	2021-05-27 17:58:01.957+03	
8e77d30f-12ef-47ef-f8f6-9574c758db7c	2021-05-27 17:58:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:58:22.952+03	2021-05-27 17:58:22.959+03	
82eaca28-3ed3-8529-93d6-6583eea38e86	2021-05-27 17:58:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:58:43.951+03	2021-05-27 17:58:43.96+03	
13f90a26-d53b-60c8-461e-d60a69ae9468	2021-05-27 17:59:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:59:03.951+03	2021-05-27 17:59:03.958+03	
854045ec-17ec-570d-9ec5-e57617923e5a	2021-05-27 17:59:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:59:23.951+03	2021-05-27 17:59:23.96+03	
7ef28856-98f0-6e15-cfad-4422ebd27090	2021-05-27 17:59:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 17:59:43.952+03	2021-05-27 17:59:43.96+03	
521fd917-d2cb-26f5-f088-e501f97e744e	2021-05-27 18:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 18:00:00.951+03	2021-05-27 18:00:00.956+03	ERROR
c9e1a9aa-d64c-6827-c9fd-e686998cb251	2021-05-27 18:00:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:00:14.951+03	2021-05-27 18:00:14.961+03	
83e5bd76-8623-d9d2-5305-99fea003e161	2021-05-27 18:00:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:00:34.951+03	2021-05-27 18:00:34.96+03	
cf01324e-53b7-8a92-a79b-0334650d830c	2021-05-27 18:00:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:00:54.951+03	2021-05-27 18:00:54.957+03	
ac722ce9-5e1d-4d68-ce93-7ad89f9c7378	2021-05-27 18:01:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:01:14.952+03	2021-05-27 18:01:14.963+03	
9fbfeb68-6b80-f399-1cf2-d056b56780bd	2021-05-27 18:01:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:01:35.951+03	2021-05-27 18:01:35.969+03	
45794ac2-dd4a-d164-d6ea-86cf287391b6	2021-05-27 18:01:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:01:55.951+03	2021-05-27 18:01:55.959+03	
3553fb3e-b33e-cca5-2afc-6c7f502741c0	2021-05-27 18:02:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:02:15.951+03	2021-05-27 18:02:15.96+03	
c289aba7-4d67-bb46-097c-b26a4ae26ac6	2021-05-27 18:02:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:02:35.951+03	2021-05-27 18:02:35.959+03	
8e1c07d0-01bf-5ff5-7b29-431ec7321540	2021-05-27 18:02:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:02:55.951+03	2021-05-27 18:02:55.964+03	
eb662a5f-b27a-1f44-e612-efd565399c5f	2021-05-27 18:03:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:03:15.951+03	2021-05-27 18:03:15.96+03	
3457361e-103c-e84a-5c4a-e6fcb8b4eece	2021-05-27 18:03:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:03:35.951+03	2021-05-27 18:03:35.959+03	
30f98123-2e12-eea8-23a0-79e65a11013e	2021-05-27 18:03:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:03:55.951+03	2021-05-27 18:03:55.957+03	
762ba750-0f06-59f5-de7f-f1d378a3365e	2021-05-27 18:04:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:04:15.951+03	2021-05-27 18:04:15.962+03	
ecac3d50-c13f-e6c4-e226-c19f434d6d29	2021-05-27 18:04:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:04:35.951+03	2021-05-27 18:04:35.957+03	
d9dbbe48-f312-5ff8-812c-ccf97d185e05	2021-05-27 18:16:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:16:50.951+03	2021-05-27 18:16:50.96+03	
08323c8d-f026-300e-20c0-fe48f126dd0b	2021-05-27 18:17:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:17:10.951+03	2021-05-27 18:17:10.958+03	
aae105f7-daba-efd6-8980-2a8c9d59b381	2021-05-27 18:17:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:17:30.951+03	2021-05-27 18:17:30.959+03	
791a6136-8bd4-aeca-e170-0709749eaa5e	2021-05-27 18:17:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:17:50.951+03	2021-05-27 18:17:50.958+03	
edbc1f44-9a66-b0c2-f56b-084b6070f4df	2021-05-27 18:18:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:18:10.951+03	2021-05-27 18:18:10.958+03	
40a91d24-affb-b86d-52ef-4ed68af70432	2021-05-27 18:18:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:18:30.951+03	2021-05-27 18:18:30.958+03	
e474418a-e6b8-c9a7-6e8b-6dc0489fdded	2021-05-27 18:18:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:18:50.951+03	2021-05-27 18:18:50.959+03	
4b15f056-049b-7356-a9c3-24bb39ea1a0e	2021-05-27 18:19:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:19:10.951+03	2021-05-27 18:19:10.959+03	
abdacb62-60d0-87e7-83ed-d34ab159548c	2021-05-27 18:19:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:19:30.951+03	2021-05-27 18:19:30.958+03	
4ff624df-ec15-af01-f5f6-f84a3af918bc	2021-05-27 18:19:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:19:50.951+03	2021-05-27 18:19:50.958+03	
57894ba4-b75b-83ca-7dbe-a38ea2dc9ce2	2021-05-27 18:20:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:20:10.951+03	2021-05-27 18:20:10.957+03	
addb8872-8df7-7e1c-4f9a-2e4102557e32	2021-05-27 18:20:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:20:30.951+03	2021-05-27 18:20:30.96+03	
6948c007-64a3-230a-2aa9-b71128ac173a	2021-05-27 18:20:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:20:50.951+03	2021-05-27 18:20:50.961+03	
96bf733e-bdc0-9484-da38-ac75f1d1b9af	2021-05-27 18:21:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:21:10.951+03	2021-05-27 18:21:10.959+03	
8634ab85-6505-4deb-e6b3-8dafc0a70096	2021-05-27 18:21:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:21:30.952+03	2021-05-27 18:21:30.959+03	
ea88bb99-2d54-d2d9-c051-ba0dad7ed7e7	2021-05-27 18:21:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:21:51.951+03	2021-05-27 18:21:51.96+03	
d1b6b348-b2d2-af5f-17d9-33905fa621ca	2021-05-27 18:22:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:22:11.951+03	2021-05-27 18:22:11.957+03	
e55c98b5-c14c-924f-9457-905640b3445b	2021-05-27 18:22:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:22:31.951+03	2021-05-27 18:22:31.958+03	
fef6c9a1-dc27-5321-7eb3-993a71be742a	2021-05-27 18:22:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:22:51.951+03	2021-05-27 18:22:51.958+03	
5681cd14-20f9-0ec7-131c-7c0a8a43e4fd	2021-05-27 18:23:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:23:11.951+03	2021-05-27 18:23:11.96+03	
f19e5d0f-00d0-119d-0a71-53336954f8f8	2021-05-27 18:23:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:23:31.951+03	2021-05-27 18:23:31.963+03	
8826bd66-e3e0-9d05-d5ad-e594a0cc7e72	2021-05-27 18:23:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:23:51.951+03	2021-05-27 18:23:51.96+03	
1d47a060-b492-ac9d-c0a4-49276de4a2fd	2021-05-27 18:24:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:24:11.952+03	2021-05-27 18:24:11.961+03	
78ab420f-f28a-533c-8c5c-57c96a0b143f	2021-05-27 18:24:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:24:32.951+03	2021-05-27 18:24:32.958+03	
0f946ad9-d58d-afd6-2d34-5a3c62789338	2021-05-27 18:25:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:25:02.952+03	2021-05-27 18:25:02.96+03	
c5ca8c24-870f-8d4b-91aa-cbfa475a1983	2021-05-27 18:25:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:25:22.953+03	2021-05-27 18:25:22.964+03	
08bef5f3-11da-aea9-5b26-d3c537009fea	2021-05-27 18:25:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:25:44.951+03	2021-05-27 18:25:44.959+03	
22b726c8-974b-30d1-0869-8018436b0420	2021-05-27 18:26:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:26:04.951+03	2021-05-27 18:26:04.957+03	
97e5216a-92ad-5f13-cfc2-c8a28f15a467	2021-05-27 18:26:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:26:24.951+03	2021-05-27 18:26:24.959+03	
a0d3064a-1906-0892-20b3-fefa197e20b4	2021-05-27 18:26:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:26:44.952+03	2021-05-27 18:26:44.959+03	
a94254fd-44ac-a410-715b-63fafceead38	2021-05-27 18:27:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:27:05.951+03	2021-05-27 18:27:05.959+03	
ea5a1a66-167f-268f-f1d1-14622cd50be9	2021-05-27 18:27:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:27:25.951+03	2021-05-27 18:27:25.96+03	
ae0aea24-2eee-b57e-9cd6-87c7a2876d3d	2021-05-27 18:27:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:27:55.951+03	2021-05-27 18:27:55.958+03	
d7434c8a-7dae-2438-c7b6-16624118e9e4	2021-05-27 18:28:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:28:15.951+03	2021-05-27 18:28:15.958+03	
645388ef-59bb-9196-7823-934efdaf413b	2021-05-27 18:28:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:28:35.951+03	2021-05-27 18:28:35.959+03	
a9b3b48c-97b3-2595-1153-936deaebe495	2021-05-27 18:28:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:28:55.951+03	2021-05-27 18:28:55.958+03	
b9f3ca62-a3c5-9165-1cce-763938aa1783	2021-05-27 18:29:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:29:15.951+03	2021-05-27 18:29:15.957+03	
86f2ea80-67a6-ca1f-dd44-7b734213583f	2021-05-27 18:29:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:29:35.952+03	2021-05-27 18:29:35.963+03	
6f2b1d5b-223b-cf19-de09-513e352a5202	2021-05-27 18:29:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:29:56.951+03	2021-05-27 18:29:56.959+03	
49972a59-4e85-945f-6147-46f5140893b4	2021-05-27 18:30:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:30:06.951+03	2021-05-27 18:30:06.957+03	
be816048-68e4-66fe-b492-92833fd31678	2021-05-27 18:30:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:30:26.951+03	2021-05-27 18:30:26.961+03	
385bc77f-7a75-35c9-cb22-bdb757403908	2021-05-27 18:30:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:30:47.951+03	2021-05-27 18:30:47.962+03	
3aa1be2e-401a-a4d4-d24c-d670ce93f7fa	2021-05-27 18:31:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:31:08.951+03	2021-05-27 18:31:08.959+03	
c534b118-00e4-7849-b6a6-176447c6eced	2021-05-27 18:31:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:31:28.951+03	2021-05-27 18:31:28.963+03	
93b356aa-bf4f-b918-f71b-66ddafbd510d	2021-05-27 18:31:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:31:48.951+03	2021-05-27 18:31:48.96+03	
a05f42a0-bee1-d186-0f3b-7987b213a95d	2021-05-27 18:32:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:32:08.951+03	2021-05-27 18:32:08.958+03	
4054143d-33a8-0e8e-237c-95860d4adaf0	2021-05-27 18:32:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:32:38.951+03	2021-05-27 18:32:38.959+03	
2964dfd8-5385-32e1-bc52-3c91f7e192ef	2021-05-27 18:32:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:32:58.951+03	2021-05-27 18:32:58.961+03	
65dedf44-663f-2a79-f387-2ceae67f623a	2021-05-27 18:33:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:33:18.951+03	2021-05-27 18:33:18.959+03	
ecb15188-61ba-5ad4-03aa-fcf1525db0f6	2021-05-27 18:33:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:33:38.951+03	2021-05-27 18:33:38.958+03	
68fda4dc-93ee-a62a-3211-e4e7dd99abd4	2021-05-27 18:33:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:33:58.951+03	2021-05-27 18:33:58.958+03	
4482e149-4a9a-0568-bcb8-bf571b90465d	2021-05-27 18:34:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:34:18.951+03	2021-05-27 18:34:18.959+03	
2548e987-c916-2fc9-52be-2b6f2977c898	2021-05-27 18:34:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:34:38.951+03	2021-05-27 18:34:38.965+03	
b983f4d5-f268-c325-d08f-c9475a4d3bf5	2021-05-27 18:34:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:34:58.951+03	2021-05-27 18:34:58.958+03	
83e3760b-00fe-abda-f509-af635b04a3e8	2021-05-27 18:35:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:35:18.951+03	2021-05-27 18:35:18.958+03	
7ffd9068-99df-6466-ea34-bf28a9b05d4e	2021-05-27 18:35:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:35:38.951+03	2021-05-27 18:35:38.958+03	
159a063b-f8e1-5931-070a-e3e389248b40	2021-05-27 18:36:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:36:08.951+03	2021-05-27 18:36:08.959+03	
b75a8e0e-7f98-520d-a866-dc6a5e8b68c6	2021-05-27 18:36:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:36:28.951+03	2021-05-27 18:36:28.958+03	
09696825-cd2b-b6ca-425c-d648d74d3ccc	2021-05-27 18:36:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:36:48.951+03	2021-05-27 18:36:48.958+03	
6768969f-3fed-2dcd-bd81-188abac624d9	2021-05-27 18:37:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:37:08.951+03	2021-05-27 18:37:08.958+03	
a04541b4-921b-1f9d-ebc7-8da6b1ae5e4e	2021-05-27 18:37:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:37:28.951+03	2021-05-27 18:37:28.958+03	
16c1eee9-415f-217f-089e-79d8378ac1c4	2021-05-27 18:37:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:37:48.951+03	2021-05-27 18:37:48.958+03	
b45c90f7-10f0-317c-d369-50563ae6808c	2021-05-27 18:38:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:38:08.952+03	2021-05-27 18:38:08.959+03	
e1be7f42-c919-134d-f25f-a0e8bd854362	2021-05-27 18:17:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:17:00.951+03	2021-05-27 18:17:00.959+03	
fd90458a-518b-d9db-1650-bb075b430382	2021-05-27 18:17:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:17:20.951+03	2021-05-27 18:17:20.958+03	
de56b643-4b49-ab72-4a6d-d1d36167f19d	2021-05-27 18:17:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:17:40.951+03	2021-05-27 18:17:40.958+03	
c37239be-8341-bfd0-3ad7-6a6aad49b5c8	2021-05-27 18:18:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:18:00.951+03	2021-05-27 18:18:00.959+03	
66d0d110-bcd4-89bc-da03-2034360a23f8	2021-05-27 18:18:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:18:20.951+03	2021-05-27 18:18:20.958+03	
24d4d343-0cf2-ee40-63f1-5e966d8f1c03	2021-05-27 18:18:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:18:40.951+03	2021-05-27 18:18:40.958+03	
8f0691ce-00a3-6ab9-b59f-046c4eea5349	2021-05-27 18:19:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:19:00.951+03	2021-05-27 18:19:00.962+03	
1bb3129e-ad97-17eb-3991-f281a5344c92	2021-05-27 18:19:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:19:20.951+03	2021-05-27 18:19:20.959+03	
1cd101e8-0c16-f3cf-1cc8-e51648ba8fda	2021-05-27 18:19:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:19:40.951+03	2021-05-27 18:19:40.958+03	
83825fe8-550c-e648-6327-7d1d6d18d28d	2021-05-27 18:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 18:20:00.951+03	2021-05-27 18:20:00.96+03	ERROR
4a7f84dd-1e9f-e17e-f6e2-3ba49ebf50d8	2021-05-27 18:20:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:20:00.951+03	2021-05-27 18:20:00.97+03	
575e895f-36e1-a541-a408-67216fb0d103	2021-05-27 18:20:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:20:20.951+03	2021-05-27 18:20:20.959+03	
603f0486-56da-7b0e-17f5-13b34bf89b17	2021-05-27 18:20:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:20:40.951+03	2021-05-27 18:20:40.958+03	
6ec1548d-9abe-d003-fc59-e8de0f9097f3	2021-05-27 18:21:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:21:00.951+03	2021-05-27 18:21:00.958+03	
73421ea9-d4ce-1ea9-8ce7-0484510badd6	2021-05-27 18:21:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:21:20.951+03	2021-05-27 18:21:20.958+03	
33408c81-cb5d-b34f-5543-da676e3d194e	2021-05-27 18:21:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:21:41.951+03	2021-05-27 18:21:41.958+03	
1fd8fc74-ea29-c8d9-1af7-469f8e3704e2	2021-05-27 18:22:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:22:01.951+03	2021-05-27 18:22:01.958+03	
6b25f5e6-d7e8-0b2f-7f99-f48e881d2480	2021-05-27 18:22:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:22:21.951+03	2021-05-27 18:22:21.958+03	
7bc35b1f-2d41-c530-8a51-2ac89f0f902e	2021-05-27 18:22:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:22:41.951+03	2021-05-27 18:22:41.959+03	
dd716a75-5d53-e2ec-2b97-4de5fb26959a	2021-05-27 18:23:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:23:01.951+03	2021-05-27 18:23:01.958+03	
86f272d5-e0cd-326c-55a5-eb29069df5fe	2021-05-27 18:23:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:23:21.951+03	2021-05-27 18:23:21.962+03	
9029ecc2-e5d4-068f-97fa-baa5e55b97bf	2021-05-27 18:23:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:23:41.951+03	2021-05-27 18:23:41.958+03	
a2656ade-e03a-bbbf-004c-9c782e8db15b	2021-05-27 18:24:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:24:01.951+03	2021-05-27 18:24:01.958+03	
507684c6-f58a-96be-588c-68b6786a6505	2021-05-27 18:24:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:24:22.951+03	2021-05-27 18:24:22.959+03	
33905b5c-aa1a-fa31-46bd-309a80303e26	2021-05-27 18:24:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:24:42.951+03	2021-05-27 18:24:42.958+03	
ba3ab5ef-6982-142e-b878-2f9442d6da06	2021-05-27 18:24:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:24:52.951+03	2021-05-27 18:24:52.959+03	
b594d5de-3b53-1590-2f0f-cc9be89f773c	2021-05-27 18:25:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:25:12.952+03	2021-05-27 18:25:12.96+03	
c78915a6-790c-58c9-e480-2c8767ad14e7	2021-05-27 18:25:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:25:33.952+03	2021-05-27 18:25:33.96+03	
16b5a90d-32e1-c97a-7282-3f0a97a2d67e	2021-05-27 18:25:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:25:54.951+03	2021-05-27 18:25:54.959+03	
841a4e21-3972-5b82-59b3-98fc03176f30	2021-05-27 18:26:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:26:14.951+03	2021-05-27 18:26:14.958+03	
e9f6c5d5-6183-f37f-7f27-8fe57554fb7e	2021-05-27 18:26:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:26:34.951+03	2021-05-27 18:26:34.959+03	
b5f70263-ddd5-2a53-bf0e-440046822329	2021-05-27 18:26:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:26:55.951+03	2021-05-27 18:26:55.959+03	
93389e49-06bc-37aa-6154-07fb38869e30	2021-05-27 18:27:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:27:15.951+03	2021-05-27 18:27:15.959+03	
4e65a96c-fa78-b959-d66c-5e51dbd5cc55	2021-05-27 18:27:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:27:35.951+03	2021-05-27 18:27:35.957+03	
7a7cf802-1c20-8605-ca76-e5be58ab2652	2021-05-27 18:27:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:27:45.951+03	2021-05-27 18:27:45.959+03	
0be405b1-5ab8-7d3a-78c7-c1c249bdbf90	2021-05-27 18:28:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:28:05.951+03	2021-05-27 18:28:05.977+03	
2ab79953-004b-cccb-8425-940639464023	2021-05-27 18:28:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:28:25.951+03	2021-05-27 18:28:25.959+03	
e37b292d-c9fb-9d4e-e1de-d18aefc0a51c	2021-05-27 18:28:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:28:45.951+03	2021-05-27 18:28:45.959+03	
cf1c300f-9e68-1566-414e-8be96c8e6538	2021-05-27 18:29:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:29:05.951+03	2021-05-27 18:29:05.959+03	
83fdf833-9481-7f28-61a9-1a2e55ddeff1	2021-05-27 18:29:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:29:25.951+03	2021-05-27 18:29:25.958+03	
f8490e60-a592-3d76-35b6-c76f11df0962	2021-05-27 18:29:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:29:46.951+03	2021-05-27 18:29:46.959+03	
6023ec4b-b42d-bf4f-c708-0863556a63fb	2021-05-27 18:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 18:30:00.951+03	2021-05-27 18:30:00.961+03	ERROR
b439c921-088e-0ab5-c02e-c94a693bf69d	2021-05-27 18:30:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:30:16.951+03	2021-05-27 18:30:16.964+03	
64fbe795-778b-bcf4-e8ce-f19751be4142	2021-05-27 18:30:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:30:36.952+03	2021-05-27 18:30:36.958+03	
163380c2-1c85-36d1-2c5e-ca4d56b71e10	2021-05-27 18:30:57.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:30:57.953+03	2021-05-27 18:30:57.972+03	
45b973df-d4a0-00fc-e8c5-80f614e3d11c	2021-05-27 18:31:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:31:18.951+03	2021-05-27 18:31:18.958+03	
7d185e9d-ae49-6d40-8237-a5d913023b1d	2021-05-27 18:31:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:31:38.951+03	2021-05-27 18:31:38.96+03	
46c15dc0-0ace-e67c-c847-e055c9fa4acf	2021-05-27 18:31:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:31:58.951+03	2021-05-27 18:31:58.959+03	
23608269-e3fb-5392-a90c-6107e28cf585	2021-05-27 18:32:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:32:18.951+03	2021-05-27 18:32:18.96+03	
94dfdb22-13eb-c134-af3a-d0ea09398b2b	2021-05-27 18:32:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:32:28.951+03	2021-05-27 18:32:28.96+03	
16b922c4-cefc-77c0-48d8-834e26dc136a	2021-05-27 18:32:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:32:48.951+03	2021-05-27 18:32:48.958+03	
ef1629bb-d7a1-2705-0968-4aa62df579d2	2021-05-27 18:33:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:33:08.951+03	2021-05-27 18:33:08.963+03	
1a6b51ae-5b7d-dcf8-f777-bee1e9efda7f	2021-05-27 18:33:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:33:28.951+03	2021-05-27 18:33:28.959+03	
43947606-819f-491a-a8f1-975bc2e550f5	2021-05-27 18:33:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:33:48.951+03	2021-05-27 18:33:48.958+03	
c493d08a-efcc-c743-5c6c-05a26be3b282	2021-05-27 18:34:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:34:08.951+03	2021-05-27 18:34:08.958+03	
85ad7661-b297-c1ce-d85f-4ff9e0b51844	2021-05-27 18:34:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:34:28.951+03	2021-05-27 18:34:28.959+03	
d0a32551-d9ac-3324-f30a-9afc58d346f5	2021-05-27 18:34:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:34:48.951+03	2021-05-27 18:34:48.96+03	
bb223609-5f8d-8875-b52a-e8f7567a493f	2021-05-27 18:35:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:35:08.951+03	2021-05-27 18:35:08.959+03	
c0638108-d203-60d0-0082-a7c26a1447a5	2021-05-27 18:35:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:35:28.951+03	2021-05-27 18:35:28.96+03	
340cc169-79e5-215f-b60f-324153086651	2021-05-27 18:35:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:35:48.951+03	2021-05-27 18:35:48.96+03	
03833cea-9bc3-8625-c233-a29946047486	2021-05-27 18:35:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:35:58.951+03	2021-05-27 18:35:58.958+03	
1bbcb05c-786e-7f71-ea12-77f958eb0ac6	2021-05-27 18:36:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:36:18.951+03	2021-05-27 18:36:18.958+03	
ff0b7682-cd1d-9ad2-4214-29e4370ce37a	2021-05-27 18:36:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:36:38.951+03	2021-05-27 18:36:38.962+03	
4bcdf2a5-9c34-552d-d45f-c22dc76ddb7f	2021-05-27 18:36:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:36:58.951+03	2021-05-27 18:36:58.96+03	
b863378d-649d-f4b3-7adc-4b142e5e4cd2	2021-05-27 18:37:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:37:18.951+03	2021-05-27 18:37:18.958+03	
6a3e67cb-b76f-88d2-1426-c932dcdc4b5a	2021-05-27 18:37:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:37:38.951+03	2021-05-27 18:37:38.958+03	
d00b4e7c-4dc6-5fae-ce49-9ec00746b7c7	2021-05-27 18:37:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:37:58.951+03	2021-05-27 18:37:58.96+03	
7a7cd796-ed4a-236d-e866-0de1d05d9aec	2021-05-27 18:38:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:38:19.951+03	2021-05-27 18:38:19.958+03	
5d1e2807-27d4-edd9-d0f3-3b392657b781	2021-05-27 18:38:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:38:39.951+03	2021-05-27 18:38:39.958+03	
0205793a-8c04-eb03-c0bf-3f5f8ed4a526	2021-05-27 18:38:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:38:59.951+03	2021-05-27 18:38:59.958+03	
ed3f7e97-c3e6-5384-2cc8-34f703970e4c	2021-05-27 18:39:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:39:19.951+03	2021-05-27 18:39:19.957+03	
a0abf13b-382e-ccca-09aa-3139c59313c3	2021-05-27 18:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:39:39.951+03	2021-05-27 18:39:39.958+03	
342386fa-ee85-2dd3-fdad-24e3765bc1bc	2021-05-27 18:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:39:59.951+03	2021-05-27 18:39:59.958+03	
88871ef5-17bd-e9b2-9206-7c5d357fca2b	2021-05-27 18:40:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:40:09.951+03	2021-05-27 18:40:09.958+03	
58a50331-e92e-2e6d-8c60-a8a8442b9e5a	2021-05-27 18:40:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:40:29.951+03	2021-05-27 18:40:29.958+03	
06452822-23e0-c2bf-3ddc-1d47c86ce939	2021-05-27 18:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:40:49.951+03	2021-05-27 18:40:49.96+03	
9be8b409-36ea-9238-8f58-ae288f4ffe46	2021-05-27 18:41:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:41:09.951+03	2021-05-27 18:41:09.958+03	
e21f928f-a2db-548d-b3c5-862d9a3591b8	2021-05-27 18:41:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:41:29.951+03	2021-05-27 18:41:29.958+03	
b764ad8c-873e-9b86-920a-4cae3f9d8a18	2021-05-27 18:41:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:41:49.951+03	2021-05-27 18:41:49.959+03	
b8a83448-ec8e-8b5c-987a-98fe32e9a088	2021-05-27 18:42:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:42:10.952+03	2021-05-27 18:42:10.963+03	
c0309df3-a60d-934f-b42f-1af0a1e84423	2021-05-27 18:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:42:31.951+03	2021-05-27 18:42:31.958+03	
5bdc8776-08fb-41ce-0979-e0ac4cb3a162	2021-05-27 18:42:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:42:51.951+03	2021-05-27 18:42:51.96+03	
b867dabb-f1e7-44b6-c4f3-6144bf6f5dad	2021-05-27 18:43:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:43:12.951+03	2021-05-27 18:43:12.958+03	
fd6f7fe7-16cc-7d2a-e7ba-c0634ebb24b0	2021-05-27 18:43:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:43:32.952+03	2021-05-27 18:43:32.961+03	
7e6f9eab-4d8b-3921-eef6-dc0c086dfc67	2021-05-27 18:43:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:43:53.951+03	2021-05-27 18:43:53.958+03	
012867e2-78b9-a25e-24de-deee8dab2904	2021-05-27 18:44:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:44:13.951+03	2021-05-27 18:44:13.96+03	
29d9b9eb-3cb6-3518-af5a-45f7a0cee781	2021-05-27 18:44:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:44:33.951+03	2021-05-27 18:44:33.958+03	
319b22ed-08ed-9507-56f8-3ad59f6563ee	2021-05-27 18:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:44:53.951+03	2021-05-27 18:44:53.958+03	
981f2f36-7053-24ba-73b2-ded23eab2a48	2021-05-27 18:45:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:45:13.951+03	2021-05-27 18:45:13.958+03	
4d730bc2-24dc-3b57-3060-dd7526720b59	2021-05-27 18:45:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:45:33.951+03	2021-05-27 18:45:33.958+03	
65e15071-173b-36d9-5751-e376860e7bf8	2021-05-27 18:45:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:45:53.951+03	2021-05-27 18:45:53.958+03	
693cd376-008a-c3c1-d833-4ee35492ae0a	2021-05-27 18:46:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:46:13.952+03	2021-05-27 18:46:13.961+03	
232e9bbd-4636-3fe1-8ef5-ee47aa7b32bd	2021-05-27 18:46:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:46:34.951+03	2021-05-27 18:46:34.959+03	
6efc9421-2bff-6693-e210-6da033823bbf	2021-05-27 18:46:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:46:54.951+03	2021-05-27 18:46:54.959+03	
f64524be-5bda-ff03-b37b-8d92ee551a0f	2021-05-27 18:47:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:47:14.951+03	2021-05-27 18:47:14.959+03	
c2155bc4-a413-b21e-fc0d-e487c1c905fc	2021-05-27 18:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:47:34.951+03	2021-05-27 18:47:34.958+03	
9ab307f1-512d-a19c-84ad-dd3f4e76dd17	2021-05-27 18:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:47:54.951+03	2021-05-27 18:47:54.966+03	
4fa45bd9-372b-db77-410e-a8ca07b4ebe7	2021-05-27 18:48:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:48:14.951+03	2021-05-27 18:48:14.958+03	
dde56501-615c-ce05-b478-64fc6df13016	2021-05-27 18:48:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:48:34.951+03	2021-05-27 18:48:34.958+03	
a6de8da6-38c0-7af9-4f3e-86a46169e21f	2021-05-27 18:48:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:48:54.952+03	2021-05-27 18:48:54.959+03	
6ec12d56-f36d-0c27-e5a9-981877281aca	2021-05-27 18:49:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:49:15.951+03	2021-05-27 18:49:15.959+03	
c0b2d135-5b12-7659-d37f-1c749496a230	2021-05-27 18:49:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:49:25.951+03	2021-05-27 18:49:25.96+03	
9778baad-95a9-4005-de3e-a1d330392488	2021-05-27 18:49:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:49:45.951+03	2021-05-27 18:49:45.958+03	
a4c991ee-4cbf-7afa-9c91-473731f7746a	2021-05-27 18:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 18:50:00.951+03	2021-05-27 18:50:00.962+03	ERROR
fabdc66b-5d62-0c0e-cae6-a2bade184e6a	2021-05-27 18:50:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:50:15.952+03	2021-05-27 18:50:15.959+03	
b3067be3-cc17-62e6-75f6-4a7a3fbca469	2021-05-27 18:50:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:50:36.951+03	2021-05-27 18:50:37.006+03	
83668f5b-f25d-fe20-c815-3a905a9aceac	2021-05-27 18:50:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:50:56.951+03	2021-05-27 18:50:56.96+03	
943889bf-28fe-afae-5eac-603392b880e7	2021-05-27 18:51:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:51:16.951+03	2021-05-27 18:51:16.958+03	
d232f441-e969-712e-9c93-512ab96bd3f0	2021-05-27 18:51:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:51:36.951+03	2021-05-27 18:51:36.959+03	
d4fe0907-41d8-60f8-e24f-74625626f85f	2021-05-27 18:51:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:51:56.951+03	2021-05-27 18:51:56.958+03	
d004bdbb-f651-9339-5ce1-9700e1b6a988	2021-05-27 18:51:59.598	admin	2a3236b8-c048-3a9b-063e-381fedd5a391	localhost:8080/app-core	2021-05-27 18:51:59.598+03	2021-05-27 18:52:00.637+03	Done\n{Executed manually}
034d4ee9-c7e0-f97b-ae16-bc7494850467	2021-05-27 18:52:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:52:16.951+03	2021-05-27 18:52:16.966+03	
45282dff-2a1f-8ce3-71ff-be246761d553	2021-05-27 18:52:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:52:36.951+03	2021-05-27 18:52:36.959+03	
74119684-9b19-e629-8c8f-284a2f9989be	2021-05-27 18:52:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:52:56.951+03	2021-05-27 18:52:56.959+03	
a695dccd-8e73-852e-9883-4ef04377ff8a	2021-05-27 18:53:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:53:16.951+03	2021-05-27 18:53:16.957+03	
aebe9436-9b18-9c3f-1663-781023eed47b	2021-05-27 18:53:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:53:36.951+03	2021-05-27 18:53:36.959+03	
7674eacb-ef18-18fb-539c-323b14bde627	2021-05-27 18:54:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:54:06.951+03	2021-05-27 18:54:06.959+03	
83d20879-2add-e8a5-72fd-89ecbd04358b	2021-05-27 18:54:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:54:26.951+03	2021-05-27 18:54:26.958+03	
29090adb-c5a0-dbb7-dbfc-5b43b5458755	2021-05-27 18:54:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:54:46.951+03	2021-05-27 18:54:46.959+03	
13c25e0f-0a49-a07b-32be-dfa6d165a82d	2021-05-27 18:55:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:55:06.951+03	2021-05-27 18:55:06.959+03	
1f3daf44-decb-0b56-af1e-92ebc9e315d3	2021-05-27 18:55:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:55:26.952+03	2021-05-27 18:55:26.961+03	
dd72f318-2644-a4e0-6615-acc9b0fed18c	2021-05-27 18:55:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:55:47.952+03	2021-05-27 18:55:47.959+03	
af7d3d0b-5deb-fb1f-1ec5-c32171840ed2	2021-05-27 18:56:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:56:08.951+03	2021-05-27 18:56:08.957+03	
e7e52bf5-813f-8160-d234-562cc30da099	2021-05-27 18:56:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:56:28.951+03	2021-05-27 18:56:28.958+03	
54ded057-1be8-4e6b-1420-1e300d2e1b86	2021-05-27 18:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:56:48.951+03	2021-05-27 18:56:48.958+03	
a687194a-edb3-6266-e304-e47a34d7abfc	2021-05-27 18:38:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:38:29.951+03	2021-05-27 18:38:29.959+03	
7bbefeea-78c8-5dea-d9fa-9d619b0841ca	2021-05-27 18:38:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:38:49.951+03	2021-05-27 18:38:49.959+03	
1d0ca279-9874-2061-fdbb-079bf24a9761	2021-05-27 18:39:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:39:09.951+03	2021-05-27 18:39:09.957+03	
9410a1c5-9872-3d45-65c6-5897580dcdd5	2021-05-27 18:39:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:39:29.951+03	2021-05-27 18:39:29.958+03	
af44c478-d1da-2257-c182-822093fa6150	2021-05-27 18:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:39:49.951+03	2021-05-27 18:39:49.958+03	
9e291594-10e6-d120-c7df-727957ff97bd	2021-05-27 18:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 18:40:00.951+03	2021-05-27 18:40:00.963+03	ERROR
0ae56664-a738-fee7-fb13-5be4fb10dee8	2021-05-27 18:40:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:40:19.951+03	2021-05-27 18:40:19.958+03	
e1f71b26-6b1b-8d19-c96c-bb44b6903ec1	2021-05-27 18:40:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:40:39.951+03	2021-05-27 18:40:39.958+03	
a9777d0b-1017-1c2e-50bd-808750ae7b20	2021-05-27 18:40:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:40:59.951+03	2021-05-27 18:40:59.958+03	
3f76934c-07d4-626b-74bc-27bf48a7677b	2021-05-27 18:41:07.929	admin	2a3236b8-c048-3a9b-063e-381fedd5a391	localhost:8080/app-core	2021-05-27 18:41:07.928+03	2021-05-27 18:41:10.536+03	Done\n{Executed manually}
382ca982-d862-a517-bec9-af21640f20cd	2021-05-27 18:41:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:41:19.951+03	2021-05-27 18:41:19.958+03	
5c843d26-1273-f70a-37c6-da005db106f1	2021-05-27 18:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:41:39.951+03	2021-05-27 18:41:39.959+03	
a33424f4-dc25-2495-923a-a18a3172ab73	2021-05-27 18:41:55.487	admin	2a3236b8-c048-3a9b-063e-381fedd5a391	localhost:8080/app-core	2021-05-27 18:41:55.487+03	2021-05-27 18:41:58.269+03	Done\n{Executed manually}
91fa2715-bdf5-76f3-ee52-97435d6d7511	2021-05-27 18:41:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:41:59.952+03	2021-05-27 18:41:59.959+03	
43a8476a-2cc7-6eca-75c8-d52062909e9f	2021-05-27 18:42:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:42:21.951+03	2021-05-27 18:42:21.958+03	
29250625-e4cc-6c1e-32cc-16c2cc847ca5	2021-05-27 18:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:42:41.951+03	2021-05-27 18:42:41.958+03	
e89fcb9f-a317-bf2d-1b38-feae2ec2e09a	2021-05-27 18:43:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:43:01.952+03	2021-05-27 18:43:01.96+03	
c27c9706-f44f-cd3e-965e-ce3824016388	2021-05-27 18:43:08.541	admin	2a3236b8-c048-3a9b-063e-381fedd5a391	localhost:8080/app-core	2021-05-27 18:43:08.54+03	2021-05-27 18:43:10.9+03	Done\n{Executed manually}
0a880952-b044-a08d-878a-6e3362f4e20b	2021-05-27 18:43:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:43:22.951+03	2021-05-27 18:43:22.958+03	
46002af6-98cd-a6de-d665-6a9e961284c7	2021-05-27 18:43:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:43:43.951+03	2021-05-27 18:43:43.958+03	
1334fcb2-2e80-03de-f385-2f1c9409d119	2021-05-27 18:44:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:44:03.951+03	2021-05-27 18:44:03.958+03	
fcd02000-0537-ca7f-81b4-92b76d20f03e	2021-05-27 18:44:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:44:23.951+03	2021-05-27 18:44:23.959+03	
dd3bbcdd-4e43-ddd5-5bed-f9c9c0f6a4ac	2021-05-27 18:44:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:44:43.951+03	2021-05-27 18:44:43.958+03	
93f5968d-5a63-473a-cd17-a739781ffc38	2021-05-27 18:45:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:45:03.951+03	2021-05-27 18:45:03.958+03	
0f5f0406-f8d2-e9e4-e3ee-d0606d1db633	2021-05-27 18:45:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:45:23.951+03	2021-05-27 18:45:23.958+03	
891c46c9-e61f-9a83-a541-ccdac0dce81f	2021-05-27 18:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:45:43.951+03	2021-05-27 18:45:43.959+03	
ef208c88-02ce-96b1-880b-9413314c3c8c	2021-05-27 18:45:45.754	admin	2a3236b8-c048-3a9b-063e-381fedd5a391	localhost:8080/app-core	2021-05-27 18:45:45.754+03	2021-05-27 18:45:46.386+03	Done\n{Executed manually}
e976a4b2-5324-198c-ed1d-cf13ab0eeb22	2021-05-27 18:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:46:03.951+03	2021-05-27 18:46:03.96+03	
3228b147-e642-796c-47c4-ef2fc3dde50d	2021-05-27 18:46:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:46:24.951+03	2021-05-27 18:46:24.958+03	
a86418b2-1e7d-817e-8d28-bff1a25fa62b	2021-05-27 18:46:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:46:44.951+03	2021-05-27 18:46:44.96+03	
0926c784-3f5a-881f-4396-8695ea7a3cee	2021-05-27 18:47:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:47:04.951+03	2021-05-27 18:47:04.958+03	
1bbdc0fe-386b-265a-75a8-462110feb946	2021-05-27 18:47:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:47:24.951+03	2021-05-27 18:47:24.959+03	
0c9cb8b9-4268-283d-8712-780bb3502cef	2021-05-27 18:47:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:47:44.951+03	2021-05-27 18:47:44.958+03	
582a4749-c9ad-7b54-86d7-406064f87458	2021-05-27 18:48:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:48:04.951+03	2021-05-27 18:48:04.959+03	
57b369fd-2458-558b-ba9f-a84505b8f88c	2021-05-27 18:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:48:24.951+03	2021-05-27 18:48:24.961+03	
1213638f-382d-2b85-78b7-5078bdce1023	2021-05-27 18:48:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:48:44.951+03	2021-05-27 18:48:44.959+03	
2ae94dd5-e89d-1d4f-c444-b09b0ca6dec6	2021-05-27 18:49:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:49:05.951+03	2021-05-27 18:49:05.959+03	
b8830ef6-1946-2ae7-c258-5db93373240c	2021-05-27 18:49:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:49:35.951+03	2021-05-27 18:49:35.958+03	
d69e047a-f093-6fd8-f3b7-ad3908c9fca7	2021-05-27 18:49:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:49:55.951+03	2021-05-27 18:49:55.958+03	
935e0597-4e6a-42fa-8642-dfedffabaa00	2021-05-27 18:50:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:50:05.951+03	2021-05-27 18:50:05.961+03	
55734a03-2daf-10d5-bd3c-b32c2e08f669	2021-05-27 18:50:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:50:26.951+03	2021-05-27 18:50:26.959+03	
be08470a-f92c-b7a2-b7f0-db1fd4002879	2021-05-27 18:50:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:50:46.951+03	2021-05-27 18:50:46.958+03	
c4ac74c9-0541-6823-e4cd-a1f7625db52a	2021-05-27 18:51:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:51:06.951+03	2021-05-27 18:51:06.962+03	
272a74f6-cd25-891c-9c2b-6debb376ac17	2021-05-27 18:51:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:51:26.951+03	2021-05-27 18:51:26.958+03	
7d9fc188-69e7-8a18-b925-edb9200cfa65	2021-05-27 18:51:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:51:46.951+03	2021-05-27 18:51:46.958+03	
9e5b15aa-b0ff-23fe-cd48-acef51d6feb8	2021-05-27 18:52:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:52:06.951+03	2021-05-27 18:52:06.96+03	
46fb5995-d8a0-dcc6-e5d4-1a55532ed766	2021-05-27 18:52:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:52:26.951+03	2021-05-27 18:52:26.958+03	
6d4c081b-4e89-d7ce-ac1e-a89616f7c790	2021-05-27 18:52:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:52:46.951+03	2021-05-27 18:52:46.958+03	
bddc0297-5bb0-5db7-1cb4-c1e12a52eac9	2021-05-27 18:53:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:53:06.951+03	2021-05-27 18:53:06.958+03	
eb36f5f9-3d61-838b-cae9-7b7429337c39	2021-05-27 18:53:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:53:26.951+03	2021-05-27 18:53:26.958+03	
47a8c2de-7c5f-e057-d1cf-807a954a2288	2021-05-27 18:53:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:53:46.951+03	2021-05-27 18:53:46.959+03	
6cf67644-fc82-ccc1-f821-f84273f23ebd	2021-05-27 18:53:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:53:56.951+03	2021-05-27 18:53:56.959+03	
27607ed3-d3cf-4501-9830-3d231a335451	2021-05-27 18:54:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:54:16.951+03	2021-05-27 18:54:16.958+03	
e3389bf5-fb23-75c8-498b-0c1fc3fd849e	2021-05-27 18:54:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:54:36.951+03	2021-05-27 18:54:36.958+03	
fa331380-7d21-c90e-cf30-5114bfce2846	2021-05-27 18:54:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:54:56.951+03	2021-05-27 18:54:56.958+03	
85621e1b-7036-0063-feef-b14fa7f638b5	2021-05-27 18:55:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:55:16.952+03	2021-05-27 18:55:16.959+03	
3f4a5cdb-3259-fd18-eebc-a2d4bd9c25a7	2021-05-27 18:55:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:55:37.952+03	2021-05-27 18:55:37.961+03	
e056abc7-03a2-8664-1539-da11c3daacef	2021-05-27 18:55:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:55:57.952+03	2021-05-27 18:55:57.959+03	
b8efa2fb-8945-772a-060b-2d956a861184	2021-05-27 18:56:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:56:18.951+03	2021-05-27 18:56:18.957+03	
cd5fd264-bfa2-1cf7-fce3-acbdf9a9c0bb	2021-05-27 18:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:56:38.951+03	2021-05-27 18:56:38.96+03	
63e6c007-6e1c-1453-aef8-7eb0805024da	2021-05-27 18:56:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:56:58.951+03	2021-05-27 18:56:58.961+03	
6758d2bd-6bba-6986-34be-b88ca98874cf	2021-05-27 18:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:57:18.951+03	2021-05-27 18:57:18.963+03	
2fc71bfe-bcab-1655-7edf-3a67ff4cd69a	2021-05-27 18:57:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:57:08.951+03	2021-05-27 18:57:08.96+03	
3f7b16f3-00fb-4052-5725-5f647c0dd16d	2021-05-27 18:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:57:38.951+03	2021-05-27 18:57:38.958+03	
7089e5d8-b2b8-4de0-d93a-4d669add3407	2021-05-27 18:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:57:58.951+03	2021-05-27 18:57:58.958+03	
3363e36e-4e6f-b944-631e-59d6646f4b2a	2021-05-27 18:58:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:58:18.951+03	2021-05-27 18:58:18.957+03	
76914ddb-812a-5be5-8ffa-847617ca1af9	2021-05-27 18:58:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:58:38.952+03	2021-05-27 18:58:38.958+03	
769880fb-e109-82c7-4030-6a9ef59d5cfa	2021-05-27 18:58:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:58:59.951+03	2021-05-27 18:58:59.958+03	
267b9633-9f6b-2c95-5da5-f09cb92920f1	2021-05-27 18:59:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:59:19.951+03	2021-05-27 18:59:19.958+03	
403bc77f-81a4-e538-5111-a06d2706d3ae	2021-05-27 18:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:59:39.951+03	2021-05-27 18:59:39.957+03	
0fc2a308-fae1-a7b7-4ac9-f9754b96b124	2021-05-27 18:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:59:59.951+03	2021-05-27 18:59:59.958+03	
6bcd6698-4c04-32db-aa1c-ea29659be8ff	2021-05-27 19:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:00:09.951+03	2021-05-27 19:00:09.958+03	
89119597-527f-0bbd-dbb0-1bfa56ef75ea	2021-05-27 19:00:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:00:29.951+03	2021-05-27 19:00:29.957+03	
31da63cc-e1ca-fb26-3a62-cc8da435ea47	2021-05-27 19:00:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:00:49.951+03	2021-05-27 19:00:49.957+03	
dced3edd-864b-242c-d946-c6fa4461b377	2021-05-27 19:01:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:01:09.951+03	2021-05-27 19:01:09.958+03	
b12afeca-e55d-d34e-700a-ba94b6678f73	2021-05-27 19:01:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:01:29.951+03	2021-05-27 19:01:29.958+03	
2ce3e296-e651-4de5-948f-d9f7a0013a3f	2021-05-27 19:01:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:01:49.951+03	2021-05-27 19:01:49.957+03	
3ebd3068-6de1-cd07-ec50-ab1251ed7c55	2021-05-27 19:02:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:02:09.951+03	2021-05-27 19:02:09.961+03	
8658c885-0288-6023-9f33-91028e3f758c	2021-05-27 19:02:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:02:29.951+03	2021-05-27 19:02:29.96+03	
1ecb13b4-4122-586b-9927-e449c3c94970	2021-05-27 19:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:02:50.951+03	2021-05-27 19:02:50.959+03	
ea55dc60-121d-88bb-c2d3-16af7482e33f	2021-05-27 19:03:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:03:10.951+03	2021-05-27 19:03:10.961+03	
e31680a9-8851-ea2d-38b0-51e1dd1d5238	2021-05-27 19:03:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:03:30.951+03	2021-05-27 19:03:30.959+03	
0a41c49d-14c6-dba6-cf46-86bdc1326ef4	2021-05-27 19:03:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:03:50.951+03	2021-05-27 19:03:50.958+03	
3a52d7a5-e1e9-d4ee-4509-2f28e89aaddf	2021-05-27 19:04:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:04:10.951+03	2021-05-27 19:04:10.957+03	
73561bc7-e1c2-8eee-2f70-0ccbc1fac134	2021-05-27 19:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:04:30.951+03	2021-05-27 19:04:30.959+03	
9d4bcdee-f98c-21f6-1ab1-afcdc07e24e5	2021-05-27 19:04:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:04:50.951+03	2021-05-27 19:04:50.958+03	
12fb8261-ed89-96f4-1372-c5306a98b136	2021-05-27 19:05:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:05:10.951+03	2021-05-27 19:05:10.957+03	
cf825bae-4c5a-7d7b-3f78-6c48835e5983	2021-05-27 19:05:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:05:30.951+03	2021-05-27 19:05:30.958+03	
630f361f-de5e-e8d0-f3e8-a232ba24ad7b	2021-05-27 19:06:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:06:00.951+03	2021-05-27 19:06:00.959+03	
7c1a1170-09bc-16fd-048b-a3df0650f976	2021-05-27 19:06:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:06:10.951+03	2021-05-27 19:06:10.978+03	
70af09e7-55f1-bf4e-01ec-a71eea4b856d	2021-05-27 19:06:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:06:40.951+03	2021-05-27 19:06:40.958+03	
26c12a7d-8263-d204-6e9d-9b8642f75fbc	2021-05-27 19:07:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:07:00.951+03	2021-05-27 19:07:00.959+03	
5de1e8ea-f23f-7b11-025f-c68ededde7cc	2021-05-27 19:07:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:07:20.951+03	2021-05-27 19:07:20.958+03	
52414d35-95dc-b204-5516-fc1e39d52a55	2021-05-27 19:07:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:07:40.951+03	2021-05-27 19:07:40.959+03	
0b78c0d0-7e00-9b92-7fad-47f5c2c548ff	2021-05-27 19:08:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:08:00.951+03	2021-05-27 19:08:00.959+03	
1e99ed56-b852-db31-0990-b66a70e7e949	2021-05-27 19:08:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:08:20.951+03	2021-05-27 19:08:20.957+03	
7e500bbd-af41-85b9-b1bc-0d44a1615d06	2021-05-27 19:08:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:08:40.952+03	2021-05-27 19:08:40.958+03	
116a22cf-45eb-3dd0-0c53-0ff70a0e593e	2021-05-27 19:09:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:09:01.951+03	2021-05-27 19:09:01.959+03	
667aa92a-67c7-d442-5a3f-cbc9544864d6	2021-05-27 19:09:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:09:21.951+03	2021-05-27 19:09:21.958+03	
f4196152-0329-cf07-3d73-44432aa9c7af	2021-05-27 19:09:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:09:41.951+03	2021-05-27 19:09:41.958+03	
18fd4297-8e65-ee03-6bb8-34dbd54cc859	2021-05-27 19:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 19:10:00.951+03	2021-05-27 19:10:00.956+03	ERROR
e06a2d5c-1150-ba36-0713-4a4e6cd80c62	2021-05-27 19:10:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:10:11.951+03	2021-05-27 19:10:11.959+03	
b3c98b6f-c9cc-3ca4-872c-0d177ef30e03	2021-05-27 19:10:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:10:31.951+03	2021-05-27 19:10:31.958+03	
a76c03c8-d97f-ad9a-ee93-e68a76ac2175	2021-05-27 19:10:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:10:51.951+03	2021-05-27 19:10:51.958+03	
aae28f79-313d-9ba9-0f33-528cb5e6bde6	2021-05-27 19:11:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:11:11.951+03	2021-05-27 19:11:11.957+03	
8f71aff9-c514-1d0d-d9d8-1620441c0efb	2021-05-27 19:11:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:11:31.951+03	2021-05-27 19:11:31.96+03	
b894fadd-ba31-b0fa-f315-96c9187d6295	2021-05-27 19:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:11:51.951+03	2021-05-27 19:11:51.958+03	
7dbe813b-d3a1-4d3c-640b-803b36518a6c	2021-05-27 19:12:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:12:11.951+03	2021-05-27 19:12:11.958+03	
b7f3226f-5e9d-ec3b-c0f6-71db49b53507	2021-05-27 19:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:12:31.951+03	2021-05-27 19:12:31.958+03	
ddea2b79-5228-c19d-3119-243527e60f9f	2021-05-27 19:12:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:12:51.952+03	2021-05-27 19:12:51.96+03	
c689107c-018d-55ba-87a6-bbdaf7919e2c	2021-05-27 19:13:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:13:12.951+03	2021-05-27 19:13:12.958+03	
2bcd6e88-b2f1-6133-bc00-7fab62c52eb2	2021-05-27 19:13:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:13:32.953+03	2021-05-27 19:13:32.96+03	
407d94c6-0eb2-ab4f-9d15-d286e15eaa62	2021-05-27 19:13:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:13:53.951+03	2021-05-27 19:13:53.961+03	
0dfe8f29-9dfe-c068-dd3b-ab1c6e581d8d	2021-05-27 19:14:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:14:13.951+03	2021-05-27 19:14:13.958+03	
3ec835b2-b2b6-c52b-4171-93cc3fa4ebb8	2021-05-27 19:14:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:14:33.951+03	2021-05-27 19:14:33.958+03	
a5b0a283-3952-bd40-db37-8b642c6da380	2021-05-27 19:14:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:14:53.951+03	2021-05-27 19:14:53.959+03	
7b529bf6-1c57-6b0d-1c68-b44cc4b26515	2021-05-27 19:15:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:15:13.951+03	2021-05-27 19:15:13.959+03	
efb77108-bdb3-1833-6ea0-b855cc1eb1a2	2021-05-27 19:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:15:33.951+03	2021-05-27 19:15:33.959+03	
3f0d3ecb-8761-e9fc-7fcf-99c85e8b17df	2021-05-27 19:15:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:15:53.951+03	2021-05-27 19:15:53.957+03	
d145ae57-0679-3235-c016-b06b95bedb05	2021-05-27 19:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:16:13.951+03	2021-05-27 19:16:13.962+03	
761c2ff4-8c55-876b-6494-0021ac3b0ded	2021-05-27 19:16:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:16:33.951+03	2021-05-27 19:16:33.958+03	
5cb09aaf-794a-fd0f-d208-0b8410d5e196	2021-05-27 19:16:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:16:53.951+03	2021-05-27 19:16:53.959+03	
45c0f6aa-cab6-a87c-5ea5-9c88322338b9	2021-05-27 19:17:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:17:13.951+03	2021-05-27 19:17:14.046+03	
5ffbbf4f-444c-51bb-c14b-9cbd8b68bdc0	2021-05-27 19:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:17:33.951+03	2021-05-27 19:17:33.958+03	
bad8785a-96df-be78-a954-35d77f3ed238	2021-05-27 19:17:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:17:53.951+03	2021-05-27 19:17:53.959+03	
536b605e-6ed8-1012-86ad-eb6091196b2f	2021-05-27 18:57:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:57:28.951+03	2021-05-27 18:57:28.959+03	
9625f31f-cd86-1315-70b2-0cf30f75bc8f	2021-05-27 18:57:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:57:48.951+03	2021-05-27 18:57:48.958+03	
b6f81e4d-7956-c276-2067-e592327bbf7f	2021-05-27 18:58:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:58:08.951+03	2021-05-27 18:58:08.958+03	
0438fd75-8565-2cd7-6a9b-e7c1ba3196a7	2021-05-27 18:58:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:58:28.951+03	2021-05-27 18:58:28.958+03	
c0a7e39c-9bcf-7a4a-b06f-1157b0d285a0	2021-05-27 18:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:58:49.951+03	2021-05-27 18:58:49.959+03	
95c38064-9c91-07da-b11e-2f7b2a5c7ba3	2021-05-27 18:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:59:09.951+03	2021-05-27 18:59:09.958+03	
9494eb91-c895-12ef-7f43-030adfcdd9d3	2021-05-27 18:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:59:29.951+03	2021-05-27 18:59:29.957+03	
5cb99c6d-93ba-de30-7f9e-20bfaf49666a	2021-05-27 18:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 18:59:49.951+03	2021-05-27 18:59:49.959+03	
b26e4024-dc07-e43f-127e-63a95a3c7749	2021-05-27 19:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 19:00:00.951+03	2021-05-27 19:00:00.958+03	ERROR
395052cb-25b1-73fa-f2a6-178a8e921742	2021-05-27 19:00:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:00:19.951+03	2021-05-27 19:00:19.959+03	
62dd30b7-f302-af5f-5ac8-298a30f4d11a	2021-05-27 19:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:00:39.951+03	2021-05-27 19:00:39.959+03	
2fead7f0-0394-7718-431f-7641d38ef22e	2021-05-27 19:00:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:00:59.951+03	2021-05-27 19:00:59.957+03	
ee5e8c23-13e9-469d-c965-691f34c0b4b0	2021-05-27 19:01:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:01:19.951+03	2021-05-27 19:01:19.958+03	
8398e107-33a8-b32a-f8c2-997127b3fc3b	2021-05-27 19:01:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:01:39.951+03	2021-05-27 19:01:39.958+03	
cd22c71b-b5c1-7eae-7a8a-1acb08cc6721	2021-05-27 19:01:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:01:59.951+03	2021-05-27 19:01:59.957+03	
01072084-0b41-46b1-204e-08ed977e4731	2021-05-27 19:02:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:02:19.951+03	2021-05-27 19:02:19.958+03	
e13883b0-bc83-571a-2bd3-7eca864dcb54	2021-05-27 19:02:39.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:02:39.952+03	2021-05-27 19:02:39.959+03	
5dd4676b-f27c-8f8e-6d3f-4956d180db04	2021-05-27 19:03:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:03:00.951+03	2021-05-27 19:03:00.958+03	
0d7f093a-0181-4218-7d63-ececa67c5dab	2021-05-27 19:03:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:03:20.951+03	2021-05-27 19:03:20.957+03	
23f91cfe-8eed-af7c-b25b-866e888838d8	2021-05-27 19:03:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:03:40.951+03	2021-05-27 19:03:40.958+03	
aa0b91b3-8f2e-c873-ad1f-daf306b77dd7	2021-05-27 19:04:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:04:00.951+03	2021-05-27 19:04:00.958+03	
7283e30f-18e4-3beb-ab2a-0dca499a1b3e	2021-05-27 19:04:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:04:20.951+03	2021-05-27 19:04:20.959+03	
09870fa6-9130-0c15-ac60-613d125ff50c	2021-05-27 19:04:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:04:40.951+03	2021-05-27 19:04:40.958+03	
12abbb7b-df0a-ba3c-837e-2f7a58e142f5	2021-05-27 19:05:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:05:00.951+03	2021-05-27 19:05:00.959+03	
d58bc746-3643-c262-761a-e20a1e4c58d1	2021-05-27 19:05:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:05:20.951+03	2021-05-27 19:05:20.958+03	
e312b624-4966-1603-6b35-b161cb9a92db	2021-05-27 19:05:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:05:40.951+03	2021-05-27 19:05:40.959+03	
1d428da6-43d4-a4c5-87c7-4b1c245fdd73	2021-05-27 19:05:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:05:50.951+03	2021-05-27 19:05:50.958+03	
78396180-a5c3-c859-c06d-3a2eb58eac42	2021-05-27 19:06:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:06:20.951+03	2021-05-27 19:06:20.958+03	
98a49133-320d-c1fc-b76e-b323bab7dd3a	2021-05-27 19:06:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:06:30.951+03	2021-05-27 19:06:30.959+03	
25a24d36-c23b-058c-a317-60e23e26b169	2021-05-27 19:06:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:06:50.951+03	2021-05-27 19:06:50.958+03	
3cbf7cac-7dbc-3493-2bb9-2890968d56fc	2021-05-27 19:07:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:07:10.951+03	2021-05-27 19:07:10.958+03	
7958af05-ce46-4ec8-92de-6799cdb6e816	2021-05-27 19:07:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:07:30.951+03	2021-05-27 19:07:30.958+03	
fc6fa4c0-7b79-1867-6ea0-74e20e559e2a	2021-05-27 19:07:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:07:50.951+03	2021-05-27 19:07:50.957+03	
16494aa1-db5f-66b1-e4e5-e02057e324bf	2021-05-27 19:08:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:08:10.951+03	2021-05-27 19:08:10.958+03	
f2e040c2-36f8-f8d0-ec72-b98f33bbea1d	2021-05-27 19:08:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:08:30.951+03	2021-05-27 19:08:30.959+03	
c29e3688-2e54-e027-101d-2631cce37225	2021-05-27 19:08:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:08:51.951+03	2021-05-27 19:08:51.959+03	
ae708cf3-438e-4866-d006-b08b5e274279	2021-05-27 19:09:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:09:11.951+03	2021-05-27 19:09:11.958+03	
4e84067e-009d-7c6b-49ed-c547cc96cf08	2021-05-27 19:09:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:09:31.951+03	2021-05-27 19:09:31.957+03	
d440cd7e-7143-6b1a-3880-229a1b8f0952	2021-05-27 19:09:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:09:51.951+03	2021-05-27 19:09:51.958+03	
ed0b0a6a-df09-fa1e-41c6-b98510c08cce	2021-05-27 19:10:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:10:01.951+03	2021-05-27 19:10:01.958+03	
07d6b7ff-64c5-c3cd-c466-1d551d9b2258	2021-05-27 19:10:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:10:21.951+03	2021-05-27 19:10:21.961+03	
068c0e62-b8fc-4453-fa35-5f0651688a36	2021-05-27 19:10:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:10:41.951+03	2021-05-27 19:10:41.961+03	
202b21bb-f3ac-e668-b4b7-25975cdae29c	2021-05-27 19:10:43.634	admin	2a3236b8-c048-3a9b-063e-381fedd5a391	localhost:8080/app-core	2021-05-27 19:10:43.634+03	2021-05-27 19:10:45.31+03	Done\n{Executed manually}
70b56552-a7f4-5947-fb8c-3113a2c06dd0	2021-05-27 19:11:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:11:01.951+03	2021-05-27 19:11:01.958+03	
704dbd82-6ed2-c5b3-ea4e-7a32eb2c93f8	2021-05-27 19:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:11:21.951+03	2021-05-27 19:11:21.957+03	
416cfa2c-bc00-65c2-539e-b33086e52491	2021-05-27 19:11:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:11:41.951+03	2021-05-27 19:11:41.959+03	
b6bcac5b-ff8c-7afe-72de-5910ac34cddb	2021-05-27 19:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:12:01.951+03	2021-05-27 19:12:01.958+03	
1c770890-2a5a-ddb9-c37a-eb6bf18d7e45	2021-05-27 19:12:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:12:21.951+03	2021-05-27 19:12:21.96+03	
23b71077-2244-78c1-293d-3660fc293471	2021-05-27 19:12:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:12:41.951+03	2021-05-27 19:12:41.958+03	
e83b0444-941b-4415-618e-4065799902d8	2021-05-27 19:13:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:13:02.951+03	2021-05-27 19:13:02.958+03	
6bd44a0d-b084-0c13-a499-e7cf7dcec56a	2021-05-27 19:13:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:13:22.951+03	2021-05-27 19:13:22.96+03	
cc6d414c-a134-d301-d18b-4d84ce7fd783	2021-05-27 19:13:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:13:43.951+03	2021-05-27 19:13:43.957+03	
758141a5-c6d5-aa6c-d690-4e0310f64759	2021-05-27 19:14:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:14:03.951+03	2021-05-27 19:14:03.959+03	
c73f3559-0622-6900-9596-e71d5f736306	2021-05-27 19:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:14:23.951+03	2021-05-27 19:14:23.957+03	
21b71d1d-faf4-c541-97a5-d2e5fffe8f9e	2021-05-27 19:14:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:14:43.951+03	2021-05-27 19:14:43.958+03	
bf59215b-f2e1-53f4-b5fd-fc1e0c89f0eb	2021-05-27 19:15:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:15:03.951+03	2021-05-27 19:15:03.963+03	
c5cbaed8-4a05-cfca-d009-76af463fdcae	2021-05-27 19:15:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:15:23.951+03	2021-05-27 19:15:23.96+03	
b14ac20a-18fa-9482-ee01-f9371a220e23	2021-05-27 19:15:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:15:43.951+03	2021-05-27 19:15:43.957+03	
64bf0f59-1501-37f0-9c71-9002b4d10442	2021-05-27 19:16:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:16:03.951+03	2021-05-27 19:16:03.96+03	
f29a45d7-3ad4-8dd4-f99b-f50313ce2636	2021-05-27 19:16:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:16:23.951+03	2021-05-27 19:16:23.958+03	
1bf11137-bb46-9d31-a443-ac4c24a6e0f5	2021-05-27 19:16:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:16:43.951+03	2021-05-27 19:16:43.958+03	
98ebeb7f-02ca-ed45-d0aa-09a06e7c10f7	2021-05-27 19:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:17:03.951+03	2021-05-27 19:17:03.958+03	
24bb524c-d6b7-4e44-5a93-fb7c0649dd59	2021-05-27 19:17:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:17:23.951+03	2021-05-27 19:17:23.961+03	
ad55e16e-f04e-59d2-3c80-f58ec86c93b5	2021-05-27 19:17:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:17:43.951+03	2021-05-27 19:17:43.958+03	
0361e237-e8e5-508e-1bfb-0fd2c83624d0	2021-05-27 19:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:18:03.951+03	2021-05-27 19:18:03.959+03	
a2b039d8-4d5f-5acc-5545-f77ee650064e	2021-05-27 19:18:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:18:23.951+03	2021-05-27 19:18:23.957+03	
7154ca97-38a3-0b26-6ca4-4ae282579427	2021-05-27 19:18:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:18:43.951+03	2021-05-27 19:18:43.958+03	
d3c72770-4579-54df-871a-9405e9ef7db8	2021-05-27 19:19:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:19:03.951+03	2021-05-27 19:19:03.958+03	
411497f0-e985-8558-6de0-ddb2559e5cd2	2021-05-27 19:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:19:23.951+03	2021-05-27 19:19:23.958+03	
82d79bd7-5267-b419-6834-fc3101562244	2021-05-27 19:19:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:19:43.951+03	2021-05-27 19:19:43.959+03	
e9ffa488-2bc3-f1f0-6c8a-54974f53bdb6	2021-05-27 19:20:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 19:20:00.951+03	2021-05-27 19:20:00.956+03	ERROR
02dad584-01d6-36e9-b85f-d3172a0cab0f	2021-05-27 19:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:20:13.951+03	2021-05-27 19:20:13.958+03	
1392b03e-8d63-e5fd-fe2a-6685990abff5	2021-05-27 19:20:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:20:33.951+03	2021-05-27 19:20:33.957+03	
aa04831d-948d-64f6-4e56-75b3c9cd6622	2021-05-27 19:20:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:20:53.951+03	2021-05-27 19:20:53.957+03	
0c3d0eed-4c90-6296-6e87-3174358092ee	2021-05-27 19:21:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:21:13.951+03	2021-05-27 19:21:14.367+03	
ab333f92-2ef5-db11-0848-e09770f52a60	2021-05-27 19:21:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:21:33.951+03	2021-05-27 19:21:33.958+03	
945da16a-7a70-0b72-17a4-b5939be7ce32	2021-05-27 19:21:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:21:53.951+03	2021-05-27 19:21:53.958+03	
3716ccd7-9e77-9b29-4222-e2b55ef9cf94	2021-05-27 19:22:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:22:13.951+03	2021-05-27 19:22:14.196+03	
637c25cf-e195-c48c-8ffc-7e685630a2a2	2021-05-27 19:22:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:22:33.951+03	2021-05-27 19:22:33.957+03	
f1b5dab9-7659-967e-ced1-d3618cedec71	2021-05-27 19:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:22:53.951+03	2021-05-27 19:22:53.959+03	
d6c3cebb-81e2-a5b0-c764-c90a8ca23a48	2021-05-27 19:23:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:23:13.951+03	2021-05-27 19:23:13.958+03	
cd6a47fd-f31e-f012-bbe6-dd2f77b822a7	2021-05-27 19:23:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:23:33.951+03	2021-05-27 19:23:33.958+03	
0f586866-280e-15ec-1236-cf4df9ae34cf	2021-05-27 19:23:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:23:53.951+03	2021-05-27 19:23:53.958+03	
fe9a033d-d368-4e27-9352-944f98ea8b42	2021-05-27 19:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:24:13.951+03	2021-05-27 19:24:13.958+03	
536fa826-1a8b-0cd0-6ba6-7a92a9ff78e7	2021-05-27 19:24:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:24:44.951+03	2021-05-27 19:24:44.958+03	
740c16f3-56df-384c-40dd-678d2f215dc1	2021-05-27 19:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:25:04.951+03	2021-05-27 19:25:04.958+03	
a363dde5-5848-cabf-2701-896b392d162f	2021-05-27 19:25:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:25:24.951+03	2021-05-27 19:25:24.959+03	
568f2a9b-d994-cc6b-fee1-fe1830968e5b	2021-05-27 19:25:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:25:44.951+03	2021-05-27 19:25:44.958+03	
ba9c055a-3409-7da5-33fe-03d355816b61	2021-05-27 19:26:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:26:04.951+03	2021-05-27 19:26:04.959+03	
8798d843-e62c-72e6-e877-c35211450261	2021-05-27 19:26:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:26:25.952+03	2021-05-27 19:26:25.958+03	
40fa3fec-a881-7a94-63c8-d9fad0a868b4	2021-05-27 19:26:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:26:46.951+03	2021-05-27 19:26:46.958+03	
89e421b9-426d-0fdf-161a-d697410014e8	2021-05-27 19:27:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:27:07.952+03	2021-05-27 19:27:07.959+03	
5dea3eee-ba39-8000-0dbd-b3f0b37fcd87	2021-05-27 19:27:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:27:28.951+03	2021-05-27 19:27:28.958+03	
6af09150-e0a4-d435-62c1-dd79023af4f4	2021-05-27 19:27:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:27:48.952+03	2021-05-27 19:27:48.958+03	
89a8a123-154e-61f9-9d97-3a122d0c3816	2021-05-27 19:28:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:28:09.951+03	2021-05-27 19:28:09.958+03	
2d4a9369-efe0-0ed2-0e37-849b6c735a8f	2021-05-27 19:28:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:28:29.951+03	2021-05-27 19:28:29.958+03	
51c34b78-bb00-4ab5-8d26-f8b398765498	2021-05-27 19:28:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:28:49.951+03	2021-05-27 19:28:49.958+03	
74c7fd6f-f9bb-3d1b-231e-5c0ed15fa4b5	2021-05-27 19:29:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:29:09.951+03	2021-05-27 19:29:09.959+03	
ef47a0f7-93e3-dfe0-0aaa-350c8eae3f2d	2021-05-27 19:29:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:29:29.951+03	2021-05-27 19:29:29.957+03	
76e12ad2-b1c6-e346-9b46-f896a42f0713	2021-05-27 19:29:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:29:49.951+03	2021-05-27 19:29:49.958+03	
33a35626-9872-7af4-36ac-c6a3386204ae	2021-05-27 19:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 19:30:00.951+03	2021-05-27 19:30:00.957+03	ERROR
cf9d8b2a-4700-30b7-a343-03a9d2519d18	2021-05-27 19:30:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:30:19.951+03	2021-05-27 19:30:19.961+03	
17c3d20c-9707-65be-41d8-6e7ae127802c	2021-05-27 19:30:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:30:39.951+03	2021-05-27 19:30:39.959+03	
8bf20536-97a2-f4dd-c0aa-4473b98b8d51	2021-05-27 19:31:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:31:00.951+03	2021-05-27 19:31:00.97+03	
4d2b7e8d-4c30-97e1-296f-32c1fa3b594d	2021-05-27 19:31:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:31:20.951+03	2021-05-27 19:31:20.958+03	
dacb9402-5769-4ce8-5f9f-827da266969e	2021-05-27 19:31:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:31:41.951+03	2021-05-27 19:31:41.958+03	
b258b618-e7d9-5a4b-c090-e4bb58ad6494	2021-05-27 19:32:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:32:01.951+03	2021-05-27 19:32:01.958+03	
5276d28d-8b16-73f0-30b0-bb70f91a2eb8	2021-05-27 19:32:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:32:21.951+03	2021-05-27 19:32:21.958+03	
914db81a-aa8f-159c-18ed-db1279996db5	2021-05-27 19:32:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:32:41.951+03	2021-05-27 19:32:41.959+03	
1beda27b-2847-cf18-3930-4fcb479cab38	2021-05-27 19:33:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:33:01.951+03	2021-05-27 19:33:01.958+03	
9928b57c-a520-6385-34ea-1dd7ec17d4ba	2021-05-27 19:33:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:33:21.951+03	2021-05-27 19:33:21.958+03	
94e0e895-627d-7dee-e1a2-a51b4f580e68	2021-05-27 19:33:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:33:41.951+03	2021-05-27 19:33:41.959+03	
9d4349e5-1baa-f6c4-d81f-6c94a9c1be90	2021-05-27 19:34:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:34:01.951+03	2021-05-27 19:34:01.958+03	
3c89f9b3-6de5-4830-fa14-d420412f8db2	2021-05-27 19:34:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:34:21.951+03	2021-05-27 19:34:21.957+03	
1af5d312-84ea-d63b-3269-966d8dacda8a	2021-05-27 19:34:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:34:41.951+03	2021-05-27 19:34:41.958+03	
8fac2688-497f-24b1-e087-dd61d5264ba5	2021-05-27 19:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:35:01.951+03	2021-05-27 19:35:01.958+03	
e19f4daf-c4ce-e476-f518-ef96f81242c3	2021-05-27 19:35:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:35:21.951+03	2021-05-27 19:35:21.958+03	
2368184e-2ea2-734f-6034-c89165cacd4a	2021-05-27 19:35:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:35:41.951+03	2021-05-27 19:35:41.957+03	
193cf5c8-1b7d-4ebd-d0c1-88c41afc8680	2021-05-27 19:36:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:36:02.951+03	2021-05-27 19:36:02.958+03	
5bdf26c4-e82b-26b3-4259-7d601ffcb763	2021-05-27 19:36:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:36:22.951+03	2021-05-27 19:36:22.957+03	
dba0b0fa-8c44-d532-39c1-81eb4a03d002	2021-05-27 19:36:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:36:42.951+03	2021-05-27 19:36:42.958+03	
be9a5060-bb5d-9ae2-da2a-04594fa15a53	2021-05-27 19:37:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:37:02.951+03	2021-05-27 19:37:02.958+03	
d00e291d-e925-feb5-4e82-38c976f5cab2	2021-05-27 19:37:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:37:22.951+03	2021-05-27 19:37:22.958+03	
731626b0-3747-66c0-b84e-99e90bbde4eb	2021-05-27 19:37:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:37:42.951+03	2021-05-27 19:37:42.958+03	
f5d1f2d4-55d5-2c9c-2f7c-dc21516a0a5e	2021-05-27 19:38:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:38:02.951+03	2021-05-27 19:38:02.959+03	
19fec824-b70c-a823-f9a3-61e8945afe91	2021-05-27 19:18:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:18:13.951+03	2021-05-27 19:18:13.959+03	
2eb5f9fc-f1b9-4eff-a4bb-f139e15a0f6b	2021-05-27 19:18:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:18:33.951+03	2021-05-27 19:18:33.958+03	
5af53fbe-32fe-5907-9c82-2a79f6c4790c	2021-05-27 19:18:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:18:53.951+03	2021-05-27 19:18:53.96+03	
a4bfdd2b-c1ca-cba6-81ac-63128949160e	2021-05-27 19:19:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:19:13.951+03	2021-05-27 19:19:13.957+03	
de0b5056-b877-d554-c113-ad47aed2a370	2021-05-27 19:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:19:33.951+03	2021-05-27 19:19:33.958+03	
0bb204da-9bae-0ece-1410-13a06b504539	2021-05-27 19:19:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:19:53.951+03	2021-05-27 19:19:53.958+03	
2f5c6c5f-f0ea-bf0e-b5ea-04957f6c3d45	2021-05-27 19:20:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:20:03.951+03	2021-05-27 19:20:03.963+03	
584ede50-1930-f722-ae09-00d61c3818aa	2021-05-27 19:20:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:20:23.951+03	2021-05-27 19:20:23.957+03	
785a1284-4212-746e-37b5-f78421ad01c2	2021-05-27 19:20:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:20:43.951+03	2021-05-27 19:20:43.957+03	
1be6a5fd-d6c7-1e1d-76a2-baf4f1889d17	2021-05-27 19:21:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:21:03.951+03	2021-05-27 19:21:03.957+03	
bad8feb9-d7fe-36a2-d392-e999d510eb9e	2021-05-27 19:21:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:21:23.951+03	2021-05-27 19:21:23.957+03	
fc0b02a6-16a0-82bd-f0cc-91057b3ab972	2021-05-27 19:21:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:21:43.951+03	2021-05-27 19:21:43.958+03	
d7cade77-99a4-3bc3-6a51-219b94e86165	2021-05-27 19:22:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:22:03.951+03	2021-05-27 19:22:03.958+03	
62c1bccf-2654-e434-1910-599c91b938e5	2021-05-27 19:22:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:22:23.951+03	2021-05-27 19:22:23.958+03	
d1e39682-e622-725e-2184-a7abdc080f13	2021-05-27 19:22:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:22:43.951+03	2021-05-27 19:22:43.957+03	
97a6701e-84a6-4a4e-ba61-8ef1aa0bcf07	2021-05-27 19:23:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:23:03.951+03	2021-05-27 19:23:03.957+03	
e23e0dcb-d747-86aa-1295-0b8856ed1022	2021-05-27 19:23:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:23:23.951+03	2021-05-27 19:23:23.959+03	
aa1114d2-35fa-dbad-b4f5-62ce86525f62	2021-05-27 19:23:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:23:43.951+03	2021-05-27 19:23:43.959+03	
6fd1132f-526d-e857-e548-7058005fb826	2021-05-27 19:24:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:24:03.951+03	2021-05-27 19:24:03.959+03	
9f502400-f097-69c1-4f5a-9b618d4de2dd	2021-05-27 19:24:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:24:23.951+03	2021-05-27 19:24:23.958+03	
f528ec5c-5a6d-1d68-5579-be6073a69d90	2021-05-27 19:24:33.956	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:24:33.953+03	2021-05-27 19:24:33.962+03	
c6d02602-d2d5-0e0f-9682-1d6ad7a89326	2021-05-27 19:24:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:24:54.951+03	2021-05-27 19:24:54.959+03	
cd8f538a-9b0b-509c-1a9e-9acf16f44bdd	2021-05-27 19:25:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:25:14.951+03	2021-05-27 19:25:14.958+03	
bc79aee0-267d-3bc7-fc3d-58d62ac5fce8	2021-05-27 19:25:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:25:34.951+03	2021-05-27 19:25:34.96+03	
3c8b47eb-cd26-dfd4-6bec-124c5fcd4105	2021-05-27 19:25:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:25:54.951+03	2021-05-27 19:25:54.958+03	
43756dd2-07ba-58fb-c8a1-be22aacc852f	2021-05-27 19:26:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:26:14.952+03	2021-05-27 19:26:14.959+03	
4e8a53f5-80af-7778-dc26-2047322be69f	2021-05-27 19:26:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:26:36.951+03	2021-05-27 19:26:36.96+03	
9ca72401-ab41-2c69-796b-efa35954feb5	2021-05-27 19:26:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:26:56.952+03	2021-05-27 19:26:56.959+03	
8cd3e4d4-3a99-b59f-309a-4fdc3751c9aa	2021-05-27 19:27:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:27:18.951+03	2021-05-27 19:27:18.959+03	
05eaa8a7-86df-1516-c561-490789045e7c	2021-05-27 19:27:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:27:38.952+03	2021-05-27 19:27:38.96+03	
00ffb829-484b-11fd-edb9-60a55922fd72	2021-05-27 19:27:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:27:59.951+03	2021-05-27 19:27:59.958+03	
13d02d04-e395-a475-edbe-a425206b1b19	2021-05-27 19:28:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:28:19.951+03	2021-05-27 19:28:19.957+03	
8e84898f-cb86-0599-5705-2c5d9d37c9c6	2021-05-27 19:28:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:28:39.951+03	2021-05-27 19:28:39.958+03	
a63c7b9b-d66e-373f-4234-02c308de6603	2021-05-27 19:28:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:28:59.951+03	2021-05-27 19:28:59.958+03	
31490dfc-5d21-41ad-43e6-707a5334ad50	2021-05-27 19:29:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:29:19.951+03	2021-05-27 19:29:19.959+03	
537aefd7-8348-74a3-2031-cbb77a02e01b	2021-05-27 19:29:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:29:39.951+03	2021-05-27 19:29:39.957+03	
89cac841-8b87-76f7-1423-2971344bea73	2021-05-27 19:29:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:29:59.951+03	2021-05-27 19:29:59.958+03	
62d644b0-4630-e28a-4693-467d26c896cc	2021-05-27 19:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:30:09.951+03	2021-05-27 19:30:09.959+03	
4f59fbf2-0be2-a654-10e8-6bc1fe4082ee	2021-05-27 19:30:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:30:29.951+03	2021-05-27 19:30:29.969+03	
a756b7d3-55ba-3c22-3c6a-159ddf89c284	2021-05-27 19:30:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:30:49.952+03	2021-05-27 19:30:49.959+03	
bf3a8f1e-4fff-e558-1a08-9b972a7430bb	2021-05-27 19:31:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:31:10.951+03	2021-05-27 19:31:10.957+03	
a6ce45ba-1a5a-aa4c-1573-f0dbb9928e3b	2021-05-27 19:31:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:31:30.952+03	2021-05-27 19:31:30.961+03	
40a4a513-3a8f-ede2-9d5b-ac7b08081d21	2021-05-27 19:31:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:31:51.951+03	2021-05-27 19:31:51.958+03	
152ea0f2-3ae1-b4da-44e8-93ffce74a4f2	2021-05-27 19:32:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:32:11.951+03	2021-05-27 19:32:11.958+03	
ee5034e1-69a5-a212-588f-1b30c7ff12e4	2021-05-27 19:32:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:32:31.951+03	2021-05-27 19:32:31.96+03	
42fdece9-3736-2f74-1716-ad67a3aefdca	2021-05-27 19:32:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:32:51.951+03	2021-05-27 19:32:51.958+03	
c37d1bd8-8177-4f4a-464b-c12d68d8f57f	2021-05-27 19:33:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:33:11.951+03	2021-05-27 19:33:11.958+03	
f29284c9-5dfb-aa3c-a99b-092b33cf048b	2021-05-27 19:33:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:33:31.951+03	2021-05-27 19:33:31.958+03	
a9dea635-6c23-9bb9-861e-1c5c77bf90a3	2021-05-27 19:33:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:33:51.951+03	2021-05-27 19:33:51.96+03	
7e4143c5-0f1c-755f-d919-3d82c3023999	2021-05-27 19:34:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:34:11.951+03	2021-05-27 19:34:11.957+03	
c02cb579-0fcb-4863-c19a-bc7e0c852103	2021-05-27 19:34:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:34:31.951+03	2021-05-27 19:34:31.958+03	
7f137c86-e8ce-b250-6384-681f0b7ed6e9	2021-05-27 19:34:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:34:51.951+03	2021-05-27 19:34:51.958+03	
6d1d1a43-0f85-63dc-62d1-4e530d9e45c6	2021-05-27 19:35:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:35:11.951+03	2021-05-27 19:35:11.957+03	
320f48a4-0ff8-b010-93e9-4d50ab2fe675	2021-05-27 19:35:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:35:31.951+03	2021-05-27 19:35:31.957+03	
47895ef0-b24b-e385-53c9-4ca1d9ee291b	2021-05-27 19:35:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:35:51.952+03	2021-05-27 19:35:51.958+03	
483428eb-d7de-0e14-be3e-047acfa4ac8c	2021-05-27 19:36:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:36:12.951+03	2021-05-27 19:36:12.958+03	
fadd20aa-233a-13dd-785e-6fa6c557c55f	2021-05-27 19:36:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:36:32.951+03	2021-05-27 19:36:32.958+03	
a8bb5f9d-acbe-0eff-f23e-348aafac4ce8	2021-05-27 19:36:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:36:52.951+03	2021-05-27 19:36:52.958+03	
67ebbabf-b9b5-9442-bdcb-ff086a296112	2021-05-27 19:37:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:37:12.951+03	2021-05-27 19:37:12.958+03	
55d47875-8eba-0efb-84e6-e4b6f969c50a	2021-05-27 19:37:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:37:32.951+03	2021-05-27 19:37:32.958+03	
afa60d3c-7855-2a23-349c-cc79cf62c367	2021-05-27 19:37:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:37:52.951+03	2021-05-27 19:37:52.96+03	
968405a9-2204-2d23-23a2-57ef79173bb2	2021-05-27 19:38:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:38:12.951+03	2021-05-27 19:38:12.959+03	
f34a1665-bff1-ea50-34ed-a5dba6950211	2021-05-27 19:38:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:38:33.952+03	2021-05-27 19:38:33.961+03	
0fa749ef-8f8a-3ff0-9ef7-93b197991ce4	2021-05-27 19:38:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:38:22.952+03	2021-05-27 19:38:22.959+03	
2c7f9c28-2a34-b1d0-a145-f8167188b911	2021-05-27 19:38:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:38:43.952+03	2021-05-27 19:38:43.959+03	
c646df11-6635-609c-7170-08e60be8ed5e	2021-05-27 19:39:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:39:04.951+03	2021-05-27 19:39:04.958+03	
63013596-21d8-28f4-ab50-c094971489a7	2021-05-27 19:39:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:39:24.951+03	2021-05-27 19:39:24.958+03	
6a143c0c-0939-0862-50a3-2eee9bb182be	2021-05-27 19:39:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:39:44.951+03	2021-05-27 19:39:44.959+03	
7c3d8a5a-6569-4043-9279-282f80295d12	2021-05-27 19:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 19:40:00.951+03	2021-05-27 19:40:00.955+03	ERROR
805dada1-7b73-628c-4328-ee2aba608710	2021-05-27 19:40:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:40:14.951+03	2021-05-27 19:40:14.958+03	
aade0d91-d4d4-693e-f413-f308a11ccd46	2021-05-27 19:40:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:40:34.951+03	2021-05-27 19:40:34.957+03	
b4c0d7da-3d67-7174-820a-185a4e20a326	2021-05-27 19:40:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:40:54.951+03	2021-05-27 19:40:54.959+03	
0f138792-bfc3-d234-e296-a7fc3f15c6e2	2021-05-27 19:41:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:41:14.951+03	2021-05-27 19:41:14.958+03	
b72779c9-3131-6925-691c-89bff3bc3703	2021-05-27 19:41:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:41:34.951+03	2021-05-27 19:41:34.958+03	
e66c4803-101d-8743-1ba7-beece74aaa57	2021-05-27 19:41:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:41:54.951+03	2021-05-27 19:41:54.958+03	
2bb32cd4-85ca-be4c-a634-e2d95bb5f75d	2021-05-27 19:42:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:42:14.951+03	2021-05-27 19:42:14.957+03	
6dbb0af8-d9fb-a2ed-c147-9070df29b032	2021-05-27 19:42:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:42:34.951+03	2021-05-27 19:42:34.957+03	
4d6a63df-b5a6-8c0e-a077-20dd7a8e0dea	2021-05-27 19:42:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:42:54.951+03	2021-05-27 19:42:54.958+03	
ef1238c9-f8d4-6f48-df0b-fc8895697ba5	2021-05-27 19:43:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:43:14.951+03	2021-05-27 19:43:14.958+03	
2f696646-c2da-061a-6915-23b8cd0b5370	2021-05-27 19:43:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:43:34.951+03	2021-05-27 19:43:34.959+03	
5dfcb626-4f3b-2bb8-ba0d-2e16420ccf98	2021-05-27 19:43:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:43:54.951+03	2021-05-27 19:43:54.959+03	
85ea0460-a413-f7f2-b996-da6be08a14f2	2021-05-27 19:44:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:44:14.951+03	2021-05-27 19:44:14.959+03	
e5ecde89-9ead-701b-754d-a5bcdf1af345	2021-05-27 19:44:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:44:34.951+03	2021-05-27 19:44:34.958+03	
1356b3e0-d894-2403-fe68-fbd462d55443	2021-05-27 19:44:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:44:54.951+03	2021-05-27 19:44:54.957+03	
786aaa05-bed7-9ff7-8f02-f8e1c3422b76	2021-05-27 19:45:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:45:14.951+03	2021-05-27 19:45:14.958+03	
4aa9fa70-c088-291b-a4eb-861d8cb217e7	2021-05-27 19:45:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:45:34.951+03	2021-05-27 19:45:34.957+03	
44f0af78-fd71-9471-786c-3cd53ae00487	2021-05-27 19:45:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:45:54.951+03	2021-05-27 19:45:54.958+03	
6d6fe360-5245-0f68-c3f6-3113dd20bdaf	2021-05-27 19:46:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:46:14.951+03	2021-05-27 19:46:14.957+03	
ef806f46-52eb-551a-5447-c5d6c37185e3	2021-05-27 19:46:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:46:34.951+03	2021-05-27 19:46:34.959+03	
bfb3ddaf-ea84-059e-ea81-1b451fe89106	2021-05-27 19:46:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:46:54.951+03	2021-05-27 19:46:54.959+03	
0d61a0e6-89f1-995a-b677-74ad903cbefe	2021-05-27 19:47:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:47:14.951+03	2021-05-27 19:47:14.958+03	
64678592-28c6-6679-794c-e7df0d66ec10	2021-05-27 19:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:47:34.952+03	2021-05-27 19:47:34.958+03	
52bb83dd-b357-7c8d-b01c-d07700ad0df4	2021-05-27 19:47:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:47:55.951+03	2021-05-27 19:47:55.958+03	
cb4ae7c9-6b95-1dfa-8e01-63abceb0cda4	2021-05-27 19:48:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:48:15.951+03	2021-05-27 19:48:15.959+03	
5428c6fe-c641-8656-7662-ae825ed3cfa6	2021-05-27 19:48:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:48:35.951+03	2021-05-27 19:48:35.957+03	
0e6b2ec3-d6f2-b72f-c28d-3209ea34d631	2021-05-27 19:48:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:48:55.951+03	2021-05-27 19:48:55.959+03	
7a103d9a-24ae-a26f-5df1-c690666e3c9b	2021-05-27 19:49:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:49:15.952+03	2021-05-27 19:49:15.959+03	
e2521687-81ba-7428-00bb-12e1642f52ad	2021-05-27 19:49:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:49:36.951+03	2021-05-27 19:49:36.958+03	
ab3d36b7-de1f-a86a-613d-03a08f339c98	2021-05-27 19:49:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:49:56.951+03	2021-05-27 19:49:56.958+03	
b45b8d0b-44a1-4aec-6412-12df249ac2b0	2021-05-27 19:50:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:50:06.951+03	2021-05-27 19:50:06.958+03	
d6c071df-8d6b-338a-6ee1-0c6af6ec4a1b	2021-05-27 19:50:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:50:26.951+03	2021-05-27 19:50:26.959+03	
a7150b5f-6db6-f643-ac44-8fe2dba23745	2021-05-27 19:50:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:50:46.951+03	2021-05-27 19:50:46.959+03	
2dd7394c-e7db-071d-0eed-6a964e92d91e	2021-05-27 19:51:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:51:07.952+03	2021-05-27 19:51:07.959+03	
d4778300-6eed-92ad-94f0-f7c76f54b525	2021-05-27 19:51:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:51:28.951+03	2021-05-27 19:51:28.961+03	
d2d07683-86a7-b47e-61bc-54f988d7e910	2021-05-27 19:51:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:51:48.951+03	2021-05-27 19:51:48.958+03	
1f1e8e02-c128-fcce-42cb-46499b47d7d3	2021-05-27 19:52:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:52:08.951+03	2021-05-27 19:52:08.959+03	
a1ddd452-eae3-ab0b-e29a-e9d97ea6c5b3	2021-05-27 19:52:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:52:28.951+03	2021-05-27 19:52:28.958+03	
bb0654a8-3b41-063e-ba38-55567ffdbf92	2021-05-27 19:52:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:52:48.951+03	2021-05-27 19:52:48.958+03	
8430d6a8-7f4e-eb85-66eb-a915ea5429f6	2021-05-27 19:53:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:53:08.951+03	2021-05-27 19:53:08.959+03	
516f8833-9ffc-9cf8-9827-89e402fe3cd6	2021-05-27 19:53:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:53:28.951+03	2021-05-27 19:53:28.958+03	
4c64cf1e-0793-923b-d5b2-166c2b64edde	2021-05-27 19:53:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:53:48.951+03	2021-05-27 19:53:48.958+03	
3277162c-f71a-a7c6-7e24-b839e1b2f432	2021-05-27 19:54:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:54:08.951+03	2021-05-27 19:54:08.959+03	
86adcfb7-e3c1-aad8-6c6e-a9ae7b3bbcd4	2021-05-27 19:54:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:54:28.951+03	2021-05-27 19:54:28.958+03	
399f47ff-ac9a-a0b0-b300-fc6fcceffd1b	2021-05-27 19:54:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:54:48.951+03	2021-05-27 19:54:48.958+03	
5dac29a2-6a8a-d33b-bb0a-7bd2761d59cb	2021-05-27 19:55:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:55:08.951+03	2021-05-27 19:55:08.958+03	
78e75f95-0a92-7cb6-bb0a-54459b433e39	2021-05-27 19:55:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:55:28.951+03	2021-05-27 19:55:28.959+03	
238913ec-f357-c867-456e-401f376a7464	2021-05-27 19:55:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:55:48.951+03	2021-05-27 19:55:48.958+03	
e5914898-f20f-70e0-2e9e-01529204ab4d	2021-05-27 19:56:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:56:09.951+03	2021-05-27 19:56:09.959+03	
fc5e0272-610a-1a7c-3711-2eda4129e3f9	2021-05-27 19:56:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:56:29.951+03	2021-05-27 19:56:29.958+03	
d9428534-9157-52b0-02e1-0e1993577a8f	2021-05-27 19:56:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:56:49.951+03	2021-05-27 19:56:49.957+03	
cf91899c-9e56-67af-29d6-e505fbd6b82c	2021-05-27 19:57:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:57:09.951+03	2021-05-27 19:57:09.958+03	
1641fa25-998e-a12a-4c67-b44b77e912ee	2021-05-27 19:57:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:57:29.951+03	2021-05-27 19:57:29.959+03	
7c177cb8-65f8-54ed-b014-4569e0ee971d	2021-05-27 19:57:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:57:49.951+03	2021-05-27 19:57:49.957+03	
9f062b68-9240-168a-0cbc-5e7504acb143	2021-05-27 19:58:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:58:09.951+03	2021-05-27 19:58:09.958+03	
f939b980-6792-c57e-1f65-7e53849bcfb6	2021-05-27 19:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:58:29.951+03	2021-05-27 19:58:29.958+03	
2bc62fb7-0207-3654-4d6c-870de109dad8	2021-05-27 19:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:58:49.951+03	2021-05-27 19:58:49.959+03	
62326ac3-c594-b435-ae03-3596eb4b82f0	2021-05-27 19:38:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:38:54.951+03	2021-05-27 19:38:54.959+03	
8ccce10f-0967-1f03-016a-780779362dcb	2021-05-27 19:39:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:39:14.951+03	2021-05-27 19:39:14.958+03	
e6f6461c-c48b-befa-5520-5afb85709d71	2021-05-27 19:39:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:39:34.951+03	2021-05-27 19:39:34.958+03	
77e9cf10-27e9-80e9-263a-77a82dc3718a	2021-05-27 19:39:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:39:54.951+03	2021-05-27 19:39:54.959+03	
c00169a7-bc79-5673-ea62-173c7b2bf8b3	2021-05-27 19:40:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:40:04.951+03	2021-05-27 19:40:04.958+03	
6322354a-d462-5902-90b6-c3787d566631	2021-05-27 19:40:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:40:24.951+03	2021-05-27 19:40:24.957+03	
af06f17d-792a-5df7-9de2-65031192a428	2021-05-27 19:40:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:40:44.951+03	2021-05-27 19:40:44.957+03	
176ddbec-7cdf-38e8-a261-66b738f38d23	2021-05-27 19:41:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:41:04.951+03	2021-05-27 19:41:04.96+03	
60a54e00-c954-1839-3121-ab0ae3a4ff36	2021-05-27 19:41:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:41:24.951+03	2021-05-27 19:41:24.958+03	
1ea665b0-09ae-7bfe-3972-67947c0226ee	2021-05-27 19:41:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:41:44.951+03	2021-05-27 19:41:44.958+03	
2b3e37c1-d8c3-2c5f-0751-10afa86ddf0c	2021-05-27 19:42:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:42:04.951+03	2021-05-27 19:42:04.957+03	
fe4a2d5a-a125-56df-bc73-b6b8da334a65	2021-05-27 19:42:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:42:24.951+03	2021-05-27 19:42:24.958+03	
768fe87d-558b-264a-af27-fae1a2a80326	2021-05-27 19:42:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:42:44.951+03	2021-05-27 19:42:44.959+03	
488e31ba-8d7d-83ec-d157-5179662a44aa	2021-05-27 19:43:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:43:04.951+03	2021-05-27 19:43:04.958+03	
90a014d2-caae-1d19-95e7-ff8cb6674ef4	2021-05-27 19:43:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:43:24.951+03	2021-05-27 19:43:24.959+03	
6aaad55b-540c-c2f8-4ee3-063b84a3f068	2021-05-27 19:43:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:43:44.951+03	2021-05-27 19:43:44.958+03	
75088d54-3d71-2f84-3a82-3e2389572dc4	2021-05-27 19:44:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:44:04.951+03	2021-05-27 19:44:04.958+03	
3f6f7150-65dd-4992-a5f9-4401170a6b91	2021-05-27 19:44:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:44:24.951+03	2021-05-27 19:44:24.958+03	
3642897f-c5e6-0403-96d0-8920556e880a	2021-05-27 19:44:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:44:44.951+03	2021-05-27 19:44:44.957+03	
8f7556fe-3021-41c7-309e-c3f76472b956	2021-05-27 19:45:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:45:04.951+03	2021-05-27 19:45:04.959+03	
0b3a4b2e-2407-c4c6-1de3-11fcf464dbef	2021-05-27 19:45:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:45:24.951+03	2021-05-27 19:45:24.958+03	
cedb0b29-9f2c-7d71-0cb8-63c429271ff3	2021-05-27 19:45:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:45:44.951+03	2021-05-27 19:45:44.959+03	
23b80524-6aea-3190-7879-d11fb8f0841b	2021-05-27 19:46:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:46:04.951+03	2021-05-27 19:46:04.958+03	
7e4bcba3-a6ca-0078-b5aa-54ffed34e668	2021-05-27 19:46:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:46:24.951+03	2021-05-27 19:46:24.958+03	
82683466-9605-0a4c-0f45-cf17190ed29d	2021-05-27 19:46:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:46:44.951+03	2021-05-27 19:46:44.96+03	
d80a0efb-7e2d-24a7-db5c-b8e81411bdd0	2021-05-27 19:47:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:47:04.951+03	2021-05-27 19:47:04.958+03	
336c8aab-add5-7950-a0dd-ab58fd9e5bab	2021-05-27 19:47:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:47:24.951+03	2021-05-27 19:47:24.958+03	
8d15c34d-3878-8603-a357-a40e8522abff	2021-05-27 19:47:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:47:45.951+03	2021-05-27 19:47:45.958+03	
e973ed8c-b4a7-30cd-aeb7-1d15a71e43c1	2021-05-27 19:48:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:48:05.951+03	2021-05-27 19:48:05.958+03	
5545fc35-ce26-0f47-18cc-7eabaea4dd05	2021-05-27 19:48:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:48:25.951+03	2021-05-27 19:48:25.96+03	
9a34a939-cc04-4fec-1f0c-83b4431d63b6	2021-05-27 19:48:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:48:45.951+03	2021-05-27 19:48:45.958+03	
61db7aa3-8165-0653-0f24-83a96004323a	2021-05-27 19:49:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:49:05.951+03	2021-05-27 19:49:05.958+03	
b54c279a-0938-cf4c-a3fc-071fc2333436	2021-05-27 19:49:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:49:26.951+03	2021-05-27 19:49:26.958+03	
f97c32ae-6bfa-cfa0-8464-336387def5d2	2021-05-27 19:49:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:49:46.951+03	2021-05-27 19:49:46.957+03	
4ef2fb80-0978-5769-9ea0-0f0cdb4458ec	2021-05-27 19:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 19:50:00.951+03	2021-05-27 19:50:00.956+03	ERROR
298e0d41-d6d2-fe50-70ac-9c809f3b9b81	2021-05-27 19:50:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:50:16.951+03	2021-05-27 19:50:16.957+03	
46ee6455-3e28-25da-87f5-c0811d1e6cf4	2021-05-27 19:50:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:50:36.951+03	2021-05-27 19:50:36.959+03	
e474d193-6cc2-0758-dbfb-7354f0bccf12	2021-05-27 19:50:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:50:56.952+03	2021-05-27 19:50:56.959+03	
84f51102-01ed-ff07-0f58-3c468b638647	2021-05-27 19:51:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:51:18.951+03	2021-05-27 19:51:18.959+03	
e0e779ec-ef99-7bcc-7c34-047068e8607a	2021-05-27 19:51:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:51:38.951+03	2021-05-27 19:51:38.957+03	
c9f0f4b3-ae3d-25ea-6522-e3048b88ebe6	2021-05-27 19:51:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:51:58.951+03	2021-05-27 19:51:58.958+03	
1f931c73-31c2-e1cc-915e-5ee136577511	2021-05-27 19:52:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:52:18.951+03	2021-05-27 19:52:18.958+03	
0c24ce24-9cff-e06b-f477-5c8360842b8c	2021-05-27 19:52:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:52:38.951+03	2021-05-27 19:52:38.959+03	
1b1d3280-4387-9240-8dd9-4f25f804fe17	2021-05-27 19:52:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:52:58.951+03	2021-05-27 19:52:58.958+03	
2d977fe3-723b-d329-9222-7fafb6fea17b	2021-05-27 19:53:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:53:18.951+03	2021-05-27 19:53:18.959+03	
01e6441a-37f0-7c16-898e-c623f96d0f05	2021-05-27 19:53:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:53:38.951+03	2021-05-27 19:53:38.958+03	
c2c9d3a4-6351-cabd-ff68-d754ba2933dc	2021-05-27 19:53:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:53:58.951+03	2021-05-27 19:53:58.957+03	
1160c732-aa0f-29cf-26a9-c7c1e3d11124	2021-05-27 19:54:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:54:18.951+03	2021-05-27 19:54:18.96+03	
c377501d-2c96-0f69-ccae-8fccaafd37df	2021-05-27 19:54:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:54:38.951+03	2021-05-27 19:54:38.957+03	
3e8d8179-51b5-6bfb-ef10-65266479e943	2021-05-27 19:54:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:54:58.951+03	2021-05-27 19:54:58.959+03	
760de47a-ed1f-5e07-ce4b-d61893c463a2	2021-05-27 19:55:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:55:18.951+03	2021-05-27 19:55:18.957+03	
4fff9322-7df3-bb38-9974-14ae985ebdea	2021-05-27 19:55:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:55:38.951+03	2021-05-27 19:55:38.957+03	
f2f63e54-632f-5fba-531e-60afdfb7f6b3	2021-05-27 19:55:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:55:58.952+03	2021-05-27 19:55:58.96+03	
c6e461a7-7e7f-cc2f-833c-9be425a12226	2021-05-27 19:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:56:19.951+03	2021-05-27 19:56:19.958+03	
1e155ee2-9b38-bd43-6fc9-265d81857152	2021-05-27 19:56:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:56:39.951+03	2021-05-27 19:56:39.958+03	
04675175-af60-3f27-ce52-9abebaf45ea6	2021-05-27 19:56:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:56:59.951+03	2021-05-27 19:56:59.959+03	
9eac9514-ac8f-f3be-a930-69c0445227a0	2021-05-27 19:57:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:57:19.951+03	2021-05-27 19:57:19.958+03	
a672eb77-8222-6590-4a4e-dee0e9aaa501	2021-05-27 19:57:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:57:39.951+03	2021-05-27 19:57:39.958+03	
593c98d7-4bc1-057c-d5eb-4d49fe9707d6	2021-05-27 19:57:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:57:59.951+03	2021-05-27 19:57:59.958+03	
90c69c6d-dd42-5171-d5ff-102aceeb4ac4	2021-05-27 19:58:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:58:19.951+03	2021-05-27 19:58:19.957+03	
f218dadd-e8be-ae9b-59cb-5a796a96ae84	2021-05-27 19:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:58:39.951+03	2021-05-27 19:58:39.958+03	
391eb689-a112-c55b-b25c-abd503658bd8	2021-05-27 19:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:58:59.951+03	2021-05-27 19:58:59.958+03	
7be11b4d-4975-5872-81da-87a4352dd0c9	2021-05-27 19:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:59:19.951+03	2021-05-27 19:59:19.958+03	
4dc2a326-c949-bd22-f48d-e477e98c1e1a	2021-05-27 19:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:59:09.951+03	2021-05-27 19:59:09.959+03	
0d5cd466-25c8-4a5d-b730-6dfc5a44fdce	2021-05-27 19:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:59:29.952+03	2021-05-27 19:59:29.959+03	
32d841b3-77aa-4d58-62f4-6d934b620a3a	2021-05-27 19:59:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:59:50.951+03	2021-05-27 19:59:50.958+03	
29584498-3ae6-9077-5f1c-627e788987e1	2021-05-27 20:00:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:00:10.951+03	2021-05-27 20:00:10.957+03	
072a4f37-35e9-660b-11db-795747725d25	2021-05-27 20:00:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:00:30.951+03	2021-05-27 20:00:30.959+03	
87575886-fa32-9134-a0f8-dd144ca36862	2021-05-27 20:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:00:50.951+03	2021-05-27 20:00:50.96+03	
962059c7-4026-30a8-6872-73e290668759	2021-05-27 20:01:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:01:10.951+03	2021-05-27 20:01:10.957+03	
4d96e174-d38e-0786-5e9b-2fcbaa3daca0	2021-05-27 20:01:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:01:30.951+03	2021-05-27 20:01:30.959+03	
8ccb8f52-b275-48f6-4f52-bb746b084df7	2021-05-27 20:01:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:01:50.951+03	2021-05-27 20:01:50.958+03	
505ca7ab-12db-d1e3-6ceb-fa51affcf1e5	2021-05-27 20:02:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:02:10.951+03	2021-05-27 20:02:10.961+03	
494e3127-0971-124f-d0ba-c7bbfa234540	2021-05-27 20:02:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:02:30.951+03	2021-05-27 20:02:30.957+03	
cc162df6-8a79-43be-7199-4d4f7087c57b	2021-05-27 20:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:02:50.951+03	2021-05-27 20:02:50.959+03	
ea6287d9-c72f-90ef-1aa7-f64738ac00a9	2021-05-27 20:03:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:03:10.951+03	2021-05-27 20:03:10.958+03	
89b664ed-8328-10db-f871-459081f64fc3	2021-05-27 20:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:03:30.951+03	2021-05-27 20:03:30.961+03	
b6e8c84e-7fb0-b932-b23a-de67a2ded67e	2021-05-27 20:03:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:03:50.951+03	2021-05-27 20:03:50.96+03	
1b19f437-e0a2-7bda-6ba6-4aab1dbcc9cd	2021-05-27 20:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:04:10.951+03	2021-05-27 20:04:10.961+03	
e65db331-4adf-dc7e-e66f-fd03867f7f80	2021-05-27 20:04:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:04:30.951+03	2021-05-27 20:04:30.958+03	
94bd33de-fd82-e4d6-b3b1-b52a99458d4d	2021-05-27 20:04:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:04:50.951+03	2021-05-27 20:04:50.958+03	
a1ffbcae-550e-1574-fedc-9fc55ee4b5ef	2021-05-27 20:05:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:05:11.951+03	2021-05-27 20:05:11.958+03	
518c30a6-3c6b-0128-75d8-8ba5e7fa360b	2021-05-27 20:05:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:05:31.952+03	2021-05-27 20:05:31.961+03	
7834f4a5-29c3-279f-e81c-be9c1fe93cb1	2021-05-27 20:05:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:05:52.952+03	2021-05-27 20:05:52.959+03	
13318592-8b09-8b89-a721-d6d457efcd61	2021-05-27 20:06:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:06:13.951+03	2021-05-27 20:06:13.958+03	
49327339-184c-9df4-342c-0315f7c46ab4	2021-05-27 20:06:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:06:33.951+03	2021-05-27 20:06:33.958+03	
ebd805d2-b492-6d94-111a-b0fa44e59461	2021-05-27 20:06:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:06:53.951+03	2021-05-27 20:06:53.958+03	
c2fd17cb-6a10-95b8-e61f-665a51fe467e	2021-05-27 20:07:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:07:13.951+03	2021-05-27 20:07:13.959+03	
7e871578-842b-a394-dff0-4946e9e20718	2021-05-27 20:07:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:07:33.951+03	2021-05-27 20:07:33.958+03	
5d391153-babd-cf01-08d0-3979b9b59972	2021-05-27 20:07:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:07:53.951+03	2021-05-27 20:07:53.959+03	
dcfe18f3-e406-ee71-be5c-168ac79c0d05	2021-05-27 20:08:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:08:13.951+03	2021-05-27 20:08:13.961+03	
fa4b8142-b3f2-2e0c-31ab-9e3662824200	2021-05-27 20:08:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:08:33.951+03	2021-05-27 20:08:33.957+03	
352b03b2-7ca9-984e-6eaf-b3499ebe8816	2021-05-27 20:08:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:08:53.951+03	2021-05-27 20:08:53.959+03	
acb3a256-beab-ab81-5ad7-a65ea48afb49	2021-05-27 20:09:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:09:13.951+03	2021-05-27 20:09:13.959+03	
333a9831-5452-55a3-145c-46470e4f7703	2021-05-27 20:09:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:09:33.951+03	2021-05-27 20:09:33.958+03	
bd0a719b-bc93-dc75-120e-423354d04952	2021-05-27 20:09:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:09:53.952+03	2021-05-27 20:09:53.958+03	
0a9229d5-935c-0c00-c0c8-51e63bf97362	2021-05-27 20:10:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:10:04.951+03	2021-05-27 20:10:04.962+03	
6df95603-4539-ec31-157a-2885e91e4b89	2021-05-27 20:10:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:10:24.951+03	2021-05-27 20:10:24.959+03	
792f70ee-9b04-4d5e-911e-6809c8ca33c4	2021-05-27 20:10:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:10:44.951+03	2021-05-27 20:10:44.959+03	
7645b7b1-371e-bde3-2412-d51a4d9cca03	2021-05-27 20:11:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:11:04.951+03	2021-05-27 20:11:04.959+03	
fa3166ef-79b5-d4fe-2995-882838b45438	2021-05-27 20:11:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:11:24.951+03	2021-05-27 20:11:24.958+03	
e4bdd766-6499-ddd7-579e-cd5ada0dce2b	2021-05-27 20:11:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:11:44.951+03	2021-05-27 20:11:44.959+03	
4a2c6ee3-8204-8ef6-81a8-33258808de5d	2021-05-27 20:12:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:12:04.951+03	2021-05-27 20:12:04.958+03	
ac8acda5-7676-312f-965f-932591dacbc8	2021-05-27 20:12:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:12:24.951+03	2021-05-27 20:12:24.957+03	
4bf01aeb-7b17-5240-2a01-65990f24b8f8	2021-05-27 20:12:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:12:44.951+03	2021-05-27 20:12:44.96+03	
ca9fc515-2464-41d5-9ca9-a9625df62c52	2021-05-27 20:13:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:13:04.951+03	2021-05-27 20:13:04.958+03	
d6259ec6-f6ee-98ab-f967-c0b633ede7b6	2021-05-27 20:13:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:13:24.951+03	2021-05-27 20:13:24.957+03	
763d7e02-e174-4413-aef7-cab7748a260f	2021-05-27 20:13:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:13:44.951+03	2021-05-27 20:13:44.959+03	
54003096-2b33-14f9-7158-61ec9e568ced	2021-05-27 20:14:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:14:04.951+03	2021-05-27 20:14:04.957+03	
494364d9-1127-07eb-c35e-d025ab2accc7	2021-05-27 20:14:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:14:24.951+03	2021-05-27 20:14:24.96+03	
86398fb3-c9af-6848-de4a-9cf73c9d859a	2021-05-27 20:14:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:14:44.951+03	2021-05-27 20:14:44.958+03	
bbbf285e-0df8-f3f0-f235-420a7fae0842	2021-05-27 20:15:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:15:04.951+03	2021-05-27 20:15:04.959+03	
907fc86a-6489-bc25-9528-ca4358603c74	2021-05-27 20:15:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:15:24.951+03	2021-05-27 20:15:24.958+03	
56ef8b15-1e7a-f18b-f67a-d8455a89c427	2021-05-27 20:15:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:15:44.951+03	2021-05-27 20:15:44.958+03	
df6f496e-2588-3e84-16d0-bcfcb1914c8e	2021-05-27 20:16:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:16:04.951+03	2021-05-27 20:16:04.958+03	
9f458bc8-935c-a123-1182-f7765b28fc6b	2021-05-27 20:16:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:16:24.951+03	2021-05-27 20:16:24.957+03	
f1c33563-87c3-ef81-33d2-80b8e3e25274	2021-05-27 20:16:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:16:44.951+03	2021-05-27 20:16:44.957+03	
49098a33-350e-c38f-df47-dcb3cf59d69f	2021-05-27 20:17:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:17:04.951+03	2021-05-27 20:17:04.958+03	
e66ed313-149e-1e19-a23a-463fee75577c	2021-05-27 20:17:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:17:24.951+03	2021-05-27 20:17:24.959+03	
a48d07f5-b43b-b6cf-cad3-a80ac91b8b00	2021-05-27 20:17:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:17:44.951+03	2021-05-27 20:17:44.959+03	
a37cab0e-ec10-6f7b-0a70-fffa30a2abaf	2021-05-27 20:18:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:18:04.951+03	2021-05-27 20:18:04.957+03	
2ef4ed54-8223-c8bd-39a5-25f81c57efb5	2021-05-27 20:18:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:18:24.951+03	2021-05-27 20:18:24.96+03	
4fac49c6-2e08-eb96-2edf-bd1d72ccf8db	2021-05-27 20:18:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:18:44.951+03	2021-05-27 20:18:44.959+03	
ee708568-3a23-530d-fab4-632e5d920f69	2021-05-27 20:19:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:19:04.951+03	2021-05-27 20:19:04.958+03	
487b515a-54c9-5b6d-3977-8889ec8b317c	2021-05-27 20:19:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:19:24.951+03	2021-05-27 20:19:24.957+03	
ccae3031-f138-7bdf-1f9c-d558b3b5de5e	2021-05-27 20:19:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:19:44.951+03	2021-05-27 20:19:44.958+03	
6c037e4c-636c-9c29-aa42-d4542f6cbfec	2021-05-27 19:59:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 19:59:40.951+03	2021-05-27 19:59:40.958+03	
6bb655d5-7f85-2a26-32d0-363b28016e9a	2021-05-27 20:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 20:00:00.951+03	2021-05-27 20:00:00.957+03	ERROR
301f95ea-e6c5-e693-a36d-273a62cb4c02	2021-05-27 20:00:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:00:00.951+03	2021-05-27 20:00:00.97+03	
716025f0-7c5d-ab19-3ad0-3a66da504f27	2021-05-27 20:00:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:00:20.951+03	2021-05-27 20:00:20.958+03	
dae9f2b0-a0be-27b0-c8e6-dc949068c11e	2021-05-27 20:00:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:00:40.951+03	2021-05-27 20:00:40.958+03	
08fe34cf-70cc-abae-c25e-6913d1a259c0	2021-05-27 20:01:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:01:00.951+03	2021-05-27 20:01:00.958+03	
7a732340-c51e-065e-ef24-10cb05538071	2021-05-27 20:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:01:20.951+03	2021-05-27 20:01:20.958+03	
7d03487a-0807-ecea-d124-2e71ea8be431	2021-05-27 20:01:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:01:40.951+03	2021-05-27 20:01:40.958+03	
1439539d-55b1-1398-f2e6-af1f6e3eb23a	2021-05-27 20:02:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:02:00.951+03	2021-05-27 20:02:00.959+03	
383a7ad5-9ea2-cded-fd57-a0fd9b1a334c	2021-05-27 20:02:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:02:20.951+03	2021-05-27 20:02:20.957+03	
6f42eb39-6331-5ee6-1e96-7e3850bdac2b	2021-05-27 20:02:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:02:40.951+03	2021-05-27 20:02:40.957+03	
c58ea1a5-b552-97ca-c257-83c0a7c4dd3a	2021-05-27 20:03:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:03:00.951+03	2021-05-27 20:03:00.958+03	
958d5cd2-5f92-edd5-8a77-db50ec74ab94	2021-05-27 20:03:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:03:20.951+03	2021-05-27 20:03:20.959+03	
fd7cc289-894f-78b2-3339-957a0c5aabc4	2021-05-27 20:03:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:03:40.951+03	2021-05-27 20:03:40.958+03	
7e934fa6-36f2-f5c3-65d4-9b01646376c5	2021-05-27 20:04:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:04:00.951+03	2021-05-27 20:04:00.957+03	
1119d4a3-d86e-53f9-b583-4fd9b68084f0	2021-05-27 20:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:04:20.951+03	2021-05-27 20:04:20.958+03	
c7c6bb11-e3d8-7521-42d8-74a807d9553e	2021-05-27 20:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:04:40.951+03	2021-05-27 20:04:40.959+03	
8dd26f91-37d0-4966-8875-a17d07559d08	2021-05-27 20:05:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:05:00.952+03	2021-05-27 20:05:00.962+03	
f462f442-68c6-e68f-678b-38d19a040317	2021-05-27 20:05:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:05:21.951+03	2021-05-27 20:05:21.958+03	
dad1373d-92b5-92a8-e45e-6faba0bbf39b	2021-05-27 20:05:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:05:42.951+03	2021-05-27 20:05:42.959+03	
812a9893-ccc0-3af3-4074-528c13243e30	2021-05-27 20:06:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:06:03.951+03	2021-05-27 20:06:03.958+03	
31f86820-e071-d107-7937-1f9093f5fec3	2021-05-27 20:06:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:06:23.951+03	2021-05-27 20:06:23.959+03	
22e3c156-de43-0c88-69f9-ddaa1ea710fd	2021-05-27 20:06:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:06:43.951+03	2021-05-27 20:06:43.958+03	
0ed2be91-c08f-69f6-6f86-cd8e3bf3d74e	2021-05-27 20:07:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:07:03.951+03	2021-05-27 20:07:03.959+03	
e8fc07f3-3fbd-1b9e-2e31-bb2517d12127	2021-05-27 20:07:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:07:23.951+03	2021-05-27 20:07:23.958+03	
0295e159-dcaa-2f4f-d882-54e0d8e1abf9	2021-05-27 20:07:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:07:43.951+03	2021-05-27 20:07:43.958+03	
a925ff0b-3387-7272-ade8-16c3d0bb4830	2021-05-27 20:08:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:08:03.951+03	2021-05-27 20:08:03.958+03	
006e3db3-8c32-9175-eab9-46bd4aaed382	2021-05-27 20:08:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:08:23.951+03	2021-05-27 20:08:23.96+03	
1b936bb5-f31d-32ea-3d12-27fcb32fb958	2021-05-27 20:08:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:08:43.951+03	2021-05-27 20:08:43.958+03	
0eba2a5e-360b-35ee-899d-70d8edc1c890	2021-05-27 20:09:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:09:03.951+03	2021-05-27 20:09:03.958+03	
037a17e7-39a2-66cb-5e66-3a4c7bcced56	2021-05-27 20:09:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:09:23.951+03	2021-05-27 20:09:23.958+03	
90de2f33-9fe2-075e-d173-3a94e4428053	2021-05-27 20:09:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:09:43.952+03	2021-05-27 20:09:43.958+03	
7a7d27b1-12e3-3efe-df77-643d1ef16618	2021-05-27 20:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 20:10:00.951+03	2021-05-27 20:10:00.956+03	ERROR
a8ec24f2-d191-940a-9e0f-e8f4ae219f91	2021-05-27 20:10:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:10:14.951+03	2021-05-27 20:10:14.959+03	
105b93c6-ad58-857c-5806-1dfaf21a7593	2021-05-27 20:10:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:10:34.951+03	2021-05-27 20:10:34.959+03	
5b894232-aebe-f1c8-fdd2-930c271a3489	2021-05-27 20:10:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:10:54.951+03	2021-05-27 20:10:54.96+03	
0343621c-0c99-76a2-c051-58c43579f435	2021-05-27 20:11:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:11:14.951+03	2021-05-27 20:11:14.961+03	
8213255b-dded-1d42-14f4-95e37cea5b55	2021-05-27 20:11:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:11:34.951+03	2021-05-27 20:11:34.966+03	
a5459f86-deb5-0ba9-93ae-660a3d3ec56d	2021-05-27 20:11:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:11:54.951+03	2021-05-27 20:11:54.958+03	
d0c9216f-432a-a68d-d27b-01dfaa6162e0	2021-05-27 20:12:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:12:14.951+03	2021-05-27 20:12:14.959+03	
186f2ef9-3137-6abc-fb62-b623da4ca5f8	2021-05-27 20:12:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:12:34.951+03	2021-05-27 20:12:34.958+03	
f7b2ec68-c00c-e06e-34af-b49a2d2d70f9	2021-05-27 20:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:12:54.951+03	2021-05-27 20:12:54.959+03	
502c7545-8a98-75d8-b0c4-3275292eac06	2021-05-27 20:13:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:13:14.951+03	2021-05-27 20:13:14.959+03	
a6c6c556-f6a9-0ed3-0685-72b65f289465	2021-05-27 20:13:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:13:34.951+03	2021-05-27 20:13:34.958+03	
4fc9db09-837e-f140-dff0-37f8dbd2e743	2021-05-27 20:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:13:54.951+03	2021-05-27 20:13:54.958+03	
984a1d8d-80c6-5d2f-f3ef-f151d4ffaede	2021-05-27 20:14:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:14:14.951+03	2021-05-27 20:14:14.958+03	
6a6de3a7-d81f-bc7d-914a-e8c0e328ac66	2021-05-27 20:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:14:34.951+03	2021-05-27 20:14:34.958+03	
bd3e1cd5-637d-e06f-9012-7797a460eaac	2021-05-27 20:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:14:54.951+03	2021-05-27 20:14:54.96+03	
94799a4d-8021-82a9-b037-d889bd57253a	2021-05-27 20:15:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:15:14.951+03	2021-05-27 20:15:14.959+03	
93bfdde5-67df-ed71-e3c0-8cf7663fa4fb	2021-05-27 20:15:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:15:34.951+03	2021-05-27 20:15:34.96+03	
d43e8c8f-92f1-4567-2b76-365961b197d5	2021-05-27 20:15:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:15:54.951+03	2021-05-27 20:15:54.959+03	
2c9eb4c4-9a5b-1684-495e-cba7760c36f0	2021-05-27 20:16:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:16:14.951+03	2021-05-27 20:16:14.958+03	
fa380608-af44-2376-0724-b16433ed219b	2021-05-27 20:16:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:16:34.951+03	2021-05-27 20:16:34.959+03	
9e5c6a39-e8da-2ec2-72eb-a065d00d7513	2021-05-27 20:16:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:16:54.951+03	2021-05-27 20:16:54.958+03	
39c0c92e-9324-a39c-c3fb-6a41289120ad	2021-05-27 20:17:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:17:14.951+03	2021-05-27 20:17:14.965+03	
8dfdc06d-0586-632a-0835-34a79001e835	2021-05-27 20:17:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:17:34.951+03	2021-05-27 20:17:34.958+03	
152b3c23-45d8-dfaf-1e4c-244bb5989bb0	2021-05-27 20:17:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:17:54.951+03	2021-05-27 20:17:54.957+03	
b36ae186-e6e6-06c9-0fe0-6c9d403552da	2021-05-27 20:18:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:18:14.951+03	2021-05-27 20:18:14.958+03	
8e1a319a-636a-3839-c00e-264958e595db	2021-05-27 20:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:18:34.951+03	2021-05-27 20:18:34.961+03	
e1dc778e-99a3-32a6-abdb-d159624a7776	2021-05-27 20:18:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:18:54.951+03	2021-05-27 20:18:54.958+03	
5af7db1a-993f-bf44-df41-7a2e3e3952b0	2021-05-27 20:19:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:19:14.951+03	2021-05-27 20:19:14.959+03	
a2467a45-d0fb-1c17-a535-b96448aa1e4c	2021-05-27 20:19:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:19:34.951+03	2021-05-27 20:19:34.958+03	
193ec2d9-5a69-59d9-a943-fc381c213ce7	2021-05-27 20:19:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:19:54.951+03	2021-05-27 20:19:54.958+03	
4536a0f9-283a-044b-60d5-aa7627ce3345	2021-05-27 20:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 20:20:00.951+03	2021-05-27 20:20:00.958+03	ERROR
6fe8d1f4-96ac-c426-72be-095e47959326	2021-05-27 20:20:14.963	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:20:14.962+03	2021-05-27 20:20:14.968+03	
3c1ca50d-a4ef-b359-e4be-15556da97e57	2021-05-27 20:20:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:20:35.951+03	2021-05-27 20:20:35.959+03	
f672ccb9-907e-cc9c-14de-8a95d981732a	2021-05-27 20:20:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:20:56.951+03	2021-05-27 20:20:56.971+03	
867c0813-be19-a8db-23e6-7f5c07abbfa2	2021-05-27 20:21:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:21:16.951+03	2021-05-27 20:21:16.958+03	
83605bfd-077b-a7e0-8a67-b5468b2e8da6	2021-05-27 20:21:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:21:36.951+03	2021-05-27 20:21:36.96+03	
c1ef7904-8a32-3ee5-265a-ee7117e75350	2021-05-27 20:21:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:21:56.951+03	2021-05-27 20:21:56.958+03	
434893e7-77c6-6046-9429-4f92e38914a0	2021-05-27 20:22:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:22:16.951+03	2021-05-27 20:22:16.958+03	
3a4f118a-1265-da18-0777-af2a282b1f83	2021-05-27 20:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:22:36.951+03	2021-05-27 20:22:36.958+03	
8b8ec2be-822f-da55-4dac-4acb212028db	2021-05-27 20:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:22:56.951+03	2021-05-27 20:22:56.959+03	
e4488249-336f-ed4b-78bd-d2c7f2827b66	2021-05-27 20:23:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:23:16.951+03	2021-05-27 20:23:16.958+03	
681d1cac-776d-7a22-4a9f-e8670cabb0cb	2021-05-27 20:23:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:23:36.951+03	2021-05-27 20:23:36.958+03	
7a9f7558-ba56-963b-b837-170ea43abc26	2021-05-27 20:23:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:23:56.951+03	2021-05-27 20:23:56.961+03	
332579ab-6962-ca6f-6ecf-6269bc71479c	2021-05-27 20:24:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:24:16.951+03	2021-05-27 20:24:16.959+03	
00692945-bf9b-6b1f-10f5-25bb9e216d4c	2021-05-27 20:24:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:24:37.951+03	2021-05-27 20:24:37.958+03	
85d0dc95-6bd3-7b7a-93ca-1f92313236be	2021-05-27 20:24:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:24:57.952+03	2021-05-27 20:24:57.959+03	
b80a73da-a753-6aa6-31db-3c8eed5e2e40	2021-05-27 20:25:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:25:17.952+03	2021-05-27 20:25:17.959+03	
5db6c89f-0519-98c6-e76f-276f5a206c80	2021-05-27 20:25:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:25:38.951+03	2021-05-27 20:25:38.959+03	
39252790-0dab-96bc-e611-af7914024eff	2021-05-27 20:25:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:25:58.951+03	2021-05-27 20:25:58.958+03	
c36c77f8-a6ad-dd28-1a22-ab9dbcb5d020	2021-05-27 20:26:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:26:18.951+03	2021-05-27 20:26:18.957+03	
2ca5ea5f-8d72-2a2e-6f80-f7031a1c8bdd	2021-05-27 20:26:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:26:38.951+03	2021-05-27 20:26:38.958+03	
0ddddb6b-48f6-b7b3-9434-723a41011858	2021-05-27 20:26:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:26:58.951+03	2021-05-27 20:26:58.958+03	
ab4400dc-56b8-3dfd-e685-2f8cb832c5c7	2021-05-27 20:27:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:27:18.951+03	2021-05-27 20:27:18.958+03	
22b806d8-96bb-3d5b-fc53-aefb0ee84a94	2021-05-27 20:27:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:27:38.951+03	2021-05-27 20:27:38.96+03	
6310086e-0480-4c53-e8fd-aa6bfbb943b6	2021-05-27 20:27:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:27:58.951+03	2021-05-27 20:27:58.957+03	
1e41c3ec-f64e-569b-2a5d-84ce93ecdba9	2021-05-27 20:28:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:28:18.951+03	2021-05-27 20:28:18.966+03	
1f79ec94-6bd3-a4a1-ec2e-6fba30e28afb	2021-05-27 20:28:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:28:38.951+03	2021-05-27 20:28:38.957+03	
9d1afae2-845b-96de-38e2-bd2397b62423	2021-05-27 20:28:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:28:58.951+03	2021-05-27 20:28:58.957+03	
33569dc7-62c2-d237-7583-bae188f748aa	2021-05-27 20:29:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:29:18.952+03	2021-05-27 20:29:18.958+03	
6a5f96b6-07f6-92b7-90c2-e7d6cbc18fe9	2021-05-27 20:29:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:29:39.951+03	2021-05-27 20:29:39.959+03	
d60300b4-f3fd-1f9d-ca20-5b547a0ed213	2021-05-27 20:29:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:29:59.951+03	2021-05-27 20:29:59.96+03	
18df26a0-2edf-7cb4-b1e1-8866ebf8fd2a	2021-05-27 20:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:30:09.951+03	2021-05-27 20:30:09.959+03	
42a32153-918a-3d13-d48e-1b0765efa83d	2021-05-27 20:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:30:29.951+03	2021-05-27 20:30:29.958+03	
c2265ef1-8338-447f-99fb-aba0145fef3e	2021-05-27 20:30:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:30:49.951+03	2021-05-27 20:30:49.961+03	
f5546fd5-5e43-ff11-5c01-b0afe19eea8d	2021-05-27 20:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:31:09.951+03	2021-05-27 20:31:09.958+03	
b8b4b334-28fb-25fc-0e23-1d27c763f790	2021-05-27 20:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:31:29.951+03	2021-05-27 20:31:30.272+03	
f00757ca-15cc-ac0f-850d-371ebafb601c	2021-05-27 20:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:31:49.951+03	2021-05-27 20:31:49.958+03	
b39a22a5-c231-5365-00d8-4004fb308cf5	2021-05-27 20:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:32:09.951+03	2021-05-27 20:32:09.958+03	
3d42c447-7da3-75c5-5a97-5c44dfd3d3f3	2021-05-27 20:32:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:32:29.951+03	2021-05-27 20:32:29.958+03	
9be1222c-8959-a05f-d5cc-2e3f0b2e8bd6	2021-05-27 20:32:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:32:49.951+03	2021-05-27 20:32:49.959+03	
b7e3f962-79c6-8235-5b34-56f76808825d	2021-05-27 20:33:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:33:09.951+03	2021-05-27 20:33:09.959+03	
3b8c430c-ed22-14ec-ee78-75e838bb91da	2021-05-27 20:33:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:33:29.951+03	2021-05-27 20:33:29.958+03	
58795c66-49e0-d54d-55e1-5f5abb4ec129	2021-05-27 20:33:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:33:49.951+03	2021-05-27 20:33:49.959+03	
47ad9562-fd91-b5a2-8093-d406a8ea16c9	2021-05-27 20:34:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:34:09.951+03	2021-05-27 20:34:09.957+03	
e6e63dd1-ab8e-7987-17c2-e64c76f0f65b	2021-05-27 20:34:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:34:29.951+03	2021-05-27 20:34:29.958+03	
4e7cc90a-00f5-2e0f-1bd6-55ffaf2cb7f5	2021-05-27 20:34:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:34:49.951+03	2021-05-27 20:34:49.959+03	
39d007ca-4a8b-28ab-f6a9-f9fe91f84582	2021-05-27 20:35:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:35:09.951+03	2021-05-27 20:35:09.959+03	
6db1fb2d-7a22-2094-f5d5-9e490f636017	2021-05-27 20:35:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:35:29.951+03	2021-05-27 20:35:29.957+03	
17f20979-b4fd-a19e-1677-14d7611f95fc	2021-05-27 20:35:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:35:49.951+03	2021-05-27 20:35:49.96+03	
46862b9d-44ba-b394-58ae-8ccf61e71ce0	2021-05-27 20:36:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:36:09.951+03	2021-05-27 20:36:09.957+03	
ce332c1e-9efc-b42a-67a3-75edf17a145e	2021-05-27 20:36:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:36:29.951+03	2021-05-27 20:36:29.958+03	
0630001d-f627-3ae2-818e-de88684ca668	2021-05-27 20:36:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:36:49.951+03	2021-05-27 20:36:49.959+03	
45bdf277-65ba-662d-06d0-79950604c632	2021-05-27 20:37:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:37:09.951+03	2021-05-27 20:37:09.958+03	
a33aebcd-fbd3-b4da-9ca2-145c6a1d06f2	2021-05-27 20:37:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:37:29.951+03	2021-05-27 20:37:29.957+03	
b46d0c29-b716-effa-860e-d6ea1dbcdd30	2021-05-27 20:37:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:37:49.951+03	2021-05-27 20:37:49.959+03	
ceaf7f3f-f18c-05ee-824f-54a26ce66727	2021-05-27 20:38:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:38:09.951+03	2021-05-27 20:38:09.958+03	
8038d293-7b1c-8fc5-beb2-17736e013b12	2021-05-27 20:38:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:38:29.951+03	2021-05-27 20:38:29.958+03	
61007fdc-2029-a6f9-ab64-549b93b4c719	2021-05-27 20:38:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:38:49.952+03	2021-05-27 20:38:49.959+03	
336b2d28-44ac-c45e-7d3f-b84438fbb811	2021-05-27 20:39:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:39:10.951+03	2021-05-27 20:39:10.957+03	
6a40ca9e-51b4-18af-479e-d292a15396ca	2021-05-27 20:39:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:39:31.951+03	2021-05-27 20:39:31.959+03	
cf1a2b33-51bf-c74b-9b50-38da5be6bd2c	2021-05-27 20:39:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:39:51.951+03	2021-05-27 20:39:51.958+03	
5ee38e18-0e12-6a7c-7682-3947ac921801	2021-05-27 20:40:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:40:01.951+03	2021-05-27 20:40:01.958+03	
d48c97f6-65be-63b6-5d8c-f421a65e8638	2021-05-27 20:40:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:40:21.951+03	2021-05-27 20:40:21.959+03	
61fecd37-cf99-c411-b341-556480d3064a	2021-05-27 20:20:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:20:04.951+03	2021-05-27 20:20:04.957+03	
bb8ed7e5-19ef-63ee-cccd-6aaf38eb4b60	2021-05-27 20:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:20:25.951+03	2021-05-27 20:20:25.958+03	
73568f49-c1d8-d2fd-69a8-78325966c17f	2021-05-27 20:20:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:20:45.952+03	2021-05-27 20:20:45.961+03	
e8262be7-6e26-e1dc-ba83-8f9ddd4ab543	2021-05-27 20:21:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:21:06.951+03	2021-05-27 20:21:06.958+03	
2ec06789-a0f4-9d73-7034-6fcb21d078ad	2021-05-27 20:21:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:21:26.951+03	2021-05-27 20:21:26.967+03	
18e4de55-9b00-7cb7-a8c1-4aa5a8cfbb4e	2021-05-27 20:21:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:21:46.951+03	2021-05-27 20:21:46.958+03	
94af5438-a8c7-bb7d-a86a-df4cf64782b8	2021-05-27 20:22:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:22:06.951+03	2021-05-27 20:22:06.957+03	
9ca4a98d-b16c-e5e7-1836-26d3027a1b2c	2021-05-27 20:22:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:22:26.951+03	2021-05-27 20:22:26.959+03	
6bbeb266-8d27-396a-ada0-a9c28af7f41a	2021-05-27 20:22:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:22:46.951+03	2021-05-27 20:22:46.958+03	
ac1d01d8-0ebb-43e1-802b-354b8bd42fea	2021-05-27 20:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:23:06.951+03	2021-05-27 20:23:06.958+03	
31fb6526-391d-17bb-3efd-918cb094ece9	2021-05-27 20:23:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:23:26.951+03	2021-05-27 20:23:26.957+03	
c313ae70-5370-9ed6-69a6-31ec3205e531	2021-05-27 20:23:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:23:46.951+03	2021-05-27 20:23:46.959+03	
590f065a-b113-b194-ad20-bb71171436c6	2021-05-27 20:24:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:24:06.951+03	2021-05-27 20:24:06.96+03	
7ef3be12-3223-b839-95e2-edaa477c7226	2021-05-27 20:24:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:24:26.952+03	2021-05-27 20:24:26.959+03	
b77d2c41-5b15-c4b6-b8cd-394d284ffbd7	2021-05-27 20:24:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:24:47.952+03	2021-05-27 20:24:47.959+03	
7d607772-e827-68cc-bbfd-341714ac17c2	2021-05-27 20:25:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:25:07.952+03	2021-05-27 20:25:07.959+03	
76125cb7-dde8-bc51-1e54-4a1cc550402e	2021-05-27 20:25:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:25:27.952+03	2021-05-27 20:25:27.958+03	
9e5efb4b-c492-3f73-ae9e-b675df5f78b5	2021-05-27 20:25:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:25:48.951+03	2021-05-27 20:25:48.96+03	
fd7f4579-ace2-b0b4-f910-f7514c3f0a0d	2021-05-27 20:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:26:08.951+03	2021-05-27 20:26:08.959+03	
9626c948-8eb0-439c-ad41-273b39e74711	2021-05-27 20:26:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:26:28.951+03	2021-05-27 20:26:28.959+03	
dc43e08f-57b1-8370-b177-70ef8598447b	2021-05-27 20:26:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:26:48.951+03	2021-05-27 20:26:48.959+03	
c60528b2-4568-e403-ab95-e1e362b4293f	2021-05-27 20:27:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:27:08.951+03	2021-05-27 20:27:08.958+03	
9f5b7442-dd0c-12cb-c579-53f36b5f3278	2021-05-27 20:27:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:27:28.951+03	2021-05-27 20:27:28.958+03	
38a2a5c4-25e9-76e8-318f-ddafdf81b175	2021-05-27 20:27:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:27:48.951+03	2021-05-27 20:27:48.958+03	
cced768a-22e6-31bb-a216-b4eddbf6aefc	2021-05-27 20:28:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:28:08.951+03	2021-05-27 20:28:08.957+03	
0b16ea5f-366f-79cd-1a8a-756851b0d177	2021-05-27 20:28:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:28:28.951+03	2021-05-27 20:28:28.957+03	
5d52be3e-9eb0-ec61-b02a-f0348a81ee4c	2021-05-27 20:28:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:28:48.951+03	2021-05-27 20:28:48.958+03	
49971de1-3fd4-fb5a-66a7-8f00fc732b3e	2021-05-27 20:29:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:29:08.951+03	2021-05-27 20:29:08.958+03	
63688a5c-eb39-2ecf-c241-06169ef1a01e	2021-05-27 20:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:29:29.951+03	2021-05-27 20:29:29.958+03	
f2344ebb-1f4b-d616-4692-92dc32a881f1	2021-05-27 20:29:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:29:49.951+03	2021-05-27 20:29:49.958+03	
789a2aec-17d7-cabb-7fa5-06948d7b24b8	2021-05-27 20:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 20:30:00.951+03	2021-05-27 20:30:00.956+03	ERROR
16366c62-a8eb-8041-815b-da1cc9c622e0	2021-05-27 20:30:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:30:19.951+03	2021-05-27 20:30:19.958+03	
d7d3c9ee-6f2d-e7db-b936-c4c2c670e717	2021-05-27 20:30:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:30:39.951+03	2021-05-27 20:30:39.958+03	
2b3fa6c8-7a26-b1e5-8bec-733079b87ebc	2021-05-27 20:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:30:59.951+03	2021-05-27 20:30:59.958+03	
e02a7fd7-f19d-5029-bb48-70acbf4c737d	2021-05-27 20:31:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:31:19.951+03	2021-05-27 20:31:19.959+03	
a16a69de-a49f-0ec6-1ff7-26eb883144ee	2021-05-27 20:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:31:39.951+03	2021-05-27 20:31:39.958+03	
195b630b-7308-26fc-2b70-37587ac56924	2021-05-27 20:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:31:59.951+03	2021-05-27 20:31:59.958+03	
4e497795-98d5-aa3c-d826-b3531ddfa11d	2021-05-27 20:32:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:32:19.951+03	2021-05-27 20:32:19.958+03	
31c9db13-d4f5-fb46-e0aa-2f31d86d7867	2021-05-27 20:32:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:32:39.951+03	2021-05-27 20:32:39.959+03	
d07e06bf-889c-a85d-f283-b064d61bc562	2021-05-27 20:32:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:32:59.951+03	2021-05-27 20:32:59.959+03	
71f8417f-d683-dd21-4283-bd7af9e97f1c	2021-05-27 20:33:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:33:19.951+03	2021-05-27 20:33:19.957+03	
b6cda5e1-291e-8211-4bc4-744f1321c236	2021-05-27 20:33:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:33:39.951+03	2021-05-27 20:33:39.957+03	
1781b6c5-3938-b15d-a3f6-e4008416f4f1	2021-05-27 20:33:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:33:59.951+03	2021-05-27 20:33:59.959+03	
443e9d11-e8d8-1dad-82dc-d44ace6a3c14	2021-05-27 20:34:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:34:19.951+03	2021-05-27 20:34:19.959+03	
739b5495-0a75-e2bd-5a46-646e4c6b9cfd	2021-05-27 20:34:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:34:39.951+03	2021-05-27 20:34:39.959+03	
d6214b59-fbd2-a1e2-4ece-5285158352e5	2021-05-27 20:34:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:34:59.951+03	2021-05-27 20:34:59.958+03	
08eb1209-ae7a-ef26-32ef-1043066572ee	2021-05-27 20:35:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:35:19.951+03	2021-05-27 20:35:19.958+03	
822f77ca-af35-8027-8125-d2437586ca94	2021-05-27 20:35:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:35:39.951+03	2021-05-27 20:35:39.959+03	
9dddce91-402e-fe67-e0c3-3d28e055bce8	2021-05-27 20:35:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:35:59.951+03	2021-05-27 20:35:59.958+03	
e466c484-eedb-9700-85d7-9cefc2dd22c6	2021-05-27 20:36:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:36:19.951+03	2021-05-27 20:36:19.957+03	
7c05d10a-3749-659e-cb03-e441d0c78482	2021-05-27 20:36:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:36:39.951+03	2021-05-27 20:36:39.959+03	
8ace7e6a-c1f3-519b-ff0b-22b30bd9edad	2021-05-27 20:36:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:36:59.951+03	2021-05-27 20:36:59.958+03	
8c8c688e-7a38-e1a8-1c2a-2e9260747cf3	2021-05-27 20:37:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:37:19.951+03	2021-05-27 20:37:19.959+03	
92ad7b4a-1444-9d40-ef17-04c4dbd1cf60	2021-05-27 20:37:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:37:39.951+03	2021-05-27 20:37:39.958+03	
38c64599-9627-a9f4-5c3b-dc84c2fa9fe4	2021-05-27 20:37:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:37:59.951+03	2021-05-27 20:37:59.958+03	
4087e0ad-a857-03bd-40ed-b67048b946b7	2021-05-27 20:38:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:38:19.951+03	2021-05-27 20:38:19.958+03	
f74f1fa8-4569-8f53-60b4-1399e1d9bb24	2021-05-27 20:38:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:38:39.951+03	2021-05-27 20:38:39.963+03	
e5f62bba-086f-d7fc-33f2-c8f69e86a9b9	2021-05-27 20:39:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:39:00.951+03	2021-05-27 20:39:00.958+03	
910bcde2-dbab-a768-2773-6bad9af9ba8f	2021-05-27 20:39:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:39:20.952+03	2021-05-27 20:39:20.958+03	
7352bd70-2e4e-1676-779e-10087677d8d7	2021-05-27 20:39:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:39:41.951+03	2021-05-27 20:39:41.958+03	
18fd8a54-8f58-f11b-c724-dcc1183694f4	2021-05-27 20:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 20:40:00.951+03	2021-05-27 20:40:00.957+03	ERROR
0a079f94-b5a8-ecaa-5b8e-1b00317e715a	2021-05-27 20:40:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:40:11.951+03	2021-05-27 20:40:11.961+03	
7f4c3857-0ffa-48c0-1528-396f1021bdb4	2021-05-27 20:40:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:40:31.951+03	2021-05-27 20:40:31.957+03	
23e4e0d5-7189-b024-0c59-ad838fd897c1	2021-05-27 20:40:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:40:41.951+03	2021-05-27 20:40:41.958+03	
eb23aab1-4244-7816-c19d-9cc4dcec1174	2021-05-27 20:41:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:41:01.951+03	2021-05-27 20:41:01.958+03	
f94697f7-d97a-4126-6af3-88f650c663b5	2021-05-27 20:41:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:41:21.952+03	2021-05-27 20:41:21.959+03	
8cb9cf91-3978-76d9-ddb0-684296b33c5f	2021-05-27 20:41:42.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:41:42.953+03	2021-05-27 20:41:42.961+03	
1b8d79d0-fb8a-4db2-d8ef-91ab7247c243	2021-05-27 20:42:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:42:03.951+03	2021-05-27 20:42:03.959+03	
0133e86f-5858-0abc-7397-d86b41670916	2021-05-27 20:42:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:42:23.951+03	2021-05-27 20:42:23.959+03	
e065967a-a59e-3ab7-f39f-a392997f9f77	2021-05-27 20:42:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:42:43.951+03	2021-05-27 20:42:43.958+03	
6afeb7cf-5c9f-cbbe-2390-beb3a1f952ea	2021-05-27 20:43:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:43:03.951+03	2021-05-27 20:43:04.25+03	
e6a52121-ffd3-9178-3873-451488287472	2021-05-27 20:43:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:43:23.951+03	2021-05-27 20:43:23.958+03	
3bfaa3af-ed7e-1d05-4330-af66ce3b47f7	2021-05-27 20:43:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:43:43.951+03	2021-05-27 20:43:43.959+03	
a38b39a2-fa55-233e-0ea1-7ca078527370	2021-05-27 20:44:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:44:03.951+03	2021-05-27 20:44:03.958+03	
f7ea5281-b26b-957f-a3f1-cf2a6f4924b4	2021-05-27 20:44:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:44:23.951+03	2021-05-27 20:44:23.961+03	
72656578-d8d2-f048-5fbf-3d9dd98d7082	2021-05-27 20:44:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:44:43.951+03	2021-05-27 20:44:43.959+03	
3d132bb0-47da-bded-a09c-152e3d127e11	2021-05-27 20:45:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:45:03.951+03	2021-05-27 20:45:03.957+03	
d388bcf7-2d16-1a71-3543-e5f3aa05cfd6	2021-05-27 20:45:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:45:23.951+03	2021-05-27 20:45:23.958+03	
cdeb2725-7091-ac88-db22-bd2a404aeac2	2021-05-27 20:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:45:43.951+03	2021-05-27 20:45:43.958+03	
4d116e7f-ceb1-ed71-c42c-a70bfd86f7d2	2021-05-27 20:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:46:03.951+03	2021-05-27 20:46:03.959+03	
87f670fb-88d3-cc70-5b9f-712750b95779	2021-05-27 20:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:46:23.951+03	2021-05-27 20:46:23.958+03	
4d0f8b88-7ac7-2779-dfa1-7a240237643e	2021-05-27 20:46:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:46:43.951+03	2021-05-27 20:46:43.957+03	
29dda094-299c-fd71-453a-f8a50032e072	2021-05-27 20:47:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:47:03.951+03	2021-05-27 20:47:03.957+03	
9482e910-8d04-2186-131f-a098dfe94079	2021-05-27 20:47:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:47:23.951+03	2021-05-27 20:47:23.958+03	
c425796a-15f4-7e7d-1fe9-acc4814381b0	2021-05-27 20:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:47:43.951+03	2021-05-27 20:47:43.958+03	
990570f9-f237-2f89-1edf-095594b54e46	2021-05-27 20:48:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:48:03.951+03	2021-05-27 20:48:03.958+03	
cfb4593c-da93-e48a-1477-0e8566114375	2021-05-27 20:48:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:48:23.951+03	2021-05-27 20:48:23.957+03	
e80a171b-e255-ff5f-b0f5-e9651f1f62d6	2021-05-27 20:48:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:48:43.951+03	2021-05-27 20:48:43.958+03	
4ed3b873-ce43-3296-4445-188f05638d4d	2021-05-27 20:49:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:49:03.951+03	2021-05-27 20:49:03.958+03	
a1558da8-7b83-9404-5095-466338dc1bbc	2021-05-27 20:49:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:49:23.951+03	2021-05-27 20:49:23.959+03	
751a99ae-0990-1273-f60f-26d8f28e9d79	2021-05-27 20:49:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:49:43.951+03	2021-05-27 20:49:43.961+03	
d7eff2f1-80c0-e526-1568-978789592e66	2021-05-27 20:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 20:50:00.951+03	2021-05-27 20:50:00.956+03	ERROR
611f1efe-39f2-0c38-3575-801d19919687	2021-05-27 20:50:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:50:13.951+03	2021-05-27 20:50:13.958+03	
3f890b42-1bb7-6fd3-d471-22ef37aece16	2021-05-27 20:50:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:50:33.951+03	2021-05-27 20:50:33.958+03	
f789d224-22e1-0acd-5b87-db573046b100	2021-05-27 20:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:50:53.951+03	2021-05-27 20:50:53.958+03	
e300bf21-8ae8-3fb5-0ab9-cb918dffffb9	2021-05-27 20:51:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:51:13.951+03	2021-05-27 20:51:13.957+03	
fd37e0f3-7171-d52c-7032-6e71550ad027	2021-05-27 20:51:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:51:33.951+03	2021-05-27 20:51:33.958+03	
026245cf-2765-d3f5-f62f-197408c424e6	2021-05-27 20:51:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:51:53.952+03	2021-05-27 20:51:53.96+03	
6a9a8f29-ba61-9b40-16ec-b9d223deda90	2021-05-27 20:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:52:14.951+03	2021-05-27 20:52:14.959+03	
2d228bd5-3012-6d59-6cb0-efaf04097969	2021-05-27 20:52:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:52:34.951+03	2021-05-27 20:52:34.957+03	
e2e416bf-ddf6-cfad-b655-b8225a97e2bf	2021-05-27 20:52:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:52:54.951+03	2021-05-27 20:52:54.958+03	
02c78781-0db0-f965-d9e5-f3c74be4ff0a	2021-05-27 20:53:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:53:14.951+03	2021-05-27 20:53:14.958+03	
3d36e960-7a90-83e3-7946-cf73495cad17	2021-05-27 20:53:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:53:34.951+03	2021-05-27 20:53:34.959+03	
585ef729-c2eb-22c9-fced-83d4528680c2	2021-05-27 20:53:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:53:54.951+03	2021-05-27 20:53:54.958+03	
8a5cc6c9-ca5f-b3fb-7e87-d69966c491a0	2021-05-27 20:54:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:54:14.951+03	2021-05-27 20:54:14.958+03	
cc38114b-9395-92f8-6e5c-28f18f37506f	2021-05-27 20:54:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:54:34.951+03	2021-05-27 20:54:34.958+03	
8bae897b-4aaf-ff41-6bfe-0a13748f4a4b	2021-05-27 20:54:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:54:54.951+03	2021-05-27 20:54:54.958+03	
90ebf8ef-01bf-74c2-6ded-41537e9c58c8	2021-05-27 20:55:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:55:14.951+03	2021-05-27 20:55:14.958+03	
abbab1c8-0ed3-29c8-1b64-f2ddca5b28fe	2021-05-27 20:55:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:55:34.951+03	2021-05-27 20:55:34.96+03	
bf241e7f-9c81-6165-de47-70f9da972f2c	2021-05-27 20:55:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:55:54.951+03	2021-05-27 20:55:54.959+03	
a1694776-12d7-d745-d203-37814e4d2d83	2021-05-27 20:56:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:56:14.951+03	2021-05-27 20:56:14.958+03	
9f3c58e9-ff40-ac85-b40a-79e2f5d17ea1	2021-05-27 20:56:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:56:34.951+03	2021-05-27 20:56:34.958+03	
90600d41-709c-4607-fc5b-5cca4d9ca9f0	2021-05-27 20:56:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:56:54.951+03	2021-05-27 20:56:54.959+03	
b5024968-4d81-96f1-501c-dfe67b5e2abb	2021-05-27 20:57:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:57:14.951+03	2021-05-27 20:57:14.958+03	
647cb3ad-f557-5016-bfb1-4fa537437b35	2021-05-27 20:57:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:57:34.951+03	2021-05-27 20:57:34.958+03	
3330b0a8-c635-dbe9-3f6f-b1a4f1c79df5	2021-05-27 20:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:40:51.951+03	2021-05-27 20:40:51.961+03	
a3bbc228-9d38-a3f4-a213-feb6dec4bd65	2021-05-27 20:41:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:41:11.951+03	2021-05-27 20:41:11.96+03	
411b4b3d-d53c-b032-19a9-0cbfa9fc3b35	2021-05-27 20:41:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:41:32.951+03	2021-05-27 20:41:32.961+03	
b95ad0a5-e4f0-7c01-7cc6-eee001429087	2021-05-27 20:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:41:53.951+03	2021-05-27 20:41:53.959+03	
40c31d4c-dfcc-5422-3f13-e3cb31b0e98f	2021-05-27 20:42:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:42:13.951+03	2021-05-27 20:42:13.959+03	
0bb6ccff-ce5a-0033-7766-e6df89596b0e	2021-05-27 20:42:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:42:33.951+03	2021-05-27 20:42:33.958+03	
ca3a49db-840d-539f-f1fb-6ba05f87b0fa	2021-05-27 20:42:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:42:53.951+03	2021-05-27 20:42:53.959+03	
43c42959-96bd-b0ec-e4d0-e8886dc83b22	2021-05-27 20:43:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:43:13.951+03	2021-05-27 20:43:13.958+03	
abe87c23-f854-a334-61f7-e1d2f00bbaca	2021-05-27 20:43:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:43:33.951+03	2021-05-27 20:43:33.957+03	
2cc7ced8-8e34-b09c-f2b0-afc68e06a458	2021-05-27 20:43:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:43:53.951+03	2021-05-27 20:43:53.958+03	
c0b10e5e-e8d4-fc2c-7f49-2d64de02f54a	2021-05-27 20:44:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:44:13.951+03	2021-05-27 20:44:13.96+03	
652c40e9-c06d-5766-6086-1049eb5c5132	2021-05-27 20:44:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:44:33.951+03	2021-05-27 20:44:33.958+03	
d9ceb7b3-f58d-5a66-cb23-5a372717d128	2021-05-27 20:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:44:53.951+03	2021-05-27 20:44:53.958+03	
f919a882-d34b-65d0-719b-12417f3dc1a4	2021-05-27 20:45:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:45:13.951+03	2021-05-27 20:45:13.957+03	
beb02d9b-3341-7996-f0de-33acd78159b2	2021-05-27 20:45:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:45:33.951+03	2021-05-27 20:45:33.958+03	
50ba2c30-ad21-af35-90a8-0642fecb01a4	2021-05-27 20:45:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:45:53.951+03	2021-05-27 20:45:53.958+03	
4b2e732d-69a3-8d6e-6a5d-47c50adc720e	2021-05-27 20:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:46:13.951+03	2021-05-27 20:46:13.957+03	
1ba00f1e-ceea-53b0-e8bf-f96a1c53b82f	2021-05-27 20:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:46:33.951+03	2021-05-27 20:46:33.958+03	
75ce6e58-672e-10af-bdc0-cad2c3560fbc	2021-05-27 20:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:46:53.951+03	2021-05-27 20:46:53.959+03	
5640ed51-7e28-7b6c-f192-e2f4faf2b566	2021-05-27 20:47:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:47:13.951+03	2021-05-27 20:47:13.96+03	
d914bce1-1fb6-723f-13a7-e02ed6662de4	2021-05-27 20:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:47:33.951+03	2021-05-27 20:47:33.958+03	
be7465bd-938d-ab2e-092a-7a30651e778a	2021-05-27 20:47:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:47:53.951+03	2021-05-27 20:47:53.957+03	
1f4eb8d3-d606-ed1a-6ff2-9ea6c4097255	2021-05-27 20:48:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:48:13.951+03	2021-05-27 20:48:13.958+03	
1dffa123-c4cb-9c10-9743-651d45938b92	2021-05-27 20:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:48:33.951+03	2021-05-27 20:48:33.96+03	
b0c97d06-1f53-bfeb-71e1-15c75f2a2997	2021-05-27 20:48:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:48:53.951+03	2021-05-27 20:48:53.958+03	
fd9534c8-cc6b-8779-a833-76b30122209b	2021-05-27 20:49:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:49:13.951+03	2021-05-27 20:49:13.958+03	
48fcf1fb-9359-9fd8-8404-d2279fec70a0	2021-05-27 20:49:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:49:33.951+03	2021-05-27 20:49:33.958+03	
f7f79fb0-e3e1-ca7d-5f5f-35e2b148aa1e	2021-05-27 20:49:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:49:53.951+03	2021-05-27 20:49:53.959+03	
4dae9574-893c-0cce-f8e8-157bce5d81bd	2021-05-27 20:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:50:03.951+03	2021-05-27 20:50:03.96+03	
100d9852-6662-a756-43fe-49fe2989b003	2021-05-27 20:50:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:50:23.951+03	2021-05-27 20:50:23.958+03	
d948e0bb-fecf-8033-1195-07e801ae4730	2021-05-27 20:50:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:50:43.951+03	2021-05-27 20:50:43.957+03	
47930987-f6d2-e49b-c09c-98c531fa69a3	2021-05-27 20:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:51:03.951+03	2021-05-27 20:51:03.959+03	
15e84315-7757-4b0d-aa8c-f3c459d3b854	2021-05-27 20:51:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:51:23.951+03	2021-05-27 20:51:23.962+03	
237a4651-ae31-3e5c-8e6d-ac32fc96a3df	2021-05-27 20:51:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:51:43.951+03	2021-05-27 20:51:43.958+03	
6e58e4b5-5780-c7b0-32e0-04acdc004fe8	2021-05-27 20:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:52:04.951+03	2021-05-27 20:52:04.958+03	
ad14dc90-6452-5bb8-6eb2-60a58f8713e7	2021-05-27 20:52:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:52:24.951+03	2021-05-27 20:52:24.958+03	
041cc5a6-853e-7ad6-75d8-0807edbfdb51	2021-05-27 20:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:52:44.951+03	2021-05-27 20:52:44.958+03	
931eef47-0cf7-6776-4380-1c45fd5d69c4	2021-05-27 20:53:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:53:04.951+03	2021-05-27 20:53:04.958+03	
faa01ca4-6408-c8b6-af24-610fd42b8c63	2021-05-27 20:53:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:53:24.951+03	2021-05-27 20:53:24.959+03	
3c2fc65a-a457-32c1-8bbd-bd298d8c579f	2021-05-27 20:53:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:53:44.951+03	2021-05-27 20:53:44.958+03	
1d9a03fa-4e9a-7997-f981-85ed793658c6	2021-05-27 20:54:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:54:04.951+03	2021-05-27 20:54:04.958+03	
25197441-0380-b26d-d9b4-0184ce213c28	2021-05-27 20:54:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:54:24.951+03	2021-05-27 20:54:24.968+03	
37e62da6-9339-2b1d-d478-c7606346a954	2021-05-27 20:54:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:54:44.951+03	2021-05-27 20:54:44.958+03	
978d6f3a-6c85-862d-6188-3c8687c4fa25	2021-05-27 20:55:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:55:04.951+03	2021-05-27 20:55:04.958+03	
add603c4-3bf5-582f-389f-4c596b6117f5	2021-05-27 20:55:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:55:24.951+03	2021-05-27 20:55:24.958+03	
770872cf-5572-1f89-82c0-c1821457f997	2021-05-27 20:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:55:44.951+03	2021-05-27 20:55:44.958+03	
c812723d-f214-f361-103b-586d092277a6	2021-05-27 20:56:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:56:04.951+03	2021-05-27 20:56:04.957+03	
34048945-aefd-f234-4459-1bfa63138530	2021-05-27 20:56:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:56:24.951+03	2021-05-27 20:56:24.958+03	
c0e3fa6e-ab54-f522-9ae8-b2cccd394de5	2021-05-27 20:56:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:56:44.951+03	2021-05-27 20:56:44.958+03	
15306912-f959-2886-744c-2ee89dd7acd7	2021-05-27 20:57:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:57:04.951+03	2021-05-27 20:57:04.959+03	
dfb856d6-c5a5-9f34-cf05-418d65f75636	2021-05-27 20:57:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:57:24.951+03	2021-05-27 20:57:24.958+03	
980f926e-906e-3111-5677-23cd30709ed3	2021-05-27 20:57:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:57:44.951+03	2021-05-27 20:57:44.957+03	
f438e628-e9d8-18f0-647d-60a9fbd91dcc	2021-05-27 20:57:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:57:54.951+03	2021-05-27 20:57:54.959+03	
791ca5e1-0a46-0784-0850-17ef929f2862	2021-05-27 20:58:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:58:04.951+03	2021-05-27 20:58:04.958+03	
cd18d877-2e64-9944-bf12-9eaa9446891b	2021-05-27 20:58:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:58:14.951+03	2021-05-27 20:58:14.959+03	
f3bba723-fb92-3c51-bad3-241b6eb11785	2021-05-27 20:58:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:58:24.951+03	2021-05-27 20:58:24.958+03	
265960f4-ec6f-25af-8dec-a5d5a16d1c3c	2021-05-27 20:58:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:58:34.951+03	2021-05-27 20:58:34.958+03	
4aa8a1e8-becd-0f9d-3fb2-db02f6563914	2021-05-27 20:58:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:58:44.951+03	2021-05-27 20:58:44.958+03	
2b135bd6-6249-6e5f-77d6-e29827013a23	2021-05-27 20:58:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:58:54.951+03	2021-05-27 20:58:54.958+03	
99d913b5-2b98-4758-6ac0-5b615b7f8159	2021-05-27 20:59:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:59:04.951+03	2021-05-27 20:59:04.958+03	
654302ee-c38a-dd90-b797-25646edd81f4	2021-05-27 20:59:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:59:14.951+03	2021-05-27 20:59:14.957+03	
fe50d01a-7180-18ba-af89-2b15b4a4b0c4	2021-05-27 20:59:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:59:24.951+03	2021-05-27 20:59:24.957+03	
6922f43c-3f08-225a-44cf-2256397fdace	2021-05-27 20:59:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:59:34.951+03	2021-05-27 20:59:34.958+03	
ead839db-6f71-7fb5-ce1f-32c1ee98aa55	2021-05-27 20:59:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:59:44.951+03	2021-05-27 20:59:44.958+03	
05480611-13ff-73c0-7a67-1d9aec2e277e	2021-05-27 21:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 21:00:00.951+03	2021-05-27 21:00:00.956+03	ERROR
ec49c242-9d6b-d956-a2d2-2306ef0818ee	2021-05-27 21:00:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:00:14.951+03	2021-05-27 21:00:14.958+03	
0c20891e-ff31-d74f-9f06-64573cd74b28	2021-05-27 21:00:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:00:34.951+03	2021-05-27 21:00:34.959+03	
c80b1cfa-bcc6-8caf-01b1-248d1056af27	2021-05-27 21:00:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:00:55.951+03	2021-05-27 21:00:55.958+03	
9c1901f2-4cd5-e954-05f2-fdec15911899	2021-05-27 21:01:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:01:15.951+03	2021-05-27 21:01:15.96+03	
a7cf8004-424f-74bc-b399-cbed2d1dc6f5	2021-05-27 21:01:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:01:35.951+03	2021-05-27 21:01:35.957+03	
36f277b2-68e6-f892-4f68-4bbeaa245571	2021-05-27 21:01:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:01:55.952+03	2021-05-27 21:01:55.961+03	
4057064e-fe43-63a5-e0aa-6b9b0ca7b9aa	2021-05-27 21:02:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:02:16.951+03	2021-05-27 21:02:16.97+03	
f4dc4916-27b4-c24a-7b9c-fdbbdc539e1e	2021-05-27 21:02:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:02:36.951+03	2021-05-27 21:02:36.958+03	
5472ce45-1125-6599-a70e-3a32d79cd800	2021-05-27 21:02:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:02:56.951+03	2021-05-27 21:02:56.96+03	
4b137f3d-41a8-469c-2c57-8a5ceaaa7148	2021-05-27 21:03:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:03:16.951+03	2021-05-27 21:03:16.958+03	
c6b8a652-f35d-e989-ae73-428b140132d3	2021-05-27 21:03:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:03:36.951+03	2021-05-27 21:03:36.959+03	
a3e7b9ab-0c1f-cdb4-5c27-44a439daa4fc	2021-05-27 21:03:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:03:56.951+03	2021-05-27 21:03:56.961+03	
b3f462b3-a5d0-b0fc-e273-9a4ba0493c8d	2021-05-27 21:04:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:04:16.951+03	2021-05-27 21:04:16.958+03	
da0ea29c-eee0-c968-37b3-2d2dba483614	2021-05-27 21:04:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:04:36.951+03	2021-05-27 21:04:36.958+03	
63446842-51cd-7e8f-313b-cbb89cc490e0	2021-05-27 21:04:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:04:56.951+03	2021-05-27 21:04:56.961+03	
fdecee87-774e-c2e4-1502-96e5a8c544bb	2021-05-27 21:05:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:05:16.951+03	2021-05-27 21:05:16.961+03	
95cc3b95-ab4e-e997-23d2-5c25a81ff4be	2021-05-27 21:05:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:05:36.951+03	2021-05-27 21:05:36.958+03	
d0a497aa-2db1-77eb-daeb-be5b60cfc5b3	2021-05-27 21:05:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:05:56.951+03	2021-05-27 21:05:56.959+03	
3da6ba93-7a27-6271-49f5-98070b5b1b36	2021-05-27 21:06:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:06:16.951+03	2021-05-27 21:06:16.958+03	
05adba2c-2405-f48c-16b5-13cac7f47654	2021-05-27 21:06:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:06:36.952+03	2021-05-27 21:06:36.961+03	
0c626640-bd08-4a54-46f8-96f1156db216	2021-05-27 21:06:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:06:57.951+03	2021-05-27 21:06:57.96+03	
b4c7a42a-7473-40cc-b4e2-ee2e4fbaee81	2021-05-27 21:07:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:07:17.951+03	2021-05-27 21:07:17.958+03	
a98fc11a-941e-d275-a14c-99badc9e6e10	2021-05-27 21:07:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:07:37.952+03	2021-05-27 21:07:37.96+03	
cd1708d8-b0b6-fa2d-4afc-812fcd8106db	2021-05-27 21:07:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:07:58.951+03	2021-05-27 21:07:58.959+03	
fb381e69-673a-7b0d-5fc8-71087fdec844	2021-05-27 21:08:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:08:18.951+03	2021-05-27 21:08:18.959+03	
69dab37d-151f-8fb1-a6c4-b184fe895cad	2021-05-27 21:08:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:08:38.951+03	2021-05-27 21:08:38.959+03	
c7774bea-c0f0-732b-af11-f668bf27d8b3	2021-05-27 21:08:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:08:58.951+03	2021-05-27 21:08:58.958+03	
335201c6-b84d-5188-7910-36c65edfd8f8	2021-05-27 21:09:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:09:18.951+03	2021-05-27 21:09:18.961+03	
9f6a2b01-3d2b-c4d3-d528-9040a0f7040a	2021-05-27 21:09:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:09:39.951+03	2021-05-27 21:09:39.958+03	
9d9d4e89-3fc1-c5d1-151a-d8d6d52e9d73	2021-05-27 21:09:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:09:59.951+03	2021-05-27 21:09:59.958+03	
b82d1ac1-089f-9d2a-dca4-08ebd65978fe	2021-05-27 21:10:09.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:10:09.952+03	2021-05-27 21:10:09.961+03	
ab5548e3-fe5d-c180-39d4-ae2ff9ed4692	2021-05-27 21:10:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:10:30.951+03	2021-05-27 21:10:30.958+03	
cb5c4201-6332-27ba-12ef-b0a5cf1a919c	2021-05-27 21:10:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:10:50.951+03	2021-05-27 21:10:50.958+03	
e511d055-1f75-f743-330d-6c056ebeb7b3	2021-05-27 21:11:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:11:10.951+03	2021-05-27 21:11:10.962+03	
9c3be0f4-4eae-bb7c-276a-6afdb732aefd	2021-05-27 21:11:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:11:30.952+03	2021-05-27 21:11:30.959+03	
8efa5508-023c-b2dc-525c-f86c5e20668c	2021-05-27 21:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:11:51.951+03	2021-05-27 21:11:51.958+03	
01f13473-8a7f-7842-4634-35e4d3eb51b1	2021-05-27 21:12:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:12:11.951+03	2021-05-27 21:12:11.957+03	
519a50fa-0e78-d4c1-2fb3-c02e5facdc7e	2021-05-27 21:12:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:12:31.951+03	2021-05-27 21:12:31.958+03	
402dcb6f-92fb-ca67-088e-d9eb30d057e9	2021-05-27 21:12:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:12:51.951+03	2021-05-27 21:12:51.959+03	
17e6e6b6-fc58-fe4c-e3c9-783b5fadf911	2021-05-27 21:13:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:13:11.951+03	2021-05-27 21:13:11.958+03	
ddf211a6-2a28-78dc-b967-57e2079bcba3	2021-05-27 21:13:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:13:31.951+03	2021-05-27 21:13:31.96+03	
1041db4c-394f-c72a-5183-6d734a281e12	2021-05-27 21:13:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:13:52.951+03	2021-05-27 21:13:52.959+03	
2aa7aea3-8b12-db82-5b40-44ed9330e8f5	2021-05-27 21:14:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:14:12.952+03	2021-05-27 21:14:12.961+03	
b23fc463-4d63-f17c-d4c7-278250457e4d	2021-05-27 21:14:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:14:33.951+03	2021-05-27 21:14:33.959+03	
8f29ca01-b59c-01eb-3fa8-5a07236c5a3b	2021-05-27 21:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:14:54.951+03	2021-05-27 21:14:54.959+03	
734a4249-0146-21aa-279e-b2f00d27a89e	2021-05-27 21:15:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:15:14.951+03	2021-05-27 21:15:14.958+03	
f0de3f9d-12f9-8bae-f178-a457f9f99bad	2021-05-27 21:15:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:15:34.951+03	2021-05-27 21:15:34.958+03	
215010c1-4e4d-ea6b-cb3c-fc06773d9c6c	2021-05-27 21:15:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:15:54.951+03	2021-05-27 21:15:54.958+03	
378fd8e8-38e5-1ad6-8da5-6e893ffe6e4c	2021-05-27 21:16:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:16:14.951+03	2021-05-27 21:16:14.959+03	
575c9b0d-f1eb-ae8f-c06c-f2de13b3bd09	2021-05-27 21:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:16:35.951+03	2021-05-27 21:16:35.96+03	
02054794-f3cd-1da5-764f-11a899fbcffb	2021-05-27 21:16:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:16:56.951+03	2021-05-27 21:16:56.958+03	
e0dba58b-a8a8-6c7d-d0c4-3713ac7db81e	2021-05-27 21:17:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:17:16.952+03	2021-05-27 21:17:16.96+03	
b494efc7-d56e-e076-515f-75effacf0716	2021-05-27 21:17:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:17:37.953+03	2021-05-27 21:17:37.961+03	
c0827816-2576-6a2e-3261-0759c8f9fdce	2021-05-27 21:17:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:17:58.951+03	2021-05-27 21:17:58.958+03	
d0bdc824-5c6f-3436-61fe-deb718cab7ea	2021-05-27 21:18:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:18:19.952+03	2021-05-27 21:18:19.959+03	
53bcb4ee-ee85-a35a-1e17-2a7c76c122e9	2021-05-27 21:18:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:18:40.951+03	2021-05-27 21:18:40.958+03	
a9985eea-0b14-a046-89a7-44bed7042c73	2021-05-27 21:19:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:19:00.951+03	2021-05-27 21:19:00.962+03	
1231e1de-496d-c2b3-1ed6-4beeaaa94323	2021-05-27 21:19:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:19:21.951+03	2021-05-27 21:19:21.959+03	
e323ec51-4ced-ff99-7c43-7f438944eade	2021-05-27 21:19:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:19:41.951+03	2021-05-27 21:19:41.968+03	
fc9ac2c1-56ca-54f6-77cf-1f960ac2cf38	2021-05-27 21:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 21:20:00.951+03	2021-05-27 21:20:00.957+03	ERROR
d764d5a5-e559-dbcc-c110-345cfc520906	2021-05-27 21:20:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:20:11.951+03	2021-05-27 21:20:11.959+03	
689b8d59-04eb-a5e2-18bf-26519790928c	2021-05-27 20:59:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 20:59:54.951+03	2021-05-27 20:59:54.958+03	
70e5f5ae-3956-9ed2-ccb6-48c33c518719	2021-05-27 21:00:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:00:04.951+03	2021-05-27 21:00:04.959+03	
60ebc703-1614-1de9-3ffc-00671a70c1a8	2021-05-27 21:00:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:00:24.951+03	2021-05-27 21:00:24.958+03	
d48553fd-f174-4f24-19ef-74f129107c21	2021-05-27 21:00:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:00:44.952+03	2021-05-27 21:00:44.959+03	
50e5f3ab-b400-f570-fc5e-16d9e2bd7712	2021-05-27 21:01:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:01:05.951+03	2021-05-27 21:01:05.959+03	
b07d2f08-7d79-729d-5ea8-399891df188f	2021-05-27 21:01:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:01:25.951+03	2021-05-27 21:01:25.957+03	
e6505bd2-6450-35ae-6944-b0a44dbb0b18	2021-05-27 21:01:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:01:45.951+03	2021-05-27 21:01:45.959+03	
639bd05b-be1a-1530-d821-dac89742d50a	2021-05-27 21:02:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:02:06.951+03	2021-05-27 21:02:06.964+03	
f6e25950-137b-d936-4607-ef235029aa97	2021-05-27 21:02:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:02:26.951+03	2021-05-27 21:02:26.958+03	
d413ccb4-5856-e876-ef8b-b43bfaedefea	2021-05-27 21:02:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:02:46.951+03	2021-05-27 21:02:46.958+03	
09777524-8896-e39d-e9f0-6e86b7f3114e	2021-05-27 21:03:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:03:06.951+03	2021-05-27 21:03:06.958+03	
4fe8e7ec-0963-dc4e-8553-ca64853d47c6	2021-05-27 21:03:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:03:26.951+03	2021-05-27 21:03:26.959+03	
c4b66534-25ff-5bdd-4f87-ab461d213774	2021-05-27 21:03:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:03:46.951+03	2021-05-27 21:03:46.959+03	
26615089-e4f3-2191-5105-c5d2e4f3c2d0	2021-05-27 21:04:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:04:06.951+03	2021-05-27 21:04:06.958+03	
4670d5ea-b7a7-7abc-6880-0cd182f6e0d9	2021-05-27 21:04:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:04:26.951+03	2021-05-27 21:04:26.96+03	
fbc7420c-b32f-1e1b-a2cd-2e09ed31a296	2021-05-27 21:04:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:04:46.951+03	2021-05-27 21:04:46.958+03	
fe4f9534-3c94-5670-bd50-44abd88bd0dc	2021-05-27 21:05:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:05:06.951+03	2021-05-27 21:05:06.958+03	
f8c0a212-ac7e-2da3-ecbe-15e81cee6349	2021-05-27 21:05:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:05:26.951+03	2021-05-27 21:05:26.959+03	
56d65956-abe3-14c5-610e-efd582b05242	2021-05-27 21:05:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:05:46.951+03	2021-05-27 21:05:46.957+03	
b8d83dcd-aa35-b41d-fbcb-4d2944f8550f	2021-05-27 21:06:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:06:06.951+03	2021-05-27 21:06:06.958+03	
c4d6b4f3-d1a3-643c-73f6-3a7e1ee1fe57	2021-05-27 21:06:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:06:26.951+03	2021-05-27 21:06:26.97+03	
6fc119c6-3470-400c-faff-1933ddc99bcd	2021-05-27 21:06:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:06:46.952+03	2021-05-27 21:06:46.962+03	
3f8f1dc8-c3f7-9b48-7c98-834f8ae4ab6a	2021-05-27 21:07:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:07:07.951+03	2021-05-27 21:07:07.958+03	
5ece4cbf-1c24-5c8b-87f4-c7d7e4ea7dfd	2021-05-27 21:07:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:07:27.951+03	2021-05-27 21:07:27.957+03	
0d2236e8-288e-7cce-718b-5d3fe7a1f51e	2021-05-27 21:07:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:07:48.951+03	2021-05-27 21:07:48.959+03	
1a2a8dbd-a4b9-0da3-7909-b14896257fa5	2021-05-27 21:08:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:08:08.951+03	2021-05-27 21:08:08.959+03	
e9a95670-13b8-fe2f-a21e-842b4df91b8e	2021-05-27 21:08:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:08:28.951+03	2021-05-27 21:08:28.958+03	
02491685-b1db-4c28-01ef-e54d8016a181	2021-05-27 21:08:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:08:48.951+03	2021-05-27 21:08:48.958+03	
c46c4ed6-7511-c896-63a5-0f362341e136	2021-05-27 21:09:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:09:08.951+03	2021-05-27 21:09:08.958+03	
1b97c296-9433-1b91-c7de-e3ca9cad8326	2021-05-27 21:09:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:09:28.952+03	2021-05-27 21:09:28.959+03	
5543b7d1-b780-6fe6-8297-0c8dbc3dfde6	2021-05-27 21:09:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:09:49.951+03	2021-05-27 21:09:49.958+03	
21880b5f-ec8e-8e32-e31b-d073799e4e09	2021-05-27 21:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 21:10:00.951+03	2021-05-27 21:10:00.957+03	ERROR
c5311867-05f2-bd79-7a06-ed9e28519dee	2021-05-27 21:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:10:20.951+03	2021-05-27 21:10:20.958+03	
0634c665-fc02-1bdc-f4d3-d8f637778092	2021-05-27 21:10:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:10:40.951+03	2021-05-27 21:10:40.958+03	
91c70c49-6bef-1cf6-5c91-ea6419ef3938	2021-05-27 21:11:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:11:00.951+03	2021-05-27 21:11:00.958+03	
7777db4f-0e1d-731a-7006-4c3dd257207a	2021-05-27 21:11:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:11:20.951+03	2021-05-27 21:11:20.959+03	
6174976c-8691-9add-1267-984dc82b567f	2021-05-27 21:11:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:11:41.951+03	2021-05-27 21:11:41.962+03	
1053632d-d678-167b-ef56-6536230734cb	2021-05-27 21:12:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:12:01.951+03	2021-05-27 21:12:01.958+03	
230244fa-94b9-bcc0-90be-afa9a17f2b61	2021-05-27 21:12:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:12:21.951+03	2021-05-27 21:12:21.96+03	
b306efa4-b11f-c29f-36e7-e0ff13ccc03f	2021-05-27 21:12:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:12:41.951+03	2021-05-27 21:12:41.957+03	
b58788a0-563a-a135-6d9f-fff35c13b961	2021-05-27 21:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:13:01.951+03	2021-05-27 21:13:01.96+03	
df224041-d9df-418c-8726-00efa6702622	2021-05-27 21:13:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:13:21.951+03	2021-05-27 21:13:21.959+03	
2a540cd3-6c79-d267-85e0-572755095de3	2021-05-27 21:13:41.957	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:13:41.957+03	2021-05-27 21:13:41.965+03	
a7479107-74b4-7769-0e66-27ff9aea9b59	2021-05-27 21:14:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:14:02.951+03	2021-05-27 21:14:02.958+03	
b5b3115c-e0b6-558d-919b-5022485ae621	2021-05-27 21:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:14:23.951+03	2021-05-27 21:14:23.959+03	
b093ef99-027d-4ecb-95db-49f787e1218d	2021-05-27 21:14:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:14:43.952+03	2021-05-27 21:14:43.959+03	
de33ff3f-e35d-2c68-dbd2-abe37a7a53b5	2021-05-27 21:15:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:15:04.951+03	2021-05-27 21:15:04.962+03	
891b8c1b-c5c4-094d-adbc-31d4f7b5c4e1	2021-05-27 21:15:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:15:24.951+03	2021-05-27 21:15:24.958+03	
8cd775e8-de67-5a48-0b5d-25f764c1865c	2021-05-27 21:15:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:15:44.951+03	2021-05-27 21:15:44.959+03	
8c93c8c3-aa9f-4938-584e-a25fdfd91ea5	2021-05-27 21:16:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:16:04.951+03	2021-05-27 21:16:04.958+03	
19490a5f-d830-8f9a-05ec-d386bf3ab025	2021-05-27 21:16:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:16:24.952+03	2021-05-27 21:16:24.959+03	
ee8b6b2e-69a5-1c6f-bf1a-b0d97ecc9f65	2021-05-27 21:16:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:16:45.952+03	2021-05-27 21:16:45.959+03	
0b37e5a9-7824-a103-9c14-b70be6c445a6	2021-05-27 21:17:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:17:06.952+03	2021-05-27 21:17:06.96+03	
36375132-aa26-06b0-6b2c-d3e084e9f516	2021-05-27 21:17:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:17:27.952+03	2021-05-27 21:17:27.958+03	
07d50bca-a928-c17c-948d-c5c6c179628f	2021-05-27 21:17:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:17:48.951+03	2021-05-27 21:17:48.958+03	
cbef6a99-4a86-5c01-e0a1-6b51532973ad	2021-05-27 21:18:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:18:08.952+03	2021-05-27 21:18:08.961+03	
ad4c9b7e-9bea-cce8-55db-b73bef84367d	2021-05-27 21:18:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:18:29.952+03	2021-05-27 21:18:29.958+03	
7ae204a1-6ce7-50e3-8503-72923da4e268	2021-05-27 21:18:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:18:50.951+03	2021-05-27 21:18:50.96+03	
e7e11a85-d55a-912a-ee19-fc79117b0074	2021-05-27 21:19:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:19:10.952+03	2021-05-27 21:19:10.96+03	
01716246-ade2-a52d-0fd1-140c3d5a9f0e	2021-05-27 21:19:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:19:31.951+03	2021-05-27 21:19:31.957+03	
18d36124-c058-bd2d-6a85-4b7a62e9efa8	2021-05-27 21:19:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:19:51.951+03	2021-05-27 21:19:51.96+03	
38e177d7-11e3-f41d-b290-5b374ac1161f	2021-05-27 21:20:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:20:01.951+03	2021-05-27 21:20:01.958+03	
b43494de-a91d-b2fc-e559-a01643a3ca6c	2021-05-27 21:20:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:20:21.951+03	2021-05-27 21:20:21.959+03	
bb887526-017e-9e4d-614b-3d2b8263e350	2021-05-27 21:20:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:20:31.951+03	2021-05-27 21:20:31.967+03	
85bda73e-f2b9-69b3-c61d-da64b9e1ee1d	2021-05-27 21:20:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:20:52.951+03	2021-05-27 21:20:52.957+03	
e54aa598-7519-e25f-4b1b-0e21352ab67c	2021-05-27 21:21:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:21:12.951+03	2021-05-27 21:21:12.959+03	
ae686008-7f06-ebc1-c7ed-1971043494ca	2021-05-27 21:21:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:21:32.951+03	2021-05-27 21:21:32.959+03	
dc4b4ce3-ff8a-a79f-1cc6-1b1fe04df1de	2021-05-27 21:21:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:21:52.951+03	2021-05-27 21:21:52.96+03	
06dae421-c9c0-b11b-2284-a895120c52cc	2021-05-27 21:22:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:22:12.952+03	2021-05-27 21:22:12.96+03	
2b011bee-d64c-2ba0-c9d6-8153058aee86	2021-05-27 21:22:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:22:33.951+03	2021-05-27 21:22:33.958+03	
b9fee1df-6461-0126-c768-1aa0de5dbae2	2021-05-27 21:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:22:53.951+03	2021-05-27 21:22:53.959+03	
a4326e17-b24b-5141-6440-340e952901f8	2021-05-27 21:23:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:23:13.951+03	2021-05-27 21:23:13.958+03	
b3b4d77c-345a-5f12-f97c-50586c28eb83	2021-05-27 21:23:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:23:33.951+03	2021-05-27 21:23:33.958+03	
6c401858-5d44-c175-5f1f-7533692ca216	2021-05-27 21:23:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:23:53.952+03	2021-05-27 21:23:53.963+03	
81a08d7e-ec57-7079-fef9-a429c5176e5b	2021-05-27 21:24:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:24:14.952+03	2021-05-27 21:24:14.96+03	
de6f2f5e-6080-4bfc-3418-e9a4c760b63d	2021-05-27 21:24:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:24:35.951+03	2021-05-27 21:24:35.968+03	
710eeeda-4774-4506-f138-9e1527a89741	2021-05-27 21:24:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:24:56.952+03	2021-05-27 21:24:56.96+03	
e4ad93c7-1275-54dd-aa62-481b57384fc6	2021-05-27 21:25:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:25:17.951+03	2021-05-27 21:25:17.959+03	
c0d6468b-e3e2-12b6-18a2-ae10e37d7b7c	2021-05-27 21:25:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:25:38.951+03	2021-05-27 21:25:38.959+03	
e444d58f-0921-29a5-399f-ce69ba581837	2021-05-27 21:25:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:25:58.951+03	2021-05-27 21:25:58.959+03	
2d191dfd-ff5e-5896-6dc7-a45d44a1f420	2021-05-27 21:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:26:18.951+03	2021-05-27 21:26:18.962+03	
6dd4d5c3-b314-962b-c832-15f707f05427	2021-05-27 21:26:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:26:38.951+03	2021-05-27 21:26:38.958+03	
c3a3e45a-76f1-598f-093e-78f23499e5e4	2021-05-27 21:26:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:26:58.952+03	2021-05-27 21:26:58.96+03	
c89ca1f6-faa4-7a08-437c-bda38f977d6b	2021-05-27 21:27:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:27:19.951+03	2021-05-27 21:27:19.957+03	
6736aa6f-4fd1-6413-09a0-e5faf1726ebc	2021-05-27 21:27:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:27:39.951+03	2021-05-27 21:27:39.958+03	
21c3a1f7-ac3e-4cc7-8647-0d75336acd42	2021-05-27 21:27:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:27:59.951+03	2021-05-27 21:27:59.957+03	
c37e88af-e959-23d2-3b31-d62bff0e7fe9	2021-05-27 21:28:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:28:19.951+03	2021-05-27 21:28:19.958+03	
f1b9a025-be51-bb17-be9b-7b5b4727b3d1	2021-05-27 21:28:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:28:39.951+03	2021-05-27 21:28:39.959+03	
87e8fdd7-9d76-c8e0-b70c-642803a76c20	2021-05-27 21:28:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:28:59.951+03	2021-05-27 21:28:59.96+03	
a9f0e7fe-01f1-5e51-8c11-373ea128aff5	2021-05-27 21:29:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:29:19.951+03	2021-05-27 21:29:19.958+03	
841b0cc8-7038-96be-b946-5d63527ac4fc	2021-05-27 21:29:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:29:39.951+03	2021-05-27 21:29:39.958+03	
fbd1709d-5de9-7b63-4cec-9e608c0cc580	2021-05-27 21:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:29:59.951+03	2021-05-27 21:29:59.958+03	
b72bfa05-4717-ff1e-34a1-647fa6ec2f90	2021-05-27 21:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:30:09.951+03	2021-05-27 21:30:09.958+03	
0f6ffc86-0ad3-78a3-d29f-a2c2aca423ee	2021-05-27 21:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:30:29.951+03	2021-05-27 21:30:29.958+03	
2a199d78-15b6-798a-89ed-fd7495f74604	2021-05-27 21:30:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:30:49.951+03	2021-05-27 21:30:49.958+03	
68f52ea0-2ef5-0cbd-115c-a8d97b249924	2021-05-27 21:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:31:09.951+03	2021-05-27 21:31:09.958+03	
66443e3e-3f32-b035-3158-7fc976db259b	2021-05-27 21:31:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:31:29.951+03	2021-05-27 21:31:29.957+03	
8b704c9c-a0eb-bf8f-eb7d-20e70f6c8e79	2021-05-27 21:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:31:49.951+03	2021-05-27 21:31:49.96+03	
8345d4c4-8919-567b-347d-42bb0a418f83	2021-05-27 21:32:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:32:09.951+03	2021-05-27 21:32:09.958+03	
90e76d62-62bd-1e5d-9c50-5beaad9f3d40	2021-05-27 21:32:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:32:29.951+03	2021-05-27 21:32:29.959+03	
7864df8b-df06-ec6c-0916-236652ee27b7	2021-05-27 21:32:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:32:49.951+03	2021-05-27 21:32:49.958+03	
f314b113-14aa-c295-d084-586842ec36f4	2021-05-27 21:33:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:33:09.951+03	2021-05-27 21:33:09.958+03	
98ea822a-4f44-885f-1905-37ffdfd06871	2021-05-27 21:33:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:33:30.951+03	2021-05-27 21:33:30.959+03	
b09bb296-c51e-3778-fa2d-92d5760c6868	2021-05-27 21:33:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:33:50.951+03	2021-05-27 21:33:50.959+03	
332c9aa7-8b9b-587d-45c4-83011a405130	2021-05-27 21:34:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:34:10.951+03	2021-05-27 21:34:10.957+03	
5b4c2be0-aecd-7115-0e9b-8db0b089995b	2021-05-27 21:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:34:30.951+03	2021-05-27 21:34:30.959+03	
9fbf7b77-ff31-c2c0-1cd2-7255d66107ca	2021-05-27 21:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:34:50.952+03	2021-05-27 21:34:50.96+03	
adfc1d7a-2ffc-f022-b818-2dac74a1f259	2021-05-27 21:35:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:35:11.951+03	2021-05-27 21:35:11.958+03	
f2657073-72ca-55a9-d277-bb902e12319c	2021-05-27 21:35:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:35:31.951+03	2021-05-27 21:35:31.958+03	
954059f5-1eef-84cb-bf1a-f39b854047b9	2021-05-27 21:35:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:35:51.951+03	2021-05-27 21:35:51.959+03	
f36b7b6a-87aa-3ee9-2616-c7b952a4c929	2021-05-27 21:36:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:36:11.951+03	2021-05-27 21:36:11.958+03	
874c0b84-1d1c-1d69-17d2-7def2d314402	2021-05-27 21:36:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:36:31.951+03	2021-05-27 21:36:31.959+03	
32ff3503-078e-d381-67e5-02f455027503	2021-05-27 21:36:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:36:51.951+03	2021-05-27 21:36:51.961+03	
65bc8419-c71b-03b0-4b7e-31e4849a9ed3	2021-05-27 21:37:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:37:11.951+03	2021-05-27 21:37:11.958+03	
cf3cc2a5-842e-7052-6120-1f2e857550b6	2021-05-27 21:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:37:31.951+03	2021-05-27 21:37:31.96+03	
f74e9362-a57c-58d9-10c7-294f051612c5	2021-05-27 21:37:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:37:51.951+03	2021-05-27 21:37:51.958+03	
628549e9-6c6d-f5cc-2564-494210a23e75	2021-05-27 21:38:11.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:38:11.952+03	2021-05-27 21:38:11.958+03	
7d0fc908-169d-8268-baa9-e2dd1975ff86	2021-05-27 21:38:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:38:33.951+03	2021-05-27 21:38:33.958+03	
832c5a31-f535-2b03-6ea0-b785c0ba0a6c	2021-05-27 21:38:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:38:53.951+03	2021-05-27 21:38:53.959+03	
3a036548-1aa0-a55d-af97-1246cc4db31a	2021-05-27 21:39:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:39:13.951+03	2021-05-27 21:39:13.958+03	
fce96802-7f71-79f1-959b-dc6edc515486	2021-05-27 21:39:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:39:33.951+03	2021-05-27 21:39:33.958+03	
2a766047-1d31-b8ec-be1a-9aa41534ad40	2021-05-27 21:39:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:39:53.952+03	2021-05-27 21:39:53.96+03	
962614ee-3635-f76b-1d38-f4b9ed78bf54	2021-05-27 21:40:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:40:04.951+03	2021-05-27 21:40:04.958+03	
900b0152-d9b5-3d95-d11d-fa4cbbcb78ad	2021-05-27 21:40:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:40:24.951+03	2021-05-27 21:40:24.958+03	
4766c1f2-f915-5277-25c1-3bf3e92c3f81	2021-05-27 21:40:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:40:44.951+03	2021-05-27 21:40:44.96+03	
d33b9c5a-b001-a877-b953-ce223efe209c	2021-05-27 21:41:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:41:04.951+03	2021-05-27 21:41:04.959+03	
9287de08-9ada-391c-ea97-2760e578d427	2021-05-27 21:20:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:20:41.952+03	2021-05-27 21:20:41.959+03	
c2fb6e4e-6941-7d9f-d1f7-3edcc237cecc	2021-05-27 21:21:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:21:02.951+03	2021-05-27 21:21:02.959+03	
57c333c4-5edd-1b4d-9eeb-39419da62bfe	2021-05-27 21:21:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:21:22.951+03	2021-05-27 21:21:22.958+03	
8389d92e-bb56-3e14-8161-4afb5953f2df	2021-05-27 21:21:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:21:42.951+03	2021-05-27 21:21:42.96+03	
29680c4e-8ecf-d4f8-fa95-df24d85dddb1	2021-05-27 21:22:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:22:02.951+03	2021-05-27 21:22:02.963+03	
a6d17611-16c7-f9a0-fe9e-4b9d8944c198	2021-05-27 21:22:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:22:23.951+03	2021-05-27 21:22:23.958+03	
97b51254-4b32-5301-9a08-f5c735b47772	2021-05-27 21:22:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:22:43.951+03	2021-05-27 21:22:43.959+03	
e8e60052-7183-33af-3c80-7e93b9ff7da8	2021-05-27 21:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:23:03.951+03	2021-05-27 21:23:03.958+03	
4f821500-e27f-f21d-dad9-9626424d07a5	2021-05-27 21:23:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:23:23.951+03	2021-05-27 21:23:23.958+03	
7244827c-1510-6eb5-a176-dcf9fbecf577	2021-05-27 21:23:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:23:43.951+03	2021-05-27 21:23:43.959+03	
f98d5434-17a8-6ccd-02cd-1424e8335faf	2021-05-27 21:24:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:24:04.951+03	2021-05-27 21:24:04.958+03	
9ed9abf9-bf87-6560-3f1d-dfd0ccfe1dc7	2021-05-27 21:24:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:24:25.951+03	2021-05-27 21:24:25.958+03	
63be57a1-f780-957b-44ba-ca94ae0ef7df	2021-05-27 21:24:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:24:45.952+03	2021-05-27 21:24:45.962+03	
08d64545-0ee1-cd96-6e08-75f7790ef4d0	2021-05-27 21:25:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:25:07.951+03	2021-05-27 21:25:07.959+03	
33add7b2-451e-c5cd-e0b9-bf0aaf88a5ba	2021-05-27 21:25:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:25:27.952+03	2021-05-27 21:25:27.959+03	
b23dacd2-766a-f8a7-f032-07ad76b7c9d3	2021-05-27 21:25:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:25:48.951+03	2021-05-27 21:25:48.958+03	
f4e713e2-07bb-3982-1a0e-f05897bb7934	2021-05-27 21:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:26:08.951+03	2021-05-27 21:26:08.958+03	
026583f4-7dcc-e6d7-3d2e-05d45763c92b	2021-05-27 21:26:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:26:28.951+03	2021-05-27 21:26:28.96+03	
3599bf80-778c-a3a2-1ba4-7d24dabd6532	2021-05-27 21:26:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:26:48.951+03	2021-05-27 21:26:48.959+03	
0a8b8c4a-a64b-6245-5cea-bb31cc4d05e4	2021-05-27 21:27:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:27:09.951+03	2021-05-27 21:27:09.958+03	
efb7f832-bd59-73bf-70c2-05cc5771a24e	2021-05-27 21:27:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:27:29.951+03	2021-05-27 21:27:29.96+03	
df43f2b8-c1f6-f6ba-0514-8832c4b82836	2021-05-27 21:27:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:27:49.951+03	2021-05-27 21:27:49.959+03	
25c54fa1-bcf2-2043-822a-8b2ccc1fac86	2021-05-27 21:28:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:28:09.951+03	2021-05-27 21:28:09.958+03	
90391c9f-b7cf-b0b2-22da-d125b0a8de2a	2021-05-27 21:28:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:28:29.951+03	2021-05-27 21:28:29.959+03	
8d06326b-d98b-3b97-50a6-7664fcd8abbf	2021-05-27 21:28:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:28:49.951+03	2021-05-27 21:28:49.959+03	
1cd3bb7a-ea21-88ea-09de-0f7dda4c2baf	2021-05-27 21:29:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:29:09.951+03	2021-05-27 21:29:09.959+03	
02bf7a04-a3ae-203a-5422-41eb49f60956	2021-05-27 21:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:29:29.951+03	2021-05-27 21:29:29.958+03	
9c5ef296-cdd3-7059-0c0e-47e207233fc0	2021-05-27 21:29:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:29:49.951+03	2021-05-27 21:29:49.959+03	
748b874d-ebcd-a580-e730-05291f3ffc92	2021-05-27 21:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 21:30:00.951+03	2021-05-27 21:30:00.956+03	ERROR
3c1bcde4-25ee-f220-60a6-50935b4580bc	2021-05-27 21:30:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:30:19.951+03	2021-05-27 21:30:19.96+03	
d3143d5e-8274-db24-8e99-10f12d57193c	2021-05-27 21:30:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:30:39.951+03	2021-05-27 21:30:39.957+03	
a44b7437-93ad-0c01-5f05-387d3f6d94f9	2021-05-27 21:30:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:30:59.951+03	2021-05-27 21:30:59.96+03	
063f3b7b-1021-02d3-ccb7-52a4399688ed	2021-05-27 21:31:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:31:19.951+03	2021-05-27 21:31:19.958+03	
131bf3f7-0190-342f-51f0-447e78d31ff9	2021-05-27 21:31:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:31:39.951+03	2021-05-27 21:31:39.958+03	
8b007999-662c-f87e-c183-13b3c6d8ea31	2021-05-27 21:31:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:31:59.951+03	2021-05-27 21:31:59.959+03	
f309c090-b188-e033-382f-0ab557e4aee2	2021-05-27 21:32:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:32:19.951+03	2021-05-27 21:32:19.959+03	
cb3a3c4f-9ab7-7a82-784f-976e6561ef51	2021-05-27 21:32:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:32:39.951+03	2021-05-27 21:32:39.958+03	
c50219ba-58e0-b120-b883-e3220ce86d42	2021-05-27 21:32:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:32:59.951+03	2021-05-27 21:32:59.958+03	
26fb4b3b-17c3-24bc-dbea-ddd440507c69	2021-05-27 21:33:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:33:19.952+03	2021-05-27 21:33:19.962+03	
b0a4b1b5-a950-f138-d4cc-461a1b7b4b28	2021-05-27 21:33:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:33:40.951+03	2021-05-27 21:33:40.959+03	
79b7368d-d229-5fc3-6ce1-d531c8bfb7d1	2021-05-27 21:34:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:34:00.951+03	2021-05-27 21:34:00.958+03	
4a8b02ab-1200-2c2e-99eb-4521060b468f	2021-05-27 21:34:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:34:20.951+03	2021-05-27 21:34:20.959+03	
5bf25c02-8f57-87e4-0474-5c4448775d51	2021-05-27 21:34:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:34:40.951+03	2021-05-27 21:34:40.958+03	
67926525-971f-a16b-dc6b-f0c6ab07040f	2021-05-27 21:35:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:35:01.951+03	2021-05-27 21:35:01.96+03	
d0624975-2b04-49b3-5b53-7c0724f372e7	2021-05-27 21:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:35:21.951+03	2021-05-27 21:35:21.96+03	
2f4fc6b7-649a-2f25-7b1a-30284d624ac1	2021-05-27 21:35:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:35:41.951+03	2021-05-27 21:35:41.96+03	
ac51724e-716f-94b2-da56-31413f224dc5	2021-05-27 21:36:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:36:01.951+03	2021-05-27 21:36:01.959+03	
d9a39515-267e-78f2-16b5-a134a7f34a59	2021-05-27 21:36:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:36:21.951+03	2021-05-27 21:36:21.959+03	
0b0d3a56-2df7-6da9-7019-24c2c962fac7	2021-05-27 21:36:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:36:41.951+03	2021-05-27 21:36:41.958+03	
ee42fa65-c446-fe10-8dd0-0b24e256b680	2021-05-27 21:37:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:37:01.951+03	2021-05-27 21:37:01.961+03	
780766c7-97c0-58a4-287f-b010217d486d	2021-05-27 21:37:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:37:21.951+03	2021-05-27 21:37:21.959+03	
ced788da-d78a-3b3b-dff3-f785474f9e89	2021-05-27 21:37:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:37:41.951+03	2021-05-27 21:37:41.959+03	
cc55ba46-dbe1-24ba-d580-d53e42c863ba	2021-05-27 21:38:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:38:01.951+03	2021-05-27 21:38:01.959+03	
223cf461-67c6-9f9d-046c-322f7d8dab3a	2021-05-27 21:38:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:38:22.952+03	2021-05-27 21:38:22.96+03	
8ca49931-ff34-49be-b50a-c4b3c4d034cc	2021-05-27 21:38:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:38:43.951+03	2021-05-27 21:38:43.959+03	
f85dacf9-42d1-d690-a0fd-9d090b983701	2021-05-27 21:39:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:39:03.951+03	2021-05-27 21:39:03.959+03	
c6d8c1d0-4643-377b-3753-6dba90d61e86	2021-05-27 21:39:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:39:23.951+03	2021-05-27 21:39:23.958+03	
577f51b5-6baf-1937-7453-d67ccfe48299	2021-05-27 21:39:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:39:43.951+03	2021-05-27 21:39:43.96+03	
7d164cff-7746-07fd-cd4d-2ae6acc789e3	2021-05-27 21:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 21:40:00.951+03	2021-05-27 21:40:00.956+03	ERROR
c8bd1c21-d9e5-f0aa-f7c7-cc05d23bfeda	2021-05-27 21:40:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:40:14.951+03	2021-05-27 21:40:14.959+03	
4eff4515-1f24-8003-1588-ba407bf8bcff	2021-05-27 21:40:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:40:34.951+03	2021-05-27 21:40:34.959+03	
399219af-dc0b-3b7c-c213-a1042a04766f	2021-05-27 21:40:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:40:54.951+03	2021-05-27 21:40:54.96+03	
3484fe7d-2594-8ba8-90d9-170235692bbe	2021-05-27 21:41:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:41:14.952+03	2021-05-27 21:41:14.96+03	
cb1ded16-4ed0-307e-16e9-1009454f3a6f	2021-05-27 21:41:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:41:25.951+03	2021-05-27 21:41:25.961+03	
a714378f-fba8-6a12-afa3-612f413d0888	2021-05-27 21:41:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:41:45.951+03	2021-05-27 21:41:45.958+03	
30c84902-9087-1931-f552-7627c9eb43b8	2021-05-27 21:42:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:42:05.951+03	2021-05-27 21:42:05.958+03	
7934370c-3cf8-fc94-2a61-2f24b8fa8f6c	2021-05-27 21:42:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:42:26.951+03	2021-05-27 21:42:26.96+03	
83aba105-c73e-af2a-090f-98e47b9b2a14	2021-05-27 21:42:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:42:46.951+03	2021-05-27 21:42:46.958+03	
c7fc411e-473c-7feb-dcae-10f558222cb9	2021-05-27 21:43:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:43:06.951+03	2021-05-27 21:43:06.958+03	
5fa69237-721d-afe1-31ab-b2ac797bf67b	2021-05-27 21:43:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:43:26.951+03	2021-05-27 21:43:26.961+03	
cf6e6d01-f3e1-8fb5-f48c-823c0595af19	2021-05-27 21:43:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:43:46.951+03	2021-05-27 21:43:46.958+03	
a904c908-c6d9-ed34-5fdb-d4db5fcc1920	2021-05-27 21:44:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:44:06.951+03	2021-05-27 21:44:06.961+03	
9d3aea18-c417-2ab9-4385-e5923a668c7d	2021-05-27 21:44:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:44:26.951+03	2021-05-27 21:44:26.958+03	
8fa12d07-1538-1e1b-c914-a30d950c549c	2021-05-27 21:44:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:44:47.951+03	2021-05-27 21:44:47.958+03	
f783fdf9-cbcc-a444-2336-de0552d65f89	2021-05-27 21:45:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:45:07.951+03	2021-05-27 21:45:07.967+03	
4b78924f-e8f2-906a-913a-649d8436fab8	2021-05-27 21:45:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:45:27.952+03	2021-05-27 21:45:27.959+03	
68c54700-5fc7-ddca-eca7-782ddbe6535b	2021-05-27 21:45:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:45:48.951+03	2021-05-27 21:45:48.959+03	
76e85b4e-4fbf-575e-29f2-9b7849cec254	2021-05-27 21:46:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:46:08.952+03	2021-05-27 21:46:08.959+03	
969ab492-ed1a-d5d8-4320-d57ee03dc496	2021-05-27 21:46:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:46:29.951+03	2021-05-27 21:46:29.96+03	
f9f6ab30-3076-a02e-6524-502e90294746	2021-05-27 21:46:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:46:49.951+03	2021-05-27 21:46:49.959+03	
c0dcffef-0131-684a-2ec6-32e18b444ed5	2021-05-27 21:47:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:47:09.951+03	2021-05-27 21:47:09.959+03	
beb04c38-4d55-8c2d-b3d3-222ec68e446b	2021-05-27 21:47:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:47:29.951+03	2021-05-27 21:47:29.958+03	
ac8aea00-db2e-7230-28cb-b22b8f9bfdf1	2021-05-27 21:47:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:47:49.951+03	2021-05-27 21:47:49.959+03	
86eeabc4-654b-f1b2-18a7-90383abface3	2021-05-27 21:48:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:48:09.951+03	2021-05-27 21:48:09.958+03	
ca0ec950-c469-7981-a424-a2689c53d2c2	2021-05-27 21:48:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:48:29.951+03	2021-05-27 21:48:29.959+03	
3999f415-24ef-a2c1-e624-677c4d1a27bf	2021-05-27 21:48:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:48:49.951+03	2021-05-27 21:48:49.959+03	
0a5f5f5a-3905-31cd-43e2-715459e14edd	2021-05-27 21:49:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:49:09.951+03	2021-05-27 21:49:09.959+03	
70019ac1-848f-2de4-4d48-585b46f59329	2021-05-27 21:49:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:49:29.951+03	2021-05-27 21:49:29.958+03	
b07d8ce5-42f1-17d3-c990-ad9d76309280	2021-05-27 21:49:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:49:49.951+03	2021-05-27 21:49:49.959+03	
54b54344-2f21-8360-2d55-b282ee864879	2021-05-27 21:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 21:50:00.951+03	2021-05-27 21:50:00.956+03	ERROR
e8357933-41b4-9f97-501c-ea83d7acd6d7	2021-05-27 21:50:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:50:19.951+03	2021-05-27 21:50:19.96+03	
759346e5-112e-8c8d-db4c-ef74150cfa8c	2021-05-27 21:50:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:50:39.951+03	2021-05-27 21:50:39.959+03	
1bcd6e68-fe5d-e211-c75e-d0ac4cf694f7	2021-05-27 21:50:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:50:59.951+03	2021-05-27 21:50:59.959+03	
ec45c1cf-d96d-713a-44a1-45b786a47ac2	2021-05-27 21:51:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:51:19.951+03	2021-05-27 21:51:19.958+03	
2a37b88c-558f-e445-2441-6db0a27689e2	2021-05-27 21:51:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:51:39.951+03	2021-05-27 21:51:39.958+03	
34064e98-e6d7-4140-c0c8-4da0409cd16d	2021-05-27 21:51:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:51:59.951+03	2021-05-27 21:51:59.958+03	
8acc255b-286e-2200-35ae-1f8820f7c299	2021-05-27 21:52:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:52:19.951+03	2021-05-27 21:52:19.959+03	
0f332140-0f74-3a1a-cc64-1c7717249e1b	2021-05-27 21:52:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:52:39.951+03	2021-05-27 21:52:39.957+03	
79930ec7-a65d-c8d7-906f-33cd63890621	2021-05-27 21:52:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:52:59.952+03	2021-05-27 21:52:59.96+03	
3fbd839d-a3f2-7dde-6902-da4acf84429a	2021-05-27 21:53:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:53:20.951+03	2021-05-27 21:53:20.959+03	
1bc38bf2-1db8-192b-5ff3-4310344ea2e8	2021-05-27 21:53:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:53:41.951+03	2021-05-27 21:53:41.957+03	
67833fa2-7046-57ad-7a69-2a69ef738397	2021-05-27 21:54:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:54:02.951+03	2021-05-27 21:54:02.96+03	
78462527-4a23-56ef-406f-addf4e013ce4	2021-05-27 21:54:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:54:22.952+03	2021-05-27 21:54:22.959+03	
efb260f9-30af-31ac-5498-576e76ab37c7	2021-05-27 21:54:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:54:43.951+03	2021-05-27 21:54:43.958+03	
eb9cf08e-ee24-8530-5985-8d875a7ea872	2021-05-27 21:55:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:55:03.951+03	2021-05-27 21:55:03.962+03	
dcd801a2-36b6-3633-6f6e-7bfd03dd1ccb	2021-05-27 21:55:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:55:23.951+03	2021-05-27 21:55:23.958+03	
e52cc7ba-c341-0517-31ea-529b7e18f5ab	2021-05-27 21:55:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:55:43.951+03	2021-05-27 21:55:43.959+03	
5fb68727-725c-3eee-531a-6d92fefb069e	2021-05-27 21:56:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:56:03.951+03	2021-05-27 21:56:03.958+03	
e9a7bd50-25e7-45db-9b56-01390afb4d98	2021-05-27 21:56:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:56:23.951+03	2021-05-27 21:56:23.959+03	
9246f133-fb2c-d6f2-f4ac-65b505576e4d	2021-05-27 21:56:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:56:43.951+03	2021-05-27 21:56:43.959+03	
b2f1a4ef-049b-eaa5-7b2e-5075f22eb01d	2021-05-27 21:57:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:57:03.951+03	2021-05-27 21:57:03.958+03	
1c0b3c34-eded-1f78-2462-61d57c8df115	2021-05-27 21:57:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:57:23.951+03	2021-05-27 21:57:23.958+03	
cba3033a-084c-59ef-9b5d-b3064a99eab8	2021-05-27 21:57:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:57:43.952+03	2021-05-27 21:57:43.962+03	
d3ab87f8-28c1-aa30-92e8-d0e301bcc90c	2021-05-27 21:58:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:58:04.951+03	2021-05-27 21:58:04.958+03	
9ac3913b-bd3c-ae50-4dd6-8e0b0eca277f	2021-05-27 21:58:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:58:24.951+03	2021-05-27 21:58:24.958+03	
4e2ecb98-2f71-9501-b91c-4c12cd0de78d	2021-05-27 21:58:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:58:44.952+03	2021-05-27 21:58:44.958+03	
6d8f6f29-2b0f-31fc-22fd-7681a0beceba	2021-05-27 21:59:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:59:05.951+03	2021-05-27 21:59:05.959+03	
d7d5c345-e4cb-a6a3-6cd5-917733dfe6dd	2021-05-27 21:59:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:59:25.951+03	2021-05-27 21:59:25.957+03	
53b70385-da99-d07e-93e1-598a9a534764	2021-05-27 21:59:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:59:45.951+03	2021-05-27 21:59:45.958+03	
af4a5954-9fb9-0166-381d-0f0aa948f0ba	2021-05-27 22:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 22:00:00.951+03	2021-05-27 22:00:00.961+03	ERROR
6a13a7e5-2acc-0786-ea7c-a48b6c9659f5	2021-05-27 22:00:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:00:15.951+03	2021-05-27 22:00:15.958+03	
1cfa4ab5-aac3-2e2e-a912-1b7a6bcefed9	2021-05-27 22:00:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:00:35.951+03	2021-05-27 22:00:35.959+03	
91753ca8-ee43-a114-9130-bc97012da647	2021-05-27 22:00:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:00:55.952+03	2021-05-27 22:00:55.959+03	
9c3536ad-6745-6a93-01de-64867355a206	2021-05-27 22:01:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:01:16.951+03	2021-05-27 22:01:16.958+03	
4ec69e68-90fa-b6c3-dbf2-9d6ec88ee747	2021-05-27 22:01:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:01:36.951+03	2021-05-27 22:01:36.959+03	
bc1b4c2b-ce00-4f6f-418f-9ee93c4df4ec	2021-05-27 22:01:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:01:56.951+03	2021-05-27 22:01:56.96+03	
5aab76f6-7d35-20b6-88dd-2661d1553a36	2021-05-27 21:41:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:41:35.951+03	2021-05-27 21:41:35.959+03	
bc076343-1bfa-bf9a-368b-58b2cc189946	2021-05-27 21:41:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:41:55.951+03	2021-05-27 21:41:55.958+03	
f067596a-3bf3-77ba-c654-2895ac9a397f	2021-05-27 21:42:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:42:15.952+03	2021-05-27 21:42:15.959+03	
b67e0a62-c791-4c21-c299-085763a6b2d6	2021-05-27 21:42:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:42:36.951+03	2021-05-27 21:42:36.959+03	
b4797fee-6234-2c77-338d-b4609c8e45f9	2021-05-27 21:42:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:42:56.951+03	2021-05-27 21:42:56.959+03	
d263f970-0795-7c98-0ffe-c488540a18b0	2021-05-27 21:43:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:43:16.951+03	2021-05-27 21:43:16.958+03	
a158f764-cb46-00e8-7817-bc4b61955223	2021-05-27 21:43:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:43:36.951+03	2021-05-27 21:43:36.959+03	
3a242b43-fca7-f5f1-7b79-79b5a77f64b4	2021-05-27 21:43:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:43:56.951+03	2021-05-27 21:43:56.958+03	
1b7d2a80-e300-7a24-221b-c22151b33774	2021-05-27 21:44:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:44:16.951+03	2021-05-27 21:44:16.959+03	
f19513bc-ffaa-e958-a54f-354b927def7e	2021-05-27 21:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:44:36.952+03	2021-05-27 21:44:36.962+03	
942097df-3897-97bc-54ff-ffa1af88b08e	2021-05-27 21:44:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:44:57.951+03	2021-05-27 21:44:57.958+03	
f2a100b4-7922-3801-0ebc-ee560d56d2cc	2021-05-27 21:45:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:45:17.951+03	2021-05-27 21:45:17.958+03	
71e05513-b632-2c84-08bd-eb71c4726ca9	2021-05-27 21:45:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:45:38.951+03	2021-05-27 21:45:38.96+03	
280688c9-d9a5-61e5-225a-08dc9faa5a85	2021-05-27 21:45:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:45:58.951+03	2021-05-27 21:45:58.958+03	
cc9005b1-f1fe-e9f9-77bc-87c77b42a43d	2021-05-27 21:46:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:46:19.951+03	2021-05-27 21:46:19.959+03	
279d34bb-f838-e395-14cd-669e32a507b5	2021-05-27 21:46:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:46:39.951+03	2021-05-27 21:46:39.958+03	
471116e8-1ba7-384f-caa8-7a18df000dd0	2021-05-27 21:46:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:46:59.951+03	2021-05-27 21:46:59.958+03	
feed05c5-6238-2407-fb95-5dd5cca8a55e	2021-05-27 21:47:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:47:19.951+03	2021-05-27 21:47:19.957+03	
bb282e55-a2ea-1438-0335-5e7af3c50c72	2021-05-27 21:47:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:47:39.951+03	2021-05-27 21:47:39.959+03	
32a4b69a-1fd7-1473-efc8-25e7b198f7bf	2021-05-27 21:47:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:47:59.951+03	2021-05-27 21:47:59.959+03	
a990b483-484d-f538-3fd4-d6efb545ca2c	2021-05-27 21:48:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:48:19.951+03	2021-05-27 21:48:19.968+03	
14707aa8-acac-227c-c460-1ca9e8084b6f	2021-05-27 21:48:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:48:39.951+03	2021-05-27 21:48:39.959+03	
87bd90b9-5125-b80b-8379-2207e92cc8b4	2021-05-27 21:48:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:48:59.951+03	2021-05-27 21:48:59.961+03	
ce579401-1c8b-cded-845f-89b200777342	2021-05-27 21:49:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:49:19.951+03	2021-05-27 21:49:19.958+03	
3fe4b44f-3caf-9a91-304b-a038250ad7d4	2021-05-27 21:49:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:49:39.951+03	2021-05-27 21:49:39.958+03	
e95a50b1-1d11-2ae2-0f9a-3ca8c4f75b99	2021-05-27 21:49:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:49:59.951+03	2021-05-27 21:49:59.959+03	
a393b5d6-1ea5-9ee0-5fd9-eea61a3b6fcf	2021-05-27 21:50:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:50:09.951+03	2021-05-27 21:50:09.958+03	
efe10b8d-0358-cbd0-de71-10d7657c439c	2021-05-27 21:50:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:50:29.951+03	2021-05-27 21:50:29.959+03	
32545027-6270-9886-4df7-8b6516e0b0fb	2021-05-27 21:50:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:50:49.951+03	2021-05-27 21:50:49.959+03	
43a6eb4b-9d64-98d9-f607-e01887559084	2021-05-27 21:51:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:51:09.951+03	2021-05-27 21:51:09.959+03	
8a051669-74f1-e11c-51a7-6debd5b0e013	2021-05-27 21:51:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:51:29.951+03	2021-05-27 21:51:29.959+03	
04c47d95-2ee3-eda9-f137-2a1794808dcc	2021-05-27 21:51:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:51:49.951+03	2021-05-27 21:51:49.959+03	
560676c2-fa0a-9c30-a600-1d64a34eb063	2021-05-27 21:52:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:52:09.951+03	2021-05-27 21:52:09.959+03	
9ea4c513-3b4e-fef6-5efd-8eb58782150b	2021-05-27 21:52:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:52:29.951+03	2021-05-27 21:52:29.959+03	
ff504541-1e6d-6e97-4ce9-29c2f357a730	2021-05-27 21:52:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:52:49.951+03	2021-05-27 21:52:49.959+03	
0ea27e43-ac51-e1f2-c85e-15f3075166c3	2021-05-27 21:53:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:53:10.951+03	2021-05-27 21:53:11.196+03	
91b669fc-388f-7983-90dd-6d3c075dd891	2021-05-27 21:53:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:53:30.952+03	2021-05-27 21:53:30.959+03	
7226d356-33cf-231c-16e4-53c3cc926101	2021-05-27 21:53:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:53:51.952+03	2021-05-27 21:53:51.96+03	
f7ddacbb-d5cc-b0df-ab18-a495b6cc45ca	2021-05-27 21:54:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:54:12.951+03	2021-05-27 21:54:12.958+03	
71d22359-085a-b4e8-8081-064e0df8f31d	2021-05-27 21:54:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:54:33.951+03	2021-05-27 21:54:33.958+03	
20286b8e-3f67-47ad-2dc7-0485800ccb34	2021-05-27 21:54:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:54:53.951+03	2021-05-27 21:54:53.958+03	
15d8a875-5706-6db4-0080-a54b20473fb6	2021-05-27 21:55:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:55:13.951+03	2021-05-27 21:55:13.958+03	
70ddf44b-ddef-4ccb-008e-ed433afb71f3	2021-05-27 21:55:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:55:33.951+03	2021-05-27 21:55:33.957+03	
34ba14c4-45a7-ee65-616f-799d43f278ed	2021-05-27 21:55:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:55:53.951+03	2021-05-27 21:55:53.958+03	
47dca9a2-1400-2316-1a7a-5af4355dddeb	2021-05-27 21:56:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:56:13.951+03	2021-05-27 21:56:13.959+03	
e2eb6e5e-4c52-bf9c-06df-d1aa79cd7652	2021-05-27 21:56:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:56:33.951+03	2021-05-27 21:56:33.957+03	
4c7ef63f-6a8f-5d93-c314-35c90371ad5a	2021-05-27 21:56:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:56:53.951+03	2021-05-27 21:56:53.959+03	
565e8f4e-aa41-a066-5419-e4cbe5e20ed2	2021-05-27 21:57:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:57:13.951+03	2021-05-27 21:57:13.959+03	
43b559fa-80ea-0d39-13b3-a273d3a02e63	2021-05-27 21:57:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:57:33.951+03	2021-05-27 21:57:33.958+03	
1e89ff35-dc5f-624e-c139-f5aabe29c657	2021-05-27 21:57:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:57:53.952+03	2021-05-27 21:57:53.958+03	
0d608cfc-25f3-020b-c228-62c8d3257826	2021-05-27 21:58:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:58:14.951+03	2021-05-27 21:58:14.958+03	
55d1fea6-03e2-67ca-f60a-ded3935718a2	2021-05-27 21:58:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:58:34.951+03	2021-05-27 21:58:34.957+03	
6b85de0b-12d4-c545-5ece-f2709eccd34a	2021-05-27 21:58:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:58:55.951+03	2021-05-27 21:58:55.96+03	
8e148c26-7875-3541-c736-b13d129142fb	2021-05-27 21:59:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:59:15.951+03	2021-05-27 21:59:15.959+03	
ad9fceef-83b6-7bc8-bb72-b5a563bb5a04	2021-05-27 21:59:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:59:35.951+03	2021-05-27 21:59:35.958+03	
ec3bad53-9e53-d7ba-0f6d-b0d75c6c1f7d	2021-05-27 21:59:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 21:59:55.951+03	2021-05-27 21:59:55.958+03	
1c2b8686-fc11-1812-90a9-0ebb2e3c17e4	2021-05-27 22:00:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:00:05.951+03	2021-05-27 22:00:05.962+03	
f9d75f4f-1c15-668e-2c5f-610c3348388d	2021-05-27 22:00:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:00:25.951+03	2021-05-27 22:00:25.959+03	
f920c265-3530-4cff-75ec-a9c4c37ad5b6	2021-05-27 22:00:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:00:45.951+03	2021-05-27 22:00:45.959+03	
34758663-9485-284b-2123-54b6018769fc	2021-05-27 22:01:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:01:06.951+03	2021-05-27 22:01:06.959+03	
1cae3cf5-3525-b39a-bae2-689f20ef337c	2021-05-27 22:01:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:01:26.951+03	2021-05-27 22:01:26.963+03	
191727ac-538f-e422-1b2b-538077b2f866	2021-05-27 22:01:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:01:46.951+03	2021-05-27 22:01:46.96+03	
910c048c-7c1e-5a38-b862-5eb9f20f592a	2021-05-27 22:02:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:02:06.951+03	2021-05-27 22:02:06.961+03	
31088c12-c541-d7dd-f7b7-f27ee9d5929d	2021-05-27 22:02:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:02:16.951+03	2021-05-27 22:02:16.96+03	
38a2ac67-6e8c-a774-02ea-1f24aa53da0b	2021-05-27 22:02:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:02:36.951+03	2021-05-27 22:02:36.961+03	
4d2f548b-ce8a-49ef-7fdd-a9e584a61dda	2021-05-27 22:02:56.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:02:56.952+03	2021-05-27 22:02:56.966+03	
10b60175-f564-bef4-419d-123de2c1e232	2021-05-27 22:03:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:03:16.952+03	2021-05-27 22:03:16.978+03	
611ff078-01f2-f899-def8-3fa064cf359c	2021-05-27 22:03:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:03:37.952+03	2021-05-27 22:03:38.002+03	
7200f86d-0626-dadc-60ca-beb251f3550a	2021-05-27 22:03:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:03:47.953+03	2021-05-27 22:03:48.246+03	
4bf2b863-d73a-9c8c-0e1e-f2c66d8c62fe	2021-05-27 22:04:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:04:08.951+03	2021-05-27 22:04:09.405+03	
059fdc3f-2fbf-3149-54c2-ae6d1b004ddc	2021-05-27 22:04:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:04:28.951+03	2021-05-27 22:04:29.004+03	
e603f6df-6f06-6323-dca0-82cd0f7c71fa	2021-05-27 22:04:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:04:48.951+03	2021-05-27 22:04:49.116+03	
2b9ceeeb-7ff8-20b5-3ea2-9e656acf8d46	2021-05-27 22:05:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:05:08.951+03	2021-05-27 22:05:09.533+03	
046bda45-1067-dfce-0721-44ead2fd03f3	2021-05-27 22:05:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:05:28.951+03	2021-05-27 22:05:29.161+03	
ad4a0ace-d38f-b665-b51f-0cbfaf8ae32e	2021-05-27 22:05:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:05:48.951+03	2021-05-27 22:05:49.351+03	
3dcc5fef-0abe-72be-1bd4-7b93ada7b596	2021-05-27 22:06:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:06:08.952+03	2021-05-27 22:06:08.977+03	
349ea54b-d1e1-65b5-9bda-276847b8d8f0	2021-05-27 22:06:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:06:29.951+03	2021-05-27 22:06:29.959+03	
1cdbfca7-d7ac-263d-f5d6-c97ba46ea503	2021-05-27 22:06:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:06:59.951+03	2021-05-27 22:06:59.982+03	
145499fc-6d0b-e0fe-6194-dfe225f022c8	2021-05-27 22:07:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:07:19.951+03	2021-05-27 22:07:20.02+03	
cca7ff75-ae84-7654-fdfc-4ff38b361ff4	2021-05-27 22:07:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:07:39.951+03	2021-05-27 22:07:40.011+03	
36ae1d4c-f4ef-ce0a-d2b9-15849aa71656	2021-05-27 22:07:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:07:59.951+03	2021-05-27 22:07:59.981+03	
097ca4b9-1813-6b91-ac6a-3e70943819a4	2021-05-27 22:08:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:08:19.951+03	2021-05-27 22:08:19.981+03	
0eaee9b6-2988-ea60-ef77-2de89ecee107	2021-05-27 22:08:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:08:40.951+03	2021-05-27 22:08:40.963+03	
ca5ab03c-3eb5-9ffa-6ca1-c81f5fcfbfda	2021-05-27 22:09:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:09:00.951+03	2021-05-27 22:09:00.959+03	
4d7dfa26-4903-039f-93d1-10c74d340274	2021-05-27 22:09:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:09:20.951+03	2021-05-27 22:09:20.976+03	
92195beb-fa2c-9680-bfa7-4c29361d66ef	2021-05-27 22:09:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:09:41.951+03	2021-05-27 22:09:42.531+03	
c6aa9042-4b75-dcaa-2f1f-11c67eb539fc	2021-05-27 22:09:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:09:51.951+03	2021-05-27 22:09:51.962+03	
b9e61577-bc8a-7c84-f717-b63399c8a4ff	2021-05-27 22:10:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:10:22.952+03	2021-05-27 22:10:23.415+03	
4c7292c2-91ae-34f9-ab71-ce66f63d3547	2021-05-27 22:10:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:10:43.951+03	2021-05-27 22:10:43.986+03	
d4a8211a-b730-4187-744e-d679a308c5cc	2021-05-27 22:11:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:11:03.951+03	2021-05-27 22:11:03.959+03	
40fb8b6e-403d-77e8-2a0b-ee4cefb89e4f	2021-05-27 22:11:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:11:23.951+03	2021-05-27 22:11:23.982+03	
9106053c-63b1-39c8-8344-3fa510c6a54c	2021-05-27 22:11:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:11:43.951+03	2021-05-27 22:11:43.958+03	
2a222c5a-e26e-edb0-8360-3ac033ad98eb	2021-05-27 22:12:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:12:04.951+03	2021-05-27 22:12:04.959+03	
3a01a12a-ad39-fa7e-9fe3-09f80472d2ec	2021-05-27 22:12:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:12:24.951+03	2021-05-27 22:12:24.959+03	
11c78527-0c61-1023-6cd2-36081911b2ba	2021-05-27 22:12:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:12:44.951+03	2021-05-27 22:12:44.957+03	
73a901ec-6056-2b0c-7006-133c688683ed	2021-05-27 22:13:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:13:04.951+03	2021-05-27 22:13:04.957+03	
87d891cd-d9cb-f96d-3a12-650fcaf3353e	2021-05-27 22:13:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:13:24.951+03	2021-05-27 22:13:24.96+03	
582f137e-22fc-9139-1fc1-25f07d1b02de	2021-05-27 22:13:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:13:44.951+03	2021-05-27 22:13:44.96+03	
d8983b2d-4fbe-9577-fd66-fee728a5b16a	2021-05-27 22:14:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:14:04.951+03	2021-05-27 22:14:04.959+03	
a823de34-4cac-4516-41e2-b337146649f6	2021-05-27 22:14:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:14:25.951+03	2021-05-27 22:14:25.958+03	
20fdfe57-7f97-feca-9ed2-06fcfc234925	2021-05-27 22:14:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:14:45.951+03	2021-05-27 22:14:45.96+03	
05966bbf-18e6-1323-786e-796cc4bcd20b	2021-05-27 22:15:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:15:05.951+03	2021-05-27 22:15:05.958+03	
82f590e9-726b-8a6f-7ee4-a9b4f2abd8cb	2021-05-27 22:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:15:25.951+03	2021-05-27 22:15:25.958+03	
4963c3d0-548c-9150-5ae5-fcfd45f2eb2c	2021-05-27 22:15:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:15:45.951+03	2021-05-27 22:15:45.958+03	
f776d37b-c603-ec4b-c171-1ae094324558	2021-05-27 22:16:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:16:05.951+03	2021-05-27 22:16:05.959+03	
a5a9ede0-ccac-2517-3cb6-021453f0a0f6	2021-05-27 22:16:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:16:25.951+03	2021-05-27 22:16:25.957+03	
a2cc8bf4-eea6-4463-ebde-7dfda4164116	2021-05-27 22:16:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:16:46.951+03	2021-05-27 22:16:46.958+03	
e74ddb22-c888-53d7-5f5c-be5ff62827b8	2021-05-27 22:17:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:17:06.951+03	2021-05-27 22:17:06.958+03	
b17c24de-bd0b-6355-6bfa-cbd2f9b6dec5	2021-05-27 22:17:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:17:26.951+03	2021-05-27 22:17:26.958+03	
cc7f80b2-3903-f3f5-ac8b-da6fb63451fc	2021-05-27 22:17:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:17:46.951+03	2021-05-27 22:17:46.96+03	
2dc6258d-c0ba-2c64-03db-b174f9673f0e	2021-05-27 22:18:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:18:06.951+03	2021-05-27 22:18:06.961+03	
91296474-0e6d-10fb-17ba-7ed808b4ba08	2021-05-27 22:18:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:18:26.951+03	2021-05-27 22:18:26.96+03	
9eed471f-b006-0a08-651e-cb7d8af06dd5	2021-05-27 22:18:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:18:46.951+03	2021-05-27 22:18:46.958+03	
14068422-4bc3-edff-f200-763d8be410d5	2021-05-27 22:19:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:19:06.951+03	2021-05-27 22:19:06.958+03	
f4626d8c-5d63-efc2-c332-11c3155d343b	2021-05-27 22:19:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:19:26.951+03	2021-05-27 22:19:26.958+03	
6e4dba18-2018-013a-47bc-1dc069d42d15	2021-05-27 22:19:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:19:46.951+03	2021-05-27 22:19:46.958+03	
4de97960-7331-5b70-bb65-4502c35786f4	2021-05-27 22:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 22:20:00.951+03	2021-05-27 22:20:00.956+03	ERROR
4f68ae91-3d9c-b9de-c84a-b89740df5ced	2021-05-27 22:20:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:20:16.951+03	2021-05-27 22:20:16.958+03	
e9f9e590-f6f7-8220-f1e6-cc2994cdb324	2021-05-27 22:20:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:20:36.951+03	2021-05-27 22:20:36.958+03	
f0c9d5f9-c9f2-5974-fa93-d1bb91f817a4	2021-05-27 22:20:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:20:56.951+03	2021-05-27 22:20:56.958+03	
4df3c705-4004-ff49-b25c-4b339bf46b88	2021-05-27 22:21:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:21:16.951+03	2021-05-27 22:21:16.96+03	
81970b26-d411-764b-1312-9e209e6af199	2021-05-27 22:21:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:21:36.951+03	2021-05-27 22:21:36.959+03	
5dea6d70-2320-0059-a418-c35f4d3f78be	2021-05-27 22:21:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:21:56.951+03	2021-05-27 22:21:56.958+03	
d114a1d1-0ea7-bd5c-301c-369253ec5c40	2021-05-27 22:22:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:22:16.951+03	2021-05-27 22:22:16.958+03	
54482c39-4911-d397-cf49-fac0d84d4c33	2021-05-27 22:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:22:36.951+03	2021-05-27 22:22:36.959+03	
e169e1e0-cab1-7a26-9d8a-74d5124e4535	2021-05-27 22:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:22:56.951+03	2021-05-27 22:22:56.958+03	
76447433-d10a-93ca-b6d7-636017fba0fa	2021-05-27 22:02:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:02:26.951+03	2021-05-27 22:02:26.962+03	
fde1e085-36fd-f927-a28a-bc22ab58e34a	2021-05-27 22:02:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:02:46.952+03	2021-05-27 22:02:46.968+03	
4e579a41-659d-b2a3-20dd-3509ab822005	2021-05-27 22:03:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:03:06.952+03	2021-05-27 22:03:06.962+03	
511c2c5e-f91f-257a-4608-6cd47546c133	2021-05-27 22:03:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:03:27.951+03	2021-05-27 22:03:27.964+03	
92f6edff-58f0-fbda-7032-7fa0f0edb4a7	2021-05-27 22:03:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:03:58.951+03	2021-05-27 22:03:59.458+03	
26d60b9a-f5c8-1a07-2211-1d595a89b82e	2021-05-27 22:04:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:04:18.951+03	2021-05-27 22:04:19.232+03	
af597ed7-30cf-fba1-1b94-bd51ce3635a6	2021-05-27 22:04:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:04:38.951+03	2021-05-27 22:04:39.005+03	
6dc16bd4-be75-b00a-b745-2309573c7ee3	2021-05-27 22:04:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:04:58.951+03	2021-05-27 22:04:58.991+03	
4ebd520a-89b7-8619-76e1-926d507e7b07	2021-05-27 22:05:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:05:18.951+03	2021-05-27 22:05:18.982+03	
eb2965a3-f842-f1c7-12e0-65ff24274890	2021-05-27 22:05:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:05:38.951+03	2021-05-27 22:05:39.248+03	
7b25bf58-78b3-a7ae-b39b-1b9eb32e52d4	2021-05-27 22:05:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:05:58.951+03	2021-05-27 22:05:59.701+03	
8d025fea-8425-8897-5e45-f482093b6700	2021-05-27 22:06:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:06:19.951+03	2021-05-27 22:06:19.957+03	
a2c9c8a2-d3b4-65a9-fe5e-09b36ec8509d	2021-05-27 22:06:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:06:39.951+03	2021-05-27 22:06:39.962+03	
1373d34c-9c56-c7d2-c920-0e614ef6caa2	2021-05-27 22:06:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:06:49.951+03	2021-05-27 22:06:50.111+03	
d9967455-5e84-58f2-2853-700d542e456e	2021-05-27 22:07:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:07:09.951+03	2021-05-27 22:07:10.003+03	
3e85bd13-0be2-7f37-5043-b8c2efda2b2e	2021-05-27 22:07:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:07:29.951+03	2021-05-27 22:07:30.31+03	
14ec77e7-eebe-4af3-2e60-d270623d2a44	2021-05-27 22:07:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:07:49.951+03	2021-05-27 22:07:50.026+03	
8c81dc9b-0932-3d32-8e02-3d0a4e4d5ab0	2021-05-27 22:08:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:08:09.951+03	2021-05-27 22:08:09.961+03	
3e9ed9c3-aeba-c045-e346-684f0396aa49	2021-05-27 22:08:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:08:29.952+03	2021-05-27 22:08:30.009+03	
aa57375b-9e9c-9a76-1448-ce476a2be47a	2021-05-27 22:08:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:08:50.951+03	2021-05-27 22:08:50.984+03	
ac2dba6f-b963-f466-7d17-661e1681b0e4	2021-05-27 22:09:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:09:10.951+03	2021-05-27 22:09:10.986+03	
2e503675-9050-be88-31a9-c45b47ed061a	2021-05-27 22:09:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:09:30.952+03	2021-05-27 22:09:31.471+03	
c2397369-26dd-9c9e-e9c7-3c2bb0c7beba	2021-05-27 22:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 22:10:00.951+03	2021-05-27 22:10:03.127+03	ERROR
2066587b-39d7-ed05-2b17-c223a5bd0405	2021-05-27 22:10:02.083	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:10:02.082+03	2021-05-27 22:10:03.421+03	
7410cf9a-1eb0-f9f4-eab4-4cf5991eb443	2021-05-27 22:10:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:10:12.951+03	2021-05-27 22:10:13.474+03	
5e63f1cc-e24f-be56-edc5-e0d48982f705	2021-05-27 22:10:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:10:33.951+03	2021-05-27 22:10:34.017+03	
369d5578-d82b-a1e6-b19a-87be02cadaba	2021-05-27 22:10:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:10:53.951+03	2021-05-27 22:10:53.988+03	
fcf535c5-5a8d-ec8b-5372-96015bb9f0ce	2021-05-27 22:11:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:11:13.951+03	2021-05-27 22:11:13.96+03	
e923465f-5b8b-da50-fc29-7ccc3f6c3287	2021-05-27 22:11:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:11:33.951+03	2021-05-27 22:11:34.013+03	
d0e64eab-4529-c209-906e-45b572287879	2021-05-27 22:11:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:11:53.952+03	2021-05-27 22:11:53.963+03	
07ad8756-39ce-6d1b-98eb-49b02fc7544a	2021-05-27 22:12:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:12:14.951+03	2021-05-27 22:12:14.959+03	
8882ae95-3ef1-9a00-0358-d0e731b5c5d5	2021-05-27 22:12:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:12:34.951+03	2021-05-27 22:12:34.959+03	
47416a1e-d91b-9db4-776d-e6c9d62617df	2021-05-27 22:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:12:54.951+03	2021-05-27 22:12:54.96+03	
cb9ced41-8aca-f8dc-097a-c3c5cddbade6	2021-05-27 22:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:13:14.951+03	2021-05-27 22:13:14.959+03	
db55b642-07a5-f37a-08f6-ba5e5e073d81	2021-05-27 22:13:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:13:34.951+03	2021-05-27 22:13:34.961+03	
9294257b-e0d9-00a8-2682-b2000871a1b8	2021-05-27 22:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:13:54.951+03	2021-05-27 22:13:54.958+03	
f113d31a-42f2-6617-10a6-5e702f3e349a	2021-05-27 22:14:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:14:14.952+03	2021-05-27 22:14:14.96+03	
479d6fa2-4bb4-7ed3-b609-dffa5d81d032	2021-05-27 22:14:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:14:35.951+03	2021-05-27 22:14:35.958+03	
71b74c42-ad03-d5a0-5448-7ffb50ee3a4c	2021-05-27 22:14:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:14:55.951+03	2021-05-27 22:14:55.958+03	
2d7b1450-5bfd-78ff-bcb0-b8ad4a68352e	2021-05-27 22:15:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:15:15.951+03	2021-05-27 22:15:15.959+03	
6d7b8e72-d929-77c6-a7d3-871107e96bd7	2021-05-27 22:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:15:35.951+03	2021-05-27 22:15:35.958+03	
532cead1-bcf0-900e-3c6f-2e5389d77d7c	2021-05-27 22:15:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:15:55.951+03	2021-05-27 22:15:55.958+03	
8e268f81-6368-ba66-9f11-8a750f0ecd5c	2021-05-27 22:16:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:16:15.951+03	2021-05-27 22:16:15.961+03	
1a6842bd-025e-e4d3-3f00-5d04deae0fa8	2021-05-27 22:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:16:35.952+03	2021-05-27 22:16:35.959+03	
cdd31d5e-0063-1cfd-89cf-d1a3474d1af7	2021-05-27 22:16:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:16:56.951+03	2021-05-27 22:16:56.959+03	
5761e8e7-038f-f7f0-5c89-566693e69f07	2021-05-27 22:17:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:17:16.951+03	2021-05-27 22:17:16.958+03	
b63193a1-3ec1-8917-1a88-1421912366ee	2021-05-27 22:17:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:17:36.951+03	2021-05-27 22:17:36.96+03	
08bf1017-af39-41e1-d6d0-262dc928bc23	2021-05-27 22:17:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:17:56.951+03	2021-05-27 22:17:56.959+03	
c421f630-4d28-5688-4e53-63c2ddd326dd	2021-05-27 22:18:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:18:16.951+03	2021-05-27 22:18:16.959+03	
7d6d5661-dc40-6061-2f71-62a45e10cb94	2021-05-27 22:18:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:18:36.951+03	2021-05-27 22:18:36.957+03	
8edbdb28-c31b-3219-9b0f-8203c61a5e3c	2021-05-27 22:18:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:18:56.951+03	2021-05-27 22:18:56.958+03	
4a8d36d0-5d0f-399a-ef41-b5e737d4a30c	2021-05-27 22:19:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:19:16.951+03	2021-05-27 22:19:16.959+03	
66bfd0b4-7cfd-d2ef-5cb4-3bc8743adbf4	2021-05-27 22:19:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:19:36.951+03	2021-05-27 22:19:36.959+03	
72ccd34f-1481-5c01-badd-516f790abb64	2021-05-27 22:19:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:19:56.951+03	2021-05-27 22:19:56.96+03	
4550d506-b1b3-a3c2-88b1-7fe61f9c21cb	2021-05-27 22:20:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:20:06.951+03	2021-05-27 22:20:06.958+03	
b8604afa-df55-d7e9-7113-2e1593dd0166	2021-05-27 22:20:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:20:26.951+03	2021-05-27 22:20:26.958+03	
1cd3218d-a47d-f019-8645-85ecae044725	2021-05-27 22:20:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:20:46.951+03	2021-05-27 22:20:46.957+03	
ebb496e2-f510-0a15-88e9-6617193ec7af	2021-05-27 22:21:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:21:06.951+03	2021-05-27 22:21:06.958+03	
50cee90e-f96c-aaa9-1fdb-b1825ebb462c	2021-05-27 22:21:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:21:26.951+03	2021-05-27 22:21:26.962+03	
a7bca893-d227-ab44-75fe-5c948d3c79fa	2021-05-27 22:21:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:21:46.951+03	2021-05-27 22:21:46.966+03	
cff623bd-d0c0-6ab3-2d96-287e38d46d2b	2021-05-27 22:22:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:22:06.951+03	2021-05-27 22:22:06.958+03	
7ffcc215-28b6-3666-8cd2-0607bc91ee98	2021-05-27 22:22:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:22:26.951+03	2021-05-27 22:22:26.96+03	
44e2dbaf-c007-b050-a07e-8c439d5b06ab	2021-05-27 22:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:22:46.951+03	2021-05-27 22:22:46.958+03	
79a5ba76-16b9-dcb5-6314-3f0841be5df2	2021-05-27 22:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:23:06.951+03	2021-05-27 22:23:06.959+03	
965b8f70-9e0b-a0bc-e4d3-36be78d32f97	2021-05-27 22:23:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:23:26.951+03	2021-05-27 22:23:26.958+03	
b009d8cf-2902-280d-55d1-ccdf65df631c	2021-05-27 22:23:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:23:46.952+03	2021-05-27 22:23:46.959+03	
5de3e0e1-568f-5494-14e2-a0661842b2bc	2021-05-27 22:24:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:24:07.952+03	2021-05-27 22:24:07.959+03	
d483dfb5-61f9-fc6e-36a7-7601e100a862	2021-05-27 22:24:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:24:28.952+03	2021-05-27 22:24:28.966+03	
cbd46829-ec52-e56f-6d09-29c8edbbbc08	2021-05-27 22:24:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:24:49.951+03	2021-05-27 22:24:49.959+03	
6f61e80e-355a-4675-efcf-1aaeff677128	2021-05-27 22:25:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:25:09.951+03	2021-05-27 22:25:09.958+03	
a81488cc-75b5-6252-e4da-2db084e87c88	2021-05-27 22:25:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:25:29.951+03	2021-05-27 22:25:29.959+03	
b11948e1-4b1b-d934-73cc-058892523f32	2021-05-27 22:25:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:25:49.952+03	2021-05-27 22:25:49.959+03	
ac6ebfa1-6fdc-bcad-e119-e255c740d613	2021-05-27 22:26:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:26:10.952+03	2021-05-27 22:26:10.959+03	
4c976760-50bf-3f28-9581-518f9caa736d	2021-05-27 22:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:26:31.952+03	2021-05-27 22:26:31.96+03	
d3e28979-bf4f-1035-02a2-a120c913bf13	2021-05-27 22:26:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:26:52.951+03	2021-05-27 22:26:52.959+03	
1fd4e4b0-0fc8-ee34-f74b-93b40232eb4d	2021-05-27 22:27:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:27:12.953+03	2021-05-27 22:27:12.96+03	
74306a4c-c9d2-d861-af37-473a243ac969	2021-05-27 22:27:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:27:33.951+03	2021-05-27 22:27:33.957+03	
3ae07a23-2726-1fb1-e7ef-bc868827112a	2021-05-27 22:27:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:27:53.951+03	2021-05-27 22:27:53.958+03	
322a2333-741a-ed0a-b6f0-4a1bf3ef628e	2021-05-27 22:28:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:28:13.951+03	2021-05-27 22:28:13.961+03	
a8838aa9-b6bc-8ce7-a0e2-6f72074a8d9f	2021-05-27 22:28:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:28:33.951+03	2021-05-27 22:28:33.957+03	
5d8c713d-b90f-0ecc-6772-62296b47f86f	2021-05-27 22:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:28:53.952+03	2021-05-27 22:28:53.959+03	
d9ac092d-38ac-b5a6-d7f0-3b125d79c81c	2021-05-27 22:29:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:29:14.951+03	2021-05-27 22:29:14.958+03	
8a3dff60-fcb6-6302-7979-2dc2605e4f73	2021-05-27 22:29:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:29:34.951+03	2021-05-27 22:29:34.958+03	
7b1d6bd0-2a4d-2c38-a3be-665505c0eb1b	2021-05-27 22:29:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:29:54.952+03	2021-05-27 22:29:54.959+03	
92dcdc56-1240-a8f2-bfd1-7e7f0edc4c76	2021-05-27 22:30:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:30:05.951+03	2021-05-27 22:30:05.958+03	
908e3a7f-98f6-3a55-9a3c-08e3621257f1	2021-05-27 22:30:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:30:25.951+03	2021-05-27 22:30:25.96+03	
c0f450a1-39f6-eeb2-c158-cd0d2d383b46	2021-05-27 22:30:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:30:45.951+03	2021-05-27 22:30:45.958+03	
e1cebdd7-6ece-0d53-5538-ba8e71aacf5e	2021-05-27 22:31:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:31:05.951+03	2021-05-27 22:31:05.959+03	
59f93b2e-9931-abd3-d1f5-6d8108b147aa	2021-05-27 22:31:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:31:25.952+03	2021-05-27 22:31:25.96+03	
fd5f7f58-2c65-2b8c-4f6d-f8eb34325337	2021-05-27 22:31:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:31:46.951+03	2021-05-27 22:31:46.959+03	
4f521977-ca3a-9581-778c-3f37d82f7ef3	2021-05-27 22:32:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:32:06.951+03	2021-05-27 22:32:06.96+03	
f01f94bf-a5a8-04cc-241a-b73012f72220	2021-05-27 22:32:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:32:26.951+03	2021-05-27 22:32:26.959+03	
6a5bc797-7dbb-e3c2-9c5e-041a9f165e80	2021-05-27 22:32:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:32:46.951+03	2021-05-27 22:32:46.959+03	
23422c64-a03d-676c-9886-f1fa09241ad3	2021-05-27 22:33:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:33:06.951+03	2021-05-27 22:33:06.958+03	
09311a0b-4bb0-b2e6-0331-f3e73cd00e3f	2021-05-27 22:33:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:33:26.951+03	2021-05-27 22:33:26.961+03	
c6ec688a-d7cf-4564-ec7f-00115da61b66	2021-05-27 22:33:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:33:46.951+03	2021-05-27 22:33:46.958+03	
6c5df8e9-8eae-1c18-4be8-344d4b0379c1	2021-05-27 22:34:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:34:06.951+03	2021-05-27 22:34:06.958+03	
4fd9a9f5-b7ae-b57f-b5d5-72746f166e23	2021-05-27 22:34:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:34:26.951+03	2021-05-27 22:34:26.958+03	
5478293e-8da1-3766-82f7-740fb27b0cb4	2021-05-27 22:34:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:34:46.951+03	2021-05-27 22:34:46.958+03	
34a21928-c971-7b9e-0b07-5e9066987d2e	2021-05-27 22:35:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:35:07.951+03	2021-05-27 22:35:07.957+03	
3b8358af-3e25-e64a-5bb3-eb5775ab172a	2021-05-27 22:35:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:35:27.951+03	2021-05-27 22:35:27.958+03	
f10e5603-2864-fefb-2768-f1680c04d5cd	2021-05-27 22:35:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:35:47.951+03	2021-05-27 22:35:47.958+03	
20bb54af-3a8f-a371-a36f-970bd78799e9	2021-05-27 22:36:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:36:07.951+03	2021-05-27 22:36:07.961+03	
4796ff75-0948-a746-ab51-c812d3bf5194	2021-05-27 22:36:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:36:27.951+03	2021-05-27 22:36:27.958+03	
6c2de044-d83d-9a52-749f-4e1ea3a23bb0	2021-05-27 22:36:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:36:47.951+03	2021-05-27 22:36:47.958+03	
48844531-71a8-3783-c392-6bc08baa480f	2021-05-27 22:37:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:37:07.953+03	2021-05-27 22:37:07.962+03	
208196a0-9b13-4baa-67b5-a804df91131c	2021-05-27 22:37:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:37:28.951+03	2021-05-27 22:37:28.967+03	
f04db574-73b8-e9ae-75ac-f6ae7e513a0e	2021-05-27 22:37:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:37:48.951+03	2021-05-27 22:37:48.958+03	
07dc74e2-7a0d-815b-ad59-0c2429271f45	2021-05-27 22:38:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:38:08.951+03	2021-05-27 22:38:08.959+03	
e063f9ca-a97b-5e5e-1e25-9135a043b516	2021-05-27 22:38:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:38:28.951+03	2021-05-27 22:38:28.963+03	
371a0299-8a56-6f2f-d9da-b79758966833	2021-05-27 22:38:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:38:48.951+03	2021-05-27 22:38:48.958+03	
ad2702ea-254c-6562-e73b-413e6baad1c9	2021-05-27 22:39:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:39:08.951+03	2021-05-27 22:39:08.959+03	
c3c7c8ca-1ed6-5d8b-c2de-ae1c45af0cdb	2021-05-27 22:39:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:39:29.951+03	2021-05-27 22:39:29.959+03	
d88fcae2-a3c1-67f3-8095-9ba7e1c095d4	2021-05-27 22:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:39:49.951+03	2021-05-27 22:39:49.958+03	
238ce092-6d5e-3c89-bba4-f0246e22466d	2021-05-27 22:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 22:40:00.951+03	2021-05-27 22:40:00.999+03	ERROR
b2a2f15a-8d02-fc66-f2fc-09e82b607882	2021-05-27 22:40:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:40:19.951+03	2021-05-27 22:40:19.959+03	
afd52b85-afb6-640f-110f-7efb27741a56	2021-05-27 22:40:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:40:39.951+03	2021-05-27 22:40:39.959+03	
f534d1e1-177f-9dcd-56be-798b3fce82f7	2021-05-27 22:40:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:40:59.951+03	2021-05-27 22:40:59.958+03	
41477adf-9dbd-f635-9beb-f2da58d33037	2021-05-27 22:41:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:41:19.951+03	2021-05-27 22:41:19.958+03	
9e27b0b4-48c2-164d-fd71-238c33b3f32c	2021-05-27 22:41:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:41:39.951+03	2021-05-27 22:41:39.957+03	
b1e03ace-2ec1-5304-1c19-e725b7fc7712	2021-05-27 22:41:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:41:59.951+03	2021-05-27 22:41:59.959+03	
80680482-1f6a-c1a2-2347-21aaa8c41dbe	2021-05-27 22:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:42:19.951+03	2021-05-27 22:42:19.959+03	
22c69175-918d-4676-8226-8256914e1eb7	2021-05-27 22:42:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:42:39.952+03	2021-05-27 22:42:39.959+03	
6f7b4371-ff48-50c9-b6d5-89122e1521b8	2021-05-27 22:43:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:43:00.951+03	2021-05-27 22:43:00.96+03	
eda82415-97bc-62d4-0144-a25ce98eb399	2021-05-27 22:43:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:43:20.951+03	2021-05-27 22:43:20.959+03	
1ac8c29e-b0d8-9877-9853-679e87055de1	2021-05-27 22:43:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:43:40.951+03	2021-05-27 22:43:40.962+03	
64ea0af4-a817-4470-5d26-9f4d7a6f9144	2021-05-27 22:23:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:23:16.951+03	2021-05-27 22:23:16.958+03	
5743ed2e-0f68-a659-87ab-929edf0618f7	2021-05-27 22:23:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:23:36.951+03	2021-05-27 22:23:36.958+03	
8d5e9051-4743-b051-774a-d64709aa4d41	2021-05-27 22:23:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:23:57.951+03	2021-05-27 22:23:57.958+03	
efabc893-7bb9-8dfa-233b-39903c80d0c5	2021-05-27 22:24:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:24:17.952+03	2021-05-27 22:24:17.962+03	
c7e95a8d-f4d4-2f75-26c2-b893c7c6e1ae	2021-05-27 22:24:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:24:39.951+03	2021-05-27 22:24:39.959+03	
08bc82cc-624e-a8c8-0bab-867d6d6d0fe7	2021-05-27 22:24:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:24:59.951+03	2021-05-27 22:24:59.959+03	
6299ca1d-f90b-d31e-0b9b-d952d5d32ef3	2021-05-27 22:25:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:25:19.951+03	2021-05-27 22:25:19.958+03	
7638a685-1dad-42b5-c271-6ae8e782a491	2021-05-27 22:25:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:25:39.951+03	2021-05-27 22:25:39.957+03	
5a722b4f-0c3e-1f09-c7b3-d73dda1d1dc1	2021-05-27 22:26:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:26:00.951+03	2021-05-27 22:26:00.958+03	
94294afc-0903-0da1-f643-752cb9c80d47	2021-05-27 22:26:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:26:21.951+03	2021-05-27 22:26:21.959+03	
af82eeb2-9783-527a-805d-5e91cdf5b289	2021-05-27 22:26:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:26:42.951+03	2021-05-27 22:26:42.958+03	
930d8fcf-f643-7737-9d68-270a242eac6e	2021-05-27 22:27:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:27:02.952+03	2021-05-27 22:27:02.959+03	
d67ec804-d8e6-7d19-6e34-fe1b48d20e48	2021-05-27 22:27:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:27:23.951+03	2021-05-27 22:27:23.966+03	
a6b0156c-059e-9038-1b7c-4bfb22f0c36a	2021-05-27 22:27:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:27:43.951+03	2021-05-27 22:27:43.959+03	
5511af16-5e18-8fa5-fcfb-08ec9b9dc074	2021-05-27 22:28:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:28:03.951+03	2021-05-27 22:28:03.958+03	
de46c291-3713-bcf7-a3d5-af18765800c8	2021-05-27 22:28:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:28:23.951+03	2021-05-27 22:28:23.958+03	
cc15d2b7-409b-7434-89a6-0cf642ff8ceb	2021-05-27 22:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:28:43.951+03	2021-05-27 22:28:43.958+03	
95aa189b-7d96-ea99-5076-2933fbfccbf6	2021-05-27 22:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:29:03.952+03	2021-05-27 22:29:03.959+03	
b7d2ed7d-d5ef-c637-639c-5b8c412857c8	2021-05-27 22:29:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:29:24.951+03	2021-05-27 22:29:24.958+03	
44d5245e-a86a-861d-d7c0-7c4b8c32369b	2021-05-27 22:29:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:29:44.951+03	2021-05-27 22:29:44.961+03	
ea79ad35-a5a4-0f2f-68e6-0fd39ea2c88b	2021-05-27 22:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 22:30:00.951+03	2021-05-27 22:30:00.957+03	ERROR
d253f3e3-dec5-c23f-b6cc-69b74d77c412	2021-05-27 22:30:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:30:15.951+03	2021-05-27 22:30:15.957+03	
950768b7-d442-9062-c754-797b007f212e	2021-05-27 22:30:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:30:35.951+03	2021-05-27 22:30:35.958+03	
7b37673d-e689-db44-12d5-1fabb7d3e1ed	2021-05-27 22:30:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:30:55.951+03	2021-05-27 22:30:55.967+03	
7585c66d-9049-d9d3-e725-3c51914d94eb	2021-05-27 22:31:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:31:15.951+03	2021-05-27 22:31:15.958+03	
5d19b8d4-5b48-9199-3868-cff6809672bb	2021-05-27 22:31:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:31:36.951+03	2021-05-27 22:31:36.958+03	
cf756779-93cd-e207-eece-85b2d3dd4b01	2021-05-27 22:31:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:31:56.951+03	2021-05-27 22:31:56.959+03	
91564d77-6ddd-8f4b-d8c1-c0f05078cdf5	2021-05-27 22:32:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:32:16.951+03	2021-05-27 22:32:16.958+03	
dcd6e5bd-6479-e104-8317-0198f844bec7	2021-05-27 22:32:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:32:36.951+03	2021-05-27 22:32:36.958+03	
0fd4557f-9869-4134-0d05-8aff137609fe	2021-05-27 22:32:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:32:56.951+03	2021-05-27 22:32:56.958+03	
ca05f828-0ec6-9500-273f-48a4e9febf96	2021-05-27 22:33:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:33:16.951+03	2021-05-27 22:33:16.96+03	
e5e1d68f-b9e2-7bcd-ee88-d97a0aad67e5	2021-05-27 22:33:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:33:36.951+03	2021-05-27 22:33:36.959+03	
3a56d99c-64d6-7f83-9d0f-df66f0bfccaa	2021-05-27 22:33:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:33:56.951+03	2021-05-27 22:33:56.959+03	
db847408-7cce-089b-e053-db616e85bb90	2021-05-27 22:34:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:34:16.951+03	2021-05-27 22:34:16.958+03	
3f94e9a5-4a93-c1d0-3385-7fffb61f957f	2021-05-27 22:34:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:34:36.951+03	2021-05-27 22:34:36.958+03	
ab6c61c0-021a-b02e-9e66-9f378bd64544	2021-05-27 22:34:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:34:56.952+03	2021-05-27 22:34:56.958+03	
bc2c900c-0794-20c1-ac97-7e5061c873f3	2021-05-27 22:35:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:35:17.951+03	2021-05-27 22:35:17.96+03	
a056f948-35f4-53de-f410-0ce7dc8c7da9	2021-05-27 22:35:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:35:37.951+03	2021-05-27 22:35:37.958+03	
deb758d1-49ef-11f6-b3ce-c65ed0fa2385	2021-05-27 22:35:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:35:57.951+03	2021-05-27 22:35:57.958+03	
3541f1df-1ca5-21bd-59f3-fd4df7a193d7	2021-05-27 22:36:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:36:17.951+03	2021-05-27 22:36:17.958+03	
4a16cb1a-03fe-eba5-6d39-422b4b800a73	2021-05-27 22:36:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:36:37.951+03	2021-05-27 22:36:37.961+03	
a7bb863a-7f9b-28a8-a175-d4eb2020cf72	2021-05-27 22:36:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:36:57.951+03	2021-05-27 22:36:57.958+03	
7915a696-8ab4-484f-2d21-bc31d15cc1d9	2021-05-27 22:37:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:37:18.951+03	2021-05-27 22:37:18.957+03	
a6ef9620-3245-0f49-0bdf-f174ad1e2e1a	2021-05-27 22:37:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:37:38.951+03	2021-05-27 22:37:38.968+03	
e1b961ef-ebd6-aad9-cfbc-1ff4aeba823c	2021-05-27 22:37:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:37:58.951+03	2021-05-27 22:37:58.962+03	
163b99cf-7326-408a-a479-255385289c14	2021-05-27 22:38:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:38:18.951+03	2021-05-27 22:38:18.964+03	
0f8708ef-0ed7-ec80-87e2-bf9350cfc890	2021-05-27 22:38:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:38:38.951+03	2021-05-27 22:38:38.96+03	
d282ca87-76e1-48c7-526a-7565107a8d2b	2021-05-27 22:38:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:38:58.951+03	2021-05-27 22:38:58.967+03	
39cfd60b-f2d5-0c30-61d7-64a5a62f39f3	2021-05-27 22:39:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:39:18.952+03	2021-05-27 22:39:18.958+03	
7856704c-8203-ba04-448c-fdadf45fab4d	2021-05-27 22:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:39:39.951+03	2021-05-27 22:39:39.958+03	
ba679d79-2c9d-632c-aa2c-a0c93b264835	2021-05-27 22:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:39:59.951+03	2021-05-27 22:39:59.959+03	
87d671d9-bb6b-e7da-404c-567221173fd5	2021-05-27 22:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:40:09.951+03	2021-05-27 22:40:09.958+03	
e59d21ed-d274-e456-7016-40bdf5dd900e	2021-05-27 22:40:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:40:29.951+03	2021-05-27 22:40:29.959+03	
34fd3c41-908d-ec7d-6f37-5d8cc8c2b7e1	2021-05-27 22:40:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:40:49.951+03	2021-05-27 22:40:49.958+03	
625390c3-26e0-628d-1059-49c651fddb03	2021-05-27 22:41:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:41:09.951+03	2021-05-27 22:41:09.958+03	
2c5ccc1b-3ed4-2c4c-c08b-c228b6f34a08	2021-05-27 22:41:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:41:29.951+03	2021-05-27 22:41:29.958+03	
1526dfed-c02a-dae0-e981-9353f5ea2ca0	2021-05-27 22:41:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:41:49.951+03	2021-05-27 22:41:49.959+03	
baf7d6e3-bec1-253d-e06d-3a8986a01bc5	2021-05-27 22:42:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:42:09.951+03	2021-05-27 22:42:09.957+03	
5666bbbf-b93b-9c07-1954-0cf71fb8c65f	2021-05-27 22:42:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:42:29.951+03	2021-05-27 22:42:29.958+03	
b6f4435f-961a-3bd3-eb81-0071eef56941	2021-05-27 22:42:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:42:50.951+03	2021-05-27 22:42:50.96+03	
f8c61969-d855-864d-a2b7-5490e85b8b3b	2021-05-27 22:43:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:43:10.951+03	2021-05-27 22:43:10.959+03	
e5bdc1a9-0017-946f-77c2-3b76dda451c5	2021-05-27 22:43:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:43:30.951+03	2021-05-27 22:43:30.967+03	
308e220b-ae5d-615e-6c0a-5ff8872a5435	2021-05-27 22:43:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:43:50.952+03	2021-05-27 22:43:50.962+03	
7cdbba2e-7c67-bebb-a6fd-511eee393dc5	2021-05-27 22:44:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:44:01.951+03	2021-05-27 22:44:01.958+03	
02f7f876-f84c-75ad-40da-3c62184ea306	2021-05-27 22:44:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:44:21.951+03	2021-05-27 22:44:21.958+03	
d0562d6b-dee8-2e28-da4c-7b79deaf891b	2021-05-27 22:44:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:44:41.951+03	2021-05-27 22:44:41.958+03	
2464e2b6-5627-c8a1-8529-7a3e3863f689	2021-05-27 22:45:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:45:01.951+03	2021-05-27 22:45:01.958+03	
fe946b2e-85b1-e6f4-b149-075c0a817bea	2021-05-27 22:45:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:45:21.951+03	2021-05-27 22:45:21.959+03	
3f911482-399f-c7cd-2bbf-3acee5aee9c3	2021-05-27 22:45:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:45:41.951+03	2021-05-27 22:45:41.958+03	
3c611cbc-15bc-3549-1524-3329a5d6b3a6	2021-05-27 22:46:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:46:01.951+03	2021-05-27 22:46:01.959+03	
dcb79601-0a3f-3c6e-4aba-3eef2673f1b3	2021-05-27 22:46:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:46:21.952+03	2021-05-27 22:46:21.959+03	
30cddf81-b530-6cf4-6f95-be389db2c280	2021-05-27 22:46:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:46:42.951+03	2021-05-27 22:46:42.958+03	
ad75b2fc-c5e9-3086-9c8a-ebea0eabda44	2021-05-27 22:47:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:47:02.952+03	2021-05-27 22:47:02.959+03	
168673e3-b378-dc62-41ed-3062d7b81967	2021-05-27 22:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:47:23.951+03	2021-05-27 22:47:23.959+03	
acd22eca-6c15-ca6e-555e-d1237e03c003	2021-05-27 22:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:47:43.951+03	2021-05-27 22:47:43.959+03	
f2b0e334-6996-d5ba-61a4-a47d3f3482c5	2021-05-27 22:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:48:03.951+03	2021-05-27 22:48:03.96+03	
81bdc8cd-fa18-fa25-eedf-a24ad2cd479c	2021-05-27 22:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:48:23.952+03	2021-05-27 22:48:23.96+03	
4edc3279-4e00-3bb1-ce32-087b91af2a40	2021-05-27 22:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:48:44.951+03	2021-05-27 22:48:44.958+03	
50e6187a-a652-3aa1-0a69-938d24f3555e	2021-05-27 22:49:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:49:04.951+03	2021-05-27 22:49:04.959+03	
a057aa7d-506a-51f1-4dfd-1f7b1598e6b6	2021-05-27 22:49:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:49:24.951+03	2021-05-27 22:49:24.96+03	
85624ab1-a0c8-ff86-30dd-aa8c3da37bba	2021-05-27 22:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:49:44.951+03	2021-05-27 22:49:44.964+03	
4ecacaaf-56ea-8ed4-6ac3-135ef38b73a6	2021-05-27 22:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 22:50:00.951+03	2021-05-27 22:50:00.996+03	ERROR
9dd80e40-b2ca-dbbb-f9df-e6d85585e968	2021-05-27 22:50:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:50:14.951+03	2021-05-27 22:50:14.958+03	
192f706d-b0f2-9561-68c8-cc4ccd3b2d51	2021-05-27 22:50:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:50:34.951+03	2021-05-27 22:50:34.957+03	
fb662403-2070-d01c-334a-d74d33678a45	2021-05-27 22:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:50:54.951+03	2021-05-27 22:50:54.958+03	
a77586a8-8a2c-b0e9-dd6f-d532c61daa25	2021-05-27 22:51:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:51:15.951+03	2021-05-27 22:51:15.959+03	
095cf809-7280-ec41-af97-0d6164ae5059	2021-05-27 22:51:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:51:35.951+03	2021-05-27 22:51:35.959+03	
2aa1989a-09ee-a5e2-c38b-e285a28ef5f4	2021-05-27 22:51:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:51:55.951+03	2021-05-27 22:51:55.958+03	
f9155328-0521-b29d-8186-8bed1cfaac63	2021-05-27 22:52:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:52:15.951+03	2021-05-27 22:52:15.958+03	
885e0f74-2925-4aa9-9ad8-d6c0a275f19c	2021-05-27 22:52:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:52:36.951+03	2021-05-27 22:52:36.958+03	
7fe832cd-8236-18ca-8f50-f2b6ab880b89	2021-05-27 22:52:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:52:56.952+03	2021-05-27 22:52:56.961+03	
fd8b37c5-195c-7915-a72b-c511844a1ca0	2021-05-27 22:53:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:53:17.951+03	2021-05-27 22:53:17.958+03	
935203bb-87a3-cc1d-5334-81c2291d85a1	2021-05-27 22:53:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:53:37.951+03	2021-05-27 22:53:37.959+03	
bd225af8-fbb2-1641-031d-bd1d83c75b1f	2021-05-27 22:53:57.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:53:57.951+03	2021-05-27 22:53:57.959+03	
5f03c326-3f4c-5218-fc51-0fe8b5141de4	2021-05-27 22:54:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:54:17.952+03	2021-05-27 22:54:17.959+03	
2ca0d47c-6cef-2ac9-cad1-bea53bbe4c79	2021-05-27 22:54:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:54:38.951+03	2021-05-27 22:54:38.958+03	
23d6fb97-bc96-fa57-6eb4-eec0c8d1d877	2021-05-27 22:54:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:54:58.951+03	2021-05-27 22:54:58.959+03	
d1bc6597-2dae-757c-57c2-93d39f3553e5	2021-05-27 22:55:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:55:18.951+03	2021-05-27 22:55:18.961+03	
e299ed2e-818f-0371-9f05-babe42da4a54	2021-05-27 22:55:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:55:38.951+03	2021-05-27 22:55:38.959+03	
82873717-6cb0-3d4b-8d54-61cbf933e10a	2021-05-27 22:55:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:55:58.951+03	2021-05-27 22:55:58.958+03	
d5dc4d97-86e7-2214-9cea-17ce32c99f9c	2021-05-27 22:56:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:56:18.951+03	2021-05-27 22:56:18.958+03	
44a32d13-bd1e-ab60-ab5e-35778334821d	2021-05-27 22:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:56:38.951+03	2021-05-27 22:56:38.958+03	
3400051a-622c-ad50-f713-13fda425711a	2021-05-27 22:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:56:58.951+03	2021-05-27 22:56:58.958+03	
e8648d95-1516-ca8b-1759-f0b3d078efe5	2021-05-27 22:57:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:57:18.951+03	2021-05-27 22:57:18.958+03	
7b9b54dc-6010-20da-bdcf-5fcef9e22742	2021-05-27 22:57:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:57:38.951+03	2021-05-27 22:57:38.958+03	
c07ad8b6-39c2-eb9f-9092-a11e0ba32bba	2021-05-27 22:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:57:58.951+03	2021-05-27 22:57:58.96+03	
faba894e-6af6-7384-4242-4e66370c8a98	2021-05-27 22:58:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:58:19.951+03	2021-05-27 22:58:19.957+03	
58312c22-4e20-1ab4-800e-d0217c22eb31	2021-05-27 22:58:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:58:39.951+03	2021-05-27 22:58:39.958+03	
c852097f-5987-7f38-744e-d9173bf63015	2021-05-27 22:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:58:59.951+03	2021-05-27 22:58:59.961+03	
3c2214da-2629-feb8-483f-330833c5c0f1	2021-05-27 22:59:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:59:20.951+03	2021-05-27 22:59:20.958+03	
bcd666b6-72c8-3cde-ba1d-625304a700d6	2021-05-27 22:59:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:59:40.951+03	2021-05-27 22:59:40.958+03	
e5e4d9ff-0939-9fbd-8b35-762f50ab549e	2021-05-27 23:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 23:00:00.951+03	2021-05-27 23:00:00.958+03	ERROR
e11acdf4-074a-4e3a-27d0-3e39e38de716	2021-05-27 23:00:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:00:21.951+03	2021-05-27 23:00:21.958+03	
ca9ce493-990c-c9b4-34d3-b8139d08cd3e	2021-05-27 23:00:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:00:41.951+03	2021-05-27 23:00:41.958+03	
04e7f188-4e3a-891a-188b-6c4097bbc969	2021-05-27 23:01:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:01:01.952+03	2021-05-27 23:01:01.963+03	
b80bb560-ff2a-eb1b-1752-8f57688a91be	2021-05-27 23:01:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:01:23.951+03	2021-05-27 23:01:23.959+03	
91f999fa-7593-f53e-32dd-d85a5a4b0a65	2021-05-27 23:01:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:01:43.951+03	2021-05-27 23:01:43.958+03	
fa88ef99-61e5-8686-54e3-045c4988bb6e	2021-05-27 23:02:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:02:03.951+03	2021-05-27 23:02:03.959+03	
39d6330e-1878-fa70-3683-5e4fd464fe64	2021-05-27 23:02:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:02:23.952+03	2021-05-27 23:02:23.959+03	
22c7b554-d0da-d80e-9aaa-463f4aff234b	2021-05-27 23:02:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:02:44.951+03	2021-05-27 23:02:44.958+03	
18732d71-2da0-c2fb-0c05-60ef441c57c5	2021-05-27 23:03:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:03:04.951+03	2021-05-27 23:03:04.958+03	
ac721901-4b51-5491-48a4-dd84c8c09447	2021-05-27 23:03:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:03:24.951+03	2021-05-27 23:03:24.958+03	
6104f0d7-9722-4fb0-d63f-c2cb74aa1513	2021-05-27 23:03:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:03:44.951+03	2021-05-27 23:03:44.968+03	
992a6ad1-87ed-95bd-861a-b69c091370a8	2021-05-27 23:04:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:04:04.951+03	2021-05-27 23:04:04.96+03	
99484889-564e-34a0-4d42-ca308dbe9988	2021-05-27 23:04:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:04:24.952+03	2021-05-27 23:04:24.961+03	
05123315-c1d8-9ea2-2080-d1ab69758e3d	2021-05-27 23:04:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:04:46.951+03	2021-05-27 23:04:46.959+03	
f416aed3-6d1a-d4b7-8aff-9023014393c5	2021-05-27 22:44:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:44:11.951+03	2021-05-27 22:44:11.959+03	
0bc2d47b-92a8-c1de-887d-176bbc04a8a8	2021-05-27 22:44:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:44:31.951+03	2021-05-27 22:44:31.959+03	
245b988e-bd8d-c9e2-5ab5-6b4dd6200b60	2021-05-27 22:44:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:44:51.951+03	2021-05-27 22:44:51.957+03	
69b44edd-0e15-5194-9675-d75591e71388	2021-05-27 22:45:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:45:11.951+03	2021-05-27 22:45:11.959+03	
e583f381-b803-3e89-f972-e3f4f20abfa0	2021-05-27 22:45:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:45:31.951+03	2021-05-27 22:45:31.959+03	
50d01190-0111-b7ef-54a3-f7eacbe1537f	2021-05-27 22:45:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:45:51.951+03	2021-05-27 22:45:51.958+03	
a45c6b23-0040-40b3-772a-3b92b6815c1c	2021-05-27 22:46:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:46:11.951+03	2021-05-27 22:46:11.963+03	
a60a4ea9-1da7-6a6e-46c4-880b0eab707a	2021-05-27 22:46:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:46:31.952+03	2021-05-27 22:46:31.96+03	
b3f9a52b-b908-d269-8d5f-70bfca27fc71	2021-05-27 22:46:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:46:52.951+03	2021-05-27 22:46:52.959+03	
4b9a8954-0956-3044-cf42-e62642b457f5	2021-05-27 22:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:47:13.951+03	2021-05-27 22:47:13.959+03	
c1d193e8-ed33-89dd-5846-0eb2d17934f3	2021-05-27 22:47:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:47:33.951+03	2021-05-27 22:47:33.957+03	
86da7250-2c53-2035-211a-fadedfb5bec8	2021-05-27 22:47:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:47:53.951+03	2021-05-27 22:47:53.96+03	
e5eeb81a-fd69-2007-a426-b9cce80cd6f6	2021-05-27 22:48:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:48:13.951+03	2021-05-27 22:48:13.958+03	
0f02b9e9-7f08-7632-e74c-6a0c55e9c5d3	2021-05-27 22:48:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:48:34.951+03	2021-05-27 22:48:34.958+03	
d85abd50-04b7-3e43-6a65-add9dc607c19	2021-05-27 22:48:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:48:54.951+03	2021-05-27 22:48:54.958+03	
37216b3e-7748-b2c5-cd5c-591e41c8d8fb	2021-05-27 22:49:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:49:14.951+03	2021-05-27 22:49:14.959+03	
aa29fa93-4cd5-90ea-664a-0dbfa6290f4c	2021-05-27 22:49:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:49:34.951+03	2021-05-27 22:49:34.959+03	
da4099a3-440d-3e7e-4ccb-237689ede821	2021-05-27 22:49:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:49:54.951+03	2021-05-27 22:49:54.958+03	
365f3d80-6c07-c817-da24-fe5911aa60b5	2021-05-27 22:50:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:50:04.951+03	2021-05-27 22:50:04.958+03	
376b9654-41bf-f0c7-18d5-0956d8154b7c	2021-05-27 22:50:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:50:24.951+03	2021-05-27 22:50:24.959+03	
aa8344aa-8e0f-1a24-5df8-59e4b502062b	2021-05-27 22:50:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:50:44.951+03	2021-05-27 22:50:44.96+03	
19b517e8-f325-a820-0a2f-82a60c16be35	2021-05-27 22:51:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:51:04.952+03	2021-05-27 22:51:04.959+03	
4504aded-e4c3-eab1-b98f-62e704cdce47	2021-05-27 22:51:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:51:25.951+03	2021-05-27 22:51:25.958+03	
c4692b3e-5a8b-2888-65ca-40730f6deceb	2021-05-27 22:51:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:51:45.951+03	2021-05-27 22:51:45.958+03	
8c187247-d26d-dfa8-86fc-6fab1bd54ce2	2021-05-27 22:52:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:52:05.951+03	2021-05-27 22:52:05.958+03	
7418ce9f-9e98-1472-cc50-8f4232639608	2021-05-27 22:52:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:52:25.952+03	2021-05-27 22:52:25.96+03	
67cb2e96-cb5e-17c5-1dcb-d9768ce18ed4	2021-05-27 22:52:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:52:46.951+03	2021-05-27 22:52:46.959+03	
d23991d3-f02a-a943-5480-f12682131fad	2021-05-27 22:53:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:53:07.951+03	2021-05-27 22:53:07.958+03	
2afeec4b-7469-3930-0c47-e9e5b9343c1a	2021-05-27 22:53:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:53:27.951+03	2021-05-27 22:53:27.96+03	
ebcbb9a1-1c2e-8212-442e-78722521c31e	2021-05-27 22:53:47.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:53:47.951+03	2021-05-27 22:53:47.958+03	
7d501a35-a147-06fe-d88a-c923cf597a3c	2021-05-27 22:54:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:54:07.951+03	2021-05-27 22:54:07.958+03	
fcfcf8be-0d98-6f63-0d35-62c5164d98ea	2021-05-27 22:54:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:54:28.951+03	2021-05-27 22:54:28.959+03	
0849cfed-a5ab-a211-fb6c-fee706654415	2021-05-27 22:54:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:54:48.951+03	2021-05-27 22:54:48.958+03	
6d842b57-afc0-fd8f-45d5-cfb88feedf28	2021-05-27 22:55:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:55:08.951+03	2021-05-27 22:55:08.959+03	
0b1d9225-2197-b64e-3f5f-730dbea5e25a	2021-05-27 22:55:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:55:28.951+03	2021-05-27 22:55:28.96+03	
877f3663-acf8-26b5-e4f6-3dd753bd42ac	2021-05-27 22:55:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:55:48.951+03	2021-05-27 22:55:48.959+03	
ccca95dd-9e0d-8ef0-8b08-900378aad6c5	2021-05-27 22:56:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:56:08.951+03	2021-05-27 22:56:08.958+03	
2464b494-77c6-5d6d-0bb0-72b4f4cdeab8	2021-05-27 22:56:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:56:28.951+03	2021-05-27 22:56:28.959+03	
2122bb03-2f5b-7ee5-57c5-575c7898edb2	2021-05-27 22:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:56:48.951+03	2021-05-27 22:56:48.96+03	
9fe8b35c-0c68-9257-efa6-12155698d1d6	2021-05-27 22:57:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:57:08.951+03	2021-05-27 22:57:08.959+03	
616a6cc4-1311-2651-3231-1fcd8c0ec533	2021-05-27 22:57:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:57:28.951+03	2021-05-27 22:57:28.957+03	
63830438-68f2-c6c7-fc50-9eac4422ab45	2021-05-27 22:57:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:57:48.951+03	2021-05-27 22:57:48.959+03	
d06cbbdf-94c9-a5f6-a5d3-b3cdcf173796	2021-05-27 22:58:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:58:08.952+03	2021-05-27 22:58:08.958+03	
71634fdc-f57f-9ce2-2add-88528d1a1cf2	2021-05-27 22:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:58:29.951+03	2021-05-27 22:58:29.958+03	
57022137-43d4-5ba3-9fb4-3f69d1425331	2021-05-27 22:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:58:49.951+03	2021-05-27 22:58:49.959+03	
dddc07b2-6d64-4d76-117e-1d37a0c8c52f	2021-05-27 22:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:59:09.952+03	2021-05-27 22:59:09.96+03	
73cd3ae1-ec34-bbed-6ab8-ee5a1766fdee	2021-05-27 22:59:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:59:30.951+03	2021-05-27 22:59:30.959+03	
04638bb6-b836-22a6-ea6d-a669cbcd52a4	2021-05-27 22:59:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 22:59:50.951+03	2021-05-27 22:59:50.958+03	
e9e52169-7039-fdfb-97a2-e20d5c24fd8f	2021-05-27 23:00:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:00:00.952+03	2021-05-27 23:00:00.973+03	
11d40be8-53cd-a2d6-2968-6f2d5e60b845	2021-05-27 23:00:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:00:11.951+03	2021-05-27 23:00:11.96+03	
56408b7e-6772-91b2-2e73-16d0d816313a	2021-05-27 23:00:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:00:31.951+03	2021-05-27 23:00:31.96+03	
381a7c06-928d-d9eb-507a-21fc608a41f5	2021-05-27 23:00:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:00:51.951+03	2021-05-27 23:00:51.958+03	
28363e8c-b95e-912b-c307-440dd3abc715	2021-05-27 23:01:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:01:12.952+03	2021-05-27 23:01:12.959+03	
66cd269b-c27a-67b4-ccad-9caf0790ef02	2021-05-27 23:01:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:01:33.951+03	2021-05-27 23:01:33.959+03	
e1272987-7913-0e19-92d1-50277f91fdf3	2021-05-27 23:01:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:01:53.951+03	2021-05-27 23:01:53.958+03	
6fa41853-e794-0d11-689c-53cd58918d8c	2021-05-27 23:02:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:02:13.951+03	2021-05-27 23:02:13.958+03	
64d74bf2-db90-d575-b9bb-99bc2ff5d32f	2021-05-27 23:02:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:02:34.951+03	2021-05-27 23:02:34.958+03	
d08ab02e-f729-83fa-6603-969483b79b34	2021-05-27 23:02:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:02:54.951+03	2021-05-27 23:02:54.958+03	
87024446-52ec-9749-1b5b-3b86871a9d53	2021-05-27 23:03:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:03:14.951+03	2021-05-27 23:03:14.959+03	
25596326-d018-60d6-f61b-09428054cee5	2021-05-27 23:03:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:03:34.951+03	2021-05-27 23:03:34.958+03	
f0248d0a-2b2c-c889-1e50-0c1b1c54cfd6	2021-05-27 23:03:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:03:54.951+03	2021-05-27 23:03:54.959+03	
19116b54-6474-09af-7fa3-28c8ec8edb56	2021-05-27 23:04:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:04:14.952+03	2021-05-27 23:04:14.959+03	
0ce827d9-4abe-9bf2-3b2b-d9ebc6239797	2021-05-27 23:04:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:04:35.952+03	2021-05-27 23:04:35.959+03	
f0751336-71c0-0d4c-825f-b13f5435c1e3	2021-05-27 23:04:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:04:56.952+03	2021-05-27 23:04:56.959+03	
a8312778-9c0b-224b-aeac-5028fa447d17	2021-05-27 23:05:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:05:17.951+03	2021-05-27 23:05:17.96+03	
b6744f71-3cd3-e135-8713-0e0ae67ae6ea	2021-05-27 23:05:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:05:38.952+03	2021-05-27 23:05:38.959+03	
b63054de-cf46-2682-656c-87628bfa5652	2021-05-27 23:05:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:05:59.951+03	2021-05-27 23:05:59.961+03	
e756634d-af1c-0bf4-db64-ed4952aa12d8	2021-05-27 23:06:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:06:19.951+03	2021-05-27 23:06:19.959+03	
1e92c1e3-d2da-05dc-9e55-8e8988400d20	2021-05-27 23:06:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:06:39.951+03	2021-05-27 23:06:39.958+03	
82b9a023-c1e1-37d9-028b-81b8aaead1f8	2021-05-27 23:06:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:06:59.951+03	2021-05-27 23:06:59.959+03	
fbb7e1a1-bf60-ce28-3835-17d273bc54c2	2021-05-27 23:07:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:07:19.951+03	2021-05-27 23:07:19.958+03	
f3bc900c-ab32-15b6-ba42-4ab010286a5a	2021-05-27 23:07:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:07:39.951+03	2021-05-27 23:07:39.958+03	
b42e541a-dbeb-8c39-3555-ee66abcdd763	2021-05-27 23:07:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:07:59.951+03	2021-05-27 23:07:59.958+03	
24db91e3-19c8-faf0-4d29-2f94b8c06981	2021-05-27 23:08:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:08:19.951+03	2021-05-27 23:08:19.959+03	
6a60a6f1-d64a-72af-57bc-46c5dc89cfee	2021-05-27 23:08:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:08:39.951+03	2021-05-27 23:08:39.958+03	
e9a43aa6-1a93-5032-afe7-4063a66a5f72	2021-05-27 23:08:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:08:59.951+03	2021-05-27 23:08:59.958+03	
dd6324c1-df14-a7c3-6000-4cc1d285ffc5	2021-05-27 23:09:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:09:19.951+03	2021-05-27 23:09:19.959+03	
50aae307-8673-29a8-0bf9-5b65360a2385	2021-05-27 23:09:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:09:39.951+03	2021-05-27 23:09:39.959+03	
8678a68f-1e7f-aaaf-2548-d380de620d5b	2021-05-27 23:09:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:09:59.951+03	2021-05-27 23:09:59.959+03	
eb05a0f8-e814-9794-a114-a7647ba95fce	2021-05-27 23:10:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:10:09.951+03	2021-05-27 23:10:09.959+03	
fdd21e58-a9c1-7250-98f0-80b1ea6709ac	2021-05-27 23:10:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:10:29.951+03	2021-05-27 23:10:29.958+03	
7705afd3-e1ae-beea-3ce6-71350efdae5c	2021-05-27 23:10:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:10:49.951+03	2021-05-27 23:10:49.959+03	
4b3f76cb-6369-21f0-5c82-e9b200733dd2	2021-05-27 23:11:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:11:09.951+03	2021-05-27 23:11:09.958+03	
c6dbe330-4bdf-ef1b-eeee-897c48141dac	2021-05-27 23:11:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:11:30.951+03	2021-05-27 23:11:30.959+03	
6e6b6d4f-bb93-b9d3-8336-cb613201ecef	2021-05-27 23:11:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:11:50.951+03	2021-05-27 23:11:50.959+03	
44c812e0-9877-7c15-c604-461d761772e7	2021-05-27 23:12:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:12:10.951+03	2021-05-27 23:12:10.958+03	
4ff74343-7641-e916-c5b0-c3d8fbb6637b	2021-05-27 23:12:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:12:30.951+03	2021-05-27 23:12:30.958+03	
e7921bd5-6aa0-459e-0fef-2ee2a7267336	2021-05-27 23:12:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:12:50.952+03	2021-05-27 23:12:50.971+03	
048db0f5-65be-7074-b871-b91d4d2bbe4a	2021-05-27 23:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:13:11.951+03	2021-05-27 23:13:11.958+03	
f12abcdf-9068-d2c0-8a40-0407af5c8c15	2021-05-27 23:13:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:13:31.951+03	2021-05-27 23:13:31.959+03	
ca14c471-2c1e-183e-cd49-8e702a65fb8b	2021-05-27 23:13:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:13:51.951+03	2021-05-27 23:13:51.958+03	
8813a766-9f23-5f42-ab4d-de0dc0d1bcc6	2021-05-27 23:14:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:14:11.951+03	2021-05-27 23:14:11.958+03	
ada6ec7e-6362-1a09-538f-3d34917a2372	2021-05-27 23:14:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:14:31.951+03	2021-05-27 23:14:31.958+03	
199c4408-8218-1c72-d562-4aabf8c05499	2021-05-27 23:14:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:14:51.951+03	2021-05-27 23:14:51.958+03	
1eea5178-b576-e2f6-a3c4-04cc8633afae	2021-05-27 23:15:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:15:11.951+03	2021-05-27 23:15:11.961+03	
ea8792e8-a8ef-c2eb-3b56-b9277ceca5fb	2021-05-27 23:15:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:15:31.951+03	2021-05-27 23:15:31.958+03	
52868d3a-61c8-b91a-efe1-e8ac9d142106	2021-05-27 23:15:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:15:51.951+03	2021-05-27 23:15:51.96+03	
c7517a1d-f80c-ec36-d637-55bb0142f062	2021-05-27 23:16:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:16:11.951+03	2021-05-27 23:16:11.957+03	
2393611d-c4ff-f280-ccb7-b8d30062ea73	2021-05-27 23:16:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:16:31.951+03	2021-05-27 23:16:31.958+03	
4217737a-1a5d-bc27-13b2-82047941c8fd	2021-05-27 23:16:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:16:52.951+03	2021-05-27 23:16:52.96+03	
bbe774cf-e03b-76af-0cbb-ccfc5f655d2d	2021-05-27 23:17:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:17:12.951+03	2021-05-27 23:17:12.959+03	
25274e7e-1bd8-46a0-1f87-161a27785fa0	2021-05-27 23:17:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:17:32.951+03	2021-05-27 23:17:32.958+03	
af31a696-1100-e8ae-59ad-6814155b79e9	2021-05-27 23:17:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:17:52.951+03	2021-05-27 23:17:52.958+03	
32a58585-6001-0a89-f4de-cb486d62732d	2021-05-27 23:18:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:18:12.952+03	2021-05-27 23:18:12.959+03	
1e499a7e-5f0b-e968-5824-191a2665e396	2021-05-27 23:18:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:18:33.951+03	2021-05-27 23:18:33.958+03	
80def65b-3915-2906-738b-63d3f52b4d7c	2021-05-27 23:18:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:18:53.951+03	2021-05-27 23:18:53.958+03	
f589cca7-8d2f-b7c9-24e7-650d96a8f29f	2021-05-27 23:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:19:13.951+03	2021-05-27 23:19:13.958+03	
6d6664ff-3da9-7a8b-bb19-3fbfccb40ec4	2021-05-27 23:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:19:33.951+03	2021-05-27 23:19:33.958+03	
5223366a-cf19-099f-0b9d-35817079be4a	2021-05-27 23:19:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:19:53.951+03	2021-05-27 23:19:53.959+03	
461c7074-a72b-f1d3-96ca-10ab2b9cfbe2	2021-05-27 23:20:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:20:03.951+03	2021-05-27 23:20:03.958+03	
60d9e47c-ae9a-c53e-f2bb-14aa0973e1f0	2021-05-27 23:20:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:20:23.951+03	2021-05-27 23:20:23.96+03	
7c86aeed-44f4-01b3-271c-e017e0bbe9bc	2021-05-27 23:20:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:20:43.952+03	2021-05-27 23:20:43.96+03	
5335fb46-8b33-634a-ee9f-0aeea97df897	2021-05-27 23:21:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:21:04.951+03	2021-05-27 23:21:04.958+03	
993bd8fd-2295-ccfa-684a-8ca359601ce5	2021-05-27 23:21:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:21:24.951+03	2021-05-27 23:21:24.959+03	
e8f294a0-f227-fa10-fc8d-0ee8de657a5e	2021-05-27 23:21:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:21:44.951+03	2021-05-27 23:21:44.959+03	
6fc0023b-1b8f-bf32-a7bf-339b515396cd	2021-05-27 23:22:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:22:04.951+03	2021-05-27 23:22:04.958+03	
367543c6-930b-32ed-9a19-83428fe6d4bb	2021-05-27 23:22:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:22:24.951+03	2021-05-27 23:22:24.959+03	
9d4d7c59-2963-959b-ce36-c0d69a88bf28	2021-05-27 23:22:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:22:44.951+03	2021-05-27 23:22:44.957+03	
4047991a-35ab-70b5-e7ba-a4456cbf10a7	2021-05-27 23:23:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:23:04.951+03	2021-05-27 23:23:04.958+03	
8dda81c7-c3b5-bce1-6520-8985fe7b35cf	2021-05-27 23:23:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:23:24.951+03	2021-05-27 23:23:24.959+03	
4c18edf4-0e14-20be-1e5f-70d33b32f18c	2021-05-27 23:23:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:23:44.951+03	2021-05-27 23:23:44.958+03	
8453a14d-bb84-c662-d613-e4d0f1834ca1	2021-05-27 23:24:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:24:04.951+03	2021-05-27 23:24:04.958+03	
81eac77b-457e-3bfb-3de1-b90cff6e98c9	2021-05-27 23:24:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:24:24.951+03	2021-05-27 23:24:24.959+03	
f4b5aa9d-04ff-7a2b-3f3a-655814b2c993	2021-05-27 23:24:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:24:44.951+03	2021-05-27 23:24:44.958+03	
55e0ef1c-c084-69c4-7e6b-af16afbe3438	2021-05-27 23:25:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:25:04.951+03	2021-05-27 23:25:04.959+03	
0a32b3c1-4f4e-6a0e-23e3-52ec1145209b	2021-05-27 23:25:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:25:24.951+03	2021-05-27 23:25:24.958+03	
5882471c-9fdc-a61b-f5be-a755b3062888	2021-05-27 23:05:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:05:07.951+03	2021-05-27 23:05:07.958+03	
a538e3cc-aff6-83e8-bdfd-a967970f87a2	2021-05-27 23:05:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:05:27.953+03	2021-05-27 23:05:27.963+03	
cc6de1ae-74fb-c62c-c03a-39b1e8345ec8	2021-05-27 23:05:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:05:48.952+03	2021-05-27 23:05:48.96+03	
bd855875-53e7-70c9-a877-3bd9aef87d08	2021-05-27 23:06:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:06:09.951+03	2021-05-27 23:06:09.959+03	
b401c370-69ff-b70a-289e-2196b9354bbd	2021-05-27 23:06:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:06:29.951+03	2021-05-27 23:06:29.958+03	
e4a7a898-126a-60ea-47ac-a0b02dd6998b	2021-05-27 23:06:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:06:49.951+03	2021-05-27 23:06:49.957+03	
9045f966-8ef2-93c9-2d31-1f694163a38b	2021-05-27 23:07:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:07:09.951+03	2021-05-27 23:07:09.96+03	
bbe85f2b-9216-6f0f-3b65-85ca7cb0319a	2021-05-27 23:07:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:07:29.951+03	2021-05-27 23:07:29.959+03	
a4d9bde6-960b-ac71-dc54-ac1bf30ea195	2021-05-27 23:07:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:07:49.951+03	2021-05-27 23:07:49.958+03	
6c01c7be-b68f-dae6-665c-0d32ce6d4801	2021-05-27 23:08:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:08:09.951+03	2021-05-27 23:08:09.958+03	
50c2c050-652d-35e5-6373-605a4b0a5d23	2021-05-27 23:08:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:08:29.951+03	2021-05-27 23:08:29.96+03	
bb9b5720-f550-c1fd-f1ec-5f9530ed257a	2021-05-27 23:08:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:08:49.951+03	2021-05-27 23:08:49.958+03	
b1edac3e-489f-7119-d7a7-c5a96dc9febc	2021-05-27 23:09:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:09:09.951+03	2021-05-27 23:09:09.957+03	
2566dd26-208e-1a09-5522-08e23a285c6e	2021-05-27 23:09:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:09:29.951+03	2021-05-27 23:09:29.958+03	
ef63f2c3-3f37-8e9a-97ce-b3ef921ec531	2021-05-27 23:09:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:09:49.951+03	2021-05-27 23:09:49.96+03	
b04cadf9-75cc-1056-39b1-7c3757110e82	2021-05-27 23:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 23:10:00.951+03	2021-05-27 23:10:00.96+03	ERROR
c933bb86-6721-0d62-70a5-f12c6f1a1b16	2021-05-27 23:10:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:10:19.951+03	2021-05-27 23:10:19.959+03	
7cd16a85-5e69-d0a6-6ad0-3d13bb9f21a7	2021-05-27 23:10:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:10:39.951+03	2021-05-27 23:10:39.958+03	
cf1b5723-9b6f-46e9-c6fc-f51b9278daec	2021-05-27 23:10:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:10:59.951+03	2021-05-27 23:10:59.96+03	
0c6e4db4-f2c9-b489-ce1f-694d76390f32	2021-05-27 23:11:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:11:19.952+03	2021-05-27 23:11:19.959+03	
d431483b-5b54-4326-a0c5-69af6055af9f	2021-05-27 23:11:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:11:40.951+03	2021-05-27 23:11:40.958+03	
1186e2f2-27cd-f90c-c6ea-ef6e6bdc8fe8	2021-05-27 23:12:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:12:00.951+03	2021-05-27 23:12:00.959+03	
eccf3a22-2f8f-44f7-efa9-bdbf9d891ef9	2021-05-27 23:12:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:12:20.951+03	2021-05-27 23:12:20.958+03	
a4838205-e577-0ec3-140f-6508becef974	2021-05-27 23:12:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:12:40.951+03	2021-05-27 23:12:40.958+03	
adf985cb-e318-4945-790c-889a0bedafc5	2021-05-27 23:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:13:01.951+03	2021-05-27 23:13:01.958+03	
34a0d79e-0227-1a25-fa26-441a12927020	2021-05-27 23:13:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:13:21.951+03	2021-05-27 23:13:21.959+03	
c3e5bd52-d36c-556b-044f-333599e21f52	2021-05-27 23:13:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:13:41.951+03	2021-05-27 23:13:41.958+03	
e9ad6c38-97d5-ed74-288e-a91ac27e55a6	2021-05-27 23:14:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:14:01.951+03	2021-05-27 23:14:01.958+03	
a41f2e80-d29e-64ed-8313-45cee8ffcd69	2021-05-27 23:14:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:14:21.951+03	2021-05-27 23:14:21.958+03	
8c99c4d0-87ce-931c-6aaa-6bbceafb48dc	2021-05-27 23:14:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:14:41.951+03	2021-05-27 23:14:41.959+03	
1117337e-b3a2-7682-9b73-95e74e2d95a8	2021-05-27 23:15:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:15:01.951+03	2021-05-27 23:15:01.959+03	
3489d91a-d5f2-32ba-4793-22fbd3fe1f69	2021-05-27 23:15:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:15:21.951+03	2021-05-27 23:15:21.957+03	
cf2daf4a-61d5-7516-ca8c-5d42c207b0ea	2021-05-27 23:15:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:15:41.951+03	2021-05-27 23:15:41.959+03	
2476cfba-d33b-632e-2d88-b5736d33934b	2021-05-27 23:16:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:16:01.951+03	2021-05-27 23:16:01.96+03	
fd28c396-391d-8dd9-21ae-d69e3a6f2ae3	2021-05-27 23:16:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:16:21.951+03	2021-05-27 23:16:21.958+03	
f292f187-e690-e844-6b25-ae5dfc84e2ae	2021-05-27 23:16:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:16:41.952+03	2021-05-27 23:16:41.96+03	
eb1722a2-4372-8932-9d5c-87c8574c6a00	2021-05-27 23:17:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:17:02.951+03	2021-05-27 23:17:02.958+03	
0824e9de-7ee4-dad3-c01f-4eb665e386e6	2021-05-27 23:17:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:17:22.951+03	2021-05-27 23:17:22.958+03	
322ec201-f59d-e769-b36d-a15b9593cfe1	2021-05-27 23:17:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:17:42.951+03	2021-05-27 23:17:42.958+03	
3ba4d9e1-3031-e260-0801-fcea22036b9d	2021-05-27 23:18:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:18:02.951+03	2021-05-27 23:18:02.958+03	
e7505ed7-aa8c-43b1-e0dc-72f6913d985b	2021-05-27 23:18:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:18:23.951+03	2021-05-27 23:18:23.958+03	
1bc385b6-9e3d-55f3-9513-0419f7e4b1a5	2021-05-27 23:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:18:43.951+03	2021-05-27 23:18:43.958+03	
8c2dc7f6-bc31-a692-a6b8-629deb753a21	2021-05-27 23:19:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:19:03.951+03	2021-05-27 23:19:03.959+03	
e3a443fc-80b7-8f16-3357-e9c373f92585	2021-05-27 23:19:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:19:23.951+03	2021-05-27 23:19:23.958+03	
793d29f8-cbda-1a57-642a-db2e79b4a0d8	2021-05-27 23:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:19:43.951+03	2021-05-27 23:19:43.958+03	
d7de968e-858e-f327-ef9a-eee1df244a16	2021-05-27 23:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 23:20:00.952+03	2021-05-27 23:20:00.957+03	ERROR
fd647664-5acb-bc17-5e5b-1e5c93489d8e	2021-05-27 23:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:20:13.951+03	2021-05-27 23:20:13.959+03	
bbf9ea9c-096d-df70-2fc9-0e7fa08d938a	2021-05-27 23:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:20:33.951+03	2021-05-27 23:20:33.958+03	
971d2d42-fc39-fcd8-382b-a9a9a98d7fc8	2021-05-27 23:20:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:20:54.951+03	2021-05-27 23:20:54.958+03	
6b134b63-56d5-5d90-61c1-74fdbb7c5510	2021-05-27 23:21:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:21:14.951+03	2021-05-27 23:21:14.958+03	
3f63f0ae-e3ce-0539-5ad9-eab6b9928aad	2021-05-27 23:21:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:21:34.951+03	2021-05-27 23:21:34.957+03	
0b1123bf-81f4-e893-af0e-d19a687ab1b5	2021-05-27 23:21:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:21:54.951+03	2021-05-27 23:21:54.958+03	
720dee4c-60f5-d43c-cf68-da06a4c5a9ac	2021-05-27 23:22:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:22:14.951+03	2021-05-27 23:22:14.958+03	
96ec29c6-951a-64db-35b6-fc88ad653eef	2021-05-27 23:22:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:22:34.951+03	2021-05-27 23:22:34.959+03	
61573ccb-e950-a028-d0b0-fb83c6418fb3	2021-05-27 23:22:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:22:54.951+03	2021-05-27 23:22:54.957+03	
397ba44d-bddf-6b7f-eda7-4eece531c85a	2021-05-27 23:23:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:23:14.951+03	2021-05-27 23:23:14.958+03	
ce6d1ec3-1107-bdfe-338e-c640cf8400dc	2021-05-27 23:23:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:23:34.951+03	2021-05-27 23:23:34.959+03	
87a0c5af-f06f-5579-ba06-ff393845d75e	2021-05-27 23:23:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:23:54.951+03	2021-05-27 23:23:54.958+03	
12ca5640-9a97-1836-f23b-dffd64575bcb	2021-05-27 23:24:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:24:14.951+03	2021-05-27 23:24:14.959+03	
2b3334ba-8cd9-9a04-ad9e-1c993bf825f1	2021-05-27 23:24:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:24:34.951+03	2021-05-27 23:24:34.959+03	
1f43737e-643e-c655-8bcd-636af74133ac	2021-05-27 23:24:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:24:54.951+03	2021-05-27 23:24:54.96+03	
ad6da8cb-3dc3-7786-5b52-288de840e4da	2021-05-27 23:25:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:25:14.951+03	2021-05-27 23:25:14.959+03	
d8416ed2-03bf-62dd-9415-a66cf8850c0d	2021-05-27 23:25:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:25:34.951+03	2021-05-27 23:25:34.958+03	
7ac3d261-e813-8f58-4429-3c81cb3ddb64	2021-05-27 23:25:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:25:44.951+03	2021-05-27 23:25:44.959+03	
02910674-3925-d20e-236d-46a93cc76e26	2021-05-27 23:26:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:26:04.951+03	2021-05-27 23:26:04.959+03	
9a58d499-cef2-7254-3896-6b8f036466b0	2021-05-27 23:26:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:26:24.951+03	2021-05-27 23:26:24.958+03	
703cf7cf-b6b7-327c-3643-a8a620617756	2021-05-27 23:26:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:26:44.951+03	2021-05-27 23:26:44.959+03	
ef17f559-b14d-89ab-3eeb-82c47e17fcbc	2021-05-27 23:27:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:27:04.951+03	2021-05-27 23:27:04.958+03	
74a76c00-2e49-dca0-e9b6-78c69c4ef5c1	2021-05-27 23:27:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:27:24.951+03	2021-05-27 23:27:24.958+03	
5b7872c2-f825-45cc-930d-aeb393484535	2021-05-27 23:27:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:27:44.951+03	2021-05-27 23:27:44.961+03	
ee9019fd-8acc-d901-80e4-be855f8d5e7f	2021-05-27 23:28:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:28:04.951+03	2021-05-27 23:28:04.959+03	
7af87381-06bf-20c1-3a90-2698b29d4319	2021-05-27 23:28:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:28:24.951+03	2021-05-27 23:28:24.959+03	
2ad6ebcc-5e4c-e468-e313-7f690e2875c3	2021-05-27 23:28:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:28:44.951+03	2021-05-27 23:28:44.958+03	
202ad16d-678e-7e15-73b2-1023975c32f2	2021-05-27 23:29:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:29:04.951+03	2021-05-27 23:29:04.959+03	
fd249a0f-5c23-dba4-fad0-07193b8a9650	2021-05-27 23:29:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:29:24.951+03	2021-05-27 23:29:24.958+03	
ea9e04dd-0d8a-b6bd-2f75-7a06dcbabefd	2021-05-27 23:29:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:29:44.951+03	2021-05-27 23:29:44.958+03	
51b86f16-cf5a-4166-d94b-deac6f6d361e	2021-05-27 23:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 23:30:00.951+03	2021-05-27 23:30:00.958+03	ERROR
c5b3d9ef-7dae-6bb6-eef2-df0d9de3549f	2021-05-27 23:30:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:30:15.951+03	2021-05-27 23:30:15.961+03	
682514bc-1d35-1ec3-3d6d-2ba92a2a816e	2021-05-27 23:30:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:30:35.951+03	2021-05-27 23:30:35.961+03	
841a4051-ccbb-19ed-8ddf-49230cba6156	2021-05-27 23:30:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:30:55.951+03	2021-05-27 23:30:55.958+03	
7497aadd-021d-8676-baa7-b30475a1db1b	2021-05-27 23:31:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:31:15.951+03	2021-05-27 23:31:15.957+03	
272eb6d7-7420-0852-2f34-deafd0b4f3a4	2021-05-27 23:31:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:31:35.951+03	2021-05-27 23:31:35.957+03	
b53826cf-4c9b-d537-a83f-3a6a357fbf6d	2021-05-27 23:31:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:31:55.951+03	2021-05-27 23:31:55.959+03	
3df11b5b-a6a8-5dde-8adc-2254f293c203	2021-05-27 23:32:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:32:16.951+03	2021-05-27 23:32:16.958+03	
839f02e6-8b03-326d-3ec0-3755d268fd1e	2021-05-27 23:32:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:32:36.952+03	2021-05-27 23:32:36.958+03	
71977276-33ee-6f99-e186-644871992416	2021-05-27 23:32:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:32:57.951+03	2021-05-27 23:32:57.958+03	
83166a4e-6c17-4079-6d7e-d3430bab9f14	2021-05-27 23:33:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:33:17.952+03	2021-05-27 23:33:17.96+03	
4fb74c27-5eac-989b-ef01-9790c9521a8c	2021-05-27 23:33:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:33:38.951+03	2021-05-27 23:33:38.958+03	
62ed2610-6a98-bb80-bef9-eb2af0ce2a8e	2021-05-27 23:33:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:33:58.951+03	2021-05-27 23:33:58.958+03	
c8c17a81-81ee-447e-2e6f-c29e3846bcd9	2021-05-27 23:34:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:34:18.951+03	2021-05-27 23:34:18.959+03	
7399cb5a-d45d-7d9b-8199-7add24975b48	2021-05-27 23:34:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:34:39.951+03	2021-05-27 23:34:39.958+03	
ca857da6-89e3-23f3-0988-fbba276402ef	2021-05-27 23:34:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:34:59.951+03	2021-05-27 23:34:59.958+03	
2944ad6a-4d1f-befe-937e-84791a80a687	2021-05-27 23:35:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:35:19.951+03	2021-05-27 23:35:19.958+03	
35f8de4f-e84f-d72a-a857-4edbbca7d679	2021-05-27 23:35:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:35:39.951+03	2021-05-27 23:35:39.958+03	
df1aafd7-72d9-bf73-168d-6eddc2f8a400	2021-05-27 23:35:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:35:59.951+03	2021-05-27 23:35:59.958+03	
12342b7f-99ba-da48-79c5-6a57be972361	2021-05-27 23:36:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:36:19.951+03	2021-05-27 23:36:19.972+03	
44e311de-65a5-949f-0a9d-494d46e0ce46	2021-05-27 23:36:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:36:39.951+03	2021-05-27 23:36:39.958+03	
562a4b1c-8517-17e4-44a9-44aeb42528c0	2021-05-27 23:36:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:36:59.951+03	2021-05-27 23:36:59.958+03	
8705bcf1-d7fa-2706-08e3-5c987e7b8f3d	2021-05-27 23:37:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:37:19.951+03	2021-05-27 23:37:19.959+03	
df6340fc-fd43-f406-1bc2-fd57815a2d81	2021-05-27 23:37:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:37:39.951+03	2021-05-27 23:37:39.96+03	
5a354a78-3068-56ac-3cab-e075b0332f57	2021-05-27 23:37:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:37:59.951+03	2021-05-27 23:37:59.963+03	
3f9c9303-c601-b6cf-9a88-cf4c645e457e	2021-05-27 23:38:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:38:19.951+03	2021-05-27 23:38:19.96+03	
1cd90934-7ea4-e194-b8a4-f8122fa05fcc	2021-05-27 23:38:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:38:39.951+03	2021-05-27 23:38:39.958+03	
e3a7c024-71f4-1755-9091-66c5f157727d	2021-05-27 23:38:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:38:59.951+03	2021-05-27 23:38:59.96+03	
e889591c-9720-e620-0382-cafbef67b974	2021-05-27 23:39:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:39:19.951+03	2021-05-27 23:39:19.959+03	
bf426e46-7961-d649-5c66-813004d774dd	2021-05-27 23:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:39:39.951+03	2021-05-27 23:39:39.958+03	
461e9557-f6ad-bb7a-690a-6c81689d1b80	2021-05-27 23:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:39:59.952+03	2021-05-27 23:39:59.96+03	
2d60d077-28a5-5cc7-1684-f28ff0f2db11	2021-05-27 23:40:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:40:10.951+03	2021-05-27 23:40:10.959+03	
84fb08b3-3866-5bb9-2419-c2674ef54876	2021-05-27 23:40:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:40:30.951+03	2021-05-27 23:40:30.958+03	
b5324e95-ea22-6bfb-826d-b9d5501679d6	2021-05-27 23:40:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:40:50.951+03	2021-05-27 23:40:50.958+03	
443c8b26-e700-61b5-fe39-1e10fbf3bf54	2021-05-27 23:41:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:41:10.951+03	2021-05-27 23:41:10.958+03	
89b05885-40ff-fe61-5e16-d6937a684584	2021-05-27 23:41:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:41:30.951+03	2021-05-27 23:41:30.958+03	
f9d2f77f-e89c-18e6-5ee5-ede30cb3dfe0	2021-05-27 23:41:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:41:50.951+03	2021-05-27 23:41:50.958+03	
799ab1b5-be61-f360-66ae-ddd7c56dc03f	2021-05-27 23:42:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:42:10.951+03	2021-05-27 23:42:10.958+03	
73699e49-9a3c-6803-1ee2-4c24148f75d1	2021-05-27 23:42:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:42:30.951+03	2021-05-27 23:42:30.959+03	
4992af40-ce72-8d14-e100-c1f4f944954a	2021-05-27 23:42:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:42:50.951+03	2021-05-27 23:42:50.958+03	
b873b383-03f4-21cd-a6d1-6946241a67a1	2021-05-27 23:43:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:43:11.951+03	2021-05-27 23:43:11.958+03	
bed6ef30-f3c6-d1ce-7f37-68a9c5e27e65	2021-05-27 23:43:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:43:31.951+03	2021-05-27 23:43:31.958+03	
65a8c8f5-8d04-b433-eee1-41154b1dc820	2021-05-27 23:43:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:43:51.951+03	2021-05-27 23:43:51.96+03	
1fb63871-fb0b-8530-f962-58171ce82af5	2021-05-27 23:44:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:44:11.951+03	2021-05-27 23:44:11.959+03	
3e029c88-cc74-89ac-c479-cc77c769277c	2021-05-27 23:44:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:44:31.951+03	2021-05-27 23:44:31.961+03	
867f7628-c40f-7e73-c65c-719e76b5909d	2021-05-27 23:44:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:44:51.951+03	2021-05-27 23:44:51.96+03	
c59dab99-9f5b-9674-bdaa-ca13c3e335c8	2021-05-27 23:45:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:45:11.951+03	2021-05-27 23:45:11.958+03	
3cc3fbdc-7bb6-8bed-2567-3f4155598713	2021-05-27 23:45:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:45:21.951+03	2021-05-27 23:45:21.959+03	
f376e6e0-5435-34e7-0beb-2244f35de892	2021-05-27 23:45:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:45:41.951+03	2021-05-27 23:45:41.958+03	
c421c51c-4a82-e1a7-175a-f4748680f37f	2021-05-27 23:46:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:46:01.951+03	2021-05-27 23:46:01.958+03	
480f828d-9a4c-b942-1b7e-3c534ccd5ec2	2021-05-27 23:25:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:25:54.951+03	2021-05-27 23:25:54.958+03	
5680633d-d0b6-e67d-5440-632b8716af49	2021-05-27 23:26:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:26:14.951+03	2021-05-27 23:26:14.969+03	
d4dbd2d0-edbe-8e93-ff97-43422ab8ac0f	2021-05-27 23:26:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:26:34.951+03	2021-05-27 23:26:34.97+03	
ff91c79c-67b7-8104-5158-dcc139799a0c	2021-05-27 23:26:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:26:54.951+03	2021-05-27 23:26:55.265+03	
152c10af-ca5c-7395-e3e9-693d8b4aac02	2021-05-27 23:27:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:27:14.951+03	2021-05-27 23:27:14.958+03	
6ed7ac39-4f35-0d7f-ad74-73f12048d20f	2021-05-27 23:27:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:27:34.951+03	2021-05-27 23:27:34.958+03	
72c4621c-41cd-60ef-f581-bf6c90499a1e	2021-05-27 23:27:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:27:54.951+03	2021-05-27 23:27:54.958+03	
46fa06f6-c112-13fb-8a2a-e79cb89e952a	2021-05-27 23:28:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:28:14.951+03	2021-05-27 23:28:14.959+03	
b285c43d-7a3b-c4b7-05b2-f366b6c7fdc4	2021-05-27 23:28:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:28:34.951+03	2021-05-27 23:28:34.958+03	
b09b6164-e0d7-ddc2-e6f2-70b768f485d6	2021-05-27 23:28:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:28:54.951+03	2021-05-27 23:28:54.964+03	
8f50df15-9609-c3c5-c928-89f8996975b4	2021-05-27 23:29:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:29:14.951+03	2021-05-27 23:29:14.959+03	
af8abce9-b98e-1497-bafc-158780e398cb	2021-05-27 23:29:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:29:34.951+03	2021-05-27 23:29:34.959+03	
d6873725-7308-b28b-d92d-c993b4cc630c	2021-05-27 23:29:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:29:54.952+03	2021-05-27 23:29:54.958+03	
78d6e7b7-57a7-c0c4-76dc-a81b20b57978	2021-05-27 23:30:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:30:05.951+03	2021-05-27 23:30:05.957+03	
b6378d6f-9491-ffa9-2751-89c57fdcf6bb	2021-05-27 23:30:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:30:25.951+03	2021-05-27 23:30:25.957+03	
02bdc468-9b9d-0e22-0723-8b9fc41bc8c3	2021-05-27 23:30:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:30:45.951+03	2021-05-27 23:30:45.958+03	
156ed305-6544-04d9-9155-f2af4e73248d	2021-05-27 23:31:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:31:05.951+03	2021-05-27 23:31:05.958+03	
98152b78-145b-b192-4802-932b0fadec95	2021-05-27 23:31:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:31:25.951+03	2021-05-27 23:31:25.958+03	
b0d1c4f9-711e-73cf-66e2-f95ef3196371	2021-05-27 23:31:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:31:45.951+03	2021-05-27 23:31:45.959+03	
ac917315-e9a8-ae65-49e4-d1c8a7a82207	2021-05-27 23:32:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:32:05.952+03	2021-05-27 23:32:05.958+03	
20e7bb6b-3dd7-2dde-6371-22e088c5e788	2021-05-27 23:32:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:32:26.951+03	2021-05-27 23:32:26.958+03	
93dc7997-2283-1505-d5d7-2b0981095a3f	2021-05-27 23:32:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:32:46.952+03	2021-05-27 23:32:46.959+03	
96da5183-64e8-b136-151b-e90cc12fbc6d	2021-05-27 23:33:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:33:07.951+03	2021-05-27 23:33:07.958+03	
95648224-1838-0961-0dc8-9c7c44091959	2021-05-27 23:33:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:33:28.951+03	2021-05-27 23:33:28.958+03	
291c1c71-2a77-00c9-4185-3f3624fd3587	2021-05-27 23:33:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:33:48.951+03	2021-05-27 23:33:48.959+03	
c06f0a33-3093-d7e4-12fc-ba48daf3507f	2021-05-27 23:34:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:34:08.951+03	2021-05-27 23:34:08.958+03	
8c365aeb-530f-b0b3-db00-0bcd468b6415	2021-05-27 23:34:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:34:28.952+03	2021-05-27 23:34:28.962+03	
caffdcac-b134-749c-7b1f-f727b63d67f9	2021-05-27 23:34:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:34:49.951+03	2021-05-27 23:34:49.959+03	
dc71895d-8cc1-e003-6d89-3de554b8fd8c	2021-05-27 23:35:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:35:09.951+03	2021-05-27 23:35:09.958+03	
8844558b-9c27-434c-1142-94265f52bcf3	2021-05-27 23:35:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:35:29.951+03	2021-05-27 23:35:29.96+03	
2ddea103-a0bb-c713-41a1-6f3545b744ab	2021-05-27 23:35:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:35:49.951+03	2021-05-27 23:35:49.959+03	
408eb663-e0b2-6c93-f210-30d4e7af0629	2021-05-27 23:36:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:36:09.951+03	2021-05-27 23:36:09.958+03	
4f72fed4-de75-7ef4-6184-d958f42c59b7	2021-05-27 23:36:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:36:29.951+03	2021-05-27 23:36:29.958+03	
12dfbb34-2df9-0f48-cc34-16f544fa39ef	2021-05-27 23:36:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:36:49.951+03	2021-05-27 23:36:49.958+03	
8f4bc87c-3a42-b2ca-9434-ca2d8c42b5cd	2021-05-27 23:37:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:37:09.951+03	2021-05-27 23:37:09.957+03	
f1daf019-7a75-e3c1-25e0-9c9cfa886f15	2021-05-27 23:37:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:37:29.951+03	2021-05-27 23:37:29.958+03	
caa627c8-8094-b2ee-213a-bfd0175e1126	2021-05-27 23:37:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:37:49.951+03	2021-05-27 23:37:49.959+03	
df805f1c-8b84-2a05-c648-a9725e24cb4d	2021-05-27 23:38:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:38:09.951+03	2021-05-27 23:38:09.957+03	
c749a509-fe44-1ecf-a296-f381d465079f	2021-05-27 23:38:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:38:29.951+03	2021-05-27 23:38:29.958+03	
25154cee-a3cb-6a73-dfba-65e76465a917	2021-05-27 23:38:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:38:49.951+03	2021-05-27 23:38:50.003+03	
8fcc93bd-e53d-d660-28d3-7187022ccffc	2021-05-27 23:39:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:39:09.951+03	2021-05-27 23:39:09.957+03	
2a67b603-4ede-ff00-c78f-a1e108b20aca	2021-05-27 23:39:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:39:29.951+03	2021-05-27 23:39:29.958+03	
b5eecf37-1fd9-cde7-5820-cbe0552793b4	2021-05-27 23:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:39:49.951+03	2021-05-27 23:39:49.958+03	
3d6c715a-7efb-47b8-39ab-ad4503be2bee	2021-05-27 23:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 23:40:00.951+03	2021-05-27 23:40:00.956+03	ERROR
670dd606-acf1-6134-f89b-39941f6170de	2021-05-27 23:40:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:40:20.951+03	2021-05-27 23:40:20.958+03	
5a1143cb-82bd-5f6c-e420-4ab0c65c5376	2021-05-27 23:40:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:40:40.951+03	2021-05-27 23:40:40.958+03	
38cb0aa3-e75b-aeab-dcee-909140185236	2021-05-27 23:41:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:41:00.951+03	2021-05-27 23:41:00.958+03	
0f68fb46-4345-c446-c3fb-4646713f4119	2021-05-27 23:41:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:41:20.951+03	2021-05-27 23:41:20.959+03	
548d44a7-c63f-8951-ec34-5f64723f1696	2021-05-27 23:41:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:41:40.951+03	2021-05-27 23:41:40.958+03	
df599ccb-38de-f9b9-2f87-e9653ff3dc07	2021-05-27 23:42:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:42:00.951+03	2021-05-27 23:42:00.958+03	
498057cd-1697-22ed-47d0-541f42410adc	2021-05-27 23:42:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:42:20.951+03	2021-05-27 23:42:20.959+03	
b2934c08-873c-410c-5816-17ee8b8cb7dd	2021-05-27 23:42:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:42:40.951+03	2021-05-27 23:42:40.958+03	
3caaf197-4074-8262-3468-ad2f8508506c	2021-05-27 23:43:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:43:00.952+03	2021-05-27 23:43:00.959+03	
8fe18a09-168b-32db-d752-086ad4e8559f	2021-05-27 23:43:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:43:21.951+03	2021-05-27 23:43:21.957+03	
9ad80a2f-223a-86fb-04b9-d64f51a1daf2	2021-05-27 23:43:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:43:41.951+03	2021-05-27 23:43:41.958+03	
3a8c4be1-0674-598f-4284-d12d2ed49215	2021-05-27 23:44:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:44:01.951+03	2021-05-27 23:44:01.96+03	
6b48a4e2-25d5-f0ff-69cb-2ad90407cbee	2021-05-27 23:44:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:44:21.951+03	2021-05-27 23:44:21.958+03	
7d61d4d0-2b49-0750-386f-67993a84da91	2021-05-27 23:44:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:44:41.951+03	2021-05-27 23:44:41.958+03	
5e74a018-d361-6953-8d28-98caa0786412	2021-05-27 23:45:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:45:01.951+03	2021-05-27 23:45:01.958+03	
b1833d04-6558-137e-b56e-825568550836	2021-05-27 23:45:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:45:31.951+03	2021-05-27 23:45:31.957+03	
9c29a6fb-314a-a388-86f0-91679ce70fd0	2021-05-27 23:45:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:45:51.951+03	2021-05-27 23:45:51.958+03	
87147a03-7e82-2b1b-be2f-85b6be203361	2021-05-27 23:46:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:46:11.951+03	2021-05-27 23:46:11.958+03	
ff513bb9-77be-bd45-2b4e-4e84067cb91f	2021-05-27 23:46:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:46:31.951+03	2021-05-27 23:46:31.959+03	
c8f1ab82-dbe6-32fc-1f62-0dfa872ef90f	2021-05-27 23:46:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:46:21.951+03	2021-05-27 23:46:21.959+03	
390c403e-c15c-173d-573b-fe87ff42546b	2021-05-27 23:46:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:46:41.951+03	2021-05-27 23:46:41.958+03	
91e3730e-814e-844b-8b83-ad1f6e69e372	2021-05-27 23:47:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:47:02.953+03	2021-05-27 23:47:02.96+03	
644e9e0b-a18b-2429-7135-086fd7cdc384	2021-05-27 23:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:47:23.951+03	2021-05-27 23:47:23.958+03	
9a2dfa51-dce1-24a2-e1cd-4fa56b9a3276	2021-05-27 23:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:47:43.952+03	2021-05-27 23:47:43.959+03	
5ee59638-8cee-16af-b2e4-2f767a9fefcd	2021-05-27 23:48:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:48:04.951+03	2021-05-27 23:48:04.959+03	
d18550b4-48cd-f17e-4012-276eb1019d52	2021-05-27 23:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:48:24.951+03	2021-05-27 23:48:24.958+03	
651095e4-177f-e806-d494-4b4d7076d87d	2021-05-27 23:48:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:48:44.951+03	2021-05-27 23:48:44.958+03	
5c3a49f1-b17d-c9ee-8c91-bd4203a81494	2021-05-27 23:49:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:49:04.951+03	2021-05-27 23:49:04.958+03	
2d1403a2-141c-3e71-bb63-562d3748e71b	2021-05-27 23:49:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:49:24.951+03	2021-05-27 23:49:24.958+03	
5f61b69a-3532-1416-f1b5-1eaefc163051	2021-05-27 23:49:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:49:44.951+03	2021-05-27 23:49:44.959+03	
fb97f688-52e0-87a3-b980-37e4033b6473	2021-05-27 23:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-27 23:50:00.951+03	2021-05-27 23:50:00.957+03	ERROR
44a07f48-40d7-2575-6f1d-84df30c5130b	2021-05-27 23:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:50:14.951+03	2021-05-27 23:50:14.957+03	
5c8bed82-e411-4917-7409-7824fe02b5c1	2021-05-27 23:50:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:50:34.951+03	2021-05-27 23:50:34.958+03	
f2937857-3c34-4013-4beb-e912148f2c47	2021-05-27 23:50:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:50:54.951+03	2021-05-27 23:50:54.959+03	
41372cfa-da84-c35e-acda-f9ad0cba1417	2021-05-27 23:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:51:14.951+03	2021-05-27 23:51:14.959+03	
bcf92a6d-edae-008d-1a13-0cf556365e56	2021-05-27 23:51:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:51:34.951+03	2021-05-27 23:51:34.958+03	
77cac80b-1042-9ed5-7767-a431e6959983	2021-05-27 23:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:51:54.951+03	2021-05-27 23:51:54.958+03	
a52865ca-cef0-966e-6c78-4df2a0c58d59	2021-05-27 23:52:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:52:15.952+03	2021-05-27 23:52:15.96+03	
411b9e71-772d-8efb-458e-d368c3ab6d2a	2021-05-27 23:52:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:52:36.952+03	2021-05-27 23:52:36.959+03	
b586988b-15bf-47c0-258f-4dce3a9de98d	2021-05-27 23:52:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:52:57.951+03	2021-05-27 23:52:57.958+03	
7f16c816-d470-6e5b-79fb-6c39abf17b05	2021-05-27 23:53:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:53:17.953+03	2021-05-27 23:53:17.959+03	
a1d53aa3-2e7f-4d1d-6599-35e6f92ec409	2021-05-27 23:53:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:53:38.951+03	2021-05-27 23:53:38.958+03	
24aa39fc-4958-3f00-4c93-fed953873728	2021-05-27 23:53:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:53:58.951+03	2021-05-27 23:53:58.959+03	
42b0a79a-b69f-5886-268f-ac8dc28cff2f	2021-05-27 23:54:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:54:18.951+03	2021-05-27 23:54:18.958+03	
f16cb30a-9c7e-a0a0-9fe8-ccce07bd7267	2021-05-27 23:54:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:54:38.951+03	2021-05-27 23:54:38.959+03	
aa955f61-f4f6-80ef-aef2-fa408642f125	2021-05-27 23:54:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:54:58.952+03	2021-05-27 23:54:58.96+03	
a6510d20-2f0e-48d1-ac6a-1e2eaa0f63b7	2021-05-27 23:55:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:55:19.951+03	2021-05-27 23:55:19.958+03	
02d4d495-c0b4-3b41-05b3-5db38a172e84	2021-05-27 23:55:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:55:39.951+03	2021-05-27 23:55:39.958+03	
6e507a32-46c0-6dbd-6e76-4f739448ee26	2021-05-27 23:55:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:55:59.952+03	2021-05-27 23:55:59.96+03	
1efd5b02-dad7-5c9e-dbbd-e4274d19bb3c	2021-05-27 23:56:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:56:20.951+03	2021-05-27 23:56:20.96+03	
f42ead47-5ea2-8c06-4f9a-d14df8c06a0f	2021-05-27 23:56:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:56:40.951+03	2021-05-27 23:56:40.958+03	
5bef6c0b-68b7-e2c4-51b7-102ad740af1e	2021-05-27 23:57:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:57:01.951+03	2021-05-27 23:57:01.96+03	
a8d00410-d791-ca9d-b9e6-fdb8d133a094	2021-05-27 23:57:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:57:21.951+03	2021-05-27 23:57:21.96+03	
7018f5f0-b2b2-1c2f-94de-f9734e767c90	2021-05-27 23:57:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:57:41.951+03	2021-05-27 23:57:41.958+03	
a428f9fa-ca0a-ac49-468a-c340d3e94eec	2021-05-27 23:58:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:58:01.951+03	2021-05-27 23:58:01.958+03	
10f21458-1f40-4f42-8242-23ebdb3e9eab	2021-05-27 23:58:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:58:21.951+03	2021-05-27 23:58:21.958+03	
f259eb38-3dee-2b78-d655-e2caba28b502	2021-05-27 23:58:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:58:41.951+03	2021-05-27 23:58:41.958+03	
23e1c4c8-82ed-f5f8-28a2-fb4337b64b0e	2021-05-27 23:59:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:59:01.952+03	2021-05-27 23:59:01.959+03	
37563c42-1676-79cf-f70c-0ff566638c6c	2021-05-27 23:59:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:59:22.951+03	2021-05-27 23:59:22.959+03	
c133e50e-8a21-d4f4-8576-a9e0512c518c	2021-05-27 23:59:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:59:42.952+03	2021-05-27 23:59:42.96+03	
a363ee12-cc40-001c-d3e3-f615b753db8d	2021-05-28 00:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 00:00:00.951+03	2021-05-28 00:00:00.957+03	ERROR
e1d06867-741c-aa51-f645-816906d5d65e	2021-05-28 00:00:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:00:13.951+03	2021-05-28 00:00:13.958+03	
1ed130db-6f20-36a7-af7f-32d7dfa876b2	2021-05-28 00:00:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:00:33.951+03	2021-05-28 00:00:33.957+03	
685df179-411d-ef9d-57b9-232ef3ea1c8c	2021-05-28 00:00:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:00:53.951+03	2021-05-28 00:00:53.958+03	
f39c197b-2740-32ec-934a-79c411ef194d	2021-05-28 00:01:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:01:13.951+03	2021-05-28 00:01:13.961+03	
d1c24dd2-9c74-d3ec-1fde-73d31f6fe0b2	2021-05-28 00:01:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:01:33.951+03	2021-05-28 00:01:33.958+03	
bf4a20be-52b1-cc28-1ca8-799794a2872d	2021-05-28 00:01:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:01:53.951+03	2021-05-28 00:01:53.958+03	
ab31ba4b-e3ec-9a72-8fb3-5692e88f423c	2021-05-28 00:02:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:02:14.951+03	2021-05-28 00:02:14.959+03	
3de222c0-8c3b-579e-509e-2273ba08d7bb	2021-05-28 00:02:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:02:34.951+03	2021-05-28 00:02:34.958+03	
745f1c9d-2a46-4924-08be-cb0b2cff58d8	2021-05-28 00:02:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:02:54.951+03	2021-05-28 00:02:54.96+03	
d8803a77-4053-3d2a-f3b8-70d02ebf4ca3	2021-05-28 00:03:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:03:14.951+03	2021-05-28 00:03:14.962+03	
c4297ed0-cc98-e510-be66-3a6495e545eb	2021-05-28 00:03:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:03:34.952+03	2021-05-28 00:03:34.96+03	
ef0540e4-df46-40a4-7c2e-9327acdc4bd5	2021-05-28 00:03:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:03:55.951+03	2021-05-28 00:03:55.958+03	
ed19be30-8042-3ae0-c1f4-eb4bcd72825b	2021-05-28 00:04:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:04:15.951+03	2021-05-28 00:04:15.96+03	
393db4fb-0c8a-0f58-6c57-f35d827bb566	2021-05-28 00:04:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:04:35.951+03	2021-05-28 00:04:35.959+03	
08dd26b2-0b81-d58b-e6fe-6e6ab400cc62	2021-05-28 00:04:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:04:55.952+03	2021-05-28 00:04:55.961+03	
487af79c-1505-6e37-e6fc-ba60b3918135	2021-05-28 00:05:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:05:16.951+03	2021-05-28 00:05:16.961+03	
3b924690-e8e2-df79-a0f5-bae3e254a5a6	2021-05-28 00:05:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:05:36.951+03	2021-05-28 00:05:36.958+03	
37bf37fa-eebf-3f50-38a0-b5c44e328194	2021-05-28 00:05:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:05:56.951+03	2021-05-28 00:05:56.957+03	
69990f5b-c3ce-9793-eb32-fb9875a7f9ff	2021-05-28 00:06:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:06:16.951+03	2021-05-28 00:06:16.957+03	
9057caf7-c024-3648-bad8-270b3f50cfcf	2021-05-28 00:06:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:06:36.951+03	2021-05-28 00:06:36.959+03	
af5acb28-1a91-04c4-e9b1-4f6c6a29a675	2021-05-28 00:06:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:06:56.951+03	2021-05-28 00:06:56.958+03	
8b26c7e5-ac91-ce7e-37e9-e1fc74e69e65	2021-05-27 23:46:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:46:51.952+03	2021-05-27 23:46:51.958+03	
289e5cc2-b3e3-e00d-4127-74a09c0a3136	2021-05-27 23:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:47:13.951+03	2021-05-27 23:47:13.959+03	
a47bea1f-91bf-8513-ad83-65b6a560fcbb	2021-05-27 23:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:47:33.951+03	2021-05-27 23:47:33.959+03	
6cec9806-83fe-0a06-f466-1d47fdfc5b81	2021-05-27 23:47:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:47:54.951+03	2021-05-27 23:47:54.96+03	
6c8a4f58-be23-a132-e6ae-7eb6b376c4d8	2021-05-27 23:48:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:48:14.951+03	2021-05-27 23:48:14.957+03	
83da4325-721b-bb51-f865-a70dc0a28288	2021-05-27 23:48:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:48:34.951+03	2021-05-27 23:48:34.957+03	
53c0c345-b68a-df25-d9bf-6801643b822b	2021-05-27 23:48:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:48:54.951+03	2021-05-27 23:48:54.958+03	
ed72d6c3-e97d-1c34-ee8a-b890cf56f3fc	2021-05-27 23:49:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:49:14.951+03	2021-05-27 23:49:14.959+03	
d30dfd68-bf0c-6b08-a42f-2b6034220a02	2021-05-27 23:49:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:49:34.951+03	2021-05-27 23:49:34.958+03	
25e0a972-6bc2-8004-8be5-df847c6bb139	2021-05-27 23:49:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:49:54.951+03	2021-05-27 23:49:54.958+03	
7cf6a071-46be-3138-c62b-4571976690ee	2021-05-27 23:50:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:50:04.951+03	2021-05-27 23:50:04.958+03	
e71df777-656f-6478-697f-bf43f865bdec	2021-05-27 23:50:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:50:24.951+03	2021-05-27 23:50:24.958+03	
2f69ef1a-e81d-741c-367b-1bd518d15f95	2021-05-27 23:50:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:50:44.951+03	2021-05-27 23:50:44.959+03	
501d907c-91d3-a230-8f6b-6ca64f55d4ac	2021-05-27 23:51:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:51:04.951+03	2021-05-27 23:51:04.959+03	
db18064e-1775-741a-eaa7-f8cc22b550a8	2021-05-27 23:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:51:24.951+03	2021-05-27 23:51:24.958+03	
b15cdb97-a0e2-9c18-7337-e97f2fa3840d	2021-05-27 23:51:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:51:44.951+03	2021-05-27 23:51:44.957+03	
289e55a1-d173-8303-9e3a-ef371c8f7e03	2021-05-27 23:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:52:04.952+03	2021-05-27 23:52:04.958+03	
898783ba-2afd-d3a1-cdb9-741ed5c777d4	2021-05-27 23:52:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:52:26.951+03	2021-05-27 23:52:26.963+03	
7439ce3f-89d2-8380-c3b1-998ec50642e7	2021-05-27 23:52:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:52:47.951+03	2021-05-27 23:52:47.959+03	
54149e92-34c6-8c97-add3-92c5ef1a1ed8	2021-05-27 23:53:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:53:07.951+03	2021-05-27 23:53:07.958+03	
f9adf138-90dd-36dd-db5e-32445133a623	2021-05-27 23:53:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:53:28.951+03	2021-05-27 23:53:28.96+03	
78c7b2ff-ba41-2d93-f1e9-83139d36b94b	2021-05-27 23:53:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:53:48.951+03	2021-05-27 23:53:48.96+03	
42a35306-9106-6fe5-8b7e-31f218eaf005	2021-05-27 23:54:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:54:08.951+03	2021-05-27 23:54:08.958+03	
f30bae4d-0100-9711-bb48-488d0d9a3196	2021-05-27 23:54:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:54:28.951+03	2021-05-27 23:54:28.958+03	
ce92fa38-d517-5ee3-f990-6dde6fd49e74	2021-05-27 23:54:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:54:48.951+03	2021-05-27 23:54:48.958+03	
dfb50376-d6d3-889b-e655-6a2a0fdb4f97	2021-05-27 23:55:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:55:09.951+03	2021-05-27 23:55:09.958+03	
3af17adc-97da-f3b0-d5d2-4e92375e7c3e	2021-05-27 23:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:55:29.951+03	2021-05-27 23:55:29.958+03	
25c3bf8e-c163-c029-cee4-61e6287088bc	2021-05-27 23:55:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:55:49.951+03	2021-05-27 23:55:49.958+03	
dbad3d42-cefb-6f35-41b8-e2b9243415e8	2021-05-27 23:56:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:56:10.951+03	2021-05-27 23:56:10.958+03	
42fa526d-d172-1821-fab4-46d4416fc2b5	2021-05-27 23:56:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:56:30.951+03	2021-05-27 23:56:30.959+03	
06931dac-3a8c-7ec6-f7d6-eabd970bc4af	2021-05-27 23:56:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:56:50.952+03	2021-05-27 23:56:50.959+03	
a43823f1-beb3-df40-96ed-cb1c9f44620d	2021-05-27 23:57:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:57:11.951+03	2021-05-27 23:57:11.958+03	
274b643c-e257-d7c6-e595-b3a58db5b2dc	2021-05-27 23:57:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:57:31.951+03	2021-05-27 23:57:31.959+03	
45ee49b1-51c7-93c6-697b-2397e9b92edb	2021-05-27 23:57:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:57:51.951+03	2021-05-27 23:57:51.958+03	
e6c7ac28-f954-9df3-fab2-dd544746e0a6	2021-05-27 23:58:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:58:11.951+03	2021-05-27 23:58:11.959+03	
e22c4c85-500f-1d65-e24c-12a84327117d	2021-05-27 23:58:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:58:31.951+03	2021-05-27 23:58:31.967+03	
e6746e2b-720e-fde0-16c1-62c599184cce	2021-05-27 23:58:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:58:51.952+03	2021-05-27 23:58:51.958+03	
3b469cf4-efce-4e8e-176e-715d18576c91	2021-05-27 23:59:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:59:12.951+03	2021-05-27 23:59:12.958+03	
50d04eaf-d804-672c-3bda-9340725e8be0	2021-05-27 23:59:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:59:32.951+03	2021-05-27 23:59:32.959+03	
18ae56b0-568c-7c33-557a-54dfc8fe546f	2021-05-27 23:59:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-27 23:59:53.951+03	2021-05-27 23:59:53.959+03	
69d0eb80-5b6e-5eef-b6e9-2a11cf6e56d8	2021-05-28 00:00:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:00:03.951+03	2021-05-28 00:00:04.007+03	
7151eb14-7315-c8aa-98fb-6d8f03315fe8	2021-05-28 00:00:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:00:23.951+03	2021-05-28 00:00:23.958+03	
23e1247e-5b98-fbbf-e4d2-9db4c4c92ac7	2021-05-28 00:00:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:00:43.951+03	2021-05-28 00:00:43.958+03	
c70b7e21-1570-0bf3-99d5-23a35474f853	2021-05-28 00:01:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:01:03.951+03	2021-05-28 00:01:03.96+03	
32dd7ed9-dd48-9612-816a-cd8e3e133192	2021-05-28 00:01:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:01:23.951+03	2021-05-28 00:01:23.958+03	
c8f29207-edd5-f853-4435-d35129b4f519	2021-05-28 00:01:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:01:43.951+03	2021-05-28 00:01:43.958+03	
e1be9c16-0ae5-3a7d-4cc7-84730314f1d9	2021-05-28 00:02:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:02:03.952+03	2021-05-28 00:02:03.961+03	
b7842e06-3361-3ab2-9d65-49c506b82301	2021-05-28 00:02:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:02:24.951+03	2021-05-28 00:02:24.958+03	
941690e0-f5b7-50be-51ae-36a46728781f	2021-05-28 00:02:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:02:44.951+03	2021-05-28 00:02:44.96+03	
54b7e982-03e0-20ad-8361-eeea745abba7	2021-05-28 00:03:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:03:04.951+03	2021-05-28 00:03:04.958+03	
899798f1-a61a-06c6-c841-c914a108f6ea	2021-05-28 00:03:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:03:24.951+03	2021-05-28 00:03:24.959+03	
ff7dbfd4-3d22-763f-6db3-7f1926f6efe3	2021-05-28 00:03:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:03:45.951+03	2021-05-28 00:03:45.958+03	
4fd40772-e943-78b8-c5f9-11303c1935d1	2021-05-28 00:04:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:04:05.951+03	2021-05-28 00:04:05.962+03	
3a74dfb9-3441-41e6-1d30-048f38e1517a	2021-05-28 00:04:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:04:25.951+03	2021-05-28 00:04:25.958+03	
757a57ae-5cf5-f070-11e6-97d03526f11a	2021-05-28 00:04:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:04:45.952+03	2021-05-28 00:04:45.958+03	
a0d55327-7ab3-7ac9-7c0f-f0e38e177859	2021-05-28 00:05:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:05:06.951+03	2021-05-28 00:05:06.958+03	
75006597-7427-1b5e-9c6b-15f80f39d6f3	2021-05-28 00:05:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:05:26.951+03	2021-05-28 00:05:26.957+03	
a4c692d4-eb4e-56bc-dc08-d4292c0bea9c	2021-05-28 00:05:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:05:46.951+03	2021-05-28 00:05:46.959+03	
51cfde0e-6a70-9db9-08e3-0e305fd0e739	2021-05-28 00:06:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:06:06.951+03	2021-05-28 00:06:06.959+03	
727e7b1b-6815-35da-079a-6cb0d4e89a85	2021-05-28 00:06:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:06:26.951+03	2021-05-28 00:06:26.96+03	
a58b015d-b50e-1147-96fd-861fc55f3947	2021-05-28 00:06:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:06:46.951+03	2021-05-28 00:06:46.957+03	
7ab5e609-92c3-ee80-cb92-bfc49ff80ff1	2021-05-28 00:07:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:07:06.951+03	2021-05-28 00:07:06.959+03	
768c9d3d-3ad9-6941-9df3-1f2b9b766224	2021-05-28 00:07:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:07:26.951+03	2021-05-28 00:07:26.958+03	
2eb42009-896e-3f02-4f07-4257b6741f1a	2021-05-28 00:07:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:07:16.951+03	2021-05-28 00:07:16.96+03	
4720d950-c0c9-b7ac-f346-8d7eb6fddb65	2021-05-28 00:07:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:07:36.951+03	2021-05-28 00:07:36.958+03	
449f4d9c-372c-2158-25bb-c5bacc43d144	2021-05-28 00:07:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:07:56.951+03	2021-05-28 00:07:56.959+03	
4fdc6ac6-19f9-1f9c-c684-ad817da4e3a2	2021-05-28 00:08:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:08:16.951+03	2021-05-28 00:08:16.958+03	
0b71fd1e-e5aa-9e37-4d1a-824c8c138fbc	2021-05-28 00:08:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:08:37.953+03	2021-05-28 00:08:37.96+03	
67fabb72-cb4f-7baf-8381-27bd9dcf831c	2021-05-28 00:08:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:08:58.952+03	2021-05-28 00:08:58.96+03	
cc5dadda-b95f-4ec9-cd52-3023ee472682	2021-05-28 00:09:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:09:19.951+03	2021-05-28 00:09:19.959+03	
e7232369-dcdd-5c30-ba2c-9b916c189ccb	2021-05-28 00:09:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:09:39.951+03	2021-05-28 00:09:39.958+03	
bc259085-543f-d195-c562-ae3692e14d72	2021-05-28 00:09:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:09:59.951+03	2021-05-28 00:09:59.964+03	
e2777777-11cf-75f2-0397-2b6a5111319a	2021-05-28 00:10:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:10:09.951+03	2021-05-28 00:10:09.96+03	
41ee8b4a-cbd6-ac09-fa16-2541a356d1db	2021-05-28 00:10:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:10:29.951+03	2021-05-28 00:10:29.962+03	
d1a31c21-001d-acda-218f-c5168ec0e016	2021-05-28 00:10:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:10:49.951+03	2021-05-28 00:10:49.959+03	
c76c951f-4412-69d1-799e-391d5c8a6a0c	2021-05-28 00:11:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:11:10.951+03	2021-05-28 00:11:10.957+03	
c97a0323-f5e1-b34c-c0dc-0dfce6234a36	2021-05-28 00:11:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:11:30.952+03	2021-05-28 00:11:30.958+03	
87038817-834e-0b7c-a650-7ab3c91f5539	2021-05-28 00:11:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:11:51.951+03	2021-05-28 00:11:51.959+03	
7168913b-8791-3d16-c673-e9336c440225	2021-05-28 00:12:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:12:11.951+03	2021-05-28 00:12:11.958+03	
30db6d32-0fde-eca4-c3fe-db3957a97300	2021-05-28 00:12:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:12:32.951+03	2021-05-28 00:12:32.966+03	
b1c08eb5-cc8d-9bca-91a1-a8c46022ccef	2021-05-28 00:12:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:12:53.951+03	2021-05-28 00:12:53.958+03	
ef00b3bc-c112-34a1-b673-d0ac3a36931b	2021-05-28 00:13:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:13:13.951+03	2021-05-28 00:13:13.958+03	
bdb9a6ad-384e-f929-a1ba-71c1d5a195ac	2021-05-28 00:13:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:13:33.951+03	2021-05-28 00:13:33.958+03	
cb0f73d4-671b-6af7-0f83-cda825bb585b	2021-05-28 00:13:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:13:53.951+03	2021-05-28 00:13:53.959+03	
b19317de-5bd8-57ae-fb96-bf54ed73333a	2021-05-28 00:14:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:14:13.951+03	2021-05-28 00:14:13.959+03	
56ca38b7-67c4-ccd5-d83b-10bee7776f1b	2021-05-28 00:14:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:14:33.951+03	2021-05-28 00:14:33.958+03	
75ece522-cbc9-8afa-4d0c-266c5a647c97	2021-05-28 00:14:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:14:53.951+03	2021-05-28 00:14:53.958+03	
9922b1c7-90a6-a8a7-546f-25ee602bdfcb	2021-05-28 00:15:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:15:13.951+03	2021-05-28 00:15:13.959+03	
77e0983d-7630-0006-9cf1-ea85ab763a1a	2021-05-28 00:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:15:33.952+03	2021-05-28 00:15:33.958+03	
832b7896-f881-6b35-c26a-3385a8f00038	2021-05-28 00:15:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:15:54.951+03	2021-05-28 00:15:54.958+03	
de8d5518-c855-3345-57b5-f07afc79aba1	2021-05-28 00:16:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:16:14.951+03	2021-05-28 00:16:14.958+03	
06035cce-e10d-0cc5-6cdb-8048d4ca5eab	2021-05-28 00:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:16:35.951+03	2021-05-28 00:16:35.958+03	
3adb14f1-c34a-d38e-4f0b-836d8990495f	2021-05-28 00:16:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:16:55.951+03	2021-05-28 00:16:55.958+03	
eafe8bec-c689-73a4-97d8-3d77c86c03f2	2021-05-28 00:17:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:17:15.952+03	2021-05-28 00:17:15.96+03	
353f4142-3c2f-6da3-55ff-e6d5d92bf23b	2021-05-28 00:17:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:17:36.951+03	2021-05-28 00:17:36.958+03	
a9ad0b43-42ee-605e-460e-f29ee2e8e157	2021-05-28 00:17:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:17:56.951+03	2021-05-28 00:17:56.96+03	
97d38025-5d37-35af-05d7-9d893128568f	2021-05-28 00:18:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:18:16.951+03	2021-05-28 00:18:16.959+03	
944920c4-ae2d-eb23-a28e-96b254d0866f	2021-05-28 00:18:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:18:36.951+03	2021-05-28 00:18:36.957+03	
ac2edc9c-01fa-03a7-4a51-3af855e0408c	2021-05-28 00:18:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:18:56.951+03	2021-05-28 00:18:56.961+03	
898d3ed6-6032-a3b1-85f6-02fb9f583b0c	2021-05-28 00:19:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:19:16.951+03	2021-05-28 00:19:16.959+03	
a5bcd6e4-c9ae-e15a-f6ef-3848893b5552	2021-05-28 00:19:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:19:36.951+03	2021-05-28 00:19:36.957+03	
aa104952-5487-6adf-1284-7f2a2b41e428	2021-05-28 00:19:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:19:56.951+03	2021-05-28 00:19:56.959+03	
c7d4c91b-a365-6061-35e5-666050fffb88	2021-05-28 00:20:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:20:06.951+03	2021-05-28 00:20:06.957+03	
968962ac-6767-7e25-f579-ec938fed0fa3	2021-05-28 00:20:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:20:26.951+03	2021-05-28 00:20:26.958+03	
a14182ad-fe1f-d1af-e1e0-3ab85d51a5dc	2021-05-28 00:20:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:20:46.951+03	2021-05-28 00:20:46.958+03	
85e68cbb-e377-e694-70a2-bf67c17d2389	2021-05-28 00:21:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:21:06.951+03	2021-05-28 00:21:06.959+03	
5bfd2ecc-95ae-b3c2-fde8-41a6d4f524e0	2021-05-28 00:21:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:21:26.951+03	2021-05-28 00:21:26.961+03	
2a69903a-b22c-93da-6601-3309b948447c	2021-05-28 00:21:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:21:46.951+03	2021-05-28 00:21:46.96+03	
1984ed85-aabe-f55c-2706-d9d885fbab02	2021-05-28 00:22:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:22:06.951+03	2021-05-28 00:22:07.009+03	
78e61c3f-50fa-74b6-fb8b-1d8bc0a64a16	2021-05-28 00:22:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:22:26.951+03	2021-05-28 00:22:26.959+03	
00541f30-8d6a-34e2-03c0-cc2701f0f59d	2021-05-28 00:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:22:46.951+03	2021-05-28 00:22:46.958+03	
7f86598a-6df2-3054-2247-0443a5953be4	2021-05-28 00:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:23:06.951+03	2021-05-28 00:23:06.96+03	
8e246aeb-4534-cfd7-4313-c38ff06b010a	2021-05-28 00:23:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:23:26.951+03	2021-05-28 00:23:26.97+03	
90ed5bc4-9930-e2f2-6dbf-ab41240c8dc1	2021-05-28 00:23:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:23:46.951+03	2021-05-28 00:23:46.957+03	
6a983968-ac58-f181-cbfd-f88e96803c22	2021-05-28 00:24:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:24:06.952+03	2021-05-28 00:24:06.961+03	
1c7cd125-5eab-c91f-d09c-ea6591e8a222	2021-05-28 00:24:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:24:28.951+03	2021-05-28 00:24:28.959+03	
95f12f05-4f71-2625-0de5-2f7b5c3a6414	2021-05-28 00:24:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:24:48.951+03	2021-05-28 00:24:48.958+03	
70d08109-a16f-9f3a-212a-1ec4b7806104	2021-05-28 00:25:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:25:09.951+03	2021-05-28 00:25:09.958+03	
1c70e2ac-07ff-464d-69b3-5e68f4982b58	2021-05-28 00:25:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:25:29.951+03	2021-05-28 00:25:29.959+03	
4f47851a-289a-4e97-d096-7be4cf3adfc6	2021-05-28 00:25:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:25:49.951+03	2021-05-28 00:25:49.96+03	
a6242a8e-c9aa-31fa-b8b5-0a5015ae804e	2021-05-28 00:26:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:26:09.951+03	2021-05-28 00:26:09.958+03	
ec9facc4-9ceb-94d9-fb08-34636043432e	2021-05-28 00:26:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:26:29.951+03	2021-05-28 00:26:29.957+03	
96840814-4c28-4512-ecf8-55a6c316e084	2021-05-28 00:26:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:26:49.951+03	2021-05-28 00:26:49.958+03	
e4b3193f-c81a-94f4-fba5-02f887acae2e	2021-05-28 00:27:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:27:10.951+03	2021-05-28 00:27:10.958+03	
6a7e6c58-f8e9-f038-69c9-2d2c1a7d10f8	2021-05-28 00:27:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:27:30.951+03	2021-05-28 00:27:30.958+03	
eafb3c83-4998-51b4-a7e8-3898937b6c4b	2021-05-28 00:27:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:27:50.951+03	2021-05-28 00:27:50.96+03	
31f838a3-c256-9edf-9f14-875e919fcbeb	2021-05-28 00:07:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:07:46.951+03	2021-05-28 00:07:46.958+03	
d3395c00-be78-e927-b5c1-5d06ddcffb82	2021-05-28 00:08:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:08:06.951+03	2021-05-28 00:08:06.961+03	
aaa259dd-8311-518d-d4a6-39db61c692a0	2021-05-28 00:08:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:08:26.952+03	2021-05-28 00:08:26.963+03	
c01fc7b1-b758-7f5c-094a-3d294318fd9c	2021-05-28 00:08:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:08:48.951+03	2021-05-28 00:08:48.96+03	
d92fa1d2-1194-8cdb-4ed6-4e6d43303347	2021-05-28 00:09:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:09:09.951+03	2021-05-28 00:09:09.957+03	
0ed1d52b-8f6d-d71a-88cf-0cd0c3a7e953	2021-05-28 00:09:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:09:29.951+03	2021-05-28 00:09:29.971+03	
74c72b13-b3d8-8e0d-2268-79b146a81896	2021-05-28 00:09:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:09:49.951+03	2021-05-28 00:09:49.958+03	
a6b79783-5efb-e630-9cde-6f8602815559	2021-05-28 00:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 00:10:00.951+03	2021-05-28 00:10:00.958+03	ERROR
6ac6bc11-5ddb-0be9-df24-7f667f749455	2021-05-28 00:10:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:10:19.951+03	2021-05-28 00:10:19.966+03	
b833dd21-c76e-86b6-227c-38114dc06f5c	2021-05-28 00:10:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:10:39.951+03	2021-05-28 00:10:39.959+03	
462b4425-457d-aa76-6775-72844fccbd06	2021-05-28 00:10:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:10:59.952+03	2021-05-28 00:10:59.959+03	
4533b323-4bdb-fa13-3cba-ff1508c96ba5	2021-05-28 00:11:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:11:20.951+03	2021-05-28 00:11:20.958+03	
b8b5cdff-6396-7013-4b40-440a80dc05da	2021-05-28 00:11:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:11:41.951+03	2021-05-28 00:11:41.958+03	
f2318d30-596d-4db0-a864-c9256a317e47	2021-05-28 00:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:12:01.951+03	2021-05-28 00:12:01.959+03	
fa9fa209-a89e-abc6-a27d-01b3b0e5d37e	2021-05-28 00:12:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:12:21.952+03	2021-05-28 00:12:21.96+03	
84f70308-58a9-a0f6-eacb-257b6a258294	2021-05-28 00:12:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:12:42.952+03	2021-05-28 00:12:42.959+03	
45858d76-5c47-f093-0531-a029d8f8729f	2021-05-28 00:13:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:13:03.951+03	2021-05-28 00:13:03.959+03	
56de2441-1a86-9c42-d0a5-0b42aa336d2b	2021-05-28 00:13:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:13:23.951+03	2021-05-28 00:13:23.958+03	
4611813b-662b-332d-4b46-a9a4faf81a98	2021-05-28 00:13:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:13:43.951+03	2021-05-28 00:13:43.958+03	
32e4fa63-d005-d095-ed75-fb37c89f80e5	2021-05-28 00:14:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:14:03.951+03	2021-05-28 00:14:03.959+03	
c3f51e4a-6c2a-e1ae-213d-a0e2f7acbafe	2021-05-28 00:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:14:23.951+03	2021-05-28 00:14:23.959+03	
f117047c-0332-96d7-d6e6-47fa5ba868ab	2021-05-28 00:14:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:14:43.951+03	2021-05-28 00:14:43.958+03	
6bc718d7-46f3-a384-7e46-3b12fad9264b	2021-05-28 00:15:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:15:03.951+03	2021-05-28 00:15:03.96+03	
c56a8919-ecca-958b-cd95-605526e23260	2021-05-28 00:15:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:15:23.951+03	2021-05-28 00:15:23.958+03	
dadd09d7-13be-9fc6-9183-fcd47b6fa7c4	2021-05-28 00:15:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:15:44.951+03	2021-05-28 00:15:44.958+03	
96c0f924-5ae2-d620-dcae-0e5c7e6575bc	2021-05-28 00:16:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:16:04.951+03	2021-05-28 00:16:04.959+03	
bb36a90a-3500-1b8b-65f0-55652de82e89	2021-05-28 00:16:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:16:24.952+03	2021-05-28 00:16:24.959+03	
d1a0bdc2-adf2-2f64-60ea-22257b8c809f	2021-05-28 00:16:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:16:45.951+03	2021-05-28 00:16:45.96+03	
cacefd62-e8ee-3e2c-4bb7-01b9d4a78d7c	2021-05-28 00:17:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:17:05.951+03	2021-05-28 00:17:05.958+03	
4d4e19ea-47d1-5c2a-af78-5cd279bf7cc1	2021-05-28 00:17:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:17:26.951+03	2021-05-28 00:17:26.959+03	
466c97e7-868a-1095-a3ed-3d37779e8658	2021-05-28 00:17:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:17:46.951+03	2021-05-28 00:17:46.958+03	
dde73e97-a421-49c1-bbca-c93f8695bfca	2021-05-28 00:18:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:18:06.951+03	2021-05-28 00:18:06.958+03	
c18f67b2-27ba-c6a0-44be-2f2c3c7f9452	2021-05-28 00:18:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:18:26.951+03	2021-05-28 00:18:26.957+03	
1b3cd137-f1e8-927f-d695-fcd448933932	2021-05-28 00:18:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:18:46.951+03	2021-05-28 00:18:46.958+03	
dc1aa706-3211-2fa5-735d-16e3a77f228f	2021-05-28 00:19:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:19:06.951+03	2021-05-28 00:19:06.958+03	
3e1b1168-292e-9e14-3d94-b6d2ca9c5172	2021-05-28 00:19:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:19:26.951+03	2021-05-28 00:19:26.961+03	
d5c78180-4048-3d7e-0f34-78e42ec23ac2	2021-05-28 00:19:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:19:46.951+03	2021-05-28 00:19:46.959+03	
fa2d88e1-5b5b-d9f9-7a82-71f82a4db01b	2021-05-28 00:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 00:20:00.951+03	2021-05-28 00:20:00.957+03	ERROR
f529f5e4-d23c-127d-54ed-5adf786578e8	2021-05-28 00:20:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:20:16.951+03	2021-05-28 00:20:16.959+03	
5fbab49c-4b9b-bab2-8acb-21d74fbc7854	2021-05-28 00:20:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:20:36.951+03	2021-05-28 00:20:36.958+03	
1c049f90-ccbb-0026-970a-0708512bb016	2021-05-28 00:20:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:20:56.951+03	2021-05-28 00:20:56.958+03	
dec131eb-c6a0-421c-b49a-780bd45d3033	2021-05-28 00:21:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:21:16.951+03	2021-05-28 00:21:16.958+03	
f8d625bd-66a3-e466-6d99-9c51fc6ac1d0	2021-05-28 00:21:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:21:36.951+03	2021-05-28 00:21:36.958+03	
15d5e4b9-7249-d9fd-3013-34cef8461cb8	2021-05-28 00:21:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:21:56.951+03	2021-05-28 00:21:56.959+03	
761e670b-5a66-6f2f-1b6f-d31a95e7ddfd	2021-05-28 00:22:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:22:16.951+03	2021-05-28 00:22:16.958+03	
e8688d25-c63a-c842-03fa-1b022009a881	2021-05-28 00:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:22:36.951+03	2021-05-28 00:22:36.959+03	
48fad469-b7b6-a838-21c9-a9a61b392ed0	2021-05-28 00:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:22:56.951+03	2021-05-28 00:22:56.959+03	
b5f20849-cc1b-1f86-8303-fc7145d0bda8	2021-05-28 00:23:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:23:16.951+03	2021-05-28 00:23:16.958+03	
3bdcf0e5-26d7-52b6-8923-145421bee1eb	2021-05-28 00:23:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:23:36.951+03	2021-05-28 00:23:36.958+03	
d20be3fd-aa00-c452-fc4b-a3735ba84a81	2021-05-28 00:23:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:23:56.951+03	2021-05-28 00:23:56.959+03	
2f96d968-18d4-4753-6c7c-357b33b7a2dc	2021-05-28 00:24:17.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:24:17.953+03	2021-05-28 00:24:17.961+03	
1f22edb2-8932-06df-6c62-5fd400bfbe28	2021-05-28 00:24:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:24:38.951+03	2021-05-28 00:24:38.959+03	
1ef5e69b-72a3-219a-6f3b-507961b9fa9b	2021-05-28 00:24:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:24:58.952+03	2021-05-28 00:24:58.959+03	
cbf139d8-895c-bf1a-2f06-be960fea571a	2021-05-28 00:25:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:25:19.951+03	2021-05-28 00:25:19.958+03	
c9cafd1c-cea5-3ed0-e0d4-f44680b61107	2021-05-28 00:25:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:25:39.951+03	2021-05-28 00:25:39.958+03	
2ddc6097-37fa-65a8-d25b-25eb7848b306	2021-05-28 00:25:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:25:59.951+03	2021-05-28 00:25:59.959+03	
b6ea215f-73f3-1c1c-3ad1-60b2eb54d3e4	2021-05-28 00:26:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:26:19.951+03	2021-05-28 00:26:19.957+03	
294c7546-658c-4001-c77a-21fa4d93e1e7	2021-05-28 00:26:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:26:39.951+03	2021-05-28 00:26:39.958+03	
242f1bc1-12e4-af1a-69db-1f3b05e7acde	2021-05-28 00:26:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:26:59.952+03	2021-05-28 00:26:59.962+03	
183f2a4a-ac4c-62a2-3281-01150bd75947	2021-05-28 00:27:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:27:20.951+03	2021-05-28 00:27:20.96+03	
4f9d8994-0da8-e18f-f721-91293f697ee2	2021-05-28 00:27:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:27:40.951+03	2021-05-28 00:27:40.958+03	
06cafbee-4a36-7d64-3b8c-8a5bec1c679a	2021-05-28 00:28:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:28:00.951+03	2021-05-28 00:28:00.959+03	
31a463c0-4da5-2a81-e76f-ab554cbbcce1	2021-05-28 00:28:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:28:20.951+03	2021-05-28 00:28:20.959+03	
198c1cf8-13a7-0aab-3a69-d3bce3ed3739	2021-05-28 00:28:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:28:10.951+03	2021-05-28 00:28:10.961+03	
974f1191-3543-c5f2-cb49-4c168ab80dd1	2021-05-28 00:28:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:28:30.951+03	2021-05-28 00:28:30.958+03	
e3bf4501-ea72-de63-67c5-8f70cf6a9b1e	2021-05-28 00:28:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:28:50.951+03	2021-05-28 00:28:50.96+03	
70086807-9c1b-19dc-b6f2-79700dfb9896	2021-05-28 00:29:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:29:10.951+03	2021-05-28 00:29:10.958+03	
574ab2aa-0251-d876-c390-f8429cf28368	2021-05-28 00:29:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:29:30.951+03	2021-05-28 00:29:30.96+03	
8b925ee9-a1f6-7fdd-afda-d045219cd82b	2021-05-28 00:29:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:29:50.951+03	2021-05-28 00:29:50.958+03	
baced0b4-3fa6-dbbc-5f83-87e17b81571d	2021-05-28 00:30:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:30:10.952+03	2021-05-28 00:30:10.966+03	
060555d2-c26a-6113-ec93-4c61db66ce94	2021-05-28 00:30:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:30:31.951+03	2021-05-28 00:30:31.958+03	
48ba426c-da4e-1a1e-f2d4-75c62d635053	2021-05-28 00:30:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:30:51.951+03	2021-05-28 00:30:51.96+03	
12c75e19-21e3-ee51-a994-1346abc1493f	2021-05-28 00:31:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:31:12.951+03	2021-05-28 00:31:12.959+03	
15bf4c20-ccef-2b2f-056f-05b80f62c1ec	2021-05-28 00:31:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:31:32.951+03	2021-05-28 00:31:32.959+03	
b3e8973c-bd2d-1756-74c3-25994d47f86b	2021-05-28 00:31:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:31:52.951+03	2021-05-28 00:31:52.958+03	
8852455f-4daf-40d8-dc6c-b64eee8ca376	2021-05-28 00:32:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:32:12.951+03	2021-05-28 00:32:12.959+03	
072e759b-769d-0ea5-dbb8-570cb7fe2b93	2021-05-28 00:32:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:32:32.951+03	2021-05-28 00:32:32.958+03	
d259a0e0-26ce-dab1-19c0-8609f292a54c	2021-05-28 00:32:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:32:52.951+03	2021-05-28 00:32:52.958+03	
9399e4c1-ffd8-e9d5-6bb6-8b5aa608421e	2021-05-28 00:33:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:33:12.951+03	2021-05-28 00:33:12.962+03	
cee96de3-4876-7bd9-0f57-bb595724a227	2021-05-28 00:33:32.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:33:32.953+03	2021-05-28 00:33:32.96+03	
0f5c7271-2c9b-7532-b5ba-88adab0988d8	2021-05-28 00:33:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:33:53.951+03	2021-05-28 00:33:53.96+03	
e4fe812c-bc0c-7102-9136-f78223a3f629	2021-05-28 00:34:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:34:14.951+03	2021-05-28 00:34:14.958+03	
ae07f178-6e4b-70ca-ef1d-a416541e287e	2021-05-28 00:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:34:34.951+03	2021-05-28 00:34:34.959+03	
ff080b6a-6a29-69b7-abf3-9037a8aa3a56	2021-05-28 00:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:34:54.951+03	2021-05-28 00:34:54.958+03	
5a5fcfef-7540-ec54-b368-8921b24ca698	2021-05-28 00:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:35:14.951+03	2021-05-28 00:35:14.958+03	
b32f775e-cd7d-b0f8-f899-17788597e1fe	2021-05-28 00:35:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:35:35.951+03	2021-05-28 00:35:35.959+03	
15d05b42-8f06-d47c-243d-aa22503ab5fe	2021-05-28 00:35:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:35:55.951+03	2021-05-28 00:35:55.96+03	
0431d7a3-60e6-e547-745f-a7df0f7e8397	2021-05-28 00:36:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:36:15.951+03	2021-05-28 00:36:15.959+03	
6f7bacce-e572-2836-4a68-de2d2b7d0cba	2021-05-28 00:36:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:36:35.952+03	2021-05-28 00:36:35.959+03	
0050c980-9008-92ba-6805-cad2c49f7201	2021-05-28 00:36:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:36:56.951+03	2021-05-28 00:36:56.97+03	
57a8a1e3-ead4-a65c-5fa9-06074b3fbda0	2021-05-28 00:37:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:37:16.951+03	2021-05-28 00:37:16.958+03	
6e5434b2-4ce0-3447-5cb4-63f4e1ca2a51	2021-05-28 00:37:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:37:36.951+03	2021-05-28 00:37:36.959+03	
698e7a62-1c4f-37bf-472d-7a1472dde983	2021-05-28 00:37:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:37:56.951+03	2021-05-28 00:37:56.96+03	
ecbbdbf5-ec29-e0af-ecc6-51d0202ac7a1	2021-05-28 00:38:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:38:16.951+03	2021-05-28 00:38:16.96+03	
bed7f361-5aa6-61e1-607f-efc2310f683c	2021-05-28 00:38:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:38:36.951+03	2021-05-28 00:38:36.963+03	
05d574c9-7f06-da9b-dddc-8a8db3b365a4	2021-05-28 00:38:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:38:56.951+03	2021-05-28 00:38:56.959+03	
03339145-4c69-1e0d-dd6f-5e224c8349d8	2021-05-28 00:39:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:39:16.951+03	2021-05-28 00:39:16.959+03	
11744656-bf50-a739-2b48-805ed64303d0	2021-05-28 00:39:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:39:36.951+03	2021-05-28 00:39:36.958+03	
2d26a5d2-74d6-c090-fc19-ea3179cc6fd9	2021-05-28 00:39:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:39:56.951+03	2021-05-28 00:39:56.958+03	
003e5a1c-e7cb-4b32-fb43-b08e6fc9cb21	2021-05-28 00:40:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:40:06.951+03	2021-05-28 00:40:06.969+03	
3818cb68-3b42-3d6e-6994-56860b200ef7	2021-05-28 00:40:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:40:26.951+03	2021-05-28 00:40:26.96+03	
642088b4-6628-81b7-eb46-2a95e77038a4	2021-05-28 00:40:47.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:40:47.951+03	2021-05-28 00:40:47.958+03	
7b31bc85-85ca-64fb-4d11-43bbfb231138	2021-05-28 00:41:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:41:07.951+03	2021-05-28 00:41:07.959+03	
08619776-26b5-cb52-28b8-6df212f5b918	2021-05-28 00:41:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:41:27.951+03	2021-05-28 00:41:27.958+03	
2785f174-29d1-3dcf-7293-8622b287df1e	2021-05-28 00:41:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:41:47.951+03	2021-05-28 00:41:47.959+03	
9f5a5e11-b507-782b-d626-ec98ffbb0692	2021-05-28 00:42:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:42:08.951+03	2021-05-28 00:42:08.958+03	
a7234421-4a7b-746b-4fc0-5f5885820ee0	2021-05-28 00:42:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:42:28.951+03	2021-05-28 00:42:28.959+03	
822854e2-cf90-6436-c54e-528a843e593c	2021-05-28 00:42:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:42:48.951+03	2021-05-28 00:42:48.96+03	
a1e77ecf-9c05-5f53-4b71-dba51098f3a5	2021-05-28 00:43:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:43:08.951+03	2021-05-28 00:43:08.96+03	
18924689-e02b-184c-0f8a-b837f716d443	2021-05-28 00:43:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:43:28.951+03	2021-05-28 00:43:28.96+03	
2923bca2-0417-b020-ef4d-fb6c2a258d97	2021-05-28 00:43:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:43:48.951+03	2021-05-28 00:43:48.959+03	
1452164c-8c90-7a43-b2f8-4e7f42760d26	2021-05-28 00:44:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:44:08.951+03	2021-05-28 00:44:08.958+03	
75b67bd5-22d8-d06a-7418-f29ec9c3c677	2021-05-28 00:44:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:44:29.951+03	2021-05-28 00:44:29.96+03	
c50bee65-62f5-87f1-603e-d8c79e02f0c6	2021-05-28 00:44:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:44:49.951+03	2021-05-28 00:44:49.958+03	
dcc7a88b-3bec-3f72-2c8c-0c425293833d	2021-05-28 00:45:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:45:09.951+03	2021-05-28 00:45:09.96+03	
8ab9536e-4d1c-2012-c143-238e8469ea6f	2021-05-28 00:45:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:45:29.951+03	2021-05-28 00:45:29.959+03	
4994922b-e2ef-479b-2322-be13d30eae0b	2021-05-28 00:45:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:45:49.951+03	2021-05-28 00:45:49.958+03	
244fa5d8-ea97-9216-a4ad-810a88bde78a	2021-05-28 00:46:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:46:09.951+03	2021-05-28 00:46:09.958+03	
30c42b34-b3f5-4890-42dc-8c5b2cb97922	2021-05-28 00:46:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:46:29.951+03	2021-05-28 00:46:29.958+03	
c1e984bf-a056-6ce0-e526-70229c96fdbb	2021-05-28 00:46:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:46:49.951+03	2021-05-28 00:46:49.96+03	
50eac705-938e-348d-ac9a-8da18aabf49e	2021-05-28 00:47:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:47:09.951+03	2021-05-28 00:47:09.957+03	
a9917cd5-b11f-edb8-46a0-e8d5e5e49a75	2021-05-28 00:47:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:47:29.951+03	2021-05-28 00:47:29.959+03	
4db4b795-e534-a345-892f-865d9d986e60	2021-05-28 00:47:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:47:49.951+03	2021-05-28 00:47:49.958+03	
54f30e88-df65-6ba1-9aaa-ec1c5965d7c3	2021-05-28 00:48:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:48:09.952+03	2021-05-28 00:48:09.959+03	
61c311f8-b83a-f6df-a332-7ffd89d40f0a	2021-05-28 00:48:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:48:30.951+03	2021-05-28 00:48:30.959+03	
a97cc959-4baa-2c6e-d2c5-2c45b5487d20	2021-05-28 00:48:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:48:50.951+03	2021-05-28 00:48:50.973+03	
9ab39a58-9c0d-09dc-27da-82e0afb1270b	2021-05-28 00:28:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:28:40.951+03	2021-05-28 00:28:40.957+03	
091786dd-d8e7-e9d5-6666-41893945781b	2021-05-28 00:29:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:29:00.951+03	2021-05-28 00:29:00.96+03	
fc557f51-3136-76da-7e02-a1e1235f5ef1	2021-05-28 00:29:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:29:20.951+03	2021-05-28 00:29:20.959+03	
ea2fd22b-21f0-763a-2488-67c4627b242c	2021-05-28 00:29:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:29:40.951+03	2021-05-28 00:29:40.959+03	
f0bd273c-31d6-d80e-6f19-c1e90e1083b3	2021-05-28 00:30:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:30:00.952+03	2021-05-28 00:30:00.962+03	
883fa0d3-b9e9-632d-7bea-af72420498f4	2021-05-28 00:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 00:30:00.951+03	2021-05-28 00:30:00.989+03	ERROR
de7e96c4-8815-f591-9c88-a18095deca56	2021-05-28 00:30:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:30:21.951+03	2021-05-28 00:30:21.958+03	
d185118f-a3ea-073c-f47b-f8b5a226511e	2021-05-28 00:30:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:30:41.951+03	2021-05-28 00:30:41.96+03	
a211f715-8694-1a4b-ddf1-7a27d34b8907	2021-05-28 00:31:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:31:01.952+03	2021-05-28 00:31:01.96+03	
8dcd29b1-16a1-cd9f-e738-77341d7a2558	2021-05-28 00:31:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:31:22.951+03	2021-05-28 00:31:22.959+03	
f497e3a2-6ffa-836e-13ce-91bc61e213cb	2021-05-28 00:31:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:31:42.951+03	2021-05-28 00:31:42.96+03	
ebc8b302-b673-a64e-82a8-be6ad40aea24	2021-05-28 00:32:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:32:02.951+03	2021-05-28 00:32:02.969+03	
bb4a3f0d-e103-0ea8-5f08-2b1b92347f30	2021-05-28 00:32:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:32:22.951+03	2021-05-28 00:32:22.962+03	
45fb4ef2-24ef-0212-4df1-2797a8aee587	2021-05-28 00:32:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:32:42.951+03	2021-05-28 00:32:42.96+03	
671ff88c-80d4-36f5-78df-036b58449abd	2021-05-28 00:33:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:33:02.951+03	2021-05-28 00:33:02.96+03	
57fa0ea3-3a59-351a-e140-e3166f3eac75	2021-05-28 00:33:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:33:22.951+03	2021-05-28 00:33:22.958+03	
bec33b8c-6c09-6144-8ceb-61f25932c00c	2021-05-28 00:33:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:33:43.951+03	2021-05-28 00:33:43.958+03	
18912055-9d44-dded-b666-34ea1bf74934	2021-05-28 00:34:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:34:03.952+03	2021-05-28 00:34:03.961+03	
4f7891a5-f3ac-e3d3-744d-60b6fb61d7dc	2021-05-28 00:34:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:34:24.951+03	2021-05-28 00:34:24.962+03	
33601ac8-1de4-e360-38eb-80b411f0555f	2021-05-28 00:34:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:34:44.951+03	2021-05-28 00:34:44.959+03	
c9bc57fc-4330-2e6b-5ad4-7991aa90acf1	2021-05-28 00:35:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:35:04.951+03	2021-05-28 00:35:04.958+03	
6611d89f-cefa-2b77-d9dd-a250e0768a14	2021-05-28 00:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:35:24.952+03	2021-05-28 00:35:24.96+03	
dff46f57-91ce-8cfd-2ebe-5c2aad8e9436	2021-05-28 00:35:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:35:45.951+03	2021-05-28 00:35:45.959+03	
c5e15ea6-aa58-097e-7902-5a4d8fe38a53	2021-05-28 00:36:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:36:05.951+03	2021-05-28 00:36:05.959+03	
e1f68dfa-c2eb-a5fb-a4e8-cf6c752a8a0e	2021-05-28 00:36:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:36:25.951+03	2021-05-28 00:36:25.973+03	
fa614e0b-a9ec-ae18-832b-13bb90e82356	2021-05-28 00:36:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:36:46.951+03	2021-05-28 00:36:46.958+03	
da4fec68-4d55-6977-f9f0-477f9d80c423	2021-05-28 00:37:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:37:06.951+03	2021-05-28 00:37:06.958+03	
926eb53c-1896-d356-4231-739973100b4c	2021-05-28 00:37:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:37:26.951+03	2021-05-28 00:37:26.959+03	
cf55b6d4-1d51-581f-a50e-4a970d5131bf	2021-05-28 00:37:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:37:46.951+03	2021-05-28 00:37:46.958+03	
ec8ee03a-f049-4f0b-7dcd-00ab778f7bfd	2021-05-28 00:38:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:38:06.951+03	2021-05-28 00:38:06.959+03	
71881a0d-cecf-ff55-e672-a1dcfa4201b2	2021-05-28 00:38:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:38:26.951+03	2021-05-28 00:38:27.438+03	
d1cd7c0c-13e9-9b85-7b8a-ca66e74efead	2021-05-28 00:38:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:38:46.951+03	2021-05-28 00:38:46.958+03	
b48cc727-66a2-df24-7831-8950c02ae488	2021-05-28 00:39:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:39:06.951+03	2021-05-28 00:39:06.959+03	
dc812855-67bb-8fc2-e736-4bec675008c2	2021-05-28 00:39:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:39:26.951+03	2021-05-28 00:39:26.959+03	
f1424331-c6ae-b38b-cf12-af1311196584	2021-05-28 00:39:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:39:46.951+03	2021-05-28 00:39:46.96+03	
a456223b-6b6a-a26f-c398-679212e2f667	2021-05-28 00:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 00:40:00.951+03	2021-05-28 00:40:00.957+03	ERROR
005410f0-51e9-4939-4604-ae4f2223e57d	2021-05-28 00:40:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:40:16.951+03	2021-05-28 00:40:16.957+03	
c1f48edb-d30e-541a-d457-9c9d6e7e11ce	2021-05-28 00:40:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:40:36.952+03	2021-05-28 00:40:36.96+03	
5b6e05ab-a39d-b514-1c91-95a9d616e6ad	2021-05-28 00:40:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:40:57.951+03	2021-05-28 00:40:58.195+03	
1ed94d34-7e8b-1df6-0973-be30f5775543	2021-05-28 00:41:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:41:17.951+03	2021-05-28 00:41:17.958+03	
41cde7e3-728f-3821-7737-b78bcd583561	2021-05-28 00:41:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:41:37.951+03	2021-05-28 00:41:37.961+03	
4a959405-aab8-775e-2d4a-ce7cb24223d1	2021-05-28 00:41:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:41:57.952+03	2021-05-28 00:41:57.962+03	
25f76215-e0a2-6b2a-44d1-4093697edb64	2021-05-28 00:42:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:42:18.951+03	2021-05-28 00:42:18.958+03	
6bba4823-d625-b095-2a98-0762971bcc76	2021-05-28 00:42:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:42:38.951+03	2021-05-28 00:42:38.96+03	
039e0e43-e05d-598b-84a8-cba559cf9239	2021-05-28 00:42:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:42:58.951+03	2021-05-28 00:42:58.959+03	
4819f747-394d-f5f1-a59e-f6fb624cd177	2021-05-28 00:43:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:43:18.951+03	2021-05-28 00:43:18.959+03	
38da67af-7f88-a1a2-f8e7-c6bbce268b70	2021-05-28 00:43:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:43:38.951+03	2021-05-28 00:43:38.962+03	
0b70b24f-56d8-33cb-efad-09ffa4f1500e	2021-05-28 00:43:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:43:58.951+03	2021-05-28 00:43:58.961+03	
e3015906-6064-47c6-0662-27669261982e	2021-05-28 00:44:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:44:18.952+03	2021-05-28 00:44:18.961+03	
d5ebe876-7d74-8ecc-6a39-ab4b9bb41632	2021-05-28 00:44:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:44:39.951+03	2021-05-28 00:44:39.959+03	
df6608b9-3d56-ff5e-a770-a9ff94db33c9	2021-05-28 00:44:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:44:59.951+03	2021-05-28 00:45:00.002+03	
33ed9cd7-b05d-0fd1-2cc0-ebb38ab26dd5	2021-05-28 00:45:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:45:19.951+03	2021-05-28 00:45:19.957+03	
a22caf13-d324-1362-27ec-b9540b40b1de	2021-05-28 00:45:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:45:39.951+03	2021-05-28 00:45:39.959+03	
ddaffe9e-a5ca-36e0-3a35-b1f09b8add1b	2021-05-28 00:45:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:45:59.951+03	2021-05-28 00:45:59.96+03	
32e087c4-dfeb-62b5-4d00-fd93eebf8cdb	2021-05-28 00:46:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:46:19.951+03	2021-05-28 00:46:19.958+03	
3b136a4a-5c8d-fbd3-8f03-697f769406eb	2021-05-28 00:46:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:46:39.951+03	2021-05-28 00:46:39.96+03	
70927c13-6033-f1fe-434f-f21e273b2a0f	2021-05-28 00:46:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:46:59.951+03	2021-05-28 00:46:59.96+03	
d91596b1-7ee4-2503-e79a-d5f0f6fcb11e	2021-05-28 00:47:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:47:19.951+03	2021-05-28 00:47:19.959+03	
438df02c-7ac7-de6f-72ab-28ff56b01f9c	2021-05-28 00:47:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:47:39.951+03	2021-05-28 00:47:39.959+03	
462638fd-2b21-dfef-0b45-1604679b36ae	2021-05-28 00:47:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:47:59.952+03	2021-05-28 00:47:59.961+03	
cbea4b56-a888-e911-2e8a-e13e8c307608	2021-05-28 00:48:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:48:19.952+03	2021-05-28 00:48:19.959+03	
23a6154b-5fcd-1263-230c-3a1dc3aba965	2021-05-28 00:48:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:48:40.951+03	2021-05-28 00:48:40.959+03	
e05e250f-411c-780e-286d-663a608b22c3	2021-05-28 00:49:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:49:00.951+03	2021-05-28 00:49:00.959+03	
f500eead-3d3a-67de-68cb-256223c68768	2021-05-28 00:49:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:49:10.951+03	2021-05-28 00:49:10.959+03	
29b21c82-3591-3312-6c32-67b74e4c9379	2021-05-28 00:49:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:49:30.951+03	2021-05-28 00:49:30.959+03	
abcc2ca3-3c50-596b-e8c1-9a535b10e9ff	2021-05-28 00:49:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:49:51.951+03	2021-05-28 00:49:51.959+03	
b7b60a41-494c-f7d1-721f-90d8f013e4b5	2021-05-28 00:50:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:50:01.952+03	2021-05-28 00:50:01.961+03	
6bac76ba-48bd-b593-aa6f-a5c192479aee	2021-05-28 00:50:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:50:22.951+03	2021-05-28 00:50:22.958+03	
437f935e-3840-cc60-e369-969df9ab351b	2021-05-28 00:50:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:50:42.951+03	2021-05-28 00:50:42.958+03	
f6fe7168-3d2e-7913-4660-e94e4f5eb9a7	2021-05-28 00:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:51:03.951+03	2021-05-28 00:51:03.96+03	
567c717f-c023-7633-a757-7becec832a08	2021-05-28 00:51:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:51:23.951+03	2021-05-28 00:51:23.957+03	
aa8e0f4d-ed63-c006-9c10-b0c9a165ca2f	2021-05-28 00:51:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:51:43.952+03	2021-05-28 00:51:43.96+03	
9f6a2f9e-7476-7e35-2b36-1c36bb45582d	2021-05-28 00:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:52:04.951+03	2021-05-28 00:52:04.96+03	
338d82a5-ba70-8ab5-749c-e550102b4f51	2021-05-28 00:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:52:24.951+03	2021-05-28 00:52:24.96+03	
e359b45d-081f-9131-dbc6-86e854f8fd20	2021-05-28 00:52:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:52:44.951+03	2021-05-28 00:52:44.959+03	
45eeb9af-39b1-c2e9-b9f3-d2e185b068d5	2021-05-28 00:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:53:04.952+03	2021-05-28 00:53:04.961+03	
e4374f6c-2e45-7ead-ddcc-7f8042e469b6	2021-05-28 00:53:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:53:25.951+03	2021-05-28 00:53:25.957+03	
a1b72c2b-a187-9a74-caf3-630047ddd43f	2021-05-28 00:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:53:45.951+03	2021-05-28 00:53:45.96+03	
cc611230-8f91-3ec2-f4c2-63e17f418dfa	2021-05-28 00:54:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:54:05.952+03	2021-05-28 00:54:05.96+03	
0e26ebb6-23b5-b64c-67dd-f5e156767027	2021-05-28 00:54:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:54:26.951+03	2021-05-28 00:54:26.958+03	
ff4577a2-fd22-d15c-e1c2-cec381a9bc91	2021-05-28 00:54:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:54:47.951+03	2021-05-28 00:54:47.96+03	
24618b11-c450-89b7-dd4a-81366289aa77	2021-05-28 00:55:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:55:08.951+03	2021-05-28 00:55:08.959+03	
be3e8117-304a-0064-1fff-f59f65c12d48	2021-05-28 00:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:55:29.951+03	2021-05-28 00:55:29.959+03	
5a199029-abb0-9c65-860a-ef1221f04acd	2021-05-28 00:55:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:55:50.951+03	2021-05-28 00:55:50.962+03	
d051cd2e-c8cd-dbab-a0b8-e128c5d1820d	2021-05-28 00:56:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:56:10.951+03	2021-05-28 00:56:10.959+03	
70f707e2-2344-eb58-0459-7aecf31dcdc5	2021-05-28 00:56:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:56:30.951+03	2021-05-28 00:56:30.959+03	
4cb157eb-3a33-1408-e816-c81bb87d5b18	2021-05-28 00:56:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:56:51.951+03	2021-05-28 00:56:51.958+03	
03338a0a-8b9e-98fa-6e31-61c752984f0d	2021-05-28 00:57:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:57:11.951+03	2021-05-28 00:57:11.961+03	
beb4a202-3a45-ad20-a466-0d8c6d8a27e4	2021-05-28 00:57:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:57:31.951+03	2021-05-28 00:57:31.959+03	
8c337b02-b13b-23df-dc77-976713eaa3c6	2021-05-28 00:57:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:57:51.951+03	2021-05-28 00:57:51.967+03	
d2400bfe-c09c-61e1-9eae-4c7d06762236	2021-05-28 00:58:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:58:12.952+03	2021-05-28 00:58:12.959+03	
fd2f7038-e5c3-bffb-a180-2dee3fdc0320	2021-05-28 00:58:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:58:33.951+03	2021-05-28 00:58:33.96+03	
0ece1965-8dd2-d4da-ceb6-0a1b8712bada	2021-05-28 00:58:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:58:53.951+03	2021-05-28 00:58:53.961+03	
dfec6ece-3a16-80f9-62ed-69964bfdf440	2021-05-28 00:59:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:59:13.951+03	2021-05-28 00:59:13.958+03	
401c86be-c8e7-151a-37e5-f037a10edf36	2021-05-28 00:59:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:59:33.951+03	2021-05-28 00:59:33.958+03	
9ff9f12c-63ce-8628-d84d-433342bb892a	2021-05-28 00:59:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:59:53.952+03	2021-05-28 00:59:53.96+03	
52a4d93e-30a5-fc20-54b2-e96a53abaf81	2021-05-28 01:00:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:00:04.951+03	2021-05-28 01:00:04.957+03	
52e6b72d-37ed-076e-c976-7b953dbc3152	2021-05-28 01:00:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:00:24.951+03	2021-05-28 01:00:24.958+03	
52228542-0c9d-e15e-0121-33ccf6305a45	2021-05-28 01:00:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:00:44.951+03	2021-05-28 01:00:44.96+03	
f678f118-be81-0310-5d8d-2c38a5199566	2021-05-28 01:01:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:01:04.951+03	2021-05-28 01:01:04.958+03	
3d2ed6ac-0757-64ef-f5a1-15f386d81935	2021-05-28 01:01:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:01:24.952+03	2021-05-28 01:01:24.959+03	
c89445a1-eb16-65cb-aaa3-2ac0912edbfe	2021-05-28 01:01:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:01:45.951+03	2021-05-28 01:01:45.958+03	
e78755b5-78a5-2c04-79cf-b0e1b136fd88	2021-05-28 01:02:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:02:05.952+03	2021-05-28 01:02:05.96+03	
995a593f-1c2d-45ca-8939-ec2f9697402b	2021-05-28 01:02:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:02:26.951+03	2021-05-28 01:02:26.964+03	
0a498ed7-fac5-f5ac-2875-4ff21d28dbec	2021-05-28 01:02:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:02:46.952+03	2021-05-28 01:02:46.96+03	
e6523526-2272-01d0-15d8-bc7b6bff10a4	2021-05-28 01:03:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:03:07.952+03	2021-05-28 01:03:07.959+03	
bf36b6d8-d5ff-ccac-4e87-5b4fa7ceb0ff	2021-05-28 01:03:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:03:28.951+03	2021-05-28 01:03:28.957+03	
3068b4d3-6480-6bd2-2a07-ecdd43e7987a	2021-05-28 01:03:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:03:49.951+03	2021-05-28 01:03:49.958+03	
8c4fc7f6-a6dc-5e47-26f4-e61d21f3c607	2021-05-28 01:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:04:10.951+03	2021-05-28 01:04:10.958+03	
90c8f3d6-6058-835b-c7f3-cd07cca375f5	2021-05-28 01:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:04:30.952+03	2021-05-28 01:04:30.961+03	
5c360d0a-0e90-fb54-842f-8c5e8f43793c	2021-05-28 01:04:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:04:51.951+03	2021-05-28 01:04:51.959+03	
5fb41f08-9270-3f02-56c5-a53f1ef5e5d2	2021-05-28 01:05:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:05:23.951+03	2021-05-28 01:05:23.958+03	
8e0c5934-bb9f-3408-f181-d62d64ef0f08	2021-05-28 01:05:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:05:43.951+03	2021-05-28 01:05:43.958+03	
a8231ad8-e2bf-7ae0-3b8e-08bffb4b8f0d	2021-05-28 01:06:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:06:03.951+03	2021-05-28 01:06:03.959+03	
c04d83e6-8dcb-acbc-1a36-8edcd2817f3a	2021-05-28 01:06:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:06:24.951+03	2021-05-28 01:06:24.959+03	
31031190-f0b7-f5a0-e24d-ee199298e5f3	2021-05-28 01:06:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:06:44.951+03	2021-05-28 01:06:44.959+03	
a2f29b9e-99e8-5b12-1110-de11ed6ee2ad	2021-05-28 01:07:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:07:04.951+03	2021-05-28 01:07:04.959+03	
73b6a4ce-7b60-0160-2411-d0686a8a6d44	2021-05-28 01:07:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:07:24.951+03	2021-05-28 01:07:24.959+03	
3891982f-2e49-20c7-dfe0-f96a4ef31c24	2021-05-28 01:07:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:07:44.951+03	2021-05-28 01:07:44.959+03	
e20da310-9173-a439-ac36-ce295147c797	2021-05-28 01:08:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:08:04.952+03	2021-05-28 01:08:04.959+03	
ce13d8d4-6efa-f7eb-0def-a80b923bca33	2021-05-28 01:08:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:08:25.951+03	2021-05-28 01:08:25.958+03	
c383afed-a6c4-ea8d-4500-01334af21617	2021-05-28 01:08:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:08:45.951+03	2021-05-28 01:08:45.959+03	
d4bdc713-b547-4c38-1b1a-49573f81cd34	2021-05-28 01:09:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:09:05.951+03	2021-05-28 01:09:05.963+03	
1dd093ad-7354-736e-8792-5fb15e605c14	2021-05-28 01:09:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:09:25.951+03	2021-05-28 01:09:25.958+03	
f1112ccc-e4f1-635c-5687-c5996968226a	2021-05-28 01:09:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:09:45.951+03	2021-05-28 01:09:45.958+03	
92e558e6-693c-c780-66e2-127a153f2177	2021-05-28 01:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 01:10:00.951+03	2021-05-28 01:10:00.959+03	ERROR
b4763514-36da-0d36-04be-34b664e9bf10	2021-05-28 00:49:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:49:20.951+03	2021-05-28 00:49:20.96+03	
b9e8382a-1a95-fe39-5fff-3e91f1593cac	2021-05-28 00:49:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:49:40.952+03	2021-05-28 00:49:40.962+03	
973b0505-423a-314a-e535-d41ddc0dea79	2021-05-28 00:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 00:50:00.951+03	2021-05-28 00:50:00.959+03	ERROR
f8919a39-8a06-1de1-5f2c-7f90fe1997b7	2021-05-28 00:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:50:11.952+03	2021-05-28 00:50:11.96+03	
0116c397-37ef-4e10-c3e0-51477cc620a2	2021-05-28 00:50:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:50:32.951+03	2021-05-28 00:50:32.958+03	
86764039-7cd8-e0de-b60e-d75f102db5e2	2021-05-28 00:50:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:50:52.952+03	2021-05-28 00:50:52.962+03	
df29ad9e-3944-7353-7175-e74cbae2c858	2021-05-28 00:51:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:51:13.951+03	2021-05-28 00:51:13.959+03	
1b3559b1-6095-cf7c-75b6-729edab68a9e	2021-05-28 00:51:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:51:33.951+03	2021-05-28 00:51:33.958+03	
214b4c1f-8a5b-04a5-32ed-ece474d87fe3	2021-05-28 00:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:51:54.951+03	2021-05-28 00:51:54.96+03	
d7021405-3e0e-4c75-798d-6a8cef6a712f	2021-05-28 00:52:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:52:14.951+03	2021-05-28 00:52:14.958+03	
4d369570-39f8-485e-149c-c6f54c2089fc	2021-05-28 00:52:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:52:34.951+03	2021-05-28 00:52:34.958+03	
00e1dfe6-6894-be0f-b24d-697b640f8b30	2021-05-28 00:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:52:54.951+03	2021-05-28 00:52:54.958+03	
3e2cac6e-2cc6-f6d3-bb57-6819bc07f3ab	2021-05-28 00:53:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:53:15.951+03	2021-05-28 00:53:15.96+03	
8658029c-f17b-8151-b578-ebc2e6515ff1	2021-05-28 00:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:53:35.951+03	2021-05-28 00:53:35.958+03	
10703b15-3caf-6294-6c66-579455d137d6	2021-05-28 00:53:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:53:55.951+03	2021-05-28 00:53:55.96+03	
cbde91d4-b1cd-41b3-948f-f088f36cbbc5	2021-05-28 00:54:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:54:16.951+03	2021-05-28 00:54:16.959+03	
306edd75-11ec-2160-5cc8-d5497b224f2e	2021-05-28 00:54:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:54:36.952+03	2021-05-28 00:54:36.963+03	
43ed7816-0fed-1613-923a-1d768ed077e6	2021-05-28 00:54:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:54:57.952+03	2021-05-28 00:54:57.963+03	
3c2fa992-2bcc-0790-6725-2a299d7b82dd	2021-05-28 00:55:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:55:18.952+03	2021-05-28 00:55:18.959+03	
4d3af034-d7c1-d583-3067-284c1e5dc4df	2021-05-28 00:55:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:55:39.952+03	2021-05-28 00:55:39.959+03	
fb7ca875-0ac5-6c81-d637-de440ec0e20b	2021-05-28 00:56:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:56:00.951+03	2021-05-28 00:56:00.96+03	
ba8c15c4-2830-5084-d0ce-d3e85cbe0d33	2021-05-28 00:56:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:56:20.951+03	2021-05-28 00:56:20.958+03	
63e9fb68-5de9-7a5e-ad41-3dd24ab8277b	2021-05-28 00:56:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:56:40.952+03	2021-05-28 00:56:40.959+03	
293996a9-f7d7-4f66-cda3-5b47d0e1e5f1	2021-05-28 00:57:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:57:01.951+03	2021-05-28 00:57:01.96+03	
d7894571-a484-650c-ec57-bec6e85fe946	2021-05-28 00:57:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:57:21.951+03	2021-05-28 00:57:21.958+03	
a611bb4c-8aaa-e58e-8695-d9f9c4e41ea2	2021-05-28 00:57:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:57:41.951+03	2021-05-28 00:57:42.21+03	
a4a908e8-8ab8-bd5e-5dca-c6402ad59f9d	2021-05-28 00:58:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:58:01.952+03	2021-05-28 00:58:01.961+03	
21f5d353-f8c7-1b12-fb78-f5519dcfac90	2021-05-28 00:58:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:58:23.951+03	2021-05-28 00:58:23.959+03	
f83e9189-2032-9c64-e63c-1e6d2fdc17dc	2021-05-28 00:58:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:58:43.951+03	2021-05-28 00:58:43.959+03	
3b2b8f74-073c-6842-ab72-88920f6246e3	2021-05-28 00:59:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:59:03.951+03	2021-05-28 00:59:03.959+03	
6d3124d3-1c8c-b6e0-b4b5-24fa51297e3d	2021-05-28 00:59:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:59:23.951+03	2021-05-28 00:59:23.959+03	
badcf76e-742f-dd9d-49f1-3bf02b237d41	2021-05-28 00:59:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 00:59:43.951+03	2021-05-28 00:59:43.959+03	
08d153ef-7834-8bd5-e22f-016a3d1ceddc	2021-05-28 01:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 01:00:00.951+03	2021-05-28 01:00:00.957+03	ERROR
4d2700e6-2f67-3c48-e8b8-83f2ea54469f	2021-05-28 01:00:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:00:14.951+03	2021-05-28 01:00:14.957+03	
e4ab1008-5fb0-8d9a-d381-a216ac58a61b	2021-05-28 01:00:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:00:34.951+03	2021-05-28 01:00:34.96+03	
b178e734-3a82-7f29-7801-11ab568cd038	2021-05-28 01:00:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:00:54.951+03	2021-05-28 01:00:54.957+03	
9b8b3e0e-92ce-ec9f-295a-249e9b91a66b	2021-05-28 01:01:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:01:14.951+03	2021-05-28 01:01:14.958+03	
c337b1cd-d269-bc8c-c3d6-46ce710bc870	2021-05-28 01:01:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:01:35.951+03	2021-05-28 01:01:35.964+03	
e652e1a2-ee84-eeae-1969-ec87887f7464	2021-05-28 01:01:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:01:55.951+03	2021-05-28 01:01:55.958+03	
366f1d09-185b-fb71-b310-44dcd3a37f61	2021-05-28 01:02:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:02:16.951+03	2021-05-28 01:02:16.959+03	
c48ccfcd-314a-5404-8926-364307fc1237	2021-05-28 01:02:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:02:36.952+03	2021-05-28 01:02:36.959+03	
e60d5e36-bebf-5348-c296-e98a44ae3b98	2021-05-28 01:02:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:02:56.952+03	2021-05-28 01:02:56.963+03	
33fbe669-ac4b-a571-6eb7-db238219599b	2021-05-28 01:03:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:03:17.952+03	2021-05-28 01:03:17.959+03	
b682306d-18e4-6197-1db7-30e055a27741	2021-05-28 01:03:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:03:38.952+03	2021-05-28 01:03:38.958+03	
a57a6ef3-fd14-ce64-1795-d9f2bd0cb0f6	2021-05-28 01:03:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:03:59.952+03	2021-05-28 01:03:59.959+03	
b54f0ca2-f1ce-e08e-547f-7ae19d407cec	2021-05-28 01:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:04:20.951+03	2021-05-28 01:04:20.959+03	
a37a4557-7705-78a3-955b-097d8ce292f8	2021-05-28 01:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:04:41.951+03	2021-05-28 01:04:41.96+03	
5f567b05-1459-46c8-b830-2e46ce237a60	2021-05-28 01:05:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:05:01.952+03	2021-05-28 01:05:01.96+03	
e8de1351-f29a-1942-f83c-46e3b6e95ff1	2021-05-28 01:05:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:05:12.952+03	2021-05-28 01:05:12.972+03	
1ad5bfbc-9f59-4807-0c54-d47f7a1a122a	2021-05-28 01:05:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:05:33.951+03	2021-05-28 01:05:33.96+03	
4a4267e9-0dbc-2d40-563a-33b78742d401	2021-05-28 01:05:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:05:53.951+03	2021-05-28 01:05:53.959+03	
51402aca-f444-b4fb-d552-859ec6e35a37	2021-05-28 01:06:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:06:13.952+03	2021-05-28 01:06:13.96+03	
dfc919c6-d548-07c3-334c-77075b06ee53	2021-05-28 01:06:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:06:34.951+03	2021-05-28 01:06:34.969+03	
d79266ce-439c-6c2b-650f-308ec551b47e	2021-05-28 01:06:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:06:54.951+03	2021-05-28 01:06:54.962+03	
5adbd5b3-7858-a33d-80f8-79b9fb0537fb	2021-05-28 01:07:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:07:14.951+03	2021-05-28 01:07:14.959+03	
27b7602e-42c9-29e5-c679-a51752f7ab40	2021-05-28 01:07:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:07:34.951+03	2021-05-28 01:07:34.958+03	
cf35ba24-ab94-2de6-d4df-eb2358876c87	2021-05-28 01:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:07:54.952+03	2021-05-28 01:07:54.961+03	
4fa5806a-3228-5dda-9767-d132a6a4c918	2021-05-28 01:08:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:08:14.952+03	2021-05-28 01:08:14.959+03	
fde88aaf-81cc-6582-6c27-35f3a1ed1587	2021-05-28 01:08:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:08:35.951+03	2021-05-28 01:08:35.959+03	
259ac5a2-a41b-97bb-54b8-582c8003ea3e	2021-05-28 01:08:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:08:55.951+03	2021-05-28 01:08:55.958+03	
20170cec-bb94-98c8-cd02-e1dd708c35ba	2021-05-28 01:09:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:09:15.951+03	2021-05-28 01:09:15.957+03	
80667931-37cb-f50e-bdd3-79e3d6c7430d	2021-05-28 01:09:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:09:35.951+03	2021-05-28 01:09:35.958+03	
048efe9a-81a6-2df7-8d72-d11d6b87b49b	2021-05-28 01:09:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:09:55.951+03	2021-05-28 01:09:55.958+03	
0788464b-1131-2463-2c20-928b6d17bc73	2021-05-28 01:10:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:10:05.951+03	2021-05-28 01:10:05.959+03	
bc1616a3-fa86-3674-9fd8-d62a6dc97769	2021-05-28 01:10:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:10:25.951+03	2021-05-28 01:10:25.958+03	
7a906768-53e6-6a7a-5c73-a5c73ee50370	2021-05-28 01:10:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:10:45.951+03	2021-05-28 01:10:45.958+03	
09acf1b6-2adb-b35b-8702-27378a93d488	2021-05-28 01:11:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:11:05.951+03	2021-05-28 01:11:05.957+03	
7597906e-aed3-61ed-1a47-51701f4b0084	2021-05-28 01:11:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:11:25.951+03	2021-05-28 01:11:25.958+03	
61c03f0a-4247-6cde-8f07-dd72752ad2c5	2021-05-28 01:11:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:11:45.951+03	2021-05-28 01:11:45.957+03	
b46cd843-2d28-775e-ab87-175a5b89d14f	2021-05-28 01:12:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:12:05.952+03	2021-05-28 01:12:05.961+03	
eec49583-db78-60bf-5b98-a2cf634d8d94	2021-05-28 01:12:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:12:26.952+03	2021-05-28 01:12:26.961+03	
dab1af7f-639e-6920-c3cc-eb01c3d5c3f9	2021-05-28 01:12:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:12:47.952+03	2021-05-28 01:12:47.958+03	
ae8848f1-28c3-977a-4cca-ede18357d4c6	2021-05-28 01:13:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:13:08.951+03	2021-05-28 01:13:08.957+03	
defc17e3-d4ba-6ed5-d90e-b425fe55571a	2021-05-28 01:13:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:13:28.951+03	2021-05-28 01:13:28.959+03	
5021d8dd-0e69-b18e-ee51-9398fd6cfc89	2021-05-28 01:13:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:13:48.951+03	2021-05-28 01:13:48.958+03	
bccdf388-8de5-37fa-2928-601dab8fec63	2021-05-28 01:14:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:14:09.951+03	2021-05-28 01:14:09.957+03	
a6483f1a-2c5d-99fd-2c57-52f8dd3f5e56	2021-05-28 01:14:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:14:29.951+03	2021-05-28 01:14:29.957+03	
a5ac44b3-9e56-16d7-58ed-f9abf226cf2d	2021-05-28 01:14:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:14:49.951+03	2021-05-28 01:14:49.957+03	
b5017022-821f-a032-0fe1-d48e25f0a0c7	2021-05-28 01:15:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:15:09.951+03	2021-05-28 01:15:09.957+03	
9d63ddf9-b8e2-5619-2dd8-848c1435304c	2021-05-28 01:15:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:15:29.951+03	2021-05-28 01:15:29.958+03	
fc42016c-d749-b76f-7c45-2ea5b73d5646	2021-05-28 01:15:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:15:49.951+03	2021-05-28 01:15:49.958+03	
bcab1649-1faf-9faf-be9a-e91ae90be7c7	2021-05-28 01:16:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:16:09.951+03	2021-05-28 01:16:09.958+03	
779e9ebd-e4dc-d62a-01be-0fd7cbb871ce	2021-05-28 01:16:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:16:29.951+03	2021-05-28 01:16:29.957+03	
8ee5ab1e-fde1-6bb1-6ea2-76bc6438b6db	2021-05-28 01:16:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:16:49.951+03	2021-05-28 01:16:49.958+03	
5040d96b-8574-befb-046f-9513e873ddf9	2021-05-28 01:17:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:17:09.951+03	2021-05-28 01:17:09.96+03	
670370e7-ae27-3198-bd49-6b1bd90535bb	2021-05-28 01:17:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:17:29.951+03	2021-05-28 01:17:29.961+03	
394bbf46-336c-ec39-93ec-cd639706667d	2021-05-28 01:17:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:17:49.951+03	2021-05-28 01:17:49.958+03	
c64c773e-e1a5-767a-b694-9152cc06ead2	2021-05-28 01:18:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:18:09.951+03	2021-05-28 01:18:09.96+03	
3cdaeba9-4911-98f4-776b-662583bcfebd	2021-05-28 01:18:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:18:29.951+03	2021-05-28 01:18:29.957+03	
75293829-7415-543e-3a34-bef21c1beaf4	2021-05-28 01:18:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:18:49.951+03	2021-05-28 01:18:49.959+03	
7b482428-0bd8-9069-d2e8-3ca5e8a9944f	2021-05-28 01:19:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:19:09.952+03	2021-05-28 01:19:09.961+03	
987b7d4a-6f25-82eb-0d49-a0bf7cb28d0b	2021-05-28 01:19:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:19:30.952+03	2021-05-28 01:19:30.959+03	
d5261487-5db7-622d-7e39-c478c644e220	2021-05-28 01:19:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:19:51.951+03	2021-05-28 01:19:51.959+03	
2fcedb70-f7ae-a35f-1694-c36b1d12ba93	2021-05-28 01:20:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:20:01.951+03	2021-05-28 01:20:01.966+03	
1d9caabd-597e-93c5-c8d2-384ed02b1bbe	2021-05-28 01:20:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:20:21.951+03	2021-05-28 01:20:21.958+03	
ab657761-f0ff-4a77-ad5c-0e788d279ff6	2021-05-28 01:20:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:20:41.951+03	2021-05-28 01:20:41.957+03	
7e6e852f-76e4-3c6a-e545-135228236c36	2021-05-28 01:21:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:21:01.952+03	2021-05-28 01:21:01.959+03	
ed91cfd4-de2e-eb2d-3877-49bd1808c0db	2021-05-28 01:21:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:21:22.952+03	2021-05-28 01:21:22.959+03	
5c781df7-1851-65d0-c4be-cee5e9995ee4	2021-05-28 01:21:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:21:43.951+03	2021-05-28 01:21:43.959+03	
a54a487a-4d40-a8eb-1077-01a51059e9d9	2021-05-28 01:22:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:22:03.952+03	2021-05-28 01:22:03.961+03	
934ac350-2c22-3cd8-2cbd-4b7aa79d1f20	2021-05-28 01:22:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:22:24.951+03	2021-05-28 01:22:24.959+03	
2cbd9211-6d5f-6603-a5f3-dbf1a60bdc69	2021-05-28 01:22:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:22:44.951+03	2021-05-28 01:22:44.959+03	
9d5cebde-da22-5fd9-c828-f45ce8a8d399	2021-05-28 01:23:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:23:04.951+03	2021-05-28 01:23:04.96+03	
36832652-0348-b4a6-f1eb-c65ca1d45908	2021-05-28 01:23:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:23:24.951+03	2021-05-28 01:23:24.958+03	
b74717ab-9571-8821-0db3-326550bc0168	2021-05-28 01:23:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:23:44.951+03	2021-05-28 01:23:44.959+03	
f3da3083-4f83-b573-994d-4323c885f0be	2021-05-28 01:24:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:24:04.952+03	2021-05-28 01:24:04.961+03	
b5f7106b-9f41-62c0-11dd-62dcb5719d33	2021-05-28 01:24:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:24:25.951+03	2021-05-28 01:24:25.958+03	
3f8a7aa2-f919-7c34-d3ff-a84f19cd6074	2021-05-28 01:24:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:24:45.951+03	2021-05-28 01:24:45.959+03	
cf646f1e-5fb6-b370-0a93-df0ad7013ef6	2021-05-28 01:25:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:25:05.951+03	2021-05-28 01:25:05.958+03	
ee636c60-7d97-cb81-f6de-8d1bba2d05b7	2021-05-28 01:25:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:25:25.951+03	2021-05-28 01:25:25.959+03	
d9a593af-4530-c202-fa1a-bc5e3eae60b5	2021-05-28 01:25:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:25:45.951+03	2021-05-28 01:25:45.959+03	
1e4c68be-64a2-903a-9de8-06a40784f082	2021-05-28 01:26:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:26:05.951+03	2021-05-28 01:26:05.96+03	
dd20954c-e873-f316-abf0-002a0408e8f1	2021-05-28 01:26:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:26:25.951+03	2021-05-28 01:26:25.96+03	
cc5c4530-4290-cc81-9577-447017f7be92	2021-05-28 01:26:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:26:45.951+03	2021-05-28 01:26:45.959+03	
26747ddf-20bc-5cb7-7c0f-ecb554de12a0	2021-05-28 01:27:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:27:05.951+03	2021-05-28 01:27:05.959+03	
6e1f9198-880f-3847-e41d-fba879f290b1	2021-05-28 01:27:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:27:25.952+03	2021-05-28 01:27:25.959+03	
eb17b36f-4e46-032a-249e-3c6c07f8f6eb	2021-05-28 01:27:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:27:45.952+03	2021-05-28 01:27:45.96+03	
e07d1f1d-44be-0264-d23a-e38ba82db370	2021-05-28 01:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:28:06.951+03	2021-05-28 01:28:06.96+03	
185c0648-4a23-0cd7-d3cf-63ad09df718f	2021-05-28 01:28:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:28:26.951+03	2021-05-28 01:28:26.969+03	
4aa3202e-9f44-7a12-4372-7bb2f7e7f577	2021-05-28 01:28:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:28:46.951+03	2021-05-28 01:28:46.957+03	
bea3f40f-5446-137b-e6a6-e489ff32b090	2021-05-28 01:29:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:29:06.951+03	2021-05-28 01:29:06.96+03	
01694e84-b876-49b6-495a-1879d7b89dc3	2021-05-28 01:29:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:29:26.951+03	2021-05-28 01:29:26.97+03	
f08d14b1-6a2e-c5b6-4bf7-73c2f61aa6f0	2021-05-28 01:29:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:29:46.951+03	2021-05-28 01:29:46.959+03	
646a5efc-d7ee-f8fb-cd16-4d3721153420	2021-05-28 01:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 01:30:00.952+03	2021-05-28 01:30:00.959+03	ERROR
6cc8e891-9a2a-0c5d-0f4e-e24268844d38	2021-05-28 01:30:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:30:16.951+03	2021-05-28 01:30:16.958+03	
698e3418-ceac-7457-c93e-7ef09306320d	2021-05-28 01:30:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:30:37.952+03	2021-05-28 01:30:37.959+03	
961d42d3-882c-90fa-a952-2c71d120ae2b	2021-05-28 01:10:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:10:15.951+03	2021-05-28 01:10:15.957+03	
a00ada6c-65ff-608a-6847-b9e5911750b1	2021-05-28 01:10:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:10:35.951+03	2021-05-28 01:10:35.958+03	
66c3c7fd-910f-0019-5094-214642b9f04d	2021-05-28 01:10:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:10:55.951+03	2021-05-28 01:10:55.958+03	
7ca6121e-507b-164d-357b-18fd3ec0d0a3	2021-05-28 01:11:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:11:15.951+03	2021-05-28 01:11:15.958+03	
841e26bf-83ba-0746-630f-c6c8fcfc31ba	2021-05-28 01:11:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:11:35.951+03	2021-05-28 01:11:35.957+03	
0e4915ab-076e-93cb-6812-f3d0aba92b6e	2021-05-28 01:11:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:11:55.951+03	2021-05-28 01:11:55.958+03	
d777e4bb-3bf5-b235-db9c-8b08a06385f7	2021-05-28 01:12:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:12:16.951+03	2021-05-28 01:12:16.96+03	
55ce0f5d-bacf-9d23-14cf-6fe6a3163d7f	2021-05-28 01:12:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:12:37.952+03	2021-05-28 01:12:37.958+03	
8b8f20e8-e711-5ed4-b824-62199a8b7fce	2021-05-28 01:12:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:12:57.953+03	2021-05-28 01:12:57.96+03	
a4982833-e4ec-83db-9e44-39098f422bfb	2021-05-28 01:13:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:13:18.951+03	2021-05-28 01:13:18.958+03	
9ff75c94-ea4e-7bc1-fd00-7b063df7e009	2021-05-28 01:13:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:13:38.951+03	2021-05-28 01:13:38.957+03	
e0c6570d-ceae-9cea-b154-dc69d30b5330	2021-05-28 01:13:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:13:58.952+03	2021-05-28 01:13:58.959+03	
e47d68d5-9099-d6be-29f5-6f70f0065abc	2021-05-28 01:14:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:14:19.951+03	2021-05-28 01:14:19.957+03	
3a021524-8492-80ab-a4d1-675c58c5e214	2021-05-28 01:14:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:14:39.951+03	2021-05-28 01:14:39.958+03	
91a1992a-385e-5d2f-c522-b9a381c69a2e	2021-05-28 01:14:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:14:59.951+03	2021-05-28 01:14:59.967+03	
6d0a1dc6-008c-55e2-8cac-e5d2c7ad1b53	2021-05-28 01:15:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:15:19.951+03	2021-05-28 01:15:19.957+03	
ba5ee9ba-9b33-73a7-c3d3-811a59694dc2	2021-05-28 01:15:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:15:39.951+03	2021-05-28 01:15:39.958+03	
e2eae085-5bab-f270-59a0-4eadf42cfcd2	2021-05-28 01:15:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:15:59.951+03	2021-05-28 01:15:59.958+03	
13b87fe9-8f6c-1c9a-ce62-677430123d49	2021-05-28 01:16:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:16:19.951+03	2021-05-28 01:16:19.96+03	
2b88f0d4-abb8-3260-1bc9-f72cc15abf18	2021-05-28 01:16:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:16:39.951+03	2021-05-28 01:16:39.958+03	
22dd1396-ab0d-e459-6518-c0a5a18a69c5	2021-05-28 01:16:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:16:59.951+03	2021-05-28 01:16:59.96+03	
c4126c68-ee4f-e36e-2ab9-29fbf0e81596	2021-05-28 01:17:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:17:19.951+03	2021-05-28 01:17:19.959+03	
1ca29a26-4eac-5bfd-9c23-7388cb5bb1c3	2021-05-28 01:17:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:17:39.951+03	2021-05-28 01:17:39.957+03	
aad1ee6a-9b10-2ef1-6b9b-799d121410dd	2021-05-28 01:17:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:17:59.951+03	2021-05-28 01:17:59.96+03	
2aaf4fc8-3f4e-18f9-425c-cb55310c3539	2021-05-28 01:18:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:18:19.951+03	2021-05-28 01:18:19.959+03	
bb956e52-6740-3eb7-8714-61cec8bda7a3	2021-05-28 01:18:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:18:39.951+03	2021-05-28 01:18:39.959+03	
1f3bc10f-9adb-6f87-42af-8256cb80d003	2021-05-28 01:18:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:18:59.951+03	2021-05-28 01:18:59.959+03	
b0b52e68-eb5e-0915-3df9-efecd458af93	2021-05-28 01:19:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:19:20.952+03	2021-05-28 01:19:20.959+03	
29ba424c-00d8-3b5b-4f9c-7ba162e2ad3b	2021-05-28 01:19:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:19:41.951+03	2021-05-28 01:19:41.958+03	
6d188b92-3e07-d922-fc33-c32c92f6adaf	2021-05-28 01:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 01:20:00.951+03	2021-05-28 01:20:00.957+03	ERROR
516bb086-b0e6-2e74-c738-d1af3427c310	2021-05-28 01:20:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:20:11.951+03	2021-05-28 01:20:11.959+03	
f0cfcfb6-fc4d-8a28-f95a-cd85e1737afa	2021-05-28 01:20:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:20:31.951+03	2021-05-28 01:20:31.959+03	
9dcd769c-bc5d-9181-d254-36bce5fb0fff	2021-05-28 01:20:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:20:51.951+03	2021-05-28 01:20:51.959+03	
f70a12db-2f45-2d95-e212-c17a01920324	2021-05-28 01:21:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:21:12.951+03	2021-05-28 01:21:12.958+03	
2f9e4aaf-77b5-d6e2-f262-856efaa01531	2021-05-28 01:21:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:21:32.953+03	2021-05-28 01:21:32.959+03	
5657cfd4-2be5-764a-5144-ab592f446420	2021-05-28 01:21:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:21:53.951+03	2021-05-28 01:21:53.958+03	
b9e3a932-bb24-a103-5994-d572fa70cf14	2021-05-28 01:22:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:22:14.951+03	2021-05-28 01:22:15.193+03	
8a315d78-41bb-ecab-250d-c714163f3949	2021-05-28 01:22:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:22:34.951+03	2021-05-28 01:22:34.959+03	
6a297094-bd4e-eac3-2264-9dac888339cb	2021-05-28 01:22:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:22:54.951+03	2021-05-28 01:22:54.96+03	
8e094065-9da4-eafe-79a9-c57df6d8ebf7	2021-05-28 01:23:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:23:14.951+03	2021-05-28 01:23:14.96+03	
1d9f8e38-017f-6f57-35d4-927a9f4958d7	2021-05-28 01:23:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:23:34.951+03	2021-05-28 01:23:34.958+03	
ead8d79c-17a5-cde1-76b2-ecdd293b7d00	2021-05-28 01:23:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:23:54.951+03	2021-05-28 01:23:54.959+03	
4064cabe-2d6f-9522-bbf8-19e88356e039	2021-05-28 01:24:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:24:15.951+03	2021-05-28 01:24:15.958+03	
04befe7d-a670-1f11-3060-c43f69d6d685	2021-05-28 01:24:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:24:35.951+03	2021-05-28 01:24:35.959+03	
cd70dc0f-92c8-e915-d678-18b69834dbf8	2021-05-28 01:24:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:24:55.951+03	2021-05-28 01:24:55.959+03	
23804e8c-b11a-276a-217b-2d70301d76d3	2021-05-28 01:25:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:25:15.951+03	2021-05-28 01:25:15.96+03	
4c7279d2-6d6a-ccb6-104c-1891daaf3c7f	2021-05-28 01:25:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:25:35.951+03	2021-05-28 01:25:35.96+03	
fd3f5b4a-fb0f-3519-edc6-891e467d7ca3	2021-05-28 01:25:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:25:55.951+03	2021-05-28 01:25:55.96+03	
ae2e68c8-d981-2334-3797-c6b736f4ecd6	2021-05-28 01:26:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:26:15.951+03	2021-05-28 01:26:15.959+03	
9333e94b-a6af-6676-3251-4b38b79b23bb	2021-05-28 01:26:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:26:35.951+03	2021-05-28 01:26:35.958+03	
89ec3afe-ebfb-522f-1247-1b06807f1b20	2021-05-28 01:26:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:26:55.951+03	2021-05-28 01:26:55.961+03	
790439d1-52c7-7ef8-c1d0-8375db48a06d	2021-05-28 01:27:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:27:15.951+03	2021-05-28 01:27:15.959+03	
71d9b1e2-5351-833b-29b0-81b3773d0fb6	2021-05-28 01:27:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:27:35.952+03	2021-05-28 01:27:35.958+03	
d4c7f590-a11b-d5ae-2c1b-0bf1fda24dd8	2021-05-28 01:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:27:56.951+03	2021-05-28 01:27:56.959+03	
c495b116-d415-08c0-d132-aace9a55f7ce	2021-05-28 01:28:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:28:16.951+03	2021-05-28 01:28:16.959+03	
a08159b8-b131-7480-9486-907777ad234a	2021-05-28 01:28:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:28:36.951+03	2021-05-28 01:28:36.959+03	
077fc8a2-d71c-bc37-f767-fd8a49c6dede	2021-05-28 01:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:28:56.951+03	2021-05-28 01:28:56.961+03	
7aaccf09-1bf5-b0ad-3505-ffc7e9cc40be	2021-05-28 01:29:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:29:16.951+03	2021-05-28 01:29:16.958+03	
918e0f8c-31ad-f8d0-4b79-f29bff164bff	2021-05-28 01:29:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:29:36.951+03	2021-05-28 01:29:36.957+03	
d5bf9fa5-02c9-898d-0b05-7693d33e2d62	2021-05-28 01:29:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:29:56.951+03	2021-05-28 01:29:56.959+03	
6dc21916-fffc-6828-6fbf-8e9851fa9cd4	2021-05-28 01:30:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:30:06.951+03	2021-05-28 01:30:06.96+03	
66ac6a74-d01d-172e-6648-70dbc7f3324d	2021-05-28 01:30:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:30:26.952+03	2021-05-28 01:30:26.959+03	
a06063f9-9c96-ed2e-1d61-e41002b61586	2021-05-28 01:30:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:30:48.952+03	2021-05-28 01:30:48.96+03	
a135ce97-f7e8-456c-111b-b8ffdfc996df	2021-05-28 01:30:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:30:58.952+03	2021-05-28 01:30:58.96+03	
3050fa76-0dbd-cebb-3439-c9b777e4d0d9	2021-05-28 01:31:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:31:19.951+03	2021-05-28 01:31:19.96+03	
da5cc74e-3c10-798b-c7b8-d1bd33c0002c	2021-05-28 01:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:31:39.951+03	2021-05-28 01:31:39.958+03	
28128b59-a91c-2b39-472a-b28975afd78d	2021-05-28 01:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:31:59.952+03	2021-05-28 01:31:59.964+03	
2ad23b4e-d346-b127-8c21-ce03d99699ce	2021-05-28 01:32:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:32:20.952+03	2021-05-28 01:32:20.96+03	
85f652a8-d3b0-aea8-d3e5-d609f7897248	2021-05-28 01:32:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:32:41.951+03	2021-05-28 01:32:41.958+03	
566b169c-b4ed-9880-9269-ca1a3a0c5158	2021-05-28 01:33:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:33:01.952+03	2021-05-28 01:33:01.96+03	
00676056-7356-e616-5ecd-08da8e06afe5	2021-05-28 01:33:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:33:22.951+03	2021-05-28 01:33:22.959+03	
73cb3a13-2c13-a85c-a764-5085259c5674	2021-05-28 01:33:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:33:42.951+03	2021-05-28 01:33:42.958+03	
3de86780-7066-bc7f-6291-4dd1c9d5ee64	2021-05-28 01:34:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:34:02.952+03	2021-05-28 01:34:02.962+03	
7d4ff15e-cc05-e803-b3e8-34d278da888f	2021-05-28 01:34:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:34:23.951+03	2021-05-28 01:34:23.961+03	
a65abbed-d1f7-d69a-1f2c-5d38199132e1	2021-05-28 01:34:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:34:43.951+03	2021-05-28 01:34:44.012+03	
e29b513f-cfad-58ae-0670-e50908e9e8a4	2021-05-28 01:35:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:35:03.952+03	2021-05-28 01:35:03.961+03	
e3917928-9a2f-e821-05da-e89c5455e7a7	2021-05-28 01:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:35:24.951+03	2021-05-28 01:35:24.96+03	
fda4b1b4-37df-2bd7-920b-58727b8bc090	2021-05-28 01:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:35:44.952+03	2021-05-28 01:35:44.959+03	
5a154b7e-369c-46b6-e234-9594dece07e5	2021-05-28 01:36:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:36:06.951+03	2021-05-28 01:36:06.959+03	
0c1911d8-f680-0eef-b59a-7e0dfa946d36	2021-05-28 01:36:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:36:26.951+03	2021-05-28 01:36:26.959+03	
c5776aec-a3e8-3f4b-1796-625aea67e4de	2021-05-28 01:36:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:36:46.951+03	2021-05-28 01:36:46.958+03	
965fbdeb-6640-c785-cc69-415ed0a1f6f4	2021-05-28 01:37:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:37:07.952+03	2021-05-28 01:37:07.959+03	
e4484b5b-e5f0-62a3-a946-69ffebb5c280	2021-05-28 01:37:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:37:28.951+03	2021-05-28 01:37:28.958+03	
6e6be465-eb3f-9a10-1595-8f11d05c5afa	2021-05-28 01:37:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:37:48.951+03	2021-05-28 01:37:48.958+03	
bd50985b-046e-fcfb-3cb6-4bfd4afea175	2021-05-28 01:38:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:38:08.951+03	2021-05-28 01:38:08.958+03	
4b4d6b5f-09f7-4b17-7e23-33469c9a37b7	2021-05-28 01:38:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:38:28.951+03	2021-05-28 01:38:28.958+03	
84f7a004-bdca-5f4c-a31f-264309a306a7	2021-05-28 01:38:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:38:49.951+03	2021-05-28 01:38:49.96+03	
bfe3b5e4-2774-2f8e-a28b-6220d4fe5fb6	2021-05-28 01:39:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:39:09.951+03	2021-05-28 01:39:09.967+03	
7f01becf-5637-9898-5968-07da7a0483a7	2021-05-28 01:39:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:39:29.951+03	2021-05-28 01:39:29.96+03	
4f369e68-8cb8-c566-4f6d-4eea2813e5d0	2021-05-28 01:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:39:49.951+03	2021-05-28 01:39:49.959+03	
3d330e90-bbc5-25e6-aef2-a63ec0399ab8	2021-05-28 01:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 01:40:00.951+03	2021-05-28 01:40:00.957+03	ERROR
a4fe49aa-2d8d-76ab-2530-520065618bb2	2021-05-28 01:40:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:40:19.951+03	2021-05-28 01:40:19.958+03	
73255087-3ef5-59ec-bbfe-94201efe3439	2021-05-28 01:40:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:40:39.951+03	2021-05-28 01:40:39.957+03	
c0555408-350b-6f78-c056-9c17d1b982aa	2021-05-28 01:40:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:40:59.951+03	2021-05-28 01:40:59.958+03	
0a48c4ca-b38b-9b9d-8aa6-df13f3baee98	2021-05-28 01:41:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:41:19.951+03	2021-05-28 01:41:19.958+03	
a560f004-1183-3f06-481e-18eac4dfd590	2021-05-28 01:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:41:39.951+03	2021-05-28 01:41:39.959+03	
41921d33-c357-f500-a96b-a86beca6e031	2021-05-28 01:41:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:41:59.951+03	2021-05-28 01:41:59.958+03	
856028d3-20f9-0aa1-c9f7-0ef38c4b96d4	2021-05-28 01:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:42:19.951+03	2021-05-28 01:42:19.959+03	
71eca99a-ecbc-5444-cf72-43da7dc19ccf	2021-05-28 01:42:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:42:39.951+03	2021-05-28 01:42:39.959+03	
548bb62a-9bad-e802-aa55-e7f112f0c65f	2021-05-28 01:42:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:42:59.951+03	2021-05-28 01:42:59.96+03	
15e4b408-e235-1341-7af8-b2638d14c977	2021-05-28 01:43:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:43:19.951+03	2021-05-28 01:43:19.958+03	
c3329405-2944-57dd-9a2d-0beb1251e043	2021-05-28 01:43:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:43:39.951+03	2021-05-28 01:43:39.965+03	
56a5a2e8-43bf-d496-77ed-372697321a77	2021-05-28 01:43:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:43:59.951+03	2021-05-28 01:43:59.959+03	
38673f31-3402-deed-7ada-10abd6cbf01a	2021-05-28 01:44:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:44:19.951+03	2021-05-28 01:44:19.959+03	
ae0de117-8232-939f-d481-b4b0adacd1de	2021-05-28 01:44:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:44:39.951+03	2021-05-28 01:44:39.959+03	
760e86ae-718c-ad61-c092-07f4f369e5a5	2021-05-28 01:44:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:44:59.952+03	2021-05-28 01:44:59.959+03	
634d0d54-26d5-4b06-86a4-79a0e1d18965	2021-05-28 01:45:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:45:21.952+03	2021-05-28 01:45:21.96+03	
32b31023-0ec4-3826-17db-2c34fc1d577d	2021-05-28 01:45:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:45:42.951+03	2021-05-28 01:45:42.959+03	
dd9dd1d2-2a6b-3ee3-c064-a1f32ac72870	2021-05-28 01:46:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:46:02.952+03	2021-05-28 01:46:02.961+03	
2410ebeb-e949-a3ae-aba8-1d532acfe11f	2021-05-28 01:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:46:23.952+03	2021-05-28 01:46:23.995+03	
e0c5499b-ff41-dec9-cb57-b17b94dada90	2021-05-28 01:46:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:46:44.951+03	2021-05-28 01:46:44.96+03	
c1f3a951-f2f1-67ef-5e2d-16d54679a300	2021-05-28 01:47:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:47:05.951+03	2021-05-28 01:47:05.959+03	
b64f6679-8cba-b96f-7522-95c21cf165f6	2021-05-28 01:47:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:47:26.951+03	2021-05-28 01:47:26.964+03	
99daa0d0-6549-e38c-5f2b-8c4923984292	2021-05-28 01:47:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:47:46.951+03	2021-05-28 01:47:46.959+03	
9ce07fd7-3ca7-02de-8b3f-94091ec8da06	2021-05-28 01:48:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:48:06.951+03	2021-05-28 01:48:06.959+03	
37308bb4-28a6-d477-75ba-748c23ae4200	2021-05-28 01:48:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:48:26.951+03	2021-05-28 01:48:26.959+03	
0c8f0ad0-c07d-db38-67ce-c6ddea36f063	2021-05-28 01:48:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:48:46.951+03	2021-05-28 01:48:46.965+03	
73e31ca1-5554-7654-ecfb-68a5ed136d38	2021-05-28 01:49:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:49:06.951+03	2021-05-28 01:49:07.004+03	
3cb20218-525e-1197-580a-ef932e35aef2	2021-05-28 01:49:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:49:26.951+03	2021-05-28 01:49:26.959+03	
886c6278-9f04-bbfc-9317-99aa523ddd2f	2021-05-28 01:49:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:49:46.951+03	2021-05-28 01:49:46.961+03	
c31e3443-621a-3905-b751-1b403cebc7d0	2021-05-28 01:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 01:50:00.952+03	2021-05-28 01:50:00.957+03	ERROR
c6fcc900-a7b4-33cf-b5c7-4033cedab20e	2021-05-28 01:50:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:50:17.951+03	2021-05-28 01:50:17.959+03	
0ac06229-5990-5741-c34c-44cf98e66ca5	2021-05-28 01:50:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:50:37.951+03	2021-05-28 01:50:37.957+03	
510e979b-6af5-b133-74dd-082645475177	2021-05-28 01:50:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:50:58.951+03	2021-05-28 01:50:58.957+03	
42376704-69ef-75a5-fd76-03994d9e4ac6	2021-05-28 01:51:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:51:18.951+03	2021-05-28 01:51:18.958+03	
df978bd0-4d4a-30fe-5bdb-3b946b79c275	2021-05-28 01:51:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:51:38.952+03	2021-05-28 01:51:39.028+03	
c6b884e6-0877-bab9-a784-bb5b2416b4ca	2021-05-28 01:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:31:09.951+03	2021-05-28 01:31:09.958+03	
b9ec155f-14bc-e40a-dde5-3dff93b222f0	2021-05-28 01:31:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:31:29.951+03	2021-05-28 01:31:29.957+03	
2fd6349c-749f-e344-8564-0e50428f4a84	2021-05-28 01:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:31:49.951+03	2021-05-28 01:31:49.962+03	
6bd1d502-0049-3c30-e727-81225987e67d	2021-05-28 01:32:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:32:10.951+03	2021-05-28 01:32:10.958+03	
d6daba5f-8f16-239c-b0ee-74f1754a76ba	2021-05-28 01:32:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:32:31.951+03	2021-05-28 01:32:31.958+03	
d9acd6d8-7d46-257a-d169-c82575d3235c	2021-05-28 01:32:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:32:51.951+03	2021-05-28 01:32:51.96+03	
b4e96de0-081f-1732-3c55-39dbcdaf9e34	2021-05-28 01:33:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:33:12.951+03	2021-05-28 01:33:12.957+03	
a0891b71-7e03-9dc6-ad7d-913a23f405ca	2021-05-28 01:33:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:33:32.951+03	2021-05-28 01:33:32.962+03	
5622f44d-663e-e78e-cff1-41e98b1e841a	2021-05-28 01:33:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:33:52.951+03	2021-05-28 01:33:52.959+03	
8040dfa6-6c5f-5fa6-f6d1-0a8ffc92c10c	2021-05-28 01:34:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:34:13.951+03	2021-05-28 01:34:13.958+03	
d7565faf-6ccd-23ec-f49a-993a09bb2fcf	2021-05-28 01:34:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:34:33.951+03	2021-05-28 01:34:33.958+03	
19e6d827-dde9-2ecd-05c0-d26b79d635df	2021-05-28 01:34:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:34:53.951+03	2021-05-28 01:34:53.958+03	
1cd01c81-3df2-6bab-d159-5156b9715ade	2021-05-28 01:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:35:14.951+03	2021-05-28 01:35:14.959+03	
bdc59f37-bddb-266f-5ce9-ea7171fe7593	2021-05-28 01:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:35:34.951+03	2021-05-28 01:35:34.959+03	
0d5543fd-11f0-6e02-37d6-ef710ef391f9	2021-05-28 01:35:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:35:55.952+03	2021-05-28 01:35:55.96+03	
bf04a58c-1f82-f522-987d-66f3ea3ddc06	2021-05-28 01:36:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:36:16.951+03	2021-05-28 01:36:16.958+03	
9de67668-e2a5-f33c-b009-7b84521f618b	2021-05-28 01:36:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:36:36.951+03	2021-05-28 01:36:36.96+03	
d8b09964-14f2-dbdd-6c76-57bfc423cbe5	2021-05-28 01:36:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:36:56.952+03	2021-05-28 01:36:56.961+03	
36f77e6a-98b9-17d3-2ca4-0ed3e38ce4cf	2021-05-28 01:37:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:37:18.951+03	2021-05-28 01:37:18.959+03	
f5ee96bd-5515-7d89-5804-551f57b7cc05	2021-05-28 01:37:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:37:38.951+03	2021-05-28 01:37:38.957+03	
113b741a-5b09-bae3-179e-52ccb8be0bbd	2021-05-28 01:37:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:37:58.951+03	2021-05-28 01:37:58.96+03	
df9e38fd-dfc6-af56-8b8d-ced7cb550a29	2021-05-28 01:38:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:38:18.951+03	2021-05-28 01:38:18.959+03	
fcb03fe2-e93e-0036-637b-5b8ed5f2c6e9	2021-05-28 01:38:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:38:38.952+03	2021-05-28 01:38:38.959+03	
8d8aa3e1-5eeb-a469-9e11-ea9f0b437da0	2021-05-28 01:38:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:38:59.951+03	2021-05-28 01:38:59.957+03	
8531a29b-0a57-b32e-208e-5753653b9f8a	2021-05-28 01:39:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:39:19.951+03	2021-05-28 01:39:19.959+03	
a406eb3a-3c4a-4d9f-982e-ff2d285feccc	2021-05-28 01:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:39:39.951+03	2021-05-28 01:39:39.971+03	
d7bc2cae-545a-83ee-2d98-8e3dd55c2502	2021-05-28 01:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:39:59.951+03	2021-05-28 01:39:59.959+03	
750893e3-eee8-5b07-2a64-a2194d807579	2021-05-28 01:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:40:09.951+03	2021-05-28 01:40:09.958+03	
77d0764a-d92c-864f-e2f4-b1aae0a1aa74	2021-05-28 01:40:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:40:29.951+03	2021-05-28 01:40:29.961+03	
06a5a5fd-14e0-f26e-9d0f-570de03dbbe2	2021-05-28 01:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:40:49.951+03	2021-05-28 01:40:49.959+03	
704564da-5865-562b-c3ed-cf65abdcb41d	2021-05-28 01:41:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:41:09.951+03	2021-05-28 01:41:09.959+03	
7d107cc8-8fec-01c3-2cdb-e6b78203b80c	2021-05-28 01:41:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:41:29.951+03	2021-05-28 01:41:29.958+03	
5ef3fdec-559b-2713-aa57-5a69ce7b6e32	2021-05-28 01:41:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:41:49.951+03	2021-05-28 01:41:49.957+03	
c22dd576-ba0a-8e32-b73e-897683fea6bb	2021-05-28 01:42:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:42:09.951+03	2021-05-28 01:42:09.958+03	
1bc44082-0c89-7311-0442-b33d91565a1e	2021-05-28 01:42:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:42:29.951+03	2021-05-28 01:42:29.958+03	
e411f238-8521-fb48-5b2f-51dceda982ab	2021-05-28 01:42:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:42:49.951+03	2021-05-28 01:42:49.957+03	
a2042e42-145f-db92-1490-bfee08c5f50f	2021-05-28 01:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:43:09.951+03	2021-05-28 01:43:09.965+03	
186179ed-f527-0cde-12c1-01678a068bc4	2021-05-28 01:43:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:43:29.951+03	2021-05-28 01:43:29.957+03	
c135d5e3-d21f-5c73-55ec-05f7cc564f00	2021-05-28 01:43:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:43:49.951+03	2021-05-28 01:43:49.958+03	
5750a0b1-3857-2092-a112-819750a3f10f	2021-05-28 01:44:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:44:09.951+03	2021-05-28 01:44:09.959+03	
9265a22e-6fff-6480-fca3-b019aaa6b0d8	2021-05-28 01:44:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:44:29.951+03	2021-05-28 01:44:29.958+03	
deaf910b-347e-a12a-5a0b-bcb8c0a84f39	2021-05-28 01:44:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:44:49.951+03	2021-05-28 01:44:49.959+03	
e97f99d0-8df7-44eb-47f7-35f823ec3f26	2021-05-28 01:45:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:45:10.952+03	2021-05-28 01:45:10.959+03	
b8f8df39-0db0-d77d-f566-bc046babbe2a	2021-05-28 01:45:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:45:31.952+03	2021-05-28 01:45:31.96+03	
615f4106-1179-161e-47b6-5bc7dffbb1cc	2021-05-28 01:45:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:45:52.952+03	2021-05-28 01:45:52.96+03	
2683fa8d-1c02-92c0-d589-4b93efd6c9ab	2021-05-28 01:46:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:46:13.951+03	2021-05-28 01:46:13.96+03	
77159e8d-5fd5-6797-d538-d0d309f6b840	2021-05-28 01:46:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:46:34.951+03	2021-05-28 01:46:34.958+03	
efce8788-9199-b7b5-cff0-84eb339c7907	2021-05-28 01:46:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:46:54.952+03	2021-05-28 01:46:54.959+03	
b3908a17-e984-55ff-d3cb-a99f3f317138	2021-05-28 01:47:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:47:15.952+03	2021-05-28 01:47:15.959+03	
56080bc3-5f5d-ec46-aade-042c6844c507	2021-05-28 01:47:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:47:36.951+03	2021-05-28 01:47:36.96+03	
0fd6f7de-f2d9-f6ee-f1d1-fa963c3a31ce	2021-05-28 01:47:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:47:56.951+03	2021-05-28 01:47:56.961+03	
d2aca8e4-dad8-25c2-5b35-66e267c5813b	2021-05-28 01:48:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:48:16.951+03	2021-05-28 01:48:16.96+03	
3cd0b477-6489-11af-1845-3033f8e99680	2021-05-28 01:48:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:48:36.951+03	2021-05-28 01:48:36.959+03	
4ba87db6-c1ca-09e6-7888-f6bef104269c	2021-05-28 01:48:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:48:56.951+03	2021-05-28 01:48:56.961+03	
03642779-2704-cee7-07b5-66a16b4847b7	2021-05-28 01:49:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:49:16.951+03	2021-05-28 01:49:16.959+03	
89a38f93-1736-bd21-4d79-d15df19a288e	2021-05-28 01:49:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:49:36.951+03	2021-05-28 01:49:36.962+03	
4c2aada0-afd4-f18b-627f-f8bec046a3b7	2021-05-28 01:49:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:49:56.952+03	2021-05-28 01:49:56.962+03	
b32262e4-c32a-15d6-4138-1395b103273a	2021-05-28 01:50:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:50:07.951+03	2021-05-28 01:50:07.958+03	
8475b3e4-3683-3f4c-c742-fcf68ef53c29	2021-05-28 01:50:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:50:27.951+03	2021-05-28 01:50:27.958+03	
e416b3b1-72aa-f093-d2a9-e42987fbf585	2021-05-28 01:50:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:50:47.952+03	2021-05-28 01:50:47.958+03	
101d5cb3-0d14-5dfe-2978-2f8938714029	2021-05-28 01:51:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:51:08.951+03	2021-05-28 01:51:08.958+03	
baf95a46-ac2e-7322-9a6d-3921f6a9df41	2021-05-28 01:51:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:51:28.952+03	2021-05-28 01:51:28.96+03	
a4ab431e-4756-436c-627b-2aa52b14cc9e	2021-05-28 01:51:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:51:49.951+03	2021-05-28 01:51:49.958+03	
2a20a548-9ba6-8ba5-9153-5d4180004ad5	2021-05-28 01:51:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:51:59.951+03	2021-05-28 01:51:59.96+03	
bd4c654f-7be0-d8fe-4dd4-29010f97be40	2021-05-28 01:52:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:52:19.951+03	2021-05-28 01:52:19.96+03	
7fd06281-6050-a8c5-ecec-595265257fc1	2021-05-28 01:52:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:52:39.951+03	2021-05-28 01:52:39.959+03	
1411320b-c217-aa5f-7953-fe41ba3345db	2021-05-28 01:53:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:53:00.951+03	2021-05-28 01:53:00.962+03	
e552e513-f931-01f7-1bd2-c85459741810	2021-05-28 01:53:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:53:20.951+03	2021-05-28 01:53:20.958+03	
2697cc1b-842e-4723-621f-c046f81d9e11	2021-05-28 01:53:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:53:41.951+03	2021-05-28 01:53:41.958+03	
2b6a1c9f-62d8-a2ff-44d3-a942bb96a65a	2021-05-28 01:54:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:54:01.952+03	2021-05-28 01:54:01.963+03	
f67a09f9-4c23-e4c6-9d40-9551cfa03097	2021-05-28 01:54:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:54:22.951+03	2021-05-28 01:54:22.959+03	
7eb7768d-ac95-6def-4a05-d3c08af15165	2021-05-28 01:54:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:54:42.951+03	2021-05-28 01:54:42.959+03	
2b7459d1-89fb-7b76-f849-7689245bd596	2021-05-28 01:55:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:55:02.952+03	2021-05-28 01:55:02.967+03	
777320b8-1331-1fee-050c-719aeb0beede	2021-05-28 01:55:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:55:33.951+03	2021-05-28 01:55:33.958+03	
3164232b-230d-ccd3-0aa5-bb4146162b55	2021-05-28 01:55:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:55:53.952+03	2021-05-28 01:55:53.96+03	
28206aba-3fcc-ba4c-12ad-1e8609c6b432	2021-05-28 01:56:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:56:14.951+03	2021-05-28 01:56:14.958+03	
82b6d9e4-3ad0-3a09-5423-c6a5757bdcac	2021-05-28 01:56:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:56:35.951+03	2021-05-28 01:56:35.959+03	
3ee280e8-02dd-635d-388c-7754592e1b60	2021-05-28 01:56:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:56:55.951+03	2021-05-28 01:56:55.963+03	
d69c9716-4a31-906e-9991-8013ae425dc9	2021-05-28 01:57:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:57:15.951+03	2021-05-28 01:57:15.959+03	
9b87fd28-679b-9645-16e5-c99213c11065	2021-05-28 01:57:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:57:35.952+03	2021-05-28 01:57:35.958+03	
a3b5ae9d-c36f-2066-64d4-321e0e3a23f7	2021-05-28 01:57:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:57:57.952+03	2021-05-28 01:57:57.962+03	
1220c38d-f8ca-b98d-b906-d23e66f31cfe	2021-05-28 01:58:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:58:18.951+03	2021-05-28 01:58:18.959+03	
b533998b-aea0-c799-53d7-a936a50231bc	2021-05-28 01:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:58:39.951+03	2021-05-28 01:58:39.958+03	
10179bf1-6d2a-3c1e-5f98-95d435ea376c	2021-05-28 01:59:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:59:00.951+03	2021-05-28 01:59:00.958+03	
06e5e17b-8cc4-7120-af18-dd000ce2476c	2021-05-28 01:59:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:59:20.951+03	2021-05-28 01:59:20.958+03	
5c11367e-58e4-f9a6-366c-1f305809ac65	2021-05-28 01:59:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:59:40.951+03	2021-05-28 01:59:40.959+03	
4578dfd5-b2a8-e1d2-8021-c17833dc7bf0	2021-05-28 02:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 02:00:00.952+03	2021-05-28 02:00:00.96+03	ERROR
aecf77db-54a9-3896-a3aa-1077d8db8654	2021-05-28 02:00:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:00:21.951+03	2021-05-28 02:00:21.96+03	
4fba915e-34ad-6a63-09f2-79a91e07cf59	2021-05-28 02:00:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:00:41.951+03	2021-05-28 02:00:41.958+03	
c592dff7-f4b5-dee2-30ba-98d915100da9	2021-05-28 02:01:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:01:01.952+03	2021-05-28 02:01:01.961+03	
86168ad1-3920-7029-88d5-69b555cf1878	2021-05-28 02:01:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:01:22.951+03	2021-05-28 02:01:22.959+03	
1ed466bf-c037-8b94-edf1-a0628306597a	2021-05-28 02:01:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:01:42.951+03	2021-05-28 02:01:42.959+03	
e8b930c2-19b7-293b-a250-17048dccfced	2021-05-28 02:02:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:02:02.951+03	2021-05-28 02:02:02.958+03	
bad628cd-5dcd-17e5-3b7b-650755de16cf	2021-05-28 02:02:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:02:22.952+03	2021-05-28 02:02:22.959+03	
091a9c85-a127-9fc9-b9cd-5983dce9f7c7	2021-05-28 02:02:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:02:43.952+03	2021-05-28 02:02:43.958+03	
9163aed3-9784-22c3-0667-a57e860b0f2c	2021-05-28 02:03:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:03:04.951+03	2021-05-28 02:03:04.961+03	
2fc5027b-b5ee-29b1-6a3f-9a5b783947de	2021-05-28 02:03:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:03:24.951+03	2021-05-28 02:03:24.958+03	
4075c3c3-8884-a352-86c8-88432b91b3f9	2021-05-28 02:03:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:03:44.951+03	2021-05-28 02:03:44.957+03	
31d4cd67-2a44-b64e-3a9a-a16502a54c97	2021-05-28 02:04:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:04:04.951+03	2021-05-28 02:04:04.959+03	
d3db7440-0d7c-e85f-99d4-011f2e820453	2021-05-28 02:04:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:04:24.951+03	2021-05-28 02:04:24.97+03	
8601ea59-0de3-93af-690e-54bb53168854	2021-05-28 02:04:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:04:44.951+03	2021-05-28 02:04:44.958+03	
bb0dcb94-2543-c316-1f93-df122fc2ca88	2021-05-28 02:05:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:05:04.951+03	2021-05-28 02:05:04.958+03	
30504175-552e-1a81-3718-b7981405ec35	2021-05-28 02:05:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:05:24.951+03	2021-05-28 02:05:24.958+03	
410cc4d5-4eb0-1a3a-4c9a-7bb1159c8b66	2021-05-28 02:05:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:05:44.951+03	2021-05-28 02:05:44.963+03	
74dc05df-dfb1-3f49-a9b3-e72de164ff31	2021-05-28 02:06:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:06:04.951+03	2021-05-28 02:06:04.96+03	
6454a6e2-6630-4558-b674-991ebf35b9f8	2021-05-28 02:06:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:06:24.951+03	2021-05-28 02:06:24.959+03	
a61a737f-7239-af12-7c47-27fe074aea62	2021-05-28 02:06:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:06:44.951+03	2021-05-28 02:06:44.959+03	
aa2c2db8-c02b-fd12-cf4c-2cdb363d24a2	2021-05-28 02:07:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:07:04.951+03	2021-05-28 02:07:04.96+03	
65a566ec-3543-b5a3-cae4-d1d78f610b45	2021-05-28 02:07:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:07:24.951+03	2021-05-28 02:07:24.958+03	
88cc5f11-3684-d9d2-870a-eac179dbc441	2021-05-28 02:07:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:07:44.951+03	2021-05-28 02:07:44.961+03	
c0a4dbd7-82cf-9e85-c517-b42f52a580ca	2021-05-28 02:08:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:08:04.951+03	2021-05-28 02:08:04.958+03	
82fbc705-7872-8867-affc-bee9126deaf0	2021-05-28 02:08:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:08:24.951+03	2021-05-28 02:08:24.959+03	
43ddac9b-590f-441d-56b4-063a28ef275b	2021-05-28 02:08:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:08:44.951+03	2021-05-28 02:08:44.957+03	
069cd9bf-c5b1-0611-1770-baf1edc7c67c	2021-05-28 02:09:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:09:04.951+03	2021-05-28 02:09:04.96+03	
f2c2a42f-c4a6-509b-a1d0-a9044484481b	2021-05-28 02:09:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:09:24.951+03	2021-05-28 02:09:24.959+03	
b8ac8f6d-705f-0570-e907-2a44e40c6219	2021-05-28 02:09:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:09:44.951+03	2021-05-28 02:09:44.959+03	
4e4d65f7-e490-60c5-7509-247938fc33f0	2021-05-28 02:10:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 02:10:00.951+03	2021-05-28 02:10:00.956+03	ERROR
c585a3bf-cffe-42fe-3421-96ff20baddbf	2021-05-28 02:10:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:10:14.952+03	2021-05-28 02:10:14.96+03	
d947b30b-8d39-8a9e-2cf0-055eb0386081	2021-05-28 02:10:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:10:35.951+03	2021-05-28 02:10:35.959+03	
ad720ab4-9e09-5a12-42df-611fce5856dc	2021-05-28 02:10:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:10:55.951+03	2021-05-28 02:10:55.959+03	
3f1cf0e3-b1ce-3302-37da-c0404ebd1ab9	2021-05-28 02:11:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:11:16.951+03	2021-05-28 02:11:16.958+03	
26cbfa5f-9e98-c258-ec3f-f175322133b3	2021-05-28 02:11:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:11:36.951+03	2021-05-28 02:11:36.959+03	
d1d31d5c-5a75-d22f-81e0-0869e889ff74	2021-05-28 02:11:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:11:56.951+03	2021-05-28 02:11:56.958+03	
646108c2-877d-f6fc-4f6e-6ea0a5ccc653	2021-05-28 02:12:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:12:16.951+03	2021-05-28 02:12:16.958+03	
1a574400-00c7-3ae9-0640-1f307368ed01	2021-05-28 02:12:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:12:36.951+03	2021-05-28 02:12:36.96+03	
21011a10-e412-c9c3-7af5-b0cd76bde975	2021-05-28 02:12:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:12:56.951+03	2021-05-28 02:12:56.959+03	
16c7e544-81f0-1796-cb6a-b3c1bff9919a	2021-05-28 01:52:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:52:09.951+03	2021-05-28 01:52:09.961+03	
f7b780f2-4a23-ac1b-588b-f71499e8cb49	2021-05-28 01:52:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:52:29.951+03	2021-05-28 01:52:29.959+03	
2b0b09a1-8e23-2abd-6260-11557d03d428	2021-05-28 01:52:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:52:49.952+03	2021-05-28 01:52:49.959+03	
34807596-1fcd-004e-c43c-744395eaa8b9	2021-05-28 01:53:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:53:10.951+03	2021-05-28 01:53:10.972+03	
13dfc070-5c41-f209-4123-959ad79460b8	2021-05-28 01:53:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:53:30.952+03	2021-05-28 01:53:30.961+03	
b184c7b2-cd60-5d14-8b3f-6c901e4b0156	2021-05-28 01:53:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:53:51.951+03	2021-05-28 01:53:51.959+03	
652d4159-091c-b265-e7c0-0ecc9ff312ba	2021-05-28 01:54:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:54:12.951+03	2021-05-28 01:54:12.959+03	
c34ada08-3615-d6fa-9a27-7729b68a0589	2021-05-28 01:54:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:54:32.951+03	2021-05-28 01:54:32.96+03	
e1b2c179-34aa-61a0-1330-072eaeba08bd	2021-05-28 01:54:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:54:52.951+03	2021-05-28 01:54:52.958+03	
c4bd825b-31d3-0010-7788-7fc7f4941308	2021-05-28 01:55:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:55:12.952+03	2021-05-28 01:55:12.967+03	
6e8bde1a-3e7b-df9a-de18-72a32d9055f8	2021-05-28 01:55:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:55:23.951+03	2021-05-28 01:55:23.958+03	
323909b9-2ebe-0679-5c7e-99db5625863a	2021-05-28 01:55:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:55:43.951+03	2021-05-28 01:55:43.958+03	
30091035-b913-7a7e-d078-70114ce87961	2021-05-28 01:56:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:56:03.952+03	2021-05-28 01:56:03.961+03	
bf10c5c2-fb5e-a831-9925-3745449fe12c	2021-05-28 01:56:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:56:24.952+03	2021-05-28 01:56:24.96+03	
e191cde3-d788-7d93-f01e-1188f282df98	2021-05-28 01:56:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:56:45.951+03	2021-05-28 01:56:45.959+03	
ce6e28a3-a0dd-5dee-33da-26dc24d6e156	2021-05-28 01:57:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:57:05.951+03	2021-05-28 01:57:05.961+03	
58621ecf-478f-a640-745c-96075c169475	2021-05-28 01:57:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:57:25.951+03	2021-05-28 01:57:25.959+03	
f52695c8-458c-dbab-c83a-b95dc7d5c953	2021-05-28 01:57:46.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:57:46.96+03	2021-05-28 01:57:46.968+03	
0a28d48e-c904-f743-f782-90005339b98b	2021-05-28 01:58:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:58:08.951+03	2021-05-28 01:58:08.958+03	
4c303b68-9c85-7710-4cca-b1d60a9a050e	2021-05-28 01:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:58:28.952+03	2021-05-28 01:58:28.959+03	
00cba84d-f237-c4aa-c111-6f4738dff46b	2021-05-28 01:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:58:49.952+03	2021-05-28 01:58:49.959+03	
aa35bc0b-5b7f-660b-03aa-f902e6976be7	2021-05-28 01:59:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:59:10.951+03	2021-05-28 01:59:10.959+03	
61b0a0a4-9133-425d-9a88-1dddff1212ec	2021-05-28 01:59:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:59:30.951+03	2021-05-28 01:59:30.961+03	
648c4c59-86f1-a596-c1c6-e6d37cf17760	2021-05-28 01:59:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 01:59:50.951+03	2021-05-28 01:59:50.958+03	
391137a9-d91f-be12-3da7-b6c619aabd1b	2021-05-28 02:00:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:00:00.952+03	2021-05-28 02:00:00.985+03	
0cbb003d-31d7-d2fe-2373-d48f97d4a1bb	2021-05-28 02:00:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:00:10.952+03	2021-05-28 02:00:10.962+03	
1a4037ed-3799-76a5-09ff-4936626d2d7c	2021-05-28 02:00:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:00:31.951+03	2021-05-28 02:00:31.961+03	
95c4728a-cb65-ffd0-fa3a-7711471f2bff	2021-05-28 02:00:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:00:51.951+03	2021-05-28 02:00:51.962+03	
ec463a72-d784-f613-923e-00fbd2d5ccaf	2021-05-28 02:01:11.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:01:11.952+03	2021-05-28 02:01:11.961+03	
e76b3bb9-9fa4-021a-b135-2af3e652bc49	2021-05-28 02:01:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:01:32.951+03	2021-05-28 02:01:32.958+03	
65fdf441-bfc1-0c0f-937c-a31ac58f7e18	2021-05-28 02:01:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:01:52.951+03	2021-05-28 02:01:52.958+03	
f147fe87-715e-6c43-334b-26154d685cc3	2021-05-28 02:02:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:02:12.951+03	2021-05-28 02:02:12.967+03	
50f0606f-2b99-ade7-e165-e167af6a4a4b	2021-05-28 02:02:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:02:32.952+03	2021-05-28 02:02:32.959+03	
00cfd459-1ded-19b8-9339-9013035b6dea	2021-05-28 02:02:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:02:54.951+03	2021-05-28 02:02:54.959+03	
3253ae83-d2c2-8460-47a2-04b6ee1f2c4f	2021-05-28 02:03:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:03:14.951+03	2021-05-28 02:03:14.959+03	
65e6a61d-027b-94c0-67a0-5c67c68196ef	2021-05-28 02:03:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:03:34.951+03	2021-05-28 02:03:34.959+03	
a48fb498-9e67-5b4e-632a-01ebf369496b	2021-05-28 02:03:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:03:54.951+03	2021-05-28 02:03:54.958+03	
e295b796-1cd8-69ee-2e2f-975fd2fcf1ca	2021-05-28 02:04:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:04:14.951+03	2021-05-28 02:04:14.959+03	
859033a9-e41e-5c35-0245-16debe4b1a56	2021-05-28 02:04:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:04:34.951+03	2021-05-28 02:04:34.961+03	
6b924f00-7d21-75b3-b766-1dc27f68b821	2021-05-28 02:04:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:04:54.951+03	2021-05-28 02:04:54.958+03	
2c187f18-13bf-4979-abe3-80b62ddfc116	2021-05-28 02:05:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:05:14.951+03	2021-05-28 02:05:14.959+03	
fdc8e7c9-3dcb-bb7a-c94e-a2992dda9e24	2021-05-28 02:05:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:05:34.951+03	2021-05-28 02:05:34.958+03	
a3872be1-fc2f-234e-0dcb-b667a975f3f4	2021-05-28 02:05:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:05:54.951+03	2021-05-28 02:05:54.959+03	
63019596-6e1d-b50a-642f-4be4ab67b4c2	2021-05-28 02:06:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:06:14.951+03	2021-05-28 02:06:14.958+03	
7b04f610-874d-3370-7539-1af6b02bb523	2021-05-28 02:06:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:06:34.951+03	2021-05-28 02:06:34.958+03	
8507b958-a485-3927-4f21-23ee0c80e9e4	2021-05-28 02:06:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:06:54.951+03	2021-05-28 02:06:54.958+03	
5da8633d-5855-343d-66a6-f0e84b2ead5a	2021-05-28 02:07:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:07:14.951+03	2021-05-28 02:07:14.959+03	
2edbe449-ff00-3f4f-2cdb-a6579918321d	2021-05-28 02:07:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:07:34.951+03	2021-05-28 02:07:34.959+03	
e960da9d-7648-860f-74dd-c2b33b364e14	2021-05-28 02:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:07:54.951+03	2021-05-28 02:07:54.96+03	
11e557eb-04e7-1d2d-55c2-061876eb15e9	2021-05-28 02:08:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:08:14.951+03	2021-05-28 02:08:14.959+03	
f08f4c24-b735-4b13-01e5-ab668d087786	2021-05-28 02:08:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:08:34.951+03	2021-05-28 02:08:34.957+03	
d862ae82-416f-0529-4c9d-4df5131dab63	2021-05-28 02:08:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:08:54.951+03	2021-05-28 02:08:54.958+03	
99d7548a-c059-e198-fe50-66d187ed4a19	2021-05-28 02:09:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:09:14.951+03	2021-05-28 02:09:14.958+03	
b1eb219e-2cc0-209d-b846-a04a04ec5d2e	2021-05-28 02:09:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:09:34.951+03	2021-05-28 02:09:34.959+03	
315393cf-a44e-c702-b573-f2f342c717c6	2021-05-28 02:09:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:09:54.951+03	2021-05-28 02:09:54.958+03	
559cd8d6-2111-66b0-36c3-aa4b8e3180d8	2021-05-28 02:10:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:10:04.951+03	2021-05-28 02:10:04.959+03	
27258f85-6673-5aff-680e-781401c1d7ea	2021-05-28 02:10:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:10:25.951+03	2021-05-28 02:10:25.959+03	
fcbe99f2-4fee-b6b4-69f0-bccb9c0fb675	2021-05-28 02:10:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:10:45.951+03	2021-05-28 02:10:45.971+03	
c6a18606-25b7-c665-0869-649b0b24ba60	2021-05-28 02:11:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:11:05.952+03	2021-05-28 02:11:05.961+03	
3e85f56b-ec60-736e-9670-6d7a8e6671d8	2021-05-28 02:11:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:11:26.951+03	2021-05-28 02:11:26.958+03	
adc38ea3-6afa-ec2b-a58e-977a35024692	2021-05-28 02:11:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:11:46.951+03	2021-05-28 02:11:46.958+03	
896c4308-746d-4399-7e18-63a9df60f49e	2021-05-28 02:12:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:12:06.951+03	2021-05-28 02:12:06.959+03	
ba20fbe1-8aa5-8a4d-fee1-0e08fb05f930	2021-05-28 02:12:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:12:26.951+03	2021-05-28 02:12:26.959+03	
47859cfd-4bc0-cf01-18ad-1d07d833f3a6	2021-05-28 02:12:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:12:46.951+03	2021-05-28 02:12:46.958+03	
23b9831c-688a-2512-5fed-788d7a66a96e	2021-05-28 02:13:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:13:06.951+03	2021-05-28 02:13:06.96+03	
f3dd0571-5da0-ccd5-d875-00adc967347f	2021-05-28 02:13:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:13:26.951+03	2021-05-28 02:13:26.958+03	
0141128d-ef1b-857d-3fef-6ec2544f2fc4	2021-05-28 02:13:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:13:46.951+03	2021-05-28 02:13:46.959+03	
c9070b68-6eca-a992-3ffc-fb93ea8200c4	2021-05-28 02:14:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:14:06.951+03	2021-05-28 02:14:06.96+03	
425111c3-40fc-ea52-a4bb-ffdddd9bfba6	2021-05-28 02:14:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:14:26.951+03	2021-05-28 02:14:26.961+03	
778e938e-da7b-18f7-6fc4-cea330668982	2021-05-28 02:14:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:14:46.951+03	2021-05-28 02:14:46.96+03	
44bbc555-5ec2-0cfd-1d23-24720f400cd9	2021-05-28 02:15:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:15:06.951+03	2021-05-28 02:15:06.958+03	
d548f1e2-1ef3-1156-20ff-a08b984b2e44	2021-05-28 02:15:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:15:27.951+03	2021-05-28 02:15:27.958+03	
9b12a56a-def4-1707-e871-7139378f423d	2021-05-28 02:15:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:15:47.952+03	2021-05-28 02:15:47.962+03	
a394a213-bbb2-4cac-e79e-0888cf5b2c86	2021-05-28 02:16:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:16:08.951+03	2021-05-28 02:16:08.959+03	
41c7a0a4-ec0f-f71a-f0ba-51327f007f3f	2021-05-28 02:16:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:16:28.951+03	2021-05-28 02:16:28.958+03	
303646c2-2ee1-fefc-5497-3e983df3219a	2021-05-28 02:16:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:16:48.951+03	2021-05-28 02:16:48.961+03	
0cbeb316-b960-ccff-23c5-a3f45370443c	2021-05-28 02:17:08.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:17:08.951+03	2021-05-28 02:17:08.968+03	
269a8e2f-71cb-ce5e-91a3-ca2d8db50f59	2021-05-28 02:17:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:17:28.951+03	2021-05-28 02:17:28.962+03	
7b419025-f944-aeaf-19e0-92d673b37ccc	2021-05-28 02:17:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:17:48.951+03	2021-05-28 02:17:48.96+03	
c154c0e9-1592-5831-83b2-1986dd7a8976	2021-05-28 02:18:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:18:08.951+03	2021-05-28 02:18:08.958+03	
554cbdba-afae-9f25-faeb-153d8b73bcd4	2021-05-28 02:18:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:18:28.951+03	2021-05-28 02:18:28.968+03	
9b416a53-ca54-e247-0061-b50b00684969	2021-05-28 02:18:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:18:48.951+03	2021-05-28 02:18:48.958+03	
c7cd158f-f801-c265-d91b-fd393f240b0c	2021-05-28 02:19:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:19:08.951+03	2021-05-28 02:19:08.96+03	
558a7e30-75d8-cc05-1f4b-b7320decda98	2021-05-28 02:19:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:19:28.951+03	2021-05-28 02:19:28.959+03	
9c05c358-2485-9cff-d56b-3dde159beb53	2021-05-28 02:19:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:19:48.952+03	2021-05-28 02:19:48.961+03	
4c471180-15e4-61a7-46d6-2dbb56fa14a8	2021-05-28 02:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 02:20:00.951+03	2021-05-28 02:20:00.957+03	ERROR
7f36d279-55b5-0ee9-0bed-dd2df6a0f198	2021-05-28 02:20:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:20:19.951+03	2021-05-28 02:20:19.959+03	
ced63393-2181-aa4a-6502-8dbfc8871bb2	2021-05-28 02:20:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:20:39.951+03	2021-05-28 02:20:39.959+03	
cfec9fe2-acde-b217-4d30-f6b836a537a3	2021-05-28 02:20:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:20:59.951+03	2021-05-28 02:20:59.958+03	
7c4868f0-f3e7-268b-2d7c-0e4df0d5f8ad	2021-05-28 02:21:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:21:19.951+03	2021-05-28 02:21:19.958+03	
dd851f75-b745-5ad3-821f-885d165dcd35	2021-05-28 02:21:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:21:39.951+03	2021-05-28 02:21:39.959+03	
f525ba97-8f5d-9303-456c-392c69d2709e	2021-05-28 02:21:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:21:59.951+03	2021-05-28 02:21:59.959+03	
36e58534-241a-0ce0-a931-97c53b9f19aa	2021-05-28 02:22:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:22:19.951+03	2021-05-28 02:22:19.958+03	
8199ad1e-9964-bc93-dd86-1a68ba49a7fa	2021-05-28 02:22:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:22:39.951+03	2021-05-28 02:22:39.958+03	
451e7ca7-e07a-ee78-ba02-7e8cadb5dbef	2021-05-28 02:22:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:22:59.951+03	2021-05-28 02:22:59.957+03	
dd18bc13-fa34-e1a8-ecbc-aafd30628df2	2021-05-28 02:23:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:23:19.951+03	2021-05-28 02:23:19.959+03	
a208934a-4186-d665-054a-6503931395f2	2021-05-28 02:23:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:23:39.951+03	2021-05-28 02:23:39.959+03	
743da0b5-1295-a353-da44-f5f76f8c4ba8	2021-05-28 02:23:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:23:59.951+03	2021-05-28 02:23:59.958+03	
7a891d2b-a617-1a54-a256-e193f0c63cec	2021-05-28 02:24:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:24:19.951+03	2021-05-28 02:24:19.957+03	
0863d781-3370-3a44-cbc5-65845ef787a7	2021-05-28 02:24:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:24:39.951+03	2021-05-28 02:24:39.959+03	
29b7d7e6-44b5-76b4-02d5-5ae3d65e9954	2021-05-28 02:24:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:24:59.951+03	2021-05-28 02:24:59.959+03	
53a7437b-c291-e5f9-5692-adeeeacfdc10	2021-05-28 02:25:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:25:20.951+03	2021-05-28 02:25:20.959+03	
006733ed-559e-d224-fc40-72925f7cb91f	2021-05-28 02:25:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:25:40.951+03	2021-05-28 02:25:40.959+03	
8ad198af-b81e-aa03-644f-c6fddcdea84d	2021-05-28 02:26:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:26:00.951+03	2021-05-28 02:26:00.96+03	
46d312dc-cab9-76e3-a3b9-2d2b4f80a5c7	2021-05-28 02:26:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:26:20.952+03	2021-05-28 02:26:20.964+03	
a9241f7f-2cef-46ad-a859-a3710e6eb549	2021-05-28 02:26:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:26:41.951+03	2021-05-28 02:26:41.96+03	
f1d2a2c7-fdd8-bad0-0d94-a6749ce153c1	2021-05-28 02:27:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:27:01.952+03	2021-05-28 02:27:01.963+03	
ae77b847-a05c-72b2-6526-f3d34b7f758b	2021-05-28 02:27:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:27:23.951+03	2021-05-28 02:27:23.958+03	
a70cc28f-777c-faf5-c2a5-bcf88358f5e9	2021-05-28 02:27:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:27:43.951+03	2021-05-28 02:27:43.966+03	
6ae82f9b-90f2-8c4e-f0d5-be1c07af277c	2021-05-28 02:28:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:28:03.951+03	2021-05-28 02:28:03.96+03	
f52b6c61-c865-a058-d156-335389e01aea	2021-05-28 02:28:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:28:23.951+03	2021-05-28 02:28:23.959+03	
019ec4fc-91b4-5d0e-28ad-8c25220ef72a	2021-05-28 02:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:28:43.951+03	2021-05-28 02:28:43.959+03	
1f404982-01ab-0335-96eb-43299e641dd4	2021-05-28 02:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:29:03.951+03	2021-05-28 02:29:03.96+03	
52db5c6b-38d2-20eb-7b11-6304628c2857	2021-05-28 02:29:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:29:23.951+03	2021-05-28 02:29:23.958+03	
39cdb68c-147a-7e71-4c02-0f875940a931	2021-05-28 02:29:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:29:43.951+03	2021-05-28 02:29:43.958+03	
2c522b9d-8db1-9f56-7dc0-0faf39a08c23	2021-05-28 02:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 02:30:00.951+03	2021-05-28 02:30:00.957+03	ERROR
b0c1727c-19c0-5022-ad47-499e3cff5bd6	2021-05-28 02:30:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:30:13.951+03	2021-05-28 02:30:13.961+03	
d3eb3a96-d563-0c4d-0abe-c29d4d38efef	2021-05-28 02:30:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:30:33.951+03	2021-05-28 02:30:33.96+03	
f36e168a-3a0b-d71b-91c3-7fe28339d47b	2021-05-28 02:30:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:30:54.951+03	2021-05-28 02:30:54.959+03	
63958e60-03c6-2f92-1762-2e35aadeaba1	2021-05-28 02:31:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:31:14.951+03	2021-05-28 02:31:14.959+03	
191cf604-5647-37c2-9569-7a1ac71d9a86	2021-05-28 02:31:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:31:34.951+03	2021-05-28 02:31:34.958+03	
37b3f8b2-4d4b-2ea8-b213-8c966caf8223	2021-05-28 02:31:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:31:54.951+03	2021-05-28 02:31:54.957+03	
eed2f232-5ff1-86eb-40ab-1acdeab07b14	2021-05-28 02:32:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:32:14.951+03	2021-05-28 02:32:14.96+03	
8e62c385-e3e8-62a8-9f22-9b7d5aa6727e	2021-05-28 02:32:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:32:34.951+03	2021-05-28 02:32:34.958+03	
fc69c6ce-ceb9-192e-64e8-ede647354946	2021-05-28 02:32:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:32:54.952+03	2021-05-28 02:32:54.958+03	
f87528a7-c6de-cade-8317-af730ab9d33c	2021-05-28 02:33:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:33:15.951+03	2021-05-28 02:33:15.959+03	
a631723a-d6df-1b61-001c-1ca4b0ed4df2	2021-05-28 02:13:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:13:16.951+03	2021-05-28 02:13:16.96+03	
ab265064-cb7e-ad40-4e58-50e3bedec325	2021-05-28 02:13:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:13:36.951+03	2021-05-28 02:13:36.958+03	
d539ccd0-c32c-a047-acdd-5fc86173a033	2021-05-28 02:13:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:13:56.951+03	2021-05-28 02:13:56.958+03	
7146f598-d598-170f-34e5-2c476434f8e9	2021-05-28 02:14:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:14:16.951+03	2021-05-28 02:14:16.959+03	
b91daf92-6fce-cadc-18a0-f1c447da3bc7	2021-05-28 02:14:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:14:36.951+03	2021-05-28 02:14:36.958+03	
90c70688-1c92-cad7-63c0-897b383c7383	2021-05-28 02:14:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:14:56.951+03	2021-05-28 02:14:56.962+03	
1f125a3c-ba7b-16a8-9698-4937d60bbd68	2021-05-28 02:15:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:15:16.952+03	2021-05-28 02:15:16.958+03	
d48da78d-d1cd-aacb-454c-ddac832e488f	2021-05-28 02:15:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:15:37.951+03	2021-05-28 02:15:37.959+03	
ef2a8bf9-2f21-5b40-8610-789108cdc02d	2021-05-28 02:15:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:15:57.952+03	2021-05-28 02:15:57.96+03	
af4644c0-dbce-e0dd-e93c-a1edd650b569	2021-05-28 02:16:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:16:18.951+03	2021-05-28 02:16:18.958+03	
e0ca33d4-6017-10af-9bde-7c20ca7458f4	2021-05-28 02:16:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:16:38.951+03	2021-05-28 02:16:38.959+03	
00bc89df-4890-ecc9-fea6-a242be8e4524	2021-05-28 02:16:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:16:58.951+03	2021-05-28 02:16:58.959+03	
1ea50e4b-c943-b903-f45e-fa21c623e720	2021-05-28 02:17:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:17:18.951+03	2021-05-28 02:17:18.958+03	
b4f1614b-01cf-8a4f-88eb-8311d7f167e5	2021-05-28 02:17:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:17:38.951+03	2021-05-28 02:17:38.958+03	
007e1046-8e36-07a0-8024-6fddd39db2c3	2021-05-28 02:17:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:17:58.951+03	2021-05-28 02:17:58.959+03	
5704596a-afaf-fc52-118a-2d9c5b08abe7	2021-05-28 02:18:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:18:18.951+03	2021-05-28 02:18:18.959+03	
07ff72b4-6fdf-25b4-b600-aed0f461a96f	2021-05-28 02:18:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:18:38.951+03	2021-05-28 02:18:38.96+03	
4158bd67-49fa-5bba-c399-a8f9743e5add	2021-05-28 02:18:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:18:58.951+03	2021-05-28 02:18:58.959+03	
625ae6a3-d3b9-9e6b-73ea-00d866f2d68b	2021-05-28 02:19:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:19:18.951+03	2021-05-28 02:19:18.959+03	
749460dc-7ea4-f227-9ec7-036fb04fee15	2021-05-28 02:19:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:19:38.951+03	2021-05-28 02:19:38.958+03	
f00f00fe-2ebe-6244-8bde-0e5a5f847259	2021-05-28 02:19:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:19:59.951+03	2021-05-28 02:19:59.959+03	
98d163dc-e41b-ffd4-eeda-72b92b300a12	2021-05-28 02:20:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:20:09.951+03	2021-05-28 02:20:09.958+03	
a8378874-9fe8-d0d1-c32c-e890f33a3ba6	2021-05-28 02:20:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:20:29.951+03	2021-05-28 02:20:29.962+03	
444a174b-e71c-ba68-7809-8f2b29b1b046	2021-05-28 02:20:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:20:49.951+03	2021-05-28 02:20:49.959+03	
a18e1bfd-6471-8ff1-a5a5-067381e6bdcf	2021-05-28 02:21:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:21:09.951+03	2021-05-28 02:21:09.958+03	
e7a9262c-bda4-54e8-444e-0fccec3cfdb1	2021-05-28 02:21:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:21:29.951+03	2021-05-28 02:21:29.958+03	
25dbd9ea-2b6a-a744-6243-7b57311e86c6	2021-05-28 02:21:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:21:49.951+03	2021-05-28 02:21:49.958+03	
1a281846-c28c-d044-d4f2-0721949baf63	2021-05-28 02:22:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:22:09.951+03	2021-05-28 02:22:09.959+03	
538ce916-1887-8f60-f235-f2fb4a776438	2021-05-28 02:22:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:22:29.951+03	2021-05-28 02:22:29.959+03	
f8bf99f6-0710-52e2-782a-f0f50a2cf3ce	2021-05-28 02:22:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:22:49.951+03	2021-05-28 02:22:49.957+03	
9e93f202-8084-1b26-cfd9-40c1ee043fe9	2021-05-28 02:23:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:23:09.951+03	2021-05-28 02:23:09.959+03	
83e919e2-0eb7-636d-40e3-d78b4252de26	2021-05-28 02:23:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:23:29.951+03	2021-05-28 02:23:29.967+03	
6981e4df-76e7-ad18-97d2-51ce65746975	2021-05-28 02:23:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:23:49.951+03	2021-05-28 02:23:49.959+03	
d0ef4df5-4141-c586-585e-571430f94709	2021-05-28 02:24:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:24:09.951+03	2021-05-28 02:24:09.959+03	
648e0f47-4574-e0bb-0b27-31001e1aa4a9	2021-05-28 02:24:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:24:29.951+03	2021-05-28 02:24:29.96+03	
c91f534d-87d9-67c7-6227-007872df257b	2021-05-28 02:24:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:24:49.951+03	2021-05-28 02:24:49.959+03	
5958d5af-b8d7-4a37-620e-cfca98091eab	2021-05-28 02:25:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:25:09.952+03	2021-05-28 02:25:09.958+03	
127e2465-8977-889f-38b4-5b84ce5ae29b	2021-05-28 02:25:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:25:30.951+03	2021-05-28 02:25:30.959+03	
e6412300-5cbb-38e2-6ff5-2ac7f36b4cad	2021-05-28 02:25:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:25:50.951+03	2021-05-28 02:25:50.958+03	
0ab1cb51-d30d-eafc-fbb7-5e798c76187d	2021-05-28 02:26:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:26:10.951+03	2021-05-28 02:26:10.959+03	
4fa05833-715a-7795-5569-0206767db20c	2021-05-28 02:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:26:31.951+03	2021-05-28 02:26:31.959+03	
123febee-4f87-32ff-8c3e-389df5b4c400	2021-05-28 02:26:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:26:51.951+03	2021-05-28 02:26:51.96+03	
3096e958-4153-ca7d-6460-be864c676c40	2021-05-28 02:27:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:27:12.952+03	2021-05-28 02:27:12.965+03	
1d41a5db-ef90-fa96-c808-af5c685feaf0	2021-05-28 02:27:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:27:33.951+03	2021-05-28 02:27:33.959+03	
ffdacc60-d6b0-2755-0e76-e1e8debb0b46	2021-05-28 02:27:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:27:53.951+03	2021-05-28 02:27:53.958+03	
04621ce9-0844-9bdd-ff9a-75a37966cc46	2021-05-28 02:28:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:28:13.951+03	2021-05-28 02:28:13.957+03	
fca46ff2-774c-2735-a29c-4555c7a25d27	2021-05-28 02:28:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:28:33.951+03	2021-05-28 02:28:33.96+03	
9baae1b6-8285-6b37-1ea5-fe7856bc0986	2021-05-28 02:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:28:53.951+03	2021-05-28 02:28:53.96+03	
6030397a-913a-4957-f4a2-3557e1a6452d	2021-05-28 02:29:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:29:13.951+03	2021-05-28 02:29:13.96+03	
7d9162b9-ce64-454f-f9ad-c0e36b200fd3	2021-05-28 02:29:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:29:33.951+03	2021-05-28 02:29:33.959+03	
37c049fe-735e-543a-b30f-115f23a47607	2021-05-28 02:29:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:29:53.951+03	2021-05-28 02:29:53.961+03	
7eb29720-da59-9bdf-3625-d40dfb4f1bfd	2021-05-28 02:30:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:30:03.951+03	2021-05-28 02:30:03.958+03	
3f3fe250-310b-f974-541f-72f357a2888b	2021-05-28 02:30:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:30:23.951+03	2021-05-28 02:30:23.957+03	
5962ded5-7e57-e544-6609-c63259d2353c	2021-05-28 02:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:30:43.952+03	2021-05-28 02:30:43.96+03	
c5c34d5c-ec46-f1f3-2c67-5fdee34fd161	2021-05-28 02:31:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:31:04.951+03	2021-05-28 02:31:04.959+03	
d7b95d77-26e3-a378-e754-831ce6c2cf25	2021-05-28 02:31:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:31:24.951+03	2021-05-28 02:31:24.961+03	
1997edce-fe37-9758-a917-234cf4b275d2	2021-05-28 02:31:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:31:44.951+03	2021-05-28 02:31:44.967+03	
135e755e-6a54-1228-31eb-5b28370d73a6	2021-05-28 02:32:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:32:04.951+03	2021-05-28 02:32:04.958+03	
d458233f-c19f-0f15-141e-77ccde88a7bf	2021-05-28 02:32:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:32:24.951+03	2021-05-28 02:32:24.962+03	
0da07d6f-c971-2349-49b4-cf984dfc6aff	2021-05-28 02:32:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:32:44.951+03	2021-05-28 02:32:44.958+03	
451bd8cc-7281-ed62-f9e1-4085a64770db	2021-05-28 02:33:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:33:05.951+03	2021-05-28 02:33:05.959+03	
71b75850-9669-6824-4118-bd41b2f3c285	2021-05-28 02:33:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:33:25.951+03	2021-05-28 02:33:25.959+03	
cf48e38a-3ea7-f98f-2fc3-93bea59636bc	2021-05-28 02:33:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:33:45.951+03	2021-05-28 02:33:45.959+03	
7dd1e2cb-57ad-5a3e-96ed-068d09a6b8ba	2021-05-28 02:33:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:33:35.951+03	2021-05-28 02:33:35.96+03	
1c07decb-e0f4-559c-973f-7ec33f341d35	2021-05-28 02:33:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:33:55.951+03	2021-05-28 02:33:55.96+03	
4b2d34d1-4541-ba96-0787-47bdb9f820a3	2021-05-28 02:34:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:34:15.951+03	2021-05-28 02:34:15.959+03	
a67e9fd4-8f31-0e10-1612-24e53476dd67	2021-05-28 02:34:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:34:35.951+03	2021-05-28 02:34:35.959+03	
f1c0ca93-7694-54cf-f0a0-47a7b5241b5a	2021-05-28 02:34:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:34:55.951+03	2021-05-28 02:34:55.96+03	
85d1365f-739f-38b8-134a-a7d9f2fd9762	2021-05-28 02:35:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:35:15.951+03	2021-05-28 02:35:15.958+03	
ca3757ba-9ae1-8de6-1199-45b4868877a2	2021-05-28 02:35:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:35:35.951+03	2021-05-28 02:35:35.96+03	
b6b05e97-2f25-1ab8-ea48-fae9c2ac01ca	2021-05-28 02:35:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:35:55.951+03	2021-05-28 02:35:55.96+03	
1b2f9513-f555-0d50-0d75-218d1ce5650f	2021-05-28 02:36:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:36:15.951+03	2021-05-28 02:36:15.963+03	
9aa0f31e-eb4a-fd27-da44-02a4b3aa28f8	2021-05-28 02:36:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:36:35.951+03	2021-05-28 02:36:35.96+03	
581583cf-3488-757d-954a-75fd2e778f50	2021-05-28 02:36:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:36:55.952+03	2021-05-28 02:36:55.96+03	
36c7d0cf-c64d-48d9-f059-32e13c14b09a	2021-05-28 02:37:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:37:17.952+03	2021-05-28 02:37:17.96+03	
ea73c8fb-982c-35b0-f9d1-fe0da5e308a7	2021-05-28 02:37:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:37:37.953+03	2021-05-28 02:37:37.96+03	
ce844726-542a-2a7f-7cc4-69f558a87081	2021-05-28 02:37:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:37:58.951+03	2021-05-28 02:37:58.958+03	
b680358a-ee02-92af-b6d5-e15f6579957c	2021-05-28 02:38:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:38:18.951+03	2021-05-28 02:38:18.966+03	
f8318023-4e78-620c-4f79-b1ced262b770	2021-05-28 02:38:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:38:38.952+03	2021-05-28 02:38:38.959+03	
6e14f01d-263c-52b7-88b0-f6d253ec889b	2021-05-28 02:38:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:38:59.951+03	2021-05-28 02:38:59.958+03	
a5c75b78-ecaa-31dc-65d2-878f510c2c36	2021-05-28 02:39:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:39:19.951+03	2021-05-28 02:39:19.96+03	
634f534f-975d-2b68-307c-14908bc36fb6	2021-05-28 02:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:39:39.951+03	2021-05-28 02:39:39.959+03	
622eabc3-7ad5-6258-6038-93a3096d534e	2021-05-28 02:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:39:59.951+03	2021-05-28 02:39:59.959+03	
180d991a-d672-920c-b8ce-3e646fa59bea	2021-05-28 02:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:40:09.951+03	2021-05-28 02:40:09.96+03	
7d7b04e2-8904-d796-42fb-836e540d7b9c	2021-05-28 02:40:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:40:29.951+03	2021-05-28 02:40:29.959+03	
3af3f900-80e8-e103-1042-2b2f18c8ddb3	2021-05-28 02:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:40:49.951+03	2021-05-28 02:40:49.959+03	
c8153ebb-47e2-6766-e3ae-a9aa7bc5724f	2021-05-28 02:41:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:41:09.951+03	2021-05-28 02:41:09.962+03	
203306e6-e8e8-0225-1047-3c32e26f2c1c	2021-05-28 02:41:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:41:29.951+03	2021-05-28 02:41:29.958+03	
5c9a6090-afc9-6dda-8327-a8ba6ef180ee	2021-05-28 02:41:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:41:49.951+03	2021-05-28 02:41:49.959+03	
cfe33074-2d71-0e7d-7583-108101a41914	2021-05-28 02:42:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:42:09.951+03	2021-05-28 02:42:09.959+03	
3ecfdf28-8407-322f-c515-f1c7904f5118	2021-05-28 02:42:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:42:30.951+03	2021-05-28 02:42:30.958+03	
add28e26-5a00-1732-4539-167ba0278883	2021-05-28 02:42:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:42:50.951+03	2021-05-28 02:42:50.958+03	
debf3f4c-9db9-dc67-7a85-e89f75b8ec1d	2021-05-28 02:43:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:43:10.951+03	2021-05-28 02:43:10.958+03	
721e627a-79bb-5262-3c77-03977383f44a	2021-05-28 02:43:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:43:30.951+03	2021-05-28 02:43:30.96+03	
3c958f62-7776-bb2d-36ab-925e2a97fdb8	2021-05-28 02:43:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:43:50.951+03	2021-05-28 02:43:50.961+03	
e6ed6214-b4aa-4855-6d62-ac4c67799103	2021-05-28 02:44:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:44:10.951+03	2021-05-28 02:44:10.959+03	
45b48e65-686d-b42e-ccb4-417b254f2f54	2021-05-28 02:44:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:44:30.951+03	2021-05-28 02:44:30.958+03	
bb5f7c1b-3b5f-3954-b588-39d59bacb7c3	2021-05-28 02:44:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:44:50.951+03	2021-05-28 02:44:50.961+03	
5e921831-7892-ebe8-66fb-235c0fd3cf4d	2021-05-28 02:45:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:45:10.951+03	2021-05-28 02:45:10.959+03	
c9e43baf-5496-44ad-8013-8d506c98cf10	2021-05-28 02:45:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:45:30.951+03	2021-05-28 02:45:30.96+03	
158d7bbb-081e-a171-f987-ab05dec81b4e	2021-05-28 02:45:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:45:50.951+03	2021-05-28 02:45:50.959+03	
b027633e-ea6e-5f51-fedc-c04eadbfbb9c	2021-05-28 02:46:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:46:10.951+03	2021-05-28 02:46:10.959+03	
a38fa8cd-b426-3e63-35f7-2ad9c00dd6d0	2021-05-28 02:46:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:46:31.951+03	2021-05-28 02:46:31.959+03	
58a21e37-f116-c19f-ae67-ee2d2485a004	2021-05-28 02:46:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:46:51.951+03	2021-05-28 02:46:51.961+03	
553d4e5b-d808-6a9d-00cf-7ab5d80879b1	2021-05-28 02:47:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:47:11.951+03	2021-05-28 02:47:11.959+03	
47f2e22a-3496-f7a1-37f1-5cb82b894855	2021-05-28 02:47:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:47:31.951+03	2021-05-28 02:47:31.959+03	
ba427ad2-10de-22f7-e7d8-4f28f392da86	2021-05-28 02:47:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:47:51.951+03	2021-05-28 02:47:51.958+03	
6b1c5d08-424d-17a8-1e2f-9ae81cf4491b	2021-05-28 02:48:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:48:11.951+03	2021-05-28 02:48:11.964+03	
dffd35b3-02f4-065b-9353-e4049ee679da	2021-05-28 02:48:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:48:31.951+03	2021-05-28 02:48:31.958+03	
1c9a30be-75b2-1f59-f474-8ac7595e4ce5	2021-05-28 02:48:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:48:51.951+03	2021-05-28 02:48:51.959+03	
dc98c27b-84bd-7153-1a65-6f8039e021c8	2021-05-28 02:49:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:49:11.951+03	2021-05-28 02:49:11.96+03	
b66fe4fe-80c4-d9b0-2cec-f4feddee2892	2021-05-28 02:49:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:49:32.951+03	2021-05-28 02:49:32.961+03	
27d005c0-f53a-6f18-d69c-9d34596c6fcb	2021-05-28 02:49:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:49:52.951+03	2021-05-28 02:49:52.96+03	
72e31eb4-e59f-8673-3c63-26716716fe1e	2021-05-28 02:50:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:50:02.952+03	2021-05-28 02:50:02.96+03	
22920df6-1393-1214-7f1b-32bb0db1a10a	2021-05-28 02:50:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:50:23.951+03	2021-05-28 02:50:23.96+03	
b93077e3-7b03-79ae-459f-433b0c4f00e2	2021-05-28 02:50:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:50:43.951+03	2021-05-28 02:50:43.959+03	
98dd7452-afd7-a235-3f51-341cf4df09e4	2021-05-28 02:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:51:03.951+03	2021-05-28 02:51:03.959+03	
58464fdf-36a3-6bda-a950-a053b86eef49	2021-05-28 02:51:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:51:23.951+03	2021-05-28 02:51:23.957+03	
fd21a427-e00b-c54d-00f7-ef1b39bf4fcb	2021-05-28 02:51:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:51:43.951+03	2021-05-28 02:51:43.958+03	
d9d03bc4-4680-3f83-305c-0ce1c05aef92	2021-05-28 02:52:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:52:03.951+03	2021-05-28 02:52:03.961+03	
4ac2b413-2fc9-706c-168c-4fa05b747f28	2021-05-28 02:52:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:52:23.951+03	2021-05-28 02:52:23.958+03	
00ce5454-0c6e-ace2-4222-6fb5fcba3154	2021-05-28 02:52:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:52:43.951+03	2021-05-28 02:52:43.959+03	
6cc3ab19-1d24-5e27-1b80-732d5ae073e2	2021-05-28 02:53:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:53:03.951+03	2021-05-28 02:53:03.96+03	
2ea41985-88de-0c8e-f6d7-76e336908573	2021-05-28 02:53:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:53:23.951+03	2021-05-28 02:53:23.959+03	
7c900bce-daf6-6003-ea09-ec439efcad24	2021-05-28 02:53:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:53:43.951+03	2021-05-28 02:53:43.958+03	
e5e3cd4b-8ca0-a393-bfd9-eee1fb9f4ba1	2021-05-28 02:54:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:54:03.951+03	2021-05-28 02:54:03.959+03	
b643f946-cb37-5727-e8e6-fa853fe2eac2	2021-05-28 02:34:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:34:05.951+03	2021-05-28 02:34:05.969+03	
4590e73e-1b13-9237-5038-93b27f243c6a	2021-05-28 02:34:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:34:25.951+03	2021-05-28 02:34:25.96+03	
47145e77-429b-fd59-44d2-592d1267b923	2021-05-28 02:34:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:34:45.951+03	2021-05-28 02:34:45.959+03	
97da3023-d1fb-c11d-db01-38df76b323b7	2021-05-28 02:35:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:35:05.951+03	2021-05-28 02:35:05.959+03	
86d73956-0103-a87d-0676-58b49fe57ae5	2021-05-28 02:35:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:35:25.951+03	2021-05-28 02:35:25.958+03	
fc628d9b-5f05-5ec9-6b59-30d7c6353553	2021-05-28 02:35:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:35:45.951+03	2021-05-28 02:35:45.959+03	
33d095c4-c05a-2263-9b55-c87caa02a3f0	2021-05-28 02:36:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:36:05.951+03	2021-05-28 02:36:05.962+03	
e7db09f2-5da4-f2ac-5622-3929e63e33f5	2021-05-28 02:36:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:36:25.951+03	2021-05-28 02:36:25.959+03	
b655313c-00d2-c968-1196-fe604f6cdaaa	2021-05-28 02:36:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:36:45.951+03	2021-05-28 02:36:45.958+03	
0d2a3e2e-d903-76b8-ff66-976b02b2fbc3	2021-05-28 02:37:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:37:06.952+03	2021-05-28 02:37:06.959+03	
ba828053-e381-53e1-bf71-ee0d98d20ac9	2021-05-28 02:37:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:37:27.952+03	2021-05-28 02:37:27.959+03	
57030984-2cc3-2512-5b2c-e1d6f5cef279	2021-05-28 02:37:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:37:48.951+03	2021-05-28 02:37:48.965+03	
34c2d319-4b33-2f1a-f014-e3a70e7d6be8	2021-05-28 02:38:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:38:08.951+03	2021-05-28 02:38:08.966+03	
55db27e0-4a5e-268b-9db4-ea7d94b5e4f1	2021-05-28 02:38:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:38:28.951+03	2021-05-28 02:38:28.959+03	
df4ace07-23db-c9ba-e8c9-449c269f2261	2021-05-28 02:38:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:38:49.951+03	2021-05-28 02:38:49.958+03	
14c1e501-796e-782e-b373-bf040240be35	2021-05-28 02:39:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:39:09.951+03	2021-05-28 02:39:09.96+03	
39c4a5b1-5726-67d7-5b92-e5071a3e10e1	2021-05-28 02:39:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:39:29.951+03	2021-05-28 02:39:29.957+03	
24134301-19c8-5fe8-3ee4-865f841d8c83	2021-05-28 02:39:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:39:49.951+03	2021-05-28 02:39:49.959+03	
b2c35871-0260-a349-2db9-5b339dc0ba87	2021-05-28 02:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 02:40:00.952+03	2021-05-28 02:40:00.958+03	ERROR
d3fecb28-6f5f-35bb-d601-e33dfbf41884	2021-05-28 02:40:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:40:19.951+03	2021-05-28 02:40:19.959+03	
7b450e87-a0ac-6b55-dc48-e2a27b17ba99	2021-05-28 02:40:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:40:39.951+03	2021-05-28 02:40:39.958+03	
d60ccc14-2cb1-4be8-60e3-971e3bb2c54e	2021-05-28 02:40:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:40:59.951+03	2021-05-28 02:40:59.96+03	
c659ffed-22bc-c8cf-cbda-580e4f8c2941	2021-05-28 02:41:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:41:19.951+03	2021-05-28 02:41:19.958+03	
2b810fb8-dded-1cdd-1eb3-b3ccf10025aa	2021-05-28 02:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:41:39.951+03	2021-05-28 02:41:39.958+03	
5f020c1c-d23b-e8c0-5ed7-27f175faf3a8	2021-05-28 02:41:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:41:59.951+03	2021-05-28 02:41:59.957+03	
dffbb4c6-25d8-7437-ef43-63c1284c73e9	2021-05-28 02:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:42:19.952+03	2021-05-28 02:42:19.961+03	
ebec7e40-b4d6-8504-bde0-b1b47491fbb0	2021-05-28 02:42:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:42:40.951+03	2021-05-28 02:42:40.96+03	
f10191b6-7f4e-c128-2a23-e7fa770592d6	2021-05-28 02:43:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:43:00.951+03	2021-05-28 02:43:00.959+03	
9b9fd858-92a7-7f29-38e9-5d1c44bdf596	2021-05-28 02:43:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:43:20.951+03	2021-05-28 02:43:20.959+03	
7b7ee746-068e-ca01-c0f1-ef9a9b7b0725	2021-05-28 02:43:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:43:40.951+03	2021-05-28 02:43:40.959+03	
33474360-3812-42aa-6824-6200562ee67b	2021-05-28 02:44:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:44:00.951+03	2021-05-28 02:44:00.958+03	
f37471d5-3a41-f6fa-5fd5-fa74ffbd4bb1	2021-05-28 02:44:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:44:20.951+03	2021-05-28 02:44:20.959+03	
6e5781b6-7d06-5009-c11d-f1a501a00cb8	2021-05-28 02:44:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:44:40.951+03	2021-05-28 02:44:40.969+03	
5bd989e9-8657-b0f2-eb25-8939b5b6f2e8	2021-05-28 02:45:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:45:00.951+03	2021-05-28 02:45:00.963+03	
980765bc-0aed-cfe2-0457-aa9b52922974	2021-05-28 02:45:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:45:20.951+03	2021-05-28 02:45:20.958+03	
44c99d68-a897-00a8-7e4d-d03d645ba3c0	2021-05-28 02:45:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:45:40.951+03	2021-05-28 02:45:40.958+03	
55e1168a-244a-337c-92da-2e0c71030af2	2021-05-28 02:46:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:46:00.951+03	2021-05-28 02:46:00.958+03	
f193267e-13b4-ad22-dc44-b9b2e58f6ce4	2021-05-28 02:46:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:46:20.952+03	2021-05-28 02:46:20.96+03	
1a6795cb-476d-a7fe-3781-edf9eadc6dd0	2021-05-28 02:46:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:46:41.951+03	2021-05-28 02:46:41.958+03	
b9535ceb-36be-0056-0e35-213673bd1841	2021-05-28 02:47:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:47:01.951+03	2021-05-28 02:47:01.958+03	
ffb9e400-b243-7706-e8d8-ffb7c9d3b649	2021-05-28 02:47:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:47:21.951+03	2021-05-28 02:47:21.959+03	
270165c9-ffd7-d637-4a0d-d210bda80ad1	2021-05-28 02:47:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:47:41.951+03	2021-05-28 02:47:41.959+03	
36b3126c-1b33-c67c-89c0-b9ca8ae78a99	2021-05-28 02:48:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:48:01.951+03	2021-05-28 02:48:01.959+03	
33b2d2bc-98c0-4c93-8350-b7ba3773ddb4	2021-05-28 02:48:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:48:21.951+03	2021-05-28 02:48:21.959+03	
daad1f43-aafa-fa6e-3c5a-05260906eeff	2021-05-28 02:48:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:48:41.951+03	2021-05-28 02:48:41.959+03	
42f6af6d-7dcf-e574-3281-5ea471d07831	2021-05-28 02:49:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:49:01.951+03	2021-05-28 02:49:01.959+03	
b60afa38-725f-d786-3050-a525c0948934	2021-05-28 02:49:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:49:21.952+03	2021-05-28 02:49:21.963+03	
e6c88d71-3fce-3c0e-9270-d1d08942c6fa	2021-05-28 02:49:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:49:42.951+03	2021-05-28 02:49:42.961+03	
ff16d47a-6201-9fa2-d906-586ec76f6674	2021-05-28 02:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 02:50:00.951+03	2021-05-28 02:50:00.958+03	ERROR
389c29dc-c21b-32f3-d62a-531abf65b27e	2021-05-28 02:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:50:13.951+03	2021-05-28 02:50:13.96+03	
2d65f908-9481-4da2-ae00-454ec4041104	2021-05-28 02:50:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:50:33.951+03	2021-05-28 02:50:33.959+03	
42e34776-ffd6-6cb9-8cd2-eefda734e065	2021-05-28 02:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:50:53.951+03	2021-05-28 02:50:53.959+03	
ac53ac1d-6b93-24e7-2e17-e7a205609faa	2021-05-28 02:51:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:51:13.951+03	2021-05-28 02:51:13.959+03	
8dd868a0-3854-f690-26ee-b92272d32f5f	2021-05-28 02:51:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:51:33.951+03	2021-05-28 02:51:33.959+03	
fb198334-fa44-a3fc-6bed-ec1e7e0b75c0	2021-05-28 02:51:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:51:53.951+03	2021-05-28 02:51:53.959+03	
c0f92cdd-f5fd-d180-e523-60ac77b416e7	2021-05-28 02:52:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:52:13.951+03	2021-05-28 02:52:13.96+03	
10407e90-a3d1-b721-279f-4d69635979da	2021-05-28 02:52:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:52:33.951+03	2021-05-28 02:52:33.959+03	
f466049e-1845-747a-54bf-33837c62b682	2021-05-28 02:52:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:52:53.951+03	2021-05-28 02:52:53.958+03	
18d49caf-8a59-0179-9779-70a393632633	2021-05-28 02:53:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:53:13.951+03	2021-05-28 02:53:13.958+03	
e7f5f391-005d-acb9-0bdc-c4ee903d5a42	2021-05-28 02:53:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:53:33.951+03	2021-05-28 02:53:33.958+03	
8f6b2011-396d-10fb-69db-d6d580cf91ca	2021-05-28 02:53:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:53:53.951+03	2021-05-28 02:53:53.96+03	
080d15c5-66d9-d0e2-7da1-10f40f7b8819	2021-05-28 02:54:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:54:13.951+03	2021-05-28 02:54:13.96+03	
1b6ce845-9516-880e-47e4-f73d4169fa99	2021-05-28 02:54:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:54:33.951+03	2021-05-28 02:54:33.957+03	
0dfbcd85-7858-5fdb-91ea-a12373594b74	2021-05-28 02:54:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:54:23.951+03	2021-05-28 02:54:23.96+03	
ee5879a8-c1db-c1bd-5f1c-692d01119033	2021-05-28 02:54:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:54:43.951+03	2021-05-28 02:54:43.958+03	
540d04af-6f9b-fc34-f32d-5dcd1f3bc762	2021-05-28 02:55:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:55:03.951+03	2021-05-28 02:55:04.195+03	
8c4bb10d-c521-f663-3216-010fab45f2f1	2021-05-28 02:55:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:55:23.951+03	2021-05-28 02:55:23.958+03	
b3f046bc-d714-6b61-22cf-6460bf4562aa	2021-05-28 02:55:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:55:43.951+03	2021-05-28 02:55:43.958+03	
e68e2882-b6bc-8cf7-541b-c2f6b1422f2c	2021-05-28 02:56:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:56:03.951+03	2021-05-28 02:56:03.962+03	
70937994-0ed1-305e-a476-825f987cd0ad	2021-05-28 02:56:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:56:23.952+03	2021-05-28 02:56:23.96+03	
5b975579-a70d-953c-6c02-cf171d8f04d6	2021-05-28 02:56:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:56:44.952+03	2021-05-28 02:56:44.958+03	
51c550ae-dc4b-87e2-7412-b9fd9200b72b	2021-05-28 02:57:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:57:06.951+03	2021-05-28 02:57:06.959+03	
108fcf9b-57b0-df97-8990-b7a8fe950855	2021-05-28 02:57:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:57:26.951+03	2021-05-28 02:57:26.96+03	
bbb21571-24f6-78dc-a043-f4b62f563dfe	2021-05-28 02:57:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:57:46.952+03	2021-05-28 02:57:46.962+03	
9a0ec441-dae5-c0d8-5239-1702cffc015e	2021-05-28 02:58:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:58:07.951+03	2021-05-28 02:58:07.959+03	
d2ea0444-87f2-3698-b444-c89762f7ef16	2021-05-28 02:58:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:58:27.952+03	2021-05-28 02:58:27.961+03	
8b3e4a15-8d12-3590-ec8f-c651a68f5be0	2021-05-28 02:58:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:58:47.953+03	2021-05-28 02:58:47.962+03	
243eab9b-44ef-fcdd-4ff2-7173fd530f02	2021-05-28 02:59:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:59:08.951+03	2021-05-28 02:59:08.961+03	
f208ad5d-1f3e-63b7-6baa-e804a8d4c6f5	2021-05-28 02:59:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:59:28.951+03	2021-05-28 02:59:28.958+03	
5b7134ae-0cb5-a94a-3df8-08d9c53ff855	2021-05-28 02:59:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:59:48.951+03	2021-05-28 02:59:48.958+03	
3a86b3ed-ab74-7db1-ceb0-58c03313cd75	2021-05-28 03:00:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:00:08.951+03	2021-05-28 03:00:08.961+03	
bbfbe572-1b18-5aae-f5e0-f15dbba87ae0	2021-05-28 03:00:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:00:28.951+03	2021-05-28 03:00:29.195+03	
2d00f044-02aa-4c30-9810-d7456d2c1204	2021-05-28 03:00:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:00:48.951+03	2021-05-28 03:00:48.96+03	
314bc19a-097c-3dc7-320a-cb7b18d61997	2021-05-28 03:01:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:01:08.951+03	2021-05-28 03:01:08.96+03	
f55f5837-e1ff-ea19-40cd-ab3cd782acce	2021-05-28 03:01:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:01:28.951+03	2021-05-28 03:01:28.958+03	
987518a1-5848-431c-bef7-be499382fae6	2021-05-28 03:01:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:01:48.951+03	2021-05-28 03:01:48.959+03	
c4ef0153-2a32-7816-fcd3-18cef16a3d96	2021-05-28 03:02:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:02:08.951+03	2021-05-28 03:02:08.961+03	
69cda31f-77ef-d5fc-ceb0-06c6bc9f352c	2021-05-28 03:02:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:02:28.951+03	2021-05-28 03:02:28.957+03	
85253b5d-8d9e-07eb-72e8-f38e1ad19076	2021-05-28 03:02:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:02:48.951+03	2021-05-28 03:02:48.959+03	
dbf7ea22-bc90-2b3b-f210-5554559b5a9c	2021-05-28 03:03:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:03:08.951+03	2021-05-28 03:03:08.961+03	
1e5b231e-e598-913d-52cd-1495a322aaea	2021-05-28 03:03:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:03:29.951+03	2021-05-28 03:03:29.959+03	
b4495edc-b285-ffff-89d1-0ba28edc35bc	2021-05-28 03:03:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:03:49.952+03	2021-05-28 03:03:49.96+03	
f99d7b59-b58f-f378-f507-697cb98d062d	2021-05-28 03:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:04:10.951+03	2021-05-28 03:04:10.959+03	
0fdba034-bb6e-2a7e-c141-f9cb51a07633	2021-05-28 03:04:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:04:31.951+03	2021-05-28 03:04:31.959+03	
a97137d5-95e4-c8b2-14bb-eebd4d64a2e6	2021-05-28 03:04:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:04:51.951+03	2021-05-28 03:04:51.959+03	
1048f232-efd2-9459-79a4-dd68311a6b95	2021-05-28 03:05:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:05:11.951+03	2021-05-28 03:05:11.959+03	
15c41766-5b19-4c90-b2b6-12caec0f4c3c	2021-05-28 03:05:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:05:32.953+03	2021-05-28 03:05:32.961+03	
db005ce2-ca36-14a0-7b86-2291bd4a573c	2021-05-28 03:05:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:05:53.952+03	2021-05-28 03:05:53.967+03	
7280107a-c4e7-e062-46ae-f01713035746	2021-05-28 03:06:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:06:14.951+03	2021-05-28 03:06:14.957+03	
5f67bad5-03a7-0f96-2a3a-e38c94c160b2	2021-05-28 03:06:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:06:34.951+03	2021-05-28 03:06:34.958+03	
a31d6bd4-3026-abd9-1d6b-525ba8afa7b6	2021-05-28 03:06:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:06:54.952+03	2021-05-28 03:06:54.958+03	
4e0a6ea6-3cb2-eb5c-adba-b54e9f9978e9	2021-05-28 03:07:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:07:15.951+03	2021-05-28 03:07:15.96+03	
d0455ac8-e0ca-4ec7-a855-6d7d855d9a2d	2021-05-28 03:07:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:07:35.951+03	2021-05-28 03:07:35.96+03	
4282457e-ffb5-40e8-c2a7-6a7642824983	2021-05-28 03:07:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:07:55.951+03	2021-05-28 03:07:55.959+03	
c6e4165f-c2bf-271c-f2a4-45873102ddd7	2021-05-28 03:08:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:08:15.951+03	2021-05-28 03:08:15.958+03	
97de1c44-5289-9b66-5ce6-d1faaa81e840	2021-05-28 03:08:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:08:35.951+03	2021-05-28 03:08:35.958+03	
f948fb38-0ba0-556b-95d6-9fc0a3e6f468	2021-05-28 03:08:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:08:55.951+03	2021-05-28 03:08:55.96+03	
17cfdbfd-6bd5-6af9-cbc2-ec32fd284f3d	2021-05-28 03:09:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:09:15.951+03	2021-05-28 03:09:15.964+03	
d235e2a1-f751-25ed-57f9-be62a183944e	2021-05-28 03:09:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:09:35.951+03	2021-05-28 03:09:35.958+03	
826e417a-be78-7881-4eb1-9ffa4c37d450	2021-05-28 03:09:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:09:56.951+03	2021-05-28 03:09:56.961+03	
bc59e814-6345-ff69-0cd7-728ab3271798	2021-05-28 03:10:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:10:06.951+03	2021-05-28 03:10:06.958+03	
c568839d-ed49-43c4-ef23-44b59b1625ea	2021-05-28 03:10:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:10:26.951+03	2021-05-28 03:10:26.959+03	
4fb562e6-d9f2-6ff7-c4a2-1e62bdfe7be7	2021-05-28 03:10:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:10:46.951+03	2021-05-28 03:10:46.961+03	
367ec9ec-91cc-150f-990f-1ce71afa76db	2021-05-28 03:11:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:11:06.952+03	2021-05-28 03:11:06.958+03	
7fa04e38-7d73-945d-f5d1-e01d47d8aeaf	2021-05-28 03:11:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:11:27.952+03	2021-05-28 03:11:27.959+03	
d9aa9890-1f50-7888-ce6c-21a8283529ab	2021-05-28 03:11:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:11:47.952+03	2021-05-28 03:11:47.96+03	
dc04886c-60f8-2e53-d9aa-282b7dc27911	2021-05-28 03:12:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:12:08.952+03	2021-05-28 03:12:08.96+03	
8333a2e5-57df-6cee-b09e-0254f1e0cbad	2021-05-28 03:12:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:12:29.951+03	2021-05-28 03:12:29.958+03	
2a331c14-b51b-5e4f-6f0c-32b2853ad9fe	2021-05-28 03:12:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:12:49.951+03	2021-05-28 03:12:49.959+03	
a3e94981-e336-bf0c-2a77-e44b8b9967d5	2021-05-28 03:13:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:13:09.951+03	2021-05-28 03:13:09.959+03	
d8bf3e85-ceea-6d0f-0ae0-7ce6395723df	2021-05-28 03:13:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:13:29.951+03	2021-05-28 03:13:29.959+03	
a795a329-5ae5-8d9f-bcf5-6061f7d0edb3	2021-05-28 03:13:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:13:50.951+03	2021-05-28 03:13:50.96+03	
99d300d3-a9e4-e538-1ca6-c580102e9883	2021-05-28 03:14:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:14:10.951+03	2021-05-28 03:14:10.959+03	
2501d484-7f93-3293-7521-129dcb91723a	2021-05-28 03:14:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:14:30.951+03	2021-05-28 03:14:30.959+03	
024c9c81-a7e1-56b7-f1e8-922436b39f80	2021-05-28 03:14:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:14:50.951+03	2021-05-28 03:14:50.958+03	
5932ed0d-091b-8022-a9b1-933bd6ee4a7e	2021-05-28 03:15:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:15:10.951+03	2021-05-28 03:15:10.959+03	
068e52ae-9658-3e2b-cc64-03c12d89e59b	2021-05-28 02:54:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:54:53.951+03	2021-05-28 02:54:53.959+03	
5b47b34e-c015-8a85-a600-d62abdd3ac05	2021-05-28 02:55:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:55:13.951+03	2021-05-28 02:55:13.959+03	
c4e53e19-34c4-2896-ef55-3e9ca0adac98	2021-05-28 02:55:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:55:33.951+03	2021-05-28 02:55:33.959+03	
a7d226cf-8238-4d92-67e1-3ac1a8d58d8f	2021-05-28 02:55:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:55:53.951+03	2021-05-28 02:55:53.958+03	
cd141c20-8f1c-cb86-051b-f48bd12f012b	2021-05-28 02:56:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:56:13.951+03	2021-05-28 02:56:13.958+03	
3f1acd03-bb43-1767-95cd-b915ad7c9719	2021-05-28 02:56:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:56:34.951+03	2021-05-28 02:56:34.958+03	
28b04b05-a25c-4b74-0b06-668bdf7a7fad	2021-05-28 02:56:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:56:55.952+03	2021-05-28 02:56:55.959+03	
5de756ac-9bcf-e8b4-a997-9bbea1943dd5	2021-05-28 02:57:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:57:16.951+03	2021-05-28 02:57:16.96+03	
6d2ffeb5-3b83-565e-a71f-964b987123a2	2021-05-28 02:57:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:57:36.951+03	2021-05-28 02:57:36.958+03	
34594a10-1faa-bb5d-90a4-5b0175e6ec31	2021-05-28 02:57:57.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:57:57.951+03	2021-05-28 02:57:57.958+03	
4a4a62bd-be57-62a4-01d3-b26926f94698	2021-05-28 02:58:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:58:17.951+03	2021-05-28 02:58:17.958+03	
aca7af91-0e70-36eb-1cf9-eb1b67f64e2d	2021-05-28 02:58:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:58:37.952+03	2021-05-28 02:58:37.958+03	
73526b74-85c0-5f02-89bf-9eb86da358e7	2021-05-28 02:58:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:58:58.951+03	2021-05-28 02:58:58.958+03	
a17ff1e3-ac27-4813-bd54-e98adbb8cea9	2021-05-28 02:59:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:59:18.951+03	2021-05-28 02:59:18.959+03	
95fd5cd3-225c-5ae9-c029-f8db49334623	2021-05-28 02:59:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:59:38.951+03	2021-05-28 02:59:38.96+03	
d3ceec31-f591-d952-c750-e0a4d0f241fd	2021-05-28 02:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 02:59:58.951+03	2021-05-28 02:59:58.959+03	
870e87a4-604a-be09-494a-b71415c8bb0a	2021-05-28 03:00:00.957	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 03:00:00.951+03	2021-05-28 03:00:00.965+03	ERROR
901924cf-a172-b63e-fa7c-562be2396f7a	2021-05-28 03:00:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:00:18.951+03	2021-05-28 03:00:18.961+03	
45bc6b96-3659-9cbc-a1f3-8360c4871ee1	2021-05-28 03:00:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:00:38.951+03	2021-05-28 03:00:38.958+03	
a8af357c-1db0-b162-64fe-511a2d3c17b7	2021-05-28 03:00:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:00:58.951+03	2021-05-28 03:00:58.958+03	
2f66409d-6b4c-38a2-bad1-5ea590fa12ed	2021-05-28 03:01:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:01:18.951+03	2021-05-28 03:01:18.96+03	
4c6e3811-7fc4-1a63-7a80-b210b558958b	2021-05-28 03:01:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:01:38.951+03	2021-05-28 03:01:38.971+03	
2f423147-1c0c-919a-28ec-e94a94bb74c9	2021-05-28 03:01:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:01:58.951+03	2021-05-28 03:01:58.964+03	
fc06ef80-317d-6472-6961-010030cada2b	2021-05-28 03:02:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:02:18.951+03	2021-05-28 03:02:18.959+03	
f3efad00-d33a-2949-ec11-243afb0cc6b4	2021-05-28 03:02:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:02:38.951+03	2021-05-28 03:02:38.958+03	
96e9556e-d972-0aab-73bf-2dedf8243d41	2021-05-28 03:02:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:02:58.951+03	2021-05-28 03:02:58.958+03	
f4a0cded-3f4f-9d10-d455-394fac811c21	2021-05-28 03:03:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:03:18.952+03	2021-05-28 03:03:18.959+03	
2c0d012b-0a10-61de-c621-e6cc9a147616	2021-05-28 03:03:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:03:39.951+03	2021-05-28 03:03:39.959+03	
e8fec6a0-7798-0613-bb0c-9d945e04af37	2021-05-28 03:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:04:00.951+03	2021-05-28 03:04:00.96+03	
41cfb28e-d132-bc4f-5ab8-5c014f428ac7	2021-05-28 03:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:04:20.952+03	2021-05-28 03:04:20.961+03	
b8e63dc1-e00a-1440-ba9d-749d959d4766	2021-05-28 03:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:04:41.951+03	2021-05-28 03:04:41.959+03	
bd26c549-7bfa-b93c-ddb5-f76c312b12e7	2021-05-28 03:05:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:05:01.951+03	2021-05-28 03:05:01.957+03	
b52d8091-e0c2-36c5-3834-e49ab084319d	2021-05-28 03:05:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:05:21.952+03	2021-05-28 03:05:21.96+03	
01601d52-371c-bae7-9959-450f952e8039	2021-05-28 03:05:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:05:43.951+03	2021-05-28 03:05:43.958+03	
f10ad77c-4de4-88e4-e40e-4ad325e1574a	2021-05-28 03:06:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:06:04.951+03	2021-05-28 03:06:04.958+03	
0cce7937-4c46-89f2-5d3f-f8842ae6173b	2021-05-28 03:06:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:06:24.951+03	2021-05-28 03:06:24.958+03	
318f2b6f-4352-67e9-8c10-f8fed50673b6	2021-05-28 03:06:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:06:44.951+03	2021-05-28 03:06:44.958+03	
9607b71c-c422-e78c-4a70-d14fb2b09685	2021-05-28 03:07:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:07:05.951+03	2021-05-28 03:07:05.959+03	
b95bfd74-6080-a783-04ab-ff8d21eb52ea	2021-05-28 03:07:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:07:25.951+03	2021-05-28 03:07:25.959+03	
0d8aa0ba-6617-a821-3a7e-b2116a82c34a	2021-05-28 03:07:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:07:45.951+03	2021-05-28 03:07:45.958+03	
0a949ee0-9208-de4a-53ea-22ad57265edc	2021-05-28 03:08:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:08:05.951+03	2021-05-28 03:08:05.961+03	
6d3ef251-3e54-1213-adb4-b18e1d982b40	2021-05-28 03:08:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:08:25.951+03	2021-05-28 03:08:25.96+03	
eb7bf192-4ca6-cc3e-4951-947c9597f0f1	2021-05-28 03:08:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:08:45.951+03	2021-05-28 03:08:45.96+03	
f53d7c13-c6df-0d91-3a09-b61c089ab7ef	2021-05-28 03:09:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:09:05.951+03	2021-05-28 03:09:05.959+03	
e30a5ca1-eaeb-04fd-0fd0-918d31547178	2021-05-28 03:09:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:09:25.951+03	2021-05-28 03:09:25.959+03	
92cbf433-097c-1550-4dce-31a7ee6c65a6	2021-05-28 03:09:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:09:45.952+03	2021-05-28 03:09:45.96+03	
87084093-38b2-6ba5-e235-83c8cf608287	2021-05-28 03:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 03:10:00.951+03	2021-05-28 03:10:00.957+03	ERROR
a9f369f5-9f60-428d-dd64-fd353018ddc5	2021-05-28 03:10:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:10:16.951+03	2021-05-28 03:10:16.958+03	
1addb3ef-104d-ebf4-9d00-1e1fbf2f0937	2021-05-28 03:10:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:10:36.951+03	2021-05-28 03:10:36.959+03	
4587c53f-1e08-e757-8663-abd5f67dd019	2021-05-28 03:10:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:10:56.951+03	2021-05-28 03:10:56.959+03	
d13b2fa1-2b37-c3b7-0f06-001d77acd2e3	2021-05-28 03:11:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:11:17.952+03	2021-05-28 03:11:17.961+03	
597a665d-8cdf-69c3-d63b-6101c531f75d	2021-05-28 03:11:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:11:37.952+03	2021-05-28 03:11:37.958+03	
6a9a0acd-2199-6c22-02ec-ca2faf0e0ba2	2021-05-28 03:11:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:11:58.951+03	2021-05-28 03:11:58.958+03	
ca4ef6d0-7c43-8c3e-cd1e-84e8f1cd54ea	2021-05-28 03:12:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:12:18.952+03	2021-05-28 03:12:18.961+03	
df777b21-e523-b2c1-9e16-30bc6a2f8eff	2021-05-28 03:12:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:12:39.951+03	2021-05-28 03:12:39.96+03	
b6ace824-e8ec-e391-5889-f096920fa58f	2021-05-28 03:12:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:12:59.951+03	2021-05-28 03:12:59.959+03	
8d798e13-01e5-3279-5596-8df477ea48bc	2021-05-28 03:13:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:13:19.951+03	2021-05-28 03:13:19.958+03	
be063c36-9f45-587e-13be-0f7cc4f7ba06	2021-05-28 03:13:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:13:39.952+03	2021-05-28 03:13:39.959+03	
9be1bcac-36f3-9bcb-c64f-9fe5235fb65f	2021-05-28 03:14:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:14:00.951+03	2021-05-28 03:14:00.959+03	
db7544fc-f23a-9867-4904-fcd9a91f2c17	2021-05-28 03:14:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:14:20.951+03	2021-05-28 03:14:20.959+03	
4fd11a84-c27e-b898-5c20-e9f6fce245ac	2021-05-28 03:14:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:14:40.951+03	2021-05-28 03:14:40.959+03	
e42ef863-2df7-c5ce-e0e1-55bd6d9592d3	2021-05-28 03:15:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:15:00.951+03	2021-05-28 03:15:00.961+03	
7aa285f1-3ff8-a2c2-74c4-8ee2960739c7	2021-05-28 03:15:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:15:20.951+03	2021-05-28 03:15:20.96+03	
a5f23709-81f3-e862-7fbb-d6ce890e7f0d	2021-05-28 03:15:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:15:30.951+03	2021-05-28 03:15:30.959+03	
c90c3e07-51bc-6013-a621-085b57fe4c64	2021-05-28 03:15:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:15:50.951+03	2021-05-28 03:15:50.958+03	
26e95a8a-68c9-b940-c35d-541af162cf0c	2021-05-28 03:16:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:16:10.951+03	2021-05-28 03:16:10.959+03	
6eebe066-ba05-23e2-20fc-5805c0fa0861	2021-05-28 03:16:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:16:30.952+03	2021-05-28 03:16:30.971+03	
a67d63b0-0c06-63de-8080-d12b08d9bcbf	2021-05-28 03:16:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:16:51.952+03	2021-05-28 03:16:51.96+03	
f8981d7c-162d-c053-aac5-677661f3be1f	2021-05-28 03:17:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:17:12.952+03	2021-05-28 03:17:12.958+03	
766686d4-0016-0f09-4dbb-2ddd2e5c972f	2021-05-28 03:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:17:33.951+03	2021-05-28 03:17:33.959+03	
43231845-24a7-a50e-a55a-2250daff5564	2021-05-28 03:17:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:17:53.951+03	2021-05-28 03:17:53.959+03	
7285549d-2727-5693-c9ce-14edb1244900	2021-05-28 03:18:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:18:13.951+03	2021-05-28 03:18:13.958+03	
722c11f2-57e6-bec1-8534-97b0fd6be85a	2021-05-28 03:18:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:18:33.951+03	2021-05-28 03:18:33.958+03	
411e7e6f-9272-923c-ac3d-345d7d6c99f9	2021-05-28 03:18:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:18:53.951+03	2021-05-28 03:18:53.96+03	
22338566-4ae8-b8a4-23b4-d255e65e9636	2021-05-28 03:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:19:13.952+03	2021-05-28 03:19:13.959+03	
da7e40d5-4fdd-4c80-8f42-0cf52170450a	2021-05-28 03:19:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:19:33.952+03	2021-05-28 03:19:33.962+03	
38dcf980-4730-0ebd-ea2a-8b0baf57fe2e	2021-05-28 03:19:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:19:53.952+03	2021-05-28 03:19:53.96+03	
a24a3916-fd34-d57e-580a-db2a0ecb3a85	2021-05-28 03:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:20:04.951+03	2021-05-28 03:20:04.959+03	
f091acb9-f54e-38d8-7e06-1d0f5b59e394	2021-05-28 03:20:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:20:24.951+03	2021-05-28 03:20:25.321+03	
9577676b-91d6-f65a-32a2-2df630210afd	2021-05-28 03:20:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:20:44.951+03	2021-05-28 03:20:44.968+03	
92cbd647-ca73-a269-8aa5-d698a5defddd	2021-05-28 03:21:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:21:04.951+03	2021-05-28 03:21:04.957+03	
6c5b6502-789f-f517-01be-d52a7f6449bf	2021-05-28 03:21:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:21:24.951+03	2021-05-28 03:21:24.958+03	
b369c8fc-2b9a-db31-fbe9-4ee493caf095	2021-05-28 03:21:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:21:44.951+03	2021-05-28 03:21:44.958+03	
74a35ce8-2f7f-71c3-25dd-3cad0e429feb	2021-05-28 03:22:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:22:04.951+03	2021-05-28 03:22:04.963+03	
3203f047-54e0-2259-8aaf-8644c8dd8257	2021-05-28 03:22:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:22:24.951+03	2021-05-28 03:22:24.959+03	
5e403559-a8fd-4cd5-f7d0-182903438a3f	2021-05-28 03:22:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:22:45.951+03	2021-05-28 03:22:45.961+03	
7f1e3035-6005-e65f-70d7-1544571901a9	2021-05-28 03:23:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:23:05.951+03	2021-05-28 03:23:05.959+03	
c3fb7c1e-5e03-98bc-ef1f-f1c53afbe9f6	2021-05-28 03:23:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:23:25.951+03	2021-05-28 03:23:25.958+03	
6e277a90-1e05-3a6e-70c5-62e0884a586a	2021-05-28 03:23:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:23:45.951+03	2021-05-28 03:23:45.958+03	
2ad33b9f-4c51-86b7-141f-9af0155469ca	2021-05-28 03:24:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:24:05.951+03	2021-05-28 03:24:05.96+03	
2ed0e0d5-1987-bce6-f4d7-ddba1172bb9a	2021-05-28 03:24:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:24:25.951+03	2021-05-28 03:24:25.959+03	
5ca1537f-3ab6-6689-7c36-a50ea3664420	2021-05-28 03:24:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:24:45.951+03	2021-05-28 03:24:45.959+03	
8a0a8eb6-d55b-b55d-c13f-c04a588d6b8d	2021-05-28 03:25:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:25:05.951+03	2021-05-28 03:25:05.959+03	
c875af3b-9335-6afe-cfc4-ae8230090fe7	2021-05-28 03:25:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:25:25.952+03	2021-05-28 03:25:25.959+03	
1ab38398-baa2-2ade-6cbb-8c66e84fd34b	2021-05-28 03:25:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:25:47.952+03	2021-05-28 03:25:47.958+03	
60d5af47-6233-14ba-7aa8-68b08ce468ab	2021-05-28 03:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:26:08.951+03	2021-05-28 03:26:08.959+03	
9c43c691-2ac4-4b8c-5e3e-b222b3e8e2ab	2021-05-28 03:26:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:26:29.951+03	2021-05-28 03:26:29.963+03	
3248d998-6ea7-4daa-16f1-b0019ec6000f	2021-05-28 03:26:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:26:49.951+03	2021-05-28 03:26:49.959+03	
ce1ba9d2-dc21-805d-e4b9-b64d0ff3146e	2021-05-28 03:27:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:27:09.952+03	2021-05-28 03:27:09.96+03	
ff1081b2-d639-91b3-a9b8-518daef0b4b3	2021-05-28 03:27:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:27:30.951+03	2021-05-28 03:27:30.958+03	
d40f8d47-9e40-c70e-92db-7bb899119cbb	2021-05-28 03:27:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:27:50.951+03	2021-05-28 03:27:50.959+03	
05e00bd0-63e3-f9db-eb1e-216445401f7f	2021-05-28 03:28:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:28:10.951+03	2021-05-28 03:28:10.959+03	
cb2aa337-0b0f-c371-0f3b-936e94e7969c	2021-05-28 03:28:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:28:30.951+03	2021-05-28 03:28:30.958+03	
d370ff26-fe55-c6fb-6874-bbe5ecd12e85	2021-05-28 03:28:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:28:50.951+03	2021-05-28 03:28:50.959+03	
c28dcf50-1c7a-05ca-e5b4-422e2bd7302a	2021-05-28 03:29:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:29:10.951+03	2021-05-28 03:29:10.958+03	
8e06e6da-3292-1be6-6c18-84c3117326f6	2021-05-28 03:29:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:29:30.951+03	2021-05-28 03:29:30.959+03	
3bd0c1c1-0c4b-a94e-9fad-bd9ff9fc2c12	2021-05-28 03:29:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:29:50.951+03	2021-05-28 03:29:50.959+03	
9694ea37-507c-5ebe-4e48-249b8c9477db	2021-05-28 03:30:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:30:10.951+03	2021-05-28 03:30:10.96+03	
e88f469c-e512-ca16-a937-718d1d730c83	2021-05-28 03:30:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:30:31.951+03	2021-05-28 03:30:31.959+03	
b7d48799-a9ba-7919-d452-62bccb673cea	2021-05-28 03:30:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:30:51.951+03	2021-05-28 03:30:51.959+03	
a0a803ef-002f-0893-d4f1-1a6a6c335cd4	2021-05-28 03:31:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:31:11.951+03	2021-05-28 03:31:11.96+03	
c387c8d7-2c31-b2d4-c7ea-1fc7a1d5aa66	2021-05-28 03:31:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:31:31.951+03	2021-05-28 03:31:31.959+03	
ef9e2859-5ba3-09a8-fdbb-72a0b5322346	2021-05-28 03:31:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:31:51.951+03	2021-05-28 03:31:51.96+03	
636db997-49ff-1d2f-4c68-71413a355525	2021-05-28 03:32:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:32:11.951+03	2021-05-28 03:32:11.959+03	
6322e83d-afcd-f8b9-64e7-5777f9751966	2021-05-28 03:32:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:32:31.951+03	2021-05-28 03:32:31.958+03	
6d3101b2-11b3-2c66-b18c-7050d5c06606	2021-05-28 03:32:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:32:51.951+03	2021-05-28 03:32:51.959+03	
929067d1-2164-4c51-23c2-e550570cdd95	2021-05-28 03:33:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:33:12.951+03	2021-05-28 03:33:12.958+03	
d6ff7283-7819-528a-2f32-8fd519b85fdf	2021-05-28 03:33:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:33:32.951+03	2021-05-28 03:33:32.958+03	
cae1f324-1ec1-ff51-745e-3f30a013751b	2021-05-28 03:33:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:33:52.953+03	2021-05-28 03:33:52.962+03	
afcd3637-7862-1196-3930-2cb975737dea	2021-05-28 03:34:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:34:13.951+03	2021-05-28 03:34:13.96+03	
0074bdf7-b608-a98d-0032-dbe7759b9e21	2021-05-28 03:34:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:34:33.952+03	2021-05-28 03:34:33.959+03	
ea48fb07-809f-2902-a2b8-04b207e5619f	2021-05-28 03:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:34:54.951+03	2021-05-28 03:34:54.961+03	
da35ed63-5a19-033b-3b78-faa29f5127db	2021-05-28 03:35:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:35:15.951+03	2021-05-28 03:35:15.958+03	
72c82b10-2ac6-9699-0765-41c253268e3d	2021-05-28 03:35:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:35:35.951+03	2021-05-28 03:35:35.969+03	
3fc4386f-c42b-bdc9-35db-6ad0fa98614a	2021-05-28 03:35:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:35:55.952+03	2021-05-28 03:35:55.96+03	
9b394f65-478d-9782-0241-2328cb388cea	2021-05-28 03:36:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:36:16.951+03	2021-05-28 03:36:16.958+03	
afcb06c6-749e-0684-065d-5c2118cf82a8	2021-05-28 03:15:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:15:40.951+03	2021-05-28 03:15:40.958+03	
ec28e973-33bd-d690-4601-be5a0aa5dd5b	2021-05-28 03:16:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:16:00.951+03	2021-05-28 03:16:00.957+03	
bd8feae3-1b04-91d4-6346-7f018cd57c5a	2021-05-28 03:16:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:16:20.951+03	2021-05-28 03:16:20.958+03	
60c9769e-79d1-509f-4029-e13712079144	2021-05-28 03:16:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:16:41.951+03	2021-05-28 03:16:41.962+03	
de5608fd-a2cb-46ea-4cd6-6d22e74fb720	2021-05-28 03:17:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:17:02.952+03	2021-05-28 03:17:02.958+03	
27c0843e-d8a1-fd2f-64c3-386d0584eb71	2021-05-28 03:17:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:17:23.951+03	2021-05-28 03:17:23.959+03	
918879ec-6b56-3b38-b9cb-f9a15cc54142	2021-05-28 03:17:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:17:43.951+03	2021-05-28 03:17:43.959+03	
8ce39575-347e-56b9-8643-0a62378dd3c9	2021-05-28 03:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:18:03.951+03	2021-05-28 03:18:03.958+03	
1b400a6b-ceb0-d9dd-6b44-a192edeb3bbd	2021-05-28 03:18:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:18:23.951+03	2021-05-28 03:18:23.96+03	
28e422bc-967e-c112-2ac0-699bad557d25	2021-05-28 03:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:18:43.951+03	2021-05-28 03:18:43.959+03	
a66ca855-0b13-764e-45c0-433f89c7aace	2021-05-28 03:19:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:19:03.951+03	2021-05-28 03:19:03.958+03	
715107a1-dc34-e5d4-4c83-2254633b6e99	2021-05-28 03:19:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:19:23.952+03	2021-05-28 03:19:23.959+03	
de603a2d-5ee2-2712-c142-29f27e330dfd	2021-05-28 03:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:19:43.952+03	2021-05-28 03:19:43.96+03	
840fc96e-f9f3-a269-f1f9-138b7e19c74b	2021-05-28 03:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 03:20:00.951+03	2021-05-28 03:20:00.957+03	ERROR
99fa67ec-1407-329f-59fd-e2eb3c5e9e68	2021-05-28 03:20:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:20:14.951+03	2021-05-28 03:20:14.959+03	
a2b31cc4-5cb8-8cc0-b0c8-fe859351bbb2	2021-05-28 03:20:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:20:34.951+03	2021-05-28 03:20:34.959+03	
44aa1211-3d5b-3abd-189a-599bd754bba2	2021-05-28 03:20:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:20:54.951+03	2021-05-28 03:20:54.958+03	
935acef4-c8b6-28cc-02d5-b4bd7ea4f963	2021-05-28 03:21:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:21:14.951+03	2021-05-28 03:21:14.958+03	
670a5d84-50a2-cbdb-94e6-979cef6232b4	2021-05-28 03:21:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:21:34.951+03	2021-05-28 03:21:34.958+03	
7a5d0633-5829-a0e6-3a23-bd72a0c28903	2021-05-28 03:21:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:21:54.951+03	2021-05-28 03:21:54.959+03	
c0561cbe-3cb5-618f-f759-27bcb700afdb	2021-05-28 03:22:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:22:14.951+03	2021-05-28 03:22:14.96+03	
8a4acbce-2348-2f10-94a5-4e38ee8b84ed	2021-05-28 03:22:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:22:34.952+03	2021-05-28 03:22:34.959+03	
26ea7933-26fa-674f-310e-97f0891ffd53	2021-05-28 03:22:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:22:55.951+03	2021-05-28 03:22:55.958+03	
06f06713-f929-65f9-3974-901e002d8d3f	2021-05-28 03:23:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:23:15.951+03	2021-05-28 03:23:15.958+03	
cb82198e-2b26-1029-f675-320f3669d4d6	2021-05-28 03:23:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:23:35.951+03	2021-05-28 03:23:35.958+03	
4cc9fd3d-fbd3-0e73-e657-9159baa4b79e	2021-05-28 03:23:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:23:55.951+03	2021-05-28 03:23:55.959+03	
d188890f-6143-55e5-54e8-0d004c7032e0	2021-05-28 03:24:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:24:15.951+03	2021-05-28 03:24:15.957+03	
1671d2e7-6282-3bf5-b468-27cddf5f464a	2021-05-28 03:24:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:24:35.951+03	2021-05-28 03:24:35.959+03	
6a19f7da-e04a-6f67-dfa9-7b341d7c33b2	2021-05-28 03:24:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:24:55.951+03	2021-05-28 03:24:55.958+03	
99a24aab-1761-4bc1-6d53-3b20a280acf3	2021-05-28 03:25:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:25:15.951+03	2021-05-28 03:25:15.958+03	
d669bf16-09ce-8e0e-0b76-8820bad1548c	2021-05-28 03:25:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:25:36.952+03	2021-05-28 03:25:36.958+03	
4bf49970-895c-0cac-721e-5a6fb909f016	2021-05-28 03:25:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:25:57.953+03	2021-05-28 03:25:57.961+03	
d9ad0c78-1d3c-0775-d332-ba327ab5ee58	2021-05-28 03:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:26:18.952+03	2021-05-28 03:26:18.959+03	
c8810b81-8cf0-99a3-0fd1-b3a65579c440	2021-05-28 03:26:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:26:39.951+03	2021-05-28 03:26:39.957+03	
1aeeb198-5c1f-f5d5-d08e-64ea13bf3e3f	2021-05-28 03:26:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:26:59.951+03	2021-05-28 03:26:59.958+03	
2977a245-a2e6-6046-44b6-34ac5202feb0	2021-05-28 03:27:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:27:20.951+03	2021-05-28 03:27:20.962+03	
4120617e-4aa2-90bb-dd16-09ef2243a3a3	2021-05-28 03:27:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:27:40.951+03	2021-05-28 03:27:40.959+03	
b4403b82-0d7a-54a0-53f3-a169819f6630	2021-05-28 03:28:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:28:00.951+03	2021-05-28 03:28:00.959+03	
0860f7af-511a-060a-5b6d-47e4270a28c1	2021-05-28 03:28:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:28:20.951+03	2021-05-28 03:28:20.959+03	
afa3923d-2a6d-3930-cf40-9c207e70277c	2021-05-28 03:28:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:28:40.951+03	2021-05-28 03:28:40.958+03	
c071efdf-fdea-8fd7-b12d-7714aaab15ae	2021-05-28 03:29:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:29:00.951+03	2021-05-28 03:29:00.96+03	
acd09bde-16be-aff5-cbf0-73c2b304a425	2021-05-28 03:29:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:29:20.951+03	2021-05-28 03:29:20.958+03	
3e84e405-067c-a43a-a68d-83b255928efc	2021-05-28 03:29:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:29:40.951+03	2021-05-28 03:29:40.958+03	
c4362680-5acf-3e29-3a7a-4ed2a9072a52	2021-05-28 03:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 03:30:00.951+03	2021-05-28 03:30:00.958+03	ERROR
baa17b7c-be9c-7552-66bc-6e2c69fd4e7a	2021-05-28 03:30:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:30:00.951+03	2021-05-28 03:30:00.973+03	
3c28a5a7-6da8-657d-45c7-271a28a56c3e	2021-05-28 03:30:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:30:20.952+03	2021-05-28 03:30:20.96+03	
5bcde3bb-cb95-a646-3dcb-7b240a5e27b6	2021-05-28 03:30:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:30:41.951+03	2021-05-28 03:30:41.96+03	
c8c532d9-3e6d-4a53-50d6-d097069ddc11	2021-05-28 03:31:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:31:01.951+03	2021-05-28 03:31:01.958+03	
16353e17-6146-aec2-db85-9a94b7117387	2021-05-28 03:31:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:31:21.951+03	2021-05-28 03:31:21.966+03	
5c163a68-4856-43af-9d0b-adf3aaed44fe	2021-05-28 03:31:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:31:41.951+03	2021-05-28 03:31:41.958+03	
105abac7-4339-5087-0508-c4681e16729b	2021-05-28 03:32:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:32:01.951+03	2021-05-28 03:32:01.958+03	
5b9cf2ed-b253-8e08-8c02-4c9442301b21	2021-05-28 03:32:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:32:21.951+03	2021-05-28 03:32:21.958+03	
fb11f8e0-ce4e-9986-55cd-49731f5de22f	2021-05-28 03:32:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:32:41.951+03	2021-05-28 03:32:41.961+03	
b8feb6bb-87b8-9f4b-e6d5-afd947ea2bf8	2021-05-28 03:33:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:33:01.952+03	2021-05-28 03:33:01.959+03	
3243df7f-d9ae-2668-fcd6-fbd6478535eb	2021-05-28 03:33:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:33:22.951+03	2021-05-28 03:33:22.96+03	
e0930769-7ecc-5a36-3fd5-49e2d40be2d3	2021-05-28 03:33:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:33:42.951+03	2021-05-28 03:33:42.96+03	
ef134a32-9952-add8-b862-5fa516340ed9	2021-05-28 03:34:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:34:03.951+03	2021-05-28 03:34:03.958+03	
04cc7ce2-e091-d6e0-292c-7f041292cd7d	2021-05-28 03:34:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:34:23.951+03	2021-05-28 03:34:23.959+03	
01633d27-3275-6c73-8609-812bf37dcedd	2021-05-28 03:34:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:34:43.952+03	2021-05-28 03:34:43.962+03	
b3889c5a-f9d7-acb5-58d8-1189d6ab48fb	2021-05-28 03:35:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:35:04.952+03	2021-05-28 03:35:04.96+03	
697de817-d9b4-72ab-cf53-2976cb74eb59	2021-05-28 03:35:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:35:25.951+03	2021-05-28 03:35:25.966+03	
fa667bd1-1300-a9cf-b8f1-ab0fbd5e251f	2021-05-28 03:35:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:35:45.952+03	2021-05-28 03:35:45.963+03	
3db48b74-cc8a-50f6-ea0e-d83e212b2801	2021-05-28 03:36:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:36:06.951+03	2021-05-28 03:36:06.958+03	
4daa806e-c078-d64e-cba0-ea8e8cef0725	2021-05-28 03:36:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:36:26.952+03	2021-05-28 03:36:26.96+03	
13878239-3819-8837-0c14-1ed64ce6e1ff	2021-05-28 03:36:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:36:47.951+03	2021-05-28 03:36:47.96+03	
5a1f3a50-5c51-6e99-2b6c-7a34ed6460a0	2021-05-28 03:37:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:37:07.952+03	2021-05-28 03:37:07.96+03	
366aec2f-8448-0f04-5031-5ee8b0db2fa4	2021-05-28 03:37:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:37:28.951+03	2021-05-28 03:37:28.958+03	
402c5f24-e859-3fbc-5e08-4bc133d7060e	2021-05-28 03:37:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:37:48.951+03	2021-05-28 03:37:48.959+03	
56923599-e21b-1a58-eda8-4c40a2cddd9a	2021-05-28 03:38:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:38:09.951+03	2021-05-28 03:38:09.96+03	
880dd631-5c28-3d8e-f682-dfdd0cf230f0	2021-05-28 03:38:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:38:29.951+03	2021-05-28 03:38:29.958+03	
083d9085-33c5-ed14-e047-ef58d3016bd0	2021-05-28 03:38:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:38:49.951+03	2021-05-28 03:38:49.958+03	
5dbc1712-29da-007d-440d-99d05ce8ec57	2021-05-28 03:39:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:39:09.951+03	2021-05-28 03:39:09.958+03	
508c681a-fde9-d244-8877-28a0a5f651cb	2021-05-28 03:39:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:39:29.951+03	2021-05-28 03:39:29.957+03	
c8a754a0-2660-12b4-9873-10689a8746b2	2021-05-28 03:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:39:49.951+03	2021-05-28 03:39:49.958+03	
107ae21c-b6aa-0233-996c-581180d1802f	2021-05-28 03:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 03:40:00.951+03	2021-05-28 03:40:01.001+03	ERROR
97657573-c826-a281-16d5-50cb88e1fb32	2021-05-28 03:40:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:40:19.951+03	2021-05-28 03:40:19.958+03	
2339c310-599a-edf6-2955-52eb2acb2959	2021-05-28 03:40:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:40:39.951+03	2021-05-28 03:40:39.958+03	
c124fc5c-b24d-bafa-538b-5cd185c820dc	2021-05-28 03:40:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:40:59.951+03	2021-05-28 03:40:59.96+03	
458bc0e3-60ae-ba15-4400-d0dbe6be606c	2021-05-28 03:41:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:41:19.951+03	2021-05-28 03:41:19.96+03	
7fa6de5a-46a4-8d25-7e4c-694dfca92fe7	2021-05-28 03:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:41:39.951+03	2021-05-28 03:41:39.959+03	
e709d313-559a-24c2-4064-c3bf0982af7d	2021-05-28 03:41:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:41:59.951+03	2021-05-28 03:41:59.959+03	
738fbd4d-1826-a5f2-8ef2-9c134dcdb4c6	2021-05-28 03:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:42:19.951+03	2021-05-28 03:42:19.96+03	
88bbb104-9956-125a-0a2e-234056dfa36a	2021-05-28 03:42:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:42:39.951+03	2021-05-28 03:42:39.959+03	
1ba8e662-e8f4-14f5-7fea-02de498d5dee	2021-05-28 03:42:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:42:59.951+03	2021-05-28 03:42:59.958+03	
1d1dbe2c-c305-39b0-370f-835e5a96271e	2021-05-28 03:43:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:43:19.951+03	2021-05-28 03:43:19.958+03	
7e69a422-bd86-1cff-d23b-ee18f61424bf	2021-05-28 03:43:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:43:39.952+03	2021-05-28 03:43:39.959+03	
0c665392-bc3f-4bf7-b006-130120633be6	2021-05-28 03:44:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:44:00.951+03	2021-05-28 03:44:00.961+03	
2800c1ed-407a-34f8-db50-a6397d0968d6	2021-05-28 03:44:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:44:20.951+03	2021-05-28 03:44:20.958+03	
d0212960-94a6-2619-f103-704b93ea172c	2021-05-28 03:44:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:44:40.951+03	2021-05-28 03:44:40.959+03	
c5ec0023-c241-0c3b-88ff-a5511ee9f59e	2021-05-28 03:45:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:45:00.951+03	2021-05-28 03:45:00.96+03	
f08debe9-e6f8-3461-be3c-4bb51571d513	2021-05-28 03:45:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:45:20.952+03	2021-05-28 03:45:20.96+03	
9057f844-394a-c3fb-a58d-5138b276cad2	2021-05-28 03:45:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:45:41.951+03	2021-05-28 03:45:41.96+03	
1d37cf99-5320-8b2c-b1fb-f12622f7cbaa	2021-05-28 03:46:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:46:01.951+03	2021-05-28 03:46:01.959+03	
dd8a1f5c-8e80-4bca-ad08-2080f6340960	2021-05-28 03:46:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:46:22.951+03	2021-05-28 03:46:22.959+03	
2711d9a6-ef2c-7876-89f8-fa8036e64025	2021-05-28 03:46:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:46:42.952+03	2021-05-28 03:46:42.958+03	
b831b8b3-9307-cff3-4860-10ac01e52704	2021-05-28 03:47:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:47:03.951+03	2021-05-28 03:47:03.962+03	
314f2754-1897-491c-39f7-c4bb2d1104b7	2021-05-28 03:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:47:23.951+03	2021-05-28 03:47:23.959+03	
ae5db916-4672-b8a4-e88e-22e28e989307	2021-05-28 03:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:47:43.951+03	2021-05-28 03:47:43.96+03	
f62f7b3e-fb16-2e38-6c3a-bbff9cf96d72	2021-05-28 03:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:48:03.951+03	2021-05-28 03:48:03.96+03	
b30e74ea-e53a-7d31-9f3b-19aa06ee0e76	2021-05-28 03:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:48:23.952+03	2021-05-28 03:48:23.96+03	
c9353050-035d-3297-6333-b3214d32cf63	2021-05-28 03:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:48:44.952+03	2021-05-28 03:48:44.958+03	
76c546b6-c041-6a65-11c1-ef1a160709a5	2021-05-28 03:49:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:49:05.952+03	2021-05-28 03:49:05.96+03	
6ffea282-e0d8-7a2d-000a-9e2af4f481c3	2021-05-28 03:49:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:49:26.951+03	2021-05-28 03:49:26.959+03	
48695629-3aeb-9507-2d2b-cd6cc6364c70	2021-05-28 03:49:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:49:46.951+03	2021-05-28 03:49:46.958+03	
4578f23f-b184-19a8-392e-834bfed6910a	2021-05-28 03:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 03:50:00.951+03	2021-05-28 03:50:00.956+03	ERROR
f82ec438-21b2-0e0d-1f2c-3d5555445136	2021-05-28 03:50:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:50:16.951+03	2021-05-28 03:50:16.959+03	
eae27486-8f8b-fea7-95f1-15645654281e	2021-05-28 03:50:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:50:36.951+03	2021-05-28 03:50:36.958+03	
1f1aaf8c-f810-a823-aa1a-235f30f67a2a	2021-05-28 03:50:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:50:56.952+03	2021-05-28 03:50:56.96+03	
bb0d4803-3a6c-6e93-79e4-db58056c80c5	2021-05-28 03:51:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:51:17.951+03	2021-05-28 03:51:17.958+03	
1db93788-0266-579c-b75f-2e2784412af8	2021-05-28 03:51:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:51:38.951+03	2021-05-28 03:51:38.958+03	
b94f8722-40bb-e68b-5100-714345059803	2021-05-28 03:51:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:51:58.951+03	2021-05-28 03:51:58.958+03	
7d7a0ebf-a127-c914-4194-0e2c6431d6dd	2021-05-28 03:52:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:52:18.951+03	2021-05-28 03:52:18.959+03	
bc2ae744-cd9b-1060-0cd1-5e317dcc051e	2021-05-28 03:52:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:52:38.951+03	2021-05-28 03:52:38.958+03	
b6d5a688-fe07-026c-f27f-b08731624f21	2021-05-28 03:52:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:52:58.951+03	2021-05-28 03:52:58.958+03	
ed99616c-8cc0-37ec-a900-1680bd431148	2021-05-28 03:53:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:53:18.951+03	2021-05-28 03:53:18.958+03	
1cdf576e-84b3-acfa-655c-6c1ceda5666b	2021-05-28 03:53:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:53:38.952+03	2021-05-28 03:53:38.958+03	
d15d0c5d-b65e-63a3-1fdc-904e296bd1e5	2021-05-28 03:53:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:53:59.951+03	2021-05-28 03:53:59.958+03	
3d6835bf-6ff1-027e-7554-fe3d87ad2351	2021-05-28 03:54:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:54:19.951+03	2021-05-28 03:54:19.958+03	
d0f8e662-dfbc-f5d5-7358-e9f821e04853	2021-05-28 03:54:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:54:39.951+03	2021-05-28 03:54:39.96+03	
a62f7f11-75e5-c942-f362-c18a23766943	2021-05-28 03:54:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:54:59.951+03	2021-05-28 03:54:59.959+03	
f351b3fd-8098-513d-637b-20b7599ff264	2021-05-28 03:55:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:55:19.951+03	2021-05-28 03:55:19.958+03	
dbf18987-2fa1-ee99-01aa-f1cbfdecab5c	2021-05-28 03:55:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:55:39.951+03	2021-05-28 03:55:39.96+03	
4ae9273d-105d-4ed0-92cc-b40208934c2d	2021-05-28 03:55:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:55:59.951+03	2021-05-28 03:55:59.959+03	
223b8a72-38ef-9c7c-72b5-06df730977f8	2021-05-28 03:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:56:19.951+03	2021-05-28 03:56:19.958+03	
f7672aa0-2489-7cd0-db40-b85b8740f456	2021-05-28 03:56:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:56:39.951+03	2021-05-28 03:56:39.959+03	
7115f495-af6b-b67c-1c0c-0816d9d085f0	2021-05-28 03:56:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:56:59.951+03	2021-05-28 03:56:59.957+03	
b4dab3fb-177a-0de3-deda-b167bd838d6c	2021-05-28 03:36:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:36:37.951+03	2021-05-28 03:36:37.961+03	
fdacf6bb-a754-62c7-46cd-d6c67a105e06	2021-05-28 03:36:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:36:57.951+03	2021-05-28 03:36:57.959+03	
ca1f078f-bb93-ebfc-d746-7d8799a2852a	2021-05-28 03:37:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:37:18.951+03	2021-05-28 03:37:18.961+03	
444dfafd-5eed-e980-969d-b9faadc43923	2021-05-28 03:37:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:37:38.951+03	2021-05-28 03:37:38.96+03	
6a3ea81b-ddff-15ed-0591-64f0f632de79	2021-05-28 03:37:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:37:58.952+03	2021-05-28 03:37:58.963+03	
242f2aae-f261-e4f9-2f94-8099643834ac	2021-05-28 03:38:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:38:19.951+03	2021-05-28 03:38:19.96+03	
c320f5fb-4814-3187-00e9-efdd8abd66ac	2021-05-28 03:38:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:38:39.951+03	2021-05-28 03:38:39.958+03	
0b224621-c953-df33-5fb0-5c015cb92c36	2021-05-28 03:38:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:38:59.951+03	2021-05-28 03:38:59.957+03	
38f7a8b9-5851-c99f-794a-da3c727b334c	2021-05-28 03:39:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:39:19.951+03	2021-05-28 03:39:19.959+03	
f5bea42d-fe8e-90db-948c-80b676646533	2021-05-28 03:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:39:39.951+03	2021-05-28 03:39:39.959+03	
89312eb6-6875-b370-5b83-f6fefd59c2ac	2021-05-28 03:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:39:59.951+03	2021-05-28 03:39:59.959+03	
6d14a1c0-b48e-45b4-5e37-dac0ec8a43ba	2021-05-28 03:40:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:40:09.951+03	2021-05-28 03:40:09.959+03	
f1bdc3b4-c4e7-8d9c-d319-d52d4bec39de	2021-05-28 03:40:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:40:29.951+03	2021-05-28 03:40:29.963+03	
56c9e310-f72e-68dc-80e9-c36aa8c00924	2021-05-28 03:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:40:49.951+03	2021-05-28 03:40:49.959+03	
03e7b079-73c9-14b2-7595-6d9f41f0ddc5	2021-05-28 03:41:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:41:09.951+03	2021-05-28 03:41:09.958+03	
8dda9663-9263-7866-2110-205590193ba8	2021-05-28 03:41:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:41:29.951+03	2021-05-28 03:41:29.959+03	
2a59fe5e-cd10-16e7-7899-b8a80c3d1373	2021-05-28 03:41:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:41:49.951+03	2021-05-28 03:41:49.957+03	
b5769aba-6a6e-4153-200f-2cc0c2d221bd	2021-05-28 03:42:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:42:09.951+03	2021-05-28 03:42:09.959+03	
2a9b0386-5535-8d36-f220-5f1cffba6e29	2021-05-28 03:42:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:42:29.951+03	2021-05-28 03:42:29.959+03	
54245c42-becd-1ace-553b-158cd67488db	2021-05-28 03:42:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:42:49.951+03	2021-05-28 03:42:49.961+03	
1146b27e-f7b4-9c75-3bd8-6dd0bd6f8f4c	2021-05-28 03:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:43:09.951+03	2021-05-28 03:43:09.959+03	
ba5c176e-1fed-b621-eea5-7237b9908953	2021-05-28 03:43:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:43:29.951+03	2021-05-28 03:43:29.959+03	
3db1114b-6648-15b9-9b98-22eb6434849f	2021-05-28 03:43:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:43:50.951+03	2021-05-28 03:43:50.96+03	
4448cb65-68f8-9d58-9e8a-136e49a7f8c4	2021-05-28 03:44:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:44:10.951+03	2021-05-28 03:44:10.959+03	
0a0b8cc6-3e57-5290-29a5-bf7a42917181	2021-05-28 03:44:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:44:30.951+03	2021-05-28 03:44:30.958+03	
fb6dbbe0-d9f0-738d-2e01-5734b755fdb5	2021-05-28 03:44:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:44:50.951+03	2021-05-28 03:44:50.959+03	
7e7126ff-d079-f13f-a80b-10130449e9e1	2021-05-28 03:45:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:45:10.951+03	2021-05-28 03:45:10.959+03	
2ede5dfe-bad9-0d4a-387d-a2687e347e9f	2021-05-28 03:45:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:45:31.951+03	2021-05-28 03:45:31.958+03	
0c105815-3333-1059-3e8b-a34cb37fa337	2021-05-28 03:45:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:45:51.951+03	2021-05-28 03:45:51.958+03	
8db6219b-0c1c-1049-d2d0-d4f47a951b64	2021-05-28 03:46:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:46:11.952+03	2021-05-28 03:46:11.966+03	
bbf7c83a-f2fe-028c-7fec-9b8dee58c30c	2021-05-28 03:46:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:46:32.951+03	2021-05-28 03:46:32.96+03	
8c90e686-ca46-afcf-0fa6-c2947a36a946	2021-05-28 03:46:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:46:52.953+03	2021-05-28 03:46:52.962+03	
5889768d-e175-4c01-d34b-19ef82d401c0	2021-05-28 03:47:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:47:13.951+03	2021-05-28 03:47:13.959+03	
b54b0ae9-e930-41ec-cde0-862cef9b1613	2021-05-28 03:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:47:33.951+03	2021-05-28 03:47:33.96+03	
8c811058-80c7-2b63-e9d6-f6d5b395403f	2021-05-28 03:47:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:47:53.951+03	2021-05-28 03:47:53.958+03	
4a5a9ece-afc3-274b-4584-ad84520f1d34	2021-05-28 03:48:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:48:13.951+03	2021-05-28 03:48:13.959+03	
5063665b-4360-4d60-f119-023c3614ce94	2021-05-28 03:48:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:48:34.951+03	2021-05-28 03:48:34.96+03	
74676458-7e6a-851b-8ce4-9a105b4f3ca3	2021-05-28 03:48:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:48:55.952+03	2021-05-28 03:48:55.96+03	
d612e18b-8efd-28ec-1e94-f139c40eb810	2021-05-28 03:49:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:49:16.951+03	2021-05-28 03:49:16.958+03	
7509c635-214b-cbd6-30e3-05120f890ef8	2021-05-28 03:49:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:49:36.951+03	2021-05-28 03:49:36.958+03	
57f631d7-cedf-9f7f-f87e-75c3c9f30dda	2021-05-28 03:49:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:49:56.951+03	2021-05-28 03:49:56.96+03	
f4c6d318-c0bd-1890-334f-5410476f540c	2021-05-28 03:50:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:50:06.951+03	2021-05-28 03:50:06.958+03	
f73300fe-d0a7-2c82-a51c-b984c0491751	2021-05-28 03:50:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:50:26.951+03	2021-05-28 03:50:26.966+03	
8ead3177-885e-e9d9-77eb-4a8f843963ea	2021-05-28 03:50:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:50:46.951+03	2021-05-28 03:50:46.958+03	
e80456bf-9e78-405b-a0ce-0e86510ddec6	2021-05-28 03:51:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:51:07.951+03	2021-05-28 03:51:07.96+03	
ede2d254-9968-38e4-3921-e5777280c333	2021-05-28 03:51:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:51:27.952+03	2021-05-28 03:51:27.959+03	
4ad3b458-2d78-6833-13f1-aae2f13ed604	2021-05-28 03:51:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:51:48.951+03	2021-05-28 03:51:48.958+03	
f98d4d40-f7eb-1274-2a6b-4725dd3de886	2021-05-28 03:52:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:52:08.951+03	2021-05-28 03:52:08.959+03	
1fe52910-c552-cfac-f63c-a7378bf681a8	2021-05-28 03:52:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:52:28.951+03	2021-05-28 03:52:28.958+03	
da384326-0848-0adc-8d1d-7c0712a3c4b9	2021-05-28 03:52:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:52:48.951+03	2021-05-28 03:52:48.958+03	
3c0c116f-25d2-8020-4735-3b5e6bea050e	2021-05-28 03:53:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:53:08.951+03	2021-05-28 03:53:08.961+03	
4baf7099-f313-0ecd-5bb9-b47054a2248a	2021-05-28 03:53:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:53:28.951+03	2021-05-28 03:53:28.958+03	
b0013e74-2133-3a56-1452-a020d99eae0a	2021-05-28 03:53:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:53:49.951+03	2021-05-28 03:53:49.96+03	
bf18cf5c-d928-1633-c2f2-5c0ffc6f6899	2021-05-28 03:54:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:54:09.951+03	2021-05-28 03:54:09.959+03	
3f00b676-4d99-dc63-6cb6-430479c7d18f	2021-05-28 03:54:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:54:29.951+03	2021-05-28 03:54:29.963+03	
b125e7f8-84f1-61fc-ae66-d2f89b08e320	2021-05-28 03:54:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:54:49.951+03	2021-05-28 03:54:49.959+03	
ebb79541-9581-8598-764e-55f122f04940	2021-05-28 03:55:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:55:09.951+03	2021-05-28 03:55:09.958+03	
177dea47-f860-05d2-7ddb-1b78b46fac25	2021-05-28 03:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:55:29.951+03	2021-05-28 03:55:29.959+03	
ec39f8a7-07a3-bc13-2a52-5f37b0871caf	2021-05-28 03:55:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:55:49.951+03	2021-05-28 03:55:49.958+03	
985358ae-15c6-fe49-5c58-bd3522868cb8	2021-05-28 03:56:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:56:09.951+03	2021-05-28 03:56:09.958+03	
07282c6e-6ef0-5126-1ff8-12958e62fdf8	2021-05-28 03:56:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:56:29.951+03	2021-05-28 03:56:29.96+03	
d9f3976f-573b-5baf-fb82-8dc0b0e6dbfd	2021-05-28 03:56:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:56:49.951+03	2021-05-28 03:56:49.968+03	
d0174d06-a713-9f7c-cd56-ff24f63ad1d5	2021-05-28 03:57:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:57:09.951+03	2021-05-28 03:57:09.958+03	
799f19b0-d3a6-1c5a-283e-6de1f7548334	2021-05-28 03:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:57:19.951+03	2021-05-28 03:57:19.96+03	
d24d16b2-d152-3f9c-0d38-eb298bf8a27f	2021-05-28 03:57:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:57:39.951+03	2021-05-28 03:57:39.959+03	
a60d6910-b743-f50f-9be0-cbe8d5b356f4	2021-05-28 03:57:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:57:59.951+03	2021-05-28 03:57:59.958+03	
2f00daf4-0135-1fed-77af-12bdf33348ea	2021-05-28 03:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:58:19.951+03	2021-05-28 03:58:19.959+03	
9822a5aa-3ef5-d8e8-d6f0-8f557f60998d	2021-05-28 03:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:58:39.951+03	2021-05-28 03:58:39.957+03	
b2d80c0d-b836-add0-eac5-8958978baf3d	2021-05-28 03:58:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:58:59.951+03	2021-05-28 03:58:59.957+03	
c439f5bd-c04c-05dc-841b-42bec77c85f5	2021-05-28 03:59:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:59:19.951+03	2021-05-28 03:59:19.959+03	
c226d57a-664c-21c1-c206-c795b7b9698b	2021-05-28 03:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:59:39.951+03	2021-05-28 03:59:39.96+03	
ef2a477a-daf6-82aa-6739-60167641ed5d	2021-05-28 03:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:59:59.951+03	2021-05-28 03:59:59.96+03	
2da95583-16f9-d8a3-8aa5-13ce9f71fa5a	2021-05-28 04:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:00:09.951+03	2021-05-28 04:00:09.958+03	
165e7de2-89c4-00d1-5f11-3e6a953bf3a6	2021-05-28 04:00:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:00:30.951+03	2021-05-28 04:00:30.96+03	
5b1d3ed5-4990-23ac-cc69-6f2c34bdb363	2021-05-28 04:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:00:50.951+03	2021-05-28 04:00:50.96+03	
1bac0b8d-e04b-8a97-368e-10d5bf1be4d1	2021-05-28 04:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:01:10.951+03	2021-05-28 04:01:10.959+03	
ab4a01f2-8bd2-e293-b9e6-24a108c38373	2021-05-28 04:01:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:01:30.951+03	2021-05-28 04:01:30.959+03	
c6117605-1fe2-e742-712a-ccccc7330219	2021-05-28 04:01:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:01:51.951+03	2021-05-28 04:01:51.958+03	
b8e7380d-098f-ad38-2581-2c0a27779a3b	2021-05-28 04:02:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:02:12.951+03	2021-05-28 04:02:12.96+03	
e3ace80d-300d-ea60-05f8-e6fa52b7c767	2021-05-28 04:02:32.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:02:32.953+03	2021-05-28 04:02:32.962+03	
f8dc7c62-d6c0-192b-eb6c-8976a3a4b913	2021-05-28 04:02:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:02:53.951+03	2021-05-28 04:02:53.959+03	
058fa730-65c0-b09e-0b72-2c03667d384a	2021-05-28 04:03:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:03:13.951+03	2021-05-28 04:03:13.959+03	
9cfe9a90-ed54-3d8e-3a43-cd274c02a0fb	2021-05-28 04:03:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:03:33.951+03	2021-05-28 04:03:33.958+03	
0a4bbb7a-d421-5559-35e6-ef2482661d4e	2021-05-28 04:03:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:03:53.951+03	2021-05-28 04:03:53.961+03	
d387bc8e-c986-d489-6551-8d40ba56211f	2021-05-28 04:04:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:04:14.951+03	2021-05-28 04:04:14.959+03	
95617194-fb68-3f62-1b54-7f3e18001902	2021-05-28 04:04:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:04:34.952+03	2021-05-28 04:04:34.958+03	
b0d6c543-05f6-d64b-ed27-cb2b4398b019	2021-05-28 04:04:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:04:54.952+03	2021-05-28 04:04:54.959+03	
39aa8aaa-134a-47aa-04aa-4773a4faec75	2021-05-28 04:05:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:05:15.951+03	2021-05-28 04:05:15.959+03	
3330e35e-f1bd-5e1d-e39d-453b687fc793	2021-05-28 04:05:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:05:35.951+03	2021-05-28 04:05:35.957+03	
ea9b8613-135d-039d-7266-a4b1c71e76dd	2021-05-28 04:05:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:05:55.952+03	2021-05-28 04:05:55.959+03	
e1558a17-f243-1850-ec97-49e1b44b51c1	2021-05-28 04:06:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:06:17.952+03	2021-05-28 04:06:17.959+03	
774cef4f-205e-07c0-97d1-fe81e19c40cc	2021-05-28 04:06:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:06:38.951+03	2021-05-28 04:06:38.959+03	
a272479e-4aa7-e623-016d-62cfe20f757b	2021-05-28 04:06:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:06:58.951+03	2021-05-28 04:06:58.96+03	
e580562b-5579-6963-e97f-1b08808c6a2a	2021-05-28 04:07:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:07:18.951+03	2021-05-28 04:07:18.966+03	
f3775a0b-9bde-9c9b-114c-4b6c5eec48e5	2021-05-28 04:07:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:07:38.951+03	2021-05-28 04:07:38.958+03	
e2fd7fc4-b5b7-7d8f-66d4-bdf94e4ba4cc	2021-05-28 04:07:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:07:58.952+03	2021-05-28 04:07:58.96+03	
856ace97-7483-b166-7b75-e34378a931b6	2021-05-28 04:08:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:08:20.951+03	2021-05-28 04:08:20.959+03	
e4fb4582-b04d-cf14-2c6e-ef3e08411d5a	2021-05-28 04:08:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:08:40.951+03	2021-05-28 04:08:40.958+03	
0cd57fcb-8161-5e56-8e04-5642ce991a98	2021-05-28 04:09:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:09:00.951+03	2021-05-28 04:09:00.958+03	
321ae17b-328d-020f-46bd-364d5eb105d5	2021-05-28 04:09:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:09:20.951+03	2021-05-28 04:09:20.958+03	
4d94bbe1-88d3-09b2-4157-e18561d88163	2021-05-28 04:09:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:09:40.951+03	2021-05-28 04:09:40.958+03	
20f7f5ce-7270-ddf4-7bd4-a6f4fcbbd738	2021-05-28 04:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 04:10:00.951+03	2021-05-28 04:10:00.964+03	ERROR
0e830908-66ac-11af-888c-80530d6f5068	2021-05-28 04:10:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:10:21.951+03	2021-05-28 04:10:21.96+03	
3b2dc8da-d3a3-89ec-10ff-a0fadccfddce	2021-05-28 04:10:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:10:41.951+03	2021-05-28 04:10:41.958+03	
3bbde7b4-5aa8-a61d-067e-0817af9ac9b3	2021-05-28 04:11:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:11:01.951+03	2021-05-28 04:11:01.958+03	
8179fb4e-0fce-0e21-d831-33c6a8c47b99	2021-05-28 04:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:11:21.951+03	2021-05-28 04:11:21.959+03	
9d514d93-1c4b-d44e-f259-121f563400a8	2021-05-28 04:11:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:11:41.951+03	2021-05-28 04:11:41.97+03	
a7849846-96f8-5275-1ee7-f2c6779ad102	2021-05-28 04:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:12:01.951+03	2021-05-28 04:12:01.958+03	
e1db2676-ab06-a775-f7f5-36bcff77ecd9	2021-05-28 04:12:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:12:21.951+03	2021-05-28 04:12:21.96+03	
61c7a87b-70dd-3c7d-25c0-68652f0cdfc8	2021-05-28 04:12:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:12:41.951+03	2021-05-28 04:12:41.958+03	
0f8fbb9b-af68-b69b-467d-37dcd59b67ff	2021-05-28 04:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:13:01.951+03	2021-05-28 04:13:01.959+03	
bb51d433-6a3c-058b-81f8-952c6e4a4e26	2021-05-28 04:13:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:13:21.951+03	2021-05-28 04:13:21.96+03	
3eea3fe5-4616-ba8e-a5d1-47b039d1a1fd	2021-05-28 04:13:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:13:41.951+03	2021-05-28 04:13:41.958+03	
4937ee3f-29e8-c5ae-695e-53500d1fa820	2021-05-28 04:14:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:14:02.951+03	2021-05-28 04:14:02.959+03	
6f4a4ea9-c6fd-e8de-a128-a0ecd74184db	2021-05-28 04:14:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:14:22.951+03	2021-05-28 04:14:22.958+03	
f592ecef-20c9-8a63-2afb-a025bb418d16	2021-05-28 04:14:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:14:42.951+03	2021-05-28 04:14:42.958+03	
958c7ddb-64ff-e100-6af1-c5493a2ce798	2021-05-28 04:15:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:15:02.951+03	2021-05-28 04:15:02.958+03	
5329505f-834f-cd90-7805-94c292ad7daa	2021-05-28 04:15:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:15:22.951+03	2021-05-28 04:15:22.96+03	
50bd01f7-93d0-9199-9540-0c4ea10a45c2	2021-05-28 04:15:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:15:42.951+03	2021-05-28 04:15:42.958+03	
e5c0cff8-2857-3b53-bd30-53c0dc9594e4	2021-05-28 04:16:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:16:02.951+03	2021-05-28 04:16:02.96+03	
fab35fde-e0f6-a456-66f8-fba7b8c820ab	2021-05-28 04:16:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:16:22.951+03	2021-05-28 04:16:22.957+03	
cace6097-34ad-f3e3-1c9f-74bdb33d1967	2021-05-28 04:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:16:43.951+03	2021-05-28 04:16:43.963+03	
dd72e94f-08ac-383f-ecb0-c1cd6b9c8fa8	2021-05-28 04:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:17:03.951+03	2021-05-28 04:17:03.957+03	
d8dfee7d-903f-ecd8-f793-2394c1e0ff98	2021-05-28 04:17:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:17:23.951+03	2021-05-28 04:17:23.96+03	
b67c97b6-69bf-7c6d-b36b-75834b60bae8	2021-05-28 04:17:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:17:43.951+03	2021-05-28 04:17:43.958+03	
1768d367-ed6b-5f4a-0510-e7da391b3f77	2021-05-28 04:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:18:03.952+03	2021-05-28 04:18:03.959+03	
e5b28b73-db0b-777d-1130-a42f885ec62a	2021-05-28 03:57:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:57:29.951+03	2021-05-28 03:57:29.959+03	
6edd0193-07b6-da16-e17b-6734dbf43138	2021-05-28 03:57:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:57:49.951+03	2021-05-28 03:57:49.958+03	
030c53f0-d7f6-208e-c230-07cc5fcfffcb	2021-05-28 03:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:58:09.951+03	2021-05-28 03:58:09.958+03	
98a2c659-d5d3-633e-885e-8550e6b87daa	2021-05-28 03:58:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:58:29.951+03	2021-05-28 03:58:29.959+03	
80103754-eff8-6f2c-da5f-1647b09231ad	2021-05-28 03:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:58:49.951+03	2021-05-28 03:58:49.96+03	
650be9c1-a34b-dff7-d96d-2c6daef28072	2021-05-28 03:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:59:09.951+03	2021-05-28 03:59:09.959+03	
ded74223-1a49-a22d-5803-c3d7b7828eba	2021-05-28 03:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:59:29.951+03	2021-05-28 03:59:29.958+03	
25579f38-7264-603b-7372-2d8b7431ad7d	2021-05-28 03:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 03:59:49.951+03	2021-05-28 03:59:49.958+03	
56288ea0-c801-ea06-8a33-fa9a16fdfa09	2021-05-28 04:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 04:00:00.951+03	2021-05-28 04:00:00.958+03	ERROR
5efb2dd3-d722-0ce0-02e4-c4a70c1177ad	2021-05-28 04:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:00:19.952+03	2021-05-28 04:00:19.959+03	
fde7621d-03df-341b-8024-ebb25e3b3188	2021-05-28 04:00:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:00:40.951+03	2021-05-28 04:00:40.958+03	
f2127e8f-6415-4ac1-0587-b2d19c4ec472	2021-05-28 04:01:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:01:00.951+03	2021-05-28 04:01:00.959+03	
50b50e95-1b25-94ba-5683-0b4e75fe0ad1	2021-05-28 04:01:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:01:20.951+03	2021-05-28 04:01:20.958+03	
154d09b2-5152-924e-03de-169b099a3662	2021-05-28 04:01:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:01:40.952+03	2021-05-28 04:01:40.959+03	
4c5ebda3-1dd8-ad4b-033b-5bd10f221fbe	2021-05-28 04:02:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:02:01.952+03	2021-05-28 04:02:01.958+03	
7d6e4434-d375-0e88-7720-e0bcc898a38e	2021-05-28 04:02:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:02:22.953+03	2021-05-28 04:02:22.96+03	
6c326d35-17f4-72ef-9766-69c40e5a9b79	2021-05-28 04:02:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:02:43.951+03	2021-05-28 04:02:43.958+03	
dc1ab4a2-0935-45e1-4851-418b7d13d6c0	2021-05-28 04:03:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:03:03.951+03	2021-05-28 04:03:03.959+03	
663325d8-36fc-3588-0e1c-0e0867bfe94f	2021-05-28 04:03:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:03:23.951+03	2021-05-28 04:03:23.957+03	
82cf2d5c-3c82-39f9-fc77-2157667336e4	2021-05-28 04:03:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:03:43.951+03	2021-05-28 04:03:43.958+03	
c6ecacdd-8189-1b78-8945-db8f95502085	2021-05-28 04:04:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:04:03.952+03	2021-05-28 04:04:03.961+03	
7a5f7af2-3280-149a-643b-61fa1827f832	2021-05-28 04:04:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:04:24.951+03	2021-05-28 04:04:24.958+03	
e44f9891-742f-cb0b-4d25-76c011a0efe7	2021-05-28 04:04:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:04:44.952+03	2021-05-28 04:04:44.961+03	
fce2226c-edf6-7bb8-58f1-ef44fc80bdb8	2021-05-28 04:05:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:05:05.951+03	2021-05-28 04:05:05.959+03	
34f4e4d4-1b0a-a236-3c7d-e1e90ae2113c	2021-05-28 04:05:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:05:25.951+03	2021-05-28 04:05:25.959+03	
0e470780-9bcf-77d6-a511-6444a785e223	2021-05-28 04:05:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:05:45.951+03	2021-05-28 04:05:45.959+03	
3b473f91-2b24-9eb6-f2ce-450fb51c0119	2021-05-28 04:06:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:06:06.952+03	2021-05-28 04:06:06.959+03	
ece66804-5655-0523-8223-ce9beadc3ea7	2021-05-28 04:06:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:06:28.951+03	2021-05-28 04:06:28.959+03	
37f882e1-b603-4ee9-5ade-c5a386248413	2021-05-28 04:06:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:06:48.951+03	2021-05-28 04:06:48.959+03	
5f60b9fa-274d-4f6d-45ba-48bbfc2cb65b	2021-05-28 04:07:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:07:08.951+03	2021-05-28 04:07:08.958+03	
cf54e587-ce74-18e8-5cf6-2fed9267ade7	2021-05-28 04:07:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:07:28.951+03	2021-05-28 04:07:28.958+03	
909464a5-48cf-e0b1-74c7-bfc4c8670c7f	2021-05-28 04:07:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:07:48.951+03	2021-05-28 04:07:48.957+03	
8f66d2c5-102f-7051-d676-d349c9f1bb59	2021-05-28 04:08:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:08:09.952+03	2021-05-28 04:08:09.961+03	
6baa4d09-0dc0-06ac-b550-490b766f4592	2021-05-28 04:08:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:08:30.951+03	2021-05-28 04:08:30.962+03	
0caae709-054a-7960-2c38-7334b504830d	2021-05-28 04:08:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:08:50.951+03	2021-05-28 04:08:50.958+03	
91231af7-3120-c859-e296-01a6c42ef94d	2021-05-28 04:09:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:09:10.951+03	2021-05-28 04:09:10.958+03	
6b11ee5d-015b-eb65-d67f-68e5b9ad276e	2021-05-28 04:09:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:09:30.951+03	2021-05-28 04:09:30.959+03	
d440bfed-7ecb-7c82-38c5-e14f9020f41d	2021-05-28 04:09:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:09:50.951+03	2021-05-28 04:09:50.958+03	
30a99861-a5a8-4c19-5590-bf311905ce4e	2021-05-28 04:10:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:10:00.952+03	2021-05-28 04:10:00.974+03	
a688e57b-4ca4-d29b-b4f9-c0e166e61fbc	2021-05-28 04:10:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:10:11.951+03	2021-05-28 04:10:11.958+03	
39da3f53-0790-7f9f-04f2-e33cd88ef9e8	2021-05-28 04:10:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:10:31.951+03	2021-05-28 04:10:31.957+03	
82fedfa4-53ff-f46d-96dd-fc0b8a70c0aa	2021-05-28 04:10:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:10:51.951+03	2021-05-28 04:10:51.959+03	
3e05eb0b-320a-35fc-e745-77e71808d35d	2021-05-28 04:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:11:11.951+03	2021-05-28 04:11:11.959+03	
e898f0b5-8fec-c98a-2a8a-a86a0efe0c1f	2021-05-28 04:11:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:11:31.951+03	2021-05-28 04:11:31.959+03	
b9b0ef32-b5b0-7ffa-239b-5acb3015db27	2021-05-28 04:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:11:51.951+03	2021-05-28 04:11:51.959+03	
5a3b3f88-831b-a7e8-1716-034d887c3631	2021-05-28 04:12:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:12:11.951+03	2021-05-28 04:12:11.958+03	
b42ae544-d8fc-9947-a880-7de7c24ecd8f	2021-05-28 04:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:12:31.951+03	2021-05-28 04:12:31.958+03	
8f031471-c0e5-acf8-25b4-4a724cf55800	2021-05-28 04:12:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:12:51.951+03	2021-05-28 04:12:51.959+03	
078e6110-8845-b76f-08b7-95ba7fbec3f1	2021-05-28 04:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:13:11.951+03	2021-05-28 04:13:11.959+03	
a1eced63-dbc1-22e0-2abe-bc1e6098a9c9	2021-05-28 04:13:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:13:31.951+03	2021-05-28 04:13:31.958+03	
27c97288-1da7-d7a8-afc1-868ad394f184	2021-05-28 04:13:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:13:51.952+03	2021-05-28 04:13:51.96+03	
67fc2776-8aa4-662a-4c99-55e5b4f838fb	2021-05-28 04:14:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:14:12.951+03	2021-05-28 04:14:12.959+03	
4ad70fc2-e121-d455-c4bc-89779e662f8c	2021-05-28 04:14:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:14:32.951+03	2021-05-28 04:14:32.959+03	
038f8cba-4882-23e2-5f00-17845ed72a1d	2021-05-28 04:14:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:14:52.951+03	2021-05-28 04:14:52.958+03	
75611365-a24e-ab85-76ad-705a253c20f8	2021-05-28 04:15:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:15:12.951+03	2021-05-28 04:15:12.959+03	
fe5f168b-17b5-ec47-2cc2-dc5f91eb23e3	2021-05-28 04:15:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:15:32.951+03	2021-05-28 04:15:32.958+03	
64a3ab1a-7360-ca28-5a28-2aae86fc1226	2021-05-28 04:15:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:15:52.951+03	2021-05-28 04:15:52.958+03	
7df9d65c-9e69-bf5d-f8e9-e59181a1917b	2021-05-28 04:16:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:16:12.951+03	2021-05-28 04:16:12.959+03	
8cb4a02c-4172-5a00-adb1-e6846b53e5a7	2021-05-28 04:16:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:16:32.952+03	2021-05-28 04:16:32.959+03	
43ed028a-be16-9eec-b59e-870e91e7e3e1	2021-05-28 04:16:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:16:53.951+03	2021-05-28 04:16:53.958+03	
035e5fbd-93eb-d90f-24eb-759f90afc1fa	2021-05-28 04:17:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:17:13.951+03	2021-05-28 04:17:13.958+03	
12bcb616-a3bf-a556-32e4-1c6d57e8c470	2021-05-28 04:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:17:33.951+03	2021-05-28 04:17:33.958+03	
760c0c65-f803-f6cb-ee64-8dcec747addc	2021-05-28 04:17:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:17:53.951+03	2021-05-28 04:17:53.958+03	
44fef297-a53d-3a7e-1508-403e654dc46d	2021-05-28 04:18:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:18:14.951+03	2021-05-28 04:18:14.958+03	
c1f4ee27-b472-0727-3068-8334196ed11a	2021-05-28 04:18:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:18:34.951+03	2021-05-28 04:18:34.958+03	
633f82be-0c64-675d-24d0-a8d9d7edfb95	2021-05-28 04:18:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:18:54.951+03	2021-05-28 04:18:54.959+03	
aee85fd4-c617-7efa-217c-83501f03a577	2021-05-28 04:19:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:19:14.951+03	2021-05-28 04:19:14.958+03	
a486080f-7bcb-6d8f-93d3-0d8ab8ea9bbc	2021-05-28 04:19:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:19:34.951+03	2021-05-28 04:19:34.958+03	
21eea785-f78d-feb3-0f3f-4fa029325f35	2021-05-28 04:19:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:19:55.951+03	2021-05-28 04:19:55.959+03	
70e75439-57d0-85bf-d0a2-ae71486eb728	2021-05-28 04:20:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:20:05.951+03	2021-05-28 04:20:05.958+03	
41c0a065-7216-45d4-39bb-f909d548c47a	2021-05-28 04:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:20:25.951+03	2021-05-28 04:20:25.958+03	
d9ebca0f-5552-24ec-c707-e436cabba479	2021-05-28 04:20:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:20:45.951+03	2021-05-28 04:20:45.958+03	
ff6bce5f-98b0-465d-d8a0-eab1d02de2f8	2021-05-28 04:21:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:21:05.951+03	2021-05-28 04:21:05.958+03	
5623b135-c32c-f755-8714-31c1dca0938d	2021-05-28 04:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:21:25.951+03	2021-05-28 04:21:25.959+03	
ba8cf87c-7722-945f-e218-d00e9f4a8158	2021-05-28 04:21:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:21:45.951+03	2021-05-28 04:21:45.959+03	
44ff97a0-916b-bc07-c9f2-b36d1f3bcd06	2021-05-28 04:22:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:22:05.951+03	2021-05-28 04:22:05.959+03	
b7ff1f5c-0270-2173-a66c-eef4436d8bd3	2021-05-28 04:22:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:22:25.951+03	2021-05-28 04:22:25.958+03	
c60f2f8d-51a4-d350-3cfd-9e02eff6de4e	2021-05-28 04:22:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:22:45.952+03	2021-05-28 04:22:45.958+03	
0c9bafb7-34ae-2eb2-ffce-cb64358f5613	2021-05-28 04:23:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:23:07.951+03	2021-05-28 04:23:07.958+03	
398c3fa8-ba30-e07a-1eb6-90df9db2e2af	2021-05-28 04:23:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:23:28.951+03	2021-05-28 04:23:28.958+03	
a627c422-b23f-1029-9faa-58477ddf086c	2021-05-28 04:23:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:23:48.951+03	2021-05-28 04:23:48.96+03	
fde90db8-b5b4-2247-faf0-a634773e2e17	2021-05-28 04:24:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:24:08.951+03	2021-05-28 04:24:08.96+03	
8db6a83f-768b-a3e7-dd61-465a531ec9e5	2021-05-28 04:24:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:24:29.951+03	2021-05-28 04:24:29.962+03	
41b847b2-817d-d30a-60bc-d86a51f9350c	2021-05-28 04:24:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:24:49.951+03	2021-05-28 04:24:49.958+03	
7d994128-0cfb-7b9b-ecf5-c6bfa386da83	2021-05-28 04:25:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:25:10.951+03	2021-05-28 04:25:10.958+03	
5cd9da0f-ee8d-9981-c702-add068cc747a	2021-05-28 04:25:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:25:30.951+03	2021-05-28 04:25:30.958+03	
0d7b767a-8940-4890-6099-3e06314d9415	2021-05-28 04:25:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:25:50.951+03	2021-05-28 04:25:50.958+03	
b7fd425c-8503-f1fb-93a9-ea1c9c98be55	2021-05-28 04:26:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:26:11.951+03	2021-05-28 04:26:11.958+03	
e654adcd-b04c-9dd2-bdd6-a11f0fd75f05	2021-05-28 04:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:26:31.951+03	2021-05-28 04:26:31.976+03	
d931e4ab-b146-bcb0-d0eb-2465721a5c82	2021-05-28 04:26:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:26:52.951+03	2021-05-28 04:26:52.959+03	
a8c16ddf-d0c2-6397-837a-7b55ec04db45	2021-05-28 04:27:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:27:12.951+03	2021-05-28 04:27:12.959+03	
5c5497ac-9345-c0fe-fb1f-11d52cce9c7e	2021-05-28 04:27:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:27:32.951+03	2021-05-28 04:27:32.959+03	
0a488c7e-8b39-1304-b381-346f10fab664	2021-05-28 04:27:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:27:52.951+03	2021-05-28 04:27:52.958+03	
b3bbd3df-3e4f-97e2-0c7e-e0005c8e3b8a	2021-05-28 04:28:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:28:12.951+03	2021-05-28 04:28:12.959+03	
0997f2d5-d480-9e6c-63a2-eb604a96a596	2021-05-28 04:28:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:28:32.953+03	2021-05-28 04:28:32.96+03	
aa0f11a9-807f-4f92-2888-c962a9c29060	2021-05-28 04:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:28:53.951+03	2021-05-28 04:28:53.959+03	
790c57c4-1202-510a-80a1-ebe5879c5d67	2021-05-28 04:29:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:29:13.952+03	2021-05-28 04:29:13.959+03	
c5861b61-98ca-107c-988f-9b75850a06eb	2021-05-28 04:29:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:29:34.951+03	2021-05-28 04:29:34.958+03	
39139286-b7ab-511e-388f-6233ab59b396	2021-05-28 04:29:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:29:54.951+03	2021-05-28 04:29:54.972+03	
4c5ac57c-8dc2-f809-3cc6-562eddf08a98	2021-05-28 04:30:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:30:04.951+03	2021-05-28 04:30:04.959+03	
3d10aea0-8b6b-67f1-05b4-a9e208dacdf1	2021-05-28 04:30:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:30:24.951+03	2021-05-28 04:30:24.96+03	
750ccb84-cbf7-af26-fa4e-c712ead615f0	2021-05-28 04:30:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:30:44.951+03	2021-05-28 04:30:44.968+03	
5b5825f6-0f25-b4ff-aadd-6b296a4a22b2	2021-05-28 04:31:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:31:04.951+03	2021-05-28 04:31:04.958+03	
d43a9b26-18a5-0063-9c7d-60974fa3e631	2021-05-28 04:31:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:31:24.951+03	2021-05-28 04:31:24.957+03	
1b52228c-dce1-e818-478b-8f989d4a8b1b	2021-05-28 04:31:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:31:44.951+03	2021-05-28 04:31:44.959+03	
3cfb0a41-4bf3-1523-8b0e-d1e79dbe5630	2021-05-28 04:32:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:32:04.951+03	2021-05-28 04:32:04.958+03	
240aa2fd-ed04-4998-7c83-1f32375ba728	2021-05-28 04:32:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:32:24.951+03	2021-05-28 04:32:24.958+03	
c7f24ebe-dfc1-9ec7-db96-b1592dfa70f3	2021-05-28 04:32:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:32:44.951+03	2021-05-28 04:32:44.958+03	
e7364f8b-5098-77fe-bd89-d6b7739a3399	2021-05-28 04:33:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:33:04.951+03	2021-05-28 04:33:04.958+03	
b30661fa-2fcb-b2a8-7cd7-ce1d60ea85b6	2021-05-28 04:33:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:33:24.951+03	2021-05-28 04:33:24.963+03	
42683cb2-f304-4ad1-5cc0-f34b507c1170	2021-05-28 04:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:33:44.951+03	2021-05-28 04:33:44.957+03	
56c53bda-7508-f9b4-f9d7-b1a27f251101	2021-05-28 04:34:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:34:04.951+03	2021-05-28 04:34:04.958+03	
cba9dd23-9bb3-db3a-02d7-2f6fd34638ec	2021-05-28 04:34:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:34:24.951+03	2021-05-28 04:34:24.959+03	
4747e4ff-4454-eb29-fded-8e005083049a	2021-05-28 04:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:34:44.951+03	2021-05-28 04:34:44.958+03	
b0332062-6788-ab22-c24a-d5ffa90b5e67	2021-05-28 04:35:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:35:04.951+03	2021-05-28 04:35:04.958+03	
d7008600-144f-914c-66cc-e989851db0c7	2021-05-28 04:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:35:24.951+03	2021-05-28 04:35:24.959+03	
4b0aba70-00be-547c-8e60-86579ed8b911	2021-05-28 04:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:35:44.951+03	2021-05-28 04:35:44.959+03	
4910d21a-61d0-3dd8-8f6f-5e244efe838a	2021-05-28 04:36:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:36:04.951+03	2021-05-28 04:36:04.959+03	
0a34e2a0-3b62-dc7e-4b9f-6fab96c32694	2021-05-28 04:36:24.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:36:24.953+03	2021-05-28 04:36:24.961+03	
aabf2e34-8d31-aa98-f9fb-b2cf0708e834	2021-05-28 04:36:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:36:45.951+03	2021-05-28 04:36:45.958+03	
4fdad758-668c-82f7-cce5-1ce71a6f864f	2021-05-28 04:37:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:37:05.952+03	2021-05-28 04:37:05.96+03	
5be39679-eac8-02a1-aaac-b05f6b9c3e31	2021-05-28 04:37:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:37:26.951+03	2021-05-28 04:37:26.958+03	
ac17a139-2098-a1f4-5e79-f91e55529be6	2021-05-28 04:37:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:37:46.951+03	2021-05-28 04:37:46.959+03	
9c1b237c-bde1-ad04-90f6-7540d36d5e34	2021-05-28 04:38:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:38:06.951+03	2021-05-28 04:38:06.959+03	
ef54aed1-0405-d964-2341-c21fa831293f	2021-05-28 04:38:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:38:26.951+03	2021-05-28 04:38:26.959+03	
640326da-d57a-12fe-ca47-62ceba321ae6	2021-05-28 04:38:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:38:46.951+03	2021-05-28 04:38:46.958+03	
d69d01e7-9237-48d5-2dfc-e05ddac880b9	2021-05-28 04:18:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:18:24.951+03	2021-05-28 04:18:24.959+03	
f524a8c3-4640-5367-0b4b-c29b50e13e77	2021-05-28 04:18:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:18:44.951+03	2021-05-28 04:18:44.96+03	
9597ba0a-fe32-6d71-1a83-799f776812e6	2021-05-28 04:19:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:19:04.951+03	2021-05-28 04:19:04.958+03	
34866c6d-d91a-5271-57d0-8b4090b24c92	2021-05-28 04:19:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:19:24.951+03	2021-05-28 04:19:24.959+03	
d3993b17-009a-c735-0bdb-0d45983927c7	2021-05-28 04:19:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:19:44.952+03	2021-05-28 04:19:44.958+03	
54901139-2e28-d7a5-643c-ab621d708009	2021-05-28 04:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 04:20:00.951+03	2021-05-28 04:20:00.957+03	ERROR
7b3516a2-356a-b7b2-75cb-75144b227b47	2021-05-28 04:20:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:20:15.951+03	2021-05-28 04:20:15.959+03	
799184bc-6fc2-e737-b184-89944034929c	2021-05-28 04:20:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:20:35.951+03	2021-05-28 04:20:35.958+03	
34b09987-0906-be9d-2fce-111720f4c626	2021-05-28 04:20:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:20:55.951+03	2021-05-28 04:20:55.958+03	
fc7bdfc0-592a-1f0c-f4be-6a6edadc5f8d	2021-05-28 04:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:21:15.951+03	2021-05-28 04:21:15.959+03	
be7d5a14-99bd-76ed-aa26-2b77fb657724	2021-05-28 04:21:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:21:35.951+03	2021-05-28 04:21:35.962+03	
ad9a95df-a336-0a6a-c941-abb2e736abb1	2021-05-28 04:21:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:21:55.951+03	2021-05-28 04:21:55.959+03	
4a1ba1e9-e6cd-eef6-3dc9-2986d94929a4	2021-05-28 04:22:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:22:15.951+03	2021-05-28 04:22:15.969+03	
0bb0e37c-12dc-7ba7-edbe-4d6c0ac0bb9b	2021-05-28 04:22:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:22:35.951+03	2021-05-28 04:22:35.958+03	
50730c99-d5b0-2b56-417e-64a01ed3858f	2021-05-28 04:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:22:56.952+03	2021-05-28 04:22:56.96+03	
296fd3e0-1472-5a9d-dc5f-1d7cbd84c8eb	2021-05-28 04:23:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:23:17.952+03	2021-05-28 04:23:17.96+03	
17001609-856e-8ca5-f440-228e2769d172	2021-05-28 04:23:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:23:38.951+03	2021-05-28 04:23:38.958+03	
b484f024-9448-b200-494d-e4f83581d1f0	2021-05-28 04:23:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:23:58.951+03	2021-05-28 04:23:58.958+03	
f9393ee0-950c-f7ae-2623-a5580798124c	2021-05-28 04:24:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:24:18.952+03	2021-05-28 04:24:18.959+03	
d2fcf96a-c89e-dbce-ff2a-566b8370f803	2021-05-28 04:24:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:24:39.951+03	2021-05-28 04:24:39.958+03	
57d0dea9-55a9-89ac-c0ef-ab5069fd8761	2021-05-28 04:24:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:24:59.952+03	2021-05-28 04:24:59.962+03	
02191a21-dcbd-6701-ac7e-69797e5d2d76	2021-05-28 04:25:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:25:20.951+03	2021-05-28 04:25:20.96+03	
ba814472-6d31-0dd5-8abc-e821a8ac6069	2021-05-28 04:25:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:25:40.951+03	2021-05-28 04:25:40.957+03	
540c01a4-0367-4a8d-4604-c4f7e9365e13	2021-05-28 04:26:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:26:00.952+03	2021-05-28 04:26:00.96+03	
daeecb5c-d0c1-4312-4b4e-2f4fe942f2f7	2021-05-28 04:26:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:26:21.951+03	2021-05-28 04:26:21.958+03	
86f38dbb-f945-358f-8dbd-b14a72bcb3bd	2021-05-28 04:26:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:26:41.952+03	2021-05-28 04:26:41.96+03	
2da8c492-ae7a-d3fe-7568-548e0b553d13	2021-05-28 04:27:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:27:02.951+03	2021-05-28 04:27:02.959+03	
b4c84525-c6e7-28c6-3cc5-af69d29698b1	2021-05-28 04:27:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:27:22.951+03	2021-05-28 04:27:22.96+03	
17fc7084-4fdf-65eb-eaa8-c80ccb548c08	2021-05-28 04:27:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:27:42.951+03	2021-05-28 04:27:42.96+03	
a1202c0a-7007-4cad-9e13-440db16cee5b	2021-05-28 04:28:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:28:02.951+03	2021-05-28 04:28:02.958+03	
a6b63348-180c-ec30-8aeb-e6d006f9e19c	2021-05-28 04:28:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:28:22.951+03	2021-05-28 04:28:22.959+03	
c324d89c-675d-633a-ade1-b25f4a761b53	2021-05-28 04:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:28:43.951+03	2021-05-28 04:28:43.961+03	
021f1408-a893-eb3f-e3ca-b959e85e62ee	2021-05-28 04:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:29:03.951+03	2021-05-28 04:29:03.958+03	
ab0b18e9-e427-6b5f-28e2-16bccd6d3ace	2021-05-28 04:29:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:29:24.951+03	2021-05-28 04:29:24.957+03	
1860f99c-2a5d-180a-6b08-2dc3b30c5a4c	2021-05-28 04:29:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:29:44.951+03	2021-05-28 04:29:44.959+03	
fea9f81f-6571-f921-0e2c-9620692091e6	2021-05-28 04:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 04:30:00.951+03	2021-05-28 04:30:00.956+03	ERROR
cf076e1d-80c4-f33c-821f-a9e2c12d15e5	2021-05-28 04:30:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:30:14.951+03	2021-05-28 04:30:14.958+03	
5df82f6d-2137-0b41-ab93-cffcccdad07a	2021-05-28 04:30:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:30:34.951+03	2021-05-28 04:30:34.958+03	
f4c1d0c1-04e1-5f11-24a9-3c279a010732	2021-05-28 04:30:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:30:54.951+03	2021-05-28 04:30:54.958+03	
2db68d50-c930-4457-cd89-731ba931fc69	2021-05-28 04:31:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:31:14.951+03	2021-05-28 04:31:14.958+03	
4abfe6b8-ed6c-ca11-ee7b-3ece87d0f948	2021-05-28 04:31:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:31:34.951+03	2021-05-28 04:31:34.962+03	
4717c697-d0ec-9f42-40e6-9f1eb62f02b7	2021-05-28 04:31:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:31:54.951+03	2021-05-28 04:31:54.958+03	
a54ca966-7013-7a05-925a-0c8a074c212e	2021-05-28 04:32:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:32:14.951+03	2021-05-28 04:32:14.957+03	
6c922a4d-8310-ad4a-3130-5adc96ebbeb6	2021-05-28 04:32:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:32:34.951+03	2021-05-28 04:32:34.958+03	
12cebd4c-f669-ca9b-9733-2493b0ccba2e	2021-05-28 04:32:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:32:54.951+03	2021-05-28 04:32:54.962+03	
986518c1-d216-002b-fb24-5cea62ee788a	2021-05-28 04:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:33:14.951+03	2021-05-28 04:33:14.958+03	
4ae483db-2f4d-b136-1676-a3ac578e6824	2021-05-28 04:33:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:33:34.951+03	2021-05-28 04:33:34.959+03	
5cb0dacc-b726-f3e5-ac1c-d5f99c7cc61d	2021-05-28 04:33:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:33:54.951+03	2021-05-28 04:33:54.96+03	
f73d3e61-b276-54d0-9c69-0647940e72d3	2021-05-28 04:34:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:34:14.951+03	2021-05-28 04:34:14.958+03	
800bbf91-e7f8-bfff-36ea-050e9ef85ffe	2021-05-28 04:34:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:34:34.951+03	2021-05-28 04:34:34.958+03	
6bf12539-0b91-8a70-e290-d388572153d9	2021-05-28 04:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:34:54.951+03	2021-05-28 04:34:54.96+03	
c067f420-816d-e060-3463-1d3766658b03	2021-05-28 04:35:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:35:14.951+03	2021-05-28 04:35:14.959+03	
04826941-4746-4942-8974-b860055f18da	2021-05-28 04:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:35:34.951+03	2021-05-28 04:35:34.958+03	
f6dfcc7d-920b-42d2-8ed8-e2acb02326fd	2021-05-28 04:35:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:35:54.951+03	2021-05-28 04:35:54.958+03	
2f051b12-76d7-996f-cb8e-a7543098b8f0	2021-05-28 04:36:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:36:14.951+03	2021-05-28 04:36:14.959+03	
37789fc2-61b6-2f1b-ed4f-8a6cd4156a40	2021-05-28 04:36:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:36:35.951+03	2021-05-28 04:36:35.958+03	
8bd32b61-3e75-8250-6248-d31527c1e8a8	2021-05-28 04:36:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:36:55.951+03	2021-05-28 04:36:55.958+03	
1450cddd-fbfe-2e04-497f-eaf7a79deee2	2021-05-28 04:37:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:37:16.951+03	2021-05-28 04:37:16.957+03	
93bae5e3-249c-c135-da62-4f6df0b213eb	2021-05-28 04:37:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:37:36.951+03	2021-05-28 04:37:36.959+03	
76e0532e-20b7-d7ff-49f5-7e32e787344f	2021-05-28 04:37:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:37:56.951+03	2021-05-28 04:37:56.959+03	
09633f7b-b643-50a0-3095-2494b4a5a727	2021-05-28 04:38:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:38:16.951+03	2021-05-28 04:38:16.959+03	
36a38d8b-fe56-0e85-ef65-a0fabc0493c4	2021-05-28 04:38:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:38:36.951+03	2021-05-28 04:38:36.959+03	
be8bfa19-f265-3dae-08ba-681f9eaa11a1	2021-05-28 04:38:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:38:56.951+03	2021-05-28 04:38:56.958+03	
bbd13726-8fc7-2e38-69d5-ac63e8b6f8c4	2021-05-28 04:39:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:39:06.951+03	2021-05-28 04:39:06.96+03	
ad664c09-5620-be17-669c-922cea9be0a6	2021-05-28 04:39:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:39:26.951+03	2021-05-28 04:39:27.002+03	
9c438569-96a2-3efe-9d35-8e2fd2199711	2021-05-28 04:39:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:39:46.951+03	2021-05-28 04:39:46.958+03	
6b4befb1-2065-0b46-5112-7ef8691af54a	2021-05-28 04:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 04:40:00.951+03	2021-05-28 04:40:00.956+03	ERROR
c2de2710-51a2-774a-92f8-389d415d4e35	2021-05-28 04:40:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:40:16.952+03	2021-05-28 04:40:16.958+03	
0a26c213-01b2-d5c6-d357-78580980744b	2021-05-28 04:40:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:40:37.951+03	2021-05-28 04:40:37.96+03	
f52ceaf7-ad22-b42c-631e-18b8d5c3d228	2021-05-28 04:40:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:40:57.952+03	2021-05-28 04:40:57.962+03	
dc87fdaa-13ef-7372-25d8-1e635a5eadbb	2021-05-28 04:41:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:41:18.951+03	2021-05-28 04:41:18.958+03	
a8431e68-67a6-9515-9179-273b43fd5a65	2021-05-28 04:41:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:41:39.951+03	2021-05-28 04:41:39.96+03	
dc35bea4-d610-3f79-6852-40e9772d10f4	2021-05-28 04:41:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:41:59.951+03	2021-05-28 04:41:59.958+03	
344cae3c-9ab4-fe4e-b16e-9ff4f73c4c1d	2021-05-28 04:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:42:19.951+03	2021-05-28 04:42:19.96+03	
375a6e76-270d-559f-972a-ba95a07a4c6a	2021-05-28 04:42:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:42:39.951+03	2021-05-28 04:42:39.958+03	
b05b53e8-ef47-6af6-a929-e645fce8f8cb	2021-05-28 04:42:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:42:59.951+03	2021-05-28 04:42:59.958+03	
e0c62aaf-5d14-ceda-480f-43cb2ac68185	2021-05-28 04:43:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:43:19.951+03	2021-05-28 04:43:19.958+03	
663185f6-ba3a-9c8a-a3b6-0d4fc6746abe	2021-05-28 04:43:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:43:40.951+03	2021-05-28 04:43:40.957+03	
b8bac3b9-2230-1cf4-e47f-73c2620ef8e4	2021-05-28 04:44:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:44:00.951+03	2021-05-28 04:44:00.958+03	
b96abc65-adf2-85d4-66d6-ba58e1e30bfe	2021-05-28 04:44:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:44:20.951+03	2021-05-28 04:44:20.959+03	
cacd63d0-c769-ce17-c130-77bf3a5cf2d9	2021-05-28 04:44:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:44:40.951+03	2021-05-28 04:44:40.961+03	
826c7d66-18fd-5013-85ea-1ffc6f473391	2021-05-28 04:45:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:45:00.951+03	2021-05-28 04:45:00.958+03	
95e928c1-f750-5b72-ea1b-c47856647d9c	2021-05-28 04:45:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:45:20.951+03	2021-05-28 04:45:20.958+03	
3c8be6e0-bb52-5fb2-bf36-7478151f7b61	2021-05-28 04:45:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:45:41.951+03	2021-05-28 04:45:41.959+03	
91766bb6-4ad2-1fd4-fb22-ef59219d97d0	2021-05-28 04:46:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:46:01.951+03	2021-05-28 04:46:01.958+03	
51f69d61-5f67-b328-400f-3979f56801b2	2021-05-28 04:46:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:46:21.951+03	2021-05-28 04:46:21.963+03	
a3b38d5f-5553-035c-a43e-d48484bafab7	2021-05-28 04:46:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:46:41.951+03	2021-05-28 04:46:41.958+03	
92430160-e41a-bb37-d887-462dec05b432	2021-05-28 04:47:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:47:01.951+03	2021-05-28 04:47:01.957+03	
53b97777-b756-b4ed-992d-1c912f849000	2021-05-28 04:47:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:47:21.952+03	2021-05-28 04:47:21.96+03	
a476ee5b-d84e-7303-d110-0037d443f9d1	2021-05-28 04:47:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:47:42.951+03	2021-05-28 04:47:42.967+03	
81b3b42e-5801-eafb-d69e-418a7791c2e6	2021-05-28 04:48:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:48:02.951+03	2021-05-28 04:48:02.958+03	
69d4310d-224d-4553-e20e-5f4f4d326e4c	2021-05-28 04:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:48:23.951+03	2021-05-28 04:48:23.959+03	
674dd835-61de-a0fd-ddb9-6cbfcf3987a3	2021-05-28 04:48:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:48:43.951+03	2021-05-28 04:48:43.961+03	
5dc2f419-1a85-bbcc-076e-eb24dee91064	2021-05-28 04:49:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:49:03.951+03	2021-05-28 04:49:03.957+03	
6fedab4c-1edd-f700-b127-46e452bce657	2021-05-28 04:49:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:49:23.951+03	2021-05-28 04:49:23.958+03	
68b77e16-5139-0f3a-4d6d-202b031eea8f	2021-05-28 04:49:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:49:43.951+03	2021-05-28 04:49:43.958+03	
e499c984-48a2-d1e8-d68b-a074920af52b	2021-05-28 04:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 04:50:00.951+03	2021-05-28 04:50:00.957+03	ERROR
12279415-ab29-c35e-ccbc-d93c490788c0	2021-05-28 04:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:50:13.951+03	2021-05-28 04:50:13.958+03	
c9db5246-db63-2d59-8f92-a477c5d01000	2021-05-28 04:50:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:50:34.951+03	2021-05-28 04:50:34.959+03	
74d02295-5994-8629-3d87-50d49b1136a7	2021-05-28 04:50:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:50:54.951+03	2021-05-28 04:50:54.958+03	
4226bddf-b098-e5ca-3c9c-38a5fc4f8e62	2021-05-28 04:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:51:14.951+03	2021-05-28 04:51:14.96+03	
a9d7b5fb-3904-19f0-d631-7d3733559037	2021-05-28 04:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:51:34.951+03	2021-05-28 04:51:34.958+03	
8fffb0e4-b27d-e19d-111f-16d6062a9a64	2021-05-28 04:51:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:51:54.951+03	2021-05-28 04:51:54.957+03	
0739171e-e25d-e8c3-987f-e28af3888501	2021-05-28 04:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:52:14.951+03	2021-05-28 04:52:14.959+03	
2dddc0ea-5f9a-2d5b-da6f-dbfe6482a54e	2021-05-28 04:52:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:52:34.951+03	2021-05-28 04:52:34.959+03	
2e5a1a86-be97-1307-0947-50a1dee45911	2021-05-28 04:52:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:52:54.951+03	2021-05-28 04:52:54.958+03	
310fcd15-448c-2a1f-1c78-6c642c9f65a5	2021-05-28 04:53:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:53:14.951+03	2021-05-28 04:53:14.959+03	
44edb254-689a-5fee-a2cd-3c3d6285acae	2021-05-28 04:53:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:53:34.951+03	2021-05-28 04:53:34.959+03	
ee4c5d3b-234a-c6d7-1665-5997ed23b31d	2021-05-28 04:53:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:53:54.951+03	2021-05-28 04:53:54.958+03	
2cd626df-f965-ae61-492b-0326a43b4391	2021-05-28 04:54:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:54:14.951+03	2021-05-28 04:54:14.959+03	
e16f067f-76de-930d-fe75-15a6a9b23e8d	2021-05-28 04:54:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:54:34.951+03	2021-05-28 04:54:34.958+03	
59215e08-2ae3-aa01-aeb0-d7d6b713e04d	2021-05-28 04:54:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:54:54.951+03	2021-05-28 04:54:54.958+03	
0b365e69-7079-3285-13ef-839e7a3f6ff0	2021-05-28 04:55:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:55:14.951+03	2021-05-28 04:55:14.959+03	
9003da31-0da3-5ba2-be23-839681b3898b	2021-05-28 04:55:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:55:34.951+03	2021-05-28 04:55:34.971+03	
b7111ec2-2b9b-d7dc-7d42-a8ad84362b95	2021-05-28 04:55:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:55:54.951+03	2021-05-28 04:55:54.958+03	
468bc6a2-8d04-db31-3d01-17ba72240899	2021-05-28 04:56:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:56:14.951+03	2021-05-28 04:56:14.957+03	
5f0cd316-6ec5-8f30-9d8f-0c789d924994	2021-05-28 04:56:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:56:34.951+03	2021-05-28 04:56:34.958+03	
a4135a06-f61a-206b-4b86-160d1c828f0e	2021-05-28 04:56:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:56:54.951+03	2021-05-28 04:56:54.959+03	
e1c876dc-85d4-2111-8a22-9323966d408f	2021-05-28 04:57:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:57:14.951+03	2021-05-28 04:57:14.957+03	
dc64b1ca-eaa6-f245-24df-9b4c6ffe76ed	2021-05-28 04:57:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:57:34.951+03	2021-05-28 04:57:34.96+03	
9fc47f05-78b1-ec2f-9354-989eaa9000c7	2021-05-28 04:57:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:57:54.951+03	2021-05-28 04:57:54.958+03	
4b86fb4c-01aa-05f2-9692-28e66b2206e3	2021-05-28 04:58:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:58:14.951+03	2021-05-28 04:58:14.958+03	
c0123671-cecb-8ac7-c2ab-10bb0148ede2	2021-05-28 04:58:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:58:34.951+03	2021-05-28 04:58:34.958+03	
6398df05-43ed-d35d-3b01-834282e6a63d	2021-05-28 04:58:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:58:54.951+03	2021-05-28 04:58:54.96+03	
ca10c712-002c-a7dd-a07b-a049fd7b2cee	2021-05-28 04:59:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:59:14.951+03	2021-05-28 04:59:14.959+03	
f14ae94f-e960-9a86-4252-82362d165858	2021-05-28 04:59:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:59:34.951+03	2021-05-28 04:59:34.958+03	
5ac56725-0fb0-b0ba-3dc0-599aca8fde65	2021-05-28 04:39:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:39:16.951+03	2021-05-28 04:39:16.959+03	
51b7098e-460b-d8a1-2885-e1d7fd0edb05	2021-05-28 04:39:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:39:36.951+03	2021-05-28 04:39:36.958+03	
3faa9315-b615-4718-21b2-0f555c00a204	2021-05-28 04:39:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:39:56.951+03	2021-05-28 04:39:56.959+03	
b5c6a139-7e9d-1e01-73a5-d9ae6e86b743	2021-05-28 04:40:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:40:06.951+03	2021-05-28 04:40:06.96+03	
b2e1bd0a-43cb-b90a-061e-4dcc67fae98d	2021-05-28 04:40:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:40:27.951+03	2021-05-28 04:40:27.958+03	
b5d8e6f1-2fa9-eadb-b194-7987c4d33913	2021-05-28 04:40:47.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:40:47.951+03	2021-05-28 04:40:47.958+03	
9dca21d4-0e26-6424-7a41-a3a3c1d58a18	2021-05-28 04:41:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:41:08.951+03	2021-05-28 04:41:08.958+03	
13221761-a050-4dd7-06c5-46e094d888ef	2021-05-28 04:41:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:41:28.952+03	2021-05-28 04:41:28.96+03	
83625d30-e110-6c46-9003-a70c51d2a3c2	2021-05-28 04:41:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:41:49.951+03	2021-05-28 04:41:49.958+03	
3dea541a-fbb3-a851-a21f-6bce7d5c83db	2021-05-28 04:42:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:42:09.951+03	2021-05-28 04:42:09.959+03	
ee0c410c-80e2-1843-3793-ce1216e47250	2021-05-28 04:42:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:42:29.951+03	2021-05-28 04:42:29.959+03	
1858cae5-630f-273d-2bd6-aa8b21ad4d47	2021-05-28 04:42:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:42:49.951+03	2021-05-28 04:42:49.958+03	
2cdd3d64-d32a-017b-21fc-409b9356e41b	2021-05-28 04:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:43:09.951+03	2021-05-28 04:43:09.959+03	
7ad5e992-6945-dda7-e16a-909a37da8542	2021-05-28 04:43:29.963	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:43:29.962+03	2021-05-28 04:43:29.97+03	
d9103f3e-8ab7-c1d0-5118-4c7bd7833d7f	2021-05-28 04:43:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:43:50.951+03	2021-05-28 04:43:50.958+03	
35ece2dd-0af7-2a8d-3bc6-e98db8427c9e	2021-05-28 04:44:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:44:10.951+03	2021-05-28 04:44:10.958+03	
8317030d-445b-dbbb-1dd8-c60ef9196d9c	2021-05-28 04:44:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:44:30.951+03	2021-05-28 04:44:30.959+03	
a1014775-3156-30da-3571-21de1821fcdb	2021-05-28 04:44:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:44:50.951+03	2021-05-28 04:44:50.958+03	
95da3b59-0681-8066-7568-607e2b335bbf	2021-05-28 04:45:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:45:10.951+03	2021-05-28 04:45:10.958+03	
1a3074fe-6949-e11a-23ae-2a8463127e11	2021-05-28 04:45:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:45:30.952+03	2021-05-28 04:45:30.958+03	
77254ee3-4494-0eb4-33d6-23ff0d6c6632	2021-05-28 04:45:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:45:51.951+03	2021-05-28 04:45:51.958+03	
34e8d9e8-f4c7-aa94-25ce-6fd3d39ae714	2021-05-28 04:46:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:46:11.951+03	2021-05-28 04:46:11.958+03	
fe7b4a83-4286-d417-1201-b48832a436d8	2021-05-28 04:46:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:46:31.951+03	2021-05-28 04:46:31.958+03	
2ed3b8ef-5d3c-23f8-ee1d-f89746c7ce93	2021-05-28 04:46:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:46:51.951+03	2021-05-28 04:46:51.958+03	
e462bd07-5f17-0e0f-9ab2-fdb9966f1e72	2021-05-28 04:47:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:47:11.951+03	2021-05-28 04:47:11.959+03	
6c6c4da5-ef77-65e5-2c87-ae87d171ab4e	2021-05-28 04:47:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:47:32.951+03	2021-05-28 04:47:32.959+03	
f21005f4-ad16-1600-3260-eea7211d4d37	2021-05-28 04:47:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:47:52.951+03	2021-05-28 04:47:52.958+03	
5940dabf-ab4a-4b0e-fabe-3d99ec599af2	2021-05-28 04:48:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:48:12.953+03	2021-05-28 04:48:12.96+03	
265e24bf-82e4-4eac-68cd-f1cf9e67b5a8	2021-05-28 04:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:48:33.951+03	2021-05-28 04:48:33.96+03	
37615c47-c4d9-0ef2-2ea7-7e17b8e90a6b	2021-05-28 04:48:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:48:53.951+03	2021-05-28 04:48:53.958+03	
1ca93128-9545-3270-0ca4-12a3914f456d	2021-05-28 04:49:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:49:13.951+03	2021-05-28 04:49:13.958+03	
3bebaf67-15a1-1a39-505c-e859ffff7439	2021-05-28 04:49:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:49:33.951+03	2021-05-28 04:49:33.958+03	
60251e1d-0d81-6211-3648-034019fd38b5	2021-05-28 04:49:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:49:53.951+03	2021-05-28 04:49:53.958+03	
ff91a1cd-dbf9-22c4-f4f1-a762c2215f1d	2021-05-28 04:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:50:03.951+03	2021-05-28 04:50:03.958+03	
ddb55753-155e-77e4-cbce-5c2992b0c7cc	2021-05-28 04:50:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:50:23.952+03	2021-05-28 04:50:23.959+03	
7eec9298-9358-609d-e2f8-3970de136b7c	2021-05-28 04:50:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:50:44.951+03	2021-05-28 04:50:44.958+03	
daf75535-a096-06bc-fa6a-48cff2f26a4b	2021-05-28 04:51:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:51:04.951+03	2021-05-28 04:51:04.959+03	
5597c62b-b528-b683-4b9a-7eee2482356f	2021-05-28 04:51:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:51:24.951+03	2021-05-28 04:51:24.959+03	
4724aa7e-80f1-ffeb-55fa-d8dbdb8ae5c5	2021-05-28 04:51:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:51:44.951+03	2021-05-28 04:51:44.958+03	
7c8aa14b-b2eb-2a78-383e-b07f15cbd194	2021-05-28 04:52:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:52:04.951+03	2021-05-28 04:52:04.962+03	
c9ef0bb6-fa07-c028-e4a3-fe914259baa5	2021-05-28 04:52:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:52:24.951+03	2021-05-28 04:52:24.957+03	
533ddbc6-4b64-60ec-8428-d3cf38e0f18b	2021-05-28 04:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:52:44.951+03	2021-05-28 04:52:44.959+03	
ca124992-5084-5437-a14f-0f74ab58a8fc	2021-05-28 04:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:53:04.951+03	2021-05-28 04:53:04.958+03	
9d67c7d4-9f2b-a123-b7b6-7c3acaf14610	2021-05-28 04:53:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:53:24.951+03	2021-05-28 04:53:24.959+03	
2dc15a4d-849f-d1a3-b8aa-4d9f78c2f790	2021-05-28 04:53:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:53:44.951+03	2021-05-28 04:53:44.958+03	
0030dd47-2d77-2ccc-8a92-d0d045f07663	2021-05-28 04:54:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:54:04.951+03	2021-05-28 04:54:04.967+03	
9f5ec396-7692-d6c1-af7d-f468e44d379d	2021-05-28 04:54:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:54:24.951+03	2021-05-28 04:54:24.959+03	
eb836ac6-c835-3613-c443-861d7f665e55	2021-05-28 04:54:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:54:44.951+03	2021-05-28 04:54:44.959+03	
e02f3ef9-30d3-1940-60d7-06a1ae07b110	2021-05-28 04:55:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:55:04.951+03	2021-05-28 04:55:04.958+03	
1a16ab12-7e81-24ca-aa52-7821c143088f	2021-05-28 04:55:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:55:24.951+03	2021-05-28 04:55:24.959+03	
72ec9a35-5932-e2db-fcb2-edb20c3ab147	2021-05-28 04:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:55:44.951+03	2021-05-28 04:55:44.958+03	
740a5205-a01b-90f9-a111-f5751115230b	2021-05-28 04:56:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:56:04.951+03	2021-05-28 04:56:04.958+03	
01b89f71-6d9f-5dff-eeb7-70a15def5746	2021-05-28 04:56:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:56:24.951+03	2021-05-28 04:56:24.959+03	
08e6dcfa-e4e9-4705-ed53-1c1914eafab5	2021-05-28 04:56:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:56:44.951+03	2021-05-28 04:56:44.958+03	
249a7405-043a-3ffb-2292-1d9715be663e	2021-05-28 04:57:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:57:04.951+03	2021-05-28 04:57:04.961+03	
fa85d212-eb6a-d2d1-6a1a-32dca0b764b3	2021-05-28 04:57:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:57:24.951+03	2021-05-28 04:57:24.959+03	
410a6238-538f-df95-0486-35e8c4678617	2021-05-28 04:57:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:57:44.951+03	2021-05-28 04:57:44.958+03	
d41b16c0-aabd-bc6f-c730-785f24f82bd4	2021-05-28 04:58:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:58:04.951+03	2021-05-28 04:58:04.962+03	
9c36fae9-a541-72be-a942-932b04ed8eba	2021-05-28 04:58:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:58:24.951+03	2021-05-28 04:58:24.958+03	
b9fc1f5f-d44f-fc16-588e-b9682b0f3440	2021-05-28 04:58:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:58:44.951+03	2021-05-28 04:58:44.958+03	
b67710b0-b6f4-9b22-2d6e-87a54fbd8fc1	2021-05-28 04:59:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:59:04.951+03	2021-05-28 04:59:04.958+03	
162e8374-16f1-f842-593b-bd5cc76e531b	2021-05-28 04:59:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:59:24.951+03	2021-05-28 04:59:24.958+03	
a1949a17-00dd-a56e-efce-73f09e330f24	2021-05-28 04:59:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:59:44.951+03	2021-05-28 04:59:44.958+03	
be6aaa2d-b299-94b8-9e5c-6e65e765fb7e	2021-05-28 04:59:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 04:59:54.951+03	2021-05-28 04:59:54.959+03	
07b95471-091f-fca0-de71-6c96c72164e7	2021-05-28 05:00:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:00:04.951+03	2021-05-28 05:00:04.958+03	
9cc9e6a5-a78f-18ca-c3ed-f0ee873a475f	2021-05-28 05:00:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:00:24.951+03	2021-05-28 05:00:24.97+03	
d5749383-0d38-66b2-1199-58885ad0d2f7	2021-05-28 05:00:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:00:44.951+03	2021-05-28 05:00:44.958+03	
a0924e12-890f-ddaf-289d-3daf5cc8defe	2021-05-28 05:01:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:01:04.951+03	2021-05-28 05:01:04.958+03	
0b8bccf0-cc6e-6f48-0178-68820328d3b6	2021-05-28 05:01:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:01:24.951+03	2021-05-28 05:01:24.958+03	
5df1ed74-3b12-bcf3-abc9-00f25bc8099f	2021-05-28 05:01:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:01:44.951+03	2021-05-28 05:01:44.959+03	
184a7eb1-ea04-bfca-7b85-da242158364f	2021-05-28 05:02:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:02:04.951+03	2021-05-28 05:02:04.962+03	
299d370e-ee3d-df43-b3cc-3758e6a11605	2021-05-28 05:02:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:02:24.951+03	2021-05-28 05:02:24.958+03	
3ba58914-859b-0edf-719a-7edd57017499	2021-05-28 05:02:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:02:44.951+03	2021-05-28 05:02:44.959+03	
94c8db29-d893-4ecc-d065-1ddff18da4d9	2021-05-28 05:03:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:03:04.951+03	2021-05-28 05:03:04.958+03	
5f8d87d7-fef2-229c-8816-86eb1b614d0f	2021-05-28 05:03:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:03:24.951+03	2021-05-28 05:03:24.958+03	
56e57437-f8c2-ca59-4fed-db13e8f4d6f5	2021-05-28 05:03:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:03:44.951+03	2021-05-28 05:03:44.958+03	
94905a02-b6f1-319b-a4e1-aeae25d6afe2	2021-05-28 05:04:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:04:04.951+03	2021-05-28 05:04:04.96+03	
0ee6ecf1-25a9-d7d3-7071-762f49abb217	2021-05-28 05:04:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:04:24.951+03	2021-05-28 05:04:24.958+03	
ce6acb9a-a573-eaaf-d05e-510aa0fb1afc	2021-05-28 05:04:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:04:44.951+03	2021-05-28 05:04:44.958+03	
e1a807a7-0701-4371-8f13-6dd7c414c0e2	2021-05-28 05:05:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:05:04.951+03	2021-05-28 05:05:04.959+03	
e90c32e6-6c0d-a827-dff3-15e0c45db43b	2021-05-28 05:05:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:05:24.951+03	2021-05-28 05:05:24.958+03	
e66450bc-f916-435a-0b76-8943965fd7d0	2021-05-28 05:05:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:05:44.951+03	2021-05-28 05:05:44.961+03	
df469b69-1d6f-d178-eb54-5a077d2871ab	2021-05-28 05:06:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:06:04.951+03	2021-05-28 05:06:04.958+03	
9bce6041-49cf-e7ec-7047-59c14e4ef5c1	2021-05-28 05:06:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:06:24.951+03	2021-05-28 05:06:24.96+03	
9b367056-c1ef-aa4f-c92b-48df5842b499	2021-05-28 05:06:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:06:44.951+03	2021-05-28 05:06:44.957+03	
6c17e801-f82e-d258-967d-a40aef731a24	2021-05-28 05:07:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:07:04.951+03	2021-05-28 05:07:04.958+03	
80e9d319-42c7-e2c9-5c6f-3cd91fe54f46	2021-05-28 05:07:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:07:24.951+03	2021-05-28 05:07:24.958+03	
b4651de7-f562-d059-62ef-69a49c15463b	2021-05-28 05:07:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:07:44.951+03	2021-05-28 05:07:44.961+03	
94c538fc-2785-e3be-e18c-033e824efb39	2021-05-28 05:08:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:08:04.951+03	2021-05-28 05:08:04.958+03	
841aff01-c724-402a-530f-1a441a870384	2021-05-28 05:08:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:08:24.951+03	2021-05-28 05:08:24.957+03	
1721e658-dc06-748f-a3bd-479f8f9cce10	2021-05-28 05:08:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:08:44.951+03	2021-05-28 05:08:44.959+03	
8d7b2067-9e9b-1191-607b-fefb69619a54	2021-05-28 05:09:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:09:05.951+03	2021-05-28 05:09:05.96+03	
40bd6f2b-1ebe-c409-0760-6517983947d2	2021-05-28 05:09:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:09:25.951+03	2021-05-28 05:09:25.961+03	
92d0a155-5b50-8ded-e92c-7cf4fffb84dc	2021-05-28 05:09:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:09:45.951+03	2021-05-28 05:09:45.972+03	
37238a5c-3a56-6d50-fcb8-11cb1363e285	2021-05-28 05:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 05:10:00.951+03	2021-05-28 05:10:00.961+03	ERROR
b61acf0f-8105-769e-3af6-3cd9dc9468db	2021-05-28 05:10:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:10:15.951+03	2021-05-28 05:10:15.958+03	
28a1eab9-4cce-f3f5-0686-e8a0ff858871	2021-05-28 05:10:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:10:35.951+03	2021-05-28 05:10:35.958+03	
6b5efc66-786f-8ba8-18ba-f3b0bff45c30	2021-05-28 05:10:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:10:55.951+03	2021-05-28 05:10:55.96+03	
0cdd9064-e08e-6a14-4a74-2aaec11be165	2021-05-28 05:11:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:11:15.951+03	2021-05-28 05:11:15.959+03	
e8a0b8a1-8618-fc37-be14-30328d313870	2021-05-28 05:11:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:11:35.951+03	2021-05-28 05:11:35.958+03	
5736d319-cb3b-66ff-ca87-0db4f8f2b95a	2021-05-28 05:11:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:11:55.951+03	2021-05-28 05:11:55.959+03	
32fd1b17-0d9a-7346-b53c-4eb74b573b49	2021-05-28 05:12:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:12:15.951+03	2021-05-28 05:12:15.959+03	
21385ad7-dc59-523f-7503-d64d66cf1aae	2021-05-28 05:12:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:12:36.952+03	2021-05-28 05:12:36.96+03	
dd13f315-8d1e-4cd1-6388-7dee79125949	2021-05-28 05:12:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:12:57.952+03	2021-05-28 05:12:57.96+03	
7e96a65c-3c5c-d0ce-64b2-d1ec297d00c2	2021-05-28 05:13:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:13:17.952+03	2021-05-28 05:13:17.96+03	
7652e03e-ebce-5dfa-3ff6-b125d5c3102c	2021-05-28 05:13:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:13:38.951+03	2021-05-28 05:13:38.957+03	
fcc17705-e0c4-4d94-946f-8abf9f4be1e0	2021-05-28 05:13:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:13:58.951+03	2021-05-28 05:13:58.958+03	
03a92463-0cca-1146-a502-7c43cd470c08	2021-05-28 05:14:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:14:18.951+03	2021-05-28 05:14:18.958+03	
61c7342a-0741-7924-fd96-c2ce1522eba2	2021-05-28 05:14:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:14:38.951+03	2021-05-28 05:14:38.957+03	
f68b6ad4-a492-4e60-52e2-a7f492a82935	2021-05-28 05:14:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:14:58.951+03	2021-05-28 05:14:58.958+03	
521b5192-3883-791e-235d-6ca6e29cd6fe	2021-05-28 05:15:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:15:18.951+03	2021-05-28 05:15:18.959+03	
557d25e4-853e-56f3-de98-029d745982d9	2021-05-28 05:15:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:15:38.951+03	2021-05-28 05:15:38.959+03	
fe62fa6a-83bd-4609-0344-4c9ad0d20480	2021-05-28 05:15:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:15:58.951+03	2021-05-28 05:15:58.957+03	
43660c37-13ab-78c6-ac77-4c6e92c7207a	2021-05-28 05:16:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:16:18.951+03	2021-05-28 05:16:18.958+03	
d0e97618-7f75-15fc-5a1d-7039767086f2	2021-05-28 05:16:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:16:38.951+03	2021-05-28 05:16:38.959+03	
ef100091-4e96-0ac4-4267-ec06e23cc8e1	2021-05-28 05:16:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:16:58.951+03	2021-05-28 05:16:58.959+03	
e602e82c-9ec7-ca27-2590-082de2da723f	2021-05-28 05:17:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:17:18.951+03	2021-05-28 05:17:18.96+03	
3ebc06df-3e46-c795-20b1-d54c0a300ab9	2021-05-28 05:17:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:17:38.951+03	2021-05-28 05:17:38.958+03	
c7727f0c-a076-82ca-9f48-4efef5d2c529	2021-05-28 05:17:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:17:58.951+03	2021-05-28 05:17:58.959+03	
dca60431-396b-5b4f-f4d3-3e5f09936090	2021-05-28 05:18:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:18:18.951+03	2021-05-28 05:18:18.958+03	
5a236ad1-fad3-deba-3edd-2d0a5ff9eb01	2021-05-28 05:18:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:18:38.951+03	2021-05-28 05:18:38.958+03	
7115c7bb-01da-d42c-5ff9-fc5dee7787de	2021-05-28 05:18:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:18:58.951+03	2021-05-28 05:18:58.959+03	
92a5af5f-aa2f-7a55-d0c7-32aa5137c5e1	2021-05-28 05:19:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:19:18.951+03	2021-05-28 05:19:18.957+03	
2ad02b77-12d9-a3c7-5f32-f54509b8dad7	2021-05-28 05:19:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:19:38.951+03	2021-05-28 05:19:38.958+03	
f53e20c3-ff16-655e-16b5-6cc3473ae510	2021-05-28 05:19:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:19:58.951+03	2021-05-28 05:19:58.959+03	
33885ceb-283d-c3b9-c03f-5f275d55f2a8	2021-05-28 05:20:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:20:08.951+03	2021-05-28 05:20:08.963+03	
cc3f2803-981b-0d96-2aeb-9ac2c6a655ef	2021-05-28 05:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 05:00:00.951+03	2021-05-28 05:00:00.96+03	ERROR
602d94dd-ac52-5b75-8d83-e1d72a3337a9	2021-05-28 05:00:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:00:14.951+03	2021-05-28 05:00:14.958+03	
a7dc0f18-fbab-bd23-b880-1b0d718e57a3	2021-05-28 05:00:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:00:34.951+03	2021-05-28 05:00:34.959+03	
3a95db82-cfe7-e9ec-1d44-0724cfb39cf5	2021-05-28 05:00:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:00:54.951+03	2021-05-28 05:00:54.959+03	
ad2d13be-9d46-8bf6-86ad-6518786b8efb	2021-05-28 05:01:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:01:14.951+03	2021-05-28 05:01:14.96+03	
3940d542-545b-6c4f-d684-3f4c47a1bc8f	2021-05-28 05:01:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:01:34.951+03	2021-05-28 05:01:34.958+03	
717069b6-60b8-6cf9-608c-24e2ca51071a	2021-05-28 05:01:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:01:54.951+03	2021-05-28 05:01:54.96+03	
4296e2ce-fc3c-b65d-16ae-aa6d61f4e27e	2021-05-28 05:02:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:02:14.951+03	2021-05-28 05:02:14.96+03	
996895ae-038b-4e13-6dca-97f8e367f9aa	2021-05-28 05:02:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:02:34.951+03	2021-05-28 05:02:34.958+03	
99adbdda-95ae-5d73-4f9c-4f1822cfbed3	2021-05-28 05:02:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:02:54.951+03	2021-05-28 05:02:54.96+03	
76c8b5ad-dbf3-b021-ddde-2ec101aadad8	2021-05-28 05:03:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:03:14.951+03	2021-05-28 05:03:14.957+03	
4c54600c-174f-31ad-3d08-098c983d5282	2021-05-28 05:03:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:03:34.951+03	2021-05-28 05:03:34.958+03	
77a59362-e5b2-9fee-8862-e650c7bcb4b8	2021-05-28 05:03:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:03:54.951+03	2021-05-28 05:03:54.96+03	
ecf85181-912c-f02e-edb0-961f27db34fd	2021-05-28 05:04:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:04:14.951+03	2021-05-28 05:04:14.96+03	
3f8a2943-f2cc-5416-f8ad-27b88f94184d	2021-05-28 05:04:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:04:34.951+03	2021-05-28 05:04:34.958+03	
deed2119-b33b-7b48-2129-b2efe0b36b4d	2021-05-28 05:04:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:04:54.951+03	2021-05-28 05:04:54.959+03	
cf93c2e1-1b78-9b27-74db-8a846e27714b	2021-05-28 05:05:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:05:14.951+03	2021-05-28 05:05:14.958+03	
74c2ad7c-3d92-61d8-0e50-f604749331af	2021-05-28 05:05:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:05:34.951+03	2021-05-28 05:05:34.958+03	
da1432f2-fcb9-2ffe-70e8-be348acb4c48	2021-05-28 05:05:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:05:54.951+03	2021-05-28 05:05:54.958+03	
efb7822e-5cb1-8cbf-42b4-407fb1ddff4a	2021-05-28 05:06:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:06:14.951+03	2021-05-28 05:06:14.96+03	
942755b4-9ccf-04f4-3cf5-995b6d8d95c8	2021-05-28 05:06:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:06:34.951+03	2021-05-28 05:06:34.958+03	
dec1ee33-7210-4800-2bde-8cf5769caece	2021-05-28 05:06:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:06:54.951+03	2021-05-28 05:06:54.957+03	
44c31740-418f-d6b5-bc9f-ae95dd7ea2ea	2021-05-28 05:07:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:07:14.951+03	2021-05-28 05:07:14.959+03	
0e0edf73-d6cc-21b2-b9fb-1232db354ab8	2021-05-28 05:07:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:07:34.951+03	2021-05-28 05:07:34.959+03	
51e7c831-aa4d-b6bb-e5cd-5107dfeed16a	2021-05-28 05:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:07:54.951+03	2021-05-28 05:07:54.958+03	
2c14d1f0-6b02-9f10-5b81-565dcdae322c	2021-05-28 05:08:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:08:14.951+03	2021-05-28 05:08:14.957+03	
a469f93f-3f7c-4c0a-19aa-ace3cbdd8cf4	2021-05-28 05:08:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:08:34.951+03	2021-05-28 05:08:34.958+03	
59ecd740-4394-b1f1-b021-dc7f0408f8e7	2021-05-28 05:08:54.959	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:08:54.959+03	2021-05-28 05:08:54.967+03	
9844e7cb-5c95-36c6-c1c4-0e887f61d751	2021-05-28 05:09:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:09:15.951+03	2021-05-28 05:09:15.961+03	
932760be-8fc1-095a-c39c-56f3eb5192f1	2021-05-28 05:09:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:09:35.951+03	2021-05-28 05:09:35.958+03	
6d8783ba-9368-99c4-c866-b8aa39c4c42d	2021-05-28 05:09:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:09:55.951+03	2021-05-28 05:09:55.965+03	
8a846a7a-3611-ef54-c5e0-7a2176cce4b4	2021-05-28 05:10:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:10:05.951+03	2021-05-28 05:10:05.96+03	
397d3795-9cce-4c90-6c1a-f8753b84490a	2021-05-28 05:10:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:10:25.951+03	2021-05-28 05:10:25.961+03	
b8e79a4e-08ec-7798-ddaf-104808483f9d	2021-05-28 05:10:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:10:45.951+03	2021-05-28 05:10:45.958+03	
46ed4403-b7b3-8aaa-dcee-f870bf761877	2021-05-28 05:11:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:11:05.951+03	2021-05-28 05:11:05.959+03	
ddd2d5ad-ac84-ef80-a9ad-b1a97852949d	2021-05-28 05:11:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:11:25.951+03	2021-05-28 05:11:25.959+03	
68ed66f2-3e82-9faa-b277-d66d1ed516ee	2021-05-28 05:11:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:11:45.951+03	2021-05-28 05:11:45.959+03	
d08fb659-f480-85f0-eee8-1b925829aa73	2021-05-28 05:12:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:12:05.951+03	2021-05-28 05:12:05.97+03	
bed949f8-374d-3e32-7f60-fc8ffeef0c61	2021-05-28 05:12:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:12:25.952+03	2021-05-28 05:12:25.965+03	
a30f0be5-71ff-fb13-5e5e-16d3bf200ef7	2021-05-28 05:12:47.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:12:47.951+03	2021-05-28 05:12:47.958+03	
6c1fda58-a57d-dc05-30db-25b0cc1f4ac3	2021-05-28 05:13:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:13:07.952+03	2021-05-28 05:13:07.97+03	
76574252-e1c1-eab2-94a7-b729e9db2e8d	2021-05-28 05:13:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:13:28.951+03	2021-05-28 05:13:29.196+03	
d6fd8f7b-2d8a-853d-608a-1df6d292c62f	2021-05-28 05:13:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:13:48.951+03	2021-05-28 05:13:48.957+03	
44eb8444-b170-f7c6-0ef9-236b6fac4bb7	2021-05-28 05:14:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:14:08.951+03	2021-05-28 05:14:08.96+03	
2968adac-f36b-0e60-b386-0dffd0a1516c	2021-05-28 05:14:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:14:28.951+03	2021-05-28 05:14:28.958+03	
32b61d33-ea28-082b-7fcb-c3ade3effafd	2021-05-28 05:14:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:14:48.951+03	2021-05-28 05:14:48.958+03	
2c687c66-5afe-28b9-b60c-a7dd7deefc72	2021-05-28 05:15:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:15:08.951+03	2021-05-28 05:15:08.959+03	
cd0fe65e-366e-cbe4-cfa6-1e468a605c1b	2021-05-28 05:15:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:15:28.951+03	2021-05-28 05:15:28.958+03	
40d51a37-1ce0-df43-0725-42432b74dd35	2021-05-28 05:15:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:15:48.951+03	2021-05-28 05:15:48.958+03	
a895be8b-eb1a-b789-2454-4aa580cf55a1	2021-05-28 05:16:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:16:08.951+03	2021-05-28 05:16:08.959+03	
d5d8cf6d-a1fd-f175-8682-cb89edfa8e32	2021-05-28 05:16:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:16:28.951+03	2021-05-28 05:16:28.959+03	
6f76c050-a730-2443-e321-b978a8535b7c	2021-05-28 05:16:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:16:48.951+03	2021-05-28 05:16:48.959+03	
ad0b17e0-7b75-21a6-fe5b-afe2706015fa	2021-05-28 05:17:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:17:08.951+03	2021-05-28 05:17:08.959+03	
fd46ecd9-d1b5-bb8a-dfa7-be27bde2cc45	2021-05-28 05:17:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:17:28.951+03	2021-05-28 05:17:28.958+03	
1b6398da-0eaf-1ffd-3bb5-97a08440f7dd	2021-05-28 05:17:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:17:48.951+03	2021-05-28 05:17:48.961+03	
ddd80d24-0e8d-8ab7-4181-c3b5a0fe6aaf	2021-05-28 05:18:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:18:08.951+03	2021-05-28 05:18:08.957+03	
5fd03be5-de6b-15d2-5eaa-0be39f3fc241	2021-05-28 05:18:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:18:28.951+03	2021-05-28 05:18:28.96+03	
f7812c9a-24ed-e388-2df8-14bbd36df54c	2021-05-28 05:18:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:18:48.951+03	2021-05-28 05:18:48.959+03	
5459c3bb-ee2f-14ba-800d-66d30ae51420	2021-05-28 05:19:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:19:08.951+03	2021-05-28 05:19:08.96+03	
1568e294-25e0-a945-d929-1063f36efa39	2021-05-28 05:19:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:19:28.951+03	2021-05-28 05:19:28.968+03	
a40fb5ec-36e3-5e17-520a-d4ef10949b65	2021-05-28 05:19:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:19:48.951+03	2021-05-28 05:19:48.959+03	
ae77a1f8-2d0e-ca91-ffe4-be918bf51a3f	2021-05-28 05:20:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 05:20:00.951+03	2021-05-28 05:20:00.956+03	ERROR
188a2a2a-0002-0b20-4484-d5d5cb6c207a	2021-05-28 05:20:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:20:18.952+03	2021-05-28 05:20:18.959+03	
4a9be181-6130-1004-d50b-c45c549756bf	2021-05-28 05:20:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:20:29.951+03	2021-05-28 05:20:29.961+03	
a3193b3b-f218-2574-536a-9bbe04ff5128	2021-05-28 05:20:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:20:49.951+03	2021-05-28 05:20:49.958+03	
02a2b27c-1743-2a7b-f923-ca25d8de0aa5	2021-05-28 05:21:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:21:09.951+03	2021-05-28 05:21:09.958+03	
e6d9007e-1cae-e6cd-9fef-a8e39460f7cb	2021-05-28 05:21:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:21:29.951+03	2021-05-28 05:21:29.965+03	
07aace13-076d-4031-d2a1-738d687da8f7	2021-05-28 05:21:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:21:49.952+03	2021-05-28 05:21:49.96+03	
9842619f-8f0d-cd4a-d6cb-f7fe89fc6ca9	2021-05-28 05:22:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:22:11.951+03	2021-05-28 05:22:11.96+03	
570e76b7-8c2e-db3b-e4b2-08da1a23b38a	2021-05-28 05:22:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:22:32.951+03	2021-05-28 05:22:32.962+03	
ae9b2719-3c54-55c3-baef-23a6f5917bd0	2021-05-28 05:22:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:22:53.951+03	2021-05-28 05:22:53.959+03	
b1e8ecdf-768c-1568-8cf2-f5479367274c	2021-05-28 05:23:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:23:13.951+03	2021-05-28 05:23:13.958+03	
11c14077-40da-a4cc-96f6-2e01e515036c	2021-05-28 05:23:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:23:33.951+03	2021-05-28 05:23:33.958+03	
69cf909b-2e86-363e-7835-60dc52d85fa2	2021-05-28 05:23:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:23:53.951+03	2021-05-28 05:23:53.958+03	
99eee1c9-d6b7-3d73-c026-893964618bbd	2021-05-28 05:24:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:24:13.951+03	2021-05-28 05:24:13.958+03	
6adee7d5-9502-3013-5d52-1b88f07873a7	2021-05-28 05:24:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:24:34.951+03	2021-05-28 05:24:34.958+03	
98a9ae02-1a61-61d9-65d6-7bb7d77abcb4	2021-05-28 05:24:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:24:54.951+03	2021-05-28 05:24:54.958+03	
6774f086-1605-e1d6-798f-f6284368187f	2021-05-28 05:25:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:25:15.951+03	2021-05-28 05:25:15.958+03	
468264d3-6444-7517-2fab-a8c96f3a3c65	2021-05-28 05:25:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:25:35.951+03	2021-05-28 05:25:35.958+03	
7a0f44f2-1e01-61e2-3148-7a25b9402612	2021-05-28 05:25:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:25:55.951+03	2021-05-28 05:25:55.96+03	
20d19231-2914-a6cc-3f97-6ef63ad2fceb	2021-05-28 05:26:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:26:15.951+03	2021-05-28 05:26:15.959+03	
6eb3a11d-77f2-a2d3-7e57-0e13efed98fa	2021-05-28 05:26:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:26:36.951+03	2021-05-28 05:26:36.96+03	
224f2c08-3d44-86f3-d89c-03441b410557	2021-05-28 05:26:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:26:56.951+03	2021-05-28 05:26:56.958+03	
ed168aa5-1bef-5267-4b07-4492474891af	2021-05-28 05:27:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:27:16.951+03	2021-05-28 05:27:16.959+03	
186746e6-f718-7a12-3be5-3d6583f71ef1	2021-05-28 05:27:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:27:36.951+03	2021-05-28 05:27:36.958+03	
049feb44-008f-3c18-bde0-573aba800089	2021-05-28 05:27:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:27:56.951+03	2021-05-28 05:27:56.958+03	
b6a0855f-c8cc-7f2e-c3f5-c89f8c30527c	2021-05-28 05:28:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:28:16.951+03	2021-05-28 05:28:16.957+03	
ae3eb992-0a14-5d09-9f00-60c46e58121d	2021-05-28 05:28:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:28:36.952+03	2021-05-28 05:28:36.964+03	
6710d4c9-1978-6680-dd38-d85a3337f045	2021-05-28 05:28:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:28:58.952+03	2021-05-28 05:28:58.963+03	
7a9f63ef-a1ab-faea-79d3-bbd17f4b4c94	2021-05-28 05:29:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:29:19.951+03	2021-05-28 05:29:19.959+03	
cc4c3794-5933-e4ee-5965-d1d36e299244	2021-05-28 05:29:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:29:39.951+03	2021-05-28 05:29:39.958+03	
c8b5614c-559f-436b-9669-23a95ce7cbd5	2021-05-28 05:29:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:29:59.951+03	2021-05-28 05:29:59.958+03	
bcd5be9b-a35f-1d9b-f076-cfbe47a09f08	2021-05-28 05:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:30:09.951+03	2021-05-28 05:30:09.958+03	
071badb1-edfb-803c-94e7-bfa5df51c813	2021-05-28 05:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:30:29.951+03	2021-05-28 05:30:29.961+03	
8ef601a5-4f52-b70c-6f08-e6647f47de2b	2021-05-28 05:30:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:30:49.951+03	2021-05-28 05:30:49.957+03	
0197b60e-f387-aeac-de1c-0979a7e59b70	2021-05-28 05:31:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:31:09.951+03	2021-05-28 05:31:09.958+03	
0912f50f-0da5-a5b2-ec69-c0ebaf3b7fa4	2021-05-28 05:31:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:31:29.951+03	2021-05-28 05:31:29.958+03	
e4e08de5-16bb-3fcd-d66c-a27e6620146a	2021-05-28 05:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:31:49.951+03	2021-05-28 05:31:49.958+03	
10338524-1a2a-0d1d-dfb1-1a97d9fa782d	2021-05-28 05:32:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:32:10.951+03	2021-05-28 05:32:10.962+03	
87c63cc2-ea2d-8c43-3ca3-dcb3e0c98e07	2021-05-28 05:32:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:32:30.951+03	2021-05-28 05:32:30.958+03	
da24b5e3-f1c0-92a3-1e8b-1bd23e9d3344	2021-05-28 05:32:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:32:51.951+03	2021-05-28 05:32:51.958+03	
3943712e-856d-bd40-736b-041fc5966c50	2021-05-28 05:33:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:33:11.951+03	2021-05-28 05:33:11.958+03	
75951b6f-1b2b-fd57-1216-9e41cdae6488	2021-05-28 05:33:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:33:31.951+03	2021-05-28 05:33:31.957+03	
8901b6a8-a327-bc50-91a5-38574cb82014	2021-05-28 05:33:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:33:51.951+03	2021-05-28 05:33:51.959+03	
65274797-43bc-91c0-3742-4bfc619c3df4	2021-05-28 05:34:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:34:11.951+03	2021-05-28 05:34:11.959+03	
a85b9ab9-0922-9843-062a-7e5da8fb44b4	2021-05-28 05:34:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:34:31.951+03	2021-05-28 05:34:31.96+03	
052bdc5d-64ec-db7d-2e02-dc33d2330481	2021-05-28 05:34:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:34:51.951+03	2021-05-28 05:34:51.959+03	
8cd9a2d2-8d67-3633-0953-0ad4a8c9f5f6	2021-05-28 05:35:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:35:11.951+03	2021-05-28 05:35:11.958+03	
2575e448-244f-253e-5b48-85382a7ddaa0	2021-05-28 05:35:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:35:31.951+03	2021-05-28 05:35:31.958+03	
de2e910f-37f9-4f3b-b0b3-afa6bc2e37ce	2021-05-28 05:35:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:35:51.951+03	2021-05-28 05:35:51.958+03	
d608e87a-774a-8c83-081d-b3f020fea8d1	2021-05-28 05:36:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:36:11.951+03	2021-05-28 05:36:11.958+03	
ad1c5270-13f2-993d-8e1a-e65fac39ff56	2021-05-28 05:36:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:36:31.951+03	2021-05-28 05:36:31.961+03	
28853e82-20b9-437e-21f6-ffb63da4ed76	2021-05-28 05:36:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:36:51.951+03	2021-05-28 05:36:51.957+03	
503efd56-93ad-9a6c-10c2-38cd2660c082	2021-05-28 05:37:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:37:11.952+03	2021-05-28 05:37:11.959+03	
13243c46-8638-2329-f338-b0d05e3bb725	2021-05-28 05:37:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:37:32.951+03	2021-05-28 05:37:32.968+03	
1fe300f0-af4a-bbda-0ddc-6791ec36065e	2021-05-28 05:37:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:37:52.952+03	2021-05-28 05:37:52.96+03	
469e784c-dd32-09cd-ed0a-9d9af629ebd9	2021-05-28 05:38:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:38:13.951+03	2021-05-28 05:38:13.958+03	
90ab6ff8-20c8-84c9-4a19-237dabe9d4c6	2021-05-28 05:38:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:38:33.951+03	2021-05-28 05:38:33.958+03	
a21174c6-2c5c-49e4-cadd-3b08b2223df2	2021-05-28 05:38:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:38:53.951+03	2021-05-28 05:38:53.958+03	
cdb71c83-e745-2d6c-e0b5-a13ae57421b0	2021-05-28 05:39:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:39:13.951+03	2021-05-28 05:39:13.958+03	
73baf11e-3325-4c1f-09e5-7ca1810d0a37	2021-05-28 05:39:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:39:33.951+03	2021-05-28 05:39:33.959+03	
01933d7f-2985-9d2b-bc3b-b0c5f630660d	2021-05-28 05:39:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:39:53.951+03	2021-05-28 05:39:53.959+03	
40e0f529-df34-a19a-e42f-b2cd029324b9	2021-05-28 05:40:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:40:03.951+03	2021-05-28 05:40:03.958+03	
f7568c1c-f449-421f-8307-63da490cb321	2021-05-28 05:40:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:40:23.951+03	2021-05-28 05:40:23.96+03	
ac70a9e7-f846-54b0-e32b-0c689a71bc42	2021-05-28 05:40:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:40:43.951+03	2021-05-28 05:40:43.958+03	
274f189b-9fca-1f21-a3ba-435eb1732a58	2021-05-28 05:41:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:41:03.951+03	2021-05-28 05:41:03.965+03	
726e9020-b10d-1ee6-1401-6b0c021747f4	2021-05-28 05:20:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:20:39.951+03	2021-05-28 05:20:39.959+03	
61985436-10c6-f016-8a2a-da5bd3719d4c	2021-05-28 05:20:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:20:59.951+03	2021-05-28 05:20:59.958+03	
5b239be3-b4a4-5385-a318-214d84c52206	2021-05-28 05:21:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:21:19.951+03	2021-05-28 05:21:19.959+03	
942ea984-5ba9-d1d7-39be-1755c04e0645	2021-05-28 05:21:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:21:39.951+03	2021-05-28 05:21:39.958+03	
0bbcd2e6-35db-9733-a056-f2790233a2f3	2021-05-28 05:22:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:22:00.952+03	2021-05-28 05:22:00.96+03	
4def7017-7279-d719-0baa-7e48025dce39	2021-05-28 05:22:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:22:21.952+03	2021-05-28 05:22:21.958+03	
1e7addb7-5483-d0f8-b012-0b7047ed839d	2021-05-28 05:22:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:22:42.952+03	2021-05-28 05:22:42.96+03	
80e4f1e0-944a-929d-5cf9-d6c8195db01d	2021-05-28 05:23:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:23:03.951+03	2021-05-28 05:23:03.959+03	
014db6a5-71c7-9ab2-a533-589795b98ed0	2021-05-28 05:23:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:23:23.951+03	2021-05-28 05:23:23.96+03	
5ba7075d-41d9-5a68-3c08-3d6ba860f318	2021-05-28 05:23:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:23:43.951+03	2021-05-28 05:23:43.967+03	
5d2dda56-1278-c2b0-155f-94df4dcb2b5f	2021-05-28 05:24:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:24:03.951+03	2021-05-28 05:24:03.958+03	
79c11b27-0da2-06b3-5f95-54f52680a4ec	2021-05-28 05:24:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:24:23.952+03	2021-05-28 05:24:23.959+03	
7e302fb2-249d-65e3-326e-c0996e7bf8ff	2021-05-28 05:24:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:24:44.951+03	2021-05-28 05:24:44.96+03	
23602dcf-2246-9e1b-b71c-46372cda40dc	2021-05-28 05:25:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:25:04.952+03	2021-05-28 05:25:04.958+03	
babf3a11-2dbd-77c6-73eb-1e0ed78290b3	2021-05-28 05:25:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:25:25.951+03	2021-05-28 05:25:25.958+03	
8f329e90-9a5b-82ed-dd09-db4a8c43db7c	2021-05-28 05:25:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:25:45.951+03	2021-05-28 05:25:45.975+03	
8cb3c78d-889d-85f4-7d77-e98e23703500	2021-05-28 05:26:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:26:05.951+03	2021-05-28 05:26:05.96+03	
cfdac5dd-db19-0681-962b-854ee74069bf	2021-05-28 05:26:25.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:26:25.952+03	2021-05-28 05:26:25.961+03	
9c2b92a2-e1f7-8fa1-6258-f9663c57cb48	2021-05-28 05:26:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:26:46.951+03	2021-05-28 05:26:46.958+03	
348c9495-1b74-c6d6-91fc-a77df6a3f252	2021-05-28 05:27:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:27:06.951+03	2021-05-28 05:27:06.959+03	
416f4a67-bf05-9094-7c6f-6104c9a83e14	2021-05-28 05:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:27:26.951+03	2021-05-28 05:27:26.961+03	
7f9bd988-6a9c-3224-5532-51639a3158b5	2021-05-28 05:27:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:27:46.951+03	2021-05-28 05:27:46.958+03	
dc64f6e4-898e-3340-4c9c-9fb9664f9ed6	2021-05-28 05:28:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:28:06.951+03	2021-05-28 05:28:06.961+03	
712b13f6-e366-8d70-a3da-84b0d5cc06b6	2021-05-28 05:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:28:26.951+03	2021-05-28 05:28:26.958+03	
bd4b9c74-8d51-1963-05af-d97d524b8ce7	2021-05-28 05:28:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:28:47.952+03	2021-05-28 05:28:47.959+03	
adacc81d-fbb1-52e0-092a-a8b6bf530e4d	2021-05-28 05:29:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:29:09.951+03	2021-05-28 05:29:09.959+03	
65a5e142-de41-a604-4d05-985af15a456b	2021-05-28 05:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:29:29.951+03	2021-05-28 05:29:29.958+03	
cb35f310-d3e0-af0d-fd07-20502767ca6b	2021-05-28 05:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:29:49.951+03	2021-05-28 05:29:49.958+03	
6b5c783e-cfe9-08e7-87d1-a738595dde4d	2021-05-28 05:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 05:30:00.951+03	2021-05-28 05:30:00.956+03	ERROR
e3c84708-22aa-d515-1692-fa086aed08b5	2021-05-28 05:30:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:30:19.951+03	2021-05-28 05:30:19.958+03	
4a855873-a4ea-aa45-6549-5afc6e83c8f4	2021-05-28 05:30:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:30:39.951+03	2021-05-28 05:30:39.959+03	
badcf73b-c749-6b6f-b6cf-93f73b7c2032	2021-05-28 05:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:30:59.951+03	2021-05-28 05:30:59.96+03	
e8c74561-45fe-36f4-a232-2e7c99665c79	2021-05-28 05:31:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:31:19.951+03	2021-05-28 05:31:19.958+03	
d93feb4d-ae55-5385-4746-851c0b3491ca	2021-05-28 05:31:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:31:39.951+03	2021-05-28 05:31:39.958+03	
201cb9ca-0ea2-dc25-ea6a-f3b2e52b588e	2021-05-28 05:31:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:31:59.952+03	2021-05-28 05:31:59.96+03	
f8f343ee-f1ff-53d7-722b-3f885af728f1	2021-05-28 05:32:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:32:20.951+03	2021-05-28 05:32:20.96+03	
ab77f97a-9583-f476-bc01-9c2c0a543f1b	2021-05-28 05:32:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:32:40.952+03	2021-05-28 05:32:40.958+03	
a68938c2-980a-7a83-ac3d-b301e90f2f00	2021-05-28 05:33:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:33:01.951+03	2021-05-28 05:33:01.959+03	
1d1120fe-c967-9775-78be-1f04cca340aa	2021-05-28 05:33:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:33:21.951+03	2021-05-28 05:33:21.96+03	
2315b192-9ba3-f70e-c77f-3ce87db6872d	2021-05-28 05:33:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:33:41.951+03	2021-05-28 05:33:41.958+03	
4788ec2c-c56d-84de-94d4-47563fcb2428	2021-05-28 05:34:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:34:01.951+03	2021-05-28 05:34:01.959+03	
f1994498-ed33-dc08-1c1f-9bff91986d7f	2021-05-28 05:34:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:34:21.951+03	2021-05-28 05:34:21.967+03	
fddfd26e-c318-2d2f-71eb-7fccb370b21e	2021-05-28 05:34:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:34:41.951+03	2021-05-28 05:34:41.959+03	
fec88483-4c61-cae5-444d-808d5847dbde	2021-05-28 05:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:35:01.951+03	2021-05-28 05:35:01.959+03	
7300849c-2ebc-8af7-0c9d-7a0e70ec2283	2021-05-28 05:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:35:21.951+03	2021-05-28 05:35:21.96+03	
4d77ad52-bf38-4ca4-33a5-78d850e0cee8	2021-05-28 05:35:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:35:41.951+03	2021-05-28 05:35:41.96+03	
fae6cbea-2bdd-95d6-6d12-312a2671b656	2021-05-28 05:36:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:36:01.951+03	2021-05-28 05:36:01.96+03	
76f8f18d-fb0b-49a6-702a-2d02a76abb60	2021-05-28 05:36:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:36:21.951+03	2021-05-28 05:36:21.958+03	
227df59b-d341-ef88-9c33-f7cca5a79afa	2021-05-28 05:36:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:36:41.951+03	2021-05-28 05:36:41.959+03	
084e5fac-5e26-e897-d7fb-3a7915858e75	2021-05-28 05:37:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:37:01.951+03	2021-05-28 05:37:01.958+03	
13032478-6368-559a-1675-b5995153e4e0	2021-05-28 05:37:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:37:22.951+03	2021-05-28 05:37:22.959+03	
f60c8091-c182-abd7-4750-a652d08c4bfb	2021-05-28 05:37:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:37:42.951+03	2021-05-28 05:37:42.958+03	
b9c68923-ee4a-4da6-9d93-1731f816a3e1	2021-05-28 05:38:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:38:03.951+03	2021-05-28 05:38:03.958+03	
4ceb589b-7c41-7b04-110c-c8078a236f65	2021-05-28 05:38:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:38:23.951+03	2021-05-28 05:38:23.958+03	
52ed41db-403c-e032-d907-1258b472c0b2	2021-05-28 05:38:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:38:43.951+03	2021-05-28 05:38:43.959+03	
dbbf3377-11a8-c714-9483-e3b1426f96e6	2021-05-28 05:39:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:39:03.951+03	2021-05-28 05:39:03.957+03	
649a046f-d903-0431-0dde-d99589debdd4	2021-05-28 05:39:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:39:23.951+03	2021-05-28 05:39:23.958+03	
c1c6e76b-2ff7-e34c-0abe-faaabb9c7683	2021-05-28 05:39:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:39:43.951+03	2021-05-28 05:39:43.962+03	
f91927d7-023c-7409-3c9c-3bb1741586e2	2021-05-28 05:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 05:40:00.951+03	2021-05-28 05:40:00.958+03	ERROR
8d7d9c79-f991-48f6-a097-e61dd85ba6e7	2021-05-28 05:40:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:40:13.951+03	2021-05-28 05:40:13.958+03	
4ed38e46-cdc4-01bc-f800-ac73da01b15e	2021-05-28 05:40:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:40:33.951+03	2021-05-28 05:40:33.958+03	
e966ca38-6ce7-ad0f-d01e-9a56308efd4d	2021-05-28 05:40:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:40:53.951+03	2021-05-28 05:40:53.959+03	
2ab0cba4-e818-d596-a23c-70a395eb5d58	2021-05-28 05:41:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:41:13.951+03	2021-05-28 05:41:13.958+03	
d50b8f32-5eb7-54e1-05b5-df470082fa67	2021-05-28 05:41:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:41:23.951+03	2021-05-28 05:41:23.959+03	
485eee71-e891-29d1-f436-c5c81dd09aef	2021-05-28 05:41:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:41:43.951+03	2021-05-28 05:41:43.958+03	
9f9df525-5e6a-97f0-2079-350d82fd14d5	2021-05-28 05:42:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:42:03.951+03	2021-05-28 05:42:03.957+03	
ef787928-ac11-ebe5-92c2-99ab8747ac72	2021-05-28 05:42:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:42:24.951+03	2021-05-28 05:42:24.958+03	
ea4e9ead-773f-2c31-a3eb-99847041df8f	2021-05-28 05:42:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:42:44.951+03	2021-05-28 05:42:44.958+03	
9675efbd-8eac-fc12-a8e6-964c579372d6	2021-05-28 05:43:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:43:05.951+03	2021-05-28 05:43:05.958+03	
7e02058f-1215-ee61-2f94-1ac613ca14fa	2021-05-28 05:43:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:43:25.952+03	2021-05-28 05:43:25.958+03	
45f43a43-a22b-2d2d-0c08-4cdb5b0e4e0d	2021-05-28 05:43:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:43:46.951+03	2021-05-28 05:43:46.959+03	
3089d611-c3e8-9e0a-6f9c-d85b9e64deaf	2021-05-28 05:44:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:44:06.951+03	2021-05-28 05:44:06.958+03	
4579474a-0562-c456-4811-294a62035305	2021-05-28 05:44:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:44:26.951+03	2021-05-28 05:44:26.958+03	
4d772eb0-9ec0-b1ee-11ff-a1052362e2ee	2021-05-28 05:44:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:44:46.951+03	2021-05-28 05:44:46.959+03	
8da94169-ba78-7966-3322-07ea46bf1d39	2021-05-28 05:45:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:45:06.951+03	2021-05-28 05:45:06.959+03	
fb1fdcc5-7882-b85b-d866-628b7ca6f904	2021-05-28 05:45:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:45:26.951+03	2021-05-28 05:45:26.96+03	
f716cda6-fded-bae4-9d6a-69bd0a6926e8	2021-05-28 05:45:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:45:46.951+03	2021-05-28 05:45:46.959+03	
5ea8215b-0f70-7265-337d-ef545d41e6b6	2021-05-28 05:46:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:46:06.951+03	2021-05-28 05:46:06.958+03	
55ce11cc-985a-45fe-aac8-16d649fc91f7	2021-05-28 05:46:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:46:26.951+03	2021-05-28 05:46:26.958+03	
f59f94bc-bc3d-f579-3e25-d05983ba1c28	2021-05-28 05:46:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:46:46.951+03	2021-05-28 05:46:46.958+03	
70052695-d3b9-4dd8-4ad0-23485ab5b4eb	2021-05-28 05:47:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:47:07.951+03	2021-05-28 05:47:07.96+03	
2885c037-299d-7f0d-1b12-3a1a1d20ff2b	2021-05-28 05:47:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:47:28.951+03	2021-05-28 05:47:28.958+03	
910c4316-7a92-bf95-0db9-5d490401da1c	2021-05-28 05:47:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:47:48.951+03	2021-05-28 05:47:48.968+03	
8f954117-70aa-100e-574f-19fc68a23d1d	2021-05-28 05:48:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:48:08.951+03	2021-05-28 05:48:08.96+03	
00adea6b-b3ec-6817-a014-d1b2a146126f	2021-05-28 05:48:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:48:28.951+03	2021-05-28 05:48:28.958+03	
f8062d6f-e5b5-55d7-7062-3c174516479d	2021-05-28 05:48:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:48:49.951+03	2021-05-28 05:48:49.959+03	
e99d7923-0fa2-08c3-bda6-a46cd4533765	2021-05-28 05:49:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:49:09.951+03	2021-05-28 05:49:09.958+03	
4a162c0a-9850-1cbe-b837-a3aceeca82d1	2021-05-28 05:49:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:49:29.951+03	2021-05-28 05:49:29.963+03	
81ea8578-58f2-f835-cddb-4d9e9b85ebf8	2021-05-28 05:49:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:49:49.951+03	2021-05-28 05:49:49.957+03	
200a7923-1de3-482d-2c2c-74ccff3dfadb	2021-05-28 05:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 05:50:00.951+03	2021-05-28 05:50:00.957+03	ERROR
144c1934-2b1f-e5f9-5b70-dd5b02789b9f	2021-05-28 05:50:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:50:19.951+03	2021-05-28 05:50:19.957+03	
7ed06e8c-712c-979c-248f-3f1cf645a379	2021-05-28 05:50:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:50:39.951+03	2021-05-28 05:50:39.96+03	
e15914ac-459d-003f-5177-6973bc9f4599	2021-05-28 05:50:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:50:59.951+03	2021-05-28 05:50:59.958+03	
f55b973d-d7dc-d33d-feef-39eb9df814d6	2021-05-28 05:51:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:51:19.952+03	2021-05-28 05:51:19.969+03	
1a120d4a-d382-3764-e828-69df15f08533	2021-05-28 05:51:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:51:40.951+03	2021-05-28 05:51:40.959+03	
70083a46-bfc6-42c3-36e9-945eb972b714	2021-05-28 05:52:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:52:00.951+03	2021-05-28 05:52:00.958+03	
3a3b1363-ad3d-9e3e-e642-97d4365e0f0e	2021-05-28 05:52:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:52:20.951+03	2021-05-28 05:52:20.958+03	
b96fef67-ef4b-c5a7-5e54-6bcd1c69371f	2021-05-28 05:52:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:52:40.951+03	2021-05-28 05:52:40.96+03	
c1511488-a4f4-f667-70db-96f33ca85814	2021-05-28 05:53:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:53:00.951+03	2021-05-28 05:53:00.959+03	
44782393-43f1-3eb5-9ee0-1bd8aa0e20c3	2021-05-28 05:53:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:53:20.951+03	2021-05-28 05:53:20.958+03	
c17c29cc-5be4-59fe-2850-3e7f3919d09b	2021-05-28 05:53:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:53:40.951+03	2021-05-28 05:53:40.961+03	
624a5292-7960-ba45-2e8a-3b86b85cd32b	2021-05-28 05:54:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:54:00.951+03	2021-05-28 05:54:00.96+03	
15510f0e-5570-6e41-e2fc-ab1de602f45e	2021-05-28 05:54:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:54:20.951+03	2021-05-28 05:54:20.959+03	
25577011-a732-5dd4-0a44-a396a5fc7245	2021-05-28 05:54:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:54:41.951+03	2021-05-28 05:54:41.959+03	
120de11e-e3ca-d3d5-24ee-406549f70e21	2021-05-28 05:55:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:55:01.951+03	2021-05-28 05:55:01.958+03	
132a8994-d89a-bae3-6d03-a4c654cf07d7	2021-05-28 05:55:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:55:21.952+03	2021-05-28 05:55:21.962+03	
56fba231-28a0-07be-71e1-f9ee8ef0a5a8	2021-05-28 05:55:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:55:43.952+03	2021-05-28 05:55:43.959+03	
9e856335-b4a3-f3e5-23d4-5ba5dcf9b931	2021-05-28 05:56:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:56:05.951+03	2021-05-28 05:56:05.959+03	
6d9b3162-88bf-8b00-e2a0-0eed96a8c9bc	2021-05-28 05:56:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:56:25.952+03	2021-05-28 05:56:25.958+03	
47647478-b17f-f547-2104-6af98f0fa7d9	2021-05-28 05:56:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:56:46.952+03	2021-05-28 05:56:46.96+03	
d93ee0b2-c3a9-abc2-45f2-25a066a2f481	2021-05-28 05:57:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:57:07.952+03	2021-05-28 05:57:07.959+03	
d72185d9-bead-9c1f-b40a-7fe1d12ef6fe	2021-05-28 05:57:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:57:27.952+03	2021-05-28 05:57:27.981+03	
9eda5702-8cb2-0d0b-37e5-c09d1aa52658	2021-05-28 05:57:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:57:48.951+03	2021-05-28 05:57:48.958+03	
a3ed2177-01e2-4bf6-c36e-c64c85dd2931	2021-05-28 05:58:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:58:08.951+03	2021-05-28 05:58:08.958+03	
f7e0d89b-b0ff-b783-b726-d82f9812dc50	2021-05-28 05:58:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:58:28.952+03	2021-05-28 05:58:28.96+03	
e96164b0-f2f0-8bb0-4acb-8d0b3862dc45	2021-05-28 05:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:58:49.951+03	2021-05-28 05:58:49.958+03	
f6e3393b-97c7-9100-8766-321f4c697522	2021-05-28 05:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:59:09.951+03	2021-05-28 05:59:09.958+03	
ccd56841-9d32-806c-8de6-1ed937ff147e	2021-05-28 05:59:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:59:29.951+03	2021-05-28 05:59:29.958+03	
f4449ce2-81e5-6a9e-c9da-092de4bc6b96	2021-05-28 05:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:59:49.951+03	2021-05-28 05:59:49.969+03	
5c21a528-cab5-ae4a-89cb-3b22db515deb	2021-05-28 06:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 06:00:00.951+03	2021-05-28 06:00:00.956+03	ERROR
e55a8652-0e1b-4626-bd9b-1d09cba74c05	2021-05-28 06:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:00:19.951+03	2021-05-28 06:00:19.958+03	
fa4043b5-000e-6d11-a8b1-1354096687b9	2021-05-28 06:00:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:00:40.951+03	2021-05-28 06:00:40.958+03	
0bc12133-4977-a284-1dc4-f8b1d40f3618	2021-05-28 06:01:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:01:00.951+03	2021-05-28 06:01:00.957+03	
008dd206-de13-daa9-3391-0aadfcae214f	2021-05-28 06:01:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:01:20.951+03	2021-05-28 06:01:20.958+03	
9c244752-d042-18f5-bdae-d24a5d5443f7	2021-05-28 06:01:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:01:40.951+03	2021-05-28 06:01:40.959+03	
7fb6c12f-78df-34b2-39ee-df9b529b2abb	2021-05-28 06:02:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:02:00.951+03	2021-05-28 06:02:00.958+03	
fc3bd1c2-5a07-fbb7-c6ac-c40844b221dd	2021-05-28 05:41:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:41:33.951+03	2021-05-28 05:41:33.958+03	
e56ad78c-47f7-cb10-d08d-2413d5d14dd9	2021-05-28 05:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:41:53.951+03	2021-05-28 05:41:53.959+03	
c33176ae-515e-d128-e676-16724dfda6c1	2021-05-28 05:42:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:42:13.952+03	2021-05-28 05:42:13.963+03	
9e182241-e517-8bb7-a519-aef2b56d3faa	2021-05-28 05:42:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:42:34.951+03	2021-05-28 05:42:34.96+03	
d1984a35-0314-eba8-856f-f206cb9fc849	2021-05-28 05:42:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:42:54.952+03	2021-05-28 05:42:54.96+03	
6351340b-41bd-306f-4dad-7d247fd543fb	2021-05-28 05:43:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:43:15.951+03	2021-05-28 05:43:15.957+03	
cd82301f-bd97-d45f-a8bd-6f0d770ed782	2021-05-28 05:43:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:43:36.951+03	2021-05-28 05:43:36.958+03	
73e0e3f5-763c-97c8-46a6-959f31900b7d	2021-05-28 05:43:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:43:56.951+03	2021-05-28 05:43:56.959+03	
84e13b50-2b69-d8d2-b473-7fc5f3daf173	2021-05-28 05:44:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:44:16.951+03	2021-05-28 05:44:16.957+03	
5127d957-0333-0c98-750a-7257d5ebac6d	2021-05-28 05:44:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:44:36.951+03	2021-05-28 05:44:36.959+03	
10d08736-91ea-6e39-2bb0-ac11a4477115	2021-05-28 05:44:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:44:56.951+03	2021-05-28 05:44:56.958+03	
e643f55a-eb20-5364-18ed-080fb385de44	2021-05-28 05:45:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:45:16.951+03	2021-05-28 05:45:16.958+03	
4c7e0659-6181-30c5-c10a-b64281ba1cda	2021-05-28 05:45:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:45:36.951+03	2021-05-28 05:45:36.959+03	
8832f6a4-56fa-47ac-2359-d6f85f2ff91a	2021-05-28 05:45:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:45:56.951+03	2021-05-28 05:45:56.957+03	
b1298045-0b4f-db67-a41d-070bb339bb9e	2021-05-28 05:46:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:46:16.951+03	2021-05-28 05:46:16.959+03	
a7396f6c-9e5a-e993-d0fc-95183d2d0b28	2021-05-28 05:46:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:46:36.951+03	2021-05-28 05:46:36.959+03	
6f2c471f-621b-3414-2a0e-56e98a5ccc9e	2021-05-28 05:46:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:46:56.952+03	2021-05-28 05:46:56.96+03	
363a50ab-a162-2b2c-246b-e7fc1c9fc270	2021-05-28 05:47:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:47:17.952+03	2021-05-28 05:47:17.961+03	
611f7c02-bff4-7b81-1d58-387ca3e64c64	2021-05-28 05:47:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:47:38.951+03	2021-05-28 05:47:38.962+03	
1e3e41ca-f153-1e5d-b130-7934ed33d190	2021-05-28 05:47:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:47:58.951+03	2021-05-28 05:47:58.958+03	
1ba593e5-c095-ed6c-76d3-b204a8dc30cd	2021-05-28 05:48:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:48:18.951+03	2021-05-28 05:48:18.96+03	
db44cc79-56fe-dd1b-32dc-8202e1926b03	2021-05-28 05:48:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:48:38.952+03	2021-05-28 05:48:38.958+03	
65b39eac-4106-c07b-b334-a4711ea256ad	2021-05-28 05:48:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:48:59.951+03	2021-05-28 05:48:59.96+03	
609775ff-511f-f438-4403-8414bd8da505	2021-05-28 05:49:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:49:19.951+03	2021-05-28 05:49:19.96+03	
8968a20c-ba42-4b7c-38ea-07fe872093d3	2021-05-28 05:49:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:49:39.951+03	2021-05-28 05:49:39.958+03	
e9a3fa38-4bcd-6cbf-8a36-4291e4c1a266	2021-05-28 05:49:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:49:59.951+03	2021-05-28 05:49:59.958+03	
960eb5ec-9525-bed3-8649-791f733b1c21	2021-05-28 05:50:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:50:09.951+03	2021-05-28 05:50:09.958+03	
f6a49b2b-d158-0d15-1e2f-04c4edf4a146	2021-05-28 05:50:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:50:29.951+03	2021-05-28 05:50:29.96+03	
8e8192f0-2514-285a-a345-35ce168f5d75	2021-05-28 05:50:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:50:49.951+03	2021-05-28 05:50:49.958+03	
26b43282-6e26-4b38-cfcd-85457911ba50	2021-05-28 05:51:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:51:09.951+03	2021-05-28 05:51:09.958+03	
8fb16f47-52f2-248c-bf79-c02e254c2c3f	2021-05-28 05:51:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:51:30.951+03	2021-05-28 05:51:30.961+03	
b37889c2-993d-3fbe-77c6-907a0485ab2b	2021-05-28 05:51:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:51:50.951+03	2021-05-28 05:51:50.958+03	
f7fed971-e011-95cd-be77-529ab56464d4	2021-05-28 05:52:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:52:10.951+03	2021-05-28 05:52:10.958+03	
c5788186-7891-f66f-c8e5-7a0428ef816c	2021-05-28 05:52:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:52:30.951+03	2021-05-28 05:52:30.959+03	
b05f527e-b407-2eb0-7ca2-b20468c124bd	2021-05-28 05:52:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:52:50.951+03	2021-05-28 05:52:50.961+03	
56cdbecb-cb9b-2aa8-2c1e-ed19139594ec	2021-05-28 05:53:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:53:10.951+03	2021-05-28 05:53:10.958+03	
704a0832-7df4-4e61-acdf-559f9ed84271	2021-05-28 05:53:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:53:30.951+03	2021-05-28 05:53:30.959+03	
e038a41c-5ac7-e6f4-ede6-a58cf421e275	2021-05-28 05:53:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:53:50.951+03	2021-05-28 05:53:50.961+03	
f6e2f954-d2e9-5d60-257c-37565d435e59	2021-05-28 05:54:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:54:10.951+03	2021-05-28 05:54:10.958+03	
d5219a2f-dcb7-7888-ab5a-ea89657221bd	2021-05-28 05:54:30.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:54:30.952+03	2021-05-28 05:54:30.961+03	
5320f445-f102-86c2-413b-6280ec9df5b0	2021-05-28 05:54:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:54:51.951+03	2021-05-28 05:54:51.96+03	
c434d6eb-e7bf-a19d-a60a-58ca8c70c355	2021-05-28 05:55:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:55:11.951+03	2021-05-28 05:55:11.958+03	
fca8ccf1-a317-85a7-12c5-09b7ad7fc2ff	2021-05-28 05:55:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:55:32.952+03	2021-05-28 05:55:32.969+03	
6f89efd8-eee5-760e-b985-07a87a95c773	2021-05-28 05:55:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:55:54.952+03	2021-05-28 05:55:54.959+03	
ac2b4124-8736-346f-404a-54fc7efaee4f	2021-05-28 05:56:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:56:15.952+03	2021-05-28 05:56:15.958+03	
724523a3-a4b5-9029-6328-56311db74b98	2021-05-28 05:56:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:56:36.951+03	2021-05-28 05:56:36.959+03	
1e056b0a-3539-2e84-98da-473efe592220	2021-05-28 05:56:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:56:57.951+03	2021-05-28 05:56:57.96+03	
18280374-f606-d572-3ee4-9d37077c1030	2021-05-28 05:57:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:57:17.952+03	2021-05-28 05:57:17.959+03	
58e58afb-4d8a-65cf-7b62-aa66ccb55fc9	2021-05-28 05:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:57:38.951+03	2021-05-28 05:57:38.96+03	
cd0c03c5-1240-3d11-46da-28f94e83fb0e	2021-05-28 05:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:57:58.951+03	2021-05-28 05:57:58.958+03	
7a4d01fd-2dc3-f7fe-7b1b-2a6a3ec8e67d	2021-05-28 05:58:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:58:18.952+03	2021-05-28 05:58:18.96+03	
26475830-fceb-4cb9-39c0-8a01a5ea9ae4	2021-05-28 05:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:58:39.951+03	2021-05-28 05:58:40.002+03	
e3df7162-ef6b-db38-0041-897c1b4e0a7f	2021-05-28 05:58:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:58:59.951+03	2021-05-28 05:58:59.959+03	
9a528b1f-1670-4df2-0e20-779e504601f2	2021-05-28 05:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:59:19.951+03	2021-05-28 05:59:19.959+03	
75538d20-63cd-02b4-fcb5-7fa488c85841	2021-05-28 05:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:59:39.951+03	2021-05-28 05:59:39.961+03	
fbf839cb-5237-0fa2-42e7-084c3906f196	2021-05-28 05:59:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 05:59:59.951+03	2021-05-28 05:59:59.959+03	
0bcfc1f1-e935-e3ae-ce45-750c5a0c9d68	2021-05-28 06:00:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:00:09.951+03	2021-05-28 06:00:09.958+03	
20bd202a-5c30-ff76-78f5-08f3da109446	2021-05-28 06:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:00:29.952+03	2021-05-28 06:00:29.962+03	
cd2d3ecc-5c6f-b5ba-2f3a-35e15bfc1eee	2021-05-28 06:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:00:50.951+03	2021-05-28 06:00:50.959+03	
bd44b74b-1ca4-54fa-2d3f-c333ad1a7ada	2021-05-28 06:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:01:10.951+03	2021-05-28 06:01:11.148+03	
3e599c26-03f4-17f6-96b0-8ae8f34bf1c4	2021-05-28 06:01:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:01:30.951+03	2021-05-28 06:01:30.958+03	
262981d6-e8bf-8c0d-12ab-58931c8e46b8	2021-05-28 06:01:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:01:50.951+03	2021-05-28 06:01:50.962+03	
769c3902-5fb2-d68c-c088-7707b290396f	2021-05-28 06:02:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:02:10.951+03	2021-05-28 06:02:10.959+03	
55f21034-3c37-7c3a-efd8-a4dfb9248fe4	2021-05-28 06:02:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:02:20.951+03	2021-05-28 06:02:20.961+03	
8420df2e-5852-79da-885f-5660396de58b	2021-05-28 06:02:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:02:40.951+03	2021-05-28 06:02:40.958+03	
8562e051-222d-18cb-da81-a7979e269582	2021-05-28 06:03:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:03:00.951+03	2021-05-28 06:03:00.958+03	
e1c53b3e-5650-e0ba-5ddc-0e66b4d0eee5	2021-05-28 06:03:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:03:21.951+03	2021-05-28 06:03:21.958+03	
7d183382-5633-bc06-3d2c-f4b460a7a491	2021-05-28 06:03:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:03:41.951+03	2021-05-28 06:03:41.959+03	
58b5c1b6-72fb-4b3f-dd9d-225ef95e9691	2021-05-28 06:04:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:04:01.951+03	2021-05-28 06:04:01.959+03	
ba3e5453-1225-8eff-f987-084d2ff88c2a	2021-05-28 06:04:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:04:21.952+03	2021-05-28 06:04:21.959+03	
8d9c4d00-76a2-0389-3c4a-86e671524527	2021-05-28 06:04:42.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:04:42.953+03	2021-05-28 06:04:42.961+03	
1634165f-a212-a483-0edc-ce8e87aa0f85	2021-05-28 06:05:03.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:05:03.952+03	2021-05-28 06:05:03.959+03	
9cb876ce-b1ec-a346-740c-db7724bb182f	2021-05-28 06:05:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:05:24.951+03	2021-05-28 06:05:24.957+03	
67d4d347-5240-965c-48ba-3159aa0b75d1	2021-05-28 06:05:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:05:44.951+03	2021-05-28 06:05:44.958+03	
8fcaeefe-fe16-900b-d114-6692ab9d8c8b	2021-05-28 06:06:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:06:04.951+03	2021-05-28 06:06:04.958+03	
c4021ae8-79f3-01f8-349b-a3efbc4485da	2021-05-28 06:06:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:06:24.951+03	2021-05-28 06:06:24.959+03	
c08798f5-0e1a-7a1a-e6aa-68f1db90650e	2021-05-28 06:06:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:06:44.951+03	2021-05-28 06:06:44.958+03	
cfe8de5d-4969-b8be-4683-13683d1c8224	2021-05-28 06:07:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:07:04.951+03	2021-05-28 06:07:04.96+03	
36107784-fe5a-ac6b-df47-be9f445f2180	2021-05-28 06:07:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:07:24.951+03	2021-05-28 06:07:24.959+03	
7a82a575-59be-911d-c2d4-b46865bcc90b	2021-05-28 06:07:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:07:44.951+03	2021-05-28 06:07:44.957+03	
cf51b4e5-6aa6-2aae-0611-a21631d2eb91	2021-05-28 06:08:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:08:04.951+03	2021-05-28 06:08:04.961+03	
66dcd2f1-dfe0-d06a-6a06-4d6d9627c99d	2021-05-28 06:08:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:08:24.951+03	2021-05-28 06:08:24.958+03	
f43c858d-c5d2-3007-f27a-4bcdb666b8ff	2021-05-28 06:08:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:08:44.951+03	2021-05-28 06:08:44.958+03	
24297f60-1e1d-1b9e-676b-e6cd4348c513	2021-05-28 06:09:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:09:04.951+03	2021-05-28 06:09:04.959+03	
ebdff5b3-c4c6-1d75-8e71-b8c1b6759f36	2021-05-28 06:09:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:09:24.951+03	2021-05-28 06:09:24.958+03	
26bebefd-b5a0-c6ee-86bc-40a596181a76	2021-05-28 06:09:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:09:44.951+03	2021-05-28 06:09:44.96+03	
cf41f242-8486-c88f-d604-2ac9a5807f0b	2021-05-28 06:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 06:10:00.951+03	2021-05-28 06:10:00.957+03	ERROR
c2c77e95-da67-744e-5a50-3098a58210d4	2021-05-28 06:10:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:10:14.951+03	2021-05-28 06:10:14.959+03	
59159344-ab6f-858b-8be6-75e1157e8ce4	2021-05-28 06:10:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:10:34.951+03	2021-05-28 06:10:34.958+03	
f6cd166e-48df-6fc9-2e70-5a73b1330331	2021-05-28 06:10:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:10:54.951+03	2021-05-28 06:10:54.958+03	
4614c674-6983-5f31-b47e-65605f3cd50f	2021-05-28 06:11:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:11:14.951+03	2021-05-28 06:11:14.958+03	
35749bac-7a8a-0bf3-3773-24d8a481b052	2021-05-28 06:11:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:11:35.951+03	2021-05-28 06:11:35.958+03	
34e85343-e794-56bd-d4bf-f5d0ff24d259	2021-05-28 06:11:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:11:55.951+03	2021-05-28 06:11:55.958+03	
6ae2f3ce-c87c-c933-35f8-6f6e023d64e4	2021-05-28 06:12:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:12:15.951+03	2021-05-28 06:12:15.959+03	
1117127d-d84d-3dea-e52d-5c5a5ab6ac48	2021-05-28 06:12:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:12:35.951+03	2021-05-28 06:12:35.959+03	
f0c7cda5-fe73-d282-f98d-dfb3cdf4f507	2021-05-28 06:12:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:12:55.951+03	2021-05-28 06:12:55.958+03	
99be367d-aa84-21cc-955d-0a25be81c542	2021-05-28 06:13:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:13:15.951+03	2021-05-28 06:13:15.958+03	
4a4b608a-f970-3ec8-a253-667654d7ef79	2021-05-28 06:13:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:13:35.951+03	2021-05-28 06:13:35.958+03	
986e44e3-fc8c-b734-6a1f-ace46c626dfa	2021-05-28 06:13:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:13:55.951+03	2021-05-28 06:13:55.959+03	
cfc2fae5-5dfd-ac64-106e-962431678a55	2021-05-28 06:14:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:14:15.951+03	2021-05-28 06:14:15.958+03	
64d89fc3-2f02-68b1-7615-4a134d90822c	2021-05-28 06:14:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:14:35.951+03	2021-05-28 06:14:35.959+03	
d29eba07-9e37-465b-eca4-e6b218174b6a	2021-05-28 06:14:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:14:55.951+03	2021-05-28 06:14:55.958+03	
67b069ff-a269-110a-4bc7-c6949ca16053	2021-05-28 06:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:15:25.951+03	2021-05-28 06:15:25.958+03	
b78643fd-875d-cec6-e72b-eff390d74099	2021-05-28 06:15:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:15:45.951+03	2021-05-28 06:15:45.958+03	
a732307a-e172-49b7-1bdb-65fdac961d91	2021-05-28 06:16:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:16:05.951+03	2021-05-28 06:16:05.957+03	
cfcfd6b0-65d0-07cf-d025-a3a463b16068	2021-05-28 06:16:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:16:25.951+03	2021-05-28 06:16:25.958+03	
33528fa7-8c86-2e2d-b286-ff8269b18825	2021-05-28 06:16:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:16:45.951+03	2021-05-28 06:16:45.965+03	
45e879b2-23bd-eb22-c3e6-389e775219bf	2021-05-28 06:17:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:17:05.951+03	2021-05-28 06:17:05.959+03	
51df6a40-1d4c-fcff-5371-be3052f1d29c	2021-05-28 06:17:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:17:25.951+03	2021-05-28 06:17:25.957+03	
743d8bc9-7a17-bc65-d817-56f5e39f7f92	2021-05-28 06:17:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:17:45.951+03	2021-05-28 06:17:45.96+03	
fda9768c-a993-1e94-7f3a-6780e5b70f4d	2021-05-28 06:18:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:18:05.951+03	2021-05-28 06:18:05.961+03	
489009e7-010f-c6e6-01ff-29a37c9a38d7	2021-05-28 06:18:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:18:25.951+03	2021-05-28 06:18:25.957+03	
551ea056-e0f2-d0e1-1196-096e5daf6529	2021-05-28 06:18:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:18:45.951+03	2021-05-28 06:18:45.959+03	
cbad211d-d4b8-b3e2-4bd1-530fd1decc75	2021-05-28 06:19:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:19:05.951+03	2021-05-28 06:19:05.959+03	
cffea47c-2281-eed6-0a3c-9dc86195b0f5	2021-05-28 06:19:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:19:25.951+03	2021-05-28 06:19:25.962+03	
948e92b9-6cf3-9462-4b09-507306cd3d6e	2021-05-28 06:19:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:19:45.951+03	2021-05-28 06:19:45.958+03	
e8e90a09-0016-23d6-3d3a-0cabe63c00f6	2021-05-28 06:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 06:20:00.951+03	2021-05-28 06:20:00.957+03	ERROR
25b64c4c-97dc-7c30-ea0e-5297b58f2654	2021-05-28 06:20:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:20:15.951+03	2021-05-28 06:20:15.958+03	
83db5b20-5fd2-5a23-1e96-109c4dc40b90	2021-05-28 06:20:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:20:35.951+03	2021-05-28 06:20:35.959+03	
5230c170-849d-7c24-398d-89563408e6f0	2021-05-28 06:20:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:20:56.952+03	2021-05-28 06:20:56.958+03	
1a8d4fc8-064b-9817-edc7-e7a0c776234c	2021-05-28 06:21:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:21:17.951+03	2021-05-28 06:21:17.958+03	
54ae1230-fe90-f0b5-bc55-24e87069431b	2021-05-28 06:21:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:21:38.951+03	2021-05-28 06:21:38.959+03	
0f1135e7-5125-8792-491b-04d44bde01c7	2021-05-28 06:21:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:21:58.951+03	2021-05-28 06:21:58.958+03	
1a60b666-0705-1a43-4779-217898282fdb	2021-05-28 06:22:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:22:18.951+03	2021-05-28 06:22:18.958+03	
1085f168-164f-1cee-5292-58c8af37310a	2021-05-28 06:22:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:22:38.951+03	2021-05-28 06:22:38.959+03	
4a11b005-ed91-9dc9-ab34-70807b1feec0	2021-05-28 06:22:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:22:58.951+03	2021-05-28 06:22:58.957+03	
0f83922a-e830-84ff-67a2-7d24d62d06b5	2021-05-28 06:02:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:02:30.951+03	2021-05-28 06:02:30.959+03	
d5fb2ee9-3d35-60fc-273f-4b9c73210803	2021-05-28 06:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:02:50.951+03	2021-05-28 06:02:50.96+03	
ce89aa38-dfa5-8bdc-ae2e-9cf11286f45a	2021-05-28 06:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:03:10.952+03	2021-05-28 06:03:10.96+03	
0e55ebec-d22c-5513-2347-bec912cbb2ff	2021-05-28 06:03:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:03:31.951+03	2021-05-28 06:03:31.959+03	
3a6714dc-d164-501f-886b-762fbcd55d7b	2021-05-28 06:03:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:03:51.951+03	2021-05-28 06:03:51.959+03	
d27f0509-5484-f03e-b70c-14244f5cffe6	2021-05-28 06:04:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:04:11.951+03	2021-05-28 06:04:11.959+03	
47f6e0dc-be5e-b514-ba6e-6be78cfaef8d	2021-05-28 06:04:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:04:32.951+03	2021-05-28 06:04:32.96+03	
9db4e4e6-a211-8007-6a1b-58da9180413d	2021-05-28 06:04:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:04:52.953+03	2021-05-28 06:04:52.971+03	
54201ed6-9130-b04c-c0fc-12adddf5d837	2021-05-28 06:05:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:05:14.951+03	2021-05-28 06:05:14.959+03	
b2ed66a8-c2fc-cc84-27c5-02924ed99aa7	2021-05-28 06:05:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:05:34.951+03	2021-05-28 06:05:34.958+03	
031cb47a-9cd9-1523-5c7e-cb10afe65630	2021-05-28 06:05:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:05:54.951+03	2021-05-28 06:05:54.958+03	
ea3428e5-3207-a4d7-676c-330accdc037b	2021-05-28 06:06:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:06:14.951+03	2021-05-28 06:06:14.959+03	
24121491-6459-6bc2-6b56-01dbb8bf272d	2021-05-28 06:06:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:06:34.951+03	2021-05-28 06:06:34.96+03	
980520ef-1759-5a26-e6be-34fe313b5ac7	2021-05-28 06:06:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:06:54.951+03	2021-05-28 06:06:54.959+03	
9edce4e8-b803-5df0-49fd-bf411a233e7c	2021-05-28 06:07:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:07:14.951+03	2021-05-28 06:07:14.958+03	
708d3189-bd2a-8ad5-d7de-329e3f0f33da	2021-05-28 06:07:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:07:34.951+03	2021-05-28 06:07:34.957+03	
717c6200-ff6e-324b-88f1-9f50684ec679	2021-05-28 06:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:07:54.951+03	2021-05-28 06:07:54.961+03	
fc144b3a-3e9e-6cd7-a486-7572354376a8	2021-05-28 06:08:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:08:14.951+03	2021-05-28 06:08:14.96+03	
da9c6a53-6e45-0c6e-5efc-2b87e4c95a2b	2021-05-28 06:08:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:08:34.951+03	2021-05-28 06:08:34.957+03	
41f3db02-4ea8-8106-b73b-67957c656c72	2021-05-28 06:08:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:08:54.951+03	2021-05-28 06:08:54.958+03	
9585afde-1bb7-e087-1fa9-a68d3fdf237b	2021-05-28 06:09:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:09:14.951+03	2021-05-28 06:09:14.958+03	
99da508c-d3b5-c536-7ace-36af496fbdb3	2021-05-28 06:09:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:09:34.951+03	2021-05-28 06:09:34.958+03	
d401ddfd-76a6-9636-c578-f03810883b60	2021-05-28 06:09:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:09:54.951+03	2021-05-28 06:09:54.957+03	
242433a5-33de-4387-5f6e-91f020fa35a6	2021-05-28 06:10:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:10:04.951+03	2021-05-28 06:10:04.958+03	
64bcb9d0-5544-a4e8-d834-5edf02dec3ae	2021-05-28 06:10:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:10:24.951+03	2021-05-28 06:10:24.969+03	
bcd0dddd-23d7-e47b-e440-604ee7141ff5	2021-05-28 06:10:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:10:44.951+03	2021-05-28 06:10:44.959+03	
0b5c66af-2456-79d0-ea66-c62a89bd305d	2021-05-28 06:11:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:11:04.951+03	2021-05-28 06:11:04.959+03	
b5ff68f1-a343-4e64-7014-9d0a5c22c098	2021-05-28 06:11:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:11:24.952+03	2021-05-28 06:11:24.96+03	
9a9c257d-623a-6bee-24ff-964fcbf98937	2021-05-28 06:11:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:11:45.951+03	2021-05-28 06:11:45.961+03	
4532998e-a278-c14a-b4df-af6b3afea77d	2021-05-28 06:12:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:12:05.951+03	2021-05-28 06:12:05.959+03	
dd536b07-936e-0f8d-c05e-5c01c897a2b6	2021-05-28 06:12:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:12:25.951+03	2021-05-28 06:12:25.957+03	
0f827ded-b4e3-a3a4-8809-6da4f93fb68b	2021-05-28 06:12:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:12:45.951+03	2021-05-28 06:12:45.958+03	
169476af-9a58-4a88-3165-d66191576e27	2021-05-28 06:13:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:13:05.951+03	2021-05-28 06:13:05.959+03	
cdae23e6-3046-d9ca-90ef-466a2d0e98ac	2021-05-28 06:13:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:13:25.951+03	2021-05-28 06:13:25.961+03	
96373163-3a23-902f-1716-da32486cec65	2021-05-28 06:13:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:13:45.951+03	2021-05-28 06:13:45.958+03	
83a784cb-00a1-16bd-9fa3-e9a0a5404aca	2021-05-28 06:14:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:14:05.951+03	2021-05-28 06:14:05.96+03	
6ccdeff5-462d-8ebb-0708-50cbe966f823	2021-05-28 06:14:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:14:25.951+03	2021-05-28 06:14:25.959+03	
37df3bc6-0064-a485-2051-10e74ae78231	2021-05-28 06:14:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:14:45.951+03	2021-05-28 06:14:45.958+03	
471b9056-a521-077a-941f-e6aa49ac24c2	2021-05-28 06:15:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:15:05.951+03	2021-05-28 06:15:05.959+03	
721e14d4-7e4c-3255-794b-fd98626b7d16	2021-05-28 06:15:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:15:15.951+03	2021-05-28 06:15:15.957+03	
abd796f3-546f-3889-e1c4-c354dba3851f	2021-05-28 06:15:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:15:35.951+03	2021-05-28 06:15:35.958+03	
2a8c37ac-66b7-6434-5873-557e55f4fb07	2021-05-28 06:15:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:15:55.951+03	2021-05-28 06:15:55.958+03	
fadd4466-b149-c1fc-cbe7-cded6402baab	2021-05-28 06:16:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:16:15.951+03	2021-05-28 06:16:15.958+03	
c4372a53-c250-6fc2-44cb-16bec1b1735d	2021-05-28 06:16:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:16:35.951+03	2021-05-28 06:16:35.958+03	
b9aa047b-9c51-6991-d7ea-20fad5ffcda1	2021-05-28 06:16:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:16:55.951+03	2021-05-28 06:16:55.958+03	
10a8e932-b41a-a62b-2395-e3a510f48ebd	2021-05-28 06:17:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:17:15.951+03	2021-05-28 06:17:15.959+03	
f1bc9eff-5b88-6151-d4da-91fc8afa78fd	2021-05-28 06:17:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:17:35.951+03	2021-05-28 06:17:35.959+03	
00bdd28f-0ef0-2abb-acc2-c234b27a4335	2021-05-28 06:17:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:17:55.951+03	2021-05-28 06:17:55.957+03	
465e5950-8000-3081-30d3-557c0f6ca0b7	2021-05-28 06:18:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:18:15.951+03	2021-05-28 06:18:15.958+03	
e9169c83-0b73-3410-79d8-4617332fbe74	2021-05-28 06:18:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:18:35.951+03	2021-05-28 06:18:35.958+03	
6024d8fa-986a-ca55-55b9-4fc4f16f28ec	2021-05-28 06:18:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:18:55.951+03	2021-05-28 06:18:55.958+03	
bd29070e-f82c-4b06-e381-b55a14c4afaa	2021-05-28 06:19:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:19:15.951+03	2021-05-28 06:19:15.958+03	
ad2ff961-0794-8d72-98cb-704e1ff7a2e2	2021-05-28 06:19:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:19:35.951+03	2021-05-28 06:19:35.959+03	
dd42e101-13a2-792d-dcb3-ca82c882e02a	2021-05-28 06:19:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:19:55.951+03	2021-05-28 06:19:55.957+03	
a3886e67-1be4-5600-5458-85c01ac7a4da	2021-05-28 06:20:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:20:05.951+03	2021-05-28 06:20:05.96+03	
fad3c9ee-16cb-ff2d-de6e-e760173f3cc4	2021-05-28 06:20:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:20:25.951+03	2021-05-28 06:20:25.958+03	
80ab2eca-a8b6-48ee-ff9f-03a9ec1c0524	2021-05-28 06:20:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:20:45.952+03	2021-05-28 06:20:45.959+03	
cffa2562-4550-1c0a-b8e1-333c88a7485c	2021-05-28 06:21:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:21:07.951+03	2021-05-28 06:21:07.967+03	
4fe2210c-98f0-b3e0-4c43-a7598d293f27	2021-05-28 06:21:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:21:27.952+03	2021-05-28 06:21:27.965+03	
43c7351d-a051-3067-7d98-d1838ec90101	2021-05-28 06:21:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:21:48.951+03	2021-05-28 06:21:48.958+03	
138a064a-1c5f-3b99-f609-ca5463d55269	2021-05-28 06:22:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:22:08.951+03	2021-05-28 06:22:08.958+03	
ce522148-b925-1cfc-99fe-afa163161d22	2021-05-28 06:22:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:22:28.951+03	2021-05-28 06:22:28.959+03	
e02fc10b-116e-2d65-5397-8ff156e2f66e	2021-05-28 06:22:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:22:48.951+03	2021-05-28 06:22:48.958+03	
ba8efeba-35ac-d220-5208-c34824b6a76e	2021-05-28 06:23:08.963	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:23:08.951+03	2021-05-28 06:23:08.971+03	
f2faa016-2cfb-64df-2a56-7e1a64f8efd6	2021-05-28 06:23:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:23:28.951+03	2021-05-28 06:23:28.958+03	
d92fb497-ac70-1584-f76d-a1e0b5bc650a	2021-05-28 06:23:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:23:48.951+03	2021-05-28 06:23:48.959+03	
914f8ae8-1d07-2007-36f1-0734776382be	2021-05-28 06:24:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:24:08.951+03	2021-05-28 06:24:08.958+03	
3bb9e56e-7982-6ff8-9781-95ecfbf8d7ee	2021-05-28 06:24:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:24:28.951+03	2021-05-28 06:24:28.959+03	
511f9806-66de-3974-2247-63c5193093fc	2021-05-28 06:24:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:24:48.951+03	2021-05-28 06:24:48.959+03	
cd4a299b-0cf7-f68a-64de-8e1ea02a5d7c	2021-05-28 06:25:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:25:08.951+03	2021-05-28 06:25:08.958+03	
663fd204-6b9f-8c53-afc3-8065d718d591	2021-05-28 06:25:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:25:28.951+03	2021-05-28 06:25:28.958+03	
955149ea-d8de-6c26-9f88-21a1142444fd	2021-05-28 06:25:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:25:48.951+03	2021-05-28 06:25:48.958+03	
de327e22-8c7a-b9a2-06d0-6578de5a1bfc	2021-05-28 06:26:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:26:08.951+03	2021-05-28 06:26:08.959+03	
50f526bf-6be0-58dc-0255-8f09afeb8dec	2021-05-28 06:26:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:26:28.951+03	2021-05-28 06:26:28.958+03	
6969a574-40b6-46a6-a191-7e6c49ba4019	2021-05-28 06:26:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:26:48.951+03	2021-05-28 06:26:48.96+03	
b0f8650c-e7b7-4407-8e0c-66ddfb6dbf39	2021-05-28 06:27:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:27:08.951+03	2021-05-28 06:27:08.958+03	
58c20ce1-b214-bcb0-1085-556c55b647c0	2021-05-28 06:27:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:27:28.951+03	2021-05-28 06:27:28.961+03	
bc68e6dd-c821-d03f-e6b3-479f1e8de5a4	2021-05-28 06:27:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:27:48.951+03	2021-05-28 06:27:48.958+03	
d7d1d727-de63-f54b-5bfb-be3e76f8f4e6	2021-05-28 06:28:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:28:08.951+03	2021-05-28 06:28:08.958+03	
d9250f90-5d26-afdd-888b-418d55072456	2021-05-28 06:28:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:28:28.951+03	2021-05-28 06:28:28.959+03	
e5b59fac-d07a-8828-70b2-7782e38268c0	2021-05-28 06:28:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:28:48.951+03	2021-05-28 06:28:48.959+03	
39767a84-bf1d-6ca9-6aee-4d47f9799f37	2021-05-28 06:29:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:29:08.951+03	2021-05-28 06:29:08.96+03	
4510ceea-510f-a886-d25c-ed27903af6b3	2021-05-28 06:29:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:29:28.951+03	2021-05-28 06:29:28.968+03	
9aa2f2dc-8790-ff51-6eb0-aead2ccb5923	2021-05-28 06:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:29:49.951+03	2021-05-28 06:29:49.959+03	
d0260b32-2e82-e55a-e7ba-a1fe14a04593	2021-05-28 06:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 06:30:00.951+03	2021-05-28 06:30:00.957+03	ERROR
244ecc92-55c8-dc06-f02a-8e053f6e8417	2021-05-28 06:30:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:30:19.951+03	2021-05-28 06:30:19.958+03	
9b63e2cf-00a7-0efe-b1b8-d549a8e71abe	2021-05-28 06:30:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:30:40.951+03	2021-05-28 06:30:40.959+03	
e8889cc9-1613-05e6-0a63-19c4070c4eca	2021-05-28 06:31:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:31:00.951+03	2021-05-28 06:31:00.976+03	
25756598-1682-5c55-b04c-aa03eeae2234	2021-05-28 06:31:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:31:20.951+03	2021-05-28 06:31:20.959+03	
2c8688e2-8c62-e44e-ec4e-15b70fa5f33a	2021-05-28 06:31:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:31:40.951+03	2021-05-28 06:31:40.958+03	
f2a8f5cc-31fc-e831-bacb-1100ff4781c3	2021-05-28 06:32:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:32:00.951+03	2021-05-28 06:32:00.96+03	
54d17816-8ed8-a4bc-7758-f16e99adcca6	2021-05-28 06:32:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:32:20.951+03	2021-05-28 06:32:20.959+03	
1dc4c554-961c-0418-355a-4f715b24c822	2021-05-28 06:32:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:32:40.951+03	2021-05-28 06:32:40.958+03	
f7ff6e84-ae84-269f-ceec-3bff624311bf	2021-05-28 06:33:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:33:00.951+03	2021-05-28 06:33:00.959+03	
d0c20592-6ac9-3119-49ff-6972ab3e49bc	2021-05-28 06:33:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:33:20.951+03	2021-05-28 06:33:20.958+03	
e56e99a2-e264-e461-e402-bd556be89009	2021-05-28 06:33:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:33:41.951+03	2021-05-28 06:33:41.958+03	
b1a12b80-f312-522a-4a53-20bd6d3d3b50	2021-05-28 06:34:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:34:01.951+03	2021-05-28 06:34:01.959+03	
6c3acf89-8818-1e13-20ca-bdbeae832e74	2021-05-28 06:34:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:34:21.951+03	2021-05-28 06:34:21.959+03	
2e119a1e-75c3-aeba-50c9-df9f19e64464	2021-05-28 06:34:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:34:41.951+03	2021-05-28 06:34:41.959+03	
c1b133ec-600c-a651-086b-578df4bd725e	2021-05-28 06:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:35:01.951+03	2021-05-28 06:35:01.959+03	
535591f4-6269-c436-62a7-cc2af026c16d	2021-05-28 06:35:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:35:31.951+03	2021-05-28 06:35:31.959+03	
517a7835-4e90-da8c-97e2-c19d719091d4	2021-05-28 06:35:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:35:51.951+03	2021-05-28 06:35:51.968+03	
dc7a981f-6dd2-273f-d7e9-f7d0eebedd7f	2021-05-28 06:36:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:36:11.951+03	2021-05-28 06:36:11.959+03	
bc8fa914-0d29-52c7-9d1e-ab3009dad946	2021-05-28 06:36:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:36:31.951+03	2021-05-28 06:36:31.959+03	
ef5039de-907f-6903-c759-12fcfd836095	2021-05-28 06:36:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:36:51.951+03	2021-05-28 06:36:51.959+03	
1e2923d2-bc0b-7c44-f484-4518fb0d9839	2021-05-28 06:37:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:37:11.951+03	2021-05-28 06:37:11.959+03	
8261cdc4-4ec0-fbe8-04db-2d6919f64860	2021-05-28 06:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:37:31.951+03	2021-05-28 06:37:31.959+03	
fdfa7fa8-b560-f264-6202-0173d65afbcb	2021-05-28 06:37:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:37:51.951+03	2021-05-28 06:37:51.958+03	
e786e1a7-e160-44d7-6b91-afc4e266b2d2	2021-05-28 06:38:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:38:11.951+03	2021-05-28 06:38:11.959+03	
dbad001f-0f15-2da3-4bc0-2e779f858bb2	2021-05-28 06:38:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:38:31.951+03	2021-05-28 06:38:31.958+03	
1415f0de-b415-e41a-0120-d63765a94584	2021-05-28 06:38:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:38:51.951+03	2021-05-28 06:38:52.014+03	
55899d56-b014-38d9-fca3-44242c3e76a7	2021-05-28 06:39:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:39:11.951+03	2021-05-28 06:39:11.958+03	
58ca0252-2273-a45a-b419-2eb23dcc214f	2021-05-28 06:39:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:39:31.951+03	2021-05-28 06:39:31.958+03	
7ae1f906-31cf-891a-164d-ffce54d2dbf9	2021-05-28 06:39:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:39:51.951+03	2021-05-28 06:39:51.958+03	
f017bcb4-a0c9-d8e5-23dc-8020ae1ed6b5	2021-05-28 06:40:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:40:01.951+03	2021-05-28 06:40:01.958+03	
0a8ace36-4998-e90a-ac9b-cffade2fc233	2021-05-28 06:40:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:40:21.952+03	2021-05-28 06:40:21.96+03	
364db289-b393-ecbc-10a8-64595cdff91f	2021-05-28 06:40:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:40:42.951+03	2021-05-28 06:40:42.958+03	
c153665f-1271-c584-f085-d0711f9a906f	2021-05-28 06:41:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:41:02.951+03	2021-05-28 06:41:02.959+03	
fd007d10-3f81-25d0-761c-9fc0e2c655ff	2021-05-28 06:41:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:41:22.951+03	2021-05-28 06:41:22.958+03	
ecca21e8-6676-f3f4-792c-ef1a3bafe0af	2021-05-28 06:41:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:41:42.951+03	2021-05-28 06:41:42.958+03	
66a6970d-367f-531d-2b8b-e7fa33f4f376	2021-05-28 06:42:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:42:02.951+03	2021-05-28 06:42:02.96+03	
735abc52-35b3-dae6-30f9-dc1d324b4cbc	2021-05-28 06:42:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:42:22.951+03	2021-05-28 06:42:22.96+03	
ddf925f3-5260-ebd9-d98a-a8e86d396c1f	2021-05-28 06:42:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:42:43.951+03	2021-05-28 06:42:43.958+03	
abdafb5c-4445-5b5d-426c-28c4bc6b91a5	2021-05-28 06:43:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:43:03.951+03	2021-05-28 06:43:03.959+03	
2fef9d27-ae2c-58b7-8956-4295558c2a83	2021-05-28 06:23:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:23:18.951+03	2021-05-28 06:23:18.96+03	
43a185e1-18ac-1f3f-f073-5e374d82d24b	2021-05-28 06:23:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:23:38.951+03	2021-05-28 06:23:38.959+03	
b0dd49d3-1d98-fa00-9b27-52a99930fb6c	2021-05-28 06:23:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:23:58.951+03	2021-05-28 06:23:58.96+03	
6fb375c4-358b-3701-71a6-6b425d8022be	2021-05-28 06:24:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:24:18.951+03	2021-05-28 06:24:18.958+03	
40985f02-a3bc-88ce-6d27-2248b244a57f	2021-05-28 06:24:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:24:38.951+03	2021-05-28 06:24:38.959+03	
6e5aa07d-7034-a673-5611-1655a801380f	2021-05-28 06:24:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:24:58.951+03	2021-05-28 06:24:58.958+03	
723e6a9f-bcad-6c48-53bf-580bbfc6cc8d	2021-05-28 06:25:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:25:18.951+03	2021-05-28 06:25:18.958+03	
312ca01b-38a7-ba37-aed1-1e2526bc5544	2021-05-28 06:25:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:25:38.951+03	2021-05-28 06:25:38.958+03	
e0e3c0c4-0b93-12d4-d844-50f0fb367807	2021-05-28 06:25:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:25:58.951+03	2021-05-28 06:25:58.961+03	
c30ed78a-b978-d568-d5d8-abe5e13b59a2	2021-05-28 06:26:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:26:18.951+03	2021-05-28 06:26:18.958+03	
3488e3af-b1a3-6239-769b-166aab2eacac	2021-05-28 06:26:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:26:38.951+03	2021-05-28 06:26:38.959+03	
71ce1082-861f-b220-30ad-344c4257dd26	2021-05-28 06:26:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:26:58.951+03	2021-05-28 06:26:58.959+03	
34021478-e73d-a5a8-8e72-bd19162256dd	2021-05-28 06:27:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:27:18.951+03	2021-05-28 06:27:18.958+03	
36f02e6d-afcc-0cc9-a69d-dcc6ddb63ccc	2021-05-28 06:27:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:27:38.951+03	2021-05-28 06:27:38.962+03	
ad98013e-1c40-6c18-ab2a-29e6891bcb25	2021-05-28 06:27:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:27:58.951+03	2021-05-28 06:27:58.96+03	
b13859e6-fc45-34db-52e4-d8c0b46de7fb	2021-05-28 06:28:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:28:18.951+03	2021-05-28 06:28:18.959+03	
28713eed-36c9-b93d-d64a-26fd88033e86	2021-05-28 06:28:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:28:38.951+03	2021-05-28 06:28:38.959+03	
adeaff28-b22e-717b-50f5-cfa068c18c8c	2021-05-28 06:28:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:28:58.951+03	2021-05-28 06:28:58.958+03	
08a9368b-1b1d-a9e2-6328-93b6b8031866	2021-05-28 06:29:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:29:18.951+03	2021-05-28 06:29:18.959+03	
fb1d0e5d-dab8-68a7-8cd9-9b76bd9cb833	2021-05-28 06:29:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:29:38.952+03	2021-05-28 06:29:38.959+03	
042174a4-ca5b-de10-bede-db5f24ec496d	2021-05-28 06:29:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:29:59.951+03	2021-05-28 06:29:59.958+03	
0c098a54-e842-db00-194e-58f668ee1c6f	2021-05-28 06:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:30:09.951+03	2021-05-28 06:30:09.958+03	
a38fff9d-83dc-036f-4342-ccf7a95ae7be	2021-05-28 06:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:30:29.952+03	2021-05-28 06:30:29.961+03	
20678890-2751-5399-ed10-c3a4d71ad2ec	2021-05-28 06:30:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:30:50.951+03	2021-05-28 06:30:50.96+03	
4fea69ce-a860-939e-09fa-76e44541af31	2021-05-28 06:31:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:31:10.951+03	2021-05-28 06:31:10.958+03	
c0a80187-08ba-8812-4559-6c343caa0ef8	2021-05-28 06:31:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:31:30.951+03	2021-05-28 06:31:30.959+03	
7507c93a-9722-cb9f-01bb-9791e1bc8123	2021-05-28 06:31:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:31:50.951+03	2021-05-28 06:31:50.958+03	
02eb63c2-3ffa-02fd-16a7-0017544e205e	2021-05-28 06:32:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:32:10.951+03	2021-05-28 06:32:10.958+03	
1d1cb2e2-3eb1-faad-55a6-a74619cccd6c	2021-05-28 06:32:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:32:30.951+03	2021-05-28 06:32:30.957+03	
c80e1eeb-dff4-e3ca-c15a-e099bf0a52e1	2021-05-28 06:32:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:32:50.951+03	2021-05-28 06:32:50.957+03	
198d8005-4020-ea99-a88f-ab4947addf9b	2021-05-28 06:33:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:33:10.951+03	2021-05-28 06:33:10.959+03	
cab46b7c-7068-cca2-09cf-126c9725ad4a	2021-05-28 06:33:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:33:30.952+03	2021-05-28 06:33:30.963+03	
86b316e3-0b19-c8c6-a6f5-1c9029ac002d	2021-05-28 06:33:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:33:51.951+03	2021-05-28 06:33:51.957+03	
35b30b97-0ce1-a3af-abcc-e33e9ac5740e	2021-05-28 06:34:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:34:11.951+03	2021-05-28 06:34:11.959+03	
cb6dc85b-226f-0e1d-d81d-8e186652ba3a	2021-05-28 06:34:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:34:31.951+03	2021-05-28 06:34:31.959+03	
bc6a8dfb-30c4-22ea-a86d-223c16d21894	2021-05-28 06:34:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:34:51.951+03	2021-05-28 06:34:51.958+03	
c64f4b71-8c4b-9635-d28b-93ad8a6517c2	2021-05-28 06:35:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:35:11.951+03	2021-05-28 06:35:11.96+03	
012624ea-026c-8af2-ca2e-eeee33ef5a7a	2021-05-28 06:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:35:21.951+03	2021-05-28 06:35:21.96+03	
19267aa2-f1ee-808d-3796-a2a6a13b88d1	2021-05-28 06:35:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:35:41.951+03	2021-05-28 06:35:41.961+03	
c70d9992-136b-2955-c141-6e80d1eb2b41	2021-05-28 06:36:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:36:01.951+03	2021-05-28 06:36:01.959+03	
55097046-a1e5-fdff-3734-ec109f81ba53	2021-05-28 06:36:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:36:21.951+03	2021-05-28 06:36:21.959+03	
1d4c1b1d-b8bf-c6ae-94fb-4c2b71534def	2021-05-28 06:36:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:36:41.951+03	2021-05-28 06:36:41.959+03	
13b45d34-bf47-ceae-4390-308d9ea94780	2021-05-28 06:37:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:37:01.951+03	2021-05-28 06:37:01.958+03	
750b1f6c-d3f9-09c8-8a32-ca587bbf8732	2021-05-28 06:37:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:37:21.951+03	2021-05-28 06:37:21.959+03	
102d6778-9840-7e68-2a00-490d9bfaed63	2021-05-28 06:37:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:37:41.951+03	2021-05-28 06:37:41.957+03	
b5021dce-574c-7977-5415-d6e18e6a8d05	2021-05-28 06:38:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:38:01.951+03	2021-05-28 06:38:01.959+03	
31e3f114-85e6-d707-bc84-a68a0d9f3803	2021-05-28 06:38:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:38:21.951+03	2021-05-28 06:38:21.958+03	
b8865a79-6a0d-8fe7-1f36-6164e61726f7	2021-05-28 06:38:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:38:41.951+03	2021-05-28 06:38:41.958+03	
d9906884-411b-c6aa-582b-8101e17d1f74	2021-05-28 06:39:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:39:01.951+03	2021-05-28 06:39:01.958+03	
cf75e9f1-ead9-10aa-2d54-4d1a074aa822	2021-05-28 06:39:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:39:21.951+03	2021-05-28 06:39:21.958+03	
4fc66c0f-3489-74e5-bb48-e3b352232735	2021-05-28 06:39:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:39:41.951+03	2021-05-28 06:39:41.958+03	
301b9af8-4697-6df5-fdec-93519daadc82	2021-05-28 06:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 06:40:00.951+03	2021-05-28 06:40:00.956+03	ERROR
6d803841-3d92-5d82-4de3-465137e38612	2021-05-28 06:40:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:40:11.951+03	2021-05-28 06:40:11.959+03	
293bd447-075f-6491-53be-e2aade14343c	2021-05-28 06:40:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:40:31.952+03	2021-05-28 06:40:31.96+03	
c5791a7a-b7a5-4fc7-8fee-86db043f10e6	2021-05-28 06:40:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:40:52.951+03	2021-05-28 06:40:52.958+03	
3e1df502-4435-7b67-0801-11679271fd27	2021-05-28 06:41:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:41:12.951+03	2021-05-28 06:41:12.958+03	
50cc63ee-0365-f6cb-6afd-b5b3cf60a8a6	2021-05-28 06:41:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:41:32.951+03	2021-05-28 06:41:32.958+03	
28108cf6-fc00-bf84-b05f-405279ccf1cc	2021-05-28 06:41:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:41:52.951+03	2021-05-28 06:41:52.959+03	
136faede-c679-5975-a018-90e9f92fb475	2021-05-28 06:42:12.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:42:12.951+03	2021-05-28 06:42:12.968+03	
745e2a28-3ff0-7f67-9229-de0437b2057a	2021-05-28 06:42:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:42:32.952+03	2021-05-28 06:42:32.959+03	
0254caef-32e6-3ad5-f5c4-a913118057ff	2021-05-28 06:42:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:42:53.951+03	2021-05-28 06:42:53.958+03	
a644f374-7ade-2409-96f3-0c02bcb9f3de	2021-05-28 06:43:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:43:13.951+03	2021-05-28 06:43:13.962+03	
749bbf0c-ae39-03d7-3933-7389b9b4860d	2021-05-28 06:43:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:43:23.951+03	2021-05-28 06:43:23.959+03	
3c7a8499-3271-b4c9-7c5d-9bc69c385ef0	2021-05-28 06:43:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:43:33.951+03	2021-05-28 06:43:33.959+03	
fd73f0f1-806e-c9f0-91f4-ae787d44abb7	2021-05-28 06:43:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:43:53.951+03	2021-05-28 06:43:53.959+03	
06ce3dbd-97f8-8e0a-ecce-286b52fcfba8	2021-05-28 06:44:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:44:13.951+03	2021-05-28 06:44:13.961+03	
b06b0e03-644c-e0f7-f1f8-44feeb4c6c16	2021-05-28 06:44:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:44:33.951+03	2021-05-28 06:44:33.958+03	
676e53f5-d87e-f820-625e-657e5fd07b86	2021-05-28 06:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:44:53.951+03	2021-05-28 06:44:53.96+03	
3536d2a5-9e41-0d21-500d-9fdc656eba17	2021-05-28 06:45:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:45:13.951+03	2021-05-28 06:45:13.958+03	
2d023b44-a54b-c5d6-90d8-3749380781b8	2021-05-28 06:45:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:45:33.951+03	2021-05-28 06:45:33.959+03	
aae71604-52ed-cdf9-5123-5e4b4e298ace	2021-05-28 06:45:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:45:53.951+03	2021-05-28 06:45:53.958+03	
9fa97acf-66d7-6553-da0a-9348d2c166ba	2021-05-28 06:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:46:13.951+03	2021-05-28 06:46:13.957+03	
88789d0c-c60a-4f7f-3ae7-2459829a16d7	2021-05-28 06:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:46:33.951+03	2021-05-28 06:46:33.961+03	
486b3238-5051-f838-c68f-e240ae3fc7b5	2021-05-28 06:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:46:53.952+03	2021-05-28 06:46:53.961+03	
35c5a341-9bcf-1ee1-5bc1-033b3c03d949	2021-05-28 06:47:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:47:14.951+03	2021-05-28 06:47:14.96+03	
4d1f01ac-7b59-5944-8876-0d075afe5498	2021-05-28 06:47:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:47:34.951+03	2021-05-28 06:47:34.96+03	
015f4743-1ce5-7227-6579-abb05a40a7d2	2021-05-28 06:47:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:47:54.951+03	2021-05-28 06:47:54.959+03	
47239840-2cdc-9653-8573-59f24049774d	2021-05-28 06:48:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:48:14.951+03	2021-05-28 06:48:14.958+03	
33b9534e-65f8-d434-06e3-61dfc93ac6d8	2021-05-28 06:48:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:48:34.951+03	2021-05-28 06:48:34.957+03	
7c5119a2-4a98-920a-2493-a062d1b22b93	2021-05-28 06:48:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:48:54.951+03	2021-05-28 06:48:54.96+03	
bdc44046-c96e-b034-593b-06179b27df9a	2021-05-28 06:49:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:49:14.951+03	2021-05-28 06:49:14.963+03	
c21a37ac-3cbb-dc44-7416-0e32b1ce8b2f	2021-05-28 06:49:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:49:34.951+03	2021-05-28 06:49:34.958+03	
80677587-647d-06b5-2d32-18be2e0a9706	2021-05-28 06:49:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:49:54.951+03	2021-05-28 06:49:54.959+03	
48bec7ec-c0ac-d3b9-c693-3431a46df67a	2021-05-28 06:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:50:04.951+03	2021-05-28 06:50:04.958+03	
e1b3cd41-7655-0af6-1a1d-9698142166cf	2021-05-28 06:50:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:50:24.951+03	2021-05-28 06:50:24.96+03	
ec8ac48c-cc86-3841-fc41-5ba262bb8bbf	2021-05-28 06:50:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:50:44.951+03	2021-05-28 06:50:44.959+03	
0280a697-6ee4-29f5-1ca5-28fb60d7937c	2021-05-28 06:51:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:51:04.951+03	2021-05-28 06:51:04.958+03	
301ce4be-2ce5-3a25-266c-375aa30db6df	2021-05-28 06:51:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:51:24.951+03	2021-05-28 06:51:24.958+03	
511abf98-0254-7492-5df1-fd0c513d325c	2021-05-28 06:51:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:51:44.951+03	2021-05-28 06:51:44.958+03	
631920fc-8f25-296d-174c-d80a29037b98	2021-05-28 06:52:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:52:04.951+03	2021-05-28 06:52:04.958+03	
9a7728b8-2ad5-5f54-7c9d-e2ada71c7fb1	2021-05-28 06:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:52:24.951+03	2021-05-28 06:52:24.96+03	
4875d22a-69c8-bd49-f6a9-a70d2004934a	2021-05-28 06:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:52:44.952+03	2021-05-28 06:52:44.959+03	
0d63b17b-5481-f5de-2794-ec516d4d382a	2021-05-28 06:53:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:53:05.952+03	2021-05-28 06:53:05.958+03	
56c016fd-8685-cc24-8937-eb2ed8483618	2021-05-28 06:53:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:53:26.951+03	2021-05-28 06:53:26.958+03	
4e20adde-6714-3872-0b25-212df9a29835	2021-05-28 06:53:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:53:46.951+03	2021-05-28 06:53:46.958+03	
b5eb354f-9c61-57f0-a6ed-014bce453a48	2021-05-28 06:54:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:54:06.951+03	2021-05-28 06:54:06.96+03	
1e3e2622-ab74-79f8-0b27-48371dffb25f	2021-05-28 06:54:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:54:26.951+03	2021-05-28 06:54:26.959+03	
08f9487c-9046-b222-28d8-92b5a45dd423	2021-05-28 06:54:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:54:47.951+03	2021-05-28 06:54:47.958+03	
ebb3e103-c573-9dfa-b550-85525e75ed01	2021-05-28 06:55:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:55:08.951+03	2021-05-28 06:55:08.959+03	
536cc195-b6b0-f337-9a22-1190bbeecaea	2021-05-28 06:55:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:55:28.951+03	2021-05-28 06:55:28.958+03	
d2b5ddf0-d283-417d-1df7-6fe1c79761e8	2021-05-28 06:55:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:55:48.951+03	2021-05-28 06:55:48.958+03	
1b26f7b4-fdcc-b6d6-f7c5-49a7f2fd68ac	2021-05-28 06:56:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:56:08.951+03	2021-05-28 06:56:08.959+03	
ae47cde3-ea55-aabf-c842-1780d543ff84	2021-05-28 06:56:28.957	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:56:28.957+03	2021-05-28 06:56:28.965+03	
02eb0302-3998-3ff9-682c-d3d8a57d5339	2021-05-28 06:56:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:56:49.951+03	2021-05-28 06:56:49.958+03	
298057a9-7fa4-80af-4c6b-ca426654b0ee	2021-05-28 06:57:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:57:09.951+03	2021-05-28 06:57:09.957+03	
0173c55e-2e03-00bc-7c04-0a6e77db0c04	2021-05-28 06:57:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:57:29.951+03	2021-05-28 06:57:29.963+03	
50a450a6-87cd-f9fc-77cc-fade1dae5844	2021-05-28 06:57:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:57:49.951+03	2021-05-28 06:57:49.959+03	
d4b25fea-7bc2-607b-fa86-6a01c6a7f26d	2021-05-28 06:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:58:09.951+03	2021-05-28 06:58:09.958+03	
9742f9b4-2682-5f3f-1045-34d0f18552a5	2021-05-28 06:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:58:29.951+03	2021-05-28 06:58:29.958+03	
0bca5aa4-571c-7c32-ddf0-8ae7926a0843	2021-05-28 06:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:58:49.951+03	2021-05-28 06:58:49.959+03	
b2950912-96d0-1e01-526a-5ff40bf4b5c0	2021-05-28 06:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:59:09.951+03	2021-05-28 06:59:09.958+03	
e42dd075-c81e-c962-9846-fe2a2643a129	2021-05-28 06:59:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:59:29.951+03	2021-05-28 06:59:29.959+03	
a7d2e332-a6ce-ebed-eeb2-da71482d53d8	2021-05-28 06:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:59:49.952+03	2021-05-28 06:59:49.958+03	
c0157455-8201-7953-7743-6b1d2ce0afc7	2021-05-28 07:00:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:00:10.951+03	2021-05-28 07:00:10.958+03	
34f9f3e8-c1dc-357a-639e-e56268982d68	2021-05-28 07:00:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:00:30.951+03	2021-05-28 07:00:30.961+03	
62159794-6d0f-5552-77fe-1f53ab7a352c	2021-05-28 07:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:00:50.951+03	2021-05-28 07:00:50.958+03	
6e8731c1-b0b2-4675-790f-2241a2890cb9	2021-05-28 07:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:01:10.951+03	2021-05-28 07:01:10.959+03	
e08acf5d-8627-cda9-83cb-3c60840c0c28	2021-05-28 07:01:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:01:30.951+03	2021-05-28 07:01:30.958+03	
159a8a37-64db-6594-f51d-982ca5a892e3	2021-05-28 07:01:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:01:50.951+03	2021-05-28 07:01:50.958+03	
8c57ae9e-fec3-aae3-97d3-2459081c2049	2021-05-28 07:02:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:02:10.951+03	2021-05-28 07:02:10.968+03	
97ce02a3-2497-69a2-58e5-9b33090c6145	2021-05-28 07:02:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:02:30.951+03	2021-05-28 07:02:30.958+03	
b0ffe75b-0b8a-bfaa-5cbb-7fd21b91e42b	2021-05-28 07:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:02:50.951+03	2021-05-28 07:02:50.958+03	
a23296f2-624e-bf01-cd1d-f963c83774b5	2021-05-28 07:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:03:10.951+03	2021-05-28 07:03:10.959+03	
a1ceafb3-0a32-7210-76e5-6ca9e8fbaffb	2021-05-28 07:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:03:30.951+03	2021-05-28 07:03:30.958+03	
8e3a9c53-619a-e9d6-c505-f619376f838a	2021-05-28 07:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:03:50.951+03	2021-05-28 07:03:50.96+03	
9c5778ff-c7e1-1ebf-1812-b285a15712fc	2021-05-28 07:04:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:04:10.951+03	2021-05-28 07:04:10.957+03	
48b976e3-8381-28b3-3cd6-e28747d3551a	2021-05-28 06:43:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:43:43.951+03	2021-05-28 06:43:43.958+03	
f9510b97-5142-9f1f-bef7-90bdb617602e	2021-05-28 06:44:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:44:03.951+03	2021-05-28 06:44:03.959+03	
00bb83ac-ab12-0efb-7f95-aa1afe7bea96	2021-05-28 06:44:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:44:23.951+03	2021-05-28 06:44:23.96+03	
42edf1b8-de0d-626d-af28-7fe4b7852364	2021-05-28 06:44:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:44:43.951+03	2021-05-28 06:44:43.958+03	
cbd75084-656c-ad16-9ee0-913006485618	2021-05-28 06:45:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:45:03.951+03	2021-05-28 06:45:03.958+03	
e8f49c7b-c428-b72d-fd07-cba22bb6b310	2021-05-28 06:45:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:45:23.951+03	2021-05-28 06:45:23.957+03	
7b4caa08-2560-76dc-fa28-a8241bba0b1c	2021-05-28 06:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:45:43.951+03	2021-05-28 06:45:43.958+03	
7399e0fb-3930-a262-c84b-14c63f91279f	2021-05-28 06:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:46:03.951+03	2021-05-28 06:46:03.959+03	
27b649be-0748-741b-5c9a-e834be98a7f6	2021-05-28 06:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:46:23.951+03	2021-05-28 06:46:23.968+03	
0959fcdd-9fb3-7a26-4373-e57084fad785	2021-05-28 06:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:46:43.951+03	2021-05-28 06:46:43.958+03	
362bf6da-9e8a-7203-99af-e8cec2d2cd7f	2021-05-28 06:47:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:47:04.951+03	2021-05-28 06:47:04.958+03	
e4f916bd-dc14-3e1c-4bf2-bb62303c88ea	2021-05-28 06:47:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:47:24.951+03	2021-05-28 06:47:24.958+03	
5a71b641-1995-f4f0-aac6-1fe15935f1a3	2021-05-28 06:47:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:47:44.951+03	2021-05-28 06:47:44.958+03	
1fdce457-db74-e9d6-0ec7-1af4c30254bd	2021-05-28 06:48:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:48:04.951+03	2021-05-28 06:48:04.961+03	
07760f78-6a75-21d1-d6cb-a62f7ea3e9e1	2021-05-28 06:48:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:48:24.951+03	2021-05-28 06:48:24.958+03	
e5fb9eba-5ce9-6471-d0c8-e1d1add9b776	2021-05-28 06:48:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:48:44.951+03	2021-05-28 06:48:44.957+03	
c2f3dedd-b24f-e7a6-1466-bf908cf2b51b	2021-05-28 06:49:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:49:04.951+03	2021-05-28 06:49:04.958+03	
48a86a52-c8c3-44de-7a45-758737249390	2021-05-28 06:49:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:49:24.951+03	2021-05-28 06:49:24.96+03	
c8b927a2-c1a6-d6f5-3f0b-29a94f455668	2021-05-28 06:49:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:49:44.951+03	2021-05-28 06:49:44.96+03	
5471c665-3173-ef2b-84ff-ea3ac44c604e	2021-05-28 06:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 06:50:00.951+03	2021-05-28 06:50:00.956+03	ERROR
bc3e8217-ec51-ef38-0ed1-20cb7e4b306b	2021-05-28 06:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:50:14.951+03	2021-05-28 06:50:14.958+03	
d48bc855-6c96-e6cf-9751-3b065b2693ce	2021-05-28 06:50:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:50:34.951+03	2021-05-28 06:50:34.962+03	
d2355125-af61-f919-d1c0-64392c290d37	2021-05-28 06:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:50:54.951+03	2021-05-28 06:50:54.962+03	
438a0b56-50bb-b454-84b5-92a4813f5f51	2021-05-28 06:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:51:14.951+03	2021-05-28 06:51:14.958+03	
d4b0f1c1-4e88-4953-3c55-1b7eddac581f	2021-05-28 06:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:51:34.951+03	2021-05-28 06:51:34.958+03	
1994f0ee-9ddf-82f0-8fd7-2ad50d116672	2021-05-28 06:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:51:54.951+03	2021-05-28 06:51:54.971+03	
4fdb7e9f-ea5f-787e-3f74-7bf1bf266131	2021-05-28 06:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:52:14.951+03	2021-05-28 06:52:14.959+03	
db0d5c3e-53c5-4a98-486b-8758ed27ff5f	2021-05-28 06:52:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:52:34.951+03	2021-05-28 06:52:34.959+03	
de040c84-d286-53a4-6823-5b1b0b67832f	2021-05-28 06:52:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:52:55.951+03	2021-05-28 06:52:55.959+03	
82d79242-cfd6-6b0c-fe2c-41dfc5894119	2021-05-28 06:53:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:53:16.951+03	2021-05-28 06:53:16.958+03	
9cf3cc4d-75fe-c007-7ee7-e1634f6c7ca9	2021-05-28 06:53:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:53:36.951+03	2021-05-28 06:53:36.959+03	
b1199b8d-ee30-4c34-69d4-bd98333b1ebf	2021-05-28 06:53:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:53:56.951+03	2021-05-28 06:53:56.958+03	
d92016aa-950b-1b0d-8279-88f95e4c5dc7	2021-05-28 06:54:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:54:16.951+03	2021-05-28 06:54:16.959+03	
79e474d5-c1b0-b952-9066-fecfc88083e6	2021-05-28 06:54:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:54:36.952+03	2021-05-28 06:54:36.962+03	
1e3153e3-ddad-96d0-f18f-560977c73acf	2021-05-28 06:54:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:54:57.952+03	2021-05-28 06:54:57.96+03	
503d9f46-1266-9837-53bd-8cba9e4c5265	2021-05-28 06:55:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:55:18.951+03	2021-05-28 06:55:18.958+03	
3ce369ca-9621-de99-ebe8-74446ee61557	2021-05-28 06:55:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:55:38.951+03	2021-05-28 06:55:38.958+03	
917c4312-48f3-0336-5dea-d173dbf5005e	2021-05-28 06:55:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:55:58.951+03	2021-05-28 06:55:58.959+03	
d6d573b9-bf22-8ebf-2fe8-74bf4bf375c8	2021-05-28 06:56:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:56:18.951+03	2021-05-28 06:56:18.96+03	
de6c6e9c-e5d1-8fab-3ac0-07c31276fc06	2021-05-28 06:56:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:56:39.951+03	2021-05-28 06:56:39.959+03	
b939564f-878d-8b3d-4ea4-dea1747d6fde	2021-05-28 06:56:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:56:59.951+03	2021-05-28 06:56:59.969+03	
226d029e-41f0-8f33-a3bc-fb97ae5925d6	2021-05-28 06:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:57:19.951+03	2021-05-28 06:57:19.959+03	
2bc4e819-d55d-38ea-26ae-123c0a8a4144	2021-05-28 06:57:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:57:39.951+03	2021-05-28 06:57:39.959+03	
7907e1f7-3d60-c544-eab5-cfbf5aea6781	2021-05-28 06:57:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:57:59.951+03	2021-05-28 06:57:59.959+03	
46d2f31a-1b99-adea-12db-6d25751e6dc2	2021-05-28 06:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:58:19.951+03	2021-05-28 06:58:19.961+03	
8e98dc94-5e2e-89ab-dfb7-cf5dd139a634	2021-05-28 06:58:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:58:39.951+03	2021-05-28 06:58:39.958+03	
d679df51-490e-8bbb-5092-9d174eedfbef	2021-05-28 06:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:58:59.951+03	2021-05-28 06:58:59.96+03	
b86da1cc-a375-32aa-5e4a-024c02c71473	2021-05-28 06:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:59:19.951+03	2021-05-28 06:59:19.959+03	
4249cb18-a7e8-951e-a110-a4e38cfd1dd7	2021-05-28 06:59:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 06:59:39.951+03	2021-05-28 06:59:39.958+03	
95dff1c7-957b-68b1-5349-10ee1ae9e9a1	2021-05-28 07:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 07:00:00.951+03	2021-05-28 07:00:00.958+03	ERROR
2b8ee8fc-f9f9-a263-46d7-209eb85af4bf	2021-05-28 07:00:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:00:00.951+03	2021-05-28 07:00:00.97+03	
286cd9e7-5a37-17f5-47df-8f27bce64563	2021-05-28 07:00:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:00:20.951+03	2021-05-28 07:00:20.959+03	
c868a19f-0895-b7fd-4251-fbba22bc293d	2021-05-28 07:00:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:00:40.951+03	2021-05-28 07:00:40.957+03	
f93472ce-31ef-6f7d-e216-3f3050883b70	2021-05-28 07:01:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:01:00.951+03	2021-05-28 07:01:00.958+03	
775a21db-def6-ec8e-dcf6-ec5fce4a3fee	2021-05-28 07:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:01:20.951+03	2021-05-28 07:01:20.96+03	
178411d3-be9c-3252-d41a-8095e648ad62	2021-05-28 07:01:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:01:40.951+03	2021-05-28 07:01:40.96+03	
48027457-8276-da09-3b6c-ded8600becbc	2021-05-28 07:02:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:02:00.951+03	2021-05-28 07:02:00.959+03	
0c2b360a-793b-ecc2-f271-8fb122488267	2021-05-28 07:02:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:02:20.951+03	2021-05-28 07:02:20.959+03	
7e26a90c-441a-5cef-a75b-6b5880a456cc	2021-05-28 07:02:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:02:40.951+03	2021-05-28 07:02:40.958+03	
9c6819db-0bc1-2127-6a1b-8a719ef1ad02	2021-05-28 07:03:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:03:00.951+03	2021-05-28 07:03:00.963+03	
93e1809c-bd27-ff7c-53e9-581ab6e3525c	2021-05-28 07:03:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:03:20.951+03	2021-05-28 07:03:20.959+03	
26c0a32b-41cd-9223-ef30-2a392cd18312	2021-05-28 07:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:03:40.951+03	2021-05-28 07:03:40.958+03	
bdc386f7-75bc-e4c4-ac45-7451a7e4bfa8	2021-05-28 07:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:04:00.951+03	2021-05-28 07:04:00.958+03	
4e06bf21-40d3-c4fc-6e5d-c65d0c104daf	2021-05-28 07:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:04:20.952+03	2021-05-28 07:04:20.958+03	
0dae2dc5-f38e-ae19-bc20-a057405445e8	2021-05-28 07:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:04:41.951+03	2021-05-28 07:04:41.96+03	
fc7329ec-2282-686a-9cf1-3a3cb5ef790f	2021-05-28 07:05:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:05:01.951+03	2021-05-28 07:05:01.96+03	
bbb3a86c-f679-dc05-9339-4f0de2fb23c7	2021-05-28 07:05:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:05:21.951+03	2021-05-28 07:05:21.96+03	
d33a5651-2752-4fc9-f96e-2db34743e88d	2021-05-28 07:05:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:05:42.951+03	2021-05-28 07:05:42.958+03	
82a9f06e-f96e-f0f6-8037-a10f4744b496	2021-05-28 07:06:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:06:02.951+03	2021-05-28 07:06:02.958+03	
03481e09-9fb3-c5b7-e2d5-817b3628f45e	2021-05-28 07:06:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:06:22.951+03	2021-05-28 07:06:22.959+03	
aa592db1-d4e6-6c63-1f38-948945ed8da7	2021-05-28 07:06:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:06:42.951+03	2021-05-28 07:06:42.958+03	
32469762-2584-0b5c-0f1b-13fd5dd29581	2021-05-28 07:07:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:07:02.951+03	2021-05-28 07:07:02.959+03	
e69609d7-acaf-a2b5-f094-7f19fd508791	2021-05-28 07:07:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:07:22.953+03	2021-05-28 07:07:22.96+03	
beeaa147-b15e-f407-2e3f-863f5f6a6968	2021-05-28 07:07:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:07:43.951+03	2021-05-28 07:07:43.961+03	
6cb1a1cb-af5d-6c12-059c-b326c56887c8	2021-05-28 07:08:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:08:03.951+03	2021-05-28 07:08:03.96+03	
149323c3-9398-7c70-1d60-c9856d4de964	2021-05-28 07:08:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:08:23.951+03	2021-05-28 07:08:23.958+03	
a92d9e07-bdaf-cf4e-bb7c-e63996774ecb	2021-05-28 07:08:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:08:43.951+03	2021-05-28 07:08:43.961+03	
0a4bbb2e-2c09-883a-6fed-f98ab3e6a9f4	2021-05-28 07:09:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:09:03.951+03	2021-05-28 07:09:03.959+03	
e72e1148-99ab-324e-7a60-f400dc0abad1	2021-05-28 07:09:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:09:23.951+03	2021-05-28 07:09:23.958+03	
59e712ee-fcdb-d825-2996-c8133d9a6e88	2021-05-28 07:09:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:09:44.951+03	2021-05-28 07:09:44.969+03	
4ce97fc0-83cc-38e9-489a-f3eed5f5be4f	2021-05-28 07:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 07:10:00.951+03	2021-05-28 07:10:00.957+03	ERROR
0c0c13f5-c56a-9090-9597-da11008748fb	2021-05-28 07:10:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:10:14.951+03	2021-05-28 07:10:14.959+03	
a427b5af-169a-1cb4-1058-ae7ea6c0c803	2021-05-28 07:10:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:10:34.951+03	2021-05-28 07:10:34.959+03	
e8fb063d-3859-7281-54d6-d647e90277e9	2021-05-28 07:10:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:10:54.951+03	2021-05-28 07:10:54.958+03	
e282dd75-027d-48f7-76df-b7b0181d3a06	2021-05-28 07:11:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:11:14.951+03	2021-05-28 07:11:14.958+03	
ca553c42-c355-6da6-2ddd-c7acfbba402c	2021-05-28 07:11:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:11:34.951+03	2021-05-28 07:11:34.958+03	
371cb3de-0afa-766a-d7df-dff2dc9527d6	2021-05-28 07:11:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:11:54.951+03	2021-05-28 07:11:54.958+03	
393489fb-2301-3b1a-9f9b-2ffc975085b6	2021-05-28 07:12:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:12:14.951+03	2021-05-28 07:12:14.959+03	
87d2da3b-198b-d322-f968-6f0361a60891	2021-05-28 07:12:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:12:34.951+03	2021-05-28 07:12:34.958+03	
94e548d1-6f0b-b41c-0e66-6b089da6bf9c	2021-05-28 07:12:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:12:54.951+03	2021-05-28 07:12:54.958+03	
7086e03e-286a-0cfa-a3a0-07557165d272	2021-05-28 07:13:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:13:14.951+03	2021-05-28 07:13:14.958+03	
6aa57275-ad06-b0c7-b07a-2c1ce7c84566	2021-05-28 07:13:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:13:34.951+03	2021-05-28 07:13:34.959+03	
94ad2128-588c-8a63-6c32-4617fe7aef2c	2021-05-28 07:13:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:13:54.951+03	2021-05-28 07:13:54.958+03	
01a54800-5a00-8651-5d52-9cd6f8087f12	2021-05-28 07:14:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:14:14.951+03	2021-05-28 07:14:14.959+03	
be6dca6e-181d-1b5f-a6dc-ac346fa00d80	2021-05-28 07:14:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:14:34.951+03	2021-05-28 07:14:34.958+03	
ed599bce-56fb-59ce-060b-09789d4f7024	2021-05-28 07:14:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:14:54.952+03	2021-05-28 07:14:54.958+03	
37bacacf-e70e-81a8-ff08-8413897e00db	2021-05-28 07:15:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:15:15.951+03	2021-05-28 07:15:15.958+03	
24805d46-0170-0822-77c8-8f8bcd8ff7da	2021-05-28 07:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:15:35.952+03	2021-05-28 07:15:35.959+03	
77786133-42f8-9d9f-6e8c-6c8b6859cd08	2021-05-28 07:15:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:15:56.951+03	2021-05-28 07:15:56.959+03	
e34cf611-9e21-f56a-f65b-83c5b4f7f3cd	2021-05-28 07:16:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:16:16.951+03	2021-05-28 07:16:16.958+03	
75272903-a1e4-3650-bd9c-69b778fbc5e4	2021-05-28 07:16:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:16:36.951+03	2021-05-28 07:16:36.959+03	
77b41311-1081-a68e-277d-d9f2c4f19482	2021-05-28 07:16:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:16:56.951+03	2021-05-28 07:16:56.959+03	
e5ec74d3-eeab-fb79-6ec0-6476a6327826	2021-05-28 07:17:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:17:16.952+03	2021-05-28 07:17:16.959+03	
99708421-ec1e-b843-18ab-a8fbd25bbe33	2021-05-28 07:17:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:17:38.951+03	2021-05-28 07:17:38.958+03	
29d84d1b-97d1-9802-681b-aee25a2420b1	2021-05-28 07:17:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:17:58.951+03	2021-05-28 07:17:58.958+03	
ad584eb1-dd17-8592-b1fa-31d9e189282b	2021-05-28 07:18:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:18:18.951+03	2021-05-28 07:18:18.958+03	
f86526a1-1be4-2240-5471-bc2c6b0a40c4	2021-05-28 07:18:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:18:38.952+03	2021-05-28 07:18:38.965+03	
18b54506-faf6-0699-9d27-3f3b2def1a35	2021-05-28 07:18:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:18:59.951+03	2021-05-28 07:18:59.958+03	
726e491e-6e42-ce97-f6b2-2f2162bbce88	2021-05-28 07:19:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:19:19.951+03	2021-05-28 07:19:19.958+03	
9fdc4d09-e003-9262-200c-7e8907180252	2021-05-28 07:19:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:19:39.951+03	2021-05-28 07:19:39.958+03	
858fe559-9de4-049c-ea6d-50e2ddbbc8c1	2021-05-28 07:19:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:19:59.951+03	2021-05-28 07:19:59.963+03	
8beddb95-c0d7-8e6d-9eff-7b2b63a99408	2021-05-28 07:20:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:20:09.951+03	2021-05-28 07:20:09.958+03	
fdab47e7-4e72-f796-88f3-b59fd893c347	2021-05-28 07:20:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:20:29.951+03	2021-05-28 07:20:29.962+03	
38d5d4d3-43f8-c0ba-f930-938d7803095d	2021-05-28 07:20:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:20:49.951+03	2021-05-28 07:20:49.958+03	
b5026ba2-765c-4f90-1efb-41b2c3e6a204	2021-05-28 07:21:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:21:10.951+03	2021-05-28 07:21:10.958+03	
977fa858-d8e4-0925-4b1f-0d67e2ae7312	2021-05-28 07:21:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:21:30.951+03	2021-05-28 07:21:30.958+03	
d035a0cd-aaf4-46e1-3f3f-e263820d4e99	2021-05-28 07:21:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:21:50.951+03	2021-05-28 07:21:50.964+03	
2a0692c7-b4ad-03ff-1f11-6068fd1431db	2021-05-28 07:22:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:22:10.951+03	2021-05-28 07:22:10.96+03	
366d307f-7fe3-e1ff-bb2c-62a11d754cbd	2021-05-28 07:22:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:22:30.951+03	2021-05-28 07:22:30.96+03	
8008009a-88e9-1177-6a67-f0279a749e56	2021-05-28 07:22:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:22:50.952+03	2021-05-28 07:22:50.958+03	
dd7c4d3d-0d58-57b2-393d-11e4e8977277	2021-05-28 07:23:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:23:12.951+03	2021-05-28 07:23:12.959+03	
6d81e5f2-e747-806c-61e8-aac09424c95d	2021-05-28 07:23:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:23:32.951+03	2021-05-28 07:23:32.976+03	
bb359905-bdb4-f699-6495-0be97df5cdc2	2021-05-28 07:23:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:23:52.951+03	2021-05-28 07:23:52.958+03	
af45e47c-8cc5-9019-8aea-14e449c9ff6c	2021-05-28 07:24:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:24:12.951+03	2021-05-28 07:24:12.958+03	
15197bfd-5e0d-9aa8-441c-4460123b81d1	2021-05-28 07:24:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:24:32.951+03	2021-05-28 07:24:32.957+03	
04246d88-eaa9-c5c7-67a5-1503daf5134f	2021-05-28 07:24:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:24:52.951+03	2021-05-28 07:24:52.97+03	
c47f4492-32d2-dd7f-c90a-81ea48b7ad46	2021-05-28 07:04:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:04:31.951+03	2021-05-28 07:04:31.961+03	
97b6d91f-3707-1192-d991-25ceb9b788f5	2021-05-28 07:04:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:04:51.951+03	2021-05-28 07:04:51.958+03	
1afddf04-8c68-32e8-562a-e57156204712	2021-05-28 07:05:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:05:11.951+03	2021-05-28 07:05:11.959+03	
a0c8add3-16a4-2e5f-8de9-c1650c48764b	2021-05-28 07:05:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:05:31.952+03	2021-05-28 07:05:31.959+03	
562b2beb-be68-37ba-14d9-844ab925b4b9	2021-05-28 07:05:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:05:52.951+03	2021-05-28 07:05:52.958+03	
29b056a3-066e-2b6b-d78f-51b0ebe6037b	2021-05-28 07:06:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:06:12.951+03	2021-05-28 07:06:12.958+03	
69863229-c96b-497c-0f38-ccf403c2314b	2021-05-28 07:06:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:06:32.951+03	2021-05-28 07:06:32.96+03	
653997f2-ff65-123b-39e3-e93ee046ed14	2021-05-28 07:06:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:06:52.951+03	2021-05-28 07:06:52.96+03	
f3cdd582-4acf-7ef9-4d86-1373059eac92	2021-05-28 07:07:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:07:12.951+03	2021-05-28 07:07:12.958+03	
8c28ed37-9a7d-1cc0-1334-92d47d6f420f	2021-05-28 07:07:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:07:33.951+03	2021-05-28 07:07:33.959+03	
cbc1b3c2-9f26-cf6f-6ad6-f4c59993f573	2021-05-28 07:07:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:07:53.951+03	2021-05-28 07:07:53.96+03	
97171bb2-5971-a64a-dc17-596670cacc8f	2021-05-28 07:08:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:08:13.951+03	2021-05-28 07:08:13.96+03	
2914a907-de69-e1af-d770-2806c7afc96d	2021-05-28 07:08:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:08:33.951+03	2021-05-28 07:08:33.957+03	
9746b951-c262-41db-0537-746f2546982d	2021-05-28 07:08:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:08:53.951+03	2021-05-28 07:08:53.958+03	
2b90a79d-128f-91e2-cc69-43d04cde0f06	2021-05-28 07:09:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:09:13.951+03	2021-05-28 07:09:13.957+03	
f25be594-80df-f2d3-9c19-e7a384811af2	2021-05-28 07:09:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:09:33.952+03	2021-05-28 07:09:33.959+03	
3dd12f8c-0e99-ef51-9ac0-54b790c85fa5	2021-05-28 07:09:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:09:54.951+03	2021-05-28 07:09:54.958+03	
5a6f7f15-5488-bc82-6c08-736a289d7fe3	2021-05-28 07:10:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:10:04.951+03	2021-05-28 07:10:04.957+03	
6b09b7a0-0949-c461-bbc0-f1397c19ed77	2021-05-28 07:10:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:10:24.951+03	2021-05-28 07:10:24.964+03	
6b4824dd-aaa6-e614-7c7c-28dce7f368b8	2021-05-28 07:10:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:10:44.951+03	2021-05-28 07:10:44.96+03	
959ff695-8238-ae17-0987-52fddf60d3bc	2021-05-28 07:11:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:11:04.951+03	2021-05-28 07:11:04.959+03	
6821da33-46e3-2909-2c5c-06342cee2790	2021-05-28 07:11:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:11:24.951+03	2021-05-28 07:11:24.958+03	
8467f9a3-76ad-0609-f6d5-0be1f4d1c60c	2021-05-28 07:11:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:11:44.951+03	2021-05-28 07:11:44.958+03	
152a4e72-6c77-46eb-d2d7-fb600ea0bf5d	2021-05-28 07:12:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:12:04.951+03	2021-05-28 07:12:04.977+03	
009de94e-0cd2-a6e5-23fa-f940a281b683	2021-05-28 07:12:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:12:24.951+03	2021-05-28 07:12:24.959+03	
d9fd2449-21a8-4425-601d-0c17a4259041	2021-05-28 07:12:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:12:44.951+03	2021-05-28 07:12:44.96+03	
85b544db-0c5d-3ce7-6a1d-f0aca89dc79a	2021-05-28 07:13:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:13:04.951+03	2021-05-28 07:13:04.958+03	
644a58a1-b8e6-9415-068e-a65f91d99c82	2021-05-28 07:13:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:13:24.951+03	2021-05-28 07:13:24.959+03	
d7f9d14c-cdcf-f105-732a-2eabd262bfd9	2021-05-28 07:13:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:13:44.951+03	2021-05-28 07:13:44.958+03	
2c6251d9-819c-f82d-b1eb-84d650bab48e	2021-05-28 07:14:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:14:04.951+03	2021-05-28 07:14:04.958+03	
5bb54c21-2647-4e8c-076c-e9a2421fefde	2021-05-28 07:14:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:14:24.951+03	2021-05-28 07:14:24.958+03	
609dea19-c96c-236a-1fbe-2ad7509dba2f	2021-05-28 07:14:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:14:44.951+03	2021-05-28 07:14:44.959+03	
4e976fe8-f903-d24f-1959-c4acaeddd114	2021-05-28 07:15:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:15:05.951+03	2021-05-28 07:15:05.959+03	
7d411e3f-be8b-9ca0-79d5-b87a7ec34ef0	2021-05-28 07:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:15:25.951+03	2021-05-28 07:15:25.96+03	
555b8366-98a1-1c96-28f3-c21d80fc098f	2021-05-28 07:15:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:15:46.951+03	2021-05-28 07:15:46.958+03	
c9f2a189-e6fd-3ddc-e517-fe86762c2261	2021-05-28 07:16:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:16:06.951+03	2021-05-28 07:16:06.969+03	
90838383-b44a-d16c-336a-ae2382aa1f60	2021-05-28 07:16:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:16:26.951+03	2021-05-28 07:16:26.959+03	
8d112cfc-efc2-7c4a-7ea6-e99807f19d52	2021-05-28 07:16:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:16:46.951+03	2021-05-28 07:16:46.957+03	
2c9035e7-1f51-ebac-5e40-4d5a0bd3308c	2021-05-28 07:17:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:17:06.951+03	2021-05-28 07:17:06.958+03	
8f6e8cc1-14bd-cba3-0349-84509e2a7883	2021-05-28 07:17:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:17:27.952+03	2021-05-28 07:17:27.96+03	
45fe79ee-3d9f-4669-b7c4-f653e01f430a	2021-05-28 07:17:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:17:48.951+03	2021-05-28 07:17:48.958+03	
8741f558-b375-1b22-98fb-b848f9437740	2021-05-28 07:18:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:18:08.951+03	2021-05-28 07:18:08.963+03	
0b3755d6-d1a0-59ea-75ac-aab830e755c2	2021-05-28 07:18:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:18:28.951+03	2021-05-28 07:18:28.958+03	
edca3eb0-d331-f58b-2a0b-7243a76063ec	2021-05-28 07:18:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:18:49.951+03	2021-05-28 07:18:49.963+03	
270c0763-c1a0-0d1e-2d8b-da701d5fc1e9	2021-05-28 07:19:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:19:09.951+03	2021-05-28 07:19:09.969+03	
530da09e-aec4-753d-a59b-97250d569145	2021-05-28 07:19:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:19:29.951+03	2021-05-28 07:19:29.958+03	
ee759bab-e7c8-8db6-fd5e-7fe67c562951	2021-05-28 07:19:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:19:49.951+03	2021-05-28 07:19:49.959+03	
f0d5972e-d517-a806-97f1-84643bb2cf7b	2021-05-28 07:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 07:20:00.951+03	2021-05-28 07:20:00.957+03	ERROR
550d5867-c8ef-b658-de30-289e4b69b6f2	2021-05-28 07:20:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:20:19.951+03	2021-05-28 07:20:19.97+03	
e86da420-4a22-9d84-b86f-05f5a08efab0	2021-05-28 07:20:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:20:39.951+03	2021-05-28 07:20:40.006+03	
72ced13b-b035-b508-2204-9e47598eec0e	2021-05-28 07:20:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:20:59.952+03	2021-05-28 07:20:59.958+03	
208dfc4d-2388-dfab-58cf-18becacc8efa	2021-05-28 07:21:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:21:20.951+03	2021-05-28 07:21:20.958+03	
7df94043-c4d5-3788-494e-7f1f5da8308c	2021-05-28 07:21:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:21:40.951+03	2021-05-28 07:21:40.958+03	
8840a693-a56f-de58-cec8-71bf01da6012	2021-05-28 07:22:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:22:00.951+03	2021-05-28 07:22:00.969+03	
168e7a98-a22e-0702-816e-22e36452d81b	2021-05-28 07:22:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:22:20.951+03	2021-05-28 07:22:20.959+03	
81c05230-d8c1-4a32-5c56-816eb491b719	2021-05-28 07:22:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:22:40.951+03	2021-05-28 07:22:40.958+03	
705037f3-f097-39b9-5801-bf5c0f32069b	2021-05-28 07:23:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:23:01.952+03	2021-05-28 07:23:01.971+03	
5db85de9-2c6e-9b11-3ad1-65c782e5f63a	2021-05-28 07:23:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:23:22.951+03	2021-05-28 07:23:22.958+03	
843f8579-95f7-45ab-835f-15eae9fbb1c3	2021-05-28 07:23:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:23:42.951+03	2021-05-28 07:23:42.962+03	
80d612b1-352d-84ad-723f-95dc09204861	2021-05-28 07:24:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:24:02.951+03	2021-05-28 07:24:02.96+03	
61533be5-2fba-e573-7f34-eab8e77ff31d	2021-05-28 07:24:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:24:22.951+03	2021-05-28 07:24:22.958+03	
3b293db9-cf76-85c3-d0e7-ef03d5ab14a9	2021-05-28 07:24:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:24:42.951+03	2021-05-28 07:24:42.964+03	
c1ca292f-8f09-e7db-ae6e-cb7ac127e5e7	2021-05-28 07:25:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:25:02.951+03	2021-05-28 07:25:02.958+03	
250306ce-2dd1-3c12-26a2-07e4e7c43cce	2021-05-28 07:25:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:25:12.951+03	2021-05-28 07:25:12.973+03	
1fa55503-3b3b-87b3-ec74-4b9a2de50750	2021-05-28 07:25:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:25:22.951+03	2021-05-28 07:25:22.96+03	
a4752837-be0a-0067-fada-e0ed456ae00c	2021-05-28 07:25:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:25:43.951+03	2021-05-28 07:25:43.959+03	
21c9e12d-459c-c6de-da8c-c4c8f0f31d83	2021-05-28 07:26:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:26:03.951+03	2021-05-28 07:26:03.963+03	
16754aa8-e73e-b263-b761-77930edcee1b	2021-05-28 07:26:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:26:23.952+03	2021-05-28 07:26:23.96+03	
c4ac3800-2080-dc63-811a-cb94ffe939fe	2021-05-28 07:26:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:26:44.951+03	2021-05-28 07:26:44.959+03	
b231924c-2aa5-3067-8696-59b0330b7794	2021-05-28 07:27:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:27:04.951+03	2021-05-28 07:27:04.958+03	
cd5f375e-5b5c-e332-d2d1-37677416ad63	2021-05-28 07:27:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:27:24.951+03	2021-05-28 07:27:24.958+03	
260416f3-299c-77c5-2010-67fe0c0dadc6	2021-05-28 07:27:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:27:44.951+03	2021-05-28 07:27:44.958+03	
00ce1280-61df-7a15-9b7d-81f8c81af074	2021-05-28 07:28:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:28:04.951+03	2021-05-28 07:28:04.958+03	
3e8eecf3-481c-8584-8bdf-30db4ea824ad	2021-05-28 07:28:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:28:24.951+03	2021-05-28 07:28:24.958+03	
c24af97f-0f0d-7760-72a4-d313a3d02487	2021-05-28 07:28:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:28:44.951+03	2021-05-28 07:28:44.958+03	
b3cdf03d-5a9c-5304-fb39-51973584ff8e	2021-05-28 07:29:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:29:04.951+03	2021-05-28 07:29:04.959+03	
27a0c94f-15e8-bbb2-c087-e56b1b21218f	2021-05-28 07:29:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:29:25.951+03	2021-05-28 07:29:25.959+03	
583a1628-8d70-2afe-1ec9-7c6e3d7753ef	2021-05-28 07:29:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:29:45.951+03	2021-05-28 07:29:45.958+03	
1fc1d365-6103-6d64-9cd5-18860cfb9d00	2021-05-28 07:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 07:30:00.951+03	2021-05-28 07:30:00.957+03	ERROR
a4453aa9-d388-26c7-33a9-0207e9e61859	2021-05-28 07:30:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:30:16.951+03	2021-05-28 07:30:16.959+03	
4a6f0b79-40eb-b7e2-8b29-d48b29328e53	2021-05-28 07:30:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:30:36.951+03	2021-05-28 07:30:36.958+03	
98b6a614-8d24-049b-aeca-06157b9fc846	2021-05-28 07:30:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:30:56.951+03	2021-05-28 07:30:56.968+03	
835739c7-2424-e159-8461-21edea8019cf	2021-05-28 07:31:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:31:16.951+03	2021-05-28 07:31:16.966+03	
5d8677c4-7c4f-67ba-22f1-776c0152aa29	2021-05-28 07:31:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:31:36.951+03	2021-05-28 07:31:36.96+03	
9f123b06-22c3-b136-0c84-ecc6b457ff99	2021-05-28 07:31:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:31:56.951+03	2021-05-28 07:31:56.958+03	
fbfc25b6-056a-c92d-a658-f0f1ba8ec597	2021-05-28 07:32:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:32:16.951+03	2021-05-28 07:32:16.96+03	
309ee6ed-0258-752d-64b9-ce3a69fd7238	2021-05-28 07:32:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:32:36.951+03	2021-05-28 07:32:36.959+03	
3a83aae1-ff64-4260-b637-b1c9c8eaa6a2	2021-05-28 07:32:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:32:56.951+03	2021-05-28 07:32:56.958+03	
edfdad6a-a435-f0d3-01e5-8d66b35eda9c	2021-05-28 07:33:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:33:16.951+03	2021-05-28 07:33:16.963+03	
cb47b34d-c783-7a2b-509c-a2e51e3fc0e1	2021-05-28 07:33:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:33:36.951+03	2021-05-28 07:33:36.958+03	
166101a0-b900-2c92-f408-0ff0f9619afb	2021-05-28 07:33:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:33:56.951+03	2021-05-28 07:33:56.958+03	
c524d1a8-c21d-dd30-b655-6e2988ec8556	2021-05-28 07:34:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:34:16.951+03	2021-05-28 07:34:16.958+03	
02e1d48d-1da9-5b12-ecb5-16b229932e58	2021-05-28 07:34:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:34:37.952+03	2021-05-28 07:34:37.959+03	
309ad0c8-d81e-8272-c2e0-7c913b78b461	2021-05-28 07:34:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:34:57.952+03	2021-05-28 07:34:57.96+03	
357b5f66-7604-7b6c-86f5-030f582a82fe	2021-05-28 07:35:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:35:18.951+03	2021-05-28 07:35:18.958+03	
1363adfe-88e3-6cb8-e759-2f2755aa43c9	2021-05-28 07:35:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:35:38.951+03	2021-05-28 07:35:38.959+03	
8386c6f7-30f8-2123-21f2-b79a9c9dfdb3	2021-05-28 07:35:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:35:58.951+03	2021-05-28 07:35:58.959+03	
753c77c5-88f8-d190-0366-77f543eb6fdf	2021-05-28 07:36:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:36:18.951+03	2021-05-28 07:36:18.959+03	
72a66752-6579-1a77-5935-31baf80a145b	2021-05-28 07:36:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:36:38.951+03	2021-05-28 07:36:38.958+03	
53d49bf1-9489-47c3-50fc-b364915bb4c6	2021-05-28 07:36:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:36:58.951+03	2021-05-28 07:36:58.958+03	
6ddac9a5-010b-cebf-45ad-ccdb8b7da12d	2021-05-28 07:37:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:37:18.951+03	2021-05-28 07:37:18.96+03	
cc248263-3ee2-7b5f-0bf3-219f449c9ea1	2021-05-28 07:37:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:37:38.951+03	2021-05-28 07:37:38.959+03	
371040b2-371b-8e4e-33e0-db89a0097003	2021-05-28 07:37:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:37:58.951+03	2021-05-28 07:37:58.96+03	
ecc79f79-5aa2-7d2e-849d-ebe3cf8347ea	2021-05-28 07:38:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:38:18.951+03	2021-05-28 07:38:18.958+03	
4e02090f-d4ce-e650-1bab-c4e2c9c8d2ea	2021-05-28 07:38:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:38:38.951+03	2021-05-28 07:38:38.962+03	
e64fca52-a766-613f-efe2-8c8a6a4c0cc0	2021-05-28 07:38:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:38:58.951+03	2021-05-28 07:38:59.008+03	
99ca130a-9bf9-f03b-0449-dbed9e18218c	2021-05-28 07:39:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:39:18.951+03	2021-05-28 07:39:18.958+03	
850e349c-e030-4fb4-3ff8-e8b7636526eb	2021-05-28 07:39:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:39:38.951+03	2021-05-28 07:39:38.959+03	
56ceb053-7473-504d-e8bd-a51ddde8a04b	2021-05-28 07:39:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:39:58.951+03	2021-05-28 07:39:58.958+03	
aa8647c5-3984-ac14-093c-03951357e00e	2021-05-28 07:40:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:40:08.951+03	2021-05-28 07:40:08.965+03	
9523dd12-508c-bc1f-6576-cab514f61dfd	2021-05-28 07:40:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:40:28.951+03	2021-05-28 07:40:28.959+03	
b25aeb7b-e195-7992-96f2-679fd2be1986	2021-05-28 07:40:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:40:48.951+03	2021-05-28 07:40:48.959+03	
d565f7ca-4b57-bb3d-56db-ff87789a459c	2021-05-28 07:41:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:41:08.951+03	2021-05-28 07:41:08.958+03	
1443450e-14e0-7667-fa6f-f67dc53af4a4	2021-05-28 07:41:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:41:28.951+03	2021-05-28 07:41:28.959+03	
bf7e5001-a01f-017b-0221-f5bf308fc017	2021-05-28 07:41:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:41:48.952+03	2021-05-28 07:41:48.958+03	
44dcae1a-0773-6399-dcc4-fda62378e6a7	2021-05-28 07:42:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:42:09.951+03	2021-05-28 07:42:09.958+03	
e10ab193-f625-744b-be0a-f14be74c4a71	2021-05-28 07:42:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:42:29.951+03	2021-05-28 07:42:29.96+03	
fb008eb9-305a-b6f5-dab3-dbed2b762817	2021-05-28 07:42:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:42:49.951+03	2021-05-28 07:42:49.964+03	
5436f32c-f197-1d2b-33e8-bb752d7cca0b	2021-05-28 07:43:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:43:09.951+03	2021-05-28 07:43:09.958+03	
0cbd475a-63e9-ecbe-06a8-428475732154	2021-05-28 07:43:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:43:29.951+03	2021-05-28 07:43:29.959+03	
0552b7ed-55c3-cb25-ebf6-5c7378cafbe4	2021-05-28 07:43:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:43:50.951+03	2021-05-28 07:43:50.96+03	
36d398c0-1260-47be-f0be-41c0ae8c555d	2021-05-28 07:44:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:44:10.951+03	2021-05-28 07:44:10.958+03	
b94a0101-6451-d659-abd9-67be6e7fb66b	2021-05-28 07:44:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:44:30.951+03	2021-05-28 07:44:30.958+03	
c997fb3a-3e8a-c2a4-db32-63be6cfb3755	2021-05-28 07:44:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:44:50.951+03	2021-05-28 07:44:50.958+03	
087269c6-5b80-2c55-e19b-579e98e47145	2021-05-28 07:45:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:45:10.951+03	2021-05-28 07:45:10.96+03	
f217ae33-82e0-cf47-88f2-6aba502cbd82	2021-05-28 07:45:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:45:30.951+03	2021-05-28 07:45:30.96+03	
30ab57b0-79ee-857a-7b04-2ed15b69b6d7	2021-05-28 07:45:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:45:50.951+03	2021-05-28 07:45:50.958+03	
f5d381c7-18bd-0df6-826a-9fc5ef6ca16d	2021-05-28 07:25:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:25:32.952+03	2021-05-28 07:25:32.96+03	
e8498b68-909d-4ec1-52d1-85fe589fd3df	2021-05-28 07:25:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:25:53.951+03	2021-05-28 07:25:53.959+03	
28fa4323-6090-1577-f3db-1ba3b01c8265	2021-05-28 07:26:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:26:13.951+03	2021-05-28 07:26:13.959+03	
906b173c-e845-52ff-9f61-0a96b2525737	2021-05-28 07:26:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:26:34.951+03	2021-05-28 07:26:34.96+03	
cec6c870-7d78-8363-0afe-fc7593a86ae5	2021-05-28 07:26:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:26:54.951+03	2021-05-28 07:26:54.961+03	
a21050cd-3a64-0931-64f0-bc2483d06bc9	2021-05-28 07:27:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:27:14.951+03	2021-05-28 07:27:14.959+03	
5e7a0291-f38c-d417-c775-89b7c27ce99d	2021-05-28 07:27:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:27:34.951+03	2021-05-28 07:27:34.96+03	
e5118a2a-d394-2c93-ef3c-f56184ef1b04	2021-05-28 07:27:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:27:54.951+03	2021-05-28 07:27:54.96+03	
cf71d8e7-521c-a896-2c14-212a7c11103b	2021-05-28 07:28:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:28:14.951+03	2021-05-28 07:28:14.958+03	
9b6d376b-74e9-4e00-7879-f37662772c4a	2021-05-28 07:28:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:28:34.951+03	2021-05-28 07:28:34.959+03	
c755de22-437b-6ea9-6e5f-58fd88bf8988	2021-05-28 07:28:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:28:54.951+03	2021-05-28 07:28:54.96+03	
affa663f-10c1-46af-2b8e-ae1b092458f3	2021-05-28 07:29:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:29:14.952+03	2021-05-28 07:29:14.959+03	
eae2cc7f-1125-258a-037d-ae7fbe0a0d4a	2021-05-28 07:29:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:29:35.951+03	2021-05-28 07:29:35.958+03	
969df6ee-f752-3ff5-a060-182cb17a8088	2021-05-28 07:29:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:29:55.951+03	2021-05-28 07:29:55.958+03	
383f10de-2801-a547-4258-176739918953	2021-05-28 07:30:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:30:05.952+03	2021-05-28 07:30:05.959+03	
01658cc8-e1d3-dad3-3edf-130432a06ab7	2021-05-28 07:30:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:30:26.951+03	2021-05-28 07:30:26.958+03	
54fbf78e-cbb4-6f11-3825-934871bad49c	2021-05-28 07:30:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:30:46.951+03	2021-05-28 07:30:46.96+03	
fc3e1e76-15ad-af1f-56c0-f1b44a330afc	2021-05-28 07:31:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:31:06.951+03	2021-05-28 07:31:06.965+03	
8801434a-1af6-b2e2-8b13-2678099b8e03	2021-05-28 07:31:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:31:26.951+03	2021-05-28 07:31:26.959+03	
f9a5209b-ff4e-2e18-6ace-7513c3c35175	2021-05-28 07:31:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:31:46.951+03	2021-05-28 07:31:46.958+03	
d84726b2-62bb-3d5d-e7a5-19390babcefa	2021-05-28 07:32:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:32:06.951+03	2021-05-28 07:32:06.958+03	
4e9e783c-b65a-bf80-6e75-862a8f41e560	2021-05-28 07:32:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:32:26.951+03	2021-05-28 07:32:26.958+03	
996169e1-f42e-912a-0bfb-db67190118bb	2021-05-28 07:32:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:32:46.951+03	2021-05-28 07:32:46.96+03	
2f671e5b-11f4-95a9-3a06-ecbde1849a7e	2021-05-28 07:33:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:33:06.951+03	2021-05-28 07:33:06.959+03	
689bc1d9-2376-b80b-8900-3b5c45434839	2021-05-28 07:33:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:33:26.951+03	2021-05-28 07:33:26.959+03	
2dfc5bcb-87a5-62ad-3f1e-0fcfc98ff32e	2021-05-28 07:33:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:33:46.951+03	2021-05-28 07:33:46.96+03	
c52e2982-d8b1-d675-3acf-a4837b70d863	2021-05-28 07:34:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:34:06.951+03	2021-05-28 07:34:06.96+03	
17d0c907-9015-50d0-9aab-08c57313ce30	2021-05-28 07:34:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:34:26.952+03	2021-05-28 07:34:27.027+03	
fd6ed5a3-8f61-9c76-d163-b81848cfa136	2021-05-28 07:34:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:34:47.952+03	2021-05-28 07:34:47.961+03	
4c11d9c1-949e-d4f7-6bf9-fb047ce0cb76	2021-05-28 07:35:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:35:08.951+03	2021-05-28 07:35:08.959+03	
65b26127-35b9-3802-acbb-1309d8afba5d	2021-05-28 07:35:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:35:28.951+03	2021-05-28 07:35:28.959+03	
3d220677-496b-5c76-0e48-47458c660843	2021-05-28 07:35:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:35:48.951+03	2021-05-28 07:35:48.959+03	
3ce3bd23-898a-e3b0-017e-87f4f285e71b	2021-05-28 07:36:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:36:08.951+03	2021-05-28 07:36:08.959+03	
9d0f14a6-1a43-9ac5-88d8-2ad6d541ddd0	2021-05-28 07:36:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:36:28.951+03	2021-05-28 07:36:28.959+03	
6fa41001-97e9-7b3f-fbf2-487e52ae17cd	2021-05-28 07:36:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:36:48.951+03	2021-05-28 07:36:48.959+03	
19a3ec99-e0ef-af7b-1dd6-85257199894a	2021-05-28 07:37:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:37:08.951+03	2021-05-28 07:37:08.958+03	
3a173cb6-42b9-77de-b37c-8b60830b9aea	2021-05-28 07:37:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:37:28.951+03	2021-05-28 07:37:28.958+03	
355047b9-beb6-0972-720f-52ae774c29d9	2021-05-28 07:37:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:37:48.951+03	2021-05-28 07:37:48.959+03	
a18bc84c-0545-cba7-c932-2bd6289cdc6e	2021-05-28 07:38:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:38:08.951+03	2021-05-28 07:38:08.96+03	
85cedf4b-40d3-cd6c-f37b-d0f6d0e12fc7	2021-05-28 07:38:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:38:28.951+03	2021-05-28 07:38:28.958+03	
028c7988-4cc4-be0a-85a6-577414128aa8	2021-05-28 07:38:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:38:48.951+03	2021-05-28 07:38:48.958+03	
d90a0f54-194b-58fd-f0b0-8eae835149e3	2021-05-28 07:39:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:39:08.951+03	2021-05-28 07:39:08.958+03	
af38999b-c3d5-d539-1694-83e578f6d83d	2021-05-28 07:39:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:39:28.951+03	2021-05-28 07:39:28.958+03	
0ced894f-3ad6-6a3d-6c9d-e3458c954cbf	2021-05-28 07:39:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:39:48.951+03	2021-05-28 07:39:48.958+03	
81a78fbc-0f1b-9ee9-8215-cc07b05b6593	2021-05-28 07:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 07:40:00.951+03	2021-05-28 07:40:00.956+03	ERROR
a52e9a4b-f919-2011-a7fc-b22809dd2887	2021-05-28 07:40:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:40:18.951+03	2021-05-28 07:40:18.961+03	
4fd84a34-7f16-18ac-20f0-aa74f863e104	2021-05-28 07:40:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:40:38.951+03	2021-05-28 07:40:38.96+03	
efb31dc0-f3e6-4a89-8253-624c8dd05d2d	2021-05-28 07:40:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:40:58.951+03	2021-05-28 07:40:58.959+03	
43cc309d-3565-7b3d-173c-eb35381c2e66	2021-05-28 07:41:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:41:18.951+03	2021-05-28 07:41:18.959+03	
90a8c177-cd21-4eb4-23aa-0e9ed3bd656a	2021-05-28 07:41:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:41:38.951+03	2021-05-28 07:41:38.959+03	
beef4203-f9f8-d793-3934-bfab792638c4	2021-05-28 07:41:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:41:59.951+03	2021-05-28 07:41:59.957+03	
a2b9b2dc-46ac-3fa2-a9c0-ff0af6b62f32	2021-05-28 07:42:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:42:19.951+03	2021-05-28 07:42:19.959+03	
54974fed-a858-0247-bced-edef0a62ec24	2021-05-28 07:42:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:42:39.951+03	2021-05-28 07:42:39.959+03	
d01cc94d-efaa-6ab2-0d63-24e3c0372edf	2021-05-28 07:42:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:42:59.951+03	2021-05-28 07:42:59.959+03	
c9da4da8-55cb-baae-1ba8-c733606adba2	2021-05-28 07:43:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:43:19.951+03	2021-05-28 07:43:19.959+03	
a24e5817-2e31-e0bd-a46c-6b345f2f2bc7	2021-05-28 07:43:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:43:39.952+03	2021-05-28 07:43:39.959+03	
14d51880-b8fd-f122-cd44-3a269f1943c4	2021-05-28 07:44:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:44:00.951+03	2021-05-28 07:44:00.959+03	
d763c523-de66-ed88-93cb-bb70f8d585ac	2021-05-28 07:44:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:44:20.951+03	2021-05-28 07:44:20.959+03	
093f32fa-8256-1418-08ea-e09cdaee64ed	2021-05-28 07:44:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:44:40.951+03	2021-05-28 07:44:40.959+03	
f14207dd-ce2b-e8dc-faf9-93bfc952f413	2021-05-28 07:45:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:45:00.951+03	2021-05-28 07:45:00.959+03	
7a605502-bede-4704-047f-f05555f0721f	2021-05-28 07:45:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:45:20.951+03	2021-05-28 07:45:20.958+03	
1ce538eb-c938-25a3-bab5-d6e6f29eef9d	2021-05-28 07:45:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:45:40.951+03	2021-05-28 07:45:40.958+03	
30739758-5ee1-751a-e3f1-5b9fa4efa03b	2021-05-28 07:46:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:46:00.951+03	2021-05-28 07:46:00.958+03	
50c55e4c-3a5b-88a2-5f90-ad92e2253fe9	2021-05-28 07:46:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:46:10.951+03	2021-05-28 07:46:10.958+03	
e1cb8e25-9f57-05d2-0f1a-448e02764ba3	2021-05-28 07:46:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:46:30.951+03	2021-05-28 07:46:30.958+03	
7ebd937c-d030-fe5e-f1f2-f02209841c32	2021-05-28 07:46:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:46:50.951+03	2021-05-28 07:46:50.958+03	
b3fa42c2-a654-d1af-7769-d8b65b0455d9	2021-05-28 07:47:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:47:10.951+03	2021-05-28 07:47:10.959+03	
58ec0056-19a8-70d3-fbe2-713510329df6	2021-05-28 07:47:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:47:30.951+03	2021-05-28 07:47:30.961+03	
69595bca-206d-f657-301b-a1aec95cbdb6	2021-05-28 07:47:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:47:50.951+03	2021-05-28 07:47:50.96+03	
3b3c8be5-0951-0ea8-119a-9819ebfadc09	2021-05-28 07:48:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:48:10.951+03	2021-05-28 07:48:10.958+03	
b417302d-f3f2-4e84-1966-b950c209fb3a	2021-05-28 07:48:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:48:30.951+03	2021-05-28 07:48:30.961+03	
8fdb9587-3c00-6d64-0e5c-29a20ab25357	2021-05-28 07:48:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:48:50.951+03	2021-05-28 07:48:50.959+03	
5c893bf4-be0e-b931-fae7-545f920d9503	2021-05-28 07:49:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:49:10.951+03	2021-05-28 07:49:10.959+03	
e665da4e-1df8-244d-50e3-9debec98e070	2021-05-28 07:49:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:49:30.951+03	2021-05-28 07:49:30.958+03	
a3d071e1-5cd4-8353-64a6-04e61840c534	2021-05-28 07:49:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:49:50.952+03	2021-05-28 07:49:50.959+03	
b0566f8d-47b1-52fe-80a0-10139a12c303	2021-05-28 07:50:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:50:11.951+03	2021-05-28 07:50:11.959+03	
2323854c-911b-9f0c-15ae-0fdb377340f4	2021-05-28 07:50:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:50:31.951+03	2021-05-28 07:50:31.958+03	
896d43e4-11d1-c584-31ab-8e1d47f403d0	2021-05-28 07:50:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:50:51.951+03	2021-05-28 07:50:51.959+03	
780e5704-dfa6-f45b-513d-05bce6d228b6	2021-05-28 07:51:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:51:11.951+03	2021-05-28 07:51:11.958+03	
1a4afa74-2076-7811-b768-bc5b563def5d	2021-05-28 07:51:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:51:31.951+03	2021-05-28 07:51:31.958+03	
c5228d83-ed4c-9b9e-6413-67d2d88466d2	2021-05-28 07:51:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:51:51.951+03	2021-05-28 07:51:51.958+03	
d531cf72-6fe6-da27-7ec1-2d6171b6b897	2021-05-28 07:52:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:52:11.951+03	2021-05-28 07:52:11.958+03	
72b6c767-3b19-ac41-f4ee-0129995936f5	2021-05-28 07:52:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:52:31.951+03	2021-05-28 07:52:31.958+03	
3a0350af-e839-5cac-9d0a-3d5baa4d620f	2021-05-28 07:52:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:52:51.952+03	2021-05-28 07:52:51.96+03	
75261d3e-4940-df3b-9626-3404d34c3333	2021-05-28 07:53:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:53:12.951+03	2021-05-28 07:53:12.959+03	
99d1ee31-e779-c213-67f3-7d6f746dcf74	2021-05-28 07:53:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:53:33.951+03	2021-05-28 07:53:33.958+03	
339ae61a-7ad2-900d-290b-55bd15b1cbb3	2021-05-28 07:53:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:53:54.951+03	2021-05-28 07:53:55.065+03	
8ff24419-302a-cd33-94a8-182519c2720a	2021-05-28 07:54:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:54:14.951+03	2021-05-28 07:54:14.969+03	
d52c920c-26a9-5d0c-6318-64c537e22b0f	2021-05-28 07:54:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:54:34.951+03	2021-05-28 07:54:34.958+03	
3acb045e-251c-0868-425f-99ea78f72edf	2021-05-28 07:54:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:54:54.952+03	2021-05-28 07:54:54.96+03	
0342f15c-6751-8111-2367-87ec572a8cec	2021-05-28 07:55:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:55:16.951+03	2021-05-28 07:55:16.971+03	
ceb8d074-acc6-4718-4c9b-04c0908cdbbe	2021-05-28 07:55:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:55:36.952+03	2021-05-28 07:55:36.959+03	
8229e751-33e7-9fca-2644-1b0af56e50d4	2021-05-28 07:55:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:55:57.951+03	2021-05-28 07:55:57.96+03	
e0e14d5d-fd04-9be1-b75a-e9c7e9a1c79e	2021-05-28 07:56:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:56:17.952+03	2021-05-28 07:56:17.971+03	
f2d783e4-9a0b-e0c6-dc95-ab4629c63db3	2021-05-28 07:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:56:38.951+03	2021-05-28 07:56:38.959+03	
b4a5b289-5a3e-2b30-96f0-59869d7b7b1d	2021-05-28 07:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:56:58.951+03	2021-05-28 07:56:58.959+03	
00bda580-f787-1572-ceaf-29b8aa1de109	2021-05-28 07:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:57:18.952+03	2021-05-28 07:57:18.96+03	
7622c394-48a4-acea-2b99-c25566308de9	2021-05-28 07:57:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:57:39.951+03	2021-05-28 07:57:39.958+03	
30f0dc24-1e62-f019-5475-897dedc066b0	2021-05-28 07:57:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:57:59.951+03	2021-05-28 07:57:59.958+03	
5b98de84-e402-777a-6104-91d8bcc27df4	2021-05-28 07:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:58:19.951+03	2021-05-28 07:58:19.959+03	
ddb425cc-698b-6114-2a6d-e78220442c20	2021-05-28 07:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:58:39.951+03	2021-05-28 07:58:39.959+03	
9129d276-718f-56b1-7846-6ac1f3e2a9d1	2021-05-28 07:58:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:58:59.951+03	2021-05-28 07:58:59.958+03	
8a926f58-d757-aae7-04f6-05312579915d	2021-05-28 07:59:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:59:19.951+03	2021-05-28 07:59:19.959+03	
8d957973-5522-c792-c2ba-780195bc2bdc	2021-05-28 07:59:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:59:39.951+03	2021-05-28 07:59:39.958+03	
381d3cef-ed2f-0d16-6fcc-8ed15d113d96	2021-05-28 07:59:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:59:59.951+03	2021-05-28 07:59:59.958+03	
10cd81e7-5d16-40f0-3408-a1cb8d87485e	2021-05-28 08:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:00:09.952+03	2021-05-28 08:00:09.959+03	
ffe3433c-8357-e71b-4141-991503513344	2021-05-28 08:00:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:00:30.951+03	2021-05-28 08:00:30.96+03	
be141420-4c63-563e-d04c-15b0fb91df21	2021-05-28 08:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:00:50.951+03	2021-05-28 08:00:50.958+03	
3f6d228c-ab7a-7d7e-1a21-52d612c0aa24	2021-05-28 08:01:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:01:10.951+03	2021-05-28 08:01:10.958+03	
a97fbda0-ac4c-c6c0-0277-0e5e1de7a139	2021-05-28 08:01:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:01:30.951+03	2021-05-28 08:01:30.959+03	
a533435e-eca7-3020-8de5-6e2912ae5eca	2021-05-28 08:01:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:01:50.951+03	2021-05-28 08:01:50.961+03	
aaa752fe-40e3-4e3d-89b4-5ac433a279e7	2021-05-28 08:02:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:02:10.951+03	2021-05-28 08:02:10.958+03	
dc2ace20-2465-1508-cd49-580bc284c2b3	2021-05-28 08:02:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:02:30.951+03	2021-05-28 08:02:30.958+03	
2e132796-3027-2721-53b6-98b5fe2520f3	2021-05-28 08:02:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:02:50.951+03	2021-05-28 08:02:50.961+03	
50c08014-4a3d-fb0f-0fe7-b96a92ec90cb	2021-05-28 08:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:03:10.951+03	2021-05-28 08:03:10.958+03	
3b43040b-21a5-e3b1-3eec-d34e8c95ea60	2021-05-28 08:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:03:30.951+03	2021-05-28 08:03:30.959+03	
5904d3ff-1611-13c2-4d7d-0a2d94822db0	2021-05-28 08:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:03:50.951+03	2021-05-28 08:03:50.959+03	
59186c42-deb5-6280-cc31-74ac5970c346	2021-05-28 08:04:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:04:10.951+03	2021-05-28 08:04:10.96+03	
07c5f0a3-0815-a7bd-aa4a-ae296dbbfdfd	2021-05-28 08:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:04:30.951+03	2021-05-28 08:04:30.958+03	
5911c874-453a-5ece-c7b6-95f09233d224	2021-05-28 08:04:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:04:50.951+03	2021-05-28 08:04:50.967+03	
f7f7919a-1af3-3cb4-b470-f8995fd47f89	2021-05-28 08:05:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:05:10.952+03	2021-05-28 08:05:10.96+03	
435bb484-50f3-17c9-52f5-38b6f0c70a13	2021-05-28 08:05:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:05:31.951+03	2021-05-28 08:05:31.958+03	
1b97c6bf-00c1-828a-a217-4ae6092522ff	2021-05-28 08:05:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:05:51.951+03	2021-05-28 08:05:51.957+03	
9e9f5b18-7866-847c-7575-a4335cb77139	2021-05-28 08:06:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:06:11.951+03	2021-05-28 08:06:11.962+03	
da914614-39fc-ec2b-008b-501bb74c9b8a	2021-05-28 08:06:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:06:31.951+03	2021-05-28 08:06:31.962+03	
e4abb8af-3965-15c8-1f8d-1d44d47eccdc	2021-05-28 08:06:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:06:51.951+03	2021-05-28 08:06:51.958+03	
4ed92dad-b7a2-1ea0-2ed8-549a636562ce	2021-05-28 07:46:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:46:20.951+03	2021-05-28 07:46:20.959+03	
bc3a3e3b-e132-ccd9-54c3-7149b12b46c9	2021-05-28 07:46:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:46:40.951+03	2021-05-28 07:46:40.96+03	
4fc5aa98-7558-a8e0-f044-620d9c33e0e6	2021-05-28 07:47:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:47:00.951+03	2021-05-28 07:47:00.958+03	
9edff323-2e96-dca5-795c-e64c38b5d3cd	2021-05-28 07:47:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:47:20.951+03	2021-05-28 07:47:20.963+03	
000d94db-1a2c-3878-ad48-e04a08b1fa9a	2021-05-28 07:47:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:47:40.951+03	2021-05-28 07:47:40.959+03	
7376de97-55dd-f806-4db9-1a7bb0cc0f65	2021-05-28 07:48:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:48:00.951+03	2021-05-28 07:48:00.958+03	
aa3b311f-ecaf-80a7-3875-71c2949a979c	2021-05-28 07:48:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:48:20.951+03	2021-05-28 07:48:20.958+03	
1cdced0a-c5d1-0a08-11d8-9c9999ae4ccb	2021-05-28 07:48:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:48:40.951+03	2021-05-28 07:48:40.958+03	
62bb8193-04ee-0fe1-75fd-ac6e422b2f9c	2021-05-28 07:49:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:49:00.951+03	2021-05-28 07:49:00.959+03	
763f95c8-1487-981f-ff9d-c4f544ad04fd	2021-05-28 07:49:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:49:20.951+03	2021-05-28 07:49:20.958+03	
1541ee20-14c4-d9e4-be39-fe5ac0b50e40	2021-05-28 07:49:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:49:40.951+03	2021-05-28 07:49:40.959+03	
80038a21-858a-359a-22e2-06bf0a590287	2021-05-28 07:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 07:50:00.951+03	2021-05-28 07:50:00.969+03	ERROR
bc78a5c2-4ea5-581b-3cbc-e97325e09f9d	2021-05-28 07:50:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:50:00.952+03	2021-05-28 07:50:00.984+03	
18e1128a-0a74-c13e-59bc-a44254f07c11	2021-05-28 07:50:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:50:21.951+03	2021-05-28 07:50:21.959+03	
57bb49a2-75a5-4dd2-bf72-53cc120e2ab1	2021-05-28 07:50:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:50:41.951+03	2021-05-28 07:50:41.958+03	
b4c54168-6e32-83e3-6728-4f348a354fb8	2021-05-28 07:51:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:51:01.951+03	2021-05-28 07:51:01.96+03	
f13632b2-170a-59b8-acab-b1a9e69a8e5e	2021-05-28 07:51:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:51:21.951+03	2021-05-28 07:51:21.967+03	
18c6a3d2-1015-e205-6e93-d134ca169184	2021-05-28 07:51:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:51:41.951+03	2021-05-28 07:51:41.958+03	
b6b648f4-a9cf-9323-cb32-7a42ea33bb78	2021-05-28 07:52:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:52:01.951+03	2021-05-28 07:52:01.958+03	
1cc9409f-3a09-ef62-2b93-451602d8589f	2021-05-28 07:52:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:52:21.951+03	2021-05-28 07:52:21.96+03	
a50f3f9d-ab84-52f9-3972-366537f2a4cf	2021-05-28 07:52:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:52:41.951+03	2021-05-28 07:52:41.963+03	
1d205702-76b1-12ae-4d6d-09c837492a98	2021-05-28 07:53:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:53:02.951+03	2021-05-28 07:53:02.958+03	
0274bd4d-8261-e9ee-5d9f-1c32a6911f97	2021-05-28 07:53:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:53:22.952+03	2021-05-28 07:53:22.958+03	
731a3fe8-9093-7c7c-662e-1be41c5b79d3	2021-05-28 07:53:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:53:43.952+03	2021-05-28 07:53:43.96+03	
93989498-449d-f47a-a428-8ea62458fe49	2021-05-28 07:54:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:54:04.951+03	2021-05-28 07:54:04.958+03	
c0e32619-fb66-6cfd-d7f1-0e2be37addac	2021-05-28 07:54:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:54:24.951+03	2021-05-28 07:54:24.96+03	
fbdea594-79b6-58e9-ab8e-89cb3c235d26	2021-05-28 07:54:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:54:44.951+03	2021-05-28 07:54:44.958+03	
111d71ae-5bea-b680-d1dd-f6e0f8d0ec61	2021-05-28 07:55:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:55:05.952+03	2021-05-28 07:55:05.959+03	
495957f5-5c1a-6fff-697d-ea9936354c46	2021-05-28 07:55:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:55:26.951+03	2021-05-28 07:55:26.959+03	
7f5ccd96-5998-07a1-acb2-72d56121a02b	2021-05-28 07:55:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:55:47.951+03	2021-05-28 07:55:47.958+03	
465f6ecf-76f8-c279-1c6a-51e527167ae3	2021-05-28 07:56:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:56:07.951+03	2021-05-28 07:56:07.963+03	
09dce301-e693-a907-dd64-1c2ee4d7a990	2021-05-28 07:56:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:56:28.951+03	2021-05-28 07:56:28.96+03	
a189750a-f0d1-a05c-dcdf-f40d2a52b246	2021-05-28 07:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:56:48.951+03	2021-05-28 07:56:48.958+03	
46457821-d34b-93e5-b5fd-53cfea88a332	2021-05-28 07:57:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:57:08.951+03	2021-05-28 07:57:08.959+03	
ae559f74-0a63-e94a-30ad-a9985782adc7	2021-05-28 07:57:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:57:29.951+03	2021-05-28 07:57:29.957+03	
f1456ff4-d1ef-bc3a-6b29-f8fe1ae7e2f8	2021-05-28 07:57:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:57:49.951+03	2021-05-28 07:57:49.958+03	
ae6b9952-1746-acd9-7624-4dd436d1744f	2021-05-28 07:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:58:09.951+03	2021-05-28 07:58:09.959+03	
591789fa-de47-c93f-1f23-538baf94cb69	2021-05-28 07:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:58:29.951+03	2021-05-28 07:58:29.97+03	
14aacf25-9764-a253-3d23-d92c7d892b6c	2021-05-28 07:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:58:49.951+03	2021-05-28 07:58:49.958+03	
a6e3f646-d86a-8cdb-2135-322a730bcd0a	2021-05-28 07:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:59:09.951+03	2021-05-28 07:59:09.959+03	
163c22a5-1fff-705c-34c0-ca5bac23ecde	2021-05-28 07:59:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:59:29.951+03	2021-05-28 07:59:29.957+03	
4b45e929-829b-72f8-c001-2e0dfd6fd1cf	2021-05-28 07:59:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 07:59:49.951+03	2021-05-28 07:59:49.959+03	
80517c82-91df-9e06-b5b2-26519055e42a	2021-05-28 08:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 08:00:00.951+03	2021-05-28 08:00:00.956+03	ERROR
e2c20188-3d42-dbe5-5778-8281ab255f1a	2021-05-28 08:00:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:00:20.951+03	2021-05-28 08:00:20.957+03	
2319bbc2-32ba-16ef-ab22-eb1030a120af	2021-05-28 08:00:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:00:40.951+03	2021-05-28 08:00:40.959+03	
8cf116af-a425-9b2c-675c-f860b0d8fe1f	2021-05-28 08:01:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:01:00.951+03	2021-05-28 08:01:00.959+03	
ad28bfe3-2d75-abde-ce10-bd37abcad1fe	2021-05-28 08:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:01:20.951+03	2021-05-28 08:01:20.959+03	
3cae1eed-f4c2-e392-4ee4-00a6f3981383	2021-05-28 08:01:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:01:40.951+03	2021-05-28 08:01:40.958+03	
4987bea2-5e0d-5650-3353-8b353aecb020	2021-05-28 08:02:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:02:00.951+03	2021-05-28 08:02:00.96+03	
f02d97d8-c8cd-9a2c-0cc0-ec15555548e1	2021-05-28 08:02:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:02:20.951+03	2021-05-28 08:02:20.959+03	
e851ba6d-bbc9-eb07-42e0-8caeeb58339d	2021-05-28 08:02:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:02:40.951+03	2021-05-28 08:02:40.958+03	
3e4b9d23-ef6e-4dad-08db-17e0a5e0465d	2021-05-28 08:03:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:03:00.951+03	2021-05-28 08:03:00.958+03	
ce25ffbf-7506-d8a7-d9d4-e6cae916eff1	2021-05-28 08:03:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:03:20.951+03	2021-05-28 08:03:20.958+03	
4e83ffbe-dbf2-cf25-6ef5-600f8639e8e9	2021-05-28 08:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:03:40.951+03	2021-05-28 08:03:40.958+03	
bc7b09a8-0078-0d27-7b7b-b597994ae949	2021-05-28 08:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:04:00.951+03	2021-05-28 08:04:00.96+03	
25d44dbe-ed70-8c7a-a767-1f1ba21e875f	2021-05-28 08:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:04:20.951+03	2021-05-28 08:04:20.958+03	
493db186-7522-28b2-e04b-246db456016d	2021-05-28 08:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:04:40.951+03	2021-05-28 08:04:40.959+03	
0da0282a-a3e5-18b1-2aa7-ee73881f74b9	2021-05-28 08:05:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:05:00.951+03	2021-05-28 08:05:00.96+03	
b9154015-ecf5-4f2c-ead0-5ae495765991	2021-05-28 08:05:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:05:21.951+03	2021-05-28 08:05:21.958+03	
91d8bd37-68f2-42d7-3ac4-938becfac189	2021-05-28 08:05:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:05:41.951+03	2021-05-28 08:05:41.958+03	
c1ff2179-1a55-9cc1-0839-cb48959f872c	2021-05-28 08:06:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:06:01.951+03	2021-05-28 08:06:01.958+03	
8be92135-ee4f-84be-53aa-5144bb1e3bd8	2021-05-28 08:06:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:06:21.951+03	2021-05-28 08:06:21.958+03	
84ebf33e-e50d-aae2-2e12-a24bbb3e2a83	2021-05-28 08:06:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:06:41.951+03	2021-05-28 08:06:41.959+03	
216ecdd2-a8e5-d7d4-4d73-657414a33128	2021-05-28 08:07:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:07:01.951+03	2021-05-28 08:07:01.958+03	
431e48ff-3da3-771b-ea46-0d83d4b26f4a	2021-05-28 08:07:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:07:21.951+03	2021-05-28 08:07:21.958+03	
37cd6afa-436c-7513-75bd-4004de031984	2021-05-28 08:07:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:07:41.951+03	2021-05-28 08:07:41.959+03	
a0427b2e-64c7-7f1e-f3c4-843c356815c2	2021-05-28 08:08:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:08:01.951+03	2021-05-28 08:08:01.96+03	
db1e2cd7-ea28-e48c-902a-3cb34970e6a8	2021-05-28 08:08:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:08:21.951+03	2021-05-28 08:08:21.959+03	
718d5669-d1c6-b30e-e2d5-c386ef4e35df	2021-05-28 08:08:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:08:41.951+03	2021-05-28 08:08:41.958+03	
2ab4f207-3512-cf92-667c-ffa2204bf944	2021-05-28 08:09:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:09:01.951+03	2021-05-28 08:09:01.958+03	
b02139f7-8de9-df9c-1405-695be558ea08	2021-05-28 08:09:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:09:21.951+03	2021-05-28 08:09:21.957+03	
ac5de54d-f890-36e7-8ec8-54c48dc618e4	2021-05-28 08:09:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:09:41.951+03	2021-05-28 08:09:41.958+03	
8cad108e-e363-c862-9ee7-3d806e1ac406	2021-05-28 08:10:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 08:10:00.951+03	2021-05-28 08:10:00.956+03	ERROR
93108940-460a-3d66-7563-166b192527b1	2021-05-28 08:10:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:10:11.951+03	2021-05-28 08:10:11.958+03	
e99851d6-4b4c-9084-3d59-5bc03565515b	2021-05-28 08:10:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:10:31.951+03	2021-05-28 08:10:31.958+03	
79be31b2-93a8-20fe-7903-dcdaf7542b00	2021-05-28 08:10:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:10:51.951+03	2021-05-28 08:10:51.959+03	
cbf6f7ca-c00d-2e77-9eb9-c052c0629e1e	2021-05-28 08:11:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:11:11.951+03	2021-05-28 08:11:11.968+03	
43feff28-ad1a-42d8-d176-d425a5835d86	2021-05-28 08:11:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:11:31.951+03	2021-05-28 08:11:31.959+03	
01c6e61a-b655-93d0-6bff-34e14b72aac9	2021-05-28 08:11:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:11:51.951+03	2021-05-28 08:11:51.959+03	
95c73529-1c7c-2dcc-c9e1-86e2756d9a46	2021-05-28 08:12:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:12:11.951+03	2021-05-28 08:12:11.959+03	
690d7842-6992-bffc-e3bd-1293696ffb7a	2021-05-28 08:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:12:31.951+03	2021-05-28 08:12:31.958+03	
fc0ead33-66a2-5a16-54ef-f3fdfa3ff771	2021-05-28 08:12:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:12:51.951+03	2021-05-28 08:12:51.958+03	
719802d5-cff6-4056-388a-279c78694879	2021-05-28 08:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:13:11.951+03	2021-05-28 08:13:11.96+03	
237a97be-b5e4-affc-cdd1-8841b84f78a3	2021-05-28 08:13:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:13:31.951+03	2021-05-28 08:13:31.958+03	
42701619-5c0b-c86a-5ed6-ed7d2466104c	2021-05-28 08:13:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:13:51.951+03	2021-05-28 08:13:51.96+03	
12e1336c-6b25-8cc3-02f6-2c1205497219	2021-05-28 08:14:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:14:11.951+03	2021-05-28 08:14:11.958+03	
f9fe267f-88dd-07a2-47c2-8cac5cfe89d0	2021-05-28 08:14:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:14:31.951+03	2021-05-28 08:14:31.958+03	
fb73a73e-2b50-fa2d-63c4-cfc227f21db9	2021-05-28 08:14:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:14:51.951+03	2021-05-28 08:14:51.958+03	
3b56d9db-cb3d-c587-c142-26dc8322866b	2021-05-28 08:15:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:15:11.952+03	2021-05-28 08:15:11.958+03	
07cc2ad7-9e35-a298-43bb-0c03351b5b15	2021-05-28 08:15:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:15:32.952+03	2021-05-28 08:15:32.959+03	
ba4fd001-0f8c-23c7-f85c-36a992349431	2021-05-28 08:15:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:15:53.951+03	2021-05-28 08:15:53.959+03	
6b59c880-ce6d-baf3-5fce-7de1303e7a64	2021-05-28 08:16:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:16:13.951+03	2021-05-28 08:16:13.959+03	
d2d3be24-579a-96d8-a6ac-339c9589dc7b	2021-05-28 08:16:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:16:33.951+03	2021-05-28 08:16:33.957+03	
f05ed253-5a49-90b4-21ac-081c005ae57a	2021-05-28 08:16:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:16:53.951+03	2021-05-28 08:16:53.962+03	
381e769e-b488-8cf7-9805-c0bb6b1e2353	2021-05-28 08:17:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:17:13.951+03	2021-05-28 08:17:13.961+03	
7d3593c9-9be1-f168-a738-a15998ead57a	2021-05-28 08:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:17:33.951+03	2021-05-28 08:17:33.965+03	
70508899-c9c6-d625-cf4b-4f17e98031cb	2021-05-28 08:17:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:17:53.951+03	2021-05-28 08:17:53.958+03	
76a2108d-23cd-8885-cedc-298e54cf7bbe	2021-05-28 08:18:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:18:13.951+03	2021-05-28 08:18:13.958+03	
d74e3805-4a49-519c-17ea-d896a45749a9	2021-05-28 08:18:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:18:33.951+03	2021-05-28 08:18:33.958+03	
7828a60f-d37a-1246-1cc7-01258ab346f0	2021-05-28 08:18:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:18:53.951+03	2021-05-28 08:18:53.959+03	
a7cadc31-23da-d302-f5da-6c2697c4428a	2021-05-28 08:19:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:19:13.951+03	2021-05-28 08:19:13.958+03	
c00f8485-486e-c2ff-c56d-22efb6a97daf	2021-05-28 08:19:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:19:33.951+03	2021-05-28 08:19:33.962+03	
1ac22f3f-bdfd-3ec9-b963-9261198ef77a	2021-05-28 08:19:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:19:53.951+03	2021-05-28 08:19:53.959+03	
0ff7b83f-25db-6047-9b17-2325d7ed4de7	2021-05-28 08:20:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:20:03.951+03	2021-05-28 08:20:03.958+03	
11479f76-7191-f89c-dad3-02742afa2dc2	2021-05-28 08:20:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:20:23.951+03	2021-05-28 08:20:23.957+03	
a208a53e-d117-0e08-8834-668b6d99ba50	2021-05-28 08:20:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:20:44.951+03	2021-05-28 08:20:44.958+03	
95fe3ed1-e731-137a-456e-c2ad71a8bc02	2021-05-28 08:21:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:21:04.951+03	2021-05-28 08:21:04.958+03	
1c2d176b-a785-4be8-f1f5-c85857318cb1	2021-05-28 08:21:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:21:24.951+03	2021-05-28 08:21:24.958+03	
e9d6f3a9-233b-fd0c-a002-80d1b35a5e53	2021-05-28 08:21:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:21:44.951+03	2021-05-28 08:21:44.958+03	
cd6bd871-0597-e3bb-5ff0-f91f0e4cf530	2021-05-28 08:22:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:22:04.951+03	2021-05-28 08:22:04.961+03	
45933512-6784-a684-8443-f725445b32f1	2021-05-28 08:22:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:22:24.952+03	2021-05-28 08:22:24.959+03	
1d1600d5-fd02-0815-c145-300d08ded804	2021-05-28 08:22:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:22:45.951+03	2021-05-28 08:22:45.957+03	
61445861-d4f4-1b1a-ed74-27d3e2f3d768	2021-05-28 08:23:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:23:05.952+03	2021-05-28 08:23:05.96+03	
7f8b25bb-46f7-6ec9-5821-e8275b122c0d	2021-05-28 08:23:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:23:26.951+03	2021-05-28 08:23:26.959+03	
8d4143a3-708e-5b2c-607f-0732a6841c2b	2021-05-28 08:23:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:23:46.951+03	2021-05-28 08:23:46.957+03	
69cd4361-f87a-5e0a-d05e-f99ae88e1b90	2021-05-28 08:24:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:24:06.951+03	2021-05-28 08:24:06.959+03	
b843a300-8cee-f179-37d8-be7d317927df	2021-05-28 08:24:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:24:26.951+03	2021-05-28 08:24:26.958+03	
2a915ce2-49d7-d78f-cec3-7f3d8a146e2a	2021-05-28 08:24:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:24:46.951+03	2021-05-28 08:24:46.959+03	
5fb94ec0-ca0b-90ff-3bff-9673c84e648e	2021-05-28 08:25:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:25:06.952+03	2021-05-28 08:25:06.959+03	
9b1856a5-6e00-da8d-0fb6-acf4b19ea8e3	2021-05-28 08:25:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:25:27.952+03	2021-05-28 08:25:27.958+03	
68940dde-7393-217a-9745-4e2e46f495ca	2021-05-28 08:25:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:25:48.951+03	2021-05-28 08:25:48.958+03	
9dbdd2bd-08d3-4c0f-361b-e2e90f561651	2021-05-28 08:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:26:08.951+03	2021-05-28 08:26:08.959+03	
5f6e0d14-2816-b016-a7da-4fe3ad722e92	2021-05-28 08:26:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:26:28.951+03	2021-05-28 08:26:28.958+03	
061a8df1-08d3-ed9d-22ce-421cff419957	2021-05-28 08:26:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:26:48.951+03	2021-05-28 08:26:48.959+03	
3cf90309-5eb8-bb43-221b-1649aafb7ed3	2021-05-28 08:27:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:27:08.952+03	2021-05-28 08:27:08.959+03	
bc0232f9-319c-7865-a069-8aa2651ac985	2021-05-28 08:27:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:27:29.951+03	2021-05-28 08:27:29.96+03	
7ca6d9cb-23ec-84e1-d715-4b48c8be6437	2021-05-28 08:07:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:07:11.951+03	2021-05-28 08:07:11.964+03	
c18b875a-df80-4120-6ed6-e21ee75c8f5d	2021-05-28 08:07:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:07:31.951+03	2021-05-28 08:07:31.958+03	
25a0dffb-663f-e39e-d145-1de146b26492	2021-05-28 08:07:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:07:51.951+03	2021-05-28 08:07:51.958+03	
800e2188-0ee0-642a-0956-19906c10dddb	2021-05-28 08:08:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:08:11.951+03	2021-05-28 08:08:11.959+03	
13fdaebe-86b1-d9b8-929c-fb9689262c0d	2021-05-28 08:08:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:08:31.951+03	2021-05-28 08:08:31.957+03	
89deb689-94ee-721e-b9e0-9b81f02f5754	2021-05-28 08:08:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:08:51.951+03	2021-05-28 08:08:51.958+03	
16c8be57-908d-9015-a7a5-560aab7a4896	2021-05-28 08:09:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:09:11.951+03	2021-05-28 08:09:11.959+03	
c3115323-35d2-ef0c-9739-c28d82843e4b	2021-05-28 08:09:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:09:31.951+03	2021-05-28 08:09:31.958+03	
2d5f3184-8027-8664-d1f7-3823a866cb4f	2021-05-28 08:09:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:09:51.951+03	2021-05-28 08:09:51.958+03	
5a1bbf40-75e7-a75b-6b69-816e782492c8	2021-05-28 08:10:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:10:01.951+03	2021-05-28 08:10:01.959+03	
625e5daa-0435-2983-d632-ea1f04060f67	2021-05-28 08:10:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:10:21.951+03	2021-05-28 08:10:21.958+03	
8bc06f8b-767e-fc1b-47e0-a8b973e4897e	2021-05-28 08:10:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:10:41.951+03	2021-05-28 08:10:41.961+03	
0575199f-f76a-0109-2483-96579f001d79	2021-05-28 08:11:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:11:01.951+03	2021-05-28 08:11:01.96+03	
089e22b2-fa06-f8d5-ef54-94dc3e4af0b1	2021-05-28 08:11:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:11:21.951+03	2021-05-28 08:11:21.96+03	
f0dbc545-f727-65da-51c7-410cf414e5d1	2021-05-28 08:11:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:11:41.951+03	2021-05-28 08:11:41.959+03	
dd48d9e3-bd0d-5e11-f8de-7f05c174a813	2021-05-28 08:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:12:01.951+03	2021-05-28 08:12:01.959+03	
faaea82d-0fff-5d60-5101-f6df51e87fc3	2021-05-28 08:12:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:12:21.951+03	2021-05-28 08:12:21.958+03	
d82596b3-cb6b-5fac-2cd1-961c2340eb0e	2021-05-28 08:12:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:12:41.951+03	2021-05-28 08:12:41.958+03	
29eaefa4-5686-82d6-90cc-266618c6699b	2021-05-28 08:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:13:01.951+03	2021-05-28 08:13:01.958+03	
3269ddef-f42d-2867-a0c8-0a7754d1f6d0	2021-05-28 08:13:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:13:21.951+03	2021-05-28 08:13:21.96+03	
364c6f2e-ffeb-04f4-3d83-36a734eaa0d2	2021-05-28 08:13:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:13:41.951+03	2021-05-28 08:13:41.959+03	
4b8c72eb-3a22-8951-7edc-f08ec66439ce	2021-05-28 08:14:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:14:01.951+03	2021-05-28 08:14:01.959+03	
262671e7-4ed5-de98-52af-fc52e4e9ef39	2021-05-28 08:14:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:14:21.951+03	2021-05-28 08:14:21.962+03	
41a3be08-fbed-c14a-954a-05e4dda831f8	2021-05-28 08:14:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:14:41.951+03	2021-05-28 08:14:41.957+03	
9924cf57-97d6-5f89-4080-45175c16d386	2021-05-28 08:15:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:15:01.951+03	2021-05-28 08:15:01.959+03	
65eb7d7f-dfed-4b10-4972-44aa106500d2	2021-05-28 08:15:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:15:22.951+03	2021-05-28 08:15:22.958+03	
d9a7cbb2-dd14-a785-0019-ac0b8fe11dec	2021-05-28 08:15:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:15:43.951+03	2021-05-28 08:15:43.958+03	
7eec5cbb-2313-0006-ea6f-95196a509d37	2021-05-28 08:16:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:16:03.951+03	2021-05-28 08:16:03.958+03	
95b27231-f809-1e00-3400-d4e6bd113821	2021-05-28 08:16:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:16:23.951+03	2021-05-28 08:16:23.958+03	
7620e20f-0faf-963e-9c29-5332291a25a7	2021-05-28 08:16:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:16:43.951+03	2021-05-28 08:16:43.958+03	
6bb4a470-4bc3-820f-5158-3d31ca396286	2021-05-28 08:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:17:03.951+03	2021-05-28 08:17:03.965+03	
e13e6a65-e9f3-f9ac-5b20-c57e5a7e69bb	2021-05-28 08:17:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:17:23.951+03	2021-05-28 08:17:23.957+03	
e47db693-6785-12d5-e6c0-3c29ad819993	2021-05-28 08:17:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:17:43.951+03	2021-05-28 08:17:43.96+03	
3bc7c96b-1e44-c43b-d67d-d91a80ad81f9	2021-05-28 08:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:18:03.951+03	2021-05-28 08:18:03.958+03	
47409075-9fa3-50c0-3017-f65903fdf607	2021-05-28 08:18:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:18:23.951+03	2021-05-28 08:18:23.959+03	
ed70ac01-2a85-104e-ad9c-8dc717499c6c	2021-05-28 08:18:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:18:43.951+03	2021-05-28 08:18:43.958+03	
fc4c066c-5cb4-373e-8911-aebbfd703294	2021-05-28 08:19:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:19:03.951+03	2021-05-28 08:19:03.959+03	
a800b2ad-03e1-54c0-d678-2d5c3c9540ed	2021-05-28 08:19:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:19:23.951+03	2021-05-28 08:19:23.958+03	
5ea8678f-d9e3-57ca-7694-05bf2043127f	2021-05-28 08:19:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:19:43.951+03	2021-05-28 08:19:43.958+03	
2b1f43b0-a939-0be1-d4ec-9b817300d979	2021-05-28 08:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 08:20:00.951+03	2021-05-28 08:20:00.957+03	ERROR
8dae24e5-550f-394b-db03-a173349cef18	2021-05-28 08:20:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:20:13.951+03	2021-05-28 08:20:13.958+03	
fc6747ab-5c04-3423-eb63-d93683226cb3	2021-05-28 08:20:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:20:33.952+03	2021-05-28 08:20:33.958+03	
b7e826a6-47ab-b4d1-57ff-8aa56d287bb7	2021-05-28 08:20:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:20:54.951+03	2021-05-28 08:20:54.959+03	
3230d307-52bd-1652-e376-b43e6726ce21	2021-05-28 08:21:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:21:14.951+03	2021-05-28 08:21:14.959+03	
fe14100d-1344-8bf3-82fe-b50063def841	2021-05-28 08:21:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:21:34.951+03	2021-05-28 08:21:34.972+03	
766003cd-f3f9-b376-a9b4-4e75a50239b7	2021-05-28 08:21:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:21:54.951+03	2021-05-28 08:21:54.96+03	
680b59d9-0978-1517-27a0-ad501be78d81	2021-05-28 08:22:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:22:14.951+03	2021-05-28 08:22:14.958+03	
76f715e9-b487-e801-f0a5-1273d4ab13d8	2021-05-28 08:22:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:22:35.951+03	2021-05-28 08:22:35.96+03	
733566d9-a6e6-a156-efaa-050f88b653e7	2021-05-28 08:22:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:22:55.951+03	2021-05-28 08:22:55.959+03	
153cd4dc-8122-b237-637f-0886da418a56	2021-05-28 08:23:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:23:16.951+03	2021-05-28 08:23:16.958+03	
22a3e847-bebb-79ca-35ad-0991939fba51	2021-05-28 08:23:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:23:36.951+03	2021-05-28 08:23:36.959+03	
429822fe-1502-7e35-88ea-eaa39ccd3faf	2021-05-28 08:23:56.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:23:56.951+03	2021-05-28 08:23:56.967+03	
ae5e61bd-259d-b25f-dff5-59c65f143cc5	2021-05-28 08:24:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:24:16.951+03	2021-05-28 08:24:16.959+03	
e7be7e4c-47db-ce3b-3d2d-465e69843a18	2021-05-28 08:24:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:24:36.951+03	2021-05-28 08:24:36.959+03	
4b557669-b585-54bb-da92-4c2722c9cb43	2021-05-28 08:24:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:24:56.951+03	2021-05-28 08:24:56.958+03	
e9e5948e-5e37-cf18-4d67-4c1629cf51c2	2021-05-28 08:25:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:25:17.951+03	2021-05-28 08:25:17.958+03	
9c5600c0-d582-d0b1-258f-9c79a8b38a93	2021-05-28 08:25:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:25:37.952+03	2021-05-28 08:25:37.959+03	
20882f1e-df79-1fcc-28af-9f9d60ab5253	2021-05-28 08:25:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:25:58.951+03	2021-05-28 08:25:58.96+03	
5c1f6e75-2740-2c8d-1284-232d67db6bf6	2021-05-28 08:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:26:18.951+03	2021-05-28 08:26:18.959+03	
be2a1bb8-2c1d-edf1-134b-8e35db0fd613	2021-05-28 08:26:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:26:38.951+03	2021-05-28 08:26:38.959+03	
b8c191e5-bd08-de64-6c07-9808ab1efc85	2021-05-28 08:26:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:26:58.951+03	2021-05-28 08:26:58.959+03	
4a11e6a2-d7ea-22b4-3818-7b58622213c5	2021-05-28 08:27:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:27:19.951+03	2021-05-28 08:27:19.96+03	
1faf6b8f-3204-44b7-5d1b-99f3ef15e822	2021-05-28 08:27:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:27:39.951+03	2021-05-28 08:27:39.958+03	
3014ea23-d0ce-8c67-cc12-ea6e1193b680	2021-05-28 08:27:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:27:49.951+03	2021-05-28 08:27:49.958+03	
2d94f938-1c1d-625b-ae4c-37fa871ddd9f	2021-05-28 08:28:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:28:09.951+03	2021-05-28 08:28:09.967+03	
5b12ea73-4e9f-f247-455f-acd2a175ed35	2021-05-28 08:28:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:28:29.951+03	2021-05-28 08:28:29.959+03	
e6be6e52-21be-7d55-9a5b-d1444bde3efd	2021-05-28 08:28:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:28:49.951+03	2021-05-28 08:28:49.958+03	
b6ad1a97-0b6e-43c6-91ce-09cfadb3ed21	2021-05-28 08:29:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:29:09.951+03	2021-05-28 08:29:09.959+03	
acefec3e-15c8-1821-5c29-d78e5bff44cc	2021-05-28 08:29:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:29:29.951+03	2021-05-28 08:29:29.958+03	
dccb0ee3-a38e-56b4-5252-c017847894b3	2021-05-28 08:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:29:49.951+03	2021-05-28 08:29:49.961+03	
89244bb8-0f17-715e-2d2c-7f6a344f87eb	2021-05-28 08:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 08:30:00.951+03	2021-05-28 08:30:00.957+03	ERROR
3e917dec-3d46-1c6a-a73c-5a21268c3611	2021-05-28 08:30:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:30:19.951+03	2021-05-28 08:30:19.959+03	
bb79d092-ee3f-7d4c-33dd-d28e6a152e8c	2021-05-28 08:30:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:30:39.952+03	2021-05-28 08:30:39.958+03	
965de785-67e3-8d90-5a4c-eab06b876266	2021-05-28 08:31:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:31:00.951+03	2021-05-28 08:31:00.962+03	
cb545e4e-983e-1977-6053-a58994bd801f	2021-05-28 08:31:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:31:20.951+03	2021-05-28 08:31:20.958+03	
a12721bc-2e9c-a31b-f44f-02164e42ba64	2021-05-28 08:31:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:31:40.951+03	2021-05-28 08:31:40.958+03	
91a07c82-0485-6ec2-d8e6-e1ba0f9fb989	2021-05-28 08:32:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:32:00.951+03	2021-05-28 08:32:00.959+03	
27d76ccb-0bd3-6bde-6b68-62b309b12a74	2021-05-28 08:32:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:32:20.951+03	2021-05-28 08:32:20.958+03	
581c9970-3788-e5ad-1ce9-1e425e1a8c65	2021-05-28 08:32:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:32:40.951+03	2021-05-28 08:32:40.958+03	
163222b7-4bcd-0a68-740b-d682d8aa66b5	2021-05-28 08:33:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:33:00.951+03	2021-05-28 08:33:00.958+03	
f4c40e58-7ff6-4c84-6c1d-39c8562d3f19	2021-05-28 08:33:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:33:20.951+03	2021-05-28 08:33:20.958+03	
38281591-66c7-72a1-861c-01f159b55cc1	2021-05-28 08:33:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:33:40.951+03	2021-05-28 08:33:40.96+03	
f526a4f3-022c-72af-d6e0-43466358a708	2021-05-28 08:34:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:34:00.951+03	2021-05-28 08:34:00.958+03	
a3e8e4e0-9afd-8884-bff8-62559ee3284d	2021-05-28 08:34:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:34:20.951+03	2021-05-28 08:34:20.96+03	
e88596b6-0f5b-871e-a9a1-fe76603e6371	2021-05-28 08:34:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:34:40.951+03	2021-05-28 08:34:40.958+03	
373cec44-00fe-18a3-837f-4c09a5aeb691	2021-05-28 08:35:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:35:00.951+03	2021-05-28 08:35:00.958+03	
5d7099da-080d-69ec-0d14-65adb6f0ddfa	2021-05-28 08:35:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:35:20.951+03	2021-05-28 08:35:20.958+03	
6eea0633-3f9e-4f3e-0125-895dadf054b8	2021-05-28 08:35:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:35:40.951+03	2021-05-28 08:35:40.958+03	
8fc349c4-7ab9-6208-f6a9-80fe09f2304c	2021-05-28 08:36:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:36:00.951+03	2021-05-28 08:36:00.959+03	
993b0fa4-6ccb-e81d-75a8-a8546fc509a7	2021-05-28 08:36:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:36:20.951+03	2021-05-28 08:36:20.959+03	
8920b967-a5be-eaad-4af2-e26e959f0d91	2021-05-28 08:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:36:40.951+03	2021-05-28 08:36:40.962+03	
8ab683c8-808b-8c3e-ee62-86b95f579b62	2021-05-28 08:37:00.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:37:00.952+03	2021-05-28 08:37:00.962+03	
dc1ce56c-15e0-6601-c75b-586e20891964	2021-05-28 08:37:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:37:21.951+03	2021-05-28 08:37:21.958+03	
77784c7d-6b50-7eaf-1088-7ccdfd75f1bc	2021-05-28 08:37:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:37:41.951+03	2021-05-28 08:37:41.958+03	
f5ac2b71-808d-4cf8-e723-22a2e0dc2fb0	2021-05-28 08:38:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:38:01.951+03	2021-05-28 08:38:01.957+03	
4ab2be70-044c-9aec-770f-cab542a4f0d7	2021-05-28 08:38:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:38:21.951+03	2021-05-28 08:38:21.971+03	
d721693c-23fb-adbb-19b3-59fcc814a10e	2021-05-28 08:38:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:38:41.951+03	2021-05-28 08:38:41.958+03	
617e2487-f165-107b-a670-d3455c31142b	2021-05-28 08:39:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:39:01.951+03	2021-05-28 08:39:01.958+03	
012c1555-83e2-4ea0-28a5-9060352a2e54	2021-05-28 08:39:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:39:21.951+03	2021-05-28 08:39:21.957+03	
3554d573-3878-fe30-ead4-46fdfc276f73	2021-05-28 08:39:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:39:41.951+03	2021-05-28 08:39:41.958+03	
8c3db4d7-e4ae-4621-e192-d78eb511a020	2021-05-28 08:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 08:40:00.951+03	2021-05-28 08:40:00.957+03	ERROR
cd5d5eb2-c723-a4af-9dc6-fc7b5d01028a	2021-05-28 08:40:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:40:11.951+03	2021-05-28 08:40:11.958+03	
60053b49-00bb-ac2d-ae82-4d3a443d5214	2021-05-28 08:40:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:40:31.951+03	2021-05-28 08:40:31.957+03	
d19f6a49-e436-d7a6-5e8b-58ca3d017f94	2021-05-28 08:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:40:51.951+03	2021-05-28 08:40:51.97+03	
3d796d8f-96ed-b4c7-4488-5acff1f1f3fd	2021-05-28 08:41:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:41:11.951+03	2021-05-28 08:41:11.968+03	
636ab646-1f65-4d86-bac1-0853fe19980c	2021-05-28 08:41:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:41:31.951+03	2021-05-28 08:41:31.959+03	
b799e052-2fda-c49a-dfc9-1c740cd5874b	2021-05-28 08:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:41:51.951+03	2021-05-28 08:41:51.958+03	
49a68f36-41b2-a44e-5b2f-b0f5276dc407	2021-05-28 08:42:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:42:11.951+03	2021-05-28 08:42:11.958+03	
26cecb06-c455-733a-b69b-7f73a3f25b7c	2021-05-28 08:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:42:31.951+03	2021-05-28 08:42:31.961+03	
ba25bffc-280f-9aba-16e6-20b297e96626	2021-05-28 08:42:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:42:51.951+03	2021-05-28 08:42:51.958+03	
38e19a57-c9e1-f830-0174-df6c211a03c6	2021-05-28 08:43:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:43:11.951+03	2021-05-28 08:43:11.959+03	
6259ea59-9f95-834e-8f87-ba28b1e0d176	2021-05-28 08:43:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:43:32.951+03	2021-05-28 08:43:32.958+03	
bb9f703f-5873-d38f-087e-8f8079b54be4	2021-05-28 08:43:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:43:52.952+03	2021-05-28 08:43:52.96+03	
b15fd63b-6407-8f67-35b9-2160c39205bf	2021-05-28 08:44:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:44:13.951+03	2021-05-28 08:44:13.959+03	
28deb511-c7b4-efaf-638c-38a0e10b403f	2021-05-28 08:44:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:44:33.951+03	2021-05-28 08:44:33.966+03	
dc4a0d53-2bfd-30cf-d4b1-d81e4e82ccb2	2021-05-28 08:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:44:53.951+03	2021-05-28 08:44:53.958+03	
fd5d7638-81f9-f86c-1f1b-52dcad7f6820	2021-05-28 08:45:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:45:13.951+03	2021-05-28 08:45:13.96+03	
ae1542ba-1ebb-de5c-9d85-b14fdfe2eee7	2021-05-28 08:45:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:45:33.951+03	2021-05-28 08:45:33.959+03	
2e49b5a0-85ec-33bd-dcb6-8e458e7b787b	2021-05-28 08:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:45:53.951+03	2021-05-28 08:45:53.958+03	
ff73f5c9-c5c3-0519-139e-a33ae61f019e	2021-05-28 08:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:46:13.951+03	2021-05-28 08:46:13.958+03	
2458c292-556f-7efe-a453-959e86850996	2021-05-28 08:46:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:46:33.951+03	2021-05-28 08:46:33.958+03	
a2cf2c34-e621-aead-ec31-5550836a4b52	2021-05-28 08:46:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:46:53.951+03	2021-05-28 08:46:53.958+03	
61222e2e-8b64-9a64-98f3-a6904cb6f344	2021-05-28 08:47:13.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:47:13.951+03	2021-05-28 08:47:13.969+03	
5524caf3-8fda-1466-7b4e-d85b46a4b417	2021-05-28 08:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:47:33.951+03	2021-05-28 08:47:33.958+03	
a8655131-3a57-a4ec-4648-6bf28bc97dc8	2021-05-28 08:47:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:47:53.951+03	2021-05-28 08:47:53.958+03	
dca58007-70fb-ccf6-2357-6eb66ade7d95	2021-05-28 08:48:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:48:13.951+03	2021-05-28 08:48:13.96+03	
45903fbc-9afa-4700-f399-cf6562098342	2021-05-28 08:27:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:27:59.951+03	2021-05-28 08:27:59.962+03	
073f9e4a-02cc-8dd6-32c8-7b710cdc7648	2021-05-28 08:28:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:28:19.951+03	2021-05-28 08:28:19.96+03	
4ca71cbd-5f1e-c3e6-ae28-7f926e1cc812	2021-05-28 08:28:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:28:39.951+03	2021-05-28 08:28:39.958+03	
e3967e4d-62f2-b234-c547-3d3226d31e4d	2021-05-28 08:28:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:28:59.951+03	2021-05-28 08:28:59.963+03	
da8ba007-c847-379d-4fad-fd1f3c455a81	2021-05-28 08:29:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:29:19.951+03	2021-05-28 08:29:20.247+03	
1f730f57-75ff-ca34-9836-2f26e59757e8	2021-05-28 08:29:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:29:39.951+03	2021-05-28 08:29:39.958+03	
e0bfec97-cf4c-97c6-a674-14140bf5d082	2021-05-28 08:29:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:29:59.951+03	2021-05-28 08:29:59.96+03	
f46f9fdf-b419-9c7b-5d44-93db541831bc	2021-05-28 08:30:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:30:09.951+03	2021-05-28 08:30:09.958+03	
c2d87725-8d37-12a6-9963-2b853141cf08	2021-05-28 08:30:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:30:29.951+03	2021-05-28 08:30:29.958+03	
48d4405b-6237-15ed-3ed1-d90ee842783a	2021-05-28 08:30:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:30:50.951+03	2021-05-28 08:30:50.958+03	
bd83d0d8-d230-9962-4d7d-428624555668	2021-05-28 08:31:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:31:10.951+03	2021-05-28 08:31:10.96+03	
32251772-6bf6-9a12-787b-e6e27cb56af4	2021-05-28 08:31:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:31:30.951+03	2021-05-28 08:31:30.959+03	
0dc2b77f-91fa-2a90-b0b5-c03f1eded298	2021-05-28 08:31:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:31:50.951+03	2021-05-28 08:31:50.959+03	
478080cd-ecff-81c9-39bc-54a680427ac1	2021-05-28 08:32:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:32:10.951+03	2021-05-28 08:32:10.958+03	
d12ca2ce-4839-ba6f-8c3f-28f18f91d7fd	2021-05-28 08:32:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:32:30.951+03	2021-05-28 08:32:30.959+03	
417563fd-cd0c-f5e6-d0b2-d9357bf4a1b4	2021-05-28 08:32:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:32:50.951+03	2021-05-28 08:32:50.958+03	
fa993a6e-4d80-6448-3ada-cd6a0df847ce	2021-05-28 08:33:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:33:10.951+03	2021-05-28 08:33:10.962+03	
a351763a-fff3-3bf3-48b7-78b8d3e3d920	2021-05-28 08:33:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:33:30.951+03	2021-05-28 08:33:30.958+03	
bf5ac0d1-3bd0-f4ad-1b60-147641b50298	2021-05-28 08:33:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:33:50.951+03	2021-05-28 08:33:50.959+03	
326c22e1-3c0f-c0aa-498b-a33ac9596855	2021-05-28 08:34:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:34:10.951+03	2021-05-28 08:34:10.959+03	
1beff100-532a-7d66-224b-776ccfcb57bf	2021-05-28 08:34:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:34:30.951+03	2021-05-28 08:34:30.966+03	
9463d78f-2d48-412b-d197-f4796b164957	2021-05-28 08:34:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:34:50.951+03	2021-05-28 08:34:50.958+03	
f32c35f8-1a52-62b1-a729-8b8087147469	2021-05-28 08:35:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:35:10.951+03	2021-05-28 08:35:10.959+03	
9922c029-6580-2a74-1c6b-70a0d09be8d5	2021-05-28 08:35:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:35:30.951+03	2021-05-28 08:35:30.959+03	
da272df9-3749-cc67-c755-16b6391baa17	2021-05-28 08:35:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:35:50.951+03	2021-05-28 08:35:50.958+03	
0cb362fa-9f87-6961-7181-eb9163814b6b	2021-05-28 08:36:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:36:10.951+03	2021-05-28 08:36:10.959+03	
0d0c01fe-d731-15eb-1305-bdfd72ecdb77	2021-05-28 08:36:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:36:30.951+03	2021-05-28 08:36:30.96+03	
225d9ec1-2c73-2070-3980-aab72b6d2e02	2021-05-28 08:36:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:36:50.951+03	2021-05-28 08:36:50.959+03	
bfd92ed4-0b81-c1fc-4a47-79e44a5a4b95	2021-05-28 08:37:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:37:11.951+03	2021-05-28 08:37:11.96+03	
8b6676fa-87a0-4b64-a4b7-e9e2aa9e330b	2021-05-28 08:37:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:37:31.951+03	2021-05-28 08:37:31.957+03	
2b57f415-a499-be61-dfca-d30121961b6b	2021-05-28 08:37:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:37:51.951+03	2021-05-28 08:37:51.959+03	
934eca65-7136-ae70-8995-ae5c598dd0b5	2021-05-28 08:38:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:38:11.951+03	2021-05-28 08:38:11.96+03	
2b61f38e-557a-c178-a1d7-939944546618	2021-05-28 08:38:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:38:31.951+03	2021-05-28 08:38:31.959+03	
23bd92ac-0fd0-d0d2-561e-36c7fa07c92b	2021-05-28 08:38:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:38:51.951+03	2021-05-28 08:38:51.958+03	
6bf6fc37-df29-430a-8a13-a7200640770a	2021-05-28 08:39:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:39:11.951+03	2021-05-28 08:39:11.958+03	
168e5d44-5c2b-bba2-fac9-487659702931	2021-05-28 08:39:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:39:31.951+03	2021-05-28 08:39:31.958+03	
3d430646-e0a0-845f-d67b-24d2c3e79459	2021-05-28 08:39:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:39:51.951+03	2021-05-28 08:39:51.957+03	
4bd0e2ec-46b7-b112-9e21-91a58b071a30	2021-05-28 08:40:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:40:01.951+03	2021-05-28 08:40:01.961+03	
679fbedd-3b06-640c-efa6-4deedeeecb07	2021-05-28 08:40:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:40:21.951+03	2021-05-28 08:40:21.959+03	
a8cf162d-5be9-c40d-2c60-ad9be2aed2bc	2021-05-28 08:40:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:40:41.951+03	2021-05-28 08:40:41.959+03	
e8b02df7-db41-38af-1f87-f86d69133bfc	2021-05-28 08:41:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:41:01.951+03	2021-05-28 08:41:01.959+03	
423b086b-e26d-46a3-ad7d-c7c7f4bab866	2021-05-28 08:41:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:41:21.951+03	2021-05-28 08:41:21.958+03	
145567bd-43dd-1dc6-557a-a30ec6528c50	2021-05-28 08:41:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:41:41.951+03	2021-05-28 08:41:41.959+03	
39c6234a-4653-246a-f6d9-ab4caa66ec69	2021-05-28 08:42:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:42:01.951+03	2021-05-28 08:42:02.194+03	
76de4491-5b14-cf7f-24a1-b38cb736b2b4	2021-05-28 08:42:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:42:21.951+03	2021-05-28 08:42:21.958+03	
9b6cc6de-7357-30f7-8018-8c2f4edc22d0	2021-05-28 08:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:42:41.951+03	2021-05-28 08:42:41.958+03	
db1b3705-4dac-eaed-284f-a54ff9106103	2021-05-28 08:43:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:43:01.951+03	2021-05-28 08:43:01.958+03	
3d72d5b5-77c9-31a2-b5b1-582185da3e44	2021-05-28 08:43:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:43:21.952+03	2021-05-28 08:43:21.959+03	
1296fe0f-e925-06fa-a935-470582982803	2021-05-28 08:43:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:43:42.951+03	2021-05-28 08:43:42.96+03	
7fb1ba22-0e18-d8bd-7c83-ebba0db0d759	2021-05-28 08:44:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:44:03.951+03	2021-05-28 08:44:03.959+03	
7530c93b-1d8d-a11d-3dc8-10ef2e708c41	2021-05-28 08:44:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:44:23.951+03	2021-05-28 08:44:23.958+03	
0e2e9f15-cb85-3178-74a8-bfae82dd0eb2	2021-05-28 08:44:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:44:43.951+03	2021-05-28 08:44:43.958+03	
5ecb6fa8-c638-8471-7726-146570fae2eb	2021-05-28 08:45:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:45:03.951+03	2021-05-28 08:45:03.959+03	
b98c4695-5205-3fd2-cd3b-20aa325117ac	2021-05-28 08:45:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:45:23.951+03	2021-05-28 08:45:23.96+03	
c4298a1c-5eca-98d5-822a-935c793786b5	2021-05-28 08:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:45:43.951+03	2021-05-28 08:45:43.96+03	
ec45e7a9-c4c4-fa9d-7306-3a7fde29ef0f	2021-05-28 08:46:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:46:03.951+03	2021-05-28 08:46:03.958+03	
f16bbc5e-8952-82d8-7853-80dbb5119367	2021-05-28 08:46:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:46:23.951+03	2021-05-28 08:46:23.959+03	
2403dd70-1f2f-0736-47df-36aeb9542e36	2021-05-28 08:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:46:43.951+03	2021-05-28 08:46:43.958+03	
44e606c3-a275-0143-03a4-546119044b00	2021-05-28 08:47:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:47:03.951+03	2021-05-28 08:47:03.959+03	
b91c4bff-b739-6693-c979-c56451dc0a51	2021-05-28 08:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:47:23.951+03	2021-05-28 08:47:23.959+03	
50518af1-7e59-488b-b292-f73288f70b3a	2021-05-28 08:47:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:47:43.951+03	2021-05-28 08:47:43.959+03	
6723ec0d-de4c-7b43-e8b2-0dcd4209ae80	2021-05-28 08:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:48:03.951+03	2021-05-28 08:48:03.96+03	
9d226a13-c4c7-f5c6-59dd-5ebf06f10564	2021-05-28 08:48:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:48:23.951+03	2021-05-28 08:48:23.959+03	
1876c039-d073-c8e2-6c70-979a910050ed	2021-05-28 08:48:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:48:33.951+03	2021-05-28 08:48:33.958+03	
428e31bd-abad-9bdc-6485-5cacb8d1944e	2021-05-28 08:48:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:48:53.951+03	2021-05-28 08:48:53.958+03	
c9f1f6db-d50e-4db9-487f-6e985b38d2b2	2021-05-28 08:49:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:49:13.951+03	2021-05-28 08:49:13.958+03	
955e36ab-0d2a-780e-b01e-8dbb208370be	2021-05-28 08:49:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:49:33.951+03	2021-05-28 08:49:33.958+03	
124a4da1-5f98-fd82-6af8-2c4dafce486e	2021-05-28 08:49:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:49:53.951+03	2021-05-28 08:49:53.959+03	
c7eee716-dd5e-5d57-6d89-8c65d54604b7	2021-05-28 08:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:50:03.951+03	2021-05-28 08:50:03.96+03	
058a85cd-e4dd-0d94-3033-1968f0a66788	2021-05-28 08:50:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:50:23.951+03	2021-05-28 08:50:23.96+03	
7c27e3a9-2693-f7c3-06a0-743fd97ea929	2021-05-28 08:50:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:50:43.951+03	2021-05-28 08:50:43.958+03	
f9282d0e-e01b-8e71-5778-935bf2bba86b	2021-05-28 08:51:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:51:03.951+03	2021-05-28 08:51:03.957+03	
50734e78-fb6d-35f9-0f3f-0e4676398b03	2021-05-28 08:51:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:51:24.951+03	2021-05-28 08:51:24.958+03	
b1b2528f-8222-df60-2ea4-e62b0c32ef44	2021-05-28 08:51:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:51:44.951+03	2021-05-28 08:51:44.958+03	
f4c03aae-e0fd-fbed-a89d-2c75c463cf58	2021-05-28 08:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:52:04.951+03	2021-05-28 08:52:04.959+03	
35505921-7e4b-b444-0f84-697423d59895	2021-05-28 08:52:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:52:25.951+03	2021-05-28 08:52:25.959+03	
1a6bf9a0-50df-dc12-de3e-ca59f049e041	2021-05-28 08:52:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:52:45.951+03	2021-05-28 08:52:45.958+03	
d5581319-c575-52e0-46b6-c543b56ab061	2021-05-28 08:53:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:53:05.951+03	2021-05-28 08:53:05.958+03	
c48d3c2a-7d04-7f26-36ae-85f8fae8f094	2021-05-28 08:53:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:53:25.951+03	2021-05-28 08:53:26.011+03	
8b76d95f-5f86-8ac5-db30-2410d7c266f7	2021-05-28 08:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:53:45.951+03	2021-05-28 08:53:45.958+03	
06d7c309-ae55-3f4a-3a2c-26eba25b338d	2021-05-28 08:54:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:54:05.952+03	2021-05-28 08:54:05.959+03	
e8a8bb13-2ac7-5ad4-c83d-9c594694116b	2021-05-28 08:54:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:54:26.951+03	2021-05-28 08:54:26.958+03	
5aa8e130-4c41-faeb-384a-b9148c451c83	2021-05-28 08:54:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:54:46.951+03	2021-05-28 08:54:46.958+03	
1f05e4a2-58ba-c052-1ed5-d934f3f72bf0	2021-05-28 08:55:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:55:07.953+03	2021-05-28 08:55:07.96+03	
391ab103-ed61-0687-1a49-350765ec5ef1	2021-05-28 08:55:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:55:28.951+03	2021-05-28 08:55:28.959+03	
f1b3f27e-282c-3191-8721-724625f70d87	2021-05-28 08:55:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:55:48.951+03	2021-05-28 08:55:48.959+03	
7aa8b662-2af2-ed77-8a8e-8e7a913b7c09	2021-05-28 08:56:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:56:09.951+03	2021-05-28 08:56:09.959+03	
63b0772f-e87f-3b92-b75a-064fac503bdb	2021-05-28 08:56:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:56:29.951+03	2021-05-28 08:56:29.959+03	
1f70b74c-c822-951f-49a1-c4309939275e	2021-05-28 08:56:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:56:49.951+03	2021-05-28 08:56:49.958+03	
67505f33-a5ae-dcf4-a53b-3a6acccf2567	2021-05-28 08:57:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:57:09.951+03	2021-05-28 08:57:09.96+03	
2fe7b94c-db44-a4b5-067f-e9b34ef29159	2021-05-28 08:57:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:57:29.951+03	2021-05-28 08:57:29.957+03	
4e71d17e-f8a6-ffd7-6269-eaf688b85f12	2021-05-28 08:57:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:57:49.951+03	2021-05-28 08:57:49.967+03	
d64961b0-b2d9-932d-3d63-b4ca9d3ecb80	2021-05-28 08:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:58:09.951+03	2021-05-28 08:58:09.959+03	
11a83cf2-60d9-1b61-9da2-6e9286cdaeb3	2021-05-28 08:58:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:58:29.951+03	2021-05-28 08:58:29.958+03	
a21fa3ad-cd4f-c8a0-50f8-2b1f2ccc5e9d	2021-05-28 08:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:58:49.951+03	2021-05-28 08:58:49.959+03	
d760a7f1-98af-5ce2-1eb4-38888651a53a	2021-05-28 08:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:59:09.951+03	2021-05-28 08:59:09.959+03	
dffdd735-89df-47f8-e624-717a19fc4a86	2021-05-28 08:59:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:59:29.951+03	2021-05-28 08:59:29.958+03	
cb6b2446-6676-8173-89c7-d0ccf0cb3b08	2021-05-28 08:59:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:59:49.951+03	2021-05-28 08:59:49.958+03	
9dc6d77a-b750-339a-a320-f9caa16aa502	2021-05-28 09:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 09:00:00.952+03	2021-05-28 09:00:00.957+03	ERROR
f9bd7210-cd23-cf59-5ffd-440d28deac42	2021-05-28 09:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:00:19.951+03	2021-05-28 09:00:19.96+03	
3f63011d-08e6-1e3d-ca5e-8e2812b8aa29	2021-05-28 09:00:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:00:39.951+03	2021-05-28 09:00:39.958+03	
be48adc4-52af-b781-9337-b48e19fbc801	2021-05-28 09:00:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:00:59.951+03	2021-05-28 09:00:59.958+03	
9ec54045-9c8d-baae-d8ec-becce436c480	2021-05-28 09:01:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:01:19.951+03	2021-05-28 09:01:19.959+03	
f598d329-0260-013b-c19a-59d5507bcfc4	2021-05-28 09:01:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:01:39.951+03	2021-05-28 09:01:39.958+03	
f6f70b25-7907-ae8b-6f5d-74cc639b6634	2021-05-28 09:01:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:01:59.951+03	2021-05-28 09:01:59.958+03	
86c61e94-fb10-e869-78f6-bb0ad3842de1	2021-05-28 09:02:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:02:19.951+03	2021-05-28 09:02:19.958+03	
26d50888-8966-d51a-ff8c-0a8dfc011098	2021-05-28 09:02:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:02:39.951+03	2021-05-28 09:02:39.961+03	
b482c149-debc-379d-ee84-ba0ad6959177	2021-05-28 09:02:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:02:59.951+03	2021-05-28 09:02:59.96+03	
9955da4c-783f-1eed-d2f8-962d98d539e2	2021-05-28 09:03:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:03:19.951+03	2021-05-28 09:03:19.959+03	
472c67f4-b4c7-cc64-e467-712773bc9b95	2021-05-28 09:03:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:03:39.951+03	2021-05-28 09:03:39.969+03	
ad719c53-72dc-c8fa-5649-1e0d800ed2d7	2021-05-28 09:03:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:03:59.951+03	2021-05-28 09:03:59.958+03	
4e609b36-f308-28fe-cfe0-6f4aad70e528	2021-05-28 09:04:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:04:19.951+03	2021-05-28 09:04:19.959+03	
52447c21-16ef-9e9b-c862-53bb7052de84	2021-05-28 09:04:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:04:39.951+03	2021-05-28 09:04:39.958+03	
8a5da0ec-7378-35bf-3024-c73621ddbf3b	2021-05-28 09:04:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:04:59.951+03	2021-05-28 09:04:59.958+03	
a4562b18-0a14-1430-7122-b30c3884cac1	2021-05-28 09:05:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:05:19.951+03	2021-05-28 09:05:19.958+03	
691a0c9d-5e5e-87a7-cc7f-4fc09b56140d	2021-05-28 09:05:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:05:39.951+03	2021-05-28 09:05:39.957+03	
9bc41dfb-125b-2257-1fc6-a9fb41c69345	2021-05-28 09:05:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:05:59.951+03	2021-05-28 09:05:59.958+03	
a4148186-c896-b1d3-c84f-902341f867dd	2021-05-28 09:06:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:06:19.951+03	2021-05-28 09:06:19.958+03	
16a3f3e8-cad8-68c1-6fd6-181da08a852c	2021-05-28 09:06:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:06:40.951+03	2021-05-28 09:06:40.958+03	
942fdb5e-8a9e-69b1-2736-32a054bd43ee	2021-05-28 09:07:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:07:00.951+03	2021-05-28 09:07:00.958+03	
7967413d-050e-7127-1cb0-03ead77626ae	2021-05-28 09:07:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:07:20.951+03	2021-05-28 09:07:20.958+03	
420b0a5a-2721-ea85-ca33-5d536eb6769b	2021-05-28 09:07:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:07:40.951+03	2021-05-28 09:07:40.958+03	
34010562-234e-8a96-c8a3-22f8174dd713	2021-05-28 09:08:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:08:00.951+03	2021-05-28 09:08:00.963+03	
c65d6142-e465-44f1-dc7e-99efc7db8c40	2021-05-28 09:08:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:08:20.951+03	2021-05-28 09:08:20.957+03	
0837e742-6f73-1923-1f8e-49dfa284aa78	2021-05-28 09:08:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:08:40.951+03	2021-05-28 09:08:40.959+03	
8961b49d-c8a6-a2d7-652b-48f35b988ff4	2021-05-28 09:09:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:09:00.951+03	2021-05-28 09:09:00.959+03	
106e1ce6-1a24-6d00-1702-819ec30f2e8e	2021-05-28 08:48:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:48:43.951+03	2021-05-28 08:48:43.961+03	
d0a5e413-7117-1e0a-eeda-62aab858649b	2021-05-28 08:49:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:49:03.951+03	2021-05-28 08:49:03.957+03	
94b5c50b-ae6c-1bf0-ff53-630fa7be0d84	2021-05-28 08:49:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:49:23.951+03	2021-05-28 08:49:23.958+03	
4fbc2d97-d7e5-1172-3f60-cc8a0f316328	2021-05-28 08:49:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:49:43.951+03	2021-05-28 08:49:43.959+03	
14c7de54-ece5-6e03-a0b0-34a31513ad8b	2021-05-28 08:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 08:50:00.951+03	2021-05-28 08:50:00.956+03	ERROR
192f93b6-ee3b-1946-ca79-20181edb0b91	2021-05-28 08:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:50:13.951+03	2021-05-28 08:50:13.958+03	
ed0e5d92-7715-7016-22c0-f6882933ef53	2021-05-28 08:50:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:50:33.951+03	2021-05-28 08:50:33.958+03	
1fd4bf2f-a443-08c9-c3ea-bba6f4f8d3d3	2021-05-28 08:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:50:53.951+03	2021-05-28 08:50:53.959+03	
dfbb9ac3-8a9e-88b7-1388-df5957c218ff	2021-05-28 08:51:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:51:13.952+03	2021-05-28 08:51:13.959+03	
671eb7b4-5b25-0fc6-3261-c1c0c93d996e	2021-05-28 08:51:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:51:34.951+03	2021-05-28 08:51:34.958+03	
0a659a2d-0dd7-5efc-923b-8b26d2b3d70e	2021-05-28 08:51:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:51:54.951+03	2021-05-28 08:51:54.958+03	
07fa6610-24d9-9542-922b-dd8a8363d2a5	2021-05-28 08:52:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:52:14.952+03	2021-05-28 08:52:14.96+03	
51bf714a-24cf-8f64-1ec6-a15cc0631172	2021-05-28 08:52:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:52:35.951+03	2021-05-28 08:52:35.958+03	
7a12daa0-a011-c7d6-f7e1-94a8c4f9aabd	2021-05-28 08:52:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:52:55.951+03	2021-05-28 08:52:56.272+03	
8403d951-d846-bae1-608b-5341cf5485e1	2021-05-28 08:53:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:53:15.951+03	2021-05-28 08:53:15.958+03	
9d869d86-8c51-b1b9-db7b-c324629bb7df	2021-05-28 08:53:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:53:35.951+03	2021-05-28 08:53:35.972+03	
d6adaa69-f39b-43f0-0ecb-4a6c96254a65	2021-05-28 08:53:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:53:55.951+03	2021-05-28 08:53:55.958+03	
4851c418-c952-f2f8-4eab-b2175218a054	2021-05-28 08:54:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:54:16.951+03	2021-05-28 08:54:16.958+03	
3645d49c-28e3-8cf9-703b-648350aec4f4	2021-05-28 08:54:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:54:36.951+03	2021-05-28 08:54:36.958+03	
d41b583b-c263-6914-7b0d-fdc900d5cb35	2021-05-28 08:54:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:54:56.952+03	2021-05-28 08:54:56.958+03	
f686c4f4-8984-4cce-c22d-f0a9445295f4	2021-05-28 08:55:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:55:18.951+03	2021-05-28 08:55:18.959+03	
f2e99d0e-1bff-05eb-5548-62ecd1cae804	2021-05-28 08:55:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:55:38.951+03	2021-05-28 08:55:38.959+03	
9db40fc7-648f-9642-e5b3-c0f4fb663825	2021-05-28 08:55:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:55:58.952+03	2021-05-28 08:55:58.958+03	
158b93bf-ae14-122e-898b-56a0d09f1ac3	2021-05-28 08:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:56:19.951+03	2021-05-28 08:56:19.958+03	
8d39b5d3-5f79-2a92-ce7e-2d7fb46ed4cb	2021-05-28 08:56:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:56:39.951+03	2021-05-28 08:56:39.966+03	
e7ac606f-427f-f796-767f-4391a77ef533	2021-05-28 08:56:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:56:59.951+03	2021-05-28 08:56:59.958+03	
89697f87-1943-c9e2-f23e-fe8cb13d17a3	2021-05-28 08:57:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:57:19.951+03	2021-05-28 08:57:19.96+03	
e3207472-c124-4ca9-e8df-290cd1415776	2021-05-28 08:57:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:57:39.951+03	2021-05-28 08:57:39.958+03	
3211217d-ca0c-e8a4-4cd7-6c3166b840c2	2021-05-28 08:57:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:57:59.951+03	2021-05-28 08:57:59.959+03	
ba1e57cd-b747-1e05-111a-8a33d759db90	2021-05-28 08:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:58:19.951+03	2021-05-28 08:58:19.959+03	
c30e65f2-abb5-fc7c-fa9b-f74d7ed64a42	2021-05-28 08:58:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:58:39.951+03	2021-05-28 08:58:39.959+03	
49a78dec-f3d6-4793-cc2d-53ce534fabb2	2021-05-28 08:58:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:58:59.951+03	2021-05-28 08:58:59.958+03	
ea88b30a-673f-8e30-2ead-14deadc36153	2021-05-28 08:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:59:19.951+03	2021-05-28 08:59:19.959+03	
4a55baa2-5500-d9b5-be27-10cb92109d98	2021-05-28 08:59:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:59:39.951+03	2021-05-28 08:59:39.958+03	
5cdd3568-f54f-2d5b-0411-a73c0ad45561	2021-05-28 08:59:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 08:59:59.951+03	2021-05-28 08:59:59.959+03	
2f62adb9-2d0b-d6f4-eaa6-8ee35ae36375	2021-05-28 09:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:00:09.951+03	2021-05-28 09:00:09.958+03	
c21c4dd5-f57a-8cfa-6bd0-bc93316378c8	2021-05-28 09:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:00:29.951+03	2021-05-28 09:00:29.958+03	
faf6cf48-b98a-41ed-f9c2-5385ad151613	2021-05-28 09:00:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:00:49.951+03	2021-05-28 09:00:49.959+03	
9adb2f75-4a2b-9af4-f98d-f9909dcea0df	2021-05-28 09:01:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:01:09.951+03	2021-05-28 09:01:09.959+03	
37cd996e-16e6-2629-103d-f52a571b8fa0	2021-05-28 09:01:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:01:29.951+03	2021-05-28 09:01:29.958+03	
aa20c738-3ba8-19d9-108b-038fc4729701	2021-05-28 09:01:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:01:49.951+03	2021-05-28 09:01:49.958+03	
339c9078-8fa9-22a8-fab4-29980f6eeb15	2021-05-28 09:02:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:02:09.951+03	2021-05-28 09:02:09.959+03	
823362a2-a395-3953-cec4-90faf12b5300	2021-05-28 09:02:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:02:29.951+03	2021-05-28 09:02:29.959+03	
16257045-0ab8-04d7-eb8f-e689574aa24a	2021-05-28 09:02:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:02:49.951+03	2021-05-28 09:02:49.959+03	
e0cf6a24-787d-3f13-9e66-7b85b430ea9f	2021-05-28 09:03:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:03:09.951+03	2021-05-28 09:03:09.957+03	
435bb329-ca5f-9952-f95d-d830beb722d3	2021-05-28 09:03:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:03:29.951+03	2021-05-28 09:03:29.962+03	
7dd66b05-ec73-5e12-8b93-cad10f53936f	2021-05-28 09:03:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:03:49.951+03	2021-05-28 09:03:49.958+03	
371c7fe8-2be2-6b69-5923-349369d357fe	2021-05-28 09:04:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:04:09.951+03	2021-05-28 09:04:09.966+03	
4093ae71-1eb2-6049-ece4-aa33a49d0f94	2021-05-28 09:04:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:04:29.951+03	2021-05-28 09:04:29.958+03	
1fa16984-590a-d6b5-c82d-0cfeda2f886c	2021-05-28 09:04:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:04:49.951+03	2021-05-28 09:04:49.962+03	
c875a5ff-dbec-0c17-e5a0-51db054078e9	2021-05-28 09:05:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:05:09.951+03	2021-05-28 09:05:09.959+03	
297dcb7f-8ec4-1cbc-8940-b4ee41407a2d	2021-05-28 09:05:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:05:29.951+03	2021-05-28 09:05:29.959+03	
1caa3e4d-f753-e5ba-40e2-ad6360942aea	2021-05-28 09:05:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:05:49.951+03	2021-05-28 09:05:49.958+03	
36fb3ca4-794e-1dd3-928c-769844ffdb46	2021-05-28 09:06:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:06:09.951+03	2021-05-28 09:06:09.958+03	
0fcd82df-6779-7a38-e522-56e546ed2d09	2021-05-28 09:06:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:06:29.952+03	2021-05-28 09:06:29.959+03	
240fc9cb-9dcd-fb19-e269-702e663a9cc2	2021-05-28 09:06:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:06:50.951+03	2021-05-28 09:06:50.96+03	
c92214b9-7276-3d18-3c02-25cdd36ec14d	2021-05-28 09:07:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:07:10.951+03	2021-05-28 09:07:10.959+03	
ed18507d-4329-c0b6-edee-f0e743950347	2021-05-28 09:07:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:07:30.951+03	2021-05-28 09:07:30.958+03	
5d3b62ad-3236-7d4e-36e6-52c4f844840e	2021-05-28 09:07:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:07:50.951+03	2021-05-28 09:07:50.963+03	
690f6ed9-36f9-b503-c5b4-ba4cc2415b8a	2021-05-28 09:08:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:08:10.951+03	2021-05-28 09:08:10.959+03	
0caaf344-d503-8ba4-4aee-6630832a723b	2021-05-28 09:08:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:08:30.951+03	2021-05-28 09:08:30.958+03	
88851206-c20e-c642-96d2-64a41436f6fb	2021-05-28 09:08:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:08:50.951+03	2021-05-28 09:08:50.958+03	
46259005-ad19-56cc-d3b5-21dc6ad9e968	2021-05-28 09:09:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:09:10.951+03	2021-05-28 09:09:10.958+03	
d71e1238-ee97-786b-13c2-eb8642430870	2021-05-28 09:09:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:09:20.951+03	2021-05-28 09:09:20.959+03	
7a3352b5-bffd-31c0-defb-5cadd40989ca	2021-05-28 09:09:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:09:40.951+03	2021-05-28 09:09:40.957+03	
b5305902-3629-bff9-a3ac-f9317cecb04f	2021-05-28 09:10:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 09:10:00.951+03	2021-05-28 09:10:00.957+03	ERROR
665ce49e-a414-8c87-5a72-158f04e8b742	2021-05-28 09:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:10:20.951+03	2021-05-28 09:10:20.958+03	
5315ca09-5c1a-3d2f-5bdd-1d3357102eb5	2021-05-28 09:10:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:10:40.951+03	2021-05-28 09:10:40.962+03	
0f0022df-9388-c9ed-c07a-7491815ae8aa	2021-05-28 09:11:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:11:00.951+03	2021-05-28 09:11:00.958+03	
57142482-a5ac-b101-a819-948926d8889b	2021-05-28 09:11:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:11:20.951+03	2021-05-28 09:11:20.959+03	
4207ac09-3a2b-1ffa-910d-04f550871368	2021-05-28 09:11:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:11:40.951+03	2021-05-28 09:11:40.958+03	
69343fb3-d19b-c9cb-fadc-53db38f3837d	2021-05-28 09:12:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:12:00.951+03	2021-05-28 09:12:00.957+03	
fe571be2-509b-486f-8a0d-7b607c5602de	2021-05-28 09:12:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:12:21.951+03	2021-05-28 09:12:21.958+03	
0072be8e-1dd4-9e22-4e38-b5d28dfe5843	2021-05-28 09:12:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:12:41.951+03	2021-05-28 09:12:41.958+03	
f2c93e89-2314-75ac-a92e-80b523f58451	2021-05-28 09:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:13:01.951+03	2021-05-28 09:13:01.958+03	
69048001-86b7-0c6f-84c3-ddcc63925ce5	2021-05-28 09:13:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:13:21.951+03	2021-05-28 09:13:21.958+03	
aa7231f8-3a0c-3f76-1836-ef997b5a8ba9	2021-05-28 09:13:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:13:42.951+03	2021-05-28 09:13:42.958+03	
1574869b-1b05-0e31-e0c7-85f42e33b69c	2021-05-28 09:14:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:14:02.951+03	2021-05-28 09:14:02.959+03	
35a39437-888d-3110-32cb-a1e033cbf522	2021-05-28 09:14:22.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:14:22.954+03	2021-05-28 09:14:23.005+03	
fe462780-bb93-d048-63e1-638551f71b6f	2021-05-28 09:14:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:14:43.951+03	2021-05-28 09:14:43.959+03	
dc45c237-2bd8-4de5-c661-f749d843a9b2	2021-05-28 09:15:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:15:03.951+03	2021-05-28 09:15:03.958+03	
2e5986fe-823f-7156-8453-212a8b2e5d80	2021-05-28 09:15:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:15:23.951+03	2021-05-28 09:15:23.957+03	
7596b695-3e1d-dfbb-2b90-8a5e60e30825	2021-05-28 09:15:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:15:43.951+03	2021-05-28 09:15:43.958+03	
ea949d36-eaac-0140-3608-454ed6ab1c80	2021-05-28 09:16:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:16:03.951+03	2021-05-28 09:16:03.958+03	
bc2e6e83-e88f-a69e-9c7d-d24a30a632ef	2021-05-28 09:16:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:16:23.951+03	2021-05-28 09:16:23.96+03	
4922d462-85da-1a3e-b794-008ccf0b9967	2021-05-28 09:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:16:43.951+03	2021-05-28 09:16:43.96+03	
8a11faa3-8b52-ac78-cb5a-ef702667a5cd	2021-05-28 09:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:17:03.951+03	2021-05-28 09:17:03.958+03	
381d1779-72e5-f495-f28e-80d8abf577b8	2021-05-28 09:17:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:17:23.951+03	2021-05-28 09:17:23.958+03	
2a60742a-78db-1af2-bcd8-db9ce118610a	2021-05-28 09:17:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:17:43.951+03	2021-05-28 09:17:43.958+03	
22fddc88-27d1-5bf7-04d8-369d85a2066f	2021-05-28 09:18:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:18:03.952+03	2021-05-28 09:18:03.959+03	
0020e246-6430-fd1b-824e-bfe787b9adb1	2021-05-28 09:18:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:18:24.951+03	2021-05-28 09:18:24.958+03	
cb579f52-f420-8f3e-476a-c7a30b5d594e	2021-05-28 09:18:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:18:44.951+03	2021-05-28 09:18:44.958+03	
412f36e7-3bae-9b05-e9b7-b367d98823e1	2021-05-28 09:19:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:19:04.951+03	2021-05-28 09:19:04.959+03	
ef880d21-1e8c-9297-743f-3d407b4b0ca7	2021-05-28 09:19:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:19:24.951+03	2021-05-28 09:19:24.959+03	
9a857316-bde2-0b21-4bf6-30da1806c99a	2021-05-28 09:19:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:19:44.951+03	2021-05-28 09:19:44.958+03	
7d6fc9ea-1b37-7790-8375-1bb9a17c43d7	2021-05-28 09:20:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 09:20:00.951+03	2021-05-28 09:20:00.956+03	ERROR
af3d753b-67d9-3104-3ae5-b6ed199d4e17	2021-05-28 09:20:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:20:15.951+03	2021-05-28 09:20:15.958+03	
7d17bcca-3b15-406d-1143-1c6063c21b7b	2021-05-28 09:20:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:20:35.951+03	2021-05-28 09:20:35.958+03	
2889d0df-91b3-180d-8955-503529220674	2021-05-28 09:20:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:20:55.951+03	2021-05-28 09:20:55.958+03	
e5a2c175-deed-5459-8b4d-1c5d3720cd2e	2021-05-28 09:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:21:15.951+03	2021-05-28 09:21:15.96+03	
fe8d6937-f470-7c5d-ae6a-fc5d712e2bf0	2021-05-28 09:21:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:21:36.951+03	2021-05-28 09:21:36.958+03	
08de39ed-cc4f-0f56-f01e-cd6ab7f07ef3	2021-05-28 09:21:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:21:56.951+03	2021-05-28 09:21:56.961+03	
8f0ee94a-9068-8d6d-b648-c48a3a7caf0a	2021-05-28 09:22:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:22:16.951+03	2021-05-28 09:22:16.957+03	
cb0c7274-756d-1ffa-a45a-49d1dab2795d	2021-05-28 09:22:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:22:36.951+03	2021-05-28 09:22:36.958+03	
383ba060-6cd4-cc78-e9eb-0f79aa3c7acf	2021-05-28 09:22:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:22:56.951+03	2021-05-28 09:22:56.958+03	
9b42ddb5-eff8-2dc5-36b9-3e54067e1f8e	2021-05-28 09:23:16.963	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:23:16.962+03	2021-05-28 09:23:16.971+03	
b925b08c-872c-be28-596b-426259c67dbd	2021-05-28 09:23:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:23:37.951+03	2021-05-28 09:23:37.959+03	
c8e16d5c-a37a-6846-50db-731a06674998	2021-05-28 09:23:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:23:57.952+03	2021-05-28 09:23:57.959+03	
f52590b9-4b21-ae3f-3c2c-af35a18b38c3	2021-05-28 09:24:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:24:18.951+03	2021-05-28 09:24:18.959+03	
090ff844-47ef-29d5-e676-58660543c624	2021-05-28 09:24:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:24:38.951+03	2021-05-28 09:24:38.958+03	
9060ae89-5f62-efe1-a2a2-7641159c5933	2021-05-28 09:24:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:24:58.952+03	2021-05-28 09:24:58.96+03	
0dbe2e0a-3a46-f9ba-9218-d808c86209e7	2021-05-28 09:25:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:25:19.951+03	2021-05-28 09:25:19.959+03	
c2573274-785e-668b-310e-87e99b6657df	2021-05-28 09:25:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:25:39.951+03	2021-05-28 09:25:39.958+03	
1b2cb712-2037-9c79-ff98-ad22fd95848e	2021-05-28 09:25:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:25:59.951+03	2021-05-28 09:25:59.957+03	
89acf565-f65f-96f9-2ca5-bb873a684ec9	2021-05-28 09:26:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:26:19.951+03	2021-05-28 09:26:19.967+03	
938d2d40-7158-b8c2-869a-d00a49211a86	2021-05-28 09:26:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:26:39.951+03	2021-05-28 09:26:39.958+03	
e40d2259-eca7-701a-4586-cca440728685	2021-05-28 09:26:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:26:59.951+03	2021-05-28 09:26:59.959+03	
8014695d-e45a-ec59-674a-82da8820da9a	2021-05-28 09:27:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:27:19.952+03	2021-05-28 09:27:19.961+03	
f95d09ea-8ac0-6429-729d-cbea06a68b80	2021-05-28 09:27:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:27:40.951+03	2021-05-28 09:27:40.958+03	
cd510861-dfe5-bb63-6fd4-e0aa6d75f0c6	2021-05-28 09:28:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:28:00.951+03	2021-05-28 09:28:00.958+03	
41192b87-39e7-c27b-0010-8922cc90e191	2021-05-28 09:28:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:28:20.951+03	2021-05-28 09:28:20.959+03	
84c84b5b-d334-3b11-f3dd-ec97795ba2ac	2021-05-28 09:28:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:28:40.951+03	2021-05-28 09:28:40.962+03	
77ebc28a-179f-5602-0b3f-9b5a547d7685	2021-05-28 09:29:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:29:00.951+03	2021-05-28 09:29:00.958+03	
c3ab3ac1-4995-166c-7d65-011dd41de235	2021-05-28 09:29:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:29:20.951+03	2021-05-28 09:29:20.959+03	
af1c6bf7-7cde-63ca-e8f0-d75185688195	2021-05-28 09:29:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:29:40.951+03	2021-05-28 09:29:40.96+03	
9e5921a0-94f3-6bca-3d19-571ae2f8760c	2021-05-28 09:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 09:30:00.951+03	2021-05-28 09:30:00.956+03	ERROR
b41283b4-dbbf-0ace-239b-157c6b329c82	2021-05-28 09:09:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:09:30.951+03	2021-05-28 09:09:30.959+03	
832d2f9c-db8d-9a45-30bf-0e26e54a5526	2021-05-28 09:09:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:09:50.951+03	2021-05-28 09:09:50.959+03	
4df60257-0ef9-5988-d802-2ad7ca380819	2021-05-28 09:10:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:10:00.951+03	2021-05-28 09:10:00.968+03	
6ef327b0-43f7-0745-0597-fdd78c2f21e2	2021-05-28 09:10:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:10:10.951+03	2021-05-28 09:10:10.958+03	
a0ba4bbf-d08e-10ee-a0e9-cab4a954255e	2021-05-28 09:10:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:10:30.951+03	2021-05-28 09:10:30.966+03	
9b157f6a-22fc-7a05-b0d5-05c0737b6645	2021-05-28 09:10:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:10:50.951+03	2021-05-28 09:10:50.959+03	
2f29078e-d8aa-51bd-6a1c-cc81d1042a29	2021-05-28 09:11:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:11:10.951+03	2021-05-28 09:11:10.958+03	
4ea10f14-6c77-be6b-8e53-3356a8039d8b	2021-05-28 09:11:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:11:30.951+03	2021-05-28 09:11:30.958+03	
2c0b97d1-3d20-9b42-1ac6-7b465e3b6c85	2021-05-28 09:11:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:11:50.951+03	2021-05-28 09:11:50.957+03	
5d2c0b5c-c749-49a0-a9be-ac1e75d36940	2021-05-28 09:12:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:12:10.952+03	2021-05-28 09:12:10.959+03	
d8849a90-a344-7041-f065-70a0ea0e803a	2021-05-28 09:12:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:12:31.951+03	2021-05-28 09:12:31.958+03	
99d8bc63-a6b9-41ea-8cc1-569c2cea6f4b	2021-05-28 09:12:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:12:51.951+03	2021-05-28 09:12:51.959+03	
e8e88f76-1e90-7a5b-bee8-b963f896e921	2021-05-28 09:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:13:11.951+03	2021-05-28 09:13:11.957+03	
4591f277-2141-d9d5-6ddb-8df9eda7fb2c	2021-05-28 09:13:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:13:31.952+03	2021-05-28 09:13:31.958+03	
6efac1ee-505f-ebd9-c8ac-d7e84281b489	2021-05-28 09:13:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:13:52.951+03	2021-05-28 09:13:52.959+03	
fdca7358-50f4-0b36-69fe-82bae817eeea	2021-05-28 09:14:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:14:12.951+03	2021-05-28 09:14:12.958+03	
23b5ac8b-d6e4-d1f3-74f0-e68177568166	2021-05-28 09:14:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:14:33.951+03	2021-05-28 09:14:33.957+03	
bb976be9-d433-1283-be56-7b92d862de82	2021-05-28 09:14:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:14:53.951+03	2021-05-28 09:14:53.958+03	
a9479e65-3562-7924-fe2c-1ba82e69f8fe	2021-05-28 09:15:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:15:13.951+03	2021-05-28 09:15:13.959+03	
730e9b19-503a-0273-620a-8d243659a6b2	2021-05-28 09:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:15:33.951+03	2021-05-28 09:15:33.958+03	
37742afb-a754-a731-a3b8-e4c62e192322	2021-05-28 09:15:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:15:53.951+03	2021-05-28 09:15:53.958+03	
5a0c4fdc-7f1b-23ae-3b8b-5c5aefafc884	2021-05-28 09:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:16:13.951+03	2021-05-28 09:16:13.96+03	
ad00f9d6-91bb-0ed8-078b-ed7ad09eb6a9	2021-05-28 09:16:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:16:33.951+03	2021-05-28 09:16:33.958+03	
78d9a95c-a652-687d-94ca-8f11bcaa142e	2021-05-28 09:16:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:16:53.951+03	2021-05-28 09:16:53.966+03	
82184408-ace8-157d-ef85-21f4390f8c14	2021-05-28 09:17:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:17:13.951+03	2021-05-28 09:17:13.959+03	
c0a3a8eb-5da6-0d3e-897c-15114c5fe44a	2021-05-28 09:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:17:33.951+03	2021-05-28 09:17:33.958+03	
0b0234b4-7de1-b635-a16f-57318c0d97e7	2021-05-28 09:17:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:17:53.951+03	2021-05-28 09:17:53.958+03	
e7a98adb-3e4e-5a17-085d-2f97fb6d7db1	2021-05-28 09:18:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:18:14.951+03	2021-05-28 09:18:14.958+03	
2ecda75b-6755-c15e-590b-fa2cdd16558e	2021-05-28 09:18:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:18:34.951+03	2021-05-28 09:18:34.959+03	
93a084ee-1b23-1afd-8924-713e1908b511	2021-05-28 09:18:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:18:54.951+03	2021-05-28 09:18:54.959+03	
dbfd07ff-747d-05fb-6fa3-65f72c2bc730	2021-05-28 09:19:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:19:14.951+03	2021-05-28 09:19:14.959+03	
c81ce41b-91e7-b62d-b8c0-a4b7a2a3609f	2021-05-28 09:19:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:19:34.951+03	2021-05-28 09:19:34.959+03	
a31e39a3-e532-dc4d-ec7f-78136637708c	2021-05-28 09:19:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:19:54.951+03	2021-05-28 09:19:54.959+03	
4aa6214b-db3d-642e-ff5e-1cdb7edbb8a9	2021-05-28 09:20:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:20:04.952+03	2021-05-28 09:20:04.961+03	
985d1178-3463-bb4b-3ffa-91c4430d90a5	2021-05-28 09:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:20:25.951+03	2021-05-28 09:20:25.958+03	
7a5e39ba-caff-ec39-651f-c6ab2d18d2d3	2021-05-28 09:20:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:20:45.951+03	2021-05-28 09:20:45.959+03	
fc7ada60-c875-8867-99c8-da7ec6edc8d3	2021-05-28 09:21:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:21:05.951+03	2021-05-28 09:21:05.959+03	
ab4c7d2e-88ab-2f3b-ea44-beb0b6e7f9eb	2021-05-28 09:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:21:25.952+03	2021-05-28 09:21:25.958+03	
8fbcdd58-bb2b-750e-c550-4641b753eb28	2021-05-28 09:21:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:21:46.951+03	2021-05-28 09:21:46.959+03	
7b418081-fe04-35d9-1f56-e88c1ceb64d2	2021-05-28 09:22:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:22:06.951+03	2021-05-28 09:22:06.958+03	
63b3cc78-1afa-4506-f8b2-8738c258857f	2021-05-28 09:22:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:22:26.951+03	2021-05-28 09:22:26.96+03	
05607617-0888-9260-e903-bc9cd51275c6	2021-05-28 09:22:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:22:46.951+03	2021-05-28 09:22:46.96+03	
60235020-c10b-bb81-fb12-c1e7db98f3b5	2021-05-28 09:23:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:23:06.951+03	2021-05-28 09:23:06.959+03	
8549a232-11f3-bbbd-70c6-6c695e28f3fe	2021-05-28 09:23:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:23:27.951+03	2021-05-28 09:23:27.959+03	
72cdf1ef-c211-e573-08f1-6ef0b5015649	2021-05-28 09:23:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:23:47.952+03	2021-05-28 09:23:47.96+03	
abbeec51-30b7-1db0-173a-4a01534cc744	2021-05-28 09:24:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:24:07.952+03	2021-05-28 09:24:07.96+03	
a0956e18-76cd-8c41-a2f9-9319941ceda4	2021-05-28 09:24:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:24:28.951+03	2021-05-28 09:24:28.958+03	
b7d0de65-cbc1-3d91-63a5-9669f7f1a6ee	2021-05-28 09:24:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:24:48.951+03	2021-05-28 09:24:48.958+03	
c259b509-d411-06f2-0893-037c45048571	2021-05-28 09:25:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:25:09.951+03	2021-05-28 09:25:09.961+03	
39ee6bac-272c-0757-124d-1aa9b9d7efc8	2021-05-28 09:25:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:25:29.951+03	2021-05-28 09:25:29.958+03	
c5e78245-8fc6-34f2-3575-1e240ecf6232	2021-05-28 09:25:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:25:49.951+03	2021-05-28 09:25:49.959+03	
101b8ce7-ff3b-1ae4-9e87-754ae6bd8602	2021-05-28 09:26:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:26:09.951+03	2021-05-28 09:26:09.958+03	
6cbc6e8f-2839-b614-db67-78474b32a5a1	2021-05-28 09:26:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:26:29.951+03	2021-05-28 09:26:29.958+03	
3215c69f-259b-8931-1683-e24e68b657e9	2021-05-28 09:26:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:26:49.951+03	2021-05-28 09:26:49.958+03	
27762b13-5f26-edfe-96bb-9294657ca68e	2021-05-28 09:27:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:27:09.951+03	2021-05-28 09:27:09.958+03	
cffa7c1b-43c1-d45a-339c-3a4cc91b5416	2021-05-28 09:27:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:27:30.951+03	2021-05-28 09:27:30.967+03	
071a6b48-7491-56bd-b4cd-594688128a48	2021-05-28 09:27:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:27:50.951+03	2021-05-28 09:27:50.958+03	
31bc1cf3-8b85-c962-b49b-e2c98b35223a	2021-05-28 09:28:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:28:10.951+03	2021-05-28 09:28:10.961+03	
a14a9911-5f1a-7c1b-29a9-01cdd5f6c3cd	2021-05-28 09:28:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:28:30.951+03	2021-05-28 09:28:30.957+03	
ce9e2e67-3944-702a-5dd3-faeed6d329db	2021-05-28 09:28:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:28:50.951+03	2021-05-28 09:28:50.958+03	
9bd2537b-35f1-df96-e734-a8a52c2b7ce3	2021-05-28 09:29:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:29:10.951+03	2021-05-28 09:29:10.959+03	
ec0035e1-7bce-6c3b-be18-81f32bda7293	2021-05-28 09:29:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:29:30.951+03	2021-05-28 09:29:30.959+03	
0934584a-2cdf-3936-bb87-01133701304c	2021-05-28 09:29:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:29:50.951+03	2021-05-28 09:29:50.958+03	
c75ff9cc-f880-3788-b80a-1365c148f455	2021-05-28 09:30:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:30:00.951+03	2021-05-28 09:30:00.967+03	
f7832034-78c9-dd9d-edd2-dc0c4c559c4f	2021-05-28 09:30:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:30:10.951+03	2021-05-28 09:30:10.96+03	
a96760af-c1a5-13a8-13ba-fa5e9f503a76	2021-05-28 09:30:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:30:30.951+03	2021-05-28 09:30:30.958+03	
4aa07d6e-9baa-76b4-2eac-8a0b82b12f00	2021-05-28 09:30:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:30:50.951+03	2021-05-28 09:30:50.959+03	
9b7ee434-8069-48ae-1614-6c5f32b95152	2021-05-28 09:31:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:31:10.951+03	2021-05-28 09:31:10.959+03	
1200decb-d369-d6f8-3416-abbc3cff5fc7	2021-05-28 09:31:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:31:30.951+03	2021-05-28 09:31:30.959+03	
76c19901-83a8-9cdb-8124-bc3aef4ed927	2021-05-28 09:31:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:31:51.951+03	2021-05-28 09:31:51.958+03	
91496fe8-18a4-5f81-8d61-b59306a85f41	2021-05-28 09:32:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:32:11.951+03	2021-05-28 09:32:11.959+03	
3c2bd468-6a80-d899-0c01-a956c3b0bfb1	2021-05-28 09:32:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:32:31.951+03	2021-05-28 09:32:31.958+03	
2dedb126-27fe-3c3f-b700-ba1d13823fd6	2021-05-28 09:32:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:32:51.951+03	2021-05-28 09:32:51.958+03	
56c6da6d-17d6-1444-c398-62e672d6dfc1	2021-05-28 09:33:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:33:11.951+03	2021-05-28 09:33:11.959+03	
e3029d95-72c3-3975-f421-53c92df3e4f4	2021-05-28 09:33:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:33:31.951+03	2021-05-28 09:33:31.96+03	
82d93498-964f-13d6-ef81-f5a59766d319	2021-05-28 09:33:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:33:51.951+03	2021-05-28 09:33:51.967+03	
a48b96ea-dd2b-7183-1159-08ae8f05709f	2021-05-28 09:34:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:34:11.951+03	2021-05-28 09:34:11.959+03	
c476bcb5-d9e8-0988-369d-b1f078550ac7	2021-05-28 09:34:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:34:31.951+03	2021-05-28 09:34:31.96+03	
0177b125-a939-a310-7b26-58e87aaaaa6d	2021-05-28 09:34:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:34:51.951+03	2021-05-28 09:34:51.959+03	
286c8ec6-7ad8-b12c-d6d6-7212188b56ba	2021-05-28 09:35:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:35:11.951+03	2021-05-28 09:35:11.96+03	
589eb352-16e3-5f12-45cc-05769c54b00f	2021-05-28 09:35:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:35:31.951+03	2021-05-28 09:35:31.958+03	
fda0ec39-a1a7-925e-af4d-b6e6eae68873	2021-05-28 09:35:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:35:51.951+03	2021-05-28 09:35:51.963+03	
34f5b7c0-10c1-038d-67fd-a565747273d8	2021-05-28 09:36:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:36:11.951+03	2021-05-28 09:36:11.958+03	
f0817c48-8ade-de3e-c0e1-2a1887c34263	2021-05-28 09:36:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:36:31.951+03	2021-05-28 09:36:31.958+03	
6bed1116-38d5-5e17-bad4-41e91202048e	2021-05-28 09:36:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:36:51.951+03	2021-05-28 09:36:51.959+03	
be4ae394-890e-407a-9422-3c6a9d66db3f	2021-05-28 09:37:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:37:11.951+03	2021-05-28 09:37:11.957+03	
03688dc2-7ee4-0834-139b-8144b1ec1606	2021-05-28 09:37:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:37:31.951+03	2021-05-28 09:37:31.958+03	
0fa89c68-841a-5d23-29f1-95eb2c94f221	2021-05-28 09:37:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:37:51.951+03	2021-05-28 09:37:51.958+03	
a7f3f026-c201-502f-2415-9a6df906365a	2021-05-28 09:38:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:38:11.951+03	2021-05-28 09:38:11.959+03	
e3c0912d-17cf-e020-e779-f7d7d0092fb8	2021-05-28 09:38:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:38:31.951+03	2021-05-28 09:38:31.957+03	
4825ae11-6a27-0bba-7c6f-b74a605ec2e9	2021-05-28 09:38:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:38:51.951+03	2021-05-28 09:38:51.959+03	
b9b801e2-3a7a-f07c-950e-bee59f16a29b	2021-05-28 09:39:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:39:11.951+03	2021-05-28 09:39:11.961+03	
2f62fe02-767d-6cf2-dcbf-7d964333a918	2021-05-28 09:39:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:39:31.951+03	2021-05-28 09:39:31.957+03	
a421d8b7-0233-14bd-4c4e-a92016784cb9	2021-05-28 09:39:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:39:51.951+03	2021-05-28 09:39:51.961+03	
ddb4d92c-9ebd-9f5a-a788-38579242e297	2021-05-28 09:40:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:40:01.951+03	2021-05-28 09:40:01.957+03	
39ae27d1-49cd-79ba-6666-c85b81259ba2	2021-05-28 09:40:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:40:21.951+03	2021-05-28 09:40:21.959+03	
c48277ab-fa34-9a87-c74a-8127b7e7c757	2021-05-28 09:40:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:40:41.951+03	2021-05-28 09:40:41.959+03	
a5be6f3e-cdbe-b54c-39b9-fbb8fc0cf8bd	2021-05-28 09:41:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:41:01.951+03	2021-05-28 09:41:01.957+03	
3faab836-a54f-a623-d87b-92d92807f60d	2021-05-28 09:41:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:41:21.951+03	2021-05-28 09:41:21.961+03	
a38aed06-28d4-39b9-ae99-04a198117a17	2021-05-28 09:41:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:41:41.951+03	2021-05-28 09:41:41.958+03	
631c45b1-fc1b-88f1-e663-79ed355a984a	2021-05-28 09:42:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:42:01.951+03	2021-05-28 09:42:01.958+03	
abde4a3f-cb5b-ae7a-8715-814dec38953f	2021-05-28 09:42:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:42:21.951+03	2021-05-28 09:42:21.958+03	
f3bccb12-d39f-bbb5-1238-141f956bee40	2021-05-28 09:42:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:42:41.951+03	2021-05-28 09:42:41.957+03	
e528f182-9ecb-758c-5ff9-5625fd616d72	2021-05-28 09:43:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:43:01.951+03	2021-05-28 09:43:01.957+03	
a9034320-f3f5-71f7-87ab-1744038836df	2021-05-28 09:43:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:43:21.951+03	2021-05-28 09:43:21.959+03	
8532f18d-278b-3021-828d-a6bdc34bc9a5	2021-05-28 09:43:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:43:41.951+03	2021-05-28 09:43:41.958+03	
78f0e351-2454-148f-4f95-3db353121e51	2021-05-28 09:44:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:44:01.951+03	2021-05-28 09:44:01.958+03	
fa6d62b5-1d2a-bbea-b423-ae8f6997aef8	2021-05-28 09:44:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:44:21.951+03	2021-05-28 09:44:21.958+03	
11117fe9-acad-7710-7a8c-38d17dd03490	2021-05-28 09:44:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:44:41.951+03	2021-05-28 09:44:41.959+03	
5959d4a2-18a6-8150-352e-77a3025b889f	2021-05-28 09:45:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:45:01.951+03	2021-05-28 09:45:01.958+03	
1f3a45f0-5ceb-7616-34d6-426e948c3f5d	2021-05-28 09:45:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:45:21.951+03	2021-05-28 09:45:21.958+03	
582a99c3-8936-9a8a-69bd-876a9ecacd6b	2021-05-28 09:45:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:45:41.951+03	2021-05-28 09:45:41.957+03	
8c3246f9-7df9-8f03-f103-ad653fcbdf7f	2021-05-28 09:46:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:46:01.951+03	2021-05-28 09:46:01.957+03	
ffdb4ba4-c111-aca5-8068-43b464051e5e	2021-05-28 09:46:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:46:21.951+03	2021-05-28 09:46:21.957+03	
39acb9f7-2385-3b7b-f3d8-2b9b75aed4cb	2021-05-28 09:46:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:46:41.951+03	2021-05-28 09:46:41.958+03	
de61acba-7288-0639-1dd4-2992d4c3af59	2021-05-28 09:47:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:47:01.951+03	2021-05-28 09:47:01.96+03	
1fc4b253-0be8-ceea-2909-ec0da241d40f	2021-05-28 09:47:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:47:21.952+03	2021-05-28 09:47:21.959+03	
c819b993-5ef5-6f8f-5b56-aea2edf5d6a3	2021-05-28 09:47:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:47:42.951+03	2021-05-28 09:47:42.958+03	
fbd8447e-7bb1-1d9b-1c30-dd98ea20eab1	2021-05-28 09:48:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:48:02.951+03	2021-05-28 09:48:02.959+03	
af6aa40d-3c72-f6ff-d8a3-d62653f8cbb5	2021-05-28 09:48:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:48:22.951+03	2021-05-28 09:48:22.958+03	
8154ae74-d7e8-1f0e-5d41-bc03231bd26b	2021-05-28 09:48:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:48:42.951+03	2021-05-28 09:48:42.96+03	
d530bc9d-777e-d480-0fa8-70f2d378fbb0	2021-05-28 09:49:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:49:02.951+03	2021-05-28 09:49:02.961+03	
e6647b17-a5ac-9cca-9deb-4bc051bb9c9f	2021-05-28 09:49:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:49:22.951+03	2021-05-28 09:49:22.958+03	
f2026512-d9d6-2874-eca2-bd7ef1ccb117	2021-05-28 09:49:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:49:42.951+03	2021-05-28 09:49:42.958+03	
f545fbff-80e4-775c-70d8-20121f8168c1	2021-05-28 09:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 09:50:00.951+03	2021-05-28 09:50:00.957+03	ERROR
e2fc814e-d368-e8a2-6d47-cb90be5f8454	2021-05-28 09:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:50:13.951+03	2021-05-28 09:50:13.959+03	
9aebbd18-0bb7-99bb-5b8c-8eb5b06c5343	2021-05-28 09:50:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:50:33.951+03	2021-05-28 09:50:33.959+03	
cd13b37c-4620-7b3f-de52-aaef8ba3e620	2021-05-28 09:30:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:30:20.951+03	2021-05-28 09:30:20.959+03	
ca76085a-e8cb-edf9-57f3-7b612fa0d1bb	2021-05-28 09:30:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:30:40.951+03	2021-05-28 09:30:40.96+03	
4fb15a0e-80b8-a9a5-77c7-62f1f3efd7cd	2021-05-28 09:31:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:31:00.951+03	2021-05-28 09:31:00.958+03	
b32b4746-69ba-1d18-0852-0647e5dc225c	2021-05-28 09:31:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:31:20.951+03	2021-05-28 09:31:20.958+03	
365590ab-0350-f702-1c56-71fe046f1c8d	2021-05-28 09:31:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:31:40.952+03	2021-05-28 09:31:40.958+03	
da081d55-7566-ac6d-1e38-18070ddd23a8	2021-05-28 09:32:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:32:01.951+03	2021-05-28 09:32:01.958+03	
bb91982c-5c3e-4e15-67bb-d6b841bdbc29	2021-05-28 09:32:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:32:21.951+03	2021-05-28 09:32:21.958+03	
a9ef45c7-c3ce-750a-c8a8-d2b34463a8bf	2021-05-28 09:32:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:32:41.951+03	2021-05-28 09:32:41.958+03	
d903482b-25f4-d2b6-e5b8-6e8480fec76d	2021-05-28 09:33:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:33:01.951+03	2021-05-28 09:33:01.958+03	
c62aa6bb-5ceb-1882-73fb-f42c51ee9b0b	2021-05-28 09:33:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:33:21.951+03	2021-05-28 09:33:21.958+03	
26089636-7a06-2ce5-b6b6-ae876d881d31	2021-05-28 09:33:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:33:41.951+03	2021-05-28 09:33:41.958+03	
acec84e0-0a11-8137-f313-9eff95d40a85	2021-05-28 09:34:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:34:01.951+03	2021-05-28 09:34:01.958+03	
af9b5940-0cfa-4a0f-382f-1c2a831af8f3	2021-05-28 09:34:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:34:21.951+03	2021-05-28 09:34:21.958+03	
84872aff-075f-2e3a-7797-25482f153c1d	2021-05-28 09:34:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:34:41.951+03	2021-05-28 09:34:41.958+03	
a792f915-0040-53da-6092-5991ddb0908a	2021-05-28 09:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:35:01.951+03	2021-05-28 09:35:01.959+03	
53b97bf4-7c7c-7c81-ab17-3202f4624565	2021-05-28 09:35:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:35:21.951+03	2021-05-28 09:35:21.959+03	
19962a49-c914-3de6-fddf-bc5352b328d6	2021-05-28 09:35:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:35:41.951+03	2021-05-28 09:35:41.958+03	
30149917-3a9f-7300-b039-3da1ff519fc9	2021-05-28 09:36:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:36:01.951+03	2021-05-28 09:36:01.958+03	
8ed84bf5-4e5d-9fee-8c25-bcbd6f7f3c4e	2021-05-28 09:36:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:36:21.951+03	2021-05-28 09:36:21.958+03	
af5ab1e4-970b-938b-0796-e77bd724049e	2021-05-28 09:36:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:36:41.951+03	2021-05-28 09:36:41.958+03	
6833da71-e5f6-fa4a-3f73-1a34d23bfd22	2021-05-28 09:37:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:37:01.951+03	2021-05-28 09:37:01.958+03	
2f0997dd-e1fe-9786-fadd-3ba15439d223	2021-05-28 09:37:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:37:21.951+03	2021-05-28 09:37:21.961+03	
951818d7-d3f0-3775-d7ba-dfe2b7c6e240	2021-05-28 09:37:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:37:41.951+03	2021-05-28 09:37:41.958+03	
de2c1aac-8f85-c187-9f9e-223a12049257	2021-05-28 09:38:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:38:01.951+03	2021-05-28 09:38:01.958+03	
7bbb838c-980d-e3b2-dcdc-65e1cbe2c200	2021-05-28 09:38:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:38:21.951+03	2021-05-28 09:38:21.958+03	
6f850803-dbe8-0173-2cba-6260a8d6cc59	2021-05-28 09:38:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:38:41.951+03	2021-05-28 09:38:41.957+03	
cea93923-bdc0-5d21-efb0-b218270bfe1e	2021-05-28 09:39:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:39:01.951+03	2021-05-28 09:39:01.958+03	
2ce17d62-5794-2d82-a50f-60d395383e78	2021-05-28 09:39:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:39:21.951+03	2021-05-28 09:39:21.959+03	
b170c1fb-811c-5732-f712-337e33c3d5ca	2021-05-28 09:39:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:39:41.951+03	2021-05-28 09:39:41.959+03	
cdc94396-8a8d-f831-a7b4-8c8da001fbf4	2021-05-28 09:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 09:40:00.951+03	2021-05-28 09:40:00.956+03	ERROR
11d66e5d-2621-9703-39ee-ccd02605151c	2021-05-28 09:40:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:40:11.951+03	2021-05-28 09:40:11.968+03	
1f30a1d2-3558-000a-fa74-c0ce13a49d93	2021-05-28 09:40:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:40:31.951+03	2021-05-28 09:40:31.958+03	
11f0cc39-8c04-aaeb-52ab-b663369e1db9	2021-05-28 09:40:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:40:51.951+03	2021-05-28 09:40:51.959+03	
b4ec5cb0-c32e-da62-44e9-fd3a2e60877e	2021-05-28 09:41:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:41:11.951+03	2021-05-28 09:41:11.958+03	
62cbecbe-53a2-b969-fbac-2e12b24969cd	2021-05-28 09:41:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:41:31.951+03	2021-05-28 09:41:31.958+03	
80c0cb1e-c6e7-191b-5325-2fea21c34e42	2021-05-28 09:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:41:51.951+03	2021-05-28 09:41:51.957+03	
ba1bb6d2-9d6f-6352-ae08-c3d0439cb811	2021-05-28 09:42:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:42:11.951+03	2021-05-28 09:42:11.958+03	
7f2b54a9-a300-303a-5bb6-0aab04891ed7	2021-05-28 09:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:42:31.951+03	2021-05-28 09:42:31.958+03	
8a6b20a3-beca-27df-0980-9f04380a099e	2021-05-28 09:42:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:42:51.951+03	2021-05-28 09:42:51.958+03	
3e1fbb10-0a49-ba24-ac23-bd80af374b51	2021-05-28 09:43:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:43:11.951+03	2021-05-28 09:43:11.958+03	
295b6770-7524-2842-a2e3-381fbf3478f2	2021-05-28 09:43:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:43:31.951+03	2021-05-28 09:43:31.959+03	
0d3a35a8-8646-13b8-e9d5-f653d7138f60	2021-05-28 09:43:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:43:51.951+03	2021-05-28 09:43:51.957+03	
5314c57b-d0ec-22c1-49ad-26468d5a4237	2021-05-28 09:44:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:44:11.951+03	2021-05-28 09:44:11.958+03	
65d5b616-9db3-0567-bf5f-94534776d8ca	2021-05-28 09:44:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:44:31.951+03	2021-05-28 09:44:31.958+03	
9711f82f-c19a-4827-4d46-87ff2cae668b	2021-05-28 09:44:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:44:51.951+03	2021-05-28 09:44:51.958+03	
b22ad9aa-08f6-d6b4-822a-56260acd573d	2021-05-28 09:45:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:45:11.951+03	2021-05-28 09:45:11.959+03	
2210dad6-ea09-7c10-4ef2-884e43ce70b8	2021-05-28 09:45:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:45:31.951+03	2021-05-28 09:45:31.957+03	
48ec99c1-f496-7ff6-91a6-11bb0980b59f	2021-05-28 09:45:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:45:51.951+03	2021-05-28 09:45:51.958+03	
34345130-834d-d750-ee74-1b3ce9ae580b	2021-05-28 09:46:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:46:11.951+03	2021-05-28 09:46:11.958+03	
980e1beb-6c04-6812-45b1-13a6afca10c0	2021-05-28 09:46:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:46:31.951+03	2021-05-28 09:46:31.967+03	
1df4d01c-5a26-f457-4823-6d32b3d63c9a	2021-05-28 09:46:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:46:51.951+03	2021-05-28 09:46:51.958+03	
64fde4bc-8fb3-a930-a23a-905c391a2ed5	2021-05-28 09:47:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:47:11.951+03	2021-05-28 09:47:11.959+03	
a310f044-8a8b-fa60-7681-7b5f2c18025a	2021-05-28 09:47:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:47:32.951+03	2021-05-28 09:47:32.957+03	
c393c5fe-bc58-f2c6-949c-0ac54c378411	2021-05-28 09:47:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:47:52.951+03	2021-05-28 09:47:52.958+03	
d0793ae8-287b-87e3-25fa-6dadff6eaf65	2021-05-28 09:48:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:48:12.951+03	2021-05-28 09:48:12.958+03	
2433f32c-9657-85e9-2a4d-76a605d36d87	2021-05-28 09:48:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:48:32.951+03	2021-05-28 09:48:32.958+03	
0046e894-0dfb-a2a4-a600-0fd47095de95	2021-05-28 09:48:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:48:52.951+03	2021-05-28 09:48:52.959+03	
2c76b6a8-05ee-8e63-e793-203e1e9374dd	2021-05-28 09:49:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:49:12.951+03	2021-05-28 09:49:12.959+03	
e3f31a84-9022-6951-c17e-9811109a92f8	2021-05-28 09:49:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:49:32.951+03	2021-05-28 09:49:32.959+03	
edf032a0-5026-e037-b5ca-41852b782308	2021-05-28 09:49:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:49:52.953+03	2021-05-28 09:49:52.961+03	
1500668a-282c-a0f0-8338-ae4f41c95f9d	2021-05-28 09:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:50:03.951+03	2021-05-28 09:50:03.958+03	
72603c4f-98e4-873c-aa7c-261a1e382695	2021-05-28 09:50:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:50:23.951+03	2021-05-28 09:50:23.959+03	
68f04b9f-27e0-20a2-a4a9-77cfd7087c30	2021-05-28 09:50:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:50:43.951+03	2021-05-28 09:50:43.959+03	
0865f694-d912-a72d-fae7-3356f7bbe139	2021-05-28 09:50:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:50:53.951+03	2021-05-28 09:50:53.959+03	
648dc23f-4f14-1786-ab0a-9fd0187cfcef	2021-05-28 09:51:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:51:13.951+03	2021-05-28 09:51:13.959+03	
d285c453-832b-4b18-70f1-5dfae27ebf8f	2021-05-28 09:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:51:34.951+03	2021-05-28 09:51:34.96+03	
780e58a3-9652-4bb2-fa72-02ad1a6891b2	2021-05-28 09:51:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:51:54.951+03	2021-05-28 09:51:54.959+03	
37af7834-1a47-7878-7875-c9c6f7846655	2021-05-28 09:52:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:52:14.951+03	2021-05-28 09:52:14.958+03	
afc729bf-d423-ea12-cc01-402143e0525c	2021-05-28 09:52:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:52:34.951+03	2021-05-28 09:52:34.959+03	
0e8c301d-8455-7c22-73a4-cc511343cec6	2021-05-28 09:52:54.962	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:52:54.951+03	2021-05-28 09:52:54.97+03	
596c11b3-2df5-164f-714b-86b577368b0b	2021-05-28 09:53:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:53:15.951+03	2021-05-28 09:53:15.958+03	
e1c5322a-9934-2aff-017e-9747098f5421	2021-05-28 09:53:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:53:35.951+03	2021-05-28 09:53:35.958+03	
37c7178c-1331-6e55-ea46-2d834c4e2fbc	2021-05-28 09:53:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:53:55.951+03	2021-05-28 09:53:55.961+03	
f96fecf8-f618-6ce6-424e-b0d2de25d7d6	2021-05-28 09:54:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:54:15.951+03	2021-05-28 09:54:15.959+03	
bbc4c6b1-de79-cf7d-9e01-69383df6d7b7	2021-05-28 09:54:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:54:35.951+03	2021-05-28 09:54:35.958+03	
467b069f-28d1-185b-8ce9-6f99089d1d1a	2021-05-28 09:54:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:54:55.951+03	2021-05-28 09:54:55.958+03	
756f4ac4-1e82-9039-4ed6-be43ea0897e3	2021-05-28 09:55:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:55:15.951+03	2021-05-28 09:55:15.96+03	
bdd37176-019b-9584-885a-24cb83295318	2021-05-28 09:55:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:55:35.951+03	2021-05-28 09:55:35.966+03	
5a981509-974e-4094-1682-59947521ffc9	2021-05-28 09:55:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:55:55.951+03	2021-05-28 09:55:55.959+03	
f1bf690d-11f5-0c23-ba7d-3ff9d63fdca3	2021-05-28 09:56:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:56:15.951+03	2021-05-28 09:56:15.958+03	
31f2993f-568c-0609-f0ba-b461370d027f	2021-05-28 09:56:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:56:35.951+03	2021-05-28 09:56:35.96+03	
773fbbf5-aaf1-9935-07d2-20c2a558d663	2021-05-28 09:56:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:56:55.951+03	2021-05-28 09:56:55.957+03	
1a3deab6-a27c-7293-ef95-cca011b33c32	2021-05-28 09:57:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:57:15.951+03	2021-05-28 09:57:15.958+03	
9a28b616-0bfa-aef2-ce5e-3292ff609716	2021-05-28 09:57:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:57:35.951+03	2021-05-28 09:57:35.958+03	
26210e24-6d29-509a-5b3d-d8181f257b0f	2021-05-28 09:57:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:57:55.951+03	2021-05-28 09:57:55.959+03	
7b48015d-b59e-1ef4-59f4-b7bf1a5e30a9	2021-05-28 09:58:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:58:15.951+03	2021-05-28 09:58:15.961+03	
951719e7-214c-faf0-7bfa-d7097494944a	2021-05-28 09:58:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:58:36.951+03	2021-05-28 09:58:36.957+03	
b0b34a87-9794-9e43-9dc9-575314265c8c	2021-05-28 09:58:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:58:56.951+03	2021-05-28 09:58:56.96+03	
eb66e35b-7591-a085-42b6-58dbbd02e971	2021-05-28 09:59:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:59:16.951+03	2021-05-28 09:59:16.968+03	
c878b3ac-81d8-8169-adbb-51bd95ca77a6	2021-05-28 09:59:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:59:36.951+03	2021-05-28 09:59:36.958+03	
623e08ff-529d-e8ae-c79d-a245d0230e91	2021-05-28 09:59:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:59:56.951+03	2021-05-28 09:59:56.958+03	
e0992e1b-08e1-daf8-bf8f-888f5469102c	2021-05-28 10:00:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:00:06.951+03	2021-05-28 10:00:06.958+03	
1ede85ca-a255-b042-0254-6a0aaa7521b4	2021-05-28 10:00:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:00:26.951+03	2021-05-28 10:00:26.961+03	
cea3e879-8bb3-dd7c-9643-0b606a27a9cf	2021-05-28 10:00:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:00:46.951+03	2021-05-28 10:00:46.958+03	
15d51963-d15d-b840-68bb-6b3a34920436	2021-05-28 10:01:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:01:07.951+03	2021-05-28 10:01:07.96+03	
6d7db169-0cd6-8d28-47d5-94392ebecb2d	2021-05-28 10:01:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:01:27.951+03	2021-05-28 10:01:27.958+03	
88676efe-4a51-4157-5e98-0c957d675e66	2021-05-28 10:01:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:01:47.951+03	2021-05-28 10:01:47.959+03	
0fab8917-55ea-0b4b-b829-9d6d2f95cf1b	2021-05-28 10:02:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:02:07.953+03	2021-05-28 10:02:07.961+03	
4b034743-a93a-d3f3-7a88-9a80cb8fed4d	2021-05-28 10:02:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:02:28.951+03	2021-05-28 10:02:28.959+03	
df141bd1-81fc-cb06-a61d-366fab4c6a90	2021-05-28 10:02:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:02:48.952+03	2021-05-28 10:02:48.959+03	
8b0569e2-c4b9-c5d3-d898-165261877363	2021-05-28 10:03:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:03:09.951+03	2021-05-28 10:03:09.959+03	
5e8ac72b-912c-32c2-fbde-341014e7ca1d	2021-05-28 10:03:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:03:29.951+03	2021-05-28 10:03:29.968+03	
a7b30f1e-da02-1167-4553-a9e4e1b32c6d	2021-05-28 10:03:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:03:49.951+03	2021-05-28 10:03:49.959+03	
1f200545-27c1-a18e-2e95-ce3e23786a39	2021-05-28 10:04:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:04:09.951+03	2021-05-28 10:04:09.96+03	
fa138085-d829-4b6f-0e57-39a0a990f0cc	2021-05-28 10:04:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:04:29.951+03	2021-05-28 10:04:29.958+03	
162ba3e0-5444-8775-ef99-94325dc4c4e0	2021-05-28 10:04:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:04:49.951+03	2021-05-28 10:04:49.959+03	
dc36346e-8741-2b28-7a65-ba6d4eb35640	2021-05-28 10:05:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:05:09.951+03	2021-05-28 10:05:09.975+03	
44a4ce20-3f8e-3b0d-90df-43c3f91973f5	2021-05-28 10:05:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:05:29.951+03	2021-05-28 10:05:29.958+03	
f3df3903-c96d-57a5-d2c1-9ac5d37834a1	2021-05-28 10:05:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:05:49.951+03	2021-05-28 10:05:49.958+03	
081cb257-58c7-5fd1-8ed5-fbfae51553b6	2021-05-28 10:06:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:06:09.951+03	2021-05-28 10:06:09.959+03	
1c2ef9ee-f14c-3af0-1a33-a168bf2b59c7	2021-05-28 10:06:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:06:29.951+03	2021-05-28 10:06:29.959+03	
2ecc1df4-8f12-7d5e-5f51-5d085b59fb04	2021-05-28 10:06:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:06:49.951+03	2021-05-28 10:06:49.958+03	
9efc6afa-07df-19d6-4a4a-8bd012dc633d	2021-05-28 10:07:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:07:09.952+03	2021-05-28 10:07:09.96+03	
8baeec70-c4ef-15e7-41d1-245fc274ea85	2021-05-28 10:07:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:07:30.951+03	2021-05-28 10:07:30.959+03	
6af7249c-9771-6eb3-01b0-d1fa015fd463	2021-05-28 10:07:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:07:50.951+03	2021-05-28 10:07:50.958+03	
1c82545d-fb41-9abe-079e-a05fb191bae9	2021-05-28 10:08:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:08:10.952+03	2021-05-28 10:08:10.962+03	
639e45d2-3d49-bc99-8b49-6e0b6f55be73	2021-05-28 10:08:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:08:31.951+03	2021-05-28 10:08:31.958+03	
9f82b043-519c-8adf-158b-bfde0f941866	2021-05-28 10:08:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:08:51.951+03	2021-05-28 10:08:51.958+03	
e1d9ff18-2690-3ec6-12a0-e783bde453f3	2021-05-28 10:09:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:09:11.951+03	2021-05-28 10:09:11.958+03	
313d513d-b523-4105-48a4-57d5710a10e7	2021-05-28 10:09:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:09:31.951+03	2021-05-28 10:09:31.957+03	
d24450ba-cc7e-631e-a0da-d91c34a5e5e1	2021-05-28 10:09:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:09:51.951+03	2021-05-28 10:09:51.965+03	
a9c6bec5-a662-d162-4541-fc67cfa8ccb6	2021-05-28 10:10:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:10:01.951+03	2021-05-28 10:10:01.957+03	
304f6691-62e3-0d29-6d93-111ccb04bbba	2021-05-28 10:10:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:10:21.951+03	2021-05-28 10:10:21.959+03	
8c2be4ac-1342-2179-35d5-918f5bb2a212	2021-05-28 10:10:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:10:41.951+03	2021-05-28 10:10:41.96+03	
8b785629-23c8-8882-a97e-17c270122f2f	2021-05-28 10:11:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:11:01.951+03	2021-05-28 10:11:01.957+03	
5b5c5494-07a3-467c-1207-800597efa624	2021-05-28 10:11:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:11:21.951+03	2021-05-28 10:11:21.959+03	
99b7454b-5f13-4152-a209-cc08c711d221	2021-05-28 09:51:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:51:03.951+03	2021-05-28 09:51:03.959+03	
25420566-872b-2ada-e387-437fc88d4be6	2021-05-28 09:51:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:51:23.952+03	2021-05-28 09:51:23.963+03	
46081f52-0349-be2a-dff7-72432d24598e	2021-05-28 09:51:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:51:44.951+03	2021-05-28 09:51:44.96+03	
db420ad1-8c28-e00f-88c1-ab6d77f0b627	2021-05-28 09:52:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:52:04.951+03	2021-05-28 09:52:04.959+03	
43db8c23-8565-ec69-d0cf-5c2f95a7f9e0	2021-05-28 09:52:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:52:24.951+03	2021-05-28 09:52:24.96+03	
37acb537-15ea-49de-fb83-8e55100b9734	2021-05-28 09:52:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:52:44.951+03	2021-05-28 09:52:44.958+03	
e9adce70-766b-01ad-468f-ebb752459f82	2021-05-28 09:53:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:53:04.952+03	2021-05-28 09:53:04.964+03	
a66e2ec6-1969-0505-60a1-006a4248ca4d	2021-05-28 09:53:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:53:25.951+03	2021-05-28 09:53:25.959+03	
93ad24e0-fdd2-fdc3-11bb-c7a781dd3c3c	2021-05-28 09:53:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:53:45.951+03	2021-05-28 09:53:45.959+03	
a749cd31-b7c1-68a8-1c44-f4f3d010a1d6	2021-05-28 09:54:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:54:05.951+03	2021-05-28 09:54:05.958+03	
d342f2bd-4f40-018e-e234-ba95c0d40c04	2021-05-28 09:54:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:54:25.951+03	2021-05-28 09:54:25.96+03	
aefa122a-91f1-b63b-066e-da9cc9cbbc57	2021-05-28 09:54:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:54:45.951+03	2021-05-28 09:54:45.958+03	
3463c314-61e8-dce5-aa43-727e32121369	2021-05-28 09:55:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:55:05.951+03	2021-05-28 09:55:05.958+03	
8e793a9b-1fbe-a47b-1137-3214f9292459	2021-05-28 09:55:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:55:25.951+03	2021-05-28 09:55:25.958+03	
6cc5072f-9a4b-fffc-627f-9cde92a742a6	2021-05-28 09:55:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:55:45.951+03	2021-05-28 09:55:45.96+03	
6411b141-9665-1f98-3748-797454359214	2021-05-28 09:56:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:56:05.951+03	2021-05-28 09:56:05.959+03	
40c93a4f-8436-622d-a0b9-9e0bce7da42a	2021-05-28 09:56:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:56:25.951+03	2021-05-28 09:56:25.958+03	
1af0098d-63b6-3a79-3b8f-ca14b3419be7	2021-05-28 09:56:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:56:45.951+03	2021-05-28 09:56:45.958+03	
ad57480e-680c-5aaf-a099-60139b497691	2021-05-28 09:57:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:57:05.951+03	2021-05-28 09:57:05.958+03	
ad417c5b-392b-b99f-7416-ed9b3899b5c6	2021-05-28 09:57:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:57:25.951+03	2021-05-28 09:57:25.959+03	
da6ad966-8c8b-f14b-bf1f-3d9d586dfbf6	2021-05-28 09:57:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:57:45.951+03	2021-05-28 09:57:45.959+03	
15873d8a-543e-3cc3-23dd-3ef3d1051547	2021-05-28 09:58:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:58:05.951+03	2021-05-28 09:58:05.958+03	
bc1cda22-7bda-79d5-f409-884420777d42	2021-05-28 09:58:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:58:25.952+03	2021-05-28 09:58:25.959+03	
d912243a-138c-a8e6-7e4d-bb630e2f8102	2021-05-28 09:58:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:58:46.951+03	2021-05-28 09:58:46.959+03	
99efae10-e91b-42bb-98d8-a7184f4dd944	2021-05-28 09:59:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:59:06.951+03	2021-05-28 09:59:06.959+03	
875fdfed-c8fa-89ec-6e6b-6439041f4932	2021-05-28 09:59:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:59:26.951+03	2021-05-28 09:59:26.957+03	
678a461d-b7a4-2a10-1d7a-efdca00d7724	2021-05-28 09:59:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 09:59:46.951+03	2021-05-28 09:59:46.96+03	
c4a9abd2-7067-b56a-31f5-1bba7e74a20c	2021-05-28 10:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 10:00:00.951+03	2021-05-28 10:00:00.956+03	ERROR
f535c206-aab7-4c2a-7e1d-0deba77f58ee	2021-05-28 10:00:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:00:16.951+03	2021-05-28 10:00:16.958+03	
5f410e75-f057-9561-b4e7-f356415f175e	2021-05-28 10:00:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:00:36.951+03	2021-05-28 10:00:36.96+03	
ee0ca49f-c443-1081-54bb-4878a1e30d29	2021-05-28 10:00:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:00:56.952+03	2021-05-28 10:00:56.96+03	
83be5e22-11d5-0e3d-03f5-0e60e091f4f8	2021-05-28 10:01:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:01:17.951+03	2021-05-28 10:01:17.958+03	
7c8ca554-2300-766d-e2d8-4401c175db85	2021-05-28 10:01:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:01:37.951+03	2021-05-28 10:01:37.959+03	
5a0565d4-b67a-74a3-0256-1cb2912e1102	2021-05-28 10:01:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:01:57.951+03	2021-05-28 10:01:57.958+03	
62f13cca-5eb5-8af4-9f9b-0315849b2329	2021-05-28 10:02:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:02:18.951+03	2021-05-28 10:02:18.957+03	
5b338ac5-d42e-697f-dcc2-d65f352f4466	2021-05-28 10:02:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:02:38.951+03	2021-05-28 10:02:38.959+03	
1426be0c-15bd-7a65-a473-1a731d94b245	2021-05-28 10:02:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:02:59.951+03	2021-05-28 10:02:59.958+03	
a037470a-87fc-21ab-5882-ab0e80ae08e9	2021-05-28 10:03:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:03:19.951+03	2021-05-28 10:03:19.958+03	
d6ccdcd3-fba1-4198-7a6f-eaa17aa5536a	2021-05-28 10:03:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:03:39.951+03	2021-05-28 10:03:39.958+03	
574d6a3a-f122-cd0e-cc79-110527924695	2021-05-28 10:03:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:03:59.951+03	2021-05-28 10:03:59.959+03	
55150536-ead9-e811-fcbe-1a58622dde5f	2021-05-28 10:04:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:04:19.951+03	2021-05-28 10:04:19.96+03	
21fe3aef-e2f2-24c0-08ab-3a232e46740a	2021-05-28 10:04:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:04:39.951+03	2021-05-28 10:04:39.958+03	
af6b2ac0-dff9-20bb-ad5d-328da53e94bf	2021-05-28 10:04:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:04:59.951+03	2021-05-28 10:04:59.958+03	
3005e0c6-974a-a55e-6eaf-61d29b068f40	2021-05-28 10:05:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:05:19.951+03	2021-05-28 10:05:19.96+03	
bb8119f7-323e-f057-d6e7-63a3eb266cb8	2021-05-28 10:05:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:05:39.951+03	2021-05-28 10:05:39.958+03	
dcc22bbd-bfc4-2049-31d1-4375c526dcee	2021-05-28 10:05:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:05:59.951+03	2021-05-28 10:05:59.958+03	
dfeb2721-01b4-044e-19d0-905d1c27862b	2021-05-28 10:06:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:06:19.951+03	2021-05-28 10:06:19.959+03	
8a613470-cd8e-5d41-c682-6d1f1a4d60fd	2021-05-28 10:06:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:06:39.951+03	2021-05-28 10:06:39.958+03	
3b633dfc-abcd-6999-616e-f69647735ea8	2021-05-28 10:06:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:06:59.951+03	2021-05-28 10:06:59.958+03	
ddd265aa-86ae-aa3d-1a52-00bf26c07520	2021-05-28 10:07:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:07:20.951+03	2021-05-28 10:07:20.961+03	
99baaa2c-d411-6abf-362c-077ff2bcc0e1	2021-05-28 10:07:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:07:40.951+03	2021-05-28 10:07:40.958+03	
595a34d4-eb21-65f5-0c79-31c5dd202636	2021-05-28 10:08:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:08:00.951+03	2021-05-28 10:08:00.957+03	
89d48650-e864-d07b-30d1-66f9ae93dc6f	2021-05-28 10:08:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:08:21.951+03	2021-05-28 10:08:21.957+03	
a49a0359-219c-ace1-10a6-750c49db7964	2021-05-28 10:08:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:08:41.951+03	2021-05-28 10:08:41.958+03	
17d8bd6f-d112-fe1c-1194-adcfaaa9e170	2021-05-28 10:09:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:09:01.951+03	2021-05-28 10:09:01.958+03	
68078d36-a550-f2eb-8c1f-e3a8ce30ca23	2021-05-28 10:09:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:09:21.951+03	2021-05-28 10:09:21.959+03	
893eceb6-c901-6618-4b63-c3a3fdfaa05b	2021-05-28 10:09:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:09:41.951+03	2021-05-28 10:09:41.958+03	
2bb79504-d38b-6e40-07d5-2aff7b314b54	2021-05-28 10:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 10:10:00.951+03	2021-05-28 10:10:00.956+03	ERROR
dad4de83-6c6f-a70b-d2ea-e31deeb350fa	2021-05-28 10:10:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:10:11.951+03	2021-05-28 10:10:11.958+03	
7d51874e-3fb7-a4fe-2eec-13feb4390d9d	2021-05-28 10:10:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:10:31.951+03	2021-05-28 10:10:31.96+03	
d462075a-fcae-5b7f-3fb4-787c464f05bb	2021-05-28 10:10:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:10:51.951+03	2021-05-28 10:10:51.958+03	
511c7667-cfaf-cf5e-d44d-ce94112ee4ca	2021-05-28 10:11:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:11:11.951+03	2021-05-28 10:11:11.958+03	
98fbc206-af56-354a-3ad8-dee6b1266050	2021-05-28 10:11:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:11:31.951+03	2021-05-28 10:11:31.957+03	
1b50a71d-0e34-2547-7b98-c58d455ac0d7	2021-05-28 10:11:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:11:41.951+03	2021-05-28 10:11:41.958+03	
ef2dd8f9-42ab-553e-eb23-84322e5d26b7	2021-05-28 10:12:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:12:01.951+03	2021-05-28 10:12:01.958+03	
5ce819c6-1810-c7c4-5b87-4b8912380c50	2021-05-28 10:12:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:12:21.951+03	2021-05-28 10:12:21.958+03	
80987fb4-ef48-c635-2d22-edfa6fae9ff6	2021-05-28 10:12:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:12:41.951+03	2021-05-28 10:12:41.958+03	
bdf174b9-c020-434e-a74c-9a819b41ee31	2021-05-28 10:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:13:01.951+03	2021-05-28 10:13:01.958+03	
e8fa3acb-c333-3a59-43a7-8fe11d250bf0	2021-05-28 10:13:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:13:21.951+03	2021-05-28 10:13:21.957+03	
08e94a04-ad00-5a06-c15a-704155db4cbe	2021-05-28 10:13:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:13:41.951+03	2021-05-28 10:13:41.958+03	
b928ac6d-bece-217a-21a6-7498c153fd70	2021-05-28 10:14:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:14:01.951+03	2021-05-28 10:14:01.958+03	
ed1cd962-9fb0-beb2-eeb0-68a773097685	2021-05-28 10:14:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:14:22.951+03	2021-05-28 10:14:22.959+03	
3b5b6373-f1be-68f0-b05e-9ed38f5f6d94	2021-05-28 10:14:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:14:42.951+03	2021-05-28 10:14:42.958+03	
c5b43eba-70fc-c4b7-46fa-88d48681ff8d	2021-05-28 10:15:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:15:02.951+03	2021-05-28 10:15:02.958+03	
981a8318-c559-22fa-72db-171c605640cb	2021-05-28 10:15:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:15:22.952+03	2021-05-28 10:15:22.96+03	
59b56d43-6f1d-a041-1ccd-555a0c6b840a	2021-05-28 10:15:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:15:43.951+03	2021-05-28 10:15:43.961+03	
e127a76a-9dd1-bc07-cde5-54ec1e934a2b	2021-05-28 10:16:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:16:03.951+03	2021-05-28 10:16:03.958+03	
22147163-85c7-4a02-c524-316a83149b32	2021-05-28 10:16:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:16:23.951+03	2021-05-28 10:16:23.958+03	
809734d5-9ec1-077c-a201-6048b46abb32	2021-05-28 10:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:16:43.951+03	2021-05-28 10:16:43.957+03	
4c962afc-818a-ebde-7b76-bb12deb47935	2021-05-28 10:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:17:03.951+03	2021-05-28 10:17:03.959+03	
7e1263e7-b747-1982-713e-4cc441a27194	2021-05-28 10:17:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:17:23.951+03	2021-05-28 10:17:23.957+03	
3a20ce20-f5ca-9fe6-2b7c-f318c03b4dc4	2021-05-28 10:17:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:17:43.952+03	2021-05-28 10:17:43.958+03	
6f9afed1-446e-1eca-5ebe-98154c986c52	2021-05-28 10:18:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:18:04.951+03	2021-05-28 10:18:04.958+03	
211eeb44-3bf9-559e-b26f-7181b073a751	2021-05-28 10:18:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:18:24.951+03	2021-05-28 10:18:24.958+03	
f62c862f-c4fb-7e9c-9b44-a7ad54684033	2021-05-28 10:18:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:18:44.951+03	2021-05-28 10:18:44.961+03	
1608b7a7-b5ac-ee59-d3a5-5554623200ba	2021-05-28 10:19:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:19:04.951+03	2021-05-28 10:19:04.96+03	
cb8de335-e565-f384-979f-cc5420b18460	2021-05-28 10:19:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:19:24.951+03	2021-05-28 10:19:24.958+03	
26f82ebe-108d-6189-5d44-a4db9b2808e4	2021-05-28 10:19:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:19:44.951+03	2021-05-28 10:19:44.958+03	
0c036f9f-0369-0e22-539c-3af3144058e0	2021-05-28 10:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 10:20:00.951+03	2021-05-28 10:20:00.957+03	ERROR
011eab84-204e-f6a1-b8c2-ac3e00f33637	2021-05-28 10:20:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:20:14.951+03	2021-05-28 10:20:14.962+03	
1baf7c94-4e7a-2922-5eef-08a4803b7f04	2021-05-28 10:20:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:20:34.951+03	2021-05-28 10:20:34.958+03	
185f8c99-9f59-0bf8-d067-b7e77bc5b9a6	2021-05-28 10:20:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:20:54.952+03	2021-05-28 10:20:54.959+03	
c8a9181e-20a1-0a2c-e7fc-44ff8da163b2	2021-05-28 10:21:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:21:15.951+03	2021-05-28 10:21:15.959+03	
2fb94d11-82a0-736b-8958-1d46c13f02d8	2021-05-28 10:21:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:21:35.951+03	2021-05-28 10:21:35.958+03	
73e60cee-b2fd-446d-41bf-aab98c426411	2021-05-28 10:21:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:21:55.951+03	2021-05-28 10:21:55.959+03	
50d73bc3-b4ba-1c44-86ae-99fc0c48f1d5	2021-05-28 10:22:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:22:15.951+03	2021-05-28 10:22:15.958+03	
8b738a3b-7687-137f-cd18-62da9dea85b5	2021-05-28 10:22:35.962	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:22:35.962+03	2021-05-28 10:22:35.971+03	
28604fbe-22b4-c1d9-9ee5-d66054d12e26	2021-05-28 10:22:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:22:56.951+03	2021-05-28 10:22:56.958+03	
48539a43-aba4-6434-de10-d74e57ab7e03	2021-05-28 10:23:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:23:16.951+03	2021-05-28 10:23:16.957+03	
588c3d28-9c86-c083-2431-6ee22452622f	2021-05-28 10:23:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:23:36.951+03	2021-05-28 10:23:36.958+03	
060b2389-60ce-4b27-5e1b-731e2d9f03fa	2021-05-28 10:23:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:23:56.951+03	2021-05-28 10:23:56.96+03	
995a9191-3cf5-5ff0-b5a6-2344b7533a2d	2021-05-28 10:24:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:24:16.951+03	2021-05-28 10:24:16.958+03	
f72c5c8f-6f95-260f-fdbb-a0c40a54d10d	2021-05-28 10:24:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:24:36.951+03	2021-05-28 10:24:36.957+03	
daf88c8e-f4af-a6ed-df39-d196fcac8228	2021-05-28 10:24:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:24:56.951+03	2021-05-28 10:24:56.958+03	
e37198db-eb16-e5e6-00fa-4defee1cb697	2021-05-28 10:25:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:25:16.951+03	2021-05-28 10:25:16.96+03	
d71320a2-3c51-b2c5-59f0-cc888867c564	2021-05-28 10:25:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:25:36.951+03	2021-05-28 10:25:36.959+03	
0ebf4cbe-538b-243d-925a-8b6e1f17aa61	2021-05-28 10:25:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:25:56.951+03	2021-05-28 10:25:56.958+03	
2dab9ec6-3788-c7b5-e9ff-ea01a92ed963	2021-05-28 10:26:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:26:16.951+03	2021-05-28 10:26:16.957+03	
fc9d76c9-173c-567a-f091-01f6276d7536	2021-05-28 10:26:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:26:36.951+03	2021-05-28 10:26:36.958+03	
bf45abda-e7b3-110a-cdd4-e21acf35e1c7	2021-05-28 10:26:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:26:56.951+03	2021-05-28 10:26:56.958+03	
2cffec52-1cff-8082-f8f6-44cfc0de556d	2021-05-28 10:27:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:27:16.951+03	2021-05-28 10:27:16.959+03	
37cf078e-ff45-cc5c-562d-125580f8082f	2021-05-28 10:27:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:27:36.951+03	2021-05-28 10:27:36.959+03	
ba21e6df-66bb-eb6e-b570-d30522edfb80	2021-05-28 10:27:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:27:56.951+03	2021-05-28 10:27:56.959+03	
413ccc46-d522-941f-766a-49294b74ce41	2021-05-28 10:28:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:28:16.951+03	2021-05-28 10:28:16.957+03	
c968fa8b-b10b-9d53-c327-5778d4303110	2021-05-28 10:28:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:28:36.951+03	2021-05-28 10:28:36.958+03	
ebb5c073-68d7-d43f-19ad-7721948b26e2	2021-05-28 10:28:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:28:56.951+03	2021-05-28 10:28:56.959+03	
3a3b1a00-4cef-0ecb-e387-8553ee672439	2021-05-28 10:29:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:29:17.951+03	2021-05-28 10:29:17.958+03	
2074b344-5cce-b240-8fdc-1e0415d0612d	2021-05-28 10:29:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:29:37.951+03	2021-05-28 10:29:37.958+03	
280a72c4-289f-0cd0-1c1f-1715e6a45244	2021-05-28 10:29:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:29:57.951+03	2021-05-28 10:29:57.961+03	
9aae2f79-0d96-5538-ab17-25d1980ffca4	2021-05-28 10:30:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:30:07.952+03	2021-05-28 10:30:07.958+03	
f138594a-97f0-3806-859b-ac9114f90c94	2021-05-28 10:30:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:30:28.951+03	2021-05-28 10:30:28.959+03	
15d6683d-6e6e-b5ed-d857-014a6867080f	2021-05-28 10:30:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:30:49.951+03	2021-05-28 10:30:49.959+03	
95accd21-f371-1cc7-61e9-38f9e265d0c0	2021-05-28 10:31:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:31:09.951+03	2021-05-28 10:31:09.963+03	
db4b06ce-755f-d26d-bef1-d48a0798d243	2021-05-28 10:31:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:31:29.951+03	2021-05-28 10:31:29.959+03	
d90be001-4879-4ebd-c381-a59abbaa1b36	2021-05-28 10:31:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:31:49.951+03	2021-05-28 10:31:49.958+03	
7583ea51-4e04-e487-983f-6fcf9d794895	2021-05-28 10:32:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:32:09.952+03	2021-05-28 10:32:09.961+03	
857e21a5-0211-3981-150b-12d4c8fff3ef	2021-05-28 10:11:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:11:51.951+03	2021-05-28 10:11:51.96+03	
926c8a16-df10-b0b9-6c83-2668e30be69c	2021-05-28 10:12:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:12:11.951+03	2021-05-28 10:12:11.958+03	
60ffeb4b-fdd5-a70f-1545-e4f6e8818379	2021-05-28 10:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:12:31.951+03	2021-05-28 10:12:31.958+03	
eb684f60-ed60-3058-fec2-adbb18a875d9	2021-05-28 10:12:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:12:51.951+03	2021-05-28 10:12:51.957+03	
59b630bf-7421-f608-878a-8dcc330be60e	2021-05-28 10:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:13:11.951+03	2021-05-28 10:13:11.958+03	
accf3ca6-9f3a-257a-bab3-a380bcdc9282	2021-05-28 10:13:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:13:31.951+03	2021-05-28 10:13:31.957+03	
7e14cee3-e63e-2162-dda0-a91b339bb587	2021-05-28 10:13:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:13:51.951+03	2021-05-28 10:13:51.959+03	
4b95cb08-7b09-9380-2cb2-59a0fad4e386	2021-05-28 10:14:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:14:11.952+03	2021-05-28 10:14:11.959+03	
582d04a4-ac7b-c82d-6869-28b176f413c2	2021-05-28 10:14:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:14:32.951+03	2021-05-28 10:14:32.962+03	
d22f84d3-f38c-359b-2f89-4ced4e1cf57f	2021-05-28 10:14:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:14:52.951+03	2021-05-28 10:14:52.966+03	
84c19664-0417-b5ac-7ea3-669ccc4223c3	2021-05-28 10:15:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:15:12.951+03	2021-05-28 10:15:12.959+03	
e87b6555-3b43-a871-50ef-c9d2e2be3f33	2021-05-28 10:15:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:15:33.951+03	2021-05-28 10:15:33.958+03	
97ccf7f5-4dd9-f1a2-83cc-e951a8b1e56f	2021-05-28 10:15:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:15:53.951+03	2021-05-28 10:15:53.958+03	
da21d173-d401-a956-3fae-219c66dfb89f	2021-05-28 10:16:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:16:13.951+03	2021-05-28 10:16:13.959+03	
da83213e-ce36-99ab-2547-557e847d736b	2021-05-28 10:16:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:16:33.951+03	2021-05-28 10:16:33.957+03	
7e09e14e-ce12-6b82-317f-385fb486dd9d	2021-05-28 10:16:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:16:53.951+03	2021-05-28 10:16:53.958+03	
1931833d-d182-8324-cb41-565df7694589	2021-05-28 10:17:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:17:13.951+03	2021-05-28 10:17:13.958+03	
78ea3922-5c99-5c04-7502-55574303bb02	2021-05-28 10:17:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:17:33.951+03	2021-05-28 10:17:33.958+03	
0747fb62-c650-8f8d-5541-e730dc1ccccf	2021-05-28 10:17:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:17:54.951+03	2021-05-28 10:17:54.961+03	
2ec4dd88-6c7a-e194-efa7-f57444b57798	2021-05-28 10:18:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:18:14.951+03	2021-05-28 10:18:14.96+03	
395194d1-7d81-4322-9740-b67700e0996e	2021-05-28 10:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:18:34.951+03	2021-05-28 10:18:34.96+03	
1d4c54b6-b5f1-348b-7e1a-3791dd4939c0	2021-05-28 10:18:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:18:54.951+03	2021-05-28 10:18:54.958+03	
705e499a-e8c9-4bc8-cee1-9c3bed275b3a	2021-05-28 10:19:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:19:14.951+03	2021-05-28 10:19:14.958+03	
f8f17296-bf90-ccb8-1492-017b59977220	2021-05-28 10:19:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:19:34.951+03	2021-05-28 10:19:34.959+03	
0a9065f5-8ae9-d2e0-0ac0-92ba6e9c2c4b	2021-05-28 10:19:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:19:54.951+03	2021-05-28 10:19:54.958+03	
15fe1f4a-0259-cd6a-b114-9f29ea53c984	2021-05-28 10:20:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:20:04.951+03	2021-05-28 10:20:04.958+03	
0bbdb849-2f87-1cba-a22f-eb7a5006e5fe	2021-05-28 10:20:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:20:24.951+03	2021-05-28 10:20:24.959+03	
a91fb576-f686-f51e-161d-755dcac17e26	2021-05-28 10:20:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:20:44.951+03	2021-05-28 10:20:44.96+03	
04039329-1cdf-81e6-e444-dde988025530	2021-05-28 10:21:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:21:05.951+03	2021-05-28 10:21:05.959+03	
620c0773-02f4-3913-35f4-e97887286ce6	2021-05-28 10:21:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:21:25.951+03	2021-05-28 10:21:25.961+03	
b1e31394-edea-4970-2fb5-78ca0043ade3	2021-05-28 10:21:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:21:45.951+03	2021-05-28 10:21:45.959+03	
dbbed8fa-2150-a850-1d5f-b033a15e62a1	2021-05-28 10:22:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:22:05.951+03	2021-05-28 10:22:05.959+03	
b0589bfa-f4e5-bbaf-7ebb-867700e8c09d	2021-05-28 10:22:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:22:25.951+03	2021-05-28 10:22:25.958+03	
75d24502-0681-d83c-c87b-f9ba1509e0d0	2021-05-28 10:22:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:22:46.951+03	2021-05-28 10:22:46.959+03	
b9d5836a-821c-83bd-2b76-0e096b4c1ad9	2021-05-28 10:23:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:23:06.951+03	2021-05-28 10:23:06.957+03	
333012b9-b157-e011-1850-2e10cc3bae95	2021-05-28 10:23:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:23:26.951+03	2021-05-28 10:23:26.959+03	
107e4f71-8f78-0b93-317a-d9aa30d8f01a	2021-05-28 10:23:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:23:46.951+03	2021-05-28 10:23:46.958+03	
530f0b45-be4a-b7e3-5764-3340ad2b7d5c	2021-05-28 10:24:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:24:06.951+03	2021-05-28 10:24:06.958+03	
264e0927-3e4f-34af-cf99-bc81ee67fdec	2021-05-28 10:24:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:24:26.951+03	2021-05-28 10:24:26.957+03	
ce7c76ce-3393-9681-e9ea-ec30fdf7fee4	2021-05-28 10:24:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:24:46.951+03	2021-05-28 10:24:46.965+03	
09c8a8a4-8ac3-7214-8b16-40748a43d826	2021-05-28 10:25:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:25:06.951+03	2021-05-28 10:25:06.958+03	
ce83320f-efc9-cc71-2378-8427210c52dd	2021-05-28 10:25:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:25:26.951+03	2021-05-28 10:25:26.959+03	
4182d25c-3ae6-87c1-f268-1a5c1367fa66	2021-05-28 10:25:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:25:46.951+03	2021-05-28 10:25:46.958+03	
3ec8086e-d5f6-4932-c058-bf1b20973c56	2021-05-28 10:26:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:26:06.951+03	2021-05-28 10:26:06.958+03	
f5f10bbf-7bfc-bd5f-a4ce-fb482f56db8a	2021-05-28 10:26:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:26:26.951+03	2021-05-28 10:26:26.958+03	
532f38b2-9c7d-d3ad-366d-65f20c8c6882	2021-05-28 10:26:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:26:46.951+03	2021-05-28 10:26:46.966+03	
ea2e3353-1215-8f02-a620-239f8feda97a	2021-05-28 10:27:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:27:06.951+03	2021-05-28 10:27:06.96+03	
0c3d1b68-c827-436f-4c58-073720b70936	2021-05-28 10:27:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:27:26.951+03	2021-05-28 10:27:26.959+03	
88fb6a84-c312-458c-39ed-a886b33c6b10	2021-05-28 10:27:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:27:46.951+03	2021-05-28 10:27:46.958+03	
58ee1ed9-a5ca-8fcb-903f-aa3f1f667755	2021-05-28 10:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:28:06.951+03	2021-05-28 10:28:06.958+03	
8b2276a9-3bfe-522c-14a3-6673251444c6	2021-05-28 10:28:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:28:26.951+03	2021-05-28 10:28:27.258+03	
3e8a06e5-361e-9215-3824-82da9cd35bc5	2021-05-28 10:28:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:28:46.951+03	2021-05-28 10:28:46.959+03	
c7915352-06f1-39a5-9cbd-4bf57423144e	2021-05-28 10:29:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:29:06.952+03	2021-05-28 10:29:06.959+03	
2d364b87-4cea-4a94-8625-61412602dcc4	2021-05-28 10:29:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:29:27.951+03	2021-05-28 10:29:27.958+03	
76150384-53ef-24d0-09e2-f18f7f73001e	2021-05-28 10:29:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:29:47.951+03	2021-05-28 10:29:47.958+03	
aa2d0316-5a0f-fc9c-99c4-06a4a1d30a16	2021-05-28 10:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 10:30:00.951+03	2021-05-28 10:30:00.957+03	ERROR
e650533d-5c3f-a17f-4576-ac5f7447b44c	2021-05-28 10:30:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:30:18.951+03	2021-05-28 10:30:18.958+03	
28252c65-78a5-4da5-92b5-e22460dd10dd	2021-05-28 10:30:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:30:38.952+03	2021-05-28 10:30:38.958+03	
4212a3e6-f308-1308-2cc8-575644d33ada	2021-05-28 10:30:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:30:59.951+03	2021-05-28 10:30:59.971+03	
db60c647-f6a1-0172-c5d5-81cf9335c0dc	2021-05-28 10:31:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:31:19.951+03	2021-05-28 10:31:19.961+03	
9a242a6e-d469-217b-f9f3-94eb418ae396	2021-05-28 10:31:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:31:39.951+03	2021-05-28 10:31:39.959+03	
ff399d59-729f-47a8-0830-3d84515c0d0f	2021-05-28 10:31:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:31:59.951+03	2021-05-28 10:31:59.959+03	
86887c87-8c7e-7850-ded5-06d942034b80	2021-05-28 10:32:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:32:20.951+03	2021-05-28 10:32:20.957+03	
34bf4fb5-a000-aecc-fced-32cbf518f763	2021-05-28 10:32:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:32:30.951+03	2021-05-28 10:32:30.96+03	
d9162e5c-d94d-f94f-6162-8b0951f2be3f	2021-05-28 10:32:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:32:50.951+03	2021-05-28 10:32:50.958+03	
a8080943-3b57-a63c-fabe-c4ba7ec7eea6	2021-05-28 10:33:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:33:10.951+03	2021-05-28 10:33:10.959+03	
25379367-f7cb-8ed2-5f43-1d5b6466c2e2	2021-05-28 10:33:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:33:30.951+03	2021-05-28 10:33:30.959+03	
e1803f14-a38c-af4f-0c1b-d3d36d4062fd	2021-05-28 10:33:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:33:50.951+03	2021-05-28 10:33:50.958+03	
19631bcd-f7d5-3eec-ce46-9fee32df47a3	2021-05-28 10:34:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:34:11.951+03	2021-05-28 10:34:11.958+03	
651968f5-eb6a-269b-4346-32f26ba7a9cb	2021-05-28 10:34:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:34:31.951+03	2021-05-28 10:34:31.958+03	
324fb83a-f632-1d1e-a35c-92dcac017b28	2021-05-28 10:34:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:34:51.951+03	2021-05-28 10:34:51.958+03	
8027cfa2-c69b-9c9d-0a04-630272b2a7d7	2021-05-28 10:35:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:35:11.951+03	2021-05-28 10:35:11.958+03	
41e31e5c-d92b-116c-e47f-2c8ca7a753af	2021-05-28 10:35:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:35:31.951+03	2021-05-28 10:35:31.958+03	
bcd7ab24-e7f2-c358-bd9c-bbfad19310fa	2021-05-28 10:35:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:35:51.951+03	2021-05-28 10:35:51.958+03	
9d482193-792c-851f-7b5f-727cb49307d1	2021-05-28 10:36:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:36:11.951+03	2021-05-28 10:36:11.958+03	
7a0ecb65-b2ac-f8a7-67ab-88bba8b730db	2021-05-28 10:36:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:36:31.951+03	2021-05-28 10:36:31.958+03	
52359c42-c6bd-0388-66e3-f3ed4a27cb15	2021-05-28 10:36:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:36:51.951+03	2021-05-28 10:36:51.96+03	
809f8df0-8950-1ae1-f3d6-21cf9b4de696	2021-05-28 10:37:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:37:11.951+03	2021-05-28 10:37:11.958+03	
5e81990a-959c-bcd5-6716-29bd6cebc893	2021-05-28 10:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:37:31.951+03	2021-05-28 10:37:31.958+03	
98035c00-6eb2-bf1e-4586-4d32e9d99505	2021-05-28 10:37:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:37:51.951+03	2021-05-28 10:37:51.959+03	
81ade343-43f6-3492-207e-70dc4c0268b5	2021-05-28 10:38:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:38:11.951+03	2021-05-28 10:38:11.958+03	
16d22c6c-5d3e-f44d-e81c-21c41ca4912f	2021-05-28 10:38:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:38:31.951+03	2021-05-28 10:38:31.959+03	
f5fe57c5-0240-8620-b6c2-2c8827903a65	2021-05-28 10:38:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:38:51.951+03	2021-05-28 10:38:51.957+03	
9d17af6f-55c8-3dc8-4c01-015247b78f3b	2021-05-28 10:39:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:39:11.951+03	2021-05-28 10:39:11.959+03	
8790f5a5-7928-cd7a-b3ec-b9cc61c853e0	2021-05-28 10:39:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:39:31.951+03	2021-05-28 10:39:31.957+03	
ab6f03a4-033c-b550-1332-44d2ed08300a	2021-05-28 10:39:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:39:51.951+03	2021-05-28 10:39:51.958+03	
87527f79-4415-e76f-b412-9945ec18e0da	2021-05-28 10:40:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:40:01.951+03	2021-05-28 10:40:01.96+03	
7cffa0e6-ad03-6023-8622-450599b944ff	2021-05-28 10:40:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:40:21.951+03	2021-05-28 10:40:21.957+03	
922ccc6c-f855-0da9-6231-a7b299ff2a73	2021-05-28 10:40:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:40:41.951+03	2021-05-28 10:40:41.959+03	
52d02236-7f2d-d95d-006b-80890b5ab09a	2021-05-28 10:41:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:41:01.951+03	2021-05-28 10:41:01.958+03	
0b445a9e-ee32-8db4-6e57-3dce1c5157a6	2021-05-28 10:41:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:41:21.951+03	2021-05-28 10:41:21.959+03	
1f801530-118a-279b-dfa6-a1b9bea60816	2021-05-28 10:41:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:41:41.951+03	2021-05-28 10:41:41.957+03	
17aadf1c-235b-9ece-5d46-04a947eb0c4c	2021-05-28 10:42:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:42:01.951+03	2021-05-28 10:42:01.958+03	
f0b843b9-76c2-5ec3-ee5a-d1f470bc7c6f	2021-05-28 10:42:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:42:21.951+03	2021-05-28 10:42:21.96+03	
7399a905-632a-2217-f2bb-fa902a285363	2021-05-28 10:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:42:41.951+03	2021-05-28 10:42:41.958+03	
7992ed7f-6605-e662-c14d-fc7201649e00	2021-05-28 10:43:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:43:01.951+03	2021-05-28 10:43:01.959+03	
ebea5730-b083-27c8-7c54-dadad13bd37d	2021-05-28 10:43:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:43:21.951+03	2021-05-28 10:43:21.957+03	
6ac7ff9d-4ba2-d4bc-bb4a-b2179aace49b	2021-05-28 10:43:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:43:41.951+03	2021-05-28 10:43:41.967+03	
cd6d505c-3deb-1255-a77e-a157e77c6374	2021-05-28 10:44:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:44:01.951+03	2021-05-28 10:44:01.958+03	
f269eb3b-5942-fc06-7315-b9a0ebc96e3a	2021-05-28 10:44:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:44:21.951+03	2021-05-28 10:44:21.958+03	
a9389ac7-ac99-e133-7ccd-aebd6198f1a6	2021-05-28 10:44:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:44:41.951+03	2021-05-28 10:44:41.959+03	
9bb5e75f-55c2-4979-4388-2744606d2f2f	2021-05-28 10:45:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:45:01.951+03	2021-05-28 10:45:01.959+03	
0d4237e2-3883-f86d-4d80-65436ab36d61	2021-05-28 10:45:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:45:21.951+03	2021-05-28 10:45:21.958+03	
80458f76-ac53-83ae-d7f8-24de1d815013	2021-05-28 10:45:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:45:41.951+03	2021-05-28 10:45:41.958+03	
7f7fcc8c-2b3f-6349-2f22-b7bb438d3670	2021-05-28 10:46:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:46:01.951+03	2021-05-28 10:46:01.959+03	
f1795df8-e13b-6fae-1ec2-1adbbfff9d9e	2021-05-28 10:46:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:46:21.951+03	2021-05-28 10:46:21.959+03	
4df2f267-57f6-67bf-b39f-37e36867168d	2021-05-28 10:46:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:46:41.951+03	2021-05-28 10:46:41.958+03	
dbded8d6-bf5e-c1cd-a3b4-aa9ae7039834	2021-05-28 10:47:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:47:01.951+03	2021-05-28 10:47:01.964+03	
30ca9a14-bc79-e488-cc5d-e1f5c48d82ee	2021-05-28 10:47:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:47:21.951+03	2021-05-28 10:47:21.958+03	
87424398-c616-dab3-7437-eed2c4fdfc34	2021-05-28 10:47:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:47:41.951+03	2021-05-28 10:47:41.958+03	
89a2d976-f59b-e7ba-5c08-3f11ea6eedcb	2021-05-28 10:48:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:48:01.951+03	2021-05-28 10:48:01.958+03	
083ce55a-8428-9348-7881-b4ca8bf462b5	2021-05-28 10:48:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:48:21.951+03	2021-05-28 10:48:21.959+03	
79cdaced-ff28-3e5f-e421-a809f05db18c	2021-05-28 10:48:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:48:41.952+03	2021-05-28 10:48:41.96+03	
1d67e0f8-5546-32ac-a75b-f372abecf264	2021-05-28 10:49:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:49:02.951+03	2021-05-28 10:49:02.959+03	
cc8cb57f-87dc-83a9-72bd-112d2ae1bada	2021-05-28 10:49:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:49:22.952+03	2021-05-28 10:49:22.959+03	
5b33ba92-f2f3-2b8e-1db4-0febba061a33	2021-05-28 10:49:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:49:43.951+03	2021-05-28 10:49:43.958+03	
378bc0a0-57e4-008d-afb3-91e607de0101	2021-05-28 10:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 10:50:00.951+03	2021-05-28 10:50:00.957+03	ERROR
cb9d2a10-8d35-169f-fe1a-d22d3b49cc11	2021-05-28 10:50:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:50:13.951+03	2021-05-28 10:50:13.963+03	
753044d6-8a89-b8fc-2520-7f27d9c84a27	2021-05-28 10:50:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:50:34.951+03	2021-05-28 10:50:34.959+03	
2b711e65-f725-c40a-ae88-889949f4e5eb	2021-05-28 10:50:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:50:54.951+03	2021-05-28 10:50:54.958+03	
63ae1871-bb26-863e-341c-073c27646629	2021-05-28 10:51:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:51:14.951+03	2021-05-28 10:51:14.958+03	
f11d9a1e-bad0-7a34-e77b-c354a8828452	2021-05-28 10:51:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:51:34.951+03	2021-05-28 10:51:34.958+03	
414fd872-7365-41e3-05a0-1d161f1aad45	2021-05-28 10:51:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:51:55.951+03	2021-05-28 10:51:55.958+03	
6efddf95-6cc6-b7de-0a51-3b4b40a3036d	2021-05-28 10:52:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:52:16.951+03	2021-05-28 10:52:16.958+03	
89b40ed7-6344-e6cb-ceaa-ab2edc1fcac0	2021-05-28 10:52:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:52:36.951+03	2021-05-28 10:52:36.959+03	
824e1f40-cc79-b295-14e4-535ef7fa9ae4	2021-05-28 10:52:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:52:56.951+03	2021-05-28 10:52:56.958+03	
c2d923ae-250e-2363-c9c3-d79ebf35c576	2021-05-28 10:32:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:32:40.951+03	2021-05-28 10:32:40.96+03	
678784eb-82c5-2c80-734d-fc8f95827a5e	2021-05-28 10:33:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:33:00.951+03	2021-05-28 10:33:00.959+03	
88e6ddf8-6393-277d-3b04-9590cbaff4a5	2021-05-28 10:33:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:33:20.951+03	2021-05-28 10:33:20.959+03	
d988d569-da51-44a8-e585-5287335270c0	2021-05-28 10:33:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:33:40.951+03	2021-05-28 10:33:40.96+03	
e0ed8745-ffaf-d98e-512e-c593494f5ea2	2021-05-28 10:34:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:34:00.952+03	2021-05-28 10:34:00.962+03	
cc4b5932-7cc9-d61e-90b4-b7ac2d00910c	2021-05-28 10:34:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:34:21.951+03	2021-05-28 10:34:21.958+03	
65f1063a-18e3-4a68-6cb5-f57e5bc7d13a	2021-05-28 10:34:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:34:41.951+03	2021-05-28 10:34:41.957+03	
0b642265-1d9f-5ffc-29a5-ef3ab06f8d8e	2021-05-28 10:35:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:35:01.951+03	2021-05-28 10:35:01.958+03	
34f38294-cacb-13fa-34c1-10d2b3212836	2021-05-28 10:35:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:35:21.951+03	2021-05-28 10:35:21.958+03	
2c14b311-81b0-1e56-2896-5276c64e9595	2021-05-28 10:35:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:35:41.951+03	2021-05-28 10:35:41.958+03	
2eeab01b-5621-a10c-04db-7fec5abf0188	2021-05-28 10:36:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:36:01.951+03	2021-05-28 10:36:01.959+03	
e5971684-61c1-8a91-10f6-f5d229f08d3a	2021-05-28 10:36:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:36:21.951+03	2021-05-28 10:36:21.957+03	
f7f78953-530d-eb87-8d15-5ffbee8a8330	2021-05-28 10:36:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:36:41.951+03	2021-05-28 10:36:41.958+03	
80da08e7-c174-3130-5297-22e3d8296d63	2021-05-28 10:37:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:37:01.951+03	2021-05-28 10:37:01.958+03	
a7abdd10-b085-48af-1f50-05ff1e90165f	2021-05-28 10:37:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:37:21.951+03	2021-05-28 10:37:21.967+03	
ff037f64-e0b2-c7dd-3ed4-04fdc4c37cc0	2021-05-28 10:37:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:37:41.951+03	2021-05-28 10:37:41.957+03	
daa69232-6b8f-767b-a170-ba09258aa83e	2021-05-28 10:38:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:38:01.951+03	2021-05-28 10:38:01.966+03	
a1e6c916-f24f-ab59-56c6-dc16d1705ca9	2021-05-28 10:38:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:38:21.951+03	2021-05-28 10:38:21.958+03	
dfecefb9-82f0-7ae9-eecd-4d35af5d6e42	2021-05-28 10:38:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:38:41.951+03	2021-05-28 10:38:41.958+03	
ecb36b35-b083-1988-2a87-57db53c4a4df	2021-05-28 10:39:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:39:01.951+03	2021-05-28 10:39:01.959+03	
d9449b01-a471-885d-8abb-8e18b82e1801	2021-05-28 10:39:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:39:21.951+03	2021-05-28 10:39:21.958+03	
cfbde205-759f-7795-cf96-410a4ee5070b	2021-05-28 10:39:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:39:41.951+03	2021-05-28 10:39:41.96+03	
26f7193d-ac64-8d33-4952-07b1787b9cab	2021-05-28 10:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 10:40:00.951+03	2021-05-28 10:40:00.956+03	ERROR
17d98f42-7459-c341-df4a-9d630854ff6b	2021-05-28 10:40:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:40:11.951+03	2021-05-28 10:40:11.965+03	
f586d894-14ed-4680-4cdc-a4212f78edf9	2021-05-28 10:40:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:40:31.951+03	2021-05-28 10:40:31.958+03	
4f072a4b-87b9-dfd4-8d91-cc737d99100b	2021-05-28 10:40:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:40:51.951+03	2021-05-28 10:40:51.961+03	
216858fd-a15b-738c-1f75-b198cd88a554	2021-05-28 10:41:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:41:11.951+03	2021-05-28 10:41:11.959+03	
4a0a3dac-a0e8-2957-478e-f3f250449f47	2021-05-28 10:41:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:41:31.951+03	2021-05-28 10:41:31.957+03	
2d65a66f-bf5a-90be-39d3-2d52fa2d6bad	2021-05-28 10:41:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:41:51.951+03	2021-05-28 10:41:51.958+03	
0349a764-ee6a-d410-896d-f8417b06821a	2021-05-28 10:42:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:42:11.951+03	2021-05-28 10:42:11.958+03	
f4459634-34e4-cfd5-2075-52597a64c6e7	2021-05-28 10:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:42:31.951+03	2021-05-28 10:42:31.957+03	
3f61ce7a-dd99-7a57-e832-d13e110a2c81	2021-05-28 10:42:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:42:51.951+03	2021-05-28 10:42:51.958+03	
7d536c1e-7da9-5774-a619-8e5005e4c422	2021-05-28 10:43:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:43:11.951+03	2021-05-28 10:43:11.959+03	
e4e2947b-8a2b-8678-bfa0-a927940fde6f	2021-05-28 10:43:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:43:31.951+03	2021-05-28 10:43:31.958+03	
28c66a21-feb5-f1b5-d507-057f5dfdce08	2021-05-28 10:43:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:43:51.951+03	2021-05-28 10:43:51.958+03	
d9209652-082b-1443-7516-88fd2924ab20	2021-05-28 10:44:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:44:11.951+03	2021-05-28 10:44:11.958+03	
7205e0a1-8a12-2976-2af1-139a3212a8a7	2021-05-28 10:44:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:44:31.951+03	2021-05-28 10:44:31.958+03	
31c2c98c-891c-19e5-2d67-a9afb7ee7071	2021-05-28 10:44:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:44:51.951+03	2021-05-28 10:44:51.957+03	
12ccb378-a5e7-b1a4-c5f0-2db8b8e1217d	2021-05-28 10:45:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:45:11.951+03	2021-05-28 10:45:11.958+03	
d69ffe22-609d-7536-aabe-c989b263860a	2021-05-28 10:45:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:45:31.951+03	2021-05-28 10:45:31.959+03	
3798796e-a1e9-db01-6d1e-cfef22ffbe0d	2021-05-28 10:45:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:45:51.951+03	2021-05-28 10:45:51.958+03	
78b342f8-8713-5ae7-3067-d24dafa925ed	2021-05-28 10:46:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:46:11.951+03	2021-05-28 10:46:11.959+03	
864bc9ad-be38-a57f-15d7-4925ec00ec02	2021-05-28 10:46:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:46:31.951+03	2021-05-28 10:46:31.957+03	
7aef319d-749b-b00a-c2f6-865e3eedff77	2021-05-28 10:46:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:46:51.951+03	2021-05-28 10:46:51.959+03	
d6bdd88d-ea90-8e3d-9e22-e13bda0df8d4	2021-05-28 10:47:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:47:11.951+03	2021-05-28 10:47:11.96+03	
7978826c-e70d-1df3-6309-9e4f61759f49	2021-05-28 10:47:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:47:31.951+03	2021-05-28 10:47:31.958+03	
feb78f73-2bf4-77ec-b2b5-3bb640abf02d	2021-05-28 10:47:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:47:51.951+03	2021-05-28 10:47:51.959+03	
e7b6410d-27e9-5ce5-c690-2854d1d33e22	2021-05-28 10:48:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:48:11.951+03	2021-05-28 10:48:11.957+03	
7bcf9b81-fc6c-d493-ebf4-f71e58bb197b	2021-05-28 10:48:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:48:31.951+03	2021-05-28 10:48:31.96+03	
942e1d8a-eeca-883c-0bb6-d315270989bd	2021-05-28 10:48:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:48:52.951+03	2021-05-28 10:48:52.958+03	
bdd26497-0fb0-6db2-0bd8-ee84232de0b1	2021-05-28 10:49:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:49:12.952+03	2021-05-28 10:49:12.961+03	
9d910329-15e5-b7d5-bcff-b82808221913	2021-05-28 10:49:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:49:33.951+03	2021-05-28 10:49:33.958+03	
6af33ac7-8223-518f-0830-557dd14f154d	2021-05-28 10:49:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:49:53.951+03	2021-05-28 10:49:53.958+03	
f8d88d61-6723-b115-8c96-77d5fef7e28a	2021-05-28 10:50:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:50:03.951+03	2021-05-28 10:50:03.958+03	
de844ac2-84dc-a09b-7054-542c7cc63484	2021-05-28 10:50:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:50:23.952+03	2021-05-28 10:50:23.96+03	
ce491275-9a4a-7d65-4997-866e812cf53b	2021-05-28 10:50:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:50:44.951+03	2021-05-28 10:50:44.958+03	
9ac2c9d7-0576-5802-210f-e4492483b98a	2021-05-28 10:51:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:51:04.951+03	2021-05-28 10:51:04.958+03	
36e50d06-fe07-a680-8129-2da5fb761263	2021-05-28 10:51:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:51:24.951+03	2021-05-28 10:51:24.96+03	
e7cf813f-087b-d684-7987-72e6d99f3ea9	2021-05-28 10:51:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:51:44.952+03	2021-05-28 10:51:44.959+03	
67449771-9ae1-572e-5872-93df12b0690b	2021-05-28 10:52:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:52:05.952+03	2021-05-28 10:52:05.959+03	
b4c37785-e8d5-33a1-e527-408e958cdc97	2021-05-28 10:52:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:52:26.951+03	2021-05-28 10:52:26.958+03	
bd0050ce-60a3-dc3e-0521-a7c64a4343af	2021-05-28 10:52:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:52:46.951+03	2021-05-28 10:52:46.958+03	
659beba1-8515-816c-bb63-4073bd8f8b50	2021-05-28 10:53:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:53:06.951+03	2021-05-28 10:53:06.959+03	
34272f85-ed40-7432-1296-e4eb1aeaba22	2021-05-28 10:53:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:53:16.952+03	2021-05-28 10:53:16.961+03	
b0b5196d-cd1d-f416-a4c4-1d1173af752d	2021-05-28 10:53:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:53:38.951+03	2021-05-28 10:53:38.958+03	
d8219b67-7c5c-91c6-d1ac-2cbde6cb6184	2021-05-28 10:53:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:53:58.951+03	2021-05-28 10:53:58.96+03	
40f56221-0cec-d4ca-be24-d70f925b4d9e	2021-05-28 10:54:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:54:18.951+03	2021-05-28 10:54:18.959+03	
086c43aa-57a9-fec5-af2e-e42dd20168d7	2021-05-28 10:54:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:54:38.951+03	2021-05-28 10:54:38.964+03	
f9c13943-c4f7-e6db-58da-0815544efcef	2021-05-28 10:54:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:54:58.951+03	2021-05-28 10:54:58.957+03	
0b9fbcb6-1579-4f2e-8250-d9e2f8c72c89	2021-05-28 10:55:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:55:18.952+03	2021-05-28 10:55:18.96+03	
cb941bab-2ae6-8375-bfc6-75602aec18d3	2021-05-28 10:55:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:55:39.951+03	2021-05-28 10:55:39.959+03	
e49b1ea6-4b4a-1cb2-29ed-02b743632df8	2021-05-28 10:55:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:55:59.951+03	2021-05-28 10:55:59.958+03	
1d79bfcd-b6f3-7670-d3eb-19a9e24bd4f3	2021-05-28 10:56:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:56:19.951+03	2021-05-28 10:56:19.958+03	
c8057a8a-5a5e-c0e1-49b5-e1bbda79a76d	2021-05-28 10:56:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:56:40.951+03	2021-05-28 10:56:40.96+03	
26c32127-f873-716e-6189-c45d958b9343	2021-05-28 10:57:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:57:00.951+03	2021-05-28 10:57:00.957+03	
69c303d5-c220-a5e8-b2d2-466d9747b26d	2021-05-28 10:57:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:57:21.951+03	2021-05-28 10:57:21.959+03	
3cfdeef4-62ba-d8cf-e1ec-af2dca296d28	2021-05-28 10:57:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:57:41.951+03	2021-05-28 10:57:41.963+03	
947062fc-5da3-8e05-cff2-ce412846a8b3	2021-05-28 10:58:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:58:01.951+03	2021-05-28 10:58:01.958+03	
682d68d1-4767-c073-3987-40f5ca132515	2021-05-28 10:58:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:58:21.951+03	2021-05-28 10:58:21.959+03	
1cbcdfde-cac4-787d-3e23-0d4625345a1e	2021-05-28 10:58:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:58:41.951+03	2021-05-28 10:58:41.959+03	
efd96c1a-11e1-1687-3bb5-e613bc6c7251	2021-05-28 10:59:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:59:01.951+03	2021-05-28 10:59:01.957+03	
4822cdaf-9186-eafc-231d-e89711830dee	2021-05-28 10:59:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:59:21.951+03	2021-05-28 10:59:21.958+03	
2de8877d-0d79-d31e-2083-3ae9735f3085	2021-05-28 10:59:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:59:41.951+03	2021-05-28 10:59:41.96+03	
932e802e-1f7f-4758-fa6f-585bcc049beb	2021-05-28 11:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 11:00:00.951+03	2021-05-28 11:00:00.957+03	ERROR
3e210e11-27ca-221b-a1ed-e3ebc850e087	2021-05-28 11:00:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:00:13.951+03	2021-05-28 11:00:13.96+03	
b560fba2-60e9-e61f-cc58-ead7a5dedbd5	2021-05-28 11:00:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:00:33.951+03	2021-05-28 11:00:33.958+03	
deaf0237-496f-cc2e-cf92-87aab56e2aef	2021-05-28 11:00:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:00:53.951+03	2021-05-28 11:00:53.96+03	
4e2043c4-85a5-d518-5cb3-98ef7c151411	2021-05-28 11:01:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:01:13.951+03	2021-05-28 11:01:13.961+03	
267e8aef-7b48-6aec-ef8d-6ce1927c3ae6	2021-05-28 11:01:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:01:33.952+03	2021-05-28 11:01:33.96+03	
e4f62772-64d5-2129-b989-5c8f2e6a4bd7	2021-05-28 11:01:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:01:54.951+03	2021-05-28 11:01:54.958+03	
5d2553da-68b6-ff0b-6c2e-31d6bcc7e30c	2021-05-28 11:02:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:02:14.951+03	2021-05-28 11:02:14.96+03	
9c6a0054-1f64-01c2-d4b2-3a37b2db5690	2021-05-28 11:02:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:02:35.951+03	2021-05-28 11:02:35.959+03	
c05ce3cc-ee37-9e6e-379e-561d01b83c3a	2021-05-28 11:02:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:02:55.951+03	2021-05-28 11:02:55.96+03	
5d1f3ecb-686b-25f8-16de-b65ed17dd6ab	2021-05-28 11:03:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:03:15.951+03	2021-05-28 11:03:15.959+03	
007f0953-1ad6-cb93-a3fe-4fe838447f5f	2021-05-28 11:03:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:03:35.951+03	2021-05-28 11:03:35.959+03	
c1f04253-7fbc-ae3b-aab5-59b5cf4ad563	2021-05-28 11:03:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:03:55.952+03	2021-05-28 11:03:55.962+03	
a2005464-92ac-4887-0947-8fa1c1ef0b32	2021-05-28 11:04:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:04:16.951+03	2021-05-28 11:04:16.981+03	
85f9f92e-f0e9-4123-8a40-c858e7702e23	2021-05-28 11:04:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:04:37.951+03	2021-05-28 11:04:37.959+03	
bca488f5-bf09-7f8e-8807-dfc8a23bf778	2021-05-28 11:04:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:04:58.951+03	2021-05-28 11:04:58.959+03	
a214ec7a-10b8-3943-e277-2a796834e07a	2021-05-28 11:05:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:05:18.952+03	2021-05-28 11:05:18.96+03	
11b46a13-7c7e-12df-a412-ed8051b037ac	2021-05-28 11:05:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:05:39.951+03	2021-05-28 11:05:39.96+03	
3f8935cc-7da1-b3c8-db8e-a72d90d2ffb4	2021-05-28 11:06:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:06:00.951+03	2021-05-28 11:06:00.958+03	
d5df7c23-da64-b302-0ad9-30d4d7d854b9	2021-05-28 11:06:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:06:20.951+03	2021-05-28 11:06:20.959+03	
3315b62a-5a35-e553-164c-a50532c07b85	2021-05-28 11:06:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:06:40.951+03	2021-05-28 11:06:40.959+03	
2b81734b-cc4f-2768-2b30-5a42de1c199d	2021-05-28 11:07:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:07:00.951+03	2021-05-28 11:07:00.967+03	
dbafbf0a-267c-517e-2b48-3cd0875de88d	2021-05-28 11:07:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:07:20.951+03	2021-05-28 11:07:20.958+03	
a5c6868d-d4d6-a86a-0242-bc3e985987e6	2021-05-28 11:07:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:07:40.951+03	2021-05-28 11:07:40.957+03	
8ccaf1d9-c251-5035-659a-6922b2c4c388	2021-05-28 11:08:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:08:00.951+03	2021-05-28 11:08:00.958+03	
85e47455-c8f4-e60e-8d1c-25b0eaecf32a	2021-05-28 11:08:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:08:20.951+03	2021-05-28 11:08:20.959+03	
5d0ea3bd-6cd1-28fc-6164-920bab702965	2021-05-28 11:08:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:08:40.951+03	2021-05-28 11:08:40.959+03	
3a3f5219-00e8-eee6-568d-67b58ccd0657	2021-05-28 11:09:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:09:00.951+03	2021-05-28 11:09:00.961+03	
ecdb8a2c-3c7e-b006-380e-f8c9eea69866	2021-05-28 11:09:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:09:20.951+03	2021-05-28 11:09:20.958+03	
00897c3c-78fe-4312-b479-2a0aa6d0b8a3	2021-05-28 11:09:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:09:40.951+03	2021-05-28 11:09:40.961+03	
9bd704f5-458b-32c2-b41b-1bf88c7945ab	2021-05-28 11:10:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 11:10:00.951+03	2021-05-28 11:10:00.96+03	ERROR
978a4b92-c0ca-b139-bac4-079825d4a88a	2021-05-28 11:10:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:10:20.951+03	2021-05-28 11:10:20.959+03	
b52733cd-9ac8-6c24-cf83-5286933b6fbf	2021-05-28 11:10:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:10:40.951+03	2021-05-28 11:10:40.958+03	
0802f55f-8637-96ee-1a92-fb65a333a2ae	2021-05-28 11:11:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:11:00.951+03	2021-05-28 11:11:00.959+03	
dd45b899-dc06-8f0c-0020-a3c12dd90dec	2021-05-28 11:11:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:11:20.951+03	2021-05-28 11:11:20.958+03	
4e393cd2-6386-ff9e-4913-cab070c2982f	2021-05-28 11:11:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:11:40.952+03	2021-05-28 11:11:40.962+03	
c03c1d7c-bb0c-d3da-1fd0-9612fb760c41	2021-05-28 11:12:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:12:01.951+03	2021-05-28 11:12:01.958+03	
33ff9233-d144-732e-2c37-7963736287c4	2021-05-28 11:12:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:12:21.951+03	2021-05-28 11:12:21.958+03	
1bb50468-2aba-9c3b-f114-e9c4efcfa264	2021-05-28 11:12:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:12:41.951+03	2021-05-28 11:12:41.958+03	
3bae0c68-6323-01d9-61fd-338d2d5143f3	2021-05-28 11:13:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:13:01.951+03	2021-05-28 11:13:01.963+03	
ca686802-e57f-7205-382b-b2a8c399d572	2021-05-28 11:13:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:13:21.951+03	2021-05-28 11:13:21.957+03	
ed4a6455-c1d6-01ed-bb67-6159ff0c09e3	2021-05-28 11:13:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:13:41.951+03	2021-05-28 11:13:41.96+03	
1a532fc1-6266-6d10-c664-37e963d37500	2021-05-28 11:14:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:14:01.951+03	2021-05-28 11:14:01.958+03	
ca2048f1-9c42-aa42-2c8a-fced55177855	2021-05-28 10:53:27.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:53:27.953+03	2021-05-28 10:53:27.961+03	
ece4f6ce-dfa1-2594-2b3b-5e68e488a385	2021-05-28 10:53:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:53:48.951+03	2021-05-28 10:53:48.958+03	
c64ff788-0705-66fa-790c-4c51d9ce9271	2021-05-28 10:54:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:54:08.951+03	2021-05-28 10:54:08.958+03	
3c0c3259-bece-f193-a177-b572d6899eaf	2021-05-28 10:54:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:54:28.951+03	2021-05-28 10:54:28.958+03	
2d2a7a1b-a9c7-ac29-7e40-68a7755e5174	2021-05-28 10:54:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:54:48.951+03	2021-05-28 10:54:48.958+03	
17d2df30-b0ca-c24c-b334-c8f959718919	2021-05-28 10:55:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:55:08.951+03	2021-05-28 10:55:08.957+03	
fb874bcf-11b4-17f0-37c4-2f55130f3c0f	2021-05-28 10:55:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:55:29.951+03	2021-05-28 10:55:29.958+03	
8d29a730-7865-d41d-45ed-cfe8afa0b4e7	2021-05-28 10:55:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:55:49.951+03	2021-05-28 10:55:49.96+03	
25753fdf-0d75-b0cc-b1ee-4dbb649a678d	2021-05-28 10:56:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:56:09.951+03	2021-05-28 10:56:09.957+03	
f392483d-2316-42e7-8ffe-6b3038cd3da2	2021-05-28 10:56:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:56:29.952+03	2021-05-28 10:56:29.959+03	
caa3c397-f8f3-5ab5-a6a7-574533d87590	2021-05-28 10:56:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:56:50.951+03	2021-05-28 10:56:50.958+03	
663a7896-40cc-83ca-c7ac-ec7db7f3d28d	2021-05-28 10:57:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:57:10.952+03	2021-05-28 10:57:10.959+03	
53253604-65a5-490f-f280-a734899f450e	2021-05-28 10:57:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:57:31.951+03	2021-05-28 10:57:31.96+03	
9e6b3238-b8ed-c364-be0c-0086947422ef	2021-05-28 10:57:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:57:51.951+03	2021-05-28 10:57:51.958+03	
dd868d1c-e1af-070a-a8c7-7f81130350af	2021-05-28 10:58:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:58:11.951+03	2021-05-28 10:58:11.96+03	
6c170f44-5643-34f4-3adb-72af4218eb14	2021-05-28 10:58:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:58:31.951+03	2021-05-28 10:58:31.967+03	
a80ddf3d-9614-c66e-c52f-ea21c0d9f198	2021-05-28 10:58:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:58:51.951+03	2021-05-28 10:58:51.958+03	
66f0863a-fc4a-3535-1d74-2775a423f2c6	2021-05-28 10:59:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:59:11.951+03	2021-05-28 10:59:11.96+03	
3d1009e8-8256-eb60-72b4-e4e10148024b	2021-05-28 10:59:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:59:31.951+03	2021-05-28 10:59:31.963+03	
3ff77fe3-7b5a-e63d-fe91-4d70add3deeb	2021-05-28 10:59:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 10:59:51.952+03	2021-05-28 10:59:51.959+03	
beceabd9-e6a4-0359-69e0-cf1a0d87c983	2021-05-28 11:00:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:00:02.952+03	2021-05-28 11:00:02.96+03	
5b30e751-5f39-dc6f-4200-1b17b168dd72	2021-05-28 11:00:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:00:23.951+03	2021-05-28 11:00:23.959+03	
f332ecbc-d850-a76b-69bf-d01fd5889d27	2021-05-28 11:00:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:00:43.951+03	2021-05-28 11:00:43.961+03	
eae3158d-f2a6-2c59-edf9-063d4ce14086	2021-05-28 11:01:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:01:03.951+03	2021-05-28 11:01:03.959+03	
0329680c-e444-651c-0243-527a69ef21f6	2021-05-28 11:01:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:01:23.951+03	2021-05-28 11:01:23.957+03	
0d736e6e-8179-5100-6bf9-018fed4a0691	2021-05-28 11:01:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:01:44.951+03	2021-05-28 11:01:44.967+03	
e289576a-f271-aa5d-afd7-860acd9dfbc5	2021-05-28 11:02:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:02:04.951+03	2021-05-28 11:02:04.958+03	
8366b110-f860-125b-8ca8-1f35dcd71ab7	2021-05-28 11:02:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:02:24.952+03	2021-05-28 11:02:24.961+03	
5a914f09-0bd9-d4c2-898c-7e9e41faf15e	2021-05-28 11:02:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:02:45.951+03	2021-05-28 11:02:45.959+03	
b16246ad-bf4c-5d3d-b7ed-2c1eb5ba7592	2021-05-28 11:03:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:03:05.951+03	2021-05-28 11:03:05.961+03	
71a7c0b4-0bd7-9042-191b-5efb7b50b8a3	2021-05-28 11:03:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:03:25.951+03	2021-05-28 11:03:25.96+03	
f52d7fd3-7f8f-8c38-6ae7-4c84c990fa7b	2021-05-28 11:03:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:03:45.951+03	2021-05-28 11:03:45.96+03	
4d533d6c-d89b-675f-1024-9eb191246023	2021-05-28 11:04:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:04:06.951+03	2021-05-28 11:04:06.959+03	
b17b1744-b892-1e51-0c36-765b31615bd5	2021-05-28 11:04:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:04:26.952+03	2021-05-28 11:04:26.962+03	
b23e6729-6e3a-97d3-0df7-b4598ba0bb27	2021-05-28 11:04:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:04:47.952+03	2021-05-28 11:04:47.965+03	
f74389d5-cc0e-0949-1346-ff827fc42a85	2021-05-28 11:05:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:05:08.951+03	2021-05-28 11:05:08.96+03	
69c69796-28a3-68b1-ebad-5b7680e7779a	2021-05-28 11:05:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:05:29.951+03	2021-05-28 11:05:29.96+03	
9fa14d64-7893-7058-ae18-e2cba6acbddd	2021-05-28 11:05:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:05:49.952+03	2021-05-28 11:05:49.959+03	
e67fab5e-a3ba-50eb-6234-c44abd12e6a7	2021-05-28 11:06:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:06:10.951+03	2021-05-28 11:06:10.958+03	
20163276-2369-628a-4018-4af0294ab8e1	2021-05-28 11:06:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:06:30.951+03	2021-05-28 11:06:30.958+03	
c39d0448-bd97-47bc-2558-94e7995a9e57	2021-05-28 11:06:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:06:50.951+03	2021-05-28 11:06:50.958+03	
b838cdad-ed13-eaf7-026f-c5bc85d57bda	2021-05-28 11:07:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:07:10.951+03	2021-05-28 11:07:10.958+03	
043b9f0f-8650-752a-dadb-3421cdd0aeb9	2021-05-28 11:07:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:07:30.951+03	2021-05-28 11:07:30.958+03	
60294886-961c-2106-9b35-35599dd20ea3	2021-05-28 11:07:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:07:50.951+03	2021-05-28 11:07:50.961+03	
582568c2-d6ec-edae-9836-3817be7933e3	2021-05-28 11:08:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:08:10.951+03	2021-05-28 11:08:10.959+03	
add3087e-b820-c447-79d4-764db850c1af	2021-05-28 11:08:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:08:30.951+03	2021-05-28 11:08:30.958+03	
a325feec-dd9d-5e3f-f9dd-f665d4ff9a1f	2021-05-28 11:08:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:08:50.951+03	2021-05-28 11:08:50.959+03	
21af9996-eb18-28ae-ed98-f6a2a38467b2	2021-05-28 11:09:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:09:10.951+03	2021-05-28 11:09:10.959+03	
da201e02-d1c6-567f-be12-b1f5ece4800f	2021-05-28 11:09:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:09:30.951+03	2021-05-28 11:09:30.958+03	
9eb351c9-9850-5ba4-00a2-06847b689ecd	2021-05-28 11:09:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:09:50.951+03	2021-05-28 11:09:50.959+03	
6b6e4dab-441e-bf95-b451-4daa0a53bd8a	2021-05-28 11:10:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:10:00.951+03	2021-05-28 11:10:00.974+03	
1b75ff13-9bd2-de8f-d8ba-dcd777a316b3	2021-05-28 11:10:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:10:10.951+03	2021-05-28 11:10:10.959+03	
b9a1e8f4-2794-201b-b161-9fb76ce0d22b	2021-05-28 11:10:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:10:30.951+03	2021-05-28 11:10:30.958+03	
3a6f6963-2c2b-33ff-c8af-464abbbfd7ec	2021-05-28 11:10:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:10:50.951+03	2021-05-28 11:10:50.959+03	
728a591a-5e0c-d17f-b855-852e68ed2005	2021-05-28 11:11:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:11:10.951+03	2021-05-28 11:11:10.958+03	
e539fd3b-6d1f-290c-7c54-249d39947196	2021-05-28 11:11:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:11:30.951+03	2021-05-28 11:11:30.959+03	
2bb67b30-ea0c-194e-ed4f-1446108134a8	2021-05-28 11:11:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:11:51.951+03	2021-05-28 11:11:51.957+03	
9951b530-0de5-4b75-f3e7-bebfeb5f8ab0	2021-05-28 11:12:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:12:11.951+03	2021-05-28 11:12:11.959+03	
1cd77e97-dff7-fada-72e7-b66639c4c9d6	2021-05-28 11:12:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:12:31.951+03	2021-05-28 11:12:31.958+03	
9425e8b1-059b-43fa-3221-99bcec3fedf4	2021-05-28 11:12:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:12:51.951+03	2021-05-28 11:12:51.958+03	
c4783fed-7a2b-ea72-f420-147bc1dadfab	2021-05-28 11:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:13:11.951+03	2021-05-28 11:13:11.959+03	
a704a3d2-10b4-a7ad-9d1b-0afc9da8ba03	2021-05-28 11:13:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:13:31.951+03	2021-05-28 11:13:31.958+03	
1bfd53b1-de46-8119-282b-c9d086e889a3	2021-05-28 11:13:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:13:51.951+03	2021-05-28 11:13:51.959+03	
c7e502a5-4338-1d61-1096-96f6c9159fbf	2021-05-28 11:14:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:14:11.951+03	2021-05-28 11:14:11.959+03	
0616c6c0-378b-a231-6716-fc97e8286028	2021-05-28 11:14:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:14:31.951+03	2021-05-28 11:14:31.958+03	
467b1f5c-18ab-fdf2-57f6-a734285ead5c	2021-05-28 11:14:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:14:51.951+03	2021-05-28 11:14:51.957+03	
27cac1bc-8258-4037-0a09-d21f4318d53a	2021-05-28 11:15:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:15:11.952+03	2021-05-28 11:15:11.959+03	
1f6ed623-00bd-050b-5300-a16c6fcc8791	2021-05-28 11:15:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:15:32.952+03	2021-05-28 11:15:32.959+03	
20a7ba92-1a52-8cc2-60ca-c2b1af16d69b	2021-05-28 11:15:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:15:53.952+03	2021-05-28 11:15:53.959+03	
ab151e1c-4840-2660-7dbe-2226fc399988	2021-05-28 11:16:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:16:14.951+03	2021-05-28 11:16:14.964+03	
5cf6b233-b005-2f68-6075-672d23309bb3	2021-05-28 11:16:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:16:34.951+03	2021-05-28 11:16:34.958+03	
e3149bdf-6f35-a2ad-d242-1a34922668b8	2021-05-28 11:16:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:16:54.951+03	2021-05-28 11:16:54.96+03	
7a944d04-1284-a794-dd02-08568aef3411	2021-05-28 11:17:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:17:14.951+03	2021-05-28 11:17:14.962+03	
63596b88-f644-94bd-c203-8d86459c6514	2021-05-28 11:17:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:17:35.951+03	2021-05-28 11:17:35.96+03	
bec3ab6b-b982-bd90-2d99-3c1403e508b3	2021-05-28 11:17:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:17:55.951+03	2021-05-28 11:17:55.961+03	
f44eb534-df3a-3a83-5766-3a9ea04c8aa5	2021-05-28 11:18:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:18:15.952+03	2021-05-28 11:18:15.961+03	
49feff76-b474-48bf-9163-b150692b4cef	2021-05-28 11:18:37.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:18:37.953+03	2021-05-28 11:18:37.963+03	
0e681001-0133-26a2-88d1-680e434a7a97	2021-05-28 11:18:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:18:58.951+03	2021-05-28 11:18:58.959+03	
d2c54af3-2fc6-fd7e-ad39-3bc7ed991f7c	2021-05-28 11:19:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:19:18.951+03	2021-05-28 11:19:18.97+03	
c246c4aa-d0a9-9d03-ad2f-f3d837555bc3	2021-05-28 11:19:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:19:38.951+03	2021-05-28 11:19:38.958+03	
cdbaf8b6-94ab-7bd9-13b1-407e78848e2e	2021-05-28 11:19:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:19:58.951+03	2021-05-28 11:19:58.959+03	
aa433062-b151-d82d-e691-d2206f7978cf	2021-05-28 11:20:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:20:08.951+03	2021-05-28 11:20:08.958+03	
9d57b5a5-aa2e-2007-07ef-30ef35e9231e	2021-05-28 11:20:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:20:28.951+03	2021-05-28 11:20:28.958+03	
72853124-6439-0a43-a2a4-6b80fd793f84	2021-05-28 11:20:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:20:48.951+03	2021-05-28 11:20:48.958+03	
32e960a8-64e3-1723-6065-424a7014eeaf	2021-05-28 11:21:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:21:08.951+03	2021-05-28 11:21:08.958+03	
57ed87d6-3016-6ab2-c56e-35c43da3f4d0	2021-05-28 11:21:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:21:28.951+03	2021-05-28 11:21:28.96+03	
d7f6c6ab-a35f-d3ff-5719-8aef1c50c62a	2021-05-28 11:21:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:21:48.951+03	2021-05-28 11:21:48.962+03	
7ef3b6d6-942d-9fed-b514-f35b5f1fff4b	2021-05-28 11:22:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:22:08.951+03	2021-05-28 11:22:08.96+03	
d06d9274-9c34-36af-65cc-3335e9ca52c2	2021-05-28 11:22:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:22:29.951+03	2021-05-28 11:22:29.962+03	
426e76a5-7c0b-4d2b-3e24-5730b7eee06e	2021-05-28 11:22:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:22:50.951+03	2021-05-28 11:22:50.96+03	
2f3a93c5-cf2a-fb0c-9e63-8c6de3b03d5f	2021-05-28 11:23:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:23:10.952+03	2021-05-28 11:23:10.96+03	
e0a19b3c-5a1b-145f-8b8a-7970196b62ee	2021-05-28 11:23:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:23:31.951+03	2021-05-28 11:23:31.958+03	
ad3388ea-1f83-74fc-a419-5c2ee854c511	2021-05-28 11:23:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:23:51.951+03	2021-05-28 11:23:51.958+03	
f69305c3-57d5-d84f-f522-d9124fad7252	2021-05-28 11:24:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:24:11.951+03	2021-05-28 11:24:11.961+03	
962f84a4-e9f8-3346-0618-5dca7073a65c	2021-05-28 11:24:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:24:31.951+03	2021-05-28 11:24:31.962+03	
40e2dd42-1b95-4b7e-9134-6060fb4c9e9b	2021-05-28 11:24:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:24:51.951+03	2021-05-28 11:24:51.961+03	
7be15213-5297-1f36-3f8b-c9c0cca145d1	2021-05-28 11:25:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:25:12.951+03	2021-05-28 11:25:12.958+03	
7d4f6b89-814e-7a4d-79dd-0de673b2a778	2021-05-28 11:25:32.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:25:32.953+03	2021-05-28 11:25:32.962+03	
ed6a7f01-eda9-8511-f14b-49ee7d1e6267	2021-05-28 11:25:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:25:53.951+03	2021-05-28 11:25:53.959+03	
8b38d40f-24fa-f126-275f-ef894f573e14	2021-05-28 11:26:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:26:13.951+03	2021-05-28 11:26:13.958+03	
833796ab-fbb5-352c-26c6-2ca1532911a0	2021-05-28 11:26:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:26:34.951+03	2021-05-28 11:26:34.96+03	
af7424cd-678f-bf41-033e-025127b7e3d1	2021-05-28 11:26:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:26:54.951+03	2021-05-28 11:26:54.958+03	
363b8f17-e808-96b9-6e2a-cd46ffb7056f	2021-05-28 11:27:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:27:14.952+03	2021-05-28 11:27:14.964+03	
4d92ecee-a743-f948-9fb4-683c37a68513	2021-05-28 11:27:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:27:36.951+03	2021-05-28 11:27:36.965+03	
cc4ad71b-639d-2911-81d0-a54957bf9c93	2021-05-28 11:27:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:27:56.951+03	2021-05-28 11:27:56.974+03	
32baec1e-e823-9104-bc1f-f80c7e6c1f02	2021-05-28 11:28:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:28:16.951+03	2021-05-28 11:28:16.975+03	
6c5d75bf-7199-9e44-97ff-f9e287579e07	2021-05-28 11:28:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:28:36.952+03	2021-05-28 11:28:36.961+03	
5b873057-6536-a3bf-9a9f-6279dacbe603	2021-05-28 11:28:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:28:58.951+03	2021-05-28 11:28:58.96+03	
0a689ddb-9876-3adf-c649-c3e17cd06602	2021-05-28 11:29:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:29:19.951+03	2021-05-28 11:29:19.964+03	
2b4a6e2d-73e7-59a4-99cc-a41520c9c3e1	2021-05-28 11:29:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:29:39.951+03	2021-05-28 11:29:39.958+03	
662d85d8-6028-76bc-f18b-4f3642c7facd	2021-05-28 11:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 11:30:00.951+03	2021-05-28 11:30:00.958+03	ERROR
2e99e34b-9f5d-cccb-8fd0-80c4b32533b2	2021-05-28 11:30:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:30:21.951+03	2021-05-28 11:30:21.958+03	
760ae1b1-cd8f-7c7e-678b-f07002bd001f	2021-05-28 11:30:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:30:41.951+03	2021-05-28 11:30:41.96+03	
5886cff2-d4e5-1606-fcc3-2abc51e0b185	2021-05-28 11:31:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:31:01.951+03	2021-05-28 11:31:01.973+03	
51853316-f13c-a096-08e4-74fc933f517c	2021-05-28 11:31:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:31:21.951+03	2021-05-28 11:31:21.959+03	
415b1e82-dbcc-7cb3-bafe-52b2a35aa141	2021-05-28 11:31:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:31:41.951+03	2021-05-28 11:31:41.959+03	
1a84d4bd-6d36-1089-967d-4cd2a5ac59c1	2021-05-28 11:32:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:32:01.951+03	2021-05-28 11:32:02.437+03	
00e37ee8-05ff-066c-a343-c7fb935f23eb	2021-05-28 11:32:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:32:21.951+03	2021-05-28 11:32:21.958+03	
b7a437a1-34f0-c0b8-2886-d875f27b2c03	2021-05-28 11:32:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:32:41.951+03	2021-05-28 11:32:41.957+03	
2616b518-b723-7d10-42cf-3b3284f5c33e	2021-05-28 11:33:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:33:01.951+03	2021-05-28 11:33:01.96+03	
a8a5a3cf-1e4f-d09e-7b8a-03e37aa6954b	2021-05-28 11:33:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:33:22.951+03	2021-05-28 11:33:22.959+03	
be7f7bd5-41f5-07bf-3b96-54976c3c12bb	2021-05-28 11:33:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:33:42.951+03	2021-05-28 11:33:42.962+03	
8f2d9eb3-ab58-9f92-b35e-0be3803123c6	2021-05-28 11:34:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:34:02.952+03	2021-05-28 11:34:02.96+03	
3aa3cb4d-6728-deb0-7c50-5add4c3bd18c	2021-05-28 11:34:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:34:23.952+03	2021-05-28 11:34:23.959+03	
2e857dba-ce4c-08f5-5c07-ad1fc14dfc00	2021-05-28 11:34:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:34:44.951+03	2021-05-28 11:34:44.959+03	
82264f8d-1bcd-47df-d9a3-b381f5235bcc	2021-05-28 11:35:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:35:04.951+03	2021-05-28 11:35:04.958+03	
366b54e8-75bf-1b90-1c57-1a62c3b7f45d	2021-05-28 11:14:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:14:21.951+03	2021-05-28 11:14:21.958+03	
dcba6ad6-f709-a576-dd93-e0002447581b	2021-05-28 11:14:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:14:41.951+03	2021-05-28 11:14:41.957+03	
510b5854-99b7-8e73-7925-db27d0e97f52	2021-05-28 11:15:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:15:01.951+03	2021-05-28 11:15:01.958+03	
2c2ec383-a346-bc71-fc2f-cc1dbc10eddc	2021-05-28 11:15:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:15:22.951+03	2021-05-28 11:15:22.959+03	
0b2b186d-54b6-2a05-e823-9895d896402a	2021-05-28 11:15:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:15:43.951+03	2021-05-28 11:15:43.958+03	
82b22fb5-d3a5-ecc4-9474-42399ef915b6	2021-05-28 11:16:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:16:04.951+03	2021-05-28 11:16:04.958+03	
2c605351-2196-e9b7-2b72-4b0c587cc684	2021-05-28 11:16:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:16:24.951+03	2021-05-28 11:16:24.958+03	
fee4555e-d47d-552b-e7cb-76e0f24d59b0	2021-05-28 11:16:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:16:44.951+03	2021-05-28 11:16:44.958+03	
1b8a3ae9-57ca-6965-85ba-a4c5599ff6e9	2021-05-28 11:17:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:17:04.951+03	2021-05-28 11:17:04.961+03	
c9eaff70-0d06-c954-b753-dc67dd046eeb	2021-05-28 11:17:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:17:24.952+03	2021-05-28 11:17:24.958+03	
9dd4aa2b-f2de-dc57-231c-d6dd3cb72d7f	2021-05-28 11:17:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:17:45.951+03	2021-05-28 11:17:45.958+03	
a9c8a187-07a8-4f47-8457-c9f263df2b07	2021-05-28 11:18:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:18:05.951+03	2021-05-28 11:18:05.964+03	
e7876a3d-2985-382e-e21b-37e0633bff9e	2021-05-28 11:18:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:18:26.952+03	2021-05-28 11:18:26.962+03	
0a784296-cfe8-d7d7-d6ed-aa21d3c7b944	2021-05-28 11:18:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:18:48.951+03	2021-05-28 11:18:48.958+03	
f9374ff8-74bd-018f-11ca-610e18a47f0d	2021-05-28 11:19:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:19:08.951+03	2021-05-28 11:19:08.958+03	
25f712da-2493-ca75-36ac-4367cbab3fc6	2021-05-28 11:19:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:19:28.951+03	2021-05-28 11:19:28.964+03	
c98394ce-3372-1656-137b-bdeb77e9d9de	2021-05-28 11:19:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:19:48.951+03	2021-05-28 11:19:48.959+03	
d632f4fd-d542-46cd-dea1-fd72fb25bb7a	2021-05-28 11:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 11:20:00.951+03	2021-05-28 11:20:00.957+03	ERROR
6718138b-cc3c-fe8e-83a8-a60328e86637	2021-05-28 11:20:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:20:18.951+03	2021-05-28 11:20:18.959+03	
f3d9ad84-9dcf-6d02-7350-a4a1d4da4036	2021-05-28 11:20:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:20:38.951+03	2021-05-28 11:20:38.959+03	
da01118c-7928-5cbc-982a-795cc8b53ab0	2021-05-28 11:20:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:20:58.951+03	2021-05-28 11:20:58.96+03	
b36a3052-c2cf-7a0e-584a-cce554a1d978	2021-05-28 11:21:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:21:18.951+03	2021-05-28 11:21:18.958+03	
d4d1f8e8-dbf9-db5b-d1b4-6074fb7bf89d	2021-05-28 11:21:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:21:38.951+03	2021-05-28 11:21:38.959+03	
ba8f489a-4914-8c63-0dfe-d31d0f2dabcc	2021-05-28 11:21:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:21:58.951+03	2021-05-28 11:21:58.96+03	
22d83bf0-5675-315d-542c-f1dcb8518d16	2021-05-28 11:22:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:22:18.952+03	2021-05-28 11:22:18.964+03	
13a513c1-9c78-7f78-0683-5250bbd13886	2021-05-28 11:22:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:22:39.952+03	2021-05-28 11:22:39.96+03	
1638d75c-83e2-4547-a0b7-e3235be4ae00	2021-05-28 11:23:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:23:00.951+03	2021-05-28 11:23:00.96+03	
ecc9b13b-0185-9bbb-74fe-88b7323e5e4b	2021-05-28 11:23:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:23:21.951+03	2021-05-28 11:23:21.958+03	
40d13116-55ce-bc27-352b-413b834d78e0	2021-05-28 11:23:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:23:41.951+03	2021-05-28 11:23:41.958+03	
b3eded00-5397-a199-b971-f1c9e6e5040d	2021-05-28 11:24:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:24:01.951+03	2021-05-28 11:24:01.965+03	
80afa23d-a5cf-911e-33d5-068dadf407d9	2021-05-28 11:24:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:24:21.951+03	2021-05-28 11:24:21.96+03	
266de35b-bafd-07f4-086f-cbf045025065	2021-05-28 11:24:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:24:41.951+03	2021-05-28 11:24:41.959+03	
4eef00b2-6363-a242-18a2-8b7cf8046430	2021-05-28 11:25:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:25:01.952+03	2021-05-28 11:25:01.959+03	
b8c5461e-6a3d-35e7-5a33-7aa802fccebc	2021-05-28 11:25:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:25:22.951+03	2021-05-28 11:25:22.958+03	
b937f90b-fc44-9b24-49cc-af6f01355453	2021-05-28 11:25:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:25:43.951+03	2021-05-28 11:25:43.959+03	
17680ec5-bdb2-bc3b-583d-36280bbf022d	2021-05-28 11:26:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:26:03.951+03	2021-05-28 11:26:03.959+03	
99d068f9-4936-5e7b-2f8b-73e44e1587dd	2021-05-28 11:26:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:26:23.952+03	2021-05-28 11:26:23.959+03	
69894e4c-fef1-0786-0e66-3d2ff8b14c6f	2021-05-28 11:26:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:26:44.951+03	2021-05-28 11:26:44.959+03	
5b4f5e54-cf46-f2d5-1ed5-cbb864ea41de	2021-05-28 11:27:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:27:04.951+03	2021-05-28 11:27:04.96+03	
5d690884-8fbf-4925-8895-c271a0741498	2021-05-28 11:27:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:27:25.952+03	2021-05-28 11:27:25.961+03	
1ec4736f-b429-9369-8f5e-89f400c767a0	2021-05-28 11:27:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:27:46.951+03	2021-05-28 11:27:46.959+03	
fb1e591c-46cc-01f7-2fe8-0d9642fabb04	2021-05-28 11:28:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:28:06.951+03	2021-05-28 11:28:06.958+03	
1e09e18a-84a7-17a8-a9ad-61ef2c5ea409	2021-05-28 11:28:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:28:26.951+03	2021-05-28 11:28:26.96+03	
55a499cd-c405-a14f-b865-d196c94578d7	2021-05-28 11:28:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:28:47.952+03	2021-05-28 11:28:47.958+03	
950bcd2a-ce5e-6d6e-f7f5-65bd84284829	2021-05-28 11:29:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:29:08.952+03	2021-05-28 11:29:08.96+03	
168bf770-aade-2405-5212-a9d1b7994650	2021-05-28 11:29:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:29:29.951+03	2021-05-28 11:29:29.959+03	
27c5826f-7dc2-71d4-3386-7ccf03641058	2021-05-28 11:29:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:29:49.952+03	2021-05-28 11:29:49.96+03	
bae9ebe3-b739-ad09-b22d-6cbde52fa9ca	2021-05-28 11:30:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:30:00.952+03	2021-05-28 11:30:00.968+03	
6e270432-3772-14d5-0cf9-6e63f7357502	2021-05-28 11:30:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:30:11.951+03	2021-05-28 11:30:11.959+03	
272e4785-bef7-a16c-72ee-33800f77edfd	2021-05-28 11:30:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:30:31.951+03	2021-05-28 11:30:31.958+03	
0a7d71b0-aad2-162e-f8a7-82419e9a6ea1	2021-05-28 11:30:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:30:51.951+03	2021-05-28 11:30:51.958+03	
9ab37659-58d3-c50a-5e94-0f0666f62aa3	2021-05-28 11:31:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:31:11.951+03	2021-05-28 11:31:11.959+03	
bfbc4d8c-9088-0a13-1e34-26d71d75b32c	2021-05-28 11:31:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:31:31.951+03	2021-05-28 11:31:31.959+03	
7efe9895-1e00-a6fa-c187-bfa3ebdc56e3	2021-05-28 11:31:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:31:51.951+03	2021-05-28 11:31:51.958+03	
a8c06ed1-897e-2ae1-5d9a-86e2bd9d9cb7	2021-05-28 11:32:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:32:11.951+03	2021-05-28 11:32:11.958+03	
7d932885-ba84-e04c-ae52-3602a1ae1152	2021-05-28 11:32:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:32:31.951+03	2021-05-28 11:32:31.97+03	
340d4d29-ff36-f6e8-37d7-6bf99d6da0f8	2021-05-28 11:32:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:32:51.951+03	2021-05-28 11:32:51.959+03	
1c2ff14d-d75d-7d47-6ee3-ef0cd4a127c1	2021-05-28 11:33:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:33:11.952+03	2021-05-28 11:33:11.959+03	
cbafc4b1-e2a8-7688-0b58-a1a13de90356	2021-05-28 11:33:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:33:32.951+03	2021-05-28 11:33:32.959+03	
17329181-8e22-4de4-98c5-25fe80679b20	2021-05-28 11:33:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:33:52.951+03	2021-05-28 11:33:52.958+03	
e6cba05d-c916-accd-8c69-117f68b3dee9	2021-05-28 11:34:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:34:13.951+03	2021-05-28 11:34:13.959+03	
299c7941-4834-b86e-fccf-386b964f8ac2	2021-05-28 11:34:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:34:34.951+03	2021-05-28 11:34:34.958+03	
709271ad-6099-89f7-325f-19663b2d26ea	2021-05-28 11:34:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:34:54.951+03	2021-05-28 11:34:54.958+03	
d939e00a-d450-e4dc-94e8-7b2afbb4871f	2021-05-28 11:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:35:14.951+03	2021-05-28 11:35:14.959+03	
c839ad41-8393-eed7-52b5-de5e95bd58a0	2021-05-28 11:35:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:35:34.951+03	2021-05-28 11:35:34.959+03	
2e658a9d-04da-65de-517b-c29dccee0cc2	2021-05-28 11:35:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:35:54.951+03	2021-05-28 11:35:54.958+03	
1f438f8f-68f1-cf89-dd6b-b3b780c03d02	2021-05-28 11:36:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:36:14.951+03	2021-05-28 11:36:14.958+03	
f1a6edf8-e984-09d4-6a7d-262a411a6824	2021-05-28 11:36:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:36:34.951+03	2021-05-28 11:36:34.958+03	
adf22e98-5105-0844-5f10-60b57e49cf8f	2021-05-28 11:36:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:36:54.951+03	2021-05-28 11:36:54.961+03	
9f1bdb78-fea2-e0b4-8b04-712a8095dfa9	2021-05-28 11:37:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:37:14.951+03	2021-05-28 11:37:14.959+03	
8341b4c6-2cf9-0bc1-81b7-f530dfb738c0	2021-05-28 11:37:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:37:34.951+03	2021-05-28 11:37:34.957+03	
5f59d36d-69e8-d712-acf2-b3605409d409	2021-05-28 11:37:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:37:54.951+03	2021-05-28 11:37:54.959+03	
387f174b-b22e-5136-f1bc-7ad0d45fb867	2021-05-28 11:38:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:38:14.951+03	2021-05-28 11:38:14.959+03	
605b0b65-3eff-f990-28bc-bcdb28948c40	2021-05-28 11:38:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:38:34.951+03	2021-05-28 11:38:34.958+03	
acd5968a-a236-5171-ebb5-dbfdd320ca00	2021-05-28 11:38:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:38:54.951+03	2021-05-28 11:38:54.96+03	
0d6913b7-84a7-b9fc-e4c3-d2467d97bab8	2021-05-28 11:39:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:39:14.952+03	2021-05-28 11:39:14.959+03	
cf3e46dd-5fb6-6275-efa5-eee95803c868	2021-05-28 11:39:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:39:35.951+03	2021-05-28 11:39:35.959+03	
123d7086-6126-ab23-9a5d-80aca7e80b73	2021-05-28 11:39:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:39:55.951+03	2021-05-28 11:39:55.96+03	
51da6e00-db5b-0c37-a363-16520cf50e78	2021-05-28 11:40:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:40:05.951+03	2021-05-28 11:40:05.958+03	
730b6758-9a03-5a5e-f937-b7ad1b703a34	2021-05-28 11:40:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:40:25.952+03	2021-05-28 11:40:25.959+03	
37486afa-aa10-19f0-cf66-2d1a12a801d9	2021-05-28 11:40:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:40:46.951+03	2021-05-28 11:40:46.959+03	
00939890-a8dc-433b-850d-03b249320d6d	2021-05-28 11:41:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:41:06.952+03	2021-05-28 11:41:06.96+03	
77e96ae7-f0c0-eaf6-f269-f9e41df1533c	2021-05-28 11:41:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:41:27.951+03	2021-05-28 11:41:27.958+03	
b0ca6bac-1a60-5226-8945-7784620e8f68	2021-05-28 11:41:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:41:47.952+03	2021-05-28 11:41:47.961+03	
d23415bd-b186-82b0-d65a-42cf2785fe38	2021-05-28 11:42:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:42:08.951+03	2021-05-28 11:42:08.96+03	
982ad8d7-7e7e-2f10-6e2f-9ef99831aebf	2021-05-28 11:42:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:42:28.951+03	2021-05-28 11:42:28.959+03	
b39a0817-8edb-2c9e-c224-1d61d322c901	2021-05-28 11:42:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:42:48.952+03	2021-05-28 11:42:48.965+03	
209abe50-ccad-efd9-e5cf-2d1160bd5b21	2021-05-28 11:43:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:43:09.951+03	2021-05-28 11:43:09.958+03	
00e47d6c-7e04-60af-6cc1-6e57ad5d4b77	2021-05-28 11:43:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:43:29.951+03	2021-05-28 11:43:29.959+03	
e5c7e084-613a-5602-90bb-d558740003f9	2021-05-28 11:43:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:43:49.951+03	2021-05-28 11:43:49.959+03	
45a9f677-5fb0-3011-98ff-82b87cfcb476	2021-05-28 11:44:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:44:09.951+03	2021-05-28 11:44:09.962+03	
dd43e782-1ef9-c4cd-03b4-b1e774ce8a5e	2021-05-28 11:44:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:44:29.951+03	2021-05-28 11:44:29.961+03	
676ae203-0196-453d-3859-769c76dadf48	2021-05-28 11:44:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:44:49.951+03	2021-05-28 11:44:49.958+03	
690c3a21-2339-4d2b-be1b-d1c5a7f0580b	2021-05-28 11:45:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:45:09.951+03	2021-05-28 11:45:09.957+03	
5ee2de01-83eb-a7d2-1aeb-045be5f8d72a	2021-05-28 11:45:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:45:29.951+03	2021-05-28 11:45:29.959+03	
0f42fbce-cfda-8c0d-0d90-9e40712f2e29	2021-05-28 11:45:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:45:49.951+03	2021-05-28 11:45:49.959+03	
b5608f48-3518-2892-51ea-03c74a6c213f	2021-05-28 11:46:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:46:09.951+03	2021-05-28 11:46:09.957+03	
10a11835-a39c-0158-b1d3-daf042651e24	2021-05-28 11:46:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:46:29.951+03	2021-05-28 11:46:29.963+03	
e8fc70cf-77ec-0e67-16c3-ef12eb5701e5	2021-05-28 11:46:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:46:49.951+03	2021-05-28 11:46:49.967+03	
6b555dfe-54b3-04b2-effe-ba3f705eeee3	2021-05-28 11:47:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:47:09.951+03	2021-05-28 11:47:09.957+03	
668ceb2d-3d49-c8e8-391e-485a18cb8632	2021-05-28 11:47:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:47:29.951+03	2021-05-28 11:47:29.957+03	
6d9fe224-8c62-3e65-7ff6-061f225cfb77	2021-05-28 11:47:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:47:49.951+03	2021-05-28 11:47:49.957+03	
cef3d8f3-a0e6-6589-291f-e4ff5392fb50	2021-05-28 11:48:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:48:09.951+03	2021-05-28 11:48:09.957+03	
5f76243f-f3d0-84e7-b0d6-1ca089c88e86	2021-05-28 11:48:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:48:29.951+03	2021-05-28 11:48:29.958+03	
ed2f2115-1f1c-7be6-a823-d20e187c4ffa	2021-05-28 11:48:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:48:49.951+03	2021-05-28 11:48:49.967+03	
ebe0d314-f9bc-4eb6-2cc6-8ba6a6026968	2021-05-28 11:49:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:49:09.951+03	2021-05-28 11:49:09.962+03	
1b004002-5b42-33ee-6bac-6f8c8a2b4622	2021-05-28 11:49:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:49:29.951+03	2021-05-28 11:49:29.959+03	
00075a55-2eda-e877-bb15-5d9684a86ac1	2021-05-28 11:49:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:49:49.951+03	2021-05-28 11:49:49.958+03	
9ea19792-ebdb-14a1-c97e-a01c25efbed3	2021-05-28 11:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 11:50:00.951+03	2021-05-28 11:50:00.958+03	ERROR
0e4dd416-9df5-6c55-ba86-2b18958f85a7	2021-05-28 11:50:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:50:19.951+03	2021-05-28 11:50:19.96+03	
7cc22c94-78a7-3600-107c-53aa9080b203	2021-05-28 11:50:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:50:39.951+03	2021-05-28 11:50:39.96+03	
2eabc260-0955-c6f6-3f89-af760fab2341	2021-05-28 11:50:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:50:59.952+03	2021-05-28 11:50:59.961+03	
2b8e4126-5996-d4ef-b41e-5c41940b5410	2021-05-28 11:51:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:51:20.951+03	2021-05-28 11:51:20.957+03	
60cb61b5-df35-2459-d3af-7239611702c0	2021-05-28 11:51:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:51:40.951+03	2021-05-28 11:51:40.958+03	
d927def8-abd9-2d05-5f05-98ad00da7658	2021-05-28 11:52:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:52:00.951+03	2021-05-28 11:52:00.958+03	
8e5295be-5120-9cd1-06fa-e5d1a158903f	2021-05-28 11:52:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:52:20.951+03	2021-05-28 11:52:20.959+03	
31135f33-6232-2198-5227-ca0a8e72ef6c	2021-05-28 11:52:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:52:40.952+03	2021-05-28 11:52:40.958+03	
c412ef12-2021-1dee-b97b-c558f8471172	2021-05-28 11:53:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:53:01.951+03	2021-05-28 11:53:01.958+03	
9b2ae700-95c3-3012-9973-cf8826ddf7a7	2021-05-28 11:53:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:53:22.952+03	2021-05-28 11:53:22.962+03	
bc7596a8-6500-80b1-5468-d35c1a67d9bd	2021-05-28 11:53:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:53:43.951+03	2021-05-28 11:53:43.959+03	
fe21db03-901d-46ff-f69e-ecf487915467	2021-05-28 11:54:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:54:03.951+03	2021-05-28 11:54:03.958+03	
f68afbd1-bd95-05b3-9874-84d863017c46	2021-05-28 11:54:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:54:23.951+03	2021-05-28 11:54:23.959+03	
2f7c90dc-2218-b1ad-dd51-dda56371874c	2021-05-28 11:54:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:54:44.951+03	2021-05-28 11:54:44.96+03	
950c4485-3ed0-1d87-8756-17bb37ba5bb2	2021-05-28 11:55:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:55:04.951+03	2021-05-28 11:55:04.958+03	
e0b55dea-9ec0-4c6f-99da-48509f12f1c7	2021-05-28 11:55:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:55:24.951+03	2021-05-28 11:55:24.958+03	
f6d342b0-4529-639d-a5d7-8c4e91b900a1	2021-05-28 11:55:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:55:44.951+03	2021-05-28 11:55:44.958+03	
03731153-533e-7bdb-424e-b2342141c8ba	2021-05-28 11:35:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:35:24.951+03	2021-05-28 11:35:24.959+03	
8e42706c-4bd5-569f-b086-653a2526f0b6	2021-05-28 11:35:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:35:44.951+03	2021-05-28 11:35:44.957+03	
30f33a77-948e-9149-9c1e-55988a9273b0	2021-05-28 11:36:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:36:04.951+03	2021-05-28 11:36:04.957+03	
5a1de051-5b65-4c24-7958-9c2a61a6f4b1	2021-05-28 11:36:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:36:24.951+03	2021-05-28 11:36:24.959+03	
ad5d93ad-dc42-cb99-a1b8-087aee307310	2021-05-28 11:36:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:36:44.951+03	2021-05-28 11:36:44.96+03	
1386c734-c78c-f1e4-a336-3138ba08696b	2021-05-28 11:37:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:37:04.951+03	2021-05-28 11:37:04.957+03	
b43dd0f8-973c-6c50-032a-6a0243f51cfc	2021-05-28 11:37:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:37:24.951+03	2021-05-28 11:37:24.959+03	
6ad81fc1-7f61-404c-c82a-50366d5bf5dd	2021-05-28 11:37:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:37:44.951+03	2021-05-28 11:37:44.958+03	
7312c5cc-bf25-1762-b1f4-bb9057e25ac2	2021-05-28 11:38:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:38:04.951+03	2021-05-28 11:38:04.959+03	
082fb80c-182c-84d8-3a1d-55f7f6d055ba	2021-05-28 11:38:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:38:24.951+03	2021-05-28 11:38:24.959+03	
55236461-23d7-38e3-3fa6-5f4ef7bae0d0	2021-05-28 11:38:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:38:44.951+03	2021-05-28 11:38:44.959+03	
9c4c23c9-88a3-090b-6dd3-5d484dcc7a1b	2021-05-28 11:39:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:39:04.951+03	2021-05-28 11:39:04.958+03	
0e983d88-4045-b4f2-6ab7-7a8ce9e86ff3	2021-05-28 11:39:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:39:25.951+03	2021-05-28 11:39:25.958+03	
37b7e283-f961-9e6a-2e87-9457c328cd25	2021-05-28 11:39:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:39:45.951+03	2021-05-28 11:39:45.961+03	
c140b94b-adf2-caab-9399-78a9cea60f8d	2021-05-28 11:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 11:40:00.951+03	2021-05-28 11:40:00.956+03	ERROR
1542a8b3-0b97-dbc5-0c19-4aa54903625e	2021-05-28 11:40:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:40:15.952+03	2021-05-28 11:40:15.959+03	
5fec6ecc-8560-76aa-df1b-cebc440d9747	2021-05-28 11:40:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:40:36.951+03	2021-05-28 11:40:36.959+03	
98e23e30-1bbd-b00b-2dab-77b1492d838e	2021-05-28 11:40:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:40:56.951+03	2021-05-28 11:40:56.962+03	
ffa93700-6a3a-2d2f-0967-92599a0685db	2021-05-28 11:41:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:41:17.951+03	2021-05-28 11:41:17.959+03	
cc66d389-8db2-5e48-2f79-00316e13792b	2021-05-28 11:41:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:41:37.952+03	2021-05-28 11:41:37.962+03	
1f0cce83-0bc2-a0e0-375b-4a943ac16d6e	2021-05-28 11:41:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:41:58.951+03	2021-05-28 11:41:58.974+03	
39f7e444-51c5-e439-e923-1b89462569ee	2021-05-28 11:42:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:42:18.951+03	2021-05-28 11:42:18.958+03	
0dd82df8-6d2f-b096-f62e-7ccebc115508	2021-05-28 11:42:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:42:38.951+03	2021-05-28 11:42:38.96+03	
1c76245e-16b9-b851-aa08-5bb5d9e7df93	2021-05-28 11:42:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:42:58.952+03	2021-05-28 11:42:58.96+03	
a07346f2-99cf-4cff-2110-95a6523bc20c	2021-05-28 11:43:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:43:19.951+03	2021-05-28 11:43:19.958+03	
74d9e4a0-f614-fb1a-e897-8959198ed279	2021-05-28 11:43:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:43:39.951+03	2021-05-28 11:43:39.96+03	
5782202b-50f2-63ae-a63f-955a04c85cc1	2021-05-28 11:43:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:43:59.951+03	2021-05-28 11:43:59.961+03	
7a4d165c-c9a7-da92-71e2-69efb05e7cfd	2021-05-28 11:44:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:44:19.951+03	2021-05-28 11:44:19.96+03	
7621083a-78cb-785c-37b2-a52a00b32357	2021-05-28 11:44:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:44:39.951+03	2021-05-28 11:44:39.96+03	
300565ef-db78-3a50-659a-93a867a9980d	2021-05-28 11:44:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:44:59.951+03	2021-05-28 11:44:59.958+03	
d159d0dd-9609-bf45-db99-2c876b6b60ce	2021-05-28 11:45:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:45:19.951+03	2021-05-28 11:45:19.957+03	
d1c66f5a-a241-9595-2794-896016c807f2	2021-05-28 11:45:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:45:39.951+03	2021-05-28 11:45:39.957+03	
dff0c747-36eb-b4c8-f353-1a8d9acf3fc3	2021-05-28 11:45:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:45:59.951+03	2021-05-28 11:45:59.958+03	
20804048-08ad-fb60-62d3-58c96c88de68	2021-05-28 11:46:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:46:19.951+03	2021-05-28 11:46:19.957+03	
2cccbab7-a677-35af-31d8-75505487bdbc	2021-05-28 11:46:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:46:39.951+03	2021-05-28 11:46:39.957+03	
c26a3efd-a9c1-e2d8-bc7f-1c61b2140133	2021-05-28 11:46:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:46:59.951+03	2021-05-28 11:46:59.957+03	
05080692-9d03-3a27-9e50-a65a53b6acc8	2021-05-28 11:47:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:47:19.951+03	2021-05-28 11:47:19.957+03	
01e8098f-e2e9-f1af-a85e-1f82ccdabf32	2021-05-28 11:47:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:47:39.951+03	2021-05-28 11:47:39.957+03	
528863e9-9c7d-c6f1-54bf-54d40a214d94	2021-05-28 11:47:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:47:59.951+03	2021-05-28 11:47:59.957+03	
202de9df-2d8e-0d0d-272d-a5997ccb7361	2021-05-28 11:48:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:48:19.951+03	2021-05-28 11:48:19.958+03	
6761df7f-994a-712a-c88b-130af616db24	2021-05-28 11:48:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:48:39.951+03	2021-05-28 11:48:39.959+03	
cbb40034-52f4-cb50-b208-47307ae6b26a	2021-05-28 11:48:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:48:59.951+03	2021-05-28 11:48:59.961+03	
d98b549d-99c4-2f25-8628-ffae7c5d4cbd	2021-05-28 11:49:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:49:19.951+03	2021-05-28 11:49:19.959+03	
2e8c3cef-5ae1-4c9b-26af-ff33f3c315c0	2021-05-28 11:49:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:49:39.951+03	2021-05-28 11:49:39.958+03	
9d976c2b-7a15-098a-00a2-3d2d9a94aaf2	2021-05-28 11:49:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:49:59.951+03	2021-05-28 11:49:59.958+03	
7a4ba7c6-21c0-2438-44ca-e82dfc6f10c2	2021-05-28 11:50:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:50:09.951+03	2021-05-28 11:50:09.957+03	
33557300-f36e-d483-6e41-998f53f78d10	2021-05-28 11:50:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:50:29.951+03	2021-05-28 11:50:29.958+03	
584062ed-e4c5-9161-4609-6e5701642798	2021-05-28 11:50:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:50:49.951+03	2021-05-28 11:50:49.96+03	
6d0bd401-6e81-ab16-c0f7-653249422134	2021-05-28 11:51:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:51:10.951+03	2021-05-28 11:51:10.958+03	
1d4803e6-fec5-df9e-cdcd-3b7b2746b066	2021-05-28 11:51:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:51:30.951+03	2021-05-28 11:51:30.958+03	
b595437c-3491-44ae-78dd-fa48bd3f5700	2021-05-28 11:51:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:51:50.951+03	2021-05-28 11:51:50.958+03	
805c2251-9605-bcfc-e3cb-2beb88598c13	2021-05-28 11:52:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:52:10.951+03	2021-05-28 11:52:10.962+03	
cf1e1622-e818-ace8-ea0f-cc48949035c2	2021-05-28 11:52:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:52:30.951+03	2021-05-28 11:52:30.959+03	
d7ed381f-9cb6-e287-0619-fc927a70f3de	2021-05-28 11:52:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:52:51.951+03	2021-05-28 11:52:51.958+03	
912b201e-301a-1c81-5cad-fc212414e503	2021-05-28 11:53:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:53:11.952+03	2021-05-28 11:53:11.962+03	
bd9aff23-6a84-b486-cfab-2819c21e4712	2021-05-28 11:53:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:53:33.951+03	2021-05-28 11:53:33.959+03	
00adaf1b-fe1a-fe33-bff2-681ac484ffb4	2021-05-28 11:53:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:53:53.951+03	2021-05-28 11:53:53.959+03	
096434e1-0d38-4a19-32da-fedb1251152a	2021-05-28 11:54:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:54:13.951+03	2021-05-28 11:54:13.96+03	
73541820-8317-9854-1c90-e8b945a6e03c	2021-05-28 11:54:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:54:33.952+03	2021-05-28 11:54:33.966+03	
7f47af0f-4542-3ebd-a9dd-6000cad30b23	2021-05-28 11:54:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:54:54.951+03	2021-05-28 11:54:54.959+03	
6e56a1ae-bdf2-0089-f09f-c17d6fcc8b0a	2021-05-28 11:55:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:55:14.951+03	2021-05-28 11:55:14.959+03	
04747f31-ffc5-0679-e8ee-da31b57bcbec	2021-05-28 11:55:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:55:34.951+03	2021-05-28 11:55:34.96+03	
8491bc09-ae4e-ca94-e60d-157b51181b3f	2021-05-28 11:55:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:55:54.951+03	2021-05-28 11:55:54.959+03	
b59db6ce-b781-47b1-2c6e-41d713394769	2021-05-28 11:56:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:56:04.952+03	2021-05-28 11:56:04.962+03	
16ab210c-1205-abc3-b332-c2da13adbe12	2021-05-28 11:56:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:56:25.951+03	2021-05-28 11:56:25.958+03	
a3624bd1-d398-ecdf-8443-add0b02661a7	2021-05-28 11:56:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:56:45.951+03	2021-05-28 11:56:45.958+03	
e6faec9e-ceb7-e0af-0ee5-90bfdfbcca82	2021-05-28 11:57:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:57:05.952+03	2021-05-28 11:57:05.958+03	
14557065-c263-ae88-7bd4-32f652b6d611	2021-05-28 11:57:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:57:26.951+03	2021-05-28 11:57:26.963+03	
8ae29bec-45f2-9ced-5e10-d3438ae8be9e	2021-05-28 11:57:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:57:46.951+03	2021-05-28 11:57:46.958+03	
08858fdc-cb08-0ede-869a-5fcd6b080521	2021-05-28 11:58:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:58:06.951+03	2021-05-28 11:58:06.96+03	
c224d978-4989-b624-3159-0ac0a1d3f18f	2021-05-28 11:58:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:58:26.951+03	2021-05-28 11:58:26.958+03	
34473dc3-bf2d-4641-ac23-75e3b2ce49c0	2021-05-28 11:58:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:58:46.951+03	2021-05-28 11:58:46.96+03	
d941b6b2-589b-cc9c-afab-03a2dc859cd5	2021-05-28 11:59:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:59:06.951+03	2021-05-28 11:59:06.958+03	
4d08b7a8-c50d-cd1e-e59f-f34b5345667f	2021-05-28 11:59:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:59:26.952+03	2021-05-28 11:59:26.961+03	
870ebc6b-3b87-445d-5fe9-dcd1cf3272b1	2021-05-28 11:59:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:59:47.952+03	2021-05-28 11:59:47.959+03	
27a6e243-65b8-74c1-75c3-6d7d8ab884b6	2021-05-28 12:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 12:00:00.952+03	2021-05-28 12:00:00.964+03	ERROR
72e4c061-b245-5c09-fb9d-d1199de4dc00	2021-05-28 12:00:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:00:19.951+03	2021-05-28 12:00:19.96+03	
a134b69c-b23c-3020-a64a-ccf4f816f5f4	2021-05-28 12:00:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:00:39.951+03	2021-05-28 12:00:39.958+03	
d2508797-2f32-29aa-5968-349102dd3f2a	2021-05-28 12:00:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:00:59.951+03	2021-05-28 12:00:59.96+03	
5477d03d-d6c3-e435-3e8d-8b8f305e4b0e	2021-05-28 12:01:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:01:19.951+03	2021-05-28 12:01:19.958+03	
cb60abff-a991-f690-b445-d5c940677234	2021-05-28 12:01:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:01:39.951+03	2021-05-28 12:01:39.958+03	
e7b7ed9c-67a3-7ab6-3ccf-42981cf9015d	2021-05-28 12:01:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:01:59.951+03	2021-05-28 12:01:59.96+03	
33344f82-82c3-b8a6-79e8-aba53d33ad51	2021-05-28 12:02:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:02:19.951+03	2021-05-28 12:02:19.958+03	
e9c145cd-9281-27b0-a6e3-da1b7bfdfbf2	2021-05-28 12:02:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:02:39.951+03	2021-05-28 12:02:39.961+03	
2e021aa3-bd1f-31d1-a7fd-3d45bcd39fe2	2021-05-28 12:02:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:02:59.952+03	2021-05-28 12:02:59.96+03	
6e5b3bc0-a2b4-79f8-8e3f-875e614fd488	2021-05-28 12:03:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:03:20.951+03	2021-05-28 12:03:20.961+03	
6951b576-8619-ae54-9bb1-f26124597271	2021-05-28 12:03:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:03:40.951+03	2021-05-28 12:03:40.958+03	
ac364ac6-7304-e007-ac01-1ea1e7a327ef	2021-05-28 12:04:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:04:00.951+03	2021-05-28 12:04:00.961+03	
2abdecb0-582e-8994-63fb-4a4b811c6db4	2021-05-28 12:04:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:04:20.951+03	2021-05-28 12:04:20.958+03	
851556e8-14a7-e4b2-e270-2dfd304fc5f1	2021-05-28 12:04:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:04:40.951+03	2021-05-28 12:04:40.958+03	
cade14b8-9d64-f9f8-70b0-ed2e6b79799c	2021-05-28 12:05:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:05:00.952+03	2021-05-28 12:05:00.96+03	
e2ff9582-9e84-805c-f88a-d116fb3c093c	2021-05-28 12:05:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:05:22.951+03	2021-05-28 12:05:22.959+03	
14eaf4ac-dadc-329d-a364-3254d1c35f5a	2021-05-28 12:05:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:05:42.952+03	2021-05-28 12:05:42.958+03	
b77f2623-1b4c-3c69-fe8f-cc0d5649d7e4	2021-05-28 12:06:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:06:03.951+03	2021-05-28 12:06:03.959+03	
cbda4275-fd6e-2614-0d07-a76d51dd201c	2021-05-28 12:06:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:06:23.951+03	2021-05-28 12:06:23.959+03	
c25ab883-3fab-a26a-721b-455280430547	2021-05-28 12:06:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:06:43.951+03	2021-05-28 12:06:43.958+03	
ef2bf5e4-56ae-8c12-0a5d-db74da555357	2021-05-28 12:07:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:07:03.952+03	2021-05-28 12:07:03.96+03	
cbdc0b36-a6a7-3b2f-969c-ae1f78c8d97e	2021-05-28 12:07:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:07:25.951+03	2021-05-28 12:07:25.962+03	
e8fe8b97-cefa-9897-c629-142542a56692	2021-05-28 12:07:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:07:45.951+03	2021-05-28 12:07:45.958+03	
5dd328a5-9ed8-8452-04e8-2115204d194d	2021-05-28 12:08:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:08:05.951+03	2021-05-28 12:08:05.957+03	
d94ca3a1-37f6-6ee5-5e21-b50d1164436a	2021-05-28 12:08:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:08:26.951+03	2021-05-28 12:08:26.962+03	
c961f4b1-eea0-0865-50de-f1cb356c2f1e	2021-05-28 12:08:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:08:47.951+03	2021-05-28 12:08:47.96+03	
d5c3dbb7-44b5-2022-f85b-6b484bcd7367	2021-05-28 12:09:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:09:07.951+03	2021-05-28 12:09:07.968+03	
413a5769-30e4-c09a-abaf-175605431bd8	2021-05-28 12:09:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:09:27.951+03	2021-05-28 12:09:27.96+03	
c70fed07-2598-4282-4033-078b206122f3	2021-05-28 12:09:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:09:47.952+03	2021-05-28 12:09:47.959+03	
d1183786-efd7-be8e-0400-1d874502273e	2021-05-28 12:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 12:10:00.951+03	2021-05-28 12:10:00.957+03	ERROR
4ae287df-37cd-53a1-30a6-aa0169f4cb66	2021-05-28 12:10:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:10:18.951+03	2021-05-28 12:10:18.958+03	
4225bf24-0462-e812-c8ba-257dd5b34605	2021-05-28 12:10:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:10:39.951+03	2021-05-28 12:10:39.959+03	
2c87524c-8775-2dd4-354d-b0c63fde5662	2021-05-28 12:11:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:11:00.951+03	2021-05-28 12:11:00.959+03	
61fb6489-bca4-7278-f557-9f9b474ef487	2021-05-28 12:11:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:11:20.951+03	2021-05-28 12:11:20.957+03	
904e99a4-c220-5e99-3bd9-8cab6df12d05	2021-05-28 12:11:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:11:40.951+03	2021-05-28 12:11:40.958+03	
3768de40-905b-7f86-8552-4358d4093b90	2021-05-28 12:12:00.958	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:12:00.951+03	2021-05-28 12:12:00.965+03	
fe5d4008-6b5a-e676-351f-bb1aced47806	2021-05-28 12:12:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:12:20.951+03	2021-05-28 12:12:20.96+03	
cdeb3410-65d6-22a7-4a83-a0b8b2fb4597	2021-05-28 12:12:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:12:40.951+03	2021-05-28 12:12:40.958+03	
8b86f49c-5526-4a3c-65c8-174b8b4f80c0	2021-05-28 12:13:00.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:13:00.952+03	2021-05-28 12:13:00.967+03	
72d754b1-370d-27f6-234e-eb0cd2883cf3	2021-05-28 12:13:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:13:21.951+03	2021-05-28 12:13:21.961+03	
055e9277-2423-df07-301e-d35ea7779ed1	2021-05-28 12:13:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:13:41.951+03	2021-05-28 12:13:41.962+03	
fd23bdb0-e341-0fac-3ffa-442174afbd28	2021-05-28 12:14:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:14:01.951+03	2021-05-28 12:14:01.963+03	
c7138820-1906-86ca-6b61-7081c50dfd75	2021-05-28 12:14:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:14:21.951+03	2021-05-28 12:14:21.959+03	
038ca1f1-62ee-38a1-75c2-10ce4a448236	2021-05-28 12:14:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:14:41.952+03	2021-05-28 12:14:41.959+03	
5ea72e95-37ce-d4fa-6359-3072f0a1d381	2021-05-28 12:15:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:15:02.951+03	2021-05-28 12:15:02.959+03	
12d9295c-3d40-7b9a-cbd5-dcad57bc7260	2021-05-28 12:15:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:15:32.951+03	2021-05-28 12:15:32.958+03	
8c848ee7-c42b-ed58-05fd-7a5b889d8349	2021-05-28 12:15:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:15:52.952+03	2021-05-28 12:15:52.962+03	
7f681169-9e76-2b1e-2142-f72153fc0ddd	2021-05-28 12:16:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:16:13.951+03	2021-05-28 12:16:13.958+03	
67f0ff99-8735-87c6-2bc7-8929e3886db6	2021-05-28 12:16:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:16:33.951+03	2021-05-28 12:16:33.96+03	
dea24f40-a61f-175c-34af-897bc9e90e83	2021-05-28 12:16:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:16:53.951+03	2021-05-28 12:16:53.959+03	
01a6771d-2f38-6515-a1e2-8f59eec078e7	2021-05-28 11:56:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:56:15.951+03	2021-05-28 11:56:15.957+03	
ddda5f7a-7265-d394-ccdd-5cb5949a27f8	2021-05-28 11:56:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:56:35.951+03	2021-05-28 11:56:35.958+03	
820c0401-f9d3-051d-05c3-9c778213148b	2021-05-28 11:56:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:56:55.951+03	2021-05-28 11:56:55.967+03	
a965daf4-d8c4-0148-0823-71672437321d	2021-05-28 11:57:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:57:16.951+03	2021-05-28 11:57:16.959+03	
3a16103c-9792-cbd7-0ec7-4216f03f86ef	2021-05-28 11:57:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:57:36.951+03	2021-05-28 11:57:36.96+03	
81a7cb44-4844-efdb-e703-e0d4b4387e8c	2021-05-28 11:57:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:57:56.951+03	2021-05-28 11:57:56.967+03	
bacfafcf-e1e9-075e-3507-bd9a367a00cf	2021-05-28 11:58:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:58:16.951+03	2021-05-28 11:58:16.959+03	
ae517112-a310-8b2f-b5e3-101be383ca33	2021-05-28 11:58:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:58:36.951+03	2021-05-28 11:58:36.96+03	
38dbdf97-aac5-eecd-0871-f3df66f9274a	2021-05-28 11:58:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:58:56.951+03	2021-05-28 11:58:56.959+03	
91fc368d-dddb-f730-8626-72958a251404	2021-05-28 11:59:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:59:16.951+03	2021-05-28 11:59:16.959+03	
0099a7e9-4ae4-82bb-5c60-ba61e1294378	2021-05-28 11:59:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:59:36.952+03	2021-05-28 11:59:36.96+03	
92656bb5-9fd2-4d89-f17e-48974d637877	2021-05-28 11:59:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 11:59:58.952+03	2021-05-28 11:59:58.964+03	
db0d1a7a-28b4-3d9f-6e59-e7367251965d	2021-05-28 12:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:00:09.951+03	2021-05-28 12:00:09.959+03	
c85984d9-18c8-163d-6f1a-fe84b1b687d7	2021-05-28 12:00:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:00:29.951+03	2021-05-28 12:00:29.958+03	
843e47ee-a1c7-f162-7803-f3c03a5a1b17	2021-05-28 12:00:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:00:49.951+03	2021-05-28 12:00:49.959+03	
d4919916-7761-a0fc-0df8-04d48bf8fb31	2021-05-28 12:01:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:01:09.951+03	2021-05-28 12:01:09.958+03	
4886552a-6ea8-8b9f-25f5-55671217b2fd	2021-05-28 12:01:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:01:29.951+03	2021-05-28 12:01:29.958+03	
45c9ae88-6dc0-bece-6014-d569209e9970	2021-05-28 12:01:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:01:49.951+03	2021-05-28 12:01:49.958+03	
5c21b0fb-bdd7-78e0-31c9-13213b125b41	2021-05-28 12:02:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:02:09.951+03	2021-05-28 12:02:09.969+03	
7ca70a5b-476e-738c-a804-ab6a1b4606ee	2021-05-28 12:02:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:02:29.951+03	2021-05-28 12:02:29.958+03	
61ef218d-294b-356d-863d-432c8acec6e0	2021-05-28 12:02:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:02:49.951+03	2021-05-28 12:02:49.958+03	
cb96cb42-15a7-7a37-fc2c-b20404db638c	2021-05-28 12:03:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:03:10.951+03	2021-05-28 12:03:10.96+03	
ad02bbc7-4fe6-f4a6-9817-6539444aee33	2021-05-28 12:03:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:03:30.951+03	2021-05-28 12:03:30.959+03	
3987ff08-d84c-3a77-d360-b42a450f48b2	2021-05-28 12:03:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:03:50.951+03	2021-05-28 12:03:50.961+03	
9bf2c977-be44-6f87-1112-9798142e8d2b	2021-05-28 12:04:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:04:10.951+03	2021-05-28 12:04:10.957+03	
9c242780-e698-7dd4-63c4-56064910625e	2021-05-28 12:04:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:04:30.951+03	2021-05-28 12:04:30.96+03	
234feffd-9367-bf91-ddb3-220aceba00f5	2021-05-28 12:04:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:04:50.951+03	2021-05-28 12:04:50.961+03	
2c54998d-8775-111c-5487-e9995aa27202	2021-05-28 12:05:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:05:11.952+03	2021-05-28 12:05:11.959+03	
2505845d-74aa-90e6-bce1-c0f653e03e42	2021-05-28 12:05:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:05:32.951+03	2021-05-28 12:05:32.957+03	
aec25beb-5479-1ce3-0fc9-d9772ffa0717	2021-05-28 12:05:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:05:53.951+03	2021-05-28 12:05:53.96+03	
c255bb3f-fa78-774e-57fd-265a4918fcc3	2021-05-28 12:06:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:06:13.951+03	2021-05-28 12:06:13.966+03	
4bfbef35-d8ab-4425-92e1-ca37bafcc05a	2021-05-28 12:06:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:06:33.951+03	2021-05-28 12:06:33.958+03	
3e0ce72f-0b48-75ca-dcbe-8394488c6f0b	2021-05-28 12:06:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:06:53.951+03	2021-05-28 12:06:53.957+03	
fdd5b91e-8cd2-fa5f-1bf7-49eb18a73185	2021-05-28 12:07:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:07:14.952+03	2021-05-28 12:07:14.96+03	
d20e8ded-ee48-0cf8-e0c5-9709799af757	2021-05-28 12:07:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:07:35.951+03	2021-05-28 12:07:35.958+03	
b88c1005-e7a4-1fcd-0082-e9ca10bce73c	2021-05-28 12:07:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:07:55.951+03	2021-05-28 12:07:55.958+03	
8c10f052-f0f2-07ee-7e1f-859111b07de4	2021-05-28 12:08:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:08:15.952+03	2021-05-28 12:08:15.959+03	
c2d445eb-f589-a7bd-b77d-308da58bb17d	2021-05-28 12:08:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:08:36.952+03	2021-05-28 12:08:36.959+03	
cc2e69f4-561f-e382-147c-b3ab06456095	2021-05-28 12:08:57.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:08:57.951+03	2021-05-28 12:08:57.959+03	
0ad3f7c9-a183-1257-3cb9-521e5bd00dbc	2021-05-28 12:09:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:09:17.951+03	2021-05-28 12:09:17.958+03	
d22ef44e-4dc3-69e6-a75e-5bda520b84a0	2021-05-28 12:09:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:09:37.951+03	2021-05-28 12:09:37.959+03	
039b6e8e-f017-66de-8402-272a9918cc06	2021-05-28 12:09:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:09:58.951+03	2021-05-28 12:09:58.958+03	
58a50d9a-2af6-2f38-2f1d-4684b639edae	2021-05-28 12:10:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:10:08.951+03	2021-05-28 12:10:08.959+03	
d3c5cb01-0ea6-4f55-912a-97f9933210af	2021-05-28 12:10:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:10:28.952+03	2021-05-28 12:10:28.959+03	
566ea9af-b71f-93d3-21ae-899c48f030bf	2021-05-28 12:10:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:10:49.952+03	2021-05-28 12:10:49.959+03	
d6faee54-5886-4c52-b2ed-761f068a3d45	2021-05-28 12:11:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:11:10.951+03	2021-05-28 12:11:10.958+03	
a22cd4fd-0e6e-fdfa-9e0d-515392970475	2021-05-28 12:11:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:11:30.951+03	2021-05-28 12:11:30.958+03	
aa183166-132d-91bf-15eb-9caf9a7759ba	2021-05-28 12:11:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:11:50.951+03	2021-05-28 12:11:50.957+03	
4f57b26a-e54d-ac37-ccde-b7650b7f6807	2021-05-28 12:12:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:12:10.951+03	2021-05-28 12:12:10.957+03	
46967640-f38b-4010-d250-d5c6f7e424f4	2021-05-28 12:12:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:12:30.951+03	2021-05-28 12:12:30.957+03	
123de54f-ea8c-cbf4-32e8-552158d40686	2021-05-28 12:12:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:12:50.952+03	2021-05-28 12:12:50.965+03	
a44a1ac9-c255-40f0-aad5-1b4b9df14bc8	2021-05-28 12:13:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:13:11.951+03	2021-05-28 12:13:11.958+03	
6c5abcbc-0200-7a63-dc3c-f8c4189ad133	2021-05-28 12:13:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:13:31.951+03	2021-05-28 12:13:31.958+03	
35505701-af03-a32c-fe86-2db4054e5a17	2021-05-28 12:13:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:13:51.951+03	2021-05-28 12:13:51.96+03	
9a2cff72-dc90-8af7-e53a-1947916bb706	2021-05-28 12:14:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:14:11.951+03	2021-05-28 12:14:11.959+03	
489cae0d-d1ab-06a1-6f66-9b48797f32bc	2021-05-28 12:14:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:14:31.951+03	2021-05-28 12:14:31.958+03	
dc29deb3-0397-a3fb-9a5a-ed8f10b07fb1	2021-05-28 12:14:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:14:52.951+03	2021-05-28 12:14:52.958+03	
4a014993-aab4-44e8-0cc4-87f02f79bf01	2021-05-28 12:15:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:15:12.951+03	2021-05-28 12:15:12.968+03	
0b97fe9a-7984-a9f9-7f52-4958d25bfb74	2021-05-28 12:15:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:15:22.951+03	2021-05-28 12:15:22.958+03	
24059b56-4bd5-877c-b8ee-9e913b4ef2fe	2021-05-28 12:15:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:15:42.951+03	2021-05-28 12:15:42.957+03	
c70c8016-7be3-2168-fef3-2e932de46972	2021-05-28 12:16:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:16:02.952+03	2021-05-28 12:16:02.961+03	
a00c1f35-7680-d68c-80a5-de12bd327d7e	2021-05-28 12:16:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:16:23.951+03	2021-05-28 12:16:23.958+03	
83de0b3c-cd4a-18fb-fcb4-abab1b459656	2021-05-28 12:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:16:43.951+03	2021-05-28 12:16:43.958+03	
12dfcb6c-f58c-7d63-c88c-a9ccb08c1d9f	2021-05-28 12:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:17:03.951+03	2021-05-28 12:17:03.958+03	
bbf7b819-54db-92be-3789-9f64b9966238	2021-05-28 12:17:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:17:23.952+03	2021-05-28 12:17:23.96+03	
3e418487-f77b-2b25-e26a-ae1802cef9d4	2021-05-28 12:17:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:17:44.951+03	2021-05-28 12:17:44.961+03	
7cddb787-85e0-9c85-3bc7-01c3db89a255	2021-05-28 12:18:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:18:04.951+03	2021-05-28 12:18:04.959+03	
a027b36e-8b59-7f37-38a9-ce7bfa61da52	2021-05-28 12:18:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:18:24.951+03	2021-05-28 12:18:24.957+03	
b0cc4734-aa3d-9c8e-914b-d61acfe9bacf	2021-05-28 12:18:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:18:44.952+03	2021-05-28 12:18:44.961+03	
f561f59c-d797-2cf1-d8d6-dd2ad8c4359e	2021-05-28 12:19:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:19:05.951+03	2021-05-28 12:19:05.959+03	
32ef9511-227e-e38c-cb47-ee2ec640af41	2021-05-28 12:19:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:19:25.951+03	2021-05-28 12:19:25.958+03	
515d6776-4d85-57eb-d2de-6c360d2120fd	2021-05-28 12:19:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:19:45.951+03	2021-05-28 12:19:45.961+03	
953f99ee-d8d8-4af0-8df0-2e3b49fdf7e5	2021-05-28 12:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 12:20:00.951+03	2021-05-28 12:20:00.956+03	ERROR
89a19dc7-93c7-487b-5a98-856713f8cfca	2021-05-28 12:20:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:20:15.951+03	2021-05-28 12:20:15.958+03	
8bc682d9-ee0a-f125-111a-93486a0e5ada	2021-05-28 12:20:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:20:35.951+03	2021-05-28 12:20:35.958+03	
0b870e6c-2466-a400-212b-e10063c62fac	2021-05-28 12:20:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:20:56.951+03	2021-05-28 12:20:56.966+03	
00e08af2-e72e-c8f3-ef9a-2dd3bc14880d	2021-05-28 12:21:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:21:17.951+03	2021-05-28 12:21:17.958+03	
d3a48192-4d0e-b248-1fbc-d100ba0e7264	2021-05-28 12:21:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:21:38.951+03	2021-05-28 12:21:38.958+03	
a456545d-3c27-a403-c17e-5f57d984c93f	2021-05-28 12:21:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:21:58.951+03	2021-05-28 12:21:58.958+03	
7073f7b2-7eb8-08e9-2021-fbbdd8e5b7f7	2021-05-28 12:22:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:22:18.951+03	2021-05-28 12:22:18.958+03	
728f17d7-fcd2-4634-6a1d-79c7f6b85152	2021-05-28 12:22:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:22:38.951+03	2021-05-28 12:22:38.958+03	
3fda75c4-c586-8fd9-df78-2add7b8fcd4f	2021-05-28 12:22:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:22:58.951+03	2021-05-28 12:22:58.958+03	
9714b841-99ee-309e-e972-5991fafc3892	2021-05-28 12:23:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:23:18.951+03	2021-05-28 12:23:18.958+03	
d61c68dc-4c5d-a4ef-1322-6300ebbbd800	2021-05-28 12:23:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:23:38.951+03	2021-05-28 12:23:38.968+03	
e4811e58-9ab8-9e8f-8050-6eb96fa0e475	2021-05-28 12:23:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:23:58.951+03	2021-05-28 12:23:58.959+03	
36d1cf0f-6b7f-1c54-7b6e-0f1356c8a0a2	2021-05-28 12:24:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:24:19.951+03	2021-05-28 12:24:19.963+03	
fb4c6380-fe0b-6731-18e6-9c0f11f9c629	2021-05-28 12:24:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:24:39.952+03	2021-05-28 12:24:39.959+03	
160047d2-e615-e6fa-8e68-309691f81e8b	2021-05-28 12:25:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:25:00.951+03	2021-05-28 12:25:00.959+03	
97d3d7a6-33f9-9f95-022a-9bac692c5c08	2021-05-28 12:25:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:25:21.951+03	2021-05-28 12:25:21.962+03	
b35af58d-f339-2335-9b6b-9eb678b46a34	2021-05-28 12:25:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:25:41.951+03	2021-05-28 12:25:41.957+03	
fbb57cad-28d0-3044-fe06-98297fb6a4d4	2021-05-28 12:26:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:26:01.951+03	2021-05-28 12:26:01.958+03	
6484898e-9cbb-6e54-3adf-13aad84be17a	2021-05-28 12:26:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:26:21.951+03	2021-05-28 12:26:21.958+03	
66269a71-5152-a798-fe99-1c97e13369df	2021-05-28 12:26:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:26:41.951+03	2021-05-28 12:26:41.958+03	
caa720a2-0c8a-274e-bdd3-0edd05feba81	2021-05-28 12:27:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:27:01.951+03	2021-05-28 12:27:01.957+03	
dd8a552f-3e20-d5e0-95f9-5456d74937e9	2021-05-28 12:27:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:27:21.951+03	2021-05-28 12:27:21.958+03	
123ac89f-1953-4fbd-00cc-62cb534cc79d	2021-05-28 12:27:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:27:41.951+03	2021-05-28 12:27:41.958+03	
50c31a4a-d389-ec54-f229-015e643ea6a2	2021-05-28 12:28:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:28:01.951+03	2021-05-28 12:28:01.959+03	
6748806f-841a-9379-8181-86f90a24a57d	2021-05-28 12:28:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:28:21.951+03	2021-05-28 12:28:21.958+03	
d0293185-ce29-15bc-e116-39eddec77574	2021-05-28 12:28:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:28:41.951+03	2021-05-28 12:28:41.958+03	
739a6ff7-22e0-0b1f-4867-44d97b6c832f	2021-05-28 12:29:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:29:01.951+03	2021-05-28 12:29:01.957+03	
a6321a52-3507-e785-d21e-d3ebd52a6487	2021-05-28 12:29:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:29:21.951+03	2021-05-28 12:29:21.959+03	
bd676b8e-29e0-fa66-b462-09c366b655bc	2021-05-28 12:29:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:29:41.951+03	2021-05-28 12:29:41.96+03	
fca1e863-4a65-ab6f-07b5-ea51775d539e	2021-05-28 12:30:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 12:30:00.951+03	2021-05-28 12:30:00.956+03	ERROR
285ea380-c72e-5e71-9aa3-751bcde673e2	2021-05-28 12:30:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:30:12.951+03	2021-05-28 12:30:12.958+03	
8a60b83d-9c94-e9cd-317d-53ddedb6693c	2021-05-28 12:30:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:30:32.951+03	2021-05-28 12:30:32.958+03	
167bee99-5e21-936d-a889-d0e7cc1cff68	2021-05-28 12:30:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:30:52.951+03	2021-05-28 12:30:52.959+03	
5aa8422f-afd8-d1bb-d866-5b1e989e7f72	2021-05-28 12:31:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:31:12.951+03	2021-05-28 12:31:12.959+03	
ec6c6f79-7a23-18ed-b71b-645ce65e81a2	2021-05-28 12:31:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:31:33.951+03	2021-05-28 12:31:33.959+03	
695add1b-e118-d7b9-dcbc-6f5701243072	2021-05-28 12:31:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:31:53.951+03	2021-05-28 12:31:53.959+03	
a4cc2940-3def-7a9d-13be-c4c8ed9009eb	2021-05-28 12:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:32:13.951+03	2021-05-28 12:32:13.972+03	
e48b53e5-c604-b31d-02f4-1c808547731c	2021-05-28 12:32:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:32:33.951+03	2021-05-28 12:32:33.96+03	
7fce20f8-de96-517e-e29d-8136c20698f4	2021-05-28 12:32:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:32:53.951+03	2021-05-28 12:32:53.96+03	
0d647ce7-52ba-3ea4-1599-995b991c9872	2021-05-28 12:33:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:33:13.951+03	2021-05-28 12:33:13.971+03	
ddff0386-6991-eb0e-ead7-4d89bbe42a48	2021-05-28 12:33:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:33:33.951+03	2021-05-28 12:33:33.96+03	
70efb597-ec3a-6943-ff20-5fb8f67f828a	2021-05-28 12:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:33:54.951+03	2021-05-28 12:33:54.96+03	
49c0d83e-3303-5f42-6ee1-af1130d3730a	2021-05-28 12:34:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:34:14.952+03	2021-05-28 12:34:14.969+03	
ad2511fc-21cd-2ed7-1736-f75d67886446	2021-05-28 12:34:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:34:35.951+03	2021-05-28 12:34:35.959+03	
faeea6d0-5f97-e364-913c-7bf41a13767b	2021-05-28 12:34:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:34:55.951+03	2021-05-28 12:34:55.958+03	
b64bbee8-d483-63e9-0446-d26749ae53c5	2021-05-28 12:35:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:35:16.951+03	2021-05-28 12:35:16.961+03	
a02ac9c2-d3d8-6416-0a65-36422439f4c7	2021-05-28 12:35:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:35:36.951+03	2021-05-28 12:35:36.963+03	
b526994f-ebef-3126-97c3-8176aff0fa86	2021-05-28 12:35:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:35:56.951+03	2021-05-28 12:35:56.958+03	
abde102f-b09e-ab85-0634-7c2179cf5c62	2021-05-28 12:36:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:36:16.951+03	2021-05-28 12:36:16.965+03	
a33c3052-4cd1-55ee-e555-fd2812039ce7	2021-05-28 12:36:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:36:36.951+03	2021-05-28 12:36:36.958+03	
255ea03e-9a7c-2103-d49d-ea00efcbe623	2021-05-28 12:36:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:36:56.951+03	2021-05-28 12:36:56.96+03	
009043d2-77b7-8b60-f032-59c91479cad9	2021-05-28 12:37:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:37:16.952+03	2021-05-28 12:37:16.962+03	
5335b31b-3c65-3d4f-4055-59663fae4f56	2021-05-28 12:37:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:37:37.952+03	2021-05-28 12:37:37.961+03	
58ce6f64-e4ae-7e95-3c7c-fa24d3dfc5ff	2021-05-28 12:17:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:17:13.951+03	2021-05-28 12:17:13.958+03	
0fd93ec6-1529-b15e-3df7-805c5ffea4ae	2021-05-28 12:17:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:17:34.951+03	2021-05-28 12:17:34.958+03	
0ca8b44f-b15e-15d6-dc87-14a7f24bba72	2021-05-28 12:17:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:17:54.951+03	2021-05-28 12:17:54.958+03	
aaee174e-e7e5-be13-f81b-932b9c70c6d3	2021-05-28 12:18:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:18:14.951+03	2021-05-28 12:18:14.957+03	
d16d0fd6-3443-0d21-4380-1a1b859260cf	2021-05-28 12:18:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:18:34.951+03	2021-05-28 12:18:34.959+03	
964ac417-85ca-ddbc-5300-bbbeca23a2de	2021-05-28 12:18:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:18:55.951+03	2021-05-28 12:18:55.958+03	
1dcf48a3-0738-1f7a-c233-2cc83f9b06f7	2021-05-28 12:19:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:19:15.951+03	2021-05-28 12:19:15.958+03	
3ba81d40-4820-a90f-cb47-a06696ee6038	2021-05-28 12:19:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:19:35.951+03	2021-05-28 12:19:35.958+03	
4509e02e-2cb5-4092-0188-77dcdf9e3b50	2021-05-28 12:19:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:19:55.951+03	2021-05-28 12:19:55.958+03	
169c2644-d59e-e620-4398-dfdca48121d2	2021-05-28 12:20:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:20:05.951+03	2021-05-28 12:20:05.958+03	
f4b217eb-13c1-fffb-37dc-5ce979bed8c0	2021-05-28 12:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:20:25.951+03	2021-05-28 12:20:25.958+03	
ded111c2-b954-169f-6bf9-c2b0713cca15	2021-05-28 12:20:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:20:45.952+03	2021-05-28 12:20:45.959+03	
66511976-ac8e-b692-202f-d568b05c2e9e	2021-05-28 12:21:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:21:06.952+03	2021-05-28 12:21:06.958+03	
39b52c46-d658-00e7-0306-dcbf4c432420	2021-05-28 12:21:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:21:27.952+03	2021-05-28 12:21:27.959+03	
d025d9d9-428c-4ba6-bde3-8845820b0263	2021-05-28 12:21:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:21:48.951+03	2021-05-28 12:21:48.961+03	
3ad714ce-7a71-6abe-80c3-71b8f4f1964e	2021-05-28 12:22:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:22:08.951+03	2021-05-28 12:22:08.96+03	
71c6f3cc-799a-0dad-15fb-c4d48517bb8e	2021-05-28 12:22:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:22:28.951+03	2021-05-28 12:22:28.96+03	
bb0a4471-f107-7402-a338-a50340cd8e66	2021-05-28 12:22:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:22:48.951+03	2021-05-28 12:22:48.959+03	
0b1e40c4-4955-92a5-0f2b-3f66c3ecef94	2021-05-28 12:23:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:23:08.951+03	2021-05-28 12:23:08.962+03	
4b805b3d-608d-f8ff-ac38-8d5a9a6f2f5d	2021-05-28 12:23:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:23:28.951+03	2021-05-28 12:23:28.96+03	
b03d8772-43a4-9989-bb94-1a54f12014e4	2021-05-28 12:23:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:23:48.951+03	2021-05-28 12:23:48.966+03	
d3ccfdc0-b1e9-1111-1814-b342e0ab6584	2021-05-28 12:24:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:24:08.952+03	2021-05-28 12:24:08.961+03	
d20a366b-e091-b8ab-d86e-047dfbc2694c	2021-05-28 12:24:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:24:29.951+03	2021-05-28 12:24:29.96+03	
fcdb38c2-3cfb-8f95-2af4-12ad04a6290b	2021-05-28 12:24:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:24:50.951+03	2021-05-28 12:24:50.961+03	
cdc6ca17-33dd-a7fe-85a2-89dc0d9249e4	2021-05-28 12:25:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:25:10.952+03	2021-05-28 12:25:10.958+03	
0e1d327c-96e5-0b70-0e94-4ef1f81195cd	2021-05-28 12:25:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:25:31.951+03	2021-05-28 12:25:31.958+03	
f7c4e0a4-816d-2327-6d3e-d905a88e650c	2021-05-28 12:25:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:25:51.951+03	2021-05-28 12:25:51.957+03	
4478da56-3120-11cf-e93e-1aeeba2d0acc	2021-05-28 12:26:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:26:11.951+03	2021-05-28 12:26:11.957+03	
80ce9902-b1b0-c29d-0519-147ad56df3fe	2021-05-28 12:26:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:26:31.951+03	2021-05-28 12:26:31.958+03	
b2919a04-54c8-6993-e440-4508e9971a3a	2021-05-28 12:26:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:26:51.951+03	2021-05-28 12:26:51.959+03	
ba7a601f-85f3-68ea-760c-6f8b6932294b	2021-05-28 12:27:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:27:11.951+03	2021-05-28 12:27:11.958+03	
8a7a37fd-f734-b7a5-5359-c0bd1e8ee949	2021-05-28 12:27:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:27:31.951+03	2021-05-28 12:27:31.959+03	
a3e3a33f-0145-bf1c-0a66-143456505aa0	2021-05-28 12:27:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:27:51.951+03	2021-05-28 12:27:51.959+03	
993c7291-db25-4d4b-eb4b-bc567c5a5f5e	2021-05-28 12:28:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:28:11.951+03	2021-05-28 12:28:11.959+03	
f7647cad-ffbe-cfcb-fb33-4b7b02e91dad	2021-05-28 12:28:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:28:31.951+03	2021-05-28 12:28:31.962+03	
9ae0ca1e-e1de-c193-db93-26d407f1619b	2021-05-28 12:28:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:28:51.951+03	2021-05-28 12:28:51.958+03	
3449411c-1719-cb50-6a26-1dbc92e1af13	2021-05-28 12:29:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:29:11.951+03	2021-05-28 12:29:11.959+03	
d3a91d47-e7fb-4650-aa83-05d3bb68a6b1	2021-05-28 12:29:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:29:31.951+03	2021-05-28 12:29:31.959+03	
e5eecd58-b7f8-78e5-b072-939771908e0d	2021-05-28 12:29:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:29:51.951+03	2021-05-28 12:29:51.959+03	
4f7c16dc-a844-6b93-e9b7-bc9b16a660dc	2021-05-28 12:30:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:30:01.952+03	2021-05-28 12:30:01.959+03	
9f56d5e2-b875-71c9-456f-2297bf88af89	2021-05-28 12:30:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:30:22.951+03	2021-05-28 12:30:22.958+03	
33176dc0-5b74-30d7-1248-0323084726b2	2021-05-28 12:30:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:30:42.951+03	2021-05-28 12:30:42.959+03	
45ae1a56-b7de-7a0a-450d-c03e05cc21af	2021-05-28 12:31:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:31:02.951+03	2021-05-28 12:31:02.959+03	
7b13f7b6-8f47-713e-4307-a3f784327ca3	2021-05-28 12:31:22.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:31:22.96+03	2021-05-28 12:31:22.967+03	
8cf06721-818d-a6bf-6704-304fb807e869	2021-05-28 12:31:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:31:43.951+03	2021-05-28 12:31:43.959+03	
131ae5de-3e96-52b7-6070-03d7e99ad84b	2021-05-28 12:32:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:32:03.951+03	2021-05-28 12:32:03.959+03	
4dec066f-da54-2784-456f-98eea28a34ce	2021-05-28 12:32:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:32:23.951+03	2021-05-28 12:32:23.96+03	
89198473-9785-b90f-5f39-56505fc24d7f	2021-05-28 12:32:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:32:43.951+03	2021-05-28 12:32:43.959+03	
13af19c2-16dd-d111-a7bd-b4162764eb77	2021-05-28 12:33:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:33:03.951+03	2021-05-28 12:33:03.958+03	
b011cb7f-3da3-5b91-8b6e-9e548d5e62e5	2021-05-28 12:33:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:33:23.951+03	2021-05-28 12:33:23.958+03	
effa62b2-594a-7e09-d3f7-f95ebc5bbe07	2021-05-28 12:33:43.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:33:43.952+03	2021-05-28 12:33:43.96+03	
5fa0bd12-6082-e56d-49c8-b0b7b5d1715a	2021-05-28 12:34:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:34:04.951+03	2021-05-28 12:34:04.958+03	
828ebed5-2857-a2f3-5237-4b39b021ed56	2021-05-28 12:34:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:34:25.951+03	2021-05-28 12:34:25.959+03	
23cb1c33-e7c2-02ac-6af9-ec3c6430c00a	2021-05-28 12:34:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:34:45.951+03	2021-05-28 12:34:45.958+03	
3662b35a-50ef-b17a-3610-48e7d86e6a4f	2021-05-28 12:35:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:35:05.952+03	2021-05-28 12:35:05.959+03	
4da8d1b3-c4ae-0cdb-5927-8d22fdcc0cfa	2021-05-28 12:35:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:35:26.951+03	2021-05-28 12:35:26.959+03	
69402acf-e3f7-1488-270e-51d641b6345a	2021-05-28 12:35:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:35:46.951+03	2021-05-28 12:35:46.959+03	
cc08664a-b760-158c-a321-df70a60061a3	2021-05-28 12:36:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:36:06.951+03	2021-05-28 12:36:06.958+03	
3999e7fb-d0e9-91a1-e1c1-fe2afa0a5fb8	2021-05-28 12:36:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:36:26.951+03	2021-05-28 12:36:26.958+03	
b2cc6bca-e132-03d8-5eb2-f7b99a28c33e	2021-05-28 12:36:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:36:46.951+03	2021-05-28 12:36:46.959+03	
5f10962f-750e-39fe-d0f8-9ca56b55635e	2021-05-28 12:37:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:37:06.951+03	2021-05-28 12:37:06.957+03	
1386c6b5-99d1-98d4-b549-edac513d0c31	2021-05-28 12:37:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:37:27.952+03	2021-05-28 12:37:27.96+03	
9e30bffd-b0c5-5a19-a550-27ed9616415e	2021-05-28 12:37:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:37:47.952+03	2021-05-28 12:37:47.96+03	
66ce5fc9-399b-2f83-bcc4-721a5b529d73	2021-05-28 12:37:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:37:57.952+03	2021-05-28 12:37:57.958+03	
33db0a85-156d-c5d6-b933-e1d2551e7f69	2021-05-28 12:38:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:38:17.952+03	2021-05-28 12:38:17.962+03	
4bfdde4c-d996-e437-e8b0-eaa9b94a92f4	2021-05-28 12:38:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:38:38.951+03	2021-05-28 12:38:38.96+03	
b4b4aa74-89e0-9404-819a-b371c2473ba1	2021-05-28 12:38:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:38:58.951+03	2021-05-28 12:38:58.959+03	
9b045c86-f455-3168-2040-1fe30b9ddb8f	2021-05-28 12:39:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:39:18.951+03	2021-05-28 12:39:18.964+03	
5fbc0971-d4ae-2e99-7845-c5a7e716518d	2021-05-28 12:39:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:39:38.951+03	2021-05-28 12:39:38.96+03	
4aa61bb4-1f10-5158-5683-97f2f2a9c61b	2021-05-28 12:39:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:39:58.951+03	2021-05-28 12:39:58.957+03	
fb120e62-5492-43dc-040f-e42d71d24166	2021-05-28 12:40:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:40:08.951+03	2021-05-28 12:40:08.958+03	
9ba3d5ff-aa81-42e2-9d26-83ebecdc54fc	2021-05-28 12:40:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:40:28.952+03	2021-05-28 12:40:28.958+03	
39e1c85e-37eb-249a-f63b-952ad971ad6a	2021-05-28 12:40:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:40:49.952+03	2021-05-28 12:40:49.963+03	
6723a7d8-fd3e-543c-8ddb-41e5ca7ebe1a	2021-05-28 12:41:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:41:10.951+03	2021-05-28 12:41:10.958+03	
f0d9355b-4dad-9a8c-f6fa-07680cb85bff	2021-05-28 12:41:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:41:30.951+03	2021-05-28 12:41:30.958+03	
8f6fc8af-e425-402f-e058-8c1380194cad	2021-05-28 12:41:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:41:50.951+03	2021-05-28 12:41:50.958+03	
04b4e359-e8c1-a971-c87f-83c0db6ed348	2021-05-28 12:42:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:42:10.951+03	2021-05-28 12:42:10.958+03	
f7a9acba-f547-a6fd-cc8c-b6be5b94ed76	2021-05-28 12:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:42:31.951+03	2021-05-28 12:42:31.959+03	
239eab41-1dfa-559a-a0b8-341eebf58977	2021-05-28 12:42:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:42:51.951+03	2021-05-28 12:42:51.96+03	
91cb375d-cad4-caf1-0294-d2b46ebe0a99	2021-05-28 12:43:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:43:11.951+03	2021-05-28 12:43:11.959+03	
53807de1-298d-9007-9873-459379fe039b	2021-05-28 12:43:31.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:43:31.952+03	2021-05-28 12:43:31.961+03	
33e59ef0-5b95-ab69-2c21-0c5b30793665	2021-05-28 12:43:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:43:52.952+03	2021-05-28 12:43:52.961+03	
d7177ef1-f183-47c0-d873-4c18be81aecc	2021-05-28 12:44:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:44:13.951+03	2021-05-28 12:44:13.957+03	
e3bcd302-a076-4f31-c7f4-03703570f567	2021-05-28 12:44:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:44:33.951+03	2021-05-28 12:44:33.959+03	
9c8dd35d-1ef6-4c56-a751-72c1abc7e4c7	2021-05-28 12:44:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:44:53.951+03	2021-05-28 12:44:53.96+03	
77cede94-6823-4c6d-b791-b655bf463104	2021-05-28 12:45:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:45:13.951+03	2021-05-28 12:45:13.959+03	
0d0ea6db-4dce-2425-8179-c3690d4ad559	2021-05-28 12:45:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:45:33.951+03	2021-05-28 12:45:33.96+03	
fefe0d10-b6a6-8dfb-ef18-fc3e5a2d7650	2021-05-28 12:45:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:45:53.951+03	2021-05-28 12:45:53.959+03	
39bd8359-60b2-e556-0804-334eb2fbcc2a	2021-05-28 12:46:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:46:13.951+03	2021-05-28 12:46:13.957+03	
7bb12b90-754d-16b9-1a42-c8b843353ce1	2021-05-28 12:46:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:46:33.951+03	2021-05-28 12:46:33.958+03	
3170224e-7c23-68c8-92d4-667662ddc9b0	2021-05-28 12:46:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:46:53.951+03	2021-05-28 12:46:53.958+03	
9d76b9c8-c07f-cd0a-1434-7a2b40f61c35	2021-05-28 12:47:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:47:13.951+03	2021-05-28 12:47:13.958+03	
c26da18e-4c7b-9f18-1030-45abc8e11d9f	2021-05-28 12:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:47:33.951+03	2021-05-28 12:47:33.958+03	
cf388a50-8f5e-c1c1-45ba-51959f8bfa49	2021-05-28 12:47:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:47:53.951+03	2021-05-28 12:47:53.959+03	
9d01222f-6441-bdce-8e35-19cc81bab2f4	2021-05-28 12:48:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:48:13.951+03	2021-05-28 12:48:13.958+03	
c8807736-2cc1-eb6b-831a-1b335f4efd00	2021-05-28 12:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:48:33.952+03	2021-05-28 12:48:33.959+03	
54a68bab-65f8-562b-2956-de9ec82adf3f	2021-05-28 12:48:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:48:55.951+03	2021-05-28 12:48:55.96+03	
dcc98099-451d-1a07-ab86-d47c53ae4ccd	2021-05-28 12:49:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:49:16.952+03	2021-05-28 12:49:16.959+03	
61ddbc55-e6ab-ed6b-a2fa-ca9f7777db69	2021-05-28 12:49:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:49:38.951+03	2021-05-28 12:49:38.959+03	
f32efc76-ebfc-9d7d-1640-960d8c400b5f	2021-05-28 12:49:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:49:58.951+03	2021-05-28 12:49:58.958+03	
7412621e-a18d-ba7f-6900-f399819bfa15	2021-05-28 12:50:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:50:08.951+03	2021-05-28 12:50:08.963+03	
45089d02-a217-b881-8661-5e27f81ae3ab	2021-05-28 12:50:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:50:28.951+03	2021-05-28 12:50:28.958+03	
33cfc4eb-ed8e-8740-c0a4-a5f0c6cbd54e	2021-05-28 12:50:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:50:48.951+03	2021-05-28 12:50:48.968+03	
b7ef3b48-906a-2dda-98a0-683d21de7d7e	2021-05-28 12:51:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:51:08.951+03	2021-05-28 12:51:08.957+03	
f14de6bd-f026-8a3b-17d7-73425187b9f2	2021-05-28 12:51:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:51:28.951+03	2021-05-28 12:51:28.958+03	
30e610a3-07c5-704d-b550-af633b4ab6e9	2021-05-28 12:51:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:51:48.951+03	2021-05-28 12:51:48.958+03	
f4386066-1722-8a78-de3a-67be7e787577	2021-05-28 12:52:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:52:08.951+03	2021-05-28 12:52:08.959+03	
b18061c0-104f-a5e6-582a-b0b7e7dc4602	2021-05-28 12:52:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:52:29.951+03	2021-05-28 12:52:29.961+03	
f98bf75b-d8ed-cf0d-9fdd-de4bcf738de0	2021-05-28 12:52:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:52:49.952+03	2021-05-28 12:52:49.959+03	
c8e5ab57-bb8c-62b0-02f6-32586a254d55	2021-05-28 12:53:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:53:10.951+03	2021-05-28 12:53:10.958+03	
8e666967-6254-9fb4-ab2d-5086ebd4ab76	2021-05-28 12:53:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:53:30.951+03	2021-05-28 12:53:30.957+03	
ab91e947-f455-ca65-f6d8-80a794f8cfa3	2021-05-28 12:53:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:53:50.951+03	2021-05-28 12:53:50.957+03	
c9fbbe9d-eb68-2762-a88a-ff0ec0a3326a	2021-05-28 12:54:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:54:10.951+03	2021-05-28 12:54:10.958+03	
c1b28edb-9055-3b79-7436-d6ccc4d7b662	2021-05-28 12:54:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:54:30.951+03	2021-05-28 12:54:30.959+03	
33b1b82b-7c40-3f31-c855-b5b666a15fef	2021-05-28 12:54:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:54:51.951+03	2021-05-28 12:54:51.96+03	
8c5d07ac-e090-d119-a3bc-33dfb943a318	2021-05-28 12:55:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:55:12.951+03	2021-05-28 12:55:12.958+03	
36abe00e-7756-4c67-89a6-3ca35fb23a21	2021-05-28 12:55:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:55:33.951+03	2021-05-28 12:55:33.961+03	
de297b6c-ff0f-b905-5cd8-617ce7de1a1e	2021-05-28 12:55:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:55:53.951+03	2021-05-28 12:55:53.958+03	
b4f91cd1-3239-2efa-9a8d-3eeb68516f30	2021-05-28 12:56:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:56:13.952+03	2021-05-28 12:56:13.96+03	
55d5f7c7-ffe9-2af3-8592-095f7596c23e	2021-05-28 12:56:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:56:34.951+03	2021-05-28 12:56:34.958+03	
a354d1c0-c0f7-9130-2edb-7046ca7470f7	2021-05-28 12:56:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:56:54.951+03	2021-05-28 12:56:54.958+03	
47ef265a-32f8-a7e6-2b1a-15f5423aaa11	2021-05-28 12:57:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:57:15.951+03	2021-05-28 12:57:15.958+03	
0ecd3623-f2ba-3e6c-d0bd-5b19207e07c5	2021-05-28 12:57:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:57:35.951+03	2021-05-28 12:57:35.96+03	
bbce8752-db57-8cfc-7275-6a6d1426615d	2021-05-28 12:57:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:57:55.951+03	2021-05-28 12:57:55.957+03	
2413bf08-4ef6-a41f-7b6d-7ea9e899cfaf	2021-05-28 12:58:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:58:15.951+03	2021-05-28 12:58:15.959+03	
8c5782c0-ff2d-0b08-4fbb-47861b1cc4e4	2021-05-28 12:58:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:58:35.951+03	2021-05-28 12:58:35.957+03	
59fdb9e0-0032-bfd3-e0fc-7833a78c0132	2021-05-28 12:38:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:38:07.952+03	2021-05-28 12:38:07.959+03	
809936d5-ea22-ca38-2029-9cdc1eec66c2	2021-05-28 12:38:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:38:27.952+03	2021-05-28 12:38:27.962+03	
6b5b77ea-98de-e173-8688-116266f1dd0f	2021-05-28 12:38:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:38:48.951+03	2021-05-28 12:38:48.958+03	
e563f0ab-b014-f2e6-8747-26a696c461bc	2021-05-28 12:39:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:39:08.951+03	2021-05-28 12:39:08.958+03	
c090b607-3930-d057-f33e-5eb65fb68e8d	2021-05-28 12:39:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:39:28.951+03	2021-05-28 12:39:28.963+03	
3500b586-b766-e52a-39c4-938458c4f35c	2021-05-28 12:39:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:39:48.951+03	2021-05-28 12:39:48.958+03	
0f04bc30-a143-3e0e-85a0-25ce0ef23683	2021-05-28 12:40:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 12:40:00.951+03	2021-05-28 12:40:00.956+03	ERROR
c709931b-ef07-dddb-94e2-0bc5e2591bda	2021-05-28 12:40:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:40:18.951+03	2021-05-28 12:40:18.958+03	
250c3767-299d-6927-a81c-4e3a1a62da55	2021-05-28 12:40:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:40:39.951+03	2021-05-28 12:40:39.958+03	
623cd142-aa74-3166-b16d-bc35f8cf7aba	2021-05-28 12:41:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:41:00.951+03	2021-05-28 12:41:00.958+03	
e4e3f548-a723-cdb6-c084-5ef4d973af46	2021-05-28 12:41:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:41:20.951+03	2021-05-28 12:41:20.958+03	
dabad869-bd1e-d1f2-cdb7-33feaffd64c9	2021-05-28 12:41:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:41:40.951+03	2021-05-28 12:41:40.958+03	
e7d7be03-4df0-310c-3b10-47eadc900524	2021-05-28 12:42:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:42:00.951+03	2021-05-28 12:42:00.96+03	
926e642c-03b1-55d6-67e7-1f31a9425e9b	2021-05-28 12:42:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:42:20.952+03	2021-05-28 12:42:20.96+03	
55737f5d-770b-a274-c303-72a24918e949	2021-05-28 12:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:42:41.951+03	2021-05-28 12:42:41.963+03	
e9e6de9c-2fa9-6eef-6070-4d19eb403d34	2021-05-28 12:43:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:43:01.951+03	2021-05-28 12:43:01.958+03	
0bad7b16-1b51-6638-3d97-57c2532e7678	2021-05-28 12:43:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:43:21.951+03	2021-05-28 12:43:21.959+03	
7b498dd5-30e3-6566-d3d2-e636d1248ec5	2021-05-28 12:43:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:43:42.951+03	2021-05-28 12:43:42.958+03	
44b8eb06-fbcd-a5da-46d9-a2486678ef02	2021-05-28 12:44:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:44:03.951+03	2021-05-28 12:44:03.959+03	
97b7c6ec-d9e6-1fca-62b5-ae25cadcbe4b	2021-05-28 12:44:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:44:23.951+03	2021-05-28 12:44:23.964+03	
06c5ee17-0f03-b388-1f4d-2561c3cfdcac	2021-05-28 12:44:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:44:43.951+03	2021-05-28 12:44:43.959+03	
208a4d80-df26-af78-56b8-a9889786683d	2021-05-28 12:45:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:45:03.951+03	2021-05-28 12:45:03.959+03	
15b779f2-5025-a1c5-9811-d61a914b6133	2021-05-28 12:45:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:45:23.951+03	2021-05-28 12:45:23.961+03	
b4fe4dd7-9da7-374e-b43f-eb1db65b939f	2021-05-28 12:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:45:43.951+03	2021-05-28 12:45:43.959+03	
0d5a6a53-9276-e78c-a88a-3fb0ed818fe6	2021-05-28 12:46:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:46:03.951+03	2021-05-28 12:46:03.959+03	
1221f1cb-fb22-1244-b36b-6d0165a4bc62	2021-05-28 12:46:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:46:23.951+03	2021-05-28 12:46:23.957+03	
5da4079f-bb3d-e311-4ea0-bbaf4063f7cd	2021-05-28 12:46:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:46:43.951+03	2021-05-28 12:46:43.958+03	
5b0bd03d-e6f1-1df1-14e6-4a3b7c93dabd	2021-05-28 12:47:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:47:03.951+03	2021-05-28 12:47:03.959+03	
8080c8d9-613c-4d3b-b66b-bde8f4a6e092	2021-05-28 12:47:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:47:23.951+03	2021-05-28 12:47:23.959+03	
a7f198b9-6388-022c-1e0c-88f94ebead88	2021-05-28 12:47:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:47:43.951+03	2021-05-28 12:47:43.959+03	
8a58bebb-09f6-7f6d-157c-a190ce4051f3	2021-05-28 12:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:48:03.951+03	2021-05-28 12:48:03.96+03	
a5e90bf5-a271-6369-3ce2-64d663d0d80b	2021-05-28 12:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:48:23.951+03	2021-05-28 12:48:23.96+03	
0723c254-689d-56d8-064e-6638513a155b	2021-05-28 12:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:48:44.952+03	2021-05-28 12:48:44.96+03	
2d0bd2bb-6297-4027-aaaa-7f385599449f	2021-05-28 12:49:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:49:05.952+03	2021-05-28 12:49:05.974+03	
ec3ef415-b6ce-99aa-ded0-267e98f6a53e	2021-05-28 12:49:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:49:27.952+03	2021-05-28 12:49:27.96+03	
28c38a69-2a36-634b-acd9-e41b62185d25	2021-05-28 12:49:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:49:48.951+03	2021-05-28 12:49:48.958+03	
ca7a6ba8-3caf-104e-3b6c-7c2bcadd5971	2021-05-28 12:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 12:50:00.951+03	2021-05-28 12:50:00.963+03	ERROR
cb2fc0ec-3ac1-8878-e54a-fe5db9dac071	2021-05-28 12:50:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:50:18.951+03	2021-05-28 12:50:18.959+03	
e87b5150-2f35-9b7d-e5a1-d8a90e3a339d	2021-05-28 12:50:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:50:38.951+03	2021-05-28 12:50:38.961+03	
8c76213c-9d21-3837-4997-4fb1bfa4cca8	2021-05-28 12:50:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:50:58.951+03	2021-05-28 12:50:58.959+03	
51758b2d-bf68-64a0-e94c-d5f8672480b0	2021-05-28 12:51:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:51:18.951+03	2021-05-28 12:51:18.957+03	
2794426f-5cfa-b256-050b-f4dca7843d09	2021-05-28 12:51:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:51:38.951+03	2021-05-28 12:51:38.961+03	
8254b788-9985-31a0-ad3e-bb6bb54f1665	2021-05-28 12:51:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:51:58.951+03	2021-05-28 12:51:58.959+03	
7758c106-c11d-233d-4ee9-3151b269f2f1	2021-05-28 12:52:18.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:52:18.952+03	2021-05-28 12:52:18.96+03	
9371b9de-7c84-02f6-0eac-225dd4b95d19	2021-05-28 12:52:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:52:39.951+03	2021-05-28 12:52:39.96+03	
d3495238-2ec8-3329-13cf-266ffb1cb0a1	2021-05-28 12:53:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:53:00.951+03	2021-05-28 12:53:00.957+03	
41e46ee8-b311-b30c-e92c-8b3229463c4f	2021-05-28 12:53:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:53:20.951+03	2021-05-28 12:53:20.958+03	
746cf2f7-d851-26c4-3637-3c0335668173	2021-05-28 12:53:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:53:40.951+03	2021-05-28 12:53:40.957+03	
f3f80eff-8901-e991-ebcd-b33b919e047a	2021-05-28 12:54:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:54:00.951+03	2021-05-28 12:54:00.958+03	
dd7cedee-5e45-3897-d91e-54daf68af515	2021-05-28 12:54:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:54:20.951+03	2021-05-28 12:54:20.959+03	
0e5f1fff-0788-c3a9-5d14-fcfbe8a3e8c3	2021-05-28 12:54:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:54:40.952+03	2021-05-28 12:54:40.959+03	
5b88f27e-1710-48be-4cad-4adffa1c53cc	2021-05-28 12:55:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:55:01.952+03	2021-05-28 12:55:01.961+03	
d1e25224-b71d-92f7-40ac-b20accac4cf0	2021-05-28 12:55:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:55:22.952+03	2021-05-28 12:55:22.96+03	
41159696-f0db-eada-2335-e50dfc7c3945	2021-05-28 12:55:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:55:43.951+03	2021-05-28 12:55:43.958+03	
2dc36187-96d8-cbd5-fd4d-f77a90cf337e	2021-05-28 12:56:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:56:03.951+03	2021-05-28 12:56:03.958+03	
6758eef6-8c8c-6a97-6a10-f70e41b2c1b4	2021-05-28 12:56:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:56:24.951+03	2021-05-28 12:56:24.961+03	
f02fd1a7-e75e-fdf4-eb75-2cffd245a5c9	2021-05-28 12:56:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:56:44.951+03	2021-05-28 12:56:44.959+03	
ce60104c-20ff-cf1f-447f-9f4426a71095	2021-05-28 12:57:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:57:04.952+03	2021-05-28 12:57:04.962+03	
6761fc07-bdc5-a620-6933-ab4ab967b841	2021-05-28 12:57:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:57:25.951+03	2021-05-28 12:57:25.957+03	
13b721df-47c2-da2e-959c-989045968814	2021-05-28 12:57:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:57:45.951+03	2021-05-28 12:57:45.958+03	
89695307-c979-a747-2be8-af09fd6f3006	2021-05-28 12:58:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:58:05.951+03	2021-05-28 12:58:05.958+03	
0e8c2550-3640-e2a8-71bc-0b7465fb76f1	2021-05-28 12:58:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:58:25.951+03	2021-05-28 12:58:25.958+03	
47f86a16-abca-fcdf-522f-9835d37b6d5e	2021-05-28 12:58:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:58:45.951+03	2021-05-28 12:58:45.958+03	
2ebe18b4-e993-b0dc-f36b-c0fee74dd4e8	2021-05-28 12:58:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:58:55.951+03	2021-05-28 12:58:55.958+03	
086158b3-39c8-de32-edcc-906eef98ed82	2021-05-28 12:59:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:59:15.951+03	2021-05-28 12:59:15.958+03	
ea615c24-7dce-b97a-a9c8-e2ca791a2868	2021-05-28 12:59:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:59:35.951+03	2021-05-28 12:59:35.96+03	
3e42c190-1123-6cf0-45a5-bc4306d94b06	2021-05-28 12:59:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:59:55.951+03	2021-05-28 12:59:55.958+03	
bc06c5a8-6d8d-77f1-a4ad-2fa8225a98f4	2021-05-28 13:00:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:00:05.951+03	2021-05-28 13:00:05.959+03	
ff33bc3f-794b-23eb-aa7f-e137c5829fa2	2021-05-28 13:00:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:00:25.951+03	2021-05-28 13:00:25.963+03	
d9a38cc2-545f-f86d-f0dd-494502c6159b	2021-05-28 13:00:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:00:45.951+03	2021-05-28 13:00:45.957+03	
83c028b9-6439-99b5-3640-d252e6f9503f	2021-05-28 13:01:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:01:05.951+03	2021-05-28 13:01:05.962+03	
5fdd1478-7292-23ce-a81e-49b741ed1c3d	2021-05-28 13:01:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:01:25.951+03	2021-05-28 13:01:25.957+03	
5e180c58-bacf-d751-ff24-614a6e32f2c2	2021-05-28 13:01:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:01:45.951+03	2021-05-28 13:01:45.959+03	
e3206c0d-7bef-4898-a689-c0aed09f7378	2021-05-28 13:02:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:02:06.951+03	2021-05-28 13:02:06.958+03	
e595b63f-8a58-6824-8256-016e1bb28fea	2021-05-28 13:02:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:02:26.951+03	2021-05-28 13:02:26.958+03	
f297ad3e-330d-ea7b-30d2-7bf9417b576a	2021-05-28 13:02:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:02:46.951+03	2021-05-28 13:02:46.959+03	
bb1a6fa5-d7d0-ba08-10e0-b97678c9e1c3	2021-05-28 13:03:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:03:07.951+03	2021-05-28 13:03:07.959+03	
89b5c0d2-b8b9-3ef3-3504-9b9cde8ba9a3	2021-05-28 13:03:27.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:03:27.951+03	2021-05-28 13:03:27.958+03	
8cd43ab3-6f71-156b-2833-1dd01a91bfe4	2021-05-28 13:03:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:03:47.953+03	2021-05-28 13:03:47.962+03	
429fc454-78b6-7496-afa7-ccabbfc63f81	2021-05-28 13:04:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:04:08.951+03	2021-05-28 13:04:08.957+03	
b1f875b1-9630-2630-711d-8ef8d51dc134	2021-05-28 13:04:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:04:28.951+03	2021-05-28 13:04:28.958+03	
ec822705-fd59-7fb9-b5e2-dc71368c50d5	2021-05-28 13:04:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:04:48.951+03	2021-05-28 13:04:48.958+03	
436dfefe-6f42-8544-a7c4-6103ff743ba8	2021-05-28 13:05:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:05:08.951+03	2021-05-28 13:05:08.964+03	
ec6cae53-f457-31d2-ae0b-fea1b8e12492	2021-05-28 13:05:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:05:28.951+03	2021-05-28 13:05:28.961+03	
7252c855-6e01-547e-ad47-2c28645c556c	2021-05-28 13:05:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:05:48.951+03	2021-05-28 13:05:48.96+03	
4d8a9f0e-2cef-7e2a-160f-7eb9bf312a27	2021-05-28 13:06:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:06:09.951+03	2021-05-28 13:06:09.963+03	
6f1846d5-fbd7-154f-36cd-8de8cf41653d	2021-05-28 13:06:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:06:29.951+03	2021-05-28 13:06:29.958+03	
4f648809-0c4d-8765-8472-d8623215f7c1	2021-05-28 13:06:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:06:49.952+03	2021-05-28 13:06:49.959+03	
33c99281-c39a-e3c1-4346-eeda85bfaf3b	2021-05-28 13:07:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:07:10.951+03	2021-05-28 13:07:10.958+03	
41ba2b0f-69cb-0e33-3dc7-032c16c6327b	2021-05-28 13:07:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:07:30.951+03	2021-05-28 13:07:30.959+03	
fbd63f57-577a-a538-9ad5-2c9e6aa92834	2021-05-28 13:07:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:07:50.951+03	2021-05-28 13:07:50.958+03	
ff77368c-b63c-eb58-6f36-0af9a2be7c14	2021-05-28 13:08:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:08:10.951+03	2021-05-28 13:08:10.959+03	
4be2cf7e-9847-3eda-3cf9-a412382a4c8e	2021-05-28 13:08:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:08:30.952+03	2021-05-28 13:08:30.961+03	
c0a161b9-9156-56a3-afdd-5c85ead023d1	2021-05-28 13:08:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:08:51.951+03	2021-05-28 13:08:51.959+03	
7fd4a7d1-331e-0cf1-68e4-8d6e40ef43dd	2021-05-28 13:09:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:09:11.951+03	2021-05-28 13:09:11.959+03	
ea250269-7958-4209-e6d2-7ac5e8a0865b	2021-05-28 13:09:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:09:31.951+03	2021-05-28 13:09:31.958+03	
8e9fb67b-6c78-018a-86c8-83a25e08ab4e	2021-05-28 13:09:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:09:51.951+03	2021-05-28 13:09:51.96+03	
bc37cdbe-ab14-e225-01d6-b7e164ef55c2	2021-05-28 13:10:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:10:01.951+03	2021-05-28 13:10:01.959+03	
a5aa5a79-c069-01f4-e362-ed3321528ce8	2021-05-28 13:10:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:10:21.951+03	2021-05-28 13:10:21.958+03	
1cfbd6b8-a69b-6c03-604e-392e2cdbfe9c	2021-05-28 13:10:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:10:42.951+03	2021-05-28 13:10:42.968+03	
5906c0a8-dfcb-8a05-e4d9-1fe6355b6c43	2021-05-28 13:11:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:11:03.951+03	2021-05-28 13:11:03.958+03	
061ea4da-4e4e-a848-35ee-6d5effee4f22	2021-05-28 13:11:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:11:23.951+03	2021-05-28 13:11:23.958+03	
ec932c66-66f5-1166-5639-d0927cbd209e	2021-05-28 13:11:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:11:43.951+03	2021-05-28 13:11:43.957+03	
1b4d8858-b926-d964-2bad-fa7ffe61caed	2021-05-28 13:12:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:12:03.951+03	2021-05-28 13:12:03.957+03	
1e7add83-87ef-8246-07db-70112857d3d1	2021-05-28 13:12:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:12:23.951+03	2021-05-28 13:12:23.958+03	
52f66ee8-0408-cc97-0ecd-7097cbcfeed2	2021-05-28 13:12:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:12:43.951+03	2021-05-28 13:12:43.959+03	
5c89f1b2-9e89-7d0d-2b84-6d0ed7514b50	2021-05-28 13:13:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:13:03.951+03	2021-05-28 13:13:03.958+03	
34040072-ae52-c9c9-ac2d-0de3f44d7652	2021-05-28 13:13:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:13:23.951+03	2021-05-28 13:13:23.959+03	
2c09e45c-3cd3-74cf-e94f-f0f53679b319	2021-05-28 13:13:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:13:43.951+03	2021-05-28 13:13:43.959+03	
5f9a26f4-bb9a-e269-32e3-3b7b91fafe23	2021-05-28 13:14:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:14:03.951+03	2021-05-28 13:14:03.959+03	
5cdc1969-fad5-27bc-dfac-ad9f4dd9a429	2021-05-28 13:14:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:14:23.951+03	2021-05-28 13:14:23.96+03	
b3ddbc08-408d-9543-8c36-ebb0c7be8527	2021-05-28 13:14:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:14:43.951+03	2021-05-28 13:14:43.959+03	
205ded12-f9ba-1dac-1a64-d92c67dd8a74	2021-05-28 13:15:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:15:04.951+03	2021-05-28 13:15:04.967+03	
bc498d86-2f75-bfae-f838-6227ec32193b	2021-05-28 13:15:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:15:25.951+03	2021-05-28 13:15:25.959+03	
4a7d6b1c-ba7d-fb94-5741-00060b8b0b8f	2021-05-28 13:15:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:15:45.951+03	2021-05-28 13:15:45.957+03	
ab640f9f-180f-80be-0a92-25343659ae48	2021-05-28 13:16:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:16:06.951+03	2021-05-28 13:16:06.958+03	
09a19c36-b8e8-f75a-0148-6371db3047fc	2021-05-28 13:16:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:16:26.951+03	2021-05-28 13:16:26.961+03	
0910c050-902f-e433-d2fa-9592655a4a22	2021-05-28 13:16:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:16:46.951+03	2021-05-28 13:16:47.161+03	
25a8b6d4-6350-e83e-9bcd-f16eae91a746	2021-05-28 13:17:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:17:07.952+03	2021-05-28 13:17:07.959+03	
a4c647f8-ebde-d88e-3e07-80381f408d15	2021-05-28 13:17:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:17:28.951+03	2021-05-28 13:17:28.959+03	
cee20b41-fe10-3ff1-7a29-b236fe9257a0	2021-05-28 13:17:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:17:48.951+03	2021-05-28 13:17:48.958+03	
83dbad11-2f0a-3eca-9a8a-a02b64bf539d	2021-05-28 13:18:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:18:08.951+03	2021-05-28 13:18:08.959+03	
9c5b496d-9973-7e7d-d4c1-d0b7277cd2ff	2021-05-28 13:18:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:18:28.951+03	2021-05-28 13:18:28.958+03	
7f079480-d33b-6942-d9fe-b1783209e393	2021-05-28 13:18:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:18:48.951+03	2021-05-28 13:18:48.959+03	
57c7f48c-82d7-83e5-b3ec-7cc56d772b55	2021-05-28 13:19:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:19:08.952+03	2021-05-28 13:19:08.961+03	
da54f48f-d175-e98f-b54e-0c226793b8fa	2021-05-28 13:19:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:19:29.951+03	2021-05-28 13:19:29.957+03	
c8622384-5a42-78d8-6803-a378953b9081	2021-05-28 12:59:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:59:05.951+03	2021-05-28 12:59:05.959+03	
72c13c24-16bb-1db2-85bc-83c99026c51d	2021-05-28 12:59:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:59:25.951+03	2021-05-28 12:59:25.957+03	
401419b9-0379-374c-0324-7962f74ffa69	2021-05-28 12:59:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 12:59:45.951+03	2021-05-28 12:59:45.959+03	
0da4e996-2d54-8227-7e42-05f7a2a61df9	2021-05-28 13:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 13:00:00.951+03	2021-05-28 13:00:00.956+03	ERROR
0b6efd92-77af-6329-2d0b-92436cd87f83	2021-05-28 13:00:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:00:15.951+03	2021-05-28 13:00:15.958+03	
a19e01a5-aaab-9db2-4526-f9250d0db73a	2021-05-28 13:00:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:00:35.951+03	2021-05-28 13:00:35.957+03	
40519741-9481-adc4-413d-651500baadfc	2021-05-28 13:00:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:00:55.951+03	2021-05-28 13:00:55.958+03	
79539a3e-0b82-3003-3226-3f5e1b2f1906	2021-05-28 13:01:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:01:15.951+03	2021-05-28 13:01:15.958+03	
d0402fd7-c7c1-34ca-af14-5525a348ece0	2021-05-28 13:01:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:01:35.951+03	2021-05-28 13:01:35.958+03	
947308ec-a359-cfd5-1654-d41dbd00dd76	2021-05-28 13:01:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:01:55.952+03	2021-05-28 13:01:55.959+03	
de196004-6324-8042-e10c-5e924143c279	2021-05-28 13:02:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:02:16.951+03	2021-05-28 13:02:16.96+03	
2333f958-d072-7ab7-968f-ea39cc6c18a0	2021-05-28 13:02:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:02:36.951+03	2021-05-28 13:02:36.958+03	
a39d3954-c842-92c2-f4a5-7ba199728de2	2021-05-28 13:02:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:02:56.952+03	2021-05-28 13:02:56.958+03	
220188c8-3055-b6ba-3f08-c3319a647611	2021-05-28 13:03:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:03:17.951+03	2021-05-28 13:03:17.958+03	
aadbbf32-ad4d-9a1c-4a19-b0070efe9bc1	2021-05-28 13:03:37.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:03:37.951+03	2021-05-28 13:03:37.958+03	
66090267-7261-d43d-7d66-646b277ae23b	2021-05-28 13:03:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:03:58.951+03	2021-05-28 13:03:58.973+03	
9b6f76b6-03e5-7d1d-d1c4-c3da1b57d163	2021-05-28 13:04:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:04:18.951+03	2021-05-28 13:04:18.958+03	
cb01c57d-1dd8-73b8-17c4-0ebff1d13021	2021-05-28 13:04:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:04:38.951+03	2021-05-28 13:04:38.964+03	
44932e28-5371-f906-8275-335931b00f62	2021-05-28 13:04:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:04:58.951+03	2021-05-28 13:04:58.963+03	
42d160e8-75cf-6844-b34c-e4e6022eb69f	2021-05-28 13:05:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:05:18.951+03	2021-05-28 13:05:18.959+03	
f55f5c3f-1957-0c4b-4c74-db0707d8cbaa	2021-05-28 13:05:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:05:38.951+03	2021-05-28 13:05:38.96+03	
378675de-87df-6eca-9595-b34ae810e989	2021-05-28 13:05:58.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:05:58.952+03	2021-05-28 13:05:58.97+03	
ddfb9151-ed48-422a-0385-a5aea430572e	2021-05-28 13:06:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:06:19.951+03	2021-05-28 13:06:19.96+03	
07834df1-6d43-9c55-d52d-f72511b871aa	2021-05-28 13:06:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:06:39.951+03	2021-05-28 13:06:39.958+03	
55327a07-2b2a-2a4d-6c96-063e0352c332	2021-05-28 13:07:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:07:00.951+03	2021-05-28 13:07:00.958+03	
584a9099-bea3-c4b3-d000-79aa9d7340b3	2021-05-28 13:07:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:07:20.951+03	2021-05-28 13:07:20.959+03	
c1070075-f19e-0d61-8003-af1ed2fb680a	2021-05-28 13:07:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:07:40.951+03	2021-05-28 13:07:40.957+03	
722a2c6e-2836-1da0-7527-ae0d952be8be	2021-05-28 13:08:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:08:00.951+03	2021-05-28 13:08:00.958+03	
9c617d88-3612-eb8f-2124-23fdaadf0ee3	2021-05-28 13:08:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:08:20.951+03	2021-05-28 13:08:20.958+03	
301cebbb-1a1f-e92d-88dd-54a4b6c3fdf7	2021-05-28 13:08:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:08:41.951+03	2021-05-28 13:08:41.962+03	
c515fbd0-a3e9-1f31-1772-d1bce407d6d7	2021-05-28 13:09:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:09:01.951+03	2021-05-28 13:09:01.958+03	
339aef60-0a68-4f95-67a4-e3ccd9b72236	2021-05-28 13:09:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:09:21.951+03	2021-05-28 13:09:21.958+03	
7be6efb2-d75d-bc97-a3be-0d643a0966e4	2021-05-28 13:09:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:09:41.951+03	2021-05-28 13:09:41.958+03	
e6b2270a-5739-8446-0c8b-c1a3cc310b4c	2021-05-28 13:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 13:10:00.951+03	2021-05-28 13:10:00.956+03	ERROR
cb8456db-e6a9-e122-4bf0-d8d65f8be00a	2021-05-28 13:10:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:10:11.951+03	2021-05-28 13:10:11.958+03	
0b50f7ec-aaa7-755b-ccff-49a88c114a9d	2021-05-28 13:10:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:10:31.952+03	2021-05-28 13:10:31.96+03	
a9307774-cc7b-5704-862a-e87fe8b9fbb0	2021-05-28 13:10:52.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:10:52.952+03	2021-05-28 13:10:52.961+03	
7f8b1c25-b471-c8cc-50fa-cf719448ab20	2021-05-28 13:11:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:11:13.951+03	2021-05-28 13:11:13.957+03	
c882c686-85a0-d18a-52b6-982d7a73c272	2021-05-28 13:11:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:11:33.951+03	2021-05-28 13:11:33.957+03	
70afa9fb-99a5-ac50-e615-9f02b43d5bc7	2021-05-28 13:11:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:11:53.951+03	2021-05-28 13:11:53.958+03	
69cbc3b6-59bb-6e45-f89d-c7146a5fc9be	2021-05-28 13:12:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:12:13.951+03	2021-05-28 13:12:13.959+03	
996ee9f4-a2c8-0889-a1cb-2d5873347cb8	2021-05-28 13:12:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:12:33.951+03	2021-05-28 13:12:33.959+03	
aa8ba18c-c7b1-f130-3274-061ffedb58f3	2021-05-28 13:12:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:12:53.951+03	2021-05-28 13:12:53.96+03	
1e16f22f-05d4-a40f-6073-e5b2f4e1899c	2021-05-28 13:13:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:13:13.951+03	2021-05-28 13:13:13.959+03	
686a1434-d335-98bd-f116-763ff5501d7d	2021-05-28 13:13:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:13:33.951+03	2021-05-28 13:13:33.957+03	
a8fe2a7d-0933-f801-4df7-cbc420a0166e	2021-05-28 13:13:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:13:53.951+03	2021-05-28 13:13:53.958+03	
c89a45f1-ac6e-9db8-9a59-eaca138f6863	2021-05-28 13:14:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:14:13.951+03	2021-05-28 13:14:13.959+03	
6e03a3bf-01d9-321c-f58d-fbbec6d5a1a7	2021-05-28 13:14:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:14:33.951+03	2021-05-28 13:14:33.958+03	
df1ce416-20fe-8a6e-496b-6ec7549df39b	2021-05-28 13:14:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:14:53.952+03	2021-05-28 13:14:53.958+03	
4139fc55-d478-746f-cbc4-60a21fdb37bb	2021-05-28 13:15:14.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:15:14.952+03	2021-05-28 13:15:14.96+03	
b3ade5df-c673-f807-85d9-f417136c1adb	2021-05-28 13:15:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:15:35.951+03	2021-05-28 13:15:35.958+03	
d6664196-f06d-1a3f-f843-812875385c17	2021-05-28 13:15:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:15:55.952+03	2021-05-28 13:15:55.958+03	
10bb70f5-674b-e430-9ac5-360e2e3f0aa8	2021-05-28 13:16:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:16:16.951+03	2021-05-28 13:16:16.959+03	
40bf3a3e-a4ed-33de-53f6-910f2cfe482c	2021-05-28 13:16:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:16:36.951+03	2021-05-28 13:16:36.96+03	
4bd465d9-13ac-8a48-212f-d8c4fff1833b	2021-05-28 13:16:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:16:56.952+03	2021-05-28 13:16:56.96+03	
32274f44-ea8f-6bf1-7667-5f421b6fa7ff	2021-05-28 13:17:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:17:17.952+03	2021-05-28 13:17:17.959+03	
137ff5e1-017f-df5f-b749-b2e4b2551eb3	2021-05-28 13:17:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:17:38.951+03	2021-05-28 13:17:38.958+03	
7590988c-8dd5-9f0e-acdc-7ee6ac6b6fb1	2021-05-28 13:17:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:17:58.951+03	2021-05-28 13:17:58.965+03	
cd44b560-a42a-efc8-9655-10fb58f75efe	2021-05-28 13:18:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:18:18.951+03	2021-05-28 13:18:18.964+03	
e16249dc-2015-4fd9-4433-7e3883f5cd74	2021-05-28 13:18:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:18:38.951+03	2021-05-28 13:18:38.96+03	
ff6944e9-889c-0a40-bc39-5647aefc6b4c	2021-05-28 13:18:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:18:58.951+03	2021-05-28 13:18:58.959+03	
0641e2a2-b1f5-3eb5-0883-5a293bdef4c2	2021-05-28 13:19:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:19:19.951+03	2021-05-28 13:19:19.96+03	
4f1119ee-ae60-9cae-6536-35de7e12fb88	2021-05-28 13:19:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:19:39.951+03	2021-05-28 13:19:39.958+03	
43ba4b62-4b64-94a9-8562-35efb3d80e58	2021-05-28 13:19:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:19:49.951+03	2021-05-28 13:19:49.958+03	
eeb34433-5b85-fcee-507a-636360695fb2	2021-05-28 13:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 13:20:00.951+03	2021-05-28 13:20:00.956+03	ERROR
26b7cb34-25e5-0d3e-123f-1b984afa2339	2021-05-28 13:20:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:20:19.951+03	2021-05-28 13:20:19.959+03	
de0312cf-ac44-b5fe-59bc-f12cb83fe0d2	2021-05-28 13:20:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:20:39.951+03	2021-05-28 13:20:39.957+03	
69eb0cbf-9ce8-5208-13f0-f9560e63abad	2021-05-28 13:20:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:20:59.951+03	2021-05-28 13:20:59.959+03	
afce4d50-4206-e175-1670-8cc4681aa09f	2021-05-28 13:21:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:21:19.951+03	2021-05-28 13:21:19.958+03	
1dfa676f-8f0d-968b-c53d-72a08010645a	2021-05-28 13:21:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:21:39.951+03	2021-05-28 13:21:39.957+03	
4ca911a2-45f7-da77-5736-65a3753c7752	2021-05-28 13:21:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:21:59.951+03	2021-05-28 13:21:59.958+03	
5a7fd5db-a1f8-f378-a380-37693d06320d	2021-05-28 13:22:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:22:19.951+03	2021-05-28 13:22:19.959+03	
77f8108a-f738-5839-9f9e-88448a8a5055	2021-05-28 13:22:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:22:39.951+03	2021-05-28 13:22:39.959+03	
72f2be6f-7042-e56a-4156-d70f1a0410cf	2021-05-28 13:22:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:22:59.951+03	2021-05-28 13:22:59.958+03	
a6560dae-0fab-b48a-a74a-9bb8fcfce9d0	2021-05-28 13:23:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:23:19.951+03	2021-05-28 13:23:19.958+03	
45e72e48-89f8-4ed0-71f2-dda298e89e2b	2021-05-28 13:23:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:23:39.951+03	2021-05-28 13:23:39.959+03	
0c50384a-9e8d-07ff-7baf-dc782ef92613	2021-05-28 13:23:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:23:59.951+03	2021-05-28 13:23:59.959+03	
95d58411-eb68-18b1-a343-2124467f3244	2021-05-28 13:24:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:24:19.951+03	2021-05-28 13:24:19.958+03	
540ef88e-6c57-c614-d47b-e103d6423d34	2021-05-28 13:24:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:24:39.951+03	2021-05-28 13:24:39.959+03	
3320a000-e45d-8eb1-2528-72c44ffe116d	2021-05-28 13:24:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:24:59.952+03	2021-05-28 13:24:59.96+03	
ac31bb76-87ac-b348-4df5-83c28bab3c51	2021-05-28 13:25:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:25:20.952+03	2021-05-28 13:25:20.966+03	
d0b58c38-e573-e1f2-8765-78f7ce4c2682	2021-05-28 13:25:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:25:41.951+03	2021-05-28 13:25:41.958+03	
b3f63852-aa4b-1215-9faa-7bee657de18e	2021-05-28 13:26:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:26:01.951+03	2021-05-28 13:26:02.277+03	
c4e6c08c-caed-e669-ef61-9536cbe81e01	2021-05-28 13:26:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:26:21.951+03	2021-05-28 13:26:21.957+03	
edc087ff-2865-3b14-87ae-fd307c8f7329	2021-05-28 13:26:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:26:41.951+03	2021-05-28 13:26:41.958+03	
2e464846-f714-70c6-0d6f-919504feb303	2021-05-28 13:27:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:27:01.951+03	2021-05-28 13:27:01.957+03	
ec5f5b4c-4060-82f8-15d3-35f9a31f4c2b	2021-05-28 13:27:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:27:21.951+03	2021-05-28 13:27:21.959+03	
27404aea-ad14-af1b-f020-ce10134d3087	2021-05-28 13:27:41.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:27:41.96+03	2021-05-28 13:27:41.966+03	
31b721b3-b3e5-b8d7-1536-5286373e22a3	2021-05-28 13:28:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:28:02.951+03	2021-05-28 13:28:02.958+03	
e0b9a5c1-470d-a5a0-6687-a3fc515b6176	2021-05-28 13:28:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:28:22.951+03	2021-05-28 13:28:22.959+03	
f5571caf-dcfa-fcac-9c09-f2fd765fdd9b	2021-05-28 13:28:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:28:42.951+03	2021-05-28 13:28:42.957+03	
c11a4011-9767-cf3c-a173-11d2f30e371b	2021-05-28 13:29:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:29:02.951+03	2021-05-28 13:29:02.959+03	
d96bebbd-55e3-f093-e659-697d3dcdf18d	2021-05-28 13:29:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:29:22.951+03	2021-05-28 13:29:22.959+03	
5b5d6b36-ac8c-5721-c330-c96b6806f60b	2021-05-28 13:29:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:29:43.951+03	2021-05-28 13:29:43.958+03	
cc0e946f-1cec-19a3-c94b-c091f42d3013	2021-05-28 13:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 13:30:00.951+03	2021-05-28 13:30:00.958+03	ERROR
67fb5082-6567-f821-5a69-d3b0c9dc002f	2021-05-28 13:30:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:30:14.951+03	2021-05-28 13:30:14.963+03	
25f8a003-fbfe-bcdb-6974-6b660610b9d1	2021-05-28 13:30:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:30:34.951+03	2021-05-28 13:30:34.958+03	
91fb5f25-0a8b-4575-cd62-a4209b45f03c	2021-05-28 13:30:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:30:54.951+03	2021-05-28 13:30:54.969+03	
33e9a1c7-88cc-560e-a39f-985e6583d4bd	2021-05-28 13:31:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:31:14.951+03	2021-05-28 13:31:14.958+03	
2ef41d24-17b7-99a8-176c-0818a84efb40	2021-05-28 13:31:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:31:34.951+03	2021-05-28 13:31:34.958+03	
75813aca-73b9-d039-1ade-e45a83c7078a	2021-05-28 13:31:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:31:54.951+03	2021-05-28 13:31:54.959+03	
d415b83c-5906-1f68-b6b9-48ea1bdc7ab9	2021-05-28 13:32:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:32:14.951+03	2021-05-28 13:32:14.959+03	
eef58fff-6653-6a83-2069-889ba2744f31	2021-05-28 13:32:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:32:34.951+03	2021-05-28 13:32:34.957+03	
60fc33f9-b700-1246-d88f-8f253d5a26a2	2021-05-28 13:32:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:32:54.951+03	2021-05-28 13:32:55.193+03	
5ff37921-d605-f9c1-f9c7-28380d528a6e	2021-05-28 13:33:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:33:14.951+03	2021-05-28 13:33:14.96+03	
e837479e-0b94-0bc1-31c2-67153751e01b	2021-05-28 13:33:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:33:34.951+03	2021-05-28 13:33:34.958+03	
587560dd-3e84-2cdc-da4a-7ea3fc4ba1b6	2021-05-28 13:33:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:33:54.951+03	2021-05-28 13:33:54.959+03	
0d991513-5391-5999-d573-2346420394d6	2021-05-28 13:34:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:34:14.951+03	2021-05-28 13:34:14.958+03	
98967cb9-93af-8f88-8b06-2247a4be838b	2021-05-28 13:34:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:34:34.951+03	2021-05-28 13:34:34.958+03	
d502c732-25ba-9a65-4b11-113a9da0d2ea	2021-05-28 13:34:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:34:54.951+03	2021-05-28 13:34:54.958+03	
ac593442-d68f-a271-f662-7813dd30be14	2021-05-28 13:35:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:35:14.951+03	2021-05-28 13:35:14.96+03	
908aa809-9181-c46b-9966-473e72f427f2	2021-05-28 13:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:35:34.951+03	2021-05-28 13:35:34.958+03	
7dafac42-a21c-108d-3c64-956378786fc3	2021-05-28 13:35:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:35:54.951+03	2021-05-28 13:35:54.973+03	
ce1c1a12-25ad-6f8c-198c-56937bb82b12	2021-05-28 13:36:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:36:14.951+03	2021-05-28 13:36:14.959+03	
4443d681-449d-4b81-3bee-aeda8c5296d4	2021-05-28 13:36:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:36:34.951+03	2021-05-28 13:36:34.958+03	
dabcc210-eea2-2c50-d4dc-f90f9f8fe192	2021-05-28 13:36:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:36:54.951+03	2021-05-28 13:36:54.959+03	
8440c485-3b5b-0119-eb8b-808a71f31253	2021-05-28 13:37:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:37:15.951+03	2021-05-28 13:37:15.958+03	
e4e8c604-2f4b-7c48-900c-4b3005f51c13	2021-05-28 13:37:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:37:35.951+03	2021-05-28 13:37:35.959+03	
4c5c7ac4-a88e-4b83-aa92-6f7a9785dec7	2021-05-28 13:37:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:37:56.951+03	2021-05-28 13:37:56.958+03	
fa063e41-09ee-4a72-d2aa-aec81a337915	2021-05-28 13:38:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:38:16.952+03	2021-05-28 13:38:16.959+03	
764cf4ce-ecce-e377-d56e-2790d9002b08	2021-05-28 13:38:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:38:37.953+03	2021-05-28 13:38:37.961+03	
2276f3bf-5388-2c43-6e8e-6eeacdd15085	2021-05-28 13:38:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:38:58.951+03	2021-05-28 13:38:58.958+03	
dd519099-7ab5-043f-0767-e20762045e65	2021-05-28 13:39:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:39:18.951+03	2021-05-28 13:39:18.97+03	
e39e8a8a-63bc-f5fc-3720-c33043be0872	2021-05-28 13:39:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:39:38.952+03	2021-05-28 13:39:38.96+03	
d39928c9-21d1-4ba0-ff29-e47463781dd7	2021-05-28 13:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:39:59.951+03	2021-05-28 13:39:59.959+03	
9834d2f4-0819-3f55-4ba8-8ab4714b1b6b	2021-05-28 13:40:09.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:40:09.952+03	2021-05-28 13:40:09.961+03	
dee7cf0a-fa48-c8c7-e76c-e5ef5e37d94c	2021-05-28 13:19:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:19:59.951+03	2021-05-28 13:19:59.959+03	
33425f50-a7a6-0512-73d7-e4b906698536	2021-05-28 13:20:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:20:09.951+03	2021-05-28 13:20:09.958+03	
9b344f3e-afb8-9a23-9756-964d3fb8509a	2021-05-28 13:20:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:20:29.951+03	2021-05-28 13:20:29.957+03	
3c50d284-df23-45d0-b49e-67111b6b22a2	2021-05-28 13:20:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:20:49.951+03	2021-05-28 13:20:49.983+03	
1dc3d11a-d07f-2351-22f4-826a9ffe9b83	2021-05-28 13:21:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:21:09.951+03	2021-05-28 13:21:09.959+03	
3e3b8109-1b14-4594-2274-fcd7d613ce00	2021-05-28 13:21:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:21:29.951+03	2021-05-28 13:21:29.96+03	
d77c09f8-66fa-5027-edcf-f6d2f94ee6a3	2021-05-28 13:21:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:21:49.951+03	2021-05-28 13:21:49.959+03	
badfe098-4ff2-d7e0-f638-27ece1390797	2021-05-28 13:22:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:22:09.951+03	2021-05-28 13:22:09.96+03	
a300b67e-2fa6-7084-40b2-a71dc0f6be71	2021-05-28 13:22:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:22:29.951+03	2021-05-28 13:22:29.959+03	
dc8f7b5d-0348-d09d-8a3f-c0e06f4c9a90	2021-05-28 13:22:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:22:49.951+03	2021-05-28 13:22:49.959+03	
f0e3127c-785a-eeb1-5a15-1cf0f905a3d1	2021-05-28 13:23:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:23:09.951+03	2021-05-28 13:23:10.254+03	
6c55caca-24e8-a2ea-5c0b-ee7b4b9e1ece	2021-05-28 13:23:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:23:29.951+03	2021-05-28 13:23:29.959+03	
23d466d0-bf01-4360-90c4-9fe293777c4c	2021-05-28 13:23:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:23:49.951+03	2021-05-28 13:23:49.959+03	
d79df1ad-c379-a254-f514-ed4327208853	2021-05-28 13:24:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:24:09.951+03	2021-05-28 13:24:09.959+03	
96cde3e5-a590-9b66-a54f-c340bb552c99	2021-05-28 13:24:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:24:29.951+03	2021-05-28 13:24:29.958+03	
396fdc11-1d65-3908-a731-fc8d5f07a344	2021-05-28 13:24:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:24:49.952+03	2021-05-28 13:24:49.959+03	
da82c8a6-4c5e-b030-6b9b-ab09b670acfc	2021-05-28 13:25:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:25:10.952+03	2021-05-28 13:25:10.961+03	
0beb9773-9b2d-75af-90bf-28f87ce360db	2021-05-28 13:25:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:25:31.951+03	2021-05-28 13:25:31.96+03	
7c61101c-4887-04b7-9625-b8b78fb7a6db	2021-05-28 13:25:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:25:51.951+03	2021-05-28 13:25:51.958+03	
2b641044-41ec-6838-e9ea-08e03c11cb3f	2021-05-28 13:26:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:26:11.951+03	2021-05-28 13:26:11.958+03	
655e1038-bc86-16b2-75f3-9f1da8439391	2021-05-28 13:26:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:26:31.951+03	2021-05-28 13:26:31.958+03	
382b4215-9218-8c75-07d3-63f20c34d0f2	2021-05-28 13:26:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:26:51.951+03	2021-05-28 13:26:51.958+03	
f8974558-de4f-d900-be80-63c8d72dce8c	2021-05-28 13:27:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:27:11.951+03	2021-05-28 13:27:11.957+03	
faa5589e-5f52-4906-08bf-60c49c03235a	2021-05-28 13:27:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:27:31.951+03	2021-05-28 13:27:31.958+03	
33dd0b15-a015-cc62-e8ff-f85dc1b7d66a	2021-05-28 13:27:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:27:52.951+03	2021-05-28 13:27:52.961+03	
cebb114d-7ab6-ad40-f90d-c35d4488ef84	2021-05-28 13:28:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:28:12.951+03	2021-05-28 13:28:12.958+03	
98957c88-88fb-f33b-4fb3-219a33b53abc	2021-05-28 13:28:32.962	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:28:32.951+03	2021-05-28 13:28:32.969+03	
193ab8ac-2b31-672d-46ff-11e78a631701	2021-05-28 13:28:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:28:52.951+03	2021-05-28 13:28:52.958+03	
6fade4ec-9333-21b9-ace0-109f3334253d	2021-05-28 13:29:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:29:12.951+03	2021-05-28 13:29:12.958+03	
8ff0fe24-ff09-2927-9e9d-378eb02fff73	2021-05-28 13:29:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:29:32.952+03	2021-05-28 13:29:32.958+03	
3c5a0d86-91d2-a7d2-d8ac-c0f913f2dcbf	2021-05-28 13:29:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:29:53.952+03	2021-05-28 13:29:53.96+03	
d50b8074-db1c-b615-d2b8-542f2a13016f	2021-05-28 13:30:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:30:04.951+03	2021-05-28 13:30:04.959+03	
c387c2ea-b1c1-fa49-65ff-1c9b47d6874a	2021-05-28 13:30:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:30:24.951+03	2021-05-28 13:30:24.958+03	
c2b9a11a-f70b-7c37-507a-4db69708814a	2021-05-28 13:30:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:30:44.951+03	2021-05-28 13:30:44.957+03	
9f563217-c467-1de6-069f-3bcfd12abb51	2021-05-28 13:31:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:31:04.951+03	2021-05-28 13:31:04.957+03	
b18697f4-98b7-78fc-1e03-53045e485398	2021-05-28 13:31:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:31:24.951+03	2021-05-28 13:31:24.959+03	
2c39d278-427f-9af2-cd0e-0f78f9e4f953	2021-05-28 13:31:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:31:44.951+03	2021-05-28 13:31:44.959+03	
3f846d27-3022-c7b4-21e6-ada683e9b207	2021-05-28 13:32:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:32:04.951+03	2021-05-28 13:32:04.959+03	
8c626453-9eef-0585-5b4a-eb4868a01411	2021-05-28 13:32:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:32:24.951+03	2021-05-28 13:32:24.958+03	
ea607735-8032-0737-48b1-aafb2c0b601b	2021-05-28 13:32:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:32:44.951+03	2021-05-28 13:32:44.958+03	
2a77ed0a-17b4-85dd-a7af-78ebacc85149	2021-05-28 13:33:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:33:04.951+03	2021-05-28 13:33:04.958+03	
ec9c7d0c-d023-c2e0-e855-e68c45e7a7eb	2021-05-28 13:33:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:33:24.951+03	2021-05-28 13:33:24.958+03	
e4682f42-cf60-5b8b-2935-d90cdde387ee	2021-05-28 13:33:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:33:44.951+03	2021-05-28 13:33:44.962+03	
f1f75e8a-af35-731a-c3fc-8da1aee7d78c	2021-05-28 13:34:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:34:04.951+03	2021-05-28 13:34:04.958+03	
ee822837-99f8-31e8-37f0-6a3166626554	2021-05-28 13:34:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:34:24.951+03	2021-05-28 13:34:24.958+03	
9b2f7768-e03f-2cd4-e022-3025b4fce22f	2021-05-28 13:34:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:34:44.951+03	2021-05-28 13:34:44.959+03	
77edb0f6-b5c9-f1ac-21f9-6f73e9b65f93	2021-05-28 13:35:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:35:04.951+03	2021-05-28 13:35:04.959+03	
302b452f-2587-6975-41d2-d555ae9e374e	2021-05-28 13:35:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:35:24.951+03	2021-05-28 13:35:24.959+03	
4e15217b-2ee4-c60b-8362-6ac2d04dc2d9	2021-05-28 13:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:35:44.951+03	2021-05-28 13:35:44.958+03	
7b68a033-50ef-79af-47ea-97684e9f2427	2021-05-28 13:36:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:36:04.951+03	2021-05-28 13:36:04.959+03	
f727e709-a81c-1479-57f5-4804b2e15418	2021-05-28 13:36:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:36:24.951+03	2021-05-28 13:36:24.957+03	
808e6211-150d-64cf-5712-60712a739ed6	2021-05-28 13:36:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:36:44.951+03	2021-05-28 13:36:44.958+03	
28e9ca08-f204-2604-4b90-986716f9ea76	2021-05-28 13:37:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:37:04.952+03	2021-05-28 13:37:04.959+03	
b3396fb0-2080-c9df-9703-7d7ff9e1b688	2021-05-28 13:37:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:37:25.951+03	2021-05-28 13:37:25.96+03	
23aeef34-b9c7-5122-1fc0-4710fd104baf	2021-05-28 13:37:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:37:45.952+03	2021-05-28 13:37:45.959+03	
5d28af21-6f17-3ff3-1548-2c14da3a067c	2021-05-28 13:38:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:38:06.951+03	2021-05-28 13:38:06.959+03	
c11299ff-e151-5c52-a6cc-3ce83d666034	2021-05-28 13:38:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:38:27.952+03	2021-05-28 13:38:27.959+03	
ec9a4277-e661-2e94-8cce-21c81cf38a40	2021-05-28 13:38:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:38:48.951+03	2021-05-28 13:38:48.959+03	
e2be30b6-da75-5f6b-a0f1-43c7481489d3	2021-05-28 13:39:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:39:08.951+03	2021-05-28 13:39:08.959+03	
4bf79f33-4217-e5bb-0128-2c19ca3f01e6	2021-05-28 13:39:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:39:28.952+03	2021-05-28 13:39:28.961+03	
087f9445-7435-5743-d9d0-c9de18cdd594	2021-05-28 13:39:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:39:49.951+03	2021-05-28 13:39:49.959+03	
7d81086a-d219-0bb7-d825-9d2427a7b113	2021-05-28 13:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 13:40:00.951+03	2021-05-28 13:40:00.959+03	ERROR
143e5edd-675c-6876-dff5-ef8dd857860a	2021-05-28 13:40:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:40:20.951+03	2021-05-28 13:40:20.958+03	
030c23bb-82ef-6041-5710-0fde60e83f2f	2021-05-28 13:40:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:40:30.951+03	2021-05-28 13:40:30.959+03	
95c46ed6-ec23-b302-ac34-5d5691dc58ed	2021-05-28 13:40:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:40:50.951+03	2021-05-28 13:40:50.959+03	
6123a9ce-d161-772c-29b8-35851d574db0	2021-05-28 13:41:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:41:10.951+03	2021-05-28 13:41:10.959+03	
9774e3f6-7119-e9b9-6f23-64cd95fc121e	2021-05-28 13:41:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:41:30.951+03	2021-05-28 13:41:30.96+03	
aefb0968-3c01-52ca-2d6d-0e5ff5a916d7	2021-05-28 13:41:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:41:50.952+03	2021-05-28 13:41:50.965+03	
48e0dac4-7593-5bfd-f5ca-b11820103a03	2021-05-28 13:42:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:42:11.951+03	2021-05-28 13:42:11.966+03	
b9b77115-0377-f788-ddf2-f9649d0e20cb	2021-05-28 13:42:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:42:31.951+03	2021-05-28 13:42:31.959+03	
7e3b4d26-00f8-1254-8357-956e859c5359	2021-05-28 13:42:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:42:51.951+03	2021-05-28 13:42:51.958+03	
9c914b44-ce9f-7745-ff29-a95bf0d53d95	2021-05-28 13:43:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:43:11.951+03	2021-05-28 13:43:11.958+03	
fb1a6d82-0232-6972-6bab-7c3a8747aeb8	2021-05-28 13:43:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:43:31.951+03	2021-05-28 13:43:31.958+03	
dda212a8-2a5a-5ea1-200f-7665def1a6c4	2021-05-28 13:43:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:43:51.951+03	2021-05-28 13:43:51.958+03	
6c25c7a4-938e-df46-312a-1b8276243dcf	2021-05-28 13:44:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:44:11.951+03	2021-05-28 13:44:11.96+03	
6fdbf29a-d36a-94a1-ba39-8cc239b002ed	2021-05-28 13:44:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:44:31.951+03	2021-05-28 13:44:31.96+03	
2a8e53c2-c271-bc57-b598-780f862a9bdc	2021-05-28 13:44:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:44:52.951+03	2021-05-28 13:44:52.96+03	
7a311eb5-6107-fdfd-3805-0a6218e8d85d	2021-05-28 13:45:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:45:12.951+03	2021-05-28 13:45:12.958+03	
f3f44f38-3780-d9fd-15fb-55f5b0612714	2021-05-28 13:45:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:45:32.951+03	2021-05-28 13:45:32.958+03	
7f5541cf-ab08-7b2e-e089-5045245f1867	2021-05-28 13:45:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:45:52.951+03	2021-05-28 13:45:52.959+03	
aacee750-ff9a-698c-604a-79d9abcdc4e4	2021-05-28 13:46:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:46:12.951+03	2021-05-28 13:46:12.958+03	
e4aa1e73-1f44-af67-38a8-4b2a163c4a24	2021-05-28 13:46:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:46:32.951+03	2021-05-28 13:46:32.96+03	
a8c08c2d-6c61-23db-7eea-b4b356e95db3	2021-05-28 13:46:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:46:52.951+03	2021-05-28 13:46:52.962+03	
16ac57f5-f464-93cd-5851-a25403636b0f	2021-05-28 13:47:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:47:12.951+03	2021-05-28 13:47:12.959+03	
df73b9eb-7ca5-5f06-69e7-23088eaa9bf7	2021-05-28 13:47:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:47:33.951+03	2021-05-28 13:47:33.958+03	
2c29bf1c-4499-a4ef-2958-463a98ef98e5	2021-05-28 13:47:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:47:53.951+03	2021-05-28 13:47:53.961+03	
00cab028-bb06-ecfc-fa5c-2ccbec105fad	2021-05-28 13:48:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:48:13.951+03	2021-05-28 13:48:13.959+03	
218da7ea-4690-cfb7-f276-9c134a6738c2	2021-05-28 13:48:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:48:33.952+03	2021-05-28 13:48:33.959+03	
00cb787e-32d0-ffed-93ee-66cfcdc85bfc	2021-05-28 13:48:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:48:54.951+03	2021-05-28 13:48:54.958+03	
aebd132e-4e28-26f8-1477-042cd98e3a90	2021-05-28 13:49:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:49:14.951+03	2021-05-28 13:49:14.959+03	
ee148d7d-03d5-a372-d17a-7a7c5cc5bf69	2021-05-28 13:49:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:49:34.951+03	2021-05-28 13:49:34.958+03	
fbca302a-6945-c6c7-8a02-21590d46e833	2021-05-28 13:49:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:49:54.951+03	2021-05-28 13:49:54.958+03	
3cf917fc-7316-aba7-7607-29c72634306a	2021-05-28 13:50:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:50:04.951+03	2021-05-28 13:50:04.957+03	
2fb2cf62-e2fc-1a4d-966b-9ae886da636c	2021-05-28 13:50:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:50:24.951+03	2021-05-28 13:50:24.958+03	
94d5e42e-2dea-721c-6d1f-533f8d9b196d	2021-05-28 13:50:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:50:44.951+03	2021-05-28 13:50:44.96+03	
0a887fdb-5a9a-8b81-b7a9-555403166646	2021-05-28 13:51:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:51:04.952+03	2021-05-28 13:51:04.958+03	
1ffe8081-7ff4-2ca6-4bf7-9d1421e86509	2021-05-28 13:51:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:51:25.952+03	2021-05-28 13:51:25.958+03	
b6d1cdf3-50af-e45d-dd24-6cefce54da65	2021-05-28 13:51:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:51:46.951+03	2021-05-28 13:51:46.957+03	
cac0bbde-de48-740c-a6f6-bbd92c7c46f8	2021-05-28 13:52:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:52:06.951+03	2021-05-28 13:52:06.959+03	
2b6888ac-38e4-6d0b-9a7c-6ecbf18d82ee	2021-05-28 13:52:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:52:26.951+03	2021-05-28 13:52:26.957+03	
19c746b4-ce04-0a6e-6a1d-d272c6e268b2	2021-05-28 13:52:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:52:46.951+03	2021-05-28 13:52:46.958+03	
b51286f6-226b-d0c9-7fc7-5fee00562177	2021-05-28 13:53:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:53:06.951+03	2021-05-28 13:53:06.957+03	
7bf140a0-cfac-4f95-4f2f-e50e25475db6	2021-05-28 13:53:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:53:26.951+03	2021-05-28 13:53:26.96+03	
75daa4e9-4895-577e-9168-11aa9ee4d7ab	2021-05-28 13:53:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:53:46.951+03	2021-05-28 13:53:46.957+03	
90ff9678-2300-23e7-4e50-56f485c14bef	2021-05-28 13:54:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:54:06.951+03	2021-05-28 13:54:06.96+03	
35cb08a0-3f95-c10c-fa46-4bc6fe7514f0	2021-05-28 13:54:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:54:27.952+03	2021-05-28 13:54:27.961+03	
b2509dfd-fd3b-e1cc-eef3-95f69ea461ba	2021-05-28 13:54:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:54:48.951+03	2021-05-28 13:54:48.959+03	
88d411ba-e1ff-49d3-14a3-48b487669678	2021-05-28 13:55:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:55:08.951+03	2021-05-28 13:55:08.962+03	
583956de-386d-8c33-14d0-550755346053	2021-05-28 13:55:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:55:28.951+03	2021-05-28 13:55:28.958+03	
eddb72ad-1848-e732-32f9-f13ef3a72979	2021-05-28 13:55:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:55:48.951+03	2021-05-28 13:55:48.958+03	
c1757451-e7f2-977e-7ac4-36aadcd85cf6	2021-05-28 13:56:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:56:08.951+03	2021-05-28 13:56:08.958+03	
07f33105-a9bc-9f8b-795c-6ed319032cd6	2021-05-28 13:56:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:56:28.951+03	2021-05-28 13:56:28.96+03	
c851685c-a2cc-5fbc-c9da-080532dac58f	2021-05-28 13:56:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:56:48.951+03	2021-05-28 13:56:48.973+03	
139ee5ec-a15e-663e-5f9d-212740343358	2021-05-28 13:57:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:57:08.951+03	2021-05-28 13:57:08.957+03	
721242f4-bdfb-cc5b-3322-76433f522844	2021-05-28 13:57:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:57:28.951+03	2021-05-28 13:57:28.958+03	
388544cb-819e-3e10-320e-e97fc7d4d76d	2021-05-28 13:57:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:57:48.952+03	2021-05-28 13:57:48.959+03	
cbca8d9f-5b19-cea3-e2e0-2adb36027699	2021-05-28 13:58:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:58:09.951+03	2021-05-28 13:58:09.957+03	
5c95c819-a414-e0cb-66fb-35c678b019b6	2021-05-28 13:58:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:58:29.951+03	2021-05-28 13:58:29.959+03	
66fcf966-d4e5-553f-e4d7-5c865c279ef0	2021-05-28 13:58:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:58:49.951+03	2021-05-28 13:58:49.96+03	
d61c5739-1931-1f7d-f325-ad315c68f116	2021-05-28 13:59:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:59:09.951+03	2021-05-28 13:59:09.959+03	
6c1cbdda-71a3-1aa0-851a-06b78605511f	2021-05-28 13:59:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:59:29.951+03	2021-05-28 13:59:29.959+03	
280f78fb-31e8-b101-99a0-242ab93cad03	2021-05-28 13:59:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:59:49.951+03	2021-05-28 13:59:49.958+03	
e4f51aca-c68e-2ec0-8d51-fa0f990f05e0	2021-05-28 14:00:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 14:00:00.951+03	2021-05-28 14:00:00.956+03	ERROR
14b321eb-5784-1eaf-8b06-5f4f276b8b73	2021-05-28 14:00:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:00:19.951+03	2021-05-28 14:00:19.958+03	
a22822ce-f462-701c-f17c-ef114468e8b9	2021-05-28 14:00:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:00:39.952+03	2021-05-28 14:00:39.96+03	
1679b322-c5d2-2a6c-8b97-c029e91ae972	2021-05-28 14:01:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:01:00.951+03	2021-05-28 14:01:00.958+03	
87abd896-9595-86f0-046c-4a5261c91a75	2021-05-28 13:40:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:40:40.951+03	2021-05-28 13:40:40.959+03	
c87ef050-000c-cdf5-905e-1d4a25d5065d	2021-05-28 13:41:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:41:00.951+03	2021-05-28 13:41:00.958+03	
d6c33b18-1330-b329-9220-3243b39b17f9	2021-05-28 13:41:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:41:20.951+03	2021-05-28 13:41:20.958+03	
4926f5bb-5969-9a29-3184-7b47fe3ec487	2021-05-28 13:41:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:41:40.951+03	2021-05-28 13:41:40.963+03	
26a48680-9017-d71b-ccba-3d213035de8c	2021-05-28 13:42:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:42:01.951+03	2021-05-28 13:42:01.958+03	
21e8d2b5-fcbd-1c7b-c3e4-0e359357c2c5	2021-05-28 13:42:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:42:21.951+03	2021-05-28 13:42:21.958+03	
7a8e4d79-04c8-cb4e-7b7c-b1f27cab8e82	2021-05-28 13:42:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:42:41.951+03	2021-05-28 13:42:41.958+03	
c761dfa4-3c8b-066f-f324-d31c45f90c4c	2021-05-28 13:43:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:43:01.951+03	2021-05-28 13:43:01.958+03	
7e934b60-df64-e929-5fe2-9a03aed2a4e0	2021-05-28 13:43:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:43:21.951+03	2021-05-28 13:43:21.958+03	
7891ebc6-0fe8-0b69-544a-8d99c5b62f7e	2021-05-28 13:43:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:43:41.951+03	2021-05-28 13:43:41.959+03	
c6e0bbc1-0065-3b32-0d8e-0371f4ca083e	2021-05-28 13:44:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:44:01.951+03	2021-05-28 13:44:01.959+03	
7578a314-0a60-d31a-2e28-3d6ae5545413	2021-05-28 13:44:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:44:21.951+03	2021-05-28 13:44:21.958+03	
30c365c1-b418-d0b9-c954-94fab402ae12	2021-05-28 13:44:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:44:41.952+03	2021-05-28 13:44:41.96+03	
4b1a3422-277b-bcaa-0fa7-62d1d28add66	2021-05-28 13:45:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:45:02.951+03	2021-05-28 13:45:02.958+03	
d1334e01-2686-7335-fcc4-78c11f85dcb1	2021-05-28 13:45:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:45:22.951+03	2021-05-28 13:45:22.959+03	
9f57c1dd-4e1b-e5f5-a48d-628d97e1f979	2021-05-28 13:45:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:45:42.951+03	2021-05-28 13:45:42.962+03	
ad27d092-ee6e-6f02-a6c6-b219832f287a	2021-05-28 13:46:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:46:02.951+03	2021-05-28 13:46:02.959+03	
80383d47-4aa3-06fe-5e7a-2d5b78b87d6b	2021-05-28 13:46:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:46:22.951+03	2021-05-28 13:46:22.962+03	
a7f0945f-33e1-029b-1cc6-57ec9b9ed9aa	2021-05-28 13:46:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:46:42.951+03	2021-05-28 13:46:42.959+03	
0a3cd295-0534-f187-967e-cadc6250020c	2021-05-28 13:47:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:47:02.951+03	2021-05-28 13:47:02.96+03	
57dd1936-0819-c085-e05f-c1529d29643b	2021-05-28 13:47:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:47:22.952+03	2021-05-28 13:47:22.961+03	
89145876-0360-3730-7f5c-85b0aa549043	2021-05-28 13:47:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:47:43.951+03	2021-05-28 13:47:43.958+03	
8d2aed98-c573-6456-c9c3-9947a6a00f1e	2021-05-28 13:48:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:48:03.951+03	2021-05-28 13:48:03.958+03	
e81bf41a-6a90-2d69-2e5a-480bb54c5637	2021-05-28 13:48:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:48:23.951+03	2021-05-28 13:48:23.958+03	
efee5aa9-64ca-284f-5e59-7e6ac37e1caa	2021-05-28 13:48:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:48:44.951+03	2021-05-28 13:48:44.975+03	
19ae3fef-1ef7-562f-18c6-d97ac569111a	2021-05-28 13:49:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:49:04.951+03	2021-05-28 13:49:04.959+03	
a50ec7ec-e986-18cb-f343-9c07ffecd1f9	2021-05-28 13:49:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:49:24.951+03	2021-05-28 13:49:24.958+03	
cf65ba2c-d8bc-6edd-c116-6b9bfcf713ed	2021-05-28 13:49:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:49:44.951+03	2021-05-28 13:49:44.958+03	
9374a10f-bcbb-07ef-3569-409d903af8eb	2021-05-28 13:50:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 13:50:00.951+03	2021-05-28 13:50:00.956+03	ERROR
1df300e1-a30e-a5b1-45b7-94dc4365ea2c	2021-05-28 13:50:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:50:14.951+03	2021-05-28 13:50:14.959+03	
ddcb3cd5-1049-9cc2-5a97-c16c72a4a551	2021-05-28 13:50:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:50:34.951+03	2021-05-28 13:50:34.962+03	
79368e1a-1c11-3591-d472-7a5c8d0981f9	2021-05-28 13:50:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:50:54.952+03	2021-05-28 13:50:54.959+03	
f573d012-e7f0-0733-2439-7e6bbb2cb6e1	2021-05-28 13:51:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:51:15.951+03	2021-05-28 13:51:15.958+03	
ce118563-e19e-0a98-0634-2e31587a4b26	2021-05-28 13:51:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:51:36.951+03	2021-05-28 13:51:36.959+03	
a31e6352-41c9-164a-9553-b58f8eb42898	2021-05-28 13:51:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:51:56.951+03	2021-05-28 13:51:56.959+03	
f312041a-0a87-0a35-cba7-586df8ee84fc	2021-05-28 13:52:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:52:16.951+03	2021-05-28 13:52:16.96+03	
59e47312-28ef-e529-eceb-bf99e4ab33ca	2021-05-28 13:52:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:52:36.951+03	2021-05-28 13:52:36.959+03	
d4e3cb6b-e9c7-3e07-ec1e-cb23752fc34d	2021-05-28 13:52:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:52:56.951+03	2021-05-28 13:52:56.957+03	
d7c2277b-18db-5ee2-49fa-790a45889460	2021-05-28 13:53:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:53:16.951+03	2021-05-28 13:53:16.959+03	
e4e04ac0-c2a7-ef6a-940e-772c585d6891	2021-05-28 13:53:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:53:36.951+03	2021-05-28 13:53:36.961+03	
538db978-a3ba-b169-03ef-329571975d96	2021-05-28 13:53:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:53:56.951+03	2021-05-28 13:53:56.959+03	
c23d8385-0000-13c7-2d96-6a9996ee59c5	2021-05-28 13:54:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:54:16.952+03	2021-05-28 13:54:16.973+03	
d5031f8b-acdd-1b54-c10f-21e44459d897	2021-05-28 13:54:37.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:54:37.952+03	2021-05-28 13:54:37.961+03	
0596d381-c6f1-85eb-98e1-b554968b24bb	2021-05-28 13:54:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:54:58.951+03	2021-05-28 13:54:58.959+03	
8bee2db4-046a-acb8-12fb-e5847c5a4f19	2021-05-28 13:55:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:55:18.951+03	2021-05-28 13:55:18.959+03	
c4d66d53-27c3-2c5d-96ec-13d34d69eca0	2021-05-28 13:55:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:55:38.951+03	2021-05-28 13:55:38.958+03	
701746d0-54ee-ffca-155d-fa081e039586	2021-05-28 13:55:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:55:58.951+03	2021-05-28 13:55:58.96+03	
88441d6c-6da1-c39a-54e6-43ae2baff790	2021-05-28 13:56:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:56:18.951+03	2021-05-28 13:56:18.958+03	
adb7c454-0ec5-bb6d-a643-761966d38200	2021-05-28 13:56:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:56:38.951+03	2021-05-28 13:56:38.957+03	
eae3af01-881d-c8e4-30e9-72f3368c3181	2021-05-28 13:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:56:58.951+03	2021-05-28 13:56:58.96+03	
7ec4d4ed-fd75-0b18-5122-6b928a227a17	2021-05-28 13:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:57:18.951+03	2021-05-28 13:57:18.959+03	
7f4a8855-55f9-6b1f-3efd-664f3b3f99f0	2021-05-28 13:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:57:38.952+03	2021-05-28 13:57:38.959+03	
ac233549-539f-c891-c715-39f6589e01ec	2021-05-28 13:57:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:57:59.951+03	2021-05-28 13:57:59.958+03	
a939ac17-c42a-b6ab-04ac-43741834bb62	2021-05-28 13:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:58:19.951+03	2021-05-28 13:58:19.959+03	
0a0c38a2-8917-50ad-5ca1-48f76c07cb10	2021-05-28 13:58:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:58:39.951+03	2021-05-28 13:58:39.96+03	
bdda6483-798a-728b-a499-e0f129fde914	2021-05-28 13:58:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:58:59.951+03	2021-05-28 13:58:59.958+03	
27d2e286-80fc-1767-8841-3d85d674d257	2021-05-28 13:59:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:59:19.951+03	2021-05-28 13:59:19.958+03	
330d1993-eaee-7f4e-5cab-d5b3223080be	2021-05-28 13:59:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:59:39.951+03	2021-05-28 13:59:39.958+03	
24888dfa-b878-d244-bf97-dfdf4562511f	2021-05-28 13:59:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 13:59:59.951+03	2021-05-28 13:59:59.957+03	
e11c2955-bc13-9edc-b98e-1ba513146cef	2021-05-28 14:00:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:00:09.951+03	2021-05-28 14:00:09.959+03	
32047ad1-0292-3603-33f2-779707d63d06	2021-05-28 14:00:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:00:29.951+03	2021-05-28 14:00:29.958+03	
484bfd0d-d107-511d-f1cd-906f9d8a24f3	2021-05-28 14:00:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:00:50.951+03	2021-05-28 14:00:50.962+03	
165f3267-0ff2-3d87-7f26-4c3a7b803877	2021-05-28 14:01:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:01:10.951+03	2021-05-28 14:01:10.958+03	
6a6e947e-52c1-f61c-d8ca-e0fca5abc22b	2021-05-28 14:01:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:01:20.951+03	2021-05-28 14:01:20.961+03	
ed2e322c-93fa-dea6-aeff-505fa8dada58	2021-05-28 14:01:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:01:40.952+03	2021-05-28 14:01:40.958+03	
3074fa81-fc6e-8bd2-c94e-0fce948e710d	2021-05-28 14:02:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:02:01.951+03	2021-05-28 14:02:01.959+03	
1313bc4c-7b9d-a886-1c40-d00cc3456e8b	2021-05-28 14:02:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:02:21.951+03	2021-05-28 14:02:21.957+03	
074e1e6b-9a80-94dd-94fc-562e20e225c5	2021-05-28 14:02:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:02:41.951+03	2021-05-28 14:02:41.959+03	
f1abaa45-b247-582f-a134-e2d4cd2fa46c	2021-05-28 14:03:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:03:01.951+03	2021-05-28 14:03:01.958+03	
ce90ff5c-ade7-2d59-4c9a-73cfde179282	2021-05-28 14:03:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:03:21.951+03	2021-05-28 14:03:21.958+03	
c645e86e-4273-e693-ed26-7a249b7eb355	2021-05-28 14:03:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:03:41.951+03	2021-05-28 14:03:41.958+03	
ae26264c-69ec-5ada-f95a-d4728615403e	2021-05-28 14:04:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:04:01.951+03	2021-05-28 14:04:01.959+03	
81141b98-f684-1774-964e-feeea486a357	2021-05-28 14:04:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:04:21.951+03	2021-05-28 14:04:21.958+03	
e9e80bb2-c7a9-e71a-725f-3c8e123de87c	2021-05-28 14:04:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:04:41.951+03	2021-05-28 14:04:41.958+03	
9f1a7b7e-8fba-8653-1cf5-c4d67e441174	2021-05-28 14:05:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:05:01.952+03	2021-05-28 14:05:01.958+03	
17a59d07-978e-57f4-3ae5-e45c8e1240ec	2021-05-28 14:05:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:05:32.952+03	2021-05-28 14:05:32.959+03	
c470b7d8-64e8-f51f-8bd6-39da35eab4f0	2021-05-28 14:05:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:05:53.951+03	2021-05-28 14:05:53.961+03	
1834cf65-ae92-0dc6-33d5-6729cd2fe8bc	2021-05-28 14:06:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:06:13.951+03	2021-05-28 14:06:13.959+03	
1f1b6ea3-3e0a-cc7c-9a56-1efbadfc939d	2021-05-28 14:06:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:06:33.952+03	2021-05-28 14:06:33.959+03	
2c69f351-d552-c44b-da83-fcd4709b419d	2021-05-28 14:06:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:06:54.951+03	2021-05-28 14:06:54.958+03	
097e9f26-eaff-db9a-f39a-7f3651669035	2021-05-28 14:07:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:07:14.951+03	2021-05-28 14:07:14.958+03	
78b99f13-6a25-9566-823b-3da0e515767e	2021-05-28 14:07:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:07:34.951+03	2021-05-28 14:07:34.958+03	
d7c5f7e2-4de7-40a6-9c30-bca4807afb07	2021-05-28 14:07:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:07:54.951+03	2021-05-28 14:07:54.963+03	
05e0610b-26e7-c313-e584-e6f6dde0ea3f	2021-05-28 14:08:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:08:14.951+03	2021-05-28 14:08:14.959+03	
52ce7f7b-c99c-77df-b6fe-85ef2ec228ba	2021-05-28 14:08:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:08:34.951+03	2021-05-28 14:08:34.958+03	
bec26f8f-2b8e-23fd-be45-d3c25fb84c24	2021-05-28 14:08:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:08:54.952+03	2021-05-28 14:08:54.961+03	
4020f125-0d61-60b1-d59c-fcf2303fa471	2021-05-28 14:09:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:09:15.951+03	2021-05-28 14:09:15.969+03	
844c3ab8-7141-bddc-752f-45b2da28f268	2021-05-28 14:09:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:09:35.951+03	2021-05-28 14:09:35.958+03	
4e85827e-472a-8a58-a1a7-14e408ef17eb	2021-05-28 14:09:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:09:55.951+03	2021-05-28 14:09:55.958+03	
65e50b07-e84a-be66-a8c4-247127cb4040	2021-05-28 14:10:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:10:05.951+03	2021-05-28 14:10:05.959+03	
1c94982b-e8ba-46ad-fd7e-23605fb89f07	2021-05-28 14:10:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:10:25.952+03	2021-05-28 14:10:25.961+03	
958c2c63-5ffa-3231-3a8e-6f50843974f5	2021-05-28 14:10:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:10:46.951+03	2021-05-28 14:10:46.967+03	
ca43e659-00c0-8fd1-31c8-56b8a16ab63a	2021-05-28 14:11:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:11:06.951+03	2021-05-28 14:11:06.958+03	
2c498d72-ace5-ec13-1a7a-bc8f8186e7e1	2021-05-28 14:11:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:11:26.951+03	2021-05-28 14:11:26.959+03	
c74221cc-a73e-01d2-f51f-210420d9fd98	2021-05-28 14:11:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:11:46.951+03	2021-05-28 14:11:46.958+03	
0c4f3ca5-6e62-9725-241f-b35cc26f51dc	2021-05-28 14:12:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:12:06.951+03	2021-05-28 14:12:06.96+03	
cb3141f6-1937-1bde-292f-7d66bcd150ac	2021-05-28 14:12:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:12:26.951+03	2021-05-28 14:12:26.96+03	
00e43b18-d8e1-e521-536a-058c773c3ce3	2021-05-28 14:12:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:12:46.951+03	2021-05-28 14:12:46.958+03	
843f9c61-b718-8015-b3b2-87dec11fe714	2021-05-28 14:13:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:13:06.951+03	2021-05-28 14:13:06.958+03	
587a8238-4085-5523-e6fd-b428af0084fe	2021-05-28 14:13:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:13:26.951+03	2021-05-28 14:13:26.958+03	
79ab9a87-385b-c360-46d0-e111126542ac	2021-05-28 14:13:46.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:13:46.951+03	2021-05-28 14:13:46.958+03	
c608f6f1-f9e8-f4e3-2839-40075806b18f	2021-05-28 14:14:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:14:06.951+03	2021-05-28 14:14:06.967+03	
dc02661e-6920-6a95-28b0-559454919a97	2021-05-28 14:14:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:14:27.951+03	2021-05-28 14:14:27.958+03	
09dd18fe-265e-ef24-a8b1-10b1cb49cc90	2021-05-28 14:14:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:14:48.951+03	2021-05-28 14:14:48.959+03	
9b9a2135-9467-3fcd-0aed-afb5f3e2e9db	2021-05-28 14:15:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:15:09.951+03	2021-05-28 14:15:09.958+03	
89c4e3cb-685e-2c28-4e0d-affa568decd8	2021-05-28 14:15:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:15:19.951+03	2021-05-28 14:15:19.959+03	
891d1fd0-4764-6c5c-ffd6-7951edea534e	2021-05-28 14:15:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:15:39.951+03	2021-05-28 14:15:39.959+03	
33f049d0-1304-8a24-041c-f27ac70b71ef	2021-05-28 14:15:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:15:59.951+03	2021-05-28 14:15:59.959+03	
f7f25567-686d-da4a-9886-611bd91ed941	2021-05-28 14:16:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:16:19.951+03	2021-05-28 14:16:19.958+03	
bae91ed6-7ec9-08f2-eb01-1859ba672ed7	2021-05-28 14:16:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:16:39.951+03	2021-05-28 14:16:39.957+03	
6170ce17-003a-6b15-fc92-cfbb92512775	2021-05-28 14:16:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:16:59.951+03	2021-05-28 14:16:59.958+03	
ba42473d-7bde-8cbf-6f84-2f66be4d683e	2021-05-28 14:17:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:17:19.951+03	2021-05-28 14:17:19.957+03	
8eb8e97b-7415-5fb0-83ae-1263ce65ab8d	2021-05-28 14:17:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:17:39.951+03	2021-05-28 14:17:39.957+03	
2190b297-02e3-f611-b376-569f1a75ad32	2021-05-28 14:17:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:17:59.951+03	2021-05-28 14:17:59.959+03	
8587834a-2eac-ded6-ea5c-8982ba229f56	2021-05-28 14:18:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:18:19.951+03	2021-05-28 14:18:19.959+03	
6ff09ce6-340d-a8fc-af70-c735a58994c8	2021-05-28 14:18:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:18:39.951+03	2021-05-28 14:18:39.958+03	
7b65d27c-89f5-575f-73e5-9d97a26787f2	2021-05-28 14:18:59.959	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:18:59.959+03	2021-05-28 14:18:59.966+03	
363f5cfa-4f0d-2f74-7a23-cfb1da485ae4	2021-05-28 14:19:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:19:20.951+03	2021-05-28 14:19:20.958+03	
08db02e3-b144-4a63-92ac-5863f1c47e93	2021-05-28 14:19:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:19:40.951+03	2021-05-28 14:19:40.958+03	
b04a4f2f-a1c2-f018-e559-739d5e169327	2021-05-28 14:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 14:20:00.951+03	2021-05-28 14:20:00.956+03	ERROR
ea30c323-84d9-5525-5868-5c253e7f83b7	2021-05-28 14:20:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:20:11.951+03	2021-05-28 14:20:11.959+03	
a48ea372-f205-27cf-fbc7-f3a5cc887e64	2021-05-28 14:20:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:20:31.951+03	2021-05-28 14:20:31.96+03	
bdeece3c-3bae-511b-39fc-489c70b59e90	2021-05-28 14:20:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:20:51.951+03	2021-05-28 14:20:51.958+03	
e5974c28-1ffc-0e6e-5c1d-8fca183c5236	2021-05-28 14:21:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:21:11.951+03	2021-05-28 14:21:11.957+03	
00804aaf-ddf4-0e17-7f07-de6bdc4247e1	2021-05-28 14:21:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:21:31.951+03	2021-05-28 14:21:31.958+03	
25bfa646-ff07-f2dc-e976-47757be199f3	2021-05-28 14:21:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:21:51.951+03	2021-05-28 14:21:51.958+03	
7be27c19-8c97-1195-103e-dc84d837da66	2021-05-28 14:01:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:01:30.951+03	2021-05-28 14:01:30.958+03	
eec540c8-d87e-cdac-8f22-af9c044d1231	2021-05-28 14:01:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:01:51.951+03	2021-05-28 14:01:51.961+03	
3834763b-198c-4650-a855-2e7a2b3156a6	2021-05-28 14:02:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:02:11.951+03	2021-05-28 14:02:11.958+03	
f0bc3bcb-c933-5c6f-78a3-9888c2451882	2021-05-28 14:02:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:02:31.951+03	2021-05-28 14:02:31.957+03	
05898b3f-b4c5-0471-a681-127e9fb4f6c4	2021-05-28 14:02:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:02:51.951+03	2021-05-28 14:02:51.959+03	
e81bbebd-45b2-9f71-e0a4-80109134e4f6	2021-05-28 14:03:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:03:11.951+03	2021-05-28 14:03:11.959+03	
1f6e9171-52ce-6a87-7050-da75c431b158	2021-05-28 14:03:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:03:31.951+03	2021-05-28 14:03:31.958+03	
361911a1-3ad8-3f51-8565-80dde62eca23	2021-05-28 14:03:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:03:51.951+03	2021-05-28 14:03:51.959+03	
ba64d4d5-6006-8063-2c9e-50cce3df53b3	2021-05-28 14:04:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:04:11.951+03	2021-05-28 14:04:11.958+03	
6d316dba-4bf5-b670-4bfc-7f3ed82e3729	2021-05-28 14:04:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:04:31.951+03	2021-05-28 14:04:31.958+03	
8843d7d1-1990-9176-7a68-114f454ed040	2021-05-28 14:04:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:04:51.951+03	2021-05-28 14:04:51.959+03	
7fe1828c-20e8-0949-64a4-733303d6ba9a	2021-05-28 14:05:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:05:12.951+03	2021-05-28 14:05:12.97+03	
ed2ca301-2f50-bd58-48c3-f6c42366de98	2021-05-28 14:05:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:05:22.951+03	2021-05-28 14:05:22.96+03	
c85953c1-d404-3048-104a-a71a43cd950b	2021-05-28 14:05:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:05:43.951+03	2021-05-28 14:05:43.958+03	
48f018a7-ac2c-f34d-22a9-e38b7b7d2a97	2021-05-28 14:06:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:06:03.951+03	2021-05-28 14:06:03.958+03	
91c71408-8b34-a3e7-6dbb-11594096b575	2021-05-28 14:06:23.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:06:23.952+03	2021-05-28 14:06:23.971+03	
4793ed93-a2c6-9031-f099-d049c9e73749	2021-05-28 14:06:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:06:44.951+03	2021-05-28 14:06:44.958+03	
559396f9-d494-785d-f2f2-da9f0d4546be	2021-05-28 14:07:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:07:04.951+03	2021-05-28 14:07:04.964+03	
9da6e5b7-ac00-a508-c5da-7d9436f52908	2021-05-28 14:07:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:07:24.951+03	2021-05-28 14:07:24.959+03	
d46e0ae6-3d37-1bac-eeb7-63484bcca023	2021-05-28 14:07:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:07:44.951+03	2021-05-28 14:07:44.958+03	
011b2aec-d74d-9c7e-ec03-7212fd163441	2021-05-28 14:08:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:08:04.951+03	2021-05-28 14:08:04.959+03	
2a8d8bbe-e7cd-e16c-85da-dfe1dcb1e5e2	2021-05-28 14:08:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:08:24.951+03	2021-05-28 14:08:24.958+03	
031c1f02-08a8-6c28-589c-ff55a2be8fb7	2021-05-28 14:08:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:08:44.951+03	2021-05-28 14:08:44.958+03	
b789653d-f84a-7a7e-4d4e-5e034d16907d	2021-05-28 14:09:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:09:05.951+03	2021-05-28 14:09:05.958+03	
81f5ad61-3849-1217-b253-f4707c825cf9	2021-05-28 14:09:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:09:25.951+03	2021-05-28 14:09:25.959+03	
736da1e0-fb33-8fc0-78ef-f7ec7628eb3d	2021-05-28 14:09:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:09:45.951+03	2021-05-28 14:09:45.959+03	
994fb7f9-40b9-75bd-aa43-9cb6e186f332	2021-05-28 14:10:00.951	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 14:10:00.951+03	2021-05-28 14:10:00.958+03	ERROR
1f272853-6570-5972-5c8c-099ec86d1d73	2021-05-28 14:10:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:10:15.951+03	2021-05-28 14:10:15.961+03	
56f5386e-ea18-be6a-da06-f8091b621a3e	2021-05-28 14:10:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:10:36.951+03	2021-05-28 14:10:36.959+03	
adaa73fe-336c-22a1-a807-ceb63d99613b	2021-05-28 14:10:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:10:56.951+03	2021-05-28 14:10:56.959+03	
4e2ead07-5c54-ec66-98da-564c32853870	2021-05-28 14:11:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:11:16.951+03	2021-05-28 14:11:16.959+03	
1390862c-3083-4249-8b29-4dc2a7bf2c22	2021-05-28 14:11:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:11:36.951+03	2021-05-28 14:11:36.959+03	
8790a305-81c3-33d3-9f02-cdc9ea39dfc8	2021-05-28 14:11:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:11:56.951+03	2021-05-28 14:11:56.958+03	
a5d4ca37-b38f-c1ed-97ad-02b499f1d754	2021-05-28 14:12:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:12:16.951+03	2021-05-28 14:12:16.958+03	
3d471ab0-87da-0fa3-a39f-6ca1abf60bea	2021-05-28 14:12:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:12:36.951+03	2021-05-28 14:12:36.959+03	
a1ade55e-4025-cdec-4d46-ff81e20b6702	2021-05-28 14:12:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:12:56.951+03	2021-05-28 14:12:56.96+03	
eb8a5629-f243-9f9f-4b7e-74a985b83803	2021-05-28 14:13:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:13:16.951+03	2021-05-28 14:13:16.959+03	
063b7a12-b9bb-d738-ff65-ac5aa7c6653b	2021-05-28 14:13:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:13:36.951+03	2021-05-28 14:13:36.96+03	
b488721c-3714-13cc-cf60-b4f8bf63eb09	2021-05-28 14:13:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:13:56.951+03	2021-05-28 14:13:56.959+03	
e008569e-eb1a-6c36-ba7b-587e4cf9ba5f	2021-05-28 14:14:16.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:14:16.952+03	2021-05-28 14:14:16.96+03	
abe19980-8948-5086-18ab-33f2623185f5	2021-05-28 14:14:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:14:37.952+03	2021-05-28 14:14:37.961+03	
860f5297-e165-f537-d161-1038ea142f06	2021-05-28 14:14:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:14:58.952+03	2021-05-28 14:14:58.963+03	
a6267c3f-d77f-2b5d-76a8-8d2ca1fc386f	2021-05-28 14:15:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:15:29.951+03	2021-05-28 14:15:29.958+03	
1f0862a2-6ac2-6dc2-7358-1f69ef4dd373	2021-05-28 14:15:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:15:49.951+03	2021-05-28 14:15:49.957+03	
decc4c86-a39f-5d70-d160-0ed8c96e370b	2021-05-28 14:16:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:16:09.951+03	2021-05-28 14:16:09.958+03	
5a5785ff-8c05-be89-c1c1-94bb94e65265	2021-05-28 14:16:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:16:29.951+03	2021-05-28 14:16:29.958+03	
82b5ce4a-58a9-0f36-ed48-ffe7996466cc	2021-05-28 14:16:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:16:49.951+03	2021-05-28 14:16:49.962+03	
6e97e885-499d-2b90-13e4-ab1e658b2694	2021-05-28 14:17:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:17:09.951+03	2021-05-28 14:17:09.959+03	
9c677060-98d7-18c7-55ef-0bb008c3c6c8	2021-05-28 14:17:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:17:29.951+03	2021-05-28 14:17:29.958+03	
766bed2a-1a16-ee6d-02a9-4c7cf4e7f979	2021-05-28 14:17:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:17:49.951+03	2021-05-28 14:17:49.958+03	
f106dcc1-9afe-62c1-43c8-a5ab7b9d8004	2021-05-28 14:18:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:18:09.951+03	2021-05-28 14:18:09.958+03	
a8ff1236-6c61-6bc9-5400-b0a5bc6cf2a9	2021-05-28 14:18:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:18:29.951+03	2021-05-28 14:18:29.958+03	
6b50a482-1bb4-59e2-8b09-42e6b551afe0	2021-05-28 14:18:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:18:49.951+03	2021-05-28 14:18:49.958+03	
7d749f5c-8090-be39-51cc-eaf5aa0d2f14	2021-05-28 14:19:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:19:10.951+03	2021-05-28 14:19:10.96+03	
0bd19a82-e272-972e-8b6e-62bf8174b63d	2021-05-28 14:19:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:19:30.951+03	2021-05-28 14:19:30.96+03	
194cd7dc-87de-fb49-82ac-10b786c5307c	2021-05-28 14:19:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:19:50.952+03	2021-05-28 14:19:50.96+03	
7744e45d-f0e8-3fde-d9a3-86d60f8f088d	2021-05-28 14:20:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:20:01.951+03	2021-05-28 14:20:01.958+03	
abfa1530-cde7-17f2-f102-d03a8c873a29	2021-05-28 14:20:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:20:21.951+03	2021-05-28 14:20:21.958+03	
b75ef590-3c61-7b98-96ed-12496d571762	2021-05-28 14:20:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:20:41.951+03	2021-05-28 14:20:41.959+03	
6b6d6c2c-e426-a5d7-af20-9938bab1f181	2021-05-28 14:21:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:21:01.951+03	2021-05-28 14:21:01.959+03	
fdebf60a-5722-ae6d-0491-ad0a55023462	2021-05-28 14:21:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:21:21.951+03	2021-05-28 14:21:21.959+03	
68a87eb4-98ca-6f86-dac5-89499aa67ea4	2021-05-28 14:21:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:21:41.951+03	2021-05-28 14:21:41.958+03	
193c958c-2ea9-6f13-18f8-4d14c20084ca	2021-05-28 14:22:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:22:01.951+03	2021-05-28 14:22:01.959+03	
0d0dbfb3-f52f-010e-ffb7-373ffea5790a	2021-05-28 14:22:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:22:11.951+03	2021-05-28 14:22:11.957+03	
28d286dd-d118-fbbd-3567-3d962337f1d9	2021-05-28 14:22:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:22:31.951+03	2021-05-28 14:22:31.959+03	
539089d8-335e-9456-7574-61d5352fe219	2021-05-28 14:22:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:22:51.951+03	2021-05-28 14:22:51.965+03	
acb098e9-c528-0ffa-f511-5d2f61f1bf74	2021-05-28 14:23:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:23:11.951+03	2021-05-28 14:23:11.958+03	
6857f8fa-c6e3-ec71-b39c-942d32e59859	2021-05-28 14:23:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:23:31.951+03	2021-05-28 14:23:31.958+03	
9665067a-d190-34bd-e626-9a79a3a58d52	2021-05-28 14:23:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:23:51.951+03	2021-05-28 14:23:51.959+03	
492c7fe4-81ec-bff2-0a2b-0477d853ab82	2021-05-28 14:24:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:24:11.951+03	2021-05-28 14:24:11.958+03	
12232e01-334f-4b1a-71a3-16c3e1b65c5b	2021-05-28 14:24:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:24:31.951+03	2021-05-28 14:24:31.958+03	
db52a9b3-f8d5-270b-76ef-f8867dc142ba	2021-05-28 14:24:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:24:51.951+03	2021-05-28 14:24:51.959+03	
794d6ac2-7993-070c-eb60-07e13b90a3dd	2021-05-28 14:25:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:25:11.951+03	2021-05-28 14:25:11.957+03	
baea38b2-7ad8-8a82-54bc-9d5410f049a5	2021-05-28 14:25:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:25:31.951+03	2021-05-28 14:25:31.959+03	
7a0690ee-8008-e123-8bbd-905e3485e669	2021-05-28 14:25:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:25:51.951+03	2021-05-28 14:25:51.958+03	
172e20f9-a8df-5260-c948-6492b75fd5c9	2021-05-28 14:26:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:26:11.951+03	2021-05-28 14:26:11.959+03	
04eb04ba-9e92-0aa7-b55b-f48c960c3a1b	2021-05-28 14:26:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:26:31.951+03	2021-05-28 14:26:31.959+03	
8a2b7f51-3dc5-0afa-290b-88e101e0fea9	2021-05-28 14:26:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:26:51.951+03	2021-05-28 14:26:51.958+03	
5f1b4ecd-3adc-c4b0-9048-3b9b11b0970c	2021-05-28 14:27:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:27:11.951+03	2021-05-28 14:27:11.957+03	
b2f570eb-eda5-25b2-abe3-ace64ca786fa	2021-05-28 14:27:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:27:31.951+03	2021-05-28 14:27:31.958+03	
d86c5256-3fbe-86d7-0069-6c179611cd11	2021-05-28 14:27:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:27:51.952+03	2021-05-28 14:27:51.962+03	
3468344d-9a16-c84a-9b46-db81f9e329b5	2021-05-28 14:28:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:28:13.951+03	2021-05-28 14:28:13.958+03	
64bf9592-4eaa-1f38-bca7-78c6fcdf2c3e	2021-05-28 14:28:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:28:33.951+03	2021-05-28 14:28:33.958+03	
46615d57-5d89-3e42-90c0-a9fbe5ffd0e0	2021-05-28 14:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:28:53.951+03	2021-05-28 14:28:53.958+03	
68674aea-1ecd-2f41-a33b-f9c1283ed6ec	2021-05-28 14:29:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:29:13.951+03	2021-05-28 14:29:13.958+03	
15dfa396-0014-588b-7874-5b378d68a64d	2021-05-28 14:29:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:29:33.951+03	2021-05-28 14:29:33.961+03	
8ebd1dab-8bd6-0e66-8602-c5feaa738dd5	2021-05-28 14:29:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:29:53.951+03	2021-05-28 14:29:53.957+03	
11b7ebdc-01c6-ad2c-df8a-9a1913f077ce	2021-05-28 14:30:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:30:03.951+03	2021-05-28 14:30:03.959+03	
08f4c937-4f33-ac71-dbc4-b4230d77120e	2021-05-28 14:30:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:30:23.951+03	2021-05-28 14:30:23.958+03	
57225117-fc6e-ea1c-272b-d75ce351312c	2021-05-28 14:30:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:30:43.951+03	2021-05-28 14:30:43.958+03	
2d17d760-42e7-0d6c-8f7d-59ed788c66a7	2021-05-28 14:31:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:31:03.951+03	2021-05-28 14:31:03.962+03	
81ec447a-c01e-0f51-6488-76a2d3e06d57	2021-05-28 14:31:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:31:23.951+03	2021-05-28 14:31:23.961+03	
a53e735c-f507-d9bc-7200-174fe918d615	2021-05-28 14:31:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:31:43.951+03	2021-05-28 14:31:43.959+03	
ebb19d69-d76e-b4b1-f48c-9917218b8edc	2021-05-28 14:32:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:32:03.951+03	2021-05-28 14:32:03.962+03	
1deb51aa-5e7f-5ff2-51a0-3af95f2ecc3d	2021-05-28 14:32:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:32:23.951+03	2021-05-28 14:32:23.959+03	
4c8555c7-6d4e-c7ad-8132-56c3d61c6e97	2021-05-28 14:32:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:32:43.951+03	2021-05-28 14:32:43.96+03	
cd700e18-6373-2e39-5bbd-d1d8e873d98d	2021-05-28 14:33:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:33:03.951+03	2021-05-28 14:33:03.959+03	
40a3e80e-0beb-60ea-0cd5-f5ccc7c0d075	2021-05-28 14:33:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:33:24.951+03	2021-05-28 14:33:24.959+03	
a630f82d-b328-60e8-f6c6-5d4fdbf64118	2021-05-28 14:33:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:33:45.952+03	2021-05-28 14:33:45.961+03	
bf23f164-719c-0d37-92d1-c32665e9183b	2021-05-28 14:34:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:34:06.951+03	2021-05-28 14:34:06.962+03	
362ba19e-d442-b5ea-14c7-020f066912f4	2021-05-28 14:34:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:34:26.951+03	2021-05-28 14:34:26.959+03	
1a6c354f-7874-eb05-e8ed-009d2fb90440	2021-05-28 14:34:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:34:46.951+03	2021-05-28 14:34:46.959+03	
1577f247-c073-5ae7-300a-e06cab5ed8a3	2021-05-28 14:35:06.955	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:35:06.954+03	2021-05-28 14:35:06.97+03	
18ee237d-5861-6ce2-e346-fd2e8b4c767b	2021-05-28 14:35:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:35:27.953+03	2021-05-28 14:35:27.97+03	
80707770-5252-95d5-b87e-d5a58477a892	2021-05-28 14:35:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:35:49.952+03	2021-05-28 14:35:49.959+03	
0f21908d-95ef-022d-1895-5f2f4072b64a	2021-05-28 14:36:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:36:10.951+03	2021-05-28 14:36:10.958+03	
dfccf812-e806-22f4-e951-628e385a1c78	2021-05-28 14:36:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:36:30.951+03	2021-05-28 14:36:30.957+03	
5e5327c0-700f-e08a-9431-e0021b0c33b2	2021-05-28 14:36:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:36:50.951+03	2021-05-28 14:36:50.959+03	
b85542f8-eaec-75cc-96db-f867a9138c11	2021-05-28 14:37:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:37:11.951+03	2021-05-28 14:37:11.96+03	
65b7405e-42dd-cd27-3129-809234f10386	2021-05-28 14:37:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:37:31.951+03	2021-05-28 14:37:31.958+03	
c090e0e1-2198-8257-fd41-9086ad2a2fdc	2021-05-28 14:37:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:37:51.951+03	2021-05-28 14:37:51.958+03	
837b66ba-ac81-55ba-a562-e5f683a4b13f	2021-05-28 14:38:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:38:12.951+03	2021-05-28 14:38:12.959+03	
547ee9eb-5a0d-f1b6-2612-74d9450105b0	2021-05-28 14:38:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:38:33.951+03	2021-05-28 14:38:33.959+03	
966250a4-e5cc-d4c2-6c2b-00a72f7d6d7a	2021-05-28 14:38:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:38:54.951+03	2021-05-28 14:38:54.958+03	
dedf2b25-e93a-fafe-f590-84c4f5d9dd7e	2021-05-28 14:39:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:39:14.951+03	2021-05-28 14:39:14.96+03	
e1c4c829-c05a-74f2-74bf-6eb641a3e57c	2021-05-28 14:39:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:39:34.951+03	2021-05-28 14:39:34.958+03	
7b21c0d9-3ef2-1677-dff0-4a0212b82d11	2021-05-28 14:39:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:39:55.952+03	2021-05-28 14:39:55.96+03	
de96b06c-848c-c9c5-972c-c72623ade0c5	2021-05-28 14:40:06.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:40:06.951+03	2021-05-28 14:40:06.962+03	
090a4ee0-da58-5abf-5e4e-14255cd35243	2021-05-28 14:40:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:40:26.952+03	2021-05-28 14:40:26.959+03	
288079f8-541d-9904-1e30-24ac06b7fa8b	2021-05-28 14:40:47.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:40:47.951+03	2021-05-28 14:40:47.959+03	
d9eceeeb-c687-06fd-513d-9ca90f1bd670	2021-05-28 14:41:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:41:07.951+03	2021-05-28 14:41:07.958+03	
1c23a28e-ad71-5bc1-d237-e086a9a1901c	2021-05-28 14:41:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:41:27.953+03	2021-05-28 14:41:27.961+03	
82ca60bb-fe46-056e-90ca-9206b60a0d31	2021-05-28 14:41:48.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:41:48.952+03	2021-05-28 14:41:48.962+03	
f4091b3b-7fc7-d564-5d90-cc32af7bf1ed	2021-05-28 14:42:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:42:10.951+03	2021-05-28 14:42:10.958+03	
dbef6865-80b5-c1b6-bb7b-513227ba9a3b	2021-05-28 14:42:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:42:30.951+03	2021-05-28 14:42:30.96+03	
9335b2c5-d92a-33ee-cbf6-a84bb3e529de	2021-05-28 14:42:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:42:50.951+03	2021-05-28 14:42:50.958+03	
b5529f14-4689-0301-a283-6d1a1b0c5375	2021-05-28 14:22:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:22:21.951+03	2021-05-28 14:22:21.963+03	
1d2f94d1-1e88-f68d-f54a-851400407c78	2021-05-28 14:22:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:22:41.951+03	2021-05-28 14:22:41.958+03	
061aa89e-cbb8-89de-1077-11aa075dcea5	2021-05-28 14:23:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:23:01.951+03	2021-05-28 14:23:01.961+03	
d603b4da-b1ee-7e10-887f-f01ea099f08c	2021-05-28 14:23:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:23:21.951+03	2021-05-28 14:23:21.958+03	
8dc9513d-f25e-032d-e4fc-c00226cd43b8	2021-05-28 14:23:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:23:41.951+03	2021-05-28 14:23:41.958+03	
94415294-be36-be26-2167-78000af503d2	2021-05-28 14:24:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:24:01.951+03	2021-05-28 14:24:01.96+03	
c16c54e7-78d4-9df8-f3b3-4f0e7eb55825	2021-05-28 14:24:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:24:21.951+03	2021-05-28 14:24:21.959+03	
e72859d2-c26c-5553-3d24-7e3b7db48b7f	2021-05-28 14:24:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:24:41.951+03	2021-05-28 14:24:41.958+03	
d1cbdd7f-6427-2273-a469-4de246dbf022	2021-05-28 14:25:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:25:01.951+03	2021-05-28 14:25:01.962+03	
90b593cd-1337-2ece-2f7c-58e74d556a28	2021-05-28 14:25:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:25:21.951+03	2021-05-28 14:25:21.959+03	
26f57bc4-150e-0ee4-35fd-8a6538fbeec1	2021-05-28 14:25:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:25:41.951+03	2021-05-28 14:25:41.957+03	
97b74b63-81bb-36fa-46b1-3f7b6c815b3f	2021-05-28 14:26:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:26:01.951+03	2021-05-28 14:26:01.959+03	
1cd2667d-c724-fe6a-3f65-f2e30f1740af	2021-05-28 14:26:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:26:21.951+03	2021-05-28 14:26:21.958+03	
197eb015-9f11-8a99-be51-fbcb614a9b23	2021-05-28 14:26:41.96	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:26:41.951+03	2021-05-28 14:26:41.966+03	
a10dbf85-596c-4916-a71b-1211fa7fa94e	2021-05-28 14:27:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:27:01.951+03	2021-05-28 14:27:01.958+03	
c44a082c-317a-36d0-598b-72a030ed05d8	2021-05-28 14:27:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:27:21.951+03	2021-05-28 14:27:21.958+03	
93fcdec4-a431-83c6-5dfa-030b0fd9494a	2021-05-28 14:27:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:27:41.951+03	2021-05-28 14:27:41.959+03	
e77327ea-0a07-136b-6ff4-51c680fce3b0	2021-05-28 14:28:02.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:28:02.953+03	2021-05-28 14:28:02.96+03	
71587399-3337-3473-ad73-92966fcca498	2021-05-28 14:28:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:28:23.951+03	2021-05-28 14:28:23.959+03	
a155b6ee-3fd0-85d1-de0c-aeb0f8bafd40	2021-05-28 14:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:28:43.951+03	2021-05-28 14:28:43.96+03	
7deaacaf-5871-9937-61cd-c4116d467cd4	2021-05-28 14:29:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:29:03.951+03	2021-05-28 14:29:03.958+03	
e38eef57-7d06-8737-c063-d97571db108f	2021-05-28 14:29:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:29:23.951+03	2021-05-28 14:29:23.96+03	
3b310ce4-fa6e-9686-0ed3-112030d9521a	2021-05-28 14:29:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:29:43.951+03	2021-05-28 14:29:43.958+03	
0c46f4d5-e445-a192-1864-0f85a068a26b	2021-05-28 14:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 14:30:00.951+03	2021-05-28 14:30:00.957+03	ERROR
b245ab5f-e415-8f5d-33e5-31c35d0403e7	2021-05-28 14:30:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:30:13.951+03	2021-05-28 14:30:13.96+03	
5b4806c6-6a24-917c-22b9-9bfe4c43b02f	2021-05-28 14:30:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:30:33.951+03	2021-05-28 14:30:33.958+03	
a5caab91-d2cb-658e-51a3-ec1addc88766	2021-05-28 14:30:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:30:53.951+03	2021-05-28 14:30:53.959+03	
e719ffd9-1a5a-6d14-e7b5-c60d5b55f0f9	2021-05-28 14:31:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:31:13.951+03	2021-05-28 14:31:13.959+03	
07f58066-cb50-631d-bed7-49061d56ade1	2021-05-28 14:31:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:31:33.951+03	2021-05-28 14:31:33.96+03	
d3e4715a-5be7-b19f-16ac-3c2091ab0ac7	2021-05-28 14:31:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:31:53.951+03	2021-05-28 14:31:53.958+03	
d9d7758a-581d-292b-7315-7829f0627b8c	2021-05-28 14:32:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:32:13.951+03	2021-05-28 14:32:13.961+03	
75206cf5-acf8-ada6-ff62-66ad4730bfd1	2021-05-28 14:32:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:32:33.951+03	2021-05-28 14:32:33.959+03	
4d0cc389-301c-6f29-6a37-9f330cfc164d	2021-05-28 14:32:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:32:53.951+03	2021-05-28 14:32:53.961+03	
c2921829-7a98-37e1-429c-379cfc850e9c	2021-05-28 14:33:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:33:13.952+03	2021-05-28 14:33:13.961+03	
7c3976f5-93aa-eb12-4efa-038190be550d	2021-05-28 14:33:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:33:34.952+03	2021-05-28 14:33:34.962+03	
d670452d-a8f8-e1b4-fe52-097741dad1bf	2021-05-28 14:33:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:33:55.952+03	2021-05-28 14:33:55.96+03	
fb17b5aa-fc0b-fbea-96f7-ac0a665a2c40	2021-05-28 14:34:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:34:16.951+03	2021-05-28 14:34:16.958+03	
b551daff-484a-e70e-d765-2267d40602d9	2021-05-28 14:34:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:34:36.951+03	2021-05-28 14:34:36.958+03	
0cf0cdff-2329-4914-8b82-4c1f88cadd82	2021-05-28 14:34:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:34:56.951+03	2021-05-28 14:34:56.959+03	
d2c71877-84fb-c454-395e-8f9c4ebb160c	2021-05-28 14:35:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:35:17.952+03	2021-05-28 14:35:17.958+03	
cff38d50-45cc-b6ee-8570-50d9fbb71063	2021-05-28 14:35:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:35:38.952+03	2021-05-28 14:35:38.959+03	
1af639d3-7f48-853c-ce12-6e8c79d02644	2021-05-28 14:36:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:36:00.951+03	2021-05-28 14:36:00.963+03	
88ac21a4-486b-86c2-c058-845030e345df	2021-05-28 14:36:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:36:20.951+03	2021-05-28 14:36:20.96+03	
cb8fb1e3-b157-905b-a0b7-c6d71ac0e009	2021-05-28 14:36:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:36:40.951+03	2021-05-28 14:36:40.959+03	
5e762fc0-ff71-9a88-f710-b3fcc9d623e1	2021-05-28 14:37:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:37:00.952+03	2021-05-28 14:37:00.967+03	
e4a6ff20-bb6e-9e22-4329-31be73e8b91d	2021-05-28 14:37:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:37:21.951+03	2021-05-28 14:37:21.958+03	
6e390ca5-230e-e7b8-29ed-2ed81191d21d	2021-05-28 14:37:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:37:41.951+03	2021-05-28 14:37:41.959+03	
f1163ce0-c672-d3ad-c0cc-0b864b1ecde8	2021-05-28 14:38:01.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:38:01.952+03	2021-05-28 14:38:01.961+03	
eb6720f2-e5df-0eb8-3379-0d8a00cab37d	2021-05-28 14:38:22.963	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:38:22.962+03	2021-05-28 14:38:22.97+03	
9247991b-d352-1999-31d6-c52687f21f52	2021-05-28 14:38:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:38:43.952+03	2021-05-28 14:38:43.961+03	
2ec7c45d-b86b-0c16-db76-6d1ce6a51642	2021-05-28 14:39:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:39:04.951+03	2021-05-28 14:39:04.96+03	
16446069-61f4-f5cf-7a5e-3ed7da15d896	2021-05-28 14:39:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:39:24.951+03	2021-05-28 14:39:24.957+03	
a5adcaf7-1c0c-6ce1-4825-ef87b580609c	2021-05-28 14:39:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:39:44.952+03	2021-05-28 14:39:44.959+03	
a54b4035-1f6f-38fd-f3f7-2492ea859c02	2021-05-28 14:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 14:40:00.951+03	2021-05-28 14:40:00.957+03	ERROR
783d45c8-0e5c-5457-cdf1-90b56ab78d6e	2021-05-28 14:40:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:40:16.951+03	2021-05-28 14:40:16.96+03	
32c74b9b-1513-2df3-1ebc-4cfd996872a4	2021-05-28 14:40:36.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:40:36.952+03	2021-05-28 14:40:36.961+03	
94128ed2-678f-af45-0bb3-e36b8a7c37e6	2021-05-28 14:40:57.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:40:57.951+03	2021-05-28 14:40:57.959+03	
d0c1d0b2-ccfd-a411-1700-9746fe139029	2021-05-28 14:41:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:41:17.952+03	2021-05-28 14:41:17.959+03	
76ba7fac-45d0-ccc5-652a-7e9faeab2b3f	2021-05-28 14:41:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:41:38.951+03	2021-05-28 14:41:38.958+03	
538e56c0-8c73-ad89-0072-4b6442473db6	2021-05-28 14:41:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:41:59.952+03	2021-05-28 14:41:59.96+03	
21e595fb-9cc0-ef77-9c47-a208f0cc31dc	2021-05-28 14:42:20.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:42:20.951+03	2021-05-28 14:42:20.958+03	
a3697c09-4378-3125-92aa-a52ed7a8a42d	2021-05-28 14:42:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:42:40.951+03	2021-05-28 14:42:40.959+03	
7c2431f5-807a-4ba5-0676-32c2becb753c	2021-05-28 14:43:00.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:43:00.951+03	2021-05-28 14:43:00.961+03	
c843eb5b-181f-f9c5-5228-253950b0978e	2021-05-28 14:43:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:43:10.951+03	2021-05-28 14:43:10.96+03	
2f8267f5-64e4-49f0-6f60-d8654ffe7ccf	2021-05-28 14:43:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:43:30.951+03	2021-05-28 14:43:30.97+03	
9eb5f094-16cd-40fb-631c-b076c54a347d	2021-05-28 14:43:50.954	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:43:50.953+03	2021-05-28 14:43:50.962+03	
e2daa7aa-2efb-5b6c-6f92-23ead063817a	2021-05-28 14:44:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:44:11.952+03	2021-05-28 14:44:11.96+03	
4774c376-e3d2-5f71-ee42-e7c10fbe4e21	2021-05-28 14:44:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:44:32.951+03	2021-05-28 14:44:32.961+03	
da39b1ff-aa4a-ccc2-a539-84a56a3d6c2e	2021-05-28 14:44:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:44:52.951+03	2021-05-28 14:44:52.96+03	
4cd506d6-477d-b1f3-e6e6-c0fe1ad838ac	2021-05-28 14:45:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:45:23.951+03	2021-05-28 14:45:23.958+03	
7bdf8ebf-6e6f-d77d-95ca-65fd9bf01e8d	2021-05-28 14:45:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:45:43.952+03	2021-05-28 14:45:43.964+03	
65a9c84e-55cc-d381-dfd0-11b326012386	2021-05-28 14:46:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:46:04.951+03	2021-05-28 14:46:04.961+03	
73e379a7-67a4-1e4e-4713-68a7537365a0	2021-05-28 14:46:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:46:24.952+03	2021-05-28 14:46:24.97+03	
c3b621d9-2fb7-a7ce-6f3e-a85bf3b2fe2a	2021-05-28 14:46:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:46:45.951+03	2021-05-28 14:46:45.961+03	
759c5840-e5c2-3cf3-982d-cf02f448ac8c	2021-05-28 14:47:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:47:06.951+03	2021-05-28 14:47:06.96+03	
346c40ea-1238-2037-6de6-b073fb82b472	2021-05-28 14:47:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:47:26.951+03	2021-05-28 14:47:26.959+03	
6483e988-3098-dfe9-1f9e-4346cac09e60	2021-05-28 14:47:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:47:46.951+03	2021-05-28 14:47:46.959+03	
ef4df8e7-bbe9-69ce-f79c-2c1bc9dbbe9a	2021-05-28 14:48:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:48:06.951+03	2021-05-28 14:48:06.96+03	
0025d6ac-068e-543a-cc75-a55598c836ea	2021-05-28 14:48:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:48:26.951+03	2021-05-28 14:48:26.96+03	
29a39057-dc6b-fe59-da89-a17033f112b1	2021-05-28 14:48:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:48:46.951+03	2021-05-28 14:48:46.959+03	
fcadac03-58ab-0d24-4203-cdf0a7e6ed4d	2021-05-28 14:49:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:49:06.951+03	2021-05-28 14:49:06.958+03	
c091f1dc-7685-972e-d8db-9f3e245b651d	2021-05-28 14:49:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:49:26.951+03	2021-05-28 14:49:26.959+03	
5853ac88-bc0e-f1bd-879d-e084e25586d5	2021-05-28 14:49:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:49:46.951+03	2021-05-28 14:49:46.958+03	
931ef6a3-9474-3948-6727-382a7baa8260	2021-05-28 14:50:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 14:50:00.951+03	2021-05-28 14:50:00.956+03	ERROR
5c567fc1-72f5-9a5e-d9a4-83a33d8b1da8	2021-05-28 14:50:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:50:16.951+03	2021-05-28 14:50:16.958+03	
6bfcf67f-f9d0-47b8-9288-b19ef5e6699b	2021-05-28 14:50:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:50:36.951+03	2021-05-28 14:50:36.959+03	
31ff1829-f775-a6a4-4001-1a5588451615	2021-05-28 14:50:57.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:50:57.951+03	2021-05-28 14:50:57.967+03	
0d4aba84-9821-2a66-ca68-4c37f2c5b1b6	2021-05-28 14:51:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:51:17.951+03	2021-05-28 14:51:17.958+03	
099a0f4d-f20b-ee1a-8140-b37a68f5d8d0	2021-05-28 14:51:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:51:38.951+03	2021-05-28 14:51:38.957+03	
fb4e15a5-b19c-c913-bca3-b99ad9dc48b6	2021-05-28 14:51:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:51:58.951+03	2021-05-28 14:51:58.959+03	
67e4d312-848c-277a-2291-d092bf9e4b36	2021-05-28 14:52:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:52:18.951+03	2021-05-28 14:52:18.959+03	
c6491c7e-ac6b-ea5b-9dd1-aab83db6306c	2021-05-28 14:52:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:52:38.951+03	2021-05-28 14:52:38.959+03	
ba481729-6fec-a45d-e951-a6a6b3b46da7	2021-05-28 14:52:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:52:59.951+03	2021-05-28 14:52:59.959+03	
18c1a206-919d-d4ae-72a8-9956ab048d29	2021-05-28 14:53:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:53:19.951+03	2021-05-28 14:53:19.959+03	
61b86be3-ca43-7f07-ad31-2287fad0e4c8	2021-05-28 14:53:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:53:39.951+03	2021-05-28 14:53:39.959+03	
e93a98d5-dbeb-0024-874f-0be7da1312cb	2021-05-28 14:53:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:53:59.951+03	2021-05-28 14:53:59.963+03	
d7c404d2-cd79-6308-e960-69bed241a739	2021-05-28 14:54:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:54:19.952+03	2021-05-28 14:54:19.961+03	
eda432dc-76b2-0b0b-5aaa-52dee3ccaa78	2021-05-28 14:54:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:54:40.952+03	2021-05-28 14:54:40.96+03	
ed38ba2b-5b5f-a0c5-a581-a49bc36da543	2021-05-28 14:55:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:55:01.951+03	2021-05-28 14:55:01.963+03	
83b326d4-c82c-6c0f-e24b-3cb9e64d47f8	2021-05-28 14:55:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:55:21.951+03	2021-05-28 14:55:21.958+03	
cac4bca2-123a-ee1d-1428-1c2f97c53449	2021-05-28 14:55:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:55:41.951+03	2021-05-28 14:55:41.96+03	
beb252f3-0ac8-da5c-bbca-991d0110ab88	2021-05-28 14:56:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:56:02.951+03	2021-05-28 14:56:03.194+03	
4687f76d-6447-fe24-1852-f675d50f2a21	2021-05-28 14:56:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:56:22.952+03	2021-05-28 14:56:22.962+03	
a793d746-7b69-8072-f08f-464325b39aca	2021-05-28 14:56:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:56:43.951+03	2021-05-28 14:56:43.959+03	
ebe1138d-2f94-f4d6-4a04-808c70800e22	2021-05-28 14:57:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:57:03.951+03	2021-05-28 14:57:03.958+03	
c3210d00-7de3-7896-4caa-7e5dad99c4c9	2021-05-28 14:57:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:57:23.951+03	2021-05-28 14:57:23.96+03	
f3855940-36be-2cc6-9256-8ef9b7464266	2021-05-28 14:57:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:57:43.951+03	2021-05-28 14:57:43.961+03	
19ab96b9-7a3b-a5a7-c787-214796061557	2021-05-28 14:58:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:58:03.951+03	2021-05-28 14:58:03.958+03	
7123ab06-d1ef-acac-1b33-bd89cf2141da	2021-05-28 14:58:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:58:23.951+03	2021-05-28 14:58:23.959+03	
48e847bf-8598-6ee6-b6aa-b2cb0b200269	2021-05-28 14:58:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:58:43.951+03	2021-05-28 14:58:43.958+03	
fbf526e1-6b20-0cc8-b100-c2aad0d79444	2021-05-28 14:59:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:59:03.951+03	2021-05-28 14:59:03.959+03	
0d9d6285-8163-e8eb-7c14-c2dd1fcf2a80	2021-05-28 14:59:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:59:24.951+03	2021-05-28 14:59:24.957+03	
33043039-0cb4-c39c-2528-79b257b58756	2021-05-28 14:59:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:59:44.951+03	2021-05-28 14:59:44.961+03	
88a8de32-11c2-9b5f-c16a-d89fc7661427	2021-05-28 15:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 15:00:00.951+03	2021-05-28 15:00:00.956+03	ERROR
ba1fbbaf-8e84-6b3a-c0ab-997cccd47abd	2021-05-28 15:00:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:00:14.951+03	2021-05-28 15:00:14.961+03	
8f7d8253-98c5-098d-08ca-ca707abbacd0	2021-05-28 15:00:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:00:34.951+03	2021-05-28 15:00:34.958+03	
f222654f-5944-4c63-b197-e53644e78570	2021-05-28 15:00:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:00:54.951+03	2021-05-28 15:00:54.958+03	
04486db4-1459-e725-a427-6ad35bf2a665	2021-05-28 15:01:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:01:14.951+03	2021-05-28 15:01:14.958+03	
fc0d6986-408d-e5a9-864b-2ff04962b675	2021-05-28 15:01:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:01:34.951+03	2021-05-28 15:01:34.962+03	
e586d3b0-9b92-aac2-4eeb-23c08463e881	2021-05-28 15:01:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:01:55.951+03	2021-05-28 15:01:55.959+03	
3d0eb7c6-b536-a1fa-04e6-7cabd3fd903d	2021-05-28 15:02:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:02:15.951+03	2021-05-28 15:02:15.96+03	
9b0678dd-fcdb-7397-5e43-2b972c30f8bd	2021-05-28 15:02:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:02:35.951+03	2021-05-28 15:02:35.967+03	
a0cc3890-4fbe-c402-4c76-e8ebcb5d0b5e	2021-05-28 15:02:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:02:55.951+03	2021-05-28 15:02:55.958+03	
b004546b-a9e2-cc2e-6978-f9214c1ee0b4	2021-05-28 15:03:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:03:15.951+03	2021-05-28 15:03:15.958+03	
2caf9703-6ae5-4153-cbe4-f9cf87948f40	2021-05-28 15:03:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:03:35.951+03	2021-05-28 15:03:35.958+03	
d333b85b-8135-cba2-9412-c3d7046bb6cd	2021-05-28 15:03:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:03:55.951+03	2021-05-28 15:03:55.958+03	
ceb2cf28-be02-2ca6-cd00-264fad84f19d	2021-05-28 14:43:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:43:20.951+03	2021-05-28 14:43:20.959+03	
0470a751-b909-133b-3f88-4e5ba96f7f6c	2021-05-28 14:43:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:43:40.951+03	2021-05-28 14:43:40.96+03	
485cab4a-ca43-51a3-2d1d-fbbab2b890f4	2021-05-28 14:44:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:44:01.952+03	2021-05-28 14:44:01.96+03	
52de9ddf-09a1-8b00-e3cc-ac3747817b74	2021-05-28 14:44:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:44:22.951+03	2021-05-28 14:44:22.958+03	
123c473e-b1b3-9a7a-921d-76f79067aa17	2021-05-28 14:44:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:44:42.951+03	2021-05-28 14:44:42.96+03	
8c6a5341-041d-dff7-bb43-e33e342a2ecb	2021-05-28 14:45:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:45:02.951+03	2021-05-28 14:45:02.96+03	
86e5bb2f-e9b5-ca78-e07e-a72784b7ba76	2021-05-28 14:45:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:45:12.952+03	2021-05-28 14:45:12.973+03	
79a891da-1909-a607-5292-9a99afa2ebda	2021-05-28 14:45:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:45:33.951+03	2021-05-28 14:45:33.957+03	
81a8797e-7d24-cae4-a6c6-dc15154853d6	2021-05-28 14:45:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:45:54.951+03	2021-05-28 14:45:54.961+03	
4e52647a-681d-6829-1faf-1436e9a47a6c	2021-05-28 14:46:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:46:14.951+03	2021-05-28 14:46:14.96+03	
52cc38c2-2973-12f8-cc69-de0a8d7e1dc7	2021-05-28 14:46:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:46:35.951+03	2021-05-28 14:46:35.961+03	
b428f0ae-ed41-b157-1cd7-bb35cbeec49f	2021-05-28 14:46:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:46:55.952+03	2021-05-28 14:46:55.96+03	
2dc5eff9-4767-65c8-1f72-63e2c21d04a3	2021-05-28 14:47:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:47:16.951+03	2021-05-28 14:47:16.96+03	
5998700a-1bf5-4eba-b935-9926caff5bea	2021-05-28 14:47:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:47:36.951+03	2021-05-28 14:47:36.96+03	
452893b4-850b-bd62-0d8e-6ae19a71794b	2021-05-28 14:47:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:47:56.951+03	2021-05-28 14:47:56.958+03	
bf38141a-15ba-303e-9342-9482b98d7b19	2021-05-28 14:48:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:48:16.951+03	2021-05-28 14:48:16.959+03	
09dc254b-2c19-500d-3fe1-ab6439b5dd01	2021-05-28 14:48:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:48:36.951+03	2021-05-28 14:48:36.965+03	
0fabb1cd-4c15-0726-d4cc-77386582fa7c	2021-05-28 14:48:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:48:56.951+03	2021-05-28 14:48:56.959+03	
ef3a6789-8d02-edff-42b3-1aa209d90f57	2021-05-28 14:49:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:49:16.951+03	2021-05-28 14:49:16.958+03	
8d127417-ca75-df0b-3284-817f05be2964	2021-05-28 14:49:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:49:36.951+03	2021-05-28 14:49:36.959+03	
241d5872-66e5-c3dc-5c98-6db09e98018e	2021-05-28 14:49:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:49:56.951+03	2021-05-28 14:49:56.957+03	
702116b2-3478-ae85-8d42-92e346431f58	2021-05-28 14:50:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:50:06.951+03	2021-05-28 14:50:06.961+03	
03d23684-bf6a-8dcd-2617-25b30753df84	2021-05-28 14:50:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:50:26.951+03	2021-05-28 14:50:26.958+03	
1a802271-3f35-2f79-2fcf-0496ddbf5d82	2021-05-28 14:50:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:50:46.952+03	2021-05-28 14:50:46.959+03	
c0b0b78f-84d9-2890-22b2-20c42dced13b	2021-05-28 14:51:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:51:07.951+03	2021-05-28 14:51:07.959+03	
c0bc326b-aa20-161b-b3a8-5adf04c80e6f	2021-05-28 14:51:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:51:27.952+03	2021-05-28 14:51:27.959+03	
966f504a-d86b-2c6b-5442-d218a8ce751b	2021-05-28 14:51:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:51:48.951+03	2021-05-28 14:51:48.96+03	
81f8c922-0a1d-e54c-5ca8-0b38f2fd1ae3	2021-05-28 14:52:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:52:08.951+03	2021-05-28 14:52:08.958+03	
b32f4ff7-d99b-c86c-77b0-c46f948bf8aa	2021-05-28 14:52:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:52:28.951+03	2021-05-28 14:52:28.96+03	
da665f96-a2c6-3ecc-e378-0321223e1165	2021-05-28 14:52:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:52:48.952+03	2021-05-28 14:52:48.958+03	
33efb15a-c565-1fa8-ec09-cffb57141ef8	2021-05-28 14:53:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:53:09.951+03	2021-05-28 14:53:09.958+03	
a708f45d-1ade-60cc-c609-d10f9ecd3a35	2021-05-28 14:53:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:53:29.951+03	2021-05-28 14:53:29.958+03	
1d26efca-16a4-e27b-e322-b7798c5dc166	2021-05-28 14:53:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:53:49.951+03	2021-05-28 14:53:49.958+03	
1c99fca4-314c-e620-095c-42230bff8c8d	2021-05-28 14:54:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:54:09.951+03	2021-05-28 14:54:09.958+03	
f534c6cc-7947-6a44-be80-17166f98f28c	2021-05-28 14:54:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:54:30.951+03	2021-05-28 14:54:30.957+03	
e0df2cb3-2cdf-3839-7ce4-706b1ba8dfcc	2021-05-28 14:54:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:54:51.951+03	2021-05-28 14:54:51.959+03	
09d51ff6-6fe6-1cf1-1a62-592c8c132956	2021-05-28 14:55:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:55:11.951+03	2021-05-28 14:55:11.958+03	
eb77197c-b3ea-c625-4d3e-20e018f29c61	2021-05-28 14:55:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:55:31.951+03	2021-05-28 14:55:31.962+03	
f00c4cbf-e891-1616-a794-102c9a488cae	2021-05-28 14:55:51.959	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:55:51.959+03	2021-05-28 14:55:51.965+03	
e31fa905-3351-55cc-eaf9-8433f218acb5	2021-05-28 14:56:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:56:12.951+03	2021-05-28 14:56:12.958+03	
fce391ed-33a2-5c31-2612-963ba5f8a71a	2021-05-28 14:56:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:56:33.951+03	2021-05-28 14:56:33.959+03	
6fddc189-3dd7-d369-0e88-20db0bfcd0a0	2021-05-28 14:56:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:56:53.951+03	2021-05-28 14:56:53.959+03	
bfdcd383-ae1f-6244-024a-8e4fc0f15476	2021-05-28 14:57:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:57:13.951+03	2021-05-28 14:57:13.96+03	
6e12341f-0b49-5c98-2149-bfb4fc9b40c2	2021-05-28 14:57:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:57:33.951+03	2021-05-28 14:57:33.959+03	
e06954e2-cdaf-5d00-b448-743a17398188	2021-05-28 14:57:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:57:53.951+03	2021-05-28 14:57:53.959+03	
11fa94aa-e859-fd43-35b7-9bbada177144	2021-05-28 14:58:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:58:13.951+03	2021-05-28 14:58:13.96+03	
3fde29f2-e599-aa49-c308-86d6ec3b41f0	2021-05-28 14:58:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:58:33.951+03	2021-05-28 14:58:33.958+03	
aa6e4acb-b331-4cd4-af32-bfdd498337aa	2021-05-28 14:58:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:58:53.951+03	2021-05-28 14:58:53.958+03	
f4a34ea4-5716-f7a4-d6d3-d03c2c84b0bf	2021-05-28 14:59:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:59:13.952+03	2021-05-28 14:59:13.962+03	
b229accd-1571-1b20-0cf9-d2b9f23f03df	2021-05-28 14:59:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:59:34.951+03	2021-05-28 14:59:34.958+03	
e2834e0c-046c-e502-2d40-051fdf819db5	2021-05-28 14:59:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 14:59:54.951+03	2021-05-28 14:59:54.962+03	
2a13a649-076b-f269-acd6-6bb24a3981c2	2021-05-28 15:00:04.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:00:04.951+03	2021-05-28 15:00:04.959+03	
ab9736cd-1170-6b13-e614-4e39e86f09f7	2021-05-28 15:00:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:00:24.951+03	2021-05-28 15:00:24.961+03	
245eb4b2-ab05-e01c-911d-b7d6a64529b0	2021-05-28 15:00:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:00:44.951+03	2021-05-28 15:00:44.957+03	
afc7c63d-e7c6-e9bb-6485-2c86db0362bd	2021-05-28 15:01:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:01:04.951+03	2021-05-28 15:01:04.958+03	
c7c437e4-e8ba-b409-319c-f992e24e4943	2021-05-28 15:01:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:01:24.951+03	2021-05-28 15:01:24.962+03	
d4bd1ed0-7a5d-df08-32c6-6971bd809472	2021-05-28 15:01:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:01:44.952+03	2021-05-28 15:01:44.96+03	
07b674db-024b-5fbc-8ba7-99232523499a	2021-05-28 15:02:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:02:05.951+03	2021-05-28 15:02:05.96+03	
c9021cd7-b64d-05e2-1374-a6deacb8f98f	2021-05-28 15:02:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:02:25.951+03	2021-05-28 15:02:25.96+03	
7c2bd7b6-1023-9588-a7d6-d9eaef4c36d3	2021-05-28 15:02:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:02:45.951+03	2021-05-28 15:02:45.958+03	
9cce8544-788f-f279-c509-acac5fbec5ce	2021-05-28 15:03:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:03:05.951+03	2021-05-28 15:03:05.958+03	
fa29764f-95fb-1e35-3305-0cf7b41ebb30	2021-05-28 15:03:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:03:25.951+03	2021-05-28 15:03:25.958+03	
de3dfa03-c17a-d97c-f3bf-ff639d624f81	2021-05-28 15:03:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:03:45.951+03	2021-05-28 15:03:45.958+03	
859f4a15-4b3b-1a9d-2661-90d7881f1791	2021-05-28 15:04:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:04:05.951+03	2021-05-28 15:04:05.958+03	
7bf3757a-9bc1-0fc4-47b7-ca2e1ca64fca	2021-05-28 15:04:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:04:25.951+03	2021-05-28 15:04:25.958+03	
edd77630-7889-cd4c-3173-874b318377ed	2021-05-28 15:04:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:04:45.951+03	2021-05-28 15:04:45.959+03	
5bf43dc7-e9f1-6951-7385-f9724acd17b1	2021-05-28 15:05:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:05:05.951+03	2021-05-28 15:05:05.959+03	
12070241-6e4e-0ab7-0d3d-afd430212334	2021-05-28 15:05:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:05:25.951+03	2021-05-28 15:05:25.958+03	
8f1a0e92-b9ff-91fc-9578-d2662eb2532a	2021-05-28 15:05:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:05:45.951+03	2021-05-28 15:05:45.959+03	
383bd148-a644-4a80-7dfa-45ee562d1c43	2021-05-28 15:06:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:06:05.951+03	2021-05-28 15:06:05.963+03	
4cda8493-9bd1-b823-10b1-2abd77485bf1	2021-05-28 15:06:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:06:25.951+03	2021-05-28 15:06:25.958+03	
db7a8e6b-baf0-a80d-e1b9-a77ae2649df6	2021-05-28 15:06:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:06:46.951+03	2021-05-28 15:06:46.958+03	
5db07eb7-c981-3acc-9d50-0876b8add07c	2021-05-28 15:07:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:07:06.951+03	2021-05-28 15:07:06.958+03	
fe53c1cd-2439-51f9-79b4-58af9b160ac2	2021-05-28 15:07:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:07:26.951+03	2021-05-28 15:07:26.96+03	
4f14cefd-d481-766c-163c-a768703b64d3	2021-05-28 15:07:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:07:46.951+03	2021-05-28 15:07:46.959+03	
022fc582-2612-cab0-b8c1-b838afd1fc14	2021-05-28 15:08:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:08:06.951+03	2021-05-28 15:08:06.958+03	
8354251e-9e28-a675-2b12-0e48232b8774	2021-05-28 15:08:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:08:26.951+03	2021-05-28 15:08:26.958+03	
64bf2702-4583-46b1-cc98-27e30e9cac50	2021-05-28 15:08:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:08:46.951+03	2021-05-28 15:08:46.958+03	
19c28852-e7d0-bbb2-f50d-bd2b4933da2f	2021-05-28 15:09:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:09:07.951+03	2021-05-28 15:09:07.958+03	
f39644f3-aa78-6336-6dd6-22d4647f5a72	2021-05-28 15:09:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:09:28.951+03	2021-05-28 15:09:28.959+03	
9bc45005-7b13-8e8e-b418-96e20d224ca3	2021-05-28 15:09:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:09:48.951+03	2021-05-28 15:09:48.957+03	
7e3f3398-990d-d352-67e5-ca01d2f314f9	2021-05-28 15:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 15:10:00.951+03	2021-05-28 15:10:00.956+03	ERROR
0de78524-a6d8-3236-1f81-18a02a43396b	2021-05-28 15:10:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:10:18.951+03	2021-05-28 15:10:18.961+03	
83c0b0fc-534c-6764-b2b3-1b44d8995383	2021-05-28 15:10:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:10:38.951+03	2021-05-28 15:10:38.958+03	
dc19dcfa-122a-eaed-1706-0cb72ecda57a	2021-05-28 15:10:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:10:48.952+03	2021-05-28 15:10:48.961+03	
d177659f-0278-db55-b6a2-658f7b6c496e	2021-05-28 15:11:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:11:09.951+03	2021-05-28 15:11:09.958+03	
008b525a-ae99-bb85-6133-b11dc8458fd1	2021-05-28 15:11:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:11:29.951+03	2021-05-28 15:11:29.958+03	
a8701989-c0e6-b4c4-3b5c-f1d5c07b66f1	2021-05-28 15:11:49.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:11:49.951+03	2021-05-28 15:11:49.958+03	
3b16566b-d274-752c-bf72-daff83a4ba02	2021-05-28 15:12:09.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:12:09.951+03	2021-05-28 15:12:09.962+03	
894d8c1c-1e15-7dc2-7975-151e0bff1a5b	2021-05-28 15:12:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:12:29.951+03	2021-05-28 15:12:29.964+03	
5f1c20c6-e039-db03-7639-21a31c3ca396	2021-05-28 15:12:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:12:49.951+03	2021-05-28 15:12:49.959+03	
8a11c40c-40aa-fd3a-43aa-35b62215d289	2021-05-28 15:13:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:13:09.951+03	2021-05-28 15:13:09.96+03	
0096516c-82cc-7a6d-4dc0-44ad32e984e3	2021-05-28 15:13:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:13:29.951+03	2021-05-28 15:13:29.968+03	
c2450e28-dadb-68fe-73b4-058485ec5125	2021-05-28 15:13:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:13:49.951+03	2021-05-28 15:13:49.96+03	
b07fd006-50df-e667-eac2-abcd0e909e4a	2021-05-28 15:14:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:14:09.952+03	2021-05-28 15:14:09.96+03	
cc32fd89-672f-3743-dd17-ed96ae841b52	2021-05-28 15:14:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:14:30.951+03	2021-05-28 15:14:30.958+03	
24ff354f-1ff1-eee2-93c7-bf8de994bcf5	2021-05-28 15:14:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:14:50.952+03	2021-05-28 15:14:50.958+03	
59d9f6a5-8cd0-3a3b-e533-a7434fb51829	2021-05-28 15:15:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:15:11.951+03	2021-05-28 15:15:11.969+03	
4ad22ecd-b00d-cf9b-1453-274bda3d203a	2021-05-28 15:15:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:15:31.951+03	2021-05-28 15:15:31.958+03	
3284c960-2c3b-1c89-721c-20908ef54f7a	2021-05-28 15:15:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:15:51.951+03	2021-05-28 15:15:51.958+03	
ebd9e6b5-e521-960e-ce37-3705b6587872	2021-05-28 15:16:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:16:11.951+03	2021-05-28 15:16:11.958+03	
f185c658-dcb2-ed1b-727f-940e5b09de58	2021-05-28 15:16:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:16:31.951+03	2021-05-28 15:16:31.958+03	
00090124-c818-633c-8e24-e12fbdcc3be9	2021-05-28 15:16:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:16:51.951+03	2021-05-28 15:16:51.961+03	
79a32ef1-60d9-3a5b-df2e-6ea6d20533d9	2021-05-28 15:17:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:17:11.951+03	2021-05-28 15:17:11.957+03	
cf0b1903-7801-465e-afb4-43a4e012248d	2021-05-28 15:17:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:17:31.951+03	2021-05-28 15:17:31.957+03	
d8e22cb1-295c-d3b2-35b1-5973f1ffe8b2	2021-05-28 15:17:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:17:51.951+03	2021-05-28 15:17:51.963+03	
8cc74e40-e7fb-56c8-3e92-c9259de2563f	2021-05-28 15:18:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:18:11.951+03	2021-05-28 15:18:11.959+03	
29efbcf1-c0d6-a099-083a-2de66a87b363	2021-05-28 15:18:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:18:31.951+03	2021-05-28 15:18:31.957+03	
a7136716-28a0-9d88-a593-4b784bb6dbfc	2021-05-28 15:18:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:18:51.951+03	2021-05-28 15:18:51.959+03	
d67c2b35-16bb-dbf2-311e-0dab3b9c50d9	2021-05-28 15:19:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:19:11.951+03	2021-05-28 15:19:11.959+03	
5ebc7191-3818-c184-b23b-eb67b3bb404b	2021-05-28 15:19:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:19:31.951+03	2021-05-28 15:19:31.961+03	
48537cd2-70a7-766a-2d89-c0de6843fb08	2021-05-28 15:19:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:19:51.951+03	2021-05-28 15:19:51.962+03	
db818f02-1f97-9128-61a1-0938b34358b6	2021-05-28 15:20:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:20:01.951+03	2021-05-28 15:20:01.961+03	
6d4f4580-93c9-34cb-6bce-309676002982	2021-05-28 15:20:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:20:21.951+03	2021-05-28 15:20:21.959+03	
09c5027f-1a45-f1d4-7494-cfb05319bc92	2021-05-28 15:20:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:20:41.951+03	2021-05-28 15:20:41.959+03	
a2a99d7f-ba67-6c44-df7c-11b12ebd4862	2021-05-28 15:21:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:21:01.951+03	2021-05-28 15:21:01.959+03	
2d8c9bea-35e1-8c33-29a2-e0fa60d29901	2021-05-28 15:21:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:21:21.951+03	2021-05-28 15:21:21.958+03	
7247b569-30eb-3850-ab0c-64fb1f854dec	2021-05-28 15:21:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:21:41.951+03	2021-05-28 15:21:41.958+03	
7278ca42-c408-ee06-f7bc-c3da6cf2bd03	2021-05-28 15:22:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:22:01.951+03	2021-05-28 15:22:01.967+03	
0e549cce-1a80-0f53-775d-d7624abbf4a8	2021-05-28 15:22:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:22:21.951+03	2021-05-28 15:22:21.959+03	
d25b1d79-7ea2-4f60-fee6-6747680eacb7	2021-05-28 15:22:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:22:41.951+03	2021-05-28 15:22:41.959+03	
63b8dd3c-410f-96e4-0ca5-68a5030a1278	2021-05-28 15:23:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:23:01.951+03	2021-05-28 15:23:01.957+03	
6535b357-58c5-779d-3608-a983b43a7199	2021-05-28 15:23:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:23:21.951+03	2021-05-28 15:23:21.959+03	
b534e5ae-3832-e614-45b1-177bee2b6120	2021-05-28 15:23:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:23:41.951+03	2021-05-28 15:23:41.958+03	
e4c6e75f-aae3-c723-9072-c4781899d67a	2021-05-28 15:24:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:24:01.951+03	2021-05-28 15:24:01.961+03	
56d0bb8d-6add-ae36-3a9c-e0f3ede18429	2021-05-28 15:24:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:24:21.951+03	2021-05-28 15:24:21.959+03	
2e1ed8c8-aecb-69c7-1017-3a9ae52bf929	2021-05-28 15:04:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:04:15.951+03	2021-05-28 15:04:15.957+03	
8e4f448c-4336-47de-95a7-cbcbaf23adf9	2021-05-28 15:04:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:04:35.951+03	2021-05-28 15:04:35.958+03	
d88090e2-782c-3330-10da-36afdba25817	2021-05-28 15:04:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:04:55.951+03	2021-05-28 15:04:55.958+03	
da5199b5-0c86-13a9-c99c-528be193df59	2021-05-28 15:05:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:05:15.951+03	2021-05-28 15:05:15.959+03	
b3b7d9e3-7ade-5ef0-477f-53e4f061ffca	2021-05-28 15:05:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:05:35.951+03	2021-05-28 15:05:35.959+03	
0d1805a8-94b3-48d1-4112-60521ee15c3f	2021-05-28 15:05:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:05:55.951+03	2021-05-28 15:05:55.958+03	
5997124f-3f57-2e78-736f-766eb817d02c	2021-05-28 15:06:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:06:15.951+03	2021-05-28 15:06:15.957+03	
eb5cc0b1-fa29-f709-ed78-f513a632832f	2021-05-28 15:06:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:06:35.952+03	2021-05-28 15:06:35.959+03	
e512197b-315b-be99-09e1-0f02ecd174c0	2021-05-28 15:06:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:06:56.951+03	2021-05-28 15:06:56.959+03	
227d6162-9b31-f101-398b-fb5ef0f23f04	2021-05-28 15:07:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:07:16.951+03	2021-05-28 15:07:16.958+03	
6d38fc31-2410-d6b9-371b-93223b0dc286	2021-05-28 15:07:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:07:36.951+03	2021-05-28 15:07:36.959+03	
7a4ca726-8eb5-61b1-13a2-dcea2ae170b0	2021-05-28 15:07:56.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:07:56.951+03	2021-05-28 15:07:56.957+03	
c70111c6-f4d3-1d13-e684-15665f6e9e3e	2021-05-28 15:08:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:08:16.951+03	2021-05-28 15:08:16.959+03	
057946c2-7e41-5d99-412e-ecaaec1f7d23	2021-05-28 15:08:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:08:36.951+03	2021-05-28 15:08:36.958+03	
4bfe965d-f4bc-fc83-328d-e2b1bb6101b9	2021-05-28 15:08:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:08:56.952+03	2021-05-28 15:08:56.961+03	
5554d527-7eef-d6cd-364f-ace76b4e62e9	2021-05-28 15:09:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:09:17.952+03	2021-05-28 15:09:17.959+03	
2cf7d2e0-c39f-4a3e-5c33-9cbf7e931f3b	2021-05-28 15:09:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:09:38.951+03	2021-05-28 15:09:38.958+03	
36674f0e-579f-7690-2cba-cd034cbf4c6a	2021-05-28 15:09:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:09:58.951+03	2021-05-28 15:09:58.957+03	
c90a44bf-fc35-df21-2b61-c4bd3f6adc3a	2021-05-28 15:10:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:10:08.951+03	2021-05-28 15:10:08.957+03	
2e0a608d-dfe7-f78a-7fd8-5f704b8b0701	2021-05-28 15:10:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:10:28.951+03	2021-05-28 15:10:28.959+03	
6fe412ac-635a-809d-f1fb-975e407ee328	2021-05-28 15:10:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:10:59.951+03	2021-05-28 15:10:59.959+03	
d24c5f5b-7a8a-ca47-2905-6e6a82feb36c	2021-05-28 15:11:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:11:19.951+03	2021-05-28 15:11:19.96+03	
019c45d2-4a30-1913-a101-3009c4179d37	2021-05-28 15:11:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:11:39.951+03	2021-05-28 15:11:39.971+03	
d8de3ea7-c298-7c29-f6e3-16af5c0a2502	2021-05-28 15:11:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:11:59.951+03	2021-05-28 15:11:59.961+03	
d2574364-763e-a71d-83f6-7db3f02fc9a6	2021-05-28 15:12:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:12:19.951+03	2021-05-28 15:12:19.974+03	
2a4cd9cd-9941-5a95-e181-abe431109c00	2021-05-28 15:12:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:12:39.951+03	2021-05-28 15:12:39.958+03	
4e1d1448-a8fa-bded-f9e0-15ce5caa4c09	2021-05-28 15:12:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:12:59.951+03	2021-05-28 15:12:59.959+03	
01446aac-c82e-c2af-b995-3c658cf462d2	2021-05-28 15:13:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:13:19.951+03	2021-05-28 15:13:19.963+03	
42437823-8a40-9aa5-fa80-01cb556373ec	2021-05-28 15:13:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:13:39.951+03	2021-05-28 15:13:39.96+03	
c28f814d-9ad1-9d53-8d01-863562abb93e	2021-05-28 15:13:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:13:59.952+03	2021-05-28 15:13:59.962+03	
c37f9ec8-4998-4607-3445-f6fa4dffb0c2	2021-05-28 15:14:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:14:20.951+03	2021-05-28 15:14:20.966+03	
8a507963-0929-24de-db7a-7dfdaf23b718	2021-05-28 15:14:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:14:40.951+03	2021-05-28 15:14:40.96+03	
ffc07d83-b241-b691-be11-271d42fa1532	2021-05-28 15:15:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:15:01.951+03	2021-05-28 15:15:01.958+03	
e90d319d-1df6-e15b-a3b2-00013c88812b	2021-05-28 15:15:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:15:21.951+03	2021-05-28 15:15:21.958+03	
55c8cb70-ec46-8272-990e-c980e6ccebb9	2021-05-28 15:15:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:15:41.951+03	2021-05-28 15:15:41.96+03	
3f9e385c-e8be-6a8f-961b-2827c53b9c36	2021-05-28 15:16:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:16:01.951+03	2021-05-28 15:16:01.958+03	
197e1c8b-19bc-4109-c115-6cb2ab883689	2021-05-28 15:16:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:16:21.951+03	2021-05-28 15:16:21.963+03	
a9cd5313-f940-61df-a5ca-fc91be850462	2021-05-28 15:16:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:16:41.951+03	2021-05-28 15:16:41.961+03	
9566f776-9f0d-7fc3-e4d7-87a2331e06a1	2021-05-28 15:17:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:17:01.951+03	2021-05-28 15:17:01.958+03	
b69cdde4-db87-a49b-ec66-418ea054b45d	2021-05-28 15:17:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:17:21.951+03	2021-05-28 15:17:21.959+03	
d095ecd1-eddd-9d41-fd32-513a8f7a010c	2021-05-28 15:17:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:17:41.951+03	2021-05-28 15:17:41.958+03	
bb48fc8b-20ae-6d95-2127-28e221bc9abe	2021-05-28 15:18:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:18:01.951+03	2021-05-28 15:18:01.958+03	
63df1e0d-8b0d-cf39-6731-b25de82d9610	2021-05-28 15:18:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:18:21.951+03	2021-05-28 15:18:21.959+03	
014c5234-f242-84d4-7e5c-882015dbda71	2021-05-28 15:18:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:18:41.951+03	2021-05-28 15:18:41.962+03	
715c2548-fee4-8baa-ea2d-b1c2f3a9a4b8	2021-05-28 15:19:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:19:01.951+03	2021-05-28 15:19:01.958+03	
241df60b-d999-71da-a66c-c4aa64f3d754	2021-05-28 15:19:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:19:21.951+03	2021-05-28 15:19:21.958+03	
1e0e8425-47e9-dd0c-846f-1fcb44fd9140	2021-05-28 15:19:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:19:41.951+03	2021-05-28 15:19:41.959+03	
57af9b92-d487-0093-e615-93ae079e9462	2021-05-28 15:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 15:20:00.951+03	2021-05-28 15:20:01+03	ERROR
f705485c-a31b-3544-352d-1e39f5f33b5d	2021-05-28 15:20:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:20:11.951+03	2021-05-28 15:20:11.958+03	
de88b69b-e8e6-7ebe-5810-cf2bfb697b3a	2021-05-28 15:20:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:20:31.951+03	2021-05-28 15:20:31.962+03	
001e26a1-8021-f5e4-1c74-3ae8f09bc18c	2021-05-28 15:20:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:20:51.951+03	2021-05-28 15:20:51.965+03	
613588a6-0dbe-a498-17a6-052c3c2a769e	2021-05-28 15:21:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:21:11.951+03	2021-05-28 15:21:11.959+03	
24d65253-2a56-6453-7567-83ce26a06f98	2021-05-28 15:21:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:21:31.951+03	2021-05-28 15:21:31.966+03	
65d0779c-854d-1c41-a93f-fc49c9f70f13	2021-05-28 15:21:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:21:51.951+03	2021-05-28 15:21:51.958+03	
eb961627-3205-4863-7e66-4db5531eba88	2021-05-28 15:22:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:22:11.951+03	2021-05-28 15:22:11.958+03	
12065428-f4d1-b585-b2f8-1319d66a2344	2021-05-28 15:22:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:22:31.951+03	2021-05-28 15:22:31.958+03	
2442ae7d-e17f-4147-ceb1-cc4a19de58af	2021-05-28 15:22:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:22:51.951+03	2021-05-28 15:22:51.959+03	
02ab74cb-968d-b4b6-26a0-a8a755075b8c	2021-05-28 15:23:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:23:11.951+03	2021-05-28 15:23:11.959+03	
6f55cf09-eb89-6f7c-176f-43649a218d78	2021-05-28 15:23:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:23:31.951+03	2021-05-28 15:23:31.958+03	
69be1311-1151-db4b-0ca9-2c6710784c15	2021-05-28 15:23:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:23:51.951+03	2021-05-28 15:23:51.96+03	
9b21197f-4d80-b34c-1590-2e58e0a75eb4	2021-05-28 15:24:11.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:24:11.951+03	2021-05-28 15:24:11.96+03	
e936c0f4-e355-6b8a-7ab2-36aa737d2f2e	2021-05-28 15:24:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:24:31.951+03	2021-05-28 15:24:31.958+03	
3dde6f9a-1200-7860-beac-f3aa7c9eb4bd	2021-05-28 15:24:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:24:51.951+03	2021-05-28 15:24:51.964+03	
c9fa7125-029f-2cd7-1349-be358357c480	2021-05-28 15:24:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:24:41.951+03	2021-05-28 15:24:41.959+03	
50fceb9b-c33e-7156-5064-15099f257c0e	2021-05-28 15:25:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:25:01.951+03	2021-05-28 15:25:01.96+03	
a1331ff6-b7dd-6636-e389-aa7a5e296964	2021-05-28 15:25:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:25:21.951+03	2021-05-28 15:25:21.958+03	
77c8cd2c-7dc5-02bf-e992-3d14468a4efe	2021-05-28 15:25:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:25:41.951+03	2021-05-28 15:25:41.96+03	
261b4c4b-0e69-37dc-2a8b-9155263e3976	2021-05-28 15:26:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:26:01.951+03	2021-05-28 15:26:01.959+03	
06110af0-2eee-2b81-bac7-26753c106ebb	2021-05-28 15:26:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:26:21.951+03	2021-05-28 15:26:21.958+03	
c348ba8d-22ed-3ac7-c31c-9a488db2d6b5	2021-05-28 15:26:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:26:41.951+03	2021-05-28 15:26:41.961+03	
60ca15b0-aad7-905d-575a-a72c79b037a8	2021-05-28 15:27:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:27:01.951+03	2021-05-28 15:27:01.96+03	
b58f36e8-c9b9-db31-878b-2f6a9521a686	2021-05-28 15:27:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:27:21.951+03	2021-05-28 15:27:21.96+03	
69b2aaee-6442-427b-2c6d-abca6fe8a7ca	2021-05-28 15:27:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:27:41.952+03	2021-05-28 15:27:41.966+03	
4f028bba-bfdd-41bf-515e-4ac7c1add001	2021-05-28 15:28:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:28:02.951+03	2021-05-28 15:28:02.96+03	
bc4c81d4-d8b0-7ff2-9a04-0c5a96df9009	2021-05-28 15:28:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:28:22.952+03	2021-05-28 15:28:22.961+03	
bf79442a-140a-072c-1485-7526458c5912	2021-05-28 15:28:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:28:43.951+03	2021-05-28 15:28:43.97+03	
b31a5a74-daca-6034-8f27-843a9219335e	2021-05-28 15:29:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:29:03.951+03	2021-05-28 15:29:03.97+03	
b6f3aff5-406c-a9ce-e99b-a354cfd959ff	2021-05-28 15:29:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:29:23.951+03	2021-05-28 15:29:23.958+03	
11f6b4b3-74fe-5c23-2ec3-a3a7722d0011	2021-05-28 15:29:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:29:43.951+03	2021-05-28 15:29:43.972+03	
8d80d4a1-c8fa-4ec3-c143-7fe65277764e	2021-05-28 15:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 15:30:00.951+03	2021-05-28 15:30:01.013+03	ERROR
7e08529c-6dd0-b665-39ff-a1c5114e5e6d	2021-05-28 15:30:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:30:14.951+03	2021-05-28 15:30:14.959+03	
ad94da98-efc3-9987-cdd7-6ccedb59be47	2021-05-28 15:30:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:30:34.951+03	2021-05-28 15:30:34.961+03	
74b21f6a-4fa7-6a9c-b3af-2fe91793d24a	2021-05-28 15:30:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:30:54.952+03	2021-05-28 15:30:54.968+03	
49a25f85-7566-0fd9-7777-1e5d88e5bc81	2021-05-28 15:31:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:31:15.951+03	2021-05-28 15:31:15.958+03	
f2d52a2e-4cfb-29a7-28a2-40f2d234b5a1	2021-05-28 15:31:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:31:35.951+03	2021-05-28 15:31:35.958+03	
fed5c8c6-d98c-0dc3-289c-a4de24967362	2021-05-28 15:31:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:31:56.951+03	2021-05-28 15:31:56.96+03	
a1ed18ba-4254-453e-063b-b7fe0aa7eb16	2021-05-28 15:32:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:32:16.951+03	2021-05-28 15:32:16.959+03	
dae132d0-c1bd-a5e7-6369-494a187e84c4	2021-05-28 15:32:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:32:36.951+03	2021-05-28 15:32:36.966+03	
823ddaa5-680d-b53c-d045-6a4830a5d658	2021-05-28 15:32:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:32:56.951+03	2021-05-28 15:32:56.969+03	
b934de74-1181-bb40-3a47-05de411da8d6	2021-05-28 15:33:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:33:17.951+03	2021-05-28 15:33:17.959+03	
66f4261c-1712-afa2-d125-fa4cf39efd85	2021-05-28 15:33:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:33:37.951+03	2021-05-28 15:33:37.962+03	
a81be5c6-f74d-4e84-3ee5-f358e77d117c	2021-05-28 15:33:57.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:33:57.952+03	2021-05-28 15:33:57.961+03	
67d9d3ca-dded-0c8b-3b12-59252127651c	2021-05-28 15:34:17.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:34:17.952+03	2021-05-28 15:34:17.96+03	
3d94a511-fab3-ab63-091c-10a65ed10de6	2021-05-28 15:34:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:34:38.951+03	2021-05-28 15:34:38.961+03	
9419adc9-5257-4f8a-435e-62247b8abfe1	2021-05-28 15:34:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:34:58.951+03	2021-05-28 15:34:58.961+03	
9183bdac-17a1-f9a4-d7c8-139fe1cdbcb1	2021-05-28 15:35:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:35:18.951+03	2021-05-28 15:35:18.959+03	
42feeb79-68fa-bc88-8488-40450a641624	2021-05-28 15:35:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:35:38.951+03	2021-05-28 15:35:38.96+03	
0076f775-f36b-1898-ae92-14fc930f2942	2021-05-28 15:35:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:35:58.951+03	2021-05-28 15:35:58.961+03	
74a89339-7340-1064-7ead-601205233e88	2021-05-28 15:36:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:36:18.951+03	2021-05-28 15:36:18.958+03	
426ed653-13fc-2db9-efdc-5c859c7be1af	2021-05-28 15:36:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:36:38.951+03	2021-05-28 15:36:38.97+03	
35181d40-eedd-9ba0-bc75-8a91f96a965f	2021-05-28 15:36:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:36:58.951+03	2021-05-28 15:36:58.958+03	
daeaf16a-349d-64fe-85d2-901b67de69dc	2021-05-28 15:37:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:37:18.951+03	2021-05-28 15:37:18.959+03	
fbae1f73-8273-9f97-7044-b76b7f142a00	2021-05-28 15:37:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:37:38.951+03	2021-05-28 15:37:38.957+03	
44eb2c2a-5854-a908-cd1e-3de7a865fd5b	2021-05-28 15:37:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:37:58.951+03	2021-05-28 15:37:58.959+03	
9b777a64-a349-0cb4-0282-50681cc749f3	2021-05-28 15:38:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:38:19.951+03	2021-05-28 15:38:19.962+03	
a00cbcc1-8f07-39b8-578c-0b95ed0fd2ba	2021-05-28 15:38:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:38:39.951+03	2021-05-28 15:38:39.958+03	
a96cc1be-bf2d-8536-97a5-de60b0b039ea	2021-05-28 15:38:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:38:59.951+03	2021-05-28 15:38:59.959+03	
5724105a-3c12-9001-33dc-6fada874fca7	2021-05-28 15:39:19.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:39:19.951+03	2021-05-28 15:39:19.958+03	
a3ce7a56-b75b-1754-8640-b6299b03f36e	2021-05-28 15:39:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:39:39.951+03	2021-05-28 15:39:39.96+03	
84421196-5478-2c46-135e-6025b7bad65d	2021-05-28 15:39:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:39:59.952+03	2021-05-28 15:39:59.961+03	
48478099-9508-59ce-1590-ddbb992c8e26	2021-05-28 15:40:10.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:40:10.951+03	2021-05-28 15:40:10.959+03	
411aba3d-3c91-ceb2-6b26-c78496cb490b	2021-05-28 15:40:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:40:31.952+03	2021-05-28 15:40:31.96+03	
f736b45f-689d-1f97-7595-fc986b805695	2021-05-28 15:40:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:40:53.951+03	2021-05-28 15:40:53.959+03	
2a6a2706-27fa-4eb6-6ebc-253857f0f312	2021-05-28 15:41:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:41:13.951+03	2021-05-28 15:41:13.958+03	
bd5ba439-20d8-57df-649b-f12103724cbb	2021-05-28 15:41:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:41:33.951+03	2021-05-28 15:41:33.958+03	
248a4e9e-ddaa-2e00-dead-33a89704f120	2021-05-28 15:41:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:41:53.951+03	2021-05-28 15:41:53.959+03	
063d3139-46ab-e3ff-b17c-d15675c243f3	2021-05-28 15:42:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:42:14.951+03	2021-05-28 15:42:14.96+03	
04e7c023-a8cf-b08d-f716-9eb4f837b98c	2021-05-28 15:42:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:42:34.951+03	2021-05-28 15:42:34.959+03	
8af6ff00-09cd-1cf6-face-19cf3fdf0089	2021-05-28 15:42:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:42:54.951+03	2021-05-28 15:42:54.958+03	
50442086-381d-08af-b6d4-b118b0703a28	2021-05-28 15:43:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:43:14.951+03	2021-05-28 15:43:14.959+03	
0cb301ab-fd40-89f6-6981-2c1c5899ee4a	2021-05-28 15:43:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:43:34.951+03	2021-05-28 15:43:34.96+03	
a2ecd1ef-1323-4adf-936c-ab1e43c24454	2021-05-28 15:43:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:43:54.951+03	2021-05-28 15:43:54.96+03	
eca6098b-f2af-3d2c-c1ff-2a5f58fd9b56	2021-05-28 15:44:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:44:15.951+03	2021-05-28 15:44:15.968+03	
5bbd1b0b-372d-ba16-56cf-9bf728342fb0	2021-05-28 15:44:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:44:35.951+03	2021-05-28 15:44:35.958+03	
3ef29549-2e95-fb41-238a-d06c53f6fe38	2021-05-28 15:44:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:44:55.951+03	2021-05-28 15:44:55.959+03	
2be12f60-2774-6642-416b-f8b6cd68cb39	2021-05-28 15:45:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:45:15.951+03	2021-05-28 15:45:15.957+03	
410257d6-3e33-5ae1-b967-9fdef50648a2	2021-05-28 15:25:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:25:11.951+03	2021-05-28 15:25:11.959+03	
2df05390-dbdf-b616-1cf6-e83e46ed3a49	2021-05-28 15:25:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:25:31.951+03	2021-05-28 15:25:31.958+03	
f96c0a4b-6a48-c94f-a707-3fdd5bf1eec9	2021-05-28 15:25:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:25:51.951+03	2021-05-28 15:25:51.958+03	
2164a7a6-c31e-5cdc-773b-e78c38c79a9e	2021-05-28 15:26:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:26:11.951+03	2021-05-28 15:26:11.959+03	
aadd81c6-a35d-c68f-bf11-e1c7dd3b0346	2021-05-28 15:26:31.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:26:31.951+03	2021-05-28 15:26:31.958+03	
cb975494-16d4-7a22-2083-c6c935fcbde8	2021-05-28 15:26:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:26:51.951+03	2021-05-28 15:26:51.969+03	
4394f230-f063-d58d-8ab0-985f9bb7f271	2021-05-28 15:27:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:27:11.951+03	2021-05-28 15:27:11.959+03	
de6af08b-af4a-0877-4354-0b1f5b62eb10	2021-05-28 15:27:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:27:31.952+03	2021-05-28 15:27:31.961+03	
f4f046b8-a760-d751-41c8-e63ea9ed9ba0	2021-05-28 15:27:51.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:27:51.952+03	2021-05-28 15:27:51.961+03	
3838269e-9828-37bf-2491-6395071d9a23	2021-05-28 15:28:12.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:28:12.952+03	2021-05-28 15:28:12.961+03	
3cbf8356-5d3c-f804-00ab-2f71f04acd47	2021-05-28 15:28:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:28:33.951+03	2021-05-28 15:28:33.963+03	
c96c8ac7-de80-2dcc-d7ec-e07f0f04b718	2021-05-28 15:28:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:28:53.951+03	2021-05-28 15:28:53.963+03	
b00d7947-256a-6e44-0e50-fcfb1b956a4c	2021-05-28 15:29:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:29:13.951+03	2021-05-28 15:29:13.962+03	
9eedb16b-b6f5-cd7c-a87e-749bc3a0bd4d	2021-05-28 15:29:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:29:33.951+03	2021-05-28 15:29:33.961+03	
90e57901-e767-0ef2-21b2-70dafb4746a7	2021-05-28 15:29:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:29:53.952+03	2021-05-28 15:29:53.96+03	
dd48f57a-3ceb-7430-5230-1f8bd7ab5a15	2021-05-28 15:30:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:30:04.951+03	2021-05-28 15:30:04.964+03	
edf9776f-87ad-f9c2-e72a-1230b710e035	2021-05-28 15:30:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:30:24.951+03	2021-05-28 15:30:24.962+03	
ceece1da-6df4-802f-0aad-d3a55536d4ce	2021-05-28 15:30:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:30:44.951+03	2021-05-28 15:30:44.964+03	
02ef9251-6898-dd1b-4045-c6ec641fc6e1	2021-05-28 15:31:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:31:05.951+03	2021-05-28 15:31:05.96+03	
50106930-5eda-6de1-61b5-63b4f0c91543	2021-05-28 15:31:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:31:25.951+03	2021-05-28 15:31:25.96+03	
cb47d4d9-e76e-e4fe-adf8-954e41f2ae0b	2021-05-28 15:31:45.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:31:45.96+03	2021-05-28 15:31:45.967+03	
a5c16ed6-d4d1-2d17-5310-e623046ad3b5	2021-05-28 15:32:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:32:06.951+03	2021-05-28 15:32:06.958+03	
9b967acd-ba9b-71a5-8661-106435d5a234	2021-05-28 15:32:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:32:26.951+03	2021-05-28 15:32:26.958+03	
1a8e5e4b-915c-2036-bcf3-41da9e9301dd	2021-05-28 15:32:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:32:46.951+03	2021-05-28 15:32:46.96+03	
bf53f754-662d-f8f7-003c-3ea0473033b1	2021-05-28 15:33:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:33:06.952+03	2021-05-28 15:33:06.96+03	
744b8b84-4146-aec3-4cde-aeda942da628	2021-05-28 15:33:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:33:27.951+03	2021-05-28 15:33:27.959+03	
48c7828d-f247-ee8f-98e9-09dd8158df5e	2021-05-28 15:33:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:33:47.952+03	2021-05-28 15:33:47.959+03	
9a3dcfb6-05d6-75ac-74f8-0a6fb4f873c8	2021-05-28 15:34:07.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:34:07.952+03	2021-05-28 15:34:07.962+03	
088c05c2-3ef2-a66d-ea1b-ca662cdd87a7	2021-05-28 15:34:27.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:34:27.953+03	2021-05-28 15:34:27.966+03	
ecb45a28-0e31-dcdb-ed15-c3a4df50fd82	2021-05-28 15:34:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:34:48.951+03	2021-05-28 15:34:48.958+03	
43167812-369e-d4ac-f78f-b23c14575645	2021-05-28 15:35:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:35:08.951+03	2021-05-28 15:35:08.958+03	
1bd3c8a9-b86b-0e20-e7c6-0fc544f0eae8	2021-05-28 15:35:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:35:28.951+03	2021-05-28 15:35:28.959+03	
d9982191-ea3c-312b-ee3e-183b00597a5e	2021-05-28 15:35:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:35:48.951+03	2021-05-28 15:35:48.96+03	
ab239ef7-fff5-b4ec-5c8e-538fd0bb46e7	2021-05-28 15:36:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:36:08.951+03	2021-05-28 15:36:08.959+03	
b92d45a7-010c-9ac2-eaa0-34e4238cf191	2021-05-28 15:36:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:36:28.951+03	2021-05-28 15:36:28.959+03	
508937b6-1a3a-1f3f-51d1-658ca3dc2847	2021-05-28 15:36:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:36:48.951+03	2021-05-28 15:36:48.965+03	
8facc5be-f520-8541-4a19-d5f1bb7d97fc	2021-05-28 15:37:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:37:08.951+03	2021-05-28 15:37:08.958+03	
a6980928-dedb-8217-7f92-8b9a3a922819	2021-05-28 15:37:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:37:28.951+03	2021-05-28 15:37:28.958+03	
aaa5c45a-779f-cf64-f90a-6d04ec4eadf9	2021-05-28 15:37:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:37:48.951+03	2021-05-28 15:37:48.959+03	
725183c0-dc46-88d7-1875-c144cb5cf5c6	2021-05-28 15:38:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:38:08.952+03	2021-05-28 15:38:08.971+03	
3295190b-ddff-5b45-0626-11881d82c74f	2021-05-28 15:38:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:38:29.951+03	2021-05-28 15:38:29.969+03	
3633fb00-9189-ecc8-de34-888456fb6699	2021-05-28 15:38:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:38:49.951+03	2021-05-28 15:38:49.959+03	
140e62ea-c10d-6f53-c5c5-4770601e5daf	2021-05-28 15:39:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:39:09.951+03	2021-05-28 15:39:09.958+03	
df3530eb-61a5-1ab0-dc59-7051050ca56f	2021-05-28 15:39:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:39:29.951+03	2021-05-28 15:39:29.958+03	
3df52030-8bbc-683a-3b4d-b00acb122289	2021-05-28 15:39:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:39:49.952+03	2021-05-28 15:39:49.963+03	
4cf332a8-eff0-a980-a9cf-e1eb94835f21	2021-05-28 15:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 15:40:00.951+03	2021-05-28 15:40:00.957+03	ERROR
1a892423-9673-2a18-7e50-30dd3dc74942	2021-05-28 15:40:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:40:20.952+03	2021-05-28 15:40:20.959+03	
cf5aaeb9-b6db-324c-4d02-0b74b30d0c1e	2021-05-28 15:40:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:40:42.952+03	2021-05-28 15:40:42.959+03	
60c9e4aa-de34-c1b7-f9f1-08be384586bf	2021-05-28 15:41:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:41:03.951+03	2021-05-28 15:41:03.959+03	
8563d51e-21dd-ff87-bac7-e53cdcb6c873	2021-05-28 15:41:23.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:41:23.951+03	2021-05-28 15:41:23.958+03	
cb41333e-23ca-4c37-3a2e-a99c48ddbfcd	2021-05-28 15:41:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:41:43.951+03	2021-05-28 15:41:43.96+03	
37ff8a27-c249-7dbe-2f9f-1cbabe00c095	2021-05-28 15:42:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:42:03.952+03	2021-05-28 15:42:03.96+03	
de9bc5e3-81d2-1afa-08a2-1ace75af6f05	2021-05-28 15:42:24.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:42:24.951+03	2021-05-28 15:42:24.958+03	
aecff3aa-3b4b-d763-8537-57b6d6eb4cd6	2021-05-28 15:42:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:42:44.951+03	2021-05-28 15:42:44.959+03	
e8e5f67d-6247-bb2b-91d8-03792eeef6fe	2021-05-28 15:43:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:43:04.951+03	2021-05-28 15:43:04.959+03	
48bfe3b8-5b5c-076e-f6c8-ab66f80f3b1b	2021-05-28 15:43:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:43:24.951+03	2021-05-28 15:43:24.96+03	
d5bfdd92-ead0-764a-09f8-cbbc40b1f282	2021-05-28 15:43:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:43:44.951+03	2021-05-28 15:43:44.958+03	
fd790633-2e70-957c-8bf2-caa3641a3ab3	2021-05-28 15:44:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:44:04.952+03	2021-05-28 15:44:04.96+03	
9c73a89a-b76f-30d2-3c9e-16e40110048e	2021-05-28 15:44:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:44:25.951+03	2021-05-28 15:44:25.958+03	
8b367abc-3980-2755-5377-f0341b735e10	2021-05-28 15:44:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:44:45.951+03	2021-05-28 15:44:45.958+03	
f694e1fc-502d-3be9-a21d-dd4a0c54c309	2021-05-28 15:45:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:45:05.951+03	2021-05-28 15:45:05.962+03	
a5f878bd-848d-e5c0-2ab6-d36fcf8fad5b	2021-05-28 15:45:25.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:45:25.951+03	2021-05-28 15:45:25.957+03	
9a7e6ba0-1dea-fbb9-eb34-dafb078393b2	2021-05-28 15:45:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:45:45.951+03	2021-05-28 15:45:45.957+03	
50342541-3628-0b15-ef81-60b8f1c2f455	2021-05-28 15:45:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:45:35.951+03	2021-05-28 15:45:35.958+03	
5d07943a-ed9e-0885-e527-d596f96ca481	2021-05-28 15:45:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:45:55.951+03	2021-05-28 15:45:55.959+03	
370dd7de-defc-6227-2969-bc024630b4f1	2021-05-28 15:46:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:46:15.951+03	2021-05-28 15:46:15.959+03	
d238c64e-0e74-c019-32c3-3cfec7572840	2021-05-28 15:46:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:46:35.952+03	2021-05-28 15:46:35.961+03	
fe5f36eb-c057-ba7a-9c97-d003c70e4164	2021-05-28 15:46:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:46:56.951+03	2021-05-28 15:46:56.96+03	
bfb276f4-6566-932a-ea7f-f9c5d07ba21f	2021-05-28 15:47:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:47:16.951+03	2021-05-28 15:47:16.958+03	
a3289ff5-3528-ec05-0abe-b1c17e55464f	2021-05-28 15:47:36.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:47:36.951+03	2021-05-28 15:47:36.958+03	
5c466fdc-9347-7bcd-daef-61f4c2047c3f	2021-05-28 15:47:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:47:56.952+03	2021-05-28 15:47:56.96+03	
4edd751e-61a7-f241-0e25-594a7f8d082e	2021-05-28 15:48:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:48:17.951+03	2021-05-28 15:48:17.959+03	
12a4210c-5b0d-a085-9d98-d9ae1dc7a58b	2021-05-28 15:48:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:48:38.951+03	2021-05-28 15:48:38.959+03	
7f3c4628-7b52-10c9-5a38-2a928b7f5a42	2021-05-28 15:48:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:48:58.951+03	2021-05-28 15:48:58.958+03	
2d216e1f-ae49-421a-9fb6-53b6fdc8d158	2021-05-28 15:49:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:49:18.951+03	2021-05-28 15:49:18.959+03	
2a744c47-f5be-1aeb-1877-3612d5f3ab7b	2021-05-28 15:49:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:49:38.951+03	2021-05-28 15:49:38.958+03	
def1e1a3-f783-03a1-ca3c-0260eb3daaf1	2021-05-28 15:49:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:49:58.952+03	2021-05-28 15:49:58.958+03	
9d506da1-43c9-b774-5ad3-3ea535fd3fa4	2021-05-28 15:50:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:50:09.951+03	2021-05-28 15:50:09.959+03	
54a4ff41-6852-d19e-3750-b670196261ec	2021-05-28 15:50:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:50:29.951+03	2021-05-28 15:50:29.959+03	
01a9888b-c48c-e737-9c79-a0ba3c762ba4	2021-05-28 15:50:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:50:49.951+03	2021-05-28 15:50:49.959+03	
7932c6b7-965b-0961-459d-34aac4cde51c	2021-05-28 15:51:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:51:10.951+03	2021-05-28 15:51:10.959+03	
0e17d8df-2d6d-ec8e-66f1-425c8b4c1f7a	2021-05-28 15:51:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:51:30.951+03	2021-05-28 15:51:30.958+03	
143e8957-08c4-bdf4-635c-baca53bdb73b	2021-05-28 15:51:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:51:50.951+03	2021-05-28 15:51:50.959+03	
32d62191-a27a-9ce9-d980-834ac73a2402	2021-05-28 15:52:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:52:11.951+03	2021-05-28 15:52:11.959+03	
e5aebab1-c6bd-0490-78f9-f70246fd0cf0	2021-05-28 15:52:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:52:31.952+03	2021-05-28 15:52:31.965+03	
8a538132-66f2-b051-2762-f90eea4ef080	2021-05-28 15:52:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:52:52.952+03	2021-05-28 15:52:52.96+03	
9920ef0d-9345-2d78-084d-becbf5b151b4	2021-05-28 15:53:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:53:13.951+03	2021-05-28 15:53:13.959+03	
50d25b02-4646-53bb-c526-4505cc78a362	2021-05-28 15:53:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:53:33.951+03	2021-05-28 15:53:33.959+03	
6671e4d9-2f8a-3e06-be4f-d6b78f1215b1	2021-05-28 15:53:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:53:53.951+03	2021-05-28 15:53:53.958+03	
97f9b69e-f766-8b37-5131-97d9cd79296b	2021-05-28 15:54:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:54:13.951+03	2021-05-28 15:54:13.958+03	
9091e52e-9c89-62d2-c455-d46c760f0a5d	2021-05-28 15:54:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:54:34.951+03	2021-05-28 15:54:34.959+03	
477b9c5c-3e67-6cca-116e-5fb4fb2c2803	2021-05-28 15:54:54.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:54:54.951+03	2021-05-28 15:54:54.96+03	
b7b98b46-4e19-2c73-bd21-54a9be8fb606	2021-05-28 15:55:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:55:14.951+03	2021-05-28 15:55:14.958+03	
9c867b52-00ed-80b2-c90b-c80930dd5d04	2021-05-28 15:55:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:55:34.952+03	2021-05-28 15:55:34.96+03	
9555eacb-424c-35d1-5e10-7c6d0cbcb3d5	2021-05-28 15:55:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:55:56.952+03	2021-05-28 15:55:56.959+03	
ea5cead4-e0b8-1b0e-7099-0cb305e70b04	2021-05-28 15:56:17.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:56:17.952+03	2021-05-28 15:56:17.96+03	
4204547a-962f-ae8b-5684-b8bff9c32cc3	2021-05-28 15:56:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:56:38.951+03	2021-05-28 15:56:38.958+03	
ccd24620-0be2-efad-d2cf-e9c72a6b3bc5	2021-05-28 15:56:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:56:58.951+03	2021-05-28 15:56:58.957+03	
81741c80-3b33-7b86-2d66-2b119bccac44	2021-05-28 15:57:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:57:18.951+03	2021-05-28 15:57:18.958+03	
b16f5c89-eddd-a95f-cd2c-f3dad3691600	2021-05-28 15:57:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:57:38.951+03	2021-05-28 15:57:38.96+03	
4088153e-8ce9-eb22-425b-c86ae94f3b84	2021-05-28 15:57:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:57:58.952+03	2021-05-28 15:57:58.959+03	
f6975c9b-2d96-22de-7b48-8eed67091196	2021-05-28 15:58:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:58:19.951+03	2021-05-28 15:58:19.958+03	
c0167d14-a347-2ce6-060c-8177ab87878b	2021-05-28 15:58:39.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:58:39.951+03	2021-05-28 15:58:39.958+03	
d1c66296-cdbc-79e9-a9ec-54e89c6258c1	2021-05-28 15:59:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:59:00.951+03	2021-05-28 15:59:00.958+03	
13dee362-5404-fd74-5cce-3ba4adb298e4	2021-05-28 15:59:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:59:20.951+03	2021-05-28 15:59:20.961+03	
dfcfe8a4-b1dc-09c4-ae51-8551781f9946	2021-05-28 15:59:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:59:40.952+03	2021-05-28 15:59:40.961+03	
670723dd-19fc-e073-0b62-a5c78485c7f3	2021-05-28 16:00:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 16:00:00.951+03	2021-05-28 16:00:00.956+03	ERROR
c545e272-26e4-bfd9-ca9f-f9d292bff3b5	2021-05-28 16:00:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:00:11.951+03	2021-05-28 16:00:11.96+03	
f14f4a7d-a5dc-0fc1-f083-fded0b755a1c	2021-05-28 16:00:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:00:31.951+03	2021-05-28 16:00:31.959+03	
5513b98e-a9c9-ef43-387b-44cb68e076c8	2021-05-28 16:00:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:00:51.951+03	2021-05-28 16:00:51.963+03	
d4c96db8-abd2-1e6c-451a-4962bb88f8ee	2021-05-28 16:01:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:01:11.952+03	2021-05-28 16:01:11.959+03	
94cf961b-5506-015d-cb12-dd128625291c	2021-05-28 16:01:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:01:32.951+03	2021-05-28 16:01:32.963+03	
08a11d0c-0d9d-2000-542e-ce73aae13407	2021-05-28 16:01:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:01:52.951+03	2021-05-28 16:01:52.965+03	
f1f82f31-f321-3aa6-a8f9-34c009250df5	2021-05-28 16:02:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:02:22.951+03	2021-05-28 16:02:22.96+03	
cf995d35-d255-996b-0f35-185955fe742b	2021-05-28 16:02:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:02:42.951+03	2021-05-28 16:02:42.959+03	
e4455c04-a413-701b-bd47-a2c933a10d4c	2021-05-28 16:03:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:03:02.951+03	2021-05-28 16:03:02.959+03	
36ac0041-cf70-0d5d-db5e-e34424141413	2021-05-28 16:03:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:03:22.952+03	2021-05-28 16:03:22.96+03	
73215d99-e021-9e85-944a-58e28eedbe7b	2021-05-28 16:03:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:03:43.951+03	2021-05-28 16:03:43.959+03	
55668aaa-c8ec-2008-a2af-989772a930ce	2021-05-28 16:04:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:04:03.951+03	2021-05-28 16:04:03.959+03	
3097a2ec-1cfb-fcab-582f-8f5e405fc4de	2021-05-28 16:04:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:04:23.951+03	2021-05-28 16:04:23.959+03	
2fbb4a19-4f33-1e49-e6a7-b5309c0be105	2021-05-28 16:04:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:04:43.952+03	2021-05-28 16:04:43.96+03	
556d36b4-6231-f4b6-9ad8-a45634430843	2021-05-28 16:05:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:05:04.951+03	2021-05-28 16:05:04.958+03	
135d0c6b-796a-1222-325f-0a8b45e1e2ba	2021-05-28 16:05:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:05:24.951+03	2021-05-28 16:05:24.958+03	
1954f28b-380d-0625-6953-03255f04ec98	2021-05-28 16:05:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:05:44.951+03	2021-05-28 16:05:44.959+03	
a0568ae2-0307-6d0c-4cf5-5dcc82b5808c	2021-05-28 16:06:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:06:04.952+03	2021-05-28 16:06:04.959+03	
2b702544-1f69-7665-b291-cf850354e9a7	2021-05-28 16:06:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:06:25.951+03	2021-05-28 16:06:25.969+03	
97230853-6276-fc37-797c-ece5282fd390	2021-05-28 15:46:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:46:05.951+03	2021-05-28 15:46:05.959+03	
5c338a04-7556-95c0-eec1-458d2c45b108	2021-05-28 15:46:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:46:25.951+03	2021-05-28 15:46:25.958+03	
321d2564-8a44-788e-4501-e4f9c1342ed2	2021-05-28 15:46:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:46:46.951+03	2021-05-28 15:46:46.958+03	
2886395f-e980-d792-033b-ee73b5b6f727	2021-05-28 15:47:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:47:06.951+03	2021-05-28 15:47:06.958+03	
9c109f53-f9a8-86ac-0564-bf08f345ab66	2021-05-28 15:47:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:47:26.951+03	2021-05-28 15:47:26.958+03	
2a8f2af3-8d8e-353e-cd52-c7bbb49c1c50	2021-05-28 15:47:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:47:46.952+03	2021-05-28 15:47:46.967+03	
359ff49b-c39b-79cd-7048-ab3ea875117a	2021-05-28 15:48:07.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:48:07.951+03	2021-05-28 15:48:07.959+03	
1d292f44-62dd-6aee-9860-28424a4a6ef4	2021-05-28 15:48:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:48:27.952+03	2021-05-28 15:48:27.959+03	
761b1a27-9d20-2fc3-018a-c632cfc84e44	2021-05-28 15:48:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:48:48.951+03	2021-05-28 15:48:48.96+03	
8ee8dc5b-43e2-1855-f983-93b6eb0539ea	2021-05-28 15:49:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:49:08.951+03	2021-05-28 15:49:08.969+03	
d17144a2-b94a-f04d-e251-1d4183094aac	2021-05-28 15:49:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:49:28.951+03	2021-05-28 15:49:28.964+03	
cd5ad28b-1947-5bb7-17f0-3ac9ab243feb	2021-05-28 15:49:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:49:48.951+03	2021-05-28 15:49:48.96+03	
2b1afecf-14b8-822d-6d5b-65795ead0355	2021-05-28 15:50:00.953	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 15:50:00.952+03	2021-05-28 15:50:00.958+03	ERROR
0f4d1a70-65e7-a254-7dea-f6602039e766	2021-05-28 15:50:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:50:19.951+03	2021-05-28 15:50:19.959+03	
45e9815a-9b3b-62fe-a940-58bac8adc6b4	2021-05-28 15:50:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:50:39.951+03	2021-05-28 15:50:39.96+03	
3826a93a-43a3-bc22-eb8c-fd6212f70678	2021-05-28 15:50:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:50:59.952+03	2021-05-28 15:50:59.96+03	
4f7d41d3-dc80-ab7c-634b-859317ee2436	2021-05-28 15:51:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:51:20.951+03	2021-05-28 15:51:20.959+03	
b9b0ead5-99b6-72bc-523b-a1ba9147fa69	2021-05-28 15:51:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:51:40.951+03	2021-05-28 15:51:40.958+03	
fdad53ef-3590-d77a-4bf2-5685648d2420	2021-05-28 15:52:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:52:00.952+03	2021-05-28 15:52:00.958+03	
99f34ee5-763d-b0b3-11e4-dc106bf2c059	2021-05-28 15:52:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:52:21.951+03	2021-05-28 15:52:21.958+03	
d04f09ba-fe27-796d-b639-d47b6335c498	2021-05-28 15:52:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:52:42.951+03	2021-05-28 15:52:42.958+03	
61ea9ad6-68f2-f991-2d8f-a5dacd187344	2021-05-28 15:53:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:53:03.951+03	2021-05-28 15:53:03.957+03	
7a66c708-0ee1-6f4d-a6bd-d9ca79b4be70	2021-05-28 15:53:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:53:23.951+03	2021-05-28 15:53:23.96+03	
09996af7-6874-4718-02c8-805d7bf39ba9	2021-05-28 15:53:43.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:53:43.951+03	2021-05-28 15:53:43.959+03	
8211e328-35cf-3f95-6509-5965ca09383c	2021-05-28 15:54:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:54:03.951+03	2021-05-28 15:54:03.959+03	
499db7dd-a0d1-f488-6252-109876fc5384	2021-05-28 15:54:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:54:23.952+03	2021-05-28 15:54:23.961+03	
64e1b309-8fa8-b3be-08b5-00b50d12cffb	2021-05-28 15:54:44.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:54:44.951+03	2021-05-28 15:54:44.958+03	
dd8fae63-5771-aefb-a498-bfca88c231da	2021-05-28 15:55:04.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:55:04.951+03	2021-05-28 15:55:04.961+03	
e44e7cb5-2ea4-a4db-a841-8b78f3819dc5	2021-05-28 15:55:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:55:24.951+03	2021-05-28 15:55:24.96+03	
0d1434b9-ddde-b4e8-14d2-628e0497a108	2021-05-28 15:55:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:55:45.952+03	2021-05-28 15:55:45.96+03	
208b7990-d833-b516-8c10-b73e06ac2929	2021-05-28 15:56:07.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:56:07.952+03	2021-05-28 15:56:07.967+03	
74505b1e-4ef3-698c-298e-22b93ddfd3e6	2021-05-28 15:56:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:56:28.951+03	2021-05-28 15:56:28.96+03	
40fec589-318c-7922-5e44-8cb50d47dbd9	2021-05-28 15:56:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:56:48.951+03	2021-05-28 15:56:48.972+03	
dc132470-2281-a7cf-7708-f16fa8a5480a	2021-05-28 15:57:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:57:08.951+03	2021-05-28 15:57:08.959+03	
2735200e-97e8-cc99-1fdb-db762ac25d44	2021-05-28 15:57:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:57:28.951+03	2021-05-28 15:57:28.959+03	
3998df51-3267-07b1-671d-ac0e42abf119	2021-05-28 15:57:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:57:48.952+03	2021-05-28 15:57:48.964+03	
fe9a2bb8-bad6-3e5d-8e1e-e5807c781f40	2021-05-28 15:58:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:58:09.951+03	2021-05-28 15:58:09.961+03	
b5247aa2-a032-32f5-9e43-c1bc67c52dc3	2021-05-28 15:58:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:58:29.951+03	2021-05-28 15:58:29.96+03	
7d6b7365-7741-0ac5-310a-18ad51642589	2021-05-28 15:58:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:58:49.952+03	2021-05-28 15:58:49.959+03	
bf4366a9-0a94-8016-9141-c9ab61baeaf1	2021-05-28 15:59:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:59:10.951+03	2021-05-28 15:59:10.963+03	
fdfa07ad-2015-6147-b34e-c7d15b6b92d9	2021-05-28 15:59:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:59:30.951+03	2021-05-28 15:59:30.959+03	
5cd17451-af1b-3b99-f8ab-13296fdc3b22	2021-05-28 15:59:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 15:59:50.952+03	2021-05-28 15:59:50.959+03	
0cdcccc3-d719-42be-d953-32cb3e80cf0e	2021-05-28 16:00:01.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:00:01.951+03	2021-05-28 16:00:01.959+03	
328c8159-d92d-e1d6-a2bc-50a295e62e2b	2021-05-28 16:00:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:00:21.951+03	2021-05-28 16:00:21.958+03	
da07b8e8-1f59-51d0-2c05-50e7314cdc40	2021-05-28 16:00:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:00:41.951+03	2021-05-28 16:00:41.959+03	
5b38b2f8-64d4-3358-c7a2-6790c5adaba1	2021-05-28 16:01:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:01:01.951+03	2021-05-28 16:01:01.96+03	
6f5beb51-965a-969b-c745-4d5cbc83fe9d	2021-05-28 16:01:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:01:22.951+03	2021-05-28 16:01:22.959+03	
a4dd1ec7-27b5-7d81-c2a0-0063c154adeb	2021-05-28 16:01:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:01:42.951+03	2021-05-28 16:01:42.964+03	
5528a3fe-8ea4-7f67-fb39-1e274c36347b	2021-05-28 16:02:02.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:02:02.951+03	2021-05-28 16:02:02.958+03	
e2001b95-a468-bdf3-9f23-7645d4406e43	2021-05-28 16:02:12.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:02:12.951+03	2021-05-28 16:02:12.966+03	
f5de020c-57c4-fa3a-1918-0963f6b2841f	2021-05-28 16:02:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:02:32.951+03	2021-05-28 16:02:32.958+03	
42d1d36c-9de3-5c21-5740-5e69defb00c2	2021-05-28 16:02:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:02:52.951+03	2021-05-28 16:02:52.958+03	
ac45092b-b194-a83a-af0e-21f9aefbc71a	2021-05-28 16:03:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:03:12.951+03	2021-05-28 16:03:12.958+03	
a6fd150f-cbed-4bb5-ea8e-6351a86a3756	2021-05-28 16:03:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:03:32.952+03	2021-05-28 16:03:32.959+03	
f331f698-de13-bf22-693f-0b647d6faed9	2021-05-28 16:03:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:03:53.951+03	2021-05-28 16:03:53.96+03	
8220de49-72ad-fdfb-c0bb-32b40ce41eae	2021-05-28 16:04:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:04:13.951+03	2021-05-28 16:04:13.958+03	
90d6edbe-632d-8f8b-c0d1-b1117f8cbf7f	2021-05-28 16:04:33.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:04:33.951+03	2021-05-28 16:04:33.958+03	
185465cd-4e59-6099-692b-1c5b1fc8ee33	2021-05-28 16:04:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:04:54.951+03	2021-05-28 16:04:54.96+03	
d500d16a-9b6d-d12e-08d9-e55c2c09e629	2021-05-28 16:05:14.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:05:14.951+03	2021-05-28 16:05:14.958+03	
65b5e96a-44ca-eeda-e815-0308ca6a2e38	2021-05-28 16:05:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:05:34.951+03	2021-05-28 16:05:34.959+03	
74f4fee4-17a1-ead6-25aa-fb0d048ec7db	2021-05-28 16:05:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:05:54.952+03	2021-05-28 16:05:54.967+03	
e5580b64-c25a-229d-24d8-b5a9abe42324	2021-05-28 16:06:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:06:15.951+03	2021-05-28 16:06:15.958+03	
ed2fa8b9-460c-fd6d-5b21-d7ff982448d4	2021-05-28 16:06:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:06:35.951+03	2021-05-28 16:06:35.958+03	
96e84ff1-19dc-34cc-fe5c-b535b9fbeb66	2021-05-28 16:06:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:06:45.951+03	2021-05-28 16:06:45.961+03	
64eb3ffa-2db5-0176-a1a4-2975000993d4	2021-05-28 16:07:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:07:05.951+03	2021-05-28 16:07:05.959+03	
faeb44af-2626-2593-e865-5b2f603ad620	2021-05-28 16:07:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:07:25.951+03	2021-05-28 16:07:25.96+03	
a881fe3d-d8a6-7aa7-d025-7841f386f622	2021-05-28 16:07:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:07:45.951+03	2021-05-28 16:07:45.959+03	
bfd58ed8-27cf-659d-50ac-b811e2e00ae9	2021-05-28 16:08:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:08:05.952+03	2021-05-28 16:08:05.96+03	
37cb29cd-1df5-9199-dc88-6b18afdebefe	2021-05-28 16:08:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:08:26.951+03	2021-05-28 16:08:26.958+03	
d736b630-6ae0-8a0a-90ad-e50eae88cf11	2021-05-28 16:08:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:08:46.951+03	2021-05-28 16:08:46.959+03	
0f47fe2e-2d3f-2d5c-4c57-553654f4ae8b	2021-05-28 16:09:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:09:06.951+03	2021-05-28 16:09:06.964+03	
287c1da5-dfb3-3ef3-ef09-0451e388fb88	2021-05-28 16:09:26.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:09:26.951+03	2021-05-28 16:09:26.958+03	
c1140e41-cc49-59ea-ee90-0453e155d18e	2021-05-28 16:09:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:09:46.951+03	2021-05-28 16:09:46.958+03	
b1d7d1ea-5289-36c7-f049-ec1cf5c4d161	2021-05-28 16:10:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 16:10:00.951+03	2021-05-28 16:10:01.268+03	ERROR
b2ad8507-4dab-c9da-5338-6b0ffc724dbf	2021-05-28 16:10:17.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:10:17.951+03	2021-05-28 16:10:17.957+03	
6e3d1884-90b5-a848-db80-993752dee62e	2021-05-28 16:10:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:10:37.952+03	2021-05-28 16:10:37.96+03	
a529d033-cadd-e158-cf8e-0fdc328f8f55	2021-05-28 16:10:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:10:58.951+03	2021-05-28 16:10:58.959+03	
22e80642-07dd-1bae-a59d-b1ae567bd52c	2021-05-28 16:11:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:11:18.951+03	2021-05-28 16:11:18.959+03	
7ebbfb03-b884-b3c2-4921-5c81e63dc2f2	2021-05-28 16:11:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:11:38.951+03	2021-05-28 16:11:38.959+03	
fa74d42e-e00d-83a7-d30a-0c220ca36145	2021-05-28 16:11:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:11:58.951+03	2021-05-28 16:11:58.958+03	
929af9d3-a1ba-294f-2461-5f7872ac1e7b	2021-05-28 16:12:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:12:18.952+03	2021-05-28 16:12:18.96+03	
5dc4ef35-b622-049f-6697-dbd25f5bae63	2021-05-28 16:12:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:12:39.951+03	2021-05-28 16:12:39.96+03	
38deb746-3f6d-a52a-71b7-d21eec283763	2021-05-28 16:12:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:12:59.951+03	2021-05-28 16:12:59.96+03	
45e0e0a3-1ed3-017e-b8b0-8504ef141443	2021-05-28 16:13:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:13:19.951+03	2021-05-28 16:13:19.957+03	
c1e91c15-3cd7-4ef6-07e4-4ec8ca5c30af	2021-05-28 16:13:39.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:13:39.951+03	2021-05-28 16:13:39.959+03	
d1a646e5-855b-f5ec-48b3-8a1ffec2fcdf	2021-05-28 16:13:59.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:13:59.951+03	2021-05-28 16:13:59.96+03	
56f247bc-de04-960c-4157-1efb3c4109a9	2021-05-28 16:14:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:14:19.952+03	2021-05-28 16:14:19.962+03	
ee93d82f-e465-2d1d-63db-8011f8ab9fef	2021-05-28 16:14:40.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:14:40.951+03	2021-05-28 16:14:40.959+03	
e4de9792-ebc3-9b6f-a254-57f4e08be696	2021-05-28 16:15:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:15:00.952+03	2021-05-28 16:15:00.961+03	
c62f6e3c-a78e-fe34-e31e-c48e0a34b745	2021-05-28 16:15:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:15:31.952+03	2021-05-28 16:15:31.96+03	
b4cedb0c-8539-173a-bad1-f2389df216b0	2021-05-28 16:15:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:15:52.951+03	2021-05-28 16:15:52.959+03	
9981de7d-e140-a13c-df38-b20000fb8b6c	2021-05-28 16:16:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:16:12.951+03	2021-05-28 16:16:12.96+03	
87ebcdd6-09de-e009-32d2-3c827ce20a5d	2021-05-28 16:16:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:16:32.952+03	2021-05-28 16:16:32.959+03	
b1b229da-2a9c-440a-b532-9cb9a9e56db2	2021-05-28 16:16:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:16:53.951+03	2021-05-28 16:16:53.959+03	
62324af1-0015-3a98-34a5-49a658c4c1de	2021-05-28 16:17:14.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:17:14.951+03	2021-05-28 16:17:14.958+03	
366515d3-d656-84de-9f2e-848fc5958352	2021-05-28 16:17:34.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:17:34.951+03	2021-05-28 16:17:34.958+03	
14b1d3a9-531d-bd2b-7d1a-b282f377a93a	2021-05-28 16:17:54.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:17:54.952+03	2021-05-28 16:17:54.96+03	
e37b6b30-ae34-4d10-23dd-6aff527454b2	2021-05-28 16:18:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:18:15.951+03	2021-05-28 16:18:15.96+03	
aecf6334-d4d4-56b2-5622-289534b76570	2021-05-28 16:18:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:18:35.951+03	2021-05-28 16:18:35.965+03	
1273c1ba-80d7-5c20-e316-f8d5f17b478a	2021-05-28 16:18:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:18:55.951+03	2021-05-28 16:18:55.958+03	
8a9b2277-28bd-0c17-191b-80ae85748c1f	2021-05-28 16:19:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:19:15.951+03	2021-05-28 16:19:15.959+03	
70e84a49-ab71-f88b-98c0-910f190e0d04	2021-05-28 16:19:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:19:35.951+03	2021-05-28 16:19:35.961+03	
de82586d-d33c-9d30-816e-36aeb3e4dcdc	2021-05-28 16:19:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:19:55.951+03	2021-05-28 16:19:55.957+03	
89b0b16a-5b5a-b7d9-8415-d9119eca5037	2021-05-28 16:20:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:20:05.951+03	2021-05-28 16:20:05.961+03	
f7455186-63be-4fec-cf20-fed30671b16f	2021-05-28 16:20:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:20:25.952+03	2021-05-28 16:20:25.958+03	
4f2b2444-6735-f17b-8ffd-da40ba3dd452	2021-05-28 16:20:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:20:46.951+03	2021-05-28 16:20:46.959+03	
67bda705-e15c-a2af-813a-792d1a2e2805	2021-05-28 16:21:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:21:06.951+03	2021-05-28 16:21:06.96+03	
8df1048b-cf54-b9c8-0532-467a7469fad3	2021-05-28 16:21:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:21:26.951+03	2021-05-28 16:21:26.96+03	
200e91ed-4e5c-9ba1-081f-19eec9a14950	2021-05-28 16:21:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:21:47.952+03	2021-05-28 16:21:47.959+03	
b0a36dc7-761c-aa5b-eedb-7816233390b1	2021-05-28 16:22:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:22:08.951+03	2021-05-28 16:22:08.964+03	
b7877401-f865-26a8-2b15-ed33f7dea356	2021-05-28 16:22:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:22:28.951+03	2021-05-28 16:22:28.959+03	
0b402702-8581-fe3c-7cd6-eec3a2cf3307	2021-05-28 16:22:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:22:48.951+03	2021-05-28 16:22:48.958+03	
324da61a-400f-71c3-23ce-4af903ae2edf	2021-05-28 16:23:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:23:08.951+03	2021-05-28 16:23:08.959+03	
63700f64-1209-59e4-864c-c346b5e00874	2021-05-28 16:23:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:23:28.951+03	2021-05-28 16:23:28.959+03	
53ae608d-618e-0733-0730-73ab317283c9	2021-05-28 16:23:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:23:48.951+03	2021-05-28 16:23:48.958+03	
b4dd526f-36b1-a345-ed56-c351f2cf8916	2021-05-28 16:24:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:24:08.951+03	2021-05-28 16:24:08.958+03	
94640eee-eb44-b916-500e-ec440b76b24d	2021-05-28 16:24:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:24:28.951+03	2021-05-28 16:24:28.959+03	
da63b1ad-9a50-9329-af5a-956ad5d62f2d	2021-05-28 16:24:48.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:24:48.951+03	2021-05-28 16:24:48.957+03	
e9fcc843-3bbb-db19-1244-820de6e4974a	2021-05-28 16:25:08.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:25:08.951+03	2021-05-28 16:25:08.96+03	
1cf1123e-4651-dc5a-0611-5b2fb8f15c65	2021-05-28 16:25:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:25:28.951+03	2021-05-28 16:25:28.959+03	
8730ca3d-8808-1b57-4ed9-8812412be9ce	2021-05-28 16:25:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:25:48.951+03	2021-05-28 16:25:48.96+03	
a7a4de02-1c9d-458e-44b1-eb51f073043e	2021-05-28 16:26:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:26:08.951+03	2021-05-28 16:26:08.96+03	
45fe6fc6-0f9b-2591-ac65-9fd557d8f47e	2021-05-28 16:26:28.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:26:28.951+03	2021-05-28 16:26:28.967+03	
36ff0caa-a13a-31cb-1176-1f7d14bc4438	2021-05-28 16:26:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:26:48.952+03	2021-05-28 16:26:48.958+03	
0aefb47b-81d2-2825-e38a-c4b3242858c0	2021-05-28 16:27:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:27:09.951+03	2021-05-28 16:27:09.959+03	
ea46cbf7-fcb8-aeee-09ff-25dc4d3fe01a	2021-05-28 16:27:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:27:29.951+03	2021-05-28 16:27:29.958+03	
b01d53f8-b3ea-b88e-b82e-b85ab5469f1b	2021-05-28 16:06:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:06:55.951+03	2021-05-28 16:06:55.959+03	
553e6b16-d604-4e11-4c62-9469382d45f4	2021-05-28 16:07:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:07:15.951+03	2021-05-28 16:07:15.96+03	
90932930-22b0-5961-204f-47039c42ed6b	2021-05-28 16:07:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:07:35.951+03	2021-05-28 16:07:35.96+03	
02cd8d7d-570c-6bb5-7c3b-04d91990b0ca	2021-05-28 16:07:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:07:55.951+03	2021-05-28 16:07:55.96+03	
a58e2432-1ac6-eb2f-a624-17fa4ba99bad	2021-05-28 16:08:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:08:16.951+03	2021-05-28 16:08:16.958+03	
b4acca27-587a-8e6b-4ef4-98cc74141140	2021-05-28 16:08:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:08:36.951+03	2021-05-28 16:08:36.959+03	
3de157e3-11cc-69ba-02d9-db3af1da1328	2021-05-28 16:08:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:08:56.951+03	2021-05-28 16:08:56.96+03	
d0200e96-a477-02a8-867c-01b88a8f8b7e	2021-05-28 16:09:16.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:09:16.951+03	2021-05-28 16:09:16.957+03	
b19b3706-ce31-a923-cfca-8f305fdf90d2	2021-05-28 16:09:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:09:36.951+03	2021-05-28 16:09:36.962+03	
3022cb6d-5cb3-5106-ed37-26a8124684e0	2021-05-28 16:09:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:09:56.951+03	2021-05-28 16:09:56.959+03	
cd135289-439f-1d38-b897-cd46141e57c8	2021-05-28 16:10:06.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:10:06.952+03	2021-05-28 16:10:06.962+03	
06a2d308-13ca-8b79-9e35-9f6f2ec4cd55	2021-05-28 16:10:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:10:27.952+03	2021-05-28 16:10:27.962+03	
3524c1d5-77fc-9ec6-cdfc-83f7d93255ac	2021-05-28 16:10:47.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:10:47.952+03	2021-05-28 16:10:47.959+03	
1eeaccb7-bf86-0b9f-28f5-b0d2492bca3d	2021-05-28 16:11:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:11:08.951+03	2021-05-28 16:11:08.96+03	
c07ce81b-82c8-a19e-d3e9-f37046c5452f	2021-05-28 16:11:28.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:11:28.951+03	2021-05-28 16:11:28.958+03	
ffd2ab50-e2f5-40c3-e8fa-e8787d0ed60f	2021-05-28 16:11:48.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:11:48.951+03	2021-05-28 16:11:48.964+03	
dfe4aa2b-89d9-e0f1-3330-f760f967538b	2021-05-28 16:12:08.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:12:08.951+03	2021-05-28 16:12:08.958+03	
bf5ee47a-d6fe-4202-c8b9-1c55b9799678	2021-05-28 16:12:29.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:12:29.951+03	2021-05-28 16:12:29.959+03	
89691cc1-ed91-2334-130d-631da8a1fc56	2021-05-28 16:12:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:12:49.951+03	2021-05-28 16:12:49.959+03	
915d84e9-3d8a-a9f2-8aaa-dd97d4f74f58	2021-05-28 16:13:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:13:09.951+03	2021-05-28 16:13:09.958+03	
a8df4c0f-c876-b20d-5776-06223770be5a	2021-05-28 16:13:29.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:13:29.951+03	2021-05-28 16:13:29.958+03	
afff2ba1-2007-f40c-0e06-80ede939a692	2021-05-28 16:13:49.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:13:49.951+03	2021-05-28 16:13:49.96+03	
68822966-e7a0-bc47-8d20-d5f97d6a1761	2021-05-28 16:14:09.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:14:09.951+03	2021-05-28 16:14:09.959+03	
b5d91940-ee42-c13e-6d49-30dc3cf5fa30	2021-05-28 16:14:30.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:14:30.951+03	2021-05-28 16:14:30.971+03	
8b20de41-f927-53e9-9c11-9db510a2685a	2021-05-28 16:14:50.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:14:50.951+03	2021-05-28 16:14:50.958+03	
bd4ce7b3-28b0-521b-4282-61a52696d5e3	2021-05-28 16:15:10.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:15:10.952+03	2021-05-28 16:15:10.96+03	
08e18821-e8e9-e8be-d54b-c4d23bd28c04	2021-05-28 16:15:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:15:21.951+03	2021-05-28 16:15:21.96+03	
51f5d07e-d0b7-af04-06d0-17c8c03b590a	2021-05-28 16:15:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:15:42.951+03	2021-05-28 16:15:42.959+03	
8ae9d05c-b1a4-a3fa-d132-648c29b597eb	2021-05-28 16:16:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:16:02.951+03	2021-05-28 16:16:02.959+03	
23d7c20d-62b4-653f-e21d-93f79451dba7	2021-05-28 16:16:22.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:16:22.951+03	2021-05-28 16:16:22.958+03	
02a6ac9b-93b2-4598-fe78-e17a8fa05eca	2021-05-28 16:16:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:16:43.951+03	2021-05-28 16:16:43.958+03	
51cb3ba0-1308-0a5c-cf07-4a6e884ab147	2021-05-28 16:17:03.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:17:03.952+03	2021-05-28 16:17:03.973+03	
59bc849a-8af7-8190-e6e1-570c95dbe354	2021-05-28 16:17:24.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:17:24.951+03	2021-05-28 16:17:24.96+03	
e98bee48-a0f3-d3fc-1888-96746ebd8d77	2021-05-28 16:17:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:17:44.951+03	2021-05-28 16:17:44.958+03	
fe927cfe-1617-c85b-5b26-7c59aafa56c8	2021-05-28 16:18:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:18:05.951+03	2021-05-28 16:18:05.96+03	
704130ad-3551-704d-6329-4c172f410f02	2021-05-28 16:18:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:18:25.951+03	2021-05-28 16:18:25.958+03	
edeb0fb6-2ce9-fa05-1412-c7be5402312f	2021-05-28 16:18:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:18:45.951+03	2021-05-28 16:18:45.96+03	
baeff96a-1361-0163-1f39-8788903e4f4a	2021-05-28 16:19:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:19:05.951+03	2021-05-28 16:19:05.96+03	
e6175e5f-5f07-cbaf-f479-39284e313845	2021-05-28 16:19:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:19:25.951+03	2021-05-28 16:19:25.959+03	
7ae0615c-d61b-bcc1-f599-fe8c2b5e80df	2021-05-28 16:19:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:19:45.951+03	2021-05-28 16:19:45.958+03	
0105cfa5-c0af-1652-4132-75a4967b2625	2021-05-28 16:20:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 16:20:00.951+03	2021-05-28 16:20:00.957+03	ERROR
003e8ff7-6b71-edeb-7b5f-aabd1929adc5	2021-05-28 16:20:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:20:15.951+03	2021-05-28 16:20:15.958+03	
cd099dce-09ad-cd3b-bbbd-84ab6e94866b	2021-05-28 16:20:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:20:36.951+03	2021-05-28 16:20:36.959+03	
e873c61c-efe3-e434-dd36-3d7d86b560fa	2021-05-28 16:20:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:20:56.951+03	2021-05-28 16:20:56.959+03	
4a08b9bc-1183-1096-bac2-b7e0f0a85d0e	2021-05-28 16:21:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:21:16.951+03	2021-05-28 16:21:16.96+03	
1211a6e2-bcf1-fc7e-82ba-45b3c184babe	2021-05-28 16:21:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:21:36.952+03	2021-05-28 16:21:36.959+03	
46efb677-b333-1dfd-854e-b59fa3d2746f	2021-05-28 16:21:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:21:58.951+03	2021-05-28 16:21:58.96+03	
4183de59-b4a8-dba4-6184-49bbc3a3ef83	2021-05-28 16:22:18.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:22:18.951+03	2021-05-28 16:22:18.959+03	
fbcfe626-dbcf-c520-8cb6-7e9cd4eced64	2021-05-28 16:22:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:22:38.951+03	2021-05-28 16:22:38.958+03	
7b5064dc-9f48-9b46-040e-6e92096457fa	2021-05-28 16:22:58.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:22:58.951+03	2021-05-28 16:22:58.958+03	
da14411e-9e46-f3fb-c4ca-b157c3d24c64	2021-05-28 16:23:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:23:18.951+03	2021-05-28 16:23:18.96+03	
41d19259-b156-3a9a-f73f-716bdf360247	2021-05-28 16:23:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:23:38.951+03	2021-05-28 16:23:38.96+03	
c5949644-ddc1-72a5-ecd2-04b3ff28fe80	2021-05-28 16:23:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:23:58.951+03	2021-05-28 16:23:58.96+03	
65e10f09-426d-28db-6a19-12021b502c37	2021-05-28 16:24:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:24:18.951+03	2021-05-28 16:24:18.958+03	
154760c2-2f99-1fc1-ecbb-7e879e35345b	2021-05-28 16:24:38.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:24:38.951+03	2021-05-28 16:24:38.958+03	
76526c6c-89d4-12e5-c762-6d54d8ad2dd9	2021-05-28 16:24:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:24:58.951+03	2021-05-28 16:24:58.958+03	
98a64385-e9a8-2551-f5a7-d5e6dc852976	2021-05-28 16:25:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:25:18.951+03	2021-05-28 16:25:18.961+03	
7c8a8b4a-b0bf-61a8-2332-1face0d29007	2021-05-28 16:25:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:25:38.951+03	2021-05-28 16:25:38.958+03	
dce47e3d-598c-b4bf-12b4-e38046284b0b	2021-05-28 16:25:58.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:25:58.951+03	2021-05-28 16:25:58.959+03	
fdda3c68-4a87-849f-144c-06180d6d57b9	2021-05-28 16:26:18.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:26:18.951+03	2021-05-28 16:26:18.961+03	
edf17dbf-f4cb-8ee0-2e3e-036327e76fad	2021-05-28 16:26:38.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:26:38.951+03	2021-05-28 16:26:38.958+03	
c6af683c-ddda-5fa9-1938-c36befd43bfe	2021-05-28 16:26:59.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:26:59.951+03	2021-05-28 16:26:59.957+03	
4caf0e96-a048-e24b-3651-8db274333b70	2021-05-28 16:27:19.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:27:19.951+03	2021-05-28 16:27:19.958+03	
28c9c907-a56a-05a6-e5a4-148a86381773	2021-05-28 16:27:39.961	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:27:39.961+03	2021-05-28 16:27:39.968+03	
76a91554-d6af-0caa-2696-494105170947	2021-05-28 16:28:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:28:00.951+03	2021-05-28 16:28:00.958+03	
186810da-39ce-b070-8733-7f80d64c87a1	2021-05-28 16:28:20.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:28:20.951+03	2021-05-28 16:28:20.961+03	
18423631-b024-c679-f5ff-4938cd3e820f	2021-05-28 16:28:40.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:28:40.951+03	2021-05-28 16:28:40.958+03	
2f3101e2-19b5-fe68-b6fc-f6521379a1e3	2021-05-28 16:29:00.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:29:00.951+03	2021-05-28 16:29:00.962+03	
2fd7101c-5ff4-2ba9-c966-4b2c9a846244	2021-05-28 16:29:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:29:21.951+03	2021-05-28 16:29:21.961+03	
80ad3904-b6b0-a6eb-98b1-416b3a01427e	2021-05-28 16:29:41.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:29:41.951+03	2021-05-28 16:29:41.962+03	
ebb01117-02d1-8fc5-666f-2acc799b99ad	2021-05-28 16:30:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 16:30:00.951+03	2021-05-28 16:30:00.961+03	ERROR
37903c0d-6064-077f-500d-70924307cdd6	2021-05-28 16:30:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:30:11.951+03	2021-05-28 16:30:11.964+03	
560f38f6-87ee-4bb8-57cb-610547ad919a	2021-05-28 16:30:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:30:31.951+03	2021-05-28 16:30:31.96+03	
023102be-8ba3-edad-70e8-11c7f442af40	2021-05-28 16:30:51.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:30:51.951+03	2021-05-28 16:30:51.959+03	
d813007f-c7dd-68a8-d143-797832f842ae	2021-05-28 16:31:11.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:31:11.951+03	2021-05-28 16:31:11.959+03	
ced2e716-f881-3c0f-7302-ca4f3ad41531	2021-05-28 16:31:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:31:32.951+03	2021-05-28 16:31:32.962+03	
1d332755-878b-a0c0-ba2a-79a5f3f8ee4f	2021-05-28 16:31:52.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:31:52.951+03	2021-05-28 16:31:52.967+03	
f42bf7f4-c425-a62a-be9b-151f7696361e	2021-05-28 16:32:12.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:32:12.951+03	2021-05-28 16:32:12.957+03	
d8bdf6e4-e78e-f17b-5d63-4dbcef62929a	2021-05-28 16:32:32.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:32:32.951+03	2021-05-28 16:32:32.957+03	
0041719c-0321-8205-428d-1c2bba089af0	2021-05-28 16:32:52.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:32:52.951+03	2021-05-28 16:32:52.958+03	
73233d13-b6cd-dee1-de1b-b635647ab3db	2021-05-28 16:33:12.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:33:12.952+03	2021-05-28 16:33:12.962+03	
fab1f396-36ef-fe42-56eb-bcf20a0e847c	2021-05-28 16:33:32.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:33:32.952+03	2021-05-28 16:33:32.96+03	
7f6db971-37dc-a347-5814-15a8ae0d8214	2021-05-28 16:33:53.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:33:53.951+03	2021-05-28 16:33:53.96+03	
243cc4de-5efa-693b-6ec7-e8961cd12cb5	2021-05-28 16:34:13.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:34:13.951+03	2021-05-28 16:34:13.958+03	
4b595580-c73a-cedb-c940-9cedfc36196b	2021-05-28 16:34:33.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:34:33.951+03	2021-05-28 16:34:33.958+03	
9d16539f-2d1d-f0a8-2c55-1f57eeb9102a	2021-05-28 16:34:53.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:34:53.951+03	2021-05-28 16:34:53.957+03	
33302c13-17ad-ed91-171e-b32b99d4ade2	2021-05-28 16:35:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:35:23.952+03	2021-05-28 16:35:23.962+03	
e54ad838-94f2-433e-ce0d-842ea7921d5d	2021-05-28 16:35:44.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:35:44.952+03	2021-05-28 16:35:44.959+03	
180141b3-f061-587a-c2a6-015541d37bd3	2021-05-28 16:36:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:36:05.951+03	2021-05-28 16:36:05.959+03	
2c702965-b579-7dc3-10e3-de2dc1bb96ba	2021-05-28 16:36:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:36:25.951+03	2021-05-28 16:36:25.958+03	
0d66dc64-49d9-1397-ae92-c14a81fec25f	2021-05-28 16:36:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:36:45.951+03	2021-05-28 16:36:45.959+03	
ee957446-ab22-db4d-7599-babf75831d4a	2021-05-28 16:37:05.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:37:05.951+03	2021-05-28 16:37:05.958+03	
26ba4e86-19e5-21f9-e7e3-4a3a6a6d4a53	2021-05-28 16:37:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:37:25.951+03	2021-05-28 16:37:25.958+03	
e9cbb92e-6ec3-82e4-53cf-5f7c02cb0ad9	2021-05-28 16:37:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:37:45.951+03	2021-05-28 16:37:45.959+03	
07c63947-6215-3ed9-1494-c9d57d003456	2021-05-28 16:38:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:38:05.951+03	2021-05-28 16:38:05.959+03	
bc7897bb-1c10-6ca1-27f8-45b297755a95	2021-05-28 16:38:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:38:25.951+03	2021-05-28 16:38:25.96+03	
b40f011f-bb81-b0f8-e39a-83a00cbb27d2	2021-05-28 16:38:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:38:45.951+03	2021-05-28 16:38:45.959+03	
87eb8c24-2aaa-e74f-bc8f-7cbf9d6d8685	2021-05-28 16:39:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:39:05.951+03	2021-05-28 16:39:05.959+03	
3f157a54-daca-deec-80a7-c031af5032ce	2021-05-28 16:39:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:39:25.951+03	2021-05-28 16:39:25.959+03	
40b6dc3e-b8b7-d87b-b4e2-6571e03cfbb9	2021-05-28 16:39:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:39:45.951+03	2021-05-28 16:39:45.959+03	
08daf530-4935-ae25-f7b3-e971c95804d0	2021-05-28 16:40:00.952	admin	fce14334-9b20-4c3e-b8f4-44e8901c2eb7	localhost:8080/app-core	2021-05-28 16:40:00.951+03	2021-05-28 16:40:00.958+03	ERROR
bdd9fa40-45bb-e80e-34ea-f7ca7c14e43c	2021-05-28 16:40:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:40:15.951+03	2021-05-28 16:40:15.959+03	
433ee78a-fbcd-8353-0196-cf88701d8169	2021-05-28 16:40:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:40:35.951+03	2021-05-28 16:40:35.959+03	
30bdafd0-9246-e8d2-fbd8-da145f2012ac	2021-05-28 16:40:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:40:55.951+03	2021-05-28 16:40:55.958+03	
5258a454-c5c0-966b-7dfc-a2a6ee093349	2021-05-28 16:41:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:41:15.951+03	2021-05-28 16:41:15.958+03	
a8aeb064-35ad-63b3-56a9-12f40d65e54d	2021-05-28 16:41:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:41:35.951+03	2021-05-28 16:41:35.969+03	
de0ca788-32c3-4fe8-bbde-c2a85f874066	2021-05-28 16:41:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:41:55.951+03	2021-05-28 16:41:55.959+03	
a011acc6-be2c-62f6-f30d-5f9943aedbb8	2021-05-28 16:42:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:42:15.951+03	2021-05-28 16:42:15.96+03	
058ddf42-a2a8-df88-2574-705618555862	2021-05-28 16:42:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:42:35.951+03	2021-05-28 16:42:35.96+03	
7838006f-4f12-8829-a756-ac3df97b0574	2021-05-28 16:42:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:42:55.951+03	2021-05-28 16:42:55.958+03	
0a8c40e6-123b-9fae-efd3-14d3f0daeb86	2021-05-28 16:43:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:43:15.951+03	2021-05-28 16:43:15.958+03	
d4e20eb5-b36f-2c88-4fc8-10be43ae4a7c	2021-05-28 16:43:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:43:35.951+03	2021-05-28 16:43:35.958+03	
ad0341ec-fcb5-43bc-2db7-baae3cf9af6a	2021-05-28 16:43:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:43:55.951+03	2021-05-28 16:43:55.958+03	
0e89a0ef-1e6a-012c-2921-0673274bf960	2021-05-28 16:44:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:44:15.951+03	2021-05-28 16:44:15.96+03	
aaadb48c-40a7-5762-f684-ecdc25a8e2bb	2021-05-28 16:44:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:44:35.951+03	2021-05-28 16:44:35.977+03	
29525a73-3dd2-3bbc-2061-7add754a1d17	2021-05-28 16:44:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:44:55.951+03	2021-05-28 16:44:55.961+03	
ff16200c-27b7-2df3-246d-c0da4c72a4c0	2021-05-28 16:45:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:45:15.952+03	2021-05-28 16:45:15.959+03	
b902ef98-ca75-8cc3-9d65-55b60c6e33eb	2021-05-28 16:45:36.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:45:36.951+03	2021-05-28 16:45:36.958+03	
d482be52-bfaa-2cfd-09d5-65042c50219b	2021-05-28 16:45:56.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:45:56.951+03	2021-05-28 16:45:56.958+03	
65e4233d-572e-690e-5298-ea93391345a6	2021-05-28 16:46:16.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:46:16.952+03	2021-05-28 16:46:16.959+03	
9a391613-926e-9d3d-3dd6-daef11ee7f0a	2021-05-28 16:46:37.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:46:37.951+03	2021-05-28 16:46:37.959+03	
096ba070-d7c2-b47e-59b8-a87b8bcf02d2	2021-05-28 16:27:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:27:50.951+03	2021-05-28 16:27:50.958+03	
775e1d98-d551-2e17-9d41-a25ddf36e625	2021-05-28 16:28:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:28:10.951+03	2021-05-28 16:28:10.959+03	
b4ea2a9d-803c-4c38-8179-f5c56697f7e6	2021-05-28 16:28:30.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:28:30.951+03	2021-05-28 16:28:30.958+03	
24811ef8-523e-baa7-6901-a05427cb6906	2021-05-28 16:28:50.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:28:50.951+03	2021-05-28 16:28:50.958+03	
1d24efaa-e629-c2ec-c34b-b03aeadaa2d7	2021-05-28 16:29:10.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:29:10.952+03	2021-05-28 16:29:10.961+03	
0206008d-d1c2-cae0-3b2c-0d144f32c12c	2021-05-28 16:29:31.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:29:31.951+03	2021-05-28 16:29:31.961+03	
4f7e6a4a-69a2-ae26-0234-4b3ec838ac9a	2021-05-28 16:29:51.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:29:51.951+03	2021-05-28 16:29:51.963+03	
7f8ada41-e52d-ef5a-45d2-2b762291f68a	2021-05-28 16:30:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:30:01.951+03	2021-05-28 16:30:01.959+03	
991516be-52f8-8388-dda3-e873e6f00c78	2021-05-28 16:30:21.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:30:21.951+03	2021-05-28 16:30:21.962+03	
8a1e7b17-562c-8ea6-425a-b98426d68a01	2021-05-28 16:30:41.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:30:41.951+03	2021-05-28 16:30:41.958+03	
a1ef0790-e982-5b8b-cf8a-57c07aeaeec2	2021-05-28 16:31:01.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:31:01.951+03	2021-05-28 16:31:01.957+03	
a4dbac2c-ce2b-4e6f-6d6d-f7a44b558223	2021-05-28 16:31:21.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:31:21.952+03	2021-05-28 16:31:21.959+03	
c0851bbf-770b-8910-c67f-c711295359a1	2021-05-28 16:31:42.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:31:42.951+03	2021-05-28 16:31:43.289+03	
1fa582d4-2497-5d8f-859e-b1b67c5d6b66	2021-05-28 16:32:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:32:02.951+03	2021-05-28 16:32:02.959+03	
0e07d262-430d-6afd-39b2-d1e7d46f8022	2021-05-28 16:32:22.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:32:22.951+03	2021-05-28 16:32:22.958+03	
3478676b-32ea-5d1e-798b-ea526daea633	2021-05-28 16:32:42.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:32:42.951+03	2021-05-28 16:32:42.957+03	
dcd42aa2-3b90-c919-c6f2-3a710381bf75	2021-05-28 16:33:02.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:33:02.951+03	2021-05-28 16:33:02.958+03	
e7300766-b0f1-9acb-5af6-7e9a89724e25	2021-05-28 16:33:22.953	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:33:22.952+03	2021-05-28 16:33:22.96+03	
6fa87e94-4d68-cea2-8ed1-9027a2f16572	2021-05-28 16:33:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:33:43.951+03	2021-05-28 16:33:43.958+03	
447915a2-f5be-db39-31c1-389bff548b59	2021-05-28 16:34:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:34:03.951+03	2021-05-28 16:34:03.972+03	
0bfb4e4d-1d2c-72dc-451a-06c50941e152	2021-05-28 16:34:23.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:34:23.951+03	2021-05-28 16:34:23.959+03	
495b0702-7dd0-66ad-5086-57e2570c3b66	2021-05-28 16:34:43.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:34:43.951+03	2021-05-28 16:34:43.961+03	
90b66964-7b24-2da7-2fd3-12066b5daee7	2021-05-28 16:35:03.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:35:03.951+03	2021-05-28 16:35:03.958+03	
d73a3b27-afad-69fa-0f78-bf9965b3176b	2021-05-28 16:35:13.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:35:13.952+03	2021-05-28 16:35:13.961+03	
9658ddb7-eb03-ed84-dc6c-c488bf49df60	2021-05-28 16:35:34.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:35:34.951+03	2021-05-28 16:35:34.964+03	
bdb0ca0e-ef68-e947-c281-83af54ee13f4	2021-05-28 16:35:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:35:55.951+03	2021-05-28 16:35:55.958+03	
7bd92ad0-7a9c-19e7-0f60-a94d656ff8e9	2021-05-28 16:36:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:36:15.951+03	2021-05-28 16:36:15.958+03	
194dcfb0-acce-e7e0-0185-ce37eb1974d0	2021-05-28 16:36:35.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:36:35.951+03	2021-05-28 16:36:35.958+03	
103adb24-7f34-d166-a548-98d8115ce6c3	2021-05-28 16:36:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:36:55.951+03	2021-05-28 16:36:55.957+03	
6e10752e-a20e-3607-f32c-44ed6080a153	2021-05-28 16:37:15.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:37:15.951+03	2021-05-28 16:37:15.958+03	
adcbc954-a3a5-2a17-d343-4061e9f1864a	2021-05-28 16:37:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:37:35.951+03	2021-05-28 16:37:35.96+03	
700cb509-5454-8e05-c629-2c2a23750f0d	2021-05-28 16:37:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:37:55.951+03	2021-05-28 16:37:55.958+03	
83cedb3e-789f-00cd-c968-f89a6e143de6	2021-05-28 16:38:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:38:15.951+03	2021-05-28 16:38:15.969+03	
dd77a3eb-7c84-32fe-f085-bede8cc2d9c9	2021-05-28 16:38:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:38:35.951+03	2021-05-28 16:38:35.958+03	
8b946f85-ba84-0d9c-c023-ada864d88784	2021-05-28 16:38:55.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:38:55.951+03	2021-05-28 16:38:55.958+03	
dc94caee-41bf-88c4-3661-9880e960301f	2021-05-28 16:39:15.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:39:15.951+03	2021-05-28 16:39:15.96+03	
9b088669-b33d-6ca0-a8ea-0bce03daad46	2021-05-28 16:39:35.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:39:35.951+03	2021-05-28 16:39:35.958+03	
5022b8ce-bb69-2b8e-aeb8-c9111cd5f53d	2021-05-28 16:39:55.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:39:55.951+03	2021-05-28 16:39:55.958+03	
2544cda8-c2e1-fa7e-59b2-bb48211b7e13	2021-05-28 16:40:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:40:05.951+03	2021-05-28 16:40:05.958+03	
d4a72a4a-467a-8c7f-1e84-53595c6bd20d	2021-05-28 16:40:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:40:25.951+03	2021-05-28 16:40:25.958+03	
8854c3d1-94ca-a9d9-a5d3-33f514fd8e5d	2021-05-28 16:40:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:40:45.951+03	2021-05-28 16:40:45.959+03	
d7d313bf-97ab-b3cf-f372-2d9e1b6cfbd0	2021-05-28 16:41:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:41:05.951+03	2021-05-28 16:41:05.958+03	
c14acd5d-b61e-fc82-1281-e397521706a1	2021-05-28 16:41:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:41:25.951+03	2021-05-28 16:41:25.958+03	
c898b0f6-5928-0e1b-cd33-99f0908278ec	2021-05-28 16:41:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:41:45.951+03	2021-05-28 16:41:46.012+03	
2cf45698-5422-a434-20d2-04327a7ab0b8	2021-05-28 16:42:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:42:05.951+03	2021-05-28 16:42:05.959+03	
7f53631a-4c94-7f8e-05d4-4ca21db92341	2021-05-28 16:42:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:42:25.951+03	2021-05-28 16:42:25.96+03	
f2c8d6d2-dd60-b7e7-32fb-acdc13829b04	2021-05-28 16:42:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:42:45.951+03	2021-05-28 16:42:45.958+03	
2bd4fa9a-b848-c9ff-c17b-85e33ed43b7e	2021-05-28 16:43:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:43:05.951+03	2021-05-28 16:43:05.958+03	
6400acc6-a3e1-848e-5c1e-6b40cd3b567a	2021-05-28 16:43:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:43:25.951+03	2021-05-28 16:43:25.959+03	
61efb05e-3226-0a09-9b04-fda07b1669e1	2021-05-28 16:43:45.951	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:43:45.951+03	2021-05-28 16:43:45.958+03	
24276cf0-0847-f7ba-5352-78e6e6945bb9	2021-05-28 16:44:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:44:05.951+03	2021-05-28 16:44:05.959+03	
863261e6-9ce0-8a12-df33-979120e36fe6	2021-05-28 16:44:25.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:44:25.951+03	2021-05-28 16:44:25.959+03	
c9b1f623-daa1-0182-15d8-242d48a93e43	2021-05-28 16:44:45.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:44:45.951+03	2021-05-28 16:44:45.96+03	
f5a7f41e-b67a-943e-9476-5640bd24c7ec	2021-05-28 16:45:05.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:45:05.951+03	2021-05-28 16:45:05.96+03	
57541ed1-0c7f-1a60-27ec-a5ef94951ba4	2021-05-28 16:45:26.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:45:26.951+03	2021-05-28 16:45:26.958+03	
1059777b-ff75-a819-a372-b0311f7263af	2021-05-28 16:45:46.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:45:46.951+03	2021-05-28 16:45:46.958+03	
9eda61d1-91f7-1306-211d-8f45af51074f	2021-05-28 16:46:06.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:46:06.951+03	2021-05-28 16:46:06.959+03	
295d8543-b204-05b3-ba7f-fff9903bfb65	2021-05-28 16:46:27.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:46:27.951+03	2021-05-28 16:46:27.961+03	
a186eb51-3a62-6e6b-2983-2ea30eab0401	2021-05-28 16:46:47.952	admin	be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	localhost:8080/app-core	2021-05-28 16:46:47.952+03	2021-05-28 16:46:47.96+03	
\.


--
-- Data for Name: sys_scheduled_task; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_scheduled_task (id, create_ts, created_by, update_ts, updated_by, delete_ts, deleted_by, defined_by, class_name, script_name, bean_name, method_name, method_params, user_name, is_singleton, is_active, period_, timeout, start_date, time_frame, start_delay, permitted_servers, log_start, log_finish, last_start_time, last_start_server, description, cron, scheduling_type) FROM stdin;
6b9153a6-3d9e-4ebb-a11c-e25e27ca3733	2021-05-19 17:09:52.827685	admin	\N	\N	\N	\N	B	\N	\N	eademo_DiadocProcessingServiceMBean	execute	<?xml version="1.0" encoding="UTF-8"?>\n          <params/>	\N	f	f	7200	\N	\N	\N	150	\N	t	t	\N	\N	\N	\N	D
2a7e467c-a65e-4ee5-b051-912b802ce5dc	2021-05-19 17:09:52.835514	admin	\N	\N	\N	\N	B	\N	\N	eademo_SapIntegrationMBean	cleanProcessedFolder	<?xml version="1.0" encoding="UTF-8"?>\n          <params>\n          </params>	\N	t	f	600	\N	\N	\N	150	\N	t	t	\N	\N	\N	0 0 */7 * * ?	C
9601701d-40f3-4b9a-ad3d-a49296f9e3da	2021-05-19 17:09:52.839498	admin	\N	\N	\N	\N	B	\N	\N	eademo_SapPaymentsMBean	uploadPayments	<?xml version="1.0" encoding="UTF-8"?>\n          <params>\n          </params>	\N	t	f	600	\N	\N	\N	150	\N	t	t	\N	\N	\N	0 30 7 * * *	C
d87eaa78-76b3-4666-9cea-61020674d30e	2021-05-19 17:09:52.844535	admin	\N	\N	\N	\N	B	\N	\N	eademo_SapIntegrationMBean	executeSapDocUnload	<?xml version="1.0" encoding="UTF-8"?>\n          <params>\n          </params>	\N	t	f	600	\N	\N	\N	150	\N	t	t	\N	\N	\N	\N	D
a6d8f154-690f-4f7e-97ab-0fd48b49fa7a	2021-05-19 17:09:52.847957	admin	\N	\N	\N	\N	B	\N	\N	eademo_SapIntegrationMBean	executeSapDocUpload	<?xml version="1.0" encoding="UTF-8"?>\n          <params>\n          </params>	\N	t	f	600	\N	\N	\N	150	\N	t	t	\N	\N	\N	\N	D
ca7fcaa1-f592-7613-10c6-547631bfb3e3	2021-05-19 17:09:52.851249	admin	\N	\N	\N	\N	B	\N	\N	eademo_ScanManagerMBean	execute	<?xml version="1.0" encoding="UTF-8"?>\n          <params>\n          </params>	\N	f	f	600	\N	\N	\N	150	\N	t	t	\N	\N	\N	\N	D
2a3236b8-c048-3a9b-063e-381fedd5a391	2021-05-26 19:00:28.413	admin	2021-05-27 18:41:04.866	admin	\N	\N	B	\N	\N	eademo_DiadocProcessingServiceMBean	processMessages	<?xml version="1.0" encoding="UTF-8"?>\n\n<params/>\n	\N	\N	\N	6000	\N	\N	\N	\N	\N	t	t	\N	\N	\N	\N	P
be3b4a1b-2b91-edd8-7093-18e7c5ff2d24	2021-05-19 17:09:52.8317	admin	2021-05-28 16:46:47.953	admin	\N	\N	B	\N	\N	cuba_Emailer	processQueuedEmails	\N	\N	t	t	10	\N	\N	\N	\N	\N	t	t	2021-05-28 16:46:47.952+03	localhost:8080/app-core	\N	\N	P
c0dc321a-9e9e-1439-7710-1e4345c2353e	2021-05-27 09:39:13.83	admin	2021-05-27 09:39:13.83	\N	2021-05-27 18:34:18.442	admin	B	\N	\N	eademo_DiadocProcessingServiceMBean	executeUpdateDocStatuses	<?xml version="1.0" encoding="UTF-8"?>\n\n<params/>\n	\N	\N	\N	6000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	P
dc67fb5a-4610-7408-491a-eff65acb10bf	2021-05-27 09:39:40.428	admin	2021-05-27 09:39:40.428	\N	2021-05-27 18:34:18.441	admin	B	\N	\N	eademo_DiadocProcessingServiceMBean	executeLoadContent	<?xml version="1.0" encoding="UTF-8"?>\n\n<params/>\n	\N	\N	\N	6000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	P
fce14334-9b20-4c3e-b8f4-44e8901c2eb7	2021-05-19 17:09:52.854536	admin	2021-05-28 16:40:00.951	admin	\N	\N	B	\N	\N	eademo_UploadProcessingService	process	<?xml version="1.0" encoding="UTF-8"?><params/>	admin	t	t	\N	\N	\N	\N	\N	\N	t	t	2021-05-28 16:40:00.951+03	localhost:8080/app-core	\N	0 */10 * * * ?	C
\.


--
-- Data for Name: sys_sending_attachment; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_sending_attachment (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, message_id, content, content_file_id, content_id, name, disposition, text_encoding) FROM stdin;
\.


--
-- Data for Name: sys_sending_message; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_sending_message (id, create_ts, created_by, version, update_ts, updated_by, delete_ts, deleted_by, address_to, address_cc, address_bcc, address_from, caption, email_headers, content_text, content_text_file_id, deadline, status, date_sent, attempts_count, attempts_made, attachments_name, body_content_type) FROM stdin;
853e85f1-6396-4dc6-c654-b7b39d64838c	2021-05-25 18:41:15.326	olegov	22	2021-05-25 18:43:02.796+03	admin	\N	\N	yakovlev@gmail.com	\N	\N	DoNotReply@localhost	Добавление в корзину	\N	<html>\n<head>\n</head>\n<body>\n<div>\n    <div>\n        <p>Здравствуйте, Яковлев Яков Яковлевич!</p>\n        <p><span>Вы были добавлены в корзину №basket-202105-0002 как член рабочей группы.</span><span><a href="http://localhost:8080/app/#main/0/basket/edit?id=6a3jqvhm7dnpssszze34rj14ee">Перейти к корзине.</a></span></p>\n        <p>Это сообщение было сгенерировано автоматически. Не отвечайте на него.</p>\n    </div>\n</div>\n</body>\n</html>	\N	\N	300	\N	\N	10	\N	text/html; charset=UTF-8
\.


--
-- Data for Name: sys_server; Type: TABLE DATA; Schema: public; Owner: cuba
--

COPY public.sys_server (id, create_ts, created_by, update_ts, updated_by, name, is_running, data) FROM stdin;
8c2e4ccf-3bc6-bd52-df48-48ed54c9b38c	2021-05-19 17:10:25.562	\N	2021-05-28 16:46:44.361	\N	localhost:8080/app-core	t	\N
\.


--
-- Name: seq_un_40e37ad2d6a72dad9ba98e07c5c5e7f3; Type: SEQUENCE SET; Schema: public; Owner: cuba
--

SELECT pg_catalog.setval('public.seq_un_40e37ad2d6a72dad9ba98e07c5c5e7f3', 2, true);


--
-- Name: seq_un_ba493c0c0b22dd0c0045dc37d66dfa74; Type: SEQUENCE SET; Schema: public; Owner: cuba
--

SELECT pg_catalog.setval('public.seq_un_ba493c0c0b22dd0c0045dc37d66dfa74', 9, true);


--
-- Name: seq_un_basket202105; Type: SEQUENCE SET; Schema: public; Owner: cuba
--

SELECT pg_catalog.setval('public.seq_un_basket202105', 2, true);


--
-- Name: seq_un_e51be1c57cbc2ce3c22d927b5af7919f; Type: SEQUENCE SET; Schema: public; Owner: cuba
--

SELECT pg_catalog.setval('public.seq_un_e51be1c57cbc2ce3c22d927b5af7919f', 3, true);


--
-- Name: sys_query_result_seq; Type: SEQUENCE SET; Schema: public; Owner: cuba
--

SELECT pg_catalog.setval('public.sys_query_result_seq', 1, false);


--
-- Name: eademo_account eademo_account_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_account
    ADD CONSTRAINT eademo_account_pkey PRIMARY KEY (id);


--
-- Name: eademo_acl eademo_acl_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_acl
    ADD CONSTRAINT eademo_acl_pkey PRIMARY KEY (id);


--
-- Name: eademo_applicaton_json_config eademo_applicaton_json_config_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_applicaton_json_config
    ADD CONSTRAINT eademo_applicaton_json_config_pkey PRIMARY KEY (id);


--
-- Name: eademo_attachment_type eademo_attachment_type_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attachment_type
    ADD CONSTRAINT eademo_attachment_type_pkey PRIMARY KEY (id);


--
-- Name: eademo_attribute_assignment_data eademo_attribute_assignment_data_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_data
    ADD CONSTRAINT eademo_attribute_assignment_data_pkey PRIMARY KEY (id);


--
-- Name: eademo_attribute_assignment_signer_form eademo_attribute_assignment_signer_form_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_signer_form
    ADD CONSTRAINT eademo_attribute_assignment_signer_form_pkey PRIMARY KEY (id);


--
-- Name: eademo_attribute_assignment_task_doc_package_model_link eademo_attribute_assignment_task_doc_package_model_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task_doc_package_model_link
    ADD CONSTRAINT eademo_attribute_assignment_task_doc_package_model_link_pkey PRIMARY KEY (attribute_assignment_task_id, doc_package_model_id);


--
-- Name: eademo_attribute_assignment_task eademo_attribute_assignment_task_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task
    ADD CONSTRAINT eademo_attribute_assignment_task_pkey PRIMARY KEY (id);


--
-- Name: eademo_bank eademo_bank_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_bank
    ADD CONSTRAINT eademo_bank_pkey PRIMARY KEY (id);


--
-- Name: eademo_basket_attachment eademo_basket_attachment_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket_attachment
    ADD CONSTRAINT eademo_basket_attachment_pkey PRIMARY KEY (id);


--
-- Name: eademo_basket_employee_link eademo_basket_employee_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket_employee_link
    ADD CONSTRAINT eademo_basket_employee_link_pkey PRIMARY KEY (basket_id, employee_id);


--
-- Name: eademo_basket eademo_basket_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket
    ADD CONSTRAINT eademo_basket_pkey PRIMARY KEY (id);


--
-- Name: eademo_comment eademo_comment_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_comment
    ADD CONSTRAINT eademo_comment_pkey PRIMARY KEY (id);


--
-- Name: eademo_comment_user_link eademo_comment_user_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_comment_user_link
    ADD CONSTRAINT eademo_comment_user_link_pkey PRIMARY KEY (comment_id, user_id);


--
-- Name: eademo_contract_type eademo_contract_type_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_contract_type
    ADD CONSTRAINT eademo_contract_type_pkey PRIMARY KEY (id);


--
-- Name: eademo_contractor eademo_contractor_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_contractor
    ADD CONSTRAINT eademo_contractor_pkey PRIMARY KEY (id);


--
-- Name: eademo_currency eademo_currency_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_currency
    ADD CONSTRAINT eademo_currency_pkey PRIMARY KEY (id);


--
-- Name: eademo_department_contract_type_link eademo_department_contract_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_contract_type_link
    ADD CONSTRAINT eademo_department_contract_type_link_pkey PRIMARY KEY (department_id, contract_type_id);


--
-- Name: eademo_department_operation_type_link eademo_department_operation_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_operation_type_link
    ADD CONSTRAINT eademo_department_operation_type_link_pkey PRIMARY KEY (department_id, operation_type_id);


--
-- Name: eademo_department_package_type_link eademo_department_package_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_package_type_link
    ADD CONSTRAINT eademo_department_package_type_link_pkey PRIMARY KEY (department_id, package_type_id);


--
-- Name: eademo_department eademo_department_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department
    ADD CONSTRAINT eademo_department_pkey PRIMARY KEY (id);


--
-- Name: eademo_diadoc_entity_doc_package_model_link eademo_diadoc_entity_doc_package_model_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity_doc_package_model_link
    ADD CONSTRAINT eademo_diadoc_entity_doc_package_model_link_pkey PRIMARY KEY (diadoc_entity_id, doc_package_model_id);


--
-- Name: eademo_diadoc_entity_file_descriptor_link eademo_diadoc_entity_file_descriptor_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity_file_descriptor_link
    ADD CONSTRAINT eademo_diadoc_entity_file_descriptor_link_pkey PRIMARY KEY (diadoc_entity_id, file_descriptor_id);


--
-- Name: eademo_diadoc_entity eademo_diadoc_entity_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity
    ADD CONSTRAINT eademo_diadoc_entity_pkey PRIMARY KEY (id);


--
-- Name: eademo_diadoc_history eademo_diadoc_history_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_history
    ADD CONSTRAINT eademo_diadoc_history_pkey PRIMARY KEY (id);


--
-- Name: eademo_diadoc_message_doc_package_model_link eademo_diadoc_message_doc_package_model_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_message_doc_package_model_link
    ADD CONSTRAINT eademo_diadoc_message_doc_package_model_link_pkey PRIMARY KEY (diadoc_message_id, doc_package_model_id);


--
-- Name: eademo_diadoc_message eademo_diadoc_message_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_message
    ADD CONSTRAINT eademo_diadoc_message_pkey PRIMARY KEY (id);


--
-- Name: eademo_diadoc_rule_record eademo_diadoc_rule_record_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_rule_record
    ADD CONSTRAINT eademo_diadoc_rule_record_pkey PRIMARY KEY (id);


--
-- Name: eademo_doc_attribute_package_type_link eademo_doc_attribute_package_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_attribute_package_type_link
    ADD CONSTRAINT eademo_doc_attribute_package_type_link_pkey PRIMARY KEY (doc_attribute_id, package_type_id);


--
-- Name: eademo_doc_attribute eademo_doc_attribute_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_attribute
    ADD CONSTRAINT eademo_doc_attribute_pkey PRIMARY KEY (id);


--
-- Name: eademo_doc_package_attribute_value eademo_doc_package_attribute_value_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_attribute_value
    ADD CONSTRAINT eademo_doc_package_attribute_value_pkey PRIMARY KEY (id);


--
-- Name: eademo_doc_package_model_fixed_asset_link eademo_doc_package_model_fixed_asset_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model_fixed_asset_link
    ADD CONSTRAINT eademo_doc_package_model_fixed_asset_link_pkey PRIMARY KEY (doc_package_model_id, fixed_asset_id);


--
-- Name: eademo_doc_package_model eademo_doc_package_model_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT eademo_doc_package_model_pkey PRIMARY KEY (id);


--
-- Name: eademo_doc_package_status_record eademo_doc_package_status_record_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_status_record
    ADD CONSTRAINT eademo_doc_package_status_record_pkey PRIMARY KEY (id);


--
-- Name: eademo_employee_department eademo_employee_department_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_employee_department
    ADD CONSTRAINT eademo_employee_department_pkey PRIMARY KEY (id);


--
-- Name: eademo_employee eademo_employee_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_employee
    ADD CONSTRAINT eademo_employee_pkey PRIMARY KEY (id);


--
-- Name: eademo_entity_user_info eademo_entity_user_info_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_entity_user_info
    ADD CONSTRAINT eademo_entity_user_info_pkey PRIMARY KEY (id);


--
-- Name: eademo_fixed_asset eademo_fixed_asset_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_fixed_asset
    ADD CONSTRAINT eademo_fixed_asset_pkey PRIMARY KEY (id);


--
-- Name: eademo_notification eademo_notification_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_notification
    ADD CONSTRAINT eademo_notification_pkey PRIMARY KEY (id);


--
-- Name: eademo_operation_type eademo_operation_type_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_operation_type
    ADD CONSTRAINT eademo_operation_type_pkey PRIMARY KEY (id);


--
-- Name: eademo_package_attachment eademo_package_attachment_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_attachment
    ADD CONSTRAINT eademo_package_attachment_pkey PRIMARY KEY (id);


--
-- Name: eademo_package_relation eademo_package_relation_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_relation
    ADD CONSTRAINT eademo_package_relation_pkey PRIMARY KEY (id);


--
-- Name: eademo_package_type_allowed_attachment_type_link eademo_package_type_allowed_attachment_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_allowed_attachment_type_link
    ADD CONSTRAINT eademo_package_type_allowed_attachment_type_link_pkey PRIMARY KEY (package_type_id, attachment_type_id);


--
-- Name: eademo_package_type_attachment_type_link eademo_package_type_attachment_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_attachment_type_link
    ADD CONSTRAINT eademo_package_type_attachment_type_link_pkey PRIMARY KEY (package_type_id, attachment_type_id);


--
-- Name: eademo_package_type_operation_type_link eademo_package_type_operation_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_operation_type_link
    ADD CONSTRAINT eademo_package_type_operation_type_link_pkey PRIMARY KEY (package_type_id, operation_type_id);


--
-- Name: eademo_package_type eademo_package_type_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type
    ADD CONSTRAINT eademo_package_type_pkey PRIMARY KEY (id);


--
-- Name: eademo_paper_document eademo_paper_document_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_paper_document
    ADD CONSTRAINT eademo_paper_document_pkey PRIMARY KEY (id);


--
-- Name: eademo_paper_location eademo_paper_location_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_paper_location
    ADD CONSTRAINT eademo_paper_location_pkey PRIMARY KEY (id);


--
-- Name: eademo_relation_option eademo_relation_option_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_relation_option
    ADD CONSTRAINT eademo_relation_option_pkey PRIMARY KEY (id);


--
-- Name: eademo_releated_attachment_relation eademo_releated_attachment_relation_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_releated_attachment_relation
    ADD CONSTRAINT eademo_releated_attachment_relation_pkey PRIMARY KEY (id);


--
-- Name: eademo_sap_document eademo_sap_document_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_sap_document
    ADD CONSTRAINT eademo_sap_document_pkey PRIMARY KEY (id);


--
-- Name: eademo_sap_payment eademo_sap_payment_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_sap_payment
    ADD CONSTRAINT eademo_sap_payment_pkey PRIMARY KEY (id);


--
-- Name: eademo_security_warrant_contract_type_link eademo_security_warrant_contract_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_contract_type_link
    ADD CONSTRAINT eademo_security_warrant_contract_type_link_pkey PRIMARY KEY (security_warrant_id, contract_type_id);


--
-- Name: eademo_security_warrant_department_link eademo_security_warrant_department_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_department_link
    ADD CONSTRAINT eademo_security_warrant_department_link_pkey PRIMARY KEY (security_warrant_id, department_id);


--
-- Name: eademo_security_warrant_employee_link eademo_security_warrant_employee_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_employee_link
    ADD CONSTRAINT eademo_security_warrant_employee_link_pkey PRIMARY KEY (security_warrant_id, employee_id);


--
-- Name: eademo_security_warrant_operation_type_link eademo_security_warrant_operation_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_operation_type_link
    ADD CONSTRAINT eademo_security_warrant_operation_type_link_pkey PRIMARY KEY (security_warrant_id, operation_type_id);


--
-- Name: eademo_security_warrant_package_type_link eademo_security_warrant_package_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_package_type_link
    ADD CONSTRAINT eademo_security_warrant_package_type_link_pkey PRIMARY KEY (security_warrant_id, package_type_id);


--
-- Name: eademo_security_warrant eademo_security_warrant_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant
    ADD CONSTRAINT eademo_security_warrant_pkey PRIMARY KEY (id);


--
-- Name: eademo_security_warrant_signer_type_link eademo_security_warrant_signer_type_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_signer_type_link
    ADD CONSTRAINT eademo_security_warrant_signer_type_link_pkey PRIMARY KEY (security_warrant_id, signer_type_id);


--
-- Name: eademo_security_warrant_system_user_role_link eademo_security_warrant_system_user_role_link_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_system_user_role_link
    ADD CONSTRAINT eademo_security_warrant_system_user_role_link_pkey PRIMARY KEY (security_warrant_id, system_user_role_id);


--
-- Name: eademo_signatory eademo_signatory_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signatory
    ADD CONSTRAINT eademo_signatory_pkey PRIMARY KEY (id);


--
-- Name: eademo_signer_relation eademo_signer_relation_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signer_relation
    ADD CONSTRAINT eademo_signer_relation_pkey PRIMARY KEY (id);


--
-- Name: eademo_signer_type eademo_signer_type_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signer_type
    ADD CONSTRAINT eademo_signer_type_pkey PRIMARY KEY (id);


--
-- Name: eademo_system_user_role eademo_system_user_role_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_system_user_role
    ADD CONSTRAINT eademo_system_user_role_pkey PRIMARY KEY (id);


--
-- Name: eademo_tax eademo_tax_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_tax
    ADD CONSTRAINT eademo_tax_pkey PRIMARY KEY (id);


--
-- Name: report_group report_group_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.report_group
    ADD CONSTRAINT report_group_pkey PRIMARY KEY (id);


--
-- Name: report_report report_report_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.report_report
    ADD CONSTRAINT report_report_pkey PRIMARY KEY (id);


--
-- Name: report_template report_template_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.report_template
    ADD CONSTRAINT report_template_pkey PRIMARY KEY (id);


--
-- Name: sec_constraint sec_constraint_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_constraint
    ADD CONSTRAINT sec_constraint_pkey PRIMARY KEY (id);


--
-- Name: sec_entity_log sec_entity_log_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_entity_log
    ADD CONSTRAINT sec_entity_log_pkey PRIMARY KEY (id);


--
-- Name: sec_filter sec_filter_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_filter
    ADD CONSTRAINT sec_filter_pkey PRIMARY KEY (id);


--
-- Name: sec_group_hierarchy sec_group_hierarchy_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_group_hierarchy
    ADD CONSTRAINT sec_group_hierarchy_pkey PRIMARY KEY (id);


--
-- Name: sec_group sec_group_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_group
    ADD CONSTRAINT sec_group_pkey PRIMARY KEY (id);


--
-- Name: sec_localized_constraint_msg sec_localized_constraint_msg_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_localized_constraint_msg
    ADD CONSTRAINT sec_localized_constraint_msg_pkey PRIMARY KEY (id);


--
-- Name: sec_logged_attr sec_logged_attr_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_logged_attr
    ADD CONSTRAINT sec_logged_attr_pkey PRIMARY KEY (id);


--
-- Name: sec_logged_attr sec_logged_attr_uniq_name; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_logged_attr
    ADD CONSTRAINT sec_logged_attr_uniq_name UNIQUE (entity_id, name);


--
-- Name: sec_logged_entity sec_logged_entity_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_logged_entity
    ADD CONSTRAINT sec_logged_entity_pkey PRIMARY KEY (id);


--
-- Name: sec_logged_entity sec_logged_entity_uniq_name; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_logged_entity
    ADD CONSTRAINT sec_logged_entity_uniq_name UNIQUE (name);


--
-- Name: sec_permission sec_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_permission
    ADD CONSTRAINT sec_permission_pkey PRIMARY KEY (id);


--
-- Name: sec_presentation sec_presentation_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_presentation
    ADD CONSTRAINT sec_presentation_pkey PRIMARY KEY (id);


--
-- Name: sec_remember_me sec_remember_me_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_remember_me
    ADD CONSTRAINT sec_remember_me_pkey PRIMARY KEY (id);


--
-- Name: sec_role sec_role_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_role
    ADD CONSTRAINT sec_role_pkey PRIMARY KEY (id);


--
-- Name: sec_screen_history sec_screen_history_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_screen_history
    ADD CONSTRAINT sec_screen_history_pkey PRIMARY KEY (id);


--
-- Name: sec_search_folder sec_search_folder_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_search_folder
    ADD CONSTRAINT sec_search_folder_pkey PRIMARY KEY (folder_id);


--
-- Name: sec_session_attr sec_session_attr_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_session_attr
    ADD CONSTRAINT sec_session_attr_pkey PRIMARY KEY (id);


--
-- Name: sec_session_log sec_session_log_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_session_log
    ADD CONSTRAINT sec_session_log_pkey PRIMARY KEY (id);


--
-- Name: sec_user sec_user_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user
    ADD CONSTRAINT sec_user_pkey PRIMARY KEY (id);


--
-- Name: sec_user_role sec_user_role_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_role
    ADD CONSTRAINT sec_user_role_pkey PRIMARY KEY (id);


--
-- Name: sec_user_setting sec_user_setting_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_setting
    ADD CONSTRAINT sec_user_setting_pkey PRIMARY KEY (id);


--
-- Name: sec_user_setting sec_user_setting_uniq; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_setting
    ADD CONSTRAINT sec_user_setting_uniq UNIQUE (user_id, name, client_type);


--
-- Name: sec_user_substitution sec_user_substitution_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_substitution
    ADD CONSTRAINT sec_user_substitution_pkey PRIMARY KEY (id);


--
-- Name: sys_app_folder sys_app_folder_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_app_folder
    ADD CONSTRAINT sys_app_folder_pkey PRIMARY KEY (folder_id);


--
-- Name: sys_attr_value sys_attr_value_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_attr_value
    ADD CONSTRAINT sys_attr_value_pkey PRIMARY KEY (id);


--
-- Name: sys_category_attr sys_category_attr_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_category_attr
    ADD CONSTRAINT sys_category_attr_pkey PRIMARY KEY (id);


--
-- Name: sys_category sys_category_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_category
    ADD CONSTRAINT sys_category_pkey PRIMARY KEY (id);


--
-- Name: sys_config sys_config_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_config
    ADD CONSTRAINT sys_config_pkey PRIMARY KEY (id);


--
-- Name: sys_db_changelog sys_db_changelog_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_db_changelog
    ADD CONSTRAINT sys_db_changelog_pkey PRIMARY KEY (script_name);


--
-- Name: sys_entity_snapshot sys_entity_snapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_entity_snapshot
    ADD CONSTRAINT sys_entity_snapshot_pkey PRIMARY KEY (id);


--
-- Name: sys_entity_statistics sys_entity_statistics_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_entity_statistics
    ADD CONSTRAINT sys_entity_statistics_pkey PRIMARY KEY (id);


--
-- Name: sys_file sys_file_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_file
    ADD CONSTRAINT sys_file_pkey PRIMARY KEY (id);


--
-- Name: sys_folder sys_folder_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_folder
    ADD CONSTRAINT sys_folder_pkey PRIMARY KEY (id);


--
-- Name: sys_fts_queue sys_fts_queue_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_fts_queue
    ADD CONSTRAINT sys_fts_queue_pkey PRIMARY KEY (id);


--
-- Name: sys_jmx_instance sys_jmx_instance_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_jmx_instance
    ADD CONSTRAINT sys_jmx_instance_pkey PRIMARY KEY (id);


--
-- Name: sys_lock_config sys_lock_config_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_lock_config
    ADD CONSTRAINT sys_lock_config_pkey PRIMARY KEY (id);


--
-- Name: sys_query_result sys_query_result_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_query_result
    ADD CONSTRAINT sys_query_result_pkey PRIMARY KEY (id);


--
-- Name: sys_scheduled_execution sys_scheduled_execution_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_scheduled_execution
    ADD CONSTRAINT sys_scheduled_execution_pkey PRIMARY KEY (id);


--
-- Name: sys_scheduled_task sys_scheduled_task_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_scheduled_task
    ADD CONSTRAINT sys_scheduled_task_pkey PRIMARY KEY (id);


--
-- Name: sys_sending_attachment sys_sending_attachment_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_sending_attachment
    ADD CONSTRAINT sys_sending_attachment_pkey PRIMARY KEY (id);


--
-- Name: sys_sending_message sys_sending_message_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_sending_message
    ADD CONSTRAINT sys_sending_message_pkey PRIMARY KEY (id);


--
-- Name: sys_server sys_server_pkey; Type: CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_server
    ADD CONSTRAINT sys_server_pkey PRIMARY KEY (id);


--
-- Name: idx_cat_attr_ent_type_and_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_cat_attr_ent_type_and_code ON public.sys_category_attr USING btree (category_entity_type, code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_account_on_bank; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_account_on_bank ON public.eademo_account USING btree (bank_id);


--
-- Name: idx_eademo_account_on_currency; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_account_on_currency ON public.eademo_account USING btree (currency_id);


--
-- Name: idx_eademo_account_unq; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_account_unq ON public.eademo_account USING btree (client_id, bank_id, code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_acl; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_acl ON public.eademo_acl USING btree (entity_id);


--
-- Name: idx_eademo_acl_on_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_acl_on_user ON public.eademo_acl USING btree (user_id);


--
-- Name: idx_eademo_applicaton_json_config_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_applicaton_json_config_uk_code ON public.eademo_applicaton_json_config USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_attachment_type_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_attachment_type_uk_code ON public.eademo_attachment_type USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_attribassignsignerform_on_attribute_assignment_data; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribassignsignerform_on_attribute_assignment_data ON public.eademo_attribute_assignment_signer_form USING btree (attribute_assignment_data_id);


--
-- Name: idx_eademo_attribute_assignment_data_on_contractor; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_data_on_contractor ON public.eademo_attribute_assignment_data USING btree (contractor_id);


--
-- Name: idx_eademo_attribute_assignment_data_on_custom; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_data_on_custom ON public.eademo_attribute_assignment_data USING btree (custom_id);


--
-- Name: idx_eademo_attribute_assignment_data_on_initiator; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_data_on_initiator ON public.eademo_attribute_assignment_data USING btree (initiator_id);


--
-- Name: idx_eademo_attribute_assignment_data_on_operation_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_data_on_operation_type ON public.eademo_attribute_assignment_data USING btree (operation_type_id);


--
-- Name: idx_eademo_attribute_assignment_data_on_recipient; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_data_on_recipient ON public.eademo_attribute_assignment_data USING btree (recipient_id);


--
-- Name: idx_eademo_attribute_assignment_data_on_supplier; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_data_on_supplier ON public.eademo_attribute_assignment_data USING btree (supplier_id);


--
-- Name: idx_eademo_attribute_assignment_signer_form_on_employee; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_signer_form_on_employee ON public.eademo_attribute_assignment_signer_form USING btree (employee_id);


--
-- Name: idx_eademo_attribute_assignment_signer_form_on_signer_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_signer_form_on_signer_type ON public.eademo_attribute_assignment_signer_form USING btree (signer_type_id);


--
-- Name: idx_eademo_attribute_assignment_task_on_data; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_task_on_data ON public.eademo_attribute_assignment_task USING btree (data_id);


--
-- Name: idx_eademo_attribute_assignment_task_on_department; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_task_on_department ON public.eademo_attribute_assignment_task USING btree (department_id);


--
-- Name: idx_eademo_attribute_assignment_task_on_package_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_task_on_package_type ON public.eademo_attribute_assignment_task USING btree (package_type_id);


--
-- Name: idx_eademo_attribute_assignment_task_on_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_attribute_assignment_task_on_user ON public.eademo_attribute_assignment_task USING btree (user_id);


--
-- Name: idx_eademo_bank_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_bank_uk_code ON public.eademo_bank USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_basket_attachment_on_attachment; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_basket_attachment_on_attachment ON public.eademo_basket_attachment USING btree (attachment_id);


--
-- Name: idx_eademo_basket_attachment_on_basket; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_basket_attachment_on_basket ON public.eademo_basket_attachment USING btree (basket_id);


--
-- Name: idx_eademo_basket_on_contractor; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_basket_on_contractor ON public.eademo_basket USING btree (contractor_id);


--
-- Name: idx_eademo_basket_on_dispatcher; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_basket_on_dispatcher ON public.eademo_basket USING btree (dispatcher_id);


--
-- Name: idx_eademo_basket_on_initiator; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_basket_on_initiator ON public.eademo_basket USING btree (initiator_id);


--
-- Name: idx_eademo_basket_on_tax_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_basket_on_tax_type ON public.eademo_basket USING btree (tax_type_id);


--
-- Name: idx_eademo_comment_on_parent; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_comment_on_parent ON public.eademo_comment USING btree (parent_id);


--
-- Name: idx_eademo_comment_on_sender; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_comment_on_sender ON public.eademo_comment USING btree (sender_id);


--
-- Name: idx_eademo_contract_type_on_parent; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_contract_type_on_parent ON public.eademo_contract_type USING btree (parent_id);


--
-- Name: idx_eademo_contract_type_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_contract_type_uk_code ON public.eademo_contract_type USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_currency_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_currency_uk_code ON public.eademo_currency USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_department_on_parent; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_department_on_parent ON public.eademo_department USING btree (parent_id);


--
-- Name: idx_eademo_department_on_top_department; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_department_on_top_department ON public.eademo_department USING btree (top_department_id);


--
-- Name: idx_eademo_department_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_department_uk_code ON public.eademo_department USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_diadoc_entity_on_diadoc_message; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_diadoc_entity_on_diadoc_message ON public.eademo_diadoc_entity USING btree (diadoc_message_id);


--
-- Name: idx_eademo_diadoc_entity_on_parent; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_diadoc_entity_on_parent ON public.eademo_diadoc_entity USING btree (parent_id);


--
-- Name: idx_eademo_diadoc_entity_unq; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_diadoc_entity_unq ON public.eademo_diadoc_entity USING btree (entity_id, diadoc_message_id);


--
-- Name: idx_eademo_diadoc_history_box_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_diadoc_history_box_id ON public.eademo_diadoc_history USING btree (box_id);


--
-- Name: idx_eademo_diadoc_history_uk_box_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_diadoc_history_uk_box_id ON public.eademo_diadoc_history USING btree (box_id);


--
-- Name: idx_eademo_diadoc_history_uk_last_event_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_diadoc_history_uk_last_event_id ON public.eademo_diadoc_history USING btree (last_event_id);


--
-- Name: idx_eademo_diadoc_message_unq; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_diadoc_message_unq ON public.eademo_diadoc_message USING btree (message_id, box_id) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_doc_attribute_uk_name; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_doc_attribute_uk_name ON public.eademo_doc_attribute USING btree (name) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_doc_package_attribute_value_on_attr_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_attribute_value_on_attr_id ON public.eademo_doc_package_attribute_value USING btree (attr_id_id);


--
-- Name: idx_eademo_doc_package_attribute_value_on_pkg_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_attribute_value_on_pkg_id ON public.eademo_doc_package_attribute_value USING btree (pkg_id_id);


--
-- Name: idx_eademo_doc_package_model_on_account; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_account ON public.eademo_doc_package_model USING btree (account_id);


--
-- Name: idx_eademo_doc_package_model_on_bank; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_bank ON public.eademo_doc_package_model USING btree (bank_id);


--
-- Name: idx_eademo_doc_package_model_on_contract_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_contract_type ON public.eademo_doc_package_model USING btree (contract_type_id);


--
-- Name: idx_eademo_doc_package_model_on_contractor; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_contractor ON public.eademo_doc_package_model USING btree (contractor_id);


--
-- Name: idx_eademo_doc_package_model_on_currency; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_currency ON public.eademo_doc_package_model USING btree (currency_id);


--
-- Name: idx_eademo_doc_package_model_on_custom; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_custom ON public.eademo_doc_package_model USING btree (custom_id);


--
-- Name: idx_eademo_doc_package_model_on_department; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_department ON public.eademo_doc_package_model USING btree (department_id);


--
-- Name: idx_eademo_doc_package_model_on_initiator; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_initiator ON public.eademo_doc_package_model USING btree (initiator_id);


--
-- Name: idx_eademo_doc_package_model_on_operation_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_operation_type ON public.eademo_doc_package_model USING btree (operation_type_id);


--
-- Name: idx_eademo_doc_package_model_on_parent_package; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_parent_package ON public.eademo_doc_package_model USING btree (parent_package_id);


--
-- Name: idx_eademo_doc_package_model_on_pkg_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_pkg_type ON public.eademo_doc_package_model USING btree (pkg_type_id);


--
-- Name: idx_eademo_doc_package_model_on_recipient; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_recipient ON public.eademo_doc_package_model USING btree (recipient_id);


--
-- Name: idx_eademo_doc_package_model_on_supplier; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_model_on_supplier ON public.eademo_doc_package_model USING btree (supplier_id);


--
-- Name: idx_eademo_doc_package_model_uk_pkg_num; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_doc_package_model_uk_pkg_num ON public.eademo_doc_package_model USING btree (pkg_num) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_doc_package_status_record_on_doc_package_model; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_status_record_on_doc_package_model ON public.eademo_doc_package_status_record USING btree (doc_package_model_id);


--
-- Name: idx_eademo_doc_package_status_record_on_substituted_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_status_record_on_substituted_user ON public.eademo_doc_package_status_record USING btree (substituted_user_id);


--
-- Name: idx_eademo_doc_package_status_record_on_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_doc_package_status_record_on_user ON public.eademo_doc_package_status_record USING btree (user_id);


--
-- Name: idx_eademo_employee_department_on_department; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_employee_department_on_department ON public.eademo_employee_department USING btree (department_id);


--
-- Name: idx_eademo_employee_department_on_employee; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_employee_department_on_employee ON public.eademo_employee_department USING btree (employee_id);


--
-- Name: idx_eademo_employee_on_main_department; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_employee_on_main_department ON public.eademo_employee USING btree (main_department_id);


--
-- Name: idx_eademo_employee_on_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_employee_on_user ON public.eademo_employee USING btree (user_id);


--
-- Name: idx_eademo_employee_uk_barcode; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_employee_uk_barcode ON public.eademo_employee USING btree (barcode) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_employee_uk_login; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_employee_uk_login ON public.eademo_employee USING btree (login) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_entity_user_info; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_entity_user_info ON public.eademo_entity_user_info USING btree (entity_id);


--
-- Name: idx_eademo_entity_user_info_on_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_entity_user_info_on_user ON public.eademo_entity_user_info USING btree (user_id);


--
-- Name: idx_eademo_fixed_asset_on_parent; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_fixed_asset_on_parent ON public.eademo_fixed_asset USING btree (parent_id);


--
-- Name: idx_eademo_fixed_asset_uk_num; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_fixed_asset_uk_num ON public.eademo_fixed_asset USING btree (num) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_inn_kpp_idx; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_inn_kpp_idx ON public.eademo_contractor USING btree (inn, kpp) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_notification_on_recipient; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_notification_on_recipient ON public.eademo_notification USING btree (recipient_id);


--
-- Name: idx_eademo_operation_type_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_operation_type_uk_code ON public.eademo_operation_type USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_eademo_package_attachment_amount; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_attachment_amount ON public.eademo_package_attachment USING btree (amount);


--
-- Name: idx_eademo_package_attachment_date; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_attachment_date ON public.eademo_package_attachment USING btree (date_);


--
-- Name: idx_eademo_package_attachment_number; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_attachment_number ON public.eademo_package_attachment USING btree (number_);


--
-- Name: idx_eademo_package_attachment_on_doc_package_model; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_attachment_on_doc_package_model ON public.eademo_package_attachment USING btree (doc_package_model_id);


--
-- Name: idx_eademo_package_attachment_on_file; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_attachment_on_file ON public.eademo_package_attachment USING btree (file_id);


--
-- Name: idx_eademo_package_attachment_on_paper_document; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_attachment_on_paper_document ON public.eademo_package_attachment USING btree (paper_document_id);


--
-- Name: idx_eademo_package_attachment_on_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_attachment_on_type ON public.eademo_package_attachment USING btree (type_id);


--
-- Name: idx_eademo_package_relation_on_child; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_relation_on_child ON public.eademo_package_relation USING btree (child_id);


--
-- Name: idx_eademo_package_relation_on_parent; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_relation_on_parent ON public.eademo_package_relation USING btree (parent_id);


--
-- Name: idx_eademo_package_relation_on_relation_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_package_relation_on_relation_type ON public.eademo_package_relation USING btree (relation_type_id);


--
-- Name: idx_eademo_paper_document_on_paper_location; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_paper_document_on_paper_location ON public.eademo_paper_document USING btree (paper_location_id);


--
-- Name: idx_eademo_paper_document_on_paper_receiver; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_paper_document_on_paper_receiver ON public.eademo_paper_document USING btree (paper_receiver_id);


--
-- Name: idx_eademo_paper_document_on_paper_sender; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_paper_document_on_paper_sender ON public.eademo_paper_document USING btree (paper_sender_id);


--
-- Name: idx_eademo_paper_location_on_storage; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_paper_location_on_storage ON public.eademo_paper_location USING btree (storage_id);


--
-- Name: idx_eademo_relation_option_on_package_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_relation_option_on_package_type ON public.eademo_relation_option USING btree (package_type_id);


--
-- Name: idx_eademo_relation_option_on_relation_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_relation_option_on_relation_type ON public.eademo_relation_option USING btree (relation_type_id);


--
-- Name: idx_eademo_releateattachmrelatio_on_releated_attachment; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_releateattachmrelatio_on_releated_attachment ON public.eademo_releated_attachment_relation USING btree (releated_attachment_id);


--
-- Name: idx_eademo_releated_attachment_relation_on_related_package; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_releated_attachment_relation_on_related_package ON public.eademo_releated_attachment_relation USING btree (related_package_id);


--
-- Name: idx_eademo_sap_document_on_doc_package_model; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_sap_document_on_doc_package_model ON public.eademo_sap_document USING btree (doc_package_model_id);


--
-- Name: idx_eademo_signatory_on_doc_package_model; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_signatory_on_doc_package_model ON public.eademo_signatory USING btree (doc_package_model_id);


--
-- Name: idx_eademo_signatory_on_employee; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_signatory_on_employee ON public.eademo_signatory USING btree (employee_id);


--
-- Name: idx_eademo_signatory_on_signer_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_signatory_on_signer_type ON public.eademo_signatory USING btree (signer_type_id);


--
-- Name: idx_eademo_signer_relation_on_employee; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_signer_relation_on_employee ON public.eademo_signer_relation USING btree (employee_id);


--
-- Name: idx_eademo_signer_relation_on_package_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_signer_relation_on_package_type ON public.eademo_signer_relation USING btree (package_type_id);


--
-- Name: idx_eademo_signer_relation_on_signer_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_eademo_signer_relation_on_signer_type ON public.eademo_signer_relation USING btree (signer_type_id);


--
-- Name: idx_eademo_signer_type_uk_code; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_eademo_signer_type_uk_code ON public.eademo_signer_type USING btree (code) WHERE (delete_ts IS NULL);


--
-- Name: idx_report_group_uniq_title; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_report_group_uniq_title ON public.report_group USING btree (title) WHERE (delete_ts IS NULL);


--
-- Name: idx_report_report_uniq_name; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_report_report_uniq_name ON public.report_report USING btree (name) WHERE (delete_ts IS NULL);


--
-- Name: idx_sec_constraint_group; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_constraint_group ON public.sec_constraint USING btree (group_id);


--
-- Name: idx_sec_entity_log_entity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_entity_log_entity_id ON public.sec_entity_log USING btree (entity_id);


--
-- Name: idx_sec_entity_log_ientity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_entity_log_ientity_id ON public.sec_entity_log USING btree (int_entity_id);


--
-- Name: idx_sec_entity_log_lentity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_entity_log_lentity_id ON public.sec_entity_log USING btree (long_entity_id);


--
-- Name: idx_sec_entity_log_sentity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_entity_log_sentity_id ON public.sec_entity_log USING btree (string_entity_id);


--
-- Name: idx_sec_filter_component_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_filter_component_user ON public.sec_filter USING btree (component, user_id);


--
-- Name: idx_sec_group_uniq_name; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sec_group_uniq_name ON public.sec_group USING btree (name) WHERE (delete_ts IS NULL);


--
-- Name: idx_sec_loc_cnstrnt_msg_unique; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sec_loc_cnstrnt_msg_unique ON public.sec_localized_constraint_msg USING btree (entity_name, operation_type) WHERE (delete_ts IS NULL);


--
-- Name: idx_sec_logged_attr_entity; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_logged_attr_entity ON public.sec_logged_attr USING btree (entity_id);


--
-- Name: idx_sec_permission_unique; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sec_permission_unique ON public.sec_permission USING btree (role_id, permission_type, target) WHERE (delete_ts IS NULL);


--
-- Name: idx_sec_presentation_component_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_presentation_component_user ON public.sec_presentation USING btree (component, user_id);


--
-- Name: idx_sec_remember_me_token; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_remember_me_token ON public.sec_remember_me USING btree (token);


--
-- Name: idx_sec_remember_me_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_remember_me_user ON public.sec_remember_me USING btree (user_id);


--
-- Name: idx_sec_role_uniq_name; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sec_role_uniq_name ON public.sec_role USING btree (name) WHERE (delete_ts IS NULL);


--
-- Name: idx_sec_screen_hist_sub_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_screen_hist_sub_user ON public.sec_screen_history USING btree (substituted_user_id);


--
-- Name: idx_sec_screen_history_entity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_screen_history_entity_id ON public.sec_screen_history USING btree (entity_id);


--
-- Name: idx_sec_screen_history_ientity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_screen_history_ientity_id ON public.sec_screen_history USING btree (int_entity_id);


--
-- Name: idx_sec_screen_history_lentity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_screen_history_lentity_id ON public.sec_screen_history USING btree (long_entity_id);


--
-- Name: idx_sec_screen_history_sentity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_screen_history_sentity_id ON public.sec_screen_history USING btree (string_entity_id);


--
-- Name: idx_sec_screen_history_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_screen_history_user ON public.sec_screen_history USING btree (user_id);


--
-- Name: idx_sec_search_folder_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_search_folder_user ON public.sec_search_folder USING btree (user_id);


--
-- Name: idx_sec_session_attr_group; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_session_attr_group ON public.sec_session_attr USING btree (group_id);


--
-- Name: idx_sec_session_log_session; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_session_log_session ON public.sec_session_log USING btree (session_id);


--
-- Name: idx_sec_session_log_subuser; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_session_log_subuser ON public.sec_session_log USING btree (substituted_user_id);


--
-- Name: idx_sec_session_log_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_session_log_user ON public.sec_session_log USING btree (user_id);


--
-- Name: idx_sec_user_role_uniq_role; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sec_user_role_uniq_role ON public.sec_user_role USING btree (user_id, role_id) WHERE (delete_ts IS NULL);


--
-- Name: idx_sec_user_substitution_user; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sec_user_substitution_user ON public.sec_user_substitution USING btree (user_id);


--
-- Name: idx_sec_user_uniq_login; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sec_user_uniq_login ON public.sec_user USING btree (login_lc) WHERE (delete_ts IS NULL);


--
-- Name: idx_session_log_started_ts; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_session_log_started_ts ON public.sec_session_log USING btree (started_ts DESC);


--
-- Name: idx_sys_attr_value_entity; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_attr_value_entity ON public.sys_attr_value USING btree (entity_id);


--
-- Name: idx_sys_attr_value_ientity; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_attr_value_ientity ON public.sys_attr_value USING btree (int_entity_id);


--
-- Name: idx_sys_attr_value_lentity; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_attr_value_lentity ON public.sys_attr_value USING btree (long_entity_id);


--
-- Name: idx_sys_attr_value_sentity; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_attr_value_sentity ON public.sys_attr_value USING btree (string_entity_id);


--
-- Name: idx_sys_category_attr_category; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_category_attr_category ON public.sys_category_attr USING btree (category_id);


--
-- Name: idx_sys_category_uniq_name_entity_type; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sys_category_uniq_name_entity_type ON public.sys_category USING btree (name, entity_type) WHERE (delete_ts IS NULL);


--
-- Name: idx_sys_config_uniq_name; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sys_config_uniq_name ON public.sys_config USING btree (name);


--
-- Name: idx_sys_entity_snapshot_entity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_entity_snapshot_entity_id ON public.sys_entity_snapshot USING btree (entity_id);


--
-- Name: idx_sys_entity_snapshot_ientity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_entity_snapshot_ientity_id ON public.sys_entity_snapshot USING btree (int_entity_id);


--
-- Name: idx_sys_entity_snapshot_lentity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_entity_snapshot_lentity_id ON public.sys_entity_snapshot USING btree (long_entity_id);


--
-- Name: idx_sys_entity_snapshot_sentity_id; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_entity_snapshot_sentity_id ON public.sys_entity_snapshot USING btree (string_entity_id);


--
-- Name: idx_sys_entity_statistics_uniq_name; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sys_entity_statistics_uniq_name ON public.sys_entity_statistics USING btree (name);


--
-- Name: idx_sys_fts_queue_idxhost_crts; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_fts_queue_idxhost_crts ON public.sys_fts_queue USING btree (indexing_host, create_ts);


--
-- Name: idx_sys_query_result_entity_session_key; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_query_result_entity_session_key ON public.sys_query_result USING btree (entity_id, session_id, query_key);


--
-- Name: idx_sys_query_result_ientity_session_key; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_query_result_ientity_session_key ON public.sys_query_result USING btree (int_entity_id, session_id, query_key);


--
-- Name: idx_sys_query_result_lentity_session_key; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_query_result_lentity_session_key ON public.sys_query_result USING btree (long_entity_id, session_id, query_key);


--
-- Name: idx_sys_query_result_sentity_session_key; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_query_result_sentity_session_key ON public.sys_query_result USING btree (string_entity_id, session_id, query_key);


--
-- Name: idx_sys_query_result_session_key; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_query_result_session_key ON public.sys_query_result USING btree (session_id, query_key);


--
-- Name: idx_sys_scheduled_execution_task_finish_time; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_scheduled_execution_task_finish_time ON public.sys_scheduled_execution USING btree (task_id, finish_time);


--
-- Name: idx_sys_scheduled_execution_task_start_time; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_scheduled_execution_task_start_time ON public.sys_scheduled_execution USING btree (task_id, start_time);


--
-- Name: idx_sys_sending_message_date_sent; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_sending_message_date_sent ON public.sys_sending_message USING btree (date_sent);


--
-- Name: idx_sys_sending_message_status; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_sending_message_status ON public.sys_sending_message USING btree (status);


--
-- Name: idx_sys_sending_message_update_ts; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX idx_sys_sending_message_update_ts ON public.sys_sending_message USING btree (update_ts);


--
-- Name: idx_sys_server_uniq_name; Type: INDEX; Schema: public; Owner: cuba
--

CREATE UNIQUE INDEX idx_sys_server_uniq_name ON public.sys_server USING btree (name);


--
-- Name: sys_sending_attachment_message_idx; Type: INDEX; Schema: public; Owner: cuba
--

CREATE INDEX sys_sending_attachment_message_idx ON public.sys_sending_attachment USING btree (message_id);


--
-- Name: eademo_attribute_assignment_task_doc_package_model_link fk_attasstasdocpacmod_on_attribute_assignment_task; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task_doc_package_model_link
    ADD CONSTRAINT fk_attasstasdocpacmod_on_attribute_assignment_task FOREIGN KEY (attribute_assignment_task_id) REFERENCES public.eademo_attribute_assignment_task(id);


--
-- Name: eademo_attribute_assignment_task_doc_package_model_link fk_attasstasdocpacmod_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task_doc_package_model_link
    ADD CONSTRAINT fk_attasstasdocpacmod_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_comment_user_link fk_comuse_on_comment; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_comment_user_link
    ADD CONSTRAINT fk_comuse_on_comment FOREIGN KEY (comment_id) REFERENCES public.eademo_comment(id);


--
-- Name: eademo_comment_user_link fk_comuse_on_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_comment_user_link
    ADD CONSTRAINT fk_comuse_on_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_department_contract_type_link fk_depcontyp_on_contract_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_contract_type_link
    ADD CONSTRAINT fk_depcontyp_on_contract_type FOREIGN KEY (contract_type_id) REFERENCES public.eademo_contract_type(id);


--
-- Name: eademo_department_contract_type_link fk_depcontyp_on_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_contract_type_link
    ADD CONSTRAINT fk_depcontyp_on_department FOREIGN KEY (department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_department_operation_type_link fk_depopetyp_on_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_operation_type_link
    ADD CONSTRAINT fk_depopetyp_on_department FOREIGN KEY (department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_department_operation_type_link fk_depopetyp_on_operation_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_operation_type_link
    ADD CONSTRAINT fk_depopetyp_on_operation_type FOREIGN KEY (operation_type_id) REFERENCES public.eademo_operation_type(id);


--
-- Name: eademo_department_package_type_link fk_deppactyp_on_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_package_type_link
    ADD CONSTRAINT fk_deppactyp_on_department FOREIGN KEY (department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_department_package_type_link fk_deppactyp_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department_package_type_link
    ADD CONSTRAINT fk_deppactyp_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_diadoc_entity_doc_package_model_link fk_diaentdocpacmod_on_diadoc_entity; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity_doc_package_model_link
    ADD CONSTRAINT fk_diaentdocpacmod_on_diadoc_entity FOREIGN KEY (diadoc_entity_id) REFERENCES public.eademo_diadoc_entity(id);


--
-- Name: eademo_diadoc_entity_doc_package_model_link fk_diaentdocpacmod_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity_doc_package_model_link
    ADD CONSTRAINT fk_diaentdocpacmod_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_diadoc_entity_file_descriptor_link fk_diaentfildes_on_diadoc_entity; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity_file_descriptor_link
    ADD CONSTRAINT fk_diaentfildes_on_diadoc_entity FOREIGN KEY (diadoc_entity_id) REFERENCES public.eademo_diadoc_entity(id);


--
-- Name: eademo_diadoc_entity_file_descriptor_link fk_diaentfildes_on_file_descriptor; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity_file_descriptor_link
    ADD CONSTRAINT fk_diaentfildes_on_file_descriptor FOREIGN KEY (file_descriptor_id) REFERENCES public.sys_file(id);


--
-- Name: eademo_diadoc_message_doc_package_model_link fk_diamesdocpacmod_on_diadoc_message; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_message_doc_package_model_link
    ADD CONSTRAINT fk_diamesdocpacmod_on_diadoc_message FOREIGN KEY (diadoc_message_id) REFERENCES public.eademo_diadoc_message(id);


--
-- Name: eademo_diadoc_message_doc_package_model_link fk_diamesdocpacmod_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_message_doc_package_model_link
    ADD CONSTRAINT fk_diamesdocpacmod_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_doc_attribute_package_type_link fk_docattpactyp_on_doc_attribute; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_attribute_package_type_link
    ADD CONSTRAINT fk_docattpactyp_on_doc_attribute FOREIGN KEY (doc_attribute_id) REFERENCES public.eademo_doc_attribute(id);


--
-- Name: eademo_doc_attribute_package_type_link fk_docattpactyp_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_attribute_package_type_link
    ADD CONSTRAINT fk_docattpactyp_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_doc_package_model_fixed_asset_link fk_docpacmodfixass_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model_fixed_asset_link
    ADD CONSTRAINT fk_docpacmodfixass_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_doc_package_model_fixed_asset_link fk_docpacmodfixass_on_fixed_asset; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model_fixed_asset_link
    ADD CONSTRAINT fk_docpacmodfixass_on_fixed_asset FOREIGN KEY (fixed_asset_id) REFERENCES public.eademo_fixed_asset(id);


--
-- Name: eademo_account fk_eademo_account_on_bank; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_account
    ADD CONSTRAINT fk_eademo_account_on_bank FOREIGN KEY (bank_id) REFERENCES public.eademo_bank(id);


--
-- Name: eademo_account fk_eademo_account_on_currency; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_account
    ADD CONSTRAINT fk_eademo_account_on_currency FOREIGN KEY (currency_id) REFERENCES public.eademo_currency(id);


--
-- Name: eademo_acl fk_eademo_acl_on_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_acl
    ADD CONSTRAINT fk_eademo_acl_on_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_attribute_assignment_signer_form fk_eademo_attribassignsignerform_on_attribute_assignment_data; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_signer_form
    ADD CONSTRAINT fk_eademo_attribassignsignerform_on_attribute_assignment_data FOREIGN KEY (attribute_assignment_data_id) REFERENCES public.eademo_attribute_assignment_data(id) ON DELETE CASCADE;


--
-- Name: eademo_attribute_assignment_data fk_eademo_attribute_assignment_data_on_contractor; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_data
    ADD CONSTRAINT fk_eademo_attribute_assignment_data_on_contractor FOREIGN KEY (contractor_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_attribute_assignment_data fk_eademo_attribute_assignment_data_on_custom; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_data
    ADD CONSTRAINT fk_eademo_attribute_assignment_data_on_custom FOREIGN KEY (custom_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_attribute_assignment_data fk_eademo_attribute_assignment_data_on_initiator; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_data
    ADD CONSTRAINT fk_eademo_attribute_assignment_data_on_initiator FOREIGN KEY (initiator_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_attribute_assignment_data fk_eademo_attribute_assignment_data_on_operation_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_data
    ADD CONSTRAINT fk_eademo_attribute_assignment_data_on_operation_type FOREIGN KEY (operation_type_id) REFERENCES public.eademo_operation_type(id);


--
-- Name: eademo_attribute_assignment_data fk_eademo_attribute_assignment_data_on_recipient; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_data
    ADD CONSTRAINT fk_eademo_attribute_assignment_data_on_recipient FOREIGN KEY (recipient_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_attribute_assignment_data fk_eademo_attribute_assignment_data_on_supplier; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_data
    ADD CONSTRAINT fk_eademo_attribute_assignment_data_on_supplier FOREIGN KEY (supplier_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_attribute_assignment_signer_form fk_eademo_attribute_assignment_signer_form_on_employee; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_signer_form
    ADD CONSTRAINT fk_eademo_attribute_assignment_signer_form_on_employee FOREIGN KEY (employee_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_attribute_assignment_signer_form fk_eademo_attribute_assignment_signer_form_on_signer_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_signer_form
    ADD CONSTRAINT fk_eademo_attribute_assignment_signer_form_on_signer_type FOREIGN KEY (signer_type_id) REFERENCES public.eademo_signer_type(id);


--
-- Name: eademo_attribute_assignment_task fk_eademo_attribute_assignment_task_on_data; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task
    ADD CONSTRAINT fk_eademo_attribute_assignment_task_on_data FOREIGN KEY (data_id) REFERENCES public.eademo_attribute_assignment_data(id);


--
-- Name: eademo_attribute_assignment_task fk_eademo_attribute_assignment_task_on_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task
    ADD CONSTRAINT fk_eademo_attribute_assignment_task_on_department FOREIGN KEY (department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_attribute_assignment_task fk_eademo_attribute_assignment_task_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task
    ADD CONSTRAINT fk_eademo_attribute_assignment_task_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_attribute_assignment_task fk_eademo_attribute_assignment_task_on_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_attribute_assignment_task
    ADD CONSTRAINT fk_eademo_attribute_assignment_task_on_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_basket_attachment fk_eademo_basket_attachment_on_attachment; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket_attachment
    ADD CONSTRAINT fk_eademo_basket_attachment_on_attachment FOREIGN KEY (attachment_id) REFERENCES public.eademo_package_attachment(id);


--
-- Name: eademo_basket_attachment fk_eademo_basket_attachment_on_basket; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket_attachment
    ADD CONSTRAINT fk_eademo_basket_attachment_on_basket FOREIGN KEY (basket_id) REFERENCES public.eademo_basket(id);


--
-- Name: eademo_basket fk_eademo_basket_on_contractor; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket
    ADD CONSTRAINT fk_eademo_basket_on_contractor FOREIGN KEY (contractor_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_basket fk_eademo_basket_on_dispatcher; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket
    ADD CONSTRAINT fk_eademo_basket_on_dispatcher FOREIGN KEY (dispatcher_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_basket fk_eademo_basket_on_initiator; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket
    ADD CONSTRAINT fk_eademo_basket_on_initiator FOREIGN KEY (initiator_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_basket fk_eademo_basket_on_tax_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_basket
    ADD CONSTRAINT fk_eademo_basket_on_tax_type FOREIGN KEY (tax_type_id) REFERENCES public.eademo_tax(id);


--
-- Name: eademo_comment fk_eademo_comment_on_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_comment
    ADD CONSTRAINT fk_eademo_comment_on_parent FOREIGN KEY (parent_id) REFERENCES public.eademo_comment(id);


--
-- Name: eademo_comment fk_eademo_comment_on_sender; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_comment
    ADD CONSTRAINT fk_eademo_comment_on_sender FOREIGN KEY (sender_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_contract_type fk_eademo_contract_type_on_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_contract_type
    ADD CONSTRAINT fk_eademo_contract_type_on_parent FOREIGN KEY (parent_id) REFERENCES public.eademo_contract_type(id);


--
-- Name: eademo_department fk_eademo_department_on_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department
    ADD CONSTRAINT fk_eademo_department_on_parent FOREIGN KEY (parent_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_department fk_eademo_department_on_top_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_department
    ADD CONSTRAINT fk_eademo_department_on_top_department FOREIGN KEY (top_department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_diadoc_entity fk_eademo_diadoc_entity_on_diadoc_message; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity
    ADD CONSTRAINT fk_eademo_diadoc_entity_on_diadoc_message FOREIGN KEY (diadoc_message_id) REFERENCES public.eademo_diadoc_message(id);


--
-- Name: eademo_diadoc_entity fk_eademo_diadoc_entity_on_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_diadoc_entity
    ADD CONSTRAINT fk_eademo_diadoc_entity_on_parent FOREIGN KEY (parent_id) REFERENCES public.eademo_diadoc_entity(id);


--
-- Name: eademo_doc_package_attribute_value fk_eademo_doc_package_attribute_value_on_attr_id; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_attribute_value
    ADD CONSTRAINT fk_eademo_doc_package_attribute_value_on_attr_id FOREIGN KEY (attr_id_id) REFERENCES public.eademo_doc_attribute(id);


--
-- Name: eademo_doc_package_attribute_value fk_eademo_doc_package_attribute_value_on_pkg_id; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_attribute_value
    ADD CONSTRAINT fk_eademo_doc_package_attribute_value_on_pkg_id FOREIGN KEY (pkg_id_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_account; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_account FOREIGN KEY (account_id) REFERENCES public.eademo_account(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_bank; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_bank FOREIGN KEY (bank_id) REFERENCES public.eademo_bank(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_contract_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_contract_type FOREIGN KEY (contract_type_id) REFERENCES public.eademo_contract_type(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_contractor; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_contractor FOREIGN KEY (contractor_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_currency; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_currency FOREIGN KEY (currency_id) REFERENCES public.eademo_currency(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_custom; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_custom FOREIGN KEY (custom_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_department FOREIGN KEY (department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_initiator; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_initiator FOREIGN KEY (initiator_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_operation_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_operation_type FOREIGN KEY (operation_type_id) REFERENCES public.eademo_operation_type(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_parent_package; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_parent_package FOREIGN KEY (parent_package_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_pkg_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_pkg_type FOREIGN KEY (pkg_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_recipient; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_recipient FOREIGN KEY (recipient_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_doc_package_model fk_eademo_doc_package_model_on_supplier; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_model
    ADD CONSTRAINT fk_eademo_doc_package_model_on_supplier FOREIGN KEY (supplier_id) REFERENCES public.eademo_contractor(id);


--
-- Name: eademo_doc_package_status_record fk_eademo_doc_package_status_record_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_status_record
    ADD CONSTRAINT fk_eademo_doc_package_status_record_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_doc_package_status_record fk_eademo_doc_package_status_record_on_substituted_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_status_record
    ADD CONSTRAINT fk_eademo_doc_package_status_record_on_substituted_user FOREIGN KEY (substituted_user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_doc_package_status_record fk_eademo_doc_package_status_record_on_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_doc_package_status_record
    ADD CONSTRAINT fk_eademo_doc_package_status_record_on_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_employee_department fk_eademo_employee_department_on_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_employee_department
    ADD CONSTRAINT fk_eademo_employee_department_on_department FOREIGN KEY (department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_employee_department fk_eademo_employee_department_on_employee; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_employee_department
    ADD CONSTRAINT fk_eademo_employee_department_on_employee FOREIGN KEY (employee_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_employee fk_eademo_employee_on_main_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_employee
    ADD CONSTRAINT fk_eademo_employee_on_main_department FOREIGN KEY (main_department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_employee fk_eademo_employee_on_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_employee
    ADD CONSTRAINT fk_eademo_employee_on_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_entity_user_info fk_eademo_entity_user_info_on_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_entity_user_info
    ADD CONSTRAINT fk_eademo_entity_user_info_on_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_fixed_asset fk_eademo_fixed_asset_on_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_fixed_asset
    ADD CONSTRAINT fk_eademo_fixed_asset_on_parent FOREIGN KEY (parent_id) REFERENCES public.eademo_fixed_asset(id);


--
-- Name: eademo_notification fk_eademo_notification_on_recipient; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_notification
    ADD CONSTRAINT fk_eademo_notification_on_recipient FOREIGN KEY (recipient_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_package_attachment fk_eademo_package_attachment_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_attachment
    ADD CONSTRAINT fk_eademo_package_attachment_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_package_attachment fk_eademo_package_attachment_on_file; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_attachment
    ADD CONSTRAINT fk_eademo_package_attachment_on_file FOREIGN KEY (file_id) REFERENCES public.sys_file(id);


--
-- Name: eademo_package_attachment fk_eademo_package_attachment_on_paper_document; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_attachment
    ADD CONSTRAINT fk_eademo_package_attachment_on_paper_document FOREIGN KEY (paper_document_id) REFERENCES public.eademo_paper_document(id);


--
-- Name: eademo_package_attachment fk_eademo_package_attachment_on_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_attachment
    ADD CONSTRAINT fk_eademo_package_attachment_on_type FOREIGN KEY (type_id) REFERENCES public.eademo_attachment_type(id);


--
-- Name: eademo_package_relation fk_eademo_package_relation_on_child; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_relation
    ADD CONSTRAINT fk_eademo_package_relation_on_child FOREIGN KEY (child_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_package_relation fk_eademo_package_relation_on_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_relation
    ADD CONSTRAINT fk_eademo_package_relation_on_parent FOREIGN KEY (parent_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_package_relation fk_eademo_package_relation_on_relation_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_relation
    ADD CONSTRAINT fk_eademo_package_relation_on_relation_type FOREIGN KEY (relation_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_paper_document fk_eademo_paper_document_on_paper_location; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_paper_document
    ADD CONSTRAINT fk_eademo_paper_document_on_paper_location FOREIGN KEY (paper_location_id) REFERENCES public.eademo_paper_location(id);


--
-- Name: eademo_paper_document fk_eademo_paper_document_on_paper_receiver; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_paper_document
    ADD CONSTRAINT fk_eademo_paper_document_on_paper_receiver FOREIGN KEY (paper_receiver_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_paper_document fk_eademo_paper_document_on_paper_sender; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_paper_document
    ADD CONSTRAINT fk_eademo_paper_document_on_paper_sender FOREIGN KEY (paper_sender_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_paper_location fk_eademo_paper_location_on_storage; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_paper_location
    ADD CONSTRAINT fk_eademo_paper_location_on_storage FOREIGN KEY (storage_id) REFERENCES public.eademo_paper_location(id);


--
-- Name: eademo_relation_option fk_eademo_relation_option_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_relation_option
    ADD CONSTRAINT fk_eademo_relation_option_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_relation_option fk_eademo_relation_option_on_relation_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_relation_option
    ADD CONSTRAINT fk_eademo_relation_option_on_relation_type FOREIGN KEY (relation_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_releated_attachment_relation fk_eademo_releateattachmrelatio_on_releated_attachment; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_releated_attachment_relation
    ADD CONSTRAINT fk_eademo_releateattachmrelatio_on_releated_attachment FOREIGN KEY (releated_attachment_id) REFERENCES public.eademo_package_attachment(id);


--
-- Name: eademo_releated_attachment_relation fk_eademo_releated_attachment_relation_on_related_package; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_releated_attachment_relation
    ADD CONSTRAINT fk_eademo_releated_attachment_relation_on_related_package FOREIGN KEY (related_package_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_sap_document fk_eademo_sap_document_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_sap_document
    ADD CONSTRAINT fk_eademo_sap_document_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_signatory fk_eademo_signatory_on_doc_package_model; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signatory
    ADD CONSTRAINT fk_eademo_signatory_on_doc_package_model FOREIGN KEY (doc_package_model_id) REFERENCES public.eademo_doc_package_model(id);


--
-- Name: eademo_signatory fk_eademo_signatory_on_employee; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signatory
    ADD CONSTRAINT fk_eademo_signatory_on_employee FOREIGN KEY (employee_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_signatory fk_eademo_signatory_on_signer_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signatory
    ADD CONSTRAINT fk_eademo_signatory_on_signer_type FOREIGN KEY (signer_type_id) REFERENCES public.eademo_signer_type(id);


--
-- Name: eademo_signer_relation fk_eademo_signer_relation_on_employee; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signer_relation
    ADD CONSTRAINT fk_eademo_signer_relation_on_employee FOREIGN KEY (employee_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_signer_relation fk_eademo_signer_relation_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signer_relation
    ADD CONSTRAINT fk_eademo_signer_relation_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_signer_relation fk_eademo_signer_relation_on_signer_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_signer_relation
    ADD CONSTRAINT fk_eademo_signer_relation_on_signer_type FOREIGN KEY (signer_type_id) REFERENCES public.eademo_signer_type(id);


--
-- Name: eademo_package_type_allowed_attachment_type_link fk_pactypallatttyp_on_attachment_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_allowed_attachment_type_link
    ADD CONSTRAINT fk_pactypallatttyp_on_attachment_type FOREIGN KEY (attachment_type_id) REFERENCES public.eademo_attachment_type(id);


--
-- Name: eademo_package_type_allowed_attachment_type_link fk_pactypallatttyp_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_allowed_attachment_type_link
    ADD CONSTRAINT fk_pactypallatttyp_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_package_type_attachment_type_link fk_pactypatttyp_on_attachment_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_attachment_type_link
    ADD CONSTRAINT fk_pactypatttyp_on_attachment_type FOREIGN KEY (attachment_type_id) REFERENCES public.eademo_attachment_type(id);


--
-- Name: eademo_package_type_attachment_type_link fk_pactypatttyp_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_attachment_type_link
    ADD CONSTRAINT fk_pactypatttyp_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_package_type_operation_type_link fk_pactypopetyp_on_operation_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_operation_type_link
    ADD CONSTRAINT fk_pactypopetyp_on_operation_type FOREIGN KEY (operation_type_id) REFERENCES public.eademo_operation_type(id);


--
-- Name: eademo_package_type_operation_type_link fk_pactypopetyp_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_package_type_operation_type_link
    ADD CONSTRAINT fk_pactypopetyp_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: report_report fk_report_report_to_def_template; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.report_report
    ADD CONSTRAINT fk_report_report_to_def_template FOREIGN KEY (default_template_id) REFERENCES public.report_template(id);


--
-- Name: report_report fk_report_report_to_report_group; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.report_report
    ADD CONSTRAINT fk_report_report_to_report_group FOREIGN KEY (group_id) REFERENCES public.report_group(id);


--
-- Name: report_template fk_report_template_to_report; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.report_template
    ADD CONSTRAINT fk_report_template_to_report FOREIGN KEY (report_id) REFERENCES public.report_report(id) ON DELETE CASCADE;


--
-- Name: sec_entity_log fk_sec_entity_log_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_entity_log
    ADD CONSTRAINT fk_sec_entity_log_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_filter fk_sec_filter_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_filter
    ADD CONSTRAINT fk_sec_filter_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_screen_history fk_sec_history_substituted_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_screen_history
    ADD CONSTRAINT fk_sec_history_substituted_user FOREIGN KEY (substituted_user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_screen_history fk_sec_history_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_screen_history
    ADD CONSTRAINT fk_sec_history_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_logged_attr fk_sec_logged_attr_entity; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_logged_attr
    ADD CONSTRAINT fk_sec_logged_attr_entity FOREIGN KEY (entity_id) REFERENCES public.sec_logged_entity(id);


--
-- Name: sec_remember_me fk_sec_remember_me_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_remember_me
    ADD CONSTRAINT fk_sec_remember_me_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_search_folder fk_sec_search_folder_folder; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_search_folder
    ADD CONSTRAINT fk_sec_search_folder_folder FOREIGN KEY (folder_id) REFERENCES public.sys_folder(id);


--
-- Name: sec_search_folder fk_sec_search_folder_presentation; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_search_folder
    ADD CONSTRAINT fk_sec_search_folder_presentation FOREIGN KEY (presentation_id) REFERENCES public.sec_presentation(id) ON DELETE SET NULL;


--
-- Name: sec_search_folder fk_sec_search_folder_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_search_folder
    ADD CONSTRAINT fk_sec_search_folder_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_session_log fk_sec_session_log_subuser; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_session_log
    ADD CONSTRAINT fk_sec_session_log_subuser FOREIGN KEY (substituted_user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_session_log fk_sec_session_log_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_session_log
    ADD CONSTRAINT fk_sec_session_log_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_user_substitution fk_sec_user_substitution_substituted_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_substitution
    ADD CONSTRAINT fk_sec_user_substitution_substituted_user FOREIGN KEY (substituted_user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_user_substitution fk_sec_user_substitution_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_substitution
    ADD CONSTRAINT fk_sec_user_substitution_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: eademo_security_warrant_contract_type_link fk_secwarcontyp_on_contract_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_contract_type_link
    ADD CONSTRAINT fk_secwarcontyp_on_contract_type FOREIGN KEY (contract_type_id) REFERENCES public.eademo_contract_type(id);


--
-- Name: eademo_security_warrant_contract_type_link fk_secwarcontyp_on_security_warrant; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_contract_type_link
    ADD CONSTRAINT fk_secwarcontyp_on_security_warrant FOREIGN KEY (security_warrant_id) REFERENCES public.eademo_security_warrant(id);


--
-- Name: eademo_security_warrant_department_link fk_secwardep_on_department; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_department_link
    ADD CONSTRAINT fk_secwardep_on_department FOREIGN KEY (department_id) REFERENCES public.eademo_department(id);


--
-- Name: eademo_security_warrant_department_link fk_secwardep_on_security_warrant; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_department_link
    ADD CONSTRAINT fk_secwardep_on_security_warrant FOREIGN KEY (security_warrant_id) REFERENCES public.eademo_security_warrant(id);


--
-- Name: eademo_security_warrant_employee_link fk_secwaremp_on_employee; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_employee_link
    ADD CONSTRAINT fk_secwaremp_on_employee FOREIGN KEY (employee_id) REFERENCES public.eademo_employee(id);


--
-- Name: eademo_security_warrant_employee_link fk_secwaremp_on_security_warrant; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_employee_link
    ADD CONSTRAINT fk_secwaremp_on_security_warrant FOREIGN KEY (security_warrant_id) REFERENCES public.eademo_security_warrant(id);


--
-- Name: eademo_security_warrant_operation_type_link fk_secwaropetyp_on_operation_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_operation_type_link
    ADD CONSTRAINT fk_secwaropetyp_on_operation_type FOREIGN KEY (operation_type_id) REFERENCES public.eademo_operation_type(id);


--
-- Name: eademo_security_warrant_operation_type_link fk_secwaropetyp_on_security_warrant; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_operation_type_link
    ADD CONSTRAINT fk_secwaropetyp_on_security_warrant FOREIGN KEY (security_warrant_id) REFERENCES public.eademo_security_warrant(id);


--
-- Name: eademo_security_warrant_package_type_link fk_secwarpactyp_on_package_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_package_type_link
    ADD CONSTRAINT fk_secwarpactyp_on_package_type FOREIGN KEY (package_type_id) REFERENCES public.eademo_package_type(id);


--
-- Name: eademo_security_warrant_package_type_link fk_secwarpactyp_on_security_warrant; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_package_type_link
    ADD CONSTRAINT fk_secwarpactyp_on_security_warrant FOREIGN KEY (security_warrant_id) REFERENCES public.eademo_security_warrant(id);


--
-- Name: eademo_security_warrant_signer_type_link fk_secwarsigtyp_on_security_warrant; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_signer_type_link
    ADD CONSTRAINT fk_secwarsigtyp_on_security_warrant FOREIGN KEY (security_warrant_id) REFERENCES public.eademo_security_warrant(id);


--
-- Name: eademo_security_warrant_signer_type_link fk_secwarsigtyp_on_signer_type; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_signer_type_link
    ADD CONSTRAINT fk_secwarsigtyp_on_signer_type FOREIGN KEY (signer_type_id) REFERENCES public.eademo_signer_type(id);


--
-- Name: eademo_security_warrant_system_user_role_link fk_secwarsysuserol_on_security_warrant; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_system_user_role_link
    ADD CONSTRAINT fk_secwarsysuserol_on_security_warrant FOREIGN KEY (security_warrant_id) REFERENCES public.eademo_security_warrant(id);


--
-- Name: eademo_security_warrant_system_user_role_link fk_secwarsysuserol_on_system_user_role; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.eademo_security_warrant_system_user_role_link
    ADD CONSTRAINT fk_secwarsysuserol_on_system_user_role FOREIGN KEY (system_user_role_id) REFERENCES public.eademo_system_user_role(id);


--
-- Name: sys_app_folder fk_sys_app_folder_folder; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_app_folder
    ADD CONSTRAINT fk_sys_app_folder_folder FOREIGN KEY (folder_id) REFERENCES public.sys_folder(id);


--
-- Name: sys_entity_snapshot fk_sys_entity_snapshot_author_id; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_entity_snapshot
    ADD CONSTRAINT fk_sys_entity_snapshot_author_id FOREIGN KEY (author_id) REFERENCES public.sec_user(id);


--
-- Name: sys_folder fk_sys_folder_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_folder
    ADD CONSTRAINT fk_sys_folder_parent FOREIGN KEY (parent_id) REFERENCES public.sys_folder(id);


--
-- Name: sys_sending_attachment fk_sys_sending_attachment_content_file; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_sending_attachment
    ADD CONSTRAINT fk_sys_sending_attachment_content_file FOREIGN KEY (content_file_id) REFERENCES public.sys_file(id);


--
-- Name: sys_sending_attachment fk_sys_sending_attachment_sending_message; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_sending_attachment
    ADD CONSTRAINT fk_sys_sending_attachment_sending_message FOREIGN KEY (message_id) REFERENCES public.sys_sending_message(id);


--
-- Name: sys_sending_message fk_sys_sending_message_content_file; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_sending_message
    ADD CONSTRAINT fk_sys_sending_message_content_file FOREIGN KEY (content_text_file_id) REFERENCES public.sys_file(id);


--
-- Name: sec_constraint sec_constraint_group; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_constraint
    ADD CONSTRAINT sec_constraint_group FOREIGN KEY (group_id) REFERENCES public.sec_group(id);


--
-- Name: sec_group_hierarchy sec_group_hierarchy_group; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_group_hierarchy
    ADD CONSTRAINT sec_group_hierarchy_group FOREIGN KEY (group_id) REFERENCES public.sec_group(id);


--
-- Name: sec_group_hierarchy sec_group_hierarchy_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_group_hierarchy
    ADD CONSTRAINT sec_group_hierarchy_parent FOREIGN KEY (parent_id) REFERENCES public.sec_group(id);


--
-- Name: sec_group sec_group_parent; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_group
    ADD CONSTRAINT sec_group_parent FOREIGN KEY (parent_id) REFERENCES public.sec_group(id);


--
-- Name: sec_permission sec_permission_role; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_permission
    ADD CONSTRAINT sec_permission_role FOREIGN KEY (role_id) REFERENCES public.sec_role(id);


--
-- Name: sec_presentation sec_presentation_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_presentation
    ADD CONSTRAINT sec_presentation_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_session_attr sec_session_attr_group; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_session_attr
    ADD CONSTRAINT sec_session_attr_group FOREIGN KEY (group_id) REFERENCES public.sec_group(id);


--
-- Name: sec_user sec_user_group; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user
    ADD CONSTRAINT sec_user_group FOREIGN KEY (group_id) REFERENCES public.sec_group(id);


--
-- Name: sec_user_role sec_user_role_profile; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_role
    ADD CONSTRAINT sec_user_role_profile FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sec_user_role sec_user_role_role; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_role
    ADD CONSTRAINT sec_user_role_role FOREIGN KEY (role_id) REFERENCES public.sec_role(id);


--
-- Name: sec_user_setting sec_user_setting_user; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sec_user_setting
    ADD CONSTRAINT sec_user_setting_user FOREIGN KEY (user_id) REFERENCES public.sec_user(id);


--
-- Name: sys_attr_value sys_attr_value_attr_value_parent_id; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_attr_value
    ADD CONSTRAINT sys_attr_value_attr_value_parent_id FOREIGN KEY (parent_id) REFERENCES public.sys_attr_value(id);


--
-- Name: sys_attr_value sys_attr_value_category_attr_id; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_attr_value
    ADD CONSTRAINT sys_attr_value_category_attr_id FOREIGN KEY (category_attr_id) REFERENCES public.sys_category_attr(id);


--
-- Name: sys_category_attr sys_category_attr_category_id; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_category_attr
    ADD CONSTRAINT sys_category_attr_category_id FOREIGN KEY (category_id) REFERENCES public.sys_category(id);


--
-- Name: sys_scheduled_execution sys_scheduled_execution_task; Type: FK CONSTRAINT; Schema: public; Owner: cuba
--

ALTER TABLE ONLY public.sys_scheduled_execution
    ADD CONSTRAINT sys_scheduled_execution_task FOREIGN KEY (task_id) REFERENCES public.sys_scheduled_task(id);


--
-- PostgreSQL database dump complete
--

